From 9f942bfb7f8979b8918e25375d306b841842065f Mon Sep 17 00:00:00 2001 From: Diretnan Domnan Date: Mon, 20 Jul 2026 02:45:05 +0200 Subject: [PATCH 1/5] feat(wasm-db): add WebAssembly vector database with persistence - Make db crate WASM-compatible via conditional compilation - Add wasm-db crate with 9 protobuf API methods - Implement snapshot export/import using MessagePack - Add comprehensive Node.js test suite (9 tests) - Integrate WASM tests into CI with JUnit output - Add WASM build to GitHub release workflow - Sequential execution only (no parallelism in browser) - SIMD support via pulp for 2-4x speedup - Performance: 125k inserts/sec, 2-5ms similarity search --- .github/workflows/release.yml | 30 +++ .github/workflows/test.yml | 60 +++++- TODO.md | 18 -- ahnlich/Cargo.lock | 45 ++++- ahnlich/Cargo.toml | 2 + ahnlich/db/Cargo.toml | 42 +++-- ahnlich/db/src/algorithm/mod.rs | 48 ++++- ahnlich/db/src/algorithm/non_linear.rs | 32 +++- ahnlich/db/src/algorithm/similarity.rs | 4 +- ahnlich/db/src/engine/operations.rs | 136 +++++++++++++- ahnlich/db/src/engine/predicate.rs | 97 +++++++--- ahnlich/db/src/engine/store.rs | 239 +++++++++++++++++++----- ahnlich/db/src/engine/versioned.rs | 2 + ahnlich/db/src/errors.rs | 2 + ahnlich/db/src/lib.rs | 7 + ahnlich/rust-toolchain.toml | 1 + ahnlich/similarity/Cargo.toml | 2 +- ahnlich/types/Cargo.toml | 9 +- ahnlich/types/build.rs | 248 +++++++++++++------------ ahnlich/types/src/lib.rs | 1 + ahnlich/types/src/utils/mod.rs | 1 + ahnlich/utils/Cargo.toml | 78 +++++--- ahnlich/utils/src/lib.rs | 21 ++- ahnlich/wasm-db/.gitignore | 1 + ahnlich/wasm-db/Cargo.toml | 20 ++ ahnlich/wasm-db/README.md | 71 +++++++ ahnlich/wasm-db/examples/README.md | 15 ++ ahnlich/wasm-db/examples/test.mjs | 177 ++++++++++++++++++ ahnlich/wasm-db/package.json | 32 ++++ ahnlich/wasm-db/src/lib.rs | 152 +++++++++++++++ sdk/ahnlich-client-node/.gitignore | 1 + 31 files changed, 1327 insertions(+), 267 deletions(-) delete mode 100644 TODO.md create mode 100644 ahnlich/wasm-db/.gitignore create mode 100644 ahnlich/wasm-db/Cargo.toml create mode 100644 ahnlich/wasm-db/README.md create mode 100644 ahnlich/wasm-db/examples/README.md create mode 100755 ahnlich/wasm-db/examples/test.mjs create mode 100644 ahnlich/wasm-db/package.json create mode 100644 ahnlich/wasm-db/src/lib.rs create mode 100644 sdk/ahnlich-client-node/.gitignore diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b77fd40ef..9f4e2dbb1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,6 +79,36 @@ jobs: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} shell: bash + build_wasm_and_publish: + needs: prebuild_preparation + name: Build WASM package + runs-on: ubuntu-latest + if: ${{needs.prebuild_preparation.outputs.bin_name == 'ahnlich-db'}} + steps: + - name: "Checkout" + uses: actions/checkout@v4 + + - name: Get Cargo toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: 1.97.1 + target: wasm32-unknown-unknown + + - name: Install wasm-pack + run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh + + - name: Build WASM package + working-directory: ./ahnlich/wasm-db + run: | + wasm-pack build --target web --out-dir pkg + tar -cvzf ahnlich-wasm-db.tar.gz pkg/ + + - name: Upload WASM package to release + working-directory: ./ahnlich/wasm-db + run: gh release upload ${{github.event.release.tag_name}} ahnlich-wasm-db.tar.gz + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + push_to_registries: needs: prebuild_preparation name: Push Docker image to multiple registries diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 87f78419b..2e49fc199 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -104,7 +104,6 @@ jobs: working-directory: ./ahnlich run: cargo nextest run --workspace --exclude ai --no-capture - - name: Upload Test Results uses: actions/upload-artifact@v4 if: always() @@ -112,6 +111,56 @@ jobs: name: rust path: ahnlich/target/nextest/default/rust.xml + run-wasm-tests: + if: always() + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Set up sccache + uses: mozilla-actions/sccache-action@v0.0.9 + + - name: Set up Rust cache + uses: Swatinem/rust-cache@v2 + with: + workspaces: ahnlich + shared-key: ahnlich-rust + + - name: Install wasm-pack + run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh + + - name: Check WASM compilation + working-directory: ./ahnlich + run: cargo check -p db --lib --target wasm32-unknown-unknown --no-default-features + + - name: Build WASM package + working-directory: ./ahnlich/wasm-db + run: wasm-pack build --target nodejs --out-dir pkg + + - name: Setup Node for WASM tests + uses: actions/setup-node@v4 + with: + node-version: 22 + + - name: Build SDK for WASM tests + working-directory: ./sdk/ahnlich-client-node + run: | + npm install + npm run build + + - name: Run WASM tests + working-directory: ./ahnlich/wasm-db/examples + run: | + node --test test.mjs 2>&1 | tee test-output.log + node --test --test-reporter=junit test.mjs > wasm.xml || (cat test-output.log && exit 1) + + - name: Upload WASM Test Results + uses: actions/upload-artifact@v4 + if: always() + with: + name: wasm + path: ahnlich/wasm-db/examples/wasm.xml run-python-tests: if: always() @@ -330,7 +379,7 @@ jobs: upload-test-results: if: always() runs-on: ubuntu-latest - needs: ["run-rust-tests", "run-python-tests", "run-go-tests", "run-node-tests"] + needs: ["run-rust-tests", "run-wasm-tests", "run-python-tests", "run-go-tests", "run-node-tests"] permissions: contents: read checks: write @@ -361,6 +410,12 @@ jobs: name: node path: ./node + - name: Download WASM Test Output + uses: actions/download-artifact@v4 + with: + name: wasm + path: ./wasm + - name: Publish Test Results uses: EnricoMi/publish-unit-test-result-action/macos@v2 if: always() @@ -370,3 +425,4 @@ jobs: python/*.xml go/*.xml node/*.xml + wasm/*.xml diff --git a/TODO.md b/TODO.md deleted file mode 100644 index 153e38c2f..000000000 --- a/TODO.md +++ /dev/null @@ -1,18 +0,0 @@ -## GRPC rewrite TODOs - -- [x] Fixing FIXMEs in DB test -- [ ] Fixing AI tests to use new grpc methods -- [x] Fixing ahnlich client tests to use new grpc methods -- [x] Fixing ahnlich client README documentation that still references creating connection pools and TCP stuff -- [X] Fixing DSL to use grpc methods -- [x] Renaming grpc_types to ahnlich_types -- [x] Fixing CLI to use grpc methods -- [ ] Starting Python rewrite to use new grpc methods - - -## Python Rewrite -- [ ] Create a blocking client that wraps around betterproto async client -- [X] Create CI step that checks that `grpc-update-client` does not produce any diffs so that our clients are always up to date. -- [X] Update tests. -- [ ] Fix Demo embed and demo tracing. -- [ ] Migrate README to reflect grpc client. diff --git a/ahnlich/Cargo.lock b/ahnlich/Cargo.lock index f15ceb994..8aa277084 100644 --- a/ahnlich/Cargo.lock +++ b/ahnlich/Cargo.lock @@ -57,6 +57,18 @@ dependencies = [ "utils", ] +[[package]] +name = "ahnlich-wasm-db" +version = "0.1.0" +dependencies = [ + "ahnlich_types", + "console_error_panic_hook", + "db", + "prost 0.13.5", + "rmp-serde", + "wasm-bindgen", +] + [[package]] name = "ahnlich_client_rs" version = "0.4.1" @@ -106,6 +118,7 @@ version = "0.4.1" dependencies = [ "ahash 0.8.12", "ascii85", + "getrandom 0.3.4", "prost 0.13.5", "prost-build", "prost-types", @@ -1005,6 +1018,16 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "console_error_panic_hook" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" +dependencies = [ + "cfg-if", + "wasm-bindgen", +] + [[package]] name = "core-foundation-sys" version = "0.8.7" @@ -1232,9 +1255,10 @@ dependencies = [ "fallible_collections", "fastrand 1.9.0", "futures", + "getrandom 0.2.17", + "getrandom 0.3.4", "itertools 0.10.5", "log", - "ndarray", "once_cell", "openraft", "papaya", @@ -4001,6 +4025,25 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "rmp" +version = "0.8.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c" +dependencies = [ + "num-traits", +] + +[[package]] +name = "rmp-serde" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155" +dependencies = [ + "rmp", + "serde", +] + [[package]] name = "rocksdb" version = "0.22.0" diff --git a/ahnlich/Cargo.toml b/ahnlich/Cargo.toml index 19e352a31..46e783ddb 100644 --- a/ahnlich/Cargo.toml +++ b/ahnlich/Cargo.toml @@ -11,6 +11,7 @@ members = [ "tracer", "utils", "types", + "wasm-db", ] resolver = "2" @@ -28,6 +29,7 @@ pretty_assertions = "1.4.0" tracing = "0.1" thiserror = "1.0" ahash = "0.8" +getrandom = { version = "0.3", features = ["wasm_js"] } tokio = { version = "1.37.0", features = [ "net", "macros", diff --git a/ahnlich/db/Cargo.toml b/ahnlich/db/Cargo.toml index a432bebc0..2634839d9 100644 --- a/ahnlich/db/Cargo.toml +++ b/ahnlich/db/Cargo.toml @@ -3,6 +3,23 @@ name = "db" version = "0.3.0" edition = "2024" +[features] +default = ["server"] +server = [ + "dep:tonic", + "dep:prost", + "dep:openraft", + "dep:ahnlich-replication", + "ahnlich_types/server", + "dep:tokio", + "dep:tokio-util", + "dep:rayon", + "utils/server", + "dep:tracer", + "dep:task-manager", +] +wasm = [] + [[bin]] name = "ahnlich-db" path = "src/main.rs" @@ -18,30 +35,31 @@ bench = false [dependencies] serde.workspace = true ahash.workspace = true -ndarray.workspace = true +getrandom = { workspace = true } +getrandom_0_2 = { package = "getrandom", version = "0.2", features = ["js"] } itertools.workspace = true clap.workspace = true thiserror.workspace = true -utils = { path = "../utils", version = "*" } -task-manager = { path = "../task-manager", version = "*" } +utils = { path = "../utils", version = "*", default-features = false } +task-manager = { path = "../task-manager", version = "*", optional = true } ahnlich_similarity = { path = "../similarity", version = "*", features = ["serde"] } -tokio.workspace = true -tokio-util.workspace = true +tokio = { workspace = true, optional = true } +tokio-util = { workspace = true, optional = true } once_cell.workspace = true tracing.workspace = true -tracer = { path = "../tracer", version = "*" } +tracer = { path = "../tracer", version = "*", optional = true } serde_json.workspace = true async-trait.workspace = true -rayon.workspace = true +rayon = { workspace = true, optional = true } log.workspace = true fallible_collections.workspace = true pulp.workspace = true papaya.workspace = true -ahnlich_types = { path = "../types", version = "*" } -tonic.workspace = true -prost.workspace = true -openraft.workspace = true -ahnlich-replication = { path = "../replication", version = "*" } +ahnlich_types = { path = "../types", version = "*", default-features = false, features = [] } +tonic = { workspace = true, optional = true } +prost = { workspace = true, optional = true } +openraft = { workspace = true, optional = true } +ahnlich-replication = { path = "../replication", version = "*", optional = true } bitcode.workspace = true [dev-dependencies] diff --git a/ahnlich/db/src/algorithm/mod.rs b/ahnlich/db/src/algorithm/mod.rs index e0381c636..2872ac17c 100644 --- a/ahnlich/db/src/algorithm/mod.rs +++ b/ahnlich/db/src/algorithm/mod.rs @@ -9,7 +9,8 @@ use ahnlich_types::algorithm::algorithms::DistanceMetric; use ahnlich_types::algorithm::nonlinear::NonLinearAlgorithm; use ahnlich_types::algorithm::{algorithms::Algorithm, nonlinear::HnswConfig}; use heap::{BoundedMaxHeap, BoundedMinHeap, HeapOrder}; -use rayon::iter::ParallelIterator; +#[cfg(not(target_arch = "wasm32"))] +use rayon::prelude::*; use self::similarity::SimilarityFunc; use ahnlich_types::utils::StoreKeyId; @@ -74,7 +75,12 @@ pub(crate) trait FindSimilarN { fn find_similar_n<'a>( &'a self, search_vector: &EmbeddingKey, - search_list: impl ParallelIterator, + #[cfg(not(target_arch = "wasm32"))] search_list: impl rayon::iter::ParallelIterator< + Item = (&'a StoreKeyId, &'a EmbeddingKey), + >, + #[cfg(target_arch = "wasm32")] search_list: impl Iterator< + Item = (&'a StoreKeyId, &'a EmbeddingKey), + >, _used_all: bool, n: NonZeroUsize, ) -> Vec<(StoreKeyId, f32)>; @@ -85,7 +91,12 @@ impl FindSimilarN for LinearAlgorithm { fn find_similar_n<'a>( &'a self, search_vector: &EmbeddingKey, - search_list: impl ParallelIterator, + #[cfg(not(target_arch = "wasm32"))] search_list: impl rayon::iter::ParallelIterator< + Item = (&'a StoreKeyId, &'a EmbeddingKey), + >, + #[cfg(target_arch = "wasm32")] search_list: impl Iterator< + Item = (&'a StoreKeyId, &'a EmbeddingKey), + >, _used_all: bool, n: NonZeroUsize, ) -> Vec<(StoreKeyId, f32)> { @@ -95,6 +106,7 @@ impl FindSimilarN for LinearAlgorithm { match heap_order { HeapOrder::Min => { // Use bounded min heap for minimum similarity (Euclidean distance) + #[cfg(not(target_arch = "wasm32"))] let bounded_heap = search_list .fold( || BoundedMinHeap::new(n), @@ -118,6 +130,19 @@ impl FindSimilarN for LinearAlgorithm { }, ); + // WASM: Single-threaded fold + #[cfg(target_arch = "wasm32")] + let bounded_heap = search_list.fold( + BoundedMinHeap::new(n), + |mut heap, (key_id, second_vector)| { + let similarity = + similarity_function(search_vector.as_slice(), second_vector.as_slice()); + let heap_value: SimilarityVector = (*key_id, similarity).into(); + heap.push(heap_value); + heap + }, + ); + bounded_heap .into_sorted_vec() .into_iter() @@ -126,6 +151,7 @@ impl FindSimilarN for LinearAlgorithm { } HeapOrder::Max => { // Use bounded max heap for maximum similarity (Cosine, Dot Product) + #[cfg(not(target_arch = "wasm32"))] let bounded_heap = search_list .fold( || BoundedMaxHeap::new(n), @@ -149,6 +175,19 @@ impl FindSimilarN for LinearAlgorithm { }, ); + // WASM: Single-threaded fold + #[cfg(target_arch = "wasm32")] + let bounded_heap = search_list.fold( + BoundedMaxHeap::new(n), + |mut heap, (key_id, second_vector)| { + let similarity = + similarity_function(search_vector.as_slice(), second_vector.as_slice()); + let heap_value: SimilarityVector = (*key_id, similarity).into(); + heap.push(heap_value); + heap + }, + ); + bounded_heap .into_sorted_vec() .into_iter() @@ -218,7 +257,8 @@ impl From for DbHnswConfig { #[cfg(test)] mod tests { - use rayon::iter::IntoParallelRefIterator; + #[cfg(not(target_arch = "wasm32"))] + use rayon::prelude::*; use super::*; use crate::engine::store::embedding_key_to_id; diff --git a/ahnlich/db/src/algorithm/non_linear.rs b/ahnlich/db/src/algorithm/non_linear.rs index 4740a54a6..e6ffedca5 100644 --- a/ahnlich/db/src/algorithm/non_linear.rs +++ b/ahnlich/db/src/algorithm/non_linear.rs @@ -14,8 +14,8 @@ use ahnlich_types::algorithm::nonlinear::{ }; use ahnlich_types::utils::StoreKeyId; use papaya::HashMap as ConcurrentHashMap; -use rayon::iter::IntoParallelIterator; -use rayon::iter::ParallelIterator; +#[cfg(not(target_arch = "wasm32"))] +use rayon::prelude::*; use serde::Deserialize; use serde::Serialize; use std::collections::HashSet; @@ -126,7 +126,12 @@ impl FindSimilarN for NonLinearAlgorithmWithIndex { fn find_similar_n<'a>( &'a self, search_vector: &EmbeddingKey, - search_list: impl ParallelIterator, + #[cfg(not(target_arch = "wasm32"))] search_list: impl rayon::iter::ParallelIterator< + Item = (&'a StoreKeyId, &'a EmbeddingKey), + >, + #[cfg(target_arch = "wasm32")] search_list: impl Iterator< + Item = (&'a StoreKeyId, &'a EmbeddingKey), + >, used_all: bool, n: NonZeroUsize, ) -> Vec<(StoreKeyId, f32)> { @@ -149,7 +154,7 @@ impl NonLinearAlgorithmWithIndex { accept_list: Option>, n: NonZeroUsize, ) -> Vec<(StoreKeyId, f32)> { - match &self { + let raw_result = match &self { NonLinearAlgorithmWithIndex::KDTree(kdtree) => { ::n_nearest( kdtree, @@ -167,10 +172,21 @@ impl NonLinearAlgorithmWithIndex { ) } } - .expect("Index does not have the same size as reference_point") - .into_par_iter() - .map(|(arr, sim)| (embedding_key_to_id(&arr), sim)) - .collect() + .expect("Index does not have the same size as reference_point"); + + #[cfg(not(target_arch = "wasm32"))] + let final_result = raw_result + .into_par_iter() + .map(|(arr, sim)| (embedding_key_to_id(&arr), sim)) + .collect(); + + #[cfg(target_arch = "wasm32")] + let final_result = raw_result + .into_iter() + .map(|(arr, sim)| (embedding_key_to_id(&arr), sim)) + .collect(); + + final_result } } diff --git a/ahnlich/db/src/algorithm/similarity.rs b/ahnlich/db/src/algorithm/similarity.rs index 2d127b33e..3045017c1 100644 --- a/ahnlich/db/src/algorithm/similarity.rs +++ b/ahnlich/db/src/algorithm/similarity.rs @@ -33,8 +33,8 @@ mod tests { use super::*; use crate::tests::*; use ahnlich_types::keyval::StoreKey; - - use rayon::{iter::ParallelIterator, slice::ParallelSlice}; + #[cfg(not(target_arch = "wasm32"))] + use rayon::prelude::*; fn euclidean_distance_comp(first: &[f32], second: &[f32]) -> f32 { // Calculate the sum of squared differences for each dimension diff --git a/ahnlich/db/src/engine/operations.rs b/ahnlich/db/src/engine/operations.rs index d33b4643a..f3ae9bea8 100644 --- a/ahnlich/db/src/engine/operations.rs +++ b/ahnlich/db/src/engine/operations.rs @@ -1,16 +1,19 @@ use std::collections::HashMap; use std::collections::HashSet as StdHashSet; use std::num::NonZeroUsize; +use std::sync::Arc; +use ahnlich_types::algorithm::algorithms::Algorithm; use ahnlich_types::algorithm::nonlinear::NonLinearAlgorithm; use ahnlich_types::algorithm::nonlinear::non_linear_index; use ahnlich_types::db::query; use ahnlich_types::db::server; -use ahnlich_types::keyval::{StoreKey, StoreName, StoreValue}; +use ahnlich_types::keyval::{DbStoreEntry, StoreKey, StoreName, StoreValue}; use ahnlich_types::schema::Schema; use ahnlich_types::shared::info::StoreUpsert; use itertools::Itertools; -use rayon::iter::{IntoParallelIterator, ParallelIterator}; +#[cfg(not(target_arch = "wasm32"))] +use rayon::prelude::*; use crate::engine::store::StoreHandler; use crate::errors::ServerError; @@ -173,6 +176,8 @@ pub fn drop_store( pub fn set(store_handler: &StoreHandler, params: query::Set) -> Result { let schema = resolve_schema(¶ms.schema)?; + + #[cfg(not(target_arch = "wasm32"))] let inputs = params .inputs .into_par_iter() @@ -188,6 +193,22 @@ pub fn set(store_handler: &StoreHandler, params: query::Set) -> Result Some((key, value)), + (Some(key), None) => Some(( + key, + StoreValue { + value: HashMap::new(), + }, + )), + _ => None, + }) + .collect(); + store_handler.set_in_store( &StoreName { value: params.store, @@ -241,3 +262,114 @@ pub fn drop_schema( let dropped = store_handler.drop_schema(&schema)?; Ok(dropped as u64) } + +pub fn get_key( + store_handler: &StoreHandler, + params: query::GetKey, +) -> Result { + let schema = resolve_schema(¶ms.schema)?; + let keys = params + .keys + .into_iter() + .map(|key| StoreKey { key: key.key }) + .collect(); + + let entries = store_handler + .get_key_in_store( + &StoreName { + value: params.store, + }, + &schema, + keys, + )? + .into_iter() + .map(|(embedding_key, store_value)| DbStoreEntry { + key: Some(StoreKey { + key: embedding_key.as_slice().to_vec(), + }), + value: Some(Arc::unwrap_or_clone(store_value)), + }) + .collect(); + + Ok(server::Get { entries }) +} + +pub fn get_pred( + store_handler: &StoreHandler, + params: query::GetPred, +) -> Result { + let schema = resolve_schema(¶ms.schema)?; + let condition = params + .condition + .ok_or_else(|| ServerError::InvalidArgument("Condition is required".to_owned()))?; + + let entries = store_handler + .get_pred_in_store( + &StoreName { + value: params.store, + }, + &schema, + &condition, + )? + .into_iter() + .map(|(embedding_key, store_value)| DbStoreEntry { + key: Some(StoreKey { + key: embedding_key.as_slice().to_vec(), + }), + value: Some(Arc::unwrap_or_clone(store_value)), + }) + .collect(); + + Ok(server::Get { entries }) +} + +pub fn get_sim_n( + store_handler: &StoreHandler, + params: query::GetSimN, +) -> Result { + let schema = resolve_schema(¶ms.schema)?; + let search_input = params + .search_input + .ok_or_else(|| ServerError::InvalidArgument("Search input is required".to_owned()))?; + let closest_n = NonZeroUsize::new(params.closest_n as usize) + .ok_or_else(|| ServerError::InvalidArgument("closest_n must be > 0".to_owned()))?; + let algorithm = Algorithm::try_from(params.algorithm) + .map_err(|_| ServerError::InvalidArgument("Invalid algorithm".to_owned()))?; + + let results = store_handler.get_sim_in_store( + &StoreName { + value: params.store, + }, + &schema, + search_input, + closest_n, + algorithm, + params.condition, + )?; + + let entries = results + .into_iter() + .map(|(key, value, similarity)| server::GetSimNEntry { + key: Some(StoreKey { + key: key.as_slice().to_vec(), + }), + value: Some(Arc::unwrap_or_clone(value)), + similarity: Some(similarity), + }) + .collect(); + + Ok(server::GetSimN { entries }) +} + +pub fn get_store( + store_handler: &StoreHandler, + params: query::GetStore, +) -> Result { + let schema = resolve_schema(¶ms.schema)?; + store_handler.get_store( + &StoreName { + value: params.store, + }, + &schema, + ) +} diff --git a/ahnlich/db/src/engine/predicate.rs b/ahnlich/db/src/engine/predicate.rs index 8e9412c5b..34e3bd058 100644 --- a/ahnlich/db/src/engine/predicate.rs +++ b/ahnlich/db/src/engine/predicate.rs @@ -10,9 +10,8 @@ use ahnlich_types::utils::StoreKeyId; use itertools::Itertools; use papaya::HashMap as ConcurrentHashMap; use papaya::HashSet as ConcurrentHashSet; -use rayon::iter::IndexedParallelIterator; -use rayon::iter::IntoParallelIterator; -use rayon::iter::ParallelIterator; +#[cfg(not(target_arch = "wasm32"))] +use rayon::prelude::*; use serde::Deserialize; use serde::Serialize; use std::collections::HashMap; @@ -20,6 +19,8 @@ use std::collections::HashSet as StdHashSet; use std::mem::size_of_val; use std::sync::Arc; use utils::fallible; + +#[cfg(feature = "server")] use utils::parallel; /// Predicates are essentially nested hashmaps that let us retrieve original keys that match a @@ -180,6 +181,7 @@ impl PredicateIndices { /// Adds predicates if the key is within allowed_predicates #[tracing::instrument(skip_all, fields(new_len = new.len()))] pub(super) fn add(&self, new: Vec<(StoreKeyId, Arc)>) { + #[cfg(not(target_arch = "wasm32"))] let iter = new .into_par_iter() .flat_map(|(store_key_id, store_value)| { @@ -209,6 +211,30 @@ impl PredicateIndices { acc }); + // WASM: Single-threaded version + #[cfg(target_arch = "wasm32")] + let iter = new + .into_iter() + .flat_map(|(store_key_id, store_value)| { + let value_clone = Arc::clone(&store_value); + value_clone + .value + .clone() + .into_iter() + .map(move |(key, val)| { + let allowed_keys = self.allowed_predicates.pin(); + allowed_keys + .contains(&key) + .then_some((store_key_id, key, val)) + }) + }) + .flatten() + .map(|(store_key_id, key, val)| (key, (val.to_owned(), store_key_id))) + .fold(HashMap::new(), |mut acc: HashMap<_, Vec<_>>, (k, v)| { + acc.entry(k).or_default().push(v); + acc + }); + let predicate_values = self.inner.pin(); for (key, val) in iter { // If there exists a predicate index as we want to update it, just add to that @@ -321,30 +347,53 @@ impl PredicateIndex { if update.is_empty() { return; } - let chunk_size = parallel::chunk_size(update.len()); - update - .into_par_iter() - .chunks(chunk_size) - .for_each(|values| { - let pinned = self.0.pin(); - for (predicate_value, store_key_id) in values { - if let Some((_, value)) = pinned.get_key_value(&predicate_value) { - value.insert(store_key_id, &value.guard()); - } else { - // Use try_insert as it is very possible that the hashmap itself now has that key that - // was not previously there as it has been inserted on a different thread - let new_hashset = fallible::try_new_hashset() - .expect("Failed to initialize new predicate hashset"); - new_hashset.insert(store_key_id, &new_hashset.guard()); - if let Err(error_current) = pinned.try_insert(predicate_value, new_hashset) - { - error_current - .current - .insert(store_key_id, &error_current.current.guard()); + + #[cfg(feature = "server")] + { + let chunk_size = parallel::chunk_size(update.len()); + update + .into_par_iter() + .chunks(chunk_size) + .for_each(|values| { + let pinned = self.0.pin(); + for (predicate_value, store_key_id) in values { + if let Some((_, value)) = pinned.get_key_value(&predicate_value) { + value.insert(store_key_id, &value.guard()); + } else { + let new_hashset = fallible::try_new_hashset() + .expect("Failed to initialize new predicate hashset"); + new_hashset.insert(store_key_id, &new_hashset.guard()); + if let Err(error_current) = + pinned.try_insert(predicate_value, new_hashset) + { + error_current + .current + .insert(store_key_id, &error_current.current.guard()); + } } } + }); + } + + // WASM: Sequential processing (single-threaded) + #[cfg(not(feature = "server"))] + { + let pinned = self.0.pin(); + for (predicate_value, store_key_id) in update { + if let Some((_, value)) = pinned.get_key_value(&predicate_value) { + value.insert(store_key_id, &value.guard()); + } else { + let new_hashset = fallible::try_new_hashset() + .expect("Failed to initialize new predicate hashset"); + new_hashset.insert(store_key_id, &new_hashset.guard()); + if let Err(error_current) = pinned.try_insert(predicate_value, new_hashset) { + error_current + .current + .insert(store_key_id, &error_current.current.guard()); + } } - }); + } + } } /// checks the predicate index for a predicate op and value. The return type is a StdHashSet<_> diff --git a/ahnlich/db/src/engine/store.rs b/ahnlich/db/src/engine/store.rs index bfdba1ab2..5f2220a43 100644 --- a/ahnlich/db/src/engine/store.rs +++ b/ahnlich/db/src/engine/store.rs @@ -1,6 +1,7 @@ use crate::errors::ServerError; use ahnlich_similarity::EmbeddingKey; use itertools::Itertools; +#[cfg(not(target_arch = "wasm32"))] use rayon::prelude::*; use super::super::algorithm::non_linear::NonLinearAlgorithmIndices; @@ -29,7 +30,9 @@ use std::sync::Arc; use std::sync::atomic::Ordering; use std::sync::atomic::{AtomicBool, AtomicU64, AtomicUsize}; use utils::fallible; +#[cfg(feature = "server")] use utils::persistence::AhnlichPersistenceUtils; +#[cfg(feature = "server")] use utils::persistence::VersionedPersistence; type StoreEntry = (EmbeddingKey, Arc); @@ -51,6 +54,7 @@ pub struct StoreHandler { default_schema: Schema, } +#[cfg(feature = "server")] impl AhnlichPersistenceUtils for StoreHandler { type PersistenceObject = super::versioned::VersionedDbStores; @@ -65,6 +69,7 @@ impl AhnlichPersistenceUtils for StoreHandler { } } +#[cfg(feature = "server")] impl utils::size_calculation::SizeCalculationHandler for StoresSnapshot { #[tracing::instrument(skip(self))] fn recalculate_all_sizes(&self) { @@ -131,6 +136,12 @@ impl StoreHandler { } #[tracing::instrument(skip(self))] + #[cfg(feature = "wasm")] + pub fn get_stores(&self) -> Stores { + self.stores.clone() + } + + #[cfg(not(feature = "wasm"))] pub(crate) fn get_stores(&self) -> Stores { self.stores.clone() } @@ -148,11 +159,19 @@ impl StoreHandler { } #[tracing::instrument(skip(self))] + #[cfg(feature = "wasm")] + pub fn use_snapshot(&mut self, stores_snapshot: Stores) { + self.stores = stores_snapshot; + } + + #[tracing::instrument(skip(self))] + #[cfg(not(feature = "wasm"))] pub(crate) fn use_snapshot(&mut self, stores_snapshot: Stores) { self.stores = stores_snapshot; } /// Loads and migrates a persistence snapshot using the versioned format. + #[cfg(feature = "server")] pub(crate) fn load_snapshot( bytes: &[u8], ) -> Result { @@ -317,7 +336,10 @@ impl StoreHandler { return Ok(vec![]); } + #[cfg(not(target_arch = "wasm32"))] let filtered_iter = filtered_with_ids.par_iter().map(|(id, (key, _))| (id, key)); + #[cfg(target_arch = "wasm32")] + let filtered_iter = filtered_with_ids.iter().map(|(id, (key, _))| (id, key)); let result = linear_algo.find_similar_n(&search_embedding, filtered_iter, false, closest_n); @@ -355,7 +377,10 @@ impl StoreHandler { // Linear WITHOUT predicates: Need full data (AlgorithmByType::Linear(linear_algo), None) => { let filtered_with_ids = store.get_all_with_ids(); + #[cfg(not(target_arch = "wasm32"))] let filtered_iter = filtered_with_ids.par_iter().map(|(id, (key, _))| (id, key)); + #[cfg(target_arch = "wasm32")] + let filtered_iter = filtered_with_ids.iter().map(|(id, (key, _))| (id, key)); linear_algo.find_similar_n(&search_embedding, filtered_iter, true, closest_n) } }; @@ -799,7 +824,8 @@ impl Store { /// filters input dimension to make sure it matches store dimension #[tracing::instrument(skip(self, input), fields(input_length=input.len()))] fn filter_dimension(&self, input: Vec) -> Result, ServerError> { - input + #[cfg(not(target_arch = "wasm32"))] + let result = input .into_par_iter() .map(|key| { let store_dimension = self.dimension.get(); @@ -812,7 +838,25 @@ impl Store { } Ok(key) }) - .collect() + .collect(); + + #[cfg(target_arch = "wasm32")] + let result = input + .into_iter() + .map(|key| { + let store_dimension = self.dimension.get(); + let input_dimension = key.key.len(); + if input_dimension != store_dimension { + return Err(ServerError::StoreDimensionMismatch { + store_dimension, + input_dimension, + }); + } + Ok(key) + }) + .collect(); + + result } /// Deletes a bunch of store keys from the store @@ -864,20 +908,37 @@ impl Store { // Use parallel iteration only for large datasets (> 1000 entries) // to avoid parallelization overhead on small datasets const PARALLEL_THRESHOLD: usize = 1000; + #[cfg(not(target_arch = "wasm32"))] let use_parallel = entries.len() > PARALLEL_THRESHOLD; + #[cfg(target_arch = "wasm32")] + let use_parallel = false; let res = match &predicate.kind { Some(PredicateKind::Equals(predicates::Equals { key, value })) => { - if use_parallel { - entries - .par_iter() - .filter(|(_, (_, store_value))| { - let metadata_value = store_value.value.get(key); - metadata_value.eq(&value.as_ref()) - }) - .map(|(k, _)| *(*k)) - .collect() - } else { + #[cfg(not(target_arch = "wasm32"))] + { + if use_parallel { + entries + .par_iter() + .filter(|(_, (_, store_value))| { + let metadata_value = store_value.value.get(key); + metadata_value.eq(&value.as_ref()) + }) + .map(|(k, _)| *(*k)) + .collect() + } else { + entries + .iter() + .filter(|(_, (_, store_value))| { + let metadata_value = store_value.value.get(key); + metadata_value.eq(&value.as_ref()) + }) + .map(|(k, _)| *(*k)) + .collect() + } + } + #[cfg(target_arch = "wasm32")] + { entries .iter() .filter(|(_, (_, store_value))| { @@ -889,16 +950,30 @@ impl Store { } } Some(PredicateKind::NotEquals(predicates::NotEquals { key, value })) => { - if use_parallel { - entries - .par_iter() - .filter(|(_, (_, store_value))| { - let metdata_value = store_value.value.get(key); - !metdata_value.eq(&value.as_ref()) - }) - .map(|(k, _)| *(*k)) - .collect() - } else { + #[cfg(not(target_arch = "wasm32"))] + { + if use_parallel { + entries + .par_iter() + .filter(|(_, (_, store_value))| { + let metdata_value = store_value.value.get(key); + !metdata_value.eq(&value.as_ref()) + }) + .map(|(k, _)| *(*k)) + .collect() + } else { + entries + .iter() + .filter(|(_, (_, store_value))| { + let metdata_value = store_value.value.get(key); + !metdata_value.eq(&value.as_ref()) + }) + .map(|(k, _)| *(*k)) + .collect() + } + } + #[cfg(target_arch = "wasm32")] + { entries .iter() .filter(|(_, (_, store_value))| { @@ -910,19 +985,36 @@ impl Store { } } Some(PredicateKind::In(predicates::In { key, values })) => { - if use_parallel { - entries - .par_iter() - .filter(|(_, (_, store_value))| { - store_value - .value - .get(key) - .map(|v| values.contains(v)) - .unwrap_or(false) - }) - .map(|(k, _)| *(*k)) - .collect() - } else { + #[cfg(not(target_arch = "wasm32"))] + { + if use_parallel { + entries + .par_iter() + .filter(|(_, (_, store_value))| { + store_value + .value + .get(key) + .map(|v| values.contains(v)) + .unwrap_or(false) + }) + .map(|(k, _)| *(*k)) + .collect() + } else { + entries + .iter() + .filter(|(_, (_, store_value))| { + store_value + .value + .get(key) + .map(|v| values.contains(v)) + .unwrap_or(false) + }) + .map(|(k, _)| *(*k)) + .collect() + } + } + #[cfg(target_arch = "wasm32")] + { entries .iter() .filter(|(_, (_, store_value))| { @@ -937,19 +1029,36 @@ impl Store { } } Some(PredicateKind::NotIn(predicates::NotIn { key, values })) => { - if use_parallel { - entries - .par_iter() - .filter(|(_, (_, store_value))| { - store_value - .value - .get(key) - .map(|v| !values.contains(v)) - .unwrap_or(true) - }) - .map(|(k, _)| *(*k)) - .collect() - } else { + #[cfg(not(target_arch = "wasm32"))] + { + if use_parallel { + entries + .par_iter() + .filter(|(_, (_, store_value))| { + store_value + .value + .get(key) + .map(|v| !values.contains(v)) + .unwrap_or(true) + }) + .map(|(k, _)| *(*k)) + .collect() + } else { + entries + .iter() + .filter(|(_, (_, store_value))| { + store_value + .value + .get(key) + .map(|v| !values.contains(v)) + .unwrap_or(true) + }) + .map(|(k, _)| *(*k)) + .collect() + } + } + #[cfg(target_arch = "wasm32")] + { entries .iter() .filter(|(_, (_, store_value))| { @@ -1036,6 +1145,7 @@ impl Store { value: StdHashMap::new(), }) + 64; let estimated_bytes = new.len() * entry_size * 3; + #[cfg(feature = "server")] utils::allocator::check_memory_available(estimated_bytes) .map_err(|e| ServerError::Allocation(e.into()))?; @@ -1059,21 +1169,34 @@ impl Store { }; // Consume input vec, wrapping each entry once + #[cfg(not(target_arch = "wasm32"))] let res: Vec<(StoreKeyId, EmbeddingKey, Arc)> = new .into_par_iter() .map(check_and_wrap) .collect::>()?; + #[cfg(target_arch = "wasm32")] + let res: Vec<(StoreKeyId, EmbeddingKey, Arc)> = new + .into_iter() + .map(check_and_wrap) + .collect::>()?; + // Build predicate insert list using cheap clones + #[cfg(not(target_arch = "wasm32"))] let predicate_insert: Vec<(StoreKeyId, Arc)> = res .par_iter() .map(|(k, _, v)| (*k, Arc::clone(v))) .collect(); + #[cfg(target_arch = "wasm32")] + let predicate_insert: Vec<(StoreKeyId, Arc)> = + res.iter().map(|(k, _, v)| (*k, Arc::clone(v))).collect(); + let inserted = AtomicUsize::new(0); let updated = AtomicUsize::new(0); // Insert into main store, collecting keys for non-linear indices + #[cfg(not(target_arch = "wasm32"))] let inserted_keys: Vec<_> = res .into_par_iter() .filter_map(|(k, embedding_key, arc_val)| { @@ -1093,6 +1216,26 @@ impl Store { }) .collect(); + #[cfg(target_arch = "wasm32")] + let inserted_keys: Vec<_> = res + .into_iter() + .filter_map(|(k, embedding_key, arc_val)| { + let pinned = self.id_to_value.pin(); + // EmbeddingKey clone is a cheap Arc pointer bump + if pinned + .insert(k, (embedding_key.clone(), Arc::clone(&arc_val))) + .is_some() + { + updated.fetch_add(1, Ordering::SeqCst); + None + } else { + inserted.fetch_add(1, Ordering::SeqCst); + // Pointer bump — the same Arc> is shared with the map entry + Some(embedding_key) + } + }) + .collect(); + self.predicate_indices.add(predicate_insert); if !self.non_linear_indices.is_empty() { self.non_linear_indices.insert(inserted_keys); diff --git a/ahnlich/db/src/engine/versioned.rs b/ahnlich/db/src/engine/versioned.rs index e842c35c3..a8216ff7c 100644 --- a/ahnlich/db/src/engine/versioned.rs +++ b/ahnlich/db/src/engine/versioned.rs @@ -5,6 +5,7 @@ use ahnlich_types::keyval::StoreName; use ahnlich_types::schema::Schema; use serde::{Deserialize, Serialize}; use utils::fallible; +#[cfg(feature = "server")] use utils::persistence::{PersistenceTaskError, VersionedPersistence}; use super::store::{Store, Stores}; @@ -40,6 +41,7 @@ pub enum VersionedDbStores { V2 { stores: Stores }, } +#[cfg(feature = "server")] impl VersionedPersistence for VersionedDbStores { const CURRENT_VERSION: u32 = DB_CURRENT_VERSION; const MIN_VERSION: u32 = DB_MIN_VERSION; diff --git a/ahnlich/db/src/errors.rs b/ahnlich/db/src/errors.rs index 526145f82..faf7d7e9d 100644 --- a/ahnlich/db/src/errors.rs +++ b/ahnlich/db/src/errors.rs @@ -3,6 +3,7 @@ use ahnlich_types::keyval::StoreName; use ahnlich_types::algorithm::nonlinear::NonLinearAlgorithm; use fallible_collections::TryReserveError; use thiserror::Error; +#[cfg(feature = "server")] use tonic::{Code, Status}; #[derive(Error, Debug, Eq, PartialEq)] @@ -32,6 +33,7 @@ pub enum ServerError { InternalError(String), } +#[cfg(feature = "server")] impl From for Status { fn from(input: ServerError) -> Status { let message = input.to_string(); diff --git a/ahnlich/db/src/lib.rs b/ahnlich/db/src/lib.rs index a6279c3a3..7c60d9c4d 100644 --- a/ahnlich/db/src/lib.rs +++ b/ahnlich/db/src/lib.rs @@ -1,9 +1,16 @@ #![allow(clippy::size_of_ref)] mod algorithm; + +#[cfg(feature = "server")] pub mod cli; + pub mod engine; pub mod errors; + +#[cfg(feature = "server")] pub mod replication; + +#[cfg(feature = "server")] pub mod server; #[cfg(test)] diff --git a/ahnlich/rust-toolchain.toml b/ahnlich/rust-toolchain.toml index 630e8846e..fdd86d381 100644 --- a/ahnlich/rust-toolchain.toml +++ b/ahnlich/rust-toolchain.toml @@ -1,3 +1,4 @@ [toolchain] channel = "1.97.1" components = [ "rustfmt", "clippy" ] +targets = [ "wasm32-unknown-unknown" ] diff --git a/ahnlich/similarity/Cargo.toml b/ahnlich/similarity/Cargo.toml index e330aa819..b896ed54d 100644 --- a/ahnlich/similarity/Cargo.toml +++ b/ahnlich/similarity/Cargo.toml @@ -25,7 +25,7 @@ itertools.workspace = true ahash.workspace = true pulp.workspace = true smallvec.workspace = true -ahnlich_types = { version = "0.4.1", path = "../types" } +ahnlich_types = { version = "0.4.1", path = "../types", default-features = false } [features] default = ["serde"] diff --git a/ahnlich/types/Cargo.toml b/ahnlich/types/Cargo.toml index bb2498629..7b1afeab3 100644 --- a/ahnlich/types/Cargo.toml +++ b/ahnlich/types/Cargo.toml @@ -10,16 +10,21 @@ homepage = "https://github.com/deven96/ahnlich/ahnlich/types" repository = "https://github.com/deven96/ahnlich/ahnlich/types" description = "Types for using ahnlich_client_rs AI proxy and in-memory vector DB" +[features] +default = ["server"] +server = ["dep:tonic", "dep:tonic-build"] + [dependencies] -tonic.workspace = true +tonic = { workspace = true, optional = true } prost.workspace = true prost-types = "0.13" serde.workspace = true ascii85 = "0.2.1" ahash.workspace = true +getrandom = { workspace = true } [build-dependencies] prost-build = "0.13.4" -tonic-build.workspace = true +tonic-build = { workspace = true, optional = true } walkdir = "2.5.0" diff --git a/ahnlich/types/build.rs b/ahnlich/types/build.rs index 0275e887a..a36189026 100644 --- a/ahnlich/types/build.rs +++ b/ahnlich/types/build.rs @@ -6,128 +6,137 @@ use std::{ use walkdir::WalkDir; fn main() -> Result<()> { - // Get the current package directory - let manifest_dir = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR")); - - // Move up to the workspace root - let workspace_root = manifest_dir - .parent() - .expect("Failed parent 1") - .parent() - .expect("Failed parent 2"); // Adjust if needed - - let proto_dir = workspace_root.join("protos/"); - - println!( - "cargo:rerun-if-changed={}", - proto_dir - .as_path() - .to_str() - .expect("Cannot get proto dir str path") - ); - - // Only regenerate when the proto sources are present, i.e. in-repo dev - // builds. Downstream consumers building from crates.io have no `protos/` - // and must use the committed, pre-generated code unchanged. - if !proto_dir.exists() { + // Skip gRPC code generation if server feature is not enabled + #[cfg(not(feature = "server"))] + { return Ok(()); } - let protofiles: Vec = WalkDir::new(proto_dir.clone()) - .into_iter() - .filter_map(|a| a.ok()) - .filter(|entry| entry.path().extension().is_some_and(|ext| ext == "proto")) - .map(|a| a.path().to_path_buf()) - .collect(); - let out_dir = "src/"; - - if let Ok(entries) = std::fs::read_dir(out_dir) { - for entry in entries.filter_map(Result::ok) { - let path = entry.path(); - let preserve = ["utils", "schema.rs"]; - if path - .file_name() - .is_some_and(|name| !preserve.contains(&name.to_str().unwrap_or(""))) - { - if path.is_dir() { - std::fs::remove_dir_all(&path).expect("Failed to remove directory"); - } else { - std::fs::remove_file(&path).expect("Failed to remove file"); + #[cfg(feature = "server")] + { + // Get the current package directory + let manifest_dir = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR")); + + // Move up to the workspace root + let workspace_root = manifest_dir + .parent() + .expect("Failed parent 1") + .parent() + .expect("Failed parent 2"); // Adjust if needed + + let proto_dir = workspace_root.join("protos/"); + + println!( + "cargo:rerun-if-changed={}", + proto_dir + .as_path() + .to_str() + .expect("Cannot get proto dir str path") + ); + + // Only regenerate when the proto sources are present, i.e. in-repo dev + // builds. Downstream consumers building from crates.io have no `protos/` + // and must use the committed, pre-generated code unchanged. + if !proto_dir.exists() { + return Ok(()); + } + + let protofiles: Vec = WalkDir::new(proto_dir.clone()) + .into_iter() + .filter_map(|a| a.ok()) + .filter(|entry| entry.path().extension().is_some_and(|ext| ext == "proto")) + .map(|a| a.path().to_path_buf()) + .collect(); + let out_dir = "src/"; + + if let Ok(entries) = std::fs::read_dir(out_dir) { + for entry in entries.filter_map(Result::ok) { + let path = entry.path(); + let preserve = ["utils", "schema.rs"]; + if path + .file_name() + .is_some_and(|name| !preserve.contains(&name.to_str().unwrap_or(""))) + { + if path.is_dir() { + std::fs::remove_dir_all(&path).expect("Failed to remove directory"); + } else { + std::fs::remove_file(&path).expect("Failed to remove file"); + } } } } - } - let out_dir = PathBuf::from("src/"); - let mut file = std::fs::OpenOptions::new() - .create(true) - .truncate(false) - .write(true) - .open(out_dir.join("lib.rs")) - .expect("Failed to create mod file"); - // nonlinear algorthim, storekeyid, storevalue, metadatakey and value, - tonic_build::configure() - .build_client(true) - .build_client(true) - .out_dir(out_dir.clone()) - .type_attribute( - "algorithm.nonlinear.HNSWConfig", - "#[derive(serde::Serialize, serde::Deserialize, Eq, Hash, PartialOrd, Ord)]", - ) - .type_attribute( - "algorithm.nonlinear.KDTreeConfig", - "#[derive(serde::Serialize, serde::Deserialize, Eq, Hash, PartialOrd, Ord)]", - ) - .type_attribute( - "algorithm.nonlinear.NonLinearAlgorithm", - "#[derive(serde::Serialize, serde::Deserialize)]", - ) - .type_attribute( - "algorithm.nonlinear.NonLinearIndex.index", - "#[derive(serde::Serialize, serde::Deserialize, Eq, Hash, PartialOrd, Ord)]", - ) - .type_attribute( - "algorithm.nonlinear.NonLinearIndex", - "#[derive(serde::Serialize, serde::Deserialize, Eq, Hash, PartialOrd, Ord)]", - ) - .type_attribute( - "keyval.StoreValue", - "#[derive(serde::Serialize, serde::Deserialize)]", - ) - .type_attribute( - "shared.info.StoreUpsert", - "#[derive(serde::Serialize, serde::Deserialize)]", - ) - .type_attribute( - "metadata.MetadataValue", - "#[derive(PartialOrd, Ord, Hash, Eq)]", - ) - .type_attribute("keyval.StoreName", "#[derive(Eq, Hash, Ord, PartialOrd)]") - .type_attribute( - "db.server.StoreInfo", - "#[derive(Hash, Eq, Ord, PartialOrd)]", - ) - .type_attribute( - "metadata.MetadataValue.value", - "#[derive(PartialOrd, Ord, Hash, Eq)]", - ) - .type_attribute( - "ai.models.AIModel", - "#[derive(serde::Serialize, serde::Deserialize)]", - ) - .type_attribute( - "ai.server.AIStoreInfo", - "#[derive(Eq, PartialOrd, Ord, Hash)]", - ) - .type_attribute("client.ConnectedClient", "#[derive(PartialOrd, Ord, Eq)]") - .compile_protos(&protofiles, &[proto_dir]) - .inspect_err(|err| println!("{err}")) - .expect("failed"); - - restructure_generated_code(&out_dir, &mut file); - format_generated_code(&out_dir); - - Ok(()) + let out_dir = PathBuf::from("src/"); + let mut file = std::fs::OpenOptions::new() + .create(true) + .truncate(false) + .write(true) + .open(out_dir.join("lib.rs")) + .expect("Failed to create mod file"); + // nonlinear algorthim, storekeyid, storevalue, metadatakey and value, + tonic_build::configure() + .build_client(true) + .build_client(true) + .out_dir(out_dir.clone()) + .type_attribute( + "algorithm.nonlinear.HNSWConfig", + "#[derive(serde::Serialize, serde::Deserialize, Eq, Hash, PartialOrd, Ord)]", + ) + .type_attribute( + "algorithm.nonlinear.KDTreeConfig", + "#[derive(serde::Serialize, serde::Deserialize, Eq, Hash, PartialOrd, Ord)]", + ) + .type_attribute( + "algorithm.nonlinear.NonLinearAlgorithm", + "#[derive(serde::Serialize, serde::Deserialize)]", + ) + .type_attribute( + "algorithm.nonlinear.NonLinearIndex.index", + "#[derive(serde::Serialize, serde::Deserialize, Eq, Hash, PartialOrd, Ord)]", + ) + .type_attribute( + "algorithm.nonlinear.NonLinearIndex", + "#[derive(serde::Serialize, serde::Deserialize, Eq, Hash, PartialOrd, Ord)]", + ) + .type_attribute( + "keyval.StoreValue", + "#[derive(serde::Serialize, serde::Deserialize)]", + ) + .type_attribute( + "shared.info.StoreUpsert", + "#[derive(serde::Serialize, serde::Deserialize)]", + ) + .type_attribute( + "metadata.MetadataValue", + "#[derive(PartialOrd, Ord, Hash, Eq)]", + ) + .type_attribute("keyval.StoreName", "#[derive(Eq, Hash, Ord, PartialOrd)]") + .type_attribute( + "db.server.StoreInfo", + "#[derive(Hash, Eq, Ord, PartialOrd)]", + ) + .type_attribute( + "metadata.MetadataValue.value", + "#[derive(PartialOrd, Ord, Hash, Eq)]", + ) + .type_attribute( + "ai.models.AIModel", + "#[derive(serde::Serialize, serde::Deserialize)]", + ) + .type_attribute( + "ai.server.AIStoreInfo", + "#[derive(Eq, PartialOrd, Ord, Hash)]", + ) + .type_attribute("client.ConnectedClient", "#[derive(PartialOrd, Ord, Eq)]") + .compile_protos(&protofiles, &[proto_dir]) + .inspect_err(|err| println!("{err}")) + .expect("failed"); + + restructure_generated_code(&out_dir, &mut file); + format_generated_code(&out_dir); + + Ok(()) + } } /// Run rustfmt over the freshly generated files so the output matches @@ -211,7 +220,14 @@ fn restructure_generated_code(out_dir: &PathBuf, file: &mut std::fs::File) { let buffer = module_names .into_iter() .filter(|file| *file != "lib") - .map(|sub_str| format!("pub mod {sub_str};")) + .map(|sub_str| { + // Gate services module behind server feature since it contains gRPC definitions + if sub_str == "services" { + format!("#[cfg(feature = \"server\")]\npub mod {sub_str};") + } else { + format!("pub mod {sub_str};") + } + }) .collect::>() .join("\n"); diff --git a/ahnlich/types/src/lib.rs b/ahnlich/types/src/lib.rs index 61dd745cb..4ffeb7943 100644 --- a/ahnlich/types/src/lib.rs +++ b/ahnlich/types/src/lib.rs @@ -7,6 +7,7 @@ pub mod metadata; pub mod predicates; pub mod schema; pub mod server_types; +#[cfg(feature = "server")] pub mod services; pub mod shared; pub mod similarity; diff --git a/ahnlich/types/src/utils/mod.rs b/ahnlich/types/src/utils/mod.rs index 6adc19310..c370ba250 100644 --- a/ahnlich/types/src/utils/mod.rs +++ b/ahnlich/types/src/utils/mod.rs @@ -157,6 +157,7 @@ pub fn convert_to_nonzerousize(val: u64) -> Result { pub static TRACE_HEADER: &str = "ahnlich-trace-id"; +#[cfg(feature = "server")] pub fn add_trace_parent(req: &mut tonic::Request, tracing_id: Option) { if let Some(trace_parent) = tracing_id { req.metadata_mut().insert( diff --git a/ahnlich/utils/Cargo.toml b/ahnlich/utils/Cargo.toml index e9a04d78a..fbcca85e4 100644 --- a/ahnlich/utils/Cargo.toml +++ b/ahnlich/utils/Cargo.toml @@ -3,35 +3,65 @@ name = "utils" version = "0.0.0" edition = "2024" +[features] +default = ["server"] +server = [ + "dep:ahnlich_types", + "dep:tokio", + "dep:tokio-util", + "dep:tonic", + "dep:tracer", + "dep:tracing-opentelemetry", + "dep:opentelemetry", + "dep:task-manager", + "dep:async-trait", + "dep:tempfile", + "dep:cap", + "dep:tikv-jemallocator", + "dep:tikv-jemalloc-ctl", + "dep:tower", + "dep:pin-project", + "dep:tower-layer", + "dep:http", + "dep:hyper", + "dep:sha2", + "dep:toml", + "dep:memmap2", + "dep:futures", + "dep:rayon", +] + [dependencies] -ahnlich_types = { path = "../types", version = "*" } -task-manager = { path = "../task-manager", version = "*" } -tracing.workspace = true -tracing-opentelemetry.workspace = true -opentelemetry.workspace = true -tracer = { path = "../tracer", version = "*" } -tokio.workspace = true thiserror.workspace = true serde.workspace = true -async-trait.workspace = true -tempfile = "3.5" serde_json.workspace = true log.workspace = true -cap = "0.1.2" -tikv-jemallocator.workspace = true -tikv-jemalloc-ctl.workspace = true -tokio-util.workspace = true fallible_collections.workspace = true -rayon.workspace = true clap.workspace = true -futures.workspace = true papaya.workspace = true -tower = "0.5.2" -pin-project = "1" -tower-layer = "0.3.3" -tonic = { workspace = true, features = ["tls"] } -http.workspace = true -hyper = { version = "1", features = ["full"] } -sha2 = "0.10" -toml = "0.8" -memmap2 = "0.9.10" +tracing.workspace = true + +# Server-only dependencies +task-manager = { path = "../task-manager", version = "*", optional = true } +tracing-opentelemetry = { workspace = true, optional = true } +opentelemetry = { workspace = true, optional = true } +tracer = { path = "../tracer", version = "*", optional = true } +tokio = { workspace = true, optional = true } +async-trait = { workspace = true, optional = true } +tempfile = { version = "3.5", optional = true } +cap = { version = "0.1.2", optional = true } +tikv-jemallocator = { workspace = true, optional = true } +tikv-jemalloc-ctl = { workspace = true, optional = true } +tokio-util = { workspace = true, optional = true } +futures = { workspace = true, optional = true } +tower = { version = "0.5.2", optional = true } +pin-project = { version = "1", optional = true } +tower-layer = { version = "0.3.3", optional = true } +tonic = { workspace = true, features = ["tls"], optional = true } +http = { workspace = true, optional = true } +hyper = { version = "1", features = ["full"], optional = true } +sha2 = { version = "0.10", optional = true } +toml = { version = "0.8", optional = true } +memmap2 = { version = "0.9.10", optional = true } +rayon = { workspace = true, optional = true } +ahnlich_types = { path = "../types", version = "*", optional = true } diff --git a/ahnlich/utils/src/lib.rs b/ahnlich/utils/src/lib.rs index 4eae934e6..f388a6748 100644 --- a/ahnlich/utils/src/lib.rs +++ b/ahnlich/utils/src/lib.rs @@ -1,11 +1,26 @@ +// Core modules (WASM-compatible) +pub mod fallible; + +// Server-only modules (need tokio/async) +#[cfg(feature = "server")] +pub mod parallel; +#[cfg(feature = "server")] +pub mod size_calculation; + +// Server-only modules +#[cfg(feature = "server")] pub mod allocator; +#[cfg(feature = "server")] pub mod auth; +#[cfg(feature = "server")] pub mod cli; +#[cfg(feature = "server")] pub mod client; +#[cfg(feature = "server")] pub mod connection_layer; -pub mod fallible; -pub mod parallel; +#[cfg(feature = "server")] pub mod persistence; +#[cfg(feature = "server")] pub mod server; -pub mod size_calculation; +#[cfg(feature = "server")] pub mod snapshot; diff --git a/ahnlich/wasm-db/.gitignore b/ahnlich/wasm-db/.gitignore new file mode 100644 index 000000000..01d0a0845 --- /dev/null +++ b/ahnlich/wasm-db/.gitignore @@ -0,0 +1 @@ +pkg/ diff --git a/ahnlich/wasm-db/Cargo.toml b/ahnlich/wasm-db/Cargo.toml new file mode 100644 index 000000000..f07835dda --- /dev/null +++ b/ahnlich/wasm-db/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "ahnlich-wasm-db" +version = "0.1.0" +edition = "2024" + +[lib] +crate-type = ["cdylib", "rlib"] + +[dependencies] +ahnlich-db = { package = "db", path = "../db", default-features = false, features = ["wasm"] } +ahnlich-types = { package = "ahnlich_types", path = "../types", default-features = false } +wasm-bindgen = "0.2" +prost = "0.13" +rmp-serde = "1.3" +console_error_panic_hook = "0.1" + +[profile.release] +opt-level = "z" +lto = true +strip = true diff --git a/ahnlich/wasm-db/README.md b/ahnlich/wasm-db/README.md new file mode 100644 index 000000000..b3f1c37c6 --- /dev/null +++ b/ahnlich/wasm-db/README.md @@ -0,0 +1,71 @@ +# Ahnlich WASM DB + +Vector database for browsers and Node.js via WebAssembly. + +## Install + +```bash +npm install @deven96/ahnlich-wasm-db @deven96/ahnlich-client-node +``` + +## Usage + +```typescript +import init, { AhnlichDB } from '@deven96/ahnlich-wasm-db'; +import { CreateStore, Set, GetSimN } from '@deven96/ahnlich-client-node/dist/grpc/db/query_pb.js'; +import { StoreKey, DbStoreEntry, StoreValue } from '@deven96/ahnlich-client-node/dist/grpc/keyval_pb.js'; + +// Initialize WASM +await init(); + +// Create database +const db = new AhnlichDB(); + +// Create a vector store +const createReq = new CreateStore({ + store: 'embeddings', + dimension: 384, + createPredicates: ['category'], + errorIfExists: false +}); +db.create_store(createReq.toBinary()); + +// Insert vectors +const setReq = new Set({ + store: 'embeddings', + inputs: [ + new DbStoreEntry({ + key: new StoreKey({ key: [0.1, 0.2, 0.3, /* ... 381 more */] }), + value: new StoreValue({ value: {} }) + }) + ] +}); +db.set(setReq.toBinary()); + +// Find similar vectors +const searchReq = new GetSimN({ + store: 'embeddings', + searchInput: new StoreKey({ key: [0.1, 0.2, 0.3, /* ... */] }), + closestN: BigInt(10) +}); +const results = GetSimNResponse.fromBinary(db.get_sim_n(searchReq.toBinary())); +``` + +## API + +All methods take/return protobuf bytes: + +- `create_store` - Create vector store +- `set` - Insert/update vectors +- `get_key` - Retrieve by exact key +- `get_sim_n` - Find N most similar vectors +- `get_pred` - Query by metadata predicate +- `list_stores` - List all stores +- `drop_store` - Delete a store +- `del_key` - Delete specific keys + +See [examples/](./examples/) + +## Performance + +Fast enough for browser use. SIMD optimizations included. diff --git a/ahnlich/wasm-db/examples/README.md b/ahnlich/wasm-db/examples/README.md new file mode 100644 index 000000000..c56bb9440 --- /dev/null +++ b/ahnlich/wasm-db/examples/README.md @@ -0,0 +1,15 @@ +# WASM DB Tests + +```bash +# Build SDK +cd ../../../sdk/ahnlich-client-node +npm install && npm run build + +# Build WASM +cd ../../ahnlich/wasm-db +wasm-pack build --target web --out-dir pkg + +# Run tests +cd examples +node --test test.mjs +``` diff --git a/ahnlich/wasm-db/examples/test.mjs b/ahnlich/wasm-db/examples/test.mjs new file mode 100755 index 000000000..7f66417be --- /dev/null +++ b/ahnlich/wasm-db/examples/test.mjs @@ -0,0 +1,177 @@ +import { test } from 'node:test'; +import assert from 'node:assert'; +import { readFile } from 'fs/promises'; +import { fileURLToPath } from 'url'; +import { dirname, join } from 'path'; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); + +import { CreateStore, Set as SetRequest, GetKey, GetSimN as GetSimNRequest, GetPred as GetPredRequest, ListStores, DropStore } from '../../../sdk/ahnlich-client-node/dist/grpc/db/query_pb.js'; +import { Set as SetResponse, Get, GetSimN as GetSimNResponse, StoreList, Unit } from '../../../sdk/ahnlich-client-node/dist/grpc/db/server_pb.js'; +import { StoreKey, StoreValue, DbStoreEntry } from '../../../sdk/ahnlich-client-node/dist/grpc/keyval_pb.js'; +import { MetadataValue } from '../../../sdk/ahnlich-client-node/dist/grpc/metadata_pb.js'; +import { PredicateCondition, Predicate, Equals } from '../../../sdk/ahnlich-client-node/dist/grpc/predicate_pb.js'; + +const { AhnlichDB } = await import('../pkg/ahnlich_wasm_db.js'); + +const db = new AhnlichDB(); + +function normalize(vec) { + const magnitude = Math.sqrt(vec.reduce((sum, val) => sum + val * val, 0)); + return vec.map(val => val / magnitude); +} + +test('List stores (empty)', () => { + const req = new ListStores(); + const resp = StoreList.fromBinary(db.list_stores(req.toBinary())); + assert.strictEqual(resp.stores.length, 0); +}); + +test('Create stores with different schemas', () => { + const publicStore = new CreateStore({ + store: 'sentences', + dimension: 384, + createPredicates: ['category', 'language'], + nonLinearIndices: [], + errorIfExists: false, + schema: 'public' + }); + db.create_store(publicStore.toBinary()); + + const visionStore = new CreateStore({ + store: 'images', + dimension: 512, + createPredicates: ['label'], + nonLinearIndices: [], + errorIfExists: false, + schema: 'vision' + }); + db.create_store(visionStore.toBinary()); +}); + +test('Insert sentence embeddings with metadata', () => { + const entries = [ + new DbStoreEntry({ + key: new StoreKey({ key: normalize([0.1, 0.5, 0.2, ...Array(381).fill(0.01)]) }), + value: new StoreValue({ + value: { + category: new MetadataValue({ value: { case: 'rawString', value: 'greeting' } }), + language: new MetadataValue({ value: { case: 'rawString', value: 'en' } }), + text: new MetadataValue({ value: { case: 'rawString', value: 'Hello, how are you?' } }) + } + }) + }), + new DbStoreEntry({ + key: new StoreKey({ key: normalize([0.15, 0.48, 0.25, ...Array(381).fill(0.015)]) }), + value: new StoreValue({ + value: { + category: new MetadataValue({ value: { case: 'rawString', value: 'greeting' } }), + language: new MetadataValue({ value: { case: 'rawString', value: 'en' } }), + text: new MetadataValue({ value: { case: 'rawString', value: 'Hi there!' } }) + } + }) + }), + new DbStoreEntry({ + key: new StoreKey({ key: normalize([0.8, 0.1, 0.3, ...Array(381).fill(0.005)]) }), + value: new StoreValue({ + value: { + category: new MetadataValue({ value: { case: 'rawString', value: 'weather' } }), + language: new MetadataValue({ value: { case: 'rawString', value: 'en' } }), + text: new MetadataValue({ value: { case: 'rawString', value: 'It is sunny today' } }) + } + }) + }), + new DbStoreEntry({ + key: new StoreKey({ key: normalize([0.12, 0.52, 0.18, ...Array(381).fill(0.012)]) }), + value: new StoreValue({ + value: { + category: new MetadataValue({ value: { case: 'rawString', value: 'greeting' } }), + language: new MetadataValue({ value: { case: 'rawString', value: 'es' } }), + text: new MetadataValue({ value: { case: 'rawString', value: 'Hola, ¿cómo estás?' } }) + } + }) + }) + ]; + + const req = new SetRequest({ store: 'sentences', inputs: entries, schema: 'public' }); + const resp = SetResponse.fromBinary(db.set(req.toBinary())); + assert.strictEqual(Number(resp.upsert?.inserted), 4); +}); + +test('List all stores across schemas', () => { + const req = new ListStores(); + const resp = StoreList.fromBinary(db.list_stores(req.toBinary())); + assert.ok(resp.stores.length >= 1); +}); + +test('Filter by metadata predicate (category = greeting)', () => { + const req = new GetPredRequest({ + store: 'sentences', + condition: new PredicateCondition({ + kind: { + case: 'value', + value: new Predicate({ + kind: { + case: 'equals', + value: new Equals({ + key: 'category', + value: new MetadataValue({ value: { case: 'rawString', value: 'greeting' } }) + }) + } + }) + } + }), + schema: 'public' + }); + + const resp = Get.fromBinary(db.get_pred(req.toBinary())); + assert.strictEqual(resp.entries.length, 3); +}); + +test('Similarity search (top 3)', () => { + const queryVec = normalize([0.1, 0.5, 0.2, ...Array(381).fill(0.01)]); + const req = new GetSimNRequest({ + store: 'sentences', + searchInput: new StoreKey({ key: queryVec }), + closestN: BigInt(3), + schema: 'public' + }); + + const resp = GetSimNResponse.fromBinary(db.get_sim_n(req.toBinary())); + assert.strictEqual(resp.entries.length, 3); +}); + +test('Get by exact key', () => { + const queryVec = normalize([0.1, 0.5, 0.2, ...Array(381).fill(0.01)]); + const req = new GetKey({ + store: 'sentences', + keys: [new StoreKey({ key: queryVec })], + schema: 'public' + }); + + const resp = Get.fromBinary(db.get_key(req.toBinary())); + assert.strictEqual(resp.entries.length, 1); +}); + +test('Drop store', () => { + const req = new DropStore({ store: 'images', schema: 'vision', errorIfNotExists: true }); + db.drop_store(req.toBinary()); + + const listReq = new ListStores(); + const listResp = StoreList.fromBinary(db.list_stores(listReq.toBinary())); + assert.strictEqual(listResp.stores.length, 1); +}); + +test('Export and import snapshot', () => { + const snapshot = db.export_snapshot(); + assert.ok(snapshot.length > 0); + + const db2 = new AhnlichDB(); + db2.import_snapshot(snapshot); + + const listReq = new ListStores(); + const listResp = StoreList.fromBinary(db2.list_stores(listReq.toBinary())); + assert.strictEqual(listResp.stores.length, 1); + assert.strictEqual(listResp.stores[0].name, 'sentences'); +}); diff --git a/ahnlich/wasm-db/package.json b/ahnlich/wasm-db/package.json new file mode 100644 index 000000000..c1748c3d6 --- /dev/null +++ b/ahnlich/wasm-db/package.json @@ -0,0 +1,32 @@ +{ + "name": "@deven96/ahnlich-wasm-db", + "version": "0.1.0", + "description": "In-memory vector database for browsers and Node.js using WebAssembly", + "main": "pkg/ahnlich_wasm_db.js", + "types": "pkg/ahnlich_wasm_db.d.ts", + "files": [ + "pkg" + ], + "scripts": { + "build": "wasm-pack build --target web --out-dir pkg", + "test": "cd examples && node test-types.mjs" + }, + "keywords": [ + "vector-database", + "wasm", + "webassembly", + "embeddings", + "similarity-search", + "in-memory" + ], + "author": "Ahnlich Contributors", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/deven96/ahnlich.git", + "directory": "ahnlich/wasm-db" + }, + "peerDependencies": { + "@deven96/ahnlich-client-node": "^0.4.0" + } +} diff --git a/ahnlich/wasm-db/src/lib.rs b/ahnlich/wasm-db/src/lib.rs new file mode 100644 index 000000000..492e7e117 --- /dev/null +++ b/ahnlich/wasm-db/src/lib.rs @@ -0,0 +1,152 @@ +use ahnlich_db::engine::{operations, store::StoreHandler}; +use ahnlich_types::db::{query, server}; +use prost::Message; +use std::sync::Arc; +use std::sync::atomic::AtomicBool; +use wasm_bindgen::prelude::*; + +#[wasm_bindgen(start)] +pub fn init() { + console_error_panic_hook::set_once(); +} + +#[wasm_bindgen] +pub struct AhnlichDB { + handler: StoreHandler, +} + +#[wasm_bindgen] +impl AhnlichDB { + #[wasm_bindgen(constructor)] + pub fn new() -> AhnlichDB { + let write_flag = Arc::new(AtomicBool::new(false)); + let handler = StoreHandler::new(Arc::clone(&write_flag)); + AhnlichDB { handler } + } + + pub fn create_store(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::CreateStore::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + operations::create_store(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Unit {}; + Ok(response.encode_to_vec()) + } + + pub fn set(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::Set::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + let result = operations::set(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Set { + upsert: Some(result), + }; + Ok(response.encode_to_vec()) + } + + pub fn del_key(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::DelKey::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + let deleted = operations::del_key(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Del { + deleted_count: deleted as u64, + }; + Ok(response.encode_to_vec()) + } + + pub fn drop_store(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::DropStore::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + let deleted = operations::drop_store(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Del { + deleted_count: deleted as u64, + }; + Ok(response.encode_to_vec()) + } + + pub fn get_key(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::GetKey::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + let result = operations::get_key(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + Ok(result.encode_to_vec()) + } + + pub fn get_pred(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::GetPred::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + let result = operations::get_pred(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + Ok(result.encode_to_vec()) + } + + pub fn get_sim_n(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::GetSimN::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + let result = operations::get_sim_n(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + Ok(result.encode_to_vec()) + } + + pub fn get_store(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::GetStore::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + let result = operations::get_store(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + Ok(result.encode_to_vec()) + } + + pub fn list_stores(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::ListStores::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + let result = operations::list_stores(&self.handler, params); + + Ok(result.encode_to_vec()) + } + + pub fn export_snapshot(&self) -> Result, JsValue> { + let stores = self.handler.get_stores(); + rmp_serde::to_vec(&ahnlich_db::engine::versioned::VersionedDbStores::current( + stores, + )) + .map_err(|e| JsValue::from_str(&format!("Serialization error: {}", e))) + } + + pub fn import_snapshot(&mut self, snapshot_bytes: &[u8]) -> Result<(), JsValue> { + let versioned: ahnlich_db::engine::versioned::VersionedDbStores = + rmp_serde::from_slice(snapshot_bytes) + .map_err(|e| JsValue::from_str(&format!("Deserialization error: {}", e)))?; + + let stores = versioned + .into_latest() + .map_err(|e| JsValue::from_str(&format!("Migration error: {}", e)))?; + + self.handler.use_snapshot(stores); + Ok(()) + } +} + +impl Default for AhnlichDB { + fn default() -> Self { + Self::new() + } +} diff --git a/sdk/ahnlich-client-node/.gitignore b/sdk/ahnlich-client-node/.gitignore new file mode 100644 index 000000000..849ddff3b --- /dev/null +++ b/sdk/ahnlich-client-node/.gitignore @@ -0,0 +1 @@ +dist/ From c4930844378d01818520f186867d1d5315dc8ca6 Mon Sep 17 00:00:00 2001 From: Diretnan Domnan Date: Tue, 21 Jul 2026 13:27:05 +0200 Subject: [PATCH 2/5] Reuse read operations within db handler --- ahnlich/db/src/server/handler.rs | 135 +++---------------------------- 1 file changed, 13 insertions(+), 122 deletions(-) diff --git a/ahnlich/db/src/server/handler.rs b/ahnlich/db/src/server/handler.rs index 38cc54b8c..1f0f772e8 100644 --- a/ahnlich/db/src/server/handler.rs +++ b/ahnlich/db/src/server/handler.rs @@ -12,15 +12,12 @@ use crate::server::cluster_tasks::spawn_cluster_tasks; use crate::server::store_runtime::StoreRuntime; use ahnlich_replication::types::DbCommand; use ahnlich_types::db::pipeline::db_query::Query; -use ahnlich_types::db::server::GetSimNEntry; -use ahnlich_types::keyval::{DbStoreEntry, StoreKey, StoreName}; -use ahnlich_types::schema::Schema; use ahnlich_types::services::db_service::db_service_server::{DbService, DbServiceServer}; use ahnlich_types::shared::cluster::{ClusterInfoQuery, ClusterInfoResponse}; use ahnlich_types::shared::info::ErrorResponse; +use ahnlich_types::client as types_client; use ahnlich_types::db::{pipeline, query, server}; -use ahnlich_types::{client as types_client, utils as types_utils}; use std::future::Future; use std::io::Result as IoResult; use std::net::SocketAddr; @@ -81,39 +78,10 @@ impl DbService for Server { request: tonic::Request, ) -> std::result::Result, tonic::Status> { let params = request.into_inner(); - let schema = params - .schema - .as_ref() - .map(|schema| Schema::try_new(schema.clone())) - .transpose() - .map_err(tonic::Status::invalid_argument)? - .unwrap_or_default(); - let keys = params - .keys - .into_iter() - .map(|key| StoreKey { key: key.key }) - .collect(); - - let entries: Vec = read_store_handler(&self.runtime, |store_handler| { - Ok(store_handler - .get_key_in_store( - &StoreName { - value: params.store, - }, - &schema, - keys, - )? - .into_iter() - .map(|(embedding_key, store_value)| DbStoreEntry { - key: Some(StoreKey { - key: embedding_key.as_slice().to_vec(), - }), - value: Some(Arc::unwrap_or_clone(store_value)), - }) - .collect()) + let result = read_store_handler(&self.runtime, |store_handler| { + operations::get_key(store_handler, params) })?; - - Ok(tonic::Response::new(server::Get { entries })) + Ok(tonic::Response::new(result)) } #[tracing::instrument(skip_all)] @@ -122,37 +90,10 @@ impl DbService for Server { request: tonic::Request, ) -> std::result::Result, tonic::Status> { let params = request.into_inner(); - let schema = params - .schema - .as_ref() - .map(|schema| Schema::try_new(schema.clone())) - .transpose() - .map_err(tonic::Status::invalid_argument)? - .unwrap_or_default(); - - let condition = - ahnlich_types::unwrap_or_invalid!(params.condition, "Predicate Condition is required"); - - let entries = read_store_handler(&self.runtime, |store_handler| { - Ok(store_handler - .get_pred_in_store( - &StoreName { - value: params.store, - }, - &schema, - &condition, - )? - .into_iter() - .map(|(embedding_key, store_value)| DbStoreEntry { - key: Some(StoreKey { - key: embedding_key.as_slice().to_vec(), - }), - value: Some(Arc::unwrap_or_clone(store_value)), - }) - .collect()) + let result = read_store_handler(&self.runtime, |store_handler| { + operations::get_pred(store_handler, params) })?; - - Ok(tonic::Response::new(server::Get { entries })) + Ok(tonic::Response::new(result)) } #[tracing::instrument(skip_all)] @@ -161,49 +102,10 @@ impl DbService for Server { request: tonic::Request, ) -> std::result::Result, tonic::Status> { let params = request.into_inner(); - let schema = params - .schema - .as_ref() - .map(|schema| Schema::try_new(schema.clone())) - .transpose() - .map_err(tonic::Status::invalid_argument)? - .unwrap_or_default(); - let search_input = - ahnlich_types::unwrap_or_invalid!(params.search_input, "search input is required"); - - let search_input = StoreKey { - key: search_input.key, - }; - - let algorithm = ahnlich_types::algorithm::algorithms::Algorithm::try_from(params.algorithm) - .map_err(|err| tonic::Status::invalid_argument(err.to_string()))?; - - let closest_n = types_utils::convert_to_nonzerousize(params.closest_n) - .map_err(tonic::Status::invalid_argument)?; - let entries = read_store_handler(&self.runtime, |store_handler| { - Ok(store_handler - .get_sim_in_store( - &StoreName { - value: params.store, - }, - &schema, - search_input, - closest_n, - algorithm, - params.condition, - )? - .into_iter() - .map(|(embedding_key, store_value, sim)| GetSimNEntry { - key: Some(StoreKey { - key: embedding_key.as_slice().to_vec(), - }), - value: Some(Arc::unwrap_or_clone(store_value)), - similarity: Some(sim), - }) - .collect()) + let result = read_store_handler(&self.runtime, |store_handler| { + operations::get_sim_n(store_handler, params) })?; - - Ok(tonic::Response::new(server::GetSimN { entries })) + Ok(tonic::Response::new(result)) } #[tracing::instrument(skip_all)] @@ -438,21 +340,10 @@ impl DbService for Server { request: tonic::Request, ) -> std::result::Result, tonic::Status> { let params = request.into_inner(); - let schema = params - .schema - .map(Schema::try_new) - .transpose() - .map_err(tonic::Status::invalid_argument)? - .unwrap_or_default(); - let store_info = read_store_handler(&self.runtime, |store_handler| { - store_handler.get_store( - &StoreName { - value: params.store, - }, - &schema, - ) + let result = read_store_handler(&self.runtime, |store_handler| { + operations::get_store(store_handler, params) })?; - Ok(tonic::Response::new(store_info)) + Ok(tonic::Response::new(result)) } #[tracing::instrument(skip_all)] From 30ae9ca12d16224574e3701f1edcfe50eeb8c555 Mon Sep 17 00:00:00 2001 From: Diretnan Domnan Date: Tue, 21 Jul 2026 14:03:11 +0200 Subject: [PATCH 3/5] feat(wasm-db): expose all db operations (indexes, schema, upsert, del_pred) --- ahnlich/wasm-db/README.md | 27 ++++++++++-- ahnlich/wasm-db/src/lib.rs | 87 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 110 insertions(+), 4 deletions(-) diff --git a/ahnlich/wasm-db/README.md b/ahnlich/wasm-db/README.md index b3f1c37c6..6953e01d9 100644 --- a/ahnlich/wasm-db/README.md +++ b/ahnlich/wasm-db/README.md @@ -55,14 +55,33 @@ const results = GetSimNResponse.fromBinary(db.get_sim_n(searchReq.toBinary())); All methods take/return protobuf bytes: +**Store Management:** - `create_store` - Create vector store +- `drop_store` - Delete a store +- `list_stores` - List all stores +- `get_store` - Get store metadata +- `drop_schema` - Drop entire schema + +**Index Management:** +- `create_pred_index` - Create predicate index +- `drop_pred_index` - Drop predicate index +- `create_non_linear_algorithm_index` - Create HNSW/other non-linear index +- `drop_non_linear_algorithm_index` - Drop non-linear index + +**Data Operations:** - `set` - Insert/update vectors +- `upsert` - Upsert vectors (merge with existing) +- `del_key` - Delete specific keys +- `del_pred` - Delete by predicate + +**Query Operations:** - `get_key` - Retrieve by exact key -- `get_sim_n` - Find N most similar vectors - `get_pred` - Query by metadata predicate -- `list_stores` - List all stores -- `drop_store` - Delete a store -- `del_key` - Delete specific keys +- `get_sim_n` - Find N most similar vectors + +**Persistence:** +- `export_snapshot` - Export database to MessagePack bytes +- `import_snapshot` - Restore from MessagePack bytes See [examples/](./examples/) diff --git a/ahnlich/wasm-db/src/lib.rs b/ahnlich/wasm-db/src/lib.rs index 492e7e117..0109282b0 100644 --- a/ahnlich/wasm-db/src/lib.rs +++ b/ahnlich/wasm-db/src/lib.rs @@ -35,6 +35,56 @@ impl AhnlichDB { Ok(response.encode_to_vec()) } + pub fn create_pred_index(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::CreatePredIndex::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + operations::create_pred_index(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Unit {}; + Ok(response.encode_to_vec()) + } + + pub fn create_non_linear_algorithm_index( + &self, + request_bytes: &[u8], + ) -> Result, JsValue> { + let params = query::CreateNonLinearAlgorithmIndex::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + operations::create_non_linear_algorithm_index(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Unit {}; + Ok(response.encode_to_vec()) + } + + pub fn drop_pred_index(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::DropPredIndex::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + operations::drop_pred_index(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Unit {}; + Ok(response.encode_to_vec()) + } + + pub fn drop_non_linear_algorithm_index( + &self, + request_bytes: &[u8], + ) -> Result, JsValue> { + let params = query::DropNonLinearAlgorithmIndex::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + operations::drop_non_linear_algorithm_index(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Unit {}; + Ok(response.encode_to_vec()) + } + pub fn set(&self, request_bytes: &[u8]) -> Result, JsValue> { let params = query::Set::decode(request_bytes) .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; @@ -48,6 +98,19 @@ impl AhnlichDB { Ok(response.encode_to_vec()) } + pub fn upsert(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::Upsert::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + let result = operations::upsert(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Set { + upsert: Some(result), + }; + Ok(response.encode_to_vec()) + } + pub fn del_key(&self, request_bytes: &[u8]) -> Result, JsValue> { let params = query::DelKey::decode(request_bytes) .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; @@ -61,6 +124,19 @@ impl AhnlichDB { Ok(response.encode_to_vec()) } + pub fn del_pred(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::DelPred::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + let deleted = operations::del_pred(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Del { + deleted_count: deleted as u64, + }; + Ok(response.encode_to_vec()) + } + pub fn drop_store(&self, request_bytes: &[u8]) -> Result, JsValue> { let params = query::DropStore::decode(request_bytes) .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; @@ -74,6 +150,17 @@ impl AhnlichDB { Ok(response.encode_to_vec()) } + pub fn drop_schema(&self, request_bytes: &[u8]) -> Result, JsValue> { + let params = query::DropSchema::decode(request_bytes) + .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; + + operations::drop_schema(&self.handler, params) + .map_err(|e| JsValue::from_str(&e.to_string()))?; + + let response = server::Unit {}; + Ok(response.encode_to_vec()) + } + pub fn get_key(&self, request_bytes: &[u8]) -> Result, JsValue> { let params = query::GetKey::decode(request_bytes) .map_err(|e| JsValue::from_str(&format!("Decode error: {}", e)))?; From f95acf19b04d80f2528176ebc84c07ad2be90067 Mon Sep 17 00:00:00 2001 From: Diretnan Domnan Date: Thu, 23 Jul 2026 15:54:10 +0200 Subject: [PATCH 4/5] WIP: Working on wasm with threading support --- .github/workflows/deploy-docs-netlify.yml | 96 + .github/workflows/pages.yml | 28 - README.md | 1 + ahnlich/Cargo.lock | 31 +- ahnlich/db/Cargo.toml | 1 + ahnlich/db/src/algorithm/mod.rs | 44 +- ahnlich/db/src/algorithm/non_linear.rs | 15 +- ahnlich/db/src/algorithm/similarity.rs | 1 - ahnlich/db/src/engine/operations.rs | 18 - ahnlich/db/src/engine/predicate.rs | 26 - ahnlich/db/src/engine/store.rs | 220 +- ahnlich/rust-toolchain.toml | 1 - ahnlich/wasm-db/.cargo/config.toml | 14 + ahnlich/wasm-db/.gitignore | 1 + ahnlich/wasm-db/Cargo.toml | 4 +- ahnlich/wasm-db/build.sh | 59 + ahnlich/wasm-db/examples/test.mjs | 177 - ahnlich/wasm-db/package.json | 3 +- ahnlich/wasm-db/rust-toolchain.toml | 4 + ahnlich/wasm-db/src/lib.rs | 2 + web/ahnlich-web/.gitignore | 26 + web/ahnlich-web/.yarnrc.yml | 8 + .../client-libraries/client-libraries.mdx | 6 + .../docs/client-libraries/wasm/wasm.mdx | 228 + web/ahnlich-web/docusaurus.config.ts | 52 + web/ahnlich-web/netlify.toml | 5 + web/ahnlich-web/package.json | 8 +- web/ahnlich-web/scripts/copy-wasm-pkg.sh | 32 + web/ahnlich-web/sidebars.ts | 13 + .../src/components/BookSearchDemo/index.tsx | 361 + .../src/components/CardIcons/index.tsx | 6 + .../src/components/WasmDemo/index.tsx | 607 ++ web/ahnlich-web/static/img/wasm-logo.svg | 3 + .../static/sentencesWithEmbeddings.json | 1 + web/ahnlich-web/static/wasm-pkg/.gitkeep | 0 web/ahnlich-web/yarn.lock | 7582 +++++++++-------- 36 files changed, 5606 insertions(+), 4078 deletions(-) create mode 100644 .github/workflows/deploy-docs-netlify.yml delete mode 100644 .github/workflows/pages.yml create mode 100644 ahnlich/wasm-db/.cargo/config.toml create mode 100755 ahnlich/wasm-db/build.sh delete mode 100755 ahnlich/wasm-db/examples/test.mjs create mode 100644 ahnlich/wasm-db/rust-toolchain.toml create mode 100644 web/ahnlich-web/.yarnrc.yml create mode 100644 web/ahnlich-web/docs/client-libraries/wasm/wasm.mdx create mode 100644 web/ahnlich-web/netlify.toml create mode 100755 web/ahnlich-web/scripts/copy-wasm-pkg.sh create mode 100644 web/ahnlich-web/src/components/BookSearchDemo/index.tsx create mode 100644 web/ahnlich-web/src/components/WasmDemo/index.tsx create mode 100644 web/ahnlich-web/static/img/wasm-logo.svg create mode 100644 web/ahnlich-web/static/sentencesWithEmbeddings.json create mode 100644 web/ahnlich-web/static/wasm-pkg/.gitkeep diff --git a/.github/workflows/deploy-docs-netlify.yml b/.github/workflows/deploy-docs-netlify.yml new file mode 100644 index 000000000..5ec3a50c6 --- /dev/null +++ b/.github/workflows/deploy-docs-netlify.yml @@ -0,0 +1,96 @@ +name: Build and Deploy to Netlify +on: + push: + branches: + - main + - wasm-db-rayon +permissions: + contents: write +jobs: + build-and-deploy: + concurrency: ci-${{ github.ref }} + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v4 + + - name: Setup Rust nightly for WASM + uses: actions-rs/toolchain@v1 + with: + toolchain: nightly-2025-11-15 + target: wasm32-unknown-unknown + override: true + + - name: Cache Rust dependencies + uses: actions/cache@v3 + with: + path: | + ~/.cargo/bin/ + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + ahnlich/target/ + key: ${{ runner.os }}-cargo-wasm-${{ hashFiles('**/Cargo.lock') }} + + - name: Install wasm-pack + run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh + + - name: Install esbuild + run: npm install -g esbuild + + - name: Build SDK (for protobuf types) + run: | + cd sdk/ahnlich-client-node + npm install + npm run build + echo "SDK built at sdk/ahnlich-client-node/dist/" + + - name: Generate protobuf entry point + run: | + cat > ahnlich/wasm-db/protobuf-entry.js << 'EOF' + // Import and re-export with namespaces to avoid conflicts + import * as queryPb from '../../sdk/ahnlich-client-node/dist/grpc/db/query_pb.js'; + import * as serverPb from '../../sdk/ahnlich-client-node/dist/grpc/db/server_pb.js'; + import * as keyvalPb from '../../sdk/ahnlich-client-node/dist/grpc/keyval_pb.js'; + import * as metadataPb from '../../sdk/ahnlich-client-node/dist/grpc/metadata_pb.js'; + import * as predicatePb from '../../sdk/ahnlich-client-node/dist/grpc/predicate_pb.js'; + + // Export all individual types from keyval, metadata, predicate (no conflicts) + export * from '../../sdk/ahnlich-client-node/dist/grpc/keyval_pb.js'; + export * from '../../sdk/ahnlich-client-node/dist/grpc/metadata_pb.js'; + export * from '../../sdk/ahnlich-client-node/dist/grpc/predicate_pb.js'; + + // Export query and server as namespaces to avoid conflicts + export { queryPb, serverPb }; + EOF + echo "Protobuf entry point generated" + + - name: Build WASM package + run: | + cd ahnlich/wasm-db + chmod +x build.sh + ./build.sh + echo "WASM package built at ahnlich/wasm-db/pkg/" + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'yarn' + cache-dependency-path: web/ahnlich-web/yarn.lock + + - name: Install and Build Docusaurus 🔧 + working-directory: web/ahnlich-web + run: | + export G_TRACKING_ID=${{ secrets.G_TRACKING_ID }} + yarn install --frozen-lockfile + yarn run build + touch build/.nojekyll + cp netlify.toml build/netlify.toml + + - name: Deploy to gh-pages-netlify 🚀 + uses: JamesIves/github-pages-deploy-action@v4 + with: + folder: web/ahnlich-web/build + branch: gh-pages-netlify + clean: true diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml deleted file mode 100644 index 4a474bbb3..000000000 --- a/.github/workflows/pages.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Build and Deploy -on: - push: - branches: - - main -permissions: - contents: write -jobs: - build-and-deploy: - concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. - runs-on: ubuntu-latest - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v4 - - - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. - working-directory: web/ahnlich-web - run: | - export G_TRACKING_ID=${{ secrets.G_TRACKING_ID }} - yarn install - yarn run build - touch build/.nojekyll - echo "ahnlich.dev" >> build/CNAME - - - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@v4 - with: - folder: web/ahnlich-web/build # The folder the action should deploy. diff --git a/README.md b/README.md index f77dde105..bd143880e 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@

ahnlich

[![All Test](https://github.com/deven96/ahnlich/actions/workflows/test.yml/badge.svg)](https://github.com/deven96/ahnlich/actions/workflows/test.yml) +[![Netlify Status](https://api.netlify.com/api/v1/badges/3ba5137a-7488-4539-a037-7e73f0ed06a8/deploy-status)](https://app.netlify.com/projects/unrivaled-toffee-172de7/deploys) ⚠️ **Note:** Ahnlich continues to evolve **rapidly**, and while stable for most use cases, it may still receive occasional breaking updates as features improve. diff --git a/ahnlich/Cargo.lock b/ahnlich/Cargo.lock index 8aa277084..5b2890052 100644 --- a/ahnlich/Cargo.lock +++ b/ahnlich/Cargo.lock @@ -65,8 +65,10 @@ dependencies = [ "console_error_panic_hook", "db", "prost 0.13.5", + "rayon", "rmp-serde", "wasm-bindgen", + "wasm-bindgen-rayon", ] [[package]] @@ -3774,12 +3776,13 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.11.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" +checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d" dependencies = [ "either", "rayon-core", + "wasm_sync", ] [[package]] @@ -3801,6 +3804,7 @@ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" dependencies = [ "crossbeam-deque", "crossbeam-utils", + "wasm_sync", ] [[package]] @@ -5772,6 +5776,18 @@ dependencies = [ "wasm-bindgen-shared", ] +[[package]] +name = "wasm-bindgen-rayon" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a16c60a56c81e4dc3b9c43d76ba5633e1c0278211d59a9cb07d61b6cd1c6583" +dependencies = [ + "crossbeam-channel", + "js-sys", + "rayon", + "wasm-bindgen", +] + [[package]] name = "wasm-bindgen-shared" version = "0.2.108" @@ -5816,6 +5832,17 @@ dependencies = [ "web-sys", ] +[[package]] +name = "wasm_sync" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cff360cade7fec41ff0e9d2cda57fe58258c5f16def0e21302394659e6bbb0ea" +dependencies = [ + "js-sys", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "wasmparser" version = "0.244.0" diff --git a/ahnlich/db/Cargo.toml b/ahnlich/db/Cargo.toml index 2634839d9..d8b01058b 100644 --- a/ahnlich/db/Cargo.toml +++ b/ahnlich/db/Cargo.toml @@ -19,6 +19,7 @@ server = [ "dep:task-manager", ] wasm = [] +wasm-threads = ["dep:rayon"] [[bin]] name = "ahnlich-db" diff --git a/ahnlich/db/src/algorithm/mod.rs b/ahnlich/db/src/algorithm/mod.rs index 2872ac17c..ae39fc723 100644 --- a/ahnlich/db/src/algorithm/mod.rs +++ b/ahnlich/db/src/algorithm/mod.rs @@ -9,7 +9,6 @@ use ahnlich_types::algorithm::algorithms::DistanceMetric; use ahnlich_types::algorithm::nonlinear::NonLinearAlgorithm; use ahnlich_types::algorithm::{algorithms::Algorithm, nonlinear::HnswConfig}; use heap::{BoundedMaxHeap, BoundedMinHeap, HeapOrder}; -#[cfg(not(target_arch = "wasm32"))] use rayon::prelude::*; use self::similarity::SimilarityFunc; @@ -75,12 +74,7 @@ pub(crate) trait FindSimilarN { fn find_similar_n<'a>( &'a self, search_vector: &EmbeddingKey, - #[cfg(not(target_arch = "wasm32"))] search_list: impl rayon::iter::ParallelIterator< - Item = (&'a StoreKeyId, &'a EmbeddingKey), - >, - #[cfg(target_arch = "wasm32")] search_list: impl Iterator< - Item = (&'a StoreKeyId, &'a EmbeddingKey), - >, + search_list: impl rayon::iter::ParallelIterator, _used_all: bool, n: NonZeroUsize, ) -> Vec<(StoreKeyId, f32)>; @@ -91,12 +85,7 @@ impl FindSimilarN for LinearAlgorithm { fn find_similar_n<'a>( &'a self, search_vector: &EmbeddingKey, - #[cfg(not(target_arch = "wasm32"))] search_list: impl rayon::iter::ParallelIterator< - Item = (&'a StoreKeyId, &'a EmbeddingKey), - >, - #[cfg(target_arch = "wasm32")] search_list: impl Iterator< - Item = (&'a StoreKeyId, &'a EmbeddingKey), - >, + search_list: impl rayon::iter::ParallelIterator, _used_all: bool, n: NonZeroUsize, ) -> Vec<(StoreKeyId, f32)> { @@ -106,7 +95,6 @@ impl FindSimilarN for LinearAlgorithm { match heap_order { HeapOrder::Min => { // Use bounded min heap for minimum similarity (Euclidean distance) - #[cfg(not(target_arch = "wasm32"))] let bounded_heap = search_list .fold( || BoundedMinHeap::new(n), @@ -130,19 +118,6 @@ impl FindSimilarN for LinearAlgorithm { }, ); - // WASM: Single-threaded fold - #[cfg(target_arch = "wasm32")] - let bounded_heap = search_list.fold( - BoundedMinHeap::new(n), - |mut heap, (key_id, second_vector)| { - let similarity = - similarity_function(search_vector.as_slice(), second_vector.as_slice()); - let heap_value: SimilarityVector = (*key_id, similarity).into(); - heap.push(heap_value); - heap - }, - ); - bounded_heap .into_sorted_vec() .into_iter() @@ -151,7 +126,6 @@ impl FindSimilarN for LinearAlgorithm { } HeapOrder::Max => { // Use bounded max heap for maximum similarity (Cosine, Dot Product) - #[cfg(not(target_arch = "wasm32"))] let bounded_heap = search_list .fold( || BoundedMaxHeap::new(n), @@ -175,19 +149,6 @@ impl FindSimilarN for LinearAlgorithm { }, ); - // WASM: Single-threaded fold - #[cfg(target_arch = "wasm32")] - let bounded_heap = search_list.fold( - BoundedMaxHeap::new(n), - |mut heap, (key_id, second_vector)| { - let similarity = - similarity_function(search_vector.as_slice(), second_vector.as_slice()); - let heap_value: SimilarityVector = (*key_id, similarity).into(); - heap.push(heap_value); - heap - }, - ); - bounded_heap .into_sorted_vec() .into_iter() @@ -257,7 +218,6 @@ impl From for DbHnswConfig { #[cfg(test)] mod tests { - #[cfg(not(target_arch = "wasm32"))] use rayon::prelude::*; use super::*; diff --git a/ahnlich/db/src/algorithm/non_linear.rs b/ahnlich/db/src/algorithm/non_linear.rs index e6ffedca5..630b1c95e 100644 --- a/ahnlich/db/src/algorithm/non_linear.rs +++ b/ahnlich/db/src/algorithm/non_linear.rs @@ -14,7 +14,6 @@ use ahnlich_types::algorithm::nonlinear::{ }; use ahnlich_types::utils::StoreKeyId; use papaya::HashMap as ConcurrentHashMap; -#[cfg(not(target_arch = "wasm32"))] use rayon::prelude::*; use serde::Deserialize; use serde::Serialize; @@ -126,12 +125,7 @@ impl FindSimilarN for NonLinearAlgorithmWithIndex { fn find_similar_n<'a>( &'a self, search_vector: &EmbeddingKey, - #[cfg(not(target_arch = "wasm32"))] search_list: impl rayon::iter::ParallelIterator< - Item = (&'a StoreKeyId, &'a EmbeddingKey), - >, - #[cfg(target_arch = "wasm32")] search_list: impl Iterator< - Item = (&'a StoreKeyId, &'a EmbeddingKey), - >, + search_list: impl rayon::iter::ParallelIterator, used_all: bool, n: NonZeroUsize, ) -> Vec<(StoreKeyId, f32)> { @@ -174,18 +168,11 @@ impl NonLinearAlgorithmWithIndex { } .expect("Index does not have the same size as reference_point"); - #[cfg(not(target_arch = "wasm32"))] let final_result = raw_result .into_par_iter() .map(|(arr, sim)| (embedding_key_to_id(&arr), sim)) .collect(); - #[cfg(target_arch = "wasm32")] - let final_result = raw_result - .into_iter() - .map(|(arr, sim)| (embedding_key_to_id(&arr), sim)) - .collect(); - final_result } } diff --git a/ahnlich/db/src/algorithm/similarity.rs b/ahnlich/db/src/algorithm/similarity.rs index 3045017c1..fc0a696a0 100644 --- a/ahnlich/db/src/algorithm/similarity.rs +++ b/ahnlich/db/src/algorithm/similarity.rs @@ -33,7 +33,6 @@ mod tests { use super::*; use crate::tests::*; use ahnlich_types::keyval::StoreKey; - #[cfg(not(target_arch = "wasm32"))] use rayon::prelude::*; fn euclidean_distance_comp(first: &[f32], second: &[f32]) -> f32 { diff --git a/ahnlich/db/src/engine/operations.rs b/ahnlich/db/src/engine/operations.rs index f3ae9bea8..8273ff31e 100644 --- a/ahnlich/db/src/engine/operations.rs +++ b/ahnlich/db/src/engine/operations.rs @@ -12,7 +12,6 @@ use ahnlich_types::keyval::{DbStoreEntry, StoreKey, StoreName, StoreValue}; use ahnlich_types::schema::Schema; use ahnlich_types::shared::info::StoreUpsert; use itertools::Itertools; -#[cfg(not(target_arch = "wasm32"))] use rayon::prelude::*; use crate::engine::store::StoreHandler; @@ -177,7 +176,6 @@ pub fn drop_store( pub fn set(store_handler: &StoreHandler, params: query::Set) -> Result { let schema = resolve_schema(¶ms.schema)?; - #[cfg(not(target_arch = "wasm32"))] let inputs = params .inputs .into_par_iter() @@ -193,22 +191,6 @@ pub fn set(store_handler: &StoreHandler, params: query::Set) -> Result Some((key, value)), - (Some(key), None) => Some(( - key, - StoreValue { - value: HashMap::new(), - }, - )), - _ => None, - }) - .collect(); - store_handler.set_in_store( &StoreName { value: params.store, diff --git a/ahnlich/db/src/engine/predicate.rs b/ahnlich/db/src/engine/predicate.rs index 34e3bd058..10abd9080 100644 --- a/ahnlich/db/src/engine/predicate.rs +++ b/ahnlich/db/src/engine/predicate.rs @@ -10,7 +10,6 @@ use ahnlich_types::utils::StoreKeyId; use itertools::Itertools; use papaya::HashMap as ConcurrentHashMap; use papaya::HashSet as ConcurrentHashSet; -#[cfg(not(target_arch = "wasm32"))] use rayon::prelude::*; use serde::Deserialize; use serde::Serialize; @@ -181,7 +180,6 @@ impl PredicateIndices { /// Adds predicates if the key is within allowed_predicates #[tracing::instrument(skip_all, fields(new_len = new.len()))] pub(super) fn add(&self, new: Vec<(StoreKeyId, Arc)>) { - #[cfg(not(target_arch = "wasm32"))] let iter = new .into_par_iter() .flat_map(|(store_key_id, store_value)| { @@ -211,30 +209,6 @@ impl PredicateIndices { acc }); - // WASM: Single-threaded version - #[cfg(target_arch = "wasm32")] - let iter = new - .into_iter() - .flat_map(|(store_key_id, store_value)| { - let value_clone = Arc::clone(&store_value); - value_clone - .value - .clone() - .into_iter() - .map(move |(key, val)| { - let allowed_keys = self.allowed_predicates.pin(); - allowed_keys - .contains(&key) - .then_some((store_key_id, key, val)) - }) - }) - .flatten() - .map(|(store_key_id, key, val)| (key, (val.to_owned(), store_key_id))) - .fold(HashMap::new(), |mut acc: HashMap<_, Vec<_>>, (k, v)| { - acc.entry(k).or_default().push(v); - acc - }); - let predicate_values = self.inner.pin(); for (key, val) in iter { // If there exists a predicate index as we want to update it, just add to that diff --git a/ahnlich/db/src/engine/store.rs b/ahnlich/db/src/engine/store.rs index 5f2220a43..c80650ee5 100644 --- a/ahnlich/db/src/engine/store.rs +++ b/ahnlich/db/src/engine/store.rs @@ -1,7 +1,6 @@ use crate::errors::ServerError; use ahnlich_similarity::EmbeddingKey; use itertools::Itertools; -#[cfg(not(target_arch = "wasm32"))] use rayon::prelude::*; use super::super::algorithm::non_linear::NonLinearAlgorithmIndices; @@ -336,10 +335,7 @@ impl StoreHandler { return Ok(vec![]); } - #[cfg(not(target_arch = "wasm32"))] let filtered_iter = filtered_with_ids.par_iter().map(|(id, (key, _))| (id, key)); - #[cfg(target_arch = "wasm32")] - let filtered_iter = filtered_with_ids.iter().map(|(id, (key, _))| (id, key)); let result = linear_algo.find_similar_n(&search_embedding, filtered_iter, false, closest_n); @@ -377,10 +373,7 @@ impl StoreHandler { // Linear WITHOUT predicates: Need full data (AlgorithmByType::Linear(linear_algo), None) => { let filtered_with_ids = store.get_all_with_ids(); - #[cfg(not(target_arch = "wasm32"))] let filtered_iter = filtered_with_ids.par_iter().map(|(id, (key, _))| (id, key)); - #[cfg(target_arch = "wasm32")] - let filtered_iter = filtered_with_ids.iter().map(|(id, (key, _))| (id, key)); linear_algo.find_similar_n(&search_embedding, filtered_iter, true, closest_n) } }; @@ -824,8 +817,7 @@ impl Store { /// filters input dimension to make sure it matches store dimension #[tracing::instrument(skip(self, input), fields(input_length=input.len()))] fn filter_dimension(&self, input: Vec) -> Result, ServerError> { - #[cfg(not(target_arch = "wasm32"))] - let result = input + input .into_par_iter() .map(|key| { let store_dimension = self.dimension.get(); @@ -838,25 +830,7 @@ impl Store { } Ok(key) }) - .collect(); - - #[cfg(target_arch = "wasm32")] - let result = input - .into_iter() - .map(|key| { - let store_dimension = self.dimension.get(); - let input_dimension = key.key.len(); - if input_dimension != store_dimension { - return Err(ServerError::StoreDimensionMismatch { - store_dimension, - input_dimension, - }); - } - Ok(key) - }) - .collect(); - - result + .collect() } /// Deletes a bunch of store keys from the store @@ -908,37 +882,20 @@ impl Store { // Use parallel iteration only for large datasets (> 1000 entries) // to avoid parallelization overhead on small datasets const PARALLEL_THRESHOLD: usize = 1000; - #[cfg(not(target_arch = "wasm32"))] let use_parallel = entries.len() > PARALLEL_THRESHOLD; - #[cfg(target_arch = "wasm32")] - let use_parallel = false; let res = match &predicate.kind { Some(PredicateKind::Equals(predicates::Equals { key, value })) => { - #[cfg(not(target_arch = "wasm32"))] - { - if use_parallel { - entries - .par_iter() - .filter(|(_, (_, store_value))| { - let metadata_value = store_value.value.get(key); - metadata_value.eq(&value.as_ref()) - }) - .map(|(k, _)| *(*k)) - .collect() - } else { - entries - .iter() - .filter(|(_, (_, store_value))| { - let metadata_value = store_value.value.get(key); - metadata_value.eq(&value.as_ref()) - }) - .map(|(k, _)| *(*k)) - .collect() - } - } - #[cfg(target_arch = "wasm32")] - { + if use_parallel { + entries + .par_iter() + .filter(|(_, (_, store_value))| { + let metadata_value = store_value.value.get(key); + metadata_value.eq(&value.as_ref()) + }) + .map(|(k, _)| *(*k)) + .collect() + } else { entries .iter() .filter(|(_, (_, store_value))| { @@ -950,30 +907,16 @@ impl Store { } } Some(PredicateKind::NotEquals(predicates::NotEquals { key, value })) => { - #[cfg(not(target_arch = "wasm32"))] - { - if use_parallel { - entries - .par_iter() - .filter(|(_, (_, store_value))| { - let metdata_value = store_value.value.get(key); - !metdata_value.eq(&value.as_ref()) - }) - .map(|(k, _)| *(*k)) - .collect() - } else { - entries - .iter() - .filter(|(_, (_, store_value))| { - let metdata_value = store_value.value.get(key); - !metdata_value.eq(&value.as_ref()) - }) - .map(|(k, _)| *(*k)) - .collect() - } - } - #[cfg(target_arch = "wasm32")] - { + if use_parallel { + entries + .par_iter() + .filter(|(_, (_, store_value))| { + let metdata_value = store_value.value.get(key); + !metdata_value.eq(&value.as_ref()) + }) + .map(|(k, _)| *(*k)) + .collect() + } else { entries .iter() .filter(|(_, (_, store_value))| { @@ -985,36 +928,19 @@ impl Store { } } Some(PredicateKind::In(predicates::In { key, values })) => { - #[cfg(not(target_arch = "wasm32"))] - { - if use_parallel { - entries - .par_iter() - .filter(|(_, (_, store_value))| { - store_value - .value - .get(key) - .map(|v| values.contains(v)) - .unwrap_or(false) - }) - .map(|(k, _)| *(*k)) - .collect() - } else { - entries - .iter() - .filter(|(_, (_, store_value))| { - store_value - .value - .get(key) - .map(|v| values.contains(v)) - .unwrap_or(false) - }) - .map(|(k, _)| *(*k)) - .collect() - } - } - #[cfg(target_arch = "wasm32")] - { + if use_parallel { + entries + .par_iter() + .filter(|(_, (_, store_value))| { + store_value + .value + .get(key) + .map(|v| values.contains(v)) + .unwrap_or(false) + }) + .map(|(k, _)| *(*k)) + .collect() + } else { entries .iter() .filter(|(_, (_, store_value))| { @@ -1029,36 +955,19 @@ impl Store { } } Some(PredicateKind::NotIn(predicates::NotIn { key, values })) => { - #[cfg(not(target_arch = "wasm32"))] - { - if use_parallel { - entries - .par_iter() - .filter(|(_, (_, store_value))| { - store_value - .value - .get(key) - .map(|v| !values.contains(v)) - .unwrap_or(true) - }) - .map(|(k, _)| *(*k)) - .collect() - } else { - entries - .iter() - .filter(|(_, (_, store_value))| { - store_value - .value - .get(key) - .map(|v| !values.contains(v)) - .unwrap_or(true) - }) - .map(|(k, _)| *(*k)) - .collect() - } - } - #[cfg(target_arch = "wasm32")] - { + if use_parallel { + entries + .par_iter() + .filter(|(_, (_, store_value))| { + store_value + .value + .get(key) + .map(|v| !values.contains(v)) + .unwrap_or(true) + }) + .map(|(k, _)| *(*k)) + .collect() + } else { entries .iter() .filter(|(_, (_, store_value))| { @@ -1169,34 +1078,21 @@ impl Store { }; // Consume input vec, wrapping each entry once - #[cfg(not(target_arch = "wasm32"))] let res: Vec<(StoreKeyId, EmbeddingKey, Arc)> = new .into_par_iter() .map(check_and_wrap) .collect::>()?; - #[cfg(target_arch = "wasm32")] - let res: Vec<(StoreKeyId, EmbeddingKey, Arc)> = new - .into_iter() - .map(check_and_wrap) - .collect::>()?; - // Build predicate insert list using cheap clones - #[cfg(not(target_arch = "wasm32"))] let predicate_insert: Vec<(StoreKeyId, Arc)> = res .par_iter() .map(|(k, _, v)| (*k, Arc::clone(v))) .collect(); - #[cfg(target_arch = "wasm32")] - let predicate_insert: Vec<(StoreKeyId, Arc)> = - res.iter().map(|(k, _, v)| (*k, Arc::clone(v))).collect(); - let inserted = AtomicUsize::new(0); let updated = AtomicUsize::new(0); // Insert into main store, collecting keys for non-linear indices - #[cfg(not(target_arch = "wasm32"))] let inserted_keys: Vec<_> = res .into_par_iter() .filter_map(|(k, embedding_key, arc_val)| { @@ -1216,26 +1112,6 @@ impl Store { }) .collect(); - #[cfg(target_arch = "wasm32")] - let inserted_keys: Vec<_> = res - .into_iter() - .filter_map(|(k, embedding_key, arc_val)| { - let pinned = self.id_to_value.pin(); - // EmbeddingKey clone is a cheap Arc pointer bump - if pinned - .insert(k, (embedding_key.clone(), Arc::clone(&arc_val))) - .is_some() - { - updated.fetch_add(1, Ordering::SeqCst); - None - } else { - inserted.fetch_add(1, Ordering::SeqCst); - // Pointer bump — the same Arc> is shared with the map entry - Some(embedding_key) - } - }) - .collect(); - self.predicate_indices.add(predicate_insert); if !self.non_linear_indices.is_empty() { self.non_linear_indices.insert(inserted_keys); diff --git a/ahnlich/rust-toolchain.toml b/ahnlich/rust-toolchain.toml index fdd86d381..630e8846e 100644 --- a/ahnlich/rust-toolchain.toml +++ b/ahnlich/rust-toolchain.toml @@ -1,4 +1,3 @@ [toolchain] channel = "1.97.1" components = [ "rustfmt", "clippy" ] -targets = [ "wasm32-unknown-unknown" ] diff --git a/ahnlich/wasm-db/.cargo/config.toml b/ahnlich/wasm-db/.cargo/config.toml new file mode 100644 index 000000000..3dc04ea6f --- /dev/null +++ b/ahnlich/wasm-db/.cargo/config.toml @@ -0,0 +1,14 @@ +[target.wasm32-unknown-unknown] +rustflags = [ + "-C", "target-feature=+atomics,+bulk-memory", + "-C", "link-arg=--shared-memory", + "-C", "link-arg=--max-memory=4294967296", + "-C", "link-arg=--import-memory", + "-C", "link-arg=--export=__wasm_init_tls", + "-C", "link-arg=--export=__tls_size", + "-C", "link-arg=--export=__tls_align", + "-C", "link-arg=--export=__tls_base" +] + +[unstable] +build-std = ["panic_abort", "std"] diff --git a/ahnlich/wasm-db/.gitignore b/ahnlich/wasm-db/.gitignore index 01d0a0845..4e568a499 100644 --- a/ahnlich/wasm-db/.gitignore +++ b/ahnlich/wasm-db/.gitignore @@ -1 +1,2 @@ pkg/ +protobuf-entry.js diff --git a/ahnlich/wasm-db/Cargo.toml b/ahnlich/wasm-db/Cargo.toml index f07835dda..f1205f075 100644 --- a/ahnlich/wasm-db/Cargo.toml +++ b/ahnlich/wasm-db/Cargo.toml @@ -7,12 +7,14 @@ edition = "2024" crate-type = ["cdylib", "rlib"] [dependencies] -ahnlich-db = { package = "db", path = "../db", default-features = false, features = ["wasm"] } +ahnlich-db = { package = "db", path = "../db", default-features = false, features = ["wasm", "wasm-threads"] } ahnlich-types = { package = "ahnlich_types", path = "../types", default-features = false } wasm-bindgen = "0.2" prost = "0.13" rmp-serde = "1.3" console_error_panic_hook = "0.1" +wasm-bindgen-rayon = "1.2" +rayon = "1.12" [profile.release] opt-level = "z" diff --git a/ahnlich/wasm-db/build.sh b/ahnlich/wasm-db/build.sh new file mode 100755 index 000000000..5ba4f69bc --- /dev/null +++ b/ahnlich/wasm-db/build.sh @@ -0,0 +1,59 @@ +#!/bin/bash +set -e + +echo "Building ahnlich-wasm-db with threading support..." + +# Clean previous build +rm -rf pkg + +# Build with wasm-pack (uses .cargo/config.toml for flags) +wasm-pack build --target web --out-dir pkg + +echo "Fixing worker imports..." +# Fix worker helper to use /wasm-pkg/ path for Docusaurus +WORKER_HELPER=$(find pkg/snippets -name "workerHelpers.js" 2>/dev/null | head -1) +if [ -n "$WORKER_HELPER" ]; then + sed -i.bak "s|await import('../../..')|await import('/wasm-pkg/ahnlich_wasm_db.js')|g" "$WORKER_HELPER" + rm "${WORKER_HELPER}.bak" + echo "✓ Worker imports fixed" +else + echo "⚠ Warning: workerHelpers.js not found" +fi + +echo "Bundling protobuf types..." +# Check if protobuf SDK exists +if [ ! -d "../../sdk/ahnlich-client-node/dist/grpc" ]; then + echo "⚠ Warning: SDK not found at ../../sdk/ahnlich-client-node/dist/grpc" + echo " Skipping protobuf bundle" +elif [ -f "protobuf-entry.js" ]; then + # Use existing entry point from repo + npx --yes esbuild --bundle --format=esm --outfile=pkg/protobuf-bundle.js protobuf-entry.js + if [ $? -eq 0 ]; then + # Add explicit default export at the end + echo "export default protobuf_entry_exports;" >> pkg/protobuf-bundle.js + echo "✓ Protobuf bundle created ($(du -h pkg/protobuf-bundle.js | cut -f1))" + else + echo "⚠ Warning: protobuf bundling failed" + fi +else + echo "⚠ Warning: protobuf-entry.js not found, skipping bundle" +fi + +echo "Creating package.json..." +if [ -f "pkg/package.json.template" ]; then + cp pkg/package.json.template pkg/package.json + echo "✓ package.json created" +fi + +echo "" +echo "✓ Build complete!" +echo "" +echo "Package contents:" +ls -lh pkg/*.{js,wasm} 2>/dev/null | awk '{print " " $9 " (" $5 ")"}' +echo "" +echo "To test locally:" +echo " cd wasm-db && python3 examples/server.py" +echo " Open http://localhost:8000/benchmark.html" +echo "" +echo "To publish to npm:" +echo " cd pkg && npm publish" diff --git a/ahnlich/wasm-db/examples/test.mjs b/ahnlich/wasm-db/examples/test.mjs deleted file mode 100755 index 7f66417be..000000000 --- a/ahnlich/wasm-db/examples/test.mjs +++ /dev/null @@ -1,177 +0,0 @@ -import { test } from 'node:test'; -import assert from 'node:assert'; -import { readFile } from 'fs/promises'; -import { fileURLToPath } from 'url'; -import { dirname, join } from 'path'; - -const __filename = fileURLToPath(import.meta.url); -const __dirname = dirname(__filename); - -import { CreateStore, Set as SetRequest, GetKey, GetSimN as GetSimNRequest, GetPred as GetPredRequest, ListStores, DropStore } from '../../../sdk/ahnlich-client-node/dist/grpc/db/query_pb.js'; -import { Set as SetResponse, Get, GetSimN as GetSimNResponse, StoreList, Unit } from '../../../sdk/ahnlich-client-node/dist/grpc/db/server_pb.js'; -import { StoreKey, StoreValue, DbStoreEntry } from '../../../sdk/ahnlich-client-node/dist/grpc/keyval_pb.js'; -import { MetadataValue } from '../../../sdk/ahnlich-client-node/dist/grpc/metadata_pb.js'; -import { PredicateCondition, Predicate, Equals } from '../../../sdk/ahnlich-client-node/dist/grpc/predicate_pb.js'; - -const { AhnlichDB } = await import('../pkg/ahnlich_wasm_db.js'); - -const db = new AhnlichDB(); - -function normalize(vec) { - const magnitude = Math.sqrt(vec.reduce((sum, val) => sum + val * val, 0)); - return vec.map(val => val / magnitude); -} - -test('List stores (empty)', () => { - const req = new ListStores(); - const resp = StoreList.fromBinary(db.list_stores(req.toBinary())); - assert.strictEqual(resp.stores.length, 0); -}); - -test('Create stores with different schemas', () => { - const publicStore = new CreateStore({ - store: 'sentences', - dimension: 384, - createPredicates: ['category', 'language'], - nonLinearIndices: [], - errorIfExists: false, - schema: 'public' - }); - db.create_store(publicStore.toBinary()); - - const visionStore = new CreateStore({ - store: 'images', - dimension: 512, - createPredicates: ['label'], - nonLinearIndices: [], - errorIfExists: false, - schema: 'vision' - }); - db.create_store(visionStore.toBinary()); -}); - -test('Insert sentence embeddings with metadata', () => { - const entries = [ - new DbStoreEntry({ - key: new StoreKey({ key: normalize([0.1, 0.5, 0.2, ...Array(381).fill(0.01)]) }), - value: new StoreValue({ - value: { - category: new MetadataValue({ value: { case: 'rawString', value: 'greeting' } }), - language: new MetadataValue({ value: { case: 'rawString', value: 'en' } }), - text: new MetadataValue({ value: { case: 'rawString', value: 'Hello, how are you?' } }) - } - }) - }), - new DbStoreEntry({ - key: new StoreKey({ key: normalize([0.15, 0.48, 0.25, ...Array(381).fill(0.015)]) }), - value: new StoreValue({ - value: { - category: new MetadataValue({ value: { case: 'rawString', value: 'greeting' } }), - language: new MetadataValue({ value: { case: 'rawString', value: 'en' } }), - text: new MetadataValue({ value: { case: 'rawString', value: 'Hi there!' } }) - } - }) - }), - new DbStoreEntry({ - key: new StoreKey({ key: normalize([0.8, 0.1, 0.3, ...Array(381).fill(0.005)]) }), - value: new StoreValue({ - value: { - category: new MetadataValue({ value: { case: 'rawString', value: 'weather' } }), - language: new MetadataValue({ value: { case: 'rawString', value: 'en' } }), - text: new MetadataValue({ value: { case: 'rawString', value: 'It is sunny today' } }) - } - }) - }), - new DbStoreEntry({ - key: new StoreKey({ key: normalize([0.12, 0.52, 0.18, ...Array(381).fill(0.012)]) }), - value: new StoreValue({ - value: { - category: new MetadataValue({ value: { case: 'rawString', value: 'greeting' } }), - language: new MetadataValue({ value: { case: 'rawString', value: 'es' } }), - text: new MetadataValue({ value: { case: 'rawString', value: 'Hola, ¿cómo estás?' } }) - } - }) - }) - ]; - - const req = new SetRequest({ store: 'sentences', inputs: entries, schema: 'public' }); - const resp = SetResponse.fromBinary(db.set(req.toBinary())); - assert.strictEqual(Number(resp.upsert?.inserted), 4); -}); - -test('List all stores across schemas', () => { - const req = new ListStores(); - const resp = StoreList.fromBinary(db.list_stores(req.toBinary())); - assert.ok(resp.stores.length >= 1); -}); - -test('Filter by metadata predicate (category = greeting)', () => { - const req = new GetPredRequest({ - store: 'sentences', - condition: new PredicateCondition({ - kind: { - case: 'value', - value: new Predicate({ - kind: { - case: 'equals', - value: new Equals({ - key: 'category', - value: new MetadataValue({ value: { case: 'rawString', value: 'greeting' } }) - }) - } - }) - } - }), - schema: 'public' - }); - - const resp = Get.fromBinary(db.get_pred(req.toBinary())); - assert.strictEqual(resp.entries.length, 3); -}); - -test('Similarity search (top 3)', () => { - const queryVec = normalize([0.1, 0.5, 0.2, ...Array(381).fill(0.01)]); - const req = new GetSimNRequest({ - store: 'sentences', - searchInput: new StoreKey({ key: queryVec }), - closestN: BigInt(3), - schema: 'public' - }); - - const resp = GetSimNResponse.fromBinary(db.get_sim_n(req.toBinary())); - assert.strictEqual(resp.entries.length, 3); -}); - -test('Get by exact key', () => { - const queryVec = normalize([0.1, 0.5, 0.2, ...Array(381).fill(0.01)]); - const req = new GetKey({ - store: 'sentences', - keys: [new StoreKey({ key: queryVec })], - schema: 'public' - }); - - const resp = Get.fromBinary(db.get_key(req.toBinary())); - assert.strictEqual(resp.entries.length, 1); -}); - -test('Drop store', () => { - const req = new DropStore({ store: 'images', schema: 'vision', errorIfNotExists: true }); - db.drop_store(req.toBinary()); - - const listReq = new ListStores(); - const listResp = StoreList.fromBinary(db.list_stores(listReq.toBinary())); - assert.strictEqual(listResp.stores.length, 1); -}); - -test('Export and import snapshot', () => { - const snapshot = db.export_snapshot(); - assert.ok(snapshot.length > 0); - - const db2 = new AhnlichDB(); - db2.import_snapshot(snapshot); - - const listReq = new ListStores(); - const listResp = StoreList.fromBinary(db2.list_stores(listReq.toBinary())); - assert.strictEqual(listResp.stores.length, 1); - assert.strictEqual(listResp.stores[0].name, 'sentences'); -}); diff --git a/ahnlich/wasm-db/package.json b/ahnlich/wasm-db/package.json index c1748c3d6..a5411507e 100644 --- a/ahnlich/wasm-db/package.json +++ b/ahnlich/wasm-db/package.json @@ -8,7 +8,8 @@ "pkg" ], "scripts": { - "build": "wasm-pack build --target web --out-dir pkg", + "build": "wasm-pack build --target nodejs --out-dir pkg", + "bench": "npm run build && cd examples && node benchmark.mjs", "test": "cd examples && node test-types.mjs" }, "keywords": [ diff --git a/ahnlich/wasm-db/rust-toolchain.toml b/ahnlich/wasm-db/rust-toolchain.toml new file mode 100644 index 000000000..ad448cb0a --- /dev/null +++ b/ahnlich/wasm-db/rust-toolchain.toml @@ -0,0 +1,4 @@ +[toolchain] +channel = "nightly-2025-11-15" +components = ["rust-src"] +targets = ["wasm32-unknown-unknown"] diff --git a/ahnlich/wasm-db/src/lib.rs b/ahnlich/wasm-db/src/lib.rs index 0109282b0..1a0b46806 100644 --- a/ahnlich/wasm-db/src/lib.rs +++ b/ahnlich/wasm-db/src/lib.rs @@ -5,6 +5,8 @@ use std::sync::Arc; use std::sync::atomic::AtomicBool; use wasm_bindgen::prelude::*; +pub use wasm_bindgen_rayon::init_thread_pool; + #[wasm_bindgen(start)] pub fn init() { console_error_panic_hook::set_once(); diff --git a/web/ahnlich-web/.gitignore b/web/ahnlich-web/.gitignore index b083ed4f9..f4537b5cb 100644 --- a/web/ahnlich-web/.gitignore +++ b/web/ahnlich-web/.gitignore @@ -1,6 +1,15 @@ # Dependencies /node_modules +# Yarn 2+ (Berry) +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions +.pnp.* + # Production /build @@ -19,3 +28,20 @@ npm-debug.log* yarn-debug.log* yarn-error.log* + +# WASM build output (copied from ahnlich/wasm-db/pkg) +static/wasm-pkg/* +!static/wasm-pkg/.gitkeep + +# Embedding generation scripts and intermediate files (one-time use, not needed in repo) +scripts/generate-embeddings-use.mjs +scripts/parse-books-to-sentences.mjs +static/*_sentences.json +!static/sentencesWithEmbeddings.json + +# Book source files (only need the final embeddings file) +static/animal_farm.txt +static/animal_farm.epub +static/1984.txt +static/homage-to-catalonia.txt +static/down-and-out.txt diff --git a/web/ahnlich-web/.yarnrc.yml b/web/ahnlich-web/.yarnrc.yml new file mode 100644 index 000000000..063ed6016 --- /dev/null +++ b/web/ahnlich-web/.yarnrc.yml @@ -0,0 +1,8 @@ +approvedGitRepositories: + - "**" + +enableScripts: true + +nodeLinker: node-modules + +npmMinimalAgeGate: 0 diff --git a/web/ahnlich-web/docs/client-libraries/client-libraries.mdx b/web/ahnlich-web/docs/client-libraries/client-libraries.mdx index 30fb7bb41..07d688db2 100644 --- a/web/ahnlich-web/docs/client-libraries/client-libraries.mdx +++ b/web/ahnlich-web/docs/client-libraries/client-libraries.mdx @@ -35,6 +35,12 @@ export const components = [ logoLight: rustLogoLight, logoDark: rustLogo, link: "/docs/client-libraries/rust" + }, + { + title: 'WebAssembly', + icon: 'wasm', + link: "/docs/client-libraries/wasm", + description: "Run Ahnlich directly in the browser with multi-threading" } ]; diff --git a/web/ahnlich-web/docs/client-libraries/wasm/wasm.mdx b/web/ahnlich-web/docs/client-libraries/wasm/wasm.mdx new file mode 100644 index 000000000..0861da963 --- /dev/null +++ b/web/ahnlich-web/docs/client-libraries/wasm/wasm.mdx @@ -0,0 +1,228 @@ +--- +title: WebAssembly +sidebar_label: WASM +--- + +import CodeBlock from '@theme/CodeBlock'; +import BookSearchDemo from '@site/src/components/BookSearchDemo'; + +
+ WebAssembly +

Ahnlich for WebAssembly

+
+ +**Run Ahnlich's vector database entirely in the browser** with multi-threaded performance via WebAssembly. No server required. + +## Live Demo + +**Semantic search on George Orwell's "Animal Farm"** - Type any query to find relevant passages: + + + +## Why WASM? + +- **Privacy-first**: Keep embeddings and vectors client-side +- **Offline-capable**: Works without network connectivity +- **Fast**: Multi-threaded similarity search using Web Workers +- **Zero setup**: No database server to install or configure + +## Installation + +```bash +npm install @ahnlich/wasm-db +``` + +## Quick Start + +```typescript +import init, { AhnlichDB, initThreadPool } from '@ahnlich/wasm-db'; + +// Initialize WASM module +await init(); + +// Initialize thread pool for parallel processing +await initThreadPool(navigator.hardwareConcurrency || 4); + +// Create database instance +const db = new AhnlichDB(); + +// Ready to use! +``` + +## Browser Requirements + +Requires browsers with: +- WebAssembly threads support +- SharedArrayBuffer support +- Cross-origin isolation (COOP/COEP headers) + +**Supported browsers:** +- Chrome/Edge 91+ +- Firefox 89+ +- Safari 15.2+ + +:::info Cross-Origin Isolation Required + +Your server must send these headers for multi-threading to work: + +``` +Cross-Origin-Opener-Policy: same-origin +Cross-Origin-Embedder-Policy: require-corp +``` + +See [Deployment](#deployment) for details. +::: + +## API Overview + +All methods use Protocol Buffer binary format for requests and responses. + +### Store Management + +```typescript +import { CreateStore } from '@ahnlich/wasm-db/protobuf-bundle.js'; + +const createReq = CreateStore.toBinary({ + store: 'embeddings', + dimension: 384, + createPredicates: ['category'], + nonLinearIndices: [], + errorIfExists: false, + schema: { Default: {} } +}); + +db.create_store(createReq); +``` + +### Insert Vectors + +```typescript +import { Set } from '@ahnlich/wasm-db/protobuf-bundle.js'; + +const setReq = Set.toBinary({ + store: 'embeddings', + schema: { Default: {} }, + inputs: [ + { + key: { key: new Float32Array(384) }, // Your vector + value: { value: { category: 'product' } } + } + ] +}); + +db.set(setReq); +``` + +### Similarity Search + +```typescript +import { GetSimN } from '@ahnlich/wasm-db/protobuf-bundle.js'; + +const searchReq = GetSimN.toBinary({ + store: 'embeddings', + schema: { Default: {} }, + searchInput: { key: new Float32Array(384) }, + closestN: 10, + algorithm: 0 // CosineSimilarity +}); + +const results = db.get_sim_n(searchReq); +``` + +## Performance + +With 8 threads on typical hardware: +- **~160 similarity searches/sec** (k=10, 18k vectors, 384 dimensions) +- **5x faster** than single-threaded +- **Near-linear scaling** up to hardware concurrency limit + +## Persistence + +Export and import database state as MessagePack snapshots: + +```typescript +// Export +const snapshot = db.export_snapshot(); +localStorage.setItem('db-snapshot', snapshot); + +// Import +const snapshot = localStorage.getItem('db-snapshot'); +db.import_snapshot(snapshot); +``` + +## Deployment + +### Development + +For local development with Vite, Webpack, or other bundlers, ensure your dev server sends the required headers: + +**Vite:** +```javascript +// vite.config.js +export default { + server: { + headers: { + 'Cross-Origin-Opener-Policy': 'same-origin', + 'Cross-Origin-Embedder-Policy': 'require-corp', + }, + }, +}; +``` + +**Webpack Dev Server:** +```javascript +// webpack.config.js +module.exports = { + devServer: { + headers: { + 'Cross-Origin-Opener-Policy': 'same-origin', + 'Cross-Origin-Embedder-Policy': 'require-corp', + }, + }, +}; +``` + +### Production + +Configure your hosting provider to send the headers: + +**Vercel:** +```json +{ + "headers": [ + { + "source": "/(.*)", + "headers": [ + { "key": "Cross-Origin-Opener-Policy", "value": "same-origin" }, + { "key": "Cross-Origin-Embedder-Policy", "value": "require-corp" } + ] + } + ] +} +``` + +**Netlify:** +```toml +[[headers]] + for = "/*" + [headers.values] + Cross-Origin-Opener-Policy = "same-origin" + Cross-Origin-Embedder-Policy = "require-corp" +``` + +## Limitations + +Compared to server-side Ahnlich: + +- **Memory**: Limited by browser heap (~2GB typical, 4GB max) +- **Persistence**: Manual snapshot export/import only +- **No clustering**: Single-instance only +- **No gRPC**: Uses protobuf bytes directly + +For production workloads with millions of vectors, use the server version. + +## Next Steps + +- [API Reference](/docs/client-libraries/wasm/api-reference) - Complete method documentation +- [Examples](/docs/client-libraries/wasm/examples) - Working code samples +- [GitHub](https://github.com/deven96/ahnlich/tree/main/ahnlich/wasm-db) - Source code diff --git a/web/ahnlich-web/docusaurus.config.ts b/web/ahnlich-web/docusaurus.config.ts index c5c8c4d8b..bf414dbb7 100644 --- a/web/ahnlich-web/docusaurus.config.ts +++ b/web/ahnlich-web/docusaurus.config.ts @@ -52,6 +52,7 @@ const config: Config = { locales: ['en'], }, + // Remove scripts - will load dynamically via ES module stylesheets: [ { href: 'https://fonts.googleapis.com/css2?family=Unbounded:wght@600;700;800&display=swap', @@ -71,6 +72,57 @@ const config: Config = { }, }; }, + // Enable SharedArrayBuffer for WASM threading + function wasmHeadersPlugin() { + return { + name: 'wasm-headers-plugin', + configureWebpack() { + const webpack = require('webpack'); + + return { + plugins: [ + // Ignore ONNX Runtime binaries that can't be bundled + new webpack.IgnorePlugin({ + resourceRegExp: /\.node$/, + contextRegExp: /onnxruntime-node/, + }), + ], + module: { + rules: [ + { + test: /\.wasm$/, + type: 'asset/resource', + }, + { + test: /\.onnx$/, + type: 'asset/resource', + }, + ], + }, + resolve: { + fallback: { + fs: false, + path: false, + url: false, + crypto: false, + stream: false, + buffer: false, + }, + alias: { + // Prevent sharp from being bundled (used by transformers.js but not needed in browser) + 'sharp$': false, + }, + }, + devServer: { + headers: { + 'Cross-Origin-Opener-Policy': 'same-origin', + 'Cross-Origin-Embedder-Policy': 'require-corp', + }, + }, + }; + }, + }; + }, // Generate machine-readable docs for LLMs: /llms.txt (index) and // /llms-full.txt (all docs concatenated as plain markdown). function llmsTxtPlugin(context) { diff --git a/web/ahnlich-web/netlify.toml b/web/ahnlich-web/netlify.toml new file mode 100644 index 000000000..28aed493e --- /dev/null +++ b/web/ahnlich-web/netlify.toml @@ -0,0 +1,5 @@ +[[headers]] + for = "/*" + [headers.values] + Cross-Origin-Opener-Policy = "same-origin" + Cross-Origin-Embedder-Policy = "require-corp" diff --git a/web/ahnlich-web/package.json b/web/ahnlich-web/package.json index fc142d746..5f3cfa0b3 100644 --- a/web/ahnlich-web/package.json +++ b/web/ahnlich-web/package.json @@ -4,7 +4,9 @@ "private": true, "scripts": { "docusaurus": "docusaurus", + "prestart": "./scripts/copy-wasm-pkg.sh", "start": "docusaurus start", + "prebuild": "./scripts/copy-wasm-pkg.sh", "build": "docusaurus build", "swizzle": "docusaurus swizzle", "deploy": "docusaurus deploy", @@ -13,7 +15,9 @@ "preview": "docusaurus build && docusaurus serve", "write-translations": "docusaurus write-translations", "write-heading-ids": "docusaurus write-heading-ids", - "typecheck": "tsc" + "typecheck": "tsc", + "parse-books": "node scripts/parse-books-to-sentences.mjs", + "generate-embeddings": "node scripts/generate-embeddings-use.mjs" }, "dependencies": { "@docusaurus/core": "^3.9.2", @@ -22,6 +26,7 @@ "@docusaurus/theme-mermaid": "^3.9.2", "@easyops-cn/docusaurus-search-local": "^0.55.0", "@giscus/react": "^3.1.0", + "@huggingface/transformers": "4.2.0", "@mdx-js/react": "^3.0.0", "clsx": "^2.0.0", "dotenv": "^17.2.3", @@ -37,6 +42,7 @@ "@docusaurus/tsconfig": "^3.9.2", "@docusaurus/types": "^3.9.2", "autoprefixer": "^10.4.20", + "express": "^5.2.1", "postcss": "^8.5.2", "tailwindcss": "^3.4.17", "typescript": "~5.6.2" diff --git a/web/ahnlich-web/scripts/copy-wasm-pkg.sh b/web/ahnlich-web/scripts/copy-wasm-pkg.sh new file mode 100755 index 000000000..555e52da6 --- /dev/null +++ b/web/ahnlich-web/scripts/copy-wasm-pkg.sh @@ -0,0 +1,32 @@ +#!/bin/bash +# This script copies the built WASM package to Docusaurus static files. +# It runs automatically in GitHub Actions and via prestart/prebuild npm hooks. +# For local development, ensure you've built WASM first: cd ../../ahnlich/wasm-db && ./build.sh + +set -e + +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +WEB_DIR="$(dirname "$SCRIPT_DIR")" +WASM_PKG_SRC="$WEB_DIR/../../ahnlich/wasm-db/pkg" +WASM_PKG_DEST="$WEB_DIR/static/wasm-pkg" + +echo "🔍 Checking for WASM package at $WASM_PKG_SRC" + +# Check if source exists +if [ ! -d "$WASM_PKG_SRC" ]; then + echo "❌ Error: WASM package not found at $WASM_PKG_SRC" + echo "💡 Please build it first with: cd ../../ahnlich/wasm-db && ./build.sh" + exit 1 +fi + +# Create destination if it doesn't exist +mkdir -p "$WASM_PKG_DEST" + +echo "📦 Copying WASM package from $WASM_PKG_SRC to $WASM_PKG_DEST" + +# Copy all files except package.json and node_modules +rsync -av --exclude 'package.json' --exclude 'node_modules' --exclude '.gitignore' --exclude '*.tgz' \ + "$WASM_PKG_SRC/" "$WASM_PKG_DEST/" + +echo "✅ WASM package copied successfully!" +echo "📂 Files available at static/wasm-pkg/ for imports" diff --git a/web/ahnlich-web/sidebars.ts b/web/ahnlich-web/sidebars.ts index f6bcc5fe7..0bc828521 100644 --- a/web/ahnlich-web/sidebars.ts +++ b/web/ahnlich-web/sidebars.ts @@ -614,6 +614,19 @@ const sidebars: SidebarsConfig = { 'client-libraries/rust/distributed-tracing', ], }, + { + type: 'category', + label: 'WebAssembly', + link: { type: 'doc', id: 'client-libraries/wasm/wasm' }, + customProps: { + iconLight: '/img/wasm-logo.svg', + iconDark: '/img/wasm-logo.svg', + iconType: 'img', + }, + items: [ + 'client-libraries/wasm/wasm', + ], + }, ], // ---- Guides tab --------------------------------------------------------- diff --git a/web/ahnlich-web/src/components/BookSearchDemo/index.tsx b/web/ahnlich-web/src/components/BookSearchDemo/index.tsx new file mode 100644 index 000000000..3c429cc2b --- /dev/null +++ b/web/ahnlich-web/src/components/BookSearchDemo/index.tsx @@ -0,0 +1,361 @@ +import React, { useEffect, useState, useRef } from 'react'; +import BrowserOnly from '@docusaurus/BrowserOnly'; + +interface Sentence { + id: string; + text: string; + vector: number[]; + book: string; + chapter?: number; +} + +interface SearchResult { + sentence: Sentence; + similarity: number; +} + +function BookSearchDemoInner() { + const [status, setStatus] = useState('Click "Initialize" to load Animal Farm'); + const [db, setDb] = useState(null); + const [sentences, setSentences] = useState([]); + const [searchQuery, setSearchQuery] = useState(''); + const [searchResults, setSearchResults] = useState([]); + const [isInitializing, setIsInitializing] = useState(false); + const [error, setError] = useState(null); + const [searchTime, setSearchTime] = useState(0); + const [queryEmbeddingTime, setQueryEmbeddingTime] = useState(0); + const [embeddingTime, setEmbeddingTime] = useState(0); + const [insertTime, setInsertTime] = useState(0); + const embeddingModel = useRef(null); + + // Create embedding using Transformers.js (installed via yarn, not CDN) + async function createEmbedding(text: string): Promise { + if (!embeddingModel.current) { + const { pipeline, env } = await import('@huggingface/transformers'); + + // Configure for browser + env.allowRemoteModels = true; + env.allowLocalModels = false; + + // Load the embedding model + embeddingModel.current = await pipeline('feature-extraction', 'Xenova/all-MiniLM-L6-v2'); + } + + const output = await embeddingModel.current(text, { pooling: 'mean', normalize: true }); + return Array.from(output.data); + } + + async function initialize() { + setIsInitializing(true); + setError(null); + setStatus('Loading pre-computed embeddings...'); + + try { + // Model will be loaded lazily on first search + setStatus('Loading WASM module...'); + const wasmModule = await import('/wasm-pkg/ahnlich_wasm_db.js'); + const { default: init, initThreadPool, AhnlichDB } = wasmModule; + + await init(); + setStatus('Initializing multi-threading...'); + + const numThreads = Math.min(navigator.hardwareConcurrency || 4, 8); + try { + await initThreadPool(numThreads); + setStatus(`Threads initialized (${numThreads} workers)`); + } catch (threadErr) { + throw new Error('Thread pool initialization failed. COOP/COEP headers required.'); + } + + const dbInstance = new AhnlichDB(); + // Fetch pre-computed embeddings + setStatus('Loading sentences with pre-computed embeddings...'); + const response = await fetch('/sentencesWithEmbeddings.json'); + const allSentences = await response.json(); + + const embStart = performance.now(); + setStatus(`Loading ${allSentences.length} passages...`); + + const dimension = allSentences[0].embedding.length; + + // Map pre-computed embeddings to sentence objects + const sentenceObjs: Sentence[] = allSentences.map((sent, idx) => ({ + id: `sent-${idx}`, + text: sent.text, + vector: sent.embedding, + book: sent.book, + chapter: sent.chapter + })); + + const embEnd = performance.now(); + setEmbeddingTime(embEnd - embStart); + + // Create vector store + const insertStart = performance.now(); + setStatus('Creating vector store...'); + const protobufModule = await import('/wasm-pkg/protobuf-bundle.js'); + const protobuf = protobufModule.default; + const { queryPb } = protobuf; + + const createReq = new queryPb.CreateStore({ + store: 'book', + dimension, + createPredicates: ['book', 'chapter'], + nonLinearIndices: [], + errorIfExists: false, + }); + dbInstance.create_store(createReq.toBinary()); + + // Insert sentences in batches + const StoreKey = protobuf.StoreKey; + const StoreValue = protobuf.StoreValue; + const DbStoreEntry = protobuf.DbStoreEntry; + const MetadataValue = protobuf.MetadataValue; + + const insertBatchSize = 50; + for (let i = 0; i < sentenceObjs.length; i += insertBatchSize) { + const batch = sentenceObjs.slice(i, i + insertBatchSize); + const progress = Math.floor((i / sentenceObjs.length) * 100); + setStatus(`Inserting into database (${progress}%)...`); + + const setReq = new queryPb.Set({ + store: 'book', + inputs: batch.map(sent => new DbStoreEntry({ + key: new StoreKey({ key: sent.vector }), + value: new StoreValue({ + value: { + id: new MetadataValue({ value: { case: 'rawString', value: sent.id } }), + text: new MetadataValue({ value: { case: 'rawString', value: sent.text } }), + book: new MetadataValue({ value: { case: 'rawString', value: sent.book } }), + ...(sent.chapter && { chapter: new MetadataValue({ value: { case: 'rawString', value: sent.chapter.toString() } }) }), + } + }) + })) + }); + dbInstance.set(setReq.toBinary()); + } + + const insertEnd = performance.now(); + setInsertTime(insertEnd - insertStart); + + setDb(dbInstance); + setSentences(sentenceObjs); + setStatus(`Ready! Indexed ${sentenceObjs.length} sentences. Embeddings: ${(embEnd - embStart) / 1000}s, Insert: ${(insertEnd - insertStart) / 1000}s`); + } catch (err) { + setError(err instanceof Error ? err.message : String(err)); + setStatus('Initialization failed'); + } finally { + setIsInitializing(false); + } + } + + async function handleSearch(query: string) { + setSearchQuery(query); + + if (!query.trim() || !db || sentences.length === 0) { + setSearchResults([]); + setStatus('Ready! Type a query to search Animal Farm.'); + return; + } + + const startTime = performance.now(); + setStatus(`Searching for "${query}"...`); + + try { + const protobufModule = await import('/wasm-pkg/protobuf-bundle.js'); + const protobuf = protobufModule.default; + const { queryPb, serverPb } = protobuf; + const StoreKey = protobuf.StoreKey; + + // Create embedding for query + const embStart = performance.now(); + const queryVector = await createEmbedding(query); + const embEnd = performance.now(); + setQueryEmbeddingTime(embEnd - embStart); + + // Search + const searchReq = new queryPb.GetSimN({ + store: 'book', + searchInput: new StoreKey({ key: queryVector }), + closestN: 5, + algorithm: 2 // CosineSimilarity + }); + + const resultBytes = db.get_sim_n(searchReq.toBinary()); + const response = serverPb.GetSimN.fromBinary(new Uint8Array(resultBytes)); + + // Match results + const results: SearchResult[] = []; + if (response.entries && response.entries.length > 0) { + for (const entry of response.entries) { + const matchedSentence = sentences.find(s => { + if (!entry.key?.key) return false; + const entryVec = Array.from(entry.key.key); + return s.vector.every((v, idx) => Math.abs(v - entryVec[idx]) < 0.0001); + }); + + if (matchedSentence) { + const simValue = entry.similarity?.value ?? 0; + results.push({ sentence: matchedSentence, similarity: simValue }); + } + } + } + + const endTime = performance.now(); + setSearchTime(endTime - startTime); + setSearchResults(results); + setStatus(`Found ${results.length} results in ${(endTime - startTime).toFixed(2)}ms`); + } catch (err) { + setError(err instanceof Error ? err.message : String(err)); + setStatus('Search failed'); + } + } + + return ( +
+ {/* Header */} +
+

📚 Semantic Book Search

+

+ Search 1,000 passages across 4 George Orwell books using vector similarity +

+

+ Books: Animal Farm • 1984 • Homage to Catalonia • Down and Out in Paris and London +

+

+ Embeddings: Transformers.js (all-MiniLM-L6-v2) • Vector DB: Ahnlich WASM +

+
+ + {/* Status bar */} +
+
+ + {status} +
+
+ + {/* Error display */} + {error && ( +
+ Error: {error} +
+ )} + + {/* Initialize button */} + {!db && !isInitializing && ( +
+ +
+ )} + + {/* Search Interface */} + {db && ( +
+
+ handleSearch(e.target.value)} + placeholder='🔍 Try: "equality", "windmill", "rebellion", "pigs"...' + className="w-full rounded-lg border-2 border-[var(--ifm-color-primary)] bg-[var(--ifm-background-surface-color)] px-4 py-3 text-lg outline-none focus:border-[var(--ifm-color-primary-dark)] focus:shadow-lg transition-all" + autoFocus + /> + {searchQuery && ( + + )} +
+ + {searchTime > 0 && searchResults.length > 0 && ( +
+ ⚡ {(queryEmbeddingTime + searchTime).toFixed(1)}ms ({queryEmbeddingTime.toFixed(0)}ms embed + {searchTime.toFixed(1)}ms search) +
+ )} + + {/* Search Results */} + {searchResults.length > 0 && ( +
+ {searchResults.map(({ sentence, similarity }, idx) => ( +
+
+
+ {idx + 1} +
+
+
{sentence.text}
+
+ {sentence.book} + {sentence.chapter && • Chapter {sentence.chapter}} +
+
+
+
+ + {Math.round(similarity * 100)}% + +
+
+
+
+
+ ))} +
+ )} + + {searchQuery && searchResults.length === 0 && ( +
+ No results found. Try a different query. +
+ )} + + {/* Index Stats (below results) */} + {(embeddingTime > 0 || insertTime > 0) && ( +
+ + 📊 Indexing stats ({sentences.length.toLocaleString()} passages) + +
+
• Load embeddings: {(embeddingTime / 1000).toFixed(3)}s
+
• Insert to Ahnlich: {(insertTime / 1000).toFixed(2)}s
+
+
+ )} +
+ )} +
+ ); +} + +export default function BookSearchDemo() { + return ( + Loading...
}> + {() => } + + ); +} diff --git a/web/ahnlich-web/src/components/CardIcons/index.tsx b/web/ahnlich-web/src/components/CardIcons/index.tsx index 10b4267d4..8b5d26aee 100644 --- a/web/ahnlich-web/src/components/CardIcons/index.tsx +++ b/web/ahnlich-web/src/components/CardIcons/index.tsx @@ -131,6 +131,12 @@ const ICONS: Record = { ), + wasm: ( + <> + + + + ), }; export default function CardIcon({name}: {name?: string}): ReactNode { diff --git a/web/ahnlich-web/src/components/WasmDemo/index.tsx b/web/ahnlich-web/src/components/WasmDemo/index.tsx new file mode 100644 index 000000000..63c15fb17 --- /dev/null +++ b/web/ahnlich-web/src/components/WasmDemo/index.tsx @@ -0,0 +1,607 @@ +import React, { useEffect, useState, useRef } from 'react'; +import BrowserOnly from '@docusaurus/BrowserOnly'; + +interface VectorItem { + id: string; + label: string; + vector: number[]; + category: string; + x: number; // 2D projection + y: number; +} + +interface SearchResult { + item: VectorItem; + similarity: number; +} + +// Expanded product catalog with emojis and more variety +const SAMPLE_PRODUCTS = [ + // Electronics + { label: '💻 Laptop', category: 'Electronics', baseVector: [0.85, 0.1, 0.15, 0.2] }, + { label: '🖱️ Mouse', category: 'Electronics', baseVector: [0.75, 0.15, 0.2, 0.25] }, + { label: '⌨️ Keyboard', category: 'Electronics', baseVector: [0.78, 0.12, 0.18, 0.22] }, + { label: '🖥️ Monitor', category: 'Electronics', baseVector: [0.82, 0.11, 0.16, 0.21] }, + { label: '🎧 Headphones', category: 'Electronics', baseVector: [0.7, 0.2, 0.25, 0.3] }, + { label: '📱 Smartphone', category: 'Electronics', baseVector: [0.88, 0.08, 0.12, 0.18] }, + { label: '⌚ Smartwatch', category: 'Electronics', baseVector: [0.8, 0.12, 0.2, 0.22] }, + { label: '📷 Camera', category: 'Electronics', baseVector: [0.77, 0.15, 0.22, 0.28] }, + { label: '🔌 Charger', category: 'Electronics', baseVector: [0.65, 0.2, 0.3, 0.25] }, + { label: '💾 USB Drive', category: 'Electronics', baseVector: [0.72, 0.18, 0.25, 0.28] }, + + // Books & Media + { label: '📚 Novel', category: 'Books', baseVector: [0.15, 0.85, 0.1, 0.2] }, + { label: '📖 Textbook', category: 'Books', baseVector: [0.2, 0.8, 0.15, 0.18] }, + { label: '📰 Magazine', category: 'Books', baseVector: [0.25, 0.75, 0.2, 0.22] }, + { label: '🗞️ Newspaper', category: 'Books', baseVector: [0.22, 0.78, 0.18, 0.2] }, + { label: '📕 Dictionary', category: 'Books', baseVector: [0.18, 0.82, 0.12, 0.16] }, + { label: '📓 Notebook', category: 'Books', baseVector: [0.28, 0.7, 0.25, 0.3] }, + { label: '✏️ Pen', category: 'Books', baseVector: [0.3, 0.68, 0.28, 0.32] }, + { label: '📝 Journal', category: 'Books', baseVector: [0.26, 0.72, 0.24, 0.28] }, + + // Food & Beverages + { label: '☕ Coffee', category: 'Food', baseVector: [0.1, 0.15, 0.85, 0.2] }, + { label: '🍵 Tea', category: 'Food', baseVector: [0.12, 0.18, 0.82, 0.22] }, + { label: '💧 Water', category: 'Food', baseVector: [0.08, 0.12, 0.78, 0.18] }, + { label: '🥤 Soda', category: 'Food', baseVector: [0.15, 0.2, 0.8, 0.25] }, + { label: '🍎 Apple', category: 'Food', baseVector: [0.2, 0.25, 0.75, 0.3] }, + { label: '🍌 Banana', category: 'Food', baseVector: [0.22, 0.28, 0.73, 0.32] }, + { label: '🥪 Sandwich', category: 'Food', baseVector: [0.25, 0.3, 0.7, 0.35] }, + { label: '🍕 Pizza', category: 'Food', baseVector: [0.28, 0.32, 0.68, 0.38] }, + { label: '🍔 Burger', category: 'Food', baseVector: [0.3, 0.35, 0.65, 0.4] }, + { label: '🥗 Salad', category: 'Food', baseVector: [0.18, 0.22, 0.77, 0.28] }, + + // Clothing + { label: '👕 T-Shirt', category: 'Clothing', baseVector: [0.2, 0.1, 0.15, 0.85] }, + { label: '👖 Jeans', category: 'Clothing', baseVector: [0.22, 0.12, 0.18, 0.82] }, + { label: '👟 Sneakers', category: 'Clothing', baseVector: [0.25, 0.15, 0.2, 0.8] }, + { label: '🧥 Jacket', category: 'Clothing', baseVector: [0.18, 0.08, 0.12, 0.88] }, + { label: '👗 Dress', category: 'Clothing', baseVector: [0.15, 0.1, 0.14, 0.87] }, + { label: '🧢 Cap', category: 'Clothing', baseVector: [0.28, 0.18, 0.22, 0.75] }, + { label: '🧣 Scarf', category: 'Clothing', baseVector: [0.2, 0.12, 0.16, 0.83] }, + { label: '👞 Shoes', category: 'Clothing', baseVector: [0.24, 0.14, 0.19, 0.81] }, + + // Sports & Fitness + { label: '⚽ Soccer Ball', category: 'Sports', baseVector: [0.3, 0.2, 0.1, 0.15] }, + { label: '🏀 Basketball', category: 'Sports', baseVector: [0.32, 0.22, 0.12, 0.18] }, + { label: '🎾 Tennis Ball', category: 'Sports', baseVector: [0.28, 0.18, 0.08, 0.12] }, + { label: '🏋️ Dumbbell', category: 'Sports', baseVector: [0.35, 0.25, 0.15, 0.2] }, + { label: '🧘 Yoga Mat', category: 'Sports', baseVector: [0.25, 0.15, 0.18, 0.22] }, + { label: '🎯 Dart', category: 'Sports', baseVector: [0.33, 0.23, 0.13, 0.17] }, + { label: '🏓 Ping Pong', category: 'Sports', baseVector: [0.29, 0.19, 0.09, 0.14] }, + { label: '🥊 Boxing Gloves', category: 'Sports', baseVector: [0.38, 0.28, 0.18, 0.25] }, + + // Home & Garden + { label: '🪴 Plant', category: 'Home', baseVector: [0.12, 0.25, 0.3, 0.08] }, + { label: '🕯️ Candle', category: 'Home', baseVector: [0.15, 0.28, 0.32, 0.1] }, + { label: '🛋️ Couch', category: 'Home', baseVector: [0.1, 0.22, 0.28, 0.06] }, + { label: '🪑 Chair', category: 'Home', baseVector: [0.11, 0.23, 0.29, 0.07] }, + { label: '🖼️ Frame', category: 'Home', baseVector: [0.14, 0.27, 0.31, 0.09] }, + { label: '💡 Lamp', category: 'Home', baseVector: [0.16, 0.26, 0.33, 0.11] }, + { label: '🧺 Basket', category: 'Home', baseVector: [0.13, 0.24, 0.3, 0.08] }, + { label: '🧹 Broom', category: 'Home', baseVector: [0.17, 0.29, 0.34, 0.12] }, +]; + +function WasmDemoInner() { + const [status, setStatus] = useState('Click "Initialize Database" to start'); + const [db, setDb] = useState(null); + const [items, setItems] = useState([]); + const [searchResults, setSearchResults] = useState([]); + const [selectedItem, setSelectedItem] = useState(null); + const [isInitializing, setIsInitializing] = useState(false); + const [error, setError] = useState(null); + const [searchQuery, setSearchQuery] = useState(''); + const [searchTime, setSearchTime] = useState(0); + const canvasRef = useRef(null); + + // Generate a high-dimensional vector from base 4D vector + function generateVector(base: number[]): number[] { + const dim = 128; + const vec = new Array(dim); + for (let i = 0; i < dim; i++) { + const baseIdx = i % 4; + vec[i] = base[baseIdx] + (Math.random() - 0.5) * 0.08; + } + return vec; + } + + // 2D projection using different slices to create better separation + function project2D(vector: number[]): { x: number; y: number } { + // Use different patterns to avoid diagonal clustering + // X: sum of even indices, Y: sum of odd indices + let x = 0, y = 0; + for (let i = 0; i < vector.length; i++) { + if (i % 2 === 0) { + x += vector[i]; + } else { + y += vector[i]; + } + } + // Add some spread based on first few dimensions + x += vector[0] * 0.3 + vector[2] * 0.2; + y += vector[1] * 0.3 + vector[3] * 0.2; + + return { x, y }; + } + + async function initializeWasm() { + setIsInitializing(true); + setError(null); + setStatus('Loading WASM module...'); + + try { + // Dynamic import from static files + const wasmModule = await import('/wasm-pkg/ahnlich_wasm_db.js'); + const { default: init, AhnlichDB, initThreadPool } = wasmModule; + + // Initialize WASM + await init(); + setStatus('Initializing multi-threading...'); + + // Initialize thread pool + const numThreads = Math.min(navigator.hardwareConcurrency || 4, 4); + try { + await initThreadPool(numThreads); + setStatus(`Ready with ${numThreads} threads`); + } catch (threadErr) { + throw new Error(`Thread pool initialization failed. Make sure COOP/COEP headers are configured.`); + } + + // Create DB instance + const dbInstance = new AhnlichDB(); + + // Load protobuf types + const protobufModule = await import('/wasm-pkg/protobuf-bundle.js'); + const protobuf = protobufModule.default; + const { queryPb, serverPb } = protobuf; + + // Create vector store + setStatus('Creating vector store...'); + const createReq = new queryPb.CreateStore({ + store: 'products', + dimension: 128, + createPredicates: ['category'], + nonLinearIndices: [], + errorIfExists: false, + }); + dbInstance.create_store(createReq.toBinary()); + + // Create sample items + setStatus('Adding sample products...'); + const sampleItems: VectorItem[] = SAMPLE_PRODUCTS.map((product, idx) => { + const vector = generateVector(product.baseVector); + const { x, y } = project2D(vector); + return { + id: `item-${idx}`, + label: product.label, + vector, + category: product.category, + x, + y, + }; + }); + + // Insert into database + const StoreKey = protobuf.StoreKey; + const StoreValue = protobuf.StoreValue; + const DbStoreEntry = protobuf.DbStoreEntry; + const MetadataValue = protobuf.MetadataValue; + + const setReq = new queryPb.Set({ + store: 'products', + inputs: sampleItems.map(item => new DbStoreEntry({ + key: new StoreKey({ key: item.vector }), + value: new StoreValue({ + value: { + id: new MetadataValue({ value: { case: 'rawString', value: item.id } }), + label: new MetadataValue({ value: { case: 'rawString', value: item.label } }), + category: new MetadataValue({ value: { case: 'rawString', value: item.category } }), + } + }) + })) + }); + dbInstance.set(setReq.toBinary()); + + setDb(dbInstance); + setItems(sampleItems); + setStatus('Ready! Click any item to find similar products.'); + } catch (err) { + setError(err instanceof Error ? err.message : String(err)); + setStatus('Failed to initialize'); + } finally { + setIsInitializing(false); + } + } + + async function searchSimilar(item: VectorItem) { + if (!db) return; + + const startTime = performance.now(); + + // Clear previous results immediately + setSearchResults([]); + setSelectedItem(item); + setStatus(`Searching for items similar to "${item.label}"...`); + setError(null); + + try { + const protobufModule = await import('/wasm-pkg/protobuf-bundle.js'); + const protobuf = protobufModule.default; + const { queryPb, serverPb } = protobuf; + const StoreKey = protobuf.StoreKey; + + const searchReq = new queryPb.GetSimN({ + store: 'products', + searchInput: new StoreKey({ key: item.vector }), + closestN: 6, + algorithm: 2 // CosineSimilarity (0=Euclidean, 1=DotProduct, 2=Cosine) + }); + + const resultBytes = db.get_sim_n(searchReq.toBinary()); + const response = serverPb.GetSimN.fromBinary(new Uint8Array(resultBytes)); + + // Extract results and match with our items + const results: SearchResult[] = []; + if (response.entries && response.entries.length > 0) { + for (const entry of response.entries) { + const matchedItem = items.find(i => { + if (!entry.key?.key) return false; + const entryVec = Array.from(entry.key.key); + return i.vector.every((v, idx) => Math.abs(v - entryVec[idx]) < 0.0001); + }); + + if (matchedItem && matchedItem.id !== item.id) { + const simValue = entry.similarity?.value ?? 0; + results.push({ item: matchedItem, similarity: simValue }); + } + } + } + + const endTime = performance.now(); + setSearchTime(endTime - startTime); + setSearchResults(results.slice(0, 5)); + setStatus(`Found ${results.length} similar items in ${(endTime - startTime).toFixed(2)}ms`); + } catch (err) { + setError(err instanceof Error ? err.message : String(err)); + setStatus('Search failed'); + } + } + + // Search by text query (fuzzy match on labels and find similar) + function handleSearchQuery(query: string) { + setSearchQuery(query); + if (!query.trim() || !db || items.length === 0) { + setSearchResults([]); + setSelectedItem(null); + setStatus('Ready! Type to search or click any item.'); + return; + } + + // Find items that match the query + const q = query.toLowerCase(); + const matches = items.filter(item => + item.label.toLowerCase().includes(q) || + item.category.toLowerCase().includes(q) + ); + + if (matches.length > 0) { + // Search for items similar to the first match + searchSimilar(matches[0]); + } else { + setSearchResults([]); + setSelectedItem(null); + setStatus('No matches found. Try "laptop", "book", "coffee", etc.'); + } + } + + // Draw visualization canvas + useEffect(() => { + if (!canvasRef.current || items.length === 0) return; + + const canvas = canvasRef.current; + const ctx = canvas.getContext('2d'); + if (!ctx) return; + + const width = canvas.width; + const height = canvas.height; + + // Clear canvas completely + ctx.clearRect(0, 0, width, height); + ctx.fillStyle = getComputedStyle(canvas).getPropertyValue('background-color') || '#ffffff'; + ctx.fillRect(0, 0, width, height); + + // Normalize coordinates + const padding = 40; + const xs = items.map(i => i.x); + const ys = items.map(i => i.y); + const minX = Math.min(...xs); + const maxX = Math.max(...xs); + const minY = Math.min(...ys); + const maxY = Math.max(...ys); + + const scaleX = (x: number) => padding + ((x - minX) / (maxX - minX)) * (width - 2 * padding); + const scaleY = (y: number) => padding + ((y - minY) / (maxY - minY)) * (height - 2 * padding); + + // Draw connections to search results with gradient + if (selectedItem && searchResults.length > 0) { + const sx = scaleX(selectedItem.x); + const sy = scaleY(selectedItem.y); + + searchResults.forEach(({ item, similarity }) => { + const ex = scaleX(item.x); + const ey = scaleY(item.y); + + // Line thickness based on similarity (0.0 to 1.0) -> 1px to 8px + const thickness = 1 + (similarity * 7); + + // Create gradient from selected to result + const gradient = ctx.createLinearGradient(sx, sy, ex, ey); + gradient.addColorStop(0, '#cc9200aa'); + gradient.addColorStop(1, `#cc920066`); + + ctx.strokeStyle = gradient; + ctx.lineWidth = thickness; + ctx.lineCap = 'round'; + ctx.beginPath(); + ctx.moveTo(sx, sy); + ctx.lineTo(ex, ey); + ctx.stroke(); + + // Add similarity percentage label on the line + const midX = (sx + ex) / 2; + const midY = (sy + ey) / 2; + const percent = Math.round(similarity * 100); + + ctx.fillStyle = '#cc9200'; + ctx.font = 'bold 12px system-ui'; + ctx.textAlign = 'center'; + ctx.textBaseline = 'middle'; + ctx.fillText(`${percent}%`, midX, midY - 10); + }); + } + + // Draw items + items.forEach(item => { + const x = scaleX(item.x); + const y = scaleY(item.y); + + const isSelected = selectedItem?.id === item.id; + const isResult = searchResults.some(r => r.item.id === item.id); + + // Category colors + const colors: Record = { + Electronics: '#3b82f6', + Books: '#8b5cf6', + Food: '#10b981', + Clothing: '#f59e0b', + Sports: '#ef4444', + Home: '#ec4899', + }; + + // Draw shadow for selected/result items + if (isSelected || isResult) { + ctx.shadowColor = colors[item.category] || '#6b7280'; + ctx.shadowBlur = isSelected ? 15 : 10; + } + + ctx.fillStyle = colors[item.category] || '#6b7280'; + ctx.beginPath(); + ctx.arc(x, y, isSelected ? 12 : isResult ? 10 : 7, 0, Math.PI * 2); + ctx.fill(); + + ctx.shadowBlur = 0; + + if (isSelected || isResult) { + ctx.strokeStyle = isSelected ? '#cc9200' : colors[item.category] + 'aa'; + ctx.lineWidth = isSelected ? 3 : 2; + ctx.beginPath(); + ctx.arc(x, y, isSelected ? 16 : 14, 0, Math.PI * 2); + ctx.stroke(); + } + + // Label with emoji + ctx.fillStyle = 'var(--ifm-color-content)'; + ctx.font = isSelected || isResult ? 'bold 13px system-ui' : '12px system-ui'; + ctx.textAlign = 'center'; + ctx.fillText(item.label, x, y - 22); + }); + }, [items, selectedItem, searchResults]); + + return ( +
+ {/* Status bar */} +
+
+ + {status} +
+
+ + {/* Error display */} + {error && ( +
+ Error: {error} +
+ )} + + {/* Action button */} + {!db && ( +
+ +
+ )} + + {/* Search Interface */} + {db && items.length > 0 && ( +
+
+ handleSearchQuery(e.target.value)} + placeholder="🔍 Search products... (try 'laptop', 'book', 'coffee', 'shoes')" + className="w-full rounded-lg border-2 border-[var(--ifm-color-primary)] bg-[var(--ifm-background-surface-color)] px-4 py-3 text-lg outline-none focus:border-[var(--ifm-color-primary-dark)] focus:shadow-lg transition-all" + /> + {searchQuery && ( + + )} +
+ {searchTime > 0 && ( +
+ ⚡ Search completed in {searchTime.toFixed(2)}ms +
+ )} +
+ )} + + {/* Visualization */} + {db && items.length > 0 && ( +
+ {/* Canvas */} +
+ { + if (!canvasRef.current) return; + const rect = canvasRef.current.getBoundingClientRect(); + const x = (e.clientX - rect.left) / rect.width * 800; + const y = (e.clientY - rect.top) / rect.height * 600; + + // Find closest item to click + let closest: VectorItem | null = null; + let minDist = Infinity; + + const padding = 40; + const xs = items.map(i => i.x); + const ys = items.map(i => i.y); + const minX = Math.min(...xs); + const maxX = Math.max(...xs); + const minY = Math.min(...ys); + const maxY = Math.max(...ys); + const scaleX = (ix: number) => padding + ((ix - minX) / (maxX - minX)) * (800 - 2 * padding); + const scaleY = (iy: number) => padding + ((iy - minY) / (maxY - minY)) * (600 - 2 * padding); + + items.forEach(item => { + const ix = scaleX(item.x); + const iy = scaleY(item.y); + const dist = Math.sqrt((x - ix) ** 2 + (y - iy) ** 2); + if (dist < minDist && dist < 30) { + minDist = dist; + closest = item; + } + }); + + if (closest) { + searchSimilar(closest); + } + }} + /> +
+
+ + Electronics +
+
+ + Books +
+
+ + Food +
+
+ + Clothing +
+
+ + Sports +
+
+ + Home +
+
+
+ + {/* Search Results */} + {selectedItem && searchResults.length > 0 && ( +
+

Similar to "{selectedItem.label}":

+
+ {searchResults.map(({ item, similarity }) => ( +
+
+ {item.label} + {item.category} +
+ {(similarity * 100).toFixed(1)}% +
+ ))} +
+
+ )} + + {/* Product List */} +
+ All Items in Store ({items.length}) +
+ {items.map(item => ( + + ))} +
+
+
+ )} + + {/* Info note */} +
+

How it works

+

+ This demo uses multi-threaded WASM to store and search vectors. Click any item to find similar ones using cosine similarity. + The visualization shows a 2D projection of high-dimensional (128-dim) vectors. +

+
+
+ ); +} + +export default function WasmDemo() { + return ( + Loading WASM demo...}> + {() => } + + ); +} diff --git a/web/ahnlich-web/static/img/wasm-logo.svg b/web/ahnlich-web/static/img/wasm-logo.svg new file mode 100644 index 000000000..51a5cbb3b --- /dev/null +++ b/web/ahnlich-web/static/img/wasm-logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/web/ahnlich-web/static/sentencesWithEmbeddings.json b/web/ahnlich-web/static/sentencesWithEmbeddings.json new file mode 100644 index 000000000..1c4c28679 --- /dev/null +++ b/web/ahnlich-web/static/sentencesWithEmbeddings.json @@ -0,0 +1 @@ +[{"text":"Unknown Animal Farm George Orwell Unknown TABLE OF CONTENTS Chapter I Chapter II Chapter III Chapter IV Chapter V Chapter VI Chapter VII Chapter VIII Chapter IX Chapter X Unknown Chapter IX Boxer's split hoof was a long time in healing.","book":"Animal Farm","chapter":1,"embedding":[-0.043165575712919235,0.035659708082675934,0.03374803438782692,0.01970049738883972,0.026593850925564766,0.03476729616522789,-0.012994358316063881,-0.05408300459384918,-0.034939393401145935,0.02275415137410164,0.06729745119810104,-0.006468944251537323,-0.01624905690550804,-0.027605770155787468,-0.0856146439909935,0.019852086901664734,-0.07355914264917374,-0.009310931898653507,-0.07680512964725494,-0.04923643544316292,-0.03488421440124512,0.08466815203428268,-0.011478123255074024,0.06203598901629448,-0.036459892988204956,-0.020423896610736847,-0.07102080434560776,-0.021208148449659348,-0.07148102670907974,-0.07109078019857407,-0.06122445687651634,0.024311041459441185,-0.01278204470872879,-0.006252588704228401,-0.026181146502494812,-0.010740217752754688,0.17298536002635956,0.04325193911790848,0.04402414336800575,0.00035630553611554205,-0.006064306944608688,-0.07294974476099014,-0.00781972985714674,0.009896710515022278,0.016819681972265244,0.036875732243061066,-0.08875692635774612,-0.092094786465168,0.061098240315914154,-0.01505910512059927,-0.031605180352926254,-0.016472559422254562,0.024914689362049103,0.0404319204390049,-0.012850290164351463,-0.013780942186713219,-0.055350590497255325,-0.030637705698609352,-0.04144075885415077,0.034369003027677536,-0.011574714444577694,0.016124770045280457,-0.008535098284482956,0.08544784039258957,0.012011216022074223,-0.033295899629592896,-0.03567509725689888,-0.012194083072245121,-0.03380833566188812,-0.04637495428323746,0.04289780184626579,-0.03382761776447296,0.01416169572621584,-0.07616878300905228,-0.03612051531672478,0.006938447710126638,0.029752269387245178,-0.01586434617638588,0.10774645209312439,-0.0881042405962944,-0.008493033237755299,0.016645418480038643,0.004527912475168705,0.06034986674785614,-0.04031425714492798,-0.006346584763377905,-0.013923440128564835,-0.03342271223664284,-0.03518945723772049,-0.016145847737789154,-0.04525022581219673,-0.12942376732826233,0.071305051445961,0.04654666781425476,0.09866528958082199,0.010779164731502533,0.043060336261987686,-0.011214334517717361,0.0033666102681308985,0.07754988223314285,-0.07012810558080673,-0.02069762907922268,0.08041267842054367,-0.02626049891114235,0.010116911493241787,-0.02013649418950081,-0.04572673514485359,0.029096974059939384,0.018299875780940056,-0.022176295518875122,-0.04668624699115753,-0.04094617813825607,-0.009852154180407524,0.023442592471837997,0.09266234189271927,0.03995863348245621,0.04500507563352585,-0.06719345599412918,-0.12433983385562897,0.01202753372490406,0.06969219446182251,-0.004464088007807732,-0.04144446551799774,0.02354966476559639,-0.09457400441169739,0.032905735075473785,0.004776197951287031,6.839997385291436e-33,0.023675769567489624,-0.08004973828792572,-0.02811150625348091,-0.008403724990785122,0.039284560829401016,0.04467634856700897,0.007208002731204033,0.025324519723653793,-0.0030058203265070915,0.009770450182259083,-0.016815515235066414,-0.03087039478123188,-0.026204818859696388,-0.04345069080591202,-0.06442556530237198,-0.058719489723443985,0.026035254821181297,0.03958558291196823,0.010666284710168839,-0.0662081316113472,0.006163475103676319,0.038913123309612274,-0.06460830569267273,-0.06494887173175812,0.0645810142159462,0.01052762195467949,-0.0075201066210865974,-0.14912383258342743,0.04524487629532814,0.054093994200229645,0.07296068221330643,0.010979786515235901,-0.0050303880125284195,-0.10158250480890274,-0.10392938554286957,-0.06949910521507263,-0.011592776514589787,-0.05191097408533096,0.04740957170724869,0.03954155743122101,0.049557898193597794,0.048882950097322464,0.05745694786310196,-0.05259354040026665,0.010445281863212585,0.04864824190735817,0.033474069088697433,0.027337677776813507,-0.050340816378593445,0.08852377533912659,0.019057603552937508,0.03018907643854618,-0.02158331871032715,-0.06287789344787598,0.0009893380338326097,-0.012320498004555702,-0.04321581497788429,0.074454665184021,0.009607573971152306,0.05001722276210785,0.10134414583444595,0.08546009659767151,-0.0019768886268138885,-0.01008370891213417,-0.040138766169548035,-0.07034644484519958,-0.06945216655731201,-0.037134651094675064,-0.07428748905658722,0.007649712730199099,-0.06726929545402527,-0.024425148963928223,-0.007130502723157406,-0.04698820039629936,-0.0749158188700676,-0.07544473558664322,-0.007546115200966597,0.008640761487185955,-0.09996048361063004,-0.06568736582994461,-0.000599226972553879,-0.0027337558567523956,-0.026319259777665138,0.12158878147602081,-0.0828600525856018,0.028240904211997986,0.06803270429372787,-0.01024079043418169,-0.0553838275372982,-0.03923667594790459,0.0059496210888028145,0.03900877758860588,-0.027538301423192024,-0.07666104286909103,0.05958790332078934,-7.733198971815659e-33,0.025469111278653145,-0.05163877457380295,0.004906903021037579,-0.041202373802661896,0.09517514705657959,0.02296176180243492,-0.06119392812252045,0.09433219581842422,0.007058574818074703,-0.012030491605401039,-0.03435039892792702,0.04736349359154701,0.023308463394641876,0.0025314472150057554,0.041220322251319885,0.0034558551851660013,0.013660460710525513,-0.004002022556960583,0.003734743455424905,0.087936632335186,0.023990636691451073,-0.010365674272179604,-0.05722827836871147,-0.028109349310398102,0.09075082093477249,0.0918893814086914,-0.0024367531295865774,0.05243139714002609,-0.02554810792207718,0.0023789159022271633,0.00474171107634902,-0.06858034431934357,0.023622214794158936,-0.002063794992864132,-0.02109253592789173,-0.016488218680024147,0.06190042197704315,-0.10639424622058868,-0.044433027505874634,-0.007672843988984823,0.06210785731673241,-0.03999515622854233,-0.057542428374290466,0.007543540094047785,-0.07420072704553604,0.08878670632839203,0.01943304017186165,0.028174588456749916,0.11614014953374863,0.0311136431992054,0.04019157215952873,-0.0023965570144355297,0.01215935405343771,-0.044316668063402176,0.028600618243217468,0.02356078289449215,-0.0571029968559742,-0.09206204116344452,-0.04304925724864006,-0.06149768829345703,-0.024908991530537605,0.0658484548330307,-0.062121935188770294,0.07098343968391418,-0.050392281264066696,0.0329655297100544,-0.04793502017855644,-0.009861321188509464,-0.04995935782790184,-0.07963722944259644,-0.06901250034570694,-0.029607342556118965,-0.029391678050160408,-0.05545283108949661,0.010651063174009323,0.10484307259321213,-0.07678958773612976,-0.07537277042865753,-0.013917245902121067,-0.009420033544301987,-0.03482000529766083,-0.09845215082168579,0.033573031425476074,0.060614634305238724,0.07140477001667023,-0.003701263340190053,0.04739280790090561,0.11023731529712677,0.04324021190404892,-0.02578951045870781,0.018666548654437065,-0.04674015939235687,0.014212124980986118,0.07640248537063599,0.06599659472703934,-3.5514325702479255e-8,0.04761746898293495,-0.037276577204465866,0.07003600150346756,0.021365053951740265,0.00405888631939888,0.006109599489718676,0.020938700065016747,0.025614457204937935,-0.010319409891963005,0.10522735118865967,-0.011680119670927525,0.10867668688297272,0.012874934822320938,0.01898285374045372,0.021927502006292343,-0.0063155051320791245,0.04264471307396889,-0.06909729540348053,-0.0323052816092968,-0.0013040835037827492,-0.028772126883268356,-0.03719118610024452,0.037950724363327026,-0.10103407502174377,-0.016033608466386795,-0.016844306141138077,-0.012372681871056557,0.005451022181659937,0.013135054148733616,0.05565749853849411,-0.017255211248993874,0.0660979151725769,-0.06956809759140015,-0.037858109921216965,0.08158301562070847,0.056096240878105164,-0.010083950124680996,0.008809627033770084,-0.03645298257470131,-0.06235872954130173,0.037996962666511536,0.023892374709248543,0.07623326778411865,0.01807589642703533,0.11974168568849564,-0.015049074776470661,0.033026885241270065,-0.03570213168859482,0.046261101961135864,-0.12999612092971802,0.00018756528152152896,0.04604397341609001,0.1342398226261139,0.05704010650515556,0.008252283558249474,0.03631524369120598,0.010510673746466637,-0.01463408675044775,0.026926806196570396,0.00444044591858983,0.04776489734649658,-0.01117696799337864,0.027979278936982155,0.03638491407036781]},{"text":"But Boxer would not listen.","book":"Animal Farm","chapter":1,"embedding":[0.06037996709346771,0.045907869935035706,-0.08585978299379349,0.02523248828947544,-0.00492491852492094,0.05549681931734085,0.013186085037887096,-0.03851630911231041,0.0796918198466301,-0.016646921634674072,-0.02657923847436905,-0.03884366527199745,0.03149421513080597,0.010821010917425156,-0.031990163028240204,0.04475676640868187,0.044153373688459396,0.06872031837701797,-0.010688682086765766,-0.047783877700567245,-0.02182558737695217,0.084504634141922,0.008806196972727776,0.05607111006975174,-0.08132996410131454,-0.006251613609492779,-0.02123005874454975,-0.0004238627734594047,0.00835688877850771,0.009583794511854649,0.029808131977915764,-0.025117935612797737,0.07813473790884018,0.08434602618217468,-0.10197733342647552,-0.050384216010570526,0.007899054326117039,0.13894158601760864,0.009890420362353325,0.020620372146368027,-0.010134830139577389,0.016350729390978813,-0.02568116784095764,-0.05187549069523811,0.015177332796156406,-0.0508662648499012,-0.04239469766616821,0.03932373970746994,-0.0032852264121174812,0.010777254588901997,0.01728903129696846,-0.06392838060855865,0.019649846479296684,0.006874704733490944,0.05832445248961449,-0.041615765541791916,-0.04244630038738251,0.021928858011960983,0.041598107665777206,0.03146709129214287,-0.024447889998555183,0.0812562108039856,-0.029188545420765877,0.022305896505713463,0.029362423345446587,0.03129131346940994,-0.01140914298593998,0.11574611812829971,-0.031686488538980484,0.08500971645116806,0.024006612598896027,0.004069163464009762,0.02384793758392334,-0.04042386636137962,0.03278598561882973,0.0012347155716270208,-0.0075764888897538185,-0.04379843547940254,0.09074727445840836,0.03967905417084694,-0.07444435358047485,-0.0931304395198822,-0.06763485819101334,-0.023306529968976974,0.009661241434514523,0.00879703275859356,-0.008610089309513569,-0.11507128179073334,-0.07280635088682175,-0.052507225424051285,-0.12290315330028534,-0.03397789224982262,0.01087102759629488,0.06367414444684982,0.042883530259132385,0.019138531759381294,0.042535457760095596,-0.010783573612570763,-0.09105801582336426,0.06854121387004852,0.0625893846154213,0.08131516724824905,-0.08589980006217957,-0.02080514095723629,0.06369586288928986,-0.013830010779201984,-0.024602489545941353,0.023220457136631012,-0.015033658593893051,0.013695302419364452,-0.04291174188256264,-0.05747012421488762,0.02092466875910759,0.04191921651363373,0.05125594139099121,0.08801960200071335,0.00972119253128767,0.034316327422857285,-0.15456195175647736,-0.01645234040915966,0.017300458624958992,0.01396828144788742,-0.07304681092500687,0.014262842014431953,0.010560879483819008,-0.10491030663251877,0.01230507344007492,-3.101536334514836e-33,0.03942199423909187,-0.09644130617380142,-0.006122936960309744,-0.02521532028913498,0.05318997800350189,-0.003338038921356201,0.01903783157467842,-0.07034846395254135,0.0779857188463211,0.038729920983314514,0.010555924847722054,0.00891139917075634,0.03327665477991104,-0.03864191100001335,0.03802577033638954,0.14134696125984192,-0.059187956154346466,0.02140391618013382,0.025644451379776,-0.03028266504406929,-0.010358216241002083,0.01651027984917164,-0.03473144397139549,0.05157078802585602,0.039246562868356705,0.028460081666707993,0.10191363841295242,-0.05204608663916588,0.044118888676166534,0.00026516770594753325,-0.05632726103067398,0.00702299689874053,0.025782736018300056,0.04752453416585922,-0.04466165602207184,-0.020516064018011093,0.009733404964208603,0.05916360765695572,-0.040839921683073044,-0.002473297296091914,0.04943281412124634,0.02783375047147274,-0.04608498886227608,-0.10419947654008865,0.011546908877789974,-0.011020596139132977,-0.00936006847769022,-0.0051840911619365215,-0.04787033051252365,0.007534116506576538,0.073113352060318,0.048648420721292496,0.0070413765497505665,0.009061619639396667,0.07783140242099762,-0.08509774506092072,0.049272943288087845,0.1134880930185318,0.014178785495460033,0.04626331850886345,0.021300198510289192,0.01752636395394802,0.02223632112145424,0.004846988245844841,-0.026740308851003647,0.024682724848389626,-0.0806405320763588,-0.030683360993862152,-0.10240121930837631,-0.01483900286257267,-0.037188537418842316,0.007873518392443657,-0.019885243847966194,-0.03182140737771988,-0.029235128313302994,-0.07996691018342972,-0.013338712975382805,0.03684183955192566,0.0745677575469017,-0.030185159295797348,0.003316981252282858,0.029961055144667625,-0.03123783878982067,0.07092058658599854,0.024049855768680573,0.006578295957297087,0.0055711898021399975,0.03180132433772087,-0.04084581509232521,-0.02481420896947384,-0.0473519042134285,0.03476898744702339,0.023783739656209946,0.0042406655848026276,0.04858967289328575,1.809638839273364e-33,-0.04819981008768082,0.04502793401479721,0.057002581655979156,0.020038509741425514,0.004675411619246006,0.02827540785074234,-0.06027006357908249,0.012345001101493835,0.09177492558956146,0.006943464279174805,0.05025307461619377,-0.045614514499902725,-0.04782968387007713,0.011684466153383255,0.08371340483427048,-0.045613620430231094,0.01489956583827734,0.01625165343284607,-0.02577422931790352,0.11196909099817276,0.050339486449956894,0.025001714006066322,-0.04056192561984062,0.0015006250469014049,-0.0667264312505722,0.018653353676199913,-0.019896646961569786,0.008529417216777802,0.006550092715770006,0.0017502011032775044,-0.010363331064581871,-0.059822916984558105,-0.11061209440231323,0.0008271267870441079,-0.014895451255142689,0.04812343791127205,-0.002152894390746951,0.08191357553005219,-0.03281904011964798,-0.0005423077382147312,-0.019736172631382942,0.0009882465237751603,-0.03714969754219055,-0.049295540899038315,0.07282505929470062,0.005695404019206762,0.014515893533825874,-0.029782218858599663,0.0364033542573452,-0.03880578652024269,-0.01419217512011528,-0.019122891128063202,0.004940767772495747,0.028988312929868698,-0.07063215225934982,0.07781363278627396,0.06357713043689728,-0.008114313706755638,0.037372443825006485,-0.09762240201234818,-0.020938429981470108,0.014958073385059834,0.0024829860776662827,-0.055579084903001785,-0.056955642998218536,-0.003032947890460491,-0.013340120203793049,0.0871364176273346,0.042675718665122986,-0.009754837490618229,0.07858451455831528,-0.01053299568593502,0.0034470318350940943,0.053856950253248215,0.024900712072849274,0.07353872060775757,-0.10381072014570236,0.07993460446596146,-0.0338846892118454,0.015302279032766819,-0.044759977608919144,0.023460857570171356,0.0030635197181254625,-0.027411581948399544,0.07199268043041229,0.08115004748106003,-0.0057469699531793594,-0.08810166269540787,0.031228505074977875,-0.013548402115702629,0.08623192459344864,0.02442273497581482,0.05482809245586395,-0.05026896297931671,-0.016219692304730415,-1.492691481530528e-8,-0.05606607347726822,-0.05692638084292412,-0.07676662504673004,-0.025360485538840294,-0.03715325519442558,0.11845503747463226,0.0612180158495903,-0.1177234947681427,0.0019472368294373155,0.07159560173749924,0.056155700236558914,0.06506086140871048,-0.09547105431556702,0.014018002897500992,-0.039770398288965225,0.027885911986231804,-0.10109362006187439,-0.09320928901433945,-0.012253036722540855,0.05759064108133316,-0.01471605896949768,-0.003732851939275861,0.0051222899928689,-0.020734108984470367,-0.05060278996825218,-0.079670250415802,-0.010920066386461258,-0.04138230159878731,0.004149443935602903,0.09865406900644302,0.015614885836839676,0.036624666303396225,-0.08864136040210724,-0.002096865326166153,-0.013758298009634018,-0.06939826905727386,0.05974503234028816,0.006097480654716492,-0.018090611323714256,0.030263680964708328,-0.08663439005613327,0.052698973566293716,-0.06569575518369675,-0.022024912759661674,0.06868810951709747,-0.09467461705207825,0.06179014965891838,-0.01997552067041397,-0.0371917299926281,-0.016545573249459267,0.02288789674639702,-0.0027235776651650667,0.09036499261856079,-0.06680788844823837,0.08066513389348984,0.07940563559532166,-0.025158995762467384,-0.15627522766590118,-0.04804505407810211,0.023747863247990608,-0.08286372572183609,-0.07897329330444336,0.021271100267767906,0.0014024297706782818]},{"text":"Now that the small field beyond the orchard had been set aside for barley, it was rumoured that a corner of the large pasture was to be fenced off and turned into a grazing-ground for superannuated animals.","book":"Animal Farm","chapter":1,"embedding":[0.034888856112957,0.034692972898483276,0.029477166011929512,0.06038917228579521,0.12896353006362915,-0.012278907932341099,-0.05651606619358063,0.02104780077934265,-0.056992411613464355,0.04810511693358421,0.07420898228883743,0.033695660531520844,-0.0849561095237732,0.008492747321724892,-0.03743287920951843,0.035315051674842834,0.03922829404473305,-0.0005570889334194362,-0.06448269635438919,0.0013713618973270059,-0.05032597482204437,0.027123015373945236,-0.02621583640575409,0.03878737986087799,-0.01782309077680111,-0.05589710921049118,-0.10512514412403107,0.035176631063222885,-0.0551818385720253,-0.02406676858663559,-0.016985349357128143,0.0851922333240509,0.042162809520959854,0.020138893276453018,-0.029320163652300835,0.03409741073846817,0.06560693681240082,-0.007444349117577076,0.09120021760463715,-0.015727387741208076,-0.000986443948931992,-0.052905384451150894,0.023544792085886,-0.04872597008943558,-0.04285278916358948,-0.013130457140505314,-0.00042604096233844757,-0.05276859179139137,0.05666997283697128,-0.01413842011243105,0.04316500574350357,0.00013520206266548485,0.0032230662181973457,-0.054073408246040344,0.0094448896124959,0.0747884213924408,-0.03323684632778168,-0.01819523610174656,-0.0026799747720360756,0.04494293034076691,0.032313939183950424,-0.014939422719180584,0.019017498940229416,0.02245102822780609,-0.009548148140311241,-0.05133938416838646,-0.07220978289842606,-0.002230647951364517,0.04924953356385231,-0.002509285695850849,0.0535755455493927,-0.010657530277967453,-0.07456539571285248,-0.12755054235458374,0.01637815497815609,0.028967276215553284,-0.06190241500735283,0.03585055097937584,0.05956500023603439,-0.10832246392965317,-0.017068233340978622,-0.005578074604272842,0.02256401628255844,-0.006330700591206551,-0.035873644053936005,-0.027164658531546593,0.058788545429706573,-0.024471305310726166,0.11484476923942566,-0.0886763408780098,0.022552641108632088,-0.13824304938316345,-0.13403673470020294,0.050398342311382294,-0.012811032123863697,-0.0031878661829978228,-0.0015536511782556772,-0.12780621647834778,-0.042960070073604584,0.024520915001630783,0.07442107796669006,-0.07039520889520645,0.0076393503695726395,-0.051193270832300186,0.005993581842631102,0.024136722087860107,-0.13442584872245789,0.03415827825665474,-0.0038212682120501995,0.02684974856674671,0.04892144352197647,0.012931166216731071,0.009426506236195564,0.07790693640708923,-0.004927766975015402,0.04478827863931656,0.035692330449819565,-0.074118971824646,-0.10601232945919037,-0.02277783676981926,0.0738864541053772,0.07489071786403656,-0.011053522117435932,0.03396216407418251,0.05612447112798691,0.0481065958738327,0.054753195494413376,-1.7010439160795162e-33,0.022158823907375336,-0.04076167568564415,-0.04183567687869072,-0.059253741055727005,0.09987631440162659,-0.09134036302566528,0.001901966636069119,0.016416581347584724,-0.00029657408595085144,-0.002842801855877042,0.051471270620822906,-0.06563196331262589,0.05693218111991882,-0.06500258296728134,0.009058416821062565,-0.07236678898334503,0.0005661635077558458,-0.0297709833830595,0.09647951275110245,0.024479756131768227,-0.015369433909654617,0.04007645696401596,-0.03794354200363159,-0.004580854903906584,-0.0342848114669323,0.0066901566460728645,0.07546740770339966,-0.023263532668352127,-0.035411909222602844,0.028869908303022385,0.04788532108068466,-0.05907237157225609,-0.00578566687181592,0.05702582746744156,0.0254683680832386,0.038728974759578705,0.002775693777948618,-0.13963958621025085,0.024471063166856766,0.054226893931627274,0.03961765393614769,0.04563650116324425,0.08472862094640732,-0.02499019168317318,0.003527233377099037,0.009053060784935951,0.0020196987316012383,0.07120395451784134,-0.07376181334257126,0.015883179381489754,0.06725288182497025,0.07653813809156418,0.07774095982313156,-0.00772121362388134,0.03547729551792145,0.0404803492128849,-0.011650804430246353,0.0005754115409217775,-0.06371381133794785,0.023333964869379997,0.06169208139181137,-0.01992768421769142,-0.020543094724416733,0.005811054725199938,-0.07527460902929306,-0.03799508512020111,-0.035734936594963074,0.027073055505752563,-0.03499412164092064,0.09647680819034576,-0.05693471059203148,0.04426207020878792,-0.004019576590508223,0.00871429406106472,-0.05565693601965904,0.009792681783437729,-0.033125728368759155,0.04391923546791077,-0.010426148772239685,-0.013255316764116287,0.0245694350451231,0.0020562484860420227,-0.021321911364793777,0.044786255806684494,-0.071445032954216,-0.062343429774045944,-0.018460074439644814,-0.04175153374671936,0.00855979323387146,-0.07399692386388779,0.02743440680205822,0.0601508691906929,0.006528068333864212,-0.09957633912563324,0.06692387163639069,-5.170233741229285e-34,-0.04994622617959976,0.07141108810901642,-0.0003317100927233696,0.05177219957113266,-0.10012520104646683,-0.009372323751449585,-0.032966166734695435,-0.0411907359957695,-0.06125375255942345,-0.002957297023385763,-0.07922893017530441,0.11987167596817017,0.024598408490419388,-0.037993911653757095,0.018230710178613663,-0.011097127571702003,0.013423648662865162,0.0006328369490802288,0.05051876977086067,-0.029993129894137383,-0.03361275792121887,-0.020951813086867332,-0.019762206822633743,-0.029459713026881218,0.06077899411320686,0.021803127601742744,-0.04120955243706703,0.005970624275505543,-0.03688699007034302,-0.06686403602361679,0.02167520485818386,-0.08304154872894287,-0.0020292531698942184,-0.012882077135145664,0.0047475481405854225,0.035805124789476395,-0.0005059193936176598,-0.041017308831214905,-0.05197408050298691,0.013958391733467579,0.02197798527777195,-0.009720229543745518,-0.002878124127164483,0.07274554669857025,-0.0626060888171196,-0.021259117871522903,-0.03710022196173668,0.09825656563043594,0.06775863468647003,0.02845677174627781,-0.033901963382959366,0.0512167364358902,0.09051237255334854,-0.029950454831123352,-0.04472607746720314,-0.04081609100103378,0.052839066833257675,0.00983267929404974,-0.04651569947600365,-0.015453064814209938,-0.004459264688193798,-0.0010396621655672789,-0.02898118458688259,-0.006355090532451868,0.03331507369875908,0.016616826876997948,-0.09964457899332047,-0.020195087417960167,-0.07404045015573502,-0.02199115790426731,0.00925058126449585,0.05364278331398964,0.025471806526184082,0.04742599278688431,0.01628638058900833,0.1005154624581337,0.06294326484203339,-0.055335283279418945,-0.006777818314731121,0.009859212674200535,0.015574290417134762,-0.07343057543039322,0.07300490885972977,-0.001374755403958261,0.11818438768386841,-0.019449973478913307,-0.0954810231924057,0.09314253181219101,0.03988831490278244,-0.010267779231071472,-0.03555680066347122,-0.032315436750650406,0.0430162213742733,-0.003416897729039192,0.06379559636116028,-3.1328692529086766e-8,-0.05729268118739128,0.0003812072682194412,-0.09448201209306717,0.0187142975628376,0.04287569224834442,-0.014658933505415916,0.014165797270834446,0.015773721039295197,0.050438042730093,0.02302039973437786,-0.13125668466091156,0.08330502361059189,-0.027970215305685997,0.10391202569007874,0.042235780507326126,-0.0020628904458135366,0.02865474671125412,-0.08765280991792679,-0.06552416831254959,0.06484349071979523,-0.07607375085353851,-0.024588488042354584,-0.13239969313144684,-0.07431688159704208,-0.03542637079954147,-0.049901966005563736,-0.02679254673421383,0.03539852052927017,0.03568759188055992,-0.01942785084247589,0.004989454988390207,-0.0045201946049928665,-0.028184425085783005,0.01059550978243351,0.014052621088922024,0.10329999774694443,-0.019197702407836914,0.06202743574976921,0.11488358676433563,-0.05575064942240715,-0.066220723092556,0.029804108664393425,0.009413979016244411,0.02327003888785839,0.03201151639223099,-0.0022267710883170366,-0.04734480008482933,0.021909484639763832,-0.009299355559051037,-0.014502238482236862,-0.0423993319272995,0.022208737209439278,0.11465910822153091,0.004383548628538847,0.02911180816590786,-0.014111511409282684,-0.009856659919023514,-0.10619810223579407,0.01348823867738247,0.04773217439651489,-0.06089657172560692,0.01262149028480053,-0.018702426925301552,0.037474166601896286]},{"text":"A too rigid equality in rations, Squealer explained, would have been contrary to the principles of Animalism.","book":"Animal Farm","chapter":1,"embedding":[-0.07829879969358444,0.02837705984711647,0.018538938835263252,0.04062871262431145,0.005496597848832607,-0.041934411972761154,-0.06169745326042175,-0.019729632884263992,-0.034373123198747635,-0.0017426947597414255,0.0890795961022377,-0.060383714735507965,-0.012358996085822582,0.08976840227842331,-0.024087676778435707,-0.0973103791475296,0.013767741620540619,0.06127963587641716,-0.07018265128135681,0.06620172411203384,-0.0261075422167778,0.030180027708411217,0.01218381617218256,0.10643354803323746,-0.011355255730450153,-0.007431599777191877,-0.05238229036331177,-0.047733865678310394,0.019468015059828758,0.00637788325548172,0.016233166679739952,0.03704870864748955,0.061885856091976166,0.0031375749967992306,-0.09058753401041031,-0.006751006003469229,0.08869143575429916,-0.018537204712629318,0.08878480643033981,0.025931812822818756,-0.028564084321260452,-0.0039423126727342606,-0.010351073928177357,-0.04099676385521889,-0.026848118752241135,0.05633580684661865,-0.06533634662628174,0.020291244611144066,0.001359784509986639,-0.033220864832401276,-0.03954663127660751,0.002346289809793234,-0.06998447328805923,-0.062259573489427567,0.0099661098793149,-0.014157379977405071,-0.004973571747541428,0.021158521994948387,-0.03936947137117386,-0.0037252837792038918,0.010308085940778255,0.027065515518188477,0.048979125916957855,0.03159113600850105,0.03926153853535652,-0.07712963968515396,-0.03358393907546997,0.044248078018426895,-0.08851274102926254,0.0625356063246727,0.05967991054058075,-0.012418800964951515,-0.0002089593472192064,-0.012075702659785748,-0.003184814704582095,-0.015289087779819965,0.020719297230243683,-0.01093294657766819,0.06324952095746994,-0.01710067130625248,-0.09028763324022293,-0.06918997317552567,0.015591053292155266,-0.009659099392592907,0.038063883781433105,-0.11740855127573013,-0.01427918765693903,-0.10196630656719208,-0.01574733294546604,0.018988987430930138,0.0409027636051178,-0.07281426340341568,0.07938650250434875,0.026453377678990364,0.08422859758138657,0.03490366041660309,-0.07078472524881363,0.055880215018987656,-0.044094156473875046,-0.006498079746961594,-0.02223779261112213,0.021513259038329124,0.014710030518472195,-0.028481196612119675,0.04836900532245636,-0.09231329709291458,-0.0635620579123497,-0.05072160065174103,0.030554024502635002,0.03715762868523598,-0.007240783888846636,0.05915018543601036,0.020766140893101692,0.06863152235746384,-0.03639422357082367,-0.003089865203946829,-0.009225362911820412,-0.08037716150283813,-0.060097239911556244,-0.03225721791386604,0.05802921950817108,-0.028660211712121964,-0.03372349590063095,0.07288768142461777,0.07915618270635605,0.020295441150665283,-0.01620710827410221,-1.8143217148934522e-33,-0.04083669185638428,-0.10332077741622925,0.03937442600727081,-0.04917958378791809,0.05281825363636017,-0.026308072730898857,-0.06459915637969971,-0.0002935740048997104,0.12492681294679642,0.02247648499906063,-0.017580179497599602,0.03223000094294548,0.012800954282283783,0.02469770610332489,-0.0023862284142524004,-0.012430456466972828,-0.060790687799453735,0.03972821682691574,0.11913490295410156,-0.022318558767437935,0.006962402258068323,-0.005832390394061804,-0.0001252300280611962,-0.024808481335639954,0.009640448726713657,0.018070988357067108,0.008702559396624565,-0.08684869855642319,0.011423208750784397,0.015991823747754097,0.07067657262086868,-0.04059986025094986,0.003262845566496253,0.037550076842308044,0.0017220319714397192,-0.007489905692636967,0.025595279410481453,-0.13241618871688843,-0.07309801131486893,-0.03117750957608223,0.060103368014097214,-0.017820080742239952,0.057610075920820236,0.004691385664045811,0.0717649981379509,0.050422776490449905,0.03594094142317772,0.0071941399946808815,-0.055414795875549316,0.006656171288341284,0.039420291781425476,0.07123055309057236,0.0836699977517128,0.004266124684363604,0.08224877715110779,-0.04119093343615532,0.022702768445014954,0.08150604367256165,-0.09638193994760513,-0.022876620292663574,-0.02461039088666439,0.060971640050411224,0.06841189414262772,-0.06048474833369255,-0.07154078036546707,0.00019993323076050729,-0.07344391942024231,-0.06801524758338928,-0.039520639926195145,0.015274541452527046,0.018205655738711357,-0.033022232353687286,-0.08135592937469482,0.003332063788548112,-0.0351678840816021,-0.015553168021142483,0.06508593261241913,0.061079319566488266,0.0005435053608380258,-0.15960781276226044,0.005387804936617613,0.05180944502353668,0.0023501378018409014,0.03513803705573082,-0.1400756537914276,0.04414244368672371,0.07821039855480194,-0.0018600202165544033,0.11529030650854111,0.00509612588211894,0.036391958594322205,-0.04964820295572281,-0.06285238265991211,-0.04884398728609085,0.008447537198662758,4.893522715428829e-35,-0.12877561151981354,0.009842690080404282,-0.06255005300045013,0.11533600836992264,0.018332839012145996,0.026558920741081238,0.00001734264151309617,-0.05359403416514397,0.04519536718726158,-0.09302031993865967,0.02893083356320858,-0.005985904019325972,-0.0438290573656559,-0.009252475574612617,0.011275837197899818,0.06221423298120499,-0.008456042036414146,0.020387746393680573,0.012668589130043983,-0.01882108487188816,-0.02859380468726158,-0.009387779049575329,0.03431238234043121,0.02826964668929577,0.019084952771663666,0.10824402421712875,-0.027813410386443138,0.00465924758464098,0.056218359619379044,-0.075083427131176,0.05514809116721153,-0.032267920672893524,-0.045717786997556686,-0.10174457728862762,0.04355510324239731,0.00309158768504858,-0.023544950410723686,0.04964794963598251,-0.030563246458768845,-0.03438388928771019,-0.01536024734377861,-0.019887667149305344,-0.023270225152373314,0.07027137279510498,0.026843510568141937,0.001659611938521266,0.11494214087724686,-0.09841083735227585,0.08116017282009125,-0.0069922772236168385,0.038452066481113434,-0.017393799498677254,0.05875932797789574,0.026636088266968727,-0.013403129763901234,0.007067697122693062,-0.0009247013367712498,-0.06660615652799606,0.0324963703751564,-0.04529857262969017,-0.04149045795202255,-0.016849344596266747,-0.02649574913084507,-0.008285585790872574,-0.04374292865395546,-0.044564537703990936,-0.022581921890378,0.013049410656094551,0.057791292667388916,-0.04488910734653473,0.03506933152675629,-0.012108919210731983,0.07892242074012756,0.043207354843616486,-0.0068451096303761005,0.09867295622825623,0.02437591925263405,-0.08019226044416428,0.00963516440242529,0.014275366440415382,-0.09445812553167343,-0.018147490918636322,0.030861414968967438,-0.01767921820282936,0.014029082842171192,-0.04996955767273903,-0.004328554030507803,0.07397071272134781,0.0421612448990345,0.056808747351169586,-0.06380107998847961,-0.06816189736127853,0.08882628381252289,0.003192750969901681,0.10773881524801254,-2.3119570258245403e-8,0.02514440007507801,-0.0013379039010033011,-0.013849476352334023,0.05148058384656906,0.04775414615869522,-0.013032347895205021,0.004735889378935099,-0.08826717734336853,-0.07379207760095596,0.08391070365905762,-0.06425149738788605,0.07338093221187592,0.024031441658735275,0.06911817193031311,0.04662420228123665,0.007812305819243193,-0.0505104586482048,-0.07170141488313675,-0.05126214399933815,0.07501403987407684,-0.0166194848716259,0.026518404483795166,-0.07672876119613647,-0.0884680226445198,-0.055625997483730316,0.0430067703127861,-0.07857879996299744,0.015147081576287746,0.0037948342505842447,0.005180210806429386,0.016325490549206734,0.0938289538025856,-0.02889614924788475,-0.03622443601489067,-0.009853355586528778,0.007653570268303156,-0.054379869252443314,0.049504559487104416,0.04444855451583862,-0.01872338354587555,-0.0830637514591217,-0.017574498429894447,0.0013599287485703826,0.09345157444477081,0.09781000018119812,0.00728887552395463,-0.0635785162448883,0.0337877981364727,-0.028759967535734177,0.014950187876820564,0.0076106246560812,0.08180128782987595,0.021959086880087852,0.005860186647623777,0.06186431273818016,-0.0868135318160057,-0.05297095701098442,-0.038049835711717606,-0.0024166987277567387,0.034027326852083206,-0.005317856557667255,-0.03702253848314285,-0.02083428017795086,0.013150789774954319]},{"text":"Truth to tell, Jones and all he stood for had almost faded out of their memories.","book":"Animal Farm","chapter":2,"embedding":[0.013046828098595142,0.07663328945636749,-0.04825098440051079,0.06647436320781708,0.06293422728776932,0.06405192613601685,0.0011902620317414403,0.00485368724912405,-0.02758021652698517,-0.062177833169698715,-0.056633006781339645,0.025412991642951965,0.04369006305932999,-0.04273079335689545,-0.04884383827447891,0.07626787573099136,-0.06964422017335892,0.06381882727146149,-0.023679928854107857,-0.0857575312256813,-0.05950412154197693,0.07170182466506958,-0.015533083118498325,0.05266328528523445,0.0052621448412537575,0.030767694115638733,0.026242798194289207,0.04519031196832657,0.05560469999909401,0.03430578485131264,0.03561956062912941,0.028922559693455696,0.03656262531876564,0.023894695565104485,-0.04895327240228653,-0.027204547077417374,0.013095875270664692,0.032205238938331604,0.04518866911530495,-0.09045006334781647,0.046268392354249954,0.04506666585803032,-0.013324675150215626,-0.036589737981557846,-0.038888927549123764,0.009789268486201763,0.04231642931699753,-0.0785575583577156,-0.030541470274329185,0.005786424968391657,0.06219858303666115,0.034221477806568146,-0.020000172778964043,-0.051953695714473724,-0.018119046464562416,0.006486551836133003,-0.046674828976392746,-0.01938728615641594,-0.09394998103380203,0.041218534111976624,-0.03186630457639694,-0.02672276645898819,-0.0007387468940578401,0.056292541325092316,-0.07665731757879257,-0.005567300599068403,0.002528110519051552,0.0164314154535532,0.0009987014345824718,0.032751888036727905,-0.018216954544186592,-0.008294299244880676,0.004982172977179289,-0.05568699166178703,0.00575757771730423,0.08480964601039886,0.05851012095808983,0.02424626238644123,-0.0026156839448958635,-0.05629349499940872,-0.03524255007505417,-0.012984797358512878,0.019533412531018257,-0.02437274344265461,-0.004578756168484688,0.03146183863282204,0.01511083822697401,-0.11258639395236969,-0.0925951898097992,-0.038093093782663345,-0.0167684406042099,-0.07429930567741394,0.04041004925966263,0.02214314229786396,0.037492770701646805,-0.07662295550107956,0.045861609280109406,0.026488399133086205,-0.005938660819083452,0.02686995454132557,-0.08983114361763,0.048812542110681534,0.037603046745061874,-0.01876470074057579,0.05857458338141441,-0.027855563908815384,-0.008309610188007355,-0.024797582998871803,-0.03344475477933884,-0.02715701051056385,0.022375885397195816,0.04734744504094124,-0.03396521136164665,0.12466217577457428,0.03702770173549652,-0.032627079635858536,-0.07924657315015793,0.01731680892407894,-0.03990526124835014,0.0334482416510582,-0.02121567539870739,0.026622917503118515,-0.06349074840545654,0.09897412359714508,-0.07828474044799805,-0.024433225393295288,0.041395869106054306,-1.6755547904498735e-33,0.003514054697006941,-0.021033691242337227,-0.032347727566957474,-0.008062577806413174,-0.010490338318049908,0.096287801861763,0.011185814626514912,-0.013292217627167702,0.048871126025915146,-0.025898439809679985,0.022483373060822487,0.04326397180557251,0.00897914543747902,-0.0401051864027977,-0.050011616200208664,0.08727613836526871,-0.06891866773366928,0.007883397862315178,0.05236624553799629,-0.059998951852321625,-0.01298093143850565,0.19768941402435303,-0.06359235942363739,0.0002506597083993256,-0.009090672247111797,0.05242094025015831,-0.028696175664663315,0.050322987139225006,-0.07461993396282196,0.01496685016900301,0.040611304342746735,0.021483903750777245,0.004342136904597282,0.07148414105176926,0.03701414540410042,0.07016527652740479,0.04894747585058212,-0.06009475514292717,-0.03150421008467674,-0.013826866634190083,-0.01070407871156931,0.033399417996406555,-0.03621654585003853,-0.09699997305870056,-0.1382399946451187,-0.039353564381599426,0.007418106775730848,-0.0332336351275444,-0.02302497625350952,-0.008569852448999882,-0.02246120199561119,-0.003118785796687007,-0.02108481153845787,-0.005513903684914112,-0.09518937766551971,-0.0781932920217514,0.020147396251559258,0.03206995874643326,0.010937689803540707,0.005484841763973236,0.006720925681293011,0.026814807206392288,-0.0001955036132130772,0.02305072732269764,-0.024386459961533546,0.03903598710894585,-0.04432869702577591,0.0021998826414346695,-0.09830670803785324,0.04195835813879967,0.03205516189336777,-0.011542633175849915,-0.039832379668951035,-0.10010875016450882,-0.05629243329167366,-0.09613566845655441,0.07644686102867126,0.004208141006529331,0.024608111009001732,-0.011781323701143265,0.037871960550546646,-0.02511737309396267,-0.015072870999574661,-0.12093864381313324,0.049471113830804825,-0.03649380803108215,0.07703074812889099,-0.05332954227924347,-0.06118452921509743,0.015038075856864452,-0.0019357581622898579,0.05826194956898689,0.05602337792515755,-0.07684814184904099,-0.05640066787600517,-2.9598922039766275e-33,-0.059681884944438934,0.05314144864678383,0.024140000343322754,0.08667432516813278,0.06633178144693375,-0.055532727390527725,-0.047368958592414856,0.02368520200252533,-0.018354590982198715,-0.12684877216815948,0.05273934453725815,-0.05311697721481323,-0.015492788515985012,-0.0031734441872686148,-0.07173728197813034,-0.04446183517575264,0.007453014142811298,-0.03276790305972099,-0.007993609644472599,0.08389955759048462,0.02908564731478691,0.03239092230796814,-0.10675382614135742,-0.08318439871072769,0.01067700982093811,-0.015546017326414585,0.011509650386869907,-0.05433801934123039,-0.10218126326799393,0.005382020492106676,-0.015254706144332886,-0.05028101056814194,-0.0669797882437706,0.04955989122390747,0.05051630362868309,-0.0014166587498039007,-0.006221751216799021,0.09393955022096634,-0.02644580788910389,-0.01728232391178608,0.038953714072704315,-0.019289853051304817,-0.013994401320815086,0.03382159024477005,0.021437130868434906,0.04874440282583237,-0.09739939868450165,0.07394788414239883,-0.01619024947285652,0.07962334156036377,-0.10872507095336914,0.022493869066238403,-0.0007225224399007857,0.07350310683250427,-0.0438140444457531,-0.0007247032481245697,0.010368550196290016,0.08117403835058212,-0.0049603525549173355,-0.0016068785917013884,-0.09478316456079483,-0.04714060202240944,-0.016600463539361954,-0.009090828709304333,0.018117429688572884,0.0749044418334961,0.032001644372940063,0.0648585632443428,-0.10541616380214691,-0.021129954606294632,0.037500765174627304,-0.055943410843610764,-0.05987466871738434,0.030868805944919586,-0.07258398085832596,0.02847912162542343,-0.14519469439983368,0.016999321058392525,-0.09398603439331055,0.040878959000110626,-0.04622069373726845,-0.027818800881505013,-0.00566778564825654,0.06625080108642578,0.020412195473909378,0.06583025306463242,-0.02337542548775673,-0.0137304263189435,0.00938047468662262,-0.02035336382687092,0.05866314098238945,-0.08181436359882355,0.058880120515823364,-0.044887833297252655,-0.04409034922719002,-2.668129717164902e-8,-0.0516197495162487,0.001956884516403079,-0.017980927601456642,0.012570057064294815,0.05278001353144646,0.035829897969961166,0.029383527114987373,0.01454660389572382,-0.006913123186677694,0.1147485002875328,0.08908425271511078,0.039578262716531754,-0.04092280939221382,-0.03643596172332764,0.006573008373379707,-0.044130194932222366,-0.05312781408429146,-0.07200182974338531,0.04956744238734245,0.08558972179889679,-0.06398999691009521,-0.055389199405908585,-0.0007688998011872172,0.0329461544752121,0.10213728994131088,0.10443039983510971,-0.07757432013750076,-0.018881510943174362,0.057067032903432846,0.03206474706530571,0.0451415590941906,0.004738290794193745,-0.01477830484509468,0.006405728869140148,0.061138372868299484,-0.057666677981615067,0.05165020748972893,0.023197706788778305,0.0012836320092901587,0.013719345442950726,0.0002968094777315855,0.029244543984532356,-0.0022525868844240904,0.02812010608613491,0.08199950307607651,0.07597220689058304,0.06268662959337234,0.03799425810575485,-0.03904661536216736,-0.08131591230630875,0.003395727602764964,0.08465076237916946,0.014276630245149136,0.060930512845516205,0.06373278796672821,-0.03675248473882675,-0.01343472022563219,0.05681139975786209,-0.051162224262952805,-0.09265392273664474,-0.0045341067016124725,0.02135988511145115,-0.026193635538220406,0.005897874943912029]},{"text":"There were many more mouths to feed now.","book":"Animal Farm","chapter":2,"embedding":[0.046527910977602005,-0.031427014619112015,0.019512977451086044,0.008255692198872566,-0.015759963542222977,0.009098405949771404,-0.04926835000514984,-0.022425968199968338,-0.01495850645005703,-0.023660868406295776,0.028551975265145302,-0.008554087020456791,-0.00630082655698061,-0.0031677421648055315,0.038472432643175125,-0.05918243154883385,0.010052120313048363,-0.08675619214773178,-0.03910816088318825,-0.10025032609701157,-0.02489659935235977,0.09658357501029968,0.05941654369235039,0.03186624124646187,0.016693349927663803,0.055782951414585114,-0.04199296981096268,-0.0843627005815506,0.03838377445936203,0.03590080142021179,-0.0009157172171398997,0.010647976770997047,0.07167404890060425,-0.02910265512764454,-0.016088202595710754,-0.0243229903280735,0.0886642262339592,0.012127951718866825,-0.004908948205411434,0.017005307599902153,0.06101628392934799,-0.05973413586616516,-0.0005999783170409501,0.009028184227645397,-0.06012947857379913,-0.007111614570021629,-0.08810357004404068,0.019262952730059624,0.0633777379989624,-0.003905045334249735,-0.006490449421107769,-0.04718263819813728,0.029694870114326477,-0.05078670009970665,0.007782711181789637,-0.09044787287712097,0.0385228656232357,-0.00421019596979022,0.00048036588123068213,0.02526140585541725,-0.011167105287313461,-0.054864224046468735,0.028112443163990974,0.03317929059267044,-0.05193638801574707,-0.01565096527338028,-0.05910579115152359,0.02639579586684704,-0.06443772464990616,0.09206852316856384,0.010679103434085846,-0.00963833648711443,0.03995329886674881,-0.08825886994600296,0.03280011937022209,-0.054462283849716187,0.06209372729063034,0.004247948527336121,0.043541450053453445,-0.06337159872055054,0.03839607909321785,-0.05307253822684288,-0.014659843407571316,0.02340269461274147,-0.057407576590776443,-0.022913839668035507,-0.06312090158462524,-0.07351718842983246,-0.027797672897577286,0.04669246822595596,-0.05488351732492447,0.0059415013529360294,0.021288542076945305,0.09603195637464523,-0.017523810267448425,-0.0016264260048046708,-0.05445806309580803,-0.015609869733452797,0.039507318288087845,0.10144376754760742,-0.06579715013504028,0.03358985856175423,-0.0281986091285944,-0.06778846681118011,0.01181719545274973,-0.0356212817132473,-0.11903933435678482,0.03680639714002609,-0.03468377888202667,0.046407993882894516,-0.036040354520082474,0.089460089802742,-0.006856224965304136,0.0053725047037005424,-0.0031074504368007183,-0.014047719538211823,-0.04654259607195854,-0.06519276648759842,-0.03751381114125252,0.08554564416408539,0.05650629103183746,0.02059188485145569,-0.08352378755807877,0.06267426162958145,0.10060805827379227,-0.020456252619624138,-0.016766240820288658,-4.416278276767593e-33,-0.01541242003440857,-0.03696117550134659,0.018937690183520317,0.030591150745749474,-0.003865086706355214,0.07511962950229645,0.027578089386224747,0.07138668745756149,0.014063102193176746,-0.08647911995649338,0.018748264759778976,-0.05713467299938202,-0.06408461183309555,-0.0026039532385766506,-0.02131808176636696,-0.09342386573553085,-0.060909438878297806,0.07039736956357956,0.07111509144306183,0.03811444342136383,-0.0015325481072068214,-0.001356388907879591,0.0002850409655366093,0.05527688190340996,0.012826799415051937,0.0915268287062645,0.030592015013098717,0.029459519311785698,-0.043700046837329865,-0.017959488555788994,0.0770755186676979,-0.055042050778865814,0.039025045931339264,-0.03680014610290527,-0.002018318511545658,-0.08502433449029922,0.07447032630443573,-0.0681329071521759,-0.058037303388118744,-0.023216670379042625,0.07586915045976639,0.09346989542245865,0.02600915916264057,-0.009126778692007065,-0.0074024200439453125,0.05845017358660698,-0.06428590416908264,-0.02587152272462845,-0.019974563270807266,-0.0010221099946647882,0.07719490677118301,0.013644343242049217,0.013964475132524967,0.01905069500207901,-0.02143620140850544,-0.036678727716207504,-0.04882004112005234,0.0506257563829422,0.005903285462409258,-0.03277555853128433,0.03656245768070221,0.04385307431221008,0.0774587020277977,0.0030505922622978687,0.03407854214310646,0.08960968255996704,0.023311644792556763,-0.026173558086156845,-0.0600835420191288,0.07177869230508804,-0.0396508164703846,-0.06111607700586319,-0.11497665196657181,-0.06493596732616425,-0.04385486617684364,-0.012172272428870201,0.004033150617033243,-0.0578007847070694,0.053260162472724915,0.03870757296681404,0.10470261424779892,-0.004583553411066532,0.04585251212120056,-0.004069305956363678,0.05055181309580803,0.04704166576266289,-0.0451616607606411,-0.10463233292102814,0.16215495765209198,0.014267816208302975,-0.11007891595363617,0.026078568771481514,0.037687309086322784,-0.010991837829351425,-0.06814654171466827,2.2561977555492273e-33,-0.05512067303061485,0.09825452417135239,-0.07486545294523239,0.06714633852243423,-0.04121020436286926,-0.0430709607899189,0.03252386301755905,0.013482118025422096,0.00856162142008543,-0.013163698837161064,0.01205119676887989,0.011385921388864517,0.07747965306043625,0.058616671711206436,-0.03787828981876373,0.06563733518123627,0.11405099928379059,0.005711558274924755,0.011525304056704044,-0.013101242482662201,-0.04066837206482887,0.0020109079778194427,-0.008092941716313362,0.02949373796582222,-0.02152182161808014,0.0836358293890953,-0.0250649843364954,0.05719566345214844,-0.08543326705694199,-0.08063455671072006,0.02436876855790615,-0.030588693916797638,0.010685911402106285,0.055382657796144485,-0.007737351581454277,0.07167331874370575,-0.026908112689852715,0.03684643656015396,-0.045114919543266296,-0.03298027813434601,0.02441289834678173,-0.05854564160108566,0.007110308855772018,0.07876049727201462,-0.025437230244278908,0.013294472359120846,0.0748528242111206,-0.0017800304340198636,0.024519091472029686,0.03290056437253952,-0.0575125515460968,-0.03211928531527519,-0.05399252101778984,0.03460359573364258,-0.04365013167262077,0.02216734178364277,0.042653121054172516,-0.02909534052014351,0.006629787851125002,-0.1058637946844101,-0.0965268686413765,0.007401679176837206,-0.04797767847776413,-0.02771366387605667,0.07354004681110382,-0.02317150868475437,0.04308304563164711,-0.03134576231241226,0.010080455802381039,-0.009668359532952309,0.03817017748951912,0.013710652478039265,-0.03962885960936546,0.03867744281888008,-0.04238155856728554,0.1156785786151886,-0.09748034924268723,-0.06812147051095963,-0.10583274811506271,0.047651566565036774,-0.052782803773880005,-0.03152018040418625,0.026827510446310043,0.011054811999201775,0.05491099879145622,0.08110582828521729,0.0415317565202713,-0.03776457533240318,0.02814989723265171,0.08070968836545944,-0.06054278090596199,-0.039187993854284286,0.05062267929315567,-0.015425787307322025,0.02306430973112583,-1.999505805372337e-8,0.014566652476787567,-0.02445882186293602,-0.10794469714164734,0.05274714529514313,0.1139870434999466,-0.06770003587007523,-0.08894684910774231,0.025831976905465126,-0.018455788493156433,0.07425910979509354,0.008998669683933258,0.08248906582593918,0.05336344242095947,0.035110101103782654,0.06823398917913437,-0.04831204190850258,0.011035348288714886,-0.11769542098045349,-0.007338161580264568,0.016496768221259117,-0.027707716450095177,0.05012693628668785,-0.04299651086330414,-0.059449512511491776,0.015682166442275047,-0.05812260881066322,-0.09734021872282028,0.09363459050655365,0.016169600188732147,-0.006569043733179569,0.05264392867684364,-0.015251217409968376,-0.07811407744884491,-0.004338786005973816,0.06824550032615662,-0.027348600327968597,-0.08948886394500732,0.014941228553652763,0.0259474478662014,-0.07273351401090622,-0.026165306568145752,0.0248251985758543,0.005180632695555687,0.06088825687766075,-0.00008494996291119605,0.0726722776889801,-0.05118745565414429,0.04351714625954628,0.04945959895849228,-0.02615455724298954,-0.059321459382772446,0.04342449828982353,0.03086503967642784,0.022778905928134918,0.07523811608552933,-0.06378385424613953,-0.03737920895218849,-0.06158255785703659,0.024705886840820312,0.025866495445370674,-0.018595071509480476,-0.011403326876461506,0.011642567813396454,0.00980383437126875]},{"text":"They took their exercise in the garden, and were discouraged from playing with the other young animals.","book":"Animal Farm","chapter":2,"embedding":[0.05661497637629509,0.10551950335502625,0.03205886855721474,0.08284234255552292,0.059227827936410904,0.044145338237285614,0.011042756028473377,-0.07147662341594696,-0.04815997555851936,0.0774693712592125,0.08821000903844833,0.0040998756885528564,0.02823103964328766,-0.0015704605029895902,0.015421498566865921,0.01360592432320118,-0.02494005672633648,-0.000896954326890409,-0.017675215378403664,-0.006740732118487358,-0.06629107892513275,0.0354653000831604,0.05690984055399895,0.07251057773828506,-0.00740117346867919,0.014588157646358013,-0.07325993478298187,0.026933984830975533,-0.011838575825095177,-0.005490598734468222,-0.05459120124578476,0.03513035550713539,0.0546228289604187,0.019351303577423096,-0.04207175597548485,0.030406050384044647,0.07677233964204788,-0.011685523204505444,0.04254692792892456,-0.02939232811331749,-0.029259180650115013,-0.005911363288760185,0.022656850516796112,-0.11231803894042969,-0.08708691596984863,-0.03800671547651291,-0.10672386735677719,-0.10670226812362671,0.029812252148985863,-0.05525563657283783,0.05357640981674194,0.001987260300666094,-0.023408563807606697,-0.05844147875905037,0.01009459514170885,-0.030329810455441475,-0.06379132717847824,0.013119869865477085,0.02728496491909027,-0.0035412476863712072,0.04269126430153847,-0.011723588220775127,-0.003307937877252698,0.05647585913538933,-0.061623506247997284,-0.036569055169820786,-0.035306163132190704,-0.007403263822197914,0.0302885714918375,-0.01447316538542509,0.010974295437335968,-0.04292670637369156,-0.021734226495027542,-0.07666080445051193,-0.08155181258916855,0.03931116312742233,-0.013124407269060612,0.009895804338157177,-0.01033309381455183,-0.12876203656196594,-0.04866653308272362,-0.00011728471872629598,0.021407563239336014,0.08359844982624054,0.04588289558887482,0.01576877385377884,0.026009563356637955,-0.023162106052041054,-0.007514874916523695,-0.02498830296099186,-0.03263620659708977,-0.04399041831493378,-0.0223990511149168,0.07637039572000504,0.08029831200838089,-0.0648374855518341,-0.010049941949546337,-0.0609557144343853,-0.03583632782101631,0.022339122369885445,0.022612757980823517,0.017075123265385628,0.09835793077945709,0.044834766536951065,-0.0002106657047988847,-0.040172893553972244,-0.09675194323062897,-0.0540345124900341,0.013361506164073944,0.08778787404298782,-0.049995314329862595,0.01615244336426258,0.04520212113857269,0.10714468359947205,-0.020898666232824326,0.08359386026859283,0.012391763739287853,-0.04772929847240448,-0.034668177366256714,0.06587918847799301,0.05230202153325081,0.023557346314191818,-0.00978916697204113,-0.015490730293095112,0.007962297648191452,0.016668405383825302,-0.05604948848485947,-3.413393883762035e-33,0.09126178175210953,-0.12049812823534012,-0.0334492102265358,-0.009771477431058884,0.04572491720318794,0.00007473492587450892,-0.005135154817253351,-0.04439545050263405,0.03164001181721687,-0.05109836906194687,-0.021457944065332413,-0.046575188636779785,0.07070653885602951,-0.09276784211397171,0.08143506199121475,-0.016399307176470757,-0.06955218315124512,-0.05540137737989426,0.13693711161613464,0.004678684286773205,-0.022815890610218048,0.05184090510010719,0.0040067159570753574,0.05647192522883415,-0.05645602568984032,-0.011467388831079006,-0.017541388049721718,-0.053530942648649216,0.01164987962692976,0.03469279035925865,0.052834250032901764,-0.13740727305412292,-0.07173996418714523,0.009540185332298279,0.04280463233590126,0.03352837637066841,0.0524570494890213,-0.10147804766893387,0.008559022098779678,0.04537453129887581,0.08061578124761581,-0.04866107553243637,0.10281223058700562,0.01345036644488573,0.04507030174136162,0.020110739395022392,0.04008866474032402,-0.012867163866758347,-0.07970881462097168,0.06113441288471222,0.03177495300769806,0.10765101760625839,0.06094139441847801,-0.06718664616346359,0.01702713407576084,0.044701896607875824,0.013620511628687382,0.047390665858983994,-0.10067366063594818,-0.001146711059845984,0.05977313593029976,0.02109355852007866,0.0013078993652015924,-0.013887493871152401,-0.023069778457283974,-0.004148116335272789,-0.03563380241394043,0.019134100526571274,-0.06496083736419678,-0.013843772932887077,-0.00937783345580101,-0.025641320273280144,-0.06526023894548416,-0.1262926459312439,0.028835611417889595,-0.06156540662050247,0.03043617308139801,-0.047493647783994675,0.016971692442893982,-0.117768794298172,0.12084195762872696,0.024257294833660126,-0.11195524036884308,0.04945571720600128,-0.03598298877477646,-0.01716436818242073,0.0824073776602745,-0.03449319303035736,0.009618839249014854,-0.024845369160175323,0.015043261460959911,0.009914267808198929,-0.050110604614019394,-0.07631230354309082,0.020244797691702843,1.2468122359351488e-33,-0.06409607827663422,0.053783148527145386,0.008634904399514198,-0.008491827175021172,0.024494968354701996,0.004789637867361307,-0.03189868852496147,-0.011410770006477833,0.0638263151049614,-0.0027453689835965633,-0.080833800137043,0.009673019871115685,0.00017880044470075518,-0.04992246627807617,-0.025917179882526398,-0.05804559960961342,-0.02283378690481186,0.09569673985242844,0.026539836078882217,-0.06321730464696884,0.0040593757294118404,0.055537477135658264,0.0060384999960660934,-0.022655155509710312,-0.023121975362300873,0.09010926634073257,-0.025962822139263153,0.009326339699327946,-0.025960149243474007,-0.06951549649238586,0.10150812566280365,0.06504767388105392,0.02259817160665989,-0.01007489301264286,0.05597604438662529,-0.016892261803150177,-0.1497165709733963,0.0628623440861702,-0.06524515151977539,-0.08696012943983078,0.02006811648607254,0.005824855528771877,0.001092028571292758,0.07174430042505264,-0.011557040736079216,0.08644851297140121,0.007809210103005171,-0.004956389777362347,-0.059740833938121796,0.05724557489156723,-0.012624327093362808,0.024794798344373703,0.021727073937654495,-0.04027334973216057,0.0341518372297287,-0.05944181978702545,-0.002251711906865239,-0.027604825794696808,0.02759820595383644,-0.020566536113619804,0.033013250678777695,0.004577570594847202,-0.06327547132968903,0.058013033121824265,-0.02054208144545555,0.028199652209877968,-0.12297211587429047,0.02574644796550274,0.021188810467720032,0.02621760405600071,-0.024252796545624733,0.02608877420425415,0.030262645334005356,-0.023085884749889374,-0.013757549226284027,0.05841327831149101,-0.06186116859316826,0.005991981364786625,0.017641162499785423,-0.005379535257816315,-0.009780583903193474,0.01477537676692009,0.017333995550870895,0.013864888809621334,-0.036502860486507416,0.04672492295503616,-0.06314254552125931,0.026406781747937202,-0.028605319559574127,0.01486146729439497,0.07283450663089752,-0.04161960259079933,0.07861196249723434,0.03810550644993782,0.05991667881608009,-1.970713192633866e-8,0.00986022874712944,0.042572181671857834,-0.031392402946949005,0.028672032058238983,0.02659408375620842,-0.0176588986068964,0.0404263436794281,-0.0005490512121468782,0.054355692118406296,0.11531130224466324,-0.037010665982961655,0.009121985174715519,0.07416684925556183,0.08703678846359253,0.04771557077765465,0.006623283494263887,0.11279046535491943,-0.039594173431396484,-0.05700202286243439,0.07330726832151413,-0.06880992650985718,0.02671939507126808,-0.05171583220362663,-0.04791229963302612,-0.10121619701385498,-0.10133372992277145,-0.044392120093107224,-0.07716851681470871,0.010522331111133099,0.04162687808275223,0.017315901815891266,0.006230061408132315,-0.014226009137928486,0.005541535094380379,-0.09605919569730759,0.031125832349061966,-0.02610013820230961,-0.015722382813692093,-0.002100947080180049,-0.01950915902853012,-0.06856225430965424,0.04339871555566788,0.028873076662421227,0.03638756647706032,0.021422769874334335,-0.04521994665265083,-0.00891921017318964,0.03928147256374359,-0.07291299849748611,0.008289184421300888,-0.06250011175870895,0.04651987552642822,0.01843646727502346,0.004517695866525173,-0.01435986626893282,-0.023540746420621872,-0.056738391518592834,0.009168037213385105,-0.017841815948486328,0.03944671154022217,-0.0929722785949707,0.025504646822810173,0.017847031354904175,0.08671223372220993]},{"text":"A stump of hay and part of the potato crop were sold off, and the contract for eggs was increased to six hundred a week, so that that year the hens barely hatched enough chicks to keep their numbers at the same level.","book":"Animal Farm","chapter":2,"embedding":[0.025609245523810387,-0.04310806840658188,-0.020386140793561935,-0.0037272043991833925,0.050442684441804886,0.016749531030654907,-0.10044547915458679,-0.014018109999597073,0.03270683437585831,0.038661353290081024,0.1165320873260498,0.015879958868026733,-0.06399717926979065,-0.034218888729810715,-0.04979011043906212,-0.0020889402367174625,-0.07138925045728683,-0.11270124465227127,-0.05258886516094208,-0.012445574626326561,-0.058225616812705994,-0.02498793601989746,0.03886847570538521,-0.023934636265039444,0.04810747504234314,0.0024483627639710903,-0.06529247015714645,-0.005786467809230089,-0.012142129242420197,-0.011048383079469204,-0.006086654961109161,0.1216564029455185,0.024845996871590614,0.025326739996671677,0.02520434558391571,-0.014637183398008347,0.006467884872108698,-0.005732939578592777,0.0459454320371151,-0.00297721684910357,0.05032005161046982,-0.11055483669042587,-0.023301415145397186,-0.015699297189712524,-0.04323850944638252,0.06351551413536072,-0.03208466246724129,-0.020121576264500618,0.07109648734331131,0.005062221083790064,0.01696043834090233,-0.013889625668525696,0.013879048638045788,0.02382831461727619,0.0819251760840416,0.027957158163189888,-0.03573671355843544,0.004141433164477348,-0.01565961167216301,0.0013537463964894414,-0.04448666423559189,0.016983192414045334,-0.007123000454157591,-0.04814692586660385,0.0047325510531663895,-0.037357740104198456,-0.04644707962870598,-0.038698483258485794,-0.0248230192810297,0.012834504246711731,0.08955791592597961,0.04477568715810776,-0.03996792063117027,-0.012657159008085728,-0.026621965691447258,0.08262110501527786,-0.0012863262090831995,0.019915373995900154,0.07518628239631653,-0.057808052748441696,-0.046118881553411484,-0.0722566545009613,0.0025763746816664934,-0.0059202141128480434,-0.01728207990527153,0.0009328571613878012,0.0359804630279541,-0.03160380199551582,0.027474354952573776,-0.026214489713311195,0.050457119941711426,-0.0013424630742520094,-0.002704693702980876,0.03926156833767891,0.024950286373496056,0.00603997940197587,-0.014615882188081741,-0.006560443434864283,-0.05144999921321869,0.06993778795003891,-0.00792213436216116,0.00874178484082222,-0.019136136397719383,-0.0376625694334507,-0.03327019885182381,-0.0067191356793046,-0.02385556511580944,-0.01486891321837902,-0.0866561084985733,0.01874137669801712,-0.04252571612596512,-0.032883420586586,0.03879411146044731,0.09740853309631348,0.06842481344938278,0.0036670241970568895,0.03381205350160599,0.006831212900578976,-0.003749873721972108,0.02263219840824604,0.05740473419427872,0.06670565903186798,-0.04524248465895653,-0.0045239063911139965,-0.05156751349568367,0.07332882285118103,-0.03399565443396568,-9.972354079658878e-34,0.05546616390347481,-0.026730235666036606,0.032095156610012054,0.02235879749059677,0.08820141106843948,-0.0631452202796936,-0.060311269015073776,0.022127753123641014,0.1219501942396164,-0.03634336590766907,-0.05539264902472496,-0.05867729336023331,-0.06250753253698349,-0.07676717638969421,0.07596088200807571,-0.08274972438812256,0.05171478912234306,0.004107927903532982,0.08937221765518188,-0.0006619981140829623,-0.07113554328680038,-0.06403933465480804,-0.02360345609486103,0.054561395198106766,-0.02939807064831257,0.034163571894168854,0.02235756255686283,-0.11072196066379547,-0.02640843205153942,-0.0002206563513027504,0.05259952321648598,0.0459701232612133,0.026252036914229393,0.0052508157677948475,-0.04218897596001625,-0.0027586312498897314,0.09137430042028427,-0.08814238011837006,-0.012576896697282791,0.11610817164182663,0.03879653662443161,-0.10562565177679062,0.06598411500453949,-0.025610294193029404,0.021225472912192345,-0.010431812144815922,0.02978075109422207,0.023510262370109558,-0.015252341516315937,0.011638306081295013,-0.0007385059725493193,0.037206437438726425,0.010016703978180885,-0.07173614203929901,0.006795499473810196,-0.032337531447410583,0.009024495258927345,-0.07575100660324097,-0.06711097806692123,0.07741810381412506,0.019834334030747414,-0.0333280973136425,0.03513328731060028,0.005332760978490114,-0.055228326469659805,-0.037337902933359146,-0.05556856095790863,-0.012950226664543152,-0.11458417028188705,0.12679584324359894,0.033330827951431274,-0.07488285005092621,-0.03756712004542351,-0.11020081490278244,-0.001192042720504105,0.017793849110603333,0.008459825068712234,0.022656328976154327,0.027491476386785507,-0.08801480382680893,0.12398729473352432,0.04943742975592613,-0.026505550369620323,-0.039159245789051056,-0.023251598700881004,-0.02934265322983265,0.0003868315543513745,0.01039116270840168,0.05053519830107689,-0.041268736124038696,0.05664529651403427,0.01841053180396557,0.01971394754946232,-0.09307577461004257,0.04883493110537529,-4.153175365911206e-34,-0.06146020069718361,0.050339024513959885,-0.17785131931304932,0.03813934326171875,0.02283608168363571,-0.009307825937867165,-0.004420802928507328,0.04027336463332176,-0.0037425097543746233,-0.008790014311671257,-0.046632517129182816,-0.05490991473197937,0.01533175352960825,0.007965032942593098,-0.003102718386799097,-0.002018488710746169,0.04964727908372879,-0.018361851572990417,0.13091596961021423,-0.02284480631351471,0.0026208802592009306,0.028720097616314888,0.02672569453716278,0.027172191068530083,0.034492865204811096,0.01855475828051567,-0.014680434949696064,0.078767791390419,-0.026088809594511986,-0.016840871423482895,-0.031065743416547775,-0.1457865685224533,0.020391909405589104,0.052267976105213165,0.04857902601361275,0.07416671514511108,0.032796796411275864,0.004427261184900999,0.03298202529549599,0.016662178561091423,-0.02752641774713993,-0.07127166539430618,-0.027929838746786118,-0.04062718525528908,-0.02562841586768627,-0.0003762510896194726,0.01836331933736801,-0.013809195719659328,0.0639132708311081,-0.015172003768384457,0.05946827679872513,0.025665583088994026,0.018418176099658012,-0.013654075562953949,-0.08114966005086899,0.03799505904316902,-0.021417539566755295,0.007241160608828068,0.02269907295703888,0.037764135748147964,-0.05349142849445343,0.04504452273249626,-0.08480650186538696,0.04387206584215164,-0.0025431260000914335,-0.04025767743587494,-0.009638017043471336,-0.053074125200510025,-0.008351624011993408,-0.08256421238183975,-0.018858635798096657,-0.02504081279039383,0.04618584364652634,0.03684190288186073,-0.09480638056993484,0.007432871963828802,-0.021953226998448372,0.002134316135197878,0.10371776670217514,0.013007101602852345,-0.11325386166572571,-0.018723221495747566,0.018694240599870682,-0.003457047278061509,-0.016892945393919945,-0.06163126975297928,0.05523865297436714,0.056265804916620255,-0.029967529699206352,0.0647183507680893,0.012117896229028702,0.0087350495159626,0.017728986218571663,0.07869116216897964,0.034083276987075806,-3.034805473589586e-8,0.10010820627212524,0.03312863036990166,-0.040316738188266754,0.014676009304821491,0.220791757106781,-0.10513672232627869,0.03457260504364967,0.03973865881562233,0.07851521670818329,0.073057159781456,-0.12634935975074768,0.02461126074194908,-0.03126111999154091,0.007144394796341658,0.01426111999899149,0.015868259593844414,0.002315189689397812,0.008543183095753193,-0.0060413312166929245,-0.008864203467965126,-0.014967060647904873,0.01830432191491127,-0.04387875273823738,-0.09951828420162201,-0.012616815976798534,-0.007791714742779732,-0.002424434758722782,0.11384167522192001,-0.01687648892402649,0.04910234361886978,-0.017297223210334778,-0.029840627685189247,0.012065487913787365,-0.09481564909219742,-0.005746615119278431,0.014271783642470837,-0.04775253310799599,-0.030822571367025375,0.032529622316360474,-0.0849369540810585,-0.0823318287730217,0.001040564733557403,0.007959888316690922,-0.01764359138906002,0.057646699249744415,0.029715577140450478,-0.07401411980390549,-0.0233446154743433,-0.0384269617497921,-0.008848532103002071,0.0406501330435276,0.0509110651910305,0.12899039685726166,0.05147342383861542,0.044097620993852615,-0.07630473375320435,0.014277414418756962,-0.06285753101110458,0.051903508603572845,0.05727396532893181,-0.09491262584924698,0.039055969566106796,-0.022394413128495216,0.013233614154160023]},{"text":"The animals sniffed the air hungrily and wondered whether a warm mash was being prepared for their supper.","book":"Animal Farm","chapter":3,"embedding":[0.029124202206730843,0.048997797071933746,0.0468418151140213,0.12352865934371948,-0.008688480593264103,-0.08783742785453796,0.04343812167644501,-0.10002202540636063,-0.03086354210972786,-0.038683272898197174,0.010322721675038338,-0.0885191559791565,0.020651930943131447,-0.03084813803434372,-0.0346752293407917,-0.06688031554222107,0.032468218356370926,-0.021881897002458572,0.04207611829042435,-0.019283700734376907,-0.07083836197853088,0.0357234887778759,0.028092866763472557,-0.04854186996817589,0.05624894052743912,-0.02355991303920746,-0.02615213952958584,-0.02207878604531288,-0.0035284662153571844,0.030811378732323647,0.01761518605053425,0.024020761251449585,0.015885140746831894,0.005628471728414297,0.04052077606320381,-0.005461851134896278,0.07444126158952713,-0.008500069379806519,0.05460614711046219,0.035814229398965836,-0.0026190970093011856,-0.020656749606132507,0.05028551071882248,-0.07944988459348679,-0.03877200558781624,0.0014638967113569379,-0.07961787283420563,0.050703756511211395,0.10071675479412079,-0.009776011109352112,-0.0731225460767746,-0.0738314688205719,-0.03945274278521538,0.03625126928091049,-0.0709272027015686,-0.033108558505773544,-0.004174546804279089,-0.08886288106441498,-0.018660493195056915,-0.045109041035175323,-0.08718235045671463,0.06084481626749039,0.028004104271531105,0.047270435839891434,0.020157944411039352,-0.05907674506306648,0.002639936050400138,0.012080066837370396,0.04538340121507645,0.0015935314586386085,0.002213914878666401,-0.03586043044924736,0.024669960141181946,-0.10191323608160019,-0.04173717647790909,-0.021888911724090576,0.024037549272179604,-0.135269433259964,0.02584228105843067,-0.0723293349146843,0.05097243934869766,-0.023735102266073227,-0.07645586133003235,0.012883699499070644,-0.024744296446442604,0.018666427582502365,0.05437954515218735,-0.056815870106220245,-0.05738082155585289,-0.05361197143793106,-0.05114798992872238,-0.13088184595108032,-0.18422526121139526,-0.01577664166688919,0.05293135717511177,-0.008627665229141712,0.007691293489187956,0.06629741936922073,0.006958159618079662,0.015541255474090576,0.035682663321495056,-0.005232297349721193,-0.019218996167182922,-0.011672379449009895,0.019927769899368286,0.05390059947967529,-0.05881849676370621,0.025176463648676872,0.019018875434994698,-0.03139128535985947,-0.042144183069467545,0.04561026021838188,0.033680111169815063,0.007950343191623688,0.024931680411100388,0.01380692608654499,-0.020647848024964333,-0.014002759009599686,-0.06340143084526062,-0.01215220708400011,0.031173862516880035,0.09027475118637085,-0.0030808192677795887,-0.05274114012718201,0.06722024083137512,0.016063354909420013,0.05636920779943466,-2.119375906914275e-33,0.050814565271139145,-0.04079081490635872,0.03361057862639427,-0.04519645869731903,0.12583641707897186,-0.062469881027936935,0.011003423482179642,0.05173096805810928,0.02850818820297718,0.033037204295396805,-0.03635193780064583,0.010358144529163837,-0.029579007998108864,-0.019296761602163315,-0.004638293292373419,-0.06960229575634003,-0.026347555220127106,-0.05534115433692932,0.07635064423084259,0.005520987324416637,-0.0612366758286953,-0.013405225239694118,0.04337029159069061,0.00010572832979960367,0.022336654365062714,-0.029358340427279472,0.0030005413573235273,-0.027797024697065353,-0.02931136079132557,0.04084049165248871,-0.005642843432724476,-0.03653812035918236,-0.04052978754043579,0.030355723574757576,-0.07980820536613464,0.02912667952477932,-0.01546991616487503,-0.08289841562509537,-0.01680714078247547,-0.020543964579701424,0.051720794290304184,-0.031406838446855545,0.12924940884113312,0.0065813222900033,-0.09126493334770203,0.08547703176736832,-0.18902179598808289,0.0441761240363121,0.0092129772529006,0.02205536514520645,0.04473862051963806,-0.0022404976189136505,0.0494329109787941,0.0031579637434333563,0.013970200903713703,0.053499024361371994,0.03919709473848343,0.033437978476285934,-0.039963044226169586,0.028039272874593735,-0.05888910964131355,0.01572692207992077,0.020203500986099243,-0.019094113260507584,-0.0058615743182599545,-0.04359119012951851,-0.038437604904174805,-0.012614057399332523,0.03353188931941986,0.014682129956781864,-0.04417179152369499,0.01824854128062725,0.01117017399519682,-0.0669788345694542,-0.005845736246556044,0.008844283409416676,0.03372510150074959,-0.003166802227497101,0.09401089698076248,-0.10093726217746735,0.10959360003471375,-0.047600239515304565,-0.07741361856460571,0.11155138909816742,-0.005597430281341076,-0.0020775264129042625,0.026960767805576324,-0.032090507447719574,-0.0036388912703841925,0.02904459275305271,0.005316825117915869,0.046828266233205795,0.09498480707406998,-0.09262686967849731,-0.028461042791604996,-6.459900276762591e-34,0.035552069544792175,0.030582521110773087,-0.04144987836480141,0.10988622158765793,-0.058117616921663284,0.016516270115971565,-0.03509029000997543,-0.018380310386419296,-0.059574272483587265,0.029976513236761093,-0.017959464341402054,0.011573036201298237,0.02033899538218975,-0.083882175385952,0.034273166209459305,-0.04323406144976616,0.007191727869212627,0.02129640430212021,0.10744252800941467,-0.0046696411445736885,-0.05932018533349037,0.054853685200214386,0.07764321565628052,-0.050333596765995026,0.04913562163710594,0.049468088895082474,0.0468849316239357,0.021799404174089432,-0.01328884158283472,-0.03957127407193184,0.09551075845956802,-0.0003417074622120708,0.021952085196971893,0.012828168459236622,0.06964170932769775,0.060800470411777496,0.07677274942398071,-0.0019240366527810693,0.021768843755126,-0.0018044359749183059,-0.015514262020587921,0.01064971275627613,-0.03476523607969284,0.09588316082954407,-0.014302653260529041,0.07482673972845078,-0.038954004645347595,0.05024006590247154,0.06922795623540878,0.008340845815837383,0.06782932579517365,-0.03127928078174591,-0.021809786558151245,-0.07540996372699738,-0.0449904166162014,0.05451825633645058,-0.07748451828956604,-0.0537547841668129,0.046611636877059937,-0.05267207697033882,-0.01236724853515625,-0.014827345497906208,-0.008078223094344139,-0.011123046278953552,-0.06198849901556969,-0.008205045945942402,-0.011315949261188507,-0.03721220791339874,0.06431178748607635,0.002310760784894228,0.029062211513519287,-0.0038443533703684807,-0.00840695295482874,0.021661434322595596,0.07124651968479156,0.03399989753961563,-0.04274839535355568,-0.04704492911696434,0.05873362720012665,0.021366894245147705,-0.08331774920225143,-0.012509672902524471,-0.06119965389370918,0.07944809645414352,0.0449974462389946,-0.08369198441505432,-0.04832896590232849,0.04399099946022034,0.0331287607550621,0.008439832367002964,0.054215580224990845,0.03952161595225334,0.05521826073527336,-0.029282033443450928,0.06304944306612015,-2.1705030661678393e-8,-0.00041960630915127695,-0.03050159476697445,0.0017579455161467195,0.024133063852787018,0.05366639047861099,-0.011469921097159386,-0.008540378883481026,-0.047205645591020584,-0.0038036047481000423,0.05417710915207863,0.011247844435274601,0.09478313475847244,0.03645278885960579,0.0503540113568306,-0.0019376396667212248,0.004838183056563139,0.020802272483706474,-0.1084972396492958,-0.057135071605443954,-0.03976680338382721,0.01939886249601841,0.05431469529867172,-0.07348290830850601,-0.010558197274804115,-0.015342175029218197,0.06508122384548187,-0.04265429824590683,0.004766576457768679,-0.05705753341317177,0.014818144030869007,-0.010795018635690212,0.01329521182924509,-0.1029956191778183,-0.07391675561666489,0.0019200611859560013,0.019670628011226654,-0.04767553135752678,-0.05273904651403427,0.12081249803304672,-0.11078603565692902,-0.024800321087241173,0.06391960382461548,0.003409053198993206,0.005364821758121252,-0.02881103754043579,-0.05226719379425049,0.023439418524503708,0.060986459255218506,-0.07649870961904526,0.06651594489812851,-0.07645994424819946,0.054648298770189285,0.06267962604761124,0.008052309975028038,-0.06059496849775314,-0.09469675272703171,-0.02691885270178318,-0.028425011783838272,0.05420859530568123,0.025012796744704247,0.06224773824214935,0.09525634348392487,-0.10087400674819946,0.024123994633555412]},{"text":"There were more songs, more speeches, more processions.","book":"Animal Farm","chapter":3,"embedding":[0.0588129423558712,0.015806257724761963,0.06168307363986969,-0.03719178959727287,0.011768070049583912,0.11008065938949585,-0.05060780793428421,-0.05429277941584587,0.017676422372460365,-0.0277014821767807,-0.005051109474152327,0.07430445402860641,0.02263023890554905,-0.059260763227939606,0.04002772644162178,0.006846317555755377,-0.01275573205202818,-0.02294216677546501,-0.05983396992087364,-0.08969030529260635,0.017543558031320572,0.06128421798348427,-0.03496689349412918,0.08336290717124939,-0.023514829576015472,0.07194691151380539,-0.08507029712200165,-0.02115892432630062,0.05410350114107132,0.001169566996395588,-0.020512713119387627,0.06451817601919174,0.036105550825595856,-0.018719637766480446,-0.06427707523107529,-0.02386932075023651,0.02756713703274727,0.044231023639440536,-0.010283037088811398,0.00471548130735755,0.023739492520689964,0.03180495277047157,0.001645876676775515,0.008880357258021832,-0.015860240906476974,-0.005691126454621553,-0.08953419327735901,-0.08905605971813202,-0.016812870278954506,0.10622400045394897,0.07123394310474396,0.020099004730582237,0.010845395736396313,-0.05711277574300766,-0.03838246315717697,-0.06960012018680573,0.010285253636538982,0.020332377403974533,0.041275762021541595,0.02481377311050892,-0.09585914015769958,-0.07476814836263657,0.008549756370484829,-0.0013951912987977266,-0.00964007992297411,-0.09900054335594177,0.002209483413025737,-0.011882619000971317,0.031782303005456924,0.13410140573978424,0.044353779405355453,0.046209633350372314,0.08487685024738312,-0.040698837488889694,-0.0882987380027771,-0.09392751753330231,-0.032673031091690063,-0.028995456174016,-0.09817778319120407,-0.05174359679222107,0.04141947254538536,-0.06871473789215088,-0.0034502025227993727,-0.06683409214019775,-0.002104187151417136,-0.08657253533601761,-0.050899650901556015,-0.08637795597314835,-0.1333615779876709,0.011594939045608044,-0.027667194604873657,-0.02184157259762287,-0.008517847396433353,0.08016425371170044,-0.036581531167030334,0.00806726235896349,-0.04883238673210144,0.027606595307588577,0.1608545333147049,0.0808161050081253,0.03612714633345604,0.05572120472788811,0.038235459476709366,-0.062171440571546555,-0.04264271259307861,-0.0754178836941719,-0.026943832635879517,0.04416400194168091,-0.07717535644769669,-0.032769445329904556,-0.02761884406208992,-0.010919157415628433,0.05234721675515175,-0.0010842846240848303,-0.0028505055233836174,0.00862049125134945,-0.04206769913434982,-0.02247009053826332,-0.0784960463643074,0.10948047786951065,0.08489072322845459,-0.048108067363500595,-0.0028205285780131817,-0.023091275244951248,-0.03833383694291115,0.0013601112877950072,-0.028300708159804344,-2.7992192076215062e-33,0.023558100685477257,-0.07427186518907547,-0.01225050538778305,0.08916597068309784,0.13292859494686127,-0.009732705540955067,0.009491068311035633,0.0019320714054629207,-0.0004570434975903481,-0.05793201923370361,0.03280426189303398,0.0028128859121352434,-0.0005246247164905071,-0.06558172404766083,-0.0004921940853819251,-0.09691495448350906,-0.07505571097135544,0.04499424248933792,-0.003928374499082565,-0.02148820459842682,0.0038289986550807953,0.043683286756277084,0.043368738144636154,-0.023245729506015778,0.044337596744298935,0.09365501254796982,0.018264370039105415,-0.007331752218306065,-0.006660082843154669,-0.0010909269331023097,0.01699965074658394,0.0007962551317177713,0.010803259909152985,0.022143876180052757,0.054214365780353546,0.05718126893043518,0.0538521371781826,-0.0937124639749527,0.005038477014750242,-0.06186863034963608,-0.011372541077435017,-0.0016418036539107561,-0.09483770281076431,-0.008641190826892853,-0.013709031045436859,0.12399302423000336,-0.02933165803551674,0.023467564955353737,0.07628032565116882,0.04868490621447563,0.007571437396109104,-0.010261292569339275,-0.022074302658438683,0.003779458347707987,0.1119980663061142,0.012805288657546043,-0.05596107244491577,0.039251312613487244,0.08485282212495804,-0.01366693526506424,0.047163985669612885,0.07304404675960541,0.03249200060963631,-0.018892494961619377,0.026811612769961357,0.0775289237499237,0.015513750724494457,-0.02537025511264801,0.058143939822912216,0.016966072842478752,-0.016821283847093582,-0.01735609583556652,-0.05993571877479553,-0.06172799691557884,0.046756450086832047,0.02179287187755108,0.002733696484938264,-0.08956965059041977,0.011113755404949188,0.0033677546307444572,-0.09675919264554977,0.0011532144853845239,0.04124230518937111,0.009132061153650284,0.08583752810955048,-0.019507531076669693,0.05829579755663872,-0.018826408311724663,-0.03983139619231224,-0.031890757381916046,-0.09952107816934586,0.08934345096349716,-0.005190593656152487,-0.016936898231506348,-0.04427815228700638,-2.6485735913386317e-34,0.02040974609553814,0.13889442384243011,-0.018742835149168968,0.05776480957865715,0.028257684782147408,0.04550378769636154,0.025524664670228958,0.04682241007685661,0.049806274473667145,-0.03319341689348221,-0.035534296184778214,-0.010964903980493546,0.046677641570568085,-0.03995047137141228,-0.05457337573170662,-0.05803179368376732,0.058005191385746,0.07532140612602234,0.06067416071891785,0.07212026417255402,-0.04569879174232483,0.01910741627216339,-0.03459388017654419,0.004939558915793896,-0.06038128212094307,0.013941911980509758,-0.022423047572374344,-0.033182840794324875,-0.012104728259146214,-0.03852590173482895,0.11292795091867447,-0.06174597516655922,-0.09678815305233002,-0.017921919003129005,0.01045187097042799,0.04786648228764534,0.04947098717093468,0.048538193106651306,-0.016595078632235527,0.017514314502477646,-0.08093341439962387,-0.055514588952064514,0.08969167619943619,0.048989225178956985,-0.008050567470490932,-0.0047932276502251625,-0.09814375638961792,0.11359347403049469,0.02220352552831173,-0.04009011760354042,-0.07172905653715134,-0.0261074248701334,-0.03080233559012413,0.024534866213798523,-0.014795476570725441,-0.052528586238622665,-0.042666371911764145,-0.09914380311965942,-0.019700830802321434,-0.025811858475208282,-0.04735537990927696,-0.014484895393252373,-0.0752808079123497,-0.0656948909163475,-0.004043587017804384,0.006594953127205372,0.012352707795798779,-0.022172601893544197,-0.01414372120052576,0.08436120301485062,-0.06213250011205673,-0.06236591562628746,-0.05510052293539047,0.09920273721218109,-0.016658615320920944,0.013373712077736855,-0.05332377925515175,-0.017746781930327415,-0.009767496027052402,-0.043994445353746414,-0.06630002707242966,-0.021387575194239616,-0.06415343284606934,-0.07387826591730118,0.011259863153100014,0.1245451271533966,-0.01099300291389227,-0.06366150081157684,0.02378249727189541,0.07946967333555222,0.04096030443906784,-0.03842227905988693,0.08483031392097473,-0.026909345760941505,0.014473714865744114,-2.1521950444025606e-8,-0.04471999779343605,-0.005028103478252888,-0.016690438613295555,-0.021647797897458076,0.049525585025548935,0.0030888046603649855,-0.014134162105619907,0.03097108006477356,0.001998764229938388,0.0362371951341629,0.01006408128887415,0.02109399065375328,0.009989345446228981,0.015344416722655296,-0.03526348993182182,0.006833140272647142,0.004173528403043747,-0.01726786233484745,-0.0007527426932938397,-0.03398798406124115,-0.03816468268632889,0.03929736092686653,-0.0024159608874469995,-0.0866929367184639,0.009131439961493015,0.056108687072992325,-0.013601296581327915,0.01138399913907051,-0.07065178453922272,-0.020011205226182938,0.005345323123037815,-0.022857019677758217,-0.06658602505922318,-0.05380262807011604,0.04098369553685188,-0.014994530938565731,-0.048787396401166916,-0.023250527679920197,0.012543264776468277,-0.04934970661997795,0.017037400975823402,0.07111986726522446,0.07794677466154099,0.055031321942806244,0.07631580531597137,0.006010511890053749,-0.023952972143888474,0.015489677898585796,-0.04141991585493088,-0.06738501787185669,-0.0463547483086586,-0.03886476531624794,-0.020550265908241272,0.033569540828466415,0.07367566227912903,0.02049817331135273,-0.026597343385219574,0.10115718096494675,0.0417838916182518,0.026800068095326424,0.011720038950443268,0.01801552064716816,0.04190579429268837,-0.04361934959888458]},{"text":"The sheep were the greatest devotees of the Spontaneous Demonstration, and if anyone complained (as a few animals sometimes did, when no pigs or dogs were near) that they wasted time and meant a lot of standing about in the cold, the sheep were sure to silence him with a tremendous bleating of \"Four legs good, two legs bad!\" But by and large the animals enjoyed these celebrations.","book":"Animal Farm","chapter":3,"embedding":[0.022044677287340164,0.11168838292360306,0.05359826982021332,0.0448291078209877,-0.012193304486572742,-0.011249998584389687,0.010960969142615795,0.01285876240581274,-0.01644294708967209,0.044744476675987244,0.027227822691202164,-0.0130836870521307,0.04789247363805771,-0.004462050274014473,-0.015227178111672401,0.01100884098559618,-0.02630845457315445,-0.008928686380386353,-0.020105043426156044,-0.017250504344701767,-0.026998698711395264,-0.0548735149204731,0.03358153998851776,0.06809408217668533,-0.028587548062205315,-0.06464758515357971,-0.04310467839241028,0.003933541942387819,0.055414628237485886,0.04915551841259003,-0.013277683407068253,0.0002445068384986371,0.027695182710886,-0.029453711584210396,-0.027619216591119766,0.01315875630825758,0.12962745130062103,-0.019631411880254745,0.032091476023197174,0.05231805518269539,0.09420506656169891,-0.06977615505456924,0.0192752406001091,-0.06209319457411766,-0.007473069708794355,0.03730635717511177,0.039808012545108795,-0.007207950111478567,0.028577568009495735,-0.002970785368233919,0.022769398987293243,-0.008202774450182915,0.04979708790779114,-0.06983903050422668,-0.03397025167942047,-0.11884602159261703,-0.041635479778051376,-0.04459613561630249,-0.0571393258869648,-0.004729526583105326,0.05878782644867897,0.03234891593456268,0.05390562862157822,0.04612584412097931,-0.01795612834393978,-0.03365778923034668,-0.04217382147908211,-0.022147158160805702,-0.03927955403923988,0.09398646652698517,-0.006410813424736261,-0.016544343903660774,0.08385080844163895,-0.056523509323596954,-0.09774588793516159,-0.06908509880304337,0.0008416962227784097,-0.08462738245725632,-0.00855462159961462,-0.0032836110331118107,0.02186366356909275,-0.10859623551368713,-0.02330353856086731,0.015050495974719524,-0.03627246618270874,-0.028572920709848404,0.04215133190155029,-0.04081546142697334,-0.07318037003278732,-0.02234635129570961,-0.04227525368332863,-0.04320136830210686,-0.06921372562646866,0.03355761244893074,-0.024770811200141907,-0.022583063691854477,-0.011494793929159641,0.0011573417577892542,-0.03550545871257782,0.07102452963590622,0.023979254066944122,0.009071104228496552,0.012945640832185745,0.006882770452648401,-0.0009831154020503163,-0.01617109775543213,-0.08455348759889603,0.01382349245250225,0.01274268701672554,-0.023822901770472527,-0.09875655919313431,0.0018734056502580643,0.0376485250890255,0.12177105247974396,-0.021774083375930786,0.06881283223628998,-0.0382898785173893,-0.0502924881875515,-0.06325230747461319,-0.01010787021368742,0.08950182050466537,0.09725245088338852,0.07923082262277603,0.06492946296930313,0.038873687386512756,0.01619161106646061,0.041916392743587494,1.4236675822874253e-35,0.032698195427656174,-0.03208622336387634,0.012945782393217087,-0.03782781586050987,0.11794720590114594,0.02889106422662735,-0.044941484928131104,-0.04809493571519852,0.03499181941151619,0.01453470066189766,0.06610334664583206,-0.05499448999762535,0.0792919173836708,-0.04576209560036659,-0.03837994858622551,-0.03447670489549637,-0.042883723974227905,-0.05319754779338837,0.0838746652007103,-0.016887908801436424,-0.03306316211819649,0.06784562021493912,0.05566606670618057,0.038757000118494034,-0.019439158961176872,0.032271914184093475,0.04653894528746605,0.021084848791360855,-0.007091444917023182,0.0464026965200901,0.016369298100471497,-0.041240449994802475,-0.043862272053956985,-0.04682987555861473,0.015387948602437973,-0.06084773316979408,-0.007512375712394714,-0.12309803813695908,-0.0503225214779377,0.05892089754343033,0.05029758810997009,-0.06323756277561188,0.0877312570810318,0.002209144877269864,0.0034331749193370342,0.0993172824382782,-0.06163574382662773,0.02082197368144989,-0.07001710683107376,-0.025316493585705757,0.004902171902358532,0.15339212119579315,0.1164374127984047,-0.01453907135874033,0.08865901082754135,-0.014771797694265842,0.015653859823942184,0.018893085420131683,-0.03742135688662529,-0.013719110749661922,-0.025833068415522575,0.052830230444669724,-0.043148066848516464,-0.09688146412372589,-0.044435400515794754,-0.10021425038576126,-0.01123791839927435,-0.019878681749105453,-0.06277519464492798,-0.01674947701394558,0.038817159831523895,0.022239625453948975,-0.047800447791814804,-0.13878245651721954,-0.0402904748916626,-0.0486285425722599,0.02359127067029476,-0.004265448544174433,0.03502679243683815,-0.10663682222366333,0.06395445764064789,-0.009380795061588287,0.017530513927340508,0.0035297595895826817,-0.021704984828829765,-0.043171871453523636,0.022596264258027077,-0.06823431700468063,-0.0029796629678457975,-0.003292373614385724,-0.018689800053834915,0.0027182167395949364,-0.012728806585073471,-0.08376026153564453,0.008807329460978508,-1.2756908260569907e-33,-0.034213289618492126,0.10239378362894058,-0.02251094952225685,0.12753793597221375,-0.06413453072309494,-0.041393011808395386,0.007001252844929695,0.009863008745014668,0.010309780016541481,0.05419948697090149,0.02705221250653267,-0.025853175669908524,-0.07488344609737396,-0.06464776396751404,0.07728023082017899,-0.04964352771639824,0.04524942860007286,0.029159845784306526,0.12714654207229614,-0.06994431465864182,0.07149213552474976,0.049119818955659866,-0.014839312061667442,-0.030860474333167076,-0.03551138937473297,0.049860626459121704,0.04185964912176132,-0.030843498185276985,-0.03930871561169624,-0.07526096701622009,0.07017938792705536,0.007258705794811249,-0.054858796298503876,-0.056846536695957184,0.05896398052573204,-0.005612812936306,-0.03458232432603836,0.042244020849466324,0.010454243049025536,-0.010218636132776737,0.07768776267766953,-0.021524658426642418,0.0003914416884072125,0.018838969990611076,-0.018112193793058395,0.061409201472997665,-0.06736787408590317,0.003638222347944975,0.0316433347761631,0.02629038132727146,-0.06099404767155647,-0.018619488924741745,-0.034652650356292725,-0.048324137926101685,0.020810410380363464,-0.10858704894781113,-0.04890788719058037,-0.055873893201351166,0.030674204230308533,-0.028258994221687317,-0.03875184431672096,0.012450716458261013,-0.017245473340153694,-0.005795430392026901,0.011825751513242722,-0.020324427634477615,-0.09654569625854492,0.04225734621286392,0.05091136693954468,0.029847443103790283,-0.029534555971622467,0.05174506828188896,-0.08447537571191788,0.000958725402597338,-0.035545818507671356,0.10013998299837112,-0.029686450958251953,-0.051358405500650406,0.07281266152858734,-0.00035459815990179777,-0.07642515003681183,-0.053113989531993866,0.02538485638797283,0.03904260694980621,0.041707560420036316,-0.00037523178616538644,-0.02717369608581066,0.16506427526474,-0.005036259535700083,0.04050920531153679,0.0852443054318428,0.006391496863216162,0.04861459881067276,0.01532096229493618,0.0952753871679306,-4.089843841370566e-8,-0.06501762568950653,-0.018695322796702385,-0.043085142970085144,-0.010420219041407108,0.008495557121932507,-0.008633156307041645,-0.02095421589910984,-0.04149077460169792,-0.00200168089941144,0.02477772906422615,-0.04170742630958557,0.07608664035797119,0.0117300720885396,0.08324918150901794,0.020348474383354187,0.057748787105083466,-0.0071122292429208755,-0.079976387321949,-0.01615668088197708,0.002250406425446272,-0.01908990927040577,-0.011450271122157574,-0.06730470806360245,-0.047818370163440704,-0.04910146817564964,-0.01828823611140251,-0.032353997230529785,0.014222574420273304,-0.010442755185067654,-0.04334883764386177,-0.03289984166622162,-0.04150473698973656,-0.030203942209482193,-0.034284807741642,0.08775357902050018,0.03139987587928772,-0.0835549458861351,-0.018838785588741302,0.11994412541389465,-0.05320293456315994,-0.041587188839912415,0.035114068537950516,0.06040121242403984,0.020083049312233925,0.04318135604262352,-0.0006593752186745405,-0.04681294038891792,0.04273636266589165,-0.08727100491523743,0.04584796726703644,-0.07636872678995132,0.010020503774285316,0.053189393132925034,0.11429006606340408,0.004042848013341427,-0.0725969597697258,-0.012335220351815224,-0.029260341078042984,-0.0076370844617486,-0.003689915407449007,0.059818193316459656,0.07158249616622925,-0.05803028494119644,0.002693552989512682]},{"text":"On the same day it was given out that fresh documents had been discovered which revealed further details about Snowball's complicity with Jones.","book":"Animal Farm","chapter":3,"embedding":[-0.11011183261871338,0.08451081067323685,0.030468326061964035,0.06426211446523666,0.12622730433940887,-0.02171778306365013,0.013882039114832878,0.03892860934138298,-0.021345682442188263,0.009268091060221195,-0.06904110312461853,0.10150180011987686,-0.017314614728093147,0.023600080981850624,-0.04211784899234772,-0.013116707094013691,-0.02825831063091755,-0.03488866984844208,-0.08221106976270676,-0.03969516232609749,-0.0053740874864161015,-0.02587796002626419,0.03860819339752197,-0.028419896960258484,0.06391867995262146,0.07732462882995605,-0.005323782563209534,0.02151656150817871,-0.031439244747161865,-0.007954807952046394,0.0006866250769235194,0.0695529654622078,0.0004040331987198442,0.04561847075819969,0.018138617277145386,-0.008849483914673328,0.08570260554552078,0.0005887763109058142,0.07305875420570374,-0.015820281580090523,0.07334178686141968,-0.08921783417463303,0.08010265231132507,0.027909697964787483,-0.06945127993822098,0.07654020190238953,-0.02623339369893074,0.06700144708156586,-0.05322984978556633,0.02786208502948284,-0.06556584686040878,-0.023466574028134346,-0.0209029633551836,-0.002151965396478772,0.013562955893576145,0.058083098381757736,-0.029819978401064873,-0.021491916850209236,-0.06369805335998535,-0.004281171131879091,0.03336416557431221,-0.007100352551788092,-0.038723092526197433,0.04302321374416351,0.09536971151828766,0.018760304898023605,-0.002130300272256136,-0.07264957576990128,0.048049233853816986,-0.023296348750591278,0.11801586300134659,0.09908875823020935,0.03805842623114586,-0.08846884220838547,0.0309999231249094,0.04183606430888176,0.019470131024718285,0.015431946143507957,0.006173325702548027,-0.03648963198065758,0.014212613925337791,-0.006581700406968594,0.053072016686201096,0.017179196700453758,-0.04724562540650368,-0.0442277267575264,-0.00006769159517716616,-0.02143178880214691,-0.02693929523229599,0.02453760616481304,-0.012303544208407402,-0.14262241125106812,-0.014764942228794098,0.060750700533390045,-0.14262402057647705,-0.007093027699738741,0.029115760698914528,0.03372499346733093,0.07143525779247284,0.06039334461092949,-0.018842272460460663,0.04754657670855522,0.05584650859236717,-0.04317940026521683,0.05623111501336098,-0.025963785126805305,-0.0796026736497879,-0.003149228636175394,-0.005703255999833345,-0.010373370721936226,0.000745460856705904,0.001293333014473319,-0.017301881685853004,0.0569743737578392,0.04356539994478226,0.020329760387539864,-0.04488718509674072,0.09610190242528915,-0.13930188119411469,-0.02019590325653553,0.06858868896961212,0.07788825780153275,0.027195001021027565,0.01001620851457119,-0.05739383026957512,0.06822500377893448,-0.03112849034368992,-3.3885512800253446e-33,0.06992430984973907,-0.030835658311843872,0.015813125297427177,0.01758445054292679,0.01274895016103983,0.028944851830601692,-0.00806227046996355,0.04130767285823822,0.045490812510252,-0.013533834367990494,-0.04606332629919052,0.06189078092575073,-0.03241327777504921,-0.06042478233575821,-0.1108989268541336,0.05585616081953049,-0.09874477237462997,0.019142234697937965,-0.023968154564499855,0.018633248284459114,0.1004476398229599,0.0034687563311308622,-0.026000864803791046,-0.007950035855174065,0.0034329774789512157,0.05522419139742851,0.005549888126552105,-0.017174430191516876,0.023181984201073647,-0.00016522911028005183,-0.0015166356461122632,0.02546369656920433,0.020911574363708496,0.0657215565443039,0.07535669207572937,0.09303483366966248,-0.026289410889148712,-0.11669348925352097,-0.0016004735371097922,-0.00014955646474845707,0.05660188943147659,-0.027316279709339142,-0.05659225583076477,-0.12646803259849548,-0.08202643692493439,-0.042753394693136215,-0.06709616631269455,-0.025561120361089706,0.06069466844201088,-0.006255015265196562,0.010761243291199207,0.00521672610193491,0.018860479816794395,-0.07785680145025253,-0.0020339207258075476,-0.022477995604276657,-0.02180611714720726,-0.012492085807025433,0.10274903476238251,0.02173089049756527,0.08609552681446075,0.03199060633778572,-0.002650980371981859,0.014271926134824753,-0.12239425629377365,0.04969758540391922,0.04688192158937454,0.002657261909916997,-0.020160747691988945,0.04688742384314537,0.002512579085305333,0.0665881335735321,-0.010273306630551815,-0.09819066524505615,-0.029252009466290474,-0.042430587112903595,0.01589161902666092,-0.06888992339372635,0.05174926668405533,-0.0009534239652566612,0.014860603027045727,-0.04042516276240349,0.04998907074332237,0.007920018397271633,-0.08976814895868301,0.05160563066601753,-0.018757276237010956,0.06708060204982758,-0.06131666526198387,0.03551589325070381,-0.046416591852903366,0.023686302825808525,-0.06095464155077934,-0.06437524408102036,0.061190977692604065,-2.742190696122088e-34,-0.0529443584382534,-0.08436833322048187,-0.0853968933224678,0.028361620381474495,0.014611580409109592,-0.0066045005805790424,-0.024341724812984467,0.019530247896909714,-0.010687123984098434,-0.03627709671854973,0.001825283863581717,-0.006842946633696556,-0.01443768385797739,-0.06222209706902504,0.022816330194473267,-0.05597686022520065,-0.001397486194036901,-0.0038830703124403954,-0.028244085609912872,0.12076500803232193,0.016419127583503723,-0.02825901284813881,-0.11806987971067429,-0.05222729966044426,0.05513688549399376,-0.015068227425217628,0.0646706148982048,-0.07014241814613342,-0.07147298753261566,0.036556441336870193,-0.014865324832499027,0.028252121061086655,-0.08633358031511307,-0.009223604574799538,0.02266504243016243,0.019333209842443466,0.05022120848298073,-0.041364122182130814,-0.00026951899053528905,-0.07369716465473175,0.0361703485250473,0.03129839524626732,-0.030422283336520195,0.09893731772899628,0.03563455492258072,0.02436552569270134,-0.09193392843008041,0.08999978005886078,0.09406385570764542,0.07786565274000168,-0.018491925671696663,0.0031457431614398956,-0.06069454550743103,-0.03505750373005867,-0.04384448751807213,0.08252172917127609,-0.06546426564455032,-0.06280576437711716,0.03792143240571022,0.0304946880787611,-0.092661052942276,-0.018339669331908226,-0.1385204941034317,0.008395519107580185,0.02269863523542881,-0.012394359335303307,-0.029520178213715553,-0.008103781379759312,-0.015341917052865028,0.03839564323425293,0.004942542873322964,-0.03951234370470047,-0.04745218902826309,-0.03912227600812912,-0.011015434749424458,0.018829157575964928,-0.06647418439388275,-0.0007705403841100633,-0.0790671855211258,0.0664551705121994,0.017105530947446823,0.026530608534812927,0.046997375786304474,0.0639088898897171,0.07730776816606522,0.020801646634936333,0.045504458248615265,0.0041561732068657875,-0.05170002579689026,-0.012454037554562092,-0.018771866336464882,-0.05091586709022522,-0.07270823419094086,0.028462084010243416,-0.028200436383485794,-2.7334847274573804e-8,0.012082858011126518,0.029512137174606323,-0.016791006550192833,0.007559468969702721,0.08053237944841385,0.03568058833479881,-0.02820974588394165,0.07658564299345016,-0.0008191503002308309,-0.016306515783071518,0.07638824731111526,0.023472201079130173,-0.04111291468143463,0.005022110417485237,0.008278915658593178,-0.02353942207992077,-0.025105657055974007,-0.09640687704086304,-0.049428440630435944,-0.006187602411955595,0.005791918374598026,-0.06283971667289734,0.016789885237812996,-0.0171382874250412,0.041431933641433716,0.06998670101165771,-0.03335839882493019,0.04901321604847908,0.008153175003826618,-0.03807726129889488,-0.08449628204107285,-0.04423901438713074,0.003931346815079451,-0.016568370163440704,0.0526391975581646,-0.014758364297449589,0.09008801728487015,0.029157163575291634,-0.011913711205124855,-0.06460337340831757,0.026002608239650726,0.04003344848752022,0.011374450288712978,0.06556807458400726,0.042656611651182175,0.006697734352201223,-0.06272818148136139,-0.0849623903632164,-0.03533538803458214,-0.007487375754863024,-0.06086514890193939,-0.0022697022650390863,0.025276992470026016,0.060689475387334824,0.028642555698752403,0.08481421321630478,0.006132203619927168,-0.024733522906899452,-0.09580288082361221,-0.07574762403964996,-0.01635308936238289,-0.014891315251588821,-0.054524004459381104,0.0415043830871582]},{"text":"He was quite unchanged, still did no work, and talked in the same strain as ever about Sugarcandy Mountain.","book":"Animal Farm","chapter":4,"embedding":[-0.015460876747965813,-0.0027796037029474974,0.0013005934888496995,0.0029673981480300426,-0.0241114292293787,-0.034943800419569016,-0.024473005905747414,-0.015059789642691612,-0.0628892257809639,-0.06284718215465546,-0.02624012529850006,0.04548296704888344,-0.024721387773752213,0.015597295016050339,-0.008797120302915573,0.034896042197942734,-0.014140273444354534,-0.018504949286580086,0.01893015019595623,-0.03258057311177254,0.02714710123836994,0.07417035847902298,0.030810914933681488,0.08571695536375046,0.058952104300260544,0.018405504524707794,-0.04182223603129387,0.05112246423959732,-0.003711356082931161,-0.06869697570800781,-0.005318564362823963,0.02971407026052475,-0.013570546172559261,-0.012382561340928078,-0.030207855626940727,0.10068728029727936,-0.0005616244161501527,0.07798545807600021,-0.06323733925819397,-0.028630945831537247,-0.037899091839790344,0.03408918157219887,-0.04192563518881798,0.014234932139515877,-0.04786192625761032,-0.08545161038637161,-0.057648368179798126,-0.086839959025383,-0.016722485423088074,0.022446854040026665,-0.047049377113580704,-0.07078336924314499,0.02075125463306904,-0.10766354948282242,0.05719495564699173,0.01066406350582838,0.04265570640563965,0.09152642637491226,0.05891258269548416,0.008823761716485023,0.05534938722848892,0.011342783458530903,-0.0281542856246233,0.021953748539090157,0.035136628895998,0.01920797862112522,-0.10078214854001999,-0.0848817378282547,0.03156466409564018,0.003669911762699485,-0.016973299905657768,-0.013117576949298382,-0.008846813812851906,-0.059604499489068985,-0.0054442691616714,-0.04468685761094093,0.005251332651823759,0.07204951345920563,0.013281934894621372,-0.0009922940516844392,-0.045793674886226654,-0.03688206896185875,0.008196397684514523,0.008875293657183647,0.003079656045883894,-0.06383630633354187,0.004652120638638735,-0.044686876237392426,0.031832005828619,0.014533838257193565,0.07195228338241577,0.023568367585539818,0.06348840147256851,0.021759293973445892,0.011314279399812222,-0.0394543819129467,-0.006548637989908457,0.06195097044110298,-0.013947379775345325,0.06894607841968536,-0.04337548837065697,-0.00033542359597049654,0.003999227657914162,-0.03059590794146061,-0.00021899089915677905,-0.012180928140878677,0.032730501145124435,0.02684527263045311,-0.06591501832008362,0.061703573912382126,-0.00119109102524817,-0.0026490502059459686,0.03642713278532028,0.07099847495555878,0.010156756266951561,0.006291433237493038,-0.03248485177755356,-0.010519031435251236,-0.160659059882164,0.03404837101697922,-0.012122182175517082,0.06657338887453079,0.013351419940590858,0.08347808569669724,-0.057748157531023026,0.09924201667308807,0.08337795734405518,-3.0942078619214284e-33,0.1065906435251236,-0.07211725413799286,-0.0003091068647336215,0.03523945063352585,0.054113466292619705,0.042157627642154694,-0.017992576584219933,-0.02000356838107109,0.09584670513868332,-0.010409372858703136,0.032993681728839874,-0.018716763705015182,0.005664094816893339,-0.024138839915394783,-0.03871210664510727,0.07225567102432251,-0.04620719701051712,-0.018865205347537994,-0.004106077831238508,-0.027127860113978386,-0.010575071908533573,0.1301773339509964,-0.05950484052300453,0.009961855597794056,-0.004317156039178371,0.05349091812968254,0.023549798876047134,0.001520120888017118,0.00855257548391819,0.015028064139187336,-0.04443240165710449,0.024911563843488693,0.04611000418663025,0.006463382858783007,0.08294577896595001,0.00982507411390543,-0.03602136671543121,-0.08237380534410477,-0.044434551149606705,0.014781937003135681,0.08788362890481949,0.07662012428045273,0.0216995757073164,-0.047230932861566544,-0.04582717642188072,-0.021190844476222992,0.0651123970746994,0.05683125555515289,0.012698309496045113,-0.0005232192925177515,0.03208135813474655,0.06243913248181343,0.00959952361881733,0.0165915098041296,-0.06122671812772751,0.01929462142288685,-0.029177997261285782,-0.007653203327208757,0.057601504027843475,0.04074716940522194,0.10857628285884857,0.057440511882305145,0.03322646766901016,-0.02027195692062378,-0.006231712177395821,-0.04231664910912514,-0.056008316576480865,-0.02014072798192501,-0.1300409883260727,-0.045977700501680374,-0.011861049570143223,-0.051242537796497345,-0.05597838759422302,0.019030887633562088,-0.03976215049624443,-0.0882703959941864,-0.07732917368412018,0.019809400662779808,-0.06750097870826721,0.014958411455154419,0.02508571185171604,-0.04689059406518936,-0.002792379353195429,0.012442920356988907,-0.05843383073806763,0.022329511120915413,0.09078799188137054,-0.039812590926885605,0.007434707600623369,0.09963298588991165,-0.016163695603609085,-0.01302100345492363,-0.018895456567406654,-0.04847149923443794,0.058137595653533936,-9.884363735725022e-34,-0.050082977861166,-0.03635105863213539,0.07067044079303741,0.04546428471803665,-0.04073551669716835,-0.003993495367467403,-0.015284549444913864,-0.006260712631046772,0.06726407259702682,-0.06914017349481583,0.007361545693129301,0.056348398327827454,0.03449424356222153,-0.017292149364948273,-0.008621569722890854,0.0882529616355896,-0.10133282095193863,0.006148607935756445,-0.07248251885175705,0.08880812674760818,0.06538078188896179,0.07440481334924698,-0.1457878053188324,-0.06475087255239487,0.004001553636044264,0.012652444653213024,-0.012492253445088863,0.05246097967028618,-0.009760645218193531,-0.1089327335357666,0.03164296597242355,0.018092362210154533,-0.04963928461074829,-0.0769691988825798,-0.03951183706521988,0.05227915197610855,-0.042299192398786545,0.002187595469877124,-0.07214715331792831,-0.03670395165681839,0.051463767886161804,-0.0044216555543243885,0.020582810044288635,0.003912173677235842,0.09729732573032379,0.0408463291823864,-0.049146804958581924,0.01908295229077339,-0.07335242629051208,0.02671302855014801,-0.029390845447778702,0.06489526480436325,0.017174718901515007,0.06561525166034698,0.022060468792915344,-0.0020664155017584562,-0.027533376589417458,-0.02014552801847458,-0.06897816807031631,-0.0933481752872467,-0.06821092218160629,-0.08749239891767502,0.06340993195772171,-0.054715510457754135,0.0317101813852787,0.07049469649791718,-0.013320624828338623,-0.0031164069660007954,0.03933822363615036,-0.04233400151133537,0.008445708081126213,-0.07528413087129593,0.029963593930006027,-0.056240491569042206,0.020475998520851135,0.08061393350362778,-0.12458334118127823,-0.07006954401731491,-0.0806327685713768,-0.08378510922193527,0.02570302039384842,0.021119382232427597,-0.0013044672086834908,-0.02575267292559147,0.05097411200404167,0.12884052097797394,0.019742541015148163,-0.08946474641561508,0.03105437010526657,-0.01581634394824505,0.036944679915905,-0.08259615302085876,-0.007989155128598213,-0.006769097875803709,0.022128935903310776,-2.7234753119387278e-8,-0.0034807363990694284,0.07086581736803055,0.014683919958770275,-0.028411533683538437,0.04307331144809723,0.01585700921714306,-0.028681861236691475,0.01911935955286026,-0.0052438764832913876,0.1585654318332672,-0.07307353615760803,0.06514060497283936,0.019092893227934837,-0.02751554176211357,0.03499055653810501,-0.026731327176094055,0.05429423972964287,-0.0333777517080307,-0.06902703642845154,0.05403396487236023,-0.1618887335062027,0.05348222702741623,-0.04895588755607605,0.06179739534854889,0.0049976627342402935,-0.004592191893607378,0.03752521052956581,-0.03269307315349579,0.025815222412347794,-0.02987131103873253,0.03809189051389694,0.09400779008865356,-0.053995050489902496,-0.019966520369052887,-0.010176791809499264,-0.04129229485988617,-0.022236067801713943,0.009228434413671494,0.04275765269994736,-0.03790797293186188,0.0014040283858776093,0.04532064124941826,0.021764349192380905,0.04067551717162132,0.004674617666751146,-0.008206217549741268,-0.041398610919713974,0.00272538373246789,-0.0617525652050972,0.0022330901119858027,0.0013529154239222407,0.11093424260616302,-0.06776320934295654,0.010950394906103611,0.1129089742898941,-0.03795332461595535,-0.006804978009313345,-0.037502601742744446,-0.062436655163764954,-0.010824563913047314,0.052900321781635284,-0.13183759152889252,0.02545747347176075,-0.078649140894413]},{"text":"After his hoof had healed up, Boxer worked harder than ever.","book":"Animal Farm","chapter":4,"embedding":[0.05252523347735405,0.07984587550163269,-0.008602621965110302,0.07032332569360733,-0.003785818349570036,0.024193059653043747,-0.0013106698170304298,0.01487730722874403,-0.012617260217666626,-0.045327652245759964,0.006956149358302355,0.02769753709435463,-0.008921466767787933,0.0686744675040245,0.022547468543052673,-0.0055442508310079575,-0.019296031445264816,0.027926256880164146,-0.04106950759887695,-0.0987677052617073,-0.06202010437846184,0.07964939624071121,-0.00042627440416254103,0.022851785644888878,-0.04150768741965294,-0.007524744141846895,-0.07843028008937836,0.029438601806759834,0.014869366772472858,-0.03454596921801567,-0.030102383345365524,-0.048952288925647736,0.10481918603181839,0.005747486837208271,-0.11198648810386658,0.003255165182054043,0.020836835727095604,0.13487474620342255,0.011968276463449001,0.01828390546143055,-0.037772286683321,-0.016660775989294052,0.0021796696819365025,-0.018261604011058807,0.05285317450761795,-0.026320070028305054,-0.012927762232720852,-0.035930752754211426,0.039010096341371536,0.003135854844003916,-0.012308196164667606,0.010273370891809464,0.10576258599758148,0.014375999569892883,0.03601143881678581,0.03606070205569267,-0.033041730523109436,-0.01039296854287386,0.05537085235118866,0.02514120191335678,-0.058183133602142334,0.06668244302272797,-0.0013491836143657565,0.07772081345319748,0.06407438218593597,-0.025373103097081184,0.03278094902634621,0.02063584141433239,-0.05005538836121559,0.11689066141843796,0.032638851553201675,0.012779630720615387,-0.06332217901945114,-0.07520980387926102,-0.010868207551538944,0.026308950036764145,-0.05876234173774719,-0.0009162280475720763,0.11157803237438202,0.06852489709854126,-0.02249041199684143,-0.00886820163577795,-0.065273217856884,0.042060915380716324,-0.013286853209137917,-0.007061667274683714,-0.0044778562150895596,-0.11576768010854721,-0.08527777343988419,-0.03582758083939552,-0.025866450741887093,-0.07577569782733917,-0.01561287697404623,0.05127617344260216,0.06190062686800957,-0.04330465942621231,0.0040611447766423225,0.057747624814510345,-0.07759890705347061,0.029331805184483528,0.01084426324814558,-0.01556625496596098,0.048459671437740326,-0.07161787152290344,0.10053616017103195,0.017106490209698677,0.02796652540564537,0.05361081287264824,-0.0005073613137938082,0.04123028740286827,-0.03774089366197586,-0.042040664702653885,0.035049162805080414,0.006620605941861868,0.017527688294649124,0.1261967420578003,-0.08275630325078964,-0.05029233545064926,-0.14954200387001038,0.006614443380385637,0.04641753062605858,0.0015478228451684117,-0.03384062275290489,0.0004368709633126855,-0.01749119535088539,-0.0894041508436203,0.10367283970117569,-3.545601825234514e-34,0.10693901777267456,-0.12962546944618225,-0.006144978106021881,0.03555445745587349,0.055853910744190216,-0.03756379336118698,-0.0035183692816644907,-0.0008292346610687673,0.04217067360877991,-0.004127128981053829,-0.009664405137300491,0.06106043979525566,0.047394100576639175,-0.03788930922746658,-0.05519159138202667,0.0649404302239418,-0.06544795632362366,-0.02886327914893627,0.0011282155755907297,0.021187936887145042,-0.020397599786520004,0.01911073736846447,-0.02917817048728466,0.003726458875462413,0.016738513484597206,0.014250454492866993,0.10815207660198212,-0.0510655902326107,-0.03470218926668167,0.02346658706665039,0.007806775160133839,0.023355040699243546,0.06501998007297516,0.04274020344018936,-0.11124231666326523,0.020393196493387222,0.02717585675418377,-0.04565275087952614,-0.032604414969682693,0.01129239983856678,0.03790906071662903,0.07303055375814438,0.06052122637629509,-0.010245881974697113,-0.009848053567111492,0.021013153716921806,-0.04067813605070114,0.00411561131477356,-0.05104796588420868,0.08888764679431915,0.08740194886922836,0.05818413197994232,0.011702134273946285,-0.02428046613931656,0.0417594350874424,-0.016058722510933876,0.020825115963816643,0.12540887296199799,0.01209968887269497,0.08678556978702545,0.01246299222111702,0.02171170711517334,0.022632068023085594,0.023025499656796455,-0.06968001276254654,-0.030199367552995682,-0.08870703727006912,-0.006455376278609037,-0.13945022225379944,0.033198148012161255,-0.059533923864364624,0.013550829142332077,-0.10161211341619492,-0.07689433544874191,0.005357891321182251,-0.021246306598186493,0.007580288220196962,-0.02154449373483658,-0.044051092118024826,0.007063158322125673,0.003024125937372446,-0.0007797898724675179,-0.000008353347766387742,0.08279107511043549,-0.007456769235432148,-0.008055186830461025,0.024328168481588364,-0.04714968428015709,-0.04306631162762642,0.02675221674144268,0.010144283063709736,0.03958975523710251,0.02872287668287754,-0.020399687811732292,0.06008978188037872,-6.818957781286144e-34,-0.00846166629344225,-0.023665891960263252,0.039631351828575134,0.09923112392425537,0.06431367993354797,-0.02159510739147663,-0.09655605256557465,0.03976185992360115,0.04638952389359474,-0.0634859949350357,0.016383714973926544,-0.012113354168832302,-0.06951574236154556,0.007566099986433983,0.06162547692656517,-0.04311139136552811,-0.07181890308856964,0.013248478062450886,-0.01573379710316658,0.0978047177195549,0.0349317230284214,0.025787848979234695,-0.007444496266543865,-0.061643294990062714,0.022452153265476227,0.06309232115745544,-0.05052802711725235,0.04276842996478081,-0.008771245367825031,-0.00635538762435317,-0.052447471767663956,-0.10067934542894363,-0.08101938664913177,0.09737022966146469,0.004677165299654007,0.07807996869087219,-0.022095216438174248,0.04264354705810547,-0.0029345499351620674,-0.05969831347465515,-0.02972034178674221,-0.06160123646259308,-0.03238148242235184,0.023661112412810326,0.04047775641083717,0.0795198455452919,0.00657193548977375,-0.11711927503347397,0.0809616819024086,-0.009730332531034946,0.05694345012307167,-0.011012295261025429,-0.03229061886668205,-0.0071465508081018925,-0.00471244752407074,0.01931486465036869,0.004618070088326931,-0.08071151375770569,-0.06513815373182297,-0.047621745616197586,-0.05920715630054474,0.06611406058073044,0.03979109972715378,0.06318987905979156,-0.07763080298900604,-0.0070094941183924675,-0.01351202093064785,0.037004534155130386,-0.08169563114643097,-0.03514762222766876,-0.01985851116478443,0.00021981717145536095,0.016580209136009216,0.06891386210918427,0.015564690344035625,0.08888280391693115,-0.06946086138486862,-0.012547214515507221,-0.025953564792871475,0.0373832993209362,-0.06353733688592911,-0.03279160335659981,0.018731508404016495,-0.014203909784555435,0.0411907359957695,0.08180887997150421,-0.027828514575958252,-0.04407082498073578,0.015564076602458954,-0.0035862571094185114,0.03856482356786728,-0.024799572303891182,0.033322494477033615,-0.024955322965979576,0.038567736744880676,-1.9317104360538906e-8,-0.07328478246927261,-0.056808970868587494,-0.10434240102767944,-0.029633348807692528,-0.05607530474662781,0.10704608261585236,0.0012453506933525205,-0.02292584255337715,-0.01022450253367424,0.07471884787082672,0.0034832532983273268,0.12784555554389954,-0.030330637469887733,0.014186901040375233,-0.005901651922613382,-0.027724560350179672,-0.022665344178676605,-0.0859682559967041,-0.02468884363770485,-0.05065486580133438,-0.06919842213392258,-0.022652046754956245,0.06083833798766136,-0.03514088690280914,-0.08721957355737686,-0.04766172543168068,-0.013461600057780743,0.0043694498017430305,-0.011644496582448483,0.03138463571667671,-0.0018521775491535664,0.012899014167487621,-0.12884970009326935,0.013213214464485645,0.04788203537464142,-0.01709260791540146,-0.008191165514290333,-0.01988448016345501,-0.025342155247926712,-0.003934044390916824,-0.009836050681769848,0.04120608791708946,-0.02765890583395958,-0.029191143810749054,0.040264420211315155,-0.056684959679841995,0.0723092332482338,0.02881021797657013,-0.030350331217050552,-0.09071487188339233,0.05389179289340973,0.03805654123425484,0.037335727363824844,-0.031697630882263184,0.014605177566409111,-0.010145150125026703,0.008826237171888351,-0.12959840893745422,-0.012254353612661362,0.03297269344329834,-0.04684925451874733,-0.009277897886931896,0.07951115816831589,0.04578276351094246]},{"text":"It was only his appearance that was a little altered; his hide was less shiny than it had used to be, and his great haunches seemed to have shrunken.","book":"Animal Farm","chapter":4,"embedding":[0.0059429737739264965,0.13475142419338226,0.016513897106051445,0.06315028667449951,0.057595256716012955,0.02142433077096939,0.06462594866752625,0.0517081655561924,-0.09219967573881149,0.017049752175807953,0.015062503516674042,0.006658453494310379,0.005657406989485025,-0.07189120352268219,0.06137683242559433,-0.07033197581768036,0.03144991770386696,0.045669615268707275,-0.051183465868234634,-0.03734976053237915,0.05308060348033905,0.015783041715621948,-0.006570050027221441,-0.045257531106472015,-0.035314444452524185,-0.0597774013876915,-0.016016842797398567,-0.02640722505748272,0.04005163908004761,-0.09907929599285126,-0.027282970026135445,0.0028378257993608713,0.016793640330433846,-0.03404654189944267,-0.04248570650815964,-0.015981975942850113,-0.05085946246981621,0.07573938369750977,0.00029057631036266685,-0.0082728685811162,-0.026824090629816055,0.04153946042060852,-0.07849523425102234,0.05751911178231239,-0.07065557688474655,-0.082733653485775,0.0752684623003006,-0.057796478271484375,-0.036525074392557144,-0.020596783608198166,-0.00019549913122318685,-0.027813704684376717,-0.001818405813537538,-0.03965844213962555,-0.04103589430451393,0.029626725241541862,-0.05265755206346512,-0.041127245873212814,0.02902725152671337,-0.008929853327572346,-0.023146571591496468,0.07782725989818573,0.06008937954902649,-0.011255180463194847,0.03971637040376663,-0.0957316905260086,-0.0014712503179907799,-0.15614818036556244,0.00977423507720232,0.08913309872150421,0.026784494519233704,0.019154734909534454,-0.039590559899806976,-0.05374695733189583,-0.07789406925439835,-0.0879349410533905,-0.021191108971834183,0.010788424871861935,-0.023703167214989662,0.021056007593870163,-0.003482978790998459,0.03975299000740051,-0.019297150894999504,0.0903596505522728,-0.047765471041202545,0.009352087043225765,0.015277872793376446,-0.15480880439281464,-0.12042326480150223,-0.006613283418118954,0.08470277488231659,0.03821508213877678,-0.10184433311223984,0.004588743206113577,0.016868507489562035,-0.05430993437767029,-0.010730845853686333,0.08807747066020966,0.019396061077713966,0.036670297384262085,0.013748657889664173,-0.03237870708107948,0.07790376991033554,0.047110896557569504,0.024005867540836334,-0.022624371573328972,0.009838690981268883,-0.014057837426662445,0.013676038943231106,0.030953938141465187,-0.004562397953122854,-0.06426005810499191,-0.0022430226672440767,0.05665164813399315,0.0027250386774539948,0.006238261703401804,-0.030997011810541153,-0.012492194771766663,-0.11104097217321396,0.05615230277180672,0.07380687445402145,0.05916547402739525,0.027776328846812248,0.017820637673139572,-0.03479574993252754,0.011828834190964699,0.012364034540951252,-1.2159942638054424e-33,0.008659671060740948,0.028983190655708313,-0.04083814099431038,-0.06442440301179886,0.08593370020389557,-0.005942516960203648,0.037760179489851,-0.03404506295919418,-0.016690995544195175,0.07193278521299362,-0.004990312736481428,0.00477172015234828,-0.05075240507721901,-0.02463524043560028,-0.06803379207849503,0.049196045845746994,-0.019312875345349312,0.004059754777699709,0.053258899599313736,-0.020227285102009773,-0.09697193652391434,0.08970697969198227,0.060666512697935104,-0.02343735471367836,-0.02933599427342415,-0.009308060631155968,0.006089484319090843,-0.04107643663883209,-0.04305102303624153,0.030366739258170128,0.0329001322388649,0.05808877572417259,0.08842642605304718,0.022324686869978905,-0.03354503586888313,-0.045224037021398544,-0.02154535986483097,-0.11129461973905563,0.007407755125313997,0.03047749027609825,0.011391573585569859,0.008149383589625359,0.03498435392975807,-0.0038736574351787567,-0.09248454123735428,-0.00292477710172534,0.07259513437747955,0.09719385206699371,-0.07113682478666306,0.010292681865394115,0.04968416318297386,0.054944757372140884,0.10269266366958618,-0.041419561952352524,-0.0033818241208791733,-0.007885592058300972,0.0505332387983799,-0.02817579358816147,0.0028647701255977154,0.06410115212202072,0.02264472097158432,0.010439415462315083,0.061685070395469666,-0.031302858144044876,-0.011783471331000328,-0.01742696389555931,-0.037543974816799164,0.006280411500483751,-0.10250939428806305,0.040087271481752396,-0.00482284277677536,0.03317411243915558,-0.059372611343860626,0.014584075659513474,0.017873140051960945,-0.08150749653577805,-0.009997613728046417,0.040528569370508194,-0.03306703642010689,-0.08336258679628372,0.015602242201566696,0.05436781421303749,-0.030153723433613777,0.002140230964869261,-0.11616014689207077,-0.04364267364144325,0.12862436473369598,0.03403923660516739,-0.00015750594320707023,0.05503049120306969,0.04309947043657303,-0.07633132487535477,0.06433850526809692,-0.11900778114795685,-0.033133264631032944,-1.2414282881373904e-33,-0.09750241786241531,-0.004729957785457373,-0.048029825091362,0.07350429147481918,-0.02876509539783001,0.08006767183542252,-0.06997637450695038,0.12837299704551697,-0.0753619521856308,-0.0433015339076519,0.09521279484033585,0.07163867354393005,-0.06692498922348022,-0.14681032299995422,-0.04063008353114128,0.06794507801532745,0.028871657326817513,-0.001286717364564538,-0.009973336942493916,0.016304567456245422,0.08803500235080719,0.00845738872885704,-0.020732998847961426,-0.0577094666659832,-0.07599548995494843,0.026186112314462662,-0.007903802208602428,0.006035408470779657,-0.05555759742856026,0.03672860935330391,-0.034517090767621994,-0.03136578947305679,-0.02463492564857006,-0.009844716638326645,-0.04325306788086891,0.040823765099048615,-0.07762571424245834,0.05366844683885574,-0.03127805143594742,-0.007577483542263508,-0.018586669117212296,-0.11445651948451996,0.09906596690416336,0.07094665616750717,0.014643791131675243,0.03979671373963356,-0.06371262669563293,0.029117505997419357,-0.002540009096264839,0.0070181069895625114,-0.022646000608801842,0.021598555147647858,0.052232272922992706,0.006300015840679407,-0.07357921451330185,0.08705397695302963,-0.04458902031183243,-0.030179014429450035,-0.028416600078344345,0.06760302931070328,-0.03295763581991196,-0.042088184505701065,-0.023884151130914688,-0.048552706837654114,-0.018445948138833046,0.00277206813916564,-0.0057122535072267056,-0.026478547602891922,-0.015588009729981422,-0.06981956213712692,0.03128375485539436,-0.10734476149082184,0.04514649510383606,0.04409058019518852,0.013582942076027393,0.04411748796701431,0.02293293923139572,-0.010686120018362999,-0.01927197352051735,0.03466125205159187,-0.04798959940671921,-0.02881993167102337,-0.03340241685509682,-0.09127748757600784,0.029215309768915176,0.09981230646371841,-0.08347479999065399,0.005407306831330061,0.009296697564423084,0.0851437896490097,0.03564571589231491,0.023719506338238716,0.03537960723042488,-0.01694365218281746,0.028992457315325737,-2.8314833144804652e-8,-0.021393047645688057,-0.011319977231323719,0.07114840298891068,-0.0010071409633383155,0.0018618755275383592,0.016819339245557785,0.006452943664044142,0.014300347305834293,-0.030765920877456665,0.11622914671897888,-0.09910598397254944,0.03500489145517349,0.07948571443557739,-0.00684858625754714,0.0894790068268776,0.01530835498124361,-0.05455669015645981,-0.03315301239490509,-0.020755279809236526,0.01975412480533123,-0.058816470205783844,0.006535515654832125,-0.012844119220972061,0.006527162156999111,0.025152165442705154,-0.020335501059889793,-0.038835689425468445,-0.04279829189181328,-0.0630011111497879,0.05712436884641647,0.08373761177062988,0.04493916407227516,0.05216656252741814,-0.013048265129327774,0.0471683144569397,0.05592653527855873,-0.00780194578692317,-0.02850639820098877,0.02319151721894741,-0.02483299933373928,-0.03374997153878212,-0.020217739045619965,0.02132662758231163,0.03339815512299538,-0.011429705657064915,-0.028617963194847107,0.0946156457066536,-0.009476744569838047,-0.02764781378209591,-0.005947913974523544,0.06220841035246849,0.0023368464317172766,-0.035991277545690536,-0.0024755795020610094,0.03214934840798378,-0.05842392519116402,0.039060283452272415,0.05915502458810806,0.02186606265604496,0.011824956163764,-0.022680703550577164,-0.022817092016339302,-0.014369803480803967,0.06554017215967178]},{"text":"His twelfth birthday was approaching.","book":"Animal Farm","chapter":4,"embedding":[0.046857889741659164,0.1043868437409401,0.009860590100288391,-0.07311072200536728,-0.029029645025730133,0.016534315422177315,0.00146296969614923,0.000443696160800755,-0.058194637298583984,0.016887282952666283,0.015302429907023907,0.015456607565283775,0.007678816560655832,-0.016499631106853485,0.061417028307914734,-0.07443211227655411,-0.021093932911753654,0.04065782576799393,-0.026134207844734192,-0.01428453903645277,-0.026013920083642006,-0.0014536045491695404,0.051901694387197495,-0.003419324057176709,0.010394028387963772,-0.029177848249673843,-0.012605514377355576,-0.04784022644162178,0.040284398943185806,0.04442642256617546,0.022679924964904785,-0.017028290778398514,0.006282465998083353,-0.010796071961522102,-0.02795436605811119,-0.049013473093509674,0.042654555290937424,0.0537383146584034,0.032754864543676376,-0.012743804603815079,-0.04626840353012085,-0.0017613902455195785,0.017209341749548912,0.07896755635738373,0.03378324955701828,-0.06624113023281097,-0.0170933585613966,-0.04711449146270752,0.0011555631645023823,0.03730597347021103,0.006303937640041113,-0.008980629965662956,0.029130935668945312,-0.06441561877727509,-0.00435353210195899,0.06515614688396454,-0.0502748116850853,-0.057958222925662994,0.03319954127073288,-0.07930497825145721,-0.049374643713235855,-0.05255095660686493,-0.03725742548704147,-0.011828332208096981,-0.1058463528752327,-0.05894164368510246,0.04242722690105438,-0.059050172567367554,-0.022234931588172913,0.1165541559457779,0.08605979382991791,0.03019769862294197,0.11156116425991058,0.016707884147763252,-0.057195261120796204,-0.05062961205840111,-0.0022371967788785696,0.08141127228736877,0.0012071541277691722,-0.1004534512758255,-0.021773749962449074,0.05910946801304817,-0.03374180942773819,0.018825238570570946,-0.050356484949588776,-0.07776104658842087,0.00915131438523531,0.006877778563648462,-0.1355874389410019,0.029086584225296974,0.006951361428946257,-0.06053205206990242,-0.06213962659239769,0.05618325248360634,-0.03937986120581627,-0.0192516278475523,0.0057808286510407925,-0.02808518335223198,-0.03692280128598213,0.05278264731168747,-0.057152096182107925,0.09565028548240662,0.015454561449587345,0.03615499287843704,-0.028585446998476982,0.056072160601615906,-0.06792426109313965,0.028512295335531235,0.003838568227365613,-0.03623778000473976,-0.03235471248626709,-0.05014300346374512,-0.00846155546605587,0.027387162670493126,0.0497698113322258,0.06049314886331558,0.012702987529337406,0.03869055584073067,-0.04054166376590729,0.05865192040801048,0.07162834703922272,0.10396669805049896,-0.030727071687579155,0.10114960372447968,-0.1008746549487114,-0.0017874568002298474,0.07459966838359833,-5.1556138975829175e-33,0.0776500552892685,-0.060829102993011475,-0.05221680551767349,0.051245346665382385,0.0771569013595581,0.043463971465826035,-0.07930487394332886,-0.05080479383468628,-0.01851101964712143,-0.05905082821846008,0.007027994375675917,-0.051455218344926834,0.03996764123439789,-0.08705649524927139,-0.03996825963258743,0.049024876207113266,-0.07418236881494522,0.05229576677083969,0.06099458411335945,-0.07735207676887512,-0.0075948419980704784,-0.057059746235609055,-0.0318354070186615,-0.05589964985847473,0.034136898815631866,0.010420882143080235,-0.02813178487122059,0.01933942176401615,0.014352242462337017,0.005872542038559914,0.01862146146595478,0.014303379692137241,0.05120966583490372,0.02460472844541073,-0.043797217309474945,-0.01249019056558609,0.06586986035108566,-0.004360762424767017,-0.018548807129263878,-0.04336775094270706,-0.01498463749885559,-0.05178983509540558,-0.06377168744802475,0.038435809314250946,-0.10569922626018524,-0.0004102010861970484,0.07326404005289078,0.014552033506333828,0.09342531859874725,-0.005811888724565506,-0.037543781101703644,-0.04616335406899452,0.052524447441101074,-0.07422605156898499,-0.01685274951159954,0.0018258962081745267,0.009805509820580482,-0.013654617592692375,0.027510633692145348,-0.037527237087488174,0.09758351743221283,-0.04567018151283264,-0.028186162933707237,0.09152297675609589,-0.0666741356253624,-0.058838121592998505,0.05571456253528595,-0.005068011581897736,0.0452217198908329,0.04828952997922897,-0.04972781613469124,0.015600517392158508,-0.0764085054397583,-0.12566304206848145,0.0024187832605093718,0.04223345220088959,0.05764194205403328,-0.08396496623754501,0.038013577461242676,0.008172119967639446,0.030109453946352005,0.053173940628767014,0.0005567284533753991,-0.028475981205701828,-0.0014413766330108047,0.01846165955066681,-0.05399083346128464,-0.031140342354774475,-0.014612274244427681,0.07631029933691025,0.024669887498021126,-0.05540715530514717,0.061024561524391174,0.03775840625166893,0.009158967062830925,1.1939622854286672e-33,0.03381536155939102,0.03849856182932854,0.006973786745220423,0.05609120801091194,0.03569449856877327,-0.04883338883519173,-0.08648427575826645,0.08714991807937622,0.0454958938062191,-0.04016496613621712,0.00407663406804204,0.0901220440864563,-0.003797281999140978,0.005744683090597391,0.004367148037999868,0.06318272650241852,0.07442058622837067,0.04807482287287712,-0.018394067883491516,0.01570107787847519,0.04490405693650246,0.0537029393017292,-0.05582956224679947,-0.09763237833976746,-0.0248750988394022,0.0571758970618248,0.06571686267852783,-0.013561788946390152,-0.10750438272953033,-0.004860345274209976,-0.05948827415704727,-0.05857764929533005,0.02602175436913967,-0.03557584062218666,-0.014815844595432281,0.04878997802734375,-0.09961402416229248,-0.013608433306217194,-0.06592223048210144,0.06705283373594284,0.02294330671429634,0.03326635807752609,0.03655894845724106,0.06585552543401718,0.021687395870685577,-0.018117493018507957,-0.0654854103922844,0.14449149370193481,0.07977262139320374,0.04433399811387062,-0.06359370797872543,0.00410578353330493,0.07082241773605347,0.06457317620515823,0.07485023885965347,0.003999317996203899,-0.025172969326376915,-0.03684315085411072,-0.018191689625382423,0.09273052960634232,-0.03384219482541084,-0.042365867644548416,-0.0032154142390936613,-0.08736153692007065,-0.062164731323719025,0.025211768224835396,-0.04412030428647995,0.029272645711898804,-0.020111078396439552,0.037889569997787476,0.027328675612807274,0.010233764536678791,-0.03524693101644516,-0.054022420197725296,-0.011049768887460232,-0.0498882457613945,0.019011620432138443,0.06946859508752823,-0.02304696850478649,-0.06676353514194489,-0.06335384398698807,0.03035636618733406,-0.09542811661958694,-0.002235274761915207,-0.09864113479852676,-0.12989583611488342,0.04324589669704437,0.03041154518723488,0.015651261433959007,-0.001405890565365553,0.02451070211827755,-0.03435973823070526,0.04031484201550484,-0.016934653744101524,0.00731725012883544,-1.6938400904109585e-8,-0.0022391732782125473,0.06263985484838486,-0.046192608773708344,-0.04025258496403694,0.0572427436709404,0.13034765422344208,0.048085007816553116,0.052959419786930084,0.011888674460351467,0.04471055418252945,0.0243882704526186,0.10107456147670746,0.13524724543094635,-0.012658481486141682,0.01804584637284279,-0.04434594884514809,-0.015658872202038765,-0.09101875871419907,-0.02331804484128952,0.02906893379986286,0.0011525367153808475,-0.0018478670390322804,0.07485514134168625,-0.05524222180247307,-0.0468672513961792,-0.08255369961261749,0.010884919203817844,0.06191571429371834,-0.04385201260447502,-0.013798273168504238,0.009474007412791252,0.06776068359613419,-0.007328823674470186,-0.0931299552321434,-0.002993879374116659,0.05505046993494034,0.024859711527824402,0.012921597808599472,0.06813910603523254,-0.04782742261886597,0.006456019356846809,-0.07787377387285233,-0.02228785865008831,-0.01857997104525566,-0.011340366676449776,-0.03117852471768856,0.03893745318055153,0.04116973280906677,-0.05396159738302231,0.013538112863898277,-0.04316859692335129,0.07496347278356552,0.01215284876525402,0.013754254207015038,0.07305815070867538,-0.03153397515416145,-0.04771833494305611,-0.007601291406899691,-0.06961164623498917,0.09137778729200363,-0.03929590433835983,0.014043164439499378,-0.009804257191717625,-0.004374654032289982]},{"text":"A few minutes later two pigeons came racing in with the news; \"Boxer has fallen!","book":"Animal Farm","chapter":5,"embedding":[0.03991103917360306,0.06204773485660553,0.013369260355830193,0.07985813915729523,0.03261004015803337,0.09196619689464569,0.0019892011769115925,-0.020168477669358253,0.031549979001283646,0.017782406881451607,-0.03450724855065346,-0.04082683473825455,-0.046661823987960815,0.039116404950618744,-0.02565876580774784,-0.018654009327292442,-0.028933856636285782,-0.025101784616708755,-0.050918206572532654,-0.023423975333571434,-0.06461866945028305,0.05837441608309746,0.07791536301374435,0.06506656110286713,-0.03559240698814392,0.03089245595037937,-0.09475152939558029,0.025626476854085922,-0.02051103301346302,0.008660503663122654,-0.022881891578435898,-0.0020868920255452394,0.06170403212308884,0.09202371537685394,-0.08030573278665543,-0.026838794350624084,0.0705813392996788,0.026167042553424835,0.09118582308292389,0.007972297258675098,0.02473636344075203,-0.12633024156093597,-0.032338131219148636,-0.019684920087456703,0.036629676818847656,0.046843379735946655,-0.025149399414658546,0.05876099690794945,0.09403763711452484,-0.008004666306078434,-0.021239135414361954,-0.0014561243588104844,0.06495505571365356,-0.014983381144702435,0.0336490124464035,0.049123045057058334,-0.031296174973249435,0.0050133573822677135,-0.008632366545498371,0.015340760350227356,-0.001826995168812573,0.05176509544253349,-0.03240405395627022,0.08440279215574265,0.00664546899497509,-0.026098651811480522,-0.06387143582105637,0.007081516552716494,0.0015208349796012044,0.10828819870948792,0.1104661226272583,-0.008920867927372456,-0.07066091150045395,-0.029257137328386307,-0.08522143959999084,0.02058013714849949,0.02418951690196991,-0.02869344875216484,0.08008837699890137,0.01052340678870678,-0.02049236372113228,-0.11784298717975616,-0.041195355355739594,-0.012133665382862091,0.03151409327983856,0.005749598145484924,-0.0012864191085100174,-0.02264690399169922,-0.09414227306842804,-0.10267788916826248,-0.07050058245658875,-0.03901194408535957,0.04352637752890587,0.11746823042631149,0.030391482636332512,-0.018651455640792847,-0.04607580229640007,-0.010420402511954308,-0.02124406397342682,0.05470762774348259,0.04966382309794426,0.07997290790081024,0.018721256405115128,-0.03969324380159378,0.07305643707513809,0.01513056829571724,-0.04111660271883011,-0.030509617179632187,0.03122139349579811,0.022478284314274788,-0.0019293304067105055,-0.007756742648780346,0.09817224740982056,0.040974706411361694,-0.005090032238513231,0.11170043796300888,-0.07892459630966187,0.019166981801390648,-0.10028420388698578,0.08426277339458466,0.009646871127188206,-0.0063977958634495735,-0.09636395424604416,-0.04239773377776146,0.019035423174500465,-0.0705258846282959,-0.012676418758928776,-2.417245257057681e-33,0.03967360407114029,-0.13446789979934692,0.026452088728547096,0.06046852096915245,0.13024555146694183,-0.022488689050078392,-0.06161750480532646,-0.024153180420398712,-0.04252204671502113,-0.015430978499352932,-0.06457739323377609,-0.00690827751532197,-0.021202797070145607,-0.04479518160223961,-0.029294461011886597,-0.013307487592101097,0.027706926688551903,-0.043812647461891174,0.07285900413990021,-0.030012134462594986,-0.05995035171508789,0.027097269892692566,-0.04308383911848068,0.03721870109438896,0.03576548025012016,0.08507759869098663,0.0223469827324152,-0.08591126650571823,0.04009663686156273,0.04142957180738449,-0.0764680728316307,-0.012400100007653236,-0.04416172206401825,0.0025630472227931023,-0.06506682932376862,-0.02634412981569767,-0.019670523703098297,-0.037315111607313156,-0.040426526218652725,0.07433443516492844,0.02792968973517418,-0.059074223041534424,-0.04556264728307724,-0.03284047544002533,-0.04228959232568741,-0.004954734817147255,-0.0634789690375328,0.020303908735513687,-0.01672361046075821,0.048648908734321594,0.05813496187329292,0.028605803847312927,-0.0044518643990159035,-0.023030636832118034,0.07448962330818176,-0.024116864427924156,0.04887222498655319,0.012717114761471748,-0.03499750792980194,0.014009970240294933,-0.011024192906916142,0.022545257583260536,-0.03160810098052025,-0.09078431874513626,0.00717863067984581,-0.058612942695617676,-0.059835098683834076,-0.01165367104113102,-0.13097195327281952,0.07851089537143707,-0.007279235869646072,0.08344370871782303,-0.09991464018821716,-0.13523602485656738,-0.024048475548624992,0.018730906769633293,0.015810946002602577,0.0021283423993736506,0.08460763096809387,0.005986246280372143,0.0913325771689415,0.03765115141868591,0.07016091793775558,0.0016114049358293414,-0.031359460204839706,0.0388362854719162,0.06000664085149765,-0.06989434361457825,-0.04464966803789139,0.015515807084739208,-0.07437875121831894,0.06996291130781174,-0.028903668746352196,0.0049049705266952515,0.06415712833404541,-5.692494401862608e-34,-0.0536540262401104,0.019505929201841354,-0.06428001821041107,0.04891122877597809,-0.015240252017974854,-0.031019823625683784,-0.0009364076540805399,-0.015763280913233757,0.025629589334130287,0.0063676293939352036,-0.10522094368934631,-0.03333678096532822,0.015444927848875523,0.04388848692178726,0.03876137360930443,-0.05806002393364906,0.03902221843600273,0.008170794695615768,0.03374219685792923,0.008174140937626362,0.00942432414740324,0.030329059809446335,-0.016069578006863594,-0.0330006405711174,-0.01912698708474636,0.01735192909836769,0.07065436989068985,-0.02395273558795452,-0.06474047154188156,-0.04066398739814758,-0.01653251424431801,-0.07780323922634125,-0.06505335122346878,0.04701020568609238,0.03036585822701454,0.06446197628974915,0.029132314026355743,-0.051844704896211624,-0.06216587871313095,-0.03311930596828461,-0.017605694010853767,0.0022587860003113747,-0.07042699307203293,0.004506684374064207,0.04379550367593765,-0.0222882479429245,0.03757286071777344,-0.02188606560230255,-0.058955609798431396,0.024050433188676834,0.020207388326525688,-0.03731781616806984,-0.06944826245307922,0.06902908533811569,0.003226446220651269,-0.0374969057738781,-0.029879853129386902,-0.02482718788087368,0.03178573027253151,-0.04565848410129547,-0.1138768196105957,0.04828258603811264,-0.019104449078440666,0.04402787610888481,-0.007778796833008528,-0.05530044063925743,-0.026675434783101082,0.04343244805932045,0.03508223593235016,-0.02468198910355568,0.07945983856916428,0.06633812189102173,-0.06746949255466461,0.02374507486820221,-0.007147572934627533,0.11938458681106567,-0.03250943496823311,0.01899562031030655,-0.011614491231739521,0.08462023735046387,-0.02799214795231819,-0.03828343749046326,0.0752711072564125,0.029731538146734238,-0.020554127171635628,0.00881472509354353,0.0822373554110527,0.01575915701687336,-0.017196742817759514,0.040556926280260086,0.0695265382528305,0.08122619241476059,0.02667095512151718,0.04268470034003258,-0.0484289713203907,-2.1059573640513918e-8,-0.03395921364426613,0.027508389204740524,-0.11208544671535492,0.0045174043625593185,0.09723784774541855,0.049489833414554596,0.03587095066905022,-0.029377972707152367,-0.011243222281336784,0.010353167541325092,-0.002370246686041355,0.004929453134536743,0.010751068592071533,0.030300157144665718,0.0011794997844845057,0.004001532681286335,-0.051343999803066254,-0.09460993856191635,0.01758551225066185,0.01432759128510952,-0.062469482421875,0.0320933498442173,0.047024860978126526,-0.020493268966674805,-0.05809084326028824,-0.0846829041838646,0.01696718856692314,-0.03321050480008125,-0.019625885412096977,0.05361910164356232,-0.07049977034330368,0.0253922026604414,-0.0748913511633873,-0.026217229664325714,0.029886070638895035,-0.028580863028764725,0.09724625945091248,0.06158442795276642,0.09024223685264587,-0.012678895145654678,-0.08479214459657669,-0.0122673399746418,-0.057339102029800415,-0.003633814165368676,0.09053480625152588,-0.01756524294614792,0.06784972548484802,0.009016270749270916,0.014264657162129879,-0.10264124721288681,-0.005198383238166571,-0.022042881697416306,0.10461210459470749,0.0285147987306118,0.03174673393368721,0.0016951095312833786,-0.07782302051782608,-0.07230564206838608,0.006757127586752176,-0.0017684234771877527,-0.060856133699417114,-0.03508738428354263,-0.03203193098306656,0.04739201068878174]},{"text":"Clover dropped to her knees at his side. \"Boxer!\" she cried, \"how are you?\" \"It is my lung,\" said Boxer in a weak voice. \"It does not matter.","book":"Animal Farm","chapter":5,"embedding":[0.011705553159117699,-0.0026505470741540194,-0.005291877314448357,0.05667885020375252,0.07476367056369781,0.060878124088048935,0.04080939292907715,0.0399806909263134,0.02363326959311962,-0.07912910729646683,0.01921512931585312,-0.0646425262093544,-0.048536352813243866,0.027229513972997665,0.030431672930717468,0.01854979246854782,-0.006165755447000265,0.03434295207262039,-0.0852835401892662,-0.008407611399888992,-0.018025266006588936,0.06654496490955353,0.033221956342458725,0.07223493605852127,-0.028969552367925644,0.007452833466231823,-0.019557634368538857,-0.0038250854704529047,0.018008887767791748,-0.056880030781030655,-0.05322504788637161,0.05753865838050842,0.06969296187162399,0.03384311497211456,-0.08858240395784378,0.009461624547839165,0.0872141644358635,0.01302335225045681,0.0462682731449604,-0.09391024708747864,-0.077543705701828,-0.08053013682365417,-0.009476960636675358,-0.023071110248565674,0.06843018531799316,-0.001443219487555325,0.04233993589878082,0.03633667156100273,0.10537533462047577,-0.06406943500041962,0.011211848817765713,-0.017565233632922173,-0.030579237267374992,0.035466693341732025,0.001994179794564843,0.0023195696994662285,0.06888759136199951,-0.043918609619140625,0.044840067625045776,-0.007439254783093929,-0.03975687175989151,0.031616196036338806,0.03389999642968178,0.1165015920996666,0.021549833938479424,0.0005903842393308878,-0.015361309982836246,-0.045455604791641235,-0.08395359665155411,0.09801038354635239,-0.0066050030291080475,-0.004068555776029825,-0.02015877701342106,-0.014523155987262726,-0.05341677367687225,0.014185095205903053,0.011287693865597248,-0.008557366207242012,0.06150692701339722,0.10941332578659058,-0.018491923809051514,-0.10068880766630173,-0.05579255521297455,0.05372580140829086,0.00503688957542181,-0.04413425922393799,-0.013672283850610256,-0.07500486820936203,-0.11357606947422028,-0.070754274725914,-0.08017019182443619,-0.04453534632921219,-0.0047698537819087505,0.10899398475885391,0.014111152850091457,0.0313880555331707,0.0016933659790083766,-0.09660594165325165,-0.09315704554319382,0.003557453863322735,0.009787855669856071,0.04110901430249214,-0.014069988392293453,-0.030440526083111763,0.03692808002233505,-0.0002707973471842706,-0.019387463107705116,-0.07671423256397247,0.03864412009716034,0.04624910652637482,0.048721641302108765,-0.10700005292892456,-0.004579901695251465,0.018433313816785812,0.06902078539133072,0.025127336382865906,-0.022982848808169365,-0.026514410972595215,-0.12299957871437073,0.06226373463869095,-0.03727481886744499,0.05581789091229439,-0.07962529361248016,0.01579330675303936,0.0018474621465429664,-0.048483241349458694,-0.001779878162778914,-1.562130789526054e-33,0.061948709189891815,-0.01911332830786705,0.02155587449669838,0.031017282977700233,0.10758267343044281,-0.07154598832130432,0.04798226058483124,-0.026238171383738518,-0.0021569402888417244,0.04027552157640457,-0.03499552235007286,-0.04913560673594475,-0.025615965947508812,-0.10493118315935135,0.008259487338364124,0.09646754711866379,-0.08627544343471527,-0.050508346408605576,0.027892859652638435,0.0839308351278305,0.008952089585363865,0.015385582111775875,-0.11914532631635666,-0.003830098547041416,0.00936499796807766,-0.04591163992881775,0.05208726227283478,-0.02942599356174469,0.038317713886499405,0.014741135761141777,-0.08897318691015244,0.0045707374811172485,0.06980000436306,0.003982022870332003,0.028065353631973267,-0.03335012495517731,-0.007585414219647646,0.020428340882062912,-0.07403735816478729,0.06962532550096512,-0.02063807100057602,0.01056713704019785,0.00044082009117119014,-0.04954734444618225,-0.04045035317540169,-0.01460923720151186,-0.0866766944527626,0.04007556289434433,0.04146001115441322,-0.02219768613576889,0.06503713130950928,0.021439507603645325,0.030352775007486343,0.012716786004602909,0.13963742554187775,0.020269615575671196,0.04721951112151146,-0.01712162047624588,-0.044439200311899185,0.011011381633579731,0.04106587544083595,-0.04089536890387535,0.015943210572004318,0.0008258878369815648,-0.06157463416457176,-0.014471374452114105,-0.08088231086730957,-0.022325878962874413,-0.0643499493598938,-0.015327610075473785,-0.09902659058570862,0.008026475086808205,-0.0404440201818943,-0.036253832280635834,-0.006393351126462221,0.003001829143613577,0.0012800927506759763,0.019796233624219894,0.027023138478398323,-0.04502808675169945,0.0781048908829689,0.01183091290295124,-0.009730297140777111,0.08971037715673447,-0.04466739296913147,-0.06342358142137527,-0.019036637619137764,-0.09230680763721466,-0.051641836762428284,-0.05915694311261177,-0.04666948691010475,0.010285570286214352,0.04204505309462547,-0.04128636419773102,-0.008440203033387661,-1.1477762858653941e-33,-0.027230698615312576,0.11038316786289215,-0.02933206781744957,0.12176194787025452,0.04504621401429176,0.01583104208111763,-0.03135194256901741,0.0021544641349464655,0.15078943967819214,0.0013882479397580028,-0.013255861587822437,-0.04163309931755066,-0.08826269209384918,-0.07004453986883163,0.08246918022632599,-0.04260990396142006,-0.02034090645611286,-0.0689430981874466,0.026867879554629326,0.053952135145664215,-0.024224916473031044,-0.06628237664699554,0.03234947472810745,-0.07929448038339615,0.019918369129300117,0.026251938194036484,0.0422537699341774,-0.0024972122628241777,0.047613486647605896,-0.05841582641005516,0.028353529050946236,-0.0947912409901619,-0.04932457208633423,0.05832517519593239,-0.038740936666727066,0.03711356967687607,-0.007441535126417875,-0.053627073764801025,0.007661230396479368,-0.04185114800930023,0.025187203660607338,-0.048732493072748184,-0.06016426533460617,0.04896210506558418,-0.010563780553638935,-0.04461812227964401,0.028728695586323738,0.01342617254704237,0.03912629559636116,-0.01904699020087719,-0.01464602816849947,0.012627587653696537,-0.014396374113857746,0.11962045729160309,-0.049872566014528275,-0.0317588672041893,0.0667535662651062,0.04840382933616638,-0.01495211012661457,-0.010941104963421822,-0.07143845409154892,0.05250382423400879,-0.05432157590985298,0.06723245233297348,-0.07333623617887497,-0.04392923787236214,-0.011099172756075859,-0.00903706531971693,-0.05917191505432129,0.02486496977508068,-0.0023304137866944075,0.026129653677344322,0.009923232719302177,0.06466946005821228,0.04586922377347946,0.06186376512050629,-0.0031545592937618494,-0.13323809206485748,-0.03028854727745056,-0.01075058989226818,-0.0114218695089221,0.02235999144613743,-0.04125850275158882,0.022635290399193764,0.01912754215300083,-0.011479969136416912,0.02787352353334427,0.020194444805383682,0.025558775290846825,-0.0030159170273691416,0.05111151188611984,0.056255437433719635,0.05171748623251915,-0.10103895515203476,0.03430400416254997,-3.157225236805061e-8,-0.04600521922111511,0.05335092917084694,-0.13629519939422607,-0.05654309689998627,0.00010995269258273765,0.08849462866783142,0.015704713761806488,-0.008595587685704231,0.005861232988536358,0.02024778723716736,-0.01734427735209465,0.04552234709262848,-0.047606755048036575,-0.0029894039034843445,-0.021234458312392235,0.03663751482963562,-0.00018223290680907667,-0.09560317546129227,0.02131841890513897,0.018086133524775505,0.019028833135962486,-0.02710704877972603,0.030312180519104004,-0.04189174249768257,-0.049872495234012604,0.006157257594168186,0.002541271271184087,-0.0020213709212839603,-0.10981854051351547,0.09208358824253082,0.06378410756587982,0.029004042968153954,-0.08748509734869003,-0.034771278500556946,-0.018138954415917397,0.02338443696498871,0.11449700593948364,-0.01961330883204937,0.023927778005599976,0.04887540265917778,0.021737808361649513,0.0560133159160614,-0.013850594870746136,-0.01488878857344389,0.055903978645801544,0.03534650802612305,0.0826445072889328,-0.059872571378946304,0.03820175677537918,0.007919601164758205,0.04434073716402054,-0.054836660623550415,0.00534640671685338,0.010401660576462746,-0.04777168855071068,0.04061413183808327,-0.043097611516714096,-0.09348847717046738,0.016383718699216843,0.06497957557439804,-0.04869557544589043,0.028492458164691925,0.023248717188835144,0.04879986494779587]},{"text":"And perhaps, as Benjamin is growing old too, they will let him retire at the same time and be a companion to me.\" \"We must get help at once,\" said Clover. \"Run, somebody, and tell Squealer what has happened.\" All the other animals immediately raced back to the farmhouse to give Squealer the news.","book":"Animal Farm","chapter":5,"embedding":[0.02551804855465889,-0.03122071735560894,0.02985348552465439,0.008981616236269474,0.03761008381843567,0.035911135375499725,-0.04739770293235779,-0.06854691356420517,-0.06726083904504776,-0.026625238358974457,0.03510584682226181,0.0065366290509700775,-0.04025644436478615,0.032598476856946945,-0.004447183571755886,0.05697108432650566,-0.11007148027420044,0.03470269590616226,-0.013218754902482033,0.0018441884312778711,-0.08964905887842178,0.031048037111759186,0.053776971995830536,0.030321180820465088,-0.03202172741293907,-0.004381154198199511,-0.05429063364863396,-0.022782916203141212,0.0378219373524189,-0.009418139234185219,0.08850593864917755,-0.003837906289845705,0.066419318318367,-0.013673163019120693,-0.06928540021181107,-0.009821913205087185,0.07508720457553864,0.06795887649059296,0.09137355536222458,0.016705291345715523,-0.0032370544504374266,-0.07222370058298111,-0.05461307242512703,-0.05738304555416107,-0.015269847586750984,-0.010105108842253685,-0.05709116533398628,-0.07113201171159744,0.10439043492078781,-0.03505631163716316,0.030048489570617676,-0.033755604177713394,0.04839117079973221,-0.054358117282390594,0.07795052975416183,0.0753394365310669,0.0019118520431220531,-0.035595256835222244,0.05947251245379448,0.029564304277300835,0.0030626195948570967,0.03911508619785309,0.015795696526765823,0.018482010811567307,-0.003607367631047964,-0.03616119921207428,-0.026741860434412956,0.027743877843022346,-0.027292773127555847,-0.01791471429169178,0.017697924748063087,-0.0276646688580513,-0.023544320836663246,-0.045139215886592865,-0.04954675957560539,-0.0044716461561620235,-0.00549058523029089,0.05644066631793976,0.030322737991809845,-0.05337287113070488,-0.014893890358507633,-0.1226002424955368,-0.014957401901483536,0.017554782330989838,0.026016922667622566,-0.01994280517101288,0.032850638031959534,-0.07047932595014572,-0.04630633816123009,0.01928499899804592,-0.07967543601989746,-0.08398108929395676,-0.01461847499012947,0.08248378336429596,0.02136695571243763,-0.0019210003083571792,-0.02635757438838482,0.029605070129036903,-0.11161383986473083,0.01816508360207081,-0.059188198298215866,-0.03676663711667061,0.05028928443789482,-0.052810993045568466,0.02372751384973526,-0.026381470263004303,-0.012760796584188938,0.00665854150429368,0.07741374522447586,0.05146259069442749,0.028849299997091293,-0.029733382165431976,-0.02423868328332901,0.11326322704553604,0.047530997544527054,-0.008854681625962257,-0.12070083618164062,-0.03262071684002876,-0.06985875964164734,0.0217848252505064,0.11319183558225632,0.14470936357975006,-0.05057498812675476,0.10564568638801575,0.03298816457390785,-0.054292287677526474,0.021265141665935516,9.375614372463944e-34,0.05626896023750305,-0.017958037555217743,-0.039737850427627563,0.05185144022107124,0.0681455135345459,0.02254774048924446,-0.06556610763072968,0.001047984347678721,0.02140311896800995,-0.06067409738898277,-0.0021027233451604843,-0.07526569068431854,-0.018488522619009018,-0.10605713725090027,-0.0421493835747242,0.039000023156404495,-0.04643324390053749,-0.05165077745914459,0.09772882610559464,-0.061796918511390686,0.017855366691946983,0.02790304459631443,-0.10941467434167862,0.056677233427762985,0.07769298553466797,-0.111280657351017,0.024171413853764534,0.00196416606195271,0.04197172075510025,0.011711854487657547,-0.03738301992416382,0.06877906620502472,-0.0069955638609826565,0.03381891921162605,-0.03343399241566658,-0.04179718717932701,-0.017446544021368027,-0.020917540416121483,-0.12391297519207001,0.03649967163801193,-0.010779676027595997,-0.008166344836354256,-0.029592173174023628,0.05892012640833855,-0.013352648355066776,-0.016466062515974045,0.07649942487478256,0.0767895057797432,0.01527925580739975,-0.03144368156790733,0.005151445046067238,0.025395909324288368,-0.05506496503949165,0.007678818888962269,0.037633251398801804,-0.010106166824698448,-0.013423612341284752,-0.05685644969344139,-0.04010380059480667,-0.04816979542374611,0.09207671135663986,-0.00856080837547779,-0.0009047423955053091,0.016891341656446457,-0.06656868010759354,-0.016109667718410492,-0.005086253397166729,0.007049428299069405,-0.08920033276081085,0.0434090755879879,-0.03447502851486206,0.009012734517455101,-0.06533404439687729,-0.14397047460079193,0.004723737481981516,-0.015615155920386314,0.03541124239563942,0.02390035055577755,0.024435915052890778,-0.10066485404968262,0.13842171430587769,-0.04639497771859169,-0.03122975118458271,0.06415128707885742,-0.003598978742957115,-0.024984199553728104,0.012756653130054474,-0.07890920341014862,0.011441318318247795,0.009270112961530685,0.06511376053094864,-0.055813390761613846,-0.0040973396971821785,-0.020881373435258865,-0.0047205546870827675,-2.87940647311781e-33,-0.038392744958400726,0.044663961976766586,0.05569923669099808,0.07101693004369736,-0.011153440922498703,0.00700561935082078,-0.048458851873874664,0.02278996631503105,0.05060542747378349,-0.047895051538944244,-0.1049635112285614,0.017772406339645386,0.005807868205010891,0.04312066733837128,0.02012195996940136,0.011229109950363636,0.06667927652597427,-0.011220220476388931,0.006404365412890911,-0.005012285429984331,0.016121050342917442,0.0028058222960680723,-0.046985313296318054,-0.07872980833053589,0.033348917961120605,0.09235532581806183,0.04418276622891426,0.010736563242971897,-0.008605905808508396,-0.09193303436040878,0.006612347438931465,-0.12392076104879379,0.010977775789797306,-0.07386579364538193,-0.04972720146179199,0.03233269229531288,-0.026454083621501923,-0.06386776268482208,-0.057196810841560364,-0.005822679493576288,0.02519981563091278,-0.0739387646317482,-0.019130459055304527,0.03419049084186554,0.01807062141597271,0.018481291830539703,0.037613291293382645,0.0014475674834102392,-0.01813376508653164,0.02433127351105213,0.06552910059690475,0.07777955383062363,-0.014445370063185692,0.045382291078567505,-0.0638997033238411,-0.027857206761837006,0.03762936219573021,-0.005610319785773754,-0.00165928911883384,-0.061269983649253845,-0.015916522592306137,-0.021071244031190872,0.016442282125353813,0.053310904651880264,-0.03902373090386391,-0.07240648567676544,0.00979570671916008,-0.016116509214043617,-0.005167461931705475,0.04479376599192619,0.038486890494823456,0.0007441025227308273,-0.022008512169122696,-0.014604417607188225,-0.05132262408733368,0.09848533570766449,0.00457982812076807,-0.13333655893802643,-0.049637362360954285,0.01451733335852623,-0.023447314277291298,-0.02388881705701351,0.027936628088355064,0.03266480565071106,-0.04445664584636688,-0.07223872095346451,0.06305330246686935,0.07545029371976852,0.04721125215291977,0.005590134300291538,0.018068164587020874,-0.03638255596160889,0.08148679882287979,0.007357142399996519,0.03918825834989548,-4.463518621378171e-8,-0.020932603627443314,0.04719696193933487,-0.16149918735027313,-0.04078581556677818,0.12469782680273056,0.018824443221092224,-0.010541744530200958,0.0484195202589035,-0.0327434279024601,0.06099338084459305,-0.027158206328749657,0.07510041445493698,0.011699184775352478,0.056707713752985,0.09500258415937424,0.007909679785370827,0.01032056100666523,-0.16381555795669556,-0.009588496759533882,0.020767541602253914,-0.06364163011312485,-0.0013330844230949879,0.01197942066937685,0.013366883620619774,-0.06123598664999008,-0.06089118495583534,-0.03436514362692833,0.04255041107535362,-0.038816116750240326,0.04609702154994011,-0.03656326234340668,0.03830801323056221,-0.02905500866472721,-0.030777592211961746,-0.01308939978480339,-0.03601524606347084,0.0006632849690504372,0.0032706924248486757,0.061110999435186386,-0.0319179967045784,0.05335448682308197,0.05720032751560211,-0.038824841380119324,0.07399840652942657,0.05315195769071579,-0.061751194298267365,0.02413772977888584,-0.024492796510457993,0.031338006258010864,-0.0016197586664929986,0.02006232738494873,0.0342196524143219,0.02878163941204548,0.07407557964324951,0.093381367623806,0.012059028260409832,-0.09996003657579422,-0.04248618707060814,0.0014886166900396347,0.04982771724462509,-0.06184416264295578,-0.02386070415377617,0.0050495988689363,0.023898810148239136]},{"text":"Except for Mollie and Snowball, no other animal had ever left the farm, and they did not like to think of their sick comrade in the hands of human beings.","book":"Animal Farm","chapter":5,"embedding":[0.033962681889534,0.0298405010253191,0.0389983095228672,0.02134137786924839,0.07487061619758606,-0.04153987765312195,0.024471668526530266,-0.015946324914693832,-0.02175995148718357,-0.05992009490728378,0.03869495168328285,0.03397760167717934,0.036181531846523285,-0.032623291015625,-0.05547795444726944,0.0030629539396613836,-0.03312921151518822,-0.04959427937865257,-0.016818996518850327,0.02972766011953354,-0.09522970020771027,0.016958164051175117,0.06802288442850113,0.04685056582093239,-0.00903631467372179,0.010024174116551876,-0.06799305975437164,0.0782695785164833,-0.014955256134271622,0.026040339842438698,-0.05746211111545563,0.07131846249103546,0.017396733164787292,0.04762939736247063,0.022869857028126717,0.030652493238449097,0.09869315475225449,0.014143607579171658,0.02484879270195961,0.009491629898548126,0.00370627804659307,-0.008884981274604797,-0.014139520935714245,-0.011217941530048847,-0.10372412949800491,0.0027639023028314114,-0.0524052232503891,-0.09172817319631577,0.07629210501909256,-0.008679362013936043,-0.008739675395190716,-0.023241767659783363,-0.019176775589585304,-0.018176717683672905,0.013491116464138031,-0.01233651116490364,-0.01399647444486618,-0.018839368596673012,-0.010347241535782814,-0.010847968980669975,-0.0565132275223732,0.005182808265089989,0.0547967329621315,0.024297267198562622,0.03648180887103081,-0.058835119009017944,-0.08895211666822433,-0.00563333323225379,-0.012973607517778873,-0.008557017892599106,-0.0010851348051801324,-0.020291056483983994,0.039682481437921524,-0.09797493368387222,-0.13614226877689362,0.021462606266140938,0.03465912863612175,-0.04272189363837242,0.06721623986959457,0.03077913075685501,0.020622845739126205,0.02558284066617489,0.043765630573034286,0.0034991709981113672,0.05061399191617966,-0.07606394588947296,0.015730326995253563,-0.05022485554218292,0.06529596447944641,-0.02284298837184906,-0.09409603476524353,-0.05850747227668762,-0.008361012674868107,0.06614626944065094,0.011632394045591354,-0.028019141405820847,0.03581912815570831,0.007057025097310543,-0.09105739742517471,0.09676649421453476,-0.021734239533543587,-0.08808309584856033,0.005366383120417595,-0.0373249277472496,0.041653573513031006,-0.029472358524799347,-0.0508025661110878,-0.029895590618252754,-0.024437634274363518,0.028575105592608452,-0.05505751818418503,-0.006823571398854256,0.014243761077523232,0.06701550632715225,0.07983354479074478,-0.028492052108049393,-0.07516954839229584,0.0013077319599688053,-0.15332470834255219,-0.027910731732845306,0.07648538053035736,0.07825861871242523,-0.043745968490839005,0.056304287165403366,0.026204172521829605,0.06969143450260162,0.05792322754859924,-1.6273772233580441e-34,0.033218879252672195,-0.04513919726014137,-0.0418035089969635,-0.07206982374191284,0.10646987706422806,0.01583864912390709,-0.018968356773257256,0.047317542135715485,0.07361732423305511,-0.023374564945697784,0.0031693510245531797,-0.03167758136987686,-0.04268050938844681,-0.09320493787527084,0.014954003505408764,0.008598052896559238,-0.06496034562587738,-0.04873639717698097,0.09131836891174316,0.07579651474952698,0.04951687902212143,0.03949426859617233,-0.03134264051914215,0.09607724845409393,-0.06285277009010315,0.03773406893014908,-0.00006278818182181567,-0.030528219416737556,0.02327091060578823,0.049391720443964005,0.0650336742401123,-0.06593097001314163,-0.0031947148963809013,0.02998272143304348,0.002577622188255191,-0.024306530132889748,-0.03471161052584648,-0.1049836054444313,0.03349088877439499,0.03219608962535858,0.020163673907518387,-0.05031121149659157,0.022136274725198746,-0.04033047705888748,-0.007290416397154331,-0.01319158636033535,0.03428959101438522,0.045549169182777405,-0.029227130115032196,-0.0012600156478583813,0.04140174761414528,0.018058812245726585,0.06191922351717949,0.033816058188676834,0.030176138505339622,0.03417326882481575,-0.03417172655463219,0.0607931986451149,-0.0109999505802989,-0.0315176397562027,-0.048243749886751175,-0.008725428953766823,0.11800879240036011,-0.11537311226129532,0.010013886727392673,-0.023710699751973152,-0.020383195951581,0.030872121453285217,-0.07443491369485855,0.06388263404369354,0.043958570808172226,0.0024747776333242655,-0.11638136208057404,-0.046422868967056274,-0.07644374668598175,-0.030356694012880325,0.09443257004022598,-0.07275303453207016,-0.00025601452216506004,-0.05725165456533432,0.069052554666996,0.007836179807782173,-0.02133328467607498,0.022404665127396584,-0.029069121927022934,-0.02591695636510849,0.09650099277496338,-0.014047594740986824,-0.018745310604572296,-0.06313970685005188,-0.0312776155769825,0.06101400777697563,-0.03887079656124115,-0.09385775774717331,-0.044050268828868866,-6.33437446966156e-34,-0.04220389947295189,0.048872146755456924,0.035894956439733505,-0.016709016636013985,-0.03532630205154419,-0.009576942771673203,0.011677856557071209,-0.03572133928537369,0.03602351248264313,0.02686590887606144,-0.0861455574631691,-0.05467267706990242,-0.00441961782053113,-0.006889047101140022,0.005468494258821011,-0.007900907658040524,-0.008245432749390602,0.024915432557463646,0.02839084342122078,-0.03855238854885101,-0.026688426733016968,0.05329914018511772,-0.10809706151485443,0.015335358679294586,0.016198109835386276,0.08319566398859024,-0.03303650766611099,-0.03834566846489906,-0.02755158394575119,-0.08790507912635803,0.061773043125867844,0.032437991350889206,0.021221496164798737,-0.05432521551847458,0.07349121570587158,0.023182958364486694,-0.0188058540225029,0.01703510247170925,-0.05108604580163956,-0.05240615829825401,0.0704255998134613,-0.06585170328617096,-0.03006422147154808,0.08980979025363922,-0.016152333468198776,0.05183861032128334,-0.07245814800262451,0.05101705715060234,0.07342006266117096,0.05106082931160927,-0.06674676388502121,0.04408527538180351,-0.041533563286066055,-0.06713413447141647,-0.05359479784965515,-0.046487536281347275,0.03850909322500229,-0.10531249642372131,0.04100931063294411,-0.12453946471214294,-0.020604655146598816,-0.05697362869977951,-0.0485985092818737,0.013271238654851913,-0.0062674363143742085,0.010879077017307281,-0.020620157942175865,0.024368615821003914,0.008018472231924534,-0.028163105249404907,-0.008300681598484516,0.0863892063498497,-0.031068533658981323,-0.025310909375548363,0.010630855336785316,0.1141168475151062,-0.0685158222913742,0.012737604789435863,0.07079429179430008,-0.06019933894276619,-0.032659679651260376,-0.01578543148934841,0.005837181583046913,0.06281298398971558,0.0564519502222538,0.04353576526045799,-0.04350975155830383,0.07964251935482025,0.07565424591302872,0.020302487537264824,0.024501414969563484,-0.04928380250930786,0.0966649278998375,0.013394612818956375,0.008245827630162239,-2.8325391809858047e-8,0.04703280329704285,0.038756273686885834,0.024242782965302467,0.031820300966501236,0.09564048051834106,0.06378955394029617,0.01821567863225937,0.03430584445595741,0.05452599748969078,0.15282680094242096,-0.09523489326238632,0.09609127044677734,-0.02144632488489151,0.06895282119512558,0.016458706930279732,0.10180026292800903,0.05120186507701874,-0.1168595626950264,-0.03677321970462799,0.036501444876194,-0.05905671790242195,-0.003911713138222694,-0.06983630359172821,0.0071611893363296986,-0.05603133887052536,-0.010631496086716652,-0.09328162670135498,-0.07286586612462997,0.0301570612937212,0.023088417947292328,-0.014855391345918179,-0.015761228278279305,-0.04559082165360451,-0.02883976325392723,0.006919555366039276,0.06740168482065201,-0.015857785940170288,0.010325011797249317,-0.007351587060838938,-0.05057162046432495,-0.0504014790058136,0.10144518315792084,0.09196249395608902,-0.005836608354002237,0.019108442589640617,-0.03225494548678398,-0.036793630570173264,0.01380039844661951,0.007839709520339966,0.0441008023917675,-0.0018202073406428099,0.03122779354453087,-0.04325356334447861,0.09712706506252289,-0.023583190515637398,-0.024092216044664383,-0.026021748781204224,-0.04703769460320473,0.01195304561406374,-0.05174723640084267,-0.04493638873100281,-0.010517347604036331,-0.01652335375547409,-0.032454680651426315]},{"text":"In the evenings she lay in his stall and talked to him, while Benjamin kept the flies off him.","book":"Animal Farm","chapter":6,"embedding":[0.060548085719347,0.06222924962639809,-0.022807346656918526,0.029348494485020638,0.030580587685108185,-0.013785556890070438,0.08652086555957794,0.0033596823923289776,-0.05343293026089668,-0.0833921730518341,-0.07841803133487701,0.04960959404706955,-0.044950470328330994,-0.009794089011847973,0.014363392256200314,0.05076415464282036,-0.0007123345858417451,0.037688907235860825,0.019497191533446312,-0.006255027838051319,0.0028352655936032534,0.007862444967031479,0.10899221152067184,0.012770934961736202,0.028458215296268463,0.02106640301644802,0.06416086107492447,-0.0443614162504673,0.09022849798202515,-0.048113610595464706,-0.05168888345360756,0.0020262282341718674,0.018990015611052513,0.028721364215016365,-0.053885262459516525,-0.025924114510416985,0.06292025744915009,0.03317127004265785,0.040956832468509674,-0.035583093762397766,0.02298469841480255,-0.0064794220961630344,-0.06317665427923203,-0.028477754443883896,-0.08090518414974213,0.015114742331206799,0.04359262064099312,-0.04313953220844269,0.04495399072766304,0.017786787822842598,-0.026457568630576134,0.03426872566342354,-0.04694556072354317,0.07665562629699707,0.09901615232229233,0.02864096872508526,0.05649958923459053,0.01882421411573887,0.09059810638427734,0.01709926500916481,0.02247883379459381,0.021644389256834984,0.03913450986146927,-0.0013613320188596845,0.020695628598332405,0.01650235243141651,-0.13865777850151062,0.06463734060525894,0.07730525732040405,0.04026518017053604,-0.029799187555909157,0.03681237995624542,-0.0574832521378994,-0.038732558488845825,-0.0858280211687088,-0.009396146051585674,0.0977601483464241,-0.07492835819721222,0.054916903376579285,0.07002350687980652,-0.0365329347550869,-0.04474819079041481,-0.021642593666911125,0.05005859211087227,0.013985157944262028,-0.013968276791274548,0.0563051775097847,-0.07858488708734512,-0.03474642336368561,0.0005539505509659648,-0.06916046142578125,-0.07653649151325226,-0.09733940660953522,0.0015321512473747134,-0.015058434568345547,-0.06494881957769394,-0.03612572327256203,0.00435527041554451,-0.0321616493165493,0.0014802697114646435,0.04309805482625961,0.0471172071993351,0.0324428491294384,0.004974850453436375,-0.07315457612276077,-0.004381982609629631,0.08965475112199783,-0.03781342878937721,-0.018047016113996506,0.006331258453428745,0.03087157942354679,-0.04003305733203888,-0.013951322995126247,0.018783269450068474,0.058198802173137665,0.027221878990530968,0.00039742272929288447,0.028756853193044662,-0.02183409035205841,-0.007302285637706518,0.04539128765463829,0.1257990449666977,0.01350836269557476,-0.006155360955744982,-0.047013647854328156,-0.03165879100561142,0.0681554451584816,-2.6393753021256992e-33,0.05109943076968193,-0.0332808680832386,-0.1255822777748108,0.07744710147380829,0.10035016387701035,0.009556936100125313,0.047432854771614075,0.04946586489677429,0.03996124118566513,0.038275156170129776,-0.08427935093641281,-0.13953477144241333,0.04535774141550064,-0.04964563250541687,-0.019633140414953232,0.042118947952985764,0.09440986067056656,-0.06634976714849472,0.07022302597761154,-0.008055676706135273,0.08973157405853271,0.023373408243060112,-0.06751905381679535,0.002541355090215802,0.0671614482998848,-0.14902861416339874,0.00677335774526,0.0025700388941913843,0.008892498910427094,0.038051433861255646,-0.06232228875160217,0.08859880268573761,0.011214083060622215,0.09609053283929825,0.10706309229135513,0.02557576633989811,0.03225669264793396,0.035925447940826416,-0.06849436461925507,-0.022739389911293983,-0.055792465806007385,0.03430171683430672,-0.03730456531047821,-0.0009356586378999054,-0.10908990353345871,-0.023096295073628426,-0.033041100949048996,0.062108494341373444,0.058460578322410583,-0.03738165646791458,-0.020743411034345627,0.03704781085252762,-0.06313005089759827,-0.011450517922639847,0.010050171054899693,0.03305312246084213,0.024213287979364395,-0.08652204275131226,0.05797787383198738,0.01680820807814598,0.10245435684919357,-0.011275709606707096,-0.0384068600833416,-0.02170179970562458,-0.022951791062951088,-0.040948834270238876,-0.06478530168533325,-0.06491843611001968,-0.01259908452630043,-0.018797649070620537,-0.10667218267917633,0.08438173681497574,-0.0170755498111248,-0.07642225921154022,-0.04176363721489906,0.010132832452654839,-0.046315792948007584,-0.0577789731323719,-0.022900408133864403,-0.05351538211107254,0.17388412356376648,-0.0357646569609642,-0.031122157350182533,0.01700684241950512,-0.11131631582975388,-0.050928231328725815,0.002536237705498934,-0.029803695157170296,-0.02979903109371662,0.0437919944524765,-0.03515046089887619,0.006340092979371548,0.06757743656635284,-0.03927784413099289,0.005988185293972492,3.248471463849254e-35,0.025445355102419853,0.014070908538997173,-0.007433346472680569,0.020207954570651054,-0.025413649156689644,-0.022969454526901245,-0.023714784532785416,-0.00846992526203394,0.0072323111817240715,-0.029611127451062202,-0.05320705100893974,-0.005951483268290758,-0.02172684855759144,0.060795046389102936,0.0851886048913002,-0.026110472157597542,-0.020093487575650215,-0.025216324254870415,0.04216144606471062,0.011636562645435333,0.002583759371191263,-0.04776962846517563,0.022932909429073334,-0.06915631145238876,-0.0007389059173874557,0.0363554023206234,0.10961800813674927,-0.01562895067036152,-0.05647581070661545,0.00045108605991117656,-0.012991623021662235,-0.036421097815036774,-0.018097911030054092,0.02823205664753914,-0.098415307700634,0.05793774127960205,-0.06622143089771271,-0.05874132737517357,0.02809198759496212,-0.11441196501255035,0.058277759701013565,-0.05387291684746742,-0.006555538158863783,-0.018014725297689438,0.049624212086200714,0.04483984783291817,-0.015215209685266018,0.03947198763489723,0.01249975711107254,-0.011268732137978077,0.06544078141450882,0.009224706329405308,-0.043231748044490814,0.0350743904709816,-0.017356595024466515,-0.07569718360900879,0.08643320947885513,-0.004990314599126577,0.050531625747680664,-0.01499055977910757,0.007953484542667866,-0.0481354296207428,0.007041339762508869,0.007736843079328537,-0.017894016578793526,-0.02103593945503235,-0.00014189806825015694,-0.01832600310444832,0.049589529633522034,0.016591442748904228,0.004417142830789089,-0.02176169864833355,0.0837654322385788,0.07770152390003204,-0.05493146926164627,0.04947599768638611,0.006833188235759735,-0.11229090392589569,0.04829743131995201,-0.04237573966383934,-0.01901511661708355,-0.05825471505522728,0.023091403767466545,-0.023085761815309525,-0.019019117578864098,0.005939637776464224,-0.01575234718620777,-0.007565980777144432,-0.02888566628098488,-0.06378468871116638,0.07185612618923187,-0.0532696470618248,-0.0033712913282215595,-0.04807518795132637,0.009185521863400936,-2.485411876307353e-8,-0.042138949036598206,-0.07128574699163437,-0.06953205168247223,0.004234084393829107,0.044517919421195984,0.06613355875015259,-0.001280804630368948,0.019707025960087776,0.057466186583042145,0.0033534120302647352,-0.09821409732103348,0.02579009160399437,0.030135786160826683,-0.00910889357328415,0.027884013950824738,-0.03239819034934044,-0.025618761777877808,-0.12552715837955475,0.002567715011537075,0.0029826401732861996,0.028595803305506706,-0.040495555847883224,-0.017494505271315575,0.0455617755651474,-0.02028064616024494,-0.01579611375927925,-0.02798594906926155,0.08597005903720856,0.009467288851737976,0.047013625502586365,0.04434442147612572,0.03432071581482887,0.03202478960156441,-0.0726080983877182,-0.03601755574345589,0.03278277814388275,0.05705183744430542,0.005973185412585735,0.0457015186548233,-0.02405761368572712,0.05609630048274994,0.023080892860889435,-0.023219890892505646,-0.05438287556171417,0.046265408396720886,0.03672884404659271,0.0646832287311554,-0.003481503576040268,-0.043980568647384644,0.014085033908486366,-0.006031224969774485,-0.0038722935132682323,0.06334906816482544,0.04031870514154434,0.019887641072273254,-0.05974096059799194,-0.05536578595638275,-0.12426558136940002,0.020682355388998985,0.024203630164265633,-0.1142340674996376,0.06377963721752167,-0.12743249535560608,-0.01044397708028555]},{"text":"However, Benjamin and Clover could only be with Boxer after working hours, and it was in the middle of the day when the van came to take him away.","book":"Animal Farm","chapter":6,"embedding":[0.07064278423786163,0.04534595087170601,-0.03413207456469536,0.03465409204363823,0.08462211489677429,0.04659099876880646,-0.010033424943685532,-0.03736085444688797,-0.01236154604703188,-0.014580910094082355,0.06454987823963165,0.01724676787853241,0.0031634026672691107,0.030794482678174973,0.03051671013236046,-0.02476668730378151,-0.05740472674369812,-0.05403783544898033,-0.052739985287189484,-0.013994981534779072,-0.056782644242048264,0.0016590601298958063,0.0356474444270134,0.0331730954349041,0.041457731276750565,0.060365352779626846,-0.028944024816155434,0.018869126215577126,0.07749298959970474,-0.051611896604299545,0.0029234569519758224,0.0541442334651947,0.08076310157775879,-0.0025343825109302998,-0.10575883090496063,-0.050303202122449875,0.05336178094148636,0.07760725915431976,0.04456479474902153,-0.1043035238981247,-0.027130646631121635,-0.05795593187212944,0.008333367295563221,-0.05099644884467125,-0.0029580816626548767,0.013174972496926785,0.019638650119304657,-0.06907866895198822,0.08527842164039612,-0.05068434774875641,0.1280072182416916,0.031190592795610428,0.043886903673410416,0.04702530801296234,0.05959588289260864,-0.004457581322640181,-0.0294777974486351,-0.025736119598150253,0.0655856654047966,0.020281895995140076,-0.03799910843372345,0.10911174863576889,-0.021005898714065552,0.029701676219701767,0.01842513680458069,-0.003549426095560193,-0.08783546835184097,0.003415765007957816,0.017056681215763092,-0.003747822716832161,0.020527776330709457,-0.00475064292550087,-0.03463074937462807,-0.0032583752181380987,-0.029524242505431175,0.06392116099596024,0.0224983561784029,0.010315218940377235,0.017745647579431534,0.002570056589320302,-0.07808901369571686,-0.05121024325489998,-0.038234855979681015,0.08218084275722504,0.029717765748500824,0.02618415467441082,-0.02704411931335926,-0.03807589411735535,-0.043405063450336456,-0.02855221927165985,-0.060634296387434006,-0.06485816836357117,0.005268563516438007,0.06001075357198715,0.03234933316707611,-0.10053984820842743,0.03924150392413139,0.05449104309082031,-0.04849274829030037,0.05523371323943138,0.023504899814724922,0.03971549868583679,-0.0226959977298975,-0.02379593998193741,0.048851415514945984,0.020175203680992126,0.025396404787898064,-0.05060027912259102,0.018740415573120117,0.011931907385587692,0.03009851835668087,-0.06562309712171555,0.07847815006971359,0.03058083914220333,0.03148408606648445,0.04400043934583664,-0.0767638087272644,0.03773777186870575,-0.06623126566410065,0.024735260754823685,0.05142808333039284,0.07227445393800735,-0.02394041419029236,-0.014743540436029434,-0.07381610572338104,-0.006740602198988199,0.09185847640037537,-1.6552303094531638e-33,0.021634213626384735,-0.07814215868711472,-0.03733503818511963,0.03430332988500595,0.11465267091989517,-0.052507802844047546,-0.008112326264381409,0.012894886545836926,0.0929594486951828,-0.04882672056555748,-0.06566746532917023,-0.0720343217253685,0.03331351652741432,-0.10815045982599258,-0.05040636658668518,0.10191594064235687,0.03229648247361183,-0.06632893532514572,0.06243600696325302,0.0032935976050794125,-0.02986430749297142,0.007494078949093819,-0.10454149544239044,0.020239267498254776,0.005325935781002045,-0.05308108404278755,0.025527959689497948,0.010753601789474487,0.13176409900188446,0.02780969813466072,-0.08964744210243225,0.10046990215778351,0.047814954072237015,0.1390646994113922,-0.031148113310337067,0.016643881797790527,0.03957981988787651,-0.07417574524879456,-0.09718617051839828,0.019310390576720238,0.022170599550008774,-0.01714082434773445,-0.04955979436635971,-0.00865708477795124,-0.08083027601242065,0.00023718157899565995,0.00012552036787383258,0.032388169318437576,0.003816303564235568,0.051642052829265594,0.022847885265946388,0.06786885857582092,-0.04586586356163025,-0.06525741517543793,0.0002734221052378416,0.017966656014323235,0.02659955993294716,0.02969537489116192,-0.042916227132081985,0.0346984900534153,0.06704097241163254,0.07683267444372177,0.038590069860219955,0.03553617745637894,-0.06306798756122589,-0.00632675364613533,-0.07620612531900406,0.04107178375124931,-0.09366080909967422,0.030003046616911888,-0.06293442845344543,0.027926763519644737,-0.01757403463125229,-0.16546566784381866,0.0702909380197525,-0.01545952819287777,0.0047952523455023766,0.025057176128029823,0.05598592013120651,-0.0381215400993824,0.04386473819613457,0.010599421337246895,0.012531321495771408,0.058508966118097305,-0.05270879715681076,-0.038715410977602005,-0.005163050722330809,-0.03486134484410286,-0.03776460513472557,-0.005139132030308247,-0.01917753368616104,-0.013172687962651253,0.004927505273371935,-0.03474683314561844,0.011400378309190273,1.495289798755117e-35,-0.027930395677685738,0.03233220800757408,-0.015966633334755898,0.017150579020380974,0.0817972794175148,0.025393003597855568,-0.007283751852810383,-0.01786254718899727,0.03294037654995918,0.03865078464150429,-0.02775277942419052,-0.06458012014627457,-0.05220932886004448,-0.027136685326695442,0.0769190639257431,-0.01844981499016285,0.0022175090853124857,0.015374147333204746,0.021489519625902176,0.08640530705451965,0.03238670155405998,-0.016749605536460876,-0.02798309363424778,-0.10014639049768448,0.02162988856434822,0.08831663429737091,0.012212572619318962,0.008749837055802345,-0.05303267762064934,-0.03184200078248978,-0.003385289339348674,-0.08982130140066147,-0.0695410966873169,-0.009358968585729599,-0.07688400149345398,0.009823043830692768,-0.047962795943021774,-0.009009094908833504,-0.023079214617609978,-0.05427507683634758,-0.04482432082295418,-0.09319981187582016,-0.03981460630893707,0.057210784405469894,-0.015467462129890919,0.0023568442557007074,0.02979852631688118,-0.053218722343444824,0.07682061195373535,-0.004993533715605736,0.09439726918935776,0.056802693754434586,-0.05397367849946022,0.07361342757940292,-0.05905390903353691,0.022704284638166428,0.03854808956384659,-0.0029729031957685947,0.07330188155174255,0.004934336524456739,-0.0311527531594038,-0.0351545475423336,-0.0049894112162292,0.02273031510412693,-0.037249740213155746,-0.09105009585618973,-0.005560500081628561,0.07707154005765915,0.0013743421295657754,0.015538280829787254,0.041260380297899246,0.00453296909108758,0.0743645578622818,0.054796360433101654,-0.04853189364075661,0.021135801449418068,-0.005201213527470827,-0.11113771051168442,-0.012184192426502705,-0.052964095026254654,-0.08259996026754379,-0.023869404569268227,-0.006498732138425112,0.07424992322921753,-0.07048279792070389,0.009475811384618282,0.02975112944841385,0.0250872690230608,0.025912579149007797,0.0005626495112664998,0.1151372417807579,0.015442648902535439,0.035704318434000015,0.01844644360244274,0.002508250530809164,-2.860118719638649e-8,-0.021631963551044464,-0.007894288748502731,-0.1836063712835312,-0.036217935383319855,0.03845411166548729,0.01868330128490925,0.0668555349111557,0.01180614810436964,-0.013313647359609604,0.12099684774875641,-0.01854706183075905,0.04783797264099121,-0.07089225202798843,-0.05548514425754547,0.003846840001642704,-0.020854825153946877,-0.03823322430253029,-0.1557796150445938,-0.016425224021077156,-0.009950684383511543,-0.03373776376247406,-0.04673320800065994,-0.019963668659329414,-0.020964182913303375,-0.04691936820745468,-0.03326847776770592,-0.0008948304457589984,-0.004975548014044762,0.061547428369522095,0.06288500130176544,-0.04218173772096634,0.005336522590368986,-0.06235478073358536,-0.07462810724973679,0.015004574321210384,-0.041242506355047226,0.02746449038386345,-0.02564982883632183,-0.004362205509096384,0.024837911128997803,0.017707783728837967,0.009293733164668083,-0.07870016992092133,0.025994060561060905,0.10892332345247269,-0.04427864030003548,-0.0025942358188331127,0.008681342005729675,-0.03434550017118454,-0.04511268809437752,0.058995574712753296,0.01686827652156353,0.05258104205131531,0.03559021279215813,0.027157409116625786,-0.011802778579294682,-0.07801524549722672,-0.09679403901100159,0.027170846238732338,0.01077259797602892,-0.05257239565253258,-0.01874125748872757,0.0244075208902359,0.04101082682609558]},{"text":"And Boxer's stall was empty.","book":"Animal Farm","chapter":6,"embedding":[0.10939926654100418,0.11192094534635544,-0.04413589835166931,0.08092128485441208,0.03686413913965225,0.04082595184445381,-0.0232880599796772,-0.007618014235049486,0.07905589789152145,-0.04288956895470619,0.03918399289250374,0.027516376227140427,0.047160807996988297,0.013257256709039211,-0.013780930079519749,-0.03922046720981598,-0.03396151214838028,-0.012038084678351879,-0.00047136074863374233,-0.0767122358083725,-0.03149032220244408,0.05909048765897751,0.04674674943089485,0.026037661358714104,0.020736156031489372,-0.0016344815958291292,-0.011976271867752075,-0.04311097040772438,0.08692511171102524,0.00017436804773751646,0.02379930019378662,-0.08722465485334396,0.06851300597190857,-0.01708744466304779,0.03284486010670662,-0.039555393159389496,0.08571963757276535,0.1019580066204071,-0.009646112099289894,0.033891454339027405,-0.006168424617499113,-0.02458764612674713,-0.0686873197555542,0.05931797996163368,0.06937193125486374,0.047861069440841675,-0.006142547819763422,-0.032474637031555176,0.10105368494987488,0.008112376555800438,0.059584930539131165,0.013303542509675026,0.04720523953437805,0.025713812559843063,0.028392981737852097,-0.04103050380945206,0.024997562170028687,-0.08530333638191223,0.05372484028339386,0.03416430577635765,0.00464456295594573,0.02089276723563671,-0.034572433680295944,0.09047802537679672,0.005609455518424511,0.00009219605999533087,-0.050725486129522324,0.06228659674525261,0.023398645222187042,0.07730472087860107,0.021961813792586327,-0.01157072652131319,-0.028605636209249496,-0.015466262586414814,-0.0020923009142279625,0.028555244207382202,-0.017457077279686928,-0.0023369300179183483,0.015181797556579113,0.059457141906023026,-0.05064632371068001,-0.15090462565422058,-0.08726710081100464,0.007783717010170221,-0.021231727674603462,0.03371458128094673,0.014811325818300247,-0.09188102930784225,-0.09056656807661057,-0.06746640801429749,-0.08154711872339249,0.005952773150056601,-0.08816051483154297,0.0374126173555851,0.023135961964726448,-0.06205920875072479,0.029754871502518654,0.01891106553375721,-0.01695030741393566,0.06324272602796555,0.008402380160987377,0.07527368515729904,0.01830614171922207,-0.027884239330887794,0.02785538323223591,0.031960200518369675,0.03447851538658142,0.003925876226276159,-0.029645634815096855,-0.020502572879195213,0.001976574771106243,-0.03740723431110382,0.061149634420871735,0.07409272342920303,0.03855736926198006,0.08370424807071686,-0.08417904376983643,-0.044889919459819794,-0.13417360186576843,0.06416047364473343,-0.0017779723275452852,-0.010762582533061504,-0.011262928135693073,-0.0052421316504478455,-0.08337870240211487,-0.06983834505081177,0.10380058735609055,-5.593974475445765e-33,0.03036520816385746,-0.049760498106479645,-0.033381495624780655,0.054552335292100906,0.10588663816452026,-0.02907560020685196,0.05119037255644798,-0.03483613580465317,0.04441823437809944,0.06883934885263443,-0.04090137034654617,-0.052050624042749405,0.012259913608431816,-0.09581181406974792,-0.04503456875681877,0.04454851150512695,0.03744320943951607,0.017951833084225655,0.04727168753743172,-0.0012233266606926918,0.009912478737533092,0.03267297148704529,-0.037493251264095306,0.013803554698824883,0.023773325607180595,0.057535961270332336,0.0264105424284935,-0.06334342062473297,-0.020752927288413048,0.009120523929595947,-0.07145007699728012,0.08245823532342911,0.06646066904067993,0.05059822276234627,-0.05410691350698471,0.016243979334831238,0.031020227819681168,-0.052055127918720245,-0.04863465949892998,0.04058558866381645,-0.05387322977185249,-0.028496714308857918,0.012276293709874153,-0.10657095164060593,-0.0482015497982502,-0.055201396346092224,-0.014488606713712215,-0.03230176493525505,-0.00564891891553998,0.08376164734363556,0.030503468587994576,0.07674755901098251,0.003338937647640705,-0.005787669215351343,-0.014434311538934708,-0.07939218729734421,0.01626855880022049,0.026402948424220085,-0.005119591020047665,0.034487348049879074,-0.05000012740492821,0.10811328142881393,-0.056180793792009354,-0.050364505499601364,-0.05923263356089592,0.003748877439647913,-0.046401698142290115,-0.007067738100886345,-0.03971279785037041,0.03604913502931595,-0.052348542958498,0.00804381724447012,-0.030498836189508438,0.006414137315005064,-0.007636085152626038,-0.006960111670196056,-0.08388689160346985,-0.012350687757134438,0.019486011937260628,0.02895471267402172,0.08733652532100677,-0.026766205206513405,0.08820810168981552,0.03144063800573349,0.0012769884197041392,-0.04002434015274048,0.0597650371491909,-0.005914220120757818,-0.03549261763691902,0.004335185047239065,-0.09841284900903702,0.04983936995267868,-0.020043225958943367,-0.026543712243437767,0.08350437134504318,2.663349142068735e-33,-0.017801545560359955,0.014219950884580612,-0.005851963069289923,0.059483956545591354,0.0256919227540493,0.0010860568145290017,-0.029427772387862206,-0.011431396007537842,0.03582742065191269,-0.007704142015427351,0.02426587976515293,0.022532377392053604,-0.04216053709387779,0.044965874403715134,0.11032571643590927,0.045305367559194565,0.0032812280114740133,-0.028864270076155663,-0.03674408420920372,0.11330597847700119,0.08109214156866074,0.019586609676480293,-0.03495287895202637,-0.043077077716588974,-0.06525054574012756,0.10684588551521301,-0.00872763991355896,0.0242652278393507,-0.04884588345885277,0.00919316429644823,0.002123084617778659,-0.06970596313476562,-0.06039881333708763,0.022921212017536163,-0.04308607429265976,0.039801035076379776,0.007222320884466171,0.09198945015668869,-0.07494806498289108,-0.04410654678940773,0.04873867705464363,-0.01577959954738617,-0.024004729464650154,0.12122899293899536,0.022649837657809258,0.002123880898579955,-0.056728631258010864,-0.10905533283948898,0.06382284313440323,-0.021229146048426628,-0.003727386239916086,-0.03875163570046425,-0.07241079956293106,0.03298133611679077,-0.05423358082771301,0.04868049919605255,-0.003685502102598548,-0.022949742153286934,0.031111156567931175,-0.06192527338862419,-0.04504783824086189,0.02638990432024002,-0.05848783999681473,-0.03551395609974861,-0.027448244392871857,-0.03596924617886543,0.00846475176513195,0.02374553307890892,-0.06457708030939102,-0.042552635073661804,0.019602729007601738,0.02246062457561493,0.018996791914105415,0.0071156746707856655,-0.014932694844901562,0.16979126632213593,-0.03398190811276436,0.0030053623486310244,0.004708918277174234,-0.0009123329073190689,-0.06314902752637863,-0.009873871691524982,-0.0630643293261528,-0.02683807723224163,0.08677515387535095,0.08352446556091309,-0.0221388079226017,-0.08611831068992615,0.004381497856229544,0.007849683053791523,0.06199951097369194,0.014486677944660187,0.03176465630531311,-0.008952704258263111,-0.01680174469947815,-1.5722502411108508e-8,-0.040068890899419785,0.02747219428420067,-0.0406142920255661,-0.0009473482496105134,-0.026782438158988953,0.04322505369782448,0.0958559438586235,0.034149136394262314,0.024677271023392677,0.11679240316152573,-0.005137314088642597,0.03856482729315758,-0.08522322028875351,0.048160240054130554,-0.019899046048521996,-0.04973120987415314,-0.12314163893461227,-0.14254631102085114,-0.03523266315460205,0.02164890430867672,-0.07320643216371536,-0.03781040757894516,-0.032081589102745056,0.017277855426073074,0.00595639506354928,-0.060138821601867676,-0.016786592081189156,0.006882945541292429,0.02512238919734955,0.02131587266921997,0.06164328381419182,-0.018302064388990402,-0.0549473911523819,-0.0212850421667099,0.0158265121281147,0.030701443552970886,0.08663277328014374,0.009016798809170723,-0.016987403854727745,-0.05987817049026489,-0.1039978638291359,-0.019809262827038765,-0.0564996674656868,-0.0721391886472702,0.06655999273061752,0.0073300935328006744,-0.006349614355713129,0.05028196796774864,-0.05137522518634796,-0.09595915675163269,0.024373752996325493,-0.046965427696704865,-0.0026888693682849407,-0.022308437153697014,0.09224233031272888,-0.020922048017382622,-0.0031377116683870554,-0.07742961496114731,0.04188881814479828,0.003002543468028307,-0.07701054960489273,-0.04928850755095482,-0.029972542077302933,0.002576293423771858]},{"text":"But Benjamin pushed her aside and in the midst of a deadly silence he read: \"'Alfred Simmonds, Horse Slaughterer and Glue Boiler, Willingdon.","book":"Animal Farm","chapter":6,"embedding":[-0.0020103577990084887,0.0339723601937294,0.00495259091258049,0.021699650213122368,0.008706357330083847,0.03561026602983475,0.030423371121287346,0.043250393122434616,-0.018382618203759193,-0.032691311091184616,-0.030299177393317223,-0.0018350222380831838,0.012209371663630009,-0.0865994244813919,-0.06270577013492584,0.06499788165092468,-0.010337615385651588,0.03428773581981659,-0.06531039625406265,0.008053426630795002,-0.06328925490379333,0.022532621398568153,0.034096818417310715,-0.026172609999775887,0.01916329190135002,0.015772810205817223,-0.05472233146429062,0.009110886603593826,0.0290702972561121,0.08326273411512375,-0.07332467287778854,-0.10079950094223022,0.02702733874320984,-0.0012451634975150228,-0.0396399050951004,-0.007509070448577404,0.10196362435817719,0.021850597113370895,0.0028211064636707306,0.006531521212309599,-0.02048059180378914,0.009242837317287922,-0.09285956621170044,0.025779571384191513,-0.012962038628757,-0.01925269141793251,-0.0035378294996917248,-0.04321301728487015,0.046157725155353546,-0.04539577290415764,-0.04386129230260849,-0.03358832374215126,-0.04656490683555603,-0.02807048335671425,0.08668344467878342,0.016025716438889503,-0.014892257750034332,0.04608479514718056,0.028434673324227333,0.04040105268359184,-0.024308297783136368,0.022273285314440727,0.017808569595217705,0.04227783903479576,0.04627983272075653,-0.019754726439714432,-0.045234985649585724,0.10884087532758713,-0.047186192125082016,0.001976263476535678,0.10472539812326431,-0.002261341782286763,-0.014293660409748554,-0.10115983337163925,-0.0488637238740921,-0.01012350246310234,0.0003486076311673969,-0.028764262795448303,0.048649124801158905,0.024386731907725334,-0.09649881720542908,-0.02325078658759594,-0.01268984004855156,0.007618195377290249,-0.04416055604815483,0.0021432691719383,0.0440295971930027,-0.14305798709392548,0.02233288437128067,-0.004325517453253269,-0.07750308513641357,-0.11940287053585052,-0.0666651651263237,0.08987703919410706,0.04309716075658798,-0.017710326239466667,0.03545917943120003,0.07510118931531906,-0.0825338363647461,0.008831324055790901,0.02562836743891239,0.06209087371826172,-0.10090715438127518,-0.0042247474193573,-0.04623950645327568,-0.031113380566239357,-0.05402543768286705,-0.026900991797447205,-0.03187308460474014,0.019864397123456,0.035352546721696854,-0.057892944663763046,-0.03772231563925743,0.05002547800540924,0.024907689541578293,-0.007270567584782839,-0.0389648973941803,-0.02987567149102688,-0.04454265162348747,0.023955121636390686,0.05760517716407776,0.06919021904468536,-0.11927224695682526,0.05898557975888252,0.018562426790595055,-0.08246409147977829,0.09258672595024109,-6.33006738489175e-34,0.027256347239017487,-0.0005631629610434175,-0.049842555075883865,0.081751249730587,0.1083269789814949,0.0238502137362957,0.0035624585580080748,0.033248040825128555,0.0056521655060350895,0.012752538546919823,-0.03219820559024811,-0.0505414754152298,-0.0411592572927475,-0.02520429715514183,-0.09562263637781143,-0.03241850808262825,0.06833471357822418,-0.03633060306310654,0.1003655269742012,-0.04125481843948364,0.027807125821709633,0.043599504977464676,-0.07579874247312546,-0.006514975801110268,-0.04663378372788429,-0.04372837767004967,0.008652044460177422,-0.012616598047316074,0.043209258466959,0.02472240850329399,-0.07114395499229431,0.03939645737409592,0.07241169363260269,0.0045323604717850685,0.006714929360896349,0.04940130189061165,-0.08188432455062866,-0.009969979524612427,-0.11713924258947372,0.020044421777129173,0.00932801142334938,0.02656887099146843,0.00046784000005573034,-0.01996205747127533,-0.10369127988815308,0.04884389787912369,0.006066898349672556,0.02517479471862316,0.08981306105852127,-0.08086676895618439,-0.027257448062300682,0.05210993438959122,0.04217268526554108,0.017076458781957626,0.01742442697286606,0.020691948011517525,0.01674644649028778,-0.004602035041898489,-0.010590757243335247,-0.018550381064414978,0.023837313055992126,0.0021027512848377228,0.024475108832120895,0.073670893907547,-0.01497568842023611,-0.03704201057553291,-0.10561361908912659,-0.06474723666906357,0.016474993899464607,0.010487464256584644,-0.13833238184452057,0.07853518426418304,-0.03807568922638893,-0.10646763443946838,-0.04457033425569534,0.042232614010572433,-0.02394223026931286,-0.02484477311372757,-0.01257386989891529,-0.10843086242675781,0.07096486538648605,-0.08031068742275238,-0.07325002551078796,0.07736583054065704,-0.11597057431936264,-0.0729401707649231,-0.034312378615140915,-0.029602110385894775,-0.01498239953070879,0.03188309445977211,0.013248534873127937,-0.03909992054104805,0.004348546266555786,-0.05142240598797798,-0.04213377460837364,-1.757988535853194e-33,-0.02777799591422081,-0.022098446264863014,0.016523001715540886,0.0680474191904068,0.010394691489636898,0.04466541111469269,-0.049932170659303665,-0.04138997197151184,0.022565973922610283,-0.08759955316781998,-0.01866125501692295,-0.032572418451309204,0.010392566211521626,0.08138362318277359,-0.032651543617248535,0.036941204220056534,0.021582068875432014,-0.01420488953590393,0.0635007917881012,0.02795431576669216,-0.057346612215042114,-0.04808805137872696,-0.045415524393320084,-0.08654353767633438,0.008824145421385765,0.08283016830682755,-0.0008141810540109873,-0.10254564881324768,0.00042862514965236187,-0.052929531782865524,-0.0018787964945659041,-0.021710874512791634,-0.029151225462555885,-0.008545015007257462,-0.04045240208506584,0.1014215424656868,0.057817667722702026,-0.027702700346708298,0.003757557598873973,-0.017837461084127426,0.0836247131228447,-0.024748271331191063,-0.030105242505669594,0.048806704580783844,0.019349992275238037,0.02812490426003933,0.015058903023600578,-0.03723430633544922,0.022738559171557426,0.054204072803258896,0.0667528361082077,0.055364858359098434,-0.0005719661712646484,0.049147117882966995,0.06137418374419212,0.009992651641368866,0.03403036296367645,-0.06085985526442528,0.0071646966971457005,-0.04921170324087143,-0.03279166668653488,-0.00529894744977355,-0.011286245658993721,0.0649346113204956,-0.010894106701016426,0.0031354944221675396,0.005733099300414324,0.01711125671863556,-0.00030224857619032264,-0.03154788538813591,0.03721548989415169,0.05043242871761322,0.09514922648668289,-0.01660609245300293,0.0022493319120258093,-0.02114483155310154,0.007547192741185427,-0.14177244901657104,-0.03665858879685402,0.023004019632935524,0.0006687308195978403,-0.063670314848423,0.034685827791690826,0.09916554391384125,0.028383200988173485,0.03328757733106613,0.028002215549349785,0.0246102474629879,-0.006163659505546093,0.022957541048526764,0.07408161461353302,-0.050935130566358566,0.12089816480875015,0.0041865454986691475,-0.016417400911450386,-3.032941719993687e-8,-0.04397047311067581,-0.05380406230688095,-0.14682739973068237,-0.03369351848959923,0.05154500901699066,0.005529078654944897,0.002459897892549634,0.027897488325834274,-0.03756462782621384,0.11417333781719208,-0.049670908600091934,0.027400948107242584,-0.015208553522825241,-0.009413449093699455,0.07266416400671005,-0.0008843133691698313,0.05723228678107262,-0.17021091282367706,-0.01092655397951603,-0.024578433483839035,0.008971957489848137,0.03386841341853142,0.0023191985674202442,-0.09210926294326782,-0.029729047790169716,0.003351256949827075,-0.014725583605468273,0.02725071646273136,-0.012050763703882694,0.050199151039123535,-0.028409121558070183,0.0486966073513031,-0.053241852670907974,-0.060545165091753006,-0.01645537279546261,0.04721291363239288,0.11370030045509338,0.023009568452835083,0.0334581583738327,-0.055034663528203964,0.04787372425198555,0.05483127012848854,0.0027518782299011946,0.043170005083084106,0.12354885041713715,-0.01815907470881939,0.03329607471823692,-0.008042316883802414,0.010997682809829712,0.026030370965600014,0.0611104853451252,0.047940559685230255,0.13019892573356628,0.015037762932479382,0.007748991250991821,0.024795228615403175,-0.02060030959546566,-0.029416358098387718,-0.0525909885764122,0.045247774571180344,-0.03474944457411766,0.014868008904159069,0.04160090908408165,-0.025775283575057983]},{"text":"All the animals followed, crying out at the tops of their voices.","book":"Animal Farm","chapter":7,"embedding":[0.06778111308813095,0.05166192725300789,0.10302778333425522,0.028542952612042427,0.033489663153886795,0.012228562496602535,-0.08710222691297531,-0.07335896044969559,0.044570308178663254,-0.0021334486082196236,0.009916219860315323,-0.025845075026154518,0.021225808188319206,-0.04013294726610184,-0.0360705740749836,-0.009238028898835182,-0.06109826639294624,0.007064317353069782,-0.003776927012950182,-0.09047088772058487,-0.01574336178600788,0.061814114451408386,-0.02039572037756443,0.0669679120182991,-0.03784966468811035,0.06544733047485352,-0.08969573676586151,-0.05879130959510803,0.01846403442323208,0.0005463917041197419,-0.06677725166082382,-0.05693265423178673,0.05928243696689606,0.02505701780319214,0.005257250741124153,0.018810905516147614,0.04689741134643555,-0.04626869782805443,0.04331103339791298,-0.02613878808915615,0.05983825773000717,0.039591655135154724,0.021372217684984207,-0.030595390126109123,-0.020643586292862892,-0.017044799402356148,-0.11743190139532089,-0.07213776558637619,0.08607657253742218,-0.02045014128088951,0.0017341910861432552,-0.03588109463453293,0.00030530046205967665,0.029096564278006554,-0.008288370445370674,-0.05560572072863579,0.050941020250320435,-0.07642043381929398,0.07179965823888779,-0.037483252584934235,0.007169382181018591,0.020102007314562798,0.035274140536785126,0.07567311823368073,-0.012114714831113815,-0.0062306709587574005,0.016266843304038048,0.004786189179867506,0.018556738272309303,0.11006879061460495,0.04909241199493408,-0.03282441198825836,0.10779781639575958,-0.0678410604596138,-0.061475638300180435,-0.0028831083327531815,0.01133474800735712,-0.09298022091388702,0.04785861447453499,-0.02530461736023426,0.02322433516383171,-0.09258337318897247,-0.0077972193248569965,-0.049879252910614014,0.07965067028999329,-0.033430423587560654,0.03209240362048149,-0.06513941287994385,-0.09692268818616867,0.09118285030126572,-0.051669079810380936,-0.10680235922336578,-0.01464665587991476,0.08128679543733597,0.0344088152050972,-0.000020225306798238307,0.003695867955684662,-0.010891161859035492,0.08915110677480698,0.030108915641903877,-0.007528915535658598,-0.03308746963739395,0.06877168267965317,-0.10239653289318085,0.016128933057188988,-0.03167000412940979,-0.09628630429506302,-0.007445880211889744,-0.019036494195461273,-0.001709116157144308,-0.13379205763339996,-0.0023669670335948467,0.01249853428453207,0.08283217251300812,0.04477783665060997,0.00797789916396141,-0.0419531986117363,-0.07933502644300461,-0.018010364845395088,0.040785420686006546,0.05702393874526024,0.07779768109321594,-0.03922086954116821,0.02871798165142536,0.11997750401496887,0.06981964409351349,-0.0580163411796093,-3.822978359916753e-33,0.11590346693992615,-0.06361406296491623,-0.015453930012881756,-0.05285104736685753,0.04882528632879257,0.021657871082425117,-0.026620494201779366,-0.024448061361908913,0.025571562349796295,-0.004447802435606718,-0.06343893706798553,-0.02243378944694996,-0.046218886971473694,-0.07316717505455017,-0.08375415205955505,-0.07283469289541245,-0.003378109773620963,0.010899338871240616,-0.013374997302889824,-0.026281757280230522,-0.06753028184175491,0.06521549075841904,-0.02035755105316639,0.03037334606051445,0.002489390317350626,0.004318824503570795,-0.02867829240858555,-0.05901196226477623,-0.04394225403666496,0.03800071403384209,-0.038649946451187134,-0.09245580434799194,-0.02464083582162857,0.03513450548052788,0.005347179248929024,-0.016887784004211426,0.021942563354969025,-0.06521596759557724,-0.014295395463705063,-0.000892459589522332,0.03179716691374779,0.0007671992061659694,-0.004290423821657896,-0.015093044377863407,-0.04695149511098862,0.09626137465238571,-0.1260932832956314,0.07190825045108795,0.019065650179982185,0.08869848400354385,-0.0023148846812546253,0.05352909117937088,0.039459504187107086,-0.03337783366441727,0.03297874331474304,-0.0007278056582435966,0.034209880977869034,-0.01386177632957697,-0.014459810219705105,-0.003643218893557787,0.02674989216029644,-0.0003167087270412594,0.045635223388671875,-0.05747315287590027,0.09815257787704468,-0.053076859563589096,-0.04492487758398056,-0.01272757351398468,0.02290443889796734,-0.08679648488759995,-0.04991557076573372,-0.017635086551308632,-0.00974880252033472,-0.08320649713277817,-0.04806060343980789,-0.00028390498482622206,-0.014443865977227688,-0.06149505078792572,-0.016074681654572487,-0.0317004919052124,0.013581781648099422,0.05348619446158409,-0.05001428723335266,0.06932161748409271,0.08515690267086029,0.03451784327626228,0.0149907935410738,-0.10053999722003937,-0.01884360797703266,-0.008092863485217094,0.004312568809837103,0.04807380214333534,0.03962492570281029,-0.07468974590301514,-0.07642067223787308,1.778285833543041e-33,0.017584888264536858,0.09937527775764465,0.04176963120698929,0.02658339962363243,-0.039536770433187485,-0.008089910261332989,-0.019588137045502663,0.05554309859871864,0.09923367202281952,0.07117988169193268,0.010377416387200356,-0.07454908639192581,0.040080804377794266,0.0019433546112850308,-0.015010987408459187,-0.03627800568938255,0.08972536772489548,-0.01035559456795454,0.08433161675930023,-0.077228844165802,-0.055720943957567215,-0.009898189455270767,0.056269124150276184,-0.007000421639531851,0.04299132898449898,0.022186271846294403,0.00974315870553255,-0.010277236811816692,0.05805414170026779,-0.0897768959403038,0.06694216281175613,-0.004845392424613237,-0.02935025654733181,0.07446812093257904,0.03552369400858879,0.0770120695233345,0.0072983731515705585,0.07750092446804047,-0.05562163516879082,-0.06556552648544312,0.037056148052215576,-0.034038010984659195,-0.08561879396438599,0.07516570389270782,0.00953004602342844,0.02903495356440544,0.023278482258319855,0.02593541145324707,-0.07236292958259583,0.05551043897867203,-0.05595875903964043,-0.025862781330943108,0.05035380274057388,0.004737204406410456,-0.013468565419316292,-0.02949068509042263,0.00804959237575531,-0.004524658899754286,-0.008815338835120201,-0.08079654723405838,-0.04524731636047363,0.017399447038769722,0.02057565003633499,-0.012229617685079575,-0.006158099975436926,-0.01842421479523182,0.012102589011192322,0.0022680177353322506,0.010393851436674595,-0.051400624215602875,0.021630745381116867,0.066051185131073,-0.12744303047657013,0.010832816362380981,0.019372228533029556,0.07585802674293518,-0.08704690635204315,-0.07769697159528732,0.022593164816498756,-0.04227617383003235,-0.013897587545216084,-0.007048116996884346,-0.0021704549435526133,0.07227406650781631,0.015984689816832542,0.026623697951436043,0.050320904701948166,0.06441032886505127,-0.0064729019068181515,0.09065369516611099,-0.0003727392468135804,0.06712161749601364,0.13754481077194214,0.027935611084103584,0.0014995933743193746,-1.950058248212372e-8,-0.07024112343788147,0.013315816409885883,-0.07051797956228256,-0.001702948589809239,0.11907919496297836,0.002505386248230934,0.06889967620372772,0.052190326154232025,-0.017366617918014526,0.0689900740981102,-0.019456962123513222,0.010428107343614101,0.038259848952293396,0.05328911915421486,0.0016167628346011043,0.018299870193004608,-0.010920483618974686,-0.07659106701612473,0.013879052363336086,0.011163635179400444,-0.09041126817464828,0.012827943079173565,-0.05984571948647499,-0.05901183560490608,0.026942363008856773,0.003943103831261396,-0.07961898297071457,-0.05200691521167755,-0.04801503196358681,0.02390137128531933,-0.003663289826363325,0.00328436610288918,-0.06873658299446106,-0.025747627019882202,-0.02934052050113678,0.08125943690538406,-0.0163092203438282,-0.032528478652238846,0.07469464093446732,-0.03824237361550331,-0.030623337253928185,0.06786692887544632,0.06832577288150787,-0.010290389880537987,0.063975490629673,-0.017965370789170265,0.04167307913303375,-0.015264284797012806,0.0010877548484131694,-0.02379378117620945,-0.11001213639974594,0.015260498970746994,-0.05834655091166496,0.04562634229660034,0.041513219475746155,-0.03724248334765434,0.0037074193824082613,0.011479620821774006,0.015593471005558968,0.051076892763376236,0.031237557530403137,0.016627131029963493,-0.003744453890249133,0.0689660981297493]},{"text":"They're taking you to your death!\" All the animals took up the cry of \"Get out, Boxer, get out!\" But the van was already gathering speed and drawing away from them.","book":"Animal Farm","chapter":7,"embedding":[0.06493974477052689,0.10278384387493134,0.0537521168589592,0.04916170611977577,0.13478179275989532,0.001433284254744649,0.03660060837864876,-0.08248694986104965,0.04556645452976227,-0.008691472932696342,0.022297052666544914,0.01703316532075405,-0.012537198141217232,-0.03880691900849342,-0.06833956390619278,0.006915727164596319,0.024627506732940674,-0.05171193927526474,-0.03760366514325142,0.055084675550460815,0.00911522563546896,0.044303879141807556,0.02240114100277424,0.06495930999517441,-0.09387371689081192,0.05848313122987747,-0.059320881962776184,-0.007360120303928852,-0.02053876779973507,0.030139269307255745,-0.039286669343709946,-0.01114936824887991,-0.06448730826377869,0.03497781977057457,-0.04881739243865013,-0.017727332189679146,0.036474503576755524,-0.020108556374907494,0.06329912692308426,0.053549956530332565,0.01162491925060749,-0.04232444614171982,0.008164454251527786,-0.038887716829776764,0.014781367965042591,0.022877227514982224,-0.05371693894267082,-0.061900753527879715,0.09432880580425262,-0.026719985529780388,0.045632053166627884,0.011566020548343658,0.019250374287366867,0.013254161924123764,-0.022194424644112587,-0.04844234511256218,0.007284209597855806,0.013701952993869781,0.04582208767533302,-0.04801090061664581,-0.006096776109188795,0.08306646347045898,0.02077358402311802,0.08735043555498123,-0.04573030397295952,-0.05439676344394684,0.04316049814224243,0.05414614826440811,-0.027404602617025375,0.03979680687189102,-0.008820314891636372,-0.033151134848594666,-0.02121705561876297,-0.012341544963419437,0.014445439912378788,0.03670533001422882,0.009327325969934464,-0.0514100044965744,0.06891744583845139,-0.06475730240345001,0.00886524748057127,-0.1289270967245102,-0.07883258908987045,-0.00044244335731491446,0.029715226963162422,-0.014057732187211514,0.03990553319454193,-0.04253435507416725,0.0020670457743108273,0.018154719844460487,-0.05460480973124504,-0.09568657726049423,-0.05152024328708649,0.03458534926176071,0.01291524525731802,-0.048955511301755905,-0.015264242887496948,-0.00838508177548647,-0.029966233298182487,0.0543290451169014,0.03659111633896828,0.002167538506910205,-0.01783318631350994,-0.06262894719839096,0.04588676989078522,-0.017304284498095512,-0.011122092604637146,-0.015433882363140583,0.03819343075156212,0.012296535074710846,-0.05586134269833565,-0.028794491663575172,0.07782835513353348,0.09091225266456604,-0.005263941362500191,0.09749564528465271,-0.04224414750933647,-0.030895138159394264,-0.03945818543434143,0.04508500546216965,0.017619315534830093,0.00692185340449214,-0.06852544844150543,0.03035937435925007,0.05695503577589989,-0.025355540215969086,0.03576876223087311,-1.343366515392226e-33,-0.0017586565809324384,-0.051285069435834885,0.017971865832805634,-0.010760163888335228,0.09253858029842377,-0.09954947978258133,-0.10664504021406174,0.02918815240263939,0.04897052049636841,0.07567692548036575,-0.1411176174879074,-0.06480209529399872,0.018739715218544006,-0.05415422096848488,-0.04103058949112892,0.005177500657737255,-0.013089536689221859,-0.0751814991235733,0.09190632402896881,-0.0466509647667408,-0.028187835589051247,0.06392216682434082,-0.016919471323490143,0.06574477255344391,0.019225388765335083,0.016053594648838043,-0.10548019409179688,-0.010030041448771954,0.023300504311919212,0.03875428065657616,-0.09736382961273193,0.004497091751545668,0.00038459053030237556,0.018333222717046738,-0.05971965938806534,-0.025375420227646828,-0.0554959736764431,-0.054831963032484055,-0.053357843309640884,-0.024048684164881706,0.03119254671037197,-0.004572985228151083,-0.05819211155176163,0.014578549191355705,-0.0867544636130333,0.08131479471921921,-0.05070850998163223,-0.02066776528954506,-0.07816697657108307,0.07106012850999832,0.009259513579308987,0.014258261770009995,0.03903264179825783,-0.03318190202116966,0.00848330557346344,0.005806752946227789,0.06636602431535721,0.015799356624484062,-0.021983584389090538,0.021775996312499046,0.01331169530749321,0.05231432989239693,0.03159669414162636,0.014866729266941547,0.07843601703643799,-0.09795013815164566,-0.061786338686943054,0.04482021555304527,0.022241000086069107,-0.0002015837817452848,-0.021178409457206726,0.02981720119714737,-0.013343391939997673,-0.1484421044588089,0.025864936411380768,-0.008042347617447376,-0.028652077540755272,-0.010643978603184223,-0.004662595223635435,-0.04122624173760414,0.01945355162024498,0.04929502680897713,-0.04116755351424217,0.01321793720126152,0.11755520850419998,0.02893233299255371,-0.013849673792719841,-0.1363278180360794,0.011666960082948208,0.005408570636063814,-0.007952560670673847,0.028053781017661095,-0.007379394955933094,-0.05863874405622482,-0.0021144747734069824,-1.2177937803526583e-34,-0.008700020611286163,0.04472334682941437,0.00337849254719913,0.005479428917169571,0.04242927208542824,0.0322018601000309,-0.058058857917785645,0.046079110354185104,0.01974484510719776,0.012421845458447933,-0.09025253355503082,-0.0649130642414093,0.0031667358707636595,0.03939027339220047,0.09022670984268188,-0.13113850355148315,0.07822880148887634,-0.02210061438381672,-0.002407589228823781,-0.011799761094152927,-0.048697326332330704,-0.02045183628797531,0.010206741280853748,-0.046194251626729965,0.00879199244081974,0.045517340302467346,0.0560004785656929,0.00277130794711411,0.01952480524778366,-0.10067327320575714,0.00450871093198657,-0.06314325332641602,-0.014562725089490414,0.07332029938697815,0.022089017555117607,0.011340255849063396,-0.027611464262008667,0.04704442247748375,-0.10647360235452652,-0.0809529721736908,-0.05299457907676697,0.004393427632749081,-0.09530747681856155,0.045114755630493164,-0.03239746391773224,0.04105454683303833,0.02694319188594818,0.01698152907192707,-0.023113535717129707,0.038948629051446915,0.05491500720381737,-0.025331782177090645,0.031837597489356995,0.007322119548916817,-0.004986075684428215,-0.010735522024333477,-0.008753003552556038,-0.006618660409003496,0.08646663278341293,-0.06270895898342133,-0.04553079232573509,0.015137014910578728,-0.04640679433941841,0.06565167754888535,-0.008562302216887474,-0.0912860855460167,-0.011761341243982315,0.05288330838084221,0.034620966762304306,-0.035229261964559555,0.06333264708518982,0.06037841737270355,-0.0679454579949379,0.03812362998723984,-0.046772703528404236,-0.0057709296233952045,0.07281514257192612,-0.025869613513350487,0.027154363691806793,-0.05399024486541748,-0.0010135293705388904,-0.08950988948345184,0.0654255747795105,0.10965340584516525,0.021202368661761284,0.0194572564214468,-0.020095039159059525,0.08065865933895111,-0.0009266769047826529,0.02225719764828682,0.1331453174352646,0.0314408577978611,0.08629712462425232,0.08707939088344574,-0.05393300950527191,-2.998386250396834e-8,-0.01863163337111473,0.0171048566699028,-0.06427347660064697,-0.051116567105054855,0.06006953865289688,0.015474439598619938,0.011682870797812939,0.05064188316464424,-0.08082802593708038,0.06251928210258484,0.09758415073156357,0.04603303223848343,0.04634496942162514,0.06039925664663315,-0.022333163768053055,0.12788113951683044,-0.035993874073028564,-0.08860747516155243,-0.008144599385559559,-0.008773084729909897,-0.15061716735363007,-0.028567232191562653,-0.01897708885371685,-0.035459451377391815,0.03781234845519066,-0.015510574914515018,-0.021827299147844315,-0.019602403044700623,0.04646395891904831,-0.05012864992022514,-0.07797317951917648,0.044466532766819,-0.05264384672045708,0.03788454830646515,0.014984220266342163,0.015092370100319386,0.02072151005268097,0.047664936631917953,0.1106259748339653,-0.03656797483563423,-0.06953580677509308,0.07009116560220718,-0.0057307458482682705,0.004672296345233917,0.0036099462304264307,-0.024943683296442032,0.03953375667333603,0.03242165222764015,-0.05106427147984505,-0.08417825400829315,-0.052197106182575226,-0.01584039255976677,-0.01921168342232704,0.08921143412590027,0.05843471735715866,-0.04556460678577423,-0.060177531093358994,-0.052852753549814224,-0.04070321470499039,0.019520007073879242,0.007901459001004696,0.059914231300354004,-0.025051424279808998,0.0006169447442516685]},{"text":"But alas! his strength had left him; and in a few moments the sound of drumming hoofs grew fainter and died away.","book":"Animal Farm","chapter":7,"embedding":[0.08674982190132141,0.1123393252491951,0.03939361125230789,0.017850419506430626,0.008880671113729477,0.03355657309293747,0.06450563669204712,-0.007814950309693813,-0.040380943566560745,-0.0024629400577396154,0.02963622659444809,0.0025548781268298626,0.06154409050941467,-0.07071187347173691,0.012182417325675488,-0.01834464818239212,-0.003083795076236129,0.05516443029046059,-0.09479723125696182,-0.005378087051212788,-0.07566002756357193,0.124802365899086,-0.03192156180739403,0.00959153100848198,0.010254350490868092,-0.029169727116823196,-0.046610262244939804,-0.021498847752809525,0.0545327365398407,-0.033617716282606125,-0.006034407764673233,-0.06468135118484497,-0.049013927578926086,-0.0917210727930069,-0.10689734667539597,0.07063262164592743,0.05016350373625755,0.030585328117012978,-0.03141250088810921,0.03558364883065224,0.0017506224103271961,0.07099085301160812,-0.025424404069781303,-0.01705344393849373,-0.06261812895536423,-0.046437233686447144,-0.11328103393316269,-0.14267942309379578,0.06403614580631256,0.06697601824998856,-0.029355943202972412,-0.03182551637291908,0.10887059569358826,-0.012737727724015713,-0.041489988565444946,-0.0327419638633728,0.011047085747122765,0.013823559507727623,-0.02912861667573452,-0.02457653172314167,-0.08432543277740479,0.02993175759911537,-0.0013067267136648297,0.011677646078169346,0.08702756464481354,-0.05143823102116585,0.051421668380498886,-0.06212315335869789,0.02129083126783371,0.16895262897014618,0.018730221316218376,-0.007108351215720177,0.02364381216466427,-0.05680282413959503,-0.0053184544667601585,0.014785613864660263,-0.0314304493367672,-0.07062055915594101,0.054184168577194214,0.012126671150326729,0.018170246854424477,0.025164717808365822,-0.10643559694290161,-0.0061828698962926865,0.009595234878361225,0.023931782692670822,0.027621427550911903,-0.09166029095649719,-0.0669577419757843,0.022432370111346245,-0.011377952061593533,-0.03753039613366127,-0.04083772003650665,0.07422114163637161,0.08523983508348465,-0.045201901346445084,-0.05526779592037201,0.07631683349609375,-0.09087793529033661,0.004680011421442032,-0.012358997017145157,-0.009384016506373882,0.05725911259651184,0.02373076230287552,0.04503175988793373,0.03411181643605232,-0.08376108855009079,0.0034883145708590746,-0.016606401652097702,0.022704532369971275,-0.017686527222394943,-0.060671593993902206,0.02676682360470295,0.03998064994812012,0.038597095757722855,0.08985883742570877,-0.12426051497459412,-0.024581680074334145,-0.12628965079784393,0.025924040004611015,0.10220648348331451,0.002542429370805621,-0.00434046471491456,0.018485214561223984,0.002829598030075431,-0.049889516085386276,-0.0035480360966175795,-1.946647113965517e-33,0.027592815458774567,-0.08573353290557861,0.02226853184401989,-0.002002948196604848,0.17398880422115326,-0.06280506402254105,-0.04568714275956154,0.00856153853237629,0.044479094445705414,0.022540470585227013,-0.025084301829338074,-0.00514931371435523,0.014534581452608109,-0.09049012511968613,-0.06968621909618378,0.043614305555820465,-0.005973468068987131,0.0059718419797718525,0.05600658059120178,-0.07082860916852951,-0.019697917625308037,0.06360875070095062,-0.01670895703136921,-0.0027738064527511597,0.025869589298963547,0.016482794657349586,0.03373336046934128,-0.004195573274046183,-0.0535404272377491,0.03637570142745972,-0.03116569295525551,-0.020506715402007103,0.017974361777305603,-0.02094881422817707,-0.08706603199243546,-0.006298849359154701,0.006732602138072252,-0.026759924367070198,-0.040644556283950806,0.010415859520435333,0.06504498422145844,-0.024620017036795616,0.017889894545078278,-0.00013898429460823536,-0.05378586798906326,-0.039024341851472855,0.0145031176507473,0.03939102217555046,-0.0010932631557807326,0.004627946298569441,0.0603923425078392,-0.0015143740456551313,0.055563975125551224,0.0012251302832737565,0.05588255822658539,0.08252926170825958,0.022721251472830772,0.047598354518413544,0.014109157025814056,0.038629330694675446,0.04566871002316475,0.07162681221961975,0.11329669505357742,-0.000061006903706584126,-0.03955429419875145,-0.13712288439273834,-0.035168349742889404,-0.09147069603204727,-0.09006566554307938,0.019977815449237823,-0.00954362191259861,-0.030698338523507118,-0.06479806452989578,-0.08594314754009247,-0.008226115256547928,-0.04497503489255905,-0.06511873006820679,-0.01310647465288639,0.00506107322871685,-0.006736793089658022,0.05455249175429344,0.008869275450706482,-0.0525134839117527,0.03443315997719765,0.03224920108914375,0.0029161793645471334,0.05742080882191658,-0.1219332292675972,-0.08342108130455017,0.022373558953404427,-0.03607805818319321,0.010155122727155685,-0.018779391422867775,-0.11372220516204834,-0.049619585275650024,-1.9624707372955236e-33,-0.021383993327617645,0.04837048053741455,0.05597260594367981,0.07864002883434296,0.027683764696121216,0.021617025136947632,-0.01433764398097992,0.08061477541923523,-0.036385584622621536,-0.061211347579956055,0.038514185696840286,0.03395747020840645,-0.04267658665776253,0.014946598559617996,-0.020598767325282097,-0.013791471719741821,-0.08442583680152893,0.01534971408545971,0.04008518531918526,0.054574400186538696,0.050596367567777634,-0.03978437930345535,0.03717060759663582,0.004462829791009426,-0.04412338510155678,0.005848117638379335,-0.022569386288523674,-0.008492723107337952,-0.0510026253759861,-0.035945430397987366,-0.007117589004337788,-0.0635821744799614,0.00012064736074535176,-0.031150076538324356,0.0015558835584670305,0.05480947345495224,-0.02303702011704445,0.03312038630247116,-0.10034918785095215,-0.07391313463449478,-0.03195011243224144,0.017196625471115112,0.10023830085992813,0.041515085846185684,0.012982002459466457,0.005194028839468956,0.0024362755939364433,0.010602488182485104,-0.002992801833897829,0.028011418879032135,0.033166348934173584,-0.030941521748900414,0.09178508818149567,0.013456217013299465,-0.03316193073987961,0.0531570166349411,0.01125268917530775,-0.07061820477247238,-0.046055879443883896,-0.05060449242591858,-0.03837602213025093,-0.013014627620577812,-0.026051178574562073,0.035986777395009995,0.06023012101650238,0.06185322627425194,-0.02680470608174801,0.04466895014047623,-0.05556323751807213,-0.03485342115163803,0.09193506836891174,0.04673708975315094,-0.017050713300704956,0.05726926773786545,-0.06720897555351257,0.0860695093870163,-0.049614664167165756,-0.0604630671441555,-0.0077863167971372604,-0.05308146774768829,-0.01955251209437847,-0.02511107362806797,-0.011497554369270802,-0.04323291778564453,-0.00167705153580755,0.04850626364350319,0.011607417836785316,-0.022528907284140587,0.041850730776786804,0.03910699486732483,0.09954740107059479,0.0012136977165937424,0.1071738675236702,0.0013043972430750728,0.056610237807035446,-2.7726311913056634e-8,-0.087128646671772,0.08405983448028564,0.0014339126646518707,-0.02384171262383461,0.011080358177423477,-0.0006236362387426198,0.05661548301577568,-0.027088588103652,-0.048390522599220276,0.1377452313899994,-0.1060071587562561,0.0200590081512928,0.02093237265944481,0.10915201157331467,0.040119998157024384,-0.036818549036979675,-0.024967527016997337,-0.016801057383418083,-0.041276998817920685,-0.01785406842827797,-0.04574662074446678,0.007872355170547962,0.04802608862519264,-0.009003669023513794,-0.01845044270157814,0.008293363265693188,-0.008036832325160503,-0.02322349138557911,-0.012363898567855358,0.03411906585097313,-0.024964144453406334,0.0033506201580166817,-0.10724876821041107,0.004867242183536291,-0.012925239279866219,0.019859910011291504,-0.04602262005209923,-0.016651201993227005,-0.02983989007771015,0.0026536909863352776,-0.07231201231479645,0.04529212787747383,0.010937921702861786,-0.019523071125149727,0.038508493453264236,-0.04171602427959442,0.05604461207985878,0.034391433000564575,-0.04390512779355049,0.020161358639597893,0.08185389637947083,0.05777861550450325,0.01998230069875717,-0.019588446244597435,0.04784177243709564,-0.049098171293735504,-0.060400012880563736,0.04340853914618492,-0.07007120549678802,0.01982228457927704,0.010892530903220177,0.013203924521803856,0.017970465123653412,0.05778108164668083]},{"text":"Three days later it was announced that he had died in the hospital at Willingdon, in spite of receiving every attention a horse could have.","book":"Animal Farm","chapter":7,"embedding":[-0.03209357336163521,0.06667820364236832,0.03420998156070709,0.004777706228196621,0.037464164197444916,-0.038519762456417084,-0.00665739132091403,0.09545991569757462,0.009602361358702183,0.028047064319252968,-0.008767230436205864,0.007897523231804371,0.04255995526909828,0.010429815389215946,-0.045802850276231766,-0.036648016422986984,-0.019504059106111526,0.012022888287901878,-0.10039113461971283,0.06561249494552612,-0.023181339725852013,0.09570924192667007,0.005133478436619043,0.0022005168721079826,0.028116511180996895,-0.05368908867239952,-0.0608164519071579,0.01972377859055996,-0.02285325527191162,0.05843954160809517,-0.06490916013717651,-0.10192325711250305,0.024976374581456184,-0.06413056701421738,-0.10525418817996979,0.038559675216674805,0.0355977788567543,-0.01892824098467827,-0.03126208856701851,0.0031816589180380106,0.01809040457010269,0.037959035485982895,0.006690813694149256,0.09185130894184113,0.05106918141245842,-0.02928774431347847,-0.03406432643532753,-0.06065148860216141,0.10636584460735321,0.0012134156422689557,0.002417259616777301,-0.019624648615717888,0.04875980690121651,-0.0052541764453053474,-0.06193842738866806,-0.019449515268206596,-0.061796825379133224,0.04940806329250336,-0.05983633175492287,0.013265786692500114,-0.03378819674253464,0.01457018032670021,0.07490134239196777,0.0009069305378943682,0.01169391069561243,0.02700675092637539,-0.04385846108198166,-0.058593910187482834,0.028795303776860237,0.023088980466127396,0.1285437047481537,-0.05391944199800491,0.024978656321763992,-0.14016756415367126,-0.06180109083652496,0.0098117021843791,0.046875715255737305,0.017192736268043518,0.056540634483098984,-0.049966249614953995,-0.034707095474004745,-0.049345772713422775,0.008614551275968552,0.017314892262220383,0.04540731757879257,-0.005693450570106506,0.007630230858922005,-0.10357435792684555,-0.0788452997803688,0.007768560666590929,-0.037156254053115845,-0.027231188490986824,-0.09088780730962753,-0.0020563830621540546,0.041659530252218246,0.013552235439419746,0.016376394778490067,0.07961224019527435,-0.07752013951539993,0.01903446577489376,0.02732936665415764,0.042240969836711884,0.016916925087571144,-0.04128812626004219,-0.00013447654782794416,0.04334217682480812,-0.0737660750746727,-0.0028111408464610577,-0.04529732093214989,-0.020459424704313278,-0.042376808822155,-0.042162053287029266,0.0950687825679779,0.025073174387216568,0.03293437510728836,0.10701234638690948,-0.12338385730981827,-0.027694206684827805,-0.05385078862309456,-0.0073395660147070885,0.019088853150606155,0.035796310752630234,-0.0008634051191620529,-0.04140300676226616,0.023090746253728867,0.010898314416408539,0.10473492741584778,-3.5994143954117236e-33,0.043135661631822586,-0.12977616488933563,-0.023072073236107826,-0.0164171289652586,0.08210908621549606,0.002050206298008561,-0.07630405575037003,0.040322065353393555,0.06219596415758133,-0.022690072655677795,0.07218827307224274,-0.0431114137172699,0.0030002184212207794,-0.11269675195217133,-0.09096360951662064,0.03197789564728737,0.06402133405208588,0.004139646887779236,0.027946241199970245,-0.07158869504928589,0.043324314057826996,-0.022118916735053062,-0.043273549526929855,-0.016860082745552063,-0.02609315514564514,0.02352103590965271,0.005873406305909157,0.046129774302244186,0.03420776128768921,0.011412305757403374,-0.073858842253685,-0.01931188628077507,0.11139647662639618,-0.03550506755709648,-0.051685359328985214,-0.0071944259107112885,-0.0648178681731224,-0.014900830574333668,-0.034684401005506516,0.05588272586464882,0.08417285978794098,0.04108637571334839,0.0022432857658714056,-0.020988857373595238,-0.0973844900727272,0.04046962782740593,0.01687280461192131,0.08306602388620377,0.05046374350786209,-0.011130081489682198,0.07642843574285507,-0.041516389697790146,0.030572330579161644,-0.020727233961224556,-0.006274127867072821,0.09282936155796051,-0.021634718403220177,-0.005182098131626844,0.019497182220220566,0.03435009717941284,0.07359132915735245,0.060704153031110764,0.03958180919289589,0.017423154786229134,-0.05266544967889786,-0.12101192027330399,-0.07893137633800507,-0.006169616710394621,-0.020218713209033012,-0.007527495268732309,-0.035674650222063065,0.0647771880030632,-0.10371177643537521,-0.11087946593761444,-0.03734014928340912,-0.06454730778932571,-0.011804550886154175,-0.046277765184640884,-0.05561421439051628,-0.03208314999938011,0.08510946482419968,-0.03613375127315521,-0.015309082344174385,0.07660481333732605,0.020907456055283546,0.06022820621728897,0.028168577700853348,-0.019391942769289017,-0.10216326266527176,0.0036121548619121313,0.052007440477609634,0.035605501383543015,-0.05295974016189575,-0.07514388859272003,0.09104941785335541,1.1586705471036243e-34,-0.02125270664691925,-0.016321998089551926,0.033203769475221634,0.06904736161231995,0.033874448388814926,-0.06850781291723251,-0.07995927333831787,0.06074576824903488,0.03286287561058998,-0.048148125410079956,-0.0093118567019701,0.006308139767497778,-0.007781850174069405,0.00513381278142333,-0.03553912416100502,0.012919853441417217,-0.02627900242805481,-0.06317595392465591,-0.01588374748826027,0.04928044602274895,0.007813146337866783,-0.03836296498775482,-0.046012457460165024,-0.03218110278248787,-0.0003234899777453393,0.07387446612119675,-0.049684613943099976,-0.023113910108804703,-0.05573536455631256,-0.05566281080245972,0.03538675978779793,0.005980327725410461,-0.0024882464203983545,0.05443061143159866,-0.018605776131153107,0.0722590833902359,0.06242991238832474,0.018836313858628273,-0.03891771286725998,0.0008234907872974873,0.12991660833358765,-0.07082388550043106,-0.004264126997441053,0.007428391836583614,0.026452770456671715,-0.014881177805364132,0.02427920512855053,0.0064804935827851295,0.06429567188024521,0.06625822931528091,0.031877387315034866,0.0035344543866813183,0.02518407814204693,0.041904252022504807,0.07394803315401077,0.006435899529606104,-0.0713440403342247,-0.12100321799516678,0.003115571103990078,-0.06761755049228668,-0.05708565562963486,-0.07321958988904953,0.007373035419732332,0.03043665923178196,-0.017674582079052925,-0.006121554411947727,-0.021572871133685112,0.0066709876991808414,-0.010901076719164848,-0.03141336143016815,0.06022702902555466,0.054075006395578384,-0.03632856532931328,0.023977315053343773,0.007413701619952917,0.06256768852472305,-0.021842539310455322,-0.00022616030764766037,0.03336554020643234,-0.009872638620436192,-0.04521245136857033,-0.07986219227313995,0.02882315218448639,0.02634373866021633,0.017024461179971695,-0.013408919796347618,0.03970858454704285,-0.0004818819579668343,0.034213270992040634,-0.06297755986452103,0.016035832464694977,0.010066280141472816,0.0828353613615036,0.004491365049034357,-0.030110029503703117,-2.6551139953312486e-8,0.007255489006638527,0.01144750788807869,-0.08058768510818481,-0.04237056151032448,0.03301180154085159,-0.03446516767144203,0.02665289305150509,0.07634816318750381,-0.03413520008325577,0.1321512907743454,-0.022417137399315834,0.15205693244934082,-0.05418643355369568,-0.05999763309955597,0.033636726438999176,-0.0036562897730618715,-0.005037788767367601,-0.08577235788106918,-0.003333405824378133,-0.0410030260682106,-0.11014969646930695,-0.04855722934007645,-0.016694001853466034,-0.10740652680397034,0.06475599110126495,-0.028557760640978813,0.010333298705518246,0.027745310217142105,-0.034422993659973145,0.0060302140191197395,-0.03416262939572334,-0.03785638138651848,-0.06779886037111282,-0.059669408947229385,-0.010397957637906075,-0.019951695576310158,0.05493572726845741,0.04490309953689575,0.0601227730512619,-0.08719465136528015,0.03473369777202606,0.05225840210914612,0.032883334904909134,0.042617518454790115,0.07468269765377045,-0.017713574692606926,0.03987880423665047,0.08334934711456299,-0.0013064632657915354,-0.0449753999710083,-0.03320907801389694,0.0019214466447010636,0.10661303997039795,0.011133654974400997,0.012529050000011921,0.0156524907797575,0.0036022979766130447,0.028514746576547623,-0.0662318542599678,0.038226984441280365,-0.06349452584981918,-0.0020655649714171886,-0.007772041484713554,0.06394490599632263]},{"text":"He fell silent for a moment, and his little eyes darted suspicious glances from side to side before he proceeded.","book":"Animal Farm","chapter":8,"embedding":[0.024515533819794655,-0.01698368601500988,0.016660241410136223,0.04242363199591637,0.1180768832564354,-0.023870527744293213,0.1167697161436081,-0.041522275656461716,-0.024227742105722427,-0.09369654953479767,0.06314491480588913,-0.010972668416798115,0.00720355985686183,-0.0669228658080101,0.013809552416205406,-0.0175242368131876,0.0035044318065047264,0.06914710998535156,-0.02610066719353199,0.06284283846616745,-0.002861910266801715,-0.0589909628033638,0.03349137678742409,-0.06842785328626633,-0.057354241609573364,0.012783906422555447,0.07984615117311478,-0.04788314923644066,0.02146589197218418,-0.027746150270104408,-0.0057119582779705524,-0.02265666238963604,-0.027661824598908424,0.008319838903844357,-0.04460623115301132,-0.010912698693573475,0.08062832057476044,0.03182529658079147,0.038951825350522995,-0.057319216430187225,-0.07432904839515686,0.04358881339430809,-0.10203413665294647,0.008634188212454319,-0.06654984503984451,-0.03523019701242447,0.03624902665615082,-0.019188521429896355,0.12025054544210434,0.027621347457170486,-0.05380754917860031,-0.055782563984394073,-0.037097781896591187,-0.04933605715632439,0.002174907363951206,0.004182850942015648,-0.01994529366493225,0.007599234580993652,-0.006575413979589939,0.04733634367585182,-0.00787007249891758,-0.10692091286182404,0.08230344206094742,-0.00825317669659853,-0.02813963033258915,0.038598354905843735,-0.002432600362226367,-0.07869993895292282,0.08082225173711777,0.048156917095184326,0.009961756877601147,-0.014379791915416718,-0.002285422757267952,-0.005209418945014477,-0.1097465232014656,-0.03886987641453743,0.06815753877162933,-0.08326612412929535,0.08944636583328247,-0.006296069826930761,-0.030060935765504837,0.027312684804201126,-0.07347411662340164,0.022671451792120934,-0.03309614583849907,-0.08068735897541046,0.02547340653836727,-0.07348953932523727,-0.06334783881902695,0.008805138990283012,0.0036856387741863728,-0.02559739537537098,-0.09543796628713608,0.019594933837652206,0.05182095617055893,-0.001287367194890976,-0.03785771504044533,0.007699625100940466,-0.02470620535314083,-0.07603832334280014,0.06280109286308289,0.05295410007238388,-0.008251151069998741,-0.008249649778008461,-0.021613305434584618,0.030073033645749092,0.012668468989431858,0.007690356578677893,-0.0043678004294633865,0.10500726103782654,-0.022756371647119522,-0.058493804186582565,-0.04004427790641785,-0.015955284237861633,0.013689509592950344,0.05431046336889267,-0.012648257426917553,-0.019349800422787666,-0.020859401673078537,0.04395107552409172,0.06882920861244202,0.08681391179561615,-0.006006450392305851,0.02861477993428707,0.022684244439005852,-0.04139251261949539,0.034248337149620056,-1.555625897662191e-33,0.062384504824876785,0.013224594295024872,-0.01679183356463909,0.01685309410095215,-0.003142382251098752,-0.04187392815947533,0.10596640408039093,0.012209142558276653,-0.04957166686654091,0.04952572286128998,0.00046608407865278423,-0.07205921411514282,-0.003301589982584119,-0.033508963882923126,-0.0760103240609169,0.009258891455829144,0.03022685833275318,-0.006114781368523836,0.03869803994894028,0.03139625862240791,-0.04001796618103981,-0.03389732167124748,0.02095511183142662,0.01073388010263443,0.0676448717713356,-0.023512763902544975,-0.07619154453277588,-0.07332569360733032,0.0782608836889267,0.05722431093454361,-0.08196242898702621,0.0323324054479599,-0.013385850936174393,0.027609528973698616,0.05855458974838257,0.01202387735247612,0.014545632526278496,0.0327012836933136,-0.015634022653102875,-0.05343049764633179,-0.019938139244914055,-0.00918759498745203,-0.005131704267114401,-0.1093306615948677,-0.08394332230091095,-0.0030646631494164467,-0.124697245657444,0.10940833389759064,0.015565784648060799,-0.026135791093111038,0.0347992368042469,0.015147974714636803,0.03575224429368973,0.009645693004131317,-0.008221063762903214,0.0836518257856369,0.05260859802365303,0.02834106609225273,-0.05026944726705551,-0.005683427210897207,0.030265411362051964,0.01830442249774933,-0.04587371274828911,-0.055045995861291885,-0.04521913826465607,-0.13621611893177032,-0.053801633417606354,-0.07198487222194672,-0.002771339612081647,-0.06321544945240021,-0.08668016642332077,0.013146193698048592,-0.034084197133779526,0.03386318311095238,-0.029915783554315567,0.024134313687682152,-0.00793895311653614,0.02794954553246498,0.06866389513015747,-0.0810306966304779,0.07443273067474365,-0.055286768823862076,-0.030410056933760643,-0.027111710980534554,-0.03267533332109451,-0.02332141250371933,0.01239859126508236,-0.06536275148391724,-0.07889316231012344,-0.0013858410529792309,0.01367558166384697,0.06553841382265091,0.03780028596520424,-0.005938567686825991,-0.07909362763166428,-3.110571110626859e-33,0.030621103942394257,0.010508240200579166,0.0011907469015568495,0.07629570364952087,-0.1304384469985962,-0.005921675357967615,0.013781500980257988,0.04870034009218216,0.0005512912175618112,0.03678896278142929,-0.0007253927178680897,0.033010151237249374,0.0071666487492620945,-0.03399397432804108,-0.04232623800635338,0.05506450682878494,0.13705037534236908,0.00003762082269531675,0.05049210786819458,0.063455730676651,0.05818311870098114,-0.014824316836893559,0.04409777745604515,-0.09541694819927216,0.038046326488256454,0.032377906143665314,0.06941339373588562,-0.033517058938741684,-0.041018903255462646,0.014009526930749416,-0.010562246665358543,0.04734259843826294,0.045966021716594696,0.052508722990751266,-0.01671728678047657,0.04013678431510925,-0.05770839378237724,-0.03666982799768448,0.01985859125852585,-0.024228116497397423,0.031190721318125725,0.017252394929528236,0.0873292088508606,-0.044592078775167465,-0.00847424566745758,-0.013751942664384842,0.047643065452575684,0.16090171039104462,-0.048401881009340286,-0.040694136172533035,-0.03662186488509178,0.08373761177062988,0.019371435046195984,0.0452023483812809,-0.003837783122435212,0.012415466830134392,0.016162415966391563,0.09522374719381332,0.0058830538764595985,-0.01885048672556877,0.0010298488195985556,0.0033792173489928246,-0.015244604088366032,-0.011023909784853458,0.015963329002261162,0.07827655225992203,-0.0016554977046325803,-0.025240637362003326,0.133126899600029,-0.11485731601715088,0.12478982657194138,0.03325720876455307,-0.0008177328272722661,-0.020405538380146027,-0.018040921539068222,0.09412908554077148,-0.03862536698579788,-0.12815919518470764,0.010343269445002079,0.0026828430127352476,0.0373389758169651,-0.024036230519413948,-0.015832088887691498,-0.008539549075067043,-0.00991462729871273,0.013939116150140762,-0.058224163949489594,-0.019726185128092766,-0.021430131047964096,-0.05596999451518059,-0.00938460323959589,-0.04335027560591698,0.12564712762832642,-0.027347983792424202,-0.03150368481874466,-2.463801962448997e-8,-0.06981892138719559,-0.0542137436568737,-0.0475262850522995,-0.026512525975704193,0.07523186504840851,-0.011205244809389114,-0.06862026453018188,-0.009704544208943844,-0.11862988024950027,-0.031211741268634796,-0.07036037743091583,0.0031165455002337694,0.028893733397126198,0.010484287515282631,0.04215943440794945,-0.012021197006106377,-0.030233800411224365,-0.04959438368678093,-0.015719382092356682,0.027979038655757904,0.010573907755315304,0.04977887123823166,-0.1559549868106842,0.056567709892988205,0.03952135518193245,0.01578880473971367,0.008646948263049126,-0.028096258640289307,-0.02706889808177948,-0.03889981284737587,0.0838572084903717,0.02455447055399418,-0.06312037259340286,-0.04736144095659256,-0.0179176963865757,0.06514518707990646,0.042081765830516815,0.045096080750226974,0.08613236248493195,-0.11349521577358246,-0.006006909999996424,0.03735010325908661,-0.017132194712758064,-0.04027315229177475,0.04961051046848297,0.0731905847787857,0.06296383589506149,-0.03483268991112709,0.021685006096959114,-0.017071304842829704,-0.03465878963470459,-0.0014284044736996293,-0.020818982273340225,-0.04441042244434357,-0.030245928093791008,0.011031466536223888,-0.04944191128015518,0.007595287635922432,-0.015745043754577637,-0.029662195593118668,-0.03773999959230423,0.05185571685433388,-0.06465943902730942,-0.05753036588430405]},{"text":"But the explanation was really very simple.","book":"Animal Farm","chapter":8,"embedding":[-0.004167443607002497,-0.0018404739676043391,0.0303129144012928,-0.000565471826121211,0.047312550246715546,-0.05143478140234947,-0.07024741917848587,0.04924444109201431,0.0018491378286853433,0.03168056160211563,0.014560847543179989,-0.00012826720194425434,0.00017068056331481785,-0.0523095428943634,-0.013118652626872063,-0.0777699425816536,-0.027904395014047623,-0.01988743618130684,-0.10006733238697052,-0.04065563529729843,0.06408756971359253,-0.05109664797782898,-0.04365064948797226,0.0028174491599202156,-0.0002314563316758722,0.07595294713973999,-0.024906521663069725,0.10703837871551514,0.14676649868488312,0.02553403005003929,0.012491564266383648,0.06545614451169968,-0.007273973431438208,0.024867819622159004,-0.08957886695861816,0.03256513923406601,0.006742594763636589,0.08901048451662064,0.007682404480874538,0.01919057033956051,-0.016674425452947617,-0.0037603157106786966,0.02988439053297043,0.05442696064710617,0.01531033031642437,-0.004588193725794554,-0.020034832879900932,-0.03366081044077873,-0.0035777841694653034,-0.0613279826939106,0.01802215538918972,-0.056265417486429214,-0.0691937580704689,-0.03716729208827019,0.029361985623836517,-0.02657308802008629,-0.05919181555509567,0.03159647434949875,0.02693505771458149,-0.009983756579458714,-0.02932189777493477,-0.04194735735654831,0.029407953843474388,0.02126428857445717,0.12477479875087738,-0.02563488855957985,-0.019405437633395195,-0.029549280181527138,-0.06629617512226105,0.0710577741265297,-0.02629125863313675,0.01646346226334572,-0.014855848625302315,0.014347792603075504,-0.0007576997159048915,-0.031917374581098557,0.025401681661605835,0.11483027786016464,0.006765824276953936,0.15454384684562683,-0.07716276496648788,-0.06297454237937927,-0.05427178740501404,0.06085962802171707,0.04240640997886658,-0.053208235651254654,0.01410430483520031,-0.077994205057621,0.008717363700270653,0.0669192224740982,-0.00016542902449145913,-0.016460666432976723,-0.03731905296444893,0.03211472928524017,0.04150421917438507,-0.021378155797719955,-0.001142052817158401,0.00040415662806481123,-0.07869048416614532,0.05033627897500992,-0.03305424004793167,0.024658869951963425,-0.009528511203825474,-0.03292812407016754,0.005034472793340683,-0.0233331136405468,0.009500525891780853,-0.047583241015672684,0.040990471839904785,-0.042362891137599945,-0.013401691801846027,0.010446814820170403,0.026122380048036575,0.01953106001019478,0.00029586534947156906,0.004451722372323275,0.013354300521314144,0.017840497195720673,-0.023269671946763992,0.03816252201795578,0.057666223496198654,-0.006159277632832527,-0.07261128723621368,0.08300813287496567,-0.04724419489502907,-0.004048788454383612,0.04973896965384483,-3.811278885048209e-33,-0.02763233706355095,0.0924181342124939,0.06157593056559563,0.0772663801908493,0.04253540188074112,-0.06387197226285934,-0.09069730341434479,0.03200522065162659,0.057265039533376694,0.07673394680023193,0.09091201424598694,-0.011538057588040829,0.022432884201407433,-0.026431668549776077,-0.0433955043554306,0.052946481853723526,-0.058761537075042725,0.053169067949056625,0.02310842089354992,-0.0759001076221466,-0.026396404951810837,0.054483089596033096,0.004547343589365482,-0.06363613158464432,-0.009436209686100483,0.041925277560949326,0.008807152509689331,-0.04023178294301033,0.06196471303701401,-0.0005330066196620464,-0.035318523645401,0.0005754914600402117,-0.03969673439860344,0.03186800330877304,0.05984966829419136,-0.013463549315929413,0.08522936701774597,-0.058875009417533875,-0.04445495828986168,-0.04884578660130501,-0.02855101227760315,-0.013629122637212276,-0.05230920389294624,-0.04778788983821869,0.04208327457308769,0.051943425089120865,-0.04150598123669624,-0.09242729842662811,-0.10481691360473633,0.02475151978433132,-0.0684407502412796,-0.02568061649799347,0.10515270382165909,0.044850051403045654,0.029047928750514984,0.11690963059663773,0.0018977944273501635,0.057609107345342636,-0.046500205993652344,0.04248321056365967,-0.043836891651153564,0.10431212186813354,0.0009683385724201798,0.08633851259946823,-0.03442300856113434,-0.027670320123434067,0.027532637119293213,0.04908980801701546,0.0012785217259079218,0.04956302419304848,-0.058514513075351715,0.04408690333366394,0.04810648784041405,-0.058480989187955856,-0.016834856942296028,0.005699072033166885,0.03362175077199936,-0.0008278596797026694,0.014765159226953983,-0.0015189627883955836,0.023456500843167305,-0.04622003436088562,0.02954796887934208,-0.006989641580730677,-0.1481277346611023,-0.0021074831020087004,0.05607066676020622,0.015842320397496223,-0.04808475077152252,-0.06152774766087532,0.013093654997646809,-0.05011199414730072,0.06816259026527405,-0.1206047460436821,0.022371677681803703,3.0718047763046788e-33,-0.08301310241222382,-0.06611118465662003,-0.019188210368156433,-0.015489906072616577,-0.015982788056135178,0.01993219368159771,-0.009561670012772083,-0.023468663915991783,-0.005183232016861439,0.07844533026218414,0.027277622371912003,0.033843960613012314,-0.007179010193794966,0.051038824021816254,0.01830149255692959,0.019996458664536476,-0.027460241690278053,0.04744614660739899,0.019608421251177788,0.018974995240569115,0.05068405717611313,0.06826291233301163,-0.052102863788604736,-0.06728359311819077,0.044398967176675797,0.08518654108047485,0.05411402881145477,0.06557632982730865,0.0060043977573513985,-0.02348264306783676,0.011781621724367142,-0.0631449818611145,-0.11968966573476791,-0.01669398881494999,-0.047210220247507095,0.028522994369268417,-0.035825829952955246,0.003363265423104167,-0.027422670274972916,-0.09555752575397491,-0.0092883026227355,-0.03098474070429802,0.006082284729927778,-0.08557679504156113,-0.005617011804133654,-0.08436723053455353,0.09935525059700012,0.04347914084792137,-0.045703526586294174,0.010910091921687126,-0.011796911247074604,-0.07609561830759048,0.013556394726037979,-0.04514800012111664,-0.05602646619081497,0.00217806757427752,0.04532407224178314,0.02990870736539364,0.05388157069683075,-0.05054237321019173,-0.04955225810408592,0.023643512278795242,-0.047066524624824524,0.006013362668454647,-0.015437979251146317,-0.012002422474324703,-0.0600777268409729,-0.04046610742807388,0.02779216319322586,-0.039403241127729416,0.04465075582265854,0.00210669101215899,-0.07569416612386703,0.009864896535873413,0.031453415751457214,-0.04835762828588486,-0.042194344103336334,-0.013110947795212269,-0.049802038818597794,-0.1416727751493454,0.04588247090578079,-0.03130069375038147,0.05256728455424309,-0.04779377579689026,0.030600130558013916,0.010114598087966442,-0.0519314743578434,-0.1059296503663063,0.015364407561719418,0.03879372030496597,-0.0654214471578598,0.005224039312452078,0.12367470562458038,0.10114956647157669,0.0008338153129443526,-2.106966334736171e-8,0.02135051041841507,0.010269619524478912,0.036212071776390076,-0.002179952571168542,0.021924756467342377,0.049959536641836166,0.045133113861083984,-0.017047293484210968,-0.05415715277194977,0.04622270166873932,-0.014370006509125233,-0.020347006618976593,-0.023527251556515694,0.1233675628900528,-0.007661829702556133,0.10040433704853058,-0.017482951283454895,0.016659513115882874,-0.011455017141997814,0.056462228298187256,-0.012240997515618801,0.05713837221264839,0.027541060000658035,0.019235316663980484,0.019512103870511055,0.03814037889242172,-0.02309996634721756,0.14769798517227173,0.08417674899101257,-0.00483848387375474,0.02598193660378456,-0.022705262526869774,-0.0405411422252655,0.07126082479953766,-0.03027426265180111,0.08288925886154175,0.028631489723920822,-0.033867355436086655,0.018749946728348732,-0.07557366043329239,-0.09152234345674515,0.05516138672828674,0.006989677436649799,0.04446270689368248,0.04900290444493294,-0.006754984147846699,0.006018766667693853,-0.10268928110599518,-0.05292651057243347,0.011244644410908222,0.046969808638095856,0.04383216053247452,-0.011675209738314152,0.0005779593484476209,0.02182573266327381,-0.06853499263525009,-0.018420452252030373,0.0166302639991045,-0.10818029940128326,0.10607162117958069,-0.007464893162250519,0.1407027244567871,0.08611910790205002,-0.006085983943194151]},{"text":"Napoleon himself appeared at the meeting on the following Sunday morning and pronounced a short oration in Boxer's honour.","book":"Animal Farm","chapter":8,"embedding":[-0.03984144330024719,0.08359115570783615,-0.0010730308713391423,0.019507721066474915,-0.04617554321885109,0.126465305685997,0.05699345842003822,0.03432150185108185,0.014944912865757942,-0.08173462003469467,-0.02533181756734848,-0.06742735952138901,0.029105832800269127,0.007202605716884136,0.04476175457239151,-0.03897826746106148,0.03721068799495697,0.06668778508901596,-0.026553334668278694,-0.032047804445028305,0.020790601149201393,0.07888545095920563,0.05203656479716301,0.0674661248922348,0.04620209336280823,-0.02650154009461403,0.015899835154414177,-0.05006955936551094,0.0650535598397255,-0.020501621067523956,0.03372974693775177,-0.0031059549655765295,0.11345811933279037,0.03182597830891609,-0.09253383427858353,-0.0572022907435894,0.04998462647199631,0.03669467568397522,0.02344564162194729,0.03669414296746254,-0.05194694548845291,-0.04808986932039261,-0.08308827131986618,0.0683002844452858,0.01684061996638775,-0.010227617807686329,0.03902437165379524,0.012186004780232906,0.06082114577293396,0.026890750974416733,0.02585442364215851,0.012451929040253162,0.017760012298822403,-0.03288664296269417,-0.006825742777436972,-0.004746600054204464,-0.010636570863425732,0.004124512895941734,0.045116033405065536,0.08444604277610779,-0.0637970119714737,0.023065779358148575,0.04144803434610367,0.09441132843494415,-0.020933721214532852,0.03694391995668411,-0.02033689059317112,0.023200850933790207,-0.06255953013896942,0.06587237864732742,-0.01809372939169407,-0.006749067921191454,0.012417309917509556,-0.024973668158054352,-0.08233490586280823,-0.004760486539453268,0.020243030041456223,0.030833544209599495,0.0619746670126915,0.020017148926854134,-0.07403893023729324,-0.03402853012084961,-0.02881384827196598,0.04205712676048279,0.03195364773273468,-0.014217222109436989,0.06451302021741867,-0.008836218155920506,0.007297305390238762,-0.019566312432289124,-0.06871224194765091,-0.06519775837659836,-0.03051498532295227,0.07905147969722748,0.00454542925581336,-0.03752963989973068,-0.028928393498063087,0.049231596291065216,-0.024359922856092453,0.051341116428375244,0.002029425697401166,0.07340794801712036,-0.014703329652547836,0.007106752600520849,-0.06324756890535355,0.09346209466457367,-0.07228226959705353,-0.016099408268928528,0.027409128844738007,-0.04923752322793007,-0.0256119966506958,-0.03456045687198639,0.09381213784217834,-0.004781794268637896,0.04486530274152756,0.1577673852443695,-0.09437443315982819,-0.1528739482164383,-0.05292661115527153,0.005758313927799463,-0.020582174882292747,-0.03610064089298248,-0.05908630043268204,-0.004773762077093124,-0.027339886873960495,0.05199001356959343,0.032754313200712204,-5.429988972744225e-33,0.006002941634505987,0.05063110589981079,0.005037850700318813,-0.053755730390548706,-0.07106819748878479,0.016176274046301842,-0.09086157381534576,-0.03455863893032074,-0.045974504202604294,-0.013471385464072227,0.05044817179441452,0.017964063212275505,0.052763860672712326,-0.02060902677476406,-0.11017662286758423,0.028359564021229744,0.021131576970219612,0.06677807867527008,-0.04849475622177124,0.012134701944887638,-0.03410869091749191,0.02915223315358162,-0.0007354129920713603,0.005213458556681871,0.044218048453330994,0.041256774216890335,0.05836924538016319,-0.1096988096833229,0.023513903841376305,-0.00029880745569244027,-0.022869162261486053,-0.016776181757450104,-0.011991136707365513,0.038230955600738525,0.0005564319435507059,-0.09560758620500565,0.03978898376226425,0.026585059240460396,-0.09057120233774185,0.08354983478784561,0.05394243821501732,-0.01254510972648859,-0.03176736831665039,-0.050912536680698395,-0.008158844895660877,-0.038492172956466675,-0.057016801089048386,0.0423567034304142,0.10970883071422577,-0.007165599148720503,0.006504864431917667,0.023988917469978333,0.008866079151630402,-0.016930436715483665,0.03993698209524155,0.004417498130351305,0.006882950663566589,0.06397274881601334,0.006329994183033705,-0.05243654549121857,-0.01681077852845192,0.03658556938171387,0.03714880719780922,0.04220380634069443,-0.02409830503165722,-0.061834946274757385,-0.10534640401601791,0.03791525959968567,0.04348933696746826,-0.0922737866640091,0.023790914565324783,0.022695068269968033,0.007491696160286665,-0.030229849740862846,0.028875572606921196,-0.012024651281535625,0.03573736175894737,0.019370464608073235,-0.039775315672159195,0.05967696011066437,-0.008277539163827896,-0.038857776671648026,-0.020403632894158363,0.024675287306308746,0.019551314413547516,0.07456889748573303,-0.006615826860070229,-0.06250351667404175,-0.059729184955358505,0.06028234586119652,-0.09227854013442993,0.007280406542122364,0.008372727781534195,-0.00023789073748048395,0.022215746343135834,2.36848317999168e-33,0.08673293888568878,-0.010598072782158852,-0.003452350851148367,0.04124416410923004,0.027206553146243095,-0.039393987506628036,-0.02164832130074501,0.14002986252307892,0.007634250912815332,0.028142116963863373,0.004049922339618206,-0.02852325327694416,0.0048528737388551235,-0.11428544670343399,0.09858530759811401,-0.06708834320306778,0.016400160267949104,-0.027953583747148514,0.014613787643611431,0.03996280953288078,-0.007222719490528107,-0.06840983778238297,-0.043369803577661514,-0.06962080299854279,-0.045159127563238144,0.08057963848114014,0.09468502551317215,-0.029663754627108574,-0.024833209812641144,0.032908257097005844,-0.1194024309515953,0.034726426005363464,-0.09287450462579727,0.04903401806950569,0.03028656356036663,0.08184585720300674,-0.015326141379773617,-0.006840022746473551,0.008011918514966965,-0.006926539354026318,-0.06681056320667267,0.006353339180350304,-0.04503055289387703,-0.021191319450736046,0.04795164614915848,-0.055938106030225754,-0.08946536481380463,-0.030744193121790886,0.011500580236315727,-0.02066710777580738,-0.02916603535413742,0.01200594287365675,-0.022212332114577293,0.017004191875457764,-0.00816157553344965,0.04165388271212578,-0.03830168768763542,-0.09171219170093536,0.009959729388356209,-0.018554668873548508,0.01732281781733036,-0.04060523584485054,0.03624511882662773,-0.0809154212474823,-0.07372470200061798,0.02453482151031494,-0.031943611800670624,0.09116936475038528,0.06085245683789253,0.04038697108626366,0.019459636881947517,-0.06847509741783142,0.03916382044553757,0.05908220633864403,-0.009383847005665302,0.07194767892360687,-0.007213955745100975,-0.03159818425774574,-0.02331927791237831,0.00893308874219656,-0.10445814579725266,-0.00881645642220974,-0.05051816999912262,-0.09783896058797836,-0.027150074020028114,-0.020107494667172432,-0.08026421815156937,0.03446899354457855,0.07168219238519669,0.0328042209148407,0.07245615869760513,0.030635718256235123,0.06674525886774063,-0.03747522458434105,-0.0026883049868047237,-2.6293191623949497e-8,-0.03946619853377342,-0.007566033862531185,0.04878463223576546,0.005347053054720163,0.05741580203175545,-0.041923414915800095,-0.032912932336330414,-0.07483692467212677,-0.007213466335088015,0.015902204439044,0.03577715903520584,0.02687186188995838,-0.0420461967587471,-0.047746215015649796,0.05019989609718323,0.009205647744238377,-0.037422847002744675,-0.022332370281219482,-0.034272100776433945,-0.032833538949489594,-0.015261360444128513,-0.04520923271775246,0.04109671711921692,-0.05724481865763664,-0.05727433040738106,-0.04698158800601959,-0.004770799074321985,0.014113588258624077,-0.028096947818994522,-0.026107827201485634,-0.038557376712560654,0.10659017413854599,-0.09965229034423828,-0.1323450356721878,0.031080707907676697,0.041834745556116104,0.09834634512662888,0.0017614261014387012,0.10592785477638245,-0.040232546627521515,-0.010649070143699646,-0.07752463966608047,0.04660969227552414,-0.017497986555099487,0.07766982167959213,0.07490987330675125,0.11739359050989151,0.016224220395088196,0.0329158678650856,-0.04934929683804512,-0.02863849326968193,-0.018808871507644653,0.06950370222330093,-0.06309590488672256,-0.019433319568634033,0.09194023162126541,0.006885888986289501,-0.08364922553300858,0.030425187200307846,-0.03316188231110573,-0.12000355124473572,0.003384105395525694,0.004518214147537947,-0.08388971537351608]},{"text":"That night there was the sound of uproarious singing, which was followed by what sounded like a violent quarrel and ended at about eleven o'clock with a tremendous crash of glass.","book":"Animal Farm","chapter":8,"embedding":[0.027269713580608368,0.054592378437519073,-0.010823220945894718,-0.025058478116989136,0.02205085940659046,0.034594498574733734,0.07093591243028641,-0.0003007231280207634,-0.0003433388192206621,-0.06383534520864487,-0.07304824143648148,0.07190165668725967,0.0005720963818021119,-0.037749215960502625,-0.05768876150250435,-0.03434537723660469,0.0334155336022377,-0.020936880260705948,-0.017947057262063026,-0.006858623120933771,0.03453385829925537,0.06604254990816116,0.053606584668159485,0.04427093267440796,0.03422411531209946,0.06200923025608063,0.051538459956645966,-0.05441462993621826,-0.020922604948282242,0.0036174000706523657,0.02501678839325905,0.03051670640707016,0.03101203590631485,-0.03103390708565712,0.021466616541147232,-0.06494475901126862,0.040897782891988754,-0.0026821421924978495,0.04627756029367447,-0.014171008951961994,-0.0031523541547358036,0.018529312685132027,-0.003304781625047326,-0.03212993964552879,-0.0607636384665966,-0.02692546509206295,-0.058711014688014984,-0.07024819403886795,0.04119911789894104,0.02774222567677498,0.023796603083610535,0.051735494285821915,-0.01551808975636959,-0.06208329647779465,0.006147072650492191,0.005491811782121658,0.08646558970212936,0.029233627021312714,0.0976124033331871,0.09316602349281311,-0.002990870736539364,0.0028613684698939323,0.06067298352718353,0.05097109451889992,0.05421946197748184,-0.053953491151332855,-0.032563041895627975,-0.017217405140399933,0.025790711864829063,0.10631934553384781,0.04477066919207573,0.010907107964158058,0.07152875512838364,-0.11221222579479218,-0.049178436398506165,-0.03812284767627716,0.018511774018406868,-0.08542787283658981,0.0023997467942535877,0.009272267110645771,0.05640896409749985,-0.06435980647802353,-0.09472355246543884,-0.046775076538324356,0.03518490865826607,-0.061517324298620224,0.050095271319150925,0.02540605515241623,0.014367765747010708,0.02255515195429325,-0.06928246468305588,-0.023567212745547295,-0.03871039301156998,0.041137587279081345,0.06856797635555267,-0.03694760799407959,0.007879883982241154,-0.05155627429485321,0.06377949565649033,0.05349823832511902,0.013334454037249088,0.012789529748260975,0.018307775259017944,-0.02168991044163704,0.039535075426101685,-0.03285650908946991,-0.05444985255599022,0.029752273112535477,-0.0468413271009922,-0.06587424129247665,-0.03859878331422806,0.01036934182047844,0.032783281058073044,0.024533092975616455,0.025494450703263283,0.019973142072558403,-0.01250439789146185,-0.06779029965400696,-0.07004456967115402,0.010480610653758049,0.11853642016649246,0.007988355122506618,-0.1257558912038803,0.026432879269123077,0.009893791750073433,0.02190542221069336,-0.018153822049498558,-1.551280792996972e-33,0.06098414212465286,-0.027610044926404953,-0.03970294073224068,-0.08268459886312485,0.20763617753982544,-0.019498975947499275,-0.11060509830713272,0.024032263085246086,-0.030338557437062263,0.04804109036922455,-0.042335569858551025,-0.09320110082626343,-0.02102537825703621,-0.12434552609920502,0.009145902469754219,-0.001420194166712463,-0.020246241241693497,0.05592828989028931,-0.026489337906241417,-0.05034084990620613,-0.04417896270751953,0.04657405614852905,-0.03239302337169647,0.007147282361984253,-0.030802149325609207,0.021147269755601883,-0.031727101653814316,-0.033300336450338364,0.11452441662549973,0.024512898176908493,0.020350299775600433,0.00858413614332676,0.00407428340986371,0.05612349510192871,0.05683368444442749,0.01078482810407877,0.017136121168732643,-0.02865358628332615,-0.029149129986763,-0.08895356208086014,-0.04885641857981682,0.05441965535283089,-0.015464942902326584,-0.021846730262041092,-0.018728775903582573,0.01072051003575325,-0.12629114091396332,0.05567612126469612,0.03410058841109276,0.02091507986187935,-0.02310626581311226,-0.0053716697730124,0.05423576012253761,-0.005086573772132397,-0.029296495020389557,0.057661719620227814,0.06734784692525864,-0.007515970151871443,0.07935739308595657,-0.01325578335672617,0.0847296416759491,-0.03580012917518616,0.08113225549459457,-0.09284456819295883,-0.028201598674058914,-0.031707122921943665,0.005044285673648119,-0.010396315716207027,0.025786152109503746,-0.06431233137845993,-0.031573694199323654,0.0017484445124864578,-0.04823736846446991,-0.028643930330872536,-0.03226138651371002,0.010967922396957874,0.032990992069244385,-0.04427583888173103,-0.02008240669965744,0.029446037486195564,0.08080276846885681,-0.06363068521022797,0.031021390110254288,-0.05968882143497467,0.04618644341826439,-0.008586309850215912,-0.02209174819290638,-0.07200488448143005,-0.08575846999883652,0.014947500079870224,-0.027350936084985733,-0.026863528415560722,0.08023720234632492,-0.007110097911208868,-0.04063403978943825,-1.4089783856223029e-33,0.053588252514600754,-0.003742095548659563,-0.016414402052760124,0.04267759993672371,0.03809554874897003,-0.0228499136865139,-0.0641779974102974,0.03857335448265076,-0.03281592205166817,-0.03397531434893608,0.00436918530613184,-0.07216787338256836,-0.009892193600535393,0.002826767973601818,0.0006727291620336473,-0.07128487527370453,0.09103330224752426,0.07834695279598236,0.038281746208667755,0.1105571836233139,0.02212652750313282,-0.11725730448961258,0.03197784721851349,-0.11164571344852448,-0.005485133267939091,0.0517212338745594,0.06596304476261139,-0.025518642738461494,-0.06149005517363548,0.01711084693670273,0.004491121042519808,-0.03577641397714615,-0.03058515675365925,0.02386591210961342,-0.011639226227998734,0.1192254051566124,0.04140406847000122,-0.06467331200838089,-0.06939658522605896,-0.11834806948900223,-0.022229522466659546,-0.012875878252089024,-0.021214084699749947,0.057764653116464615,-0.003545948537066579,-0.00640454376116395,-0.07058144360780716,0.1592850238084793,-0.027468040585517883,-0.011803111992776394,0.015394401736557484,-0.03167864307761192,0.04047059267759323,0.05209069699048996,-0.05548558756709099,-0.048402898013591766,0.093115895986557,-0.027125535532832146,-0.04360051825642586,-0.017863212153315544,-0.04383191093802452,0.03741585463285446,-0.08504994958639145,-0.038940902799367905,-0.00491337152197957,0.022268425673246384,-0.05952317267656326,0.00672362744808197,-0.021163292229175568,0.04155590757727623,0.006661048159003258,0.02567581832408905,-0.09661537408828735,0.13903096318244934,0.0162237249314785,-0.01472326647490263,-0.08753009140491486,-0.023006919771432877,-0.024470970034599304,-0.017550993710756302,-0.02927044965326786,-0.010730181820690632,-0.042018868029117584,0.08829272538423538,-0.06445813179016113,-0.04994716867804527,0.1000126525759697,0.007014550734311342,-0.028435926884412766,0.0722007229924202,0.05128069594502449,0.02453562431037426,-0.008753064088523388,-0.0027554165571928024,0.018087366595864296,-2.905953699894326e-8,-0.05609181523323059,0.019069906324148178,-0.0555998720228672,-0.06911400705575943,0.11468227952718735,-0.06454402953386307,0.0905318409204483,0.00453431298956275,0.018901458010077477,0.03213964402675629,-0.05161385238170624,0.010725843720138073,0.08303308486938477,0.006504483986645937,-0.1088428795337677,0.009067491628229618,0.02440991811454296,-0.06355900317430496,-0.011152580380439758,-0.007016894873231649,0.02024916186928749,0.0011059188982471824,0.06665708124637604,-0.0225521307438612,0.024003803730010986,0.05881403014063835,-0.08799782395362854,0.03272661939263344,-0.024540044367313385,0.03384944424033165,0.04081878066062927,0.0014084437862038612,-0.13295987248420715,-0.0623699389398098,-0.08602587133646011,0.027793221175670624,-0.02481529675424099,-0.010019252076745033,0.016462121158838272,-0.1116228699684143,-0.035108909010887146,-0.009937705472111702,0.02121642604470253,-0.028043881058692932,0.04660426452755928,0.017155813053250313,0.0026406666729599237,-0.03062913566827774,-0.027344107627868652,0.07501652091741562,0.01569044031202793,0.0308774895966053,0.01753346249461174,0.024183398112654686,-0.014489337801933289,-0.03918673098087311,-0.0008575936662964523,0.02180808037519455,-0.04820689931511879,0.002830775920301676,0.05596049875020981,0.053068723529577255,-0.019515385851264,0.020715465769171715]},{"text":"Muriel was dead; Bluebell, Jessie, and Pincher were dead.","book":"Animal Farm","chapter":9,"embedding":[-0.03460756689310074,-0.06742295622825623,-0.032267846167087555,0.0018613932188600302,0.01919112354516983,0.05309360846877098,-0.023022674024105072,0.085502490401268,-0.016207434237003326,-0.022061871364712715,0.14412526786327362,-0.013436075299978256,-0.03312750160694122,-0.004943165462464094,0.013910118490457535,0.032416291534900665,-0.08114912360906601,-0.004755938425660133,-0.16292177140712738,0.010339376516640186,-0.04290824756026268,0.038076065480709076,-0.0022749071940779686,0.04392419010400772,0.03593405708670616,0.00901615247130394,-0.008368770591914654,-0.06364809721708298,0.030574981123209,0.016320060938596725,-0.08376076817512512,-0.057006072252988815,-0.03862426057457924,-0.06120661273598671,0.09789539873600006,0.0036568341311067343,0.009405719116330147,0.022809943184256554,0.023017484694719315,0.03112451732158661,-0.018355121836066246,-0.038428109139204025,-0.09399644285440445,0.004137187264859676,-0.029150953516364098,0.013533358462154865,-0.0511702299118042,0.05750054121017456,0.05696992203593254,0.0010135346092283726,0.02604028582572937,0.017947811633348465,0.0015439114067703485,0.02162186987698078,0.027464009821414948,-0.008491459302604198,0.004063062369823456,-0.013967924751341343,0.011250323615968227,-0.02771395817399025,-0.0959170013666153,-0.01193053275346756,0.03777513653039932,-0.029118267819285393,0.006473759189248085,-0.04993501305580139,-0.01873628981411457,-0.03042241372168064,0.052597418427467346,-0.009639234282076359,0.04711621254682541,-0.08127870410680771,-0.01701114885509014,-0.01522153615951538,0.015737304463982582,-0.022594278678297997,0.06441542506217957,-0.042512550950050354,-0.05124335736036301,0.0008441492100246251,-0.023932287469506264,-0.11257833242416382,-0.008038606494665146,0.013836258091032505,0.02201537974178791,-0.00067016581306234,-0.03661341592669487,-0.04672355577349663,-0.04815535992383957,0.00703895278275013,-0.08338603377342224,-0.025610806420445442,-0.030729083344340324,0.05422653630375862,-0.04135680943727493,0.0592607706785202,-0.012722657062113285,0.08671987056732178,-0.06327728927135468,0.023387936875224113,-0.07573366910219193,-0.03957703337073326,0.01603062078356743,0.007826699875295162,0.058008354157209396,0.014296045526862144,-0.004935882054269314,-0.03011760115623474,0.05700383707880974,0.011946562677621841,0.09635400027036667,-0.07727158069610596,0.016893794760107994,0.05371912196278572,0.08511397987604141,-0.04597093537449837,-0.018982654437422752,0.015108889900147915,-0.08052578568458557,-0.033744387328624725,0.04922438785433769,0.031767264008522034,-0.025417577475309372,0.00754037918522954,-0.00555217731744051,0.07865245640277863,0.03241189569234848,-1.1921917888982373e-33,0.05412350222468376,-0.031710367649793625,-0.006154018919914961,0.06900673359632492,-0.07627952843904495,-0.04639505594968796,-0.011922862380743027,0.03488559275865555,0.05608544871211052,0.0022806599736213684,0.03873109444975853,-0.08475783467292786,-0.02345907688140869,-0.05555102974176407,-0.0745246410369873,-0.005915919318795204,0.01568206027150154,0.02465742640197277,0.04580375552177429,0.015501551330089569,0.037840086966753006,0.1302393674850464,-0.031999651342630386,-0.03322836756706238,0.016918467357754707,0.02932964824140072,-0.00853552296757698,0.026037797331809998,0.029953939840197563,-0.0034858835861086845,0.03925441950559616,0.012312463484704494,0.033576589077711105,-0.011852968484163284,-0.009793302044272423,-0.008169319480657578,0.003173832083120942,-0.013205217197537422,-0.07029704004526138,0.03031683899462223,-0.01297836471349001,0.024903586134314537,-0.03725976496934891,-0.058201223611831665,-0.03287595510482788,-0.0018152435077354312,0.06131412088871002,0.028347548097372055,0.039133671671152115,-0.02407725341618061,0.03601264953613281,-0.014879357069730759,0.07212118804454803,0.10815604776144028,0.10467484593391418,0.05552110821008682,-0.012035947293043137,0.02171534299850464,0.008692522533237934,0.040281713008880615,0.08891496807336807,0.0861593708395958,0.001366419019177556,-0.017504826188087463,0.033824484795331955,0.007839919999241829,0.015272881835699081,-0.005230275448411703,0.03084472008049488,-0.06641092151403427,-0.1008966714143753,-0.018187640234827995,-0.047899167984724045,-0.03286043554544449,0.019633851945400238,-0.05643591657280922,-0.001326671103015542,0.0393197163939476,-0.07834626734256744,-0.04486796632409096,0.135831817984581,0.050796907395124435,0.048207756131887436,0.09779530763626099,-0.013335060328245163,-0.07055103778839111,0.01680373027920723,-0.04996369406580925,-0.05967431142926216,-0.037430550903081894,-0.0741131603717804,0.05991629511117935,-0.01934359408915043,-0.014765836298465729,-0.058594003319740295,-8.660372896091623e-34,-0.04132558032870293,0.048848070204257965,-0.058181531727313995,0.07030300050973892,0.005087811499834061,-0.03724822774529457,-0.018929680809378624,0.014339106157422066,0.032325178384780884,-0.07472451776266098,-0.008829363621771336,-0.0429115854203701,-0.04302965849637985,0.0599210262298584,0.02387828752398491,0.07282806187868118,-0.06469579041004181,0.004180348943918943,-0.04712481051683426,0.03440213203430176,-0.05860394984483719,-0.0022699201945215464,-0.08317431062459946,0.0011027025757357478,-0.029022887349128723,0.10581503808498383,-0.034085918217897415,-0.01654854044318199,-0.01859288662672043,-0.024001507088541985,0.11809395998716354,0.008284039795398712,0.04735811799764633,-0.0454779788851738,-0.04852292686700821,0.00768886785954237,-0.021991433575749397,-0.023313729092478752,-0.01414958294481039,-0.03612252697348595,0.056395065039396286,0.02207244746387005,0.03891358897089958,0.06396348029375076,-0.04305871203541756,-0.042192693799734116,0.050397008657455444,0.008747340179979801,-0.043687790632247925,0.006592641584575176,-0.04919136315584183,-0.03893972933292389,-0.05480623245239258,0.017007313668727875,-0.03618258237838745,-0.04147899150848389,0.03624844178557396,-0.03291241452097893,0.055306389927864075,-0.08152542263269424,-0.03380798175930977,-0.0601358525454998,0.020776016637682915,0.08442344516515732,0.05576176941394806,-0.004833926912397146,0.05779218673706055,-0.01826031506061554,-0.0775073990225792,-0.039168816059827805,0.10442502796649933,0.02910286746919155,0.00859807524830103,0.007588364649564028,0.0566963367164135,0.10564843565225601,-0.14958900213241577,0.0002636119315866381,0.013486627489328384,0.05846789851784706,-0.08016940951347351,-0.05436215177178383,-0.046239644289016724,0.04458363726735115,0.00011783657100750133,0.02899392507970333,0.018520068377256393,-0.0020304659847170115,-0.00847396906465292,-0.10736323893070221,0.022292716428637505,-0.09210851043462753,0.2034188210964203,0.02240528166294098,-0.02694162353873253,-1.8840108140238954e-8,0.09663719683885574,0.0665409192442894,-0.08196451514959335,-0.04803073778748512,-0.037275929003953934,-0.04099129140377045,0.02287072129547596,0.08851401507854462,-0.04216134175658226,0.22916898131370544,-0.05132543668150902,0.04603993520140648,-0.029482027515769005,0.004271447658538818,0.07613014429807663,-0.039244070649147034,-0.05197408050298691,-0.03368046507239342,-0.005926739424467087,-0.034425199031829834,-0.039173342287540436,-0.0156606025993824,0.005753005854785442,-0.032566674053668976,0.06030085310339928,0.019389357417821884,0.04504045099020004,-0.040148697793483734,0.032173093408346176,-0.030120939016342163,0.027954429388046265,0.0011967186583206058,0.06783246248960495,-0.021954206749796867,-0.030139556154608727,-0.016991328448057175,0.017510531470179558,0.020023981109261513,-0.05686001852154732,0.07254107296466827,-0.019698914140462875,0.007028487045317888,-0.04363638907670975,-0.03424011915922165,0.13852925598621368,-0.033296629786491394,0.08525332808494568,0.024903753772377968,-0.04017474129796028,-0.048393718898296356,-0.017987776547670364,-0.018599718809127808,-0.029911760240793228,-0.001630496815778315,0.0003703455731738359,-0.07807134836912155,-0.06241545081138611,0.08753111958503723,0.03588061407208443,-0.008635619655251503,0.0175420343875885,0.016455000266432762,-0.047914769500494,0.01927628554403782]},{"text":"The talk of setting aside a corner of the pasture for superannuated animals had long since been dropped.","book":"Animal Farm","chapter":9,"embedding":[0.013616045005619526,0.040979646146297455,0.07617828249931335,0.06241992115974426,0.05864278972148895,-0.001197607023641467,-0.12062092125415802,0.054566964507102966,-0.07923613488674164,0.028536783531308174,0.051236942410469055,0.07628455758094788,-0.04715514928102493,0.046095069497823715,-0.0067238956689834595,0.01535278931260109,0.007206632290035486,-0.016133110970258713,-0.052956219762563705,0.05297962576150894,0.04175976663827896,0.018774237483739853,-0.01803923398256302,0.04828042909502983,-0.045528993010520935,-0.01755724847316742,-0.13348425924777985,0.03755272924900055,0.015261284075677395,0.02791302092373371,-0.005535938777029514,0.11995472013950348,0.01976882480084896,0.011092630214989185,-0.015568984672427177,0.06539343297481537,0.013911719433963299,0.0006650158320553601,0.08508764207363129,-0.010162453167140484,-0.015544602647423744,-0.06202439218759537,0.04319312423467636,-0.036265090107917786,-0.035892553627491,0.016301386058330536,-0.013542071916162968,-0.023426726460456848,0.05969375744462013,-0.025129949674010277,0.0036390998866409063,-0.026809271425008774,0.010476797819137573,-0.021939337253570557,-0.019927849993109703,0.06059586629271507,-0.0681600496172905,-0.01711069419980049,0.0019064643420279026,0.002637177472934127,0.10064512491226196,0.0013680205447599292,0.012371715158224106,0.028310168534517288,-0.02301551029086113,-0.01060029212385416,-0.07160207629203796,0.03144354000687599,-0.023934856057167053,0.08494030684232712,0.040000248700380325,0.004847611766308546,-0.020747438073158264,-0.07489084452390671,0.015580394305288792,0.006390265189111233,-0.020617272704839706,0.019340937957167625,0.0981232151389122,-0.07790695130825043,0.02122110314667225,-0.025553608313202858,0.0102680753916502,-0.01009975466877222,-0.012370292097330093,-0.05228617414832115,0.08105052262544632,-0.05557528883218765,-0.003052996937185526,-0.0803305059671402,0.02696087956428528,-0.13370802998542786,-0.06568180024623871,0.03410663083195686,0.005234309006482363,0.01944795809686184,-0.0650772675871849,-0.04604528099298477,-0.0036474009975790977,0.00635074358433485,-0.021831601858139038,-0.08018297702074051,-0.012356861494481564,-0.07301927357912064,0.01632099598646164,-0.01677165925502777,-0.1254945695400238,0.02603258565068245,0.008030601777136326,0.05235287547111511,-0.0422041192650795,-0.014660156331956387,0.04934632405638695,0.12548218667507172,-0.021611828356981277,0.06214827671647072,-0.04758128151297569,-0.10048574954271317,-0.054489508271217346,-0.0441921129822731,0.07187236100435257,0.0828283354640007,0.026923587545752525,0.009912797249853611,0.047685254365205765,0.0813056230545044,0.047697339206933975,-2.802194677697025e-33,0.008242062292993069,-0.06757417321205139,-0.06960161030292511,-0.01864185929298401,0.09999947249889374,-0.0403677336871624,-0.05737365782260895,0.0006342291017062962,0.02841230295598507,0.03813532739877701,0.04437922686338425,-0.04767109081149101,0.02066766284406185,-0.12441790103912354,0.010693565011024475,-0.10220391303300858,0.013304563239216805,-0.0005558094708248973,0.04653986543416977,-0.00508203124627471,-0.02092595584690571,0.05667043849825859,-0.004369049798697233,0.021614618599414825,0.028872927650809288,-0.02870042249560356,0.026559680700302124,-0.040230441838502884,-0.04997467249631882,0.040288977324962616,-0.02352127991616726,-0.08973531424999237,-0.045830998569726944,0.035042740404605865,-0.022313682362437248,0.0063782949000597,0.009247245267033577,-0.1321348249912262,0.0010544387623667717,0.050056662410497665,0.039807625114917755,-0.0015012164367362857,0.03527774661779404,-0.01060982421040535,0.02773936651647091,0.03256722912192345,0.016773633658885956,0.08343955874443054,-0.11768099665641785,-0.0015030597569420934,0.05627669394016266,0.07493085414171219,-0.03385039046406746,-0.03576934337615967,0.022326361387968063,0.026747843250632286,-0.007149078417569399,-0.00936741754412651,-0.0631566047668457,0.004046084824949503,0.06023761257529259,0.030692487955093384,0.0029201305005699396,-0.024769792333245277,0.004970508627593517,-0.09058572351932526,-0.021363336592912674,0.07900232821702957,-0.037884607911109924,0.030576976016163826,-0.057419437915086746,-0.008137849159538746,-0.028907373547554016,-0.00683031789958477,-0.035203978419303894,-0.004663763102144003,0.019981689751148224,0.034740760922431946,-0.011654122732579708,-0.028226157650351524,0.026446862146258354,0.05700423941016197,-0.015314615331590176,0.04234845191240311,0.02327539213001728,-0.024397240951657295,0.055340297520160675,-0.08132705092430115,0.003067121608182788,-0.08715830743312836,-0.01958548277616501,-0.0008901291294023395,-0.029811477288603783,-0.09021463990211487,0.06408769637346268,2.3971599156929667e-34,-0.07086604833602905,0.055728763341903687,0.00048838957445696,0.10058488696813583,-0.03623717650771141,0.01817047782242298,-0.012639645487070084,-0.026174360886216164,-0.023295246064662933,-0.04304907098412514,-0.09502966701984406,0.08922092616558075,0.02789871022105217,-0.010239575989544392,0.07184401899576187,-0.02149069495499134,-0.0072431499138474464,-0.12229359894990921,0.029105380177497864,-0.06549125164747238,0.05061217024922371,-0.0403093658387661,-0.052969906479120255,0.022598544135689735,0.04204341769218445,0.04592593014240265,-0.044262804090976715,0.003779501188546419,-0.007273422554135323,-0.034064117819070816,-0.04707355052232742,-0.07592493295669556,-0.05619281157851219,-0.014148309826850891,0.030194122344255447,0.01703396812081337,-0.0439433716237545,-0.022089872509241104,-0.08599961549043655,-0.04259251803159714,0.05819125100970268,-0.049876440316438675,-0.04231877252459526,0.08296419680118561,-0.04095323756337166,-0.00841515138745308,0.027177076786756516,0.05689287558197975,0.038659512996673584,0.045542698353528976,-0.015027006156742573,0.031895097345113754,0.052710115909576416,-0.049824681133031845,-0.03695609048008919,-0.030552970245480537,0.03737260028719902,-0.029103996232151985,0.007344945799559355,0.017703281715512276,0.015507219359278679,0.009737719781696796,-0.03926905617117882,0.024296455085277557,0.014783389866352081,-0.013745861127972603,-0.09221841394901276,-0.030402101576328278,-0.07621439546346664,-0.061438754200935364,0.040916070342063904,0.05914201959967613,-0.03445912152528763,0.007232623640447855,0.03200201317667961,0.15820641815662384,0.038869038224220276,-0.06642219424247742,0.009038849733769894,0.034609854221343994,-0.03481818363070488,-0.040329866111278534,0.033052947372198105,0.007708367425948381,0.09162835776805878,0.0071403030306100845,-0.14051271975040436,0.0849653109908104,0.1016087606549263,-0.023661697283387184,-0.002279742853716016,-0.01997094787657261,0.008045019581913948,0.002391395391896367,-0.020613888278603554,-2.3661847592393315e-8,-0.05593506246805191,0.07745221257209778,-0.02413030155003071,0.033472687005996704,0.08031762391328812,-0.035772163420915604,0.056544944643974304,0.024093246087431908,0.03916822001338005,0.006698588840663433,-0.06295549124479294,0.06703632324934006,-0.021946562454104424,0.12728287279605865,0.018605396151542664,-0.05099817365407944,0.030668659135699272,-0.047069039195775986,-0.07569233328104019,0.06849531829357147,-0.07761668413877487,-0.05029566213488579,-0.08228518813848495,-0.09046691656112671,-0.07686743140220642,-0.06625218689441681,-0.006961483042687178,-0.009833465330302715,0.035729557275772095,-0.0004076798213645816,-0.005679793190211058,0.04383475333452225,-0.0006525293574668467,0.02838207222521305,0.032466575503349304,0.07349573075771332,-0.042056236416101456,0.08321017026901245,0.08691642433404922,-0.018225541338324547,-0.03691374137997627,0.03998226299881935,0.00006104002386564389,0.046092309057712555,0.04978574439883232,0.04904511570930481,-0.011758535169064999,0.07309191673994064,0.0033281948417425156,-0.021256713196635246,-0.07880023866891861,0.039697445929050446,0.07871859520673752,0.06309718638658524,0.05007551610469818,0.009376807138323784,-0.022036492824554443,-0.08326492458581924,0.00771584315225482,0.016238439828157425,-0.11559529602527618,0.0016216899966821074,-0.019552066922187805,0.09932243824005127]},{"text":"Many animals had been born to whom the Rebellion was only a dim tradition, passed on by word of mouth, and others had been bought who had never heard mention of such a thing before their arrival.","book":"Animal Farm","chapter":9,"embedding":[0.01417677104473114,0.031017111614346504,0.022727837786078453,0.07025955617427826,0.005370198283344507,0.03536417335271835,0.004669534042477608,-0.03333689272403717,-0.03756852447986603,0.11148387938737869,0.09377548098564148,-0.006176196504384279,0.03184620663523674,-0.06629111617803574,-0.01915930025279522,0.0236215703189373,-0.024432672187685966,-0.061069246381521225,-0.016649797558784485,0.0057578254491090775,-0.01313403993844986,-0.024151619523763657,0.04131017625331879,0.0701785758137703,-0.0009010911453515291,-0.0030503140296787024,-0.016276413574814796,0.023375118151307106,0.063043512403965,0.010303450748324394,-0.028208207339048386,0.07962661981582642,0.02356131002306938,0.002499369904398918,-0.025130217894911766,0.007511771749705076,0.09599940478801727,-0.025474775582551956,0.11003624647855759,-0.04179949313402176,0.07145032286643982,0.0027261986397206783,0.03750915452837944,-0.0022256220690906048,-0.010238947346806526,0.018026230856776237,-0.018437085673213005,0.01968166045844555,-0.015777885913848877,0.004915902856737375,0.01919638179242611,-0.04903507977724075,0.02858477272093296,-0.046823445707559586,-0.06931304186582565,-0.05392764136195183,-0.047115508466959,-0.041589174419641495,0.04526915401220322,-0.02737187221646309,-0.04208223149180412,0.017401158809661865,0.08501701056957245,-0.04972127825021744,-0.10241154581308365,-0.02671649120748043,-0.007406182121485472,0.058285631239414215,-0.03409476950764656,-0.029784582555294037,0.017162058502435684,0.004981976468116045,0.09642942249774933,-0.005710544064640999,-0.13075567781925201,-0.03248445317149162,0.05318450555205345,0.053638555109500885,0.006367378402501345,-0.09197253733873367,-0.029420336708426476,0.059035155922174454,-0.03249386325478554,0.005623268894851208,0.0014132916694507003,0.014583803713321686,0.03492291271686554,-0.03315906599164009,0.021992208436131477,-0.003945738077163696,0.015730729326605797,-0.09342643618583679,-0.012164316140115261,-0.00012205210805404931,-0.013421174138784409,-0.011966940015554428,0.034605130553245544,-0.04796849936246872,0.04698764905333519,0.04203025624155998,-0.018356740474700928,-0.05998961627483368,0.010522336699068546,0.008253435604274273,0.03830350562930107,-0.03990550711750984,-0.10766943544149399,-0.03202071785926819,-0.017163323238492012,0.03221365809440613,-0.13001252710819244,0.0443136990070343,0.026157045736908913,0.07938215136528015,0.04361880570650101,0.08329517394304276,-0.08579187840223312,-0.11416041851043701,-0.0223067756742239,-0.029321730136871338,0.05569695681333542,0.057858049869537354,-0.007884493097662926,0.08299745619297028,-0.008726837113499641,0.00964021123945713,-0.02110973931849003,7.442644204146866e-35,0.008114168420433998,-0.10376552492380142,-0.012233111076056957,0.014678246341645718,0.023220142349600792,0.013295374810695648,-0.015427974984049797,-0.01880139857530594,0.02101779915392399,-0.02152184024453163,-0.016206182539463043,-0.0896793082356453,0.03157755732536316,-0.006739166099578142,-0.003523724852129817,0.0006542456685565412,-0.05967564880847931,-0.07242762297391891,0.15790599584579468,-0.045046158134937286,-0.028751228004693985,0.03719113767147064,-0.03499360755085945,-0.03926292061805725,-0.0757293850183487,-0.007299239747226238,-0.01747606322169304,-0.025419112294912338,-0.0008639556472189724,0.021401675418019295,0.04440112039446831,-0.0656462088227272,0.09688762575387955,-0.027620261535048485,-0.041494887322187424,-0.008405736647546291,0.04060995578765869,-0.12637543678283691,-0.006409040652215481,0.02751411683857441,0.015863819047808647,0.0009441402507945895,0.02254803664982319,-0.008230205625295639,-0.01736554503440857,0.041621796786785126,-0.04272035136818886,-0.0422075055539608,0.00349579774774611,0.02094874158501625,0.018729111179709435,0.02879856340587139,0.10609791427850723,-0.039799995720386505,-0.0074053481221199036,-0.02854984812438488,-0.05235477164387703,0.06431323289871216,-0.07584695518016815,-0.05646146461367607,-0.0007320128497667611,-0.02970620058476925,0.015262618660926819,0.017382146790623665,-0.007514311000704765,-0.02501896396279335,0.020303986966609955,0.06560073792934418,-0.006621366832405329,-0.012632813304662704,0.05584732070565224,0.00910265278071165,-0.1679454743862152,-0.10050187259912491,-0.03184714913368225,-0.027552390471100807,0.1185218095779419,0.0200085137039423,0.02111758664250374,-0.03968709707260132,-0.004151050467044115,0.015259231440722942,-0.041541650891304016,0.11370770633220673,0.017181221395730972,-0.02654332108795643,0.14670567214488983,-0.02220100164413452,0.04494808614253998,-0.020292991772294044,0.0044318679720163345,0.00420197332277894,-0.0171782486140728,-0.066752128303051,0.027245068922638893,-3.174328087505537e-33,-0.07643015682697296,0.06639979779720306,0.019345726817846298,0.10987962037324905,-0.05443444103002548,0.006510001607239246,-0.08069366216659546,-0.020265014842152596,-0.02059144526720047,0.006625019479542971,-0.06727772206068039,0.019137253984808922,-0.015243749134242535,-0.0003375199739821255,0.08558905869722366,-0.0870058685541153,-0.00010751836816780269,0.05895901843905449,0.09428857266902924,-0.03359636664390564,-0.020128780975937843,0.016498135402798653,-0.08112309873104095,-0.08899559080600739,0.043406810611486435,0.06011992692947388,-0.09011323750019073,0.0660754144191742,-0.08749845623970032,-0.10478745400905609,0.011449015699326992,0.06888976693153381,-0.0197241622954607,-0.03775044158101082,0.07199697941541672,-0.0037649834994226694,-0.018944088369607925,0.05773872882127762,-0.01941308006644249,-0.04156935214996338,-0.06979385018348694,0.006057065911591053,-0.03801896795630455,-0.0248352512717247,-0.06222611293196678,0.05276785418391228,0.00912476982921362,0.009646196849644184,0.11294287443161011,0.058693695813417435,-0.00752161955460906,0.02295609749853611,0.03847082704305649,-0.05335048958659172,-0.03777436912059784,-0.03392558544874191,0.007880604825913906,-0.02632850967347622,0.06810668855905533,0.012125346809625626,-0.049337271600961685,0.016419027000665665,-0.04600638896226883,-0.06762434542179108,-0.007821433246135712,-0.019239380955696106,0.00451268907636404,0.002244431059807539,0.10572796314954758,-0.03936057537794113,0.0436718575656414,0.0647231936454773,-0.07498612999916077,-0.013676499016582966,0.0005815367330797017,0.06201282516121864,-0.00805911049246788,-0.03290678933262825,0.05960885435342789,-0.06750675290822983,0.0011834962060675025,-0.02453169971704483,0.02674521692097187,0.009837322868406773,-0.04633721709251404,-0.02325274981558323,-0.03944428265094757,0.09981072694063187,0.08419369161128998,0.03152864798903465,0.027881400659680367,-0.1260078400373459,0.037814799696207047,-0.05802852660417557,-0.017511576414108276,-3.582938035151528e-8,-0.06629101186990738,0.04154019057750702,-0.0017828973941504955,0.06612609326839447,0.08883044123649597,0.02337898127734661,0.027740783989429474,-0.03690386563539505,0.007632611785084009,0.0777922123670578,-0.048113953322172165,-0.00035290850792080164,-0.005732896272093058,0.03391038626432419,0.029315004125237465,0.021316932514309883,0.07409864664077759,-0.06928224861621857,-0.03909623622894287,0.006304402370005846,-0.04522335156798363,0.02250976674258709,0.019420932978391647,-0.13645924627780914,-0.04676780849695206,-0.06417109817266464,-0.04192807152867317,-0.040017083287239075,0.029482530429959297,0.01148287858814001,-0.029172228649258614,0.013888660818338394,-0.025347303599119186,-0.050979480147361755,0.05376004800200462,0.08569898456335068,-0.10822902619838715,-0.07949742674827576,0.04280613362789154,-0.1344965547323227,0.02254771813750267,0.02799411490559578,0.03948139026761055,0.017033075913786888,0.05608614161610603,-0.014219860546290874,-0.00443817675113678,0.02508075162768364,-0.018451815471053123,-0.07732836902141571,-0.039044685661792755,0.0444207601249218,0.07015326619148254,0.0019903264474123716,-0.01736185885965824,-0.05050823837518692,0.015670131891965866,0.049176789820194244,0.07788614928722382,-0.05678343400359154,0.011777916923165321,0.012690413743257523,-0.0030100576113909483,0.04387585446238518]},{"text":"The farm was more prosperous now, and better organised: it had even been enlarged by two fields which had been bought from Mr.","book":"Animal Farm","chapter":9,"embedding":[0.027466023340821266,0.02697800286114216,0.0036658532917499542,0.017323335632681847,0.02344432845711708,-0.0735660269856453,-0.06623604148626328,0.023459700867533684,-0.11167002469301224,0.01590682752430439,0.06066872552037239,0.08627419173717499,-0.03050532191991806,-0.010998507961630821,-0.055843040347099304,0.016891198232769966,-0.05683078616857529,-0.016746409237384796,-0.044713400304317474,-0.03099500574171543,-0.08648734539747238,-0.05204416811466217,-0.05425725877285004,-0.02995447628200054,0.09688626229763031,0.05105629190802574,-0.10030031949281693,0.13213913142681122,0.008627450093626976,-0.04423023387789726,-0.003207096830010414,0.11332827061414719,0.05529187619686127,0.038859736174345016,-0.009749650955200195,0.04068290442228317,0.06660719215869904,0.03234110400080681,0.0023653549142181873,-0.05901357904076576,0.017601119354367256,-0.04955361783504486,0.018197910860180855,-0.0016179893864318728,-0.08644651621580124,0.02342848852276802,0.06518238037824631,-0.06738036125898361,0.04838518053293228,-0.06385261565446854,-0.007119662128388882,0.019813349470496178,-0.009276710450649261,-0.039589736610651016,-0.022917907685041428,0.07462239265441895,-0.05658457800745964,-0.01158685889095068,-0.0230809785425663,-0.00570168299600482,-0.08961768448352814,0.05978347361087799,0.051818642765283585,-0.010059143416583538,0.06355663388967514,-0.08138681203126907,-0.08202479034662247,-0.002607764909043908,-0.05685769394040108,0.01922493800520897,0.0638781413435936,-0.06372536718845367,-0.027680378407239914,-0.10562963038682938,-0.06724269688129425,0.016946084797382355,-0.029743218794465065,0.016073549166321754,-0.007468193769454956,-0.002656080760061741,0.0042612915858626366,0.025875896215438843,-0.06576654314994812,-0.030085304751992226,-0.1090991348028183,-0.018559850752353668,0.017523059621453285,-0.052280351519584656,0.05698136240243912,-0.057815395295619965,0.05139842629432678,-0.09568045288324356,-0.02890871837735176,0.08242339640855789,0.04870493710041046,0.02479582093656063,-0.08185455203056335,0.008034939877688885,-0.0005952251958660781,0.019594093784689903,0.014763778075575829,-0.019922738894820213,0.021596044301986694,-0.029480133205652237,-0.0127687007188797,-0.03469979763031006,-0.09620339423418045,0.03899799659848213,-0.0005584453465417027,-0.017298810184001923,-0.03149177134037018,0.03694511950016022,-0.05484750494360924,0.045476965606212616,0.001481553539633751,0.065067358314991,-0.07323438674211502,-0.030980991199612617,-0.09379979968070984,-0.018729140982031822,0.1037614494562149,0.004494944587349892,-0.07252383232116699,0.00042403978295624256,-0.01469242013990879,0.0639672726392746,0.06778029352426529,-2.826096334940081e-33,-0.09279460459947586,-0.02168363519012928,-0.04102214798331261,0.06299377232789993,0.08528845012187958,0.05054093524813652,-0.00034452846739441156,0.025321029126644135,0.004308183677494526,-0.02037782035768032,0.045588962733745575,0.0072036865167319775,-0.03967233747243881,-0.0913182944059372,0.003988004755228758,-0.08763248473405838,-0.02293364889919758,0.02819330431520939,0.04129596799612045,0.02416425757110119,-0.016934111714363098,0.04687899723649025,-0.00841488130390644,0.018657665699720383,0.06828426569700241,-0.05482085049152374,0.08655960112810135,0.007833212614059448,0.018660664558410645,0.014347601681947708,0.11220861971378326,-0.08419321477413177,-0.014783618040382862,0.034918271005153656,-0.015478795394301414,0.023719388991594315,-0.00020924321142956614,-0.14394204318523407,0.017286529764533043,0.026151755824685097,0.016847027465701103,-0.013122173957526684,0.06291600316762924,0.044972967356443405,0.005477009806782007,0.05223958194255829,-0.0034430301748216152,0.07620929181575775,-0.012181917205452919,-0.023268410935997963,0.04504675418138504,-0.012989277951419353,-0.020510533824563026,-0.009521148167550564,0.08678734302520752,-0.03270472586154938,-0.058759015053510666,0.06030105799436569,0.03131647780537605,0.01981910690665245,0.03794797882437706,-0.026278801262378693,-0.04463128373026848,0.03197458013892174,-0.00215126178227365,0.005655733868479729,0.04176200553774834,0.04778934270143509,-0.055983152240514755,0.129224494099617,0.036621905863285065,0.0014031084720045328,-0.05814414471387863,0.0457855723798275,0.0246552936732769,0.03722119331359863,-0.019449468702077866,0.06021444872021675,-0.023078901693224907,-0.01798439957201481,-0.0614468976855278,0.028783295303583145,-0.10338585823774338,0.06299249082803726,-0.017465218901634216,-0.00627689016982913,0.05988290533423424,0.006004968658089638,0.03558697924017906,-0.03298591449856758,0.004959575831890106,0.04008638858795166,-0.010340931825339794,-0.034712642431259155,0.03181098774075508,-3.962363015825238e-35,-0.04108767956495285,0.03819780424237251,-0.01912948116660118,0.026251085102558136,-0.005623872857540846,-0.014786433428525925,0.010920625180006027,-0.058874744921922684,-0.029611703008413315,-0.006262242328375578,-0.04002976417541504,0.07747627049684525,0.013735298998653889,-0.040976181626319885,-0.03398027643561363,-0.00023381294158753008,0.022979121655225754,-0.03519397974014282,0.023873642086982727,0.05078645050525665,-0.025551583617925644,0.07562412321567535,0.0277898870408535,0.027433030307292938,-0.05729019269347191,0.02213776297867298,-0.15673600137233734,-0.024629797786474228,-0.03900313749909401,-0.005758311133831739,0.027362879365682602,-0.02759857475757599,-0.04747305437922478,-0.0030390447936952114,-0.03767663612961769,0.04563003405928612,0.05720062181353569,-0.06067715212702751,0.03885451331734657,0.05584235489368439,0.025576775893568993,-0.009035369381308556,0.008074975572526455,0.04193670302629471,-0.01586783118546009,-0.021523555740714073,-0.026062674820423126,-0.005974315572530031,0.13940869271755219,0.0477905236184597,-0.0036200592294335365,0.0784478709101677,0.03389438986778259,-0.06530371308326721,-0.06484924256801605,-0.0023504120763391256,0.06893198937177658,-0.06980148702859879,-0.05865095928311348,-0.025028761476278305,-0.008463861420750618,0.007208730094134808,0.0015805260045453906,0.05466477572917938,-0.05771692097187042,0.054838113486766815,-0.009281493723392487,-0.07561805844306946,-0.01458032988011837,-0.06235716864466667,-0.020601075142621994,-0.06811989098787308,-0.03984111547470093,0.04486584663391113,-0.03279944881796837,0.10765272378921509,0.044567566365003586,0.02412419393658638,0.05443667620420456,-0.04473181813955307,-0.03522789105772972,-0.024030085653066635,0.09166236221790314,-0.027568411082029343,-0.014279484748840332,0.015403760597109795,-0.0007761410088278353,0.027122387662529945,0.061699870973825455,-0.005864165723323822,-0.016037946566939354,-0.05386069789528847,0.024478813633322716,-0.0350705087184906,0.06347750127315521,-2.6605285086134245e-8,-0.057578880339860916,-0.04065189138054848,0.043602023273706436,0.038978785276412964,0.07805360108613968,-0.13363410532474518,-0.01789223961532116,0.14037778973579407,0.05870608240365982,0.10087127238512039,-0.1868225634098053,0.10917644202709198,-0.05655675381422043,0.02821032702922821,0.046283330768346786,0.019564712420105934,0.02922968938946724,-0.057977959513664246,-0.026212960481643677,0.049584876745939255,0.01950269192457199,0.025701256468892097,-0.03360241651535034,-0.02354942448437214,-0.05180051177740097,0.011343142949044704,-0.04897920414805412,-0.07927402853965759,0.02469228021800518,0.05737003684043884,0.10547226667404175,0.02144806459546089,-0.015408693812787533,0.019872475415468216,-0.025881094858050346,-0.02333124540746212,-0.054790008813142776,0.041925135999917984,0.0060239145532250404,-0.046784304082393646,-0.04628511890769005,0.0010749418288469315,0.030527008697390556,0.024633444845676422,0.04612623155117035,0.010066095739603043,-0.07918952405452728,0.006123458966612816,-0.0016158467624336481,-0.09727996587753296,0.06100231409072876,0.05226458981633186,0.09233462065458298,-0.02310718595981598,0.02156824804842472,-0.06716948002576828,-0.03767792508006096,-0.009613440372049809,0.02180694043636322,-0.026499534025788307,-0.07314980775117874,-0.01701711118221283,-0.006512439344078302,0.010786319151520729]},{"text":"The animals were hard at work building yet another windmill; when that one was finished, so it was said, the dynamos would be installed.","book":"Animal Farm","chapter":10,"embedding":[-0.05321875587105751,0.11122487485408783,0.07592934370040894,0.0961245596408844,0.06037246808409691,-0.060524966567754745,-0.05067186802625656,-0.05916108191013336,0.011010730639100075,0.0015126527287065983,0.0646694079041481,-0.014045163057744503,0.06461580842733383,-0.05933308228850365,0.03792192041873932,0.03791818022727966,-0.0649864673614502,-0.05723823979496956,-0.03119136393070221,-0.0087638720870018,-0.04707779362797737,-0.022689562290906906,-0.0194658525288105,0.01254624966531992,0.012453770264983177,0.09637852758169174,-0.18155232071876526,0.06856326013803482,0.04178759083151817,0.028771135956048965,-0.020396102219820023,0.0030399556271731853,-0.05867653712630272,0.021976081654429436,-0.011370530351996422,0.059839703142642975,0.030907217413187027,0.012056350708007812,0.019832240417599678,0.010722854174673557,0.03026469051837921,-0.036056216806173325,0.047661833465099335,-0.05989779904484749,-0.07412713766098022,0.06422563642263412,0.006477847695350647,-0.08282569795846939,0.02808459661900997,-0.028457649052143097,-0.053405001759529114,-0.03729184716939926,0.004530899226665497,-0.08226913213729858,-0.01093860063701868,0.04097141698002815,0.0036182706244289875,-0.017469454556703568,0.020139452069997787,-0.0035280343145132065,0.031790003180503845,-0.04476949945092201,0.002061174949631095,0.06283963471651077,0.04387679696083069,-0.07010065764188766,-0.05427359789609909,-0.046730875968933105,-0.0030590116512030363,-0.08098656684160233,0.1042858213186264,-0.03947019949555397,-0.05952110514044762,-0.1108262836933136,-0.009390683844685555,-0.02128974348306656,0.031081046909093857,-0.03158380463719368,0.03523876890540123,-0.07972847670316696,-0.03893574699759483,-0.03211016207933426,-0.02719441056251526,0.023629380390048027,0.06961880624294281,0.0343707874417305,0.0060517266392707825,-0.04734179005026817,-0.04161423072218895,0.0027078778948634863,0.05443308874964714,-0.11590930819511414,-0.06413354724645615,0.08288373798131943,0.10701015591621399,0.05818028748035431,-0.01018286868929863,0.037389788776636124,-0.018978768959641457,0.02963949181139469,-0.03036780096590519,-0.060846395790576935,0.02667291648685932,-0.011851223185658455,0.014858788810670376,0.00928143784403801,-0.07782306522130966,0.05516842007637024,-0.051723770797252655,-0.02060059830546379,-0.006486235652118921,-0.0189715176820755,0.06897963583469391,0.08665323257446289,-0.01978360489010811,0.019735299050807953,-0.046590160578489304,-0.0733056515455246,-0.08881789445877075,0.08894917368888855,0.1669522523880005,0.012789380736649036,0.011813395656645298,-0.008693678304553032,0.028502482920885086,0.016909008845686913,0.03381022438406944,-3.502776637488639e-33,0.029915882274508476,-0.06025677174329758,0.01366676576435566,0.023657847195863724,0.10321345925331116,0.035478245466947556,-0.058773960918188095,0.041655439883470535,0.0868653729557991,-0.019457083195447922,-0.03195935860276222,0.06624847650527954,-0.006159101612865925,-0.01698300801217556,0.0014931777259334922,-0.1619737297296524,0.06290392577648163,-0.05203612148761749,0.05260743945837021,-0.05171654745936394,0.026385001838207245,-0.022886058315634727,0.008469331078231335,-0.05502302199602127,0.01726771891117096,-0.019910385832190514,0.09346238523721695,-0.0649883896112442,-0.0638861432671547,0.05664847046136856,-0.034907370805740356,-0.10225501656532288,-0.03829299658536911,0.04938289523124695,-0.05351606383919716,0.0114597762003541,0.0007361608440987766,-0.11729539185762405,-0.03574976325035095,-0.0602099746465683,0.04575876519083977,-0.011549734510481358,-0.045540548861026764,0.059079281985759735,-0.004040985833853483,0.05040871351957321,0.011096514761447906,0.051296133548021317,0.012564809992909431,0.02685205079615116,0.03847604617476463,0.061208270490169525,-0.0018748047295957804,-0.037273529917001724,0.07710476964712143,0.05818333104252815,0.017158033326268196,-0.013289159163832664,-0.07256011664867401,0.032407354563474655,0.007015549577772617,0.060460176318883896,-0.00014764729712624103,0.02250766195356846,0.09705815464258194,-0.0639755129814148,0.0014454731717705727,0.05626034736633301,-0.023535629734396935,-0.020267430692911148,0.011737938039004803,-0.07275490462779999,-0.002655091229826212,-0.004345862660557032,-0.016715843230485916,0.01597430370748043,-0.017755569890141487,0.06119125708937645,-0.010335066355764866,-0.038859475404024124,0.03986390680074692,0.08936406672000885,-0.04441887512803078,0.0508255697786808,0.03486253321170807,-0.03519053757190704,0.029274312779307365,0.01360351499170065,-0.03528658673167229,-0.057509828358888626,0.05421770364046097,0.0870751440525055,0.06800322979688644,-0.09126649796962738,-0.022793805226683617,5.835299975920726e-34,-0.1421704739332199,0.04023338109254837,-0.047507405281066895,-0.04352651908993721,0.0020151000935584307,0.025561442598700523,-0.011690993793308735,-0.07495877146720886,-0.0703435093164444,0.048392556607723236,-0.04218192398548126,-0.013803697191178799,-0.021976225078105927,-0.08108247071504593,0.03369877114892006,-0.0589754544198513,-0.004221838898956776,-0.010508587583899498,0.03141576796770096,0.04328102990984917,0.04203539714217186,0.014839107170701027,0.0069400654174387455,0.028096171095967293,0.030330948531627655,0.050840992480516434,-0.07586544007062912,-0.07373404502868652,-0.014498253352940083,-0.00993467215448618,-0.05941013991832733,-0.017025448381900787,-0.030363401398062706,0.06129898503422737,0.02020965702831745,0.000022622052711085416,-0.05774226039648056,-0.020580166950821877,-0.0511491596698761,-0.05568985641002655,0.050381001085042953,-0.036934733390808105,-0.02852901630103588,-0.0014896461507305503,-0.009276499040424824,0.007703954353928566,-0.03049813210964203,0.0030308326240628958,0.00583754712715745,-0.028406422585248947,0.03132396191358566,0.0233683530241251,-0.026327544823288918,-0.042496245354413986,-0.00426879059523344,-0.042103011161088943,0.08027933537960052,-0.05170215293765068,0.12022022157907486,-0.07335029542446136,-0.006194580812007189,-0.04854688048362732,0.05418160930275917,0.024904824793338776,-0.04841248318552971,-0.03382125869393349,0.05175263434648514,-0.0201405119150877,-0.009117071516811848,-0.019244426861405373,0.03104533813893795,0.10390665382146835,-0.010267835110425949,-0.07444243133068085,-0.020528607070446014,0.09969966113567352,0.032744456082582474,-0.012786136008799076,0.016665956005454063,-0.0859375,-0.06128835305571556,-0.02440679632127285,0.02477126754820347,0.0021330611780285835,0.019764896482229233,-0.1378980427980423,-0.0026065465062856674,0.0017899293452501297,0.07104992866516113,0.03634629771113396,0.028037264943122864,-0.047377780079841614,0.05011734366416931,0.085941843688488,0.011712083593010902,-2.8164162557686723e-8,-0.014709838666021824,0.01841469295322895,0.007863176986575127,-0.04328111186623573,0.049413423985242844,-0.017124177888035774,0.002960863057523966,0.026092421263456345,-0.0018253655871376395,-0.0026617872063070536,0.05372931808233261,0.0376083143055439,0.04778192564845085,0.10024891793727875,0.011404424905776978,0.038282766938209534,0.005908341147005558,-0.059364352375268936,-0.0005935189547017217,0.022989921271800995,0.002731246640905738,0.0439872108399868,-0.06373034417629242,-0.022996358573436737,0.029517296701669693,0.029476022347807884,-0.10357751697301865,-0.023729296401143074,0.025549231097102165,-0.008595919236540794,-0.02028147131204605,-0.036482442170381546,0.011178015731275082,-0.0706598162651062,-0.014629256911575794,0.040004946291446686,-0.0961100161075592,-0.036281850188970566,0.00621480867266655,-0.08198221772909164,-0.04864436015486717,0.08439560234546661,0.002339968690648675,0.04511402174830437,0.069989413022995,0.0003910208761226386,-0.07586095482110977,0.01174623891711235,-0.06907325983047485,-0.017568673938512802,-0.030424421653151512,-0.020628800615668297,0.08297395706176758,0.013206659816205502,-0.005091359838843346,0.0071973856538534164,-0.0028369438368827105,-0.08064033091068268,-0.06257586181163788,-0.0071684615686535835,0.008372455835342407,0.12777534127235413,-0.03347428888082504,0.0576065294444561]},{"text":"Perhaps this was partly because there were so many pigs and so many dogs.","book":"Animal Farm","chapter":10,"embedding":[0.10517531633377075,0.013356317766010761,0.07793421298265457,0.057709597051143646,0.015300125814974308,-0.015696220099925995,-0.11447206139564514,-0.039836984127759933,0.029460322111845016,0.04212538152933121,0.11221519112586975,-0.0362548753619194,0.04136350750923157,0.03748391941189766,-0.02963288128376007,-0.06272062659263611,0.014315959066152573,-0.08032004535198212,-0.05205625295639038,-0.0141169223934412,-0.02544797956943512,0.0069807046093046665,0.03797956556081772,-0.024904821068048477,-0.041999317705631256,-0.021091148257255554,-0.03789877891540527,-0.012613958679139614,-0.0045844013802707195,-0.00339122605510056,-0.030817346647381783,0.1030978336930275,-0.013126055710017681,-0.04721568524837494,-0.027043957263231277,-0.04760037362575531,0.05719415098428726,0.0747571811079979,0.0796116515994072,-0.0021501656156033278,0.009698193520307541,-0.051157355308532715,0.07687588036060333,-0.024371294304728508,-0.06320805102586746,0.0023917134385555983,-0.0993824377655983,-0.02652580477297306,0.07844361662864685,-0.010583197697997093,0.06493162363767624,0.07588905096054077,-0.03183699771761894,-0.0722411721944809,-0.01157605554908514,-0.1372714787721634,-0.08706942945718765,-0.045965127646923065,-0.010752505622804165,-0.016863776370882988,0.005591403227299452,0.05438919737935066,0.01716647483408451,-0.017044590786099434,0.02907581813633442,-0.03766048699617386,0.021028826013207436,0.0002022047556238249,-0.07561842352151871,0.03197406232357025,0.04520894214510918,-0.025740720331668854,0.036436598747968674,-0.006427661515772343,-0.03823341429233551,-0.03170182183384895,-0.002255686093121767,0.027908528223633766,0.05176326259970665,-0.030060654506087303,0.014798324555158615,0.03305252268910408,-0.008339909836649895,0.028093241155147552,0.027029938995838165,0.004280390217900276,-0.024222588166594505,-0.0921640545129776,-0.0588347427546978,0.018327100202441216,-0.005740595515817404,-0.05072961002588272,0.039161525666713715,0.07905313372612,0.049814626574516296,-0.037303633987903595,-0.07446125894784927,0.06165503337979317,0.008359969593584538,0.027635673061013222,-0.0505622960627079,-0.02468658611178398,0.0562608577311039,-0.0014818436466157436,0.0016065984964370728,-0.06407807767391205,-0.0629999116063118,0.004692805465310812,0.0004975847550667822,0.008564362302422523,-0.0716247484087944,-0.007228530943393707,-0.020749324932694435,0.066372811794281,0.06804156303405762,0.06854869425296783,-0.014902749098837376,-0.07459848374128342,-0.09299647808074951,0.04741700738668442,0.058044563978910446,0.03727533295750618,-0.08545935153961182,0.025365276262164116,0.039109304547309875,0.03379802778363228,0.011572386138141155,-7.220028188592054e-34,0.05362693592905998,-0.07788804173469543,0.00035589520120993257,0.005949867889285088,0.10735820978879929,-0.01732112653553486,-0.07648004591464996,0.017858652397990227,0.03805958852171898,-0.031290534883737564,-0.05146695300936699,-0.03512228652834892,-0.00314243882894516,-0.06577619165182114,-0.0032847642432898283,0.015500291250646114,-0.04243912920355797,0.007425343617796898,0.06380870938301086,-0.03483526408672333,-0.04487786069512367,-0.02986413799226284,0.028846824541687965,0.011350777000188828,-0.022314948961138725,0.06342926621437073,0.00012308522127568722,-0.032418739050626755,0.0006830597994849086,0.024416685104370117,0.04113936424255371,-0.04453384503722191,-0.02171800658106804,-0.023232238367199898,-0.019271384924650192,-0.013447549194097519,0.05234130099415779,-0.11358899623155594,-0.003088950179517269,0.01729775406420231,0.06346436589956284,-0.03434387221932411,0.05979175120592117,0.017232615500688553,-0.012302903458476067,0.06821458786725998,-0.04848259314894676,0.001699102227576077,-0.11756280064582825,0.0703580304980278,-0.011744963005185127,0.038934383541345596,0.03768333047628403,0.04406452551484108,0.03269296512007713,-0.049588643014431,0.02316511981189251,0.09581798315048218,-0.014167617075145245,0.0977955088019371,0.01068846508860588,0.0633915364742279,0.05967198684811592,0.016235096380114555,0.06173509731888771,-0.09417548030614853,-0.003034754190593958,0.07200725376605988,-0.11354073882102966,0.10638207942247391,-0.008416498079895973,-0.023252258077263832,-0.026932232081890106,-0.08397345244884491,-0.025216102600097656,-0.05769452080130577,0.035454463213682175,0.015341351740062237,0.019156593829393387,-0.07306481897830963,0.01144575234502554,0.07257182151079178,-0.03788188099861145,-0.02294841967523098,-0.047640591859817505,0.10579308122396469,0.06654378026723862,-0.0758807510137558,0.004941311664879322,-0.038037508726119995,-0.04480382427573204,-0.0056536635383963585,-0.0191265307366848,-0.10775574296712875,-0.02869904413819313,-7.707898292624132e-34,-0.07085607945919037,0.014969120733439922,0.05183635279536247,-0.016076885163784027,-0.00456453301012516,0.015240159817039967,0.01876150071620941,-0.05761926248669624,-0.04595831409096718,0.01697302982211113,-0.00019844529742840677,-0.05582796409726143,0.06986953318119049,0.02952025644481182,0.04569001495838165,0.05854043737053871,0.006459658499807119,-0.04944613575935364,0.03344546630978584,-0.046533845365047455,-0.1203472912311554,0.04605529457330704,0.002851826837286353,0.07468715310096741,0.0039995950646698475,0.11854279041290283,-0.1049811914563179,-0.02338811196386814,-0.012278479523956776,0.0026536344084888697,-0.0011836362536996603,-0.020161842927336693,-0.03368264436721802,0.028645971789956093,-0.00966490525752306,0.0648447647690773,0.027832021936774254,0.048955466598272324,-0.034733228385448456,-0.047484975308179855,0.0010190493194386363,-0.10250125825405121,-0.012689545750617981,0.015077101066708565,-0.00889524444937706,0.1287136971950531,0.041003622114658356,-0.04249194264411926,0.03488842025399208,0.035831108689308167,-0.01494509819895029,0.009883558377623558,-0.012881249189376831,-0.017018651589751244,-0.07553189247846603,0.04634243622422218,-0.00010188314627157524,-0.00958318542689085,0.06103327497839928,-0.03825061023235321,-0.042008478194475174,0.08814840018749237,-0.05663594231009483,-0.010115093551576138,-0.0010530715808272362,-0.0686250552535057,-0.04901696741580963,-0.036134809255599976,0.046286944299936295,-0.03166884183883667,-0.025558345019817352,0.006926363334059715,-0.10261375457048416,0.008122982457280159,-0.008470647968351841,0.09475891292095184,-0.033031024038791656,-0.04817277565598488,-0.028150133788585663,-0.013566800393164158,-0.05108668655157089,-0.06953509151935577,0.0739746168255806,0.07455386966466904,-0.02199547365307808,-0.011003698222339153,-0.032652199268341064,0.11337907612323761,0.05173012241721153,0.03326510265469551,0.021267324686050415,-0.05320078879594803,0.03734392672777176,-0.004550910089164972,-0.010626795701682568,-2.259018216932418e-8,0.0007152902544476092,0.012217600829899311,-0.029051929712295532,0.02920306660234928,0.08724667876958847,-0.011521300300955772,0.03289780393242836,0.05480799823999405,0.035420387983322144,0.12419679760932922,-0.10633835941553116,0.08729591965675354,-0.030194617807865143,0.07292251288890839,-0.008533722721040249,0.014392461627721786,-0.0390329584479332,-0.02134137600660324,0.029191704466938972,0.0798950120806694,-0.034053076058626175,-0.013165241107344627,-0.08136000484228134,-0.10627412796020508,0.0170133113861084,-0.021578531712293625,-0.08786647766828537,0.05514518544077873,-0.026412297040224075,-0.006248287856578827,0.014983294531702995,-0.07633206993341446,-0.05945853516459465,-0.026866422966122627,0.07267285138368607,0.04384296014904976,-0.01946980319917202,-0.05229424685239792,0.07089502364397049,-0.1200166568160057,-0.034736230969429016,0.041944947093725204,0.012028876692056656,0.07069308310747147,0.07776582986116409,-0.0026151526253670454,-0.056184764951467514,0.06001061573624611,0.01901319995522499,-0.02757195755839348,-0.1144396960735321,0.04361343011260033,0.05201764032244682,-0.015129623003304005,0.030443701893091202,-0.06125196814537048,-0.0004878687032032758,-0.050953108817338943,0.08701179921627045,0.03606594726443291,0.023260241374373436,0.04209506884217262,0.004851565696299076,0.021789053454995155]},{"text":"These were large sheets of paper which had to be closely covered with writing, and as soon as they were so covered, they were burnt in the furnace.","book":"Animal Farm","chapter":10,"embedding":[-0.006217079237103462,0.1438574492931366,0.015534873120486736,0.13704976439476013,0.05290038883686066,-0.024410557001829147,-0.00030015563243068755,-0.011233246885240078,-0.0070718382485210896,0.05418461188673973,0.03197704628109932,0.09295918047428131,0.026592709124088287,-0.010521970689296722,-0.049024708569049835,-0.025113560259342194,-0.049137067049741745,-0.08581499755382538,-0.0962652787566185,0.008595521561801434,0.041047658771276474,0.07285021245479584,-0.03218583017587662,0.04991573095321655,0.05935373529791832,0.08272729814052582,-0.09174612164497375,0.013919105753302574,-0.02367366850376129,0.08482127636671066,-0.007467909250408411,0.008033002726733685,-0.045982979238033295,0.07423292100429535,0.09278089553117752,-0.023655017837882042,-0.0003953280101995915,0.061665382236242294,0.01746797375380993,-0.03737654909491539,-0.013111889362335205,-0.01811731979250908,0.05139749124646187,-0.014670477248728275,-0.09640900045633316,0.0011902163969352841,-0.004793998319655657,-0.047131504863500595,-0.04169732704758644,-0.0342680960893631,0.02678683027625084,0.039181604981422424,-0.08422232419252396,-0.015647998079657555,0.031139036640524864,-0.11067459732294083,-0.017855262383818626,-0.04475998505949974,-0.0008002733229659498,-0.002848587930202484,-0.048135705292224884,0.05460020527243614,-0.11839704215526581,0.01676534302532673,0.005229020491242409,0.015485971234738827,0.06454000622034073,0.007441941648721695,0.06481429189443588,0.03250911831855774,0.04052720591425896,0.07634856551885605,0.005512712057679892,-0.03387558460235596,0.01688053086400032,-0.04751915484666824,-0.004043575841933489,-0.09272538125514984,-0.022427953779697418,-0.04008050635457039,-0.03948299214243889,0.026149408891797066,0.018610944971442223,0.039445661008358,-0.06123073026537895,0.03416791185736656,0.004571880679577589,-0.013880210928618908,0.06871351599693298,-0.034098606556653976,0.06606396287679672,-0.043249595910310745,0.03608067333698273,0.09565874189138412,-0.002429079031571746,-0.08012504875659943,0.03760749474167824,0.049386125057935715,0.09163856506347656,0.0007316914270631969,0.029315391555428505,-0.07307935506105423,-0.012393985874950886,0.012172428891062737,0.0074684894643723965,-0.03469313681125641,-0.04511919990181923,-0.018389515578746796,-0.0308175478130579,-0.019686618819832802,-0.023542305454611778,0.014999316073954105,-0.020666472613811493,0.04615939036011696,0.05236402526497841,-0.04030763357877731,0.03451161086559296,-0.017805201932787895,-0.08398289978504181,0.04028618708252907,0.024053961038589478,0.032160136848688126,-0.04723929986357689,0.0018124565249308944,-0.07353024929761887,0.010804650373756886,-0.017421158030629158,-1.2936478797982435e-33,0.023645510897040367,0.14554312825202942,-0.011072286404669285,0.04598933830857277,0.06842833757400513,0.007136893458664417,-0.07494311034679413,-0.03126563876867294,0.061974383890628815,0.0756727010011673,-0.031630709767341614,0.06731783598661423,0.011317521333694458,0.06651592254638672,-0.03498932346701622,-0.038306187838315964,-0.02273235097527504,0.008235827088356018,-0.04714958742260933,-0.02255350351333618,-0.10978003591299057,0.0170931164175272,0.1190343126654625,-0.028835712000727654,-0.04333784431219101,0.044716522097587585,-0.009426201693713665,-0.031830575317144394,-0.053750645369291306,-0.0036454745568335056,0.1068793386220932,-0.030135788023471832,0.011755959130823612,-0.004806761629879475,-0.06415364891290665,0.08760514110326767,-0.032223768532276154,-0.07641244679689407,-0.019794650375843048,0.016540061682462692,-0.029810074716806412,0.0052083018235862255,0.10776468366384506,0.03626490384340286,0.06425445526838303,0.020745567977428436,-0.11809736490249634,0.1492370367050171,-0.00937584973871708,-0.030685940757393837,-0.023389747366309166,0.031829725950956345,0.035425737500190735,-0.06823942065238953,0.052868910133838654,0.027277987450361252,0.11285719275474548,-0.07430031895637512,-0.011699361726641655,0.01853422448039055,0.09445106983184814,0.03523256629705429,0.043606553226709366,-0.017825717106461525,-0.021974368020892143,-0.02906600385904312,-0.003503648564219475,0.0280916765332222,0.014924673363566399,-0.04413443058729172,-0.044651154428720474,-0.028334010392427444,0.012969129718840122,-0.03619832545518875,-0.0007071002619341016,-0.007605251390486956,-0.012684155255556107,-0.015799351036548615,-0.056353453546762466,0.012777846306562424,0.006293606944382191,-0.13892193138599396,-0.10911945253610611,-0.054496414959430695,-0.04954052343964577,-0.06370881199836731,-0.016940155997872353,0.024065034464001656,-0.027246711775660515,0.021844394505023956,-0.05145921930670738,0.0047770095989108086,0.07593225687742233,-0.07001771032810211,-0.03423428535461426,-1.2191925267946406e-33,-0.03553192317485809,0.025439755991101265,-0.044457290321588516,0.027610430493950844,-0.05745952948927879,-0.006846186704933643,-0.0252449419349432,0.03517628088593483,-0.06345179677009583,0.010710323229432106,-0.0015674842288717628,-0.06585241854190826,-0.037311773747205734,-0.012220021337270737,-0.014031748287379742,-0.0048639834858477116,0.038697417825460434,0.029771123081445694,0.04594584181904793,-0.054809052497148514,-0.07311583310365677,0.02002737857401371,-0.05775877833366394,0.07026071846485138,-0.035970114171504974,0.025237055495381355,0.0008174440590664744,-0.08770721405744553,-0.05166533961892128,-0.03973425179719925,0.0311762485653162,-0.07666400074958801,-0.008436569012701511,0.0203779898583889,0.07886664569377899,-0.00010342080349801108,0.05962330475449562,0.02072785794734955,0.003751837881281972,-0.13528136909008026,0.005144525784999132,0.04433910921216011,0.00845842994749546,0.09979554265737534,-0.09297957271337509,-0.03151552751660347,-0.05029578134417534,-0.05282536521553993,0.030317213386297226,0.08255813270807266,0.035995058715343475,-0.050258684903383255,-0.02070121094584465,-0.026211632415652275,-0.1082468330860138,-0.014090627431869507,-0.02902536652982235,-0.046027496457099915,0.01698319986462593,0.05597563460469246,-0.003630605759099126,0.013162941671907902,0.022693200036883354,0.008946709334850311,0.01662886142730713,-0.039492495357990265,-0.01666008122265339,-0.006596384570002556,0.0004768127982970327,0.035270415246486664,0.07538152486085892,0.0018018689006567001,-0.01874348521232605,-0.025252288207411766,-0.0038294249679893255,-0.007531662937253714,-0.07269183546304703,0.03574865311384201,-0.07997739315032959,0.03656664118170738,-0.001351261860691011,-0.023809460923075676,-0.03141142800450325,0.06465905159711838,0.03434868901968002,-0.03345730900764465,0.030994251370429993,-0.010768008418381214,-0.015318255871534348,-0.008323474787175655,0.05444230139255524,0.021456988528370857,0.131241574883461,0.046809613704681396,-0.04438157007098198,-2.642228835725291e-8,-0.05614976957440376,-0.01879950985312462,0.018921462818980217,-0.013243965804576874,-0.0014565646415576339,-0.0017362595535814762,0.0871858224272728,-0.0028492738492786884,-0.02927384153008461,0.06417053937911987,-0.07279115170240402,0.017414532601833344,0.032475925981998444,0.021162664517760277,0.00019612215692177415,-0.026902105659246445,-0.01661355420947075,-0.08002498000860214,-0.012982379645109177,-0.034452714025974274,0.023117708042263985,0.019804850220680237,-0.031709056347608566,-0.0069207740016281605,-0.01665317825973034,0.012017890810966492,-0.016815204173326492,0.02671917714178562,-0.011066384613513947,0.10116828233003616,-0.03501542657613754,0.010270378552377224,0.03549379110336304,-0.04213342443108559,-0.021046971902251244,0.055459510535001755,0.08340729027986526,-0.03091205097734928,-0.02374029904603958,-0.06856372952461243,-0.10494285821914673,-0.053415291011333466,0.041730716824531555,0.012060767970979214,0.11552204936742783,-0.10949519276618958,-0.05891165882349014,0.03560918942093849,-0.06043926253914833,0.04635906219482422,0.07748960703611374,0.031023595482110977,0.0741778239607811,0.05758597329258919,-0.07910992950201035,-0.1189001128077507,0.03129960596561432,0.007094793953001499,0.11527752876281738,0.01132000982761383,-0.02105564810335636,-0.01967243291437626,-0.0474521778523922,0.0272032730281353]},{"text":"Sometimes the older ones among them racked their dim memories and tried to determine whether in the early days of the Rebellion, when Jones's expulsion was still recent, things had been better or worse than now.","book":"Animal Farm","chapter":10,"embedding":[0.02687115967273712,0.04650966078042984,0.007868642918765545,0.07198291271924973,0.07274923473596573,0.011541210114955902,-0.02755974978208542,-0.018114997074007988,-0.1094563826918602,-0.004982048645615578,0.029835648834705353,0.11114252358675003,0.06400341540575027,-0.005375891923904419,-0.04467898607254028,0.017443856224417686,-0.041177235543727875,0.014033904299139977,-0.06400972604751587,-0.036200109869241714,-0.07126515358686447,-0.030930880457162857,0.03957882523536682,0.048196665942668915,0.03889311105012894,0.04988742619752884,-0.030225660651922226,0.03265425190329552,0.003241815837100148,0.002292944584041834,-0.027567287907004356,0.0379621759057045,-0.017986001446843147,0.020740637555718422,-0.04604371637105942,-0.013020632788538933,0.0949149876832962,0.06292282789945602,0.027522241696715355,-0.08578910678625107,0.045029617846012115,0.04201410710811615,0.07375550270080566,-0.0933133214712143,-0.053633786737918854,-0.004862222820520401,0.017778828740119934,-0.06916537135839462,-0.04544709250330925,-0.08020670711994171,0.0490245595574379,-0.009247461333870888,0.00042754242895171046,-0.0076876115053892136,-0.027445323765277863,0.02054046280682087,0.015696832910180092,0.019728487357497215,-0.010136069729924202,0.013792567886412144,-0.049257006496191025,0.017200050875544548,0.030375206843018532,0.003995809238404036,-0.08019835501909256,-0.08136200159788132,0.03124961443245411,0.00015638649347238243,0.028550641611218452,0.04969581961631775,-0.0763009563088417,-0.00028781272703781724,-0.05902925878763199,-0.09311031550168991,-0.06474046409130096,0.030367083847522736,0.06561581790447235,-0.014211675152182579,-0.0341465026140213,-0.11756503582000732,-0.00402523297816515,0.010796993039548397,0.03105359710752964,0.028317028656601906,0.010066310875117779,-0.0430363267660141,0.038439761847257614,-0.11754263937473297,-0.005914867389947176,-0.018335238099098206,0.053936537355184555,-0.04244640842080116,0.02193611115217209,0.06442540138959885,0.03762464225292206,-0.09810405224561691,0.024164440110325813,0.010688302107155323,-0.048638150095939636,0.09104390442371368,-0.10944972932338715,0.020685357972979546,0.017265820875763893,-0.039512693881988525,0.06493952125310898,-0.03299994766712189,0.028940632939338684,-0.015597849152982235,-0.05651048570871353,-0.052340831607580185,-0.05838469788432121,0.052440427243709564,-0.014324959367513657,0.05236966162919998,0.0269707553088665,-0.0447121299803257,-0.009272963739931583,-0.000041859591874526814,-0.11766456812620163,0.028113748878240585,0.02867273800075054,0.00817875750362873,-0.02409203164279461,0.09703847020864487,-0.05037622153759003,0.03424129635095596,-0.03505609184503555,-1.4561628206998057e-33,0.04665518179535866,-0.034565433859825134,-0.07730165868997574,-0.009805181063711643,0.0030400187242776155,0.04101935401558876,-0.011145614087581635,0.010391881689429283,0.11244647949934006,-0.026039429008960724,0.025306949391961098,-0.04791583865880966,0.01350525300949812,-0.03444546088576317,0.004796232562512159,0.022470861673355103,-0.17559200525283813,-0.0018082805909216404,0.051681261509656906,-0.04887733235955238,-0.007721795234829187,0.061170708388090134,-0.07104787975549698,-0.03095117397606373,0.015861837193369865,0.011040239594876766,-0.01898258365690708,0.06848232448101044,-0.013373449444770813,-0.006476002745330334,0.03232836350798607,0.03881421685218811,0.02046571671962738,0.0283984262496233,0.025201385840773582,0.0664907693862915,0.10252811014652252,-0.041770488023757935,0.00142274412792176,-0.04591524228453636,-0.022765111178159714,0.05303848162293434,0.04413833096623421,-0.025458037853240967,-0.04556193947792053,0.007311384193599224,0.005318721756339073,-0.07309696823358536,0.02172488532960415,0.04131491482257843,0.018837181851267815,-0.018761295825242996,0.035872336477041245,-0.03934527561068535,-0.03976723179221153,-0.046705663204193115,-0.031481221318244934,0.0796753317117691,0.033382292836904526,-0.0703713521361351,0.08624938875436783,-0.020463548600673676,-0.033262621611356735,-0.01891005039215088,0.0201412346214056,0.012575886212289333,-0.018420740962028503,0.03398460894823074,-0.06344838440418243,0.012018968351185322,-0.055987462401390076,0.027367128059267998,-0.11552750319242477,-0.11391091346740723,-0.039415065199136734,-0.06048823148012161,0.01673327200114727,-0.04460909217596054,0.04767442122101784,-0.08452930301427841,0.0785910040140152,-0.08302336186170578,-0.029587609693408012,-0.024904778227210045,0.034305885434150696,-0.021671025082468987,0.0733005478978157,-0.06796920299530029,0.03530840203166008,0.053635191172361374,0.0140630342066288,0.021799754351377487,0.03561568632721901,-0.011358258314430714,0.02923412062227726,-2.078838249542199e-33,-0.04673294350504875,0.05841252580285072,-0.007978230714797974,0.15145939588546753,0.04270865023136139,-0.04874555394053459,-0.025377312675118446,-0.0010946403490379453,-0.013867883943021297,-0.08699341863393784,-0.036470409482717514,-0.02778889425098896,0.008183334954082966,0.07015100866556168,0.0193177480250597,-0.07499324530363083,0.01761532761156559,0.07227147370576859,0.020247459411621094,0.04830014705657959,-0.04001503065228462,0.0744238868355751,-0.06592433899641037,-0.09307606518268585,-0.007025550119578838,0.03458109498023987,-0.004201275762170553,-0.04107246547937393,-0.13376544415950775,-0.03127705305814743,0.018216174095869064,-0.0026028889697045088,0.021279463544487953,0.058225732296705246,0.044776517897844315,0.012677747756242752,-0.011531523428857327,-0.006668116897344589,-0.03772257640957832,-0.09544049203395844,-0.03882860019803047,0.00797234009951353,0.01576661877334118,0.038635510951280594,0.031766265630722046,0.08310689777135849,-0.022318795323371887,0.028904128819704056,0.07035233825445175,0.0724298283457756,-0.0417974628508091,0.017556218430399895,0.021097518503665924,0.045221760869026184,-0.004341532476246357,-0.08152604848146439,-0.0047335256822407246,-0.06410308182239532,0.006022627931088209,0.058880746364593506,-0.12351524829864502,-0.04099702090024948,-0.05894231051206589,-0.0165073424577713,0.023847486823797226,0.031502462923526764,-0.02666674368083477,0.005262676626443863,-0.009514975361526012,0.009140342473983765,0.06053405627608299,-0.06658303737640381,-0.07118231058120728,-0.031684912741184235,-0.003490879898890853,0.017430976033210754,-0.07036437839269638,0.05059937760233879,-0.09945081174373627,-0.012254772707819939,-0.04685807600617409,-0.04685740917921066,-0.0010709718335419893,-0.007099100388586521,-0.08546380698680878,0.10355076193809509,0.04952791705727577,0.042498551309108734,0.03831998258829117,-0.08059372007846832,0.06189955398440361,-0.13746164739131927,0.0604696087539196,-0.07906196266412735,-0.004750290885567665,-3.289177996634862e-8,-0.010983066633343697,-0.052362337708473206,-0.006098520010709763,0.033093228936195374,0.0010987373534590006,0.06546508520841599,-0.0241371002048254,0.04875950515270233,-0.023656660690903664,0.08057992905378342,0.06808604300022125,0.07408919930458069,-0.00021236475731711835,-0.02054169401526451,0.030030248686671257,-0.014141567051410675,-0.011417592875659466,-0.09269068390130997,0.0014568344922736287,0.03996805474162102,-0.08073069155216217,-0.028487306088209152,0.07820891588926315,-0.010534904897212982,0.015224604867398739,0.0505717508494854,-0.04062362387776375,-0.02538592368364334,-0.03140075132250786,0.007868642918765545,0.04326919466257095,0.04428238794207573,0.008866480551660061,0.04753709211945534,0.039961691945791245,0.04392624273896217,0.03209267929196358,0.054969120770692825,0.014874706044793129,-0.055999331176280975,0.0072954860515892506,-0.02294785901904106,0.011166781187057495,0.032404396682977676,0.11215178668498993,0.03475598990917206,0.014765892177820206,0.002554490463808179,0.00038592168129980564,-0.06515385210514069,0.0551246777176857,0.09404706954956055,0.03757952153682709,0.04082264006137848,0.06498824059963226,-0.060135357081890106,0.021383896470069885,0.06311383098363876,-0.12455786764621735,-0.02009921707212925,0.08508701622486115,0.061762139201164246,-0.08287325501441956,-0.0327109731733799]},{"text":"More, they never lost, even for an instant, their sense of honour and privilege in being members of Animal Farm.","book":"Animal Farm","chapter":11,"embedding":[0.03518111631274223,0.04239233210682869,0.053640201687812805,0.06425544619560242,0.01429254375398159,0.03870509937405586,-0.012591618113219738,-0.0663362368941307,-0.016584431752562523,0.00477365730330348,0.07050502300262451,-0.05051026493310928,0.025557583197951317,-0.026800913736224174,-0.08567064255475998,0.0414365790784359,-0.06359902769327164,0.008287050761282444,-0.04402665048837662,-0.03466276079416275,-0.0763641893863678,-0.028749719262123108,0.03827240690588951,0.06318839639425278,-0.0034232446923851967,-0.07030169665813446,-0.060922034084796906,0.028940899297595024,-0.020619932562112808,0.03192362189292908,-0.09834960848093033,-0.010360590182244778,0.04957851395010948,0.08140512555837631,-0.03736593946814537,0.10065203905105591,0.08542423695325851,-0.02340216003358364,0.0624430887401104,-0.06541263312101364,0.015391851775348186,-0.04261334612965584,0.029107943177223206,-0.04346982762217522,-0.05930779501795769,-0.004446579609066248,-0.01286391168832779,-0.0906217023730278,0.023213697597384453,-0.01909414678812027,0.06916488707065582,-0.025444962084293365,0.04391712322831154,-0.04515724256634712,-0.003454949241131544,0.01824641041457653,-0.07495557516813278,-0.0902974009513855,0.003948775120079517,0.03257787227630615,0.05786188691854477,0.026009924709796906,0.015464621596038342,0.04059329256415367,-0.01657146029174328,-0.018201271072030067,-0.04366514831781387,0.016671154648065567,-0.0324527807533741,-0.01679259166121483,-0.0011573866941034794,-0.043569039553403854,0.009442852810025215,-0.046888697892427444,-0.12172482162714005,0.03617946058511734,0.02346031926572323,-0.03245161846280098,0.026736529543995857,-0.0002570662763901055,-0.04143862798810005,-0.004991430789232254,-0.03240791708230972,0.08282395452260971,0.04470087215304375,-0.03168430179357529,0.001970787299796939,-0.10265925526618958,0.008121644146740437,0.009756538085639477,-0.04131891205906868,-0.0326082818210125,0.05039805546402931,-0.015845108777284622,0.045740772038698196,-0.002776199718937278,0.00006949216913199052,0.036786727607250214,-0.032366491854190826,0.011368360370397568,-0.04442169517278671,-0.020990315824747086,0.00869759637862444,-0.041306521743535995,-0.01619623228907585,-0.013569949194788933,-0.09514008462429047,0.004397183191031218,0.032180316746234894,0.08576285094022751,-0.06917829066514969,0.02627648040652275,0.00837678648531437,0.1404808759689331,0.05730024352669716,0.060976218432188034,-0.11807017028331757,-0.04169321432709694,-0.0685611143708229,0.05962822958827019,0.017438523471355438,0.0824221596121788,-0.02629491686820984,-0.027432769536972046,0.03462360054254532,-0.0014401063090190291,-0.007239691913127899,-3.357305905496519e-33,-0.009958268143236637,-0.06761883199214935,-0.045348767191171646,-0.008175557479262352,0.013227270916104317,0.01699620485305786,-0.0341523215174675,-0.0072326501831412315,0.005152849946171045,-0.00092078692978248,-0.04868809133768082,-0.009875724092125893,0.052785418927669525,-0.1123199537396431,-0.0005736104212701321,-0.017936915159225464,-0.03678085654973984,-0.0270337276160717,0.06586319208145142,0.005753335077315569,-0.02768366038799286,0.12192828208208084,0.004806423094123602,0.07843252271413803,0.01876445673406124,-0.08690369874238968,-0.014892578125,-0.10275989025831223,-0.014218064025044441,0.03730718046426773,0.03696427866816521,-0.1325802057981491,0.006971161812543869,-0.06992634385824203,-0.03221344202756882,0.0008238913724198937,0.04542243853211403,-0.08727298676967621,0.015472845174372196,-0.01735028065741062,0.004596763756126165,-0.04000169783830643,0.08401886373758316,0.012006598524749279,-0.007791963405907154,0.010883672162890434,0.06606394052505493,0.023011822253465652,-0.034429073333740234,0.10066841542720795,0.005265714600682259,0.03002845123410225,0.029458671808242798,-0.04446341469883919,0.08161095529794693,0.030061032623052597,0.0016657259548082948,0.08437251299619675,-0.069660484790802,-0.00680531607940793,-0.018537022173404694,0.003133581718429923,0.009007598273456097,-0.05533507838845253,0.004445627331733704,-0.054979220032691956,0.030507324263453484,0.028168009594082832,-0.06716236472129822,0.08709363639354706,0.04847845062613487,-0.053302228450775146,-0.08983955532312393,-0.05631982162594795,-0.05745554342865944,-0.027176368981599808,0.0665401965379715,-0.03908199816942215,0.011238855309784412,-0.018572261556982994,0.04157936945557594,0.03375113382935524,-0.06659041345119476,0.033818311989307404,0.053571976721286774,0.03043457679450512,0.12433674931526184,-0.11958463490009308,0.058301154524087906,-0.07741889357566833,0.045122772455215454,-0.01054996158927679,0.01250646822154522,-0.11233758926391602,-0.03645709529519081,1.8486876595817264e-33,-0.018354155123233795,0.0065576666966080666,0.01892010308802128,0.04179871827363968,0.030786963179707527,-0.023481883108615875,0.006154438480734825,0.05091998726129532,-0.019173873588442802,0.03706052899360657,-0.03486114740371704,0.06634421646595001,-0.04223353788256645,0.07152678817510605,0.014383851550519466,-0.029510503634810448,0.01840697042644024,0.03113076463341713,0.035980284214019775,-0.03342209383845329,0.02431861124932766,0.0714276060461998,-0.009824691340327263,0.0833992287516594,0.0071704513393342495,0.0786171704530716,-0.08338654041290283,0.024640068411827087,-0.061170607805252075,-0.13602496683597565,0.10582184046506882,0.00011585938045755029,-0.023312736302614212,-0.003393712919205427,0.03470412641763687,-0.000021169762476347387,-0.0037195535842329264,0.01077489648014307,-0.0397261343896389,0.014303780160844326,0.03594932705163956,0.01469296496361494,-0.07421468943357468,0.02933315746486187,-0.06293407827615738,0.062259357422590256,0.032459795475006104,-0.009508536197245121,-0.020749621093273163,0.05782914534211159,-0.04275311529636383,-0.015123278833925724,-0.0010267505422234535,-0.037703584879636765,-0.014350902289152145,0.002389860339462757,0.06585679203271866,-0.05738852173089981,0.02306697703897953,-0.0405634306371212,-0.02073640562593937,-0.03524361178278923,0.012979806400835514,0.1521574705839157,-0.07999654114246368,0.005118018947541714,-0.05635344609618187,0.046889178454875946,-0.06627248972654343,-0.0006531723774969578,0.04556039720773697,-0.009975418448448181,-0.06073099374771118,0.0011918748496100307,-0.09042822569608688,0.09175760298967361,-0.03857551887631416,0.027386141940951347,0.011460860259830952,-0.029059795662760735,-0.023925188928842545,-0.07564797252416611,0.06119915097951889,0.0448320098221302,0.010748447850346565,0.05585559457540512,-0.027325527742505074,0.018615847453475,0.09818042814731598,0.014205889776349068,-0.025079289451241493,-0.08940894901752472,0.08107153326272964,-0.05459219589829445,-0.0017642047023400664,-2.4452512903394563e-8,-0.020018108189105988,0.08467129617929459,0.014928251504898071,0.07331167906522751,0.021935107186436653,0.002618455560877919,0.017436577007174492,0.003396588610485196,0.01952553354203701,0.16510389745235443,-0.033780623227357864,0.014379958622157574,-0.06543171405792236,0.057614341378211975,0.03849818930029869,0.02995416522026062,0.11317808926105499,-0.059332191944122314,-0.014342608861625195,0.03422880172729492,-0.0605991929769516,0.05092082917690277,-0.07664231956005096,-0.05137345939874649,-0.07151723653078079,-0.030666425824165344,-0.03695230185985565,-0.05811294913291931,0.037673935294151306,0.07654201239347458,-0.0022018100135028362,-0.0018638126784935594,-0.033023376017808914,-0.04529937356710434,-0.017330558970570564,0.0570315457880497,-0.0572211854159832,-0.07340993732213974,0.024194255471229553,0.016612518578767776,-0.08320971578359604,0.07813937962055206,0.11403242498636246,0.030295081436634064,0.06312771886587143,0.0038443314842879772,0.05231143534183502,0.07390794157981873,0.024460334330797195,-0.0760762095451355,0.02644689939916134,0.016299385577440262,-0.03716175630688667,0.06624621897935867,0.007074294611811638,-0.07987240701913834,0.004548900295048952,0.013800938613712788,0.047445692121982574,-0.026565823704004288,-0.027886945754289627,-0.008038466796278954,-0.01104600541293621,-0.032330628484487534]},{"text":"The Republic of the Animals which Major had foretold, when the green fields of England should be untrodden by human feet, was still believed in.","book":"Animal Farm","chapter":11,"embedding":[0.02899254858493805,0.03530896082520485,0.050553835928440094,0.054209429770708084,0.10748625546693802,-0.0027517478447407484,-0.04078593850135803,-0.04308329522609711,-0.056113701313734055,0.07107747346162796,-0.014855487272143364,0.019276127219200134,-0.031240515410900116,0.020276008173823357,-0.07094892859458923,0.050781600177288055,-0.15229886770248413,-0.018708467483520508,-0.011137785390019417,0.10926909744739532,-0.09808485209941864,-0.0020381517242640257,0.007001065649092197,0.031917206943035126,-0.05477368086576462,-0.01633204147219658,0.012016869150102139,0.024949301034212112,-0.006488552317023277,-0.061747144907712936,-0.04613810405135155,0.03893750160932541,0.02403062954545021,0.03648364543914795,0.027278663590550423,0.006771652959287167,0.054518286138772964,-0.08966891467571259,0.010747183114290237,0.044758085161447525,-0.036334969103336334,-0.10434345155954361,0.03654070198535919,0.015083272010087967,-0.008727305568754673,0.02694406360387802,-0.0062965028919279575,-0.01916673593223095,-0.024482887238264084,-0.047968897968530655,0.0652289018034935,-0.0038163040298968554,-0.02392008528113365,0.005276785232126713,-0.02528885193169117,-0.042372409254312515,-0.017879668623209,-0.04651997610926628,0.03760490193963051,-0.03757880628108978,0.06941716372966766,0.06658215820789337,0.03391546010971069,0.0006002489826641977,-0.015230072662234306,-0.013682832941412926,-0.05287156626582146,0.019669970497488976,-0.04766472429037094,-0.022907938808202744,0.003556236159056425,-0.06844962388277054,0.06448130309581757,-0.1267608404159546,-0.057695403695106506,-0.004595042672008276,-0.08779512345790863,0.08770062029361725,0.008304577320814133,-0.053718600422143936,0.039691261947155,0.09025585651397705,-0.05992592126131058,0.016063706949353218,0.07122275233268738,-0.0063870931044220924,-0.05508582666516304,-0.038191940635442734,-0.036557167768478394,-0.05502648279070854,0.002243278780952096,-0.126069575548172,0.050249241292476654,0.0744403600692749,0.09169565886259079,0.05972862243652344,0.0386342853307724,-0.02017888054251671,-0.033165641129016876,0.014335686340928078,-0.0394662544131279,-0.01999233476817608,-0.03217969089746475,0.0221641156822443,0.03519875556230545,-0.03655016049742699,-0.08090344071388245,0.04158954694867134,0.058773498982191086,0.008943413384258747,0.006623835302889347,-0.034968066960573196,-0.04505405202507973,0.1375952959060669,0.01869923248887062,0.04740471392869949,-0.03409206494688988,-0.06131067872047424,-0.01664119027554989,-0.05791222304105759,0.006397855002433062,0.04869193583726883,-0.029192067682743073,-0.0372551754117012,0.03367988020181656,0.054214898496866226,0.01435771957039833,-9.793345575482837e-34,0.007706695236265659,-0.05727251246571541,-0.012038664892315865,-0.04756549000740051,0.02387089654803276,0.04096682369709015,-0.03279334679245949,0.0395176075398922,0.04364451766014099,-0.02388272061944008,-0.009438170120120049,-0.042214926332235336,-0.001596371759660542,-0.11974990367889404,0.00425356812775135,-0.002172179287299514,-0.06161060556769371,0.018333112820982933,0.012133906595408916,-0.02022397331893444,0.026006484404206276,0.07702377438545227,0.016267746686935425,-0.023583948612213135,0.002185421297326684,0.01385650597512722,0.022106235846877098,-0.02175126038491726,0.042505085468292236,0.02330038696527481,0.09017679840326309,-0.07237062603235245,-0.03085610270500183,0.010433132760226727,0.022053489461541176,-0.040481675416231155,0.03887379914522171,-0.11170563846826553,0.03397807106375694,0.02898019179701805,0.0396479070186615,-0.017892541363835335,0.07630626112222672,-0.03888501226902008,0.09813176840543747,0.04925127699971199,0.03611345216631889,0.0004446969833225012,-0.06905876100063324,-0.02049349993467331,-0.005675595253705978,0.07141989469528198,0.04518812522292137,-0.09868061542510986,0.02217322401702404,-0.01035285647958517,0.017183909192681313,0.11934121698141098,-0.08585254848003387,-0.0686078816652298,-0.01690695993602276,0.01849653385579586,0.060123469680547714,-0.04698605090379715,0.010693442076444626,0.02713583968579769,-0.09940876066684723,-0.0004477027978282422,-0.11559563875198364,0.036786969751119614,-0.019447453320026398,0.04040912538766861,-0.09709680080413818,-0.0015062292804941535,-0.027432551607489586,0.012044692412018776,0.04746662825345993,0.024382732808589935,-0.1228506788611412,-0.05821241810917854,-0.0364941731095314,0.016423728317022324,-0.07242287695407867,0.036875687539577484,0.11030460894107819,0.020400820299983025,0.06186096370220184,0.0007196380756795406,0.08197332173585892,-0.02749340981245041,0.0011021809186786413,0.01497282087802887,-0.03590649738907814,-0.1494247317314148,-0.035369619727134705,-2.49008366248043e-34,-0.06645670533180237,0.03149634972214699,0.008579774759709835,0.031656522303819656,0.024267146363854408,-0.028187936171889305,-0.05749794840812683,0.0026534460484981537,-0.002171474741771817,-0.012982373125851154,-0.05427955090999603,0.06284654885530472,-0.007508035283535719,0.052600517868995667,0.053040407598018646,-0.032317865639925,-0.05402073264122009,-0.03380528464913368,0.02284807525575161,0.027626000344753265,-0.033170659095048904,-0.08823104202747345,-0.04901541769504547,0.008808238431811333,-0.0386728011071682,0.13048744201660156,-0.09734439104795456,-0.054566480219364166,-0.0517672598361969,-0.11411529779434204,0.04740389809012413,0.05317230522632599,-0.07338166981935501,-0.06558875739574432,-0.03994451463222504,-0.017670733854174614,-0.0581737719476223,0.00611077668145299,0.034152016043663025,0.04694468900561333,0.013588132336735725,-0.08862438052892685,-0.03127265349030495,-0.010246453806757927,-0.034518688917160034,-0.030569136142730713,-0.03941219672560692,0.08170146495103836,0.03202083334326744,0.04831479489803314,-0.036304719746112823,0.09108346700668335,0.01570424623787403,-0.06854676455259323,0.04114530235528946,-0.03884512186050415,-0.029541078954935074,-0.04059259220957756,-0.02655084989964962,-0.022772392258048058,0.05199411138892174,0.009633087553083897,-0.045583389699459076,0.009843125939369202,0.023594360798597336,0.0377676822245121,-0.04720572382211685,0.08416232466697693,0.032758425921201706,-0.010459545068442822,0.044408559799194336,0.0233511570841074,-0.05605089291930199,0.0859476700425148,0.04221821203827858,0.08968038856983185,0.06156076863408089,-0.03508182615041733,0.09399604052305222,0.01549087930470705,0.00792586337774992,-0.07887603342533112,0.03291408345103264,-0.036919403821229935,0.05945534259080887,0.07871410250663757,-0.019211184233427048,0.04467412456870079,0.057118743658065796,-0.006549750454723835,-0.012757447548210621,-0.003220482263714075,0.016810279339551926,0.03261151537299156,0.07158242911100388,-2.855895253617291e-8,0.01696605794131756,0.026457948610186577,-0.008399021811783314,0.060675762593746185,0.027359727770090103,-0.06902819126844406,0.0016679147956892848,-0.01692444086074829,0.019036483019590378,0.09163356572389603,-0.11511506885290146,-0.011128428392112255,0.046915315091609955,0.07141514867544174,0.060682978481054306,0.007946453988552094,0.00857551209628582,-0.0768972635269165,-0.04766716808080673,0.08440479636192322,-0.014017894864082336,-0.04107288643717766,-0.035317033529281616,-0.0024805651046335697,-0.0019911739509552717,-0.050755634903907776,0.03712398186326027,-0.050768885761499405,-0.013630569912493229,0.08158077299594879,0.028477096930146217,0.006344050168991089,-0.012569766491651535,-0.009450134821236134,0.020466014742851257,0.014013630338013172,0.016185669228434563,-0.01649446412920952,0.037780314683914185,-0.10874263197183609,0.04557684436440468,0.13383373618125916,0.0032786978408694267,0.028179282322525978,0.034992147237062454,-0.056238044053316116,0.033203404396772385,0.0878274142742157,0.006297379732131958,-0.024597888812422752,-0.07393588870763779,0.052397169172763824,0.04192792996764183,0.06842578947544098,-0.012738890945911407,-0.05792894959449768,0.0028990963473916054,0.04180958494544029,-0.04294701665639877,-0.04070178046822548,-0.007375587243586779,-0.0003664738324005157,-0.0066369399428367615,0.04823722690343857]},{"text":"No creature among them went upon two legs.","book":"Animal Farm","chapter":11,"embedding":[0.04810578003525734,0.09345391392707825,-0.04342392832040787,0.05565088987350464,-0.025246625766158104,-0.03906929865479469,-0.03726355731487274,-0.013078797608613968,0.025058142840862274,0.053717780858278275,0.06939764320850372,-0.05791451409459114,-0.00973486714065075,-0.0167208481580019,-0.053321871906518936,-0.002839363180100918,-0.12164770066738129,-0.060440946370363235,0.023745447397232056,0.009154203347861767,0.024212637916207314,0.0021587060764431953,0.0370875708758831,0.004844552371650934,-0.038516025990247726,0.016617517918348312,-0.08476317673921585,-0.06502466648817062,0.04384152963757515,-0.07792763411998749,-0.04853229597210884,0.010848315432667732,-0.10889464616775513,-0.010378981940448284,0.07851547747850418,-0.01456594280898571,0.14544451236724854,0.00996825285255909,0.05324002727866173,-0.002292660530656576,-0.007669280283153057,0.018438050523400307,-0.06931939721107483,-0.008055092766880989,-0.011730000376701355,0.026174619793891907,-0.0960720106959343,-0.037587735801935196,0.020640162751078606,0.007568655535578728,-0.002438431605696678,-0.06164400652050972,-0.05373108759522438,0.04187965393066406,-0.010560566559433937,-0.026575440540909767,-0.006288323551416397,-0.07801467925310135,0.029819125309586525,-0.09515564888715744,0.07755253463983536,0.01842736452817917,0.06640104204416275,0.05010345205664635,-0.043235987424850464,-0.05752424895763397,-0.06596458703279495,-0.10250891000032425,0.011121630668640137,0.04480883106589317,0.006126930471509695,-0.04862254858016968,0.022712424397468567,-0.04395794868469238,-0.046670906245708466,-0.029538925737142563,0.016133300960063934,-0.007775597274303436,0.014325941912829876,-0.010997018776834011,-0.08726238459348679,-0.05039794370532036,-0.014514018781483173,0.026656871661543846,0.04358556866645813,0.03538854792714119,0.00004815625652554445,-0.016499921679496765,-0.1137656420469284,0.05028001219034195,-0.049236878752708435,0.032292209565639496,0.06108316406607628,0.011872275732457638,0.03891066089272499,0.0049964142963290215,0.0003250948793720454,0.039088454097509384,-0.03742779418826103,0.058264538645744324,0.019572528079152107,-0.007718777284026146,0.04481016844511032,0.08586912602186203,0.005260972771793604,0.034161873161792755,0.024309895932674408,-0.0845077708363533,0.06320992857217789,-0.0033850502222776413,0.01598237454891205,-0.011278647929430008,0.06938444823026657,0.09178253263235092,-0.07606448233127594,-0.006913498509675264,-0.078819639980793,-0.03912537544965744,-0.048245832324028015,0.025686683133244514,0.043079424649477005,0.00782092846930027,0.03613907843828201,0.03320922330021858,-0.012246772646903992,0.03261850029230118,0.041831716895103455,-1.270382275201578e-33,0.04864523932337761,-0.048555802553892136,0.04616313427686691,-0.1267780214548111,0.05496092885732651,0.026948245242238045,-0.060800328850746155,0.07682707905769348,0.044892702251672745,0.04607292637228966,-0.11155480891466141,-0.07630866020917892,0.04846141114830971,-0.03890072554349899,-0.025215094909071922,0.00660296157002449,0.07305373251438141,-0.023756349459290504,0.06636499613523483,0.015423010103404522,0.04633532091975212,0.083692267537117,-0.027978770434856415,-0.027301006019115448,-0.022938504815101624,0.07484188675880432,-0.05170385539531708,-0.04270584136247635,-0.017146995291113853,0.03880056366324425,-0.03826116770505905,-0.042022645473480225,0.10170070081949234,0.06515522301197052,-0.029814407229423523,-0.047170501202344894,0.03668667748570442,-0.030638182535767555,-0.06218591332435608,0.02560185268521309,-0.03038790635764599,-0.09638579189777374,0.04091693088412285,-0.10985587537288666,-0.04800119251012802,-0.045394208282232285,-0.06786627322435379,-0.02235744148492813,-0.06898584961891174,0.07432620972394943,-0.04902125522494316,0.10580899566411972,0.09506555646657944,0.039917197078466415,0.011666620150208473,0.043916989117860794,-0.037462055683135986,0.015688329935073853,-0.1225937083363533,0.034508515149354935,0.028843672946095467,0.08318410813808441,-0.016609441488981247,-0.061947740614414215,0.0002575496328063309,-0.04474160820245743,-0.01160210371017456,-0.02228531427681446,-0.017910482361912727,-0.047935500741004944,-0.05363365635275841,-0.025893855839967728,0.0196925587952137,-0.04487337917089462,0.012769141234457493,-0.07438059151172638,-0.03426430746912956,-0.04856696352362633,-0.05761643499135971,-0.0029538292437791824,0.11210581660270691,0.0012673550518229604,0.05903114378452301,-0.016744941473007202,0.06290555745363235,-0.009599844925105572,0.04411713033914566,-0.06938967108726501,0.015445897355675697,-0.000042685798689490184,-0.0442010797560215,0.007023438345640898,-0.0444159097969532,-0.035469070076942444,0.015223122201859951,-9.733173121690198e-34,-0.01833363063633442,0.0804857686161995,-0.033627431839704514,0.02392062544822693,-0.021589497104287148,0.00790940597653389,0.004234099294990301,-0.016971495002508163,0.025685995817184448,-0.014927969314157963,0.05734015256166458,0.011665022931993008,-0.009543264284729958,-0.018496932461857796,0.14955323934555054,0.02867370843887329,0.02185126021504402,-0.011098319664597511,0.03844450041651726,0.08410964906215668,0.06521862745285034,-0.033422380685806274,-0.06418780237436295,-0.027151670306921005,0.0268306452780962,0.09916355460882187,0.0622745119035244,-0.006670240778476,-0.09367265552282333,0.001138538122177124,0.09088550508022308,-0.04945981502532959,0.03378129005432129,-0.021869493648409843,-0.0064405822195112705,-0.029153035953640938,-0.08503635227680206,0.039543043822050095,0.034398023039102554,-0.07548978179693222,0.05584603548049927,0.0034568943083286285,0.01283657643944025,0.05827100947499275,0.02915714867413044,0.0007322006276808679,-0.03232259303331375,0.10864564031362534,-0.007035353220999241,-0.0848512202501297,-0.11041752994060516,0.025670159608125687,0.04663042724132538,-0.06901713460683823,0.046855006366968155,-0.06158063933253288,0.02635221555829048,0.0034155105240643024,0.04834393411874771,-0.00787938293069601,-0.012782695703208447,0.05663016811013222,-0.025266462936997414,0.0567803755402565,0.02442147210240364,0.06699944287538528,-0.039110247045755386,0.07758459448814392,0.005502915009856224,-0.05368376895785332,0.0312841571867466,0.05205261707305908,-0.018859650939702988,-0.02689940854907036,0.043481677770614624,0.09603122621774673,-0.07875186204910278,-0.03690364211797714,0.06254204362630844,-0.06986521929502487,-0.021250858902931213,-0.030715735629200935,-0.040528036653995514,-0.016213128343224525,0.03441833332180977,-0.004024891648441553,-0.0013674888759851456,-0.009513970464468002,-0.02876388095319271,-0.007663060910999775,-0.011642636731266975,0.012298018671572208,0.09588021039962769,0.021884623914957047,-0.0004992990288883448,-1.7260383344819274e-8,0.041604313999414444,0.047135476022958755,0.049420371651649475,0.014232533052563667,-0.04341099411249161,-0.029537783935666084,0.05425658077001572,0.009251712821424007,-0.032311324030160904,0.041305605322122574,-0.0993146002292633,0.010687612928450108,0.019284069538116455,0.09470386058092117,0.051019471138715744,0.049391716718673706,-0.015531903132796288,-0.11557435244321823,-0.04107654094696045,-0.05853079631924629,-0.10576234012842178,-0.011472318321466446,-0.04095782712101936,-0.01934254914522171,0.00977490097284317,-0.01028465386480093,-0.0012453023809939623,-0.11382213234901428,0.05853060632944107,0.01953793130815029,0.014191020280122757,0.010252027772367,-0.06052803993225098,-0.002655745716765523,0.03428059071302414,0.02591562084853649,0.000984124024398625,0.035997048020362854,0.05072738602757454,-0.11574326455593109,-0.03364231809973717,0.13091637194156647,0.03667885437607765,-0.015454991720616817,0.09907521307468414,0.004925251938402653,0.0036329668946564198,-0.036256540566682816,-0.0006377439713105559,-0.04455513879656792,0.013864239677786827,0.04848400130867958,-0.028029805049300194,0.03373618796467781,-0.0214066244661808,-0.07937818020582199,0.04536031186580658,0.02227412723004818,-0.021756239235401154,0.08170094341039658,0.055707260966300964,-0.022025370970368385,-0.017419777810573578,-0.005444490350782871]},{"text":"It ended by their remaining there for a whole week, during which time the other animals saw nothing of them.","book":"Animal Farm","chapter":11,"embedding":[0.08394552767276764,0.055164970457553864,0.06534040719270706,0.08906237035989761,0.05037255957722664,-0.04840121790766716,-0.08210200071334839,-0.06972143799066544,-0.010602105408906937,0.01941257156431675,0.06616681069135666,-0.01934913359582424,-0.047721389681100845,0.05100896954536438,-0.057739850133657455,-0.007090276572853327,-0.0975281372666359,-0.11910062283277512,-0.00219334801658988,-0.025291254743933678,0.006003938615322113,0.012142736464738846,0.044842176139354706,0.012297448702156544,-0.01675521209836006,0.07465869188308716,-0.10639570653438568,-0.06462006270885468,0.03220965340733528,-0.006230814382433891,-0.06325351446866989,-0.007630717474967241,0.015977175906300545,-0.01810438744723797,0.05004405975341797,0.029671672731637955,0.03289841488003731,-0.019558081403374672,0.07939004898071289,-0.02193031832575798,0.04042127728462219,0.026862740516662598,0.00348164071328938,0.004892115481197834,-0.09391681104898453,0.005413149483501911,-0.060974325984716415,-0.08667691051959991,0.08129357546567917,0.015733886510133743,0.01865333318710327,-0.054263144731521606,-0.04913339763879776,0.025898180902004242,0.0031166335102170706,-0.027955733239650726,-0.019780263304710388,-0.08478855341672897,0.036234017461538315,-0.056033723056316376,0.04486801475286484,0.05205386132001877,0.0015580332837998867,0.026224087923765182,0.0010839988244697452,-0.021405979990959167,-0.06169459596276283,-0.02960139885544777,0.09199540317058563,0.01248239353299141,0.062400080263614655,0.0003517920267768204,-0.015711655840277672,-0.055559441447257996,-0.05128871649503708,0.05637660622596741,0.0009570803376846015,-0.019628001376986504,0.037121303379535675,-0.04562706872820854,-0.07291174679994583,-0.016285723075270653,-0.011789548210799694,0.03774198517203331,0.09263543784618378,0.0084689911454916,0.008844148367643356,0.017670631408691406,-0.05806146189570427,0.02026928775012493,-0.04585115239024162,-0.032362692058086395,-0.02191896364092827,-0.00371912051923573,0.011130043305456638,-0.0607391819357872,-0.005286580882966518,0.0709344893693924,0.03588034585118294,0.022340746596455574,-0.03817329555749893,-0.04218854010105133,-0.018897028639912605,-0.08642079681158066,0.02197960950434208,0.02248683013021946,-0.10536219924688339,0.0234189685434103,0.005745911039412022,0.0060119121335446835,-0.05576997250318527,0.0042229024693369865,0.12816116213798523,0.1313679814338684,0.023826273158192635,0.09647312760353088,-0.00942017138004303,-0.025704534724354744,-0.019646767526865005,0.032807257026433945,0.08976299315690994,-0.001753028016537428,0.03950336202979088,-0.013408420607447624,-0.004368309862911701,0.110267274081707,0.06685858964920044,-2.805060312519139e-33,0.022483324632048607,-0.14700862765312195,-0.00411052955314517,-0.06965942680835724,0.10122086852788925,0.016229623928666115,-0.08434532582759857,0.06298334896564484,0.04363004490733147,0.01812194474041462,-0.09283531457185745,-0.043664343655109406,-0.0014533869689330459,-0.08079008013010025,-0.0496632419526577,-0.044513437896966934,0.07886051386594772,0.009732813574373722,0.01562858186662197,-0.05683938041329384,-0.01205174345523119,0.029852529987692833,-0.012362002395093441,0.03554464131593704,0.011314541101455688,0.03181306645274162,-0.03474080190062523,-0.04087350144982338,-0.053289588540792465,0.020773638039827347,-0.01206646952778101,-0.009340984746813774,0.028445275500416756,0.0528646782040596,-0.034662626683712006,0.026335839182138443,0.10883140563964844,-0.04947876185178757,-0.02704128623008728,-0.004348501097410917,0.022446386516094208,-0.07098103314638138,0.013019239529967308,-0.08148305118083954,0.00005532242721528746,-0.050771139562129974,0.0016203413251787424,0.027124447748064995,-0.0009961248142644763,0.0838538408279419,0.024968979880213737,0.048384010791778564,0.014244314283132553,-0.07875505089759827,-0.04750319570302963,0.11327294260263443,0.02667020820081234,-0.03323473781347275,-0.07367895543575287,0.032120123505592346,0.11297867447137833,0.01619100198149681,0.06866031140089035,-0.04158827289938927,0.05055326223373413,0.007881945930421352,-0.002077910117805004,0.001400030916556716,-0.04381558299064636,-0.017531132325530052,-0.01308267842978239,0.010063013061881065,0.0019381851889193058,-0.11731243878602982,0.0196656696498394,-0.06623513251543045,-0.015691418200731277,0.008370374329388142,-0.009490673430263996,0.02912663109600544,0.15219014883041382,0.0038317826110869646,-0.009350473061203957,-0.0015817532548680902,0.011825860477983952,0.00865862239152193,0.06714203208684921,0.0058395741507411,-0.0444466695189476,-0.04566109552979469,-0.01780327595770359,0.0467199943959713,-0.023227287456393242,-0.09395639598369598,0.0773920789361,5.935700050450412e-34,-0.02337740547955036,0.029172208160161972,-0.04307665675878525,-0.04012703523039818,-0.05273164063692093,-0.02780342474579811,-0.03632570058107376,0.08736450225114822,0.01713998056948185,0.06664232164621353,-0.01753406412899494,-0.030586255714297295,0.03200388327240944,0.011911625973880291,-0.0200200118124485,-0.00013466131349559873,0.08930671215057373,-0.02023422345519066,0.02192031405866146,0.0024531283415853977,-0.00546139944344759,-0.08157992362976074,-0.047335028648376465,-0.050807736814022064,0.06666804850101471,0.10657486319541931,0.01425911020487547,-0.007119959220290184,-0.05330798774957657,-0.10265330970287323,0.07938731461763382,-0.08208378404378891,-0.00117692188359797,-0.035408250987529755,0.024081328883767128,-0.006192417815327644,-0.059331901371479034,0.029937561601400375,0.007179298438131809,-0.06350086629390717,0.05291862040758133,-0.03795981779694557,-0.05801615118980408,0.05864662677049637,-0.007989817298948765,0.06061181798577309,0.004794316831976175,0.05192217230796814,-0.028673099353909492,-0.014105928130447865,0.005190105177462101,0.01017465628683567,0.007140515372157097,-0.04493514820933342,-0.021356532350182533,0.022209804505109787,0.027406608685851097,-0.03952275589108467,0.05071038752794266,-0.0693850889801979,0.010099626146256924,0.007390968501567841,-0.03121715411543846,0.04830091446638107,-0.024251721799373627,0.005916701164096594,-0.03238951787352562,0.030034109950065613,0.04218805581331253,-0.0703677162528038,0.07145228981971741,0.12362869828939438,-0.07524790614843369,-0.045090965926647186,0.018494391813874245,0.16681569814682007,-0.07088998705148697,-0.04255598783493042,0.07501060515642166,-0.02629457227885723,-0.05115274712443352,-0.05910438299179077,-0.009908096864819527,0.010426641441881657,0.040439408272504807,-0.022320376709103584,-0.02954918146133423,0.04757246375083923,0.028667086735367775,0.02096949703991413,0.014220773242413998,0.003790720598772168,0.06202292814850807,0.042097799479961395,-0.0178398285061121,-2.2124678977775147e-8,0.04536797106266022,0.07030349224805832,0.015251722186803818,-0.029860373586416245,0.10919174551963806,-0.048784688115119934,0.09355130046606064,0.038893092423677444,-0.0015284670516848564,0.08529993146657944,-0.021427936851978302,-0.016139503568410873,-0.01104886457324028,0.06242477521300316,0.018411502242088318,0.0023385859094560146,0.05794716998934746,-0.11335555464029312,-0.007059336639940739,0.004522575531154871,-0.14714929461479187,-0.031719617545604706,-0.08915097266435623,-0.07466651499271393,-0.02636593207716942,0.0008524416480213404,-0.06387894600629807,0.007511320523917675,0.04598325118422508,-0.03223910927772522,0.02295486442744732,-0.03582204878330231,-0.0475538969039917,-0.005462778266519308,-0.023327136412262917,0.039573658257722855,0.007966747507452965,-0.01580086536705494,0.0391063466668129,-0.05402257665991783,-0.020526453852653503,0.03921109437942505,0.01643623411655426,0.01799977757036686,0.06978257745504379,-0.01486933697015047,0.0052629876881837845,-0.004089923109859228,-0.028708213940262794,-0.03302087262272835,-0.0421525239944458,0.013626986183226109,-0.0614403635263443,0.01688237302005291,0.0157481599599123,-0.08451089262962341,0.0433797687292099,-0.04336322098970413,-0.04308795556426048,0.03871931880712509,-0.041513942182064056,-0.0015091578243300319,-0.11445654928684235,0.09925258159637451]},{"text":"She neighed again, and all the animals broke into a gallop and rushed into the yard.","book":"Animal Farm","chapter":12,"embedding":[0.051921546459198,0.04821956157684326,0.06210769712924957,0.08682991564273834,0.054502759128808975,-0.002705128164961934,-0.031005166471004486,-0.009662102907896042,-0.043032072484493256,0.01400892436504364,0.09618815779685974,-0.018488844856619835,-0.015422884374856949,0.0055913194082677364,-0.04402736946940422,0.040358927100896835,0.0001263268932234496,0.05091091990470886,-0.05997852608561516,-0.020871601998806,-0.05066688731312752,0.07021554559469223,0.10495829582214355,0.06088746711611748,-0.10185717791318893,-0.028618084266781807,-0.08277829736471176,-0.008463697507977486,-0.03257061541080475,-0.0513153038918972,-0.034295905381441116,-0.0631394311785698,0.0007930126739665866,0.04135185107588768,0.012193466536700726,0.00970200914889574,0.10489019006490707,-0.02991405688226223,0.06567583978176117,0.07123711705207825,-0.013972081243991852,-0.04418868571519852,-0.09850889444351196,-0.0212860070168972,-0.007613144814968109,-0.037661146372556686,-0.025680936872959137,-0.04208807647228241,0.10801927745342255,-0.047782108187675476,0.019968563690781593,0.04134700447320938,-0.1088373214006424,-0.02337636612355709,0.005422612186521292,-0.006628645118325949,0.004697899334132671,0.04871440678834915,0.06441067904233932,-0.042959023267030716,-0.040963537991046906,0.07431050390005112,0.044474195688962936,0.08459241688251495,0.055196307599544525,-0.06251773238182068,-0.003246041713282466,-0.03334103152155876,0.023975418880581856,0.08331743627786636,0.07944613695144653,-0.013369773514568806,0.012400845065712929,-0.0816228911280632,-0.10741887986660004,0.04152035340666771,0.05005620792508125,-0.026461157947778702,0.0646958127617836,0.009440097957849503,-0.0402117557823658,-0.10357954353094101,-0.0275486558675766,0.03347044438123703,0.1133093312382698,-0.059080082923173904,-0.01087974477559328,-0.032693929970264435,0.007732576224952936,-0.003709500888362527,-0.07329736649990082,-0.058532457798719406,-0.05256039649248123,0.03598877042531967,0.07980004698038101,-0.01764010265469551,-0.063189297914505,-0.07784570753574371,0.0064944373443722725,0.04160548001527786,-0.0014174015959724784,0.02445756271481514,0.04353329911828041,-0.004882755223661661,0.03991939127445221,0.02305031567811966,-0.04225144535303116,0.029325110837817192,-0.0135693633928895,0.002414517803117633,0.02621665969491005,-0.0272135678678751,0.05105392262339592,0.04904418811202049,0.023849407210946083,0.02606290951371193,-0.07982312887907028,-0.0657544657588005,-0.06118124723434448,0.0008649838273413479,0.055604033172130585,-0.004951028618961573,-0.05598947033286095,0.053828466683626175,0.005438998341560364,-0.007873602211475372,0.08683481812477112,-2.5074260612458975e-33,0.01023194007575512,-0.06099782884120941,-0.037579040974378586,-0.06306877732276917,0.08497308194637299,0.013650884851813316,-0.02824440971016884,0.050494320690631866,0.010060937143862247,0.0312192402780056,0.012718351557850838,-0.09101357311010361,-0.005726346280425787,-0.0564897246658802,-0.045394010841846466,0.013687033206224442,0.02484533004462719,0.03742295876145363,0.05721808969974518,0.05911773815751076,0.00946103222668171,0.04958445206284523,-0.03398766368627548,0.037219543009996414,-0.07530880719423294,-0.004331562668085098,0.009198485873639584,0.016397126019001007,-0.03802843764424324,0.024354593828320503,0.020606644451618195,-0.04027178883552551,0.042020540684461594,0.030991509556770325,-0.004246885888278484,-0.023338377475738525,0.04330141469836235,-0.04215092584490776,-0.048952002078294754,0.030407769605517387,-0.03483967110514641,-0.021214110776782036,0.09875819832086563,-0.04841402918100357,-0.0974905714392662,0.019669760018587112,-0.0851505696773529,0.06177197024226189,-0.005391050595790148,0.056543610990047455,-0.007760734297335148,-0.0008523037540726364,0.10743685066699982,0.03863215073943138,-0.012804023921489716,0.10200262814760208,0.005282364320009947,-0.021517112851142883,0.002251220867037773,0.05889475345611572,0.047983318567276,-0.014358697459101677,-0.046918291598558426,-0.08748812973499298,0.019425395876169205,-0.09977026283740997,0.013659782707691193,0.011804082430899143,-0.02328372374176979,0.030833806842565536,-0.06761888414621353,0.07331234216690063,0.015710260719060898,-0.03432100638747215,-0.07098959386348724,0.02553618885576725,0.04469327628612518,-0.05211559310555458,0.015316772274672985,-0.07247506827116013,0.08129774034023285,0.02016880363225937,0.018283028155565262,0.03695237636566162,0.07291427999734879,-0.003074489301070571,0.025428326800465584,-0.09075979143381119,-0.013081087730824947,-0.03754846006631851,0.07428918033838272,0.054999977350234985,-0.017545944079756737,-0.141300767660141,0.029568545520305634,4.450342633686485e-34,-0.010381125845015049,0.09875093400478363,-0.08070403337478638,0.032715942710638046,-0.03605953976511955,-0.022321349009871483,-0.08528297394514084,-0.006929048337042332,-0.002454786328598857,-0.054378386586904526,-0.06509976834058762,-0.04097665846347809,0.05832888185977936,0.016085537150502205,0.049257975071668625,-0.05068829655647278,0.006597021594643593,-0.02996860258281231,0.05134052038192749,-0.009863458573818207,-0.048313844949007034,-0.04619754105806351,0.05477792024612427,-0.018768813461065292,0.09784930944442749,0.06486174464225769,0.0029941860120743513,-0.014648035168647766,-0.008768453262746334,-0.04227368161082268,0.0710505023598671,-0.08738090842962265,-0.0011735529405996203,0.06440873444080353,0.01386545691639185,0.06962979584932327,-0.00676377909258008,-0.012913278304040432,-0.0009718982619233429,-0.04279615730047226,0.06610485166311264,-0.008825315162539482,-0.005776569712907076,0.02647571824491024,0.020499808713793755,-0.010325588285923004,-0.0259888656437397,0.11019761860370636,0.05254097282886505,0.008521241135895252,-0.057439643889665604,-0.01509853359311819,0.029754025861620903,0.01265515387058258,-0.015417260117828846,-0.04698619246482849,0.07000385969877243,-0.05285872891545296,-0.021761028096079826,-0.07256424427032471,-0.06532417237758636,0.03185884281992912,-0.05411801487207413,0.10347418487071991,-0.07710487395524979,-0.04147544875741005,-0.04211486876010895,-0.0846247524023056,-0.04585181921720505,0.011287203989923,0.013297997415065765,0.1485576331615448,-0.09718795865774155,-0.07118755578994751,-0.04089635610580444,0.06247511878609657,-0.029838530346751213,-0.002685007406398654,0.00244321976788342,-0.005754983983933926,0.008829132653772831,-0.04799458757042885,0.0016608701553195715,-0.03863096982240677,-0.024663405492901802,-0.03262842074036598,0.011465665884315968,0.050759878009557724,0.021718822419643402,-0.04931001737713814,0.031047260388731956,-0.03636948764324188,0.15018360316753387,0.04532413184642792,-0.057482268661260605,-1.9193867828448674e-8,-0.08513722568750381,0.11026831716299057,-0.07277485728263855,0.014418167993426323,0.11169055104255676,0.03728853166103363,0.012644222006201744,0.027052775025367737,-0.017254503443837166,0.04544485732913017,-0.05765750631690025,0.061470311135053635,0.027310803532600403,0.08621115237474442,-0.031038731336593628,0.029451709240674973,0.06753943115472794,-0.06561952084302902,-0.017416004091501236,0.04114481806755066,-0.06211141496896744,0.029755983501672745,-0.052645739167928696,-0.02899949438869953,-0.018947189673781395,-0.025862159207463264,-0.06705747544765472,0.0011382848024368286,0.02755950577557087,0.032051149755716324,-0.009335892274975777,-0.020798783749341965,-0.0632343664765358,-0.07768253237009048,-0.050059735774993896,0.012358585372567177,0.04505190998315811,0.01515444926917553,0.07699323445558548,-0.0665203258395195,-0.07015533000230789,0.06164554879069328,0.08524913340806961,-0.003137388965114951,0.08373451977968216,-0.0273392703384161,-0.030148625373840332,-0.04612123593688011,-0.005829338449984789,0.001799565739929676,-0.02931077592074871,0.017368873581290245,-0.047925107181072235,0.0034092823043465614,-0.002808887278661132,-0.04761034622788429,0.004324741195887327,-0.07000833749771118,-0.006748109124600887,0.053618572652339935,-0.05620143562555313,0.025470733642578125,-0.002855071099475026,0.016033854335546494]},{"text":"Some did it better than others, one or two were even a trifle unsteady and looked as though they would have liked the support of a stick, but every one of them made his way right round the yard successfully.","book":"Animal Farm","chapter":12,"embedding":[0.03873319551348686,0.019005712121725082,0.009064272046089172,0.024442335590720177,0.040263984352350235,-0.08071465790271759,-0.02923745848238468,0.06601425260305405,-0.07701064646244049,0.027101954445242882,0.012416906654834747,0.022029252722859383,0.03745377063751221,0.008547043427824974,0.03181258961558342,0.021255923435091972,-0.014623759314417839,0.010321649722754955,-0.00634504621848464,0.01624334417283535,-0.11864008754491806,0.02527996525168419,0.07815620303153992,-0.02455415204167366,-0.0797046422958374,0.04438640549778938,-0.09560351073741913,0.04225268214941025,0.04715694487094879,-0.07171426713466644,-0.015309435315430164,0.032702092081308365,-0.028779499232769012,-0.018161017447710037,-0.06955878436565399,0.0016566968988627195,0.018694952130317688,0.024834217503666878,-0.007114855572581291,-0.005540578626096249,0.016691045835614204,-0.010354312136769295,0.07098625600337982,-0.05836155265569687,0.016352398321032524,0.002803266514092684,0.0003540515317581594,-0.010409544222056866,0.0606064535677433,-0.12003519386053085,0.06185898557305336,-0.029679547995328903,0.027320489287376404,-0.08372396975755692,-0.016235828399658203,-0.02934691123664379,-0.023922808468341827,0.04400743171572685,0.03646878898143768,0.056144822388887405,0.019210290163755417,0.012788464315235615,0.055580660700798035,-0.006737424526363611,0.057942260056734085,-0.0800623893737793,-0.06670629233121872,-0.10162636637687683,0.015758248046040535,0.06970420479774475,0.03902212157845497,0.05468320474028587,-0.006519339978694916,-0.014687791466712952,-0.02698429860174656,0.037294935435056686,-0.040690723806619644,0.05051856487989426,-0.03880327567458153,-0.10683348774909973,-0.06475089490413666,-0.04034196957945824,-0.024096805602312088,0.047804441303014755,0.04549436643719673,-0.01812051609158516,0.010115851648151875,0.003803395899012685,0.013097621500492096,0.06244631111621857,0.025515401735901833,0.05742841213941574,-0.02223513275384903,-0.010097641497850418,-0.03157511726021767,-0.026468027383089066,-0.01649993285536766,-0.016165070235729218,-0.12329637259244919,0.0342315174639225,-0.02916109561920166,0.06688090413808823,0.0049687717109918594,-0.056349046528339386,0.06131555140018463,-0.013190888799726963,-0.05206124484539032,-0.022073250263929367,0.009555774740874767,0.04892614856362343,-0.023532405495643616,0.05173134803771973,0.017509551718831062,0.07872389256954193,-0.09646891057491302,-0.08482291549444199,-0.0735367089509964,-0.024465201422572136,-0.07825912535190582,-0.026445409283041954,0.08769405633211136,-0.02247350849211216,0.015236835926771164,-0.062341202050447464,0.0055543649941682816,-0.005484664347022772,0.05616145581007004,2.1456728175681233e-33,0.016565999016165733,0.04339774325489998,-0.07957065105438232,-0.02255208231508732,0.055931441485881805,-0.03267672285437584,-0.06285924464464188,-0.020673686638474464,0.044919658452272415,0.05456381291151047,0.056029193103313446,-0.05044245719909668,-0.004353308118879795,-0.02023974619805813,0.027124587446451187,-0.04232684522867203,-0.120980404317379,-0.006770518142729998,-0.07559176534414291,0.0555504746735096,-0.017131861299276352,0.007492089178413153,-0.03340863063931465,-0.026990490034222603,-0.04241663217544556,0.03677599877119064,0.00622092979028821,0.061425644904375076,0.021554360166192055,0.014614121057093143,-0.017966710031032562,-0.060467373579740524,-0.03527755290269852,0.019414786249399185,0.01027201022952795,-0.026814352720975876,0.08752823621034622,-0.07080858945846558,-0.07874518632888794,0.012009693309664726,-0.01673169992864132,-0.03854285553097725,0.04457005113363266,0.02656952291727066,0.004120335914194584,0.013648642227053642,-0.01610766164958477,0.022023050114512444,-0.1293468326330185,-0.014628469944000244,0.019843045622110367,0.055115580558776855,0.07284969091415405,-0.012681580148637295,0.04623495414853096,0.051521673798561096,0.01907775178551674,-0.01952892541885376,-0.09942131489515305,-0.026038317009806633,0.06046486273407936,0.0071537368930876255,-0.05497019365429878,-0.0731712207198143,-0.10182765871286392,-0.029285985976457596,0.026807434856891632,0.06400749832391739,-0.03614026680588722,0.0259531419724226,-0.026039011776447296,0.04841497167944908,-0.0926949754357338,-0.08746477216482162,-0.056353338062763214,-0.025254003703594208,-0.01635286957025528,0.0607336163520813,0.10814119130373001,-0.11221981793642044,0.10704304277896881,0.01990281231701374,-0.04873734340071678,-0.018305111676454544,0.06575707346200943,0.027269214391708374,-0.014667731709778309,-0.04622547701001167,-0.04473329335451126,-0.05010240897536278,0.00491412403061986,-0.009337024763226509,0.04784376919269562,-0.08452554792165756,-0.017068257555365562,-4.372891147620727e-33,-0.12520529329776764,0.06470982730388641,0.00981700699776411,0.10776084661483765,-0.007422029506415129,0.014972473494708538,-0.03313205763697624,-0.07091674953699112,0.057980652898550034,-0.023129185661673546,-0.04212729632854462,0.0390104241669178,-0.03523729741573334,0.029630472883582115,0.04587295651435852,-0.03256584703922272,-0.002893076278269291,0.03483777865767479,0.07133546471595764,-0.0770309567451477,0.06269697844982147,-0.050739891827106476,0.02594331093132496,0.05002812296152115,-0.02354622073471546,0.07770230621099472,-0.0314929373562336,-0.018164802342653275,-0.09816460311412811,-0.02413068525493145,0.11953900009393692,-0.05299839377403259,0.04050780087709427,-0.04180023446679115,-0.002633040538057685,0.007705621421337128,-0.016045698896050453,0.0969030037522316,-0.0010865419171750546,-0.05596913769841194,0.03450504317879677,0.005012994632124901,0.02916223742067814,0.05132604017853737,-0.04890068992972374,-0.019372351467609406,0.008897692896425724,-0.011746449396014214,-0.05798749998211861,0.0939197763800621,-0.026875367388129234,0.08081265538930893,-0.028002116829156876,0.01565919630229473,-0.022169843316078186,-0.05674801766872406,0.03977125883102417,-0.008503605611622334,0.018924254924058914,0.02730139158666134,-0.07488322257995605,0.03938586637377739,-0.0377698577940464,0.06124044954776764,0.04968729987740517,0.02190139703452587,-0.02577957510948181,-0.019760804250836372,-0.09262512624263763,-0.017210086807608604,-0.04456553980708122,-0.006944240070879459,-0.008096408098936081,-0.0164751335978508,0.058087725192308426,0.12381281703710556,0.006196525879204273,-0.04695901647210121,-0.07132396847009659,0.06381532549858093,-0.09231313318014145,-0.042291074991226196,-0.027749797329306602,0.019320964813232422,-0.04652838036417961,0.009845235385000706,-0.00986095704138279,-0.006244347430765629,-0.007486419286578894,0.09402342140674591,0.11003512144088745,0.03632154315710068,0.10060141980648041,-0.05364157259464264,-0.0009497154969722033,-3.671481962896905e-8,-0.08876504004001617,0.12656357884407043,0.00968601368367672,0.008044378831982613,0.05301100015640259,0.09552972763776779,0.019942155107855797,-0.035254817456007004,-0.04581759497523308,-0.04670540988445282,-0.06197062134742737,0.05504811927676201,0.010351162403821945,0.09872909635305405,0.06943130493164062,-0.027705393731594086,-0.02341884933412075,-0.006749158259481192,-0.0696677565574646,0.031178945675492287,0.011837547644972801,-0.011528830975294113,0.0017847822746261954,-0.05348564684391022,-0.06774303317070007,0.008291445672512054,-0.09232382476329803,-0.011168140918016434,-0.03203718736767769,0.05298887565732002,0.039713263511657715,-0.012609640136361122,-0.016469962894916534,0.005317040719091892,0.07331297546625137,-0.0033956889528781176,-0.01303325966000557,0.0023706830106675625,0.07149999588727951,0.04024263843894005,-0.05617915466427803,0.05213921517133713,0.012343236245214939,0.06850637495517731,0.07130546867847443,0.0748683288693428,-0.08098502457141876,-0.014317115768790245,-0.061446212232112885,-0.03458574041724205,0.003021631157025695,-0.028077444061636925,-0.034410443156957626,0.06296513229608536,0.09081979095935822,-0.041857555508613586,-0.019593657925724983,-0.03722823038697243,0.017694083973765373,-0.027118174359202385,-0.09522225707769394,-0.01286975760012865,-0.013558928854763508,0.11613764613866806]},{"text":"It was as though the world had turned upside-down.","book":"Animal Farm","chapter":12,"embedding":[-0.0018331663450226188,0.12014145404100418,0.017136117443442345,0.04997096583247185,0.022683070972561836,-0.08022437989711761,-0.05961214378476143,0.028962943702936172,0.0034546428360044956,0.03003741428256035,0.06889867782592773,0.07758913934230804,0.06156868115067482,0.003686741925776005,-0.06578594446182251,-0.059389445930719376,-0.07203210145235062,-0.00002969267006847076,-0.0022026454098522663,0.02494720369577408,-0.03616240248084068,0.05916120857000351,-0.015648646280169487,0.026502493768930435,-0.015312555246055126,0.04888363182544708,-0.020689748227596283,0.02606368064880371,0.021240700036287308,0.015545113012194633,-0.057012706995010376,0.05232832208275795,-0.006220459006726742,-0.02679041400551796,-0.03873756527900696,-0.015827910974621773,0.038247302174568176,-0.024441197514533997,0.025071142241358757,0.0024080388247966766,0.002544644521549344,-0.03095211088657379,0.015691842883825302,-0.0232551209628582,-0.03777732327580452,0.031607046723365784,-0.05220799148082733,-0.005051578860729933,0.017939774319529533,0.06781896203756332,0.07527797669172287,0.004985463339835405,-0.0691065564751625,-0.09506770968437195,-0.039646245539188385,0.022738387808203697,0.041418977081775665,-0.05271727219223976,0.04163303226232529,0.012319288216531277,0.003829916240647435,-0.09546733647584915,-0.02767489291727543,0.032494477927684784,0.057285208255052567,-0.010477435775101185,-0.045615117996931076,-0.08887172490358353,-0.04804173856973648,0.06441479921340942,0.019823120906949043,0.011669534258544445,0.03306647762656212,-0.08854416012763977,0.006668631453067064,-0.028946809470653534,0.025936538353562355,0.028468821197748184,0.008709264919161797,0.047469303011894226,0.10704854130744934,0.040678706020116806,-0.06954631954431534,0.048601116985082626,0.050628382712602615,-0.04180736467242241,0.009090853855013847,0.00866264384239912,0.038772422820329666,0.031393785029649734,-0.06934212893247604,-0.05496468394994736,0.011563227511942387,0.042733822017908096,0.03583930805325508,-0.018794775009155273,0.01483069732785225,-0.011405306868255138,0.030355054885149002,0.047233548015356064,-0.0005243316409178078,0.028699414804577827,0.03353084996342659,-0.00810020137578249,0.05368487536907196,-0.002563463756814599,-0.020932061597704887,-0.0031785117462277412,-0.02272547408938408,-0.003923953045159578,-0.06025682017207146,-0.052479904145002365,0.13911955058574677,-0.002926335670053959,-0.026004429906606674,-0.0514690987765789,0.016912709921598434,0.006306733936071396,-0.1053570881485939,0.009192915633320808,0.023509593680500984,0.0035319144371896982,0.021464364603161812,-0.005313631147146225,0.00014276354340836406,0.0006596255698241293,0.0727996677160263,-4.719935650891853e-33,0.06730219721794128,-0.04866107180714607,0.06200738623738289,-0.0040782722644507885,0.09414881467819214,0.007752732373774052,-0.07688780874013901,-0.006651148200035095,-0.045780859887599945,-0.019519900903105736,0.058337580412626266,0.003605627454817295,-0.09200262278318405,-0.006298402324318886,-0.05255887657403946,-0.01664121076464653,-0.013687679544091225,0.033260829746723175,0.04364573955535889,-0.003179717343300581,-0.07199215143918991,-0.03901585191488266,-0.051633935421705246,-0.06390451639890671,-0.04375477880239487,0.05191462114453316,-0.022640738636255264,0.010077380575239658,-0.038973160088062286,-0.009432105347514153,0.07556150108575821,-0.011346456594765186,-0.03145188093185425,-0.034998029470443726,0.01985301822423935,0.04110455885529518,0.05824068933725357,-0.07663995772600174,-0.05016525462269783,0.02513279765844345,-0.06499426066875458,0.05201900377869606,-0.060195114463567734,-0.0661727637052536,0.042490988969802856,0.05569074675440788,0.036791443824768066,-0.0214212778955698,-0.0288749560713768,0.02782076597213745,-0.007161309476941824,0.015308508649468422,-0.022380080074071884,-0.027169644832611084,0.0024300836957991123,0.07138098031282425,0.009933939203619957,0.07597804069519043,-0.02789132483303547,0.03559104725718498,-0.027180204167962074,0.002034577773883939,0.04152554273605347,-0.050464075058698654,-0.043181657791137695,0.015464650467038155,0.05474454164505005,-0.040968604385852814,-0.09821256995201111,0.0855262354016304,-0.08862461894750595,-0.009593752212822437,-0.08257123827934265,0.03540134057402611,-0.058463774621486664,0.07555966824293137,-0.010860620997846127,-0.04903776943683624,-0.011414162814617157,0.0030747929122298956,0.03247157484292984,-0.004791217856109142,0.12273479253053665,-0.06937631964683533,0.035465795546770096,-0.040192268788814545,0.05682939291000366,-0.0517871268093586,-0.052545927464962006,0.017614740878343582,-0.08894738554954529,0.01893932931125164,0.06065857410430908,-0.04722027853131294,-0.05684333294630051,2.712915147068103e-33,-0.11685872077941895,-0.04868076369166374,-0.08126730471849442,0.042645666748285294,-0.060523636639118195,-0.023399783298373222,-0.049401331692934036,0.010381018742918968,-0.1192689836025238,-0.00876371655613184,0.11336762458086014,0.018089890480041504,0.028001967817544937,0.022083386778831482,0.039893172681331635,0.012544077821075916,0.05847381800413132,0.05201686546206474,0.009992552921175957,0.10825648903846741,0.005152013618499041,-0.017832238227128983,-0.06433703750371933,0.018744388595223427,-0.008875354193150997,0.12953990697860718,0.005477528553456068,-0.0009366667945869267,-0.01616705395281315,0.05203847959637642,-0.05675695091485977,0.03507913276553154,-0.018942296504974365,0.05072050541639328,-0.07670009881258011,0.048434603959321976,-0.0969097763299942,-0.04028370603919029,-0.06863261014223099,-0.05917586758732796,-0.06556093692779541,0.04786969721317291,-0.02044876664876938,0.05712641403079033,-0.04437815397977829,-0.05223527178168297,-0.01472452748566866,0.11541884392499924,0.06342754513025284,-0.048015594482421875,-0.14131492376327515,0.029340127483010292,0.006553150247782469,0.020666824653744698,-0.03715421259403229,-0.008471482433378696,0.02180909365415573,-0.02480427175760269,0.058403607457876205,0.01849125139415264,-0.07599547505378723,-0.06257106363773346,0.032567087560892105,-0.10394132137298584,-0.0038174735382199287,0.03025868721306324,0.03288934752345085,0.037850521504879,-0.053096044808626175,0.004275487270206213,0.05249808356165886,0.0815771222114563,-0.039019711315631866,0.017385603860020638,0.10115396976470947,0.04282325506210327,-0.046423979103565216,0.09920031577348709,-0.03131575509905815,0.026949884369969368,-0.055337775498628616,-0.006079074461013079,0.011700481176376343,0.06104184314608574,-0.04473835229873657,0.017075952142477036,-0.07805115729570389,0.005214173346757889,0.004676127340644598,0.06255204975605011,-0.05708576738834381,-0.019481973722577095,0.004597392864525318,0.010201743803918362,0.017496569082140923,-1.9532203410221882e-8,-0.0349515937268734,-0.007822764106094837,0.03642191365361214,0.005638235714286566,-0.03563438355922699,0.015031185001134872,0.1644344925880432,0.005075633525848389,-0.04059434309601784,0.008731856942176819,-0.10523850470781326,0.07295284420251846,0.05293651297688484,0.08431660383939743,-0.04167125001549721,0.04940853640437126,-0.0967029556632042,-0.005708414129912853,0.0005742327775806189,0.1220744401216507,0.028965361416339874,0.0282907597720623,0.01286588329821825,-0.03005530871450901,0.00938474666327238,0.0020855015609413385,-0.09241317212581635,0.04450483247637749,-0.030519232153892517,-0.034029487520456314,0.028939900919795036,-0.08479495346546173,-0.004912531469017267,-0.0009195813327096403,-0.08666398376226425,0.04140026867389679,0.0020882522221654654,-0.0017930555623024702,0.03527381271123886,-0.11022580415010452,0.015017232857644558,0.10151765495538712,-0.04382053390145302,0.024860791862010956,0.06681384891271591,0.10373801738023758,0.06537257134914398,0.07970141619443893,-0.0475112721323967,-0.058543555438518524,0.004846635274589062,0.01642664521932602,0.0747680589556694,0.02059878036379814,0.10939472168684006,-0.03999117761850357,-0.030279027298092842,0.04279901087284088,-0.07751461118459702,0.06415162980556488,-0.005132880061864853,-0.04768187180161476,-0.06232978403568268,0.015845492482185364]},{"text":"And by the time the sheep had quieted down, the chance to utter any protest had passed, for the pigs had marched back into the farmhouse.","book":"Animal Farm","chapter":12,"embedding":[0.0625246986746788,0.053288351744413376,0.05327008664608002,0.0382947139441967,0.08592081069946289,0.02098962850868702,-0.003375303465873003,-0.047184884548187256,-0.019151484593749046,0.04017876461148262,0.11277703940868378,0.023789076134562492,0.045601725578308105,-0.03638286888599396,-0.012141009792685509,0.021184373646974564,-0.02315223030745983,0.007280671037733555,-0.03151549771428108,-0.00940691027790308,-0.021318422630429268,0.04142356291413307,0.03524355962872505,0.08208949863910675,-0.004683610051870346,-0.04403337091207504,0.011054540053009987,0.010267248377203941,0.003931418526917696,0.03608614206314087,0.004797314293682575,-0.06389271467924118,0.007642088457942009,-0.026360485702753067,-0.02716071344912052,0.013371482491493225,0.10408473014831543,-0.016933787614107132,0.10912439227104187,0.011808278039097786,-0.017283570021390915,-0.08875085413455963,-0.0004971291054971516,-0.0633002519607544,-0.007582697551697493,0.01076208520680666,0.03989068418741226,0.0009138324530795217,0.08626988530158997,-0.009955891408026218,0.02607022412121296,-0.02008628286421299,-0.012358710169792175,-0.09862188994884491,-0.03634766489267349,-0.04059365391731262,0.0026581783313304186,-0.023468494415283203,0.015444446355104446,-0.034196969121694565,-0.017843477427959442,-0.027658550068736076,-0.007654192857444286,0.04137122258543968,0.01924167573451996,-0.006772729568183422,0.02352374978363514,-0.021517064422369003,0.005927980877459049,0.062465280294418335,-0.012271205894649029,-0.012792806141078472,0.050235383212566376,-0.05697115510702133,-0.08795780688524246,-0.03556603938341141,-0.007273874711245298,0.003739516716450453,0.0669853463768959,-0.04289790987968445,-0.019027628004550934,-0.0323149710893631,-0.06472031772136688,0.01747557707130909,-0.03184822201728821,-0.05235966667532921,0.03488495945930481,0.046798452734947205,0.025360221043229103,-0.06904108077287674,-0.0544721744954586,-0.12842388451099396,-0.040622979402542114,0.1262618452310562,0.005228687077760696,-0.08585263788700104,-0.025628378614783287,0.06116848811507225,0.012385736219584942,0.06804288923740387,-0.015506419353187084,-0.010419736616313457,-0.04073533043265343,-0.05291594937443733,0.004328958690166473,-0.037908703088760376,-0.10772651433944702,-0.015209092758595943,-0.0383661687374115,0.013245610520243645,-0.046531692147254944,-0.04342423006892204,0.055114634335041046,0.14096109569072723,0.03451397269964218,0.04242904484272003,-0.03689742460846901,-0.04644843935966492,-0.06981568783521652,0.07650567591190338,0.10717742145061493,0.10830500721931458,-0.06588788330554962,0.01765107363462448,0.043735161423683167,0.038545701652765274,0.08732487261295319,-3.0535870015898334e-33,0.019845465198159218,-0.07785352319478989,-0.06592683494091034,0.03353089839220047,0.161426842212677,-0.029798660427331924,-0.04531421512365341,-0.018291685730218887,0.09830297529697418,0.009732889011502266,0.04236913472414017,-0.09443444758653641,0.043119579553604126,-0.08481055498123169,-0.1631394624710083,-0.04569334164261818,0.0036468575708568096,-0.004968719091266394,0.05962105467915535,-0.02931160293519497,-0.034802429378032684,0.062475837767124176,-0.04464311897754669,0.09673532843589783,0.010552655905485153,-0.043382737785577774,0.007505878806114197,-0.013312648981809616,-0.00989061500877142,0.03338127210736275,0.06549752503633499,-0.03621784597635269,-0.014798788353800774,-0.042174357920885086,0.01951349526643753,-0.0009608046384528279,0.04204585775732994,-0.0971476137638092,-0.003965490031987429,-0.003273087553679943,-0.004566635005176067,-0.00881319772452116,0.07068972289562225,0.0044299885630607605,-0.004533011466264725,0.017758261412382126,-0.050892531871795654,0.03423888608813286,-0.01917182095348835,-0.010043047368526459,0.06048964336514473,0.032465528696775436,-0.02098987251520157,0.05660898610949516,0.03560012951493263,-0.01223143469542265,-0.044803302735090256,0.07668137550354004,-0.03429996222257614,0.04102730378508568,0.039425481110811234,0.0036498147528618574,0.023128360509872437,-0.04164285585284233,0.007530059665441513,-0.08354607224464417,-0.01665806770324707,-0.01767905242741108,-0.06051010265946388,0.06309837847948074,0.01914331503212452,-0.015426220372319221,-0.06368084996938705,-0.03509452939033508,-0.07188508659601212,0.002703877631574869,0.0396021269261837,0.00022421132598537952,0.031240930780768394,-0.08860670775175095,0.016524311155080795,-0.014642766676843166,-0.11650456488132477,0.020632827654480934,0.030349094420671463,0.029229870066046715,0.07854517549276352,-0.1292070597410202,-0.05019890516996384,-0.09346265345811844,-0.029337327927350998,0.05447627231478691,0.02760208211839199,-0.08000396937131882,0.032620396465063095,7.569010420832113e-34,-0.03046029806137085,0.09556373953819275,0.005588550120592117,0.0876082181930542,-0.029510224238038063,-0.009265406988561153,0.01592572219669819,-0.03137407824397087,0.03503391146659851,0.03973579406738281,-0.02139529213309288,-0.08205708861351013,-0.06219211965799332,-0.0022210523020476103,0.017987210303544998,-0.015055720694363117,0.09435812383890152,-0.07525183260440826,0.04529349133372307,0.010784153826534748,-0.04816548153758049,0.00031443219631910324,0.02761227823793888,-0.05301526561379433,0.051392924040555954,0.032442606985569,-0.04831540584564209,0.06411465257406235,-0.02371429279446602,-0.10136501491069794,-0.004374547861516476,-0.06079782545566559,-0.05384190380573273,-0.011071580462157726,0.013700349256396294,0.0076195974834263325,0.03613469377160072,0.03953789547085762,-0.04953424632549286,-0.009777323342859745,0.023174423724412918,-0.033638760447502136,-0.0424748919904232,0.01488049142062664,-0.06652263551950455,0.1147906705737114,-0.05238652974367142,-0.0276858638972044,0.050058748573064804,0.03868089243769646,0.02786344289779663,0.037528567016124725,0.09360069781541824,0.05207238718867302,-0.0317244790494442,0.029511677101254463,0.016130156815052032,-0.03675747662782669,-0.0026329951360821724,0.009955369867384434,-0.06695202738046646,0.04684746265411377,0.0015443130396306515,0.021662637591362,0.03018331713974476,-0.034468233585357666,-0.12192384898662567,-0.021860575303435326,0.09555496275424957,0.02351473458111286,0.024809621274471283,0.03576675429940224,-0.07995516061782837,0.002291078446432948,-0.017201829701662064,0.04990296810865402,-0.0355103462934494,-0.043532319366931915,-0.005449044518172741,-0.09098900854587555,0.016949206590652466,-0.0879369005560875,0.017347687855362892,0.01771041564643383,0.05687865987420082,-0.011640002019703388,-0.006310631055384874,0.11490187793970108,0.08340854197740555,0.017004653811454773,0.058476123958826065,-0.02115146815776825,0.13990968465805054,-0.048796556890010834,0.008234899491071701,-2.637889906509372e-8,-0.03690750524401665,-0.04127177596092224,-0.055928487330675125,-0.014720918610692024,0.07843586057424545,0.0004699945857282728,0.021359113976359367,-0.009646601974964142,0.0007983664399944246,0.06884996592998505,-0.05580105260014534,0.05921419709920883,0.0017903053667396307,0.07651723176240921,-0.058857906609773636,0.050135768949985504,-0.017436716705560684,-0.10069680958986282,-0.029925355687737465,0.03730778396129608,-0.018019411712884903,-0.018783273175358772,-0.10626601427793503,-0.004480316769331694,0.0004920290666632354,0.05322224646806717,-0.03217317909002304,0.021029630675911903,-0.005877722054719925,0.054574739187955856,0.005938293877989054,-0.01675042137503624,-0.03741799667477608,-0.03941486030817032,-0.04824868217110634,0.06331121921539307,-0.026381291449069977,-0.026670079678297043,0.0883074402809143,-0.061195340007543564,-0.007838050834834576,0.03169252350926399,0.030610956251621246,-0.03185687214136124,0.08156245201826096,-0.05068538337945938,-0.04407352954149246,0.05613767355680466,-0.04244500398635864,-0.03868225961923599,-0.009665821678936481,0.03696392849087715,0.07992901653051376,0.058412905782461166,0.04196792468428612,-0.07698985189199448,-0.026359688490629196,-0.07194732874631882,0.025860853493213654,0.05376005172729492,0.010097827762365341,0.028850922361016273,-0.05725014582276344,-0.03567121550440788]},{"text":"But it appears to me that that wall looks different.","book":"Animal Farm","chapter":13,"embedding":[0.04340790584683418,0.06400319188833237,-0.028561126440763474,-0.024893220514059067,0.06849373877048492,-0.0945202112197876,-0.07807111740112305,-0.017346763983368874,0.03050811029970646,-0.07218518108129501,0.00434823939576745,-0.00029426629771478474,0.03331327438354492,0.03506206348538399,0.008275166153907776,-0.09917058795690536,-0.0346040204167366,-0.028358513489365578,0.040111906826496124,0.013077804818749428,0.009918507188558578,-0.012158793397247791,-0.06483015418052673,-0.052345506846904755,0.018568724393844604,0.026128193363547325,-0.017776019871234894,0.056489113718271255,0.09169621020555496,-0.07783328741788864,0.023225950077176094,0.012205837294459343,-0.060108598321676254,-0.038947299122810364,0.04284638911485672,-0.03117847442626953,-0.0192392710596323,0.06413036584854126,0.030995018780231476,-0.053572237491607666,-0.017287323251366615,0.0009784114081412554,0.004367235116660595,0.0626005083322525,-0.033832766115665436,0.027661720290780067,-0.055841363966464996,-0.004833342973142862,0.04928014427423477,-0.021073218435049057,0.03450863063335419,-0.015410107560455799,-0.06829247623682022,-0.03825339302420616,0.0791531428694725,0.04464273899793625,0.03883666172623634,0.0225695613771677,0.05389135330915451,-0.021995743736624718,0.04073575139045715,0.0559137724339962,-0.012425357475876808,0.0778348445892334,0.0430532805621624,0.006321357563138008,-0.0710754543542862,-0.08713778108358383,-0.04392005130648613,-0.10393983125686646,0.05882519483566284,0.02602258510887623,0.004863264970481396,0.016471832990646362,0.025259800255298615,0.03152969479560852,0.00014453996845986694,0.07227777689695358,-0.03481564670801163,-0.029293473809957504,0.007471616379916668,-0.015904486179351807,-0.05782575160264969,0.04056038334965706,0.03878258541226387,-0.011613483540713787,-0.06365098804235458,-0.1473781168460846,-0.03273202106356621,-0.02935866452753544,0.013528071343898773,0.005926113110035658,-0.05289183929562569,0.04903281480073929,-0.01963977701961994,-0.023279720917344093,-0.04884045198559761,0.004160238429903984,0.014689242467284203,0.07828640937805176,-0.023680467158555984,-0.003999168518930674,0.07689692825078964,0.033378057181835175,0.027225784957408905,0.012263373471796513,0.04511529579758644,-0.013541711494326591,-0.05713517218828201,-0.02505725808441639,0.024949487298727036,-0.06636971235275269,-0.05291477218270302,0.0585792250931263,0.0266647357493639,-0.07796210795640945,-0.012351587414741516,-0.02561659924685955,-0.03206769376993179,0.034672629088163376,0.11212503910064697,-0.02399260364472866,0.0013118033530190587,-0.04949101060628891,-0.09540272504091263,-0.05588942766189575,-0.003759142244234681,-7.591331497350794e-33,0.02072818949818611,0.0077706254087388515,-0.027580685913562775,-0.09514810144901276,0.11050090193748474,-0.02977193519473076,0.045913346111774445,0.05775296688079834,0.06643204391002655,0.040016017854213715,-0.0019261741545051336,-0.01172864343971014,-0.022478390485048294,0.018133223056793213,-0.022666078060865402,-0.02860231138765812,-0.04663914442062378,-0.011608568951487541,-0.07981265336275101,0.07296977192163467,0.03920335695147514,0.016957160085439682,0.009968873113393784,-0.011348015628755093,0.013007055968046188,-0.005528200883418322,0.04125932976603508,0.04250765219330788,-0.03354180231690407,0.007042968180030584,-0.013841344974935055,0.031107306480407715,0.03178864344954491,0.012676711194217205,0.03151875361800194,0.025784965604543686,0.037836167961359024,-0.037536416202783585,-0.02533293142914772,-0.024099241942167282,-0.0030014817602932453,0.008446603082120419,-0.0775534063577652,0.05136919394135475,0.03154789283871651,0.061434533447027206,0.09689916670322418,-0.06392952054738998,-0.07111762464046478,-0.015836697071790695,0.005276342388242483,0.047221336513757706,-0.016612963750958443,0.02520597353577614,0.009651451371610165,-0.09341538697481155,0.07520069181919098,0.0630100667476654,0.05498833581805229,0.016857657581567764,-0.01396727841347456,0.045983489602804184,-0.048701878637075424,0.08099906891584396,0.013047654181718826,0.054646242409944534,-0.039016399532556534,0.03273987025022507,-0.07490076869726181,-0.0099341394379735,-0.03828158602118492,0.026442131027579308,-0.02646719664335251,0.04082697629928589,-0.11384550482034683,-0.03159111365675926,-0.04982755705714226,0.01823815144598484,-0.004198250360786915,-0.10460154712200165,-0.022347640246152878,0.06935865432024002,0.0795552209019661,-0.01505082193762064,-0.04140292853116989,0.010321233421564102,0.106943778693676,-0.006397084333002567,0.04368118941783905,-0.02557523362338543,0.037302639335393906,0.003233148017898202,0.029447315260767937,-0.005420218221843243,-0.035150863230228424,3.538051753588877e-33,-0.12491288036108017,-0.0538785420358181,0.052138373255729675,-0.005138949025422335,-0.02547617442905903,0.01818794757127762,0.060920290648937225,0.02440479025244713,0.030276907607913017,0.07364216446876526,0.046770285815000534,0.05595351755619049,-0.017716242000460625,0.0013905575033277273,0.14427143335342407,0.05872238054871559,0.08010590076446533,0.02728627435863018,-0.08413158357143402,0.07642469555139542,-0.05299023538827896,0.06135603040456772,-0.08956043422222137,0.02080512046813965,-0.00038274144753813744,0.06965062767267227,0.06742162257432938,-0.11782699078321457,0.009142482653260231,-0.004380872473120689,-0.043548885732889175,-0.07170224189758301,-0.09606890380382538,0.009984690696001053,0.01539038959890604,0.04969625174999237,0.0029529950115829706,-0.061908308416604996,-0.03286420553922653,-0.04802250489592552,-0.00001624440665182192,-0.022509301081299782,-0.052089691162109375,0.027712717652320862,-0.024113431572914124,0.03805099427700043,0.08436306565999985,-0.035787567496299744,-0.0576777346432209,0.000268837611656636,0.04161275178194046,-0.03114294447004795,0.025535795837640762,-0.062112756073474884,0.025700023397803307,-0.03268365189433098,0.06717567890882492,0.0717809796333313,0.09616737812757492,0.04497427120804787,0.05974067002534866,-0.021081121638417244,-0.07017266005277634,-0.005223836284130812,0.0722695142030716,-0.09283364564180374,-0.005679129157215357,0.024882769212126732,-0.008229935541749,0.0778251364827156,0.03454260155558586,-0.0006926045753061771,-0.0887032076716423,-0.0319070927798748,0.010651582852005959,-0.003706024494022131,0.09469342976808548,0.0600794181227684,-0.05733312666416168,0.033152490854263306,-0.025317799299955368,-0.036152273416519165,0.010250748135149479,-0.024019213393330574,0.021451013162732124,-0.010629113763570786,-0.11800602078437805,0.01258994359523058,0.030028214678168297,0.06572383642196655,-0.03192701190710068,-0.008778892457485199,-0.02789306640625,-0.062264055013656616,0.05752301588654518,-2.3038092322735793e-8,-0.018377123400568962,-0.08769546449184418,0.028327465057373047,-0.025717033073306084,-0.0817810520529747,-0.06016271933913231,0.04846120625734329,-0.057805005460977554,0.005787503439933062,-0.08182238787412643,0.039900511503219604,0.0020772451534867287,-0.011673294939100742,0.01948143169283867,-0.037004269659519196,0.03311639279127121,-0.1269296258687973,-0.033327750861644745,-0.01010932307690382,0.11985182762145996,-0.02657688595354557,-0.039975855499506,-0.02981608174741268,-0.0420275554060936,-0.025171667337417603,-0.055680956691503525,-0.1504393070936203,0.037610482424497604,-0.03770852088928223,-0.05654805153608322,0.07388521730899811,-0.0072483886033296585,0.028422599658370018,-0.10222268849611282,0.10118616372346878,-0.004947257228195667,0.04301665723323822,0.06133657321333885,0.04780987650156021,0.006569261197000742,-0.02390083484351635,-0.14459383487701416,-0.042391952127218246,0.09397028386592865,0.03190566226840019,0.00971353892236948,0.008717809803783894,-0.026434121653437614,-0.05704648047685623,-0.030904771760106087,0.025032097473740578,0.024117590859532356,0.003789180424064398,-0.037883780896663666,0.05453190207481384,-0.06269380450248718,-0.021374184638261795,0.0015244466485455632,0.10727652907371521,-0.022324519231915474,0.08020142465829849,-0.010669703595340252,0.02774035558104515,0.08664244413375854]},{"text":"It did not seem strange when Napoleon was seen strolling in the farmhouse garden with a pipe in his mouth--no, not even when the pigs took Mr.","book":"Animal Farm","chapter":13,"embedding":[0.026720432564616203,0.03492520749568939,0.03794379532337189,-0.036407146602869034,0.017041612416505814,-0.06019717827439308,-0.010026291012763977,0.017337974160909653,-0.01888650469481945,0.01510637067258358,0.025742776691913605,-0.020496616140007973,0.061450064182281494,0.07138369977474213,-0.06018836423754692,-0.061013467609882355,0.052681926637887955,0.01979093998670578,0.03641662001609802,0.042228084057569504,0.017722241580486298,0.04198085144162178,0.09504006803035736,-0.028093673288822174,0.03296692296862602,-0.05384956672787666,0.039930325001478195,-0.010378564707934856,-0.005645121913403273,-0.0017858806531876326,0.03092219866812229,-0.012546719051897526,-0.06727886945009232,-0.10823769867420197,-0.020399143919348717,-0.020146425813436508,0.09705007076263428,0.07717279344797134,0.12087057530879974,0.03456582874059677,-0.029644237831234932,-0.08961321413516998,0.010958815924823284,-0.03600267693400383,-0.041088514029979706,0.004518162924796343,-0.012335702776908875,-0.07251293212175369,0.0513378381729126,-0.029148539528250694,-0.0952555239200592,0.027490656822919846,-0.047535184770822525,-0.0444190539419651,-0.10206621140241623,-0.0764349028468132,-0.007382364943623543,-0.01652577519416809,0.059129904955625534,0.011667312122881413,-0.02053006924688816,0.02524351328611374,0.039105482399463654,0.0547647587954998,0.052493155002593994,-0.04685692489147186,-0.07820171862840652,-0.07490242272615433,0.042212389409542084,0.020688965916633606,-0.034192655235528946,-0.016347941011190414,0.001150566735304892,-0.13393378257751465,-0.12766319513320923,0.012984959408640862,-0.0057620457373559475,0.0922541692852974,-0.05031950771808624,-0.03191513195633888,-0.04590098187327385,-0.041926197707653046,0.012463894672691822,0.04888136684894562,-0.027250580489635468,0.04845026507973671,0.04748633876442909,-0.029931625351309776,-0.016418907791376114,0.021660175174474716,-0.05550791695713997,-0.10167552530765533,-0.019037654623389244,0.08992232382297516,0.019886409863829613,-0.029270565137267113,-0.07991889119148254,0.10590434074401855,-0.04599080607295036,0.04014609009027481,-0.04344065859913826,0.055741600692272186,-0.009633342735469341,0.0517926961183548,0.04484273120760918,0.05574548617005348,-0.0619751513004303,-0.04632948338985443,-0.005421611480414867,-0.020009277388453484,-0.024072395637631416,-0.018111972138285637,0.029398629441857338,0.06081502139568329,0.002787458011880517,0.0434456430375576,-0.04401358962059021,-0.17244486510753632,-0.10417455434799194,0.09566663205623627,0.057137005031108856,0.03456044942140579,-0.021573733538389206,0.055738065391778946,0.06298575550317764,0.02037886530160904,0.09642969816923141,-2.7604488325374947e-33,-0.014473753049969673,-0.03886455297470093,0.011104220524430275,-0.003039623610675335,0.10162807255983353,0.08278083801269531,-0.11274270713329315,0.020139768719673157,0.06120689958333969,0.06857109069824219,0.028878210112452507,-0.039062101393938065,-0.03141351789236069,-0.04738017916679382,-0.18639720976352692,0.016402337700128555,0.013728170655667782,0.0037709891330450773,0.029414372518658638,-0.016856078058481216,-0.043799348175525665,0.003617646172642708,-0.013836940750479698,0.026949582621455193,0.012807026505470276,0.039500150829553604,0.01945841684937477,-0.012172662653028965,0.03717809170484543,0.038999781012535095,-0.02835596539080143,-0.026418212801218033,0.0037656354252249002,0.03511350229382515,-0.024824611842632294,-0.046191658824682236,0.009125816635787487,-0.07906629145145416,0.0003466348280198872,0.05356176570057869,0.06437956541776657,-0.03495519235730171,0.028424685820937157,0.06528830528259277,-0.10927751660346985,0.017597615718841553,0.004074240569025278,0.04386399686336517,-0.07769618928432465,-0.011704538017511368,0.028998762369155884,0.0071846130304038525,0.02242565155029297,0.04720601812005043,0.05917675793170929,0.007574699353426695,0.0203689094632864,0.046611666679382324,0.027104228734970093,0.04420304670929909,-0.01146333385258913,0.0850139781832695,-0.04906656965613365,0.032823771238327026,0.010851041413843632,-0.0717344880104065,0.00973843690007925,0.049186740070581436,-0.008455111645162106,0.010578976944088936,-0.03222249448299408,0.02006937749683857,-0.05736050754785538,-0.04526158794760704,-0.008732130751013756,-0.03224664926528931,0.0291728712618351,0.06872754544019699,0.0047014616429805756,-0.04837321862578392,0.0590011365711689,-0.004875886254012585,-0.022850701585412025,-0.017701314762234688,-0.03541940823197365,0.10123611241579056,0.08002804219722748,-0.11467772722244263,-0.0185594130307436,0.002012446988373995,0.00011457523942226544,-0.002482463140040636,-0.039292577654123306,-0.036674272269010544,0.023825783282518387,5.759945277903248e-34,-0.02947516180574894,0.018405159935355186,0.03292571008205414,0.059242475777864456,0.037904251366853714,-0.026928991079330444,0.02829187735915184,-0.024133669212460518,0.022300956770777702,-0.013912856578826904,-0.0416656993329525,0.028199544176459312,0.008518576622009277,-0.012863535434007645,0.07609620690345764,-0.013563991524279118,0.10863076895475388,-0.10856113582849503,-0.02920273132622242,0.008583021350204945,-0.0959136113524437,0.009287129156291485,-0.019004983827471733,-0.0419972762465477,-0.0338846817612648,0.09794492274522781,-0.040953826159238815,-0.0451982282102108,-0.07885374873876572,-0.020564155653119087,-0.03701514005661011,0.022177649661898613,-0.04232192412018776,-0.02333896793425083,-0.00951921846717596,0.018691644072532654,-0.025161372497677803,0.039335399866104126,0.03202898055315018,0.018805701285600662,-0.036565616726875305,-0.039280399680137634,-0.003056720132008195,0.014545320533216,-0.008637149818241596,0.03022991679608822,-0.019947025924921036,-0.045248351991176605,0.007552355527877808,0.055071793496608734,-0.03260801360011101,0.12432623654603958,-0.06745094805955887,-0.004073104355484247,-0.015309888869524002,0.06433747708797455,0.031724367290735245,-0.05712384358048439,0.0406625010073185,-0.0029512185137718916,0.021655069664120674,0.06523644179105759,-0.05159783363342285,-0.06653724610805511,-0.061469290405511856,0.032947931438684464,-0.10346952080726624,0.021085109561681747,0.10027746111154556,0.04015346243977547,-0.00653313472867012,-0.10557066649198532,0.011687579564750195,-0.005121402908116579,0.07599536329507828,0.037817277014255524,0.030843451619148254,-0.051870834082365036,-0.02127806283533573,-0.06350841373205185,-0.03797105699777603,-0.027676647529006004,0.04282054305076599,-0.029881011694669724,0.062419623136520386,-0.07447610795497894,-0.1058281734585762,0.02931216172873974,0.04873115196824074,0.00970336701720953,0.051764681935310364,-0.03661647439002991,0.024898141622543335,-0.02449810318648815,0.10860655456781387,-2.6658572238602574e-8,-0.05790495127439499,0.02812114730477333,0.031487561762332916,0.01677914336323738,0.035103701055049896,-0.07350188493728638,-0.04279833287000656,0.022963926196098328,-0.030689897015690804,0.05590387433767319,-0.12475734204053879,0.06890030950307846,-0.037043496966362,0.05930570885539055,0.017643336206674576,0.05073440819978714,0.006191424559801817,-0.06975861638784409,-0.028977757319808006,0.07237914949655533,-0.0042718336917459965,0.006751709152013063,-0.012806243263185024,-0.0035427187103778124,-0.03715299814939499,0.006605452857911587,-0.05011913552880287,-0.05707240477204323,-0.007641287054866552,0.05427366495132446,0.050978098064661026,0.033689286559820175,-0.04311775416135788,-0.04757916182279587,-0.02299114502966404,-0.006729400251060724,0.009948178194463253,-0.002019546926021576,0.06038679927587509,-0.07207342982292175,0.04770034924149513,-0.005429205950349569,0.04226883128285408,0.02385779097676277,-0.0289381705224514,0.0545027069747448,0.04356817528605461,0.011877103708684444,-0.027015363797545433,0.04102351889014244,-0.019464697688817978,0.10078251361846924,0.0491141676902771,-0.004816552624106407,0.11001402884721756,-0.08158504962921143,0.01686684414744377,-0.0931476578116417,0.04268258064985275,0.0015669427812099457,-0.026667993515729904,0.050094787031412125,-0.03972261771559715,-0.09599758684635162]},{"text":"They were shown all over the farm, and expressed great admiration for everything they saw, especially the windmill.","book":"Animal Farm","chapter":13,"embedding":[-0.04804036766290665,0.11842689663171768,0.023348847404122353,0.022635314613580704,0.08744543790817261,0.00326373684220016,-0.005528886336833239,-0.029526114463806152,-0.06620248407125473,-0.037989526987075806,0.10134530067443848,-0.01440653670579195,0.03736498951911926,-0.10293780267238617,-0.03183852881193161,0.06349094212055206,-0.020327603444457054,0.015207097865641117,-0.06185546889901161,-0.07392989844083786,-0.05168851092457771,-0.04234449937939644,0.018032988533377647,0.040859609842300415,0.052749305963516235,0.09039177745580673,-0.07685837149620056,0.0808686912059784,0.02987382374703884,0.027960311621427536,-0.037422873079776764,0.02189057320356369,0.029550818726420403,0.03552529215812683,-0.05955638736486435,0.11641883105039597,0.0742112249135971,0.007715274579823017,0.00256706727668643,-0.0747632384300232,0.039607755839824677,0.024942191317677498,0.04901362210512161,-0.02210858464241028,-0.08136264979839325,-0.02811797708272934,0.08773566782474518,-0.035371702164411545,0.06553305685520172,0.018153050914406776,0.0176412183791399,-0.054107751697301865,0.0015843654982745647,-0.13479693233966827,0.02856830134987831,0.03468448296189308,-0.009421228431165218,-0.0841890200972557,0.033402830362319946,0.023499509319663048,-0.03166240453720093,-0.05459532514214516,-0.020731445401906967,0.04494646564126015,0.005072994623333216,-0.03287801146507263,-0.07276603579521179,0.013149167411029339,-0.02228684537112713,-0.0694378986954689,0.023649176582694054,-0.05298520252108574,-0.006511421408504248,-0.08880867809057236,-0.08561735600233078,0.00007620585529366508,-0.020831095054745674,-0.0901252031326294,-0.07062235474586487,-0.04717869311571121,-0.010159253142774105,-0.01877717301249504,0.024442942813038826,-0.008010588586330414,0.013042117469012737,0.0047347829677164555,-0.010027130134403706,-0.04387153685092926,0.03612731397151947,0.03456093743443489,-0.011633497662842274,-0.1015583798289299,-0.10528241842985153,0.015154434368014336,0.045997198671102524,0.016923796385526657,-0.03329889103770256,-0.022917304188013077,-0.01840098388493061,0.041155677288770676,0.022365102544426918,-0.020018327981233597,0.044874511659145355,0.003490712493658066,-0.07301551103591919,0.023279158398509026,-0.0926288589835167,0.04494212195277214,0.002595769939944148,-0.030040662735700607,-0.008620725944638252,0.042845066636800766,0.011743231676518917,0.05209478735923767,0.030194684863090515,-0.007434364408254623,-0.012727156281471252,-0.056190840899944305,-0.10733882337808609,0.016353843733668327,0.13705894351005554,0.05502691492438316,0.006609371397644281,0.023700440302491188,-0.01020596083253622,0.0695999264717102,0.019511161372065544,-3.80704086057151e-33,-0.02681571990251541,0.033758390694856644,0.029939983040094376,0.031218530610203743,0.11566317081451416,0.024083513766527176,-0.011715906672179699,-0.01956034079194069,0.012782273814082146,0.03853752464056015,-0.009815193712711334,0.08605016767978668,-0.008900701068341732,-0.021269632503390312,-0.08228769153356552,-0.04231031984090805,-0.03801082819700241,-0.04899471625685692,0.009153838269412518,0.008107081055641174,-0.028582433238625526,0.0030935725662857294,-0.09359287470579147,-0.044677361845970154,-0.04235370084643364,-0.030924906954169273,0.03975655883550644,0.005140045192092657,-0.007970557548105717,0.04579450562596321,0.08378230780363083,-0.01861344836652279,-0.01920829899609089,-0.02901596762239933,0.03234488517045975,0.010349774733185768,-0.03931954875588417,-0.13901136815547943,0.029604632407426834,0.07657063752412796,0.045350365340709686,0.011660482734441757,-0.02818269655108452,0.040094174444675446,-0.04226848483085632,0.087203748524189,-0.02692396007478237,0.10003459453582764,-0.022759201005101204,0.03716094046831131,0.005329997278749943,0.012743237428367138,-0.051165562123060226,-0.03154904022812843,0.03580475598573685,0.07744210213422775,-0.039241790771484375,0.07837575674057007,-0.02183479443192482,-0.0036777397617697716,0.013436279259622097,0.019967054948210716,-0.0007543004467152059,-0.033984534442424774,0.0007677188841626048,0.01129349134862423,0.013010735623538494,0.06322267651557922,-0.04216410592198372,0.1227438747882843,-0.009885529987514019,0.01736987754702568,-0.045184120535850525,-0.030455542728304863,-0.03631800785660744,0.0181262344121933,-0.04080741107463837,0.01888221874833107,0.01965627819299698,0.052138134837150574,-0.0024963165633380413,0.025542911142110825,-0.07326775044202805,0.0030218318570405245,-0.019557958468794823,-0.04978425055742264,0.0047283959574997425,-0.08152129501104355,-0.058604832738637924,-0.10256370157003403,0.06585350632667542,0.10246104001998901,0.09594620764255524,-0.13402634859085083,-0.1474408656358719,1.148530163453355e-33,-0.05583260953426361,0.05872118100523949,0.0003114764404017478,-0.008510841056704521,-0.00048122135922312737,-0.018963878974318504,-0.046284183859825134,-0.022830860689282417,-0.042887166142463684,0.061372142285108566,-0.010303081013262272,0.0365150086581707,-0.07235727459192276,-0.006954915821552277,-0.0026435465551912785,-0.029887517914175987,0.09440100193023682,0.049074746668338776,0.04297596588730812,-0.010370566509664059,0.03979073464870453,0.06244862079620361,-0.009446898475289345,-0.019836530089378357,-0.0037912013940513134,0.044900331646203995,-0.047717828303575516,-0.05624566599726677,-0.012768769636750221,-0.0058671534061431885,0.04048961028456688,0.04417214170098305,0.004298259038478136,0.05109451338648796,-0.00929995346814394,0.09680518507957458,0.024530304595828056,-0.03588549420237541,-0.008149671368300915,0.04730723425745964,0.02812972664833069,-0.048755668103694916,-0.03675861284136772,0.07860618829727173,-0.08654973655939102,-0.006249936763197184,-0.08297442644834518,0.04089158773422241,-0.0371890515089035,0.04600506275892258,-0.08574967086315155,0.0600556880235672,0.00625997968018055,-0.011918454430997372,-0.061773594468832016,-0.05748394504189491,0.12901245057582855,-0.05139603838324547,0.04773576557636261,-0.06553775072097778,-0.07281214743852615,-0.03227757290005684,-0.013021407648921013,0.06447204947471619,-0.023171626031398773,-0.013930272310972214,0.021248219534754753,-0.008301176130771637,-0.0719294622540474,-0.04577115178108215,-0.050196174532175064,0.03002411313354969,-0.03373933210968971,0.010915923863649368,-0.05774344876408577,0.08562805503606796,0.04042411595582962,0.005011470057070255,0.016508856788277626,-0.009390674531459808,-0.05847519263625145,0.003636477515101433,0.023067152127623558,0.029415149241685867,0.053247980773448944,-0.011953112669289112,-0.0769803524017334,0.029486339539289474,0.07409105449914932,0.013700186274945736,0.0210057832300663,-0.08338449895381927,0.030293365940451622,0.0015391114866361022,0.07018551975488663,-2.1961842122664166e-8,-0.0849430039525032,0.02851368486881256,0.00857075210660696,-0.03384699299931526,0.032311636954545975,0.01681588403880596,0.012967107817530632,0.06579951196908951,-0.0553535595536232,0.06956885010004044,-0.08435747772455215,0.08065924048423767,-0.01824537105858326,0.052842870354652405,0.15831799805164337,-0.002545283641666174,-0.0013592902105301619,-0.0666067823767662,-0.02553425543010235,0.08277907967567444,0.038787517696619034,0.05008760839700699,0.0004942606901749969,-0.012656647711992264,-0.02567659690976143,0.005225788336247206,-0.07209169119596481,-0.047425735741853714,0.05867278575897217,0.032695572823286057,-0.0009521830943413079,-0.015801550820469856,-0.04007197543978691,-0.10193019360303879,-0.018373334780335426,0.0500643216073513,-0.08785007148981094,-0.03815435618162155,0.03286595270037651,0.02053646184504032,-0.07858644425868988,0.02118000201880932,0.03585072234272957,0.0434335358440876,0.10683666169643402,0.039073970168828964,0.04208819195628166,-0.021266652271151543,-0.05506119504570961,0.005450055003166199,0.012337117455899715,0.007849881425499916,0.06761586666107178,0.07094500958919525,-0.042507655918598175,-0.0232883058488369,-0.010652821511030197,-0.020071104168891907,0.040809355676174164,-0.033587001264095306,-0.0067010424099862576,0.0508078932762146,-0.07158863544464111,-0.024029476568102837]},{"text":"What could be happening in there, now that for the first time animals and human beings were meeting on terms of equality?","book":"Animal Farm","chapter":13,"embedding":[-0.039789315313100815,0.049652475863695145,0.020343992859125137,0.08937802165746689,-0.01741984859108925,-0.06758923828601837,-0.048597197979688644,-0.07672569900751114,0.026742536574602127,0.0692685917019844,0.05767587944865227,-0.01017533615231514,-0.07498743385076523,0.03311556205153465,0.04378611221909523,-0.015401036478579044,-0.07197494059801102,-0.03353065624833107,-0.02551216073334217,0.08656182885169983,-0.06069537624716759,-0.012530161067843437,-0.030075624585151672,0.06837855279445648,-0.0658644288778305,-0.06642086058855057,-0.007219134364277124,0.010315285995602608,-0.0020100015681236982,0.01676010526716709,-0.019547071307897568,-0.057158224284648895,0.10677223652601242,0.0028080956544727087,-0.04212188720703125,-0.011590622365474701,0.09560893476009369,-0.06823693960905075,0.06537829339504242,-0.03175823763012886,-0.015872862190008163,-0.09130345284938812,-0.04418657347559929,-0.08128217607736588,-0.05334123224020004,0.08699476718902588,0.03982533887028694,-0.003767790272831917,-0.015034114941954613,-0.1143522635102272,0.06279309093952179,-0.033433947712183,-0.06127911061048508,-0.03683429956436157,-0.04067455977201462,-0.021053697913885117,-0.04452010616660118,0.0012646105606108904,-0.003602860029786825,0.021427135914564133,-0.02569686621427536,0.008343248628079891,0.0399421826004982,0.10345721989870071,0.023984838277101517,-0.04662414267659187,0.014381603337824345,0.06447722017765045,-0.04955379292368889,0.006479017436504364,0.054768431931734085,0.021908605471253395,0.023687662556767464,-0.05179038643836975,-0.04986543580889702,-0.03374582901597023,0.014463648200035095,0.00434530433267355,0.056616559624671936,-0.04270046949386597,-0.002609413117170334,-0.0002592476666904986,-0.016274908557534218,0.03785831853747368,0.041000787168741226,0.024124374613165855,-0.02953031100332737,-0.06883004307746887,-0.04243065416812897,0.0030459738336503506,-0.0589950829744339,-0.04911230877041817,0.07056047022342682,0.012935444712638855,0.05405568331480026,-0.0065825399942696095,-0.04264030233025551,0.07214144617319107,0.09983626008033752,0.0738169327378273,-0.04823258891701698,0.0010401032632216811,0.030998514965176582,-0.06249085068702698,0.029973577708005905,-0.04101061820983887,-0.04422309249639511,-0.04421002417802811,-0.05249704420566559,0.03608868271112442,-0.09382876008749008,-0.08698901534080505,0.031080659478902817,0.11901621520519257,0.02451423928141594,0.038857925683259964,0.058358289301395416,-0.07632762938737869,0.0030415926594287157,-0.025317253544926643,0.005711211822926998,-0.026911739259958267,-0.06294407695531845,0.019933877512812614,0.06785231083631516,0.049933236092329025,-0.0490269735455513,-1.2318407541739923e-33,0.026413222774863243,-0.10725850611925125,0.017267901450395584,0.0035768330562859774,0.04979022219777107,0.03648830205202103,-0.024451443925499916,0.02910195104777813,0.04013881832361221,0.008189452812075615,-0.021266810595989227,0.023900136351585388,0.042750682681798935,-0.05977819487452507,-0.069161057472229,-0.06622074544429779,-0.07806582003831863,0.02006249502301216,0.05456908419728279,-0.018399899825453758,-0.002618403173983097,0.033437419682741165,-0.04078103229403496,0.03821009770035744,-0.0387100949883461,0.03599442541599274,0.01800353266298771,-0.06017963960766792,0.04260711744427681,-0.01909724995493889,-0.059080060571432114,-0.0024966134224087,-0.008881659246981144,0.017456604167819023,-0.06895947456359863,-0.011181932874023914,0.09365411102771759,-0.0666390061378479,-0.04443744570016861,-0.02708282135426998,0.050710029900074005,-0.02989177592098713,0.036190617829561234,-0.15130259096622467,0.028073253110051155,0.07317060232162476,-0.013931515626609325,0.020200317725539207,-0.02321661449968815,0.11969009786844254,-0.06460468471050262,0.07639434933662415,0.011747688986361027,-0.05131148919463158,0.0018776246579363942,-0.022922556847333908,0.009314291179180145,0.05040108785033226,-0.08485441654920578,0.011543836444616318,-0.02214782126247883,-0.0041188630275428295,0.042069245129823685,-0.03740953281521797,0.039184361696243286,-0.028324488550424576,0.038457415997982025,-0.013684820383787155,-0.03819127380847931,-0.0004266496980562806,-0.023938827216625214,0.014322008937597275,-0.06741728633642197,0.012987109832465649,0.011940689757466316,0.06109217554330826,0.05387047678232193,0.051647037267684937,-0.037863507866859436,-0.07991541177034378,-0.05120514705777168,0.08151045441627502,-0.006049662362784147,-0.007728817872703075,0.025830378755927086,0.018020231276750565,0.09131862968206406,-0.02648184634745121,0.05208826810121536,-0.006923372391611338,0.06655187904834747,0.03966541588306427,-0.0004837129672523588,-0.051926836371421814,0.031961970031261444,-2.845302810606563e-33,-0.01837940141558647,-0.008873529732227325,-0.020179208368062973,0.01767772249877453,-0.013458306901156902,0.011884381994605064,0.06627372652292252,0.008558128029108047,0.0007115879561752081,0.06292770802974701,0.050384506583213806,-0.08200661092996597,0.08156050741672516,0.016343940049409866,0.03863329812884331,-0.049129657447338104,0.01581689715385437,-0.03411846235394478,0.09195553511381149,0.004360192455351353,0.018691278994083405,0.04381508752703667,0.008728556334972382,0.0010250055929645896,0.01726147159934044,0.0852498933672905,0.006318886764347553,-0.02901630476117134,-0.03475622832775116,-0.056048326194286346,-0.06903053820133209,0.006630066782236099,-0.058838870376348495,0.0013207898009568453,0.10941069573163986,-0.07761912792921066,0.01617944799363613,-0.004609882831573486,0.030085917562246323,-0.10599731653928757,0.02359648607671261,-0.0831160619854927,-0.08083861321210861,0.06305661797523499,0.0471276231110096,0.003724432783201337,0.04251128435134888,0.012292656116187572,0.010160986334085464,-0.03742075711488724,-0.0578608512878418,-0.020251458510756493,0.032337263226509094,-0.10319137573242188,-0.009490915574133396,-0.034706100821495056,0.029641177505254745,-0.09118177741765976,0.00046104539069347084,0.029924601316452026,0.015814073383808136,-0.0007833759300410748,-0.07173176109790802,0.013215889222919941,-0.05921744927763939,-0.014494422823190689,-0.04425367712974548,-0.04274654760956764,0.03604784980416298,0.01691889762878418,0.10159783810377121,-0.03466121107339859,-0.0683709904551506,-0.025785179808735847,0.003620833158493042,0.08620689809322357,0.07898132503032684,-0.05432713404297829,0.028993628919124603,-0.014336724765598774,-0.000848557276185602,-0.08102266490459442,0.015940871089696884,0.0008409370202571154,0.002364283660426736,0.018445473164319992,-0.06605849415063858,0.13125979900360107,0.06665857881307602,0.010919395834207535,-0.12450706213712692,-0.020221438258886337,-0.039795517921447754,0.04089844226837158,-0.03475835174322128,-2.7314234429809403e-8,-0.03601495549082756,0.0333566851913929,-0.028280897065997124,0.031157899647951126,0.019791381433606148,0.008645855821669102,0.013876199722290039,-0.05009423941373825,-0.017358455806970596,0.08943751454353333,-0.10392149537801743,0.05751798301935196,0.05286877974867821,0.0803837701678276,0.03520987555384636,0.0748954638838768,-0.019816020503640175,-0.13048768043518066,-0.02700607292354107,0.018194064497947693,-0.05688595399260521,-0.01305118203163147,-0.057251617312431335,-0.08020490407943726,-0.05760634317994118,-0.02832581102848053,-0.07491815090179443,0.03878295421600342,-0.0510847307741642,0.02227073721587658,-0.00008465815335512161,0.026542605832219124,-0.0700153112411499,-0.03543645516037941,0.014937914907932281,0.008693277835845947,-0.08325661718845367,0.0030998075380921364,0.08454719930887222,-0.1172296479344368,-0.026937570422887802,0.06133310869336128,0.01933988556265831,0.01639643870294094,0.04649847745895386,0.017192944884300232,0.002348146168515086,0.12735368311405182,-0.052141331136226654,-0.05610108748078346,-0.07203112542629242,0.08887293934822083,0.017414556816220284,-0.05867737531661987,0.03975004702806473,-0.0664067193865776,0.051564112305641174,0.03450900688767433,0.0008412281167693436,0.10434017330408096,0.04949643462896347,-0.05641528218984604,0.04619633033871651,0.021375447511672974]},{"text":"The pigs appeared completely at ease in their chairs.","book":"Animal Farm","chapter":14,"embedding":[0.13161414861679077,0.03306414932012558,0.012608910910785198,0.04164271056652069,0.06556934118270874,-0.05999666452407837,-0.10250446200370789,0.002123545855283737,0.0004343556647654623,0.03791525959968567,0.055713433772325516,-0.009171189740300179,0.05678782984614372,-0.04395018890500069,-0.08230740576982498,-0.07202275842428207,0.09286792576313019,-0.03447211533784866,-0.017586547881364822,0.06624904274940491,-0.08203612267971039,-0.010803444311022758,0.03316853195428848,0.01741725765168667,-0.012639248743653297,-0.013356229290366173,-0.0016324034659191966,-0.06510519236326218,0.011812221258878708,-0.05418013036251068,-0.10161827504634857,-0.03697193041443825,-0.026678629219532013,-0.05141622573137283,-0.026526078581809998,-0.0108942911028862,0.06581693142652512,0.044041842222213745,0.13763579726219177,-0.022045129910111427,-0.05343122407793999,-0.0803893506526947,0.00022765342146158218,-0.021123871207237244,0.014944040216505527,-0.011702765710651875,0.02460779808461666,-0.037139203399419785,0.01918642967939377,-0.01550307311117649,-0.014667666517198086,0.011912837624549866,-0.03636499494314194,-0.04601757973432541,-0.044697754085063934,-0.06912615150213242,-0.08603593707084656,-0.09127195179462433,0.04122522100806236,-0.06541253626346588,-0.00394802400842309,0.04009232670068741,0.10853876918554306,0.05926875025033951,-0.05036303400993347,0.022013988345861435,0.07259530574083328,-0.06618271768093109,-0.01656164601445198,0.013626870699226856,-0.03418560326099396,-0.012299923226237297,0.0035161562263965607,-0.09047041088342667,-0.018240395933389664,-0.004891283810138702,-0.05221973732113838,-0.01725439541041851,0.09725221991539001,0.04266028478741646,-0.026911389082670212,-0.04542882367968559,0.04982249066233635,-0.05065539851784706,-0.011994662694633007,0.02419866994023323,-0.04295920580625534,0.050670649856328964,-0.091435007750988,0.010708564892411232,-0.024818550795316696,-0.00003916993227903731,-0.049785152077674866,0.0011554986704140902,0.08393529057502747,-0.0827193558216095,0.013527579605579376,0.08417920768260956,-0.02598985657095909,0.008562580682337284,-0.0076964423060417175,0.004295068327337503,0.02272845059633255,-0.0027095007244497538,0.037754710763692856,0.03726008161902428,-0.0235986839979887,-0.022983554750680923,0.02939113788306713,0.014155588112771511,-0.02824980951845646,-0.034423988312482834,0.0018890424398705363,0.04535859078168869,-0.05564561113715172,0.10298516601324081,-0.006581570953130722,-0.0771762877702713,0.028126997873187065,-0.05343761667609215,0.0859595537185669,0.0741019994020462,0.05176351219415665,0.07389373332262039,0.041260864585638046,0.04666910693049431,0.05307954177260399,-4.60846866439116e-33,-0.009188385680317879,-0.025394944474101067,-0.025809569284319878,-0.015055589377880096,0.09034058451652527,0.022622207179665565,-0.037214264273643494,0.023388518020510674,0.08105568587779999,0.08066427707672119,-0.07622215151786804,0.034100405871868134,0.045281507074832916,-0.08481509238481522,-0.05329776555299759,-0.01407172717154026,0.048844777047634125,-0.008989368565380573,-0.05647365003824234,-0.01727822795510292,-0.03973817080259323,0.0790708139538765,-0.00797483790665865,0.01794411800801754,0.009071891196072102,0.024896370247006416,-0.010878892615437508,-0.008490749634802341,-0.009152278304100037,0.0009058797731995583,0.008594794198870659,-0.04316623881459236,-0.05557881295681,0.023063838481903076,-0.037443920969963074,-0.02030281163752079,0.0037935690488666296,-0.026854483410716057,0.07751913368701935,-0.0164469126611948,0.02036435529589653,-0.041072383522987366,0.05034443363547325,-0.024625064805150032,-0.07107062637805939,0.10146670788526535,-0.020527178421616554,0.03500687703490257,-0.10444724559783936,-0.024848736822605133,0.006558228749781847,0.06834039837121964,0.004804614931344986,0.017973070964217186,-0.05912807211279869,-0.013950185850262642,0.021680301055312157,0.021799646317958832,-0.18471452593803406,0.01153856236487627,0.008942228741943836,0.002097248798236251,-0.024263212457299232,-0.01590748131275177,-0.0014191241934895515,-0.0724196657538414,-0.06344626843929291,0.014546956866979599,0.015057193115353584,-0.004091748967766762,-0.009027981199324131,0.028247399255633354,0.06933107227087021,-0.1499611735343933,-0.07507596164941788,-0.0542629212141037,0.08154371380805969,-0.04577631130814552,-0.006490305066108704,-0.039390042424201965,0.09660246968269348,0.08840609341859818,-0.02657161094248295,-0.03767452761530876,-0.033428091555833817,0.06570107489824295,0.02097666636109352,-0.047822609543800354,-0.01073055062443018,-0.03774333745241165,0.012014123611152172,0.005086391232907772,-0.01952623762190342,-0.09583588689565659,0.023237384855747223,1.6215512942761514e-33,0.09209299087524414,0.040387850254774094,-0.005747243762016296,-0.0017109294421970844,-0.03980318829417229,0.017113104462623596,-0.011526813730597496,0.009098238311707973,0.049481187015771866,-0.1066022738814354,0.0018406149465590715,0.002590110758319497,-0.031664468348026276,-0.028339387848973274,0.029999878257513046,0.010262522846460342,0.05827968940138817,-0.049690887331962585,-0.0022183223627507687,-0.011334308423101902,0.009293059818446636,0.01134459674358368,0.010288950055837631,0.0020350010599941015,0.09866412729024887,0.04213184863328934,0.02544352412223816,0.04194978252053261,-0.016908181831240654,-0.00951241236180067,0.02554691955447197,-0.01164159830659628,0.02813882939517498,-0.010687894187867641,0.0013986303238198161,0.0025419669691473246,-0.03601749986410141,0.05259520560503006,-0.04248218983411789,-0.008890675380825996,0.008796261623501778,-0.047651417553424835,-0.15903912484645844,0.09009121358394623,0.03904826566576958,0.06745045632123947,-0.025244655087590218,-0.031924616545438766,-0.06942477077245712,0.014215132221579552,-0.008703455328941345,0.021771766245365143,0.06184225156903267,-0.03370647877454758,-0.020870575681328773,0.06098627671599388,-0.017889807000756264,0.007940957322716713,0.10517393052577972,-0.06754445284605026,-0.03906235471367836,0.13264200091362,-0.041584089398384094,0.028846336528658867,-0.018928809091448784,0.035509973764419556,-0.06625174731016159,-0.01009498443454504,0.08614161610603333,-0.06701051443815231,0.005714587401598692,0.00010521487274672836,-0.05758111551403999,0.04396232217550278,0.08345398306846619,0.05591242387890816,0.06346814334392548,-0.02338615246117115,0.03560398146510124,-0.07490692287683487,-0.02967333421111107,0.020992109552025795,0.08780576288700104,0.005685979966074228,0.026366081088781357,0.0019340697908774018,-0.02107401005923748,0.03658502548933029,-0.040738075971603394,0.02689933031797409,0.04744889587163925,-0.018817899748682976,0.09943964332342148,0.052469488233327866,0.002061492297798395,-1.4659809366435184e-8,0.007438338361680508,-0.013134750537574291,-0.0837179645895958,-0.008783024735748768,0.0227675698697567,-0.0015167652163654566,0.004909559153020382,0.0699220672249794,-0.021752193570137024,0.03190049156546593,-0.11356141418218613,-0.013014857657253742,-0.0004593137709889561,0.060868650674819946,0.040210288017988205,0.15019510686397552,-0.03579346463084221,0.04247758165001869,-0.029948197305202484,0.1175437644124031,-0.06914634257555008,-0.004253496415913105,-0.06180533766746521,-0.007221318781375885,0.044388312846422195,-0.005830848589539528,-0.08120924979448318,-0.08445025980472565,0.003593154950067401,0.0739721804857254,-0.000010812335858645383,-0.03486797958612442,-0.011469332501292229,-0.03573509678244591,0.0013967653503641486,0.06902355700731277,0.03239240497350693,-0.026747489348053932,0.026105131953954697,0.000022339148927130736,-0.046409785747528076,0.005939370021224022,0.040101610124111176,-0.04129531607031822,-0.023618165403604507,-0.07900949567556381,0.0187804214656353,0.04804852232336998,0.0306458231061697,-0.04412347823381424,-0.09072311222553253,0.12460410594940186,-0.031304243952035904,-0.02737990766763687,-0.07474620640277863,-0.06918170303106308,0.04776141047477722,0.03359054774045944,0.0067597138695418835,0.08803730458021164,0.03850451856851578,0.07100742310285568,-0.034184135496616364,-0.00646788626909256]},{"text":"In a moment, he said, he would ask the present company to drink a toast.","book":"Animal Farm","chapter":14,"embedding":[-0.035943008959293365,0.05196411535143852,-0.015666676685214043,-0.006582166999578476,-0.016397280618548393,-0.0340161994099617,0.1584426462650299,-0.029190808534622192,-0.023514091968536377,-0.11515360325574875,-0.013871725648641586,-0.05184662342071533,-0.0838729739189148,0.08302944153547287,0.08690106868743896,-0.08471690863370895,0.012146292254328728,-0.06688118726015091,0.03595221787691116,0.006010899785906076,0.11512524634599686,0.0047584655694663525,0.08605054020881653,0.042014893144369125,0.030451154336333275,0.006814406253397465,0.07441302388906479,-0.013862778432667255,0.015292075462639332,0.023300599306821823,0.03629113361239433,-0.010023579932749271,0.048956457525491714,-0.05487385764718056,-0.03286236152052879,-0.04615996778011322,0.07351028919219971,0.04780517891049385,0.019940968602895737,-0.009666350670158863,-0.010753249749541283,-0.0020673733670264482,0.0044663818553090096,-0.02778428979218006,0.028369925916194916,-0.029417768120765686,0.001661577494814992,0.030845077708363533,0.009260153397917747,0.06560567766427994,-0.05103174224495888,-0.062450818717479706,-0.025019992142915726,-0.11112796515226364,0.04979148134589195,0.09357860684394836,0.05698755756020546,0.005981525871902704,0.1014586016535759,0.019147232174873352,-0.016255540773272514,-0.10907121002674103,0.027473896741867065,0.10263684391975403,0.04976819083094597,-0.03297382965683937,-0.03811463713645935,0.052134476602077484,-0.05662403628230095,0.03690846264362335,-0.06541036069393158,-0.012305053882300854,0.03288988396525383,-0.055833250284194946,-0.09708262234926224,-0.08588068187236786,0.0772189274430275,0.0076472037471830845,-0.025904344394803047,0.039596568793058395,-0.012249253690242767,0.02479536645114422,-0.05979309603571892,0.04701218381524086,-0.047251440584659576,-0.019217656925320625,0.049434810876846313,-0.016414303332567215,-0.01279554795473814,-0.009991152212023735,-0.03806811198592186,-0.0639219731092453,-0.11100862175226212,0.02738683857023716,-0.09363655745983124,0.04619047790765762,-0.08024019002914429,-0.015818074345588684,-0.06508053094148636,0.032682012766599655,0.05491016060113907,0.007972641848027706,0.006058754865080118,-0.05502895638346672,0.02767336554825306,-0.0018496051197871566,-0.09615518897771835,0.03285352140665054,0.04162082076072693,0.016646692529320717,0.02074705995619297,0.047092948108911514,-0.06507813930511475,-0.056440968066453934,0.01780932955443859,-0.024152252823114395,-0.035362936556339264,-0.04401601478457451,-0.028435219079256058,-0.0015076834242790937,0.005566619336605072,0.07646571099758148,-0.008179545402526855,0.06690438091754913,-0.03600602224469185,0.004182540811598301,0.09321113675832748,-7.822255893201894e-33,0.010872413404285908,0.020631033927202225,0.02665729634463787,0.057570427656173706,0.053416743874549866,0.03636578842997551,0.0050177909433841705,0.08514298498630524,-0.02362746000289917,-0.048281650990247726,0.01825273036956787,-0.020587068051099777,0.04585917666554451,-0.01923464611172676,-0.07223771512508392,0.07641706615686417,-0.003995888400822878,-0.013066697865724564,0.058255884796381,-0.05794108659029007,-0.008514449931681156,0.050408896058797836,-0.004337484948337078,0.01802792027592659,0.020403321832418442,-0.014350710436701775,0.01820472441613674,-0.08418914675712585,0.0893726795911789,0.011748066172003746,-0.012812533415853977,0.05302469804883003,-0.0004477518377825618,0.04015621915459633,0.08537602424621582,0.0699000284075737,-0.016190120950341225,0.0028616846539080143,-0.011869054287672043,-0.0044625806622207165,-0.009401002898812294,0.00022327463375404477,0.0319351889193058,0.005738361272960901,-0.09181759506464005,-0.031701475381851196,-0.023546861484646797,0.06713362038135529,0.002392667578533292,0.0012493684189394116,0.017037708312273026,-0.03258398175239563,0.05440356582403183,-0.01178886741399765,-0.013100088573992252,-0.03280368074774742,0.07959449291229248,0.01818544790148735,0.08492744714021683,-0.05130681395530701,-0.04087462276220322,-0.008129093796014786,0.009840596467256546,0.0012080243322998285,-0.1488305628299713,0.007065304089337587,-0.007327799219638109,-0.034992266446352005,0.013019990175962448,-0.053008854389190674,0.026748504489660263,-0.01405059453099966,-0.05029963329434395,0.010197533294558525,-0.12458554655313492,0.06966345012187958,-0.03492558375000954,0.04158651828765869,-0.013835378922522068,0.02189626172184944,0.059142302721738815,-0.07411568611860275,-0.07672138512134552,0.013952608220279217,0.033566370606422424,0.059239353984594345,0.03636501356959343,-0.07379817962646484,0.028851237148046494,0.08349042385816574,-0.104860320687294,0.02954382635653019,0.0787949189543724,0.0660252645611763,0.07414533942937851,3.5241155333759095e-33,0.04760919511318207,0.009290840476751328,-0.11162170767784119,0.02050246112048626,0.008587392047047615,-0.012560823932290077,0.01438268180936575,0.01099869329482317,-0.00005238165249465965,-0.09523367881774902,-0.01822788268327713,0.0657358467578888,0.04054014012217522,-0.022750794887542725,-0.059226587414741516,0.06701207160949707,0.05477973446249962,0.021660754457116127,-0.0056672049686312675,0.002849155105650425,-0.03594512119889259,0.0050954921171069145,0.06440620124340057,0.053660836070775986,-0.035081084817647934,0.047042667865753174,0.10974571108818054,-0.04451219365000725,-0.049117546528577805,-0.0781354010105133,-0.035188596695661545,-0.029264789074659348,-0.07437223941087723,0.139497771859169,0.00787043571472168,0.05439193546772003,-0.06418050080537796,-0.0188389103859663,-0.039945337921381,-0.044818609952926636,0.039374493062496185,-0.0163863692432642,0.045775219798088074,0.08423580974340439,0.005162802990525961,-0.051508404314517975,0.017523953691124916,-0.04538831487298012,0.04086029902100563,0.09614289551973343,-0.00634715985506773,-0.07208132743835449,0.039063286036252975,0.03254430741071701,-0.09337277710437775,-0.025264455005526543,-0.05728624388575554,-0.04115092754364014,0.05501801520586014,-0.06696163862943649,-0.06569527089595795,-0.008488706313073635,0.05106852576136589,-0.002974717877805233,0.0092942975461483,-0.05876757577061653,0.008169920183718204,0.03700758144259453,0.04527328163385391,-0.016059376299381256,0.09400175511837006,-0.024822337552905083,0.010241203010082245,0.036545418202877045,0.019384803250432014,0.07067789882421494,-0.05697936937212944,-0.13754649460315704,-0.09818075597286224,-0.08905171602964401,0.02637001872062683,-0.02345029078423977,0.013443635776638985,0.004284531809389591,-0.03341114893555641,-0.04903877526521683,0.0660649836063385,-0.05557108297944069,-0.02205582521855831,-0.01859542354941368,0.046180784702301025,0.004768529906868935,0.015867099165916443,-0.0424126535654068,0.040725670754909515,-2.216654770847981e-8,-0.01309516653418541,-0.03678833693265915,-0.0010415543802082539,0.04455806314945221,0.06399884819984436,-0.0118308886885643,-0.03463021665811539,-0.07109809666872025,-0.03367101028561592,-0.058390285819768906,-0.03166443109512329,0.06416185945272446,0.07336874306201935,0.04687628895044327,-0.04557375982403755,0.04191286116838455,-0.049295954406261444,-0.1451207548379898,-0.02736225537955761,0.0612855963408947,0.03530101105570793,0.010325133800506592,0.07003428786993027,0.10662668943405151,-0.0368315689265728,0.013745181262493134,0.03481370955705643,0.0056367432698607445,0.06670452654361725,-0.0001870912965387106,-0.014672927558422089,-0.004609047435224056,-0.07949323952198029,0.0362742654979229,0.0016359083820134401,-0.007504846900701523,0.01844308152794838,0.04547534137964249,0.06313832104206085,-0.06181124597787857,-0.07485617697238922,-0.05056196451187134,-0.03766360133886337,-0.011898444034159184,-0.07805194705724716,-0.01782897673547268,-0.06837283074855804,0.015891730785369873,-0.007630644366145134,0.0499408096075058,-0.025767013430595398,0.04445499926805496,-0.011357392184436321,0.011827779933810234,-0.040778398513793945,-0.04244689270853996,0.0021281023509800434,-0.018558410927653313,0.028367483988404274,-0.0399557501077652,0.02521994337439537,-0.026706721633672714,-0.06050927937030792,-0.025942165404558182]},{"text":"It had been felt that the existence of a farm owned and operated by pigs was somehow abnormal and was liable to have an unsettling effect in the neighbourhood.","book":"Animal Farm","chapter":14,"embedding":[0.07376092672348022,0.0006609199335798621,0.047202758491039276,0.04483867436647415,0.05502523109316826,-0.03534625843167305,-0.08192020654678345,-0.019892042502760887,-0.048963550478219986,-0.002496915403753519,0.12824226915836334,0.01105323527008295,0.039416030049324036,0.02717210166156292,-0.05101650208234787,-0.015026734210550785,0.05004359409213066,-0.016637442633509636,-0.05020732432603836,0.04559088125824928,-0.030102113261818886,-0.010478303767740726,0.026229850947856903,-0.024128522723913193,-0.0075006019324064255,-0.011192573234438896,0.02053854800760746,0.030426282435655594,-0.02991853654384613,-0.01715954765677452,-0.01701265014708042,0.02823573164641857,-0.0037859410513192415,-0.043643124401569366,0.017883965745568275,0.03522444888949394,0.06006200984120369,0.05503074824810028,0.0791744589805603,-0.04344355687499046,0.04525041952729225,-0.12112504243850708,0.06310462951660156,-0.07518184185028076,-0.09348832815885544,-0.015690438449382782,0.028579672798514366,-0.06209685653448105,0.024316176772117615,-0.11415641009807587,0.022298138588666916,0.02776775136590004,-0.003805551677942276,-0.06543725728988647,-0.05191502720117569,-0.06342188268899918,-0.06699525564908981,-0.012111173942685127,0.006740144453942776,-0.06820308417081833,0.010195479728281498,0.01499541662633419,0.009377950802445412,0.030921751633286476,0.09778942912817001,-0.0004089033172931522,-0.005494136828929186,-0.008555138483643532,0.027931950986385345,-0.05266613885760307,-0.001670556957833469,-0.07693903893232346,-0.0060648927465081215,-0.049477141350507736,-0.06459256261587143,0.035403061658144,0.009797385893762112,-0.006001587025821209,0.06342373788356781,-0.07142346352338791,0.040918830782175064,0.025627726688981056,0.004500958137214184,-0.009364238940179348,-0.028360558673739433,-0.01520787924528122,0.008380337618291378,-0.016357464715838432,0.02987554669380188,0.033332910388708115,-0.011480691842734814,-0.1087862178683281,-0.04624349623918533,0.007954887114465237,0.08394023030996323,-0.05275649204850197,-0.0751284509897232,0.03547961264848709,-0.05642770975828171,0.02257719449698925,-0.039848506450653076,-0.006493739318102598,-0.010929872281849384,0.048309676349163055,0.02903171069920063,-0.03465918451547623,-0.09741050004959106,0.0015108933439478278,-0.04867991432547569,0.006404004525393248,-0.09081169962882996,-0.00006946767098270357,-0.009330538101494312,0.04714347422122955,0.02742883190512657,0.0807465985417366,0.023038068786263466,-0.09806999564170837,-0.07791981846094131,0.002261411165818572,0.09522921591997147,0.03822712227702141,-0.05853923037648201,-0.005297979339957237,0.011984359472990036,0.07529652118682861,0.04140656068921089,-2.750390641656287e-33,-0.021487129852175713,-0.054372403770685196,-0.054323043674230576,0.0106236906722188,0.1931571215391159,0.01732954941689968,-0.09038729965686798,0.004375637974590063,0.06583128869533539,0.10051512718200684,0.03202163428068161,-0.0009860002901405096,0.027131931856274605,-0.08308189362287521,-0.0605875700712204,0.012993868440389633,-0.02905924804508686,-0.016605129465460777,0.04799554497003555,0.023203693330287933,-0.06323999166488647,0.03830300271511078,-0.044492464512586594,0.0564306378364563,-0.04329618811607361,-0.059078432619571686,0.006040035746991634,-0.0403461791574955,0.08412854373455048,0.01748349703848362,0.04690101370215416,-0.013595294207334518,-0.035165634006261826,-0.06333192437887192,-0.022890623658895493,0.013085013255476952,0.014886684715747833,-0.07401823997497559,0.0544782392680645,-0.032298341393470764,0.030186094343662262,-0.04946122318506241,0.0562380887567997,0.0008609647047705948,0.040637750178575516,0.08753428608179092,-0.006563298869878054,0.0035233418457210064,-0.12551343441009521,0.02132924646139145,0.06722937524318695,0.008108299225568771,-0.0260787196457386,0.03857199475169182,0.045731015503406525,0.00037161807995289564,0.031507913023233414,-0.0019412211840972304,-0.026005759835243225,-0.000764826312661171,0.04160037636756897,0.008799748495221138,-0.032747987657785416,-0.03319059684872627,0.003977656830102205,-0.1270589679479599,0.05197327211499214,0.006815020460635424,-0.07859954982995987,0.07992765307426453,-0.027515294030308723,-0.016426734626293182,-0.07609183341264725,-0.03933699056506157,-0.05977005884051323,-0.04032553359866142,-0.04986833781003952,0.05545835942029953,-0.029907986521720886,-0.07510827481746674,0.04025261849164963,0.0045417617075145245,-0.06569774448871613,0.0381610170006752,-0.04565872624516487,0.07082103937864304,0.028527919203042984,-0.05915617197751999,-0.025267841294407845,-0.03718579187989235,0.0757676362991333,0.043260376900434494,-0.02261870913207531,-0.03529376909136772,-0.009098283015191555,4.545839151898814e-34,-0.08610279858112335,-0.014734417200088501,-0.03434988856315613,0.02429983951151371,0.01555369608104229,-0.02373035065829754,-0.019616400822997093,-0.04174034297466278,0.011018069460988045,-0.02434752695262432,-0.043837036937475204,0.007697024382650852,0.023298315703868866,0.014600267633795738,0.007933896966278553,0.059455275535583496,0.014834238216280937,-0.039001818746328354,0.0043328916653990746,-0.005507081747055054,-0.06884587556123734,0.05663779005408287,0.009458187036216259,0.024387570098042488,0.028796717524528503,0.07917385548353195,-0.09435707330703735,0.026534056290984154,-0.07784519344568253,-0.05351579189300537,-0.028566528111696243,0.046365365386009216,-0.004202099051326513,0.005025354214012623,-0.022089645266532898,0.032569970935583115,0.0610545389354229,-0.03990987315773964,-0.07842016220092773,-0.04400908946990967,0.02149159274995327,-0.023275436833500862,-0.09217654168605804,0.07499301433563232,-0.028614811599254608,0.13728612661361694,0.040209684520959854,-0.03274623677134514,0.003503685351461172,0.0892934650182724,0.031163780018687248,0.12402039766311646,0.031102970242500305,0.028799423947930336,-0.054910555481910706,0.05248800292611122,0.03279395401477814,-0.06190033257007599,0.017418386414647102,0.04069853946566582,0.022346841171383858,0.04301463067531586,-0.09372543543577194,0.024774057790637016,-0.03543318063020706,-0.006717071868479252,-0.06145653873682022,-0.07165084779262543,0.08992922306060791,-0.010180240496993065,-0.02700091525912285,-0.034601420164108276,-0.11743047833442688,-0.029481248930096626,-0.011272626928985119,0.043595582246780396,0.010082702152431011,-0.034506797790527344,-0.039254892617464066,-0.03627438843250275,-0.045852720737457275,-0.04716765508055687,0.09955701231956482,0.025413962081074715,0.04618992283940315,-0.022807858884334564,-0.012238415889441967,0.10891272127628326,0.06015311926603317,0.039213474839925766,-0.017409497871994972,0.0009737919317558408,-0.06572858989238739,0.00790865533053875,0.043335650116205215,-2.938207899205736e-8,-0.03195663169026375,-0.057358887046575546,0.018531985580921173,0.012703603133559227,0.0811300054192543,-0.003787681460380554,0.02358149364590645,0.025893105193972588,-0.019962307065725327,0.15510417520999908,-0.1842990666627884,0.06040206924080849,-0.04803928732872009,0.07760319113731384,-0.0012453628005459905,0.062383491545915604,0.08041764795780182,0.016899827867746353,-0.04784262552857399,0.0858505442738533,0.013262363150715828,0.059741176664829254,-0.07422510534524918,-0.046497806906700134,-0.024433894082903862,-0.028699086979031563,-0.07643350958824158,-0.05469626560807228,0.025228511542081833,0.07646730542182922,0.04300510510802269,0.03226020932197571,0.013074747286736965,-0.03239581361413002,-0.07847011834383011,0.034794554114341736,0.020941562950611115,-0.03282720968127251,0.0814124122262001,-0.05418643727898598,-0.004521272610872984,0.0467330701649189,0.02640293538570404,0.04615313559770584,-0.0002716596645768732,-0.04174916446208954,0.014610201120376587,0.019931484013795853,0.021876677870750427,0.026206815615296364,0.0033776243217289448,0.10214821994304657,0.04988786578178406,0.021768610924482346,0.03536876291036606,-0.07854783535003662,-0.027683820575475693,-0.0038428702391684055,0.048157740384340286,0.015787379816174507,0.026161549612879753,0.015114097855985165,-0.06015381962060928,-0.02666686289012432]},{"text":"Not only the most up-to-date methods, but a discipline and an orderliness which should be an example to all farmers everywhere.","book":"Animal Farm","chapter":14,"embedding":[-0.009210199117660522,0.05151277408003807,0.020047377794981003,-0.01816052570939064,-0.036749545484781265,-0.018801704049110413,-0.1125856265425682,-0.06550247222185135,-0.12113557010889053,0.11035756766796112,0.12076709419488907,0.066913902759552,-0.04958311468362808,0.06499902904033661,-0.02772870846092701,-0.013134236447513103,-0.005319084972143173,0.06611096858978271,0.004109847825020552,-0.11188444495201111,-0.06006782129406929,0.051363930106163025,0.021061191335320473,-0.004532734397798777,0.007093470543622971,-0.023344388231635094,-0.020744871348142624,-0.046630892902612686,0.002860856940969825,-0.023727279156446457,-0.04711214452981949,0.0943458080291748,0.051285091787576675,-0.0028039279859513044,-0.08511506766080856,0.1076597347855568,0.08601461350917816,-0.00912520568817854,-0.008248048834502697,0.03456220403313637,-0.011987862177193165,0.00573215214535594,0.02406971901655197,-0.0889897570014,0.0005291445995680988,0.008719020523130894,-0.012158708646893501,-0.018810933455824852,-0.0231596939265728,-0.11488260328769684,-0.041639506816864014,-0.04326394572854042,0.021911075338721275,-0.021033024415373802,0.03329794481396675,-0.05092593654990196,0.05137211084365845,0.011504024267196655,0.013157513923943043,0.03225059062242508,-0.01840117573738098,0.0336647555232048,-0.08184918016195297,-0.0075567434541881084,0.007527892477810383,0.01108087319880724,-0.006343153305351734,0.1055586040019989,-0.05981375277042389,0.05871632695198059,-0.013490368612110615,-0.055121228098869324,-0.028135333210229874,0.03248775005340576,-0.07635126262903214,0.013795406557619572,-0.026673611253499985,-0.03078911267220974,0.0029440319631248713,-0.08980633318424225,-0.08924504369497299,0.002391221933066845,0.025485025718808174,0.044712286442518234,0.03825069218873978,-0.00859086774289608,-0.034095458686351776,-0.016983555629849434,0.10233837366104126,-0.012019820511341095,-0.008479383774101734,-0.01720390096306801,-0.04072562977671623,-0.022015830501914024,-0.006233647931367159,0.0032710370142012835,0.009015395306050777,-0.06708395481109619,-0.04491912201046944,0.03466403856873512,-0.00914451852440834,0.001037501497194171,-0.03191540762782097,-0.014220571145415306,0.022160058841109276,0.011556158773601055,-0.06283795088529587,-0.06996230036020279,0.03729233518242836,0.0008921073167584836,-0.08846433460712433,0.10300479084253311,-0.09394130855798721,-0.015915926545858383,0.04072798416018486,-0.028330428525805473,0.031101945787668228,-0.026653632521629333,0.019823845475912094,-0.03995225951075554,0.05573263391852379,-0.010733694769442081,-0.0009186048409901559,-0.01999370940029621,0.09581885486841202,0.1015763208270073,0.06969746202230453,-2.828385426517315e-33,0.011309848167002201,0.03283030167222023,0.005448255222290754,0.018815355375409126,0.022783922031521797,-0.03880547732114792,0.020681176334619522,-0.040268994867801666,0.07131538540124893,0.01844753324985504,0.08597727864980698,0.02658699080348015,0.008404889144003391,0.012442930601537228,0.060257501900196075,-0.08861885964870453,-0.053832609206438065,0.02911665104329586,0.041854944080114365,0.0077449856325984,-0.0071692815981805325,-0.08324123173952103,0.021910052746534348,-0.026789434254169464,0.07987935096025467,-0.026478663086891174,0.076757051050663,-0.010347097180783749,0.08820832520723343,0.016753168776631355,0.10277596861124039,-0.021192727610468864,-0.06140445917844772,-0.02067505195736885,-0.05779772251844406,0.026539023965597153,-0.06152953952550888,-0.02499653957784176,0.01995309256017208,0.026039738208055496,-0.029255207628011703,-0.047394830733537674,0.07081836462020874,-0.05742645636200905,0.05075177922844887,0.0957241877913475,-0.008687998168170452,0.046363815665245056,-0.024470584467053413,0.06599646806716919,-0.0023937115911394358,0.012248983606696129,0.10300049185752869,-0.06261765211820602,-0.0010593768674880266,-0.012899582274258137,0.03751162067055702,0.004870983771979809,-0.04268895462155342,-0.02658901922404766,0.036599256098270416,-0.003984167706221342,-0.053497299551963806,0.009392976760864258,-0.030819876119494438,-0.03996272385120392,-0.04713091999292374,-0.035962678492069244,0.056317288428545,-0.015445866622030735,-0.022491157054901123,0.014641419984400272,-0.11194715648889542,-0.011097243055701256,-0.06472090631723404,-0.02864651009440422,0.03809427097439766,-0.0654606893658638,0.027114108204841614,-0.0774104967713356,-0.001000483869574964,0.010998602956533432,-0.04343882575631142,0.04909729212522507,-0.023368289694190025,-0.029973233118653297,-0.01486409641802311,0.09848223626613617,0.04494186118245125,0.005855998490005732,-0.041049495339393616,0.036519214510917664,0.06794187426567078,-0.013511233031749725,0.05876114219427109,1.1829524033007741e-33,0.013329348526895046,0.030451787635684013,-0.009381147101521492,0.14571909606456757,0.04869862645864487,-0.0696176066994667,-0.030119745060801506,-0.07744042575359344,0.08090409636497498,-0.049424149096012115,-0.10890701413154602,0.0548131950199604,0.003081369446590543,0.02341790311038494,0.03187230974435806,-0.03778509795665741,-0.04096080735325813,0.015495865605771542,0.0416572205722332,-0.01922023296356201,-0.012026481330394745,0.046973392367362976,0.009420833550393581,-0.04975488409399986,-0.018242385238409042,0.012943580746650696,-0.07333008199930191,0.028707053512334824,-0.0991676077246666,-0.08611197024583817,-0.0008506638696417212,-0.09396082907915115,0.009166705422103405,-0.021118298172950745,-0.09730514138936996,0.031995974481105804,0.012559770606458187,0.015070033259689808,-0.005205133929848671,0.13526016473770142,0.008515994064509869,0.028686195611953735,-0.058037400245666504,-0.0045564062893390656,-0.05023433640599251,0.01126646064221859,-0.04322170466184616,0.021837130188941956,-0.026415102183818817,0.055472105741500854,0.04410986229777336,0.052799493074417114,-0.03751077130436897,-0.065407894551754,0.003211847273632884,-0.015384146012365818,0.04716404527425766,-0.025236712768673897,-0.0907379686832428,0.07638761401176453,-0.03233298286795616,0.04912455007433891,0.010798919945955276,0.08375835418701172,-0.05365478992462158,0.004995423369109631,-0.013796200975775719,0.025826042518019676,-0.011804930865764618,-0.0064810398034751415,-0.028201999142766,0.019328784197568893,0.02374178171157837,0.0239623561501503,-0.06427748501300812,0.01755368523299694,0.06263967603445053,-0.048218946903944016,-0.019095631316304207,-0.08976906538009644,0.04046986624598503,-0.08036798983812332,0.07075875252485275,0.042297739535570145,-0.035723619163036346,-0.001357679022476077,0.03762691095471382,-0.008438918739557266,0.07827667891979218,-0.0008902657427825034,-0.08090052008628845,-0.0866093784570694,0.019824044778943062,0.06294972449541092,0.013958802446722984,-2.9551980418318635e-8,-0.01932493969798088,-0.10598582029342651,0.08901046961545944,0.037162743508815765,0.06156705692410469,0.026363329961895943,0.016620082780718803,0.0206842590123415,-0.01604399085044861,0.019678765907883644,-0.09403957426548004,0.11569778621196747,0.0170625951141119,0.08275620639324188,0.06773000955581665,-0.053970787674188614,0.09855858981609344,0.004667359404265881,-0.1646963357925415,-0.007913506589829922,-0.012449105270206928,0.030345028266310692,-0.024408722296357155,-0.01864481531083584,0.03897172957658768,-0.020790033042430878,-0.03298699110746384,0.024964837357401848,0.11213546246290207,0.10870920866727829,0.04518941417336464,0.05481264367699623,0.042676206678152084,-0.05398169904947281,0.00016232699272222817,0.04466470330953598,-0.1015317365527153,0.029304523020982742,0.030018288642168045,-0.023343419656157494,-0.07930384576320648,0.04955407604575157,-0.0068548088893294334,0.053269561380147934,0.03968920186161995,0.004703811835497618,-0.06802836805582047,-0.005040617194026709,-0.02925950475037098,0.017385192215442657,0.0003394514205865562,0.016748817637562752,0.06266769021749496,-0.022625373676419258,0.037423890084028244,0.00011335407907608896,0.03423329070210457,-0.09469973295927048,0.05386187136173248,-0.031294889748096466,-0.0010995572665706277,0.011615918949246407,0.011278192512691021,0.053631484508514404]},{"text":"Their struggles and their difficulties were one.","book":"Animal Farm","chapter":15,"embedding":[0.03888605907559395,0.056036483496427536,-0.01820429414510727,0.06978707760572433,-0.048262570053339005,0.04269147664308548,-0.02074194885790348,0.01260104589164257,-0.1264977902173996,-0.06744978576898575,0.016911029815673828,-0.006955625489354134,0.034676723182201385,-0.03149644657969475,-0.03534334897994995,-0.006233386229723692,-0.08727657049894333,-0.01755371503531933,0.0415201261639595,0.02309422567486763,-0.10885698348283768,-0.027766548097133636,-0.05091898515820503,0.03308636695146561,-0.013081060722470284,0.026838107034564018,-0.016201158985495567,0.009728462435305119,0.05894668772816658,-0.028480174019932747,-0.03449568897485733,-0.023727035149931908,-0.010169623419642448,0.06410259008407593,0.007314835675060749,0.06394622474908829,0.11042976379394531,0.0974225178360939,0.04370943456888199,-0.0634552538394928,0.035649918019771576,0.028380362316966057,0.04790303856134415,-0.07577234506607056,-0.026134461164474487,-0.09375985711812973,-0.019466649740934372,0.02526210993528366,-0.013590972870588303,-0.03694237768650055,0.0894000455737114,-0.03589862957596779,0.007088857237249613,-0.11069978773593903,0.049232639372348785,0.0021679606288671494,-0.013455858454108238,0.012678202241659164,0.045892808586359024,0.01046465989202261,0.05919932946562767,-0.03566155955195427,-0.00008703939965926111,0.05762800946831703,0.06176617369055748,-0.014290060847997665,0.03037753514945507,-0.006536787375807762,-0.09717932343482971,0.05702763423323631,-0.06483135372400284,-0.06080611050128937,-0.0125069385394454,-0.014634707011282444,0.00423376215621829,-0.05834518000483513,-0.02263440378010273,-0.0044315280392766,-0.03140430897474289,-0.022099513560533524,-0.04217211529612541,-0.001444086548872292,-0.04158995673060417,0.042205389589071274,0.07083790004253387,-0.028889726847410202,0.033793073147535324,-0.09151294082403183,0.06526042520999908,-0.0056184399873018265,0.04439527168869972,0.014426054432988167,0.08615601807832718,0.013396847993135452,0.07590703666210175,-0.0516827255487442,0.06884780526161194,0.038130514323711395,0.020832978188991547,0.05025225132703781,-0.00564180500805378,0.009537866339087486,0.04277410730719566,0.03969021886587143,-0.04851650074124336,-0.09833444654941559,-0.03143337368965149,-0.07434970140457153,-0.037162721157073975,0.0031375596299767494,-0.05398651584982872,-0.05776746943593025,0.016086455434560776,-0.00007530299626523629,0.06762013584375381,0.0009718670044094324,-0.03619780391454697,0.006839662324637175,-0.012051355093717575,0.07200953364372253,0.0033196485601365566,0.012748423032462597,-0.051453277468681335,-0.02346266806125641,-0.0058698877692222595,0.053160328418016434,-0.06363728642463684,-3.736610014516039e-33,0.06598129123449326,-0.020200537517666817,-0.06439797580242157,0.050955016165971756,-0.006103846710175276,0.01801442541182041,-0.05649846792221069,0.011522211134433746,-0.01510964147746563,-0.050764232873916626,-0.05057733505964279,0.043339937925338745,0.024234695360064507,-0.14458651840686798,0.07008093595504761,-0.009348549880087376,-0.0924951359629631,-0.040879201143980026,-0.01963493786752224,-0.007454996928572655,-0.058991771191358566,0.10870815068483353,0.013649499975144863,-0.018071461468935013,-0.03124271146953106,-0.023044994100928307,0.030841128900647163,0.007036329247057438,-0.0307922400534153,0.011037519201636314,0.013497048988938332,-0.030056951567530632,-0.042327653616666794,0.010486546903848648,0.049511101096868515,0.03767707198858261,-0.005274987779557705,-0.0692342072725296,-0.020036857575178146,0.03050832636654377,-0.05591900646686554,0.0018261566292494535,0.04291544482111931,0.02394409291446209,0.09666284918785095,0.07540154457092285,-0.009658165276050568,-0.07513108849525452,-0.05177922546863556,0.013879758305847645,-0.06444861739873886,0.09088881313800812,-0.03323831781744957,-0.05751295015215874,0.04974550008773804,-0.03539404273033142,-0.04883872717618942,0.09522131830453873,-0.02438662014901638,0.008005287498235703,0.024459874257445335,-0.005475717596709728,0.017359822988510132,-0.07000314444303513,0.03553296625614166,0.01522012148052454,-0.037303704768419266,0.05804592743515968,-0.046607621014118195,-0.008581007830798626,-0.018439142033457756,-0.022974371910095215,0.05738065391778946,-0.06007857248187065,0.01742548868060112,0.014440979808568954,0.04288769140839577,-0.03219166025519371,-0.07421652972698212,-0.020415356382727623,-0.05960948020219803,-0.051296692341566086,-0.01817399635910988,0.04205316677689552,-0.02080075442790985,0.011815403588116169,0.061651989817619324,-0.07400797307491302,0.0003779218241106719,-0.03742530196905136,-0.053667012602090836,0.060547344386577606,0.020319990813732147,-0.12145302444696426,-0.005676364991813898,1.5437884858784184e-33,-0.038281962275505066,0.02000565640628338,-0.07026556134223938,0.049484673887491226,0.09478185325860977,0.0223788283765316,-0.006736858747899532,0.05320050194859505,0.023568984121084213,0.019807934761047363,-0.08570349961519241,-0.03168483078479767,-0.08383145183324814,-0.004477925132960081,-0.03204163908958435,-0.06583937257528305,0.01818878762423992,0.05014495551586151,0.04865514114499092,0.03547528386116028,0.004931201692670584,0.07322771102190018,-0.059256840497255325,-0.02890651300549507,-0.002065805019810796,0.1189052015542984,0.002539187902584672,-0.10425874590873718,-0.09495250135660172,-0.053938768804073334,0.10690401494503021,0.013337223790585995,-0.057055726647377014,0.026772523298859596,0.0017870910232886672,0.04141326993703842,-0.11414127051830292,0.0033101781737059355,-0.016709931194782257,-0.011515645310282707,-0.05110323429107666,-0.015744199976325035,0.0632593035697937,0.11712203919887543,0.04172580689191818,0.10978025943040848,0.02224157750606537,-0.028273683041334152,-0.04888808727264404,0.02696237899363041,-0.02052612230181694,0.038885291665792465,-0.006378290709108114,-0.0005591690423898399,0.007409913931041956,-0.07519984990358353,0.023290233686566353,-0.050819192081689835,-0.022916235029697418,-0.026590894907712936,-0.0699319988489151,-0.0073044984601438046,0.01305441278964281,0.11207937449216843,0.006344790104776621,-0.04905688762664795,-0.05705318599939346,0.046219151467084885,-0.04094400629401207,0.0045838807709515095,0.0012181171914562583,-0.02990260347723961,0.008740028366446495,0.021006744354963303,0.018873348832130432,0.0492040179669857,-0.15143363177776337,-0.02713744156062603,-0.014387493953108788,0.018072811886668205,0.007966592907905579,-0.0025062868371605873,-0.011704184114933014,0.06570753455162048,-0.04484489560127258,0.14071877300739288,0.06883593648672104,0.05107010155916214,0.08282752335071564,0.03508761525154114,0.04036353528499603,-0.0724039301276207,0.06260734796524048,0.008012332022190094,0.040439099073410034,-1.631808643764998e-8,0.026760283857584,-0.012556749396026134,-0.004699215292930603,0.00590225076302886,-0.043932799249887466,0.013394331559538841,0.0377080924808979,0.03261129558086395,-0.003976442851126194,0.2288091629743576,-0.07629033178091049,0.01700552925467491,-0.019468119367957115,0.0429048053920269,0.026008807122707367,0.031985167413949966,0.012625355273485184,-0.016437970101833344,-0.04424310848116875,-0.007540547288954258,-0.047807250171899796,0.030407601967453957,0.008967233821749687,-0.0670732706785202,-0.04416560381650925,0.024013634771108627,-0.05846184119582176,-0.06159808486700058,-0.016400810331106186,-0.008773082867264748,0.04538381099700928,-0.014947634190320969,-0.025898922234773636,-0.051051411777734756,-0.06201734393835068,0.06277574598789215,-0.08735446631908417,-0.042534101754426956,0.025067567825317383,-0.10641220957040787,0.00007944535900605842,0.08145207911729813,0.08874650299549103,0.03809221088886261,0.05361289903521538,-0.004298248328268528,-0.0031521243508905172,0.020809099078178406,-0.010672048665583134,-0.06972887367010117,0.018431318923830986,0.08165156096220016,0.03074442222714424,0.08117789030075073,-0.004600938409566879,-0.05449722334742546,0.015559940598905087,0.020638305693864822,-0.06071864813566208,0.021998003125190735,0.03415821120142937,0.06825287640094757,0.08708329498767853,0.04207170009613037]},{"text":"Pilkington once again congratulated the pigs on the low rations, the long working hours, and the general absence of pampering which he had observed on Animal Farm.","book":"Animal Farm","chapter":15,"embedding":[-0.04328404366970062,0.05356407165527344,0.02576463855803013,0.03501294180750847,-0.012028324417769909,0.029806463047862053,-0.03000701777637005,-0.028187617659568787,-0.1401277482509613,-0.05779135972261429,0.09895441681146622,-0.009510956704616547,0.04566076397895813,0.0418931245803833,-0.07557778805494308,-0.03912264108657837,0.06344979256391525,0.005276341922581196,-0.0281244944781065,-0.0578095018863678,-0.045753687620162964,-0.060250263661146164,0.009149485267698765,0.0579310767352581,0.020478203892707825,-0.03070739284157753,0.00288038095459342,0.047750476747751236,-0.018270185217261314,-0.029642531648278236,-0.06619120389223099,-0.0024932886008173227,0.05581259727478027,-0.04661567881703377,-0.036782607436180115,0.03743349760770798,0.11586767435073853,0.028811242431402206,0.12148557603359222,0.02300790138542652,0.011614036746323109,-0.09572667628526688,0.03410940617322922,-0.005216371268033981,-0.0720551609992981,0.00413915328681469,0.034867074340581894,-0.1273522973060608,0.014032579027116299,0.0005461187683977187,0.0144147127866745,0.07331514358520508,0.0274236761033535,-0.12822411954402924,0.009305760264396667,-0.046591632068157196,-0.02695894055068493,-0.08735344558954239,-0.024337589740753174,-0.05607336387038231,-0.03550394997000694,0.026824235916137695,0.003911646082997322,0.0425279475748539,0.03871515020728111,-0.04408437758684158,-0.05028104409575462,-0.00633214833214879,-0.059764761477708817,-0.01750675030052662,-0.04851565510034561,-0.012313230894505978,0.025168033316731453,-0.08570651710033417,-0.04840918630361557,0.0383710153400898,-0.009312435984611511,-0.052937835454940796,0.014063224196434021,-0.0268111489713192,-0.0498209111392498,-0.07696649432182312,-0.05146056041121483,0.031300824135541916,-0.022035490721464157,-0.052437108010053635,-0.010618227533996105,0.008204354904592037,-0.012546260841190815,-0.022541143000125885,0.028843332082033157,-0.005619705654680729,-0.04223756119608879,0.017104392871260643,-0.01807883009314537,-0.04073469713330269,-0.08456969261169434,0.06548070162534714,-0.13001646101474762,0.0407414510846138,-0.033642202615737915,0.003326540347188711,0.016956904903054237,-0.054614752531051636,0.04123857617378235,-0.03932410106062889,-0.0478462353348732,0.01207721047103405,-0.05025527998805046,0.04917342960834503,-0.013646298088133335,0.03715534135699272,-0.041778597980737686,0.05586077272891998,0.0337429977953434,0.11647732555866241,-0.0660625621676445,-0.08132483065128326,-0.1195317879319191,0.04896913841366768,0.09628455340862274,0.07648146152496338,0.0012782179983332753,0.03550601750612259,-0.05311286076903343,0.015755167230963707,0.10212758928537369,-1.0054036243361642e-33,0.024469582363963127,-0.008590487763285637,0.012750294990837574,0.05116031691431999,0.08935046941041946,0.0326281413435936,-0.09598784893751144,-0.06645525991916656,0.09757920354604721,-0.005621704738587141,0.02524889074265957,0.14875781536102295,0.005751030053943396,-0.05024734511971474,-0.15640221536159515,-0.012900668196380138,-0.0477682389318943,0.03181565925478935,0.020071813836693764,0.05151683837175369,-0.0792258232831955,0.02756514400243759,-0.0025803870521485806,0.011918304488062859,0.0477847121655941,-0.027372470125555992,0.0192347913980484,-0.09148291498422623,0.0015909685753285885,0.0363333486020565,0.05801058188080788,-0.012597219087183475,-0.026742883026599884,-0.04280586540699005,-0.01639508455991745,-0.0850578024983406,0.009395967237651348,-0.10813093185424805,0.04541011154651642,0.00896890927106142,0.04282866790890694,-0.04769448563456535,0.12210731953382492,0.07307461649179459,-0.01862146519124508,0.0511602945625782,0.00885340292006731,0.07618699222803116,-0.015572887845337391,-0.04707663506269455,0.03407002240419388,-0.013466497883200645,-0.00970461405813694,0.001998727675527334,-0.015150857158005238,-0.08415978401899338,-0.05430638790130615,-0.01650073193013668,-0.04175195470452309,0.0704670399427414,0.02262122929096222,0.04078476130962372,-0.032130055129528046,-0.07295789569616318,-0.06878350675106049,-0.08302029967308044,-0.05386877804994583,0.03480635583400726,-0.0853041410446167,0.10633634775876999,0.053169135004282,-0.08926689624786377,-0.03406204655766487,-0.050631288439035416,0.010329538956284523,-0.042461637407541275,0.07503820210695267,0.03182954341173172,-0.0626199021935463,-0.057876814156770706,0.08100820332765579,0.007666043005883694,-0.059889055788517,-0.007207285147160292,-0.02940255030989647,0.0799902006983757,0.0539410375058651,-0.05839431285858154,0.02936132624745369,-0.04008402302861214,0.027474017813801765,-0.040960248559713364,0.06044257804751396,-0.047532081604003906,0.026338519528508186,-1.3113143660296525e-33,-0.015654606744647026,0.002656586468219757,0.00957269687205553,0.022286828607320786,0.01551519799977541,0.006184232886880636,0.013094578869640827,-0.025989804416894913,-0.023500576615333557,-0.0012054888065904379,0.02655477076768875,0.010446790605783463,0.0046309493482112885,0.005688464734703302,-0.01963956095278263,-0.0054288748651742935,0.05255403742194176,-0.06307473033666611,-0.002091220347210765,-0.0341925211250782,-0.02039778232574463,0.0573970265686512,-0.024775752797722816,-0.0008836559136398137,0.03467485308647156,0.107661671936512,-0.09526331722736359,-0.0021598038729280233,-0.021104494109749794,-0.022479135543107986,-0.009844197891652584,0.00042534133535809815,0.022702572867274284,0.013770769350230694,0.026979010552167892,0.06915299594402313,0.05289345979690552,0.003986499272286892,-0.05822381004691124,0.03550579398870468,0.025988806039094925,-0.10306315124034882,-0.07024126499891281,0.01421947032213211,-0.016599509865045547,0.05041930451989174,0.00548873795196414,-0.019594654440879822,-0.0011357932817190886,0.10794252902269363,0.01588745415210724,0.017758378759026527,-0.0230950228869915,-0.010038664564490318,-0.037812765687704086,0.03746133670210838,-0.04519103839993477,-0.0824798047542572,0.03318614140152931,-0.014863002113997936,-0.09847867488861084,-0.042549017816782,-0.00475027970969677,0.07321246713399887,-0.008733456023037434,-0.06181056424975395,0.041453976184129715,-0.012948350980877876,0.02126525342464447,0.013529409654438496,-0.037972528487443924,0.06254324316978455,0.030532222241163254,0.014398789033293724,0.028043385595083237,0.11982019990682602,-0.006236452143639326,-0.059900134801864624,-0.04824528098106384,-0.04596566781401634,-0.10054946690797806,-0.07998251169919968,0.04534893110394478,0.04351472854614258,-0.023025985807180405,-0.03861452639102936,0.06300432235002518,0.041224561631679535,0.029474826529622078,-0.030209602788090706,-0.014221832156181335,-0.0128043033182621,0.007762875873595476,0.06401074677705765,0.050882887095212936,-2.8412925345833173e-8,0.031440433114767075,0.027592843398451805,0.007172045297920704,0.011718939058482647,0.05677423253655434,-0.008644793182611465,-0.0002579499559942633,0.0053512598387897015,0.011221432127058506,0.11656514555215836,-0.060172803699970245,0.10332901775836945,0.04835809767246246,-0.002256758278235793,0.060654107481241226,0.025448698550462723,0.053432367742061615,0.020220281556248665,0.004210905637592077,0.03158681467175484,-0.026976581662893295,0.04151754081249237,-0.05543382465839386,-0.05801548436284065,-0.07088588178157806,0.07120274752378464,0.0034942009951919317,0.01259602140635252,-0.035420972853899,0.041496291756629944,0.06973345577716827,0.006997945252805948,-0.017572622746229172,-0.09977405518293381,-0.0010619052918627858,0.02914131060242653,0.02177627757191658,0.025093046948313713,0.0734587013721466,-0.04261306673288345,-0.04188505560159683,0.07041586935520172,-0.0369633287191391,0.014808828011155128,0.06072106584906578,-0.030091576278209686,-0.020414363592863083,0.03445588797330856,0.029707733541727066,0.012140056118369102,-0.02294175885617733,0.09196309745311737,0.10771431028842926,0.028870224952697754,0.01605335623025894,-0.04990817978978157,-0.007674250286072493,-0.07479726523160934,0.06887543201446533,0.02092013694345951,-0.00484939431771636,0.041846197098493576,-0.032330915331840515,0.023785613477230072]},{"text":"Like all of Napoleon's speeches, it was short and to the point.","book":"Animal Farm","chapter":15,"embedding":[-0.003219631500542164,0.1394776999950409,0.07632368803024292,-0.046538095921278,0.021245969459414482,0.08483695238828659,-0.00897893588989973,0.04797402024269104,0.021464677527546883,-0.06113126873970032,-0.002087630797177553,0.03817344084382057,0.04600631073117256,-0.06934002786874771,-0.010894174687564373,-0.07367625832557678,0.02144494466483593,0.03131060302257538,0.02051919884979725,0.04124949499964714,0.13099496066570282,0.09412654489278793,0.04473187029361725,0.06570542603731155,0.04708680883049965,-0.009204169735312462,-0.05735871568322182,-0.08184416592121124,0.017473692074418068,0.07903249561786652,0.0031647260766476393,0.011531176045536995,0.08104503899812698,0.032162856310606,-0.04995400086045265,-0.02250625565648079,0.02968692220747471,0.06849970668554306,0.0475456528365612,-0.01504106167703867,-0.037335701286792755,0.03595014289021492,0.00022535624157171696,0.08285127580165863,-0.019958488643169403,-0.018717046827077866,-0.021757761016488075,-0.05116577818989754,0.02050451748073101,0.004677905701100826,-0.01574707217514515,0.053537726402282715,-0.04898412153124809,-0.011800399981439114,-0.029095247387886047,-0.07254914194345474,-0.07142656296491623,0.04677727818489075,0.037153322249650955,0.08646626770496368,-0.010879424400627613,-0.05200912058353424,-0.027228711172938347,0.028872167691588402,0.05617177486419678,-0.02636319026350975,-0.017716722562909126,-0.03554660826921463,-0.14192183315753937,0.1652401089668274,-0.07941991090774536,0.0041726743802428246,0.037559911608695984,0.023847291246056557,-0.07701471447944641,-0.07044314593076706,0.030959250405430794,0.030478205531835556,-0.06504303961992264,-0.04070940986275673,-0.057158976793289185,-0.05615488439798355,-0.01059962809085846,0.03626592084765434,0.020704519003629684,-0.09464602917432785,0.08448813855648041,-0.08332731574773788,0.02587829902768135,-0.008059668354690075,-0.014913167804479599,-0.10494325309991837,0.015000241808593273,0.07476779073476791,0.01294048223644495,-0.045130275189876556,-0.06585317850112915,0.03349672630429268,-0.022747095674276352,0.0374399833381176,0.011286965571343899,0.01933564990758896,-0.02696729637682438,0.021205905824899673,-0.052228592336177826,0.01545580942183733,-0.029147379100322723,-0.05099376291036606,-0.0876879170536995,-0.018442995846271515,-0.01956666260957718,-0.022652642801404,0.07716882973909378,0.05010608583688736,0.04937362298369408,0.04641566425561905,-0.11646126210689545,-0.17408616840839386,-0.030049890279769897,0.1073228120803833,0.03108345717191696,-0.015626659616827965,0.010770421475172043,0.03713716194033623,-0.03294183313846588,0.017683720216155052,0.07439801841974258,-5.7858787036633034e-33,-0.013728070072829723,0.07405102252960205,-0.0011921022087335587,0.01548977755010128,-0.041775040328502655,0.06777117401361465,-0.09717751294374466,-0.027649875730276108,-0.023904861882328987,0.061254311352968216,0.02042919211089611,-0.011266437359154224,-0.01756078191101551,-0.025473151355981827,-0.027512861415743828,0.016735456883907318,-0.05865363031625748,0.1421731859445572,0.002600169274955988,0.01911555603146553,-0.015297416597604752,0.04384284093976021,0.042127273976802826,0.014068636111915112,0.041029345244169235,0.007270989939570427,-0.013139061629772186,-0.054330240935087204,-0.08489199727773666,0.014909516088664532,-0.09049079567193985,-0.016167279332876205,0.0371578074991703,-0.0004168095765635371,0.049075786024332047,-0.07711365073919296,0.0536484457552433,-0.01811116375029087,-0.03496280312538147,0.05631871148943901,-0.02679411694407463,-0.028165178373456,0.0018414949299767613,0.02705414593219757,-0.00981319323182106,-0.009222166612744331,-0.055461782962083817,0.003542553400620818,0.0012678195489570498,0.016560522839426994,-0.007294527254998684,-0.014229063875973225,0.05223042145371437,-0.05317683517932892,0.05763760954141617,0.053824637085199356,-0.04120397940278053,0.06281007081270218,-0.0014095273800194263,-0.038500141352415085,-0.032265421003103256,0.0636361613869667,-0.007056561764329672,0.011374424211680889,-0.00028246594592928886,0.030193334445357323,-0.09579608589410782,0.057714954018592834,0.042498886585235596,-0.053265444934368134,0.008488603867590427,-0.015907857567071915,-0.032532259821891785,0.016502119600772858,0.008626793511211872,0.03666435182094574,0.03371980041265488,0.002866469556465745,-0.055938150733709335,0.024498578161001205,-0.02602502331137657,-0.09114228934049606,0.009294466115534306,-0.04006371647119522,0.019505687057971954,-0.02759947068989277,0.05200551822781563,-0.06175791099667549,-0.03889475390315056,0.006045917049050331,-0.09334250539541245,0.0022392699029296637,-0.01805724762380123,-0.02238098718225956,-0.039877019822597504,2.968325641259808e-33,-0.005116630345582962,0.026184553280472755,-0.030354391783475876,0.11006250977516174,0.0235141571611166,0.043470598757267,0.016704242676496506,0.13232062757015228,-0.00012182965292595327,0.02400817722082138,-0.010459741577506065,-0.09011049568653107,-0.005724193062633276,-0.06081056967377663,0.03393103554844856,-0.020189156755805016,0.06903744488954544,-0.08251523226499557,0.0231766477227211,0.02738441526889801,0.012605058029294014,0.008273500949144363,-0.07133173942565918,-0.039681293070316315,-0.08661025017499924,0.024360693991184235,0.0006847099866718054,-0.08775651454925537,-0.0711253359913826,-0.0072046141140162945,-0.024198276922106743,0.03111189603805542,-0.14828693866729736,0.058993902057409286,-0.01114512886852026,0.05221659317612648,-0.01764460653066635,0.0007697538239881396,0.039521683007478714,0.05361805483698845,-0.002197991358116269,-0.054592836648225784,0.03883052244782448,-0.0068366737104952335,0.002602723427116871,-0.06777618825435638,-0.07501698285341263,-0.017739491537213326,0.033779390156269073,0.045549459755420685,-0.11543861776590347,0.029060019180178642,-0.014880111441016197,0.015491889789700508,-0.04220844805240631,-0.0927567258477211,-0.02782999351620674,-0.03565474599599838,0.00047676291433162987,-0.028890682384371758,-0.015041274018585682,-0.02808058075606823,-0.029482269659638405,-0.11223217844963074,0.025687115266919136,0.0702764019370079,-0.024643024429678917,0.10801111906766891,0.08989400416612625,0.03157882019877434,0.024736450985074043,-0.021629810333251953,-0.06836827099323273,0.07909344881772995,-0.007161123678088188,0.038535550236701965,0.010292647406458855,-0.0343015156686306,-0.027936875820159912,-0.06603812426328659,-0.0048426478169858456,-0.0381617471575737,-0.045890938490629196,-0.06147848442196846,0.02337970957159996,0.05286619812250137,-0.061065204441547394,0.011524740606546402,0.05080682039260864,0.10216504335403442,0.006112274248152971,-0.025074025616049767,0.11233872175216675,0.013203577138483524,0.0021902115549892187,-2.160641265902541e-8,-0.03974321484565735,0.04960304871201515,0.02888430655002594,0.020366661250591278,0.013989195227622986,-0.020180610939860344,-0.02564994804561138,-0.011098125018179417,0.008222684264183044,0.030234036967158318,-0.02257494069635868,0.042021743953228,-0.03489525243639946,0.018167976289987564,-0.01882699690759182,0.0019269288750365376,0.02382964827120304,-0.0860624834895134,-0.007379791233688593,0.03738289698958397,0.005059076007455587,0.035018011927604675,-0.019410498440265656,-0.056562475860118866,-0.06790617853403091,0.04801822453737259,0.019666722044348717,-0.0018161993939429522,-0.0663236752152443,-0.04778989776968956,0.018880508840084076,0.06508314609527588,-0.08058076351881027,-0.05889970064163208,-0.020986944437026978,0.05275452509522438,0.05722428858280182,0.016821984201669693,0.09080713987350464,-0.047590222209692,-0.030524151399731636,0.006776351016014814,0.04517558589577675,0.01203939225524664,0.1068832129240036,0.13170266151428223,0.028684278950095177,-0.007158187218010426,0.011764444410800934,-0.00005010078530176543,0.030514493584632874,0.01692141406238079,0.012355082668364048,0.0007972989697009325,0.07048138976097107,0.0556555800139904,0.02887914329767227,-0.030177190899848938,0.013382402248680592,-0.04266052693128586,-0.03799261525273323,0.09764007478952408,-0.03603709116578102,-0.07083365321159363]},{"text":"Their sole wish, now and in the past, was to live at peace and in normal business relations with their neighbours.","book":"Animal Farm","chapter":15,"embedding":[0.06341785937547684,0.07589492946863174,0.024319808930158615,-0.0280021782964468,-0.024651607498526573,-0.021389475092291832,-0.017230695113539696,-0.09171857684850693,0.0173321720212698,-0.03039318136870861,0.05915394052863121,0.04009329155087471,0.04118785262107849,-0.031372763216495514,0.0027855418156832457,0.014777081087231636,-0.0896269753575325,-0.07480914145708084,-0.0648363009095192,0.04268278926610947,-0.12427210062742233,-0.026470370590686798,0.04283490777015686,0.01767968386411667,0.023852765560150146,0.06356345117092133,0.0436532162129879,0.02354520745575428,0.030158517882227898,0.07466581463813782,0.019412418827414513,0.007893585599958897,-0.018458792939782143,0.09149941802024841,-0.005566824227571487,0.06591655313968658,0.04375913366675377,0.009852695278823376,0.027972614392638206,-0.028697509318590164,0.07790523767471313,-0.048455215990543365,0.02899385243654251,-0.09064827114343643,-0.10416030138731003,-0.014133049175143242,0.07430288195610046,-0.030171819031238556,0.01602180488407612,-0.061447519809007645,0.023565160110592842,0.009626218117773533,-0.018657395616173744,-0.05976695567369461,0.04845810309052467,0.024631546810269356,-0.013006577268242836,0.031842492520809174,0.05921390280127525,0.01708139292895794,0.03601987659931183,0.024720624089241028,-0.01988309621810913,-0.007938290946185589,0.010617494583129883,-0.014763006009161472,0.0037246004212647676,0.12999020516872406,-0.0899747759103775,-0.034524086862802505,-0.04423117637634277,-0.015850882977247238,-0.06367838382720947,0.006400744430720806,-0.06193292886018753,-0.004564894363284111,0.03723527863621712,0.003279611701145768,-0.05535751208662987,-0.04823974147439003,-0.029184803366661072,0.04420275241136551,-0.0550089105963707,0.04659251496195793,0.006917811464518309,-0.014577645808458328,-0.006025872193276882,-0.04840434715151787,0.13326595723628998,0.012371218763291836,-0.05405062064528465,-0.04127626493573189,-0.01569659635424614,-0.010108601301908493,0.0038446749094873667,-0.026682520285248756,0.010420087724924088,-0.010666191577911377,-0.02877294085919857,0.0834430530667305,0.015858756378293037,-0.06224420666694641,-0.019950952380895615,-0.025259213522076607,-0.06581118702888489,0.006494435016065836,-0.10321652889251709,0.021091168746352196,-0.013231352902948856,-0.003523763967677951,-0.0994044691324234,-0.09782177209854126,-0.03525504469871521,0.0040998877957463264,0.03963429853320122,-0.06518804281949997,-0.05919041857123375,0.013833727687597275,-0.006106051150709391,-0.0639873594045639,-0.03125704452395439,0.0562322698533535,-0.08010305464267731,-0.05025743320584297,0.0063750301487743855,-0.03937646374106407,-0.03266502171754837,-3.521462956904882e-33,0.027106141671538353,0.024937642738223076,0.009758837521076202,0.005827159620821476,-0.04117674380540848,0.04373369738459587,-0.027195483446121216,0.043798286467790604,-0.013329342007637024,0.002315291203558445,0.05044427514076233,0.06799265742301941,0.017870768904685974,-0.11141973733901978,-0.06945382058620453,-0.015328862704336643,-0.08264338225126266,0.03541453927755356,0.04814744368195534,0.05681179091334343,0.0168592669069767,0.09505678713321686,0.037734758108854294,0.041416432708501816,0.017187850549817085,-0.03638100624084473,0.017102869227528572,0.0008446323918178678,0.020496759563684464,-0.004776034504175186,0.05388769507408142,0.06595487147569656,-0.03336845710873604,-0.0812903344631195,-0.032324083149433136,0.12598764896392822,-0.0457986481487751,-0.021632948890328407,-0.012771311216056347,-0.05727209523320198,0.0008255660650320351,0.012557324022054672,0.06459087133407593,0.04313700273633003,0.024891959503293037,0.06327919661998749,0.014777076430618763,-0.00877093430608511,0.0216334518045187,-0.002965681254863739,0.03534194082021713,-0.024570316076278687,-0.09236609190702438,-0.03292347863316536,-0.019297948107123375,-0.0017041823593899608,0.011110791005194187,0.07281381636857986,0.05499877780675888,-0.06073126196861267,0.010784474201500416,-0.03607843816280365,-0.03802771121263504,-0.009148616343736649,0.06731367111206055,0.03699396923184395,0.026258135214447975,0.04319268837571144,0.011434992775321007,-0.01469628419727087,0.07814715802669525,0.011298726312816143,-0.03975282609462738,-0.031168799847364426,-0.10601545870304108,0.053000617772340775,-0.07536903768777847,-0.03464597091078758,0.09459233283996582,-0.010120199993252754,-0.016174450516700745,0.048198290169239044,-0.08065643906593323,0.023882396519184113,0.07923601567745209,-0.00407981313765049,0.02565102092921734,-0.13827215135097504,-0.05765372887253761,0.09243252873420715,-0.018826156854629517,0.021514566615223885,0.043271761387586594,-0.001598077593371272,-0.07120434939861298,1.3090881817672866e-33,0.07072161138057709,-0.01762557588517666,-0.0684705302119255,0.06890123337507248,0.09054652601480484,0.0158671997487545,0.004641277715563774,-0.003392743179574609,-0.04197061061859131,0.0792279988527298,-0.08530876040458679,-0.08540447056293488,0.034438539296388626,0.08721856772899628,-0.04350947216153145,-0.01540854200720787,0.18014495074748993,0.02080642245709896,0.01544569805264473,-0.02467069961130619,0.00775706535205245,0.09055998921394348,-0.053857576102018356,0.11417487263679504,0.011523623019456863,0.029987625777721405,0.029212284833192825,-0.06491734832525253,-0.1492069512605667,-0.060034289956092834,0.021388031542301178,0.02409665659070015,-0.0851392149925232,0.04000059515237808,0.03630536422133446,-0.009717364795506,-0.026219485327601433,-0.01963607221841812,0.0058134570717811584,-0.03843172639608383,-0.02419322356581688,-0.028368493542075157,-0.0031115361489355564,0.14379999041557312,-0.016385765746235847,0.06026771664619446,-0.02554110251367092,0.0013198219239711761,-0.02666161209344864,-0.03223720192909241,0.03768676146864891,0.08241522312164307,-0.0021397883538156748,-0.021842943504452705,0.046473823487758636,-0.0112809082493186,-0.09873709082603455,-0.023035377264022827,0.06933645159006119,-0.025485532358288765,0.015672238543629646,0.019586563110351562,-0.0076168193481862545,0.05944577977061272,-0.09004373848438263,0.04736262559890747,-0.04174491763114929,-0.011706485413014889,0.023252366110682487,-0.003998813219368458,0.01031768973916769,-0.06848608702421188,-0.06347300112247467,-0.01187037955969572,0.009118515998125076,-0.010570991784334183,0.03294316306710243,-0.07672097533941269,-0.011399678885936737,0.04899657517671585,-0.04504537954926491,-0.05403817445039749,-0.020446235314011574,0.028397107496857643,-0.016415908932685852,0.04272625595331192,0.01752462610602379,0.05132223665714264,0.14957953989505768,0.017624003812670708,-0.05362837016582489,-0.07678980380296707,-0.05060160160064697,-0.018834786489605904,0.006221835967153311,-2.5751834442644395e-8,-0.051905736327171326,-0.04158998653292656,-0.03200238570570946,0.05755056440830231,-0.09602838009595871,0.02918902225792408,0.10117845237255096,0.041019558906555176,0.0003624602104537189,0.09661532193422318,-0.03198409080505371,-0.029945455491542816,-0.042888302356004715,0.061354056000709534,-0.012099614366889,0.047751422971487045,0.08389360457658768,-0.09803440421819687,-0.02332989126443863,0.03954792022705078,-0.023235274478793144,-0.013146220706403255,0.024740273132920265,0.019011491909623146,-0.025246743112802505,-0.03875545412302017,-0.07880186289548874,-0.09415031969547272,0.043687574565410614,0.11665800213813782,-0.022495200857520103,-0.007849478162825108,-0.05521693825721741,0.0005969350459054112,-0.0225342009216547,-0.012880411930382252,-0.020084964111447334,0.03250579535961151,0.07438748329877853,0.006560893729329109,-0.017061615362763405,0.09963299334049225,0.008857494220137596,0.018021056428551674,-0.033167604357004166,0.014191031455993652,0.012806646525859833,0.05480727553367615,-0.044844698160886765,-0.043567955493927,0.02297976054251194,0.05230839550495148,-0.016004202887415886,0.035887300968170166,-0.04207603260874748,-0.07102309167385101,0.004543342161923647,0.04347996413707733,-0.06460121273994446,0.027178402990102768,-0.017107773572206497,-0.011623191647231579,-0.012613920494914055,0.02148313820362091]},{"text":"There had also been a very strange custom, whose origin was unknown, of marching every Sunday morning past a boar's skull which was nailed to a post in the garden.","book":"Animal Farm","chapter":16,"embedding":[-0.015041260980069637,0.12967844307422638,0.022953545674681664,0.006185011472553015,0.028084157034754753,-0.033133432269096375,-0.06483688950538635,-0.06256759911775589,-0.02091357111930847,0.03635978698730469,-0.009304072707891464,0.00463007390499115,0.03138269856572151,0.005133191589266062,-0.046186964958906174,-0.09818481653928757,-0.061978381127119064,0.006114994641393423,0.009752021171152592,0.03302902728319168,-0.05170737951993942,0.0649813860654831,0.018944863229990005,0.06784046441316605,-0.02435418590903282,-0.017068494111299515,0.03059370443224907,-0.014042539522051811,0.0017436811467632651,-0.06445297598838806,-0.002981337020173669,0.02409823052585125,-0.018860146403312683,-0.0858180969953537,-0.05567985400557518,0.025282911956310272,0.01866813935339451,0.06225280463695526,0.007114327512681484,0.046475667506456375,-0.024203095585107803,-0.06476060301065445,0.03746509552001953,-0.027898471802473068,-0.03463178128004074,0.0727754533290863,-0.002852239180356264,0.027661092579364777,0.016134152188897133,0.0043143401853740215,0.020651740953326225,-0.06549723446369171,-0.06823688000440598,-0.06646623462438583,-0.01922658272087574,-0.06148692965507507,-0.0483812652528286,-0.013774133287370205,0.04615797847509384,-0.0219495240598917,0.010445698164403439,0.047471463680267334,0.018307391554117203,0.023079372942447662,-0.019549330696463585,-0.06590241938829422,-0.012319809757173061,-0.07238646596670151,0.032334595918655396,0.00831571500748396,0.04389078915119171,0.028481971472501755,0.0762522742152214,-0.0527612678706646,-0.09129201620817184,0.043262261897325516,-0.06783486157655716,0.03458837792277336,-0.04845080524682999,-0.10706494748592377,-0.006798441521823406,0.03335406631231308,0.0008834880427457392,0.02983972616493702,0.03900730982422829,0.07946718484163284,-0.03450622409582138,0.052128866314888,0.048674073070287704,-0.0077960737980902195,-0.003146618138998747,-0.06348102539777756,-0.07551483809947968,0.023319924250245094,0.05725790560245514,-0.022649165242910385,0.007522059604525566,0.10903843492269516,-0.017382832244038582,0.057940445840358734,0.03481442853808403,-0.0431058332324028,-0.04109786078333855,0.0046703205443918705,0.10548900812864304,-0.03862037509679794,-0.13312162458896637,-0.00009225313988281414,0.012355866841971874,-0.047889918088912964,-0.014397434890270233,-0.010576130822300911,0.012796442955732346,0.00919317826628685,-0.009463286027312279,0.04042030870914459,-0.032161176204681396,-0.023617954924702644,-0.05341481789946556,0.06484420597553253,0.06017080694437027,0.004586235620081425,-0.04905499517917633,-0.09498646855354309,0.028922326862812042,0.07041824609041214,-0.024162935093045235,-3.9992668803675866e-33,0.07177818566560745,-0.017303626984357834,0.005353852175176144,-0.05673837289214134,0.10941821336746216,-0.07111484557390213,-0.047825153917074203,0.002260786946862936,0.09040386974811554,-0.002522786147892475,0.040894825011491776,-0.01395708229392767,0.019879119470715523,-0.008611898869276047,-0.08515536040067673,-0.04378508776426315,0.0022955371532589197,-0.04345907270908356,0.027880866080522537,-0.07064871490001678,0.011073246598243713,0.0036495449021458626,-0.07002293318510056,-0.019375666975975037,-0.055722616612911224,0.06948419660329819,0.00232100416906178,0.03254755213856697,0.036208637058734894,0.0440162792801857,0.013230914250016212,-0.017031768336892128,0.018735282123088837,-0.046323854476213455,0.05762076750397682,0.019908150658011436,0.08183924853801727,-0.1573978066444397,-0.0810217410326004,-0.0012617520987987518,0.16090592741966248,-0.06258736550807953,-0.006788466591387987,-0.031799059361219406,-0.05771436542272568,0.0996660441160202,-0.03189375251531601,-0.007501944433897734,-0.0743066668510437,-0.04544560983777046,0.028581054881215096,0.0896398276090622,0.0950385183095932,-0.03944368287920952,0.05203504487872124,0.035273753106594086,-0.005565665662288666,-0.009620487689971924,-0.029880465939641,0.012278886511921883,0.021728796884417534,0.05406477302312851,0.042946018278598785,0.016815917566418648,-0.03400077670812607,-0.09322696179151535,-0.0270051509141922,0.007404368836432695,-0.014841031283140182,-0.03188706561923027,0.049259670078754425,0.014257088303565979,-0.06701721251010895,-0.10445854812860489,-0.03209606558084488,-0.012636376544833183,0.05848123878240585,-0.018464956432580948,0.031186988577246666,-0.07981801778078079,0.018278904259204865,0.004195097833871841,-0.06054334342479706,-0.018959257751703262,0.03279286250472069,0.03904552757740021,0.11287903785705566,-0.03300804644823074,-0.11113730818033218,-0.042868539690971375,-0.007532533723860979,0.029778851196169853,-0.06408295780420303,-0.08185466378927231,-0.031573809683322906,5.72408764925088e-34,-0.09069538861513138,0.007554749492555857,0.002708870219066739,0.08946575224399567,0.014074473641812801,-0.04075295478105545,-0.040670156478881836,-0.00807014387100935,-0.00820272695273161,-0.006391088478267193,-0.0713895857334137,0.016498632729053497,-0.014924735762178898,-0.008347702212631702,0.06066896766424179,-0.10000259429216385,0.02832203358411789,0.06629370152950287,0.024359112605452538,0.02879527397453785,-0.05127701535820961,-0.021927477791905403,-0.03862534835934639,-0.058291610330343246,0.0575668141245842,0.06286683678627014,0.006017948966473341,0.0516987107694149,-0.0983113944530487,-0.032070137560367584,-0.006187973544001579,0.012866299599409103,-0.02101992256939411,-0.045328740030527115,-0.04977567493915558,0.047039616852998734,0.01820485107600689,0.033293552696704865,0.02537224069237709,-0.030148793011903763,-0.026299893856048584,-0.06650339066982269,0.07716797292232513,0.07968813180923462,-0.0370841845870018,0.029448406770825386,-0.022665591910481453,0.12280428409576416,0.06007347255945206,0.05768663436174393,-0.02211940661072731,0.013445757329463959,0.025312893092632294,0.021794790402054787,-0.054720014333724976,0.008483147248625755,-0.1360490322113037,-0.053665559738874435,0.03133486583828926,0.06787481904029846,0.07759518921375275,0.017437776550650597,-0.12726877629756927,0.053328126668930054,0.038890670984983444,0.017181241884827614,-0.06111517921090126,0.03576391190290451,-0.030076267197728157,0.06247636675834656,0.0034641344100236893,-0.03520571440458298,-0.04717642068862915,0.02133178524672985,0.021840069442987442,0.022462550550699234,0.041856203228235245,-0.04480068385601044,-0.026954568922519684,0.03380041942000389,-0.03167228773236275,-0.09522034972906113,-0.019160093739628792,0.07864724844694138,0.05110512301325798,-0.07104314863681793,-0.058438681066036224,0.12677602469921112,-0.003326072357594967,0.021755622699856758,0.057507313787937164,0.047273918986320496,-0.024183403700590134,0.027662139385938644,0.007295860443264246,-2.929751374836087e-8,-0.016447270289063454,0.006133296061307192,0.008958385325968266,-0.00014091056073084474,0.058056771755218506,-0.046982958912849426,0.10696033388376236,-0.07958874106407166,0.03289586678147316,-0.004038072191178799,-0.1673533320426941,0.030132992193102837,0.025396082550287247,0.015427007339894772,0.015548762865364552,0.03244144842028618,-0.03958684206008911,-0.01318933255970478,-0.06533760577440262,-0.022796109318733215,0.031504787504673004,0.0018029494676738977,0.057646699249744415,-0.10173354297876358,-0.03767365217208862,0.05380171909928322,-0.03826134651899338,-0.03199206665158272,-0.010089651681482792,0.09615147858858109,0.013583124615252018,0.010426986031234264,0.038114313036203384,-0.06178821995854378,-0.008513129316270351,0.05645059049129486,0.011950063519179821,0.017443504184484482,0.07044894248247147,-0.11271063983440399,0.010298634879291058,-0.05010741204023361,0.07601634413003922,0.014085591770708561,-0.0023903190158307552,-0.009708263911306858,-0.013086175546050072,0.05382866412401199,-0.03311019390821457,-0.04142921790480614,-0.004299052990972996,0.0928335189819336,0.05202115327119827,0.06773867458105087,0.01913420297205448,-0.029462948441505432,0.0388452410697937,-0.025135276839137077,0.05130511894822121,0.008337563835084438,-0.019764652475714684,-0.02967304177582264,0.02149454690515995,0.015556021593511105]},{"text":"He had only one criticism, he said, to make of Mr.","book":"Animal Farm","chapter":16,"embedding":[-0.014618894085288048,0.0510568842291832,0.011197032406926155,0.056998513638973236,-0.03052041120827198,0.03257184848189354,0.08660430461168289,0.018573161214590073,-0.01956840418279171,-0.02435893751680851,-0.0889798104763031,-0.04743213206529617,0.04161396622657776,-0.041584812104701996,-0.014163433574140072,0.06520058214664459,0.0007080444484017789,-0.0065204487182199955,0.056880395859479904,-0.029637468978762627,0.03232984617352486,0.05089840292930603,-0.02890584245324135,-0.05992896854877472,-0.004986409563571215,-0.04340854287147522,-0.050495173782110214,0.07104698568582535,0.03485604375600815,-0.037615854293107986,-0.010313068516552448,0.012621428817510605,0.04769853875041008,0.040630508214235306,-0.025612372905015945,0.006369806360453367,0.04261642321944237,0.12764188647270203,-0.04513796418905258,0.009490626864135265,-0.007827362045645714,0.07335890084505081,0.030731970444321632,-0.015178489498794079,-0.0170606579631567,-0.07862832397222519,-0.01562351081520319,-0.0648832619190216,0.07832641154527664,-0.018581558018922806,-0.005558396223932505,0.02340119332075119,-0.03405022248625755,-0.07702790200710297,0.005494766868650913,-0.028598783537745476,0.004237412475049496,0.1352877914905548,-0.03639731928706169,-0.012839333154261112,-0.07948485761880875,-0.039772339165210724,-0.0004673787916544825,0.05495626851916313,0.1913241744041443,-0.024838827550411224,-0.10395121574401855,-0.016044005751609802,-0.08625894784927368,0.16530781984329224,-0.03752756491303444,-0.05979480221867561,0.0665346086025238,-0.0334344208240509,-0.014429337345063686,-0.05907223001122475,0.014260322786867619,0.00021957133139949292,0.06278432160615921,-0.005056105554103851,-0.044174909591674805,0.006036926992237568,-0.06378199905157089,-0.035980965942144394,-0.02003766968846321,-0.043069396167993546,0.10807446390390396,-0.09102881699800491,-0.05286680534482002,0.039404094219207764,0.014365830458700657,-0.01860596239566803,0.04073817655444145,0.08072724938392639,-0.007806089706718922,0.031439159065485,-0.10142046213150024,0.0297072920948267,-0.06015107035636902,0.039726920425891876,0.04655531421303749,0.08172398060560226,0.04830523207783699,0.045056842267513275,0.030628547072410583,-0.03184853121638298,0.025853993371129036,-0.010015534237027168,-0.06593002378940582,-0.019804082810878754,-0.04096217453479767,0.0022110911086201668,0.011274703778326511,-0.06492110341787338,0.035548049956560135,-0.014864126220345497,-0.00023731520923320204,-0.010843377560377121,-0.07890769839286804,0.001278052804991603,-0.01483978983014822,-0.005090645514428616,-0.028618525713682175,0.07448339462280273,-0.015579725615680218,-0.034357260912656784,0.07209613174200058,-4.22404931823564e-33,0.01226248312741518,0.004450359847396612,0.017922071740031242,0.0118492990732193,-0.014700861647725105,0.08594047278165817,-0.004218968562781811,-0.011184683069586754,0.030547138303518295,-0.05670914053916931,0.06902214884757996,-0.08077721297740936,0.01442312728613615,-0.03821443021297455,-0.09441377222537994,0.07708104699850082,0.06514997780323029,-0.028871916234493256,0.05196252837777138,-0.032873108983039856,-0.029875313863158226,0.10090076178312302,-0.0071946438401937485,-0.06260910630226135,-0.0395716167986393,-0.03678552806377411,0.13651622831821442,-0.008268852718174458,-0.05463453382253647,0.016773751005530357,-0.10385693609714508,0.09443461894989014,-0.003186033573001623,0.10507650673389435,0.02968030795454979,-0.029308725148439407,-0.01768772304058075,-0.03169752657413483,-0.004204402677714825,0.03245464712381363,0.016940951347351074,0.025623051449656487,0.03753376007080078,-0.015161040239036083,-0.04680437222123146,0.05207977816462517,-0.06586633622646332,0.04823855683207512,-0.015903331339359283,0.03021860308945179,0.015998372808098793,0.0019509932026267052,0.04510751739144325,0.0335460864007473,0.007735162507742643,-0.04916876181960106,-0.03356749564409256,-0.015776706859469414,0.12923462688922882,-0.01213348563760519,-0.016621345654129982,0.0701383724808693,-0.02901696041226387,-0.02236362360417843,-0.038172315806150436,-0.05251171439886093,-0.05358210578560829,-0.005902549251914024,-0.044355377554893494,0.014662970788776875,-0.0669136494398117,0.029143137857317924,-0.042294230312108994,-0.06496433913707733,-0.06308507919311523,-0.008024661801755428,-0.01468748040497303,0.029930664226412773,-0.03332799673080444,0.028076156973838806,-0.10671687126159668,-0.0012574183056131005,-0.03383348137140274,-0.04728294163942337,-0.05094273388385773,0.01647810824215412,0.07387072592973709,-0.02072065882384777,0.060934122651815414,0.08512130379676819,-0.08860644698143005,-0.027724312618374825,0.02492097020149231,0.03214442357420921,-0.04561714828014374,1.033221330806389e-33,-0.14670369029045105,0.003457743674516678,-0.026371361687779427,0.0396987721323967,-0.0445454940199852,-0.058661360293626785,-0.08656638860702515,-0.006949072703719139,0.06911230832338333,0.01640962064266205,0.008271163329482079,-0.05607158690690994,0.01148553192615509,-0.043933700770139694,-0.0046086241491138935,-0.010785901919007301,-0.008962309919297695,-0.03510338440537453,-0.004540661349892616,0.04289083182811737,0.07723073661327362,0.07807784527540207,0.03666893020272255,-0.003105446696281433,-0.02075601927936077,-0.003428094554692507,0.12579479813575745,-0.02728996053338051,-0.046222198754549026,0.036533989012241364,0.06509824097156525,-0.0014975996455177665,-0.10820268839597702,0.006054256577044725,-0.011957375332713127,-0.01090164389461279,-0.0103438850492239,0.026902256533503532,0.05414900928735733,0.07701560854911804,0.01920669712126255,-0.04400334879755974,0.010821657255291939,-0.07112417370080948,0.03525873273611069,-0.06787580996751785,-0.02582746557891369,-0.04440641403198242,-0.013917305506765842,-0.0037984680384397507,-0.07200810313224792,0.011251270771026611,-0.03532150760293007,-0.016344215720891953,-0.04918805882334709,-0.13495835661888123,0.05152958631515503,0.03230125457048416,0.10743727535009384,-0.001601862022653222,-0.044743701815605164,-0.025649946182966232,-0.03074662759900093,-0.041193537414073944,0.02252650260925293,0.09419459849596024,0.07610328495502472,-0.01306846085935831,0.02934959903359413,0.05436183884739876,0.016122253611683846,0.04959550127387047,0.0666654109954834,0.018786558881402016,0.06081666052341461,0.08432735502719879,-0.059318192303180695,-0.05373969301581383,-0.004940067417919636,-0.07921119779348373,-0.0314403660595417,-0.08095230162143707,0.012583781965076923,0.027429036796092987,0.0003558018943294883,-0.08263833820819855,0.021665608510375023,0.026645272970199585,-0.012200865894556046,0.06567318737506866,0.09803985059261322,-0.029402373358607292,0.09321777522563934,-0.05284566059708595,0.03971835598349571,-2.3143755356613838e-8,-0.026230154559016228,-0.10196956247091293,0.04465189203619957,0.007208932191133499,0.0216007512062788,0.009230098687112331,-0.02721855603158474,-0.049734584987163544,0.04856915771961212,0.11716514825820923,0.015884853899478912,0.07192599028348923,-0.008685395121574402,-0.06449292600154877,0.046156492084264755,0.0033156939316540956,0.01793326996266842,-0.03323821350932121,-0.015081278048455715,-0.0077607231214642525,-0.004739268217235804,-0.03186902031302452,-0.015146245248615742,0.016426492482423782,0.042087290436029434,0.007532943971455097,0.058914877474308014,-0.08547830581665039,-0.08107341080904007,0.014337653294205666,0.05571654438972473,0.06325054913759232,-0.041326262056827545,-0.05256948992609978,0.008659240789711475,0.022410398349165916,-0.016964351758360863,0.054552916437387466,0.06755877286195755,-0.017301028594374657,-0.05668981000781059,0.019411005079746246,0.04830761253833771,-0.014358405023813248,-0.01926320791244507,0.03636305406689644,-0.06032809987664223,-0.015382173471152782,-0.0829974114894867,-0.033928632736206055,0.03539950028061867,0.0031191809102892876,0.04703235998749733,0.005286555737257004,0.03241240233182907,-0.009224227629601955,0.05170530825853348,-0.030958591029047966,-0.08210716396570206,-0.031517598778009415,0.04177114740014076,0.03575105965137482,0.022831829264760017,-0.04787404090166092]},{"text":"Gentlemen, here is my toast: To the prosperity of The Manor Farm!\" There was the same hearty cheering as before, and the mugs were emptied to the dregs.","book":"Animal Farm","chapter":16,"embedding":[-0.005831757560372353,0.08374670147895813,0.013820718973875046,0.02264447510242462,0.019214089959859848,-0.03306257352232933,0.07979117333889008,-0.05318133533000946,-0.02753903716802597,-0.057724252343177795,-0.010318373329937458,0.02143784798681736,0.009487069211900234,-0.00843000691384077,-0.04032392427325249,-0.054759230464696884,-0.041922036558389664,-0.0322408452630043,0.000027115840566693805,0.02021922916173935,0.02766379527747631,-0.013459838926792145,0.011228427290916443,0.050433799624443054,0.006191595457494259,0.05129411071538925,0.003995578736066818,0.038291964679956436,-0.03978255018591881,-0.009337509982287884,0.024723511189222336,-0.00865287147462368,0.079056516289711,-0.00489059230312705,0.026401594281196594,0.03220532834529877,0.08822155743837357,-0.024932337924838066,0.08329574018716812,-0.0251284409314394,0.02417835034430027,-0.06292101740837097,0.03477249667048454,0.015450152568519115,0.012828078120946884,0.001286673592403531,0.02139008231461048,0.029450539499521255,0.07631953060626984,-0.022033080458641052,-0.00243546674028039,0.04237193614244461,-0.003708907403051853,-0.026831867173314095,0.00468544801697135,0.06266626715660095,0.07494781911373138,-0.06340018659830093,0.03719533234834671,-0.04954199865460396,-0.055288877338171005,0.013906239531934261,0.011097709648311138,0.061406753957271576,-0.004751219414174557,-0.1398448944091797,-0.040642619132995605,0.04843835532665253,-0.08204896003007889,0.060774289071559906,-0.04967307671904564,-0.022513598203659058,0.09826932102441788,-0.038790903985500336,-0.07822433114051819,-0.0047145108692348,-0.0038617155514657497,-0.09682051092386246,-0.021712977439165115,0.00299946591258049,-0.031219150871038437,-0.07697499543428421,-0.01912027597427368,0.028712017461657524,-0.10676214098930359,-0.034069716930389404,0.016096826642751694,-0.0668543353676796,0.07748878002166748,-0.09421002119779587,-0.05633649230003357,-0.03412065654993057,-0.0375828817486763,0.11197298020124435,-0.01149970106780529,-0.028875231742858887,-0.040673449635505676,-0.014169535599648952,-0.04186530038714409,0.07504808157682419,0.015087660402059555,0.045478373765945435,-0.07406126707792282,-0.0789613425731659,0.026528846472501755,-0.027042951434850693,-0.11574733257293701,0.016027964651584625,0.020168038085103035,-0.07293464988470078,0.013652993366122246,-0.0055214837193489075,0.010611116886138916,0.05673373490571976,0.015379504300653934,-0.0888385996222496,-0.01894126832485199,-0.11636865139007568,-0.10064037144184113,0.08163286745548248,0.09362521767616272,0.02527085691690445,-0.09062526375055313,-0.023721804842352867,0.01361720822751522,0.0217509176582098,0.08306489884853363,-4.4917766055010625e-33,-0.05699700862169266,0.060621313750743866,0.015496364794671535,0.06829161942005157,0.13278687000274658,0.01209383923560381,-0.04720594361424446,0.014767174609005451,-0.014952322468161583,-0.049898695200681686,-0.008791795000433922,0.015781883150339127,-0.05582905188202858,-0.08235758543014526,-0.0983019769191742,-0.036174774169921875,-0.03334430232644081,-0.033730704337358475,0.059046026319265366,0.019080696627497673,-0.06289339065551758,0.04249215126037598,-0.01885191723704338,0.023266002535820007,-0.042038217186927795,-0.0024266026448458433,0.0764390081167221,-0.03934217989444733,0.07564171403646469,0.04431331902742386,0.04462455213069916,-0.021186018362641335,0.028247613459825516,-0.032973773777484894,-0.014072300866246223,0.042125046253204346,-0.08405371755361557,-0.08359754830598831,-0.030132059007883072,0.04645319655537605,-0.03442228212952614,-0.06076624616980553,0.05510447174310684,0.0104046780616045,-0.06512784212827682,0.06964056938886642,0.007514682598412037,0.13910800218582153,-0.02020769752562046,-0.012792360037565231,-0.01684615947306156,-0.02851966768503189,0.06354605406522751,0.022579358890652657,0.01848517172038555,-0.04809165745973587,0.014972242526710033,-0.010307403281331062,0.04139406979084015,-0.0848022997379303,0.021627245470881462,-0.03452767804265022,-0.01203892007470131,-0.07098915427923203,0.007330612745136023,-0.006575283128768206,0.04341986030340195,0.04271871969103813,-0.028731778264045715,0.07605092227458954,0.03665202856063843,0.0004106322303414345,-0.12079478055238724,0.058079563081264496,-0.016339968889951706,0.07665841281414032,0.005816363263875246,0.07067278772592545,0.044998325407505035,-0.039563797414302826,0.03170807659626007,-0.05204588919878006,-0.15710662305355072,0.0384528785943985,0.04849258437752724,0.00298068905249238,-0.016426661983132362,-0.09738039970397949,-0.006467278581112623,0.05318991839885712,-0.07428126037120819,-0.01611550897359848,0.06353862583637238,-0.06162489578127861,-0.03234145790338516,1.3258247417645997e-33,0.05231132358312607,0.013601723127067089,-0.08844710141420364,0.09552154690027237,0.05023493245244026,-0.022916270419955254,-0.007696456275880337,0.010315654799342155,-0.02993590384721756,-0.012272483669221401,-0.03421058505773544,0.025136709213256836,-0.007569253910332918,0.01963883638381958,-0.06420355290174484,0.0524088554084301,0.08984339237213135,0.03496905043721199,0.0034987996332347393,0.02430601790547371,-0.007839657366275787,0.06319652497768402,0.03382414951920509,0.04044713079929352,-0.05378309264779091,0.06655286252498627,0.032292865216732025,-0.006819922477006912,-0.058407824486494064,-0.022633899003267288,0.030594727024435997,-0.05000274255871773,-0.06781796365976334,-0.018475236371159554,0.019365347921848297,0.09340871870517731,0.04939526319503784,-0.03958588093519211,-0.04582986235618591,0.011562771163880825,-0.0047692409716546535,-0.0170091912150383,0.018562618643045425,0.08477689325809479,-0.008734128437936306,-0.05300315096974373,-0.09200792759656906,0.005773341283202171,0.027234191074967384,0.09568595141172409,-0.08846674114465714,-0.0013591088354587555,0.021324822679162025,0.02195630595088005,-0.08999068289995193,-0.005460686981678009,0.03414527699351311,-0.04609525948762894,0.009677472524344921,-0.008133109658956528,-0.12274958938360214,0.05366358533501625,-0.06115609407424927,0.09688757359981537,0.0011283563217148185,-0.07803623378276825,-0.014459656551480293,0.016612695530056953,-0.02437685802578926,0.03307560086250305,0.038282569497823715,-0.024720987305045128,-0.03414744883775711,0.032724060118198395,-0.049342475831508636,0.07580865174531937,0.030110986903309822,-0.02851218730211258,-0.02542548067867756,-0.060947831720113754,0.01706487126648426,-0.04257260262966156,0.05394443869590759,0.017823178321123123,-0.006610489916056395,-0.03639465570449829,0.05382853001356125,0.0026654608082026243,-0.004934579599648714,0.04617582634091377,0.02006923034787178,-0.00352269085124135,0.09301690757274628,-0.04170644283294678,0.08305422216653824,-3.169775197875424e-8,0.02843940444290638,0.016702046617865562,0.0027245155069977045,-0.0026380124036222696,0.03880530968308449,-0.08952896296977997,-0.02494906261563301,0.004117912147194147,-0.00015287293354049325,0.048771582543849945,-0.036103323101997375,0.06567386537790298,0.04324297979474068,0.011159961111843586,0.05376582592725754,0.102501779794693,0.03697677329182625,-0.10598929971456528,-0.04452181234955788,-0.00727831432595849,0.10097245872020721,0.0016437586164101958,0.04022277519106865,0.029975252225995064,-0.0020620834548026323,0.0504290908575058,-0.03364448621869087,-0.08092743903398514,-0.002195943845435977,0.02452947199344635,0.10203608870506287,0.045662540942430496,-0.06737969815731049,-0.018114620819687843,-0.03625745698809624,0.03508640453219414,0.0017390745924785733,-0.026198871433734894,0.09364353120326996,-0.0817032903432846,-0.08452821522951126,-0.08327384293079376,-0.01001844834536314,-0.025205235928297043,-0.03436991572380066,0.0092365937307477,-0.030415914952754974,0.06076660752296448,-0.006936139892786741,0.021859094500541687,-0.0215594582259655,-0.021908581256866455,0.019183959811925888,0.04304058849811554,0.011024867184460163,-0.0941939577460289,0.012580021284520626,-0.008081423118710518,0.047742098569869995,0.01146343257278204,0.07003587484359741,0.06996360421180725,-0.02319018542766571,-0.07429099828004837]},{"text":"But what was it that seemed to be melting and changing?","book":"Animal Farm","chapter":16,"embedding":[-0.058273714035749435,0.046774864196777344,0.03807450458407402,0.07473009824752808,0.06932705640792847,-0.05423339456319809,0.007595509756356478,0.04257122799754143,0.014070147648453712,-0.027040474116802216,-0.007889337837696075,-0.04867742210626602,-0.014695348218083382,-0.011842206120491028,0.013800052925944328,-0.07420200109481812,-0.03143132105469704,-0.0507747121155262,-0.0343562588095665,0.0009863486047834158,0.06756795197725296,0.013089301064610481,-0.07331562042236328,0.032348085194826126,0.031057411804795265,0.11342086642980576,0.04889216646552086,0.05930870398879051,0.024962877854704857,0.027764935046434402,-0.01660165935754776,-0.0008794585010036826,-0.0642654225230217,0.03334799408912659,-0.014945493079721928,-0.04034409672021866,0.0016239085234701633,-0.009033587761223316,-0.04020768776535988,-0.03902747854590416,-0.018070360645651817,-0.059614524245262146,0.05084114894270897,-0.03839461877942085,-0.010244465433061123,0.013470370322465897,0.04648556560277939,-0.009752358309924603,0.02123572677373886,0.008570695295929909,0.03806065768003464,-0.022640286013484,-0.127232626080513,-0.03562374785542488,-0.03127139434218407,-0.038143131881952286,0.06999580562114716,-0.0034261292312294245,0.10908518731594086,0.006349463015794754,-0.03457406535744667,0.060838643461465836,-0.024284865707159042,0.05213160440325737,0.03056502714753151,-0.04719452187418938,0.014805871061980724,-0.02983984537422657,0.024473873898386955,-0.01865536905825138,0.07399448752403259,0.08702396601438522,0.04425559937953949,-0.0972975343465805,-0.008826027624309063,-0.13461336493492126,0.06272276490926743,-0.009167659096419811,0.033284422010183334,0.06473509222269058,-0.0370744988322258,0.026230469346046448,-0.06771592795848846,0.031888384371995926,-0.03393178805708885,0.017735041677951813,0.014120277017354965,-0.040462300181388855,-0.055468518286943436,-0.03573356196284294,-0.004860220476984978,0.06348612159490585,-0.06591187417507172,0.01783130317926407,0.01476284395903349,0.021811559796333313,-0.0050562238320708275,0.03299718722701073,0.1317940503358841,0.017217308282852173,-0.00948608759790659,0.011876021511852741,-0.030093355104327202,-0.03564903885126114,0.018281010910868645,-0.031627804040908813,-0.005616706795990467,0.001116677070967853,-0.021470317617058754,0.07245626300573349,-0.010151746682822704,-0.043868571519851685,-0.050522033125162125,-0.016977766528725624,0.014292766340076923,-0.04197979345917702,-0.01060487050563097,0.022890331223607063,-0.14771762490272522,0.13898053765296936,0.009500964544713497,0.040858544409275055,-0.028344308957457542,0.06109406426548958,-0.07779718935489655,0.07164441794157028,0.015500348061323166,-6.494526942424458e-33,0.04726667329668999,-0.011225344613194466,0.08243909478187561,0.04795307293534279,0.036639098078012466,0.005639463663101196,-0.04867858812212944,0.014323875308036804,0.03319229185581207,-0.00762978894636035,0.07064136862754822,0.04720745235681534,-0.09134630858898163,0.014413012191653252,-0.037662867456674576,-0.10562258213758469,-0.057433851063251495,0.016880463808774948,0.029813088476657867,-0.011342884972691536,-0.1421896070241928,0.09459226578474045,0.03334454074501991,0.002299957675859332,-0.054820943623781204,0.11485310643911362,-0.01575733907520771,-0.02476675622165203,0.0022331371437758207,-0.019477801397442818,0.10724525153636932,0.005457715131342411,-0.05954892188310623,0.022761143743991852,0.0281375665217638,-0.027023112401366234,-0.015918586403131485,-0.09290958940982819,-0.018104180693626404,-0.007436865940690041,0.0229579359292984,-0.0604054257273674,0.043252717703580856,0.01871832273900509,0.012105286121368408,0.07321386784315109,-0.04584559053182602,0.06938668340444565,-0.10446212440729141,0.0228316318243742,-0.009348919615149498,0.04757740721106529,0.05472216382622719,0.023153241723775864,-0.001973699312657118,0.0373154953122139,0.09173893183469772,0.006466534920036793,-0.018915027379989624,-0.03377395495772362,0.04946408420801163,0.07894591987133026,0.056430183351039886,0.059588924050331116,0.0003331516054458916,0.040246859192848206,-0.0111380098387599,-0.009229408577084541,-0.041750676929950714,-0.009033402428030968,-0.057833921164274216,-0.028084849938750267,0.053492821753025055,0.049598656594753265,-0.06260466575622559,0.008241214789450169,-0.048643775284290314,-0.02928823046386242,-0.052825380116701126,-0.02436935529112816,-0.06669096648693085,-0.026413986459374428,0.007738247513771057,-0.048098932951688766,-0.09305885434150696,-0.0373387411236763,0.005083670374006033,0.07568402588367462,0.005317308008670807,0.021507076919078827,-0.002337200567126274,-0.10459060966968536,0.04494106397032738,-0.04327242076396942,-0.03005659580230713,2.5572659196948086e-33,-0.07840646803379059,-0.039016660302877426,-0.03620130568742752,0.11469843238592148,0.05724406987428665,-0.07553515583276749,-0.001168709248304367,0.03621407970786095,0.016751963645219803,-0.01665531098842621,0.14678946137428284,-0.10344309359788895,0.05385424196720123,-0.03867815434932709,-0.024039054289460182,0.1007474735379219,0.020850319415330887,0.07790622860193253,0.04478152096271515,0.06911075115203857,-0.0567699559032917,0.03415530547499657,-0.016410216689109802,0.055814601480960846,-0.0019437979208305478,0.05536093935370445,0.06798186898231506,-0.06517252326011658,-0.0004862133937422186,-0.04554445669054985,-0.005335475318133831,-0.004807513672858477,-0.014519771561026573,0.02077786810696125,-0.08382537961006165,0.05042577534914017,0.08091417700052261,-0.06976776570081711,-0.03573150560259819,-0.05407744646072388,-0.010516274720430374,-0.020480139181017876,0.055106449872255325,0.19763341546058655,-0.010165532119572163,0.008791095577180386,0.027331635355949402,0.02113264799118042,0.06091054528951645,0.0686814934015274,0.02340293861925602,-0.07262765616178513,-0.014583684504032135,-0.06111357361078262,-0.02358684316277504,-0.007200184278190136,-0.036641817539930344,0.023252205923199654,-0.09910158812999725,-0.020094292238354683,-0.00022373949468601495,-0.028422780334949493,0.003108754986897111,-0.004657851532101631,-0.00852260086685419,-0.013483292423188686,-0.06278717517852783,-0.04470605403184891,-0.028328057378530502,0.0029055250342935324,0.10630998015403748,-0.025347575545310974,-0.04675262048840523,-0.05926157534122467,0.0601324662566185,-0.0850897878408432,-0.0505729615688324,-0.028048865497112274,-0.015618222765624523,-0.021584291011095047,-0.0603620782494545,-0.018361102789640427,-0.02050809934735298,0.04869377985596657,0.008321160450577736,-0.02687450870871544,-0.02654680609703064,0.001622628653421998,-0.014837313443422318,0.02371438778936863,-0.034618254750967026,-0.027762051671743393,-0.0025186112616211176,0.0052408622577786446,-0.02546306885778904,-1.756301060140686e-8,0.034487128257751465,0.04842602089047432,-0.04840520769357681,-0.004600279498845339,0.06483212858438492,0.0038593332283198833,0.07588077336549759,0.017001140862703323,-0.0015517189167439938,0.01113945059478283,-0.0840146467089653,0.11847943067550659,0.11011875420808792,0.00763165857642889,-0.006931122858077288,-0.009429975412786007,-0.051995571702718735,-0.13900290429592133,0.007772731129080057,-0.029392099007964134,0.03756345808506012,0.02777186594903469,0.027103211730718613,-0.057865917682647705,-0.034150782972574234,0.028712881729006767,0.0015822651330381632,0.07509037107229233,-0.025167953222990036,-0.013579343445599079,-0.04693342000246048,-0.06314238160848618,-0.03845279663801193,-0.02329803816974163,-0.0031711794435977936,0.04233691096305847,-0.023609735071659088,-0.008938201703131199,0.032322872430086136,-0.07830728590488434,-0.038993190973997116,0.07079976797103882,-0.07655692100524902,0.014794477261602879,-0.07038764655590057,-0.022765759378671646,-0.07682535797357559,0.016723819077014923,0.012750986032187939,0.045914728194475174,0.05065183714032173,0.09163370728492737,-0.022253533825278282,0.0018296269699931145,0.04702424257993698,-0.0619511678814888,-0.0012660755310207605,0.03187970444560051,0.00003671386730275117,0.050057847052812576,0.030614998191595078,-0.09696784615516663,-0.01617797650396824,0.06917527318000793]},{"text":"Yes, a violent quarrel was in progress.","book":"Animal Farm","chapter":17,"embedding":[0.03992805257439613,0.04023169353604317,-0.0009694399195723236,0.04540812596678734,0.0034119021147489548,0.03822164982557297,-0.06925670802593231,-0.040220435708761215,-0.04032070189714432,0.07388096302747726,0.07375574856996536,0.1280081868171692,0.019768502563238144,0.02319813147187233,0.027767358347773552,0.014406069181859493,-0.10392410308122635,-0.03313608095049858,-0.052266720682382584,0.037172891199588776,-0.11355498433113098,0.0837906077504158,0.01176447793841362,-0.013705920428037643,-0.004648023284971714,0.03698340803384781,0.018114382401108742,0.021940043196082115,0.03791367635130882,0.004692733287811279,-0.017832396551966667,-0.031861115247011185,0.026190320029854774,0.015475217252969742,0.008977851830422878,-0.03454316034913063,0.11834288388490677,0.04496944695711136,0.008277791552245617,-0.048460494726896286,0.01894247718155384,0.008813607506453991,0.03601500391960144,-0.051605191081762314,-0.006437961012125015,0.0151752894744277,-0.016346190124750137,-0.008784778416156769,-0.07503063231706619,-0.07110495865345001,-0.04867975413799286,-0.01664908230304718,0.030649881809949875,-0.03909120336174965,0.05056881159543991,-0.05118131265044212,0.1170225739479065,0.07837430387735367,0.04155902564525604,0.04254881665110588,-0.04979117587208748,0.06551086157560349,0.005872233305126429,0.02930023893713951,0.03159945085644722,-0.013144463300704956,0.04827870801091194,-0.04410352557897568,-0.013442148454487324,0.13386578857898712,0.06737954914569855,0.023180212825536728,0.06099846586585045,-0.062089335173368454,-0.029824642464518547,0.030467161908745766,-0.01880240999162197,0.11592432111501694,0.05995618924498558,-0.09440593421459198,0.0007655037916265428,-0.023542728275060654,-0.05600450560450554,0.010169184766709805,0.015438465401530266,-0.10050947219133377,0.026932047680020332,-0.0009482195600867271,0.023541688919067383,-0.027954574674367905,0.03756018728017807,0.05261823534965515,0.12667791545391083,0.009863881394267082,0.008468730375170708,-0.02268943004310131,0.0063918475061655045,0.010501422919332981,0.03214209899306297,0.025839898735284805,-0.033133964985609055,0.021003978326916695,-0.025999637320637703,-0.06445472687482834,0.04649410396814346,0.013591283932328224,-0.03864471986889839,-0.07902456074953079,-0.14109674096107483,0.020858705043792725,-0.09067976474761963,-0.029561424627900124,0.016989123076200485,-0.0046292198821902275,0.0645526722073555,0.04544619470834732,0.02945934794843197,-0.03550535440444946,-0.03436405584216118,0.054694682359695435,0.0492289774119854,-0.049400921911001205,-0.13193979859352112,0.04371816664934158,0.017120884731411934,-0.04660668596625328,-0.012984605506062508,-5.230063832292247e-33,0.05648055300116539,-0.10791013389825821,-0.08619783073663712,0.061336055397987366,0.014066655188798904,-0.012522628530859947,-0.010729048401117325,-0.000051441940740915015,0.027411002665758133,-0.08269297331571579,-0.011631753295660019,-0.01838817447423935,0.040525518357753754,-0.08797866851091385,0.03208763152360916,-0.019269976764917374,-0.05311072617769241,0.028768563643097878,-0.04795895516872406,-0.04866515100002289,0.03970807045698166,-0.02499968558549881,-0.03893960639834404,0.021589595824480057,-0.03360544145107269,0.013040700927376747,0.059208355844020844,-0.03992772474884987,0.01937512308359146,0.0003449273353908211,0.0017412202432751656,0.03333020582795143,-0.017984790727496147,0.04148564487695694,0.04136992618441582,0.02159764990210533,-0.010397914797067642,-0.056747354567050934,-0.03773825615644455,0.051485054194927216,0.011624130420386791,0.04373735189437866,-0.057356808334589005,-0.01562180183827877,-0.00540720671415329,0.0039509367197752,-0.11680542677640915,-0.027729470282793045,-0.06851977109909058,0.03338417038321495,0.027181336656212807,0.022524062544107437,0.0513073168694973,-0.0422535166144371,-0.003217249410226941,0.055893588811159134,-0.046706292778253555,0.0676429346203804,0.02348802424967289,0.05121028795838356,0.02184021845459938,-0.011902600526809692,-0.03983829542994499,0.006178068462759256,-0.04956668242812157,0.006998556666076183,-0.01910216361284256,0.07027000933885574,-0.023030363023281097,-0.03155750408768654,0.028370507061481476,0.06912258267402649,-0.03712041303515434,-0.03852223977446556,-0.04382853955030441,0.024975914508104324,-0.06517968326807022,-0.03951341658830643,-0.053919609636068344,-0.049850210547447205,-0.01122993417084217,-0.04575042799115181,0.01828034408390522,0.018855080008506775,0.020833248272538185,-0.035727135837078094,0.04799181967973709,-0.03724008426070213,-0.03717772290110588,0.020847460255026817,-0.06774946302175522,0.023747948929667473,0.02516060695052147,0.057980671525001526,-0.025394828990101814,2.659905127291818e-33,-0.04466268792748451,0.009256530553102493,-0.08401522785425186,0.10154009610414505,0.022175734862685204,0.0021729834843426943,-0.026504963636398315,-0.02097439393401146,-0.021851887926459312,0.007466575596481562,0.010414711199700832,-0.09510811418294907,-0.05030490458011627,0.04537692666053772,0.0656576082110405,-0.033882297575473785,0.038018904626369476,0.06662344187498093,0.031854964792728424,0.05742273107171059,-0.023826105520129204,-0.10450803488492966,0.010600995272397995,-0.09170200675725937,0.037964433431625366,0.04236802086234093,0.04237404838204384,-0.008270357735455036,-0.08232181519269943,0.030932938680052757,0.08029593527317047,-0.05622211843729019,-0.07935895025730133,0.013781522400677204,-0.00039515283424407244,-0.001299958094023168,0.10653205215930939,-0.04067293182015419,0.04534747079014778,-0.10778115689754486,-0.029033735394477844,0.010880687274038792,-0.02625812590122223,0.18287570774555206,0.008561708964407444,0.022410577163100243,0.01889316365122795,0.05340327322483063,0.042141757905483246,-0.05003749206662178,0.05083031207323074,0.04148959740996361,0.04751884564757347,-0.0031147075351327658,0.04321172088384628,0.004352516029030085,0.028719760477542877,-0.0358135849237442,-0.12930862605571747,-0.043554533272981644,-0.08154971152544022,-0.01458716206252575,-0.007842720486223698,-0.04283291846513748,0.10134594142436981,0.018998488783836365,-0.08279718458652496,-0.027832308784127235,0.05166560411453247,0.018999507650732994,0.014720854349434376,0.03481169417500496,-0.08090884238481522,0.061802808195352554,0.06974204629659653,0.0073864515870809555,-0.024823715910315514,-0.07519596070051193,-0.03898545727133751,0.06457337737083435,-0.01485086977481842,-0.00029292679391801357,-0.012665285728871822,-0.014693750068545341,-0.06866231560707092,0.017012204974889755,-0.02624473348259926,-0.006728173699229956,0.035735588520765305,0.013649490661919117,0.03399671986699104,-0.07177993655204773,0.0560053288936615,-0.016718370839953423,-0.013073212467133999,-1.9849370147539958e-8,-0.023300090804696083,0.029255714267492294,-0.028445785865187645,0.04132090508937836,0.032411761581897736,0.04575737193226814,0.03940939903259277,0.008369015529751778,0.01149963028728962,0.11988010257482529,-0.022853881120681763,0.012752491980791092,0.02367071807384491,0.016709601506590843,-0.0575016513466835,-0.010267210192978382,0.11950182914733887,-0.14508427679538727,-0.07248788326978683,0.0002145543840015307,0.025564659386873245,-0.00017067986482288688,-0.04075001925230026,0.051778219640254974,-0.017083894461393356,0.027936339378356934,-0.05708010494709015,-0.026003101840615273,-0.06928157061338425,-0.03286183997988701,0.015172897838056087,-0.027029050514101982,-0.07530773431062698,-0.09674283117055893,0.01164051704108715,0.027227038517594337,0.009365789592266083,-0.00696205860003829,0.027605734765529633,-0.142827108502388,-0.05751544609665871,0.04301442950963974,0.10963790118694305,0.024345379322767258,0.10775801539421082,0.025420663878321648,-0.09355241805315018,-0.0426567904651165,-0.00236589671112597,-0.09529310464859009,0.014988448470830917,0.017233433201909065,0.028985673561692238,0.00604636874049902,-0.012020216323435307,-0.03607488423585892,0.054891008883714676,-0.022465812042355537,-0.0421924851834774,-0.027951139956712723,0.0964171439409256,-0.03444608300924301,0.04142795503139496,0.060651347041130066]},{"text":"No question, now, what had happened to the faces of the pigs.","book":"Animal Farm","chapter":17,"embedding":[0.016105344519019127,0.09473451972007751,0.053281232714653015,0.026444917544722557,0.03896094858646393,-0.010818639770150185,-0.07481049001216888,-0.05903628468513489,-0.024239396676421165,0.010955444537103176,0.07655955851078033,-0.0015674909809604287,0.014371590688824654,0.026802869513630867,-0.01893204264342785,-0.06687150150537491,-0.017626799643039703,-0.055317752063274384,-0.028166471049189568,0.08029638975858688,-0.033701930195093155,0.013195822015404701,0.006679743528366089,-0.013338032178580761,-0.017892049625515938,-0.018939310684800148,0.03054696135222912,0.05302662402391434,-0.018359718844294548,-0.04794585332274437,-0.05575966089963913,-0.027131622657179832,-0.03256840631365776,-0.040737830102443695,0.003830669214949012,-0.03790780156850815,0.06995438784360886,0.09061317890882492,0.10718104988336563,-0.02733643911778927,-0.035760942846536636,-0.1202971413731575,-0.046065833419561386,-0.022862723097205162,0.001344264717772603,0.014613280072808266,0.031785815954208374,-0.010555065236985683,0.07106832414865494,-0.09912162274122238,0.02410166524350643,-0.04389506205916405,-0.02960781939327717,-0.03505074977874756,-0.005232920870184898,-0.0524013452231884,-0.06052824482321739,-0.05921601876616478,0.06304899603128433,-0.026614496484398842,-0.0032765332143753767,0.028899017721414566,0.04122822731733322,0.09233004599809647,-0.02629922144114971,-0.062863789498806,0.026435350999236107,-0.04384978488087654,0.018126150593161583,0.04918970540165901,0.017105039209127426,-0.01265595480799675,-0.025990059599280357,-0.13258050382137299,-0.04753440245985985,-0.006942316424101591,-0.03436852991580963,-0.024662688374519348,0.0565435029566288,0.012922621332108974,0.029200904071331024,-0.038939133286476135,-0.005433300975710154,0.03844626247882843,-0.006069573573768139,-0.01648053526878357,-0.04658914729952812,-0.033741723746061325,-0.08236385136842728,0.03668750077486038,-0.086837038397789,-0.03443782031536102,0.04015573486685753,0.06768181174993515,0.05616875737905502,-0.0802941769361496,-0.04605549946427345,0.07938370853662491,0.0007258568075485528,0.06950663775205612,-0.06650852411985397,-0.03212597221136093,-0.006905551999807358,-0.0035016771871596575,0.07868997752666473,-0.002894025994464755,-0.01031564176082611,0.018646536394953728,0.004482300486415625,0.0004962881212122738,-0.04367570951581001,-0.019445106387138367,-0.028271649032831192,0.05821846425533295,0.048497311770915985,0.058069709688425064,0.0031351237557828426,-0.07433589547872543,-0.053688228130340576,-0.024363452568650246,0.08172928541898727,0.05216674506664276,-0.02644066885113716,-0.02083074487745762,0.01747896522283554,-0.013443305157124996,0.0038889835122972727,-5.6770889055466085e-33,0.008587935008108616,0.00897796917706728,-0.03861979395151138,0.05199434608221054,0.09869971126317978,0.05361306667327881,-0.05976225435733795,0.03390475735068321,0.1046777293086052,0.04725860804319382,-0.03186962753534317,-0.001906094141304493,-0.0646713376045227,-0.07953888922929764,-0.11074618250131607,-0.014921925030648708,-0.008822082541882992,0.027379227802157402,-0.0028388691134750843,-0.03300771862268448,-0.07300620526075363,0.10519631206989288,0.016866035759449005,0.11996052414178848,-0.05008022487163544,0.05846065282821655,0.028061531484127045,-0.08992927521467209,-0.008896373212337494,0.01563369669020176,-0.03687248006463051,-0.018162213265895844,-0.0008872777689248323,0.0183134526014328,-0.034954983741045,-0.014630178920924664,0.034446604549884796,-0.08604783564805984,0.006275341380387545,-0.05359082296490669,0.0925920158624649,0.03060300089418888,0.034822430461645126,0.038928791880607605,-0.06757612526416779,0.05693496763706207,-0.024719243869185448,0.0681162104010582,-0.08292030543088913,-0.01653769612312317,0.07756343483924866,0.0708884671330452,-0.028058378025889397,0.06441815197467804,-0.005251877475529909,0.03802571818232536,-0.055095721036195755,0.022832777351140976,-0.0699988380074501,0.07719888538122177,0.09004580974578857,0.06276237964630127,0.004919725935906172,0.0278102345764637,0.016676807776093483,-0.05085914582014084,-0.016365857794880867,0.029271915555000305,-0.09734553098678589,0.005654437933117151,-0.03783760219812393,-0.013766972348093987,-0.04481231048703194,-0.07295920699834824,-0.10451166331768036,0.0024054239038378,0.05048193410038948,0.06341299414634705,-0.007712842896580696,-0.05797812342643738,0.13193127512931824,0.12345531582832336,-0.014708450995385647,-0.10746325552463531,-0.04308309033513069,0.0879816859960556,0.11098126322031021,-0.10552943497896194,0.07014500349760056,-0.06436756253242493,-0.02027473971247673,0.01366278063505888,0.04221421852707863,-0.07831389456987381,-0.010053732432425022,3.612405444698233e-33,-0.04459982365369797,-0.016867103055119514,-0.014761761762201786,0.004796034190803766,-0.008876031264662743,-0.004403462167829275,0.023926734924316406,0.051196467131376266,0.01527437288314104,-0.039486173540353775,-0.01982860080897808,-0.07269705086946487,-0.02112051658332348,0.01138235256075859,0.02364799939095974,0.042709823697805405,0.05534876137971878,-0.12430117279291153,-0.025260260328650475,-0.004356048535555601,-0.09081923961639404,0.019404331222176552,-0.036324042826890945,-0.033271025866270065,0.008924668654799461,0.08943232893943787,0.018270565196871758,0.0006652972078882158,-0.003884045174345374,0.007617616560310125,0.04324881732463837,-0.0672086849808693,0.004158758092671633,0.03795688971877098,0.0004523558309301734,0.05349346622824669,0.059154774993658066,0.008938155137002468,-0.08265124261379242,-0.061512187123298645,0.023626580834388733,-0.08833189308643341,-0.08743293583393097,0.10683615505695343,0.007783371489495039,0.07682272791862488,-0.033619023859500885,0.0026788602117449045,-0.02136555127799511,0.017139414325356483,0.007621445693075657,0.020659472793340683,-0.030739670619368553,-0.01474465150386095,-0.08211442828178406,0.07484900951385498,0.03397664800286293,-0.0011371700093150139,0.14093181490898132,0.0176590234041214,-0.03124348260462284,0.024904372170567513,-0.07276982069015503,-0.016384059563279152,0.04144202545285225,0.011923247948288918,-0.05010020360350609,-0.04663345217704773,0.05777127668261528,0.010527683421969414,0.06590160727500916,0.0289443489164114,-0.10433156043291092,-0.04545816406607628,0.06183762103319168,0.10440123826265335,-0.02848099172115326,0.036348599940538406,-0.07185995578765869,-0.0160084068775177,-0.006860918831080198,-0.04653488099575043,0.029201650992035866,0.08597350120544434,0.058664966374635696,0.0033519896678626537,0.04317569360136986,0.06475545465946198,0.03426700085401535,-0.03375944495201111,-0.0006314903730526567,-0.033840786665678024,0.036168452352285385,0.047645729035139084,0.022168364375829697,-2.0028691594120573e-8,-0.005327457096427679,-0.03551992028951645,-0.03779004141688347,0.005704050417989492,-0.02144419588148594,-0.001494351658038795,0.01578447036445141,0.0179402157664299,0.028692344203591347,0.07597275823354721,-0.1555255800485611,0.08207278698682785,0.0205464418977499,0.03162626549601555,-0.04339359328150749,0.08610381186008453,-0.0025747858453541994,-0.014952478930354118,-0.02068258263170719,0.026454582810401917,-0.07380154728889465,0.013443238101899624,-0.033663567155599594,0.01049302238970995,-0.017363237217068672,0.02456166408956051,-0.0914260745048523,0.03256220743060112,-0.06912186741828918,0.04407113790512085,-0.016064880415797234,-0.01668752171099186,-0.024420853704214096,-0.03769313916563988,0.017571628093719482,0.017219100147485733,-0.021099969744682312,0.0019260518020018935,0.058814190328121185,-0.08171137422323227,-0.01833760179579258,0.07549724727869034,0.04821676015853882,0.006115691736340523,0.025211505591869354,-0.04577895626425743,0.004271211102604866,0.06724884361028671,0.01085357740521431,-0.03911992162466049,-0.015863342210650444,0.07768413424491882,-0.007487941533327103,0.08147481083869934,0.005413427017629147,-0.10517419874668121,0.01903560385107994,0.018306631594896317,0.02360185794532299,0.027765434235334396,0.03845100477337837,-0.02654758095741272,-0.009219290688633919,0.05319102853536606]},{"text":"As soon as the light in the bedroom went out there was a stirring and a fluttering all through the farm buildings.","book":"Animal Farm","chapter":17,"embedding":[0.059095729142427444,0.012276550754904747,0.04572658613324165,0.10758387297391891,0.09329093992710114,-0.040550269186496735,-0.055819861590862274,-0.08139222115278244,0.01600642502307892,-0.03130054101347923,0.09376060217618942,0.03640901297330856,0.017880195751786232,-0.03263617679476738,0.01762736402451992,0.02708846516907215,-0.040204428136348724,-0.016958124935626984,-0.05889817699790001,0.02927776612341404,-0.012770462781190872,-0.0425274595618248,-0.018181419000029564,-0.0021011591888964176,0.08460041880607605,0.0408131368458271,-0.026217706501483917,0.038818467408418655,0.053493890911340714,-0.019180111587047577,0.036467600613832474,0.04976312071084976,-0.07384002208709717,0.023540383204817772,0.03943311423063278,0.035082727670669556,0.04688183218240738,0.004667202010750771,0.10476185381412506,-0.010571572929620743,0.04108525440096855,-0.024756524711847305,0.07137215882539749,-0.0010604566195979714,-0.020256662741303444,0.1196480542421341,0.028571106493473053,-0.06438722461462021,0.042683545500040054,-0.07493307441473007,-0.0105772465467453,-0.021779663860797882,-0.02615501545369625,0.03314138948917389,-0.011668295599520206,0.007055097725242376,0.04044251888990402,-0.03719228133559227,0.06765166670084,-0.052770212292671204,-0.01595308445394039,0.03758598491549492,0.037257514894008636,0.01499092672020197,-0.011092426255345345,-0.05225462466478348,-0.06038277596235275,0.035891883075237274,0.11328841000795364,-0.022516177967190742,0.09215547889471054,-0.013393201865255833,0.0033773595932871103,-0.04453987628221512,-0.03062499314546585,0.017299611121416092,-0.030687596648931503,-0.038878750056028366,0.010441054590046406,0.006693151779472828,0.033551279455423355,-0.051554180681705475,-0.05849999561905861,0.02605331502854824,-0.009572959505021572,0.008452205918729305,0.06471937149763107,0.018876222893595695,0.020719699561595917,0.05284540355205536,-0.0433710440993309,-0.06338313966989517,-0.11329565942287445,0.057277072221040726,0.025377903133630753,-0.031122980639338493,-0.04345092177391052,-0.047659020870923996,-0.01949944533407688,0.0016620546812191606,-0.07007935643196106,-0.01889258809387684,0.04935251176357269,0.019758542999625206,-0.008305146358907223,-0.030418099835515022,-0.02110372483730316,0.02346009388566017,-0.022301213815808296,-0.02784944511950016,-0.04972417280077934,0.0032240694854408503,0.00542555982246995,0.06120504066348076,0.024562573060393333,-0.03620322793722153,0.05428527668118477,-0.03630997613072395,-0.10945825278759003,0.09383402019739151,0.1229272410273552,-0.019546911120414734,-0.05633154883980751,0.001384955714456737,0.012472330592572689,-0.02182880975306034,0.024365326389670372,-3.596507618287331e-33,0.013853867538273335,0.000678299693390727,-0.07855019718408585,0.02780458889901638,0.172280952334404,-0.0328630693256855,-0.023614633828401566,0.00328376074321568,0.03986328840255737,0.05050508305430412,-0.035927243530750275,-0.020892061293125153,-0.02088577300310135,-0.004128823522478342,-0.04977085813879967,-0.10655710101127625,0.01630345731973648,-0.023461367934942245,0.012596676126122475,0.04484258219599724,-0.06202903762459755,-0.02877659723162651,-0.0801912248134613,-0.03631969541311264,-0.04693593457341194,0.021990278735756874,0.002498059766367078,0.038198329508304596,-0.007410221267491579,0.02172498218715191,0.0711827427148819,-0.005447958596050739,-0.002519703935831785,0.017385507002472878,-0.002444548299536109,0.04019943252205849,0.031254276633262634,-0.08782323449850082,-0.05077821761369705,0.03870952129364014,-0.0746360495686531,-0.0061232419684529305,0.015615222044289112,0.05621064081788063,-0.01521290559321642,0.07522021234035492,-0.0382552370429039,0.06366563588380814,0.01344054564833641,-0.006322069559246302,0.07525016367435455,0.026638412848114967,-0.026828475296497345,0.04064393416047096,0.04697687178850174,0.016508758068084717,0.020393824204802513,-0.029670551419258118,0.003050192492082715,0.07324758917093277,0.022483009845018387,-0.016876228153705597,-0.0028586857952177525,-0.035449426621198654,0.009296069853007793,-0.12908819317817688,-0.01939515396952629,0.041483696550130844,-0.08247353881597519,0.06892102211713791,-0.033262740820646286,-0.041471317410469055,-0.07854995876550674,-0.017734672874212265,-0.038965385407209396,-0.019173914566636086,-0.057729341089725494,0.07109113037586212,-0.006609668489545584,-0.01635107956826687,0.03822201490402222,-0.03866724297404289,-0.023120632395148277,0.04377654567360878,0.007097949273884296,-0.006289996672421694,0.03213239461183548,0.016642140224575996,-0.12489674240350723,-0.0067660873755812645,0.07051918655633926,0.11510010808706284,0.12351233512163162,-0.09927669167518616,-0.04363410174846649,1.3400878045083935e-33,-0.04747641086578369,-0.000577390834223479,-0.11321260780096054,0.04294614493846893,0.041856713593006134,0.02779899165034294,-0.03896982967853546,-0.028014767915010452,-0.020453043282032013,0.006991640664637089,0.0048620207235217094,-0.01254290621727705,-0.044838737696409225,0.030894452705979347,-0.0030583783518522978,-0.017229542136192322,0.07361359894275665,-0.03417260944843292,0.02907080017030239,0.07417074590921402,-0.03666100651025772,0.007124142721295357,-0.00883901584893465,-0.03647759184241295,-0.00033142237225547433,0.07558581978082657,-0.004222402814775705,0.05486138537526131,-0.056502655148506165,-0.057917769998311996,-0.03839819133281708,-0.045171357691287994,-0.007958821952342987,0.03966450318694115,0.03382043167948723,0.0663415789604187,0.0516071543097496,-0.08866231888532639,-0.047850918024778366,-0.0701427310705185,0.04075435549020767,-0.008983663283288479,-0.061758365482091904,0.0891072228550911,-0.07836904376745224,0.022396359592676163,-0.046610649675130844,0.03279031440615654,0.005967061035335064,0.11201552301645279,0.0033052132930606604,0.08052272349596024,-0.008066215552389622,-0.034275032579898834,-0.07703226059675217,0.004163934849202633,0.07112728804349899,-0.058467116206884384,0.03307231888175011,0.0579494945704937,-0.010493295267224312,-0.00021619566541630775,-0.04753832891583443,-0.022500447928905487,-0.043337900191545486,0.01611946150660515,-0.01447430718690157,-0.012255366891622543,0.003008509986102581,-0.004283979069441557,0.046194590628147125,0.014918728731572628,-0.08052219450473785,0.05603108927607536,-0.059277262538671494,0.0014656215207651258,0.03820531815290451,-0.06837404519319534,0.023171983659267426,-0.09971148520708084,-0.018049949780106544,-0.08235327899456024,-0.005016380455344915,-0.06262245774269104,0.033610597252845764,-0.09599047899246216,-0.02950570359826088,-0.03889285773038864,0.012248772196471691,-0.02424287609755993,0.023510517552495003,-0.007379717659205198,0.0889497697353363,-0.03617681935429573,0.07929425686597824,-2.4988427327343743e-8,-0.09373880177736282,-0.02892899140715599,0.0025157404597848654,-0.020598726347088814,0.13469576835632324,-0.0071185617707669735,0.10633626580238342,0.09174717217683792,0.004648183472454548,0.012162996456027031,-0.064689502120018,0.033185943961143494,0.057455211877822876,0.05686322972178459,0.054313696920871735,0.007494422607123852,-0.0504988357424736,-0.09326723963022232,-0.058222245424985886,0.04483984038233757,0.023584868758916855,0.06393323838710785,-0.11717163026332855,-0.021150294691324234,0.0016263204161077738,0.04179896041750908,-0.06774288415908813,0.041432008147239685,0.01579023152589798,0.014862198382616043,0.10240025073289871,-0.014890150167047977,-0.015233251266181469,-0.04486062005162239,-0.17634077370166779,0.08469326794147491,0.053411975502967834,-0.03279761224985123,0.04322778433561325,-0.04385112226009369,-0.0861210748553276,0.009246740490198135,-0.020251696929335594,-0.022663455456495285,-0.005230187438428402,0.02186455950140953,0.030207432806491852,-0.0400300994515419,-0.04587352275848389,0.09863505512475967,0.08214870095252991,0.005584199447184801,0.040940120816230774,0.029770269989967346,-0.0028536212630569935,-0.09936588257551193,-0.047661080956459045,-0.05897240340709686,0.03877934813499451,-0.00898821372538805,-0.06457829475402832,-0.003248197492212057,-0.0331210196018219,0.036838945001363754]},{"text":"At one end of the big barn, on a sort of raised platform, Major was already ensconced on his bed of straw, under a lantern which hung from a beam.","book":"Animal Farm","chapter":17,"embedding":[0.11796032637357712,0.07565411180257797,0.01930791325867176,0.020914249122142792,0.0431879460811615,-0.056435465812683105,-0.036817144602537155,0.04931671917438507,-0.09017284214496613,0.06937870383262634,0.010187646374106407,0.05676956847310066,-0.10208778828382492,0.023201605305075645,-0.023939616978168488,-0.026413103565573692,-0.044922392815351486,0.055081821978092194,-0.03950263187289238,0.07347951084375381,0.060985416173934937,-0.0024134875275194645,0.051656994968652725,0.03359659016132355,0.09493409097194672,-0.03206510469317436,-0.08723439276218414,0.012311483733355999,0.040353477001190186,-0.07689087092876434,0.037187159061431885,0.019145900383591652,-0.01837214268743992,-0.0330345593392849,0.030650151893496513,0.029677707701921463,0.013010597787797451,-0.0075796726159751415,0.12452156841754913,-0.031761087477207184,0.004063811153173447,-0.028965555131435394,0.013290316797792912,0.054305996745824814,-0.027603236958384514,-0.016869517043232918,0.01696312054991722,-0.05618416890501976,0.017594777047634125,-0.01109351310878992,0.03109361045062542,-0.011152568273246288,-0.049640070647001266,0.03908316791057587,-0.03112393245100975,0.06253977119922638,0.04403320327401161,0.006553157698363066,0.032638996839523315,-0.002999501768499613,0.00623686145991087,0.047584421932697296,0.019409943372011185,0.046887919306755066,0.025867702439427376,-0.06025129184126854,-0.050080448389053345,-0.043039049953222275,0.016679152846336365,0.018413998186588287,0.07878889888525009,-0.09024573117494583,-0.03342139348387718,-0.12232566624879837,-0.01580641232430935,-0.05767374113202095,-0.02553417719900608,0.04154122248291969,-0.0008286787196993828,0.06672070920467377,0.014152087271213531,0.02651597559452057,-0.061248570680618286,0.007370621431618929,-0.0020433906465768814,0.02472035028040409,0.04197646677494049,0.015901565551757812,-0.07504456490278244,0.0008690454997122288,-0.007068851962685585,-0.08639314770698547,-0.09374664723873138,0.08615363389253616,0.0027985102497041225,-0.024453148245811462,-0.041067011654376984,-0.04287020489573479,-0.007914785295724869,0.05394343286752701,0.05039473995566368,-0.018322227522730827,-0.0007166322902776301,0.018257230520248413,0.06528793275356293,-0.05068688467144966,-0.08601688593626022,-0.006996849551796913,0.006743988953530788,-0.021875226870179176,0.04831801354885101,-0.05867193266749382,0.025241371244192123,0.09157464653253555,-0.009464566595852375,0.042261525988578796,-0.015616283752024174,-0.024020273238420486,-0.0651862770318985,-0.06992257386445999,0.18367712199687958,0.07661473751068115,0.029137320816516876,0.06260748952627182,-0.0533042773604393,0.09581580758094788,0.04954821616411209,-8.575427817210365e-34,0.04637764021754265,-0.06299559772014618,-0.06473372876644135,0.012802773155272007,0.13098806142807007,0.038400810211896896,-0.06723036617040634,0.0966387391090393,0.0036603156477212906,0.06678136438131332,-0.018209420144557953,0.04015754163265228,0.08219801634550095,0.011288836598396301,-0.04739915952086449,-0.038543764501810074,0.05771274492144585,0.0003482307365629822,-0.024470146745443344,0.004006195813417435,-0.06583894789218903,0.08259592950344086,-0.05968813970685005,-0.05651376396417618,0.05176666006445885,0.05469449982047081,0.0688483715057373,-0.05664116144180298,-0.013158903457224369,0.013955486007034779,-0.05459749698638916,-0.045698344707489014,0.034614648669958115,0.028285706415772438,0.04662809148430824,-0.029958907514810562,0.06987490504980087,-0.0821724683046341,-0.02878614515066147,-0.0369567908346653,-0.034165408462285995,0.06829911470413208,0.023833835497498512,0.022412875667214394,-0.01681647263467312,0.01948034018278122,-0.06253257393836975,0.06310413777828217,0.008152811788022518,-0.07421457767486572,0.048205044120550156,-0.03826088830828667,-0.0263089369982481,-0.02941121906042099,0.08799121528863907,0.02329217828810215,-0.02459493651986122,-0.017729023471474648,0.013077127747237682,-0.023923562839627266,-0.0462169423699379,-0.012550926767289639,0.02215297892689705,0.0394720658659935,-0.061268992722034454,-0.09858141839504242,-0.09585346281528473,0.01242434699088335,-0.05122365057468414,-0.02896914817392826,-0.07212274521589279,-0.0212088730186224,0.002520272508263588,-0.06142973527312279,-0.054336681962013245,-0.0013866868102923036,-0.09129468351602554,0.09141571819782257,-0.10110527276992798,0.00041279217111878097,0.007702693343162537,-0.04735073074698448,0.027003882452845573,-0.045927662402391434,0.010684211738407612,-0.033794548362493515,-0.030056923627853394,0.0023231343366205692,-0.02765246294438839,0.013476675376296043,-0.025831596925854683,0.05416255071759224,0.043864406645298004,-0.05083217844367027,-0.007192404009401798,-1.2570160779132632e-33,0.0014794172020629048,0.022269941866397858,-0.04169365391135216,-0.019925761967897415,0.04037289321422577,-0.019656803458929062,-0.09365919232368469,-0.09846335649490356,-0.08186639100313187,-0.03488914296030998,-0.046347662806510925,0.026270965114235878,-0.056358497589826584,0.00684453034773469,0.07594069838523865,-0.01132750604301691,-0.02723497338593006,0.04836038872599602,-0.0293072909116745,0.08673723042011261,0.08696573227643967,-0.02022726833820343,-0.010442567989230156,-0.012461543083190918,-0.023955607786774635,0.05221948027610779,0.027547171339392662,-0.06690742820501328,-0.09011399745941162,-0.004863508511334658,-0.08864818513393402,-0.08262556046247482,-0.006385409738868475,0.018367446959018707,-0.01982010155916214,0.12002218514680862,0.07303240895271301,-0.07164283096790314,-0.11010676622390747,0.003734931815415621,0.039617132395505905,-0.032302603125572205,-0.006921421270817518,0.007803826592862606,-0.0352369099855423,-0.08664163202047348,-0.06004958972334862,0.10599920898675919,0.028194041922688484,0.02033335529267788,-0.0590393953025341,-0.03364311531186104,0.042509447783231735,-0.04415978863835335,-0.03480401262640953,-0.03504306823015213,0.03935299441218376,-0.03454790636897087,0.026654820889234543,0.04952240362763405,0.06108235567808151,-0.002449530176818371,0.03452424705028534,-0.05178261548280716,-0.009607424959540367,0.027945449575781822,-0.05440865829586983,-0.0018178763566538692,-0.08248760551214218,0.028630618005990982,0.029124854132533073,-0.00211029383353889,0.010360831394791603,0.05007503926753998,0.034945469349622726,0.08805164694786072,-0.00003846809340757318,-0.001260354882106185,0.06996466219425201,-0.023970048874616623,-0.047311536967754364,-0.036679454147815704,-0.03297252580523491,0.024951457977294922,0.0580260269343853,-0.08544034510850906,0.020727816969156265,0.03132227435708046,-0.07287032157182693,-0.01963096298277378,0.024133065715432167,0.04490698128938675,0.04684484004974365,-0.007680443115532398,0.0772266536951065,-2.9751751284834427e-8,-0.017948511987924576,0.002602718770503998,-0.13522958755493164,-0.05883454531431198,0.03402107208967209,0.013437033630907536,0.0008959891274571419,0.005395888350903988,-0.0691903606057167,-0.015914933755993843,-0.06320854276418686,0.07282871007919312,0.03296069800853729,0.05211802199482918,0.045710667967796326,-0.01769969053566456,-0.06175965815782547,-0.1126323714852333,-0.07445503026247025,0.01799107901751995,0.018991844728589058,-0.029447024688124657,-0.004680602345615625,-0.028967713937163353,-0.05720069259405136,0.04965965449810028,0.01963900960981846,0.1288386434316635,0.042408447712659836,0.1130308285355568,0.05561275780200958,0.016833510249853134,-0.04390326142311096,-0.03530004248023033,0.052388858050107956,0.05086943507194519,0.05212629213929176,0.014338640496134758,0.08828052878379822,-0.020127175375819206,-0.038914840668439865,-0.055587250739336014,0.0574825145304203,0.012214242480695248,0.034573331475257874,0.0318787582218647,0.030540088191628456,0.03344867378473282,-0.011417428962886333,0.04810890182852745,0.02680893801152706,0.005176702979952097,0.02692302130162716,-0.0006223908858373761,-0.011907029896974564,-0.059251077473163605,0.022256067022681236,-0.040495943278074265,-0.03301528841257095,-0.05401244014501572,0.025515811517834663,0.0031937190797179937,-0.004706136882305145,0.08062492311000824]},{"text":"The two cart-horses, Boxer and Clover, came in together, walking very slowly and setting down their vast hairy hoofs with great care lest there should be some small animal concealed in the straw.","book":"Animal Farm","chapter":18,"embedding":[0.045357123017311096,0.03316239267587662,0.005435505416244268,0.1013871282339096,0.05595887824892998,-0.019747992977499962,-0.019711485132575035,-0.03084656223654747,-0.029863154515624046,0.030793480575084686,0.08674308657646179,-0.0348425917327404,-0.025202473625540733,0.023383518680930138,-0.05280165374279022,-0.0060889762826263905,-0.04876532033085823,-0.007342801429331303,-0.06983077526092529,-0.009735235944390297,-0.03250441700220108,-0.003997833468019962,0.04856067895889282,0.08327541500329971,-0.04570511728525162,-0.03890864551067352,-0.053834639489650726,0.00943124108016491,-0.025364721193909645,-0.05459873005747795,-0.004979079123586416,0.011621772311627865,0.053718630224466324,-0.062274154275655746,-0.08481457084417343,0.010369607247412205,0.16795088350772858,-0.024054208770394325,0.13634459674358368,-0.0769568383693695,0.015318889170885086,-0.08350260555744171,0.0077315340749919415,0.02520393580198288,0.036926642060279846,0.008310987614095211,-0.024548685178160667,-0.015775617212057114,0.05405348166823387,-0.010910938493907452,0.030434507876634598,-0.058533623814582825,0.012956753373146057,-0.008856358006596565,-0.042051397264003754,0.00864972360432148,-0.0039396160282194614,-0.051762476563453674,0.03589443862438202,0.003555109491571784,0.01808035559952259,0.028510592877864838,0.04388761520385742,0.09322076290845871,-0.035940155386924744,-0.03294874727725983,-0.044608525931835175,-0.017992403358221054,-0.024320892989635468,0.02096836268901825,-0.01348131988197565,-0.03939294442534447,-0.027417199686169624,-0.058549944311380386,-0.07161872088909149,-0.0009824495064094663,-0.07954161614179611,0.003999718930572271,0.04492795839905739,0.019111381843686104,-0.040878139436244965,-0.04279189929366112,0.021904105320572853,0.05005374923348427,-0.008432533591985703,0.025263091549277306,0.007391107734292746,-0.06561670452356339,-0.0938812866806984,-0.1210084781050682,-0.0978090912103653,-0.0783703476190567,0.001263621379621327,0.05161834508180618,0.08187880367040634,-0.03817802667617798,0.02963281236588955,0.03342035040259361,-0.0022093425504863262,0.04381212964653969,0.007145098876208067,0.006903442554175854,0.020677680149674416,-0.07802918553352356,0.039505451917648315,0.04898495972156525,-0.09255120903253555,-0.030952155590057373,0.03708098456263542,0.005116940476000309,-0.024789385497570038,-0.07132080942392349,0.06750623136758804,0.09571558237075806,-0.010823799297213554,0.07204530388116837,-0.05933613330125809,-0.027221236377954483,-0.10099957138299942,0.05572693049907684,0.07477013021707535,0.06598244607448578,0.019526686519384384,-0.056565020233392715,0.018659627065062523,-0.0479469820857048,0.011488117277622223,6.867901968141026e-34,0.023940375074744225,-0.06392379105091095,-0.00831748265773058,-0.0020235043484717607,0.10542399436235428,-0.020705509930849075,-0.014563268050551414,0.015146246179938316,-0.017782697454094887,0.06033340469002724,-0.009199942462146282,-0.05027858540415764,0.002380112884566188,-0.05115855112671852,-0.03801817074418068,-0.07642876356840134,-0.004968209657818079,-0.03018300235271454,0.05715768039226532,-0.042376529425382614,-0.06349755078554153,0.07457754015922546,-0.03062877617776394,-0.03995703160762787,0.0028038714081048965,0.022303614765405655,0.017252780497074127,-0.07779264450073242,0.0599353201687336,0.05848811939358711,0.010112401098012924,-0.04709060490131378,-0.016959400847554207,0.009945275261998177,-0.08067962527275085,-0.07124166190624237,-0.021299535408616066,-0.08049097657203674,-0.01755579002201557,0.05946793779730797,0.007374193053692579,-0.0205342136323452,0.05305268242955208,-0.010817303322255611,-0.1115489974617958,0.039205290377140045,-0.028457311913371086,0.04367538169026375,-0.06100951135158539,0.050371166318655014,0.02393184043467045,0.024283558130264282,-0.011685195378959179,0.02576754428446293,0.0647866427898407,-0.03779410198330879,0.008737628348171711,0.009694451466202736,-0.12515772879123688,-0.003191412426531315,0.0262762364000082,0.054153185337781906,-0.03829171136021614,-0.054792873561382294,-0.01171429269015789,-0.051539186388254166,-0.06210502237081528,0.04477541148662567,-0.04783295467495918,0.05166911706328392,-0.054932210594415665,0.05295291170477867,-0.06844455748796463,-0.1314777433872223,0.014584277756512165,-0.005413762293756008,0.06734530627727509,0.004797123838216066,-0.024096479639410973,-0.08273275196552277,0.00839284434914589,0.0019350695656612515,-0.0580844022333622,0.014615247026085854,-0.03665265813469887,-0.008766744285821915,-0.030147211626172066,-0.028201892971992493,-0.05026581138372421,-0.034653689712285995,-0.019054235890507698,0.06476759165525436,-0.00038662360748276114,-0.07414831966161728,0.054446812719106674,-2.576550455533025e-33,0.02124246209859848,0.08407954126596451,0.029936950653791428,0.06231986731290817,0.03731723129749298,0.026254434138536453,0.03399506211280823,-0.08445610851049423,0.0776047632098198,0.034867219626903534,-0.11842212826013565,0.007884842343628407,0.035735148936510086,-0.037110842764377594,0.102491095662117,-0.013255286030471325,0.0601661391556263,-0.011617661453783512,0.10830104351043701,-0.03783910721540451,0.014141322113573551,-0.024445736780762672,-0.031669262796640396,-0.0659223273396492,0.06032417714595795,0.08484053611755371,0.024806004017591476,-0.023931466042995453,-0.0012855761451646686,0.005817887373268604,-0.01103445515036583,-0.11631742864847183,0.012004337273538113,0.023168817162513733,-0.061135582625865936,-0.017498016357421875,-0.040408190339803696,-0.003841881873086095,-0.019762307405471802,-0.04989941418170929,0.018049322068691254,-0.07028407603502274,-0.03307696059346199,0.021409573033452034,-0.04537193477153778,0.0033072319347411394,-0.03811616078019142,-0.0068615274503827095,0.019748685881495476,0.031609535217285156,0.08655756711959839,0.09334992617368698,-0.040355220437049866,-0.01977900043129921,-0.02138187550008297,0.023018725216388702,-0.03523125872015953,-0.02239406481385231,0.04794562608003616,-0.027270646765828133,-0.027661576867103577,0.042887210845947266,-0.03151208907365799,0.03415433317422867,-0.050385404378175735,-0.03116905502974987,-0.0590844564139843,-0.008406455628573895,0.0056721530854702,-0.02211376652121544,0.018003853037953377,0.0008155152900144458,0.04612961784005165,0.03663092479109764,0.06640364229679108,0.08110712468624115,0.025379817932844162,-0.10741188377141953,0.07282158732414246,0.01879059337079525,-0.01820477284491062,0.01273086667060852,0.045132074505090714,0.05139509588479996,0.06639978289604187,-0.03187766671180725,-0.049782466143369675,0.08345846086740494,0.03797273710370064,0.04770413041114807,0.013679103925824165,0.10236996412277222,0.11416225135326385,-0.024203535169363022,0.1004655733704567,-2.8179506728065462e-8,-0.0005830616573803127,-0.009158864617347717,-0.060467761009931564,0.01831945963203907,0.02181924693286419,0.018499324098229408,-0.06168294697999954,0.0713399201631546,-0.06251264363527298,0.07306937873363495,-0.0021403776481747627,0.14605312049388885,-0.0014479549136012793,0.07055965065956116,0.026104319840669632,0.023873621597886086,0.026429861783981323,-0.08076198399066925,-0.02402019128203392,-0.012066247873008251,-0.06217905879020691,-0.03298358619213104,-0.02567661739885807,-0.023271095007658005,-0.0827946588397026,-0.041050706058740616,-0.01827411539852619,0.034312665462493896,0.005541875958442688,0.10073584318161011,-0.006558418273925781,0.0587652213871479,-0.11656440049409866,-0.02778460830450058,-0.006049215793609619,0.006301620043814182,-0.12220898270606995,0.03196826949715614,0.036291372030973434,-0.025731679052114487,-0.007004360668361187,0.0613839365541935,-0.00831211544573307,0.010869964025914669,0.04503541812300682,-0.030489791184663773,0.05108771473169327,-0.005820097867399454,-0.06931126862764359,-0.006104141008108854,-0.03928973153233528,-0.017261873930692673,0.10115563124418259,0.1093282625079155,-0.009037481620907784,-0.025256065651774406,0.020616894587874413,-0.07448813319206238,0.011788390576839447,0.07781819999217987,-0.06200244650244713,0.018921032547950745,0.09461718052625656,0.0149114690721035]},{"text":"Benjamin was the oldest animal on the farm, and the worst tempered.","book":"Animal Farm","chapter":18,"embedding":[0.043250881135463715,0.09298266470432281,0.010268699377775192,0.04262766242027283,-0.006054808385670185,0.006619755644351244,-0.0016147824935615063,0.02399546280503273,-0.09840504080057144,0.03407813608646393,0.021630926057696342,-0.005716464016586542,0.05512057989835739,-0.007330796681344509,-0.09961483627557755,-0.014560823328793049,-0.04979538545012474,0.05591465160250664,0.02324458584189415,0.01949961483478546,-0.12288756668567657,0.06559410691261292,-0.004429189953953028,0.039964914321899414,0.04395417869091034,0.027834279462695122,-0.05772314965724945,0.021632829681038857,0.04062171280384064,-0.04304390028119087,-0.05057046562433243,-0.032116927206516266,0.11425186693668365,0.017026487737894058,-0.08124681562185287,-0.027856724336743355,0.1028042733669281,0.045961152762174606,0.060663435608148575,-0.04185301810503006,0.01131866592913866,0.07547382265329361,-0.027687929570674896,-0.06464996933937073,-0.07444816827774048,-0.02016143687069416,-0.04083056002855301,-0.13019247353076935,0.021577302366495132,-0.030961042270064354,0.024452272802591324,0.014127303846180439,0.07440926134586334,0.032067105174064636,0.0019176771165803075,0.025951458141207695,-0.046737417578697205,0.023290524259209633,0.06922785937786102,0.05303744971752167,-0.009851180016994476,0.00930937472730875,0.05891149863600731,0.007857239805161953,0.0415077731013298,-0.06001261621713638,-0.026632599532604218,-0.002029627561569214,-0.025519462302327156,0.01196264661848545,0.020175384357571602,-0.03997894376516342,0.015212933532893658,-0.07285679876804352,-0.09649219363927841,-0.01724407821893692,-0.0004800520546268672,0.012283451855182648,0.041732676327228546,-0.019844582304358482,-0.031601835042238235,-0.030610499903559685,-0.012083424255251884,0.011790097691118717,0.01088295690715313,-0.04142856225371361,0.02094261534512043,-0.05369829759001732,-0.006564106792211533,-0.004023885354399681,0.012460201978683472,-0.026874350383877754,0.015081223100423813,0.0727074146270752,0.11193761974573135,-0.035080842673778534,-0.004149966407567263,0.036288607865571976,-0.12372863292694092,0.03708292543888092,-0.06256145238876343,-0.03346257656812668,-0.03143267706036568,0.049706488847732544,0.08972550183534622,-0.02348748780786991,-0.04526946693658829,-0.03991999849677086,0.025346245616674423,0.02958240546286106,-0.008485051803290844,-0.013391333632171154,-0.07407718896865845,0.021339895203709602,0.0834500640630722,-0.05910408869385719,-0.000767535762861371,-0.002703574486076832,-0.10415706783533096,-0.0018788438756018877,0.1169729083776474,0.08336002379655838,-0.06499256193637848,0.09011900424957275,-0.04686953127384186,0.049429647624492645,0.06883206963539124,-4.5201681001512824e-33,0.06613779067993164,-0.012398792430758476,-0.08236180245876312,-0.05854489281773567,0.08586391061544418,-0.003913396503776312,-0.05098159238696098,0.05788440257310867,0.07004465907812119,-0.02665134333074093,0.0005015757051296532,-0.04653254896402359,-0.00008441282989224419,-0.07369916886091232,-0.023205677047371864,0.051550474017858505,-0.04335080459713936,-0.07639089971780777,0.1435846984386444,-0.07253004610538483,-0.025181619450449944,0.022612661123275757,-0.06885074824094772,-0.027107084169983864,0.02733851596713066,-0.10851966589689255,0.035973161458969116,0.01107063889503479,-0.02822723053395748,-0.008408153429627419,0.0037798015400767326,-0.04060637205839157,0.04056449607014656,0.11300891637802124,0.053400490432977676,-0.08916056156158447,0.01669774390757084,-0.03293542191386223,-0.0647088810801506,0.020494386553764343,0.010899062268435955,0.002899746410548687,0.06768829375505447,0.0629887580871582,-0.010412384755909443,0.06046706810593605,0.05511189252138138,0.0776006206870079,0.06497448682785034,-0.04568912833929062,0.014392677694559097,0.051947884261608124,0.026029959321022034,0.04111570492386818,-0.0645454004406929,0.013315490446984768,0.04907107725739479,0.007692390121519566,-0.08394544571638107,0.0255007054656744,0.023043649271130562,0.0061220331117510796,0.04638927802443504,-0.013989247381687164,-0.006439046002924442,-0.10471225529909134,-0.09798834472894669,0.07476947456598282,-0.031126346439123154,0.030048364773392677,-0.01946297660470009,0.011217964813113213,-0.06375663727521896,-0.1593235731124878,0.01587388664484024,0.002961615100502968,0.07860051095485687,0.027662456035614014,-0.05874006450176239,-0.09807497262954712,0.04619951918721199,0.013127746060490608,-0.024990739300847054,0.09369990974664688,-0.08360576629638672,-0.06605010479688644,0.008239185437560081,-0.032766591757535934,0.04843347147107124,0.03505871444940567,0.05086800083518028,-0.030509930104017258,0.049356669187545776,-0.04591558873653412,-0.020790893584489822,3.675536470835098e-33,-0.059023018926382065,0.005801106337457895,0.06085263565182686,0.09211018681526184,-0.04971332475543022,-0.040889620780944824,0.006336986552923918,0.06140124052762985,0.02955777570605278,-0.07341277599334717,0.01994888298213482,-0.01386560220271349,0.008803436532616615,0.03244151920080185,0.10330911725759506,0.007336390670388937,-0.053179819136857986,-0.0005362192168831825,0.05309201404452324,-0.05472681298851967,-0.00010562285751802847,0.024070005863904953,-0.1425802856683731,-0.015390848740935326,-0.03676476702094078,0.10057957470417023,-0.0011585381580516696,-0.04092579707503319,-0.04127149283885956,-0.09671111404895782,0.030290324240922928,0.012242145836353302,0.018087245523929596,-0.08699798583984375,-0.034507155418395996,0.09441502392292023,-0.01166509184986353,-0.061769016087055206,0.0016618967056274414,-0.04794417321681976,0.04648882895708084,-0.00570017471909523,-0.003357634646818042,0.0254574716091156,0.048055313527584076,0.009792342782020569,0.059721797704696655,-0.018562281504273415,-0.029795067384839058,0.06895761936903,-0.001212212024256587,0.05713042616844177,-0.012250295840203762,0.044520940631628036,-0.02728131040930748,-0.08081761002540588,0.020973553881049156,-0.03800823166966438,0.05196385830640793,0.03599695861339569,0.0422271229326725,-0.05174591392278671,-0.0020489501766860485,0.05150989070534706,-0.06611127406358719,-0.039498571306467056,-0.06027769297361374,0.04369426146149635,0.006716171745210886,-0.01642562821507454,0.03409207612276077,0.03842415288090706,0.0321447029709816,-0.02169041894376278,-0.06440554559230804,0.04221150651574135,0.07450863718986511,-0.014878066256642342,0.03071586601436138,-0.030500449240207672,-0.011021582409739494,-0.010009615682065487,-0.006473033223301172,0.07399686425924301,-0.04121512919664383,0.017515312880277634,0.010210066102445126,0.0558982752263546,0.027064699679613113,0.031029827892780304,-0.02681707590818405,-0.1029069647192955,0.04385008290410042,0.011862426996231079,0.02446068450808525,-1.6690016479969927e-8,-0.040348272770643234,-0.038531310856342316,-0.09307369589805603,0.014875683933496475,0.05866534635424614,0.006845726631581783,-0.002114573959261179,0.0588640533387661,0.007143056485801935,0.0792815312743187,-0.10698428750038147,0.09363176673650742,-0.034254901111125946,-0.020692767575383186,0.026374459266662598,0.010907787829637527,0.020364001393318176,-0.08744274824857712,-0.016967127099633217,0.003036840818822384,-0.08157965540885925,0.05100244656205177,-0.0054547423496842384,-0.06488857418298721,-0.03767526522278786,-0.09270035475492477,0.01528934482485056,0.005694685969501734,0.03746728599071503,0.01615547388792038,-0.018347302451729774,0.05172930657863617,-0.004216134548187256,-0.06174316629767418,0.036530230194330215,0.031803879886865616,-0.03865451365709305,-0.022810060530900955,0.026344139128923416,0.04106800630688667,0.0036704980302602053,0.08653982728719711,-0.004550850950181484,0.007099256385117769,0.019145896658301353,-0.06469213217496872,0.010359179228544235,0.04617156460881233,0.006324573419988155,-0.012294911779463291,0.07163051515817642,0.11293334513902664,0.008959387429058552,0.03642093017697334,-0.04797112196683884,-0.04814769700169563,-0.05512702092528343,-0.05353672429919243,0.0030514439567923546,0.0469140000641346,0.01780552789568901,0.011943921446800232,0.03304540365934372,0.017873279750347137]},{"text":"The two horses had just lain down when a brood of ducklings, which had lost their mother, filed into the barn, cheeping feebly and wandering from side to side to find some place where they would not be trodden on.","book":"Animal Farm","chapter":18,"embedding":[0.028928721323609352,0.012955322861671448,0.007993282750248909,0.09749308228492737,0.10110346972942352,-0.01077550183981657,-0.020348772406578064,0.032241206616163254,0.017099957913160324,-0.041272375732660294,0.04071034491062164,-0.01746823638677597,0.010861296206712723,-0.041440267115831375,-0.06741973012685776,-0.031920790672302246,-0.08601672947406769,0.010777279734611511,-0.03440696746110916,0.013187034986913204,-0.0798439309000969,0.025322547182440758,0.040804650634527206,0.05872774124145508,-0.030330153182148933,-0.03882236406207085,-0.05645854026079178,-0.006597782485187054,-0.025828924030065536,-0.04322049766778946,-0.017430312931537628,0.029101433232426643,-0.05631697177886963,-0.037733979523181915,0.009464331902563572,0.06915926933288574,0.05733514949679375,0.020829664543271065,0.10210289061069489,-0.08987891674041748,0.0489114411175251,-0.026812871918082237,-0.030765697360038757,-0.029892539605498314,-0.020198071375489235,-0.0006808752659708261,-0.040071092545986176,-0.041652727872133255,0.09309512376785278,0.09608755260705948,0.00346849812194705,-0.006503670010715723,-0.058561697602272034,0.05832017585635185,-0.027432776987552643,0.1130492314696312,0.01709594577550888,0.049877941608428955,-0.016812145709991455,-0.02841482311487198,0.016110902652144432,-0.010642744600772858,0.027881300076842308,0.008490892127156258,-0.012402701191604137,-0.0442066490650177,-0.0235504899173975,-0.03306746482849121,-0.0012662105727940798,0.005432806443423033,0.009542526677250862,-0.009337457828223705,-0.01517573930323124,-0.09184649586677551,-0.025874899700284004,0.05187825858592987,-0.006144094746559858,0.0005072247004136443,0.042188093066215515,-0.02324896864593029,-0.04959191381931305,-0.028408151119947433,-0.017953647300601006,0.03286771476268768,0.016906006261706352,-0.04737000912427902,0.03339184820652008,-0.08901120722293854,0.027225440368056297,-0.053431328386068344,-0.0153203085064888,-0.00593623798340559,-0.000277586979791522,0.07349700480699539,0.0513053834438324,-0.031151892617344856,0.033442020416259766,0.06187920272350311,-0.0023289332166314125,0.029964391142129898,0.004917938727885485,-0.021747784689068794,0.015713270753622055,-0.05660812184214592,0.06957316398620605,0.00770341232419014,-0.11455134302377701,-0.10689330846071243,0.037431202828884125,-0.0043364339508116245,-0.028096118941903114,-0.05373646691441536,0.07132530212402344,0.1085294857621193,0.04260990396142006,0.06986460089683533,-0.05117561295628548,-0.032626211643218994,-0.08600853383541107,-0.002521512331441045,0.0571468286216259,0.04178430512547493,0.03037205897271633,-0.08189328014850616,-0.010675971396267414,0.01131461188197136,0.002749144099652767,1.2311152537543441e-33,0.018522340804338455,-0.12071667611598969,-0.010863450355827808,-0.010148832574486732,0.1317630112171173,-0.03210809454321861,-0.06813452392816544,0.03258901461958885,-0.008742528036236763,-0.007495546713471413,-0.023249313235282898,-0.10707113146781921,0.0037163104861974716,-0.12205424904823303,0.008959856815636158,-0.02946825884282589,0.01927570067346096,-0.04458222910761833,0.0691528171300888,0.015073402784764767,0.014131889678537846,0.14322511851787567,-0.008626523427665234,-0.054528433829545975,0.011778055690228939,-0.007961131632328033,-0.016127005219459534,-0.08949942141771317,-0.09368465095758438,0.035268817096948624,-0.07399282604455948,-0.11177033185958862,0.014276607893407345,-0.07845881581306458,-0.027926942333579063,-0.019017141312360764,0.03301586955785751,-0.037984397262334824,-0.04997413232922554,0.01560817938297987,-0.08553951978683472,-0.06317257136106491,0.03601674735546112,-0.037143826484680176,-0.04665899649262428,-0.006850583478808403,0.039839982986450195,0.06821535527706146,-0.05269278958439827,0.0666717067360878,0.028039611876010895,-0.07744304090738297,-0.027081653475761414,0.02501918561756611,0.018487241119146347,0.0865815058350563,-0.018494904041290283,-0.018215343356132507,-0.05221577733755112,-0.00006061006206437014,0.08258309215307236,-0.047185979783535004,0.02358606457710266,-0.14622412621974945,0.0024069484788924456,-0.06657271087169647,-0.057194534689188004,0.03110373578965664,-0.042519666254520416,-0.016219772398471832,-0.06391307711601257,-0.04948044940829277,-0.06394316256046295,-0.0999724417924881,0.045102931559085846,0.019319426268339157,0.009692803956568241,-0.015168482437729836,0.030021989718079567,-0.11661728471517563,0.08603372424840927,0.04936930164694786,-0.053607501089572906,0.029126984998583794,0.0031553904991596937,-0.06761860847473145,0.040893763303756714,-0.006651710253208876,-0.07531300187110901,-0.05736782029271126,0.043023496866226196,0.05891568586230278,0.001112157478928566,-0.11257763206958771,0.07251030951738358,-4.27024183811914e-33,-0.03239775821566582,0.0014059070963412523,-0.058436159044504166,0.061774563044309616,0.00216269469819963,-0.0940285474061966,0.020624319091439247,-0.058288268744945526,0.03152308613061905,-0.00869253370910883,-0.1284131109714508,-0.017120322212576866,-0.008618590421974659,0.0445912629365921,0.009216182865202427,0.014999253675341606,0.057848475873470306,0.015175067819654942,0.11024702340364456,-0.05998172238469124,0.050030723214149475,-0.023189613595604897,-0.030977768823504448,0.0031506347004324198,0.03947901725769043,0.046727392822504044,0.00424787774682045,-0.0019719635602086782,0.00740443030372262,0.02008889801800251,-0.02506907284259796,-0.016794376075267792,0.05730314552783966,0.08520804345607758,-0.0007757024723105133,0.03390324488282204,0.01334695890545845,0.041092559695243835,-0.0777573361992836,-0.06446245312690735,0.048147622495889664,-0.047283854335546494,0.003801866667345166,-0.00861452054232359,0.0011319104814901948,0.021467549726366997,0.017982549965381622,0.10680196434259415,-0.0061231194995343685,0.054378822445869446,0.09641513228416443,0.008330133743584156,0.008211566135287285,0.03869534283876419,-0.026459168642759323,0.01536473911255598,0.011868630535900593,-0.0195375494658947,0.048883479088544846,-0.0070368461310863495,-0.032412949949502945,-0.007130194455385208,-0.07945320755243301,0.061303578317165375,-0.03553783521056175,-0.023399697616696358,-0.07506327331066132,-0.03305657580494881,-0.00690974947065115,-0.05943144112825394,0.05065612867474556,0.04272060841321945,0.02687745727598667,-0.0013843924971297383,0.07140988111495972,0.13540300726890564,-0.06219638139009476,-0.02651754580438137,0.06984347105026245,0.0011363321682438254,-0.022355569526553154,-0.04217121750116348,0.06668233126401901,0.0066993157379329205,-0.015107165090739727,-0.043987907469272614,0.035663388669490814,0.04389556124806404,0.01926247589290142,-0.07059472799301147,0.022191563621163368,0.05412104353308678,0.06902682781219482,0.002055334858596325,0.016145866364240646,-3.6520102497661355e-8,0.015817362815141678,0.06733056902885437,-0.014253593981266022,0.006634552963078022,0.04238941892981529,-0.11656651645898819,0.04694846644997597,0.057198651134967804,-0.010090745985507965,0.045039061456918716,-0.12256872653961182,0.04198305308818817,0.015943625941872597,0.06277866661548615,0.04158133268356323,0.030772102996706963,0.08211425691843033,-0.06362900137901306,-0.0271307323127985,-0.01702464371919632,-0.07556809484958649,-0.01921253278851509,-0.03408302366733551,0.012136352248489857,-0.027184557169675827,-0.000013859592399967369,0.012743765488266945,0.009542143903672695,0.0487416572868824,0.03264469653367996,-0.033844321966171265,0.040854331105947495,-0.02693215012550354,-0.05421057716012001,0.01964823715388775,0.027224931865930557,-0.05783233419060707,0.03932226449251175,0.017430542036890984,-0.05095352977514267,-0.09487663209438324,0.04440893232822418,0.055951062589883804,-0.03159696236252785,0.10865645855665207,-0.016792288050055504,0.10352905094623566,0.03739270567893982,-0.01210165023803711,-0.08670318871736526,-0.004471282009035349,-0.05363203212618828,0.0567890927195549,0.020527683198451996,-0.008009216748178005,-0.05032365024089813,-0.026495380327105522,0.00856646429747343,0.010329537093639374,0.03556841239333153,-0.09909267723560333,0.08367327600717545,0.05675492808222771,0.01300438679754734]},{"text":"Last of all came the cat, who looked round, as usual, for the warmest place, and finally squeezed herself in between Boxer and Clover; there she purred contentedly throughout Major's speech without listening to a word of what he was saying.","book":"Animal Farm","chapter":18,"embedding":[0.09728125482797623,-0.027510739862918854,0.03472474217414856,0.03696462884545326,0.04583302512764931,0.040750522166490555,0.009319594129920006,-0.05062205716967583,-0.020958703011274338,-0.03096790984272957,-0.007470802403986454,-0.012691781856119633,-0.03750232607126236,-0.05085698887705803,-0.043806321918964386,0.015683241188526154,-0.02391955815255642,0.024329204112291336,-0.07828475534915924,-0.03141827881336212,-0.039366062730550766,0.0643015056848526,0.04637102037668228,0.05216651409864426,-0.03267192468047142,0.06330396234989166,-0.08231490105390549,-0.06866979598999023,0.060517553240060806,-0.06290559470653534,-0.0795711949467659,0.04299956187605858,0.090079665184021,0.06530965119600296,-0.04879473149776459,-0.027696877717971802,0.006032165605574846,-0.03131788596510887,0.055760327726602554,-0.010140483267605305,-0.056191861629486084,-0.003997991792857647,-0.014952927827835083,0.016551055014133453,-0.0065341489389538765,-0.023934410884976387,0.0025671953335404396,-0.14676538109779358,0.10215576738119125,-0.03965821862220764,-0.0006864616298116744,-0.05303974822163582,0.012772873975336552,-0.0128897400572896,0.002996821189299226,-0.00791182555258274,0.0886806771159172,-0.080853171646595,-0.02025734633207321,-0.0061764405108988285,-0.048623111099004745,0.026819908991456032,0.026465144008398056,0.09488724172115326,0.029704255983233452,-0.05201874300837517,0.013247225433588028,0.05244499444961548,-0.05004969239234924,0.09477654099464417,-0.02862277626991272,-0.0005594108370132744,-0.02506130374968052,-0.03513569384813309,0.021829798817634583,-0.005199761595577002,0.03536997735500336,-0.00813885685056448,0.05122805014252663,0.051842570304870605,-0.02235209196805954,-0.036422282457351685,0.015048354864120483,0.019917640835046768,-0.01916479878127575,-0.023245632648468018,-0.04220105707645416,-0.07164344936609268,-0.019319703802466393,-0.033936403691768646,-0.12932895123958588,-0.07144487649202347,-0.0894007533788681,0.10298511385917664,0.01098130363970995,0.02539028599858284,0.003713889280334115,-0.09341040998697281,0.033806782215833664,0.007278868462890387,0.012875809334218502,0.04325490444898605,0.009066639468073845,-0.027555933222174644,0.0504944771528244,-0.010595741681754589,0.008002359420061111,-0.051746007055044174,0.026856955140829086,0.010427648201584816,-0.03827013075351715,-0.10453832894563675,0.021565863862633705,0.017421575263142586,0.06525792926549911,0.03794829174876213,0.02324315719306469,-0.03869601711630821,-0.018855037167668343,0.06226889416575432,0.040920455008745193,0.05728890001773834,-0.033161360770463943,0.052302535623311996,0.013939752243459225,0.00715624401345849,0.05381056293845177,-7.4068950561743345e-34,0.05058595538139343,-0.04603855311870575,-0.020607532933354378,0.029421532526612282,0.030597280710935593,0.06004086136817932,0.07019159942865372,-0.002111253794282675,-0.02313137985765934,0.05383693799376488,-0.04260694608092308,0.03496327996253967,-0.02917197346687317,-0.08351818472146988,-0.07058093696832657,0.006711458787322044,-0.028424814343452454,0.00666004279628396,0.00039519782876595855,0.05850943177938461,0.029348285868763924,0.1056034043431282,-0.004721569363027811,-0.03330324590206146,0.002383834682404995,0.016724806278944016,0.09189242869615555,-0.014926216565072536,-0.015663353726267815,0.009602447971701622,-0.06832975149154663,-0.02730742283165455,0.010537466034293175,0.011906260624527931,-0.05406941846013069,-0.05088769271969795,0.00883626751601696,0.03269224613904953,0.027390960603952408,0.0536905862390995,0.03678954765200615,0.009395581670105457,0.0047243619337677956,-0.040693655610084534,-0.06545372307300568,0.02245907485485077,-0.09585664421319962,0.11618922650814056,0.0026893222238868475,0.02140497788786888,0.04104640334844589,-0.0674327090382576,0.023535944521427155,-0.012933447025716305,0.006620990578085184,0.013600382953882217,0.0033653010614216328,-0.02608305588364601,-0.04902184009552002,0.05133998766541481,-0.017883285880088806,-0.00017429154831916094,0.04647442698478699,-0.032966047525405884,-0.02547997608780861,-0.03467607870697975,-0.06894945353269577,-0.029414387419819832,-0.001557186245918274,0.02149474248290062,-0.0533771887421608,-0.01273311860859394,-0.04908345267176628,-0.0788903683423996,0.04184356704354286,-0.057954221963882446,0.011471832171082497,0.011205998249351978,0.035261377692222595,0.02083946205675602,0.052512768656015396,0.02416892722249031,-0.03739168122410774,0.08072253316640854,0.008491340093314648,0.02850685641169548,0.046851590275764465,-0.09431804716587067,-0.04290010407567024,0.06779111176729202,-0.05699523910880089,0.026733754202723503,0.09498782455921173,-0.08119777590036392,-0.0442768894135952,-1.1976721639669616e-33,0.04646531865000725,0.0317787267267704,-0.0008136486867442727,0.048705317080020905,-0.07534848153591156,0.052829205989837646,-0.061714909970760345,-0.017877785488963127,0.052233610302209854,0.07035595178604126,0.06310630589723587,-0.01370540913194418,0.1175319105386734,-0.053797122091054916,0.03749341517686844,0.04171941801905632,0.030557362362742424,-0.0449206568300724,0.08161529898643494,0.04255272448062897,0.040437161922454834,-0.07441045343875885,-0.03006920777261257,-0.0760987401008606,0.040546223521232605,-0.00410772068426013,0.027077775448560715,0.02053784765303135,-0.041310813277959824,-0.13916094601154327,0.10879113525152206,-0.12437025457620621,-0.06815166026353836,0.04054790735244751,-0.06120826303958893,0.07522986084222794,-0.007127280347049236,0.03706493601202965,0.0012264231918379664,0.009582025930285454,0.0017213127575814724,-0.11584832519292831,-0.0176436435431242,-0.010304119437932968,-0.006607217248529196,-0.037957124412059784,-0.07746396213769913,0.027454137802124023,0.01412838976830244,0.04039400815963745,-0.04305647686123848,-0.06403624266386032,0.011694718152284622,0.06383541226387024,-0.04839746281504631,-0.00885329395532608,0.02404545433819294,0.021870730444788933,0.010110549628734589,-0.09596620500087738,-0.009948750026524067,-0.0022433148697018623,0.015087789855897427,-0.03189251571893692,-0.04156928509473801,-0.01596495881676674,0.019690368324518204,-0.060285843908786774,-0.04048281908035278,-0.009068100713193417,-0.025919271633028984,0.079191192984581,-0.08569066971540451,0.045998431742191315,0.062105800956487656,0.14042173326015472,-0.013729257509112358,-0.11575145274400711,0.021629247814416885,-0.05576068535447121,-0.04298174008727074,0.01242329552769661,-0.004886452574282885,0.01226082630455494,0.09139510989189148,-0.04418058693408966,0.04357966408133507,0.029470499604940414,0.06867841631174088,0.03939551115036011,0.026933925226330757,0.00636730482801795,0.08587914705276489,-0.0881844237446785,0.044114965945482254,-3.6434894212789004e-8,-0.11172572523355484,0.043579455465078354,-0.20146557688713074,-0.013773081824183464,0.08130565285682678,0.018079567700624466,0.0023231348022818565,-0.027627648785710335,-0.0235422533005476,0.06172507628798485,0.030070887878537178,0.03577785566449165,0.030233871191740036,0.017141325399279594,0.06802116334438324,0.1038748100399971,0.04707402363419533,-0.16289448738098145,0.018097756430506706,0.014569465070962906,-0.06499361246824265,-0.025018835440278053,-0.07323821634054184,-0.07003041356801987,-0.02883535623550415,0.06167250871658325,0.01642102375626564,-0.03639744594693184,0.004844852723181248,0.009560066275298595,0.03593970835208893,0.004024991765618324,-0.10082992911338806,-0.0894264355301857,-0.02432996779680252,0.032189253717660904,0.07291147112846375,-0.0480094738304615,0.07081732898950577,0.03685706481337547,-0.019139312207698822,0.004356715828180313,0.00950678251683712,-0.021948697045445442,-0.042614325881004333,0.012976700440049171,0.0562218502163887,-0.04705612733960152,0.030475905165076256,0.044686440378427505,0.05425778031349182,-0.01742209866642952,0.006698661483824253,0.03778192773461342,-0.03495871275663376,0.004909758921712637,-0.006689372006803751,0.0007514908211305737,0.0009342716075479984,0.06147393956780434,-0.009341459721326828,0.038805920630693436,-0.033558301627635956,0.04477424547076225]},{"text":"I do not think, comrades, that I shall be with you for many months longer, and before I die, I feel it my duty to pass on to you such wisdom as I have acquired.","book":"Animal Farm","chapter":19,"embedding":[-0.06798829883337021,0.022571759298443794,0.017260868102312088,-0.03651459142565727,0.06931937485933304,0.04200084134936333,0.0807558074593544,-0.05503994598984718,-0.029578879475593567,-0.03991440311074257,-0.002569096628576517,0.09771355241537094,0.047313641756772995,-0.03805093094706535,-0.016779424622654915,0.0808345228433609,-0.06526222079992294,-0.048413462936878204,-0.03358933702111244,0.03308427706360817,-0.07440429925918579,0.02591363713145256,0.049003638327121735,0.06427592039108276,-0.06706997007131577,0.023753926157951355,-0.03168744593858719,0.03537709265947342,0.01300535723567009,0.02451726235449314,0.03618892654776573,-0.030406232923269272,0.012524004094302654,0.03834610804915428,-0.00016222325211856514,0.1132519468665123,0.03135332837700844,-0.029397396370768547,0.029862673953175545,-0.024761715903878212,0.02327938936650753,-0.05745207145810127,-0.01074971817433834,0.06891737878322601,0.04780556634068489,0.027961649000644684,-0.06335926055908203,0.012927822768688202,0.017071258276700974,-0.0027876964304596186,-0.08615351468324661,-0.007276018150150776,-0.07985558360815048,0.07299386709928513,0.005180254578590393,0.008274136111140251,-0.016421955078840256,0.06340954452753067,-0.014064728282392025,-0.024469200521707535,-0.09857910871505737,-0.024603895843029022,0.004885661415755749,0.01387986820191145,-0.02143705263733864,-0.042016107589006424,0.05975371226668358,0.006059109698981047,-0.16991543769836426,0.02999155968427658,-0.10781959444284439,0.04218852147459984,-0.027339912950992584,0.021304413676261902,-0.12191277742385864,0.013487495481967926,0.0044264295138418674,-0.050210967659950256,-0.007770211435854435,-0.04130756855010986,0.0033830644097179174,0.11110036820173264,0.025285467505455017,0.025047607719898224,-0.049605488777160645,-0.08763912320137024,0.018390541896224022,-0.02482309378683567,0.06234027072787285,-0.020825577899813652,-0.009047131985425949,0.017164647579193115,-0.06596603244543076,0.06581814587116241,-0.026441538706421852,-0.0015181420603767037,-0.03430186212062836,0.09030967205762863,-0.07848542183637619,0.06354428827762604,0.03289269655942917,-0.039885032922029495,-0.08445004373788834,0.008714204654097557,0.020519481971859932,0.010851427912712097,-0.03840351849794388,-0.021191170439124107,-0.015275521203875542,-0.007992434315383434,-0.01026109978556633,-0.04561083763837814,-0.02784142456948757,-0.031415101140737534,0.048500847071409225,0.06594859808683395,-0.06678452342748642,-0.014406412839889526,-0.000595134508330375,0.046699684113264084,0.02981160394847393,0.03132881969213486,-0.01766529679298401,0.08466356247663498,-0.03222960606217384,-0.0625649243593216,0.09035709500312805,-3.5329350470849384e-33,0.020190123468637466,-0.019765809178352356,-0.04206434264779091,0.06956616789102554,-0.013631743378937244,0.0014176532858982682,-0.012553364038467407,0.009554317221045494,-0.06369512528181076,0.027939770370721817,-0.04085812345147133,0.029382655397057533,0.044642746448516846,-0.0019138128263875842,-0.044938188046216965,0.004419008269906044,-0.0007309732027351856,0.03636198490858078,0.09223148971796036,-0.017398322001099586,0.05708308890461922,-0.05666452273726463,-0.03366944566369057,-0.0473693311214447,0.028653206303715706,-0.05491615831851959,0.003826235421001911,0.030795736238360405,0.007658773101866245,0.034484051167964935,0.011143098585307598,0.0865473598241806,0.017371878027915955,-0.0179610475897789,-0.06732512265443802,-0.01775694638490677,-0.06617996841669083,-0.009546611458063126,-0.04424575716257095,-0.06390910595655441,0.024222303181886673,0.01608460769057274,0.012250305153429508,0.03924882039427757,-0.0789426937699318,-0.05141298472881317,0.08955951035022736,0.012974435463547707,-0.006939173210412264,-0.07405960559844971,0.0011747991666197777,-0.021233100444078445,-0.00717510748654604,-0.005032036453485489,0.03097323514521122,0.04375991225242615,-0.037841640412807465,0.11677210032939911,0.019511470571160316,-0.10893286764621735,-0.06256029009819031,-0.12239140272140503,-0.038590606302022934,0.0526789166033268,0.030184220522642136,-0.05676388740539551,-0.1265615075826645,-0.016976991668343544,-0.030923202633857727,-0.01397999282926321,0.018777282908558846,-0.032842498272657394,-0.0832454264163971,-0.024297503754496574,-0.04910065606236458,-0.021390115842223167,0.02110385335981846,-0.023106031119823456,0.04289501532912254,-0.07142656296491623,-0.014852422289550304,-0.0030632102862000465,-0.05224044993519783,0.04319152235984802,0.10368088632822037,-0.006593735888600349,0.05020855367183685,-0.067578986287117,-0.04993613436818123,0.0005710172699764371,-0.06291172653436661,-0.035272322595119476,0.0702037662267685,-0.05295145511627197,-0.1161556988954544,5.159896278604261e-34,0.06087519973516464,0.022674808278679848,0.045606374740600586,0.06443843990564346,0.04252171143889427,-0.02632470615208149,-0.03686784952878952,0.08702289313077927,-0.03367120772600174,0.053073134273290634,0.012194638140499592,-0.015640707686543465,-0.013776944018900394,0.10331998765468597,-0.006811801809817553,-0.018066147342324257,0.025983918458223343,-0.048221487551927567,0.0030924477614462376,-0.061464615166187286,-0.06181471049785614,0.04279354587197304,-0.03657861426472664,-0.020261503756046295,-0.04430902749300003,0.0868724063038826,0.05449725314974785,-0.010301334783434868,0.0010350430384278297,-0.05455239862203598,0.00871316622942686,-0.06361181288957596,-0.11460202932357788,-0.02645445056259632,0.08096689730882645,0.07338004559278488,-0.016879085451364517,0.033387213945388794,-0.04827418923377991,0.05865733325481415,0.021999016404151917,0.027881192043423653,-0.05430641397833824,-0.031406451016664505,0.0018597719026729465,-0.07424906641244888,0.03578919544816017,-0.017093872651457787,0.031137602403759956,0.03060189262032509,-0.04025278612971306,0.0006226550322026014,-0.03419472277164459,-0.05454806610941887,0.024955373257398605,-0.06477335095405579,-0.06472345441579819,-0.02130701020359993,0.02292025275528431,-0.10911309719085693,0.06731870025396347,0.0022978868801146746,-0.045998040586709976,0.013201696798205376,0.06190923973917961,0.05074317753314972,-0.037235818803310394,0.10376747697591782,0.013610412366688251,0.1229049563407898,0.015818944200873375,-0.07154510915279388,-0.11718729883432388,0.028705120086669922,0.049486394971609116,-0.06741051375865936,0.017586233094334602,-0.0036281088832765818,-0.05125345289707184,-0.0786551982164383,0.05241946130990982,-0.08602533489465714,0.012658880092203617,0.05613436549901962,-0.02471422404050827,-0.07170949131250381,0.018097827211022377,0.0865149050951004,0.014930074103176594,0.020991461351513863,0.01027202233672142,-0.020594075322151184,0.019267193973064423,-0.061015963554382324,-0.015232371166348457,-3.67729136030448e-8,0.04020702466368675,0.0768689513206482,-0.013183139264583588,0.029076818376779556,-0.003058494534343481,-0.07714696228504181,0.08465823531150818,-0.08372989296913147,0.006596442777663469,0.0700264647603035,0.04566695913672447,0.004312073811888695,0.05301310122013092,-0.02516845613718033,0.01683672145009041,0.1359705626964569,-0.05886062979698181,-0.14226403832435608,-0.011533422395586967,-0.07029218971729279,-0.020862750709056854,0.026036547496914864,0.020907752215862274,0.008587772026658058,-0.03717989847064018,0.06366722285747528,-0.028900790959596634,0.01886313036084175,0.011622343212366104,0.036175455898046494,0.02089412324130535,0.07681415975093842,-0.054227475076913834,-0.024266839027404785,0.0172230564057827,-0.0006863087182864547,0.004644925706088543,0.04151998460292816,0.025060808286070824,0.003377564251422882,-0.031119443476200104,0.06982742995023727,0.08231727033853531,0.06950847804546356,-0.00258617103099823,-0.03370801731944084,0.001104676746763289,0.024755006656050682,-0.06262365728616714,0.013060544617474079,0.07029426842927933,0.05037783086299896,0.05323950573801994,0.06827528029680252,0.030269023030996323,0.0377969853579998,0.010180585086345673,0.085501529276371,-0.08357516676187515,-0.02257504127919674,0.044097792357206345,-0.011009372770786285,-0.03084062784910202,-0.09729646146297455]},{"text":"No animal in England knows the meaning of happiness or leisure after he is a year old.","book":"Animal Farm","chapter":19,"embedding":[0.13759669661521912,0.0734834223985672,0.052084583789110184,0.07153604924678802,0.011844451539218426,0.05258473381400108,0.027787700295448303,-0.07744792103767395,-0.08108140528202057,0.035469092428684235,0.05109807476401329,-0.028298066928982735,-0.0708281621336937,0.057745952159166336,0.023715240880846977,0.014939629472792149,-0.06212080642580986,-0.06632658839225769,0.028192946687340736,0.02301306277513504,-0.009169180877506733,0.0380549281835556,0.011949392966926098,0.04923490807414055,-0.03583864867687225,0.010268572717905045,-0.034840840846300125,0.015469009056687355,0.01781434565782547,0.10516596585512161,0.06240149959921837,0.03940917178988457,0.07355866581201553,-0.0062865158542990685,0.05234212055802345,-0.004596912767738104,0.04891543090343475,-0.05710776895284653,0.007567454595118761,0.026296677067875862,-0.03193337470293045,-0.05574886500835419,-0.004717507865279913,-0.02403005212545395,-0.006511745508760214,0.06492647528648376,-0.0052014621905982494,-0.08807086944580078,0.04282251000404358,0.001665812567807734,-0.015830788761377335,-0.002723809564486146,-0.011708694510161877,-0.09171236306428909,-0.05041349306702614,0.009217614307999611,-0.046665918081998825,-0.012127549387514591,0.006579768843948841,-0.007368883118033409,-0.02769494242966175,0.04940144717693329,0.011022905819118023,0.029454104602336884,-0.0358600951731205,-0.07708081603050232,-0.04331964626908302,0.0040033794939517975,-0.03784926235675812,-0.029139164835214615,0.017408188432455063,-0.05737382173538208,0.044195204973220825,-0.0005221973988227546,-0.05062885954976082,0.027658676728606224,-0.03267168626189232,0.05075034499168396,0.07035033404827118,-0.09094787389039993,-0.03641524165868759,-0.002215947490185499,-0.05776764824986458,0.026267316192388535,0.027159182354807854,-0.04359355568885803,-0.01775561273097992,-0.022330522537231445,-0.09360910952091217,0.013421372510492802,-0.0721030980348587,-0.06410443782806396,-0.013256708160042763,0.03469701111316681,0.015034453012049198,-0.03797093778848648,0.012412932701408863,0.055969785898923874,-0.08809058368206024,0.037442442029714584,-0.07787580043077469,0.08292005956172943,0.048938117921352386,0.1039554551243782,-0.015186253003776073,0.02741076983511448,-0.07990884780883789,0.08195165544748306,0.07854864746332169,-0.06547194719314575,-0.0868864506483078,-0.01907985471189022,0.09514971822500229,0.03467331454157829,0.02230450138449669,0.03552877530455589,-0.11635559797286987,-0.04345565289258957,-0.016614990308880806,-0.0036150459200143814,0.04396086558699608,0.10011324286460876,0.02672184444963932,0.06502131372690201,-0.025881877169013023,-0.004395610187202692,0.030306736007332802,-2.4924352021950516e-33,0.04208647832274437,-0.08849864453077316,-0.010325594805181026,0.01604999043047428,-0.016080185770988464,0.07464171200990677,-0.0548197478055954,-0.04957306757569313,0.02708633616566658,-0.032615289092063904,0.010796337388455868,-0.04128910228610039,0.0030784017872065306,-0.10941284149885178,0.001280002179555595,0.05854300409555435,0.006279188208281994,-0.008256371133029461,0.11470852792263031,-0.018014516681432724,-0.040952179580926895,-0.03792160376906395,0.049840886145830154,-0.006955706514418125,-0.0160750150680542,-0.04506603255867958,0.07738595455884933,-0.09057560563087463,0.03750273957848549,0.016081128269433975,-0.03826609626412392,-0.0015440703136846423,-0.013460131362080574,-0.06770666688680649,-0.05715639889240265,-0.0827796682715416,0.0031315486412495375,-0.1169610470533371,0.005874525755643845,0.017977695912122726,-0.038282014429569244,-0.06598753482103348,0.023772049695253372,-0.021348178386688232,-0.06086284667253494,0.06712937355041504,0.0873335748910904,-0.009123731404542923,-0.004741353448480368,0.04827508702874184,0.03990550711750984,-0.021330207586288452,0.023799791932106018,-0.11330223083496094,-0.07839687913656235,0.03553316742181778,0.049403805285692215,0.07591114938259125,-0.03114745020866394,-0.06583335995674133,0.04208029434084892,-0.013087974861264229,0.022341761738061905,-0.08091221004724503,0.08260934054851532,-0.015492909587919712,0.043345194309949875,0.002215426880866289,-0.07126759737730026,0.011679279617965221,0.06738094240427017,0.06416815519332886,-0.07487070560455322,-0.16863170266151428,0.01178702525794506,-0.014491130597889423,0.03067808784544468,-0.06762535870075226,-0.015187134966254234,-0.03335702791810036,0.05153805762529373,0.07122939079999924,-0.05931025743484497,0.0016372210811823606,0.07181011140346527,0.008556797169148922,0.07480409741401672,-0.06836222857236862,0.05115313455462456,0.010038202628493309,0.02243056520819664,-0.06311866641044617,-0.015840886160731316,-0.06140684336423874,0.05481252819299698,9.374441633178006e-34,-0.03688044846057892,-0.03974220156669617,0.002118433592841029,0.04464227706193924,-0.046111881732940674,-0.03427238017320633,-0.013427143916487694,0.05372820049524307,0.03504500538110733,0.049677636474370956,0.023368574678897858,-0.028646238148212433,0.029959464445710182,0.00042528833728283644,0.06394689530134201,-0.002129248110577464,0.03780917078256607,0.017874201759696007,-0.0047620865516364574,0.0068550617434084415,-0.0173284150660038,0.017800122499465942,-0.08043362945318222,-0.0248638316988945,0.002524933312088251,0.0486585833132267,-0.062284309417009354,-0.034451596438884735,-0.060194578021764755,-0.07500207424163818,0.021687252447009087,0.030513698235154152,-0.013813849538564682,-0.09060339629650116,0.01052384078502655,-0.06478594988584518,-0.0626763328909874,-0.02463611401617527,-0.06780731678009033,0.025440283119678497,0.04191209748387337,-0.0210055373609066,0.009395838715136051,-0.018683798611164093,0.010936553589999676,0.02834070660173893,-0.04571119323372841,0.024102943018078804,0.06515493988990784,0.09898127615451813,0.09314709901809692,0.0776766687631607,-0.0199405737221241,-0.08386050909757614,0.02786184474825859,-0.031172215938568115,-0.07407723367214203,-0.09161169081926346,0.011759363114833832,-0.08508016914129257,0.04074554890394211,-0.02015220932662487,-0.09247580915689468,0.04404124990105629,-0.06869044154882431,-0.000011676913345581852,-0.11379306018352509,-0.027043059468269348,0.006358750630170107,-0.04903938248753548,0.06331605464220047,-0.02555694617331028,-0.05071152001619339,-0.08477870374917984,-0.02592959627509117,0.058569375425577164,0.04755181074142456,0.002570540877059102,0.02417265996336937,-0.0401444286108017,-0.04185210540890694,-0.022496288642287254,0.03385517746210098,-0.013336137868463993,-0.04454781860113144,-0.08322668075561523,-0.07733957469463348,0.07549384236335754,0.004139887634664774,0.0059292931109666824,0.035812847316265106,-0.004885303787887096,-0.011000964790582657,0.04040791466832161,0.0032398912589997053,-2.0676370837691138e-8,-0.038690369576215744,0.023749349638819695,0.0058869654312729836,-0.008667172864079475,0.0510738231241703,0.03761423006653786,0.07339975237846375,-0.025293588638305664,0.04194137454032898,0.08684760332107544,0.023357367143034935,0.0015838623512536287,-0.020200809463858604,0.03616221249103546,0.04481109231710434,0.022602474316954613,0.14550156891345978,-0.004118327051401138,0.023587672039866447,0.11828538775444031,0.012558690272271633,0.021898768842220306,0.02120143361389637,0.014430119656026363,-0.12139950692653656,-0.11803128570318222,0.035795558243989944,-0.0395825020968914,-0.0029251552186906338,-0.016127727925777435,0.04568422958254814,0.020236235111951828,0.058658964931964874,-0.07290203869342804,0.017210321500897408,-0.08475524187088013,-0.03659990802407265,0.03645877167582512,-0.024623891338706017,-0.026525285094976425,0.014496338553726673,0.07919563353061676,-0.02933664247393608,0.027314716950058937,0.03918905928730965,0.02228698879480362,0.040284354239702225,0.040987592190504074,0.0034455431159585714,0.0025293133221566677,-0.03476904332637787,0.08323889970779419,0.09106580913066864,-0.010522913187742233,0.04589473083615303,-0.03956595063209534,0.02061457745730877,0.016526488587260246,-0.029977692291140556,0.02824142575263977,0.07975469529628754,-0.03651393949985504,0.03565426915884018,0.040326979011297226]},{"text":"The soil of England is fertile, its climate is good, it is capable of affording food in abundance to an enormously greater number of animals than now inhabit it.","book":"Animal Farm","chapter":19,"embedding":[0.022255297750234604,-0.0337214358150959,0.1072569340467453,0.03044217638671398,0.07632847130298615,0.023015741258859634,-0.07288089394569397,-0.0935003012418747,-0.04155096039175987,0.047150783240795135,-0.020148763433098793,-0.08449247479438782,-0.048205625265836716,0.0011240890016779304,-0.028438134118914604,-0.006283916067332029,0.014342783950269222,-0.09297497570514679,-0.06757096946239471,0.015250065363943577,-0.011642271652817726,0.09442243725061417,0.020465567708015442,0.004294991958886385,-0.039947956800460815,-0.04183552414178848,-0.02345862053334713,0.03725893422961235,0.005479659419506788,0.012471023947000504,0.004419463220983744,0.0771549642086029,0.03486627712845802,0.022796716541051865,-0.0198727548122406,0.05151203274726868,0.05155060812830925,-0.11457310616970062,0.0383726991713047,0.01870429702103138,-0.03975462168455124,-0.10591068863868713,0.09674609452486038,-0.02417137287557125,-0.05802818015217781,0.06484730541706085,0.0041490355506539345,-0.07108793407678604,0.021829666569828987,-0.07091264426708221,0.029487239196896553,0.0358450710773468,-0.03033589757978916,-0.1033889651298523,-0.03872966393828392,0.01606176793575287,0.010476930998265743,0.01245687622576952,-0.059932298958301544,-0.04918113723397255,0.01286405324935913,0.03731274604797363,-0.018562307581305504,-0.0020594028756022453,0.0978744849562645,-0.02373507246375084,-0.01780916191637516,0.05712532252073288,-0.06320061534643173,-0.004351042211055756,0.022284027189016342,0.005536928307265043,-0.0004337745485827327,-0.016454890370368958,-0.05965039134025574,0.006916999351233244,-0.0984203964471817,-0.002293513622134924,0.031800270080566406,-0.04574558883905411,0.08704181015491486,0.05866922810673714,-0.0740826204419136,0.007507555186748505,0.03792104125022888,-0.09504924714565277,0.0027318978682160378,-0.0480603463947773,0.024088384583592415,-0.012059183791279793,0.03311654180288315,-0.053441062569618225,-0.010694161057472229,0.08653049916028976,-0.003012667177245021,0.07928402721881866,0.0684843361377716,-0.0991235300898552,-0.06447961926460266,-0.031135018914937973,-0.06801249086856842,0.02924380451440811,-0.020999277010560036,-0.013499896042048931,-0.04094243422150612,-0.03718813508749008,-0.12289644032716751,0.020664485171437263,0.0029797139577567577,-0.0030958130955696106,0.009437361732125282,0.027212686836719513,-0.0029100999236106873,0.05059053376317024,0.015572655946016312,-0.015791311860084534,-0.005800483748316765,-0.07764500379562378,-0.06683635711669922,0.033721353858709335,0.0012716023484244943,0.04427269473671913,-0.030505573377013206,0.0212468933314085,0.03676118701696396,-0.07245753705501556,0.012350431643426418,-3.647855415583156e-33,-0.025147797539830208,-0.04308997467160225,0.019542446359992027,0.05473235994577408,-0.015401851385831833,-0.02122301608324051,-0.07788144052028656,0.02133003994822502,0.042059119790792465,-0.07085616886615753,-0.004149316344410181,-0.0724324882030487,-0.02980547398328781,-0.00928004551678896,-0.009665217250585556,0.006939339451491833,0.008098486810922623,0.035506658256053925,0.037040941417217255,0.09947921335697174,-0.010245048440992832,-0.02457612194120884,0.07609342038631439,0.024592764675617218,-0.006360466592013836,-0.0408426970243454,0.1042289212346077,-0.03807993605732918,-0.057714179158210754,-0.0075231981463730335,0.0932144820690155,-0.07500113546848297,-0.07988812029361725,-0.04213796555995941,-0.015123036690056324,-0.06448660790920258,0.008405609056353569,-0.0601888969540596,0.032361436635255814,0.04388614743947983,0.008467760868370533,-0.014758107252418995,0.06725554168224335,-0.03464755788445473,0.091496542096138,0.013631546869874,0.043527211993932724,0.027011564001441002,-0.03183133900165558,0.023609211668372154,0.02208460122346878,-0.058566462248563766,0.0199288222938776,-0.05588502809405327,0.010962414555251598,-0.014943107962608337,0.022586693987250328,0.06755733489990234,-0.05710534006357193,-0.005526680964976549,0.004550485871732235,-0.022721806541085243,0.029768066480755806,-0.06554830074310303,0.03560427948832512,-0.024858467280864716,0.026280272752046585,0.03390677273273468,-0.08184569329023361,0.11025478690862656,0.010549918748438358,-0.006282275076955557,-0.011290903203189373,0.02216917835175991,-0.027415743097662926,-0.0072735692374408245,-0.006932208314538002,-0.001931044738739729,0.0395222045481205,0.034027133136987686,0.014224881306290627,0.014387807808816433,-0.14191611111164093,-0.034039247781038284,0.04592485353350639,0.007317789364606142,0.03825709968805313,-0.02014206349849701,0.15616880357265472,0.02721460536122322,0.0457751601934433,-0.059204164892435074,0.01005712803453207,-0.10439414530992508,0.03664746135473251,1.7935549541472456e-33,0.0008407544228248298,0.01964736357331276,-0.07599281519651413,0.12469374388456345,-0.06752289831638336,-0.0581975057721138,0.021975181996822357,-0.01992032676935196,-0.023995304480195045,0.025211624801158905,-0.046542320400476456,0.0811443105340004,0.10545863211154938,-0.02056715078651905,0.06100766733288765,-0.03317343443632126,-0.003824514802545309,-0.008733286522328854,0.0625910609960556,0.011143743060529232,-0.028253667056560516,-0.037145692855119705,-0.038366176187992096,-0.04239955544471741,-0.03217054530978203,0.023894168436527252,-0.19679033756256104,0.047677475959062576,-0.014385527931153774,-0.03213215246796608,0.03603536635637283,0.04109179973602295,-0.02654564566910267,-0.09125059843063354,-0.012506271712481976,0.056457214057445526,0.032230883836746216,-0.0767090916633606,0.03820597380399704,0.0755971372127533,0.017741024494171143,-0.053527116775512695,0.02653561159968376,-0.03834698349237442,-0.038667336106300354,0.005962316878139973,-0.011411337181925774,-0.005670470651239157,0.11820422857999802,0.0653466060757637,0.1541648656129837,0.0580294206738472,0.0031702977139502764,-0.007795586716383696,0.040646545588970184,-0.05751912295818329,-0.04088618606328964,-0.000939484394621104,0.021540220826864243,-0.04330373927950859,-0.11539247632026672,0.06669968366622925,-0.02464844472706318,0.0040431395173072815,0.001532448106445372,0.01374075934290886,-0.057636700570583344,0.011768577620387077,-0.003652934916317463,-0.008609574288129807,-0.0018354033818468451,-0.039976708590984344,0.05949971079826355,0.014761516824364662,0.03923078626394272,0.0742327868938446,0.07425069808959961,-0.026184596121311188,-0.005373709369450808,-0.029888568446040154,-0.027664780616760254,-0.04089678078889847,0.08602896332740784,-0.026611415669322014,-0.02780178189277649,0.023120179772377014,-0.008080514147877693,-0.016452813521027565,0.02767493575811386,0.03265834599733353,-0.043444905430078506,-0.03617260605096817,0.03180548921227455,-0.020692944526672363,0.12649667263031006,-3.067794196454088e-8,-0.00030594298732466996,-0.06803654879331589,0.02333845943212509,0.010798489674925804,0.05105825886130333,-0.1020924299955368,0.0612897127866745,0.06910646706819534,0.10744407027959824,0.09115803986787796,-0.0663200095295906,0.05313926190137863,-0.004913540557026863,0.007991023361682892,0.08462376147508621,0.03386266529560089,-0.04684019833803177,-0.07844987511634827,-0.05578964576125145,0.05041111260652542,0.001065150834619999,0.0014041465474292636,-0.05868402495980263,-0.025600414723157883,0.01936969719827175,-0.030569659546017647,0.019645478576421738,-0.05730798467993736,-0.016717001795768738,0.028747200965881348,0.08423351496458054,-0.036894336342811584,0.033923447132110596,0.009231246076524258,-0.034750718623399734,-0.009301478043198586,-0.021515892818570137,0.038238294422626495,0.05314693972468376,-0.07832016795873642,-0.005285256542265415,0.021529190242290497,-0.057162389159202576,0.018634580075740814,0.01450671162456274,-0.017539573833346367,-0.07844092696905136,0.09268978983163834,-0.06524905562400818,-0.010731237940490246,-0.05389051511883736,-0.01275166217237711,0.09179066121578217,0.020933905616402626,0.02549111098051071,-0.0189494825899601,0.029991399496793747,-0.0028539069462567568,0.07098881155252457,0.08297936618328094,-0.03339015692472458,0.06329353153705597,0.024639734998345375,-0.044839128851890564]},{"text":"It is summed up in a single word--Man.","book":"Animal Farm","chapter":19,"embedding":[0.06738279014825821,0.07395703345537186,0.019581591710448265,0.04164658114314079,0.005057859234511852,-0.02630060538649559,0.09084765613079071,-0.022553659975528717,0.020461292937397957,0.0070290593430399895,-0.0030339201912283897,-0.030183671042323112,0.06926662474870682,-0.0353504940867424,-0.03246873617172241,0.03048892877995968,-0.06064445897936821,-0.02115730009973049,0.004188006743788719,-0.021253714337944984,0.02106986939907074,-0.0023146672174334526,0.016913114115595818,-0.017374662682414055,0.05534755438566208,-0.016928747296333313,-0.058711711317300797,0.01349107176065445,-0.03508857265114784,0.0276118665933609,0.03279832378029823,0.0751090794801712,0.05282953009009361,0.04309055209159851,-0.0312004704028368,0.016247326508164406,-0.01099367719143629,0.023216774687170982,0.044168129563331604,0.002005064394325018,0.0134606147184968,-0.02965341880917549,0.018712883815169334,0.022412514314055443,0.03442820534110069,0.013802151195704937,-0.07746326923370361,-0.008391828276216984,0.09658665955066681,-0.08901109546422958,-0.01921924389898777,0.01928054541349411,-0.039090171456336975,0.02525329776108265,0.042324330657720566,0.032202646136283875,-0.07128755003213882,0.08044516295194626,-0.029649391770362854,-0.04796832799911499,0.04715515300631523,0.010492776520550251,-0.0056044659577310085,0.06935997307300568,0.2167903184890747,-0.07907900959253311,-0.02269907295703888,0.0008998765260912478,-0.12905745208263397,0.12058336287736893,0.06986541301012039,0.03187326714396477,0.05435793101787567,0.0003450378426350653,-0.021293384954333305,-0.0467398464679718,0.005978425033390522,-0.043523114174604416,0.05971195548772812,0.043687015771865845,-0.04297511652112007,0.044091641902923584,-0.018780024722218513,-0.034801460802555084,-0.006667028646916151,-0.0016918579349294305,0.024259505793452263,-0.11755574494600296,0.0498824417591095,0.05290791392326355,-0.12430828809738159,-0.08906105160713196,0.030151860788464546,-0.0406697653234005,-0.03996771201491356,-0.07158852368593216,-0.10846306383609772,0.12881460785865784,-0.0830540582537651,0.024509750306606293,-0.0354057177901268,0.029821932315826416,0.027940139174461365,-0.031008608639240265,-0.012681216932833195,-0.03732447698712349,-0.022834064438939095,0.059553973376750946,-0.032407768070697784,-0.016906585544347763,-0.08577769994735718,-0.031860217452049255,0.04930770769715309,0.06567902863025665,-0.03788375109434128,0.08581972122192383,-0.0025854792911559343,0.03431582823395729,0.013252324424684048,0.03226495161652565,-0.00728388549759984,0.04547000676393509,0.0594434030354023,0.09233051538467407,-0.021081604063510895,-0.12958979606628418,0.05297352746129036,-5.5163323388899834e-33,-0.006600694730877876,-0.03436848521232605,0.034296486526727676,0.06955990195274353,0.04330461472272873,-0.06118461489677429,-0.05951518192887306,0.013975248672068119,0.024218158796429634,0.08120707422494888,0.05658961459994316,0.013901161961257458,-0.03022371046245098,0.02489709109067917,-0.02278035506606102,0.06082728132605553,-0.09254053235054016,0.03911879286170006,0.007686599623411894,0.034444015473127365,0.041105106472969055,0.09865422546863556,-0.021584652364253998,-0.0500517375767231,-0.06668441742658615,-0.04541202262043953,0.05248710513114929,0.0730724036693573,0.0047768657095730305,0.035656582564115524,0.03298357501626015,0.07313492894172668,0.017427433282136917,0.0066688526421785355,-0.014331388287246227,-0.016356321051716805,0.03760860487818718,-0.03773661330342293,-0.03303123265504837,-0.0034049388486891985,-0.10383832454681396,-0.01880812831223011,-0.04768696054816246,-0.09490139037370682,0.014158803038299084,0.03377459570765495,-0.03841995447874069,-0.009962578304111958,-0.0004217763780616224,-0.005551605951040983,-0.03866909444332123,0.05014042556285858,0.1339414119720459,-0.03097771294414997,-0.0693906769156456,0.043155279010534286,0.0025011207908391953,0.07160713523626328,0.019771968945860863,0.002268513198941946,-0.05623739957809448,0.06742015480995178,0.0027570484671741724,0.032007671892642975,0.08595521748065948,-0.004495549015700817,-0.005372518673539162,0.0281386636197567,-0.02931259386241436,0.07932870835065842,-0.01215692050755024,0.036953698843717575,0.003032800043001771,0.05596049875020981,0.03373638167977333,-0.05276878923177719,0.06150900200009346,-0.03912632167339325,0.009987919591367245,0.0774608924984932,-0.05492335185408592,-0.043596185743808746,0.042185667902231216,-0.02771247923374176,-0.02965405024588108,0.040925461798906326,0.006463067606091499,-0.059170257300138474,0.001458178972825408,-0.018810419365763664,-0.046233225613832474,0.030115168541669846,0.03153301402926445,-0.07325707376003265,-0.0649968683719635,3.163466887045924e-33,-0.12229759246110916,-0.06368522346019745,-0.055706411600112915,0.08366648107767105,0.010667894035577774,0.03298250213265419,0.008365483023226261,0.03125762566924095,-0.0024131915997713804,0.03043319843709469,-0.010960765182971954,-0.02611479163169861,-0.035217493772506714,0.0031991079449653625,0.0323067270219326,-0.04979715868830681,0.010422865860164165,-0.034169260412454605,0.013893138617277145,0.0882338285446167,0.001146127237007022,0.009051305241882801,-0.02246285043656826,-0.04330246523022652,-0.015744313597679138,0.0076370821334421635,0.01285184919834137,-0.04259030148386955,-0.007096445187926292,0.031721312552690506,0.05738041549921036,-0.026034340262413025,-0.1755913645029068,-0.024662891402840614,-0.05369650200009346,0.05196729302406311,0.03348488360643387,-0.005794615019112825,-0.008917801082134247,0.0031382564920932055,-0.06041940301656723,-0.04776753485202789,-0.06510186195373535,-0.016214480623602867,0.03871292248368263,-0.04659310728311539,-0.00573675287887454,-0.02588685415685177,-0.05076035484671593,0.0035307600628584623,-0.03837377578020096,0.04500818997621536,-0.08233283460140228,-0.037208810448646545,-0.02698570489883423,-0.06612176448106766,0.022676749154925346,-0.05238863080739975,-0.11712280660867691,-0.037653930485248566,-0.08138708770275116,-0.040786419063806534,-0.07492797821760178,0.07549690455198288,-0.029965871945023537,0.028522642329335213,0.007293471600860357,-0.05105868726968765,-0.031790271401405334,0.015836045145988464,0.07570900022983551,0.02482689917087555,-0.01144206989556551,0.03795132413506508,0.021736958995461464,0.0024092469830065966,0.0003942601615563035,-0.05355444550514221,-0.015153822489082813,-0.08373134583234787,0.015640124678611755,-0.08792807906866074,0.017537003383040428,-0.03145071864128113,-0.04836931824684143,-0.004936274141073227,-0.018418842926621437,0.06164408475160599,-0.022234365344047546,0.12081748992204666,-0.06290159374475479,-0.07277215272188187,0.002704175654798746,-0.06542284041643143,-0.03951000049710274,-2.7042299066692976e-8,0.01732424646615982,0.03242599591612816,-0.015846924856305122,-0.05662044137716293,0.06952448934316635,-0.015227792784571648,0.07122965157032013,-0.029409123584628105,0.012871744111180305,-0.026055220514535904,0.018645213916897774,0.020127007737755775,-0.08337622135877609,-0.007750534452497959,0.038289304822683334,0.08108393102884293,-0.011707370169460773,0.01878993771970272,-0.06627514958381653,0.024333329871296883,0.022927667945623398,0.06496788561344147,-0.016786204650998116,-0.06754256039857864,0.009579991921782494,0.0895359143614769,-0.08363135904073715,0.01526293158531189,-0.03142610564827919,-0.0344366654753685,0.05544941499829292,0.06420832872390747,-0.11015289276838303,0.010551948100328445,0.03719073534011841,0.06684795022010803,0.03517771139740944,0.06256936490535736,0.0455038957297802,-0.023426830768585205,-0.020446114242076874,0.05378983914852142,0.06578835844993591,0.08277132362127304,0.09022797644138336,0.0307569969445467,-0.019190410152077675,0.031020522117614746,-0.05387239530682564,0.025213435292243958,0.0891750231385231,0.07782386988401413,0.043266747146844864,0.011297237128019333,0.05494892969727516,-0.044717829674482346,0.004209427163004875,0.02596217952668667,-0.019233357161283493,-0.04139026626944542,0.024410519748926163,-0.0836370438337326,0.04677818715572357,-0.023914476856589317]},{"text":"He sets them to work, he gives back to them the bare minimum that will prevent them from starving, and the rest he keeps for himself.","book":"Animal Farm","chapter":20,"embedding":[0.03684743866324425,0.10027328878641129,-0.02003038115799427,0.06301131844520569,-0.06156222149729729,0.007278444245457649,0.06430026143789291,-0.03988231346011162,-0.08042832463979721,-0.029735315591096878,0.009369832463562489,0.025227446109056473,-0.04801906645298004,0.02273435704410076,-0.005935330875217915,-0.04387928172945976,0.011741583235561848,-0.02633940987288952,-0.058920908719301224,-0.011862860061228275,0.04436948895454407,-0.029914041981101036,0.05485435202717781,-0.0042270184494555,-0.0031877115834504366,0.006767699960619211,-0.023585237562656403,-0.03903873637318611,0.027501830831170082,-0.024254221469163895,-0.012203230522572994,-0.10525694489479065,0.04380042478442192,-0.005073327571153641,-0.03818599507212639,0.056072428822517395,0.0260346420109272,0.027470005676150322,-0.0546872653067112,0.019632047042250633,0.058964431285858154,-0.04817945510149002,-0.06735765188932419,0.02213183045387268,-0.09397409111261368,0.0070066750049591064,-0.03165767341852188,-0.00976934190839529,0.08645155280828476,-0.05268235132098198,-0.002891629934310913,-0.03945203498005867,-0.050400424748659134,0.009975268505513668,0.06746431440114975,0.04052088409662247,0.0554492250084877,0.012700896710157394,0.01290997676551342,-0.02368888445198536,0.055043503642082214,0.05682164430618286,-0.05369896441698074,0.050855010747909546,0.09707917273044586,0.019978422671556473,-0.027107475325465202,0.03805343061685562,-0.09635165333747864,0.085105299949646,0.024632779881358147,0.009290528483688831,0.06994011253118515,-0.013043355196714401,0.026952248066663742,-0.05863988399505615,-0.010611706413328648,-0.06197870150208473,0.05707148090004921,-0.010784080252051353,-0.09971367567777634,-0.02619166113436222,0.011197018437087536,0.044116489589214325,-0.04465240612626076,-0.000044994423660682514,0.02590078115463257,-0.11959398537874222,0.08700826019048691,0.025065692141652107,-0.03832170367240906,-0.057072076946496964,-0.013521487824618816,0.035830941051244736,-0.07648202031850815,0.027307432144880295,-0.006255931220948696,-0.0020149131305515766,-0.12585482001304626,0.01275560911744833,-0.010084391571581364,-0.03330940753221512,0.10625617206096649,0.008908026851713657,0.0429222509264946,-0.04278092086315155,-0.07064861804246902,-0.008631139062345028,-0.007443542126566172,0.08016318082809448,0.0017376000760123134,0.0030282309744507074,0.02054639719426632,0.08516769856214523,-0.02547832950949669,0.08403845131397247,-0.08162906765937805,-0.0432727225124836,-0.07057493925094604,0.05583216995000839,0.00988042913377285,0.0538608692586422,0.036954108625650406,0.0354638509452343,-0.029827982187271118,0.025788364931941032,0.001692071440629661,-2.270849557948258e-33,0.034273721277713776,-0.060362935066223145,0.03930402174592018,0.008538714610040188,0.0006215886678546667,0.02255239151418209,-0.05918293818831444,0.027567969635128975,0.06983287632465363,0.0009417764958925545,-0.07384128123521805,-0.025039462372660637,0.028921762481331825,0.09963392466306686,-0.09782940149307251,-0.09290938824415207,0.048834722489118576,-0.0029095401987433434,0.04248518496751785,-0.007258589379489422,-0.04205373674631119,0.03744153305888176,0.039964307099580765,-0.020121706649661064,0.11566192656755447,-0.029452430084347725,0.0005731830024160445,-0.008444140665233135,0.0011258987942710519,0.03095194324851036,-0.032846130430698395,0.08672847598791122,0.00996989756822586,-0.020302651450037956,-0.036089133471250534,0.07386322319507599,-0.017257630825042725,0.03175013139843941,-0.09576323628425598,-0.025185056030750275,0.05255281180143356,0.02769547887146473,0.07281997799873352,0.03912210091948509,-0.04515279829502106,-0.028759194537997246,0.041909005492925644,0.039728935807943344,-0.025548232719302177,0.037872590124607086,0.06657238304615021,0.013603807426989079,-0.01469329185783863,-0.08636730164289474,0.03681854531168938,-0.05005296692252159,-0.033678919076919556,-0.04845550283789635,-0.03391677513718605,-0.04365941137075424,0.10584723204374313,-0.09041440486907959,0.033379875123500824,0.07347410917282104,-0.02057098038494587,0.058289218693971634,-0.008387361653149128,-0.043905287981033325,-0.07199728488922119,0.05382958799600601,-0.1085720807313919,-0.0034824286121875048,-0.029807401821017265,-0.02526760660111904,-0.046530257910490036,-0.0020410637371242046,0.01328097190707922,-0.011783024296164513,-0.058302395045757294,-0.02292894758284092,0.08852163702249527,-0.0030544158071279526,0.00810765940696001,0.06299911439418793,-0.03661530092358589,0.021647844463586807,-0.02450934611260891,-0.013327852822840214,0.07212032377719879,0.021445635706186295,0.004365201573818922,-0.017926380038261414,0.043383438140153885,-0.011137550696730614,-0.04830877482891083,3.398966710986607e-34,-0.04677243530750275,0.03299818933010101,-0.03949013352394104,0.06257472187280655,0.036220114678144455,0.01031826063990593,-0.0885484516620636,-0.043250180780887604,0.06063532456755638,0.05321938917040825,-0.08085685223340988,0.024695124477148056,-0.03693949431180954,-0.00741742504760623,-0.06717788428068161,-0.04272866249084473,0.03153672441840172,-0.06139286607503891,-0.005922899581491947,-0.10841366648674011,-0.01687515154480934,0.034644659608602524,0.015592386946082115,-0.015170298516750336,0.001081216731108725,0.03693174570798874,-0.03710207715630531,0.01283255685120821,-0.06558934599161148,-0.07952667772769928,0.02526898682117462,-0.07804859429597855,-0.06308705359697342,-0.004806118551641703,-0.01998089998960495,0.006072207819670439,-0.17369148135185242,0.045150548219680786,-0.012103150598704815,-0.0039166901260614395,0.08564621210098267,-0.06679733842611313,-0.029446890577673912,0.05961170047521591,-0.012664517387747765,0.022308116778731346,0.07784009724855423,-0.022739166393876076,-0.045306138694286346,-0.011539283208549023,0.04837265983223915,-0.0815635547041893,-0.02119421772658825,-0.016640694811940193,-0.06901158392429352,-0.00779729662463069,-0.012175166048109531,-0.0182472076267004,0.07566491514444351,-0.06293169409036636,-0.07197984308004379,-0.0685853585600853,0.042830388993024826,0.10514646768569946,-0.06584767997264862,-0.00014481729886028916,0.023203212767839432,0.01870632916688919,0.06902579963207245,-0.0351133868098259,0.0741829052567482,-0.0062292031943798065,0.09012212604284286,-0.05033791810274124,-0.03136526420712471,0.06325368583202362,-0.05623188614845276,-0.07552231848239899,0.004863521084189415,-0.09034199267625809,0.014248063787817955,-0.13963142037391663,0.05562182143330574,0.02334810420870781,0.00742618553340435,0.004213767591863871,0.0153956925496459,0.034797657281160355,-0.01454913429915905,0.12013024836778641,0.015971766784787178,-0.043211933225393295,0.08083586394786835,0.02415580302476883,0.036684755235910416,-2.7285226522621997e-8,0.05925273522734642,-0.015089749358594418,-0.044722896069288254,-0.02058948203921318,-0.028538350015878677,-0.0007802091422490776,-0.003978862427175045,-0.010898571461439133,0.0027320249937474728,0.10740315169095993,0.06968618929386139,0.09190017729997635,0.058230578899383545,0.02952742949128151,0.04491472989320755,0.003236708464100957,0.05412472039461136,-0.038114454597234726,-0.09347370266914368,-0.014229756779968739,-0.051134828478097916,-0.01720697432756424,0.020025115460157394,0.031244412064552307,0.059156715869903564,-0.024859972298145294,-0.04061146825551987,0.0978541448712349,0.049236975610256195,0.1312827169895172,0.06742550432682037,-0.003462179098278284,-0.01150390226393938,0.021442484110593796,-0.012878065928816795,0.04043591767549515,-0.004983069840818644,0.04004482179880142,0.08621953427791595,-0.020090073347091675,-0.029264384880661964,-0.03933946043252945,-0.026510456576943398,0.014941420406103134,-0.07295018434524536,-0.043680593371391296,-0.03073308616876602,0.09040340036153793,-0.004100881516933441,-0.008873158134520054,-0.04420345649123192,0.02579815685749054,0.07615849375724792,-0.029939226806163788,0.0606076680123806,-0.1306527853012085,0.053954098373651505,-0.04285753145813942,0.014661476016044617,0.013664446771144867,-0.0766981840133667,0.04573357105255127,-0.021766958758234978,-0.0038118327502161264]},{"text":"And you hens, how many eggs have you laid in this last year, and how many of those eggs ever hatched into chickens?","book":"Animal Farm","chapter":20,"embedding":[0.03334685042500496,-0.06481917202472687,0.0041738939471542835,0.027572162449359894,0.03908798471093178,-0.009995739907026291,-0.020342782139778137,0.004208459053188562,0.0378541499376297,-0.02074131928384304,0.01897897571325302,-0.08634582906961441,-0.052354007959365845,0.02335410751402378,0.022548731416463852,0.02075400948524475,-0.0957646518945694,-0.14818789064884186,-0.011977790854871273,-0.005558676086366177,-0.013073963113129139,-0.048643045127391815,0.0005116453394293785,-0.019918320700526237,-0.021631544455885887,-0.011619357392191887,-0.06727300584316254,0.014466620050370693,-0.06372042000293732,-0.014113773591816425,-0.01064518466591835,0.03908241167664528,0.023635979741811752,-0.015197730623185635,0.0622650571167469,-0.051636189222335815,-0.03669985011219978,-0.03548650071024895,0.05287763848900795,-0.0028219157829880714,0.08212944865226746,-0.061441805213689804,0.10373816639184952,-0.04212499409914017,-0.0011097643291577697,0.036923572421073914,-0.021456602960824966,0.021329550072550774,0.03539638593792915,0.01794891431927681,-0.0021297468338161707,0.013179282657802105,0.003068622900173068,0.14446569979190826,0.06462053954601288,0.10109841823577881,-0.08529271185398102,-0.023092731833457947,-0.06327251344919205,-0.0249418206512928,-0.07728452980518341,0.0367700420320034,-0.01949479803442955,0.01566523313522339,-0.0362229160964489,0.08112524449825287,-0.04916859418153763,0.023806527256965637,0.042156070470809937,0.011580362915992737,-0.003448143135756254,0.07620730996131897,-0.034837737679481506,0.024557657539844513,-0.03759625181555748,0.039913881570100784,0.06737518310546875,-0.02413473278284073,0.10236528515815735,-0.07571759074926376,-0.0590883269906044,-0.028182484209537506,-0.020866937935352325,-0.02086193859577179,-0.03467404842376709,-0.027074115350842476,0.03055581822991371,0.09579256922006607,-0.05538397282361984,-0.04989400506019592,0.003180036786943674,0.013406737707555294,0.004022972192615271,0.06791409850120544,0.08188571035861969,0.029122158885002136,0.028418760746717453,0.020183522254228592,-0.045010630041360855,0.0014932624762877822,-0.01981130614876747,-0.03981320559978485,0.020896002650260925,-0.05271662771701813,0.01652304083108902,0.07194173336029053,-0.06391748040914536,-0.02902504988014698,-0.05564834550023079,-0.022207647562026978,-0.05418656766414642,-0.06349329650402069,0.0672011747956276,0.08564336597919464,0.05522657558321953,-0.03372414782643318,-0.00643515307456255,0.07824357599020004,0.011659277603030205,0.1161186620593071,0.0331231951713562,0.07603899389505386,0.03140934556722641,0.022370994091033936,-0.05914345383644104,-0.029155967757105827,-0.05080553889274597,-1.2029753883635971e-33,0.019412266090512276,-0.03801844269037247,0.08143887668848038,0.10114893317222595,0.014630356803536415,-0.05317191779613495,-0.04229792207479477,0.013281255029141903,0.02260439284145832,0.021419210359454155,-0.015662724152207375,-0.08190664649009705,-0.02210051938891411,-0.02984343096613884,0.05604014918208122,0.013687781989574432,0.08509045839309692,0.02313540130853653,0.020442066714167595,0.04097233712673187,-0.04780500382184982,-0.04765412583947182,0.0016504233935847878,0.021097417920827866,0.0731789618730545,0.0041422550566494465,0.026233123615384102,-0.11634581536054611,-0.051734983921051025,0.01125424262136221,0.06382536888122559,-0.03456905111670494,-0.034844864159822464,-0.05776907876133919,0.0008485732832923532,0.042151711881160736,0.08836159110069275,-0.05093618482351303,-0.05676537752151489,0.04464728757739067,0.05277023836970329,-0.10490439832210541,0.03437390550971031,0.024654455482959747,-0.01432671770453453,-0.07727664709091187,-0.03513531759381294,0.02880692481994629,-0.026865452527999878,0.02806265465915203,-0.01659223437309265,-0.043186359107494354,-0.07046172022819519,-0.06389287859201431,0.03819119930267334,-0.09761285781860352,0.007243563886731863,-0.03890703618526459,-0.01558222807943821,0.06774498522281647,-0.06057167425751686,-0.004279660526663065,-0.020359152927994728,-0.06551710516214371,-0.010147863067686558,-0.07604409009218216,-0.09835980087518692,-0.021798869594931602,-0.09303472936153412,0.10836879163980484,0.06377974897623062,-0.09278156608343124,-0.0411212332546711,-0.04625676944851875,0.040038593113422394,-0.026641666889190674,0.027937043458223343,-0.006930795032531023,0.04477207362651825,-0.009364082477986813,0.09117492288351059,0.0891469419002533,-0.061078302562236786,-0.03410941734910011,0.001281221630051732,0.009676728397607803,0.016542360186576843,0.05176420137286186,0.07665444910526276,-0.03921385854482651,0.08047281205654144,-0.02424466982483864,0.07882551103830338,-0.07015545666217804,-0.07329362630844116,-5.523229643828929e-34,-0.06853225827217102,0.07624581456184387,-0.07895282655954361,0.020282113924622536,-0.020435888320207596,-0.061639681458473206,0.056044649332761765,0.09430611878633499,-0.004341248422861099,-0.005063082557171583,0.07784341275691986,-0.000600174069404602,0.02788924053311348,0.02728777378797531,-0.02432907186448574,0.04916121065616608,-0.06296602636575699,-0.01671203039586544,0.081514872610569,-0.052791573107242584,-0.08627419918775558,0.024322543293237686,0.033182840794324875,0.08804032951593399,-0.011653653346002102,0.039927031844854355,0.05215425789356232,0.05205172300338745,-0.02908988483250141,-0.02611720561981201,-0.04585351422429085,-0.11519542336463928,0.0017721098847687244,-0.028001347556710243,-0.0045854258351027966,0.04598147049546242,0.09636246412992477,-0.07367179542779922,0.03368501365184784,-0.07309769093990326,-0.026853127405047417,0.00619911914691329,-0.01606665924191475,0.0038030908908694983,-0.035516735166311264,-0.0035357996821403503,0.02910182997584343,-0.0025889298412948847,0.05141744390130043,0.055895961821079254,0.007246959488838911,-0.06323233246803284,-0.042023561894893646,-0.07102145999670029,-0.025494474917650223,0.03423567861318588,-0.041981663554906845,0.034643687307834625,0.05822483450174332,0.009366368874907494,-0.059456486254930496,0.061690669506788254,-0.0265826229006052,0.0406961515545845,0.04175768047571182,-0.025475166738033295,-0.054885197430849075,-0.03479747846722603,-0.06291930377483368,-0.11988788843154907,-0.027994617819786072,0.014073428697884083,-0.0258146021515131,0.013549978844821453,-0.05398958921432495,-0.04498721659183502,0.05174066498875618,-0.05219217762351036,0.08198587596416473,-0.05170430615544319,-0.08534175157546997,-0.033110637217760086,0.0668596625328064,-0.026589177548885345,-0.040560267865657806,-0.10364328324794769,0.100583016872406,0.04918375238776207,0.024413486942648888,0.050729747861623764,-0.018869176506996155,0.026763804256916046,0.02030509151518345,-0.04323165863752365,0.06252087652683258,-2.3541158356010783e-8,0.06285913288593292,0.10486818850040436,-0.0131275849416852,0.016993947327136993,0.12015845626592636,0.0052628968842327595,0.06103495508432388,0.02795351669192314,0.06668365001678467,-0.04898460581898689,-0.028236515820026398,0.007969008758664131,-0.005477532744407654,-0.06223861500620842,0.0759439468383789,0.011322230100631714,-0.01577722281217575,0.026725348085165024,0.012895498424768448,-0.05243683233857155,0.02866889163851738,0.0813898965716362,-0.024805165827274323,0.005659841001033783,-0.015534468926489353,0.03508199751377106,0.06463596969842911,0.06293343752622604,-0.0049555120058357716,-0.018393585458397865,0.0029779034666717052,-0.02609441988170147,-0.00777678657323122,-0.04535539820790291,-0.013579181395471096,0.0035071333404630423,-0.04389559105038643,0.0011683462653309107,0.017056666314601898,-0.06861457228660583,-0.06498274207115173,-0.017595842480659485,-0.023349344730377197,-0.018418049439787865,0.008890951052308083,0.021774664521217346,-0.03350327908992767,-0.08387396484613419,-0.06813284009695053,-0.027119701728224754,0.04297686368227005,0.012016293592751026,0.15090739727020264,0.0659245029091835,0.03604863956570625,-0.06662948429584503,0.0064789545722305775,-0.009813282638788223,0.0201772041618824,0.06078304722905159,0.03611397743225098,0.002777768298983574,-0.02203449420630932,0.0009736997308209538]},{"text":"For myself I do not grumble, for I am one of the lucky ones.","book":"Animal Farm","chapter":20,"embedding":[-0.007031561806797981,-0.03235357254743576,0.0698649138212204,-0.1218709945678711,0.00032954566995613277,-0.12369727343320847,0.12634041905403137,0.008418971672654152,0.034681420773267746,-0.13421565294265747,-0.0075525217689573765,-0.06351612508296967,0.035315800458192825,-0.023410268127918243,0.017351839691400528,-0.07028922438621521,-0.050115738064050674,-0.07112491130828857,0.03514183685183525,0.05728058144450188,-0.07425541430711746,0.017347369343042374,-0.04062037169933319,-0.018604101613163948,-0.03438213840126991,0.0013764322502538562,-0.011248333379626274,-0.05727440118789673,-0.04110530763864517,-0.023889515548944473,-0.04082111641764641,0.013231990858912468,0.07007873058319092,0.06810139864683151,0.022724008187651634,0.03038296289741993,0.04242483526468277,0.02594223991036415,0.06398174911737442,0.008500175550580025,-0.0017457696376368403,0.06597335636615753,0.023633521050214767,0.00743688503280282,0.06491898000240326,-0.0605604387819767,0.03172094002366066,0.02613120712339878,-0.049352340400218964,-0.018578538671135902,-0.012067430652678013,-0.03223111107945442,-0.050774604082107544,0.0045556966215372086,0.07451111823320389,0.025758445262908936,-0.00611128518357873,0.07669870555400848,-0.015022487379610538,0.041638921946287155,0.04581369087100029,-0.054864682257175446,-0.005781271960586309,0.014114703051745892,0.03246605396270752,-0.016591569408774376,0.06770619750022888,-0.027939122170209885,-0.07445551455020905,0.07081427425146103,-0.07611381262540817,-0.018907930701971054,0.0238663200289011,0.10389436781406403,-0.06801625341176987,0.008398815989494324,-0.01066916435956955,-0.10380389541387558,0.06719566136598587,0.1612129956483841,-0.01834813877940178,0.04541315138339996,-0.04078977555036545,-0.04110467806458473,-0.01760092005133629,-0.1388043761253357,0.09402147680521011,0.0056052738800644875,0.04519310221076012,-0.0406394861638546,-0.07352936267852783,-0.032066527754068375,0.028836971148848534,0.04703853279352188,-0.06717704981565475,0.05657228082418442,-0.04733501002192497,-0.0022813298273831606,-0.1011614128947258,0.040963463485240936,-0.06412708014249802,-0.015660937875509262,0.03821500390768051,0.0315166711807251,0.03771835193037987,0.04655591771006584,-0.11794204264879227,0.02766886167228222,-0.06952355057001114,-0.060169804841279984,-0.11767055094242096,0.05795329064130783,0.12542593479156494,0.01380678080022335,0.01976310834288597,-0.03605847433209419,-0.008420533500611782,0.04644659534096718,-0.0030254325829446316,0.015383883379399776,0.008238823153078556,0.08431271463632584,-0.04964768514037132,0.040267445147037506,-0.026433469727635384,-0.034962598234415054,0.029583247378468513,-4.1714661498454974e-33,0.04663769155740738,0.03574554994702339,0.02350384183228016,0.037570443004369736,0.01157932449132204,0.051720619201660156,-0.03988656401634216,0.041197989135980606,0.03437032550573349,0.035865262150764465,0.04759310558438301,0.01416685339063406,-0.03281706944108009,-0.020485591143369675,-0.05132638290524483,0.11422926932573318,-0.0932060182094574,-0.0018436680547893047,0.018181482329964638,0.04818304255604744,-0.003407668322324753,-0.03704560920596123,0.03021719679236412,-0.09968159347772598,-0.038376349955797195,0.007772866636514664,0.06659769266843796,-0.034112151712179184,-0.0314955972135067,-0.012155498377978802,-0.04941660538315773,-0.018229730427265167,0.07826485484838486,0.018295299261808395,-0.04927390068769455,0.01924973540008068,0.06326993554830551,0.021048828959465027,-0.04120348021388054,-0.0413842648267746,-0.03880304470658302,0.050757985562086105,-0.002378531964495778,0.019578399136662483,-0.007975785993039608,-0.03938903287053108,-0.016403762623667717,0.052938953042030334,-0.040353789925575256,-0.01570611447095871,-0.0026749910321086645,0.0226939357817173,-0.0010615632636472583,0.013723720796406269,-0.026662394404411316,-0.07036887854337692,0.0518224872648716,-0.07135870307683945,-0.03755206614732742,0.0031661491375416517,0.008885016664862633,-0.03802328556776047,0.02911989763379097,-0.12674950063228607,-0.01753145270049572,0.04784824699163437,-0.049331195652484894,-0.021163756027817726,-0.02866204082965851,0.0015653094742447138,0.053750112652778625,-0.016890032216906548,-0.029157698154449463,-0.04144860804080963,0.034481462091207504,0.015786711126565933,0.02868294157087803,-0.07051263004541397,0.11370953172445297,-0.03640040382742882,0.020796388387680054,0.013569841161370277,-0.03645884618163109,-0.062374938279390335,0.07550898939371109,-0.0067248172126710415,0.024734148755669594,-0.046578001230955124,-0.014502099715173244,0.005628177896142006,-0.06650849431753159,-0.0351877398788929,0.08092571794986725,-0.06479576975107193,-0.01346617378294468,2.2806820171799094e-33,-0.001177244703285396,0.020638786256313324,-0.03078106790781021,0.01962834782898426,-0.022916853427886963,-0.03871992975473404,-0.05443097651004791,-0.03506387770175934,-0.07708696275949478,0.06348071247339249,0.0029915072955191135,-0.017150284722447395,-0.006224994082003832,0.06251244246959686,-0.043042656034231186,-0.047891970723867416,0.05372767150402069,-0.07388482987880707,-0.07762850075960159,-0.09474749118089676,-0.05261993035674095,0.048825282603502274,-0.018888741731643677,0.07615222781896591,-0.07681165635585785,-0.022883731871843338,0.0769413560628891,-0.021101411432027817,0.01383162196725607,-0.13931846618652344,0.04974212124943733,-0.0455387607216835,-0.09658531099557877,-0.020679419860243797,0.0538836345076561,0.06242246553301811,-0.04031270742416382,0.06279296427965164,-0.01648744009435177,-0.08755999803543091,-0.009733516722917557,0.0037361537106335163,-0.011420372873544693,0.052772168070077896,0.063646100461483,-0.02612052857875824,0.1516294777393341,-0.01891353912651539,-0.013230578042566776,0.022811491042375565,-0.01811552420258522,-0.0279884971678257,0.02319418638944626,0.06433490663766861,0.06297361105680466,0.02885536476969719,0.0189488735049963,0.010593860410153866,0.02028743550181389,-0.029891211539506912,-0.12190083414316177,0.02350945770740509,-0.05114594101905823,0.041591547429561615,0.027571501210331917,-0.03755420446395874,-0.020458199083805084,0.16553844511508942,-0.04265552759170532,-0.0010989075526595116,-0.00920846313238144,0.008871889673173428,0.010527043603360653,-0.055500902235507965,0.03141230717301369,0.021584663540124893,-0.05529125779867172,-0.009655231609940529,0.019887609407305717,-0.06252620369195938,0.02334883250296116,0.018642494454979897,-0.013792134821414948,0.05189264565706253,-0.059842195361852646,-0.0014218594878911972,0.00731974421069026,0.04861575737595558,0.0832129493355751,0.11411566287279129,-0.05421963334083557,0.03744412213563919,0.043128952383995056,-0.05193914845585823,0.04693944752216339,-2.8548834407615686e-8,0.015706509351730347,0.05077913776040077,-0.04089507833123207,-0.0487675704061985,0.03212079405784607,0.0621267594397068,0.027952594682574272,0.039221856743097305,0.005559363402426243,-0.02511431649327278,0.05987481400370598,0.015473520383238792,-0.041137855499982834,0.02442924678325653,0.1028791069984436,0.07847017794847488,0.043948713690042496,0.03980514779686928,0.005639898590743542,0.016758758574724197,0.01725204661488533,0.015213693492114544,-0.07109271734952927,0.015633486211299896,-0.005883316975086927,-0.0006131818518042564,-0.05396782606840134,0.018561294302344322,-0.03932442516088486,0.02677900530397892,0.0324862077832222,0.019524816423654556,-0.04912872612476349,0.01589362509548664,0.08234309405088425,0.04367806017398834,0.09807190299034119,0.01928170956671238,0.08420145511627197,0.013671820051968098,-0.02853063866496086,-0.00630482193082571,0.014464188367128372,0.010010425001382828,-0.10844124108552933,0.03536568582057953,-0.02897472493350506,-0.019900452345609665,-0.0016718480037525296,0.0414668433368206,0.02012079954147339,-0.04380910471081734,0.04279933124780655,0.0530073381960392,-0.02493436262011528,0.020877819508314133,-0.04290202260017395,0.01471291296184063,0.026008905842900276,-0.009056045673787594,0.07839202135801315,-0.00457316217944026,-0.07655231654644012,0.030243689194321632]},{"text":"To that horror we all must come--cows, pigs, hens, sheep, everyone.","book":"Animal Farm","chapter":20,"embedding":[0.022931406274437904,-0.03763192519545555,-0.02441280148923397,0.060293927788734436,0.06072848290205002,-0.06252909451723099,-0.01467012707144022,-0.06235069781541824,0.027717603370547295,-0.014397675171494484,0.07631667703390121,-0.07925016433000565,0.054879140108823776,-0.0039767115376889706,-0.008116272278130054,-0.007750656455755234,0.016675986349582672,-0.09938698261976242,0.009905356913805008,-0.015874763950705528,-0.04906318336725235,0.006561038549989462,-0.011790837161242962,-0.031061844900250435,-0.027929427102208138,-0.022615766152739525,0.017706317827105522,-0.009912412613630295,-0.05843755602836609,0.02572774887084961,-0.07030079513788223,-0.02998366393148899,-0.0372396819293499,0.0195282194763422,0.03162139654159546,0.05151297152042389,0.14457575976848602,-0.027306782081723213,0.08854380249977112,0.018252559006214142,0.015777917578816414,-0.06976452469825745,0.0380278117954731,0.03453044965863228,-0.015624538995325565,0.025688614696264267,-0.04434090480208397,-0.01104089803993702,0.05339791998267174,-0.09320615977048874,-0.033906929194927216,0.019969677552580833,0.030173854902386665,-0.005402558948844671,0.006702285259962082,-0.000363247498171404,-0.003999868407845497,-0.04631004109978676,-0.01708274893462658,-0.041541703045368195,-0.06538041681051254,0.02578841708600521,-0.0170297808945179,0.08118695020675659,0.013962790369987488,-0.007027843035757542,0.04644317179918289,0.067962646484375,-0.04770248010754585,0.06703542917966843,-0.07374295592308044,-0.015718061476945877,-0.00400899350643158,0.07979560643434525,-0.06960657238960266,0.02421092987060547,0.06552760303020477,-0.03013054095208645,0.07842572778463364,0.02361089549958706,0.015833644196391106,0.013420075178146362,0.012964659370481968,-0.06959065794944763,0.052352409809827805,-0.01988082565367222,-0.022141773253679276,-0.008956925012171268,-0.04847157001495361,0.03253793343901634,-0.12116452306509018,-0.11171604692935944,-0.03369203954935074,0.0926193967461586,0.10117238014936447,-0.01797964796423912,-0.02616521529853344,0.016852615401148796,-0.04367683827877045,0.02590489387512207,-0.06408736109733582,-0.017847932875156403,0.009370844811201096,-0.025475826114416122,-0.028546059504151344,-0.007091124542057514,-0.09647203236818314,0.021520478650927544,0.04770001024007797,0.010906333103775978,-0.0698530375957489,0.00991282518953085,-0.03009198047220707,0.05773003399372101,0.037261731922626495,0.02166046015918255,0.0027237299364060163,-0.11066592484712601,-0.08626069128513336,0.06248963251709938,0.03532788157463074,0.1107284426689148,-0.03260108083486557,0.06646519899368286,0.05159692466259003,0.03752948343753815,-0.008424337953329086,-4.231723459636586e-33,0.007168621756136417,-0.013748781755566597,0.021141093224287033,-0.03822819143533707,-0.0012384732253849506,-0.010130434297025204,-0.10808128118515015,-0.0040263645350933075,0.03825759515166283,0.027280353009700775,-0.011532069183886051,-0.04277430474758148,-0.024960432201623917,0.010082501918077469,-0.06747353821992874,-0.0024806270375847816,0.07583067566156387,-0.038054145872592926,0.03041190840303898,-0.06264562159776688,-0.11629361659288406,0.028202561661601067,0.03497913107275963,0.06475752592086792,-0.021786440163850784,-0.0279606394469738,0.08137087523937225,-0.05078708380460739,0.049891166388988495,0.042551957070827484,0.010211819782853127,-0.08496049046516418,-0.003924781922250986,-0.025737617164850235,-0.04388071596622467,-0.01954915001988411,0.0027880114503204823,-0.012319862842559814,0.03136708587408066,-0.01891358755528927,0.06805680692195892,-0.01700364053249359,0.031101200729608536,0.012955044396221638,0.012113247998058796,0.10439672321081161,0.01638638973236084,-0.0016162187093868852,-0.1271996796131134,0.005507911089807749,-0.04658005014061928,0.0037307722959667444,0.042721524834632874,0.04270591586828232,0.02968330681324005,-0.12679271399974823,-0.018708307296037674,0.007838722318410873,-0.04399143531918526,0.005409336183220148,-0.053454652428627014,0.05903800576925278,-0.002545636147260666,-0.0009760222164914012,0.03797224536538124,-0.13272002339363098,-0.01530340313911438,-0.055266812443733215,-0.07349202781915665,0.059757050126791,-0.040249425917863846,-0.0521184504032135,-0.06851278990507126,-0.030987298116087914,-0.022478466853499413,0.01021626591682434,0.018576111644506454,-0.044895779341459274,-0.005117736756801605,-0.0625363364815712,0.012258696369826794,0.09525197744369507,0.049153152853250504,-0.03747286647558212,0.05400283262133598,0.09899157285690308,-0.02016589604318142,-0.11705957353115082,0.03373739868402481,-0.06541711091995239,-0.012119426392018795,0.00697824452072382,0.04539202153682709,-0.09942173212766647,-0.01637941412627697,8.885436901590896e-34,-0.028243109583854675,0.0033232613932341337,-0.0015413425862789154,0.014909080229699612,-0.030746636912226677,-0.07851230353116989,0.0746619924902916,0.035462070256471634,0.05646774545311928,0.043862320482730865,-0.024049770087003708,-0.01769559271633625,0.04743463546037674,-0.006430694833397865,0.0978604257106781,0.0030939483549445868,0.01622181199491024,0.0007387677324004471,0.07401207834482193,-0.04532642662525177,-0.006240157876163721,0.01012262050062418,-0.005864277016371489,0.047971211373806,0.005413777194917202,0.06754439324140549,-0.052420731633901596,0.0456206314265728,-0.027985623106360435,-0.0898023247718811,-0.03483981266617775,-0.09166356921195984,-0.01100682932883501,-0.034547194838523865,0.020005013793706894,0.04297349974513054,0.037694547325372696,0.03535018116235733,0.012718613259494305,0.01827324740588665,-0.0022758557461202145,-0.028116963803768158,-0.0480896420776844,0.02522098831832409,-0.09612216800451279,0.06505069136619568,0.03420015051960945,-0.028648346662521362,-0.0279750507324934,0.05274534225463867,-0.07201957702636719,0.02996029332280159,0.017449771985411644,-0.07224393635988235,-0.017442576587200165,-0.018467020243406296,0.028311287984251976,-0.08605083078145981,0.014567974954843521,0.03800830990076065,-0.03803088143467903,0.10734756290912628,-0.022954696789383888,0.025592932477593422,0.03592474386096001,-0.05725575610995293,-0.023524833843111992,0.04405229166150093,-0.009144364856183529,0.054942723363637924,-0.013018295168876648,0.02330205775797367,-0.08298790454864502,0.019038613885641098,-0.01101652905344963,0.07077400386333466,0.02103365957736969,0.0019081837963312864,0.01484044548124075,-0.029457835480570793,0.04625393822789192,-0.06261921674013138,0.0380648709833622,0.08261590451002121,0.11013636738061905,-0.10512080043554306,0.06762434542179108,0.0810757502913475,0.07634878158569336,0.048775020986795425,-0.05607044696807861,-0.08362682908773422,0.06353162229061127,-0.02626863308250904,0.044165849685668945,-2.4190422109882093e-8,-0.06356150656938553,-0.03718886151909828,-0.0034526109229773283,0.002043768297880888,0.11322704702615738,-0.011141163296997547,0.02588845230638981,0.0016132562886923552,0.011677254922688007,0.06873267889022827,-0.05531652644276619,0.1287754774093628,0.029698815196752548,0.06138960272073746,0.013129027560353279,0.03332853317260742,0.03623829409480095,-0.033758487552404404,-0.027120862156152725,-0.02201947383582592,-0.09565845131874084,-0.040881745517253876,-0.06531433016061783,-0.07032874971628189,0.10284309834241867,-0.05842038616538048,-0.07849012315273285,-0.001117383479140699,0.03868495300412178,0.022959018126130104,-0.05382472276687622,-0.009908204898238182,-0.06028323620557785,-0.014529431238770485,-0.03451334312558174,0.008097252808511257,-0.04174705594778061,-0.0026516199577599764,0.07840543240308762,-0.06961366534233093,-0.031897030770778656,0.10934242606163025,0.062136903405189514,0.02758841961622238,-0.03443855047225952,-0.05826059356331825,-0.02173263020813465,-0.021872462704777718,-0.007175241131335497,-0.02175091579556465,-0.035160042345523834,-0.021075163036584854,0.08020735532045364,0.07273858040571213,0.09612783789634705,-0.1007995456457138,-0.050938431173563004,-0.047727737575769424,0.10054542869329453,0.03026030957698822,0.037227269262075424,0.007524195592850447,0.05786779522895813,-0.0058267745189368725]},{"text":"Almost overnight we could become rich and free.","book":"Animal Farm","chapter":21,"embedding":[-0.015367506071925163,0.036101922392845154,-0.030974524095654488,0.059346918016672134,0.07256022840738297,-0.030998602509498596,-0.026488345116376877,-0.037061937153339386,0.06327106803655624,0.034735895693302155,0.025283625349402428,0.0743439719080925,0.03866192698478699,-0.02214246243238449,0.02821003459393978,-0.04297974705696106,0.0020205993205308914,-0.07794289290904999,-0.058756522834300995,0.060667116194963455,-0.03798156976699829,-0.011301684193313122,-0.025528863072395325,0.02745639905333519,0.0691949874162674,0.005468470044434071,0.06981205940246582,-0.039327360689640045,0.0783144012093544,-0.003198451129719615,0.010350697673857212,0.030281269922852516,0.014561429619789124,0.025172824040055275,0.059738848358392715,0.007675698958337307,0.093661367893219,0.0005936259403824806,0.01979963667690754,-0.022554419934749603,0.06288663297891617,-0.1301201432943344,-0.05116937309503555,0.10753890126943588,-0.08052094280719757,0.01667332649230957,0.009634679183363914,0.010105020366609097,-0.01238782424479723,0.05932500213384628,0.017043886706233025,0.0927664116024971,-0.05514497309923172,-0.0983763188123703,-0.046018533408641815,0.055902883410453796,-0.005703520495444536,-0.05420882627367973,0.021320823580026627,0.02638903819024563,-0.0779196247458458,0.006835462991148233,0.04407290369272232,-0.017947357147932053,0.07012263685464859,-0.03912963345646858,-0.032705530524253845,0.13702408969402313,-0.04394662752747536,0.014947015792131424,0.0026036452036350965,0.0015491966623812914,-0.05023515224456787,-0.021403051912784576,0.011129142716526985,-0.030388735234737396,0.08875507116317749,0.006491954438388348,0.047261688858270645,0.04553886130452156,0.04140434414148331,-0.02337738312780857,-0.028590044006705284,-0.0025256876833736897,-0.05630135163664818,0.0386025533080101,-0.05593488737940788,0.013882230035960674,0.08268475532531738,-0.04879985377192497,-0.025742152705788612,-0.030950309708714485,-0.05257874354720116,0.03947503864765167,0.026669269427657127,-0.03538348898291588,-0.023475881665945053,-0.018574073910713196,-0.030828356742858887,0.06329406052827835,0.013538917526602745,0.03498871996998787,0.030711963772773743,-0.029182322323322296,-0.043242041021585464,-0.03589523211121559,0.027152054011821747,0.0487813800573349,0.02449406497180462,-0.02528872899711132,-0.003456528065726161,-0.02261001244187355,0.08987867087125778,0.04719239100813866,0.027758605778217316,-0.06293532997369766,-0.07294988632202148,-0.07282993197441101,-0.006627014372497797,0.0075979274697601795,0.0239619892090559,0.04697960242629051,-0.08615948259830475,-0.003764696419239044,-0.012901882641017437,-0.022127283737063408,-0.06975389271974564,-3.995763172518167e-33,0.00009274524927604944,0.06311998516321182,0.01761142909526825,0.004616514779627323,0.007119832560420036,0.045698828995227814,-0.008584167808294296,-0.005350315477699041,-0.08782283961772919,-0.0295729897916317,0.05669882148504257,-0.009601299650967121,-0.03428808972239494,0.007408170960843563,0.024409519508481026,-0.061297331005334854,0.03703746944665909,-0.0011468996526673436,0.09817127138376236,-0.08823182433843613,0.03522099554538727,-0.03247319161891937,0.021587872877717018,0.029356349259614944,-0.018966365605592728,-0.12252789735794067,-0.0399898923933506,-0.05775146558880806,0.09851417690515518,-0.011464091949164867,-0.04384766146540642,0.07613445073366165,-0.0061411489732563496,0.02401554398238659,-0.041110411286354065,-0.0014363023219630122,-0.021292492747306824,0.01844164915382862,-0.04799460247159004,-0.044347189366817474,-0.0533444881439209,0.01249020267277956,0.06840478628873825,-0.06799135357141495,0.03372468054294586,-0.00011688078666338697,0.06692691147327423,0.047087348997592926,-0.03312457725405693,-0.061612922698259354,0.0032671645749360323,0.02593252994120121,-0.036198340356349945,-0.10125929117202759,-0.04443976655602455,0.014287290163338184,-0.06062264367938042,0.02631453238427639,-0.06977158039808273,-0.051692210137844086,-0.03095531463623047,-0.06512217968702316,0.014729739166796207,-0.017202459275722504,-0.07853055745363235,0.04483182728290558,0.024777382612228394,0.006764532066881657,-0.05400118604302406,0.04928906634449959,0.021992648020386696,-0.010873572900891304,-0.050058551132678986,0.03528183698654175,-0.04240052029490471,0.08995360136032104,0.058083128184080124,-0.05148598179221153,0.01347542367875576,-0.004490631632506847,0.06220803037285805,-0.019079143181443214,0.06947058439254761,-0.0008246863726526499,0.22210955619812012,0.03165716677904129,0.07782259583473206,-0.01819983869791031,-0.03176186606287956,-0.021259155124425888,-0.037298012524843216,-0.0389520525932312,0.029453281313180923,-0.029286811128258705,-0.03141059726476669,1.9558521530874172e-33,0.0325239934027195,-0.06850674003362656,-0.0206504687666893,0.028350960463285446,0.06389991194009781,-0.010750796645879745,-0.03134390711784363,0.0898551270365715,-0.0319373644888401,0.062271635979413986,-0.00011194191756658256,-0.018969280645251274,0.039723146706819534,0.005660077091306448,0.002117086900398135,-0.1102132648229599,0.08107896149158478,-0.04692956060171127,-0.0015836999518796802,0.05726393312215805,0.025784725323319435,0.006241349969059229,-0.042150843888521194,0.13292090594768524,-0.03560587763786316,0.04710613191127777,-0.10137951374053955,0.06598515808582306,-0.0987197533249855,0.11138997226953506,-0.07016158849000931,0.006769299972802401,-0.11316099762916565,-0.018229005858302116,-0.03869299218058586,0.004314194433391094,-0.038933493196964264,-0.08397439867258072,0.017740724608302116,-0.004942344967275858,-0.04331044480204582,-0.11424240469932556,-0.045975156128406525,0.012526687234640121,0.02886774018406868,-0.04226619005203247,0.0005083632422611117,0.006577781867235899,0.03130602464079857,0.035145122557878494,0.032762449234724045,0.05493747442960739,0.010930143296718597,-0.042505454272031784,-0.06170007959008217,-0.03201432526111603,0.09947356581687927,-0.058361317962408066,0.08836168795824051,0.034119389951229095,-0.09794969856739044,0.0060421740636229515,-0.04381180927157402,0.05756230279803276,0.027336716651916504,0.0036015440709888935,0.04414242506027222,0.05445434898138046,-0.01930815726518631,0.018713442608714104,0.1254335343837738,-0.021195625886321068,-0.13494274020195007,-0.004292401950806379,-0.007704310584813356,0.04690181836485863,0.024028105661273003,0.04904799908399582,0.013911295682191849,-0.021839676424860954,0.029211118817329407,-0.06488826870918274,0.02442440763115883,-0.0791386067867279,-0.014661946333944798,-0.03602107986807823,0.018200896680355072,-0.04870734363794327,0.06835255771875381,-0.04941992089152336,-0.021120337769389153,-0.05031493678689003,-0.019348062574863434,0.0059689744375646114,-0.019957778975367546,-1.7848135414055832e-8,-0.013764594681560993,-0.0497610829770565,0.013375729322433472,0.05428303778171539,-0.02901904471218586,0.007347173057496548,0.05954759567975998,0.04089676961302757,0.08140086382627487,0.10668008774518967,-0.02143966592848301,0.0459446907043457,0.04343793913722038,0.059145960956811905,-0.025224480777978897,0.09142930060625076,-0.03689903765916824,-0.05347183346748352,-0.0269516259431839,0.013776569627225399,0.056839197874069214,0.07682648301124573,0.00772355031222105,-0.015521714463829994,-0.048263080418109894,-0.02596062421798706,-0.02484169974923134,0.05826474726200104,0.01840512827038765,0.06898069381713867,-0.0016558269271627069,-0.04998113960027695,-0.0956173911690712,0.030323319137096405,-0.0154885184019804,-0.0395481251180172,-0.07846837490797043,0.02528328076004982,-0.03402799740433693,-0.008337562903761864,-0.02335473895072937,0.1252555102109909,-0.03263720124959946,-0.026979679241776466,-0.060125045478343964,0.006106788292527199,-0.07132299244403839,0.06895940005779266,0.03647036477923393,0.0071234023198485374,0.00074897421291098,0.05688198655843735,0.046747978776693344,-0.05353974550962448,0.05365215241909027,-0.035435307770967484,0.023957261815667152,0.03669486194849014,-0.032853320240974426,-0.04569817706942558,0.030907228589057922,-0.11391076445579529,-0.009905277751386166,-0.060232024639844894]},{"text":"Fix your eyes on that, comrades, throughout the short remainder of your lives!","book":"Animal Farm","chapter":21,"embedding":[-0.02579408697783947,0.01826191507279873,0.056345436722040176,-0.039074234664440155,0.05384897068142891,-0.00500936945900321,0.053284041583538055,-0.06380316615104675,-0.07849086076021194,-0.024091143161058426,0.01921434886753559,0.08915411680936813,0.08042144030332565,-0.07596299052238464,-0.12125346809625626,-0.03671545535326004,-0.15966062247753143,0.017303481698036194,0.011028937064111233,0.042093317955732346,-0.05208663269877434,-0.002639548387378454,-0.004758791532367468,0.03916429355740547,-0.0313015840947628,0.1010689064860344,0.01213329192250967,0.0038214814849197865,-0.019967515021562576,-0.00047755619743838906,-0.012610502541065216,0.03926078602671623,0.0006198521004989743,0.03580459952354431,0.03175182268023491,0.0433775819838047,0.05001581087708473,0.017966922372579575,0.053211770951747894,-0.05630403384566307,-0.00019708211766555905,-0.0653107762336731,-0.003996041603386402,0.053821176290512085,0.02490241266787052,0.053221527487039566,-0.0013781728921458125,-0.010999376885592937,0.045631296932697296,0.003507143585011363,-0.06366869062185287,-0.022383252158761024,-0.0304300244897604,0.03665623068809509,0.04406813532114029,-0.050510723143815994,-0.0446813590824604,0.04755912348628044,0.051066335290670395,0.011191454716026783,-0.0013950351858511567,0.008452734909951687,-0.009055274538695812,0.018407374620437622,-0.0271186213940382,-0.02397896535694599,0.09740456938743591,0.032466135919094086,-0.056122541427612305,0.10169343650341034,-0.013746208511292934,0.045669231563806534,0.0215137992054224,0.01937793381512165,-0.12115347385406494,-0.015724683180451393,0.009105570614337921,-0.061078786849975586,0.07928627729415894,-0.0011488584568724036,0.0343395359814167,0.05908055230975151,0.016267025843262672,0.017856955528259277,-0.00051419239025563,-0.13482701778411865,0.0066259633749723434,-0.06543560326099396,0.09531799703836441,-0.023875143378973007,-0.09393465518951416,-0.008745407685637474,0.019660677760839462,-0.006553666666150093,-0.08579043298959732,-0.009339622221887112,-0.004243140574544668,0.05258924141526222,-0.11460026353597641,0.06740333139896393,-0.019340572878718376,-0.06496644765138626,-0.0019383146427571774,-0.053735289722681046,0.0014373860321938992,0.01925366185605526,0.004572107922285795,0.08397311717271805,-0.05277404561638832,-0.05232228338718414,0.00640497962012887,-0.04973427951335907,-0.009245239198207855,-0.022020302712917328,0.05361833795905113,-0.0031196994241327047,-0.026275357231497765,-0.03229150548577309,-0.0016104181995615363,0.08503824472427368,0.060001857578754425,0.045310623943805695,-0.030281228944659233,0.051546379923820496,0.04213438928127289,-0.04315781593322754,0.05608478933572769,-6.0398134014317496e-33,0.008744359016418457,0.07770168781280518,-0.05825493112206459,0.06749091297388077,-0.03956133872270584,0.021490907296538353,-0.039048559963703156,0.008100684732198715,-0.08255676180124283,0.047605521976947784,0.004147875588387251,0.04015570133924484,-0.015310990624129772,0.04953642562031746,-0.031005199998617172,-0.0034003257751464844,-0.015623574145138264,0.041659895330667496,0.020820580422878265,0.009827718138694763,-0.05548161268234253,-0.10553830862045288,-0.02736293151974678,0.027988726273179054,0.060630157589912415,-0.05834544822573662,0.035745345056056976,-0.014244153164327145,0.0034701325930655003,0.03373259678483009,0.029329951852560043,0.17023830115795135,0.008614584803581238,-0.011385034769773483,-0.10712955892086029,-0.06437833607196808,0.021357804536819458,-0.0013087500119581819,-0.11245943605899811,-0.033050183206796646,0.0043972330167889595,0.059844814240932465,0.02545884996652603,0.015445215627551079,0.013825912959873676,0.02804289385676384,0.038148120045661926,0.06276960670948029,-0.05393014848232269,-0.04346466436982155,0.0247587151825428,0.00710539473220706,0.00161750556435436,-0.023408889770507812,-0.05517417564988136,0.01686321385204792,0.0003542194317560643,0.04023393616080284,-0.041964273899793625,-0.04725444316864014,0.0433138944208622,-0.11199191957712173,-0.05633511021733284,0.06858920305967331,0.00879119336605072,0.02967146225273609,-0.11191265285015106,0.028600191697478294,-0.041041355580091476,0.03982851281762123,-0.012951016426086426,-0.03995652496814728,0.023557810112833977,-0.0069226366467773914,-0.08477405458688736,0.016965553164482117,0.06666745990514755,-0.022997906431555748,-0.0020109890028834343,-0.022380290552973747,0.08233677595853806,0.01750567927956581,0.0029548369348049164,-0.014324401505291462,0.13178914785385132,-0.034067440778017044,0.05702121928334236,-0.08847259730100632,-0.01706862822175026,-0.023694876581430435,-0.11610043793916702,-0.02074340730905533,0.04349638894200325,-0.055501788854599,-0.11239982396364212,3.040743623781146e-33,0.04365989565849304,-0.06878440082073212,0.05726240947842598,0.03617192432284355,0.0005874879425391555,0.033022791147232056,0.03021867759525776,0.07073745131492615,-0.008145648054778576,0.02085263654589653,0.05966685339808464,-0.09651552885770798,-0.07129760086536407,0.056853409856557846,-0.019432196393609047,-0.045192282646894455,0.03395209461450577,-0.02174292504787445,-0.026676727458834648,0.050232768058776855,-0.07889510691165924,-0.04257424175739288,-0.004105362109839916,0.028602343052625656,0.0013095128815621138,0.11100281029939651,0.05569693073630333,-0.07691545784473419,-0.02019304223358631,-0.00042950568604283035,-0.05237620696425438,-0.07004205137491226,-0.12694619596004486,-0.0645897164940834,0.0903930515050888,0.035496342927217484,-0.08341161161661148,-0.05785899981856346,-0.0555177666246891,0.02968066744506359,-0.013219893909990788,-0.017500219866633415,-0.021807057783007622,0.04720756784081459,0.02584294229745865,-0.0686805248260498,0.01708277314901352,-0.0006834439700469375,-0.12147808820009232,-0.004113074392080307,-0.08860064297914505,-0.019854707643389702,0.05113767087459564,0.016835592687129974,0.02189239114522934,-0.032028187066316605,-0.0026284093037247658,0.004945200867950916,0.055108729749917984,-0.011819835752248764,0.020037176087498665,-0.00432083522900939,-0.06925474852323532,0.06591758877038956,0.05544661357998848,-0.0006769738392904401,-0.03271746262907982,0.06586840003728867,0.0813927948474884,0.05766855180263519,0.09819027036428452,-0.06985431164503098,-0.07438597828149796,-0.014944154769182205,0.04627491906285286,-0.038053322583436966,0.041966091841459274,0.04899844899773598,-0.02417653612792492,0.039892859756946564,0.03440934047102928,-0.07860126346349716,0.02633758820593357,0.040134627372026443,-0.03601544350385666,0.01598377525806427,0.08158690482378006,0.05450151488184929,0.05771324783563614,0.0005489675095304847,-0.037862472236156464,-0.0876990407705307,-0.01147023867815733,-0.04133566468954086,0.012736978940665722,-2.5785361401631235e-8,0.00104585534427315,-0.015879567712545395,-0.049640972167253494,0.02483840100467205,0.037679046392440796,-0.02387695014476776,-0.006739285308867693,-0.010634943842887878,-0.0324748270213604,0.04553369805216789,-0.013921008445322514,0.03296719118952751,0.10403452813625336,0.04760663956403732,0.006180302705615759,0.024074509739875793,-0.04707706347107887,-0.03093014657497406,-0.08577382564544678,-0.03481075167655945,-0.0380336157977581,-0.010731849819421768,0.027311893180012703,-0.009881910867989063,-0.06742071360349655,0.04381618648767471,-0.00407714257016778,0.00985824503004551,-0.053780026733875275,0.08112206310033798,0.047765813767910004,0.03848043084144592,-0.04764325171709061,-0.0260930098593235,-0.04344288632273674,0.0022163817193359137,0.01726997271180153,0.10036522895097733,0.07155780494213104,-0.03207126259803772,-0.0966273620724678,-0.00044354269630275667,0.06447319686412811,0.04346142336726189,-0.01991959661245346,-0.04098042845726013,0.049322709441185,0.028773145750164986,-0.010188877582550049,-0.01838499866425991,0.04876960813999176,0.08894336968660355,0.01590736024081707,0.06407936662435532,0.004465876147150993,-0.013190855272114277,0.09028570353984833,0.028220847249031067,-0.070476233959198,0.01448208000510931,0.014966714195907116,0.01158242765814066,-0.06145777925848961,-0.07554908096790314]},{"text":"And among us animals let there be perfect unity, perfect comradeship in the struggle.","book":"Animal Farm","chapter":21,"embedding":[0.009119052439928055,0.07484672218561172,0.056430768221616745,0.052678123116493225,-0.02407396212220192,-0.0014794485177844763,-0.018661601468920708,-0.06454487144947052,-0.026936711743474007,0.05241119861602783,0.03429228439927101,0.04906152933835983,0.033795829862356186,0.02825259603559971,0.01927456073462963,-0.02859681472182274,-0.040078576654195786,0.0014075629878789186,-0.03341127187013626,0.012422822415828705,-0.09211469441652298,-0.040940262377262115,0.042117755860090256,0.03609490767121315,-0.09503905475139618,-0.032403215765953064,0.012540960684418678,-0.03267381712794304,0.013559862039983273,-0.013396883383393288,-0.0485495924949646,-0.08082742989063263,0.05436126887798309,0.08303844183683395,0.015374274924397469,0.018282458186149597,0.08343540132045746,-0.04751047492027283,0.04022875800728798,-0.05528301000595093,0.016870491206645966,-0.03235090896487236,0.010812170803546906,-0.00019612735195551068,-0.0748046487569809,0.005851850379258394,-0.054030150175094604,0.002783310366794467,0.041750047355890274,-0.06278161704540253,-0.03273536264896393,0.008098174817860126,0.0019082882208749652,-0.055303797125816345,-0.0033232232090085745,0.08158346265554428,-0.012455196119844913,-0.013409550301730633,0.029224229976534843,-0.017329268157482147,0.0036921855062246323,0.07751486450433731,0.030367419123649597,0.053123656660318375,0.1116623505949974,-0.05918815732002258,0.031327493488788605,0.13696040213108063,-0.11955095082521439,0.050735991448163986,0.05455465614795685,0.004363364540040493,0.06224782019853592,-0.0445312075316906,-0.056846361607313156,0.01105574332177639,-0.027188878506422043,-0.009725228883326054,0.05189322680234909,0.02385120838880539,-0.021454934030771255,-0.002963059348985553,-0.02707335166633129,0.04843391478061676,0.10016220062971115,-0.04016973450779915,0.01833370514214039,-0.07459980994462967,0.022665703669190407,-0.02017677016556263,-0.16716830432415009,0.004869183525443077,0.011003537103533745,0.014967383816838264,-0.009985234588384628,-0.009873653762042522,0.023909978568553925,0.10172739624977112,-0.007946169003844261,0.06675207614898682,0.002611982636153698,-0.018791666254401207,0.0019482856150716543,-0.028044553473591805,0.053613852709531784,0.009302599355578423,-0.03349138796329498,-0.04061742499470711,0.060800496488809586,0.025984516367316246,-0.052552808076143265,-0.07745776325464249,-0.021597012877464294,0.0625518411397934,0.11260202527046204,0.024320825934410095,-0.07156220078468323,-0.08145080506801605,-0.003058693604543805,-0.0073964777402579784,0.01988525502383709,0.02275882102549076,-0.013568582013249397,0.04751521721482277,0.04348474740982056,-0.053529832512140274,0.019595595076680183,-1.803338556894941e-33,0.0016692493809387088,-0.051877617835998535,-0.007056304719299078,0.0462990403175354,-0.04118938744068146,0.04768528789281845,-0.06005237624049187,-0.0059073916636407375,-0.08002400398254395,0.009948519989848137,-0.061148032546043396,0.07742522656917572,0.06945271790027618,-0.0008507455931976438,-0.06550481170415878,-0.030157821252942085,0.014680729247629642,-0.00006217929330887273,0.07140667736530304,-0.024232197552919388,-0.00340233463793993,0.03989525884389877,-0.023001564666628838,-0.027780577540397644,0.013756697066128254,-0.016358239576220512,0.005690377205610275,-0.009693222120404243,0.010932929813861847,0.028302468359470367,-0.02617117017507553,-0.03035382181406021,-0.03394366428256035,0.056219667196273804,-0.06886541843414307,-0.035815902054309845,-0.011434136889874935,-0.0784926563501358,-0.02491564117372036,0.05018629506230354,0.052779946476221085,-0.020399659872055054,0.00455292034894228,-0.03592727705836296,0.06897740066051483,0.06199638172984123,0.0008468105806969106,0.03667779639363289,-0.05584574490785599,0.028804734349250793,-0.06586118042469025,0.0344870388507843,0.07100547850131989,-0.056527163833379745,-0.02736807055771351,0.01595381461083889,0.04592271149158478,0.09504323452711105,-0.057747021317481995,-0.05157995596528053,-0.03794245794415474,-0.05688091367483139,-0.07228793203830719,-0.04073662310838699,0.09407298266887665,-0.055105920881032944,-0.05348232015967369,0.017681997269392014,-0.03410631790757179,-0.009541035629808903,-0.010108662769198418,-0.014972154051065445,-0.07474443316459656,-0.08704312145709991,-0.03726491332054138,-0.02778010256588459,0.10086607187986374,-0.013103676959872246,-0.04701697826385498,-0.049964599311351776,-0.09182258695363998,0.07255037873983383,0.02442028746008873,0.013539926148951054,0.04253213480114937,0.025554507970809937,0.12942655384540558,-0.06613603979349136,0.006758652161806822,0.05478977784514427,0.019946642220020294,-0.029241882264614105,0.032551590353250504,-0.04257502406835556,0.0014547492610290647,6.394659421936993e-34,0.03294636681675911,-0.03786604478955269,0.029945872724056244,0.10862545669078827,0.03510047495365143,-0.011438699439167976,0.012984568253159523,-0.009339424781501293,-0.04244161397218704,0.0654522106051445,0.03032669425010681,-0.05249486118555069,0.05777864158153534,0.019702477380633354,-0.005087029654532671,-0.0077508725225925446,0.01921418495476246,-0.022396214306354523,0.06254193931818008,-0.032333627343177795,0.048608504235744476,0.01578918844461441,0.04917147755622864,0.01426306925714016,0.04382004588842392,0.057514481246471405,-0.05991620942950249,-0.04670516774058342,-0.05069766938686371,-0.0405675508081913,0.03044739179313183,-0.0035034820903092623,-0.1348026990890503,-0.040839992463588715,0.0999438613653183,0.022092776373028755,-0.05530562996864319,0.006383506581187248,0.015082941390573978,0.019343579187989235,-0.07027457654476166,-0.003536361502483487,-0.0773356631398201,0.07968498021364212,0.06583545356988907,0.02820751629769802,0.0315401591360569,-0.07701848447322845,-0.09774849563837051,0.05652867630124092,-0.03177538141608238,-0.0013949831482023,-0.013295073062181473,-0.09171593934297562,0.03690864518284798,-0.0001461977226426825,0.03374075889587402,-0.024483926594257355,0.05036071315407753,-0.07433471828699112,-0.0167995672672987,0.010655215941369534,-0.050402987748384476,0.08948197960853577,-0.005125388968735933,-0.027240095660090446,-0.02741062641143799,0.09576470404863358,-0.010838032700121403,0.05321461707353592,-0.03680458664894104,-0.001892196130938828,-0.08344702422618866,0.0334278903901577,0.01988905854523182,0.05138743668794632,0.0597936287522316,-0.05786608159542084,0.054782453924417496,0.006058007013052702,-0.020325785502791405,-0.07045184820890427,-0.010449587367475033,0.052599966526031494,-0.017361929640173912,-0.0030704536475241184,-0.02209961786866188,0.09278199821710587,0.08497683703899384,0.05381043255329132,-0.007882666774094105,-0.11394739151000977,0.04094993323087692,-0.04711361229419708,-0.030958734452724457,-2.2638054986146017e-8,-0.0792321115732193,0.02257690578699112,-0.05300730839371681,0.07046549767255783,0.04929182678461075,-0.014938635751605034,0.002521712798625231,-0.10301445424556732,-0.007570866961032152,0.1386440396308899,-0.03666236996650696,-0.023045314475893974,-0.03208392485976219,0.07521084696054459,0.06651921570301056,0.03739883005619049,0.050580840557813644,-0.05391029641032219,-0.05286245793104172,0.009778594598174095,-0.08690991997718811,0.040194764733314514,-0.06542154401540756,-0.06481749564409256,-0.11062514036893845,0.00356615474447608,-0.10164277255535126,-0.05538645014166832,-0.05642139911651611,0.056978847831487656,-0.03057560697197914,-0.009272921830415726,-0.07197023183107376,-0.061036594212055206,-0.009658013470470905,0.10833333432674408,-0.039894454181194305,0.010498191229999065,0.07382073998451233,-0.11598330736160278,-0.026559066027402878,0.14675502479076385,0.06624683737754822,0.007925383746623993,0.03329640254378319,0.000050380753236822784,0.02887219563126564,0.007878883741796017,0.006227198522537947,-0.058782659471035004,-0.05857362225651741,0.05950372293591499,0.0008282970520667732,-0.010534786619246006,0.021183166652917862,0.006570554804056883,0.022678077220916748,0.01686110906302929,-0.0037021974567323923,-0.007115951273590326,0.04436282813549042,0.05691206827759743,0.012151596136391163,-0.04187846928834915]},{"text":"The wild creatures, such as rats and rabbits--are they our friends or our enemies?","book":"Animal Farm","chapter":21,"embedding":[0.05237812548875809,0.00407800916582346,0.0036586809437721968,0.0901544839143753,0.021266568452119827,-0.013301804661750793,0.04340308532118797,-0.04990917444229126,0.023415593430399895,0.05695633217692375,0.015900444239377975,-0.04377297684550285,-0.03901340812444687,0.05691052973270416,0.02680700272321701,-0.04698428139090538,-0.007717423141002655,-0.07634388655424118,-0.0229855515062809,0.05904027819633484,-0.10046521574258804,-0.012542199343442917,0.045555878430604935,-0.03483105078339577,-0.031784843653440475,-0.037292636930942535,0.00042641590698622167,-0.020962247624993324,-0.02422815002501011,-0.04452758654952049,0.014908396638929844,-0.018946247175335884,0.005410159472376108,0.0047287968918681145,0.027828657999634743,0.021020622923970222,0.04746740311384201,-0.03539138287305832,0.06705871224403381,0.0347711443901062,-0.015386523678898811,-0.10477443784475327,0.056490715593099594,0.0033061013091355562,-0.12340331077575684,-0.02419775351881981,-0.1005585640668869,0.00937496405094862,0.01689630188047886,-0.04137495160102844,-0.025409596040844917,0.05849108844995499,-0.082498699426651,0.06736113876104355,0.06356754153966904,0.001719825784675777,-0.021791253238916397,-0.0848158448934555,0.050011977553367615,-0.07846073061227798,0.041679125279188156,-0.0010994779877364635,0.03295840322971344,0.08866070210933685,-0.021368172019720078,-0.011317017488181591,-0.012149320915341377,0.0984841138124466,-0.002063719555735588,-0.04597484692931175,-0.03202952817082405,-0.006936939898878336,0.042113322764635086,-0.011676433496177197,-0.0073039596900343895,-0.008865594863891602,-0.06436820328235626,-0.05059298872947693,0.05492144450545311,-0.0015881776344031096,-0.00899492483586073,0.02729540504515171,0.058454666286706924,-0.013920962810516357,0.06855626404285431,0.000034606327972142026,0.028659703209996223,-0.013639288954436779,-0.06478710472583771,0.021472463384270668,-0.08290785551071167,-0.026309465989470482,0.0413457490503788,0.07611874490976334,0.03462816774845123,0.01648750901222229,0.08363461494445801,-0.012856812216341496,-0.07627515494823456,0.022813884541392326,-0.02337959036231041,-0.03957085683941841,-0.02809532731771469,0.008213425986468792,0.03846437484025955,0.038227129727602005,-0.03719357028603554,-0.04940033331513405,0.08644267171621323,0.004068728536367416,-0.031136494129896164,0.007858706638216972,-0.006731542758643627,0.04104318097233772,0.05751222372055054,-0.048291996121406555,0.020550036802887917,-0.04030606523156166,0.012436816468834877,-0.021702369675040245,0.03800259903073311,0.09230418503284454,-0.028494156897068024,-0.0006901695742271841,0.07057224959135056,0.004580146167427301,-0.08921422809362411,-3.298402250918799e-33,0.1022748127579689,-0.01524316519498825,-0.03706933930516243,-0.04541807621717453,0.021812230348587036,0.03384868800640106,-0.08613307774066925,-0.009274683892726898,0.000730444211512804,-0.009896131232380867,-0.12823879718780518,-0.005662186536937952,0.0353543795645237,0.06092006340622902,0.014257069677114487,0.06401853263378143,-0.028974909335374832,-0.01926288940012455,0.05619198456406593,-0.04109463095664978,-0.08397090435028076,0.031305208802223206,-0.0014439565129578114,0.024361502379179,0.03392099589109421,-0.027935748919844627,-0.06674931943416595,-0.010626334697008133,-0.017756372690200806,0.03741559013724327,0.07840301841497421,0.017873963341116905,-0.028584498912096024,0.03326036408543587,-0.04042728990316391,-0.027101658284664154,-0.02178269997239113,-0.08629415929317474,-0.043919436633586884,-0.008226285688579082,0.011756984516978264,-0.010248453356325626,-0.026728278025984764,-0.06258033961057663,0.03196530416607857,-0.029818108305335045,-0.08295369893312454,-0.012055402621626854,-0.10595302283763885,-0.021461909636855125,-0.015273370780050755,-0.008441856130957603,0.020375452935695648,0.0594705194234848,-0.013372901827096939,-0.020781753584742546,0.017666948959231377,0.02723793499171734,-0.11372318863868713,0.039746418595314026,0.01892947033047676,0.046833962202072144,0.00879749096930027,-0.05890941247344017,0.05739244073629379,-0.002940563950687647,-0.0004069283022545278,0.003453705459833145,-0.029475348070263863,-0.05348816514015198,0.018428560346364975,0.051476653665304184,-0.04723810777068138,-0.10527471452951431,0.009633369743824005,-0.03935085982084274,0.0822400450706482,0.035434938967227936,-0.04370245710015297,-0.01407678984105587,-0.019950727000832558,0.032170213758945465,-0.06510139256715775,0.0182137880474329,-0.06024511158466339,0.056578051298856735,0.07354310154914856,-0.07523186504840851,0.06014817953109741,0.06095125526189804,-0.008672251366078854,0.002900840947404504,-0.027404462918639183,-0.014147606678307056,-0.07215878367424011,1.9526832774569895e-33,-0.0379391610622406,0.009914619848132133,0.05736251175403595,0.0015900741564109921,-0.023833326995372772,-0.018550099804997444,-0.028474433347582817,0.014842269010841846,0.03151572495698929,0.04607773199677467,-0.10571518540382385,0.0011817780323326588,-0.006020578555762768,-0.03406836837530136,0.08835643529891968,-0.017498290166258812,0.027764860540628433,-0.06578657776117325,0.056791309267282486,-0.15118910372257233,-0.06448874622583389,0.022878527641296387,-0.037905722856521606,-0.014386998489499092,0.1000933051109314,0.013532747514545918,0.0010269255144521594,-0.02680283412337303,-0.003420723369345069,-0.03452780470252037,0.11488189548254013,-0.004924086853861809,-0.1076844111084938,-0.060811351984739304,0.076156847178936,0.07047917693853378,-0.05105013772845268,-0.02428215555846691,0.021154556423425674,-0.16448789834976196,-0.027070386335253716,0.033409249037504196,-0.03129906579852104,0.0417245589196682,0.010633401572704315,0.0953468531370163,0.13054510951042175,-0.025108778849244118,-0.05898026376962662,0.014278633520007133,0.02279563434422016,-0.037429969757795334,0.04700169712305069,-0.10928763449192047,-0.030775876715779305,-0.0358879491686821,0.064828060567379,0.017526665702462196,0.09131471812725067,-0.059337615966796875,0.03858170658349991,0.10873184353113174,-0.0075970604084432125,0.11334092915058136,-0.06853698194026947,0.024035776033997536,-0.06143564358353615,0.06889713555574417,0.10083311796188354,0.03475284203886986,0.04284478724002838,0.0630563274025917,-0.0526486411690712,0.005739430896937847,0.0369517020881176,0.08017534017562866,0.01414505485445261,-0.045753300189971924,0.05352218821644783,0.05009784549474716,0.006282458547502756,0.045976828783750534,0.03820653259754181,0.02536345086991787,-0.0578765794634819,0.0006439487333409488,0.01630144938826561,0.08350397646427155,0.055866677314043045,0.03508893772959709,0.03602949157357216,0.0010810670210048556,-0.047369930893182755,-0.03494115546345711,-0.018917342647910118,-1.880624012073895e-8,0.022160930559039116,-0.009067758917808533,-0.057681962847709656,0.005684378556907177,-0.0062239039689302444,0.026456940919160843,0.08008871972560883,0.023357655853033066,-0.029968472197651863,0.06293202936649323,0.04266383871436119,0.0176821481436491,0.07242345064878464,0.04123667627573013,0.08792257308959961,0.061565108597278595,0.030856816098093987,-0.04370783641934395,-0.0071640522219240665,0.040125805884599686,-0.07283785194158554,-0.0034647847060114145,0.003613516455516219,0.0190406646579504,-0.029114555567502975,-0.09393242001533508,-0.012071910314261913,-0.041911736130714417,0.025277789682149887,0.04027844965457916,-0.03671510890126228,0.05006156489253044,-0.05411740764975548,0.06281677633523941,0.05206446722149849,-0.039647217839956284,-0.02776220813393593,-0.06605029106140137,0.08064277470111847,0.04680187627673149,0.04419851303100586,0.062001388520002365,0.08253946155309677,-0.0033715367317199707,-0.048628468066453934,-0.07221829891204834,-0.003157034981995821,-0.08348029106855392,0.0021995108108967543,-0.1672002375125885,-0.02736077830195427,-0.04392553120851517,0.033586353063583374,0.04057733714580536,-0.0660562738776207,-0.09430436044931412,-0.08084429800510406,0.0681561753153801,0.03447159752249718,-0.04890579730272293,-0.01765238307416439,0.05728674307465553,-0.011300182901322842,-0.01379840262234211]},{"text":"I merely repeat, remember always your duty of enmity towards Man and all his ways.","book":"Animal Farm","chapter":22,"embedding":[0.01587744615972042,0.036443956196308136,-0.00756344199180603,-0.027446357533335686,-0.023508936166763306,0.0013741620350629091,0.05344061553478241,-0.09249494969844818,-0.047274328768253326,-0.024402111768722534,0.027226723730564117,0.028796853497624397,0.027754316106438637,0.041811276227235794,0.020710816606879234,0.02492276392877102,-0.02162078395485878,0.01648493856191635,0.04165540635585785,0.04959161952137947,0.06552677601575851,0.047330714762210846,0.03093649074435234,-0.004584271460771561,-0.12810814380645752,-0.024910569190979004,0.04497845470905304,0.044124502688646317,0.031060174107551575,-0.004583538509905338,0.007495069410651922,-0.027721378952264786,-0.03873584046959877,0.06623587012290955,-0.0687263086438179,0.059322480112314224,0.012525759637355804,-0.037150610238313675,0.06151223182678223,-0.01381363533437252,0.016834937036037445,0.030025402083992958,0.006766012404114008,0.004006308503448963,0.012039092369377613,0.022541364654898643,-0.005286528263241053,-0.035376761108636856,0.0796358659863472,-0.07868306338787079,0.014898303896188736,0.06465858221054077,-0.07645002007484436,0.03856317698955536,-0.013364802114665508,-0.02107223868370056,0.04275866597890854,0.039900463074445724,0.007934780791401863,-0.017053700983524323,0.007785869762301445,0.013745954260230064,-0.05876825004816055,0.063649982213974,-0.03860999271273613,-0.04160791635513306,0.03235788643360138,0.06140456348657608,-0.15284740924835205,0.14381198585033417,-0.018598385155200958,0.036490004509687424,0.02553676813840866,0.055287234485149384,-0.10162952542304993,-0.02829883061349392,-0.044829271733760834,-0.04591319337487221,0.0027446174062788486,0.07036371529102325,-0.09972716867923737,0.030996719375252724,0.02915683016180992,0.06396076083183289,-0.033078793436288834,-0.07488998770713806,0.01865261048078537,-0.08353473991155624,0.10440918803215027,0.03744473680853844,-0.08191114664077759,0.04311172664165497,0.09521309286355972,-0.042079515755176544,0.007408346049487591,-0.012452907860279083,-0.08185497671365738,0.07903815805912018,-0.11152627319097519,0.05755039304494858,0.004816870205104351,-0.03661935403943062,-0.13177210092544556,0.048933058977127075,0.05954456329345703,-0.010552811436355114,-0.019676778465509415,0.03584471717476845,-0.11079823225736618,0.003108499338850379,-0.009287050925195217,-0.0323549248278141,-0.03391965478658676,-0.04311667010188103,0.06084040179848671,0.04321194812655449,-0.005959067028015852,0.0018891672370955348,-0.009268498048186302,0.011419154703617096,-0.040208637714385986,0.03481977805495262,0.01637175679206848,0.10620193928480148,-0.0031346490141004324,-0.08561354130506516,0.03135665878653526,-3.0513875414568495e-33,-0.0402362160384655,0.05766362324357033,0.01448782067745924,-0.032768744975328445,-0.054900892078876495,0.06506553292274475,-0.009508433751761913,0.036920215934515,0.010339385829865932,-0.0048232716508209705,0.03991071507334709,0.04556969180703163,0.016320064663887024,-0.011521656066179276,-0.1295710653066635,0.008125169202685356,-0.04892823100090027,0.11484435200691223,0.05567331984639168,0.0077802883461117744,0.00418877974152565,-0.03672678396105766,0.0048032295890152454,-0.03356879949569702,-0.002969104330986738,-0.06513892114162445,0.0034866423811763525,0.02679656259715557,0.08805635571479797,0.03295444697141647,0.05129570886492729,0.038108501583337784,-0.006844736635684967,0.004892743192613125,-0.019325340166687965,-0.0036905361339449883,0.019886864349246025,0.031644515693187714,-0.0790620818734169,-0.04576105996966362,0.013769027777016163,0.026889223605394363,-0.0370355062186718,-0.06588605046272278,-0.004099088720977306,0.019342834129929543,0.05317779257893562,-0.009987635537981987,-0.09423910081386566,-0.04604493826627731,-0.004356458783149719,0.03684155270457268,0.0548565573990345,0.0016397935105487704,-0.04611143097281456,-0.0703883245587349,-0.08462865650653839,0.03721312806010246,0.001992806326597929,0.05375509709119797,-0.03981328383088112,-0.010197765193879604,-0.00882384367287159,0.04624982550740242,-0.020531227812170982,-0.11924715340137482,-0.07330157607793808,0.0692402645945549,-0.09116040170192719,0.004439247772097588,0.03808869421482086,-0.02227748930454254,0.05282378941774368,0.04558035731315613,-0.056421346962451935,-0.02210966870188713,0.04230083152651787,-0.055670689791440964,0.0344357043504715,-0.0335988886654377,-0.047512322664260864,0.02554924041032791,-0.010246972553431988,-0.01887165941298008,0.02892238460481167,-0.07217060774564743,0.08597695827484131,-0.02737404964864254,0.030909504741430283,0.08921895921230316,-0.03722433000802994,0.018363723531365395,0.06401652842760086,-0.04248116910457611,-0.13355210423469543,1.0914867286858112e-33,0.05210583284497261,0.08008165657520294,0.060805369168519974,0.03858720511198044,-0.010606524534523487,-0.009948915801942348,-0.10381090641021729,-0.033720068633556366,0.028910230845212936,0.04439496994018555,0.019548239186406136,-0.003575380891561508,-0.007948714308440685,-0.016815029084682465,-0.008225786499679089,-0.12420477718114853,-0.009766054339706898,-0.008004679344594479,-0.07162456959486008,-0.04800435155630112,-0.010397091507911682,0.0552041158080101,-0.008150007575750351,-0.030738217756152153,-0.01153857633471489,-0.017092684283852577,0.08375082165002823,-0.020735548809170723,0.018326114863157272,-0.04653094708919525,0.045232608914375305,-0.0419805534183979,-0.06988926231861115,-0.033423397690057755,0.008828414604067802,-0.031398095190525055,-0.00515685835853219,-0.0017676512943580747,0.04338907077908516,0.033595167100429535,-0.09883613884449005,0.03473722189664841,-0.07700525224208832,-0.021701408550143242,-0.0011028895387426019,-0.08296046406030655,0.05214397981762886,0.03170566260814667,0.006625745911151171,-0.017420541495084763,-0.055416569113731384,-0.03426005691289902,-0.04530191794037819,-0.10339819639921188,-0.006632525473833084,-0.00627130875363946,0.018706418573856354,0.010694948025047779,0.003226308384910226,-0.013821383006870747,0.0037795561365783215,-0.015436843037605286,-0.07072703540325165,0.03595214709639549,-0.026868436485528946,0.046882692724466324,-0.031015783548355103,0.03050469234585762,0.01258621271699667,0.0338774211704731,-0.04776957631111145,-0.05617864802479744,-0.0038891350850462914,0.027189308777451515,0.05128702521324158,-0.044467244297266006,0.03441993147134781,-0.04095122218132019,-0.057430483400821686,-0.050053179264068604,0.12471812963485718,-0.07693188637495041,0.003656879998743534,0.032947465777397156,-0.0566665381193161,-0.010291553102433681,0.007774597965180874,0.032879140228033066,0.04283878579735756,0.08631066232919693,-0.06458590179681778,-0.05241154506802559,0.02757880464196205,0.009509927593171597,0.06735503673553467,-2.550468281015128e-8,-0.03478537127375603,-0.07399731874465942,0.10635555535554886,0.027556996792554855,0.0074309129267930984,0.005732229445129633,0.0383203849196434,-0.08293087780475616,0.02318042702972889,-0.0559772290289402,0.06665650755167007,-0.04132645204663277,0.02874179184436798,0.06442151218652725,0.09535004198551178,0.07978255301713943,0.0857354924082756,-0.07802042365074158,-0.0586487241089344,-0.016162989661097527,-0.04969821125268936,0.0013259339611977339,-0.011836548335850239,0.07678154110908508,0.0075596473179757595,0.027357906103134155,-0.07253890484571457,-0.010115423239767551,0.005010050721466541,0.13484694063663483,0.03583277389407158,-0.03884889930486679,-0.0901351049542427,-0.025394415482878685,0.007403782568871975,0.038664668798446655,-0.0187514778226614,0.05330148711800575,0.1074884682893753,0.0426732674241066,-0.044926609843969345,0.017466604709625244,0.1129847913980484,0.0882473737001419,-0.017664510756731033,0.08645067363977432,0.0068763261660933495,0.07301858067512512,-0.044707927852869034,-0.007158956490457058,-0.05469187721610069,0.043860092759132385,0.05520956963300705,0.037107206881046295,0.03831923380494118,0.04622484743595123,0.015107610262930393,0.009941945783793926,-0.05974358320236206,0.02281223051249981,0.06558293849229813,-0.01961916871368885,-0.004561711102724075,-0.04556325450539589]},{"text":"No animal must ever live in a house, or sleep in a bed, or wear clothes, or drink alcohol, or smoke tobacco, or touch money, or engage in trade.","book":"Animal Farm","chapter":22,"embedding":[0.029112137854099274,0.022134998813271523,0.020007135346531868,0.08604470640420914,0.02625562809407711,0.007269941736012697,-0.011847009882330894,-0.10876095294952393,-0.0383317656815052,0.044473130255937576,0.05064260587096214,-0.038931068032979965,-0.04084127023816109,0.08207129687070847,0.0594230592250824,-0.020438777282834053,-0.05729905143380165,-0.03641561046242714,0.048066623508930206,0.05784054100513458,0.00990891084074974,0.02132725529372692,0.09187918156385422,-0.024628138169646263,-0.024535316973924637,-0.030982928350567818,-0.04552127420902252,-0.032914817333221436,0.013720481656491756,0.006777903065085411,0.01996203139424324,0.021457254886627197,-0.03319040313363075,0.028471238911151886,0.07694105803966522,0.004512319806963205,0.060974352061748505,-0.040244922041893005,0.08488473296165466,0.042856279760599136,0.06264243274927139,-0.02313084900379181,0.010900873690843582,-0.03602396696805954,-0.08619458228349686,0.0044611189514398575,-0.06297748535871506,-0.05394226312637329,0.062302116304636,-0.04654185473918915,-0.07599228620529175,0.05929359793663025,-0.0033319429494440556,0.00739650521427393,-0.03308206796646118,-0.03671485185623169,-0.009086214937269688,-0.05022256076335907,0.08824888616800308,-0.05775679647922516,0.09040573984384537,0.07026885449886322,0.08285418897867203,0.007532322313636541,0.038923535495996475,0.023102497681975365,-0.07704420387744904,0.08092553913593292,-0.0032136181835085154,-0.02496114932000637,-0.026242339983582497,-0.05357695370912552,-0.04364665970206261,-0.008630616590380669,-0.0699620321393013,-0.022123761475086212,-0.005758871790021658,-0.01820634864270687,0.12191849201917648,0.027196453884243965,-0.08557379990816116,-0.01440455298870802,0.01138339377939701,0.030071761459112167,0.014011124148964882,0.019097572192549706,-0.015052415430545807,0.012203606776893139,-0.04148821532726288,0.037588298320770264,0.03223370760679245,-0.06659266352653503,0.017441533505916595,-0.027865136042237282,0.04734610766172409,0.00466971704736352,0.013718197122216225,-0.012614242732524872,-0.08099911361932755,0.02756921388208866,-0.03204387426376343,-0.024192078039050102,0.028633980080485344,-0.01356864906847477,0.025321319699287415,-0.0006329482421278954,-0.09215701371431351,0.012386930175125599,0.024305284023284912,0.05203670635819435,-0.15124113857746124,0.007705629803240299,0.0947270467877388,0.09542051702737808,0.061823613941669464,0.027641523629426956,-0.03894123435020447,-0.08862454444169998,-0.0364081971347332,-0.028282754123210907,0.014554960653185844,-0.012059515342116356,-0.001841820660047233,-0.010195632465183735,0.05230781435966492,-0.04068119078874588,0.015087109990417957,-1.2579816363198683e-33,0.0436038039624691,-0.08797050267457962,0.00070186797529459,-0.02424977533519268,-0.007874192669987679,0.01842537708580494,-0.05367002636194229,0.05005788803100586,0.03323579579591751,0.025152048096060753,0.0004345971974544227,-0.07387245446443558,-0.016484655439853668,0.015349108725786209,0.04316193610429764,0.06464763730764389,-0.015399306081235409,-0.05634338781237602,0.10284631699323654,-0.07143734395503998,0.020452965050935745,-0.037836041301488876,0.02613593265414238,0.024196704849600792,-0.039288733154535294,-0.02052108198404312,-0.0012717375066131353,-0.09110046923160553,-0.006993839517235756,0.011930891312658787,-0.034860603511333466,-0.06541529297828674,0.001267421175725758,-0.02457941137254238,-0.0725073292851448,-0.006858641281723976,-0.010862383060157299,-0.025820614770054817,-0.09420686960220337,-0.0015852111391723156,0.008575803600251675,0.00008107112080324441,0.11569822579622269,0.00016680733824614435,0.04877301678061485,0.05960582196712494,0.017712228000164032,0.026911912485957146,-0.06314272433519363,0.06502750515937805,0.007772898301482201,0.00786794163286686,-0.018192313611507416,-0.08717679232358932,-0.045685719698667526,0.021608758717775345,0.030640734359622,-0.028016481548547745,-0.0573183111846447,-0.017321813851594925,0.000727152219042182,-0.06714947521686554,0.017994387075304985,0.014056047424674034,0.0625254437327385,-0.052141666412353516,-0.018597804009914398,-0.003045217366889119,-0.05984611436724663,-0.008453652262687683,0.0324440598487854,0.012748842127621174,-0.08125641942024231,-0.10600417852401733,-0.0006346242735162377,-0.04078517481684685,0.03865840286016464,-0.019096264615654945,-0.0488881841301918,-0.03294221684336662,0.06385093182325363,-0.010044665075838566,-0.0229757372289896,0.08379561454057693,0.16075736284255981,0.03748278692364693,0.049586787819862366,-0.028210721909999847,0.05067671462893486,-0.016803910955786705,0.0720175951719284,-0.054250944405794144,0.03472769260406494,-0.1305847316980362,0.045832302421331406,6.233846743792215e-34,-0.019295645877718925,-0.05284556373953819,0.03631263226270676,-0.00288894260302186,-0.02273382432758808,-0.002375807845965028,-0.08140790462493896,-0.004396351519972086,0.07015278190374374,0.04332422837615013,-0.035914357751607895,-0.004921743646264076,0.09817422926425934,0.005588575266301632,0.07499097287654877,-0.07182008773088455,-0.02900126948952675,-0.00942173134535551,0.005428616423159838,-0.05338336527347565,-0.07906865328550339,-0.028804726898670197,-0.020585758611559868,0.0939028412103653,-0.010929740034043789,0.08879414200782776,-0.07430735230445862,0.07752593606710434,-0.007387694902718067,-0.0464709997177124,0.026881704106926918,0.08396217972040176,-0.0363461896777153,-0.03932555392384529,-0.012794284150004387,-0.06413088738918304,0.003274465212598443,-0.029682155698537827,-0.06558994948863983,-0.0066558318212628365,0.06579222530126572,0.002778862603008747,-0.09893891215324402,0.01992868445813656,0.019202211871743202,0.03946392983198166,-0.034093745052814484,-0.0556296743452549,0.007533671800047159,0.0331050343811512,0.07334356755018234,0.05825137346982956,-0.023841600865125656,-0.09489604085683823,0.0022483929060399532,0.03634902834892273,-0.02207508683204651,0.003518336918205023,0.04382980987429619,-0.003276167204603553,0.01914016157388687,0.0919722467660904,-0.049587637186050415,0.05462205782532692,-0.0491349883377552,-0.006616211496293545,-0.07112672179937363,0.06714903563261032,0.049679312855005264,-0.06660669296979904,0.07988560199737549,-0.01605505496263504,-0.04483293369412422,-0.02717673033475876,-0.009864767082035542,0.07204653322696686,0.06386622041463852,0.009911341592669487,0.10420344024896622,-0.059399381279945374,-0.01038474403321743,-0.04557480290532112,0.03170822933316231,0.013122697360813618,0.0433531180024147,-0.13405755162239075,-0.09006372094154358,0.03968029096722603,0.056336574256420135,0.05034930631518364,-0.06407153606414795,-0.003429952310398221,0.013548952527344227,0.026154188439249992,-0.0029459241777658463,-3.238725909682216e-8,-0.05419837310910225,0.0921015664935112,0.05854607746005058,0.07690032571554184,-0.03572279214859009,0.03475178778171539,0.16486263275146484,-0.09156104177236557,0.043939437717199326,0.13264629244804382,0.020042618736624718,-0.0019996496848762035,0.011411849409341812,0.04311555624008179,-0.04188362881541252,0.05503454431891441,0.06096314638853073,-0.049624569714069366,-0.04958757385611534,0.05899034067988396,-0.04364302381873131,-0.007787753362208605,-0.0030507848132401705,0.040702883154153824,-0.04135909676551819,-0.10236436128616333,-0.0027233234141021967,0.05268198996782303,0.0695001482963562,0.11359543353319168,-0.01578918658196926,0.002495944732800126,-0.013439142145216465,-0.019152693450450897,-0.02813129313290119,-0.09863593429327011,0.07199421525001526,-0.07084523886442184,0.011888277716934681,-0.07995987683534622,-0.06686363369226456,0.0356082059442997,-0.07302136719226837,-0.028007403016090393,-0.018694309517741203,-0.018318280577659607,-0.012090470641851425,-0.017221737653017044,-0.016856113448739052,-0.02318403497338295,-0.031324006617069244,0.025864291936159134,0.0353703573346138,-0.033225689083337784,-0.027184156700968742,-0.04239334911108017,0.008016563951969147,0.03886532038450241,0.008085672743618488,-0.04423338547348976,0.05574950948357582,-0.0006889707292430103,0.034117814153432846,0.011800679378211498]},{"text":"All animals are equal. \"And now, comrades, I will tell you about my dream of last night.","book":"Animal Farm","chapter":22,"embedding":[0.02908763475716114,0.07027227431535721,0.07372158020734787,0.05097831413149834,0.011148976162075996,-0.060713991522789,-0.007467297371476889,-0.0817195251584053,0.026214061304926872,-0.024717506021261215,-0.042265843600034714,-0.021764501929283142,-0.003893977962434292,-0.0033896772656589746,0.013418999500572681,0.010374900884926319,-0.023234061896800995,-0.00477654580026865,-0.02068447694182396,0.06740567833185196,-0.03617842495441437,-0.008711082860827446,0.06690176576375961,0.09200619161128998,-0.05629861727356911,0.018704429268836975,-0.011104370467364788,0.0037728697061538696,-0.03792119771242142,0.019831104204058647,-0.058802567422389984,-0.028844868764281273,0.002272033831104636,0.017076030373573303,0.02483309432864189,-0.02493533119559288,0.04715832695364952,-0.09510572254657745,0.10930927842855453,0.05467874929308891,0.047059331089258194,-0.07701583951711655,-0.017377514392137527,0.02715546451508999,-0.039557792246341705,0.07302307337522507,-0.048500679433345795,-0.04104939103126526,0.0302011389285326,-0.08248605579137802,-0.06259490549564362,-0.0271125677973032,-0.07165940850973129,-0.04120498150587082,0.023500196635723114,0.017929963767528534,-0.04016062617301941,0.04394002631306648,0.053440533578395844,-0.033334627747535706,-0.029048724099993706,0.026747968047857285,0.06528874486684799,0.14958977699279785,0.054402906447649,-0.06407573074102402,-0.018086563795804977,0.09034770727157593,-0.09731729328632355,0.009317941032350063,0.01227799616754055,0.026871591806411743,0.05623931810259819,-0.01029497105628252,-0.07872066646814346,0.017270762473344803,-0.005264106206595898,-0.014512475579977036,0.08879926055669785,0.052243027836084366,-0.05428418144583702,-0.03994050994515419,-0.03976001963019371,-0.012809640727937222,0.0647672712802887,-0.0012158359168097377,0.03743286058306694,-0.028486892580986023,-0.04196006432175636,0.009505492635071278,-0.08647464960813522,-0.04272710159420967,0.001605570432730019,0.08627673983573914,0.04148157313466072,-0.02147386036813259,-0.009358200244605541,0.03330163285136223,-0.008097928948700428,0.019442118704319,0.02671085111796856,-0.024533798918128014,0.031123453751206398,-0.03630789369344711,0.04998502507805824,-0.00009467385825701058,-0.08263196051120758,-0.039617206901311874,-0.0181257501244545,-0.0683453232049942,-0.05769738554954529,-0.07595745474100113,0.032390713691711426,0.1052253246307373,0.04083988070487976,0.0207744799554348,-0.018688542768359184,-0.026889042928814888,-0.10160686820745468,0.044639863073825836,-0.012248719111084938,0.031326331198215485,0.027476124465465546,0.030343173071742058,0.06744767725467682,-0.03799421340227127,0.06255844980478287,-5.718457123145937e-33,0.02770059183239937,-0.06846440583467484,-0.002511353464797139,-0.00036345390253700316,0.09613393247127533,0.021055186167359352,-0.04977909475564957,0.04669339954853058,-0.06366536766290665,0.02581097185611725,-0.07096844166517258,0.07988276332616806,-0.015168266370892525,0.05177231878042221,-0.07076647877693176,0.010884257033467293,0.00859310943633318,-0.0023976985830813646,0.08012402057647705,-0.014840370044112206,-0.0016475314041599631,0.051986608654260635,-0.07219256460666656,-0.06019475683569908,0.024495920166373253,-0.06649776548147202,-0.0049252575263381,-0.05048368498682976,0.02463991567492485,0.013749659061431885,-0.010573859326541424,-0.010763473808765411,-0.01402384601533413,0.006049977615475655,-0.027284756302833557,-0.0029806543607264757,-0.01045464538037777,-0.0754726231098175,-0.11929155886173248,-0.03283826261758804,0.07875411957502365,0.0003255985211580992,0.04072112590074539,-0.11493711173534393,-0.002485540695488453,0.014804691076278687,-0.004577815532684326,0.06553594768047333,-0.036361053586006165,-0.011423694901168346,-0.02446098066866398,0.03674235939979553,0.008437695913016796,-0.04209722578525543,0.013868782669305801,-0.01781568117439747,0.06301238387823105,0.098707415163517,-0.01931697502732277,0.006988047622144222,-0.07281643152236938,-0.07813730090856552,-0.007051035761833191,-0.03948279097676277,0.032786618918180466,-0.03685067966580391,-0.04031430184841156,-0.02702341414988041,0.013224261812865734,0.011287912726402283,0.07533420622348785,-0.06915663182735443,-0.04886438697576523,0.0029891126323491335,-0.06341483443975449,-0.017842693254351616,0.027090800926089287,-0.0020283223129808903,-0.039956189692020416,-0.016606634482741356,-0.026832783594727516,0.14454053342342377,-0.06084989756345749,-0.01270288322120905,0.07274208962917328,0.10362204164266586,0.09676752984523773,-0.15850527584552765,0.036494798958301544,0.013156011700630188,-0.021423494443297386,-0.03606117516756058,0.0060842763632535934,-0.07549627125263214,-0.03886760398745537,1.5473943147995658e-33,0.013212446123361588,0.003117579035460949,0.021844355389475822,0.10469014197587967,0.029627498239278793,-0.01330714114010334,0.06045288220047951,-0.030423259362578392,0.029355529695749283,0.07330190390348434,0.05123032629489899,0.00027234654407948256,0.010821381583809853,0.012044222094118595,0.04022015631198883,-0.0796409398317337,0.004697475582361221,-0.06089271605014801,0.05774309113621712,-0.012796679511666298,-0.06271108984947205,0.06768060475587845,0.03010464645922184,0.005550962872803211,-0.011220290325582027,0.06073497235774994,0.03739023953676224,0.0027746609412133694,0.013603116385638714,-0.13844828307628632,0.0004736660048365593,-0.10518050193786621,-0.11321462690830231,-0.029802152886986732,0.13157396018505096,-0.01423924881964922,0.018071264028549194,-0.04338616132736206,-0.021376794204115868,-0.02973180264234543,-0.023576557636260986,-0.06757248938083649,-0.11656934022903442,0.034374792128801346,0.02866990678012371,-0.033132441341876984,0.03544405847787857,-0.033158887177705765,0.050086118280887604,0.02651815302670002,-0.01680056005716324,-0.0018507960485294461,0.00267642829567194,-0.032367829233407974,0.019303999841213226,-0.11237731575965881,0.005505697336047888,-0.0555875301361084,0.0681944414973259,-0.007047231774777174,0.002058359794318676,0.04578191787004471,-0.09253612160682678,0.09315063804388046,-0.029199231415987015,-0.015191281214356422,-0.07096205651760101,0.037595707923173904,0.020339010283350945,0.005961715243756771,0.03143845498561859,-0.015153750777244568,-0.09642189741134644,0.03495870158076286,0.03518953174352646,-0.01360396295785904,0.04354223981499672,-0.05506560206413269,0.07504869252443314,-0.015230022370815277,0.0030836202204227448,-0.10557800531387329,0.025048157200217247,0.057130198925733566,-0.0015008930349722505,-0.018511619418859482,-0.01275556068867445,0.0617075078189373,0.06801608949899673,0.08416406810283661,-0.04504983127117157,-0.04386601224541664,0.012357809580862522,-0.03619678318500519,0.003017076291143894,-2.5963091232483748e-8,-0.015204934403300285,0.019978724420070648,-0.023424219340085983,0.08024337887763977,0.0033614295534789562,-0.020720496773719788,-0.005745757836848497,-0.0808446928858757,-0.05683416873216629,0.06718337535858154,0.026750598102808,-0.0013375473208725452,0.04111534357070923,0.099735327064991,0.04080185294151306,0.08729710429906845,-0.02496957778930664,-0.12783031165599823,0.03936844691634178,0.026529666036367416,-0.04687095433473587,0.02211705781519413,-0.02469160035252571,-0.0814642459154129,-0.012800486758351326,0.039970654994249344,-0.10442211478948593,0.02196846716105938,-0.03760181739926338,0.0709623396396637,0.043291982263326645,-0.007764803245663643,-0.04519100487232208,-0.054588932543992996,0.02112271450459957,-0.04554907977581024,-0.044361233711242676,0.039670564234256744,0.10373246669769287,-0.02161792479455471,-0.002525813179090619,0.04233693331480026,0.08958900719881058,-0.004794984590262175,-0.0016626776196062565,-0.025230716913938522,0.054209306836128235,-0.021470747888088226,-0.043201349675655365,0.005629668477922678,-0.04449893534183502,0.03562195971608162,0.024647675454616547,0.008981580846011639,-0.0053544482216238976,-0.06325174123048782,-0.012957468628883362,0.0025384407490491867,-0.011707711964845657,0.022133899852633476,0.09754849225282669,-0.03438093513250351,-0.08127136528491974,-0.08579383045434952]},{"text":"I had known that tune in my infancy, but it had long since passed out of my mind.","book":"Animal Farm","chapter":22,"embedding":[-0.044258300215005875,-0.026008365675807,-0.0341242216527462,0.0027312966994941235,-0.05920092388987541,0.03434586152434349,0.05037592723965645,-0.014971824362874031,-0.018514862284064293,0.0024950362276285887,-0.09874119609594345,0.09730822592973709,0.005513661541044712,-0.10189592093229294,-0.03732968494296074,0.04032714292407036,-0.022757746279239655,-0.03627490997314453,0.055859364569187164,-0.0691693127155304,-0.10850149393081665,0.06348499655723572,0.02690913900732994,0.010556039400398731,-0.013090739957988262,0.06112490966916084,-0.014103058725595474,0.06140957400202751,-0.009574074298143387,-0.0036633906420320272,-0.04521050676703453,0.0881381556391716,0.027660490944981575,-0.07180781662464142,-0.06478936970233917,0.013334964402019978,-0.05049975961446762,-0.005025444086641073,-0.007963495329022408,0.0050429971888661385,0.02070174179971218,0.11988864839076996,-0.003924006130546331,-0.046989571303129196,-0.06415567547082901,0.003308488056063652,-0.05445859953761101,-0.05406743288040161,0.028838980942964554,0.00672014057636261,-0.030618486925959587,-0.03378666564822197,0.052603963762521744,0.022942213341593742,0.020076638087630272,0.037086911499500275,-0.003393778810277581,0.10253844410181046,-0.0574713759124279,0.07296596467494965,-0.07600992918014526,-0.05896654352545738,-0.020345538854599,-0.08460581302642822,0.018221847712993622,0.009868836030364037,0.008629504591226578,0.007166508585214615,0.008909011259675026,0.004426316823810339,-0.05898818001151085,0.0010837457375600934,0.0630539134144783,0.07600522041320801,-0.0017171796644106507,0.029930390417575836,0.06299103051424026,-0.04117852449417114,0.03128930553793907,-0.03546713665127754,-0.04551445320248604,0.01754802279174328,-0.06253986060619354,-0.10643988102674484,-0.03288012742996216,-0.023040080443024635,0.06318223476409912,0.024103933945298195,-0.01602010242640972,-0.012805172242224216,-0.019065089523792267,-0.028150049969553947,-0.08399591594934464,-0.04539105296134949,0.06286168843507767,-0.03738194331526756,-0.003307812148705125,0.021586669608950615,-0.040851932018995285,-0.010785252787172794,-0.011258695274591446,-0.01022263616323471,0.028511404991149902,0.018412431702017784,-0.006624897010624409,-0.01305850874632597,0.014894380234181881,0.07460252195596695,-0.020787417888641357,-0.08367980271577835,-0.0217897966504097,0.04171563684940338,0.07187565416097641,0.03334664925932884,-0.0063788918778300285,0.022765344008803368,0.003937188535928726,-0.007773499004542828,0.008244814351201057,0.09077533334493637,0.09330709278583527,0.07928220182657242,-0.060574326664209366,0.011413216590881348,-0.08525200188159943,-0.06400984525680542,-0.05413603037595749,-3.822007842393355e-33,-0.09072301536798477,0.023605789989233017,0.04687272012233734,0.023438626900315285,0.07994076609611511,-0.01832018978893757,-0.11682312935590744,0.027386527508497238,-0.009139678440988064,0.06193584203720093,0.03117402456700802,-0.0020628368947654963,-0.0025180503726005554,-0.06629908084869385,-0.02558738924562931,0.008807443082332611,-0.06868903338909149,-0.009556902572512627,0.0620233453810215,0.011342373676598072,-0.030096251517534256,0.11628261208534241,0.0585506409406662,-0.1214313879609108,0.00307378638535738,0.050737567245960236,0.037059906870126724,0.007202368229627609,0.05315045639872551,0.027095191180706024,0.06319746375083923,-0.02750672586262226,-0.01951613649725914,-0.022684799507260323,-0.08479730039834976,-0.03163135051727295,-0.026399457827210426,-0.021153274923563004,0.004211589228361845,0.07730376720428467,0.027421727776527405,0.0047431159764528275,-0.0012241483200341463,0.012918628752231598,-0.050497934222221375,0.009054766967892647,0.02867608517408371,0.02242591790854931,-0.01320615317672491,0.03522805497050285,0.0002920440456364304,-0.023744648322463036,-0.006399983540177345,-0.04482759162783623,-0.0001450060517527163,0.10239264369010925,0.06356453895568848,-0.0014925898285582662,-0.034539852291345596,-0.009523767977952957,-0.004970617592334747,-0.024835282936692238,0.08744391798973083,-0.07685527950525284,0.054548703134059906,0.05875033512711525,0.0002662666665855795,-0.044310618191957474,-0.04312941059470177,-0.056437358260154724,-0.035669442266225815,-0.034375399351119995,-0.06184922531247139,-0.05696270987391472,-0.04429691657423973,-0.093370221555233,0.015602764673531055,-0.05576213449239731,0.031101012602448463,-0.10567686706781387,0.04537900909781456,0.02436334267258644,-0.014785245060920715,0.07007535547018051,0.040871746838092804,-0.019525691866874695,0.039541155099868774,-0.08431192487478256,-0.07150678336620331,0.031140953302383423,-0.05911027640104294,0.02436196058988571,0.03764938935637474,-0.06572375446557999,0.007695236708968878,4.352145692709629e-34,0.03059171512722969,-0.02627759799361229,0.05105180665850639,0.0794813260436058,0.0019559566862881184,-0.00524425134062767,-0.04995529353618622,0.07166251540184021,-0.032952822744846344,0.025317803025245667,0.025244655087590218,-0.046754296869039536,0.024042924866080284,-0.01743859238922596,0.02648632414638996,0.05103762820363045,-0.07924492657184601,0.1337733417749405,0.09935470670461655,-0.03470417484641075,-0.03517919406294823,-0.04320889338850975,-0.041008204221725464,0.005833110772073269,-0.0007130457670427859,-0.03790741786360741,0.03202449157834053,-0.00028315719100646675,-0.021945154294371605,0.000750586623325944,-0.011865274980664253,-0.03409184515476227,-0.02979428693652153,-0.09816128015518188,0.020388120785355568,0.03900816664099693,0.055012594908475876,-0.05242650955915451,-0.08983072638511658,-0.049140747636556625,-0.11145789176225662,0.01850985735654831,0.08678700774908066,-0.00975489430129528,0.008270373567938805,-0.0580347403883934,0.03537614271044731,0.16506905853748322,-0.06123616546392441,0.0820353776216507,0.006176669616252184,-0.021840151399374008,0.014116243459284306,-0.0873127430677414,-0.038923028856515884,0.07376372814178467,0.0712277814745903,-0.0020395866595208645,-0.0036399085074663162,0.05948415398597717,0.00820498913526535,-0.033543910831213,-0.06120975315570831,-0.06513428688049316,0.03522317856550217,0.03462257236242294,0.036344073712825775,-0.009518473409116268,0.004917483776807785,0.030083531513810158,-0.002060909057036042,0.0035770866088569164,-0.10612454265356064,0.01949390023946762,-0.0718311071395874,0.026736903935670853,-0.05340805649757385,-0.03555496782064438,-0.07055241614580154,0.010850504972040653,0.05263480916619301,-0.035922832787036896,-0.006455837748944759,-0.023960178717970848,0.05267930403351784,0.0572960190474987,0.025195011869072914,-0.0007671817438676953,-0.029602978378534317,0.023196449503302574,0.03175782039761543,0.0217178612947464,-0.09263183176517487,-0.047033797949552536,-0.02004954218864441,-2.4920181473930825e-8,0.0063139162957668304,0.019821133464574814,-0.06675586104393005,0.025018636137247086,0.11703973263502121,0.021495288237929344,0.07364268600940704,-0.03867887333035469,-0.09351615607738495,-0.03802250325679779,-0.007136649452149868,0.0047052036970853806,0.05495255067944527,0.07725802809000015,0.049743760377168655,0.018659451976418495,0.0798095166683197,-0.04081227630376816,-0.015630772337317467,0.0944320410490036,0.0424305759370327,0.06498264521360397,0.1095263734459877,-0.15045112371444702,-0.05039133131504059,-0.03628300130367279,0.005660858936607838,-0.013071718625724316,0.013026507571339607,-0.011175123043358326,0.04538453742861748,0.06349404156208038,-0.027886800467967987,-0.03501775860786438,-0.021725093945860863,-0.03274781256914139,0.02763897366821766,-0.006954953074455261,0.00013620233221445233,-0.02785898745059967,0.056280892342329025,0.15152131021022797,-0.0023980147670954466,0.012254497967660427,-0.04205599054694176,-0.05337364226579666,0.09887188673019409,0.011298306286334991,-0.026751920580863953,0.046234432607889175,0.07295674830675125,0.09379986673593521,0.023342879489064217,0.022289816290140152,0.06854677945375443,0.05967514216899872,-0.1036071628332138,0.03814256191253662,-0.08860423415899277,0.0054244776256382465,-0.00008910245378501713,-0.0026496911887079477,0.010409782640635967,-0.004270790610462427]},{"text":"It is called 'Beasts of England'.\" Old Major cleared his throat and began to sing.","book":"Animal Farm","chapter":23,"embedding":[0.019897008314728737,0.028960248455405235,-0.019110102206468582,-0.011889946646988392,-0.04741447791457176,0.026903504505753517,0.012303795665502548,-0.09682529419660568,-0.10842936486005783,-0.07462114095687866,-0.02127283439040184,-0.011166907846927643,-0.009404339827597141,0.0194231066852808,-0.052554886788129807,0.052581802010536194,-0.023911580443382263,0.04475826770067215,0.04032672196626663,-0.03797120600938797,0.005200029816478491,0.1374308317899704,0.05087658017873764,0.05854666978120804,0.038516584783792496,-0.03174538537859917,-0.0073190960101783276,-0.0024753978941589594,0.010845162905752659,-0.03879135102033615,0.010629912838339806,0.018883392214775085,0.05622537061572075,-0.04396598041057587,-0.0651855394244194,0.03513006493449211,-0.018401438370347023,0.05500563234090805,0.014029254205524921,0.020116155967116356,0.026005053892731667,0.05300377681851387,-0.004049754235893488,-0.0227187629789114,-0.06338672339916229,0.058765120804309845,-0.13656064867973328,-0.04725264385342598,0.08058328926563263,0.025740906596183777,0.02298378199338913,-0.08499036729335785,0.03949661925435066,-0.05237188562750816,-0.021166659891605377,-0.013366339728236198,0.108744315803051,0.025848673656582832,0.03866252303123474,0.041110750287771225,-0.05268819257616997,-0.011728150770068169,0.0326610803604126,0.02733968384563923,-0.005535844247788191,-0.04954730346798897,-0.03275958448648453,0.015781965106725693,-0.016667794436216354,0.010316360741853714,0.028074022382497787,-0.06742901355028152,0.042052727192640305,-0.10530945658683777,-0.01002502255141735,-0.026844030246138573,-0.07329411804676056,0.002089307177811861,-0.046219758689403534,0.010471968911588192,0.018615979701280594,0.006685836706310511,-0.06001686677336693,-0.09284405410289764,0.06527411192655563,-0.04761083796620369,0.01582523249089718,-0.05533044785261154,-0.08059711009263992,0.0033857000526040792,-0.054545700550079346,-0.08708362281322479,-0.026903793215751648,0.14611168205738068,0.05552824214100838,-0.013217037543654442,0.06630603224039078,0.029234744608402252,-0.0008333029109053314,0.05723973736166954,-0.03055107779800892,-0.03850399702787399,0.021173717454075813,0.006828839424997568,0.035672709345817566,-0.03256585821509361,0.0105200856924057,0.10209253430366516,0.010991225019097328,-0.07484351098537445,0.025983557105064392,-0.010429264046251774,-0.01088340301066637,0.04487583413720131,0.03565582260489464,-0.013119563460350037,-0.05805371329188347,-0.05070553719997406,-0.11883145570755005,0.013712005689740181,0.11349497735500336,0.07177513837814331,-0.11449985951185226,-0.06786224991083145,-0.016514623537659645,0.10634046047925949,-0.04889141023159027,-5.2222152034486006e-33,0.06471031159162521,-0.08331694453954697,-0.03748907148838043,0.010712245479226112,0.061375364661216736,0.021448174491524696,-0.0790925994515419,0.0632234588265419,0.020076895132660866,0.039564456790685654,0.0251367948949337,-0.06615620106458664,-0.03527645394206047,-0.09752071648836136,-0.015581452287733555,-0.022733667865395546,-0.03629664331674576,0.008343072608113289,0.06485357135534286,-0.02008841559290886,-0.024848060682415962,0.14425215125083923,0.004899748135358095,-0.0684739276766777,0.008847526274621487,-0.0032737920992076397,-0.028727682307362556,-0.07357261329889297,0.11747240275144577,0.03948432579636574,0.004795858170837164,-0.007651072461158037,-0.03896860033273697,-0.03861662745475769,-0.03666096180677414,-0.01621776632964611,-0.013799727894365788,-0.0970270186662674,-0.012490104883909225,0.029392635449767113,0.02363407053053379,0.04543553292751312,-0.07253541052341461,-0.03905938193202019,-0.1338990032672882,-0.007211516611278057,-0.09846942126750946,0.037338946014642715,0.08264482766389847,-0.002650049515068531,0.011726065538823605,-0.08092840015888214,0.014642663300037384,-0.060629989951848984,0.027154607698321342,0.041895393282175064,0.058056775480508804,0.05839148163795471,0.038928840309381485,-0.04724587872624397,0.05175444111227989,0.017131676897406578,0.11375337839126587,0.03597843274474144,0.04629337415099144,-0.04857197031378746,-0.012208197265863419,-0.06633494794368744,-0.020018072798848152,-0.08806507289409637,-0.0015557990409433842,-0.013623126782476902,-0.005860777106136084,-0.06166921183466911,0.047804366797208786,-0.04431487247347832,0.015298799611628056,0.022942421957850456,-0.04417979717254639,0.005244386848062277,0.05014653131365776,-0.01673242636024952,-0.006654656026512384,0.06030399724841118,0.03536126762628555,-0.00018898383132182062,0.006508082151412964,-0.07864058017730713,0.020233215764164925,0.07547185570001602,-0.07785402983427048,-0.017042839899659157,-0.06466261297464371,-0.04523887857794762,-0.03981373831629753,2.5861382650029117e-33,0.05019121244549751,0.09475095570087433,0.08811181783676147,0.046917639672756195,0.038332585245370865,0.038698673248291016,-0.011943004094064236,0.10747335106134415,-0.02262050472199917,-0.013339778408408165,-0.033239711076021194,0.015597106888890266,0.06606272608041763,0.0024099594447761774,0.05349984019994736,-0.004638909362256527,-0.009937833063304424,0.019164016470313072,0.021460486575961113,0.08439531177282333,0.013506261631846428,-0.10493142157793045,-0.002447797218337655,-0.04702896624803543,-0.04533018544316292,0.021913297474384308,-0.054074786603450775,0.029090655967593193,-0.023724952712655067,-0.051568347960710526,-0.020166760310530663,0.046641938388347626,-0.02598731406033039,-0.08592531085014343,-0.12210912257432938,0.05797072499990463,0.021131951361894608,-0.04069922864437103,-0.0010285642929375172,-0.0014559903647750616,-0.048050656914711,-0.05450943484902382,0.061696816235780716,0.019634319469332695,-0.014858351089060307,-0.04022769257426262,0.0182332806289196,0.10118572413921356,-0.04050270467996597,0.011463944800198078,-0.03597186505794525,0.0389290526509285,0.041501522064208984,-0.012266385369002819,-0.002100863726809621,-0.059554573148489,-0.021884560585021973,-0.09805745631456375,-0.025010081008076668,-0.012654174119234085,0.01685328781604767,-0.03761720284819603,-0.03418562933802605,-0.08755527436733246,-0.059730496257543564,0.10827060788869858,-0.04378131404519081,0.0017806664109230042,0.022310195490717888,0.04535524174571037,0.043926212936639786,-0.012420143000781536,-0.0432053841650486,-0.01463970635086298,-0.03865606710314751,0.06518545746803284,-0.06552653759717941,-0.040701232850551605,0.02840208262205124,-0.041432395577430725,0.06989382207393646,-0.024428877979516983,-0.05315089970827103,0.045114412903785706,0.08622439205646515,0.012029362842440605,0.026432210579514503,0.06274507939815521,0.012281847186386585,0.05061819776892662,0.04789586365222931,0.02312123402953148,0.032289449125528336,-0.06764666736125946,0.08560436218976974,-2.1632425628581586e-8,-0.04082855209708214,0.006793186068534851,-0.015971779823303223,-0.06627791374921799,0.040683336555957794,-0.02556273154914379,0.001275129383429885,-0.030784159898757935,0.015016589313745499,0.03534116595983505,-0.08263345807790756,-0.006482998374849558,0.06787537783384323,-0.05901212990283966,-0.002031948883086443,-0.021698663011193275,-0.010337847284972668,-0.02241900935769081,-0.014781166799366474,-0.006583888549357653,-0.06950715184211731,-0.003305702703073621,0.07949571311473846,-0.05679504573345184,0.016563531011343002,0.00435280567035079,0.09297044575214386,-0.03271891921758652,0.00025546870892867446,-0.033104341477155685,0.022574661299586296,0.11157788336277008,-0.029397079721093178,0.0038829483091831207,0.03027571178972721,-0.01847204752266407,0.019727805629372597,-0.0005985518218949437,0.01358342170715332,-0.11942978948354721,0.06852471828460693,0.06488412618637085,0.057340849190950394,0.006772037595510483,-0.003262873971834779,0.060415469110012054,0.06136317551136017,0.048262301832437515,0.03844321146607399,0.0015564649365842342,0.05943332612514496,0.07896305620670319,0.021959004923701286,0.06647717207670212,-0.06738635897636414,0.03732571005821228,0.01087106205523014,0.028635594993829727,-0.02376423217356205,-0.04296734929084778,0.02297574281692505,-0.029509499669075012,0.06414669007062912,-0.021112969145178795]},{"text":"Riches more than mind can picture, Wheat and barley, oats and hay, Clover, beans, and mangel-wurzels Shall be ours upon that day.","book":"Animal Farm","chapter":23,"embedding":[-0.030718106776475906,0.021857893094420433,-0.035435061901807785,0.07801938056945801,-0.05156511813402176,-0.028387222439050674,0.019697513431310654,-0.10555551946163177,-0.027727901935577393,-0.028593052178621292,0.04500759020447731,0.0017617973499000072,0.004559090826660395,-0.010101567953824997,-0.043347444385290146,-0.012259486131370068,0.04367585480213165,-0.028191789984703064,-0.07254999130964279,-0.05431356281042099,0.011024875566363335,0.029869921505451202,0.01860029436647892,-0.0379609689116478,0.041476137936115265,0.01813444122672081,-0.09681278467178345,-0.07510099560022354,0.01932254619896412,-0.08565828204154968,-0.039681609719991684,0.05501565337181091,0.04447412118315697,0.0054143392480909824,0.057083506137132645,0.02041027881205082,0.16039492189884186,-0.11023084819316864,0.04062146320939064,0.021911757066845894,-0.0021713741589337587,-0.06415379047393799,-0.0016982739325612783,0.057200122624635696,-0.10235017538070679,0.020799966529011726,0.060420822352170944,0.003916610032320023,0.02195212058722973,0.03230781853199005,-0.04670941084623337,0.006077095866203308,0.002238139510154724,-0.020766858011484146,-0.018745243549346924,0.08571068942546844,0.005885318387299776,-0.08724252879619598,0.01436662022024393,-0.0018526180647313595,-0.09514027088880539,0.022957460954785347,0.07099931687116623,-0.0003323144919704646,0.040558889508247375,0.00999132078140974,-0.06078795716166496,0.05631048232316971,-0.10512074083089828,-0.01852685771882534,-0.009237722493708134,-0.077895887196064,-0.0075833299197256565,0.038748521357774734,-0.057663314044475555,0.015221315436065197,0.0084382314234972,-0.11158935725688934,0.005025135353207588,-0.011363490484654903,-0.07817583531141281,0.024641182273626328,0.0029450003057718277,0.025186588987708092,-0.06216295808553696,0.007563489489257336,-0.0348997563123703,0.04814941808581352,0.09554292261600494,-0.08089766651391983,-0.06454282999038696,-0.1296466439962387,-0.0003816191165242344,0.11521601676940918,0.003096042200922966,0.026425093412399292,0.03176204487681389,-0.08227267861366272,-0.0742601826786995,-0.01637519709765911,0.07655280083417892,0.013051074929535389,0.10959178954362869,-0.010184996761381626,-0.017491312697529793,0.002042039530351758,-0.1040133386850357,0.02999688871204853,-0.03364672139286995,-0.027095478028059006,-0.020465083420276642,0.03755863383412361,-0.04741758853197098,0.033930353820323944,0.04121525585651398,-0.05329424515366554,0.005516890902072191,-0.06596530228853226,-0.06947092711925507,-0.05073017254471779,0.03940636292099953,0.04081825911998749,-0.0140873733907938,0.02051587589085102,0.0005829865694977343,0.005651409272104502,-0.05403663590550423,-6.90890146622328e-35,-0.00815810076892376,0.04466146603226662,0.05008469521999359,-0.007460512220859528,0.013756038621068,-0.007318869698792696,-0.043182071298360825,-0.0226012971252203,0.0009609274566173553,-0.07583030313253403,-0.06445227563381195,0.026383759453892708,-0.03487064316868782,0.02033347822725773,0.003444514935836196,-0.11576911062002182,-0.023015793412923813,-0.007182948756963015,0.09766805917024612,-0.0013420376926660538,-0.014690644107758999,0.01781514286994934,-0.0834522470831871,-0.014092565514147282,-0.007151850499212742,-0.004011918790638447,0.11129261553287506,-0.06377009302377701,0.01368557196110487,-0.013524766080081463,0.08817222714424133,0.05121332034468651,0.039862655103206635,0.003760992083698511,-0.029391638934612274,0.048754677176475525,-0.05332348495721817,-0.029862530529499054,-0.01436772570014,0.029348965734243393,0.04577900469303131,0.028465531766414642,0.06527581065893173,-0.027812017127871513,0.042232681065797806,0.07471867650747299,0.112823486328125,0.12480612099170685,0.011367938481271267,-0.0680437684059143,-0.01123817265033722,0.026708384975790977,-0.030264243483543396,-0.00523747643455863,-0.013361487537622452,-0.030835386365652084,0.004373142030090094,0.07852009683847427,0.002462786389514804,-0.01439883466809988,-0.0723053440451622,-0.05229867994785309,0.04320864751935005,0.022604916244745255,-0.03121412917971611,0.06300561875104904,-0.008915310725569725,0.018549123778939247,-0.09874371439218521,0.1576807200908661,-0.04006190970540047,0.01993141695857048,0.00048386878916062415,0.016046982258558273,0.0704054981470108,0.04656701162457466,0.10468091070652008,-0.03400696441531181,-0.011271463707089424,0.03153346851468086,0.059131164103746414,-0.06471681594848633,0.025714175775647163,-0.0012891102815046906,0.03152253106236458,-0.002320424420759082,-0.0029413059819489717,-0.011300287209451199,0.05965299531817436,-0.06922337412834167,0.028774231672286987,0.046541664749383926,0.04600081965327263,-0.06866644322872162,-0.09437791258096695,-1.695452052718456e-33,0.013691860251128674,-0.016601108014583588,0.03750280663371086,0.13380083441734314,0.007888809777796268,-0.0547887422144413,0.0009704654803499579,0.0382983423769474,0.00021853900398127735,0.03373962640762329,-0.014054635539650917,0.04713279381394386,0.02387472428381443,-0.04856475442647934,-0.02827109955251217,-0.03866030275821686,0.06975018978118896,0.009128588251769543,0.013993787579238415,-0.035667311400175095,-0.11581741273403168,0.029894134029746056,-0.09625860303640366,-0.007318813353776932,0.025577688589692116,0.09245673567056656,-0.025798987597227097,-0.06574409455060959,-0.06760600209236145,-0.023360664024949074,0.012067888863384724,-0.08950676769018173,-0.06307603418827057,-0.07631217688322067,0.016769548878073692,0.02142433077096939,0.0625581368803978,-0.07692818343639374,-0.02085755579173565,0.04907120391726494,-0.06306089460849762,-0.0488557405769825,-0.014087913557887077,0.035691600292921066,-0.04533839225769043,-0.025199012830853462,-0.06914795190095901,0.042555078864097595,0.003919809591025114,0.07310018688440323,0.008978785015642643,0.05344662070274353,-0.009384102188050747,-0.03355821222066879,-0.00545114278793335,-0.013456115499138832,0.007735605351626873,0.007390161044895649,-0.016739685088396072,-0.01372250821441412,-0.05555013194680214,0.037991251796483994,-0.0023971323389559984,0.09027064591646194,-0.03406764566898346,-0.09751797467470169,-0.046592384576797485,0.04331708699464798,-0.03358270600438118,0.05013984441757202,0.017786582931876183,-0.06367073953151703,0.010091054253280163,-0.061928555369377136,-0.002134330105036497,0.06771962344646454,0.06209258735179901,-0.002459764713421464,0.043163884431123734,-0.013807429932057858,0.04326389357447624,-0.04450784623622894,0.06628629565238953,0.07843969017267227,0.05129454657435417,-0.009040146134793758,0.017313066869974136,0.04715453460812569,0.019662728533148766,0.04298437014222145,-0.10499120503664017,-0.04808393120765686,-0.04552600160241127,0.043454788625240326,0.0751383900642395,-2.968252843515984e-8,0.008857286535203457,-0.0014170075301080942,-0.0362447127699852,0.03855808079242706,0.06053109094500542,-0.09421055018901825,0.06202096864581108,0.06004476919770241,0.04973384737968445,0.11187823861837387,-0.008263478986918926,0.08630644530057907,-0.05268358066678047,0.011081825010478497,0.020057043060660362,-0.006968913599848747,-0.024052025750279427,-0.0678621381521225,0.03320060297846794,0.022943461313843727,0.06355384737253189,0.02633470483124256,0.04762772098183632,-0.031860120594501495,-0.04171789065003395,0.013831784017384052,0.002357733901590109,0.0316174253821373,0.05594397336244583,0.07244095951318741,0.058280717581510544,-0.012273432686924934,-0.07312147319316864,-0.06138497591018677,-0.045955002307891846,-0.017908232286572456,-0.09757009148597717,0.03646637871861458,0.0313279889523983,0.004978172015398741,-0.005418757442384958,0.003304878016933799,0.01881163939833641,0.05960703641176224,0.01449459046125412,-0.025783652439713478,-0.07684016227722168,0.04711384326219559,0.029197458177804947,-0.051755111664533615,-0.049853477627038956,0.05160731077194214,0.08918196707963943,-0.049185700714588165,0.024320829659700394,-0.004380378872156143,-0.027031099423766136,-0.025012120604515076,-0.004635191988199949,-0.014005838893353939,0.018287356942892075,-0.11367098987102509,-0.005444979760795832,-0.044807158410549164]},{"text":"Almost before Major had reached the end, they had begun singing it for themselves.","book":"Animal Farm","chapter":23,"embedding":[0.043851468712091446,0.016641385853290558,0.05201757699251175,-0.019857166334986687,-0.025556271895766258,0.029409991577267647,-0.046008989214897156,0.01818765699863434,-0.04058060050010681,-0.02647123858332634,-0.022685116156935692,0.09937392175197601,-0.027736825868487358,-0.07876377552747726,-0.018592899665236473,-0.05080839619040489,-0.05899684131145477,-0.004891319200396538,-0.01602282002568245,-0.002998598851263523,0.015175906009972095,0.03804031014442444,-0.005853062961250544,0.04821084812283516,0.06319743394851685,0.03741748258471489,-0.025333663448691368,-0.024189399555325508,0.042977623641490936,0.009664003737270832,-0.005608404986560345,0.06479725241661072,0.12412958592176437,0.010124570690095425,-0.02686038427054882,0.010115256533026695,-0.04932616278529167,0.01837765984237194,0.059238824993371964,-0.0130452336743474,0.04907115548849106,0.0427895188331604,0.03187062591314316,0.02013702131807804,-0.03662935271859169,-0.028958342969417572,-0.08392608910799026,-0.07244931906461716,0.05095810443162918,0.08930790424346924,0.04689604789018631,-0.06373059004545212,0.004438572097569704,-0.045777324587106705,-0.018612200394272804,0.031047284603118896,0.11032496392726898,-0.0011156690306961536,0.0016463411739096045,0.061484966427087784,-0.0833728164434433,-0.04827369377017021,0.0073257130570709705,-0.04366230219602585,0.03172628954052925,-0.0028477332089096308,-0.006458791438490152,0.011847005225718021,-0.03321978822350502,0.11787674576044083,0.017762387171387672,-0.054779332131147385,-0.007388361729681492,-0.06040794029831886,0.052626751363277435,-0.01247943565249443,-0.030889764428138733,0.03416002541780472,-0.033202093094587326,-0.03747057542204857,-0.008487841114401817,-0.01863035559654236,-0.04614761471748352,-0.06568215042352676,0.007335916627198458,0.007640801835805178,0.039764635264873505,-0.038336873054504395,-0.013161459937691689,-0.013770337216556072,-0.0859232097864151,-0.08047831058502197,-0.08649567514657974,0.06151670217514038,0.002390892943367362,-0.0022670363541692495,0.009277001023292542,-0.03729303553700447,0.10316797345876694,-0.015430225990712643,0.007808783557265997,-0.04484105855226517,-0.009182339534163475,-0.029839932918548584,0.053525567054748535,-0.04921138659119606,0.025885991752147675,0.07268966734409332,0.020355239510536194,-0.06143445149064064,0.02702881023287773,-0.036591291427612305,0.0876464769244194,0.038560472428798676,0.00917397253215313,0.06297748535871506,-0.05318960174918175,0.028328731656074524,0.030985025689005852,0.008407720364630222,0.1179715022444725,0.07070276886224747,-0.07189183682203293,-0.029768062755465508,-0.05940480902791023,0.05543907731771469,-0.03642330318689346,-3.529825129843044e-33,0.02691241167485714,-0.02645137719810009,0.004547341261059046,0.017780466005206108,0.05613742396235466,0.019344734027981758,-0.08626819401979446,0.0016292848158627748,-0.008685342967510223,0.029377387836575508,-0.03538711369037628,-0.03319292515516281,-0.011117466725409031,-0.065416119992733,0.005609432701021433,-0.0323387011885643,0.007947624661028385,-0.04224257543683052,-0.021897733211517334,-0.019501609727740288,0.06588432192802429,0.13177846372127533,0.009847656823694706,-0.09569613635540009,0.03876269608736038,0.061495665460824966,-0.03417452797293663,-0.015784354880452156,0.043113309890031815,-0.011189871467649937,0.0054765017703175545,-0.06784673035144806,-0.01577967219054699,0.010149816982448101,-0.02651427499949932,0.050448399037122726,0.06509038060903549,-0.0077452692203223705,0.0021540767047554255,-0.03463272750377655,-0.016652241349220276,0.03909149020910263,-0.07726868987083435,-0.06825021654367447,-0.07495872676372528,0.009705517441034317,-0.10012958943843842,0.019528763368725777,0.09124905616044998,-0.011937223374843597,-0.01759103685617447,-0.01676769368350506,0.028652576729655266,-0.010150596499443054,0.04866107553243637,0.026802686974406242,0.04367982596158981,-0.03791125863790512,-0.011194360442459583,-0.043377675116062164,0.0024782619439065456,0.009490023367106915,0.11981404572725296,0.02805178053677082,-0.021255452185869217,0.07100128382444382,0.046307627111673355,-0.015218006446957588,0.03705853968858719,-0.07060051709413528,-0.06637175381183624,-0.058881595730781555,-0.08120102435350418,-0.09296473860740662,0.038842134177684784,0.0030147188808768988,-0.06509799510240555,-0.0027209778781980276,0.03151781111955643,0.03646007925271988,0.08445708453655243,-0.05581288039684296,-0.00477008568122983,0.0118766650557518,0.08004676550626755,-0.03360367193818092,-0.001529692206531763,-0.04638653248548508,-0.039664581418037415,0.0344843864440918,-0.05038069188594818,0.047482896596193314,0.02372569404542446,0.051177892833948135,-0.07086804509162903,6.31489616092645e-34,0.05920206010341644,0.12693946063518524,0.012158837169408798,0.030370350927114487,0.016316324472427368,-0.009436361491680145,-0.0020161771681159735,0.015273317694664001,-0.02581753209233284,-0.004145433660596609,-0.009914192371070385,-0.057253386825323105,-0.03130334988236427,-0.0174490287899971,-0.025349946692585945,-0.006326843984425068,0.04262170195579529,0.05850363150238991,0.05068486928939819,0.05661516264081001,-0.013783032074570656,-0.1374257206916809,-0.009981603361666203,0.01036667637526989,-0.04837333410978317,0.04071837291121483,0.05047876387834549,0.004653756506741047,-0.12339262664318085,-0.02654489502310753,0.032493140548467636,-0.02314078062772751,-0.08650119602680206,-0.018134621903300285,0.004336514510214329,0.09148576855659485,-0.08244399726390839,0.0428951270878315,-0.03456634655594826,0.0890314057469368,-0.05541957542300224,-0.07853848487138748,0.04021250084042549,0.027767129242420197,-0.0017737116431817412,-0.07413226366043091,0.018118135631084442,0.12730363011360168,-0.05440177768468857,0.01313367672264576,-0.059998054057359695,-0.03324587270617485,0.02421843446791172,-0.05237174034118652,-0.058673493564128876,-0.05061470344662666,0.09120185673236847,-0.01012073177844286,-0.012632313184440136,-0.00048569636419415474,0.02868061326444149,-0.0103546641767025,0.0797504410147667,-0.13551893830299377,-0.06697637587785721,0.07797840237617493,0.05140772461891174,-0.002600049367174506,-0.025399627164006233,0.05432302877306938,-0.0012522265315055847,0.04637087136507034,-0.0894208624958992,0.020882420241832733,-0.06452609598636627,0.06988757103681564,-0.1253892183303833,-0.0089948121458292,-0.00775577686727047,-0.037806302309036255,-0.017149191349744797,-0.017445089295506477,-0.08774694055318832,0.03682521730661392,0.07734601199626923,0.008128681220114231,0.07489824295043945,0.0017285897629335523,0.01627667061984539,0.09666737914085388,-0.0008004032424651086,0.02214943803846836,0.028573162853717804,-0.024823257699608803,-0.023683112114667892,-2.281655042679631e-8,-0.06859872490167618,0.01737985759973526,-0.07208792120218277,-0.009655342437326908,0.08717263489961624,0.012966220267117023,0.05893205478787422,-0.03529765456914902,-0.015222997404634953,0.10473807156085968,0.0007192118209786713,-0.02119472250342369,0.008890082128345966,0.017986144870519638,-0.011612030677497387,0.004814384505152702,-0.009923485107719898,-0.06565917283296585,-0.020872285589575768,-0.03131985291838646,-0.11635308712720871,-0.03742479160428047,-0.019691912457346916,-0.14371909201145172,0.019681096076965332,0.027758879587054253,0.03854432329535484,0.02471136301755905,0.004785273689776659,0.048972856253385544,0.044412340968847275,-0.006251238752156496,-0.09481167793273926,-0.019620418548583984,0.022717002779245377,-0.010754574090242386,0.08896521478891373,-0.009425069205462933,0.10523415356874466,-0.12024952471256256,0.037021979689598083,0.14200237393379211,0.003864228492602706,0.03953244164586067,0.01692226529121399,0.03283913806080818,0.08197032660245895,0.07883022725582123,0.03728518262505531,-0.026738189160823822,0.06662003695964813,0.028418270871043205,-0.09503564238548279,0.010216077789664268,-0.014084936119616032,0.025264516472816467,-0.044801484793424606,0.07948725670576096,-0.056105926632881165,-0.05129985511302948,0.010482150129973888,-0.015249283984303474,-0.003948920872062445,0.030978044494986534]},{"text":"Unfortunately, the uproar awoke Mr.","book":"Animal Farm","chapter":23,"embedding":[-0.11587480455636978,0.020110730081796646,-0.022600099444389343,0.037222664803266525,-0.016325144097208977,0.00785479974001646,0.01141231320798397,-0.02537025511264801,0.018143434077501297,0.04012419283390045,-0.04434628784656525,0.0687180832028389,-0.039668574929237366,0.0059479400515556335,-0.027574313804507256,0.048655301332473755,-0.013143405318260193,-0.008514543063938618,0.1142578050494194,0.013372939079999924,-0.005465723108500242,0.08155098557472229,0.011188561096787453,-0.015206675976514816,-0.015859365463256836,-0.04354144260287285,0.0009480742155574262,-0.018612509593367577,0.01206620130687952,-0.04962167888879776,-0.05684501305222511,0.03883906453847885,-0.014861621893942356,-0.09106878191232681,-0.012957614846527576,0.059057652950286865,0.016929447650909424,0.06046320125460625,-0.005983918905258179,0.002382007660344243,0.006689632311463356,-0.05152009427547455,-0.005559670273214579,0.03262261673808098,-0.044384539127349854,0.00939257349818945,-0.009320056065917015,-0.04981224238872528,0.06659429520368576,-0.06870317459106445,-0.040482763200998306,0.0019397216383367777,0.03411757946014404,-0.006366349291056395,-0.026290947571396828,0.0022787197958678007,0.002905053785070777,-0.03066762164235115,0.05520937591791153,-0.06592512875795364,-0.09222941100597382,0.05180380865931511,-0.0294855535030365,0.051836047321558,0.1244061291217804,-0.042363449931144714,-0.0584745779633522,-0.0915219709277153,0.031193161383271217,0.10604279488325119,0.027781128883361816,-0.01343523059040308,0.028851397335529327,-0.04344356060028076,-0.10266218334436417,0.017412444576621056,0.12089155614376068,0.011676773428916931,0.08883845061063766,0.05419289693236351,0.07153258472681046,-0.055988844484090805,-0.0897802785038948,0.0038091030437499285,0.04366327449679375,0.0213626716285944,0.010366006754338741,0.016616545617580414,-0.0008676212746649981,0.07771316170692444,-0.07967543601989746,-0.03648931905627251,0.0604674369096756,0.07318543642759323,0.026381537318229675,0.0005229811649769545,0.013893546536564827,0.007776097394526005,-0.08495207875967026,0.06296634674072266,0.0163681972771883,0.04515297710895538,-0.047038912773132324,0.026157602667808533,-0.013731594197452068,-0.024207811802625656,0.03616630658507347,-0.044797174632549286,-0.0011563894804567099,0.014910058118402958,0.023217685520648956,-0.06901858001947403,0.03996558114886284,0.09308387339115143,0.038341693580150604,-0.0471239909529686,-0.028271328657865524,0.002080993028357625,-0.05004972219467163,-0.011121762916445732,0.06697776913642883,0.010673053562641144,0.011038456112146378,0.001140462001785636,0.0149278799071908,-0.06045064330101013,0.013577925972640514,-5.016083452824281e-33,0.03202172368764877,-0.027090637013316154,-0.021580267697572708,-0.00907487515360117,0.028160450980067253,0.04187328368425369,-0.06633879989385605,0.0360889658331871,0.031007183715701103,0.047896239906549454,0.020706143230199814,0.08334169536828995,-0.02390555664896965,-0.013361476361751556,-0.12876656651496887,-0.02729583904147148,0.03527660295367241,0.06953244656324387,-0.05519518256187439,-0.04001426696777344,-0.06916944682598114,0.04612251743674278,-0.0042936671525239944,-0.0043226322159171104,-0.03499824181199074,0.00377925974316895,0.008749539963901043,-0.013666609302163124,-0.029167303815484047,0.03084731474518776,-0.024599026888608932,-0.02863285504281521,-0.01755448989570141,0.06761935353279114,-0.0523887574672699,-0.01724185422062874,-0.07156483829021454,-0.00881892815232277,-0.1466793566942215,0.006823246832937002,-0.004787180107086897,0.041465818881988525,-0.05277998000383377,0.07288078218698502,-0.04070782661437988,-0.06988072395324707,0.05039418488740921,0.04432663321495056,0.04745977371931076,-0.05075344443321228,-0.030677884817123413,-0.04396693781018257,-0.11155542731285095,-0.01615089178085327,-0.062248386442661285,0.05897153541445732,0.018083250150084496,0.07941263169050217,0.04287392273545265,-0.022515909746289253,-0.019087694585323334,-0.020861513912677765,0.09009718894958496,-0.029036536812782288,0.013347894884645939,-0.09205102920532227,-0.002414512215182185,-0.11295958608388901,-0.08260229229927063,0.017778202891349792,-0.023191852495074272,-0.006492105312645435,0.018832871690392494,0.01729036122560501,-0.049217917025089264,0.06086374446749687,0.007760137319564819,0.0641966462135315,-0.06215103343129158,-0.017452292144298553,0.061996299773454666,-0.011979443021118641,-0.0045148953795433044,-0.0192550215870142,0.0872536152601242,0.0031454022973775864,0.026802457869052887,-0.006445927079766989,-0.06821344792842865,0.053506989032030106,0.01318670529872179,-0.01987610198557377,0.11799605190753937,-0.029358025640249252,-0.00899617187678814,3.714857858896057e-33,-0.005769306793808937,-0.03713328391313553,0.00765191437676549,-0.030874740332365036,0.051566630601882935,0.03839758783578873,-0.006085673812776804,0.04986853152513504,-0.12037690728902817,-0.06023333966732025,-0.027187954634428024,0.04210606589913368,0.05892883986234665,-0.030842306092381477,0.09855620563030243,-0.035905756056308746,0.10812471807003021,0.07288800925016403,-0.037753377109766006,0.04524916410446167,0.007661433890461922,-0.037348292768001556,-0.0115362498909235,-0.003431483870372176,-0.025177152827382088,0.12008897960186005,0.04436032101511955,0.05778048187494278,-0.07501302659511566,-0.040489282459020615,0.02010003663599491,-0.06274686008691788,-0.09529130905866623,0.023789487779140472,-0.035561978816986084,0.11335999518632889,-0.06202998757362366,-0.06416534632444382,-0.0037405448965728283,0.03895817697048187,0.04347778856754303,0.04683051258325577,-0.03089807741343975,0.013698634691536427,0.02318836934864521,-0.08602169901132584,0.0073976656422019005,0.0019968431442976,0.05885108560323715,0.017789985984563828,0.00650730449706316,-0.029456768184900284,0.006190063431859016,-0.034252140671014786,0.04147530347108841,0.01766277849674225,0.04725268483161926,-0.006850767880678177,0.04083133861422539,0.047959599643945694,-0.02238539047539234,0.03903760015964508,-0.03692037984728813,0.042109884321689606,-0.016808589920401573,0.08136632293462753,-0.007671281695365906,0.027300134301185608,-0.030849900096654892,0.04870065674185753,0.09392711520195007,-0.04844864830374718,-0.07354744523763657,-0.061002787202596664,0.06525672227144241,0.015797050669789314,-0.029795894399285316,-0.020141800865530968,0.050045326352119446,-0.17813538014888763,-0.07053743302822113,-0.05617383122444153,0.009412718936800957,0.08898904919624329,0.04812852293252945,-0.021378273144364357,0.0751446858048439,-0.01821557804942131,0.0703662633895874,0.011713444255292416,0.04003787040710449,-0.0033574290573596954,0.018886404111981392,0.009684078395366669,0.04351194575428963,-1.849263497888387e-8,0.003698453539982438,-0.02673521265387535,-0.03230510279536247,-0.03008483722805977,0.07808603346347809,-0.006408975459635258,0.009467065334320068,-0.0754273533821106,-0.06757008284330368,0.013769970275461674,-0.04198316112160683,-0.003963373601436615,0.18661713600158691,0.04538824036717415,0.13082586228847504,0.0016297458205372095,0.03362751752138138,-0.007229966577142477,-0.0990486741065979,-0.025776609778404236,-0.009743950329720974,0.021213853731751442,0.01518889982253313,-0.02510831132531166,0.010327747091650963,0.06715415418148041,-0.06211346015334129,-0.0673416405916214,0.013517539016902447,0.14006604254245758,-0.02171790413558483,0.014513806439936161,-0.015195019543170929,0.03706425428390503,-0.045193079859018326,0.011258510872721672,0.06334972381591797,-0.010676048696041107,0.017754973843693733,-0.023209020495414734,0.044564954936504364,-0.0038917723577469587,-0.007752917241305113,0.05247936770319939,-0.07748093456029892,-0.002369903028011322,-0.0326826311647892,-0.013728542253375053,-0.12619641423225403,-0.03802881017327309,-0.020749695599079132,0.00530087249353528,0.06575822085142136,0.03701760619878769,0.0790790244936943,-0.04829862341284752,0.008757987059652805,-0.01845378242433071,-0.06482576578855515,-0.02077188342809677,0.048290882259607315,-0.0140876155346632,-0.07877860218286514,-0.018199924379587173]},{"text":"The birds jumped on to their perches, the animals settled down in the straw, and the whole farm was asleep in a moment.","book":"Animal Farm","chapter":24,"embedding":[0.06308864057064056,0.039067648351192474,0.007609528489410877,0.08859174698591232,0.11714079976081848,0.00687667541205883,0.006466003134846687,-0.04970622435212135,0.030741682276129723,0.026033349335193634,0.04647376388311386,-0.008598677814006805,-0.0251627080142498,0.0006994857103563845,-0.054438844323158264,0.016713062301278114,-0.10491740703582764,0.02892845869064331,0.012660031206905842,-0.02081555314362049,-0.007155948784202337,0.04978743940591812,0.07745236158370972,0.03455065190792084,0.02119556814432144,0.01561348233371973,-0.04740822687745094,-0.011435629799962044,0.037239182740449905,-0.01956915482878685,-0.07474873214960098,0.021304087713360786,0.03291669115424156,-0.028337344527244568,0.006433368194848299,0.04997393116354942,0.11835557222366333,-0.04218008741736412,0.11458350718021393,0.01847352273762226,0.07239917665719986,-0.08818410336971283,-0.013664656318724155,-0.0540192611515522,-0.05989241600036621,0.05942850187420845,-0.051893576979637146,0.015149884857237339,0.07379082590341568,-0.0074783251620829105,-0.05629096180200577,-0.03596450388431549,-0.05843130126595497,-0.04071001708507538,0.006082350388169289,0.08103026449680328,0.03161671757698059,0.004406064283102751,0.038413651287555695,-0.05805603042244911,0.025649309158325195,-0.03465079516172409,0.06025071442127228,0.08348963409662247,0.02479402720928192,-0.00593590410426259,-0.06921906769275665,-0.05180511623620987,0.04810347408056259,-0.03999583050608635,-0.02700614184141159,-0.06530337035655975,-0.027560973539948463,-0.0977356806397438,-0.1257258504629135,0.019937952980399132,0.11339762061834335,-0.008945259265601635,0.03392576798796654,0.020156415179371834,0.026595907285809517,-0.06037090718746185,-0.04823274537920952,-0.057583510875701904,-0.040190014988183975,0.008927425369620323,0.07141541689634323,0.03733166307210922,-0.025398116558790207,-0.03833814710378647,0.019815200939774513,-0.030598094686865807,-0.1035350114107132,0.01786419004201889,0.10439115017652512,-0.020153246819972992,0.0011103496653959155,0.005076174158602953,0.011104612611234188,0.005069990176707506,0.038798827677965164,-0.0028965468518435955,-0.012978129088878632,-0.06878300756216049,0.05545775964856148,0.063260518014431,-0.08841041475534439,-0.06486466526985168,0.045041684061288834,-0.019566770642995834,-0.06899761408567429,0.01194562204182148,0.016064656898379326,0.15432016551494598,-0.01626237854361534,0.04980967938899994,-0.0587724931538105,-0.06696005165576935,-0.045345719903707504,0.04695979878306389,0.08296702057123184,0.06967868655920029,-0.001955833286046982,-0.06812364608049393,-0.01517506968230009,0.07035527378320694,-0.0008274086285382509,-3.864652206047295e-33,0.07986006885766983,-0.13342811167240143,-0.10021442174911499,-0.041738539934158325,0.11113695800304413,-0.02949511632323265,-0.046001136302948,0.042816709727048874,-0.03131750971078873,0.03862955793738365,-0.11854609847068787,-0.08826088905334473,0.02572621963918209,-0.05585154891014099,0.0029117369558662176,-0.07506577670574188,-0.018307702615857124,-0.02614888735115528,0.03333430737257004,-0.004086485132575035,-0.039546046406030655,0.07053905725479126,-0.022989097982645035,0.01585765741765499,-0.03852643445134163,0.00957765057682991,-0.023679114878177643,-0.06399766355752945,-0.006802292540669441,0.032035794109106064,0.018893051892518997,-0.07545039802789688,-0.04902706295251846,0.018840249627828598,0.03148456662893295,-0.04048413783311844,0.031000399962067604,-0.04543513059616089,-0.0385882630944252,0.0007715407991781831,-0.04791983589529991,0.04030643403530121,0.10351211577653885,-0.034283921122550964,-0.0717756599187851,-0.0406700037419796,-0.06466319411993027,0.06181313097476959,0.01301539596170187,0.0552876777946949,0.049575574696063995,-0.05351990461349487,-0.03699913248419762,-0.001261638244614005,-0.00917266309261322,0.028961893171072006,-0.022540796548128128,0.030141418799757957,-0.08635276556015015,0.04149999842047691,-0.05693340674042702,-0.09542834758758545,0.012185321189463139,-0.12333852052688599,0.06468235701322556,-0.03773117437958717,-0.043336011469364166,-0.010801511816680431,-0.031229468062520027,0.007434939034283161,-0.01791136898100376,-0.0065705138258636,-0.06382455676794052,-0.06011457368731499,-0.06459270417690277,0.018555140122771263,-0.018379993736743927,-0.01576853170990944,-0.04746088758111,-0.0036894320510327816,0.22036881744861603,-0.010237103328108788,-0.045762766152620316,-0.01028613280504942,-0.02077515423297882,-0.002420229371637106,0.010687809437513351,-0.04830257594585419,-0.03502841666340828,-0.009706662967801094,-0.0485873743891716,0.09435249865055084,0.10563961416482925,-0.1351223886013031,0.06307653337717056,4.844535939862604e-34,-0.00846389215439558,-0.0007933872402645648,-0.1086997389793396,0.030847135931253433,-0.02240413799881935,-0.010511183179914951,-0.030388910323381424,-0.01296472828835249,-0.03357555717229843,-0.044054217636585236,-0.0719393938779831,0.029183369129896164,0.0375395342707634,0.00999603420495987,-0.04302890598773956,-0.04456391930580139,0.03604637086391449,0.004999164491891861,0.03751832991838455,0.04590544104576111,0.0038197259418666363,-0.03181925043463707,0.02136426605284214,-0.03242846578359604,0.0910714790225029,0.08393821120262146,-0.023069407790899277,0.0364651083946228,0.02733873575925827,-0.0010625259019434452,0.05830108001828194,-0.03171193599700928,-0.015478027053177357,0.052687302231788635,0.013488016091287136,0.0628482848405838,-0.004563151393085718,-0.023365458473563194,0.025426244363188744,-0.0870659351348877,0.09380184859037399,-0.017199339345097542,-0.03993726521730423,0.028344279155135155,0.036885228008031845,0.02846202626824379,-0.048067763447761536,0.03260483592748642,-0.07507719099521637,0.0575663223862648,-0.02076977863907814,0.0028590301517397165,0.04648007079958916,0.041381027549505234,-0.017938273027539253,-0.02944152057170868,0.05215226113796234,-0.01567845605313778,-0.0497886948287487,-0.04433572664856911,-0.027333734557032585,0.04845598712563515,0.013187211006879807,0.017921602353453636,-0.005620274227112532,0.03887367621064186,-0.02262670360505581,0.001426643691956997,-0.012816638685762882,-0.0856957733631134,0.03896476328372955,-0.012720218859612942,-0.03786627575755119,0.03276114538311958,-0.04210253059864044,0.0618220791220665,-0.018246466293931007,-0.044505082070827484,0.04870764538645744,-0.06447071582078934,0.020433809608221054,-0.022724172100424767,0.012508910149335861,0.027600517496466637,0.024137647822499275,-0.05767875537276268,0.013987175188958645,0.02083752118051052,0.0019573611207306385,-0.03064246103167534,-0.018969980999827385,0.019022278487682343,0.09327826648950577,0.06361345201730728,0.07728341221809387,-2.3534214577125567e-8,-0.005169196520000696,0.03500170260667801,-0.06279239803552628,0.07015036046504974,0.08284127712249756,-0.02396184392273426,0.004834149032831192,0.006116888020187616,-0.0013932883739471436,0.061747774481773376,-0.12499096244573593,0.012009693309664726,0.03963305801153183,0.022629475221037865,0.03442448005080223,0.00040211243322119117,-0.03176172450184822,-0.032679133117198944,-0.00234164553694427,0.04829152300953865,-0.04424760863184929,0.0284148957580328,-0.0750730112195015,-0.03273126855492592,0.004546238109469414,-0.012457523494958878,-0.03959327191114426,0.03342173621058464,0.08371193706989288,0.03432326763868332,0.04126673564314842,0.0056356023997068405,-0.012570524588227272,0.018959518522024155,-0.05140923708677292,0.026904543861746788,-0.0047320034354925156,0.010304588824510574,0.08645588159561157,-0.09420642256736755,-0.04518114775419235,0.017943309620022774,-0.003830904373899102,-0.06871090084314346,0.0021652511786669493,0.010396230965852737,0.04362911358475685,-0.007367889862507582,-0.02804931066930294,0.06553992629051208,-0.0024479005951434374,0.006674435921013355,0.06002524122595787,0.04839950054883957,-0.007560808677226305,-0.06796436756849289,-0.010354260914027691,-0.08632420003414154,0.08486784249544144,0.008162866346538067,-0.07019288092851639,0.07589522749185562,-0.0254350733011961,0.016601189970970154]},{"text":"Major's speech had given to the more intelligent animals on the farm a completely new outlook on life.","book":"Animal Farm","chapter":24,"embedding":[0.01564447209239006,0.05264441296458244,0.10032197833061218,0.02419799380004406,0.07380077987909317,-0.0224259402602911,-0.06447979807853699,-0.054354455322027206,-0.05689237266778946,0.04270365089178085,0.024091199040412903,0.1189550831913948,-0.09531006962060928,-0.029151730239391327,-0.029806114733219147,0.05835520103573799,-0.02503644861280918,0.00660491781309247,-0.03234647959470749,-0.016227498650550842,-0.021214045584201813,0.07464670389890671,0.05957777053117752,0.019067708402872086,-0.006384068168699741,0.03024354577064514,-0.0765274316072464,-0.010596374981105328,-0.03580624610185623,0.0009715374908410013,-0.03658001869916916,0.114765465259552,0.11809447407722473,-0.02432349883019924,-0.06434079259634018,0.016289150342345238,0.07571163773536682,0.025271033868193626,0.12158837169408798,-0.030191171914339066,-0.0006282264948822558,-0.012159295380115509,0.02009447105228901,-0.013179736211895943,-0.042222749441862106,-0.050872690975666046,-0.08847350627183914,-0.10339685529470444,0.040597014129161835,-0.010388122871518135,-0.07447459548711777,-0.07885432243347168,0.0013382160104811192,-0.033969663083553314,0.03440409526228905,-0.0008539044065400958,0.004610459320247173,-0.020835209637880325,0.03495738282799721,-0.015524233691394329,-0.021617699414491653,-0.0045915585942566395,0.13115768134593964,0.056838259100914,0.022024529054760933,0.0027722485829144716,-0.06154283881187439,0.019844165071845055,-0.09853354096412659,0.023460157215595245,0.022538412362337112,-0.03508096560835838,0.031031247228384018,-0.10741434246301651,0.0017795551102608442,-0.022746434435248375,-0.06294570118188858,0.02709677256643772,0.08810022473335266,0.029490387067198753,0.006124894600361586,-0.015013438649475574,-0.08532104641199112,-0.04821532219648361,0.017249997705221176,-0.08439818769693375,-0.032054487615823746,-0.08710310608148575,-0.042251117527484894,-0.025145167484879494,-0.08213716745376587,-0.11830716580152512,-0.0109424889087677,0.043943796306848526,0.025394180789589882,0.03633208945393562,-0.0795232430100441,-0.08672374486923218,0.04817068204283714,0.03253912180662155,-0.022325720638036728,-0.04610322415828705,-0.02240890823304653,-0.08145040273666382,0.05628710240125656,0.007627205457538366,-0.06368239223957062,0.018805474042892456,-0.013785306364297867,0.026800673454999924,-0.05310850217938423,-0.017088646069169044,0.037141844630241394,0.11154232174158096,0.01485608983784914,0.048638854175806046,0.041325394064188004,-0.016873130574822426,-0.04450397938489914,0.04464408755302429,0.09992066025733948,0.03128179535269737,-0.051960382610559464,0.008204953745007515,0.0436377227306366,0.04444532096385956,0.007503057364374399,-4.3807959797880225e-33,0.01740965247154236,-0.05946696177124977,-0.009172355756163597,0.06654784083366394,0.05280686169862747,0.06788405776023865,0.003511398797854781,0.0018970416858792305,0.06529340893030167,-0.008208177052438259,-0.0069250562228262424,0.022988127544522285,0.07621751725673676,-0.013059544377028942,-0.04247161000967026,-0.043172817677259445,-0.07788693904876709,0.019716817885637283,0.09162435680627823,-0.05103197321295738,0.0006052367971278727,0.1061842292547226,-0.049192558974027634,-0.061376746743917465,0.06727691739797592,-0.0033411679323762655,0.10467982292175293,-0.07375214993953705,0.014420924708247185,-0.011091249994933605,-0.027966788038611412,-0.054416410624980927,-0.021639777347445488,-0.029253780841827393,0.011772827245295048,-0.01563090644776821,-0.0022152182646095753,-0.08928727358579636,0.022769706323742867,0.012407851405441761,0.03834465146064758,0.05153856799006462,0.019143544137477875,-0.0444253645837307,0.01914053037762642,0.12641513347625732,0.003987601026892662,0.04927520081400871,0.039781250059604645,-0.01906237006187439,-0.042124610394239426,-0.047893982380628586,0.013327149674296379,-0.037315692752599716,0.030684374272823334,0.030304357409477234,-0.00820821151137352,0.05120193585753441,-0.049742359668016434,-0.05093831941485405,-0.011291851289570332,-0.006342827342450619,0.04856241121888161,-0.005311231128871441,0.07506442815065384,-0.01918351836502552,-0.057653021067380905,0.0026043627876788378,-0.05268615856766701,0.04291391372680664,0.06198209896683693,-0.039417095482349396,-0.08338157832622528,-0.09818968921899796,-0.03342894837260246,-0.012360996566712856,0.0050966483540833,-0.015669213607907295,-0.08939994126558304,-0.028441300615668297,0.04678989574313164,-0.01955070160329342,0.005713717546314001,0.006662250496447086,0.054013289511203766,0.009371698834002018,0.02905532345175743,-0.0033191980328410864,0.077480249106884,-0.007359626702964306,0.038076166063547134,0.002547571202740073,-0.01317391637712717,-0.07529901713132858,-0.0074056778103113174,2.176125835436098e-33,-0.11067821830511093,0.12523354589939117,-0.03068009577691555,0.08075158298015594,-0.07495279610157013,-0.01830264925956726,-0.026429643854498863,0.028820883482694626,-0.01788332872092724,-0.04169491305947304,0.02055775560438633,0.06165036931633949,0.036651045083999634,-0.009028107859194279,0.013330494984984398,-0.0036330432631075382,-0.02342451736330986,0.01550753228366375,0.019087184220552444,0.03824784606695175,0.007305723149329424,0.011152004823088646,-0.10344293713569641,0.017796078696846962,0.013540870510041714,0.11156128346920013,-0.057323552668094635,0.07495129853487015,-0.0455922968685627,-0.07976680994033813,-0.02290940284729004,0.020288614556193352,-0.06825751811265945,0.023625629022717476,0.020038047805428505,0.06887465715408325,0.05659424141049385,-0.08496278524398804,-0.014179270714521408,0.03873871639370918,0.0497070848941803,-0.0658436045050621,-0.08381897956132889,-0.020870022475719452,-0.02625340037047863,-0.01699274219572544,-0.02210874669253826,0.05224704369902611,-0.012735766358673573,0.04631168395280838,-0.0687340795993805,0.014838673174381256,-0.010962431319057941,-0.06929370015859604,0.021590303629636765,-0.018294066190719604,0.03785393387079239,-0.08069225400686264,-0.016962258145213127,-0.005049559287726879,-0.002198381582275033,0.08722418546676636,0.008974317461252213,-0.02922573871910572,-0.08435570448637009,0.033568523824214935,-0.013496236875653267,-0.003059058915823698,0.0209443848580122,-0.0486411415040493,0.023177150636911392,0.02494879625737667,-0.09506968408823013,-0.009601457975804806,-0.034965887665748596,0.1526322066783905,0.027562513947486877,-0.03264450654387474,-0.0008970815688371658,0.03490198031067848,0.007848329842090607,-0.053930431604385376,0.01712825335562229,0.02296871319413185,0.08345583826303482,0.005994778126478195,-0.08489980548620224,0.019276373088359833,0.09642922878265381,0.02164924517273903,-0.07062721252441406,-0.055405762046575546,-0.003887824947014451,0.006399654317647219,-0.015233916230499744,-2.1806702221738306e-8,-0.012690939009189606,0.019631430506706238,-0.05423272028565407,0.026693085208535194,0.08803137391805649,-0.0068702432326972485,-0.03810698539018631,-0.02673177234828472,-0.03419050574302673,0.13675783574581146,-0.035012878477573395,0.05266747623682022,-0.018086913973093033,0.06027710810303688,0.1152818500995636,0.038924526423215866,0.03049238584935665,-0.11795422434806824,-0.017649764195084572,0.041219618171453476,-0.03996806964278221,0.005918527487665415,-0.053930871188640594,-0.028463559225201607,-0.0023049672599881887,-0.02752557210624218,0.017067383974790573,0.006239377427846193,0.002656429074704647,0.07632578909397125,-0.016808057203888893,0.019324107095599174,-0.1151815876364708,-0.021175537258386612,0.03836973011493683,-0.003077762434259057,-0.041034676134586334,-0.013147810474038124,0.1435288041830063,-0.013081316836178303,-0.00905044749379158,0.06689078360795975,-0.019922267645597458,0.033257488161325455,0.04995139315724373,0.002394069917500019,-0.004070301074534655,-0.028908969834446907,-0.002074040938168764,0.0052411314100027084,-0.04463793709874153,0.08077622950077057,0.04294374957680702,-0.029988320544362068,0.026189425960183144,0.014441198669373989,-0.0061459289863705635,-0.02949499525129795,-0.03362865000963211,-0.05580160766839981,0.08933436125516891,0.05862440541386604,-0.011647340841591358,0.013313313014805317]},{"text":"Napoleon was a large, rather fierce-looking Berkshire boar, the only Berkshire on the farm, not much of a talker, but with a reputation for getting his own way.","book":"Animal Farm","chapter":24,"embedding":[0.006558032240718603,0.012032940052449703,0.048466432839632034,-0.004275798797607422,-0.028237540274858475,0.007172673474997282,0.014600197784602642,0.03951568156480789,-0.08058055490255356,-0.025913041085004807,0.02193136140704155,-0.057652078568935394,0.05834868922829628,-0.012850681319832802,-0.025239840149879456,-0.04174908995628357,0.07112882286310196,-0.011449169367551804,0.03154759854078293,-0.03751836717128754,-0.06880319863557816,0.038706861436367035,0.05765135958790779,0.05948905646800995,0.02458370104432106,-0.0953255295753479,0.028854476287961006,-0.029524195939302444,-0.06717290729284286,-0.0475863516330719,-0.022364670410752296,-0.015984736382961273,0.028860321268439293,-0.0472027026116848,-0.14979828894138336,0.008757244795560837,0.07286448776721954,0.09829027950763702,0.05385870113968849,0.026556573808193207,-0.01870778389275074,0.03432881087064743,0.007699054200202227,0.005876719020307064,-0.03343874588608742,-0.012101889587938786,0.044148702174425125,0.011953459121286869,0.046299826353788376,-0.0008450121385976672,-0.05999668687582016,0.0416075773537159,-0.055167123675346375,-0.06938669830560684,-0.07507903128862381,-0.06674652546644211,-0.014965766109526157,0.027605948969721794,0.052442654967308044,0.04216741397976875,0.0069725122302770615,0.025398891419172287,0.0708480030298233,0.022407064214348793,-0.005867321044206619,0.018020909279584885,-0.0882766842842102,0.04663335904479027,-0.068517304956913,-0.016543054953217506,-0.020325081422924995,-0.048107124865055084,0.011042398400604725,-0.10845505446195602,-0.09471534937620163,-0.0683414563536644,-0.06038832291960716,0.05520041659474373,0.08340639621019363,0.004067170433700085,-0.08205992728471756,-0.03789336234331131,-0.017146211117506027,0.03712000325322151,0.03282131627202034,-0.05248018726706505,0.08156795054674149,-0.0709550529718399,0.028358764946460724,0.01724935695528984,-0.013613959774374962,-0.07280910760164261,0.03946179151535034,0.06364493072032928,0.03966463357210159,-0.01848871074616909,-0.07999489456415176,0.0935279130935669,-0.10871913284063339,0.021506844088435173,-0.031860630959272385,-0.04796580225229263,0.017879195511341095,-0.004523324314504862,-0.06165037676692009,0.05273962765932083,-0.07963725179433823,0.039556149393320084,-0.0008945887675508857,0.032313283532857895,-0.02681497298181057,0.0015588667010888457,0.009532207623124123,0.03674214333295822,0.08940260112285614,0.0740029364824295,-0.052813317626714706,-0.1466580480337143,-0.04493887722492218,0.05176440253853798,0.06899211555719376,0.06155257672071457,-0.008592638187110424,0.006013016682118177,0.01942647248506546,0.05210953950881958,0.08179296553134918,-2.802841566931962e-33,0.029644664376974106,0.036213986575603485,-0.02100878581404686,0.0465070940554142,-0.0642404705286026,0.10759013146162033,-0.12711051106452942,0.03469504043459892,-0.058241840451955795,0.032548632472753525,0.04485093802213669,0.024115920066833496,-0.04654591530561447,-0.019830143079161644,0.007214478682726622,0.006577297113835812,-0.0256092119961977,0.047635503113269806,0.04279562830924988,-0.028029166162014008,-0.04573310911655426,0.0593377910554409,-0.04414457082748413,0.04554436355829239,0.013912190683186054,-0.01389995589852333,0.015426026657223701,-0.07292551547288895,-0.09274168312549591,0.025278568267822266,0.0342089906334877,-0.0701259970664978,-0.003316685324534774,0.029170842841267586,-0.041320882737636566,-0.10189088433980942,-0.044996727257966995,-0.1265801042318344,0.03571934252977371,0.04267403483390808,0.06893396377563477,-0.03934766352176666,0.042816564440727234,0.07657340914011002,-0.051383160054683685,0.023171883076429367,-0.04831758514046669,0.024562422186136246,-0.053109414875507355,0.018895631656050682,-0.02251242659986019,-0.00659773126244545,0.07000230252742767,0.04694386571645737,0.05888134241104126,-0.0024928655475378036,-0.010797390714287758,0.07377578318119049,-0.015439975075423717,-0.03209337219595909,0.05733106657862663,0.059940826147794724,0.00781829934567213,0.01944662630558014,-0.012246279045939445,-0.05972873046994209,-0.024706201627850533,0.07687441259622574,-0.03711644187569618,-0.008931471966207027,0.015561176463961601,0.021633923053741455,-0.0021298255305737257,-0.03832460567355156,-0.04018595814704895,-0.009275177493691444,0.020958445966243744,0.010072808712720871,-0.047429706901311874,0.011055419221520424,-0.0007200390100479126,-0.07679663598537445,-0.07649314403533936,-0.003969970159232616,-0.02828594110906124,0.06649123132228851,0.0767630860209465,-0.089556485414505,0.06558574736118317,0.017407024279236794,-0.03270404040813446,-0.009693766012787819,-0.1048620343208313,-0.028201982378959656,0.020812630653381348,9.76590604758579e-34,-0.01097414642572403,-0.0037841175217181444,0.12423500418663025,0.051004789769649506,-0.004270695149898529,-0.019367512315511703,0.03715863078832626,0.03190575912594795,-0.015558300539851189,-0.002690982073545456,-0.10037088394165039,0.00403798371553421,0.01543156336992979,-0.08026862889528275,0.05537858232855797,-0.04501703754067421,0.09412156790494919,-0.08757290244102478,0.004230173770338297,-0.027317041531205177,-0.029782652854919434,-0.000819976266939193,-0.06598687916994095,-0.01938547007739544,-0.0825875997543335,0.08023601770401001,-0.09365415573120117,-0.009565292857587337,-0.009385520592331886,-0.009838948957622051,-0.012072467245161533,0.07919679582118988,0.024622511118650436,-0.023834185674786568,-0.01073628943413496,0.023911885917186737,-0.026896629482507706,-0.000702669785823673,0.03574661165475845,-0.0024175920989364386,-0.009377223439514637,-0.05578986555337906,-0.05609731003642082,0.009970373474061489,0.07838358730077744,0.026161542162299156,-0.018339965492486954,-0.02081405185163021,0.0328238345682621,0.06507200747728348,-0.010429526679217815,0.08896109461784363,0.05240842327475548,0.025250649079680443,-0.05007876455783844,-0.016409296542406082,0.005462405737489462,-0.058137472718954086,0.04017333313822746,0.0006915919948369265,0.020239951089024544,-0.014306112192571163,0.03494460508227348,-0.016117163002490997,-0.09765387326478958,-0.013574313372373581,-0.11713200807571411,0.011945577338337898,0.06940564513206482,0.041793908923864365,0.02163851261138916,-0.06359382718801498,0.06711852550506592,0.05787000060081482,0.06179315596818924,0.13527381420135498,0.007776984944939613,-0.05423181131482124,0.0077993967570364475,-0.033766187727451324,-0.05060729756951332,0.005950181279331446,0.07384172827005386,-0.004528124816715717,0.07637924700975418,0.023958371952176094,-0.09914373606443405,0.031747058033943176,0.128513902425766,-0.0019227443262934685,0.01427744422107935,-0.05888397619128227,0.06570783257484436,-0.06313640624284744,0.030466565862298012,-2.7789448964199437e-8,-0.03785516694188118,0.01720716431736946,0.1020340695977211,0.0239978339523077,-0.009705810807645321,-0.045056816190481186,-0.052181847393512726,-0.010575579479336739,0.012545841746032238,0.12545131146907806,-0.10397002846002579,0.08804290741682053,-0.07298436015844345,0.0382564440369606,0.09023629128932953,0.015875209122896194,0.0651206225156784,-0.04542127996683121,-0.006995830684900284,0.04461059719324112,0.028010519221425056,-0.017574073746800423,0.012810785323381424,-0.03837098553776741,-0.03759418800473213,-0.04429914802312851,-0.010178771801292896,-0.046318817883729935,-0.006957375910133123,0.0293157659471035,0.0460762120783329,0.013259470462799072,-0.0473388209939003,-0.06993874907493591,-0.017702046781778336,0.06558413058519363,-0.0529085248708725,-0.01189678255468607,0.04172743111848831,-0.08545932918787003,0.010620394721627235,-0.03651021420955658,0.05950584262609482,0.034893691539764404,0.05888725072145462,0.014098354615271091,0.018352868035435677,-0.02494657412171364,0.0015468461206182837,-0.0018363792914897203,-0.01945061981678009,0.10426238179206848,0.054035771638154984,-0.0012311278842389584,-0.0341973751783371,-0.0343511626124382,0.019613325595855713,-0.03707584738731384,0.04757613688707352,-0.01790340431034565,-0.007542246952652931,-0.013284897431731224,-0.046206194907426834,-0.061178334057331085]},{"text":"The others said of Squealer that he could turn black into white.","book":"Animal Farm","chapter":24,"embedding":[-0.028005290776491165,0.0160001739859581,-0.030921047553420067,0.09067030251026154,-0.06137635558843613,-0.006693694740533829,0.04937106370925903,-0.03295024111866951,-0.032546233385801315,-0.07834433019161224,-0.011682018637657166,-0.053046729415655136,0.022526223212480545,0.05763271078467369,-0.05621044337749481,0.06072727590799332,0.0036444778088480234,0.10602600127458572,-0.09463181346654892,0.0020507832523435354,0.10608257353305817,0.0175017062574625,-0.005880925804376602,-0.036585379391908646,-0.05901719629764557,-0.04274249076843262,0.012002173811197281,-0.022925933822989464,0.0505932942032814,0.003669083584100008,0.05870455875992775,-0.03354616090655327,0.03125206008553505,-0.00035500069498084486,-0.09286188334226608,-0.10384202748537064,-0.013670112006366253,0.12970632314682007,0.049820464104413986,0.03820875659584999,-0.02982974983751774,-0.005692348815500736,-0.035332903265953064,-0.0371343269944191,-0.06125957891345024,0.005048583261668682,0.02568894810974598,0.025735989212989807,-0.011208963580429554,0.0037106575910001993,-0.0004308763309381902,-0.06245749071240425,-0.07325233519077301,-0.07517135143280029,0.00984200555831194,0.0479559451341629,0.009580236859619617,-0.029008058831095695,0.06907001882791519,-0.016357392072677612,-0.06119711697101593,0.025104084983468056,0.05552930757403374,0.009829693473875523,0.0064601837657392025,0.03937061131000519,0.008672390133142471,-0.032463960349559784,-0.07051350176334381,0.04077840968966484,0.04354482144117355,-0.0027906110044568777,0.044193677604198456,-0.04652152210474014,0.0363493412733078,-0.03573811799287796,0.05799174681305885,0.028721531853079796,-0.01926841214299202,0.024261394515633583,0.03268241882324219,-0.01604144647717476,-0.047720231115818024,-0.019520578905940056,0.04162530228495598,0.026319723576307297,-0.0426180362701416,-0.021319972351193428,-0.13086868822574615,0.05715363845229149,-0.06512731313705444,-0.004492977634072304,-0.034449875354766846,-0.014840359799563885,0.03809555992484093,-0.011896046809852123,-0.021802682429552078,0.020983010530471802,-0.02523665502667427,-0.012557403184473515,-0.03672422468662262,-0.09692460298538208,0.11126596480607986,-0.03144710510969162,-0.027736391872167587,-0.06931420415639877,0.046530161052942276,0.054371122270822525,-0.019551053643226624,-0.012674623169004917,-0.005210716277360916,-0.026447180658578873,0.02621619589626789,-0.002327085705474019,0.04424455389380455,-0.021268516778945923,-0.017943089827895164,0.00833092164248228,-0.12044123560190201,0.04535810649394989,0.09692061692476273,0.0371340811252594,-0.05418441817164421,0.07773276418447495,0.05661403387784958,-0.049962367862463,-0.012780919671058655,-2.524044245288663e-33,0.05904519557952881,0.018230397254228592,0.05907854810357094,-0.036310017108917236,0.08813197910785675,0.050735436379909515,-0.06221621483564377,-0.04170363023877144,0.0628846287727356,-0.02447558008134365,0.05256948620080948,-0.06376446783542633,-0.11518818885087967,0.05114549398422241,0.010191652923822403,0.03362126275897026,-0.024414241313934326,0.005037080030888319,-0.008875709027051926,-0.08002747595310211,0.00038204557495191693,0.08495250344276428,-0.03079383261501789,-0.023682905361056328,-0.02689468115568161,0.02802734635770321,0.04345203563570976,-0.05171369016170502,0.10562852770090103,-0.010669073089957237,0.015419217757880688,0.058204326778650284,-0.005113102495670319,0.027065085247159004,-0.013709010556340218,0.04673038795590401,-0.036945540457963943,-0.03308241441845894,-0.0797613263130188,0.08883094787597656,-0.01517761405557394,0.0005276267183944583,-0.06369750201702118,0.05899743363261223,0.021836325526237488,-0.031779516488313675,0.012373615056276321,-0.01945052668452263,-0.04386265203356743,-0.007646776270121336,0.03365110605955124,-0.026913577690720558,0.05916239321231842,-0.021219978109002113,0.08329146355390549,-0.034584153443574905,0.0633285716176033,-0.05172457918524742,0.019670309498906136,0.03515487536787987,-0.07976417243480682,0.04383302107453346,0.04013441503047943,-0.023166222497820854,-0.044270873069763184,-0.05268227308988571,-0.056513138115406036,-0.024179691448807716,-0.14476314187049866,-0.0744779035449028,0.00724832946434617,-0.05033044517040253,-0.04649408534169197,-0.043091513216495514,-0.1012580618262291,-0.019728554412722588,0.037668026983737946,0.05762743204832077,0.023333877325057983,-0.07072506844997406,0.03004538081586361,0.0037965914234519005,-0.007431795820593834,-0.03647760674357414,-0.11330532282590866,0.025531422346830368,0.029650812968611717,-0.021259935572743416,-0.021778160706162453,-0.02764570340514183,-0.02808847650885582,-0.027110179886221886,-0.04425652325153351,-0.05631216987967491,-0.09537786990404129,-1.0623555909495348e-33,-0.036887601017951965,-0.009811707772314548,0.049404390156269073,0.1645372211933136,0.011710552498698235,0.07154972851276398,-0.014852607622742653,0.07794983685016632,0.06117504462599754,-0.1082957461476326,0.010932276956737041,0.031860239803791046,0.054643575102090836,-0.024144571274518967,0.029652560129761696,0.03134248033165932,0.07621977478265762,0.10516974329948425,-0.05518888682126999,0.07002931088209152,0.02700076252222061,0.04650485888123512,0.017150653526186943,-0.03645217418670654,-0.02711261808872223,0.031854405999183655,0.0864889994263649,0.08654052019119263,0.005272324662655592,0.043420545756816864,-0.01086493767797947,-0.010714326985180378,-0.018466683104634285,-0.004425908904522657,-0.013437170535326004,0.03388778120279312,0.03534066304564476,0.00017942706472240388,-0.0902848094701767,-0.023411622270941734,0.05864869803190231,-0.047722797840833664,-0.013985206373035908,0.034604690968990326,-0.000894503085874021,0.027247866615653038,-0.007658207323402166,0.006212030071765184,0.011971058323979378,-0.028693463653326035,-0.031502507627010345,-0.012473606504499912,-0.009852227754890919,0.10393768548965454,0.012459312565624714,-0.012696235440671444,0.033129364252090454,-0.05660916864871979,0.07613716274499893,0.03755329176783562,-0.0897439643740654,0.01598285138607025,-0.01555972546339035,-0.05441638082265854,0.009339988231658936,-0.03428191691637039,0.013199908658862114,0.02242935821413994,0.012797912582755089,-0.08441518247127533,0.1265522837638855,-0.05306466668844223,-0.00625419057905674,0.02745811454951763,0.025477956980466843,0.002745832549408078,-0.03784209489822388,-0.07963509112596512,-0.12461355328559875,-0.020281851291656494,-0.08482234179973602,-0.05387018248438835,0.08221181482076645,-0.04597647115588188,0.0386400930583477,-0.041270945221185684,0.016658106818795204,0.014856189489364624,0.0900057926774025,-0.04199238866567612,-0.028542092069983482,0.042940810322761536,0.09472262114286423,0.012805664911866188,0.028856534510850906,-2.2019458256750113e-8,-0.08956977725028992,0.05774599686264992,0.09524036943912506,-0.03130918741226196,0.04875456169247627,0.02574341557919979,0.018198756501078606,-0.06227133423089981,-0.04346568137407303,0.040878381580114365,-0.07463512569665909,0.023317696526646614,0.04725886136293411,0.005694847088307142,0.054640598595142365,0.05074068903923035,-0.031137820333242416,-0.12256117910146713,0.058034319430589676,0.026476465165615082,-0.09698976576328278,-0.024278443306684494,0.030472252517938614,-0.04036830738186836,-0.062235474586486816,0.01071618776768446,-0.04881121963262558,0.010966518893837929,-0.012861784547567368,0.08324063569307327,-0.03467198833823204,0.09938022494316101,0.024589985609054565,-0.049816668033599854,0.005566270090639591,-0.03781965374946594,-0.06366246938705444,0.08517368137836456,0.02168451063334942,-0.023127852007746696,-0.028560535982251167,0.01361140888184309,-0.019345805048942566,0.0389367938041687,-0.000537589134182781,-0.08025899529457092,0.005605407524853945,-0.03269406035542488,-0.012950806878507137,0.031169993802905083,0.09445878863334656,0.04301789775490761,-0.04206071048974991,-0.005542202852666378,0.0530032142996788,-0.08637838065624237,0.03221243992447853,0.06375443190336227,-0.0179279912263155,0.06096358597278595,0.05143396556377411,-0.057349443435668945,-0.0048508476465940475,0.061163417994976044]},{"text":"Some of the animals talked of the duty of loyalty to Mr.","book":"Animal Farm","chapter":25,"embedding":[-0.04696928337216377,0.035338979214429855,0.057501908391714096,0.026122011244297028,-0.0786953791975975,0.022421944886446,0.0893530622124672,-0.0638093501329422,-0.031616806983947754,0.05902877449989319,0.01928628236055374,0.019104911014437675,0.0016669868491590023,0.06767150014638901,-0.00456998310983181,0.05884145200252533,0.04357289895415306,0.002727162791416049,-0.020347079262137413,0.03293848782777786,-0.07141704112291336,-0.017436137422919273,0.01123143918812275,0.018211206421256065,-0.09462518990039825,-0.059114594012498856,-0.053863562643527985,0.005599599331617355,-0.02153913304209709,-0.0004025457601528615,-0.01927516795694828,-0.014822781085968018,0.10257968306541443,0.028757747262716293,-0.04996083676815033,0.028713565319776535,0.04598469287157059,-0.03972463682293892,0.025708481669425964,0.022859953343868256,0.05836454778909683,-0.0034320519771426916,0.04585523530840874,0.019600344821810722,-0.05685563012957573,-0.03864704817533493,-0.0377693735063076,-0.048526786267757416,0.06228220462799072,-0.022672774270176888,-0.034351520240306854,-0.012900987640023232,-0.04414115846157074,-0.005668032914400101,-0.028627779334783554,-0.027020316570997238,0.02329791709780693,-0.05954700708389282,0.020761484280228615,-0.05754764750599861,-0.048178523778915405,0.04388756677508354,0.07034139335155487,0.0338885635137558,-0.024901341646909714,-0.0920305997133255,-0.07131054252386093,0.02016027458012104,-0.04438066482543945,-0.011386229656636715,0.00841838214546442,-0.03488917276263237,0.043622132390737534,-0.10680732876062393,-0.11009667068719864,0.043156154453754425,0.003016639733687043,-0.04436903074383736,0.033474311232566833,-0.13124020397663116,-0.04362022876739502,-0.013899075798690319,-0.055097147822380066,0.06410028040409088,0.022912638261914253,-0.016423514112830162,0.0027906051836907864,-0.15000540018081665,-0.04425504803657532,-0.010427137836813927,-0.01986842043697834,-0.08948889374732971,0.018353652209043503,-0.008636483922600746,-0.05768144875764847,0.03129172325134277,-0.022967414930462837,0.04623449221253395,-0.06694590300321579,0.05126097798347473,0.008675139397382736,-0.0044685835018754005,-0.053864121437072754,-0.0013711184728890657,0.04255157709121704,0.0048331706784665585,-0.10070625692605972,0.0028342008590698242,0.00036363719846121967,0.008523143827915192,-0.09109385311603546,0.03190295398235321,0.003031519940122962,0.0972214937210083,0.060627151280641556,0.0362364836037159,-0.06818827986717224,-0.06719120591878891,-0.0028586904518306255,-0.045370835810899734,0.08599308133125305,0.03155854344367981,0.0238031018525362,0.02413625456392765,0.011281528510153294,-0.020993433892726898,0.04577120020985603,-5.968767992235989e-33,0.030024107545614243,-0.08818940073251724,-0.010108143091201782,-0.004452938213944435,0.04134586825966835,0.057875171303749084,-0.017454156652092934,-0.01705867052078247,0.030664198100566864,0.042654287070035934,-0.02683687023818493,0.04099111258983612,0.010821551084518433,-0.10866843909025192,-0.09496133774518967,-0.009617272764444351,-0.03408747911453247,-0.030722400173544884,0.11601774394512177,-0.006776351947337389,0.007024310063570738,0.06404781341552734,-0.015538726933300495,0.005215908866375685,0.0125648844987154,-0.04068639129400253,-0.017828110605478287,-0.00951050128787756,0.018510829657316208,0.06342324614524841,0.0003197119804099202,-0.03532370179891586,-0.0020256121642887592,-0.011165725998580456,-0.05383503809571266,0.0009705908596515656,-0.048104427754879,-0.12199172377586365,-0.050119489431381226,0.016994306817650795,0.024603338912129402,-0.04341864958405495,0.023135676980018616,0.0407075472176075,-0.05256127938628197,0.03393155708909035,-0.022704124450683594,0.017518091946840286,-0.028852052986621857,0.024516543373465538,-0.04186095669865608,-0.01959613338112831,0.05207287520170212,-0.06979506462812424,-0.024217110127210617,0.0038574503269046545,0.062268275767564774,0.07011118531227112,-0.05459475889801979,-0.023642737418413162,0.021899059414863586,-0.02353930100798607,-0.016362544149160385,0.0083857337012887,0.017575005069375038,-0.13155919313430786,0.00042834781925193965,-0.0028639305382966995,-0.018689963966608047,0.007212432101368904,0.03044792078435421,0.0580003596842289,-0.06839293241500854,-0.1496715545654297,-0.06943067908287048,0.012632436119019985,0.11611282080411911,0.011909899301826954,-0.01164126954972744,-0.08416479080915451,-0.013045351952314377,0.03420700877904892,-0.03856981173157692,0.07634919136762619,0.04355685040354729,0.019725821912288666,0.10679483413696289,-0.08758467435836792,0.07213600724935532,0.03483700007200241,0.055514320731163025,0.01584789715707302,0.023445073515176773,-0.05678533390164375,0.022418128326535225,2.913458340409224e-33,-0.029316140338778496,0.05832281336188316,0.09464358538389206,0.03221524879336357,0.006693577393889427,-0.019676117226481438,-0.04035027325153351,-0.023296475410461426,-0.009118360467255116,0.06375229358673096,-0.10562878847122192,0.03097742795944214,0.03115682676434517,-0.003052497748285532,0.02649744041264057,-0.09467142075300217,0.0396365225315094,0.0022597583010792732,0.0897359549999237,-0.07918787002563477,-0.02550576440989971,0.06524945795536041,-0.02622903697192669,0.07905473560094833,-0.013358515687286854,0.05702817812561989,-0.009002971462905407,-0.0659240186214447,-0.011308514513075352,-0.08575315773487091,0.07191570103168488,0.001173536409623921,-0.06349021941423416,-0.013771729543805122,0.020608022809028625,-0.008784808218479156,0.009631405584514141,0.05587568134069443,0.0016579520888626575,0.07042554020881653,0.013902585953474045,-0.021013136953115463,-0.03869357705116272,-0.039556264877319336,-0.02458951063454151,0.010839732363820076,0.02027590572834015,-0.03823494911193848,0.023041030392050743,0.0566287636756897,-0.04181394353508949,-0.01899825781583786,0.004226097837090492,-0.05577586218714714,0.004208884201943874,-0.009716330096125603,0.010336351580917835,0.007050483953207731,0.13706684112548828,-0.04152907803654671,0.00563143752515316,0.027044091373682022,-0.005270329769700766,0.037188492715358734,-0.07198958843946457,0.03757267817854881,-0.013555715791881084,-0.025532877072691917,0.06624847650527954,-0.0008037032093852758,0.0440463125705719,-0.04503883421421051,-0.026111064478754997,-0.02085363306105137,0.025670522823929787,0.03409826010465622,-0.06266364455223083,-0.07684416323900223,0.02479751966893673,0.00219567958265543,0.0010904816444963217,-0.08539453148841858,0.02975555695593357,0.08722218871116638,-0.04711560532450676,-0.05623085796833038,0.010032517835497856,0.13467614352703094,0.06549433618783951,0.002517491579055786,0.03584704175591469,-0.002401884878054261,0.07067817449569702,-0.061463966965675354,-0.01482122391462326,-2.1136060013304814e-8,-0.047143079340457916,0.008386773057281971,-0.001936242450028658,0.01468460913747549,0.06314047425985336,-0.007134416606277227,-0.05697287619113922,-0.0962916687130928,0.010180674493312836,0.17324723303318024,0.025664659217000008,0.017125345766544342,-0.01146477460861206,0.005309520289301872,0.11380840092897415,0.06709340959787369,0.11310064047574997,-0.07328146696090698,-0.003530630376189947,0.041508834809064865,-0.07040116935968399,0.04866982251405716,-0.042498208582401276,-0.05752108618617058,-0.05810928717255592,0.011264531873166561,-0.026047173887491226,-0.0034614470787346363,0.013330070301890373,0.09259553998708725,0.01910671964287758,0.020286263898015022,-0.05582147464156151,-0.04870818555355072,0.06307023018598557,0.03211243823170662,-0.0361776202917099,-0.07683973014354706,0.13936765491962433,-0.008225050754845142,-0.004331750329583883,0.10633281618356705,0.07212452590465546,0.05668335035443306,0.07046905905008316,0.06210121884942055,-0.017323270440101624,0.03707699850201607,-0.05267433822154999,-0.07170464843511581,-0.07873421162366867,0.03035620227456093,-0.006267499644309282,0.006213515996932983,-0.031610384583473206,-0.0890163704752922,0.05446820333600044,-0.016859274357557297,0.002826280426234007,-0.05209624394774437,0.018833450973033905,0.0627061054110527,-0.013673756271600723,-0.018148254603147507]},{"text":"Besides, you do not need sugar.","book":"Animal Farm","chapter":25,"embedding":[-0.02755029685795307,-0.02839869260787964,0.003651425940915942,0.055604781955480576,-0.05359761416912079,-0.017269408330321312,0.05874078348278999,-0.037532731890678406,-0.028254294767975807,0.0336589589715004,-0.014972290955483913,-0.02867753989994526,-0.05467768386006355,-0.06134168058633804,0.057154420763254166,-0.018571780994534492,0.03669458627700806,-0.02552230842411518,-0.022624535486102104,0.003070235950872302,0.09031502902507782,-0.08276773244142532,0.06702195107936859,0.08509263396263123,0.012195822782814503,0.02799920365214348,0.001971649704501033,-0.06751726567745209,-0.03407201170921326,0.04085184261202812,-0.0008363854140043259,0.011434935964643955,-0.015516664832830429,-0.011661252938210964,-0.08325113356113434,0.03573799878358841,0.05301859974861145,0.0016693120123818517,-0.05976703390479088,-0.028851434588432312,0.023335523903369904,-0.020088622346520424,-0.0191249530762434,0.07357531040906906,0.032582107931375504,-0.03156881034374237,-0.0662006363272667,-0.017144404351711273,-0.0038873227313160896,0.006469274405390024,-0.04875032976269722,-0.026140030473470688,-0.01694088988006115,-0.023386603221297264,0.07164011895656586,0.061621926724910736,-0.006301667541265488,-0.036080945283174515,0.013401346281170845,0.019636468961834908,-0.08327548950910568,-0.0073866574093699455,0.008584045805037022,0.023004664108157158,0.0014029648154973984,-0.03186690807342529,-0.04071662947535515,0.028144966810941696,0.011287873610854149,0.033124953508377075,-0.09718676656484604,-0.013451376929879189,0.005434153135865927,0.04745692387223244,0.0015033065574243665,-0.031457412987947464,0.016807163134217262,-0.012061046436429024,0.018393313512206078,0.12143711000680923,-0.051362380385398865,0.024092810228466988,0.07376711070537567,0.10384311527013779,-0.039646364748477936,-0.05996773764491081,0.08777015656232834,0.019702274352312088,-0.042400915175676346,-0.01699245348572731,-0.012580162845551968,-0.01863894797861576,-0.0017266300274059176,0.05141005292534828,-0.011577943339943886,-0.02172432839870453,-0.04558367282152176,-0.054089706391096115,-0.06096656620502472,0.013857768848538399,-0.02798212692141533,-0.027663499116897583,0.11251488327980042,0.06230113282799721,0.028940636664628983,0.019227290526032448,-0.014192217960953712,0.008290676400065422,0.03833456709980965,0.04877181723713875,0.036377567797899246,0.014024712145328522,0.057348039001226425,0.07501105219125748,-0.08618523925542831,0.01129863504320383,0.02902737632393837,-0.0055632395669817924,0.022637981921434402,0.04778464883565903,-0.10479097813367844,-0.05120657756924629,0.04522280767560005,0.029008930549025536,0.02259737439453602,-0.030345898121595383,0.04302378371357918,-5.858628579667756e-33,-0.00045791096636094153,-0.018305703997612,0.07194862514734268,-0.024188878014683723,-0.007176597137004137,0.05206867679953575,-0.05664383992552757,0.015702346339821815,0.07972371578216553,0.04561859741806984,-0.05977647379040718,-0.05671825259923935,-0.0539097897708416,0.002570541575551033,0.023018235340714455,0.037802234292030334,0.004459533840417862,-0.04146292433142662,0.0724741667509079,0.04442581161856651,-0.12219534814357758,-0.10161366313695908,-0.02400076575577259,0.012050002813339233,-0.03594250604510307,0.019938020035624504,0.021968122571706772,0.017764998599886894,0.029918868094682693,-0.014958195388317108,0.027386832982301712,0.017283029854297638,0.046668607741594315,-0.04639911651611328,0.04890085756778717,0.04366551712155342,-0.011189275421202183,-0.018427086994051933,-0.008396148681640625,-0.00135976099409163,0.0178836677223444,0.0481836162507534,0.07231230288743973,-0.050223805010318756,0.009622200392186642,-0.012716958299279213,0.04594177380204201,0.0007005030056461692,0.004240755457431078,0.02014247141778469,0.053207702934741974,0.007801190484315157,0.047224584966897964,0.07457289099693298,-0.03009863570332527,-0.03233879432082176,0.026493003591895103,0.019602404907345772,-0.023160096257925034,-0.0024139645975083113,-0.12701193988323212,-0.06607946753501892,-0.033489666879177094,0.01853320002555847,-0.04302408546209335,0.04677949845790863,-0.06468871235847473,0.015622206963598728,-0.020862426608800888,-0.07325564324855804,-0.01727502979338169,-0.04091798886656761,0.007904352620244026,0.01957516372203827,0.003350637387484312,-0.0035159499384462833,0.020701197907328606,-0.022916823625564575,-0.00833153910934925,-0.018286753445863724,0.11472120881080627,-0.08810698986053467,-0.012650021351873875,0.005189978983253241,0.007556246593594551,0.07380852848291397,-0.02247271127998829,-0.010603675618767738,0.04847265034914017,0.008598350919783115,-0.10095473378896713,-0.013130770064890385,-0.08553264290094376,0.057227183133363724,-0.02985721081495285,2.966961884141862e-33,0.013388721272349358,-0.07670298218727112,0.05463404953479767,-0.015142813324928284,0.07270456105470657,0.038586437702178955,0.04661709815263748,-0.1546052247285843,0.04219129681587219,-0.030946405604481697,0.05351398512721062,0.04588999226689339,-0.004801147151738405,0.007642173208296299,0.04506327211856842,0.11398929357528687,-0.07206184417009354,0.07059358805418015,-0.09194726496934891,-0.004347713198512793,-0.020307261496782303,0.1426384449005127,-0.05399809405207634,-0.013182432390749454,-0.009176032617688179,0.06210780516266823,-0.0763763040304184,0.10072807222604752,0.00846224557608366,-0.014697777107357979,0.04391728714108467,-0.0838271751999855,-0.07853349298238754,-0.23604437708854675,-0.03892979770898819,-0.03688044473528862,-0.060935188084840775,-0.006656433455646038,-0.07927113026380539,0.039760421961545944,-0.021896986290812492,0.06453798711299896,0.09030024707317352,-0.027531584724783897,0.008401978760957718,0.036037709563970566,0.03742038086056709,0.002278367755934596,-0.06650035828351974,0.08776616305112839,0.030902350321412086,-0.021174363791942596,-0.08397646248340607,0.047150272876024246,-0.007612457033246756,-0.011501622386276722,0.013712260872125626,-0.0003621529322117567,-0.04803330823779106,-0.071645088493824,-0.01023829448968172,-0.015202250331640244,-0.030534422025084496,-0.017240818589925766,-0.00340018211863935,-0.03399103507399559,0.009872069582343102,0.0500541590154171,0.09422668069601059,-0.02656436711549759,0.02484993450343609,-0.022400222718715668,0.023531807586550713,-0.03120495192706585,-0.009918185882270336,0.05259709805250168,-0.06734166294336319,0.04861397296190262,-0.022086983546614647,-0.12261795997619629,-0.03901376947760582,0.03528695926070213,-0.03911677375435829,-0.024016432464122772,-0.02527809329330921,-0.00019333424279466271,0.018047070130705833,-0.122911736369133,-0.04205148667097092,0.07858846336603165,-0.05565091595053673,0.0002015930658672005,0.017433376982808113,0.03262796625494957,0.060990944504737854,-1.8025101411467404e-8,0.04886448383331299,0.020707758143544197,0.07845743745565414,0.0585743710398674,-0.02465229108929634,-0.003210091730579734,0.04079274460673332,0.01187342219054699,0.03585020825266838,0.04301806539297104,0.034721411764621735,0.09634173661470413,0.0019845059141516685,0.026146627962589264,-0.05828598141670227,-0.017205938696861267,0.06555692851543427,-0.009733769111335278,-0.04323805123567581,0.03435588255524635,-0.1634037047624588,-0.028189096599817276,-0.0795525386929512,0.10135694593191147,0.006354993674904108,-0.04834553971886635,0.11108678579330444,0.0018005858873948455,0.014053741469979286,0.046136680990457535,0.10514006018638611,0.04469409957528114,0.043476808816194534,-0.016439396888017654,-0.06362367421388626,-0.008717876859009266,0.058978643268346786,-0.0091062281280756,-0.05033772438764572,-0.06775490194559097,-0.07563124597072601,-0.0010132642928510904,-0.003502053441479802,0.037374287843704224,-0.07215502858161926,-0.029327820986509323,0.00886397436261177,0.023931894451379776,-0.016328036785125732,0.11524355411529541,0.05169248953461647,0.02277267351746559,-0.08333376049995422,-0.015894290059804916,-0.003608105704188347,-0.00785946287214756,0.008821127004921436,0.028641676530241966,0.03812439739704132,-0.02582656778395176,0.07558338344097137,-0.06489519774913788,0.05458175390958786,-0.11806037276983261]},{"text":"He claimed to know of the existence of a mysterious country called Sugarcandy Mountain, to which all animals went when they died.","book":"Animal Farm","chapter":25,"embedding":[-0.027426766231656075,0.03308818116784096,-0.017323678359389305,0.07202095538377762,-0.042110443115234375,-0.06535594910383224,0.0680946558713913,0.002998822368681431,-0.05897798389196396,0.05371854081749916,0.011086932383477688,-0.006562462542206049,0.027974747121334076,0.004453092813491821,-0.07010579854249954,0.07628575712442398,-0.10081096738576889,-0.027066819369792938,0.020809989422559738,-0.03182309493422508,0.07793457806110382,0.021031802520155907,0.06245390698313713,0.08142949640750885,0.03359995409846306,-0.007279814686626196,-0.004585989285260439,-0.007618413772433996,-0.003218390978872776,0.03177376836538315,-0.011038116179406643,-0.010795295238494873,-0.016194652765989304,0.02120787836611271,0.015700476244091988,0.06857592612504959,0.02715775929391384,-0.011046189814805984,-0.02270348183810711,-0.0227144043892622,-0.012434281408786774,0.010841350071132183,0.06928487867116928,0.07618960738182068,-0.07153408229351044,-0.010838883928954601,-0.08162324130535126,0.011607174761593342,0.06729696691036224,0.029013412073254585,-0.01944497413933277,-0.05995878204703331,-0.021465135738253593,-0.10775870084762573,0.02966981567442417,-0.03657089173793793,-0.015951761975884438,0.003702352289110422,-0.010629604570567608,-0.0008947257301770151,0.04269801080226898,-0.002573965350165963,0.059268902987241745,-0.0003954200947191566,0.05423334240913391,0.011158604174852371,-0.09005975723266602,-0.03646363690495491,0.005691596306860447,0.001372658647596836,0.08111507445573807,-0.027372706681489944,-0.04627940431237221,0.0009941719472408295,-0.05791355296969414,-0.05691682919859886,-0.04239312931895256,0.07684623450040817,-0.06190986931324005,-0.023491667583584785,-0.01687665842473507,0.049925729632377625,0.0429171621799469,-0.00022752024233341217,-0.01244480162858963,-0.03731445595622063,0.044716622680425644,-0.04684392735362053,-0.013817211613059044,-0.03164855018258095,0.06696612387895584,-0.15766417980194092,-0.02608233503997326,0.06628654897212982,-0.04213064908981323,-0.017822638154029846,0.04951424524188042,-0.004290522541850805,0.04217153415083885,0.008309799246490002,0.016589680686593056,-0.0795755684375763,0.01463276706635952,-0.009331042878329754,0.0068555776961147785,-0.014753860421478748,-0.0896356999874115,0.052365053445100784,0.05013968423008919,0.03896942734718323,-0.036212898790836334,0.010281238704919815,0.005471521057188511,0.10990606993436813,-0.0075785438530147076,0.07204210758209229,-0.015582711435854435,-0.02642209269106388,-0.11468552052974701,-0.06328281760215759,-0.03935392200946808,0.0863688513636589,-0.0071565210819244385,0.057080768048763275,0.03162769228219986,0.04671461135149002,-0.005581034813076258,-5.7098818918566886e-33,0.12379641830921173,-0.1081983745098114,0.06063872575759888,0.03730621933937073,0.031413182616233826,0.04418391361832619,-0.02227630838751793,-0.012659721076488495,0.021049700677394867,0.03862351179122925,-0.021025076508522034,-0.010544368997216225,0.009352362714707851,0.03751697391271591,-0.06783155351877213,0.08528348803520203,0.004421541001647711,-0.10184759646654129,0.0581071600317955,-0.07793254405260086,-0.035384565591812134,0.03980998322367668,-0.001358482288196683,-0.01620139181613922,-0.0070457495748996735,0.0709327757358551,-0.025060681626200676,0.011928067542612553,0.01306298840790987,0.031113969162106514,-0.02240139991044998,-0.046444013714790344,-0.022914571687579155,-0.0658489540219307,0.05834252014756203,0.010446112602949142,-0.012227619998157024,-0.047628991305828094,-0.009819896891713142,0.0736372247338295,0.13892672955989838,-0.016971437260508537,-0.019476713612675667,-0.013825193978846073,-0.04549023509025574,0.03128502517938614,0.0529240220785141,0.0337262861430645,-0.002779135713353753,0.07235200703144073,-0.04080231860280037,0.020554251968860626,0.047647494822740555,-0.039543528109788895,0.003904090030118823,0.07561352849006653,-0.03241732716560364,-0.01598624885082245,0.07131043821573257,0.05280931293964386,0.06360036134719849,-0.0211027879267931,0.06379025429487228,0.0017463305266574025,-0.00740318326279521,-0.04568551480770111,0.001527140149846673,-0.0038196814712136984,-0.07722196727991104,-0.04278228059411049,0.015719430521130562,-0.026812465861439705,-0.02998330257833004,-0.01934977062046528,-0.03913385793566704,-0.04079139605164528,-0.009165631607174873,-0.005345586687326431,-0.08398120850324631,-0.0500076487660408,0.060535263270139694,-0.046031542122364044,-0.03522316366434097,0.027942460030317307,-0.07591049373149872,0.08805768936872482,0.04557718709111214,-0.13671445846557617,-0.04980441555380821,0.06381849944591522,-0.12723994255065918,0.04854060336947441,-0.04379454627633095,-0.07939669489860535,-0.031245194375514984,7.580605570577021e-34,-0.0034610445145517588,-0.07633354514837265,0.08132971823215485,-0.01594153605401516,-0.05813177675008774,-0.07291825860738754,-0.04046091437339783,-0.01013135351240635,0.0039504095911979675,-0.0027722155209630728,-0.012912099249660969,0.07435837388038635,0.09090927243232727,-0.009295138530433178,0.06334462016820908,0.07897131890058517,-0.03554853796958923,0.00449645658954978,-0.027977878227829933,0.05225929617881775,-0.06784576177597046,0.004033699166029692,-0.13908645510673523,-0.09637556225061417,0.07302545011043549,0.05995076894760132,-0.04480066895484924,-0.0400417298078537,0.005926612298935652,-0.07963177561759949,0.026925424113869667,0.017886750400066376,-0.004377254284918308,-0.03752671554684639,-0.07619462162256241,0.06184547021985054,0.04985976591706276,-0.0018422695575281978,0.013691289350390434,-0.0073968470096588135,0.005617222748696804,-0.015953058376908302,0.031040044501423836,-0.04615394026041031,-0.00019976582552772015,0.03815310448408127,-0.005036622751504183,0.15179204940795898,0.0009097550646401942,0.004865715280175209,0.016062496230006218,0.03421711176633835,0.03160920366644859,0.07320535182952881,0.03353317826986313,-0.00022594757319893688,-0.13237261772155762,0.02334614284336567,0.042762093245983124,-0.11362987756729126,-0.04394090175628662,-0.06813925504684448,0.01024970505386591,0.00930070411413908,-0.01728964038193226,-0.015156964771449566,-0.06651801615953445,0.026736339554190636,0.08167768269777298,-0.05548109486699104,-0.0011576093966141343,-0.04082399606704712,-0.030679209157824516,-0.05032554268836975,0.030098028481006622,0.1287010759115219,-0.07789085060358047,-0.01207459531724453,-0.014441006816923618,-0.08451981097459793,0.04683642089366913,-0.032626569271087646,0.052337292581796646,-0.0002207557117799297,0.028099510818719864,0.007956244051456451,-0.0015948556829243898,-0.0022184124682098627,0.005683033261448145,-0.03448906168341637,-0.05254282429814339,-0.05858960375189781,-0.03485956788063049,-0.006496389862149954,-0.022658318281173706,-2.5555696225865177e-8,0.014984644018113613,0.063425712287426,-0.004930194932967424,-0.03515445068478584,0.04991637170314789,-0.011857392266392708,0.025974340736865997,0.07743242383003235,-0.023409055545926094,0.09298253059387207,-0.048659633845090866,0.07090535014867783,-0.0056925504468381405,0.03550666570663452,-0.016148490831255913,-0.021043410524725914,0.062246743589639664,0.012784010730683804,-0.021379034966230392,0.09884278476238251,-0.12254204601049423,-0.0287935733795166,-0.018905991688370705,-0.0776507630944252,0.04367920011281967,-0.021341688930988312,0.048673246055841446,-0.021137254312634468,-0.002841145498678088,-0.034129224717617035,-0.00669384840875864,0.018115324899554253,-0.02272205986082554,-0.02164420299232006,0.06278270483016968,0.001146387425251305,-0.04660465568304062,-0.0375770628452301,0.09261775761842728,-0.1521662473678589,0.02146410197019577,0.07326546311378479,0.05074331909418106,0.03500223532319069,0.010756298899650574,-0.040698617696762085,0.05551256984472275,0.03990107402205467,-0.03475829213857651,0.0679679736495018,-0.09444017708301544,0.09441781789064407,-0.03125964477658272,0.020625388249754906,0.06534335017204285,-0.09426763653755188,-0.010083303786814213,-0.004534007050096989,-0.011149480938911438,-0.0034697295632213354,0.04723881185054779,-0.05067302659153938,-0.004682243335992098,-0.03860139846801758]},{"text":"These two had great difficulty in thinking anything out for themselves, but having once accepted the pigs as their teachers, they absorbed everything that they were told, and passed it on to the other animals by simple arguments.","book":"Animal Farm","chapter":25,"embedding":[0.0714126005768776,0.047582607716321945,0.005298953503370285,0.026211226359009743,-0.021512461826205254,-0.03429397940635681,-0.00866503082215786,0.02414790540933609,0.005413778126239777,0.02668788842856884,0.03513840585947037,0.0138899777084589,-0.03707122802734375,0.018811238929629326,-0.014014825224876404,0.005770530551671982,-0.017488844692707062,-0.004670183639973402,-0.04240788146853447,0.026059120893478394,-0.04445977509021759,-0.029916388913989067,0.023199474439024925,-0.02453494630753994,-0.036027733236551285,0.021094471216201782,-0.01593797653913498,-0.04705541953444481,-0.011631635017693043,-0.01728002354502678,-0.04627338424324989,-0.018578026443719864,-0.02591860108077526,0.0015064162435010076,-0.06321538239717484,0.03650278225541115,0.07300195842981339,0.11981216818094254,0.08784553408622742,-0.09294526278972626,-0.03686515986919403,-0.037457793951034546,0.022049209102988243,-0.05663585662841797,-0.06833881139755249,-0.05003020539879799,-0.0003413840604480356,-0.04426410421729088,0.039149779826402664,-0.058467816561460495,-0.06125764548778534,-0.04555675387382507,-0.08028888702392578,-0.11379014700651169,-0.02293352037668228,0.01745402067899704,-0.04648345336318016,0.015271595679223537,0.016444221138954163,-0.03780927509069443,-0.049842871725559235,-0.00894886627793312,0.02690272219479084,0.08100108802318573,0.047588448971509933,-0.024571072310209274,0.02890622988343239,0.06942059844732285,-0.07839768379926682,0.038204435259103775,-0.0061405315063893795,-0.006022303365170956,0.03237130865454674,-0.08766961842775345,0.004533782135695219,0.022312909364700317,-0.010962575674057007,0.007502736523747444,0.0426676869392395,-0.07979830354452133,-0.049456898123025894,-0.01647765375673771,-0.039171695709228516,-0.023349376395344734,0.04139535129070282,0.007200875319540501,-0.03327496349811554,0.010380386374890804,-0.04846404865384102,0.005681642796844244,0.02103268727660179,-0.1256178766489029,0.018084418028593063,0.02997700870037079,0.09313544631004333,-0.02307860180735588,-0.04656657949090004,0.037866976112127304,-0.05490236356854439,0.05386807397007942,-0.04430261254310608,0.046503324061632156,0.011111801490187645,-0.047398075461387634,0.07306835800409317,-0.03960224986076355,-0.016753485426306725,-0.09073807299137115,0.02463005855679512,-0.006454659625887871,-0.04335895553231239,-0.04154791310429573,0.02813403122127056,0.1165294498205185,0.06047573685646057,0.15645048022270203,0.046975281089544296,-0.039373211562633514,-0.025430863723158836,-0.060228150337934494,0.06906881183385849,0.06354450434446335,0.008714091964066029,0.0020138737745583057,-0.003063981654122472,-0.05233723297715187,0.007530234754085541,-1.5708292870100206e-34,0.0309684369713068,-0.01757505163550377,-0.048507511615753174,0.03338601440191269,0.0560198649764061,0.0374300591647625,-0.05134674906730652,-0.035823237150907516,0.09970414638519287,0.019463298842310905,-0.05713023990392685,0.0391945019364357,0.024774251505732536,-0.03873254358768463,-0.06881655007600784,0.05690567567944527,-0.11664947122335434,-0.023269517347216606,0.03631654381752014,-0.004659678321331739,-0.0029566907323896885,0.14497622847557068,-0.0003626020916271955,0.040715936571359634,-0.011902605183422565,-0.00998762622475624,0.020940786227583885,-0.06047578528523445,0.005825134925544262,0.03525518998503685,-0.010976002551615238,-0.033225707709789276,-0.05419925972819328,0.04917668178677559,-0.008556977845728397,-0.03540391847491264,0.0597156286239624,-0.06873457878828049,0.0748918354511261,-0.03048156388103962,0.110223188996315,-0.03919686749577522,0.06276710331439972,0.02330596372485161,-0.024153506383299828,0.056893739849328995,-0.03298327326774597,-0.019666265696287155,-0.05280061811208725,0.030892960727214813,-0.0017996001988649368,0.025495482608675957,-0.005067724734544754,-0.03886621072888374,0.025369400158524513,-0.007854288443922997,0.033718060702085495,0.040689922869205475,-0.042664118111133575,0.0219565462321043,0.04422122612595558,0.08350320905447006,0.0014917231164872646,-0.004250997677445412,0.02649400196969509,0.00027645978843793273,-0.12399540096521378,0.022515268996357918,-0.040124423801898956,-0.03062848560512066,-0.10273190587759018,-0.009423845447599888,-0.04361370950937271,-0.12198004871606827,-0.06786090135574341,-0.09205308556556702,0.022415615618228912,-0.05813596025109291,0.009293388575315475,-0.08836793154478073,0.10087291151285172,0.002356358105316758,-0.0830719843506813,-0.020038336515426636,-0.12089374661445618,0.0570078082382679,0.028661951422691345,-0.1178988367319107,0.04938419908285141,-0.010542526841163635,0.008251642808318138,0.03266977518796921,-0.014675361104309559,-0.13609103858470917,0.037043891847133636,-1.6962644295174697e-33,-0.027886955067515373,0.030085651203989983,0.005160958040505648,0.10236629843711853,0.02365020103752613,0.0017485502175986767,-0.0029451383743435144,-0.04959871619939804,0.08324277400970459,-0.039797890931367874,-0.09023354947566986,-0.04002216085791588,-0.020066704601049423,-0.004226755350828171,0.012653856538236141,-0.07564734667539597,0.01714753732085228,-0.05729001387953758,0.03301246464252472,-0.12161589413881302,-0.03715714067220688,0.046898357570171356,-0.03967801481485367,-0.006997052580118179,0.04805802181363106,0.09653046727180481,0.03170333430171013,-0.02566682919859886,0.01490956824272871,-0.027980061247944832,0.004493975546211004,0.018538253381848335,0.011315054260194302,-0.014485503546893597,0.025800837203860283,0.029670510441064835,-0.0027318717911839485,0.060401491820812225,-0.08060230314731598,-0.06810643523931503,-0.009993544779717922,-0.08321983367204666,-0.0899963453412056,0.03807833790779114,-0.011997531168162823,0.1010880395770073,0.01127867866307497,-0.007897003553807735,-0.029692960903048515,0.020304527133703232,-0.004018922336399555,-0.0033645471557974815,0.004240177571773529,-0.09535203874111176,0.021431991830468178,-0.018683670088648796,0.12824907898902893,-0.02905467338860035,0.10511802136898041,0.008211860433220863,-0.016209473833441734,0.007264198735356331,-0.00877922773361206,-0.020373327657580376,-0.014532226137816906,0.002261224901303649,-0.06512156128883362,0.007232354953885078,0.04803818464279175,0.023893509060144424,0.012070870958268642,0.02818656526505947,-0.04089682921767235,-0.05535152554512024,0.10312240570783615,0.14269907772541046,-0.05797717720270157,-0.07107139378786087,-0.002896507503464818,-0.0518045499920845,-0.041387204080820084,-0.0056499033235013485,0.04807538166642189,0.08301117271184921,0.03446406126022339,0.026663849130272865,-0.008626570925116539,0.09577812254428864,0.022812673822045326,0.024486618116497993,0.050204627215862274,-0.03285137936472893,0.09807957708835602,0.014332093298435211,0.003824233775958419,-2.9227829045908038e-8,-0.024886230006814003,-0.016063570976257324,-0.008345003239810467,0.03429250791668892,0.027178563177585602,0.058506518602371216,-0.00804886780679226,0.03525996208190918,-0.022634223103523254,0.13985228538513184,-0.10216943919658661,0.08109685033559799,-0.03959577903151512,0.0708625465631485,0.04762037470936775,0.07309781759977341,0.04590822011232376,-0.059685707092285156,-0.01588798500597477,0.058039482682943344,-0.010820874944329262,-0.028943387791514397,-0.03459525853395462,-0.07162360101938248,-0.05373397842049599,0.02128458023071289,-0.05442909896373749,0.0022140934597700834,-0.024750862270593643,0.08353020250797272,0.006397732067853212,0.003955818247050047,-0.051199112087488174,-0.0835794135928154,-0.010009276680648327,0.006347612012177706,-0.025528402999043465,-0.005872518289834261,0.06904182583093643,-0.031040245667099953,-0.032774362713098526,0.03404378890991211,-0.003972756676375866,0.03319691866636276,0.04288765415549278,-0.05119409039616585,-0.005920801777392626,0.007725754287093878,-0.026607733219861984,0.03923324868083,-0.005018046125769615,0.09094904363155365,0.05022474750876427,-0.0069506471045315266,0.0011921321274712682,-0.06698280572891235,-0.036146536469459534,-0.009768849238753319,-0.048328936100006104,0.043086662888526917,0.060445044189691544,0.08769030123949051,-0.03415962681174278,0.04135703667998314]},{"text":"For whole days at a time he would lounge in his Windsor chair in the kitchen, reading the newspapers, drinking, and occasionally feeding Moses on crusts of bread soaked in beer.","book":"Animal Farm","chapter":26,"embedding":[0.06106849014759064,0.11677349358797073,0.016556095331907272,0.05034999921917915,-0.05898195505142212,0.04605350270867348,0.07619883865118027,-0.0564417764544487,-0.0627988651394844,-0.01919040083885193,-0.009310920722782612,-0.07014717906713486,-0.019364098086953163,0.03538976609706879,0.05876754969358444,-0.13613608479499817,0.044175829738378525,0.04416535794734955,-0.01910093054175377,-0.0031078127212822437,-0.01551760919392109,0.04710088297724724,0.12443753331899643,-0.07392573356628418,0.03088701143860817,0.06569979339838028,0.022258568555116653,-0.04955125227570534,0.029727421700954437,-0.0398937426507473,0.016691066324710846,-0.017867986112833023,0.00528640765696764,-0.012980250641703606,0.007016336545348167,0.01603923924267292,0.07982400804758072,0.02711087465286255,0.06734044849872589,-0.011257223784923553,0.0612122118473053,-0.027604343369603157,-0.05923588201403618,0.016200654208660126,-0.05070982873439789,0.005437944550067186,-0.022751305252313614,-0.020164398476481438,0.04525737836956978,0.009281101636588573,-0.08380690217018127,0.0023480209056288004,0.06762789934873581,-0.06643954664468765,0.013634337112307549,-0.030103590339422226,-0.018544862046837807,-0.002635305281728506,0.061007168143987656,-0.05668643116950989,-0.019333424046635628,0.034028131514787674,0.05125025659799576,0.03993239253759384,0.000019166593119734898,-0.03320661932229996,-0.0864667147397995,0.05361562594771385,0.014394048601388931,-0.008161911740899086,-0.06070535257458687,0.05089116096496582,0.04531322792172432,-0.08701644837856293,-0.06639917194843292,-0.118228979408741,-0.019717635586857796,-0.12653830647468567,0.005759958643466234,0.02207701839506626,-0.022838780656456947,0.04005895182490349,0.052374184131622314,0.08072073012590408,-0.01136632077395916,0.024759437888860703,0.03419448062777519,-0.04192481189966202,-0.03366800397634506,0.03329426795244217,-0.005396647844463587,-0.11774308234453201,-0.0015595712466165423,-0.07024039328098297,-0.12431903928518295,0.05176344886422157,-0.06665901094675064,0.012586944736540318,-0.025257190689444542,0.07964436709880829,0.02382596954703331,0.0446142815053463,0.09402571618556976,0.0565243735909462,0.035982903093099594,0.05261843651533127,-0.08333183079957962,0.0068462989293038845,-0.00017811339057516307,-0.03998590633273125,-0.016032202169299126,-0.018933406099677086,-0.010639490559697151,0.014826715923845768,0.016470933333039284,-0.0011885507265105844,-0.024681812152266502,-0.03519590198993683,-0.027975469827651978,0.0729956328868866,0.04088454693555832,0.034325022250413895,0.02257133089005947,0.04837765172123909,-0.05914529785513878,0.012669159099459648,0.04039928317070007,1.9680519018212813e-34,0.00915804598480463,-0.05599295347929001,-0.019616367295384407,0.04608411341905594,0.10386516898870468,0.004606893751770258,-0.03332282230257988,0.03318902850151062,0.08303748071193695,-0.05830341577529907,0.05224664881825447,0.00038138829404488206,-0.03757905215024948,0.09080026298761368,-0.15135589241981506,0.046895358711481094,-0.05188160762190819,0.030306803062558174,0.04555604234337807,-0.07023593783378601,-0.032381571829319,-0.07629942148923874,0.043489519506692886,0.03753898665308952,0.07393459230661392,-0.04638981819152832,0.07046136260032654,-0.08773969113826752,-0.0229941476136446,0.029090886935591698,0.010356271639466286,0.04455767571926117,-0.04144283011555672,0.01287127286195755,0.0011857344070449471,0.01430579274892807,0.030582748353481293,0.030871091410517693,-0.07174896448850632,0.0019416112918406725,-0.009223772212862968,-0.03401356562972069,0.08535291999578476,0.07428646087646484,-0.10108465701341629,0.07562284916639328,0.05001110956072807,0.03790627419948578,0.01953640952706337,0.01775224879384041,0.0282983910292387,0.013982929289340973,-0.0171035286039114,-0.13930773735046387,0.009957118891179562,-0.0009910387452691793,0.02516833320260048,-0.026632409542798996,0.042862795293331146,0.05627557262778282,0.04017547890543938,-0.009045691229403019,-0.006794738117605448,0.031205065548419952,-0.09952560812234879,-0.03589300438761711,-0.010814454406499863,-0.06474336981773376,-0.021240685135126114,-0.03865528106689453,-0.05687662586569786,-0.03901977464556694,0.04679692164063454,-0.07172217965126038,-0.044741325080394745,-0.069205142557621,-0.004069894086569548,-0.06991145014762878,-0.09929203242063522,-0.03682456165552139,0.14876410365104675,-0.04139268025755882,-0.008148988708853722,0.07980699092149734,-0.03723835200071335,0.001124036149121821,0.02480710670351982,-0.11419595032930374,-0.03817044198513031,0.011711260303854942,-0.026026412844657898,-0.037753403186798096,0.07508576661348343,-0.07654009759426117,-0.016747746616601944,-2.1451842527285628e-33,0.051669586449861526,0.0023103016428649426,-0.026431556791067123,0.030556518584489822,-0.03498274087905884,-0.06334688514471054,-0.028535593301057816,0.0559382401406765,0.006574197206646204,-0.007506046909838915,-0.01374928466975689,0.05623907223343849,0.006806496996432543,-0.019597237929701805,-0.036299437284469604,-0.006247011944651604,0.005345399025827646,-0.00460572587326169,-0.03983737900853157,0.07150574028491974,0.01806911639869213,-0.03744317218661308,0.07412801682949066,0.03325565531849861,0.039383526891469955,0.05402500554919243,0.02142724208533764,0.03892551362514496,-0.062006883323192596,-0.010775250382721424,0.03453196957707405,0.028120141476392746,-0.01915048621594906,-0.028205208480358124,-0.0817905142903328,0.0251611415296793,-0.08706111460924149,-0.0016837262082844973,-0.07958537340164185,-0.02393232472240925,0.0740402340888977,-0.09114164859056473,0.04814207926392555,-0.00047886549145914614,0.037168949842453,0.0538778230547905,-0.027850326150655746,-0.007037257310003042,-0.004451023880392313,0.019779546186327934,-0.010953973978757858,-0.010162608698010445,-0.07178297638893127,0.04104774445295334,-0.015156462788581848,0.10496831685304642,-0.03322914242744446,-0.05943167209625244,-0.016740769147872925,0.006111537106335163,-0.016242733225226402,-0.008876522071659565,0.10054630041122437,0.03222706913948059,-0.02880113571882248,-0.03742422163486481,-0.05137835815548897,0.013842902146279812,-0.009595809504389763,0.08142605423927307,-0.0012527660001069307,-0.06806216388940811,0.04496677219867706,0.03347976133227348,-0.005574948154389858,0.08789126574993134,-0.0029840697534382343,-0.1083202213048935,0.027340753003954887,-0.0587976835668087,-0.16168101131916046,-0.033924780786037445,-0.047442879527807236,-0.02753627672791481,-0.03552449867129326,-0.05654130131006241,0.008693055249750614,-0.03578171506524086,0.0005990663776174188,0.00698868790641427,0.0460338220000267,-0.008107713423669338,0.012981259264051914,-0.0006490537780337036,0.0781242772936821,-3.031887274573819e-8,-0.03566049784421921,-0.05472278222441673,-0.029113594442605972,0.036070194095373154,0.052203599363565445,-0.05135885253548622,0.11087270826101303,-0.0460873544216156,0.009316861629486084,0.03301385045051575,-0.030156351625919342,0.013693739660084248,0.059240877628326416,0.02137700654566288,0.05566305294632912,0.008805139921605587,-0.030549537390470505,-0.06219270080327988,-0.05646801367402077,0.06785465031862259,0.05680625140666962,-0.020874956622719765,0.03564366698265076,0.017697758972644806,-0.029365921393036842,0.013114994391798973,0.021942252293229103,0.045592840760946274,0.07237322628498077,0.07012581080198288,0.04533298313617706,0.024360710754990578,-0.04383176565170288,0.001030392711982131,0.0031548684928566217,-0.06927718222141266,-0.03460221365094185,-0.07815109193325043,-0.03955530375242233,-0.013734192587435246,-0.023025281727313995,-0.04006554186344147,-0.009189278818666935,-0.00810169242322445,0.0032183979637920856,-0.020587677136063576,0.03287448734045029,0.11285551637411118,0.07739895582199097,0.09076467156410217,0.011070641689002514,0.06554661691188812,0.06434916704893112,0.012374124489724636,0.015547171235084534,-0.02829473465681076,-0.004742342047393322,-0.05266997963190079,-0.042075641453266144,0.02757219411432743,0.0014185967156663537,0.030721254646778107,-0.09776823222637177,-0.08608562499284744]},{"text":"The men had milked the cows in the early morning and then had gone out rabbiting, without bothering to feed the animals.","book":"Animal Farm","chapter":26,"embedding":[0.05701574310660362,0.1281130164861679,0.03889511525630951,0.1731562614440918,0.04992175102233887,-0.0427374541759491,-0.033397287130355835,-0.025280969217419624,-0.07560516893863678,0.0013569564325734973,0.053968336433172226,0.05317001789808273,-0.029441911727190018,0.053690582513809204,-0.026025274768471718,-0.054758887737989426,-0.04103512316942215,-0.08074067533016205,0.02458905056118965,0.0006627226830460131,0.04254628345370293,-0.01357284840196371,0.014611422084271908,0.046637579798698425,0.04467292129993439,-0.026151340454816818,-0.019704382866621017,-0.05758899450302124,0.010343200527131557,-0.011800011619925499,-0.042597271502017975,-0.018724117428064346,0.04979832470417023,-0.09827863425016403,-0.06281919777393341,-0.06334339827299118,0.13299207389354706,-0.03461144492030144,0.09638207405805588,0.004040461964905262,0.022210082039237022,-0.08099931478500366,0.04538508132100105,-0.007696881424635649,-0.025584645569324493,0.08963587135076523,-0.02664928510785103,-0.03274037688970566,0.06129119545221329,0.05855732783675194,0.003941649105399847,-0.004541177302598953,-0.08463966101408005,-0.005479033105075359,0.00483659328892827,-0.024320272728800774,0.02351047657430172,-0.04359190911054611,0.028313176706433296,-0.033093053847551346,0.004023612942546606,-0.03997340425848961,0.05549820140004158,0.08013169467449188,0.06740770488977432,-0.02560710906982422,-0.04056118428707123,-0.001782686566002667,0.05155158415436745,0.042999058961868286,0.017371343448758125,-0.03525816276669502,-0.08150532096624374,-0.08594594150781631,-0.03349917754530907,0.04954712837934494,-0.012581149116158485,-0.031895339488983154,-0.005336917471140623,-0.008050406351685524,-0.04794010519981384,-0.05762028321623802,-0.08031415939331055,0.06014661490917206,-0.04076139256358147,0.007320655044168234,0.024474283680319786,0.008418072015047073,0.041778650134801865,-0.0135502265766263,-0.057512350380420685,-0.048781704157590866,-0.0037059553433209658,0.046405136585235596,0.04660284146666527,-0.09822377562522888,0.009020577184855938,0.06603091210126877,-0.036191973835229874,0.07651776075363159,0.04998618736863136,-0.05356923118233681,-0.02005261369049549,-0.023495817556977272,0.0598442368209362,0.049690984189510345,-0.11333032697439194,0.005974475760012865,-0.026397954672574997,0.006589274387806654,-0.03589240089058876,0.05871910601854324,0.07601402699947357,0.09238850325345993,0.021906621754169464,0.03463796153664589,0.011569683440029621,-0.04256809875369072,-0.039032112807035446,0.04036962613463402,0.06297484040260315,0.0018860888667404652,0.06342276185750961,-0.005134915001690388,-0.04073335975408554,0.08571572601795197,0.11456654965877533,-1.4442645219820802e-33,0.028564175590872765,-0.1244746744632721,0.01551069412380457,-0.0656307265162468,0.09663375467061996,0.04014916718006134,-0.05855466052889824,-0.04272159934043884,0.04958285391330719,-0.0066113779321312904,-0.002808058401569724,-0.041394319385290146,-0.009863155893981457,-0.02792022004723549,-0.0594843365252018,-0.04365266114473343,0.06534741073846817,-0.009761400520801544,0.07018814235925674,-0.027055496349930763,-0.03682052344083786,0.1058097630739212,-0.024976689368486404,0.0010845467913895845,0.02280585467815399,0.03135029971599579,-0.06567268073558807,-0.04804163798689842,0.01905590109527111,0.014695257879793644,0.08324403315782547,-0.04478562995791435,-0.008940073661506176,0.04022062569856644,0.011698503978550434,-0.07068457454442978,0.0070699299685657024,-0.0602608397603035,0.025967519730329514,-0.01392222661525011,0.0014143279986456037,0.002182998461648822,0.05764186009764671,-0.053908441215753555,-0.0276950653642416,0.016966968774795532,-0.030177919194102287,0.01291316095739603,-0.06772461533546448,-0.01767878606915474,0.0003575813607312739,0.008303058333694935,-0.015388067811727524,-0.0768902450799942,-0.002071559429168701,0.00014707505761180073,0.0497622936964035,0.0165327787399292,-0.07144507020711899,0.046727340668439865,0.05851719528436661,0.03377019986510277,0.04819649085402489,-0.03944168984889984,0.0001665752351982519,-0.08665475249290466,-0.006644507870078087,-0.03209808096289635,-0.036008331924676895,-0.003863593330606818,-0.008227262645959854,-0.039197809994220734,-0.04575704038143158,-0.0848248302936554,0.04288265109062195,0.015263103879988194,-0.002740689320489764,0.010304768569767475,-0.07809751480817795,-0.022057902067899704,0.12160011380910873,0.02380508929491043,-0.05591033026576042,0.0037472257390618324,-0.0025692079216241837,0.0461803637444973,0.007955480366945267,-0.05647102743387222,0.04312140494585037,-0.024605218321084976,-0.04660186544060707,0.06463080644607544,0.04686537757515907,-0.002266672905534506,0.06757286936044693,9.815763538449964e-34,-0.0177011676132679,0.10070327669382095,-0.04601508006453514,0.026462534442543983,0.002694346010684967,-0.09318733215332031,0.009294547140598297,-0.006329566705971956,0.05186556652188301,-0.03463750332593918,0.01080838032066822,-0.06786932796239853,0.007819182239472866,0.027913669124245644,0.030264955013990402,-0.04436729848384857,0.0694844052195549,-0.01563345640897751,-0.01107756420969963,0.01511462777853012,0.036743782460689545,-0.016582531854510307,-0.030568556860089302,-0.0700005292892456,0.07451075315475464,0.10234949737787247,-0.0037248150911182165,-0.0027133021503686905,-0.01927736960351467,-0.026673685759305954,0.040602970868349075,-0.051163796335458755,0.03964647650718689,-0.026974981650710106,-0.046511732041835785,-0.017886562272906303,-0.046067070215940475,0.14164963364601135,0.015398609451949596,-0.08578748255968094,0.02936178259551525,0.024090098217129707,-0.06585203856229782,0.02129313349723816,-0.03203463926911354,0.061257556080818176,-0.021395988762378693,0.009519262239336967,-0.011760581284761429,0.07443670928478241,-0.021438125520944595,-0.03563864529132843,-0.023183688521385193,-0.06907448917627335,-0.02528957463800907,-0.019896090030670166,0.1260444074869156,-0.026373539119958878,0.05258428677916527,0.0008651151438243687,-0.06626588106155396,0.04251667112112045,0.03748947009444237,-0.05731496959924698,-0.08141212165355682,-0.009952506050467491,-0.03333466500043869,-0.0037266388535499573,0.0566059947013855,-0.1253681629896164,0.12162500619888306,0.006554918363690376,-0.014506037347018719,0.008146535605192184,0.05110250413417816,0.13870204985141754,-0.0955861508846283,-0.006746724247932434,0.0024555630516260862,-0.08146579563617706,-0.06769968569278717,-0.051450926810503006,0.0292173083871603,0.06400875747203827,-0.023318786174058914,-0.005102160386741161,0.053129687905311584,-0.019023288041353226,0.04415353760123253,0.0517614409327507,0.0519673116505146,-0.007033974397927523,0.1004791110754013,0.07767775654792786,0.05629901960492134,-1.9630416403515483e-8,0.019520558416843414,-0.05650879815220833,-0.04631109908223152,0.008787390775978565,0.07434609532356262,-0.09521383047103882,0.026858631521463394,0.09100509434938431,0.04385349899530411,0.0831582099199295,-0.07474213093519211,0.07969620078802109,0.016410669311881065,0.018354136496782303,0.025773653760552406,0.010751556605100632,0.05683102086186409,-0.09819506853818893,-0.028283221647143364,-0.013363977894186974,-0.031175093725323677,-0.026828311383724213,-0.09915737807750702,-0.03732103109359741,0.004195985849946737,-0.016360176727175713,-0.03885322064161301,-0.006653677672147751,0.00892473105341196,0.07820852100849152,0.015508128330111504,0.03883292153477669,-0.06118321046233177,-0.007030446082353592,-0.005793889053165913,0.0418521948158741,-0.033303242176771164,-0.02043081261217594,0.01739514246582985,-0.10307350754737854,-0.04501781985163689,0.028453826904296875,0.10247590392827988,-0.050746235996484756,0.030614299699664116,-0.038538917899131775,0.015749765560030937,0.03396148607134819,-0.0355256088078022,-0.004736529663205147,-0.025644702836871147,-0.0037700277753174305,0.014001330360770226,0.02183191291987896,0.011265303939580917,-0.11175663769245148,0.03108477033674717,-0.07364822924137115,0.0044218432158231735,0.03622168302536011,-0.0013544458197429776,0.025289373472332954,0.024894969537854195,-0.02280290797352791]},{"text":"The next moment he and his four men were in the store-shed with whips in their hands, lashing out in all directions.","book":"Animal Farm","chapter":26,"embedding":[0.013578896410763264,0.11623483151197433,-0.04389419034123421,0.060385510325431824,-0.009820825420320034,0.02968817576766014,0.043739203363657,-0.030971860513091087,-0.03842620179057121,-0.007198123261332512,0.0854155421257019,0.004111501853913069,0.02649853564798832,-0.0046570077538490295,-0.032984502613544464,-0.03194502368569374,-0.09617702662944794,0.030887898057699203,-0.12054453045129776,-0.029442502185702324,0.045270875096321106,0.03469480201601982,0.04729351028800011,-0.014462331309914589,-0.08435267210006714,0.03130864351987839,-0.04532900080084801,-0.04147636890411377,0.0773766040802002,-0.034135255962610245,-0.0016449365066364408,-0.08337030559778214,-0.05412488803267479,-0.00865478441119194,-0.061371684074401855,0.00925807561725378,0.08511815965175629,-0.020527521148324013,0.08485350012779236,-0.027875887230038643,0.09063459187746048,0.06113576516509056,-0.04484120011329651,0.026099206879734993,-0.054585911333560944,0.028553375974297523,0.03583790361881256,-0.05947563052177429,0.08054523169994354,-0.04071750491857529,0.04122069105505943,-0.019050544127821922,0.07749646157026291,0.03528336063027382,-0.046572960913181305,-0.003912163898348808,0.08085063099861145,-0.06131509691476822,0.041112858802080154,0.11000668257474899,0.0036366130225360394,-0.05242561176419258,0.013654949143528938,0.08641476184129715,0.025184711441397667,-0.007002733182162046,0.011810127645730972,0.03193275257945061,-0.061392128467559814,0.08724885433912277,0.019203880801796913,-0.03160719573497772,-0.025427134707570076,0.02099817804992199,-0.04154347628355026,-0.0026787850074470043,-0.003223659470677376,-0.0529792346060276,-0.0007821740582585335,0.0006091650575399399,-0.020167576149106026,-0.04978877678513527,-0.051784541457891464,0.059949617832899094,-0.06501247733831406,-0.023026127368211746,0.03220459446310997,-0.08300790935754776,0.023189086467027664,0.09827399998903275,-0.10046996176242828,-0.04492872208356857,-0.08024509996175766,0.007637158967554569,-0.08311982452869415,0.003808817360550165,-0.01840813457965851,0.06821762770414352,-0.036231059581041336,0.04078606143593788,-0.0068124146200716496,-0.041341397911310196,-0.021995650604367256,-0.0523742139339447,-0.03128188103437424,-0.029534712433815002,-0.07999184727668762,-0.004828198812901974,-0.09851094335317612,-0.00467668054625392,-0.06103942170739174,-0.058454398065805435,0.00008240011084126309,-0.05087803676724434,0.052305854856967926,-0.0203498937189579,0.008022680878639221,-0.051500238478183746,-0.056914228945970535,-0.000831388111691922,0.07914114743471146,0.07764002680778503,-0.0006270746234804392,0.011622192338109016,-0.004770497791469097,0.04639456421136856,0.028709853067994118,-2.3664328607044567e-33,0.03754120692610741,-0.008054285310208797,-0.04061444476246834,-0.017499936744570732,0.056172747164964676,0.012291918508708477,-0.048061445355415344,0.030871810391545296,0.01547414343804121,0.06828554719686508,0.0018093172693625093,-0.09298766404390335,-0.027033068239688873,0.0033593391999602318,-0.07782021909952164,0.001434594509191811,0.03878520056605339,-0.008827152661979198,0.049134038388729095,-0.024667993187904358,-0.07574696838855743,0.07551316916942596,-0.038850679993629456,-0.019729798659682274,-0.04912874102592468,0.08742687106132507,-0.03375688195228577,-0.02578817680478096,0.13178789615631104,0.022501658648252487,0.029405370354652405,0.0756223201751709,-0.005661531817167997,0.02548835799098015,-0.02936965599656105,0.01206597313284874,-0.025636306032538414,-0.0151985390111804,-0.051597487181425095,-0.00515751913189888,-0.0016450232360512018,0.016134850680828094,0.008448106236755848,0.031951747834682465,-0.08421573042869568,0.023526305332779884,-0.12209741771221161,0.023518523201346397,0.008395177312195301,0.04623536020517349,0.007426319643855095,0.05475994944572449,0.11620841175317764,0.02822486311197281,0.03988809883594513,0.01268087700009346,-0.014629192650318146,-0.02375098504126072,0.07989475131034851,0.03456180542707443,0.03854149207472801,0.04312523826956749,-0.03375840187072754,0.00907071027904749,0.005202542524784803,-0.136752650141716,0.04457017779350281,0.026530450209975243,-0.03591030091047287,0.06525783985853195,-0.07517888396978378,0.0012390591436997056,0.006754232570528984,-0.01934167556464672,0.004829811863601208,-0.028256332501769066,-0.0679042711853981,0.010103685781359673,-0.019854309037327766,-0.05389215797185898,0.03743722289800644,-0.015964891761541367,0.0329338014125824,0.0831272229552269,-0.03427278995513916,0.010631253942847252,0.03421137109398842,-0.09095033258199692,0.0034915762953460217,0.12583975493907928,-0.051710329949855804,0.039767637848854065,0.08984207361936569,0.012911076657474041,-0.0282676313072443,-1.8749156936134564e-33,0.046933792531490326,0.059238940477371216,-0.08393627405166626,0.08706767857074738,0.007619542069733143,-0.01063366699963808,-0.07371338456869125,0.032756779342889786,0.04170166328549385,-0.059477582573890686,-0.012435759417712688,0.018314504995942116,0.02386387437582016,0.09053424000740051,0.03739667311310768,0.019122891128063202,0.0433521531522274,-0.02050621062517166,0.05226745456457138,-0.035730089992284775,0.12795178592205048,-0.06124914065003395,-0.010829539969563484,0.03910805657505989,-0.0479503832757473,-0.06669437885284424,0.04394855350255966,0.01119293738156557,-0.09936212748289108,0.020023079589009285,-0.013915849849581718,-0.08102044463157654,0.05886814743280411,0.08368311822414398,-0.07118888944387436,0.006662905216217041,-0.023479757830500603,0.054856784641742706,0.02998466044664383,-0.03528357297182083,0.016109613701701164,0.018640190362930298,0.014270782470703125,0.05553964525461197,0.005921406205743551,-0.007138629909604788,-0.06046871468424797,0.025941884145140648,0.05895652994513512,0.052048321813344955,-0.08082062751054764,0.04731333255767822,-0.06251668930053711,-0.05292029678821564,-0.05719231441617012,-0.05419822782278061,0.022464964538812637,-0.10568492114543915,0.01601262390613556,0.007283729501068592,-0.11763595789670944,-0.03913401812314987,0.015501223504543304,0.0366772785782814,-0.03770124167203903,-0.0006483034230768681,-0.0038222274743020535,-0.10455609858036041,-0.037585094571113586,-0.015007694251835346,-0.008346173912286758,-0.0549689419567585,0.012512107379734516,-0.031142868101596832,0.0026572616770863533,0.04724850505590439,-0.05431641638278961,-0.06755626946687698,-0.035437844693660736,-0.02219630777835846,-0.0025684628635644913,-0.050987694412469864,0.02113594487309456,-0.024673208594322205,-0.05158570408821106,-0.020104460418224335,0.05862947180867195,0.03605954349040985,0.03326025232672691,-0.021494293585419655,0.02672172710299492,0.027366729453206062,0.07749415189027786,-0.029049240052700043,-0.005501131992787123,-2.6093395888437954e-8,-0.022101955488324165,-0.002034728182479739,-0.031762830913066864,0.01723206788301468,0.08939839154481888,0.1254887729883194,0.013770459219813347,0.06863419711589813,-0.033294469118118286,0.020761722698807716,0.0019975181203335524,0.0688701644539833,0.006562791299074888,0.07657288759946823,0.008246073499321938,0.021681735292077065,-0.06743034720420837,-0.11336623132228851,-0.038915932178497314,0.02095021679997444,-0.02195015363395214,0.03155514970421791,0.028688877820968628,0.06564591825008392,-0.024284645915031433,0.009339336305856705,-0.0010472462745383382,-0.027959933504462242,-0.007552684284746647,0.10338518023490906,0.06488946080207825,0.005797892808914185,-0.0794135332107544,-0.05754518508911133,-0.06623145937919617,0.07415071129798889,-0.012732296250760555,0.04311538115143776,0.1327478140592575,-0.04041578620672226,-0.07635599374771118,-0.02777719870209694,-0.026517843827605247,0.023335225880146027,0.0408845916390419,0.024030765518546104,0.01356243435293436,0.06480514258146286,-0.02267146296799183,0.06012182682752609,-0.0021476997062563896,0.021098922938108444,-0.04067400470376015,0.0316067598760128,0.06503575295209885,-0.1568920910358429,-0.03513265401124954,-0.07680535316467285,-0.03272050991654396,-0.01260075718164444,-0.04548189416527748,-0.04941389709711075,-0.021864712238311768,-0.004660399165004492]},{"text":"They had never seen animals behave like this before, and this sudden uprising of creatures whom they were used to thrashing and maltreating just as they chose, frightened them almost out of their wits.","book":"Animal Farm","chapter":26,"embedding":[0.06282388418912888,0.06914390623569489,0.1012127548456192,0.11475083976984024,-0.012105835601687431,-0.019851719960570335,-0.010248714126646519,-0.003537640441209078,0.01924707368016243,-0.007607055362313986,0.0003948771336581558,-0.05937176197767258,0.032250359654426575,-0.03786082938313484,-0.08548447489738464,-0.041646797209978104,-0.02233963832259178,-0.034797731786966324,0.0029796839226037264,0.08126353472471237,-0.014312684535980225,0.032488878816366196,0.07131873816251755,0.010568615049123764,-0.02820071391761303,0.025457920506596565,-0.0487775094807148,0.022958312183618546,0.03302592411637306,0.0002554407110437751,-0.017062362283468246,-0.03978506475687027,-0.007353643421083689,-0.001685183378867805,-0.022401418536901474,0.015308230184018612,0.06172272935509682,-0.03517194092273712,0.03222181275486946,-0.030703969299793243,-0.004010755568742752,0.0019991230219602585,-0.007854214869439602,-0.05826350674033165,-0.1497182846069336,-0.03435000404715538,-0.1202017143368721,-0.018579857423901558,0.032635390758514404,-0.08798186480998993,-0.04080190882086754,-0.08112115412950516,0.0076628802344202995,-0.06766156107187271,-0.04694312438368797,-0.05869537219405174,0.023406347259879112,0.007981178350746632,0.04107406735420227,-0.04909181222319603,-0.013414658606052399,0.10181248188018799,0.08529146015644073,0.06508225947618484,-0.014538782648742199,0.00622795894742012,0.056154120713472366,0.003438375424593687,0.05000196397304535,0.07019487023353577,0.04414522647857666,-0.0655449703335762,0.06271278858184814,-0.07817491143941879,-0.03859282657504082,-0.0036752496380358934,-0.04341689497232437,-0.05105167627334595,0.0050215753726661205,-0.04220674932003021,-0.009792443364858627,0.013475236482918262,0.009737150743603706,-0.01187183428555727,0.060389194637537,0.00014808453852310777,0.029573190957307816,-0.04558343440294266,0.005746848881244659,0.03897545114159584,0.011923221871256828,-0.029688958078622818,0.014111991040408611,0.013147518038749695,0.0943126231431961,-0.01594274863600731,-0.024426057934761047,-0.017002662643790245,0.04413517937064171,0.015028045512735844,-0.028912914916872978,-0.04589292034506798,0.02274968847632408,0.03720175474882126,0.04474577307701111,-0.018350252881646156,-0.053401436656713486,-0.03626082092523575,-0.06609483063220978,0.03705534711480141,-0.11763232946395874,0.04441982880234718,0.029828090220689774,0.06588058918714523,-0.013843175023794174,0.022989436984062195,-0.09974662214517593,-0.0742936059832573,-0.07158758491277695,0.052605677396059036,0.1333046406507492,-0.039729565382003784,-0.09370415657758713,-0.011800950393080711,0.043238066136837006,0.03845535218715668,-0.0731649324297905,2.587328958128348e-34,0.11470633000135422,-0.11244553327560425,-0.045596882700920105,-0.08183278888463974,0.03652699664235115,0.0015503837494179606,-0.05721782520413399,0.014326498843729496,0.055755216628313065,0.05501808226108551,-0.04388340935111046,-0.05595685914158821,0.07978207617998123,-0.018136845901608467,-0.03055831417441368,-0.0459747239947319,-0.005037461873143911,-0.026257935911417007,0.07734442502260208,-0.08296848088502884,-0.04296991229057312,0.07391700148582458,0.015439065173268318,0.05310684069991112,-0.05803442373871803,0.025143761187791824,-0.0640287697315216,-0.04218368977308273,0.03897341340780258,0.032138824462890625,-0.004251517821103334,-0.035911016166210175,-0.06281403452157974,-0.031088870018720627,-0.039390526711940765,0.013240956701338291,0.02915283851325512,-0.059824734926223755,-0.03593960404396057,0.00028646356076933444,0.07455602288246155,-0.008279767818748951,-0.024605417624115944,-0.011766883544623852,-0.0007286001346074045,0.07019924372434616,-0.07057715952396393,-0.010536354966461658,-0.1184210404753685,0.024704616516828537,0.04186646267771721,0.04414023458957672,0.06498157978057861,0.04711049422621727,0.05811779201030731,0.05824010819196701,0.04244379326701164,-0.033334530889987946,-0.08328332006931305,-0.0046018208377063274,0.01836945302784443,-0.017511609941720963,0.07341566681861877,-0.05950820818543434,0.05160125344991684,-0.09582619369029999,0.03987238183617592,0.00030370132299140096,-0.06286327540874481,-0.05065419524908066,-0.0660678967833519,0.0059042563661932945,-0.044692426919937134,-0.04426272213459015,-0.07596857845783234,-0.1068696603178978,0.03897686302661896,-0.02694653533399105,-0.037644125521183014,-0.07845216989517212,0.038704924285411835,-0.007080882787704468,0.03429991751909256,0.04772225767374039,0.00710343336686492,0.032104238867759705,0.07265570759773254,-0.06169890612363815,-0.051203954964876175,0.05523824319243431,0.03379549831151962,-0.04239622503519058,-0.01555619202554226,-0.038276854902505875,-0.03247997909784317,-3.0398102077981962e-33,-0.02423378825187683,-0.00908629223704338,-0.07843560725450516,0.08815352618694305,-0.06437838822603226,0.009086646139621735,-0.060932815074920654,0.07253994047641754,-0.005414536222815514,-0.038086652755737305,-0.06975560635328293,-0.03727766126394272,0.01113913208246231,0.05063497647643089,0.09872304648160934,-0.016091391444206238,0.04180367663502693,-0.022517556324601173,0.00003643918171292171,-0.07236161082983017,-0.00894007459282875,-0.01695920154452324,-0.06071891263127327,-0.03310885652899742,0.07154244929552078,0.04221462085843086,-0.0332421250641346,0.0019116901094093919,-0.04404982924461365,-0.07725181430578232,0.040233466774225235,0.017116470262408257,0.050117772072553635,0.01410690788179636,0.05600481107831001,0.03358811140060425,0.011081857606768608,0.022785907611250877,-0.027392933145165443,-0.09070123732089996,-0.0274345763027668,0.03252921253442764,-0.0010627505835145712,0.05925806611776352,-0.02274226024746895,0.10094066709280014,0.06905031949281693,-0.01752866432070732,-0.008872301317751408,0.007594293914735317,0.035945236682891846,0.010153672657907009,0.039633527398109436,-0.08005699515342712,0.017223495990037918,-0.03804941102862358,0.05552986264228821,-0.1314373016357422,0.04341141879558563,-0.03596824035048485,-0.03282606229186058,-0.0075461892411112785,-0.06296142935752869,0.0552462674677372,-0.013855809345841408,0.041267771273851395,-0.07768705487251282,-0.05309765413403511,0.06403103470802307,-0.01875687949359417,0.018423598259687424,0.08761942386627197,-0.043384600430727005,0.000593547010794282,0.0010967798298224807,0.05172736570239067,-0.049980174750089645,-0.009096547961235046,0.04427837207913399,-0.04301528260111809,0.04078223183751106,0.000514001352712512,0.052412375807762146,0.08695919811725616,-0.05394018441438675,0.054352566599845886,0.02098391018807888,0.06671587377786636,-0.0059795984998345375,-0.005953893531113863,0.017132295295596123,-0.07436465471982956,0.08728500455617905,0.009155300445854664,0.06497029215097427,-2.8742631386080575e-8,-0.018720651045441628,0.040930744260549545,0.016361990943551064,0.07601185142993927,0.1357574164867401,0.05938172712922096,0.041797488927841187,0.006797395646572113,-0.06235751137137413,0.009592831134796143,-0.02324455790221691,-0.03487510606646538,0.04681984707713127,0.02296234853565693,0.025522856041789055,0.06466121971607208,0.039679352194070816,-0.04857736825942993,-0.05850418657064438,0.015114745125174522,-0.07854755967855453,0.0022975027095526457,-0.051822908222675323,-0.05522055923938751,-0.01280368771404028,-0.004378242883831263,-0.11164716631174088,-0.07381004840135574,0.003760795807465911,0.05198633298277855,-0.05083692818880081,0.022732187062501907,-0.02836061269044876,-0.02523493580520153,-0.03657479211688042,0.10085774958133698,-0.00029852185980416834,-0.09162987023591995,0.10918954014778137,-0.09950791299343109,-0.037984948605298996,0.02906685695052147,0.06785546243190765,0.013341380283236504,0.03076065704226494,-0.029173394665122032,0.0054748463444411755,0.012844057753682137,0.04074401408433914,-0.0010084176901727915,-0.0348898284137249,0.0657459944486618,-0.003118083579465747,0.11414504051208496,0.01607373170554638,-0.0509648397564888,0.02230570651590824,-0.021678835153579712,-0.03781972452998161,0.03908924758434296,0.024406718090176582,0.04206186905503273,-0.04372749105095863,0.06116336211562157]},{"text":"Meanwhile the animals had chased Jones and his men out on to the road and slammed the five-barred gate behind them.","book":"Animal Farm","chapter":27,"embedding":[0.06217248737812042,0.07772190123796463,0.026019548997282982,0.12493278831243515,0.03262048959732056,-0.05936573073267937,-0.020822614431381226,-0.060359563678503036,-0.042319271713495255,0.026645245030522346,-0.012468903325498104,0.026223544031381607,-0.023425409570336342,-0.012110545299947262,-0.018762236461043358,0.022062310948967934,-0.03918341547250748,0.007923753000795841,-0.04381131753325462,-0.08445420116186142,0.0025985895190387964,0.005481689237058163,0.013545419089496136,0.0107034370303154,-0.1486658751964569,-0.02318647690117359,-0.057029277086257935,0.06871899962425232,0.011779294349253178,-0.014078289270401001,-0.05898449197411537,-0.034605156630277634,-0.005039613228291273,-0.019284192472696304,-0.09684331715106964,-0.03393644839525223,0.06537989526987076,-0.031776607036590576,0.12763375043869019,-0.030913596972823143,0.032538436353206635,0.01406651921570301,0.04808097705245018,-0.027987608686089516,-0.008607225492596626,-0.02511175163090229,-0.10280802845954895,-0.05072230100631714,0.12075571715831757,-0.07803293317556381,-0.007993998005986214,0.00031843778560869396,-0.003310853149741888,-0.010114151984453201,-0.027222085744142532,-0.05589689314365387,-0.01723945327103138,-0.06596749275922775,0.02459479682147503,-0.021201379597187042,0.08281244337558746,-0.020340077579021454,0.03994832560420036,0.08710045367479324,-0.023105701431632042,-0.03454567492008209,-0.047314636409282684,-0.04873024672269821,0.07110587507486343,0.09586265683174133,0.05107344686985016,-0.053806036710739136,-0.004677896853536367,-0.15173323452472687,0.01773502118885517,0.041580479592084885,-0.02743716537952423,-0.02532103843986988,0.0123337022960186,-0.13180120289325714,0.007169796619564295,-0.03562061861157417,-0.05969249829649925,0.062414560467004776,0.08605002611875534,0.018516741693019867,-0.004034866578876972,-0.024542244151234627,-0.02194543555378914,0.031708408147096634,0.0016011781990528107,-0.1675928235054016,-0.0058298492804169655,0.07782749831676483,0.014182349666953087,-0.09942805022001266,0.00470748171210289,-0.049817219376564026,-0.006300703622400761,0.02170615829527378,-0.007622712291777134,-0.007414403837174177,-0.010721800848841667,-0.04460165277123451,0.1210993081331253,0.0621454082429409,-0.006195437163114548,0.07545506954193115,-0.014147522859275341,0.016421472653746605,-0.018851937726140022,0.0823829174041748,0.043503642082214355,0.093726247549057,0.00901786144822836,-0.003510556183755398,-0.07352547347545624,-0.023433180525898933,-0.055424369871616364,0.0027314643375575542,0.021733269095420837,0.023414134979248047,-0.03480657562613487,-0.04494856670498848,-0.01836414635181427,-0.013424416072666645,0.0033511656802147627,-3.2042719693828116e-33,0.013456164859235287,-0.06882910430431366,-0.05174670368432999,-0.05602419003844261,0.11437737196683884,0.02521914802491665,-0.08097372204065323,0.02082228474318981,0.011750955134630203,0.07120233029127121,-0.05564483627676964,-0.0764830932021141,0.006191668100655079,-0.0639600157737732,0.019091535359621048,-0.01595521904528141,0.006059744395315647,-0.03789883852005005,0.021524526178836823,-0.04105841740965843,-0.0025304562877863646,0.0662100613117218,-0.08422943204641342,0.0027963004540652037,0.05361620709300041,0.04214603081345558,-0.09211932867765427,-0.00857842992991209,0.010943218134343624,0.04661194607615471,-0.10117935389280319,-0.04623395949602127,0.043223123997449875,0.08363710343837738,0.005196515470743179,0.04070001095533371,0.00832041259855032,-0.09202002733945847,-0.02727227285504341,0.027900613844394684,-0.001892466563731432,-0.012006162665784359,-0.022520264610648155,-0.013553045690059662,-0.1037239357829094,0.0801135003566742,-0.07041648030281067,0.025257278233766556,-0.005180785898119211,-0.0045449151657521725,-0.0642266720533371,0.03409244120121002,0.050479233264923096,-0.03469012677669525,-0.03899200260639191,-0.02365921437740326,0.043168555945158005,0.02042178250849247,-0.019463881850242615,0.06152672320604324,0.041078679263591766,0.02507983334362507,0.03522589057683945,0.04907933995127678,0.012817630544304848,-0.07823774963617325,-0.031453389674425125,0.02736581489443779,-0.04558907449245453,0.051209744065999985,-0.04391806945204735,0.02897636964917183,-0.02574228122830391,-0.03714894875884056,0.006268083583563566,-0.04086858779191971,0.018443794921040535,-0.01349991001188755,-0.008035955019295216,-0.027378298342227936,0.09733625501394272,0.029313428327441216,-0.03689572215080261,-0.0014531470369547606,0.07652231305837631,0.11416574567556381,0.02818233333528042,-0.08099621534347534,0.03403882682323456,-0.0469098798930645,-0.02735264226794243,0.024869222193956375,0.005178928375244141,-0.04091479256749153,0.039519935846328735,-2.243115513615033e-34,-0.03752627596259117,0.05039110779762268,0.034756630659103394,-0.030343029648065567,-0.010146751999855042,0.014795235358178616,-0.03594862297177315,-0.026953119784593582,0.032590948045253754,-0.03790707141160965,-0.08887602388858795,0.06125412508845329,0.02458389289677143,0.015521942637860775,0.06747213751077652,-0.09754776954650879,0.02722983993589878,-0.04643193259835243,0.03540904447436333,0.049445927143096924,0.005254284478724003,-0.07909976691007614,-0.023135947063565254,-0.056650906801223755,0.05271058529615402,0.08054496347904205,0.016510335728526115,0.016729842871427536,-0.025312675163149834,0.01070395577698946,0.016061224043369293,-0.07300550490617752,0.012682593427598476,0.037438709288835526,0.011386692523956299,0.03759344667196274,-0.012738006189465523,0.0660955011844635,-0.05464435741305351,-0.08811017870903015,0.005068487953394651,0.06538937985897064,-0.016547193750739098,0.030940892174839973,-0.011358516290783882,0.09766856580972672,0.014910906553268433,0.05510636046528816,-0.08224054425954819,0.046837836503982544,0.02911723032593727,0.033434439450502396,-0.011820307932794094,0.060920316725969315,-0.033645499497652054,-0.0015124265337362885,0.09023847430944443,0.0034743251744657755,0.04275631159543991,0.01171756163239479,-0.1273554414510727,0.001432590652257204,0.033510129898786545,0.027090344578027725,-0.02953336387872696,-0.0019514340674504638,-0.009092424996197224,-0.012382539920508862,-0.012603920884430408,-0.11783704906702042,-0.05666014924645424,0.06392501294612885,0.0017848947318270802,0.021257534623146057,-0.011736162006855011,0.10007884353399277,-0.05457445606589317,-0.007093175780028105,0.014602864161133766,0.05011887475848198,0.03318055719137192,-0.07393570989370346,0.013421261683106422,0.04436296597123146,-0.026716450229287148,-0.004756057634949684,-0.009522194974124432,0.04734835773706436,0.06238145753741264,-0.026606805622577667,0.10277220606803894,-0.0036707946565002203,0.03248504921793938,0.0008607375202700496,-0.052676524966955185,-2.3002840521257895e-8,-0.04128584638237953,0.004013030789792538,-0.023220142349600792,0.006912992335855961,0.0847347304224968,0.05058310925960541,0.0016402093460783362,-0.054156649857759476,-0.022496012970805168,0.03729178011417389,0.03338070213794708,0.05803315341472626,-0.03530485928058624,0.10028835386037827,-0.11690793186426163,0.005531137343496084,-0.050211820751428604,-0.10596262663602829,0.041327103972435,0.08328748494386673,-0.096475750207901,-0.0830196738243103,-0.057319726794958115,0.04814377799630165,0.047872234135866165,0.03766312077641487,-0.07674632221460342,-0.06601114571094513,0.025143766775727272,0.023211726918816566,-0.022154536098241806,0.006557457614690065,-0.0677228569984436,0.06321901828050613,0.02190830558538437,0.06937789916992188,-0.012707125395536423,0.004599020350724459,0.08088938146829605,0.011310073547065258,0.03009091131389141,0.030667509883642197,0.10677340626716614,0.02174380235373974,0.039320413023233414,0.011299576610326767,-0.03312229365110397,0.07609487324953079,0.01801494136452675,-0.06659334152936935,-0.017993010580539703,-0.017736874520778656,0.02059858851134777,0.009898584336042404,0.0388014130294323,-0.08323653042316437,-0.023866282775998116,-0.06970101594924927,-0.035725485533475876,0.03429492935538292,-0.01597479358315468,0.00974942371249199,-0.011479116976261139,0.004519512876868248]},{"text":"Jones had been used to castrate the pigs and lambs, were all flung down the well.","book":"Animal Farm","chapter":27,"embedding":[0.044166237115859985,0.053150031715631485,0.015251649543642998,0.08015333116054535,-0.058484096080064774,-0.03951962664723396,-0.02967052161693573,0.00814854633063078,-0.10834042727947235,0.016438955441117287,-0.03317318484187126,0.019444428384304047,-0.003579164855182171,0.041200846433639526,-0.055836163461208344,-0.0006084204069338739,0.06284340471029282,0.019857894629240036,-0.034030474722385406,-0.0016219720710068941,-0.06509485095739365,0.024339783936738968,-0.021560903638601303,-0.004278955515474081,-0.030308526009321213,-0.0026007527485489845,-0.06363397091627121,0.06523671746253967,0.04197240620851517,-0.025763219222426414,-0.020445624366402626,0.012829001061618328,-0.06215890496969223,-0.03634384274482727,-0.06714951246976852,0.006292114034295082,0.06519915163516998,0.01557676587253809,0.06278223544359207,-0.0016853668494150043,0.07487060874700546,-0.03111870214343071,0.0592375211417675,-0.032321956008672714,-0.050822511315345764,0.03525238484144211,-0.021350568160414696,-0.031483035534620285,0.024996701627969742,-0.06663094460964203,-0.0316399484872818,0.026128215715289116,0.012656095437705517,-0.007385828997939825,-0.015898462384939194,-0.056656382977962494,-0.014578194357454777,-0.08466438204050064,-0.021822351962327957,-0.038328319787979126,-0.027088038623332977,0.052166204899549484,0.012581197544932365,0.0831156000494957,-0.018352311104536057,-0.0738842785358429,0.0331643782556057,-0.017599960789084435,-0.03641626238822937,0.026491211727261543,0.009673244319856167,-0.06001438573002815,0.01693190261721611,-0.10793507844209671,0.012952781282365322,0.03574560210108757,0.07549914717674255,-0.05084703862667084,0.04436570033431053,-0.10323137044906616,-0.007964329794049263,-0.01592675969004631,-0.040513940155506134,-0.028041671961545944,-0.04617970064282417,0.03343977406620979,0.0008035215432755649,-0.06543684005737305,-0.005825588013976812,0.008153453469276428,0.011668475344777107,-0.12021432816982269,-0.016407810151576996,0.0840681865811348,0.07037139683961868,-0.0707019716501236,0.001444539986550808,0.0156923346221447,-0.02967916987836361,0.03361701965332031,-0.10097010433673859,-0.02946767956018448,-0.001798961078748107,-0.05694659426808357,0.0552370660007,-0.042130112648010254,-0.04042116925120354,0.07117004692554474,-0.0019491818966343999,-0.0019792269449681044,-0.08320913463830948,0.06968100368976593,0.03401162102818489,0.11030951142311096,-0.01152403187006712,0.023209044709801674,-0.04072799161076546,-0.08391520380973816,-0.13886430859565735,0.011979151517152786,0.09386875480413437,0.055927522480487823,-0.04400571435689926,0.08177509903907776,-0.03641960769891739,0.020729748532176018,0.05880216509103775,-2.8653690501880765e-33,0.0830945372581482,-0.07369255274534225,-0.013680324889719486,-0.034144919365644455,0.040336720645427704,0.03623725101351738,-0.09152785688638687,0.0448145754635334,0.0742046982049942,0.011591038666665554,-0.015719542279839516,-0.031607165932655334,-0.021131614223122597,0.002605247311294079,-0.05635165795683861,-0.0213993601500988,0.02832786738872528,-0.022977951914072037,0.01906617358326912,-0.06618506461381912,-0.04007750004529953,0.06945139169692993,-0.08915325999259949,0.05102960392832756,0.027658728882670403,0.06159593164920807,-0.015033473260700703,0.03040464222431183,-0.01916477456688881,0.03141091763973236,0.028247931972146034,-0.02155677042901516,-0.04591665044426918,0.035017624497413635,0.05703534930944443,0.048580773174762726,-0.010379625484347343,-0.055312786251306534,-0.06654736399650574,-0.06278716772794724,0.012760685756802559,0.0645974650979042,-0.0073101031593978405,-0.024985164403915405,-0.10700742155313492,0.003898335387930274,-0.11682750284671783,0.03048371896147728,-0.060927554965019226,-0.02580108307301998,0.033131204545497894,0.03171307221055031,0.04633937403559685,0.05083771422505379,0.007385204546153545,-0.01918061263859272,-0.006236259825527668,0.03794893994927406,-0.023360291495919228,0.008966810069978237,0.014682400971651077,0.05416402965784073,-0.06440158188343048,0.0330360047519207,-0.021105840802192688,-0.06321161240339279,0.03856617212295532,0.01622694730758667,-0.07803718000650406,0.04694143682718277,-0.07082650810480118,-0.017556268721818924,-0.029328972101211548,-0.0709119364619255,-0.0781034529209137,-0.041340701282024384,0.08714314550161362,-0.014796997420489788,0.039849404245615005,-0.047693267464637756,0.08145908266305923,0.08406228572130203,-0.03505580872297287,-0.04734114184975624,0.005874889902770519,0.06453540176153183,0.010611454956233501,-0.09431859105825424,0.03916703537106514,-0.02967824973165989,-0.05374286696314812,0.014131663367152214,-0.029339293017983437,-0.13378596305847168,0.024030864238739014,-1.5929264284110384e-35,-0.07050257921218872,0.04327725991606712,-0.04004678875207901,0.11766289174556732,0.01985185779631138,-0.05370698124170303,-0.034789714962244034,-0.03346148505806923,0.03696663677692413,-0.0686287060379982,-0.03791037201881409,-0.07069212943315506,-0.02239830605685711,-0.009072345681488514,0.05355597659945488,-0.058286089450120926,-0.0227589663118124,-0.04181019961833954,0.05726061761379242,0.05744533613324165,-0.020907122641801834,0.01939239725470543,-0.040632154792547226,-0.034876421093940735,0.06106049567461014,0.020783700048923492,-0.11189485341310501,0.0057793972082436085,-0.0846320316195488,-0.017745815217494965,-0.029934430494904518,-0.09354972094297409,-0.01811791956424713,0.015661947429180145,0.0018270130967721343,0.061497803777456284,0.05497734993696213,0.12566189467906952,-0.040580376982688904,-0.10529644787311554,-0.002190538216382265,0.02346373349428177,-0.06015060469508171,0.12526392936706543,-0.016166141256690025,0.12409622967243195,-0.00829737912863493,0.007887340150773525,0.05891932547092438,0.09825040400028229,-0.03488383814692497,-0.030853474512696266,0.0008922661654651165,0.017337756231427193,0.017877090722322464,0.01251906342804432,0.12280315160751343,-0.050720348954200745,0.009171620942652225,-0.015022524632513523,-0.09121992439031601,0.02167130447924137,-0.020384086295962334,-0.019868889823555946,0.019613048061728477,0.03725901246070862,-0.031227270141243935,-0.010173829272389412,-0.010156124830245972,-0.053029876202344894,-0.03428402543067932,0.027911212295293808,0.02846449241042137,-0.033309053629636765,-0.03480643033981323,0.0531257800757885,-0.06110067293047905,-0.018603365868330002,-0.049541834741830826,0.02460196241736412,0.015664314851164818,-0.08084823936223984,0.07532503455877304,0.09213965386152267,0.027865761891007423,0.03814760223031044,0.03146250545978546,0.09605307132005692,0.022179340943694115,-0.01489066518843174,0.023852424696087837,-0.08709599822759628,0.10690201818943024,-0.009644310921430588,0.014426766894757748,-2.3224702161428468e-8,-0.0067489976063370705,0.006672619841992855,-0.02237054333090782,0.04474033787846565,0.00586354173719883,0.039189841598272324,0.02820328250527382,0.03460005670785904,0.031206006184220314,0.060018762946128845,-0.032196540385484695,0.10873729735612869,0.01770656555891037,0.0009936835849657655,0.013950969092547894,-0.029167043045163155,-0.04845419153571129,-0.0465686097741127,-0.024371521547436714,0.09044230729341507,-0.03568593040108681,-0.041365284472703934,0.002452895510941744,0.02047484554350376,0.06576970964670181,0.012702422216534615,-0.07834786921739578,-0.09456071257591248,0.007245054002851248,0.04306093975901604,0.0220306608825922,0.01785033568739891,0.00994118396192789,0.014163457788527012,0.03832797333598137,0.05875503644347191,-0.042020924389362335,0.05243469402194023,0.08013652265071869,0.030938638374209404,-0.0014745646622031927,0.122536301612854,0.01835751347243786,0.03174331411719322,0.09385725110769272,0.03998183831572533,-0.04852359741926193,0.09345629811286926,0.023132814094424248,-0.06458970904350281,-0.009634165093302727,0.08962640166282654,0.0703091248869896,0.04357616975903511,0.062426596879959106,-0.061628565192222595,0.013064875267446041,-0.06618031114339828,0.020627053454518318,-0.017825614660978317,0.001642554416321218,0.017980091273784637,-0.00747817475348711,0.012049327604472637]},{"text":"In a very little while the animals had destroyed everything that reminded them of Mr.","book":"Animal Farm","chapter":27,"embedding":[0.011402444913983345,0.09305319935083389,0.07899926602840424,0.09011539071798325,-0.002292138524353504,-0.0064670005813241005,-0.004647854715585709,-0.008734475821256638,-0.0151752308011055,0.013333342038094997,-0.014118957333266735,0.054594509303569794,0.012784709222614765,0.050345588475465775,-0.06570544093847275,0.05717413127422333,-0.0033842548727989197,-0.009510846808552742,0.015218482352793217,0.04261455684900284,-0.0071581401862204075,0.03074570931494236,0.029575055465102196,0.013732833787798882,-0.05296926945447922,0.009695726446807384,-0.03881053254008293,0.05177229642868042,0.017929891124367714,0.009228766895830631,-0.025617962703108788,0.027788452804088593,0.07980421185493469,-0.05811028927564621,-0.021471956744790077,0.0607914961874485,0.04765255004167557,0.030393820255994797,0.05366392433643341,-0.03591801971197128,-0.016925649717450142,0.04052901640534401,0.014117647893726826,-0.02335004135966301,-0.05251065641641617,-0.047666292637586594,-0.0479036346077919,-0.12563110888004303,0.06165159121155739,-0.0325542613863945,-0.012252588756382465,0.0074988664127886295,-0.044877707958221436,-0.07521180808544159,-0.04911057651042938,-0.09276015311479568,-0.00949712935835123,-0.02384510263800621,0.011408290825784206,-0.04701755568385124,-0.07197849452495575,0.04531548544764519,0.05618511140346527,0.030056940391659737,0.04239612817764282,-0.05612357333302498,-0.05945968255400658,-0.022002404555678368,0.016610583290457726,0.05164581537246704,-0.01099174004048109,-0.04713457450270653,0.04164840281009674,-0.1438927948474884,-0.100871741771698,0.0355009064078331,-0.03777797892689705,-0.020899957045912743,0.030393753200769424,-0.011569091118872166,-0.004369793925434351,-0.04937782883644104,-0.06700610369443893,-0.00404710415750742,0.015352321788668633,0.04625153914093971,0.06744683533906937,-0.13323649764060974,-0.0889156237244606,0.03328730911016464,-0.013874499127268791,-0.0858016088604927,0.013300810940563679,0.08702792972326279,0.04734174534678459,-0.04008449241518974,-0.05467730760574341,0.027432356029748917,0.010282790288329124,0.035589538514614105,-0.008659944869577885,0.02668078802525997,-0.051998622715473175,-0.044181209057569504,0.1125229001045227,-0.011384671553969383,-0.050347376614809036,-0.0238207895308733,-0.014155250042676926,0.006774891633540392,-0.06563957035541534,0.0073414877988398075,0.06022898852825165,0.07026345282793045,0.0212559774518013,-0.05515635758638382,0.0038698751013725996,-0.062106821686029434,-0.08987202495336533,0.05016667768359184,0.08983273804187775,0.014980936422944069,-0.03792688623070717,0.002011148491874337,0.02918177843093872,0.03451584652066231,0.05513446405529976,-3.7345815520769013e-33,0.016504336148500443,-0.05990424379706383,-0.005232139024883509,-0.03442855551838875,0.12590466439723969,0.042979467660188675,-0.038004320114851,0.0009187476243823767,0.08828114718198776,-0.03240225091576576,-0.010917400009930134,-0.019134562462568283,-0.0345061719417572,-0.09440778195858002,-0.1080290675163269,-0.02129741571843624,0.00496851047500968,0.003464821260422468,0.07096211612224579,-0.057094670832157135,-0.10003490746021271,0.1114458292722702,-0.005897128488868475,-0.026324791833758354,0.01301468163728714,0.04810459911823273,0.046987198293209076,-0.002945923013612628,-0.013470240868628025,0.02156776562333107,0.012241276912391186,0.02125372365117073,-0.06548295170068741,0.04983668401837349,-0.04318005219101906,0.01217260304838419,-0.014368770644068718,-0.11816426366567612,-0.010807151906192303,0.08221246302127838,0.04905107617378235,0.025746779516339302,0.021515609696507454,0.01034887321293354,-0.05529771000146866,0.016232093796133995,0.06348205357789993,0.10022607445716858,-0.04218563437461853,-0.014333479106426239,-0.014913181774318218,-0.0030851750634610653,-0.021022386848926544,-0.032526277005672455,-0.01383221335709095,0.04434250667691231,0.060184843838214874,-0.009451533667743206,0.011036700569093227,0.028887012973427773,0.0650838240981102,0.010314103215932846,0.10233817994594574,-0.046457644551992416,0.06709024310112,-0.11797479540109634,0.01912759430706501,-0.005721849389374256,-0.08062246441841125,0.054160237312316895,-0.05261612311005592,0.008716097101569176,-0.016454748809337616,-0.15133048593997955,-0.002145010745152831,-0.03620441257953644,0.08505577594041824,-0.021486880257725716,-0.10289197415113449,-0.018846644088625908,0.015992335975170135,0.05171574279665947,0.002306793350726366,0.023563945665955544,0.01900019682943821,0.0020224303007125854,0.12374581396579742,-0.054765574634075165,-0.007786209229379892,-0.02349032461643219,0.025746727362275124,-0.02087721973657608,0.021712590008974075,-0.08822092413902283,-0.02156316488981247,1.6571153248473027e-33,-0.08575331419706345,0.010161773301661015,0.051933594048023224,0.0444098636507988,-0.07006104290485382,-0.05821411311626434,-0.03588404506444931,0.0757201761007309,-0.06904598325490952,-0.0336698554456234,-0.055049508810043335,-0.014225935563445091,0.056096237152814865,-0.05532584711909294,0.007873992435634136,-0.03355632349848747,0.046802107244729996,-0.021079247817397118,0.05783673748373985,-0.00357623933814466,-0.006806420627981424,0.005641268566250801,-0.03072350099682808,-0.013539385981857777,0.02320992201566696,0.08595738559961319,0.036113087087869644,-0.03350592777132988,-0.01563286781311035,-0.12307046353816986,0.0422326996922493,-0.00631562527269125,-0.0611313059926033,-0.01931879110634327,0.013783841393887997,0.05423104390501976,0.033181071281433105,0.013069070875644684,-0.005253328010439873,-0.02642955258488655,0.03714790195226669,-0.019950442016124725,-0.07470303028821945,0.041692521423101425,0.009525933302938938,0.002585634123533964,0.0021618253085762262,0.046033941209316254,0.03793366998434067,0.04994938522577286,-0.026987696066498756,-0.01067446544766426,-0.04631052911281586,-0.10286708921194077,-0.005853860639035702,-0.035037100315093994,0.09513934701681137,-0.07876455783843994,0.0916789174079895,-0.013112904503941536,-0.09400695562362671,-0.01160743460059166,-0.021828731521964073,0.04593764990568161,-0.07587803155183792,0.08139510452747345,-0.04029465466737747,0.022767432034015656,0.0073700398206710815,-0.023101985454559326,0.06461971998214722,0.07116255909204483,-0.04594305530190468,-0.044674959033727646,0.03102029487490654,0.08397890627384186,-0.05890711396932602,-0.004010205622762442,0.04231017827987671,-0.033497221767902374,-0.02649727649986744,-0.04620165005326271,-0.005730802193284035,0.07095396518707275,-0.00334743014536798,-0.003157834056764841,-0.0765748918056488,0.07446490973234177,0.037951573729515076,0.0290340855717659,0.009395607747137547,0.006894988007843494,0.06761623919010162,-0.01352473720908165,0.00026417989283800125,-2.1922398119045283e-8,-0.023623904213309288,-0.013436263427138329,0.01167882140725851,-0.0075054047629237175,0.10389270633459091,0.0009015786927193403,-0.005264264531433582,0.06523309648036957,-0.03835802525281906,0.15518589317798615,-0.03483772650361061,0.045754335820674896,0.039091143757104874,0.05934929475188255,0.056565895676612854,0.06035597249865532,0.08209887146949768,-0.14230117201805115,-0.012570004910230637,0.052699118852615356,-0.07533258199691772,0.017564594745635986,-0.032896801829338074,-0.0710340291261673,0.021359000355005264,-0.006167063023895025,-0.04184192791581154,-0.03688696399331093,-0.028387365862727165,0.04767163097858429,0.0410124696791172,-0.0033104915637522936,-0.06232992932200432,-0.015239538624882698,-0.0281696617603302,0.0038966506253927946,0.0010954950703307986,-0.019313298165798187,0.07575681805610657,-0.06004658341407776,-0.034244876354932785,0.08041976392269135,0.0807192251086235,0.043637845665216446,0.051548656076192856,-0.006315344013273716,-0.004405522719025612,0.008055093698203564,-0.04001656547188759,-0.0457955002784729,-0.02285529114305973,0.0787728801369667,-0.0017217056592926383,0.019444486126303673,0.061644092202186584,-0.09786158800125122,0.04380883276462555,-0.027212994173169136,-0.06351564824581146,-0.023135047405958176,0.057482846081256866,0.05894044414162636,-0.027199946343898773,0.022556986659765244]},{"text":"The animals rushed to the top of it and gazed round them in the clear morning light.","book":"Animal Farm","chapter":27,"embedding":[0.10567173361778259,0.12720350921154022,0.058916542679071426,0.10798678547143936,0.08432356268167496,-0.037036411464214325,0.011470255441963673,0.010367020964622498,0.044117167592048645,0.03369791433215141,-0.013375840149819851,-0.012690868228673935,-0.01567363366484642,-0.009130370803177357,-0.013182396069169044,-0.007197703700512648,-0.003694528480991721,-0.016965579241514206,0.01977277174592018,0.01195493433624506,-0.0056448522955179214,-0.02158426120877266,0.049823615700006485,0.07485093921422958,-0.05685955286026001,0.0473899208009243,-0.01255111675709486,-0.053607337176799774,0.01319221779704094,-0.041328705847263336,-0.03308723494410515,0.036415256559848785,-0.0031716322991997004,0.0266612246632576,-0.019133323803544044,0.014112304896116257,0.09656963497400284,-0.052915990352630615,0.08900346606969833,0.04979502037167549,0.03378988057374954,-0.000022523248844663613,-0.02208607643842697,0.036233190447092056,-0.0745328813791275,0.009191115386784077,-0.0067209466360509396,0.009900807403028011,0.09226126223802567,-0.04646753892302513,-0.06155427545309067,-0.08975142985582352,-0.07439176738262177,-0.06911977380514145,-0.018082719296216965,0.0819615051150322,-0.03862815350294113,-0.11876672506332397,0.10839074105024338,-0.013225358910858631,-0.022525548934936523,0.010241677053272724,0.07698564976453781,0.04840262606739998,0.03560971841216087,-0.026270398870110512,-0.0704299733042717,-0.06915625929832458,0.0536498986184597,-0.009637393988668919,0.0371382012963295,0.018865596503019333,0.056194864213466644,-0.1196548119187355,-0.0990409329533577,-0.03159892559051514,0.026113098487257957,-0.014577331952750683,0.033260561525821686,-0.06019505113363266,0.0276718121021986,-0.05893399566411972,-0.047363948076963425,0.05291083827614784,0.042484547942876816,0.0669485554099083,0.007879931479692459,0.013911456800997257,-0.06362594664096832,-0.0034616554621607065,-0.004298363346606493,-0.05683087930083275,-0.11252840608358383,-0.017801985144615173,0.08936797082424164,-0.06630238145589828,-0.0147438058629632,-0.05306531861424446,0.06792061030864716,0.024996958673000336,0.08171910047531128,-0.04519147053360939,-0.00139113690238446,0.007332836277782917,0.04912501573562622,-0.028324823826551437,-0.03738757595419884,0.09280237555503845,-0.0006711220485158265,0.014525936916470528,-0.03652927652001381,-0.06632590293884277,0.10651172697544098,0.0630752220749855,0.009157290682196617,0.04387592524290085,-0.06984993815422058,-0.03258773311972618,-0.032683681696653366,0.007642663549631834,0.0953541025519371,0.011136827059090137,0.01733565703034401,-0.08435750007629395,0.05252402648329735,0.07251352816820145,0.07119818031787872,-4.0378910533417145e-33,0.05759202316403389,-0.01833178661763668,-0.07220013439655304,-0.060111988335847855,0.0606362447142601,-0.04141012951731682,0.030828509479761124,0.029722126200795174,-0.054803553968667984,-0.011057117953896523,-0.023044222965836525,0.011334465816617012,-0.04233672842383385,-0.007429213263094425,-0.03279166668653488,-0.13751260936260223,0.050300173461437225,0.04027024284005165,-0.03622173145413399,0.0022236548829823732,-0.08663228154182434,0.03146648779511452,-0.0152098648250103,-0.027589451521635056,-0.024080220609903336,0.026804614812135696,-0.08285792171955109,-0.022670798003673553,-0.02424805983901024,0.035728853195905685,0.07073156535625458,-0.02140449360013008,-0.021970802918076515,0.07749564200639725,-0.03682931885123253,-0.017787599936127663,0.04526452720165253,-0.08099043369293213,-0.023179948329925537,-0.04202847182750702,-0.00813609454780817,0.05918185040354729,0.042463935911655426,-0.042620666325092316,-0.07817578315734863,0.11222651600837708,-0.11677634716033936,0.07999756932258606,-0.012938893400132656,0.02974638156592846,0.03841845691204071,0.029791083186864853,-0.03691844269633293,-0.06891364604234695,-0.019612960517406464,0.0849384069442749,0.022285370156168938,0.00011171305231982842,-0.04805658385157585,0.01813153177499771,0.027023589238524437,-0.038704708218574524,-0.013965630903840065,-0.06980715692043304,0.10670206695795059,-0.089635469019413,-0.03357968106865883,0.045843612402677536,0.0018184803193435073,-0.03452540561556816,-0.011629425920546055,-0.028820093721151352,0.0022381492890417576,-0.03441523388028145,0.008236280642449856,0.02031569369137287,0.06304653733968735,0.016452932730317116,-0.010740670375525951,-0.05144508183002472,0.10852508246898651,0.03545835614204407,-0.004019901622086763,-0.038117244839668274,0.026162121444940567,0.0425080768764019,0.03648786246776581,0.017637865617871284,-0.06462682038545609,0.0009734916966408491,0.009573367424309254,0.030156956985592842,0.05836133658885956,-0.06336348503828049,-0.06113920360803604,2.9379747444635613e-33,0.04430634528398514,0.01857556402683258,-0.10278593748807907,0.053379133343696594,-0.027276955544948578,-0.007735596504062414,-0.021427100524306297,-0.02625184878706932,-0.028177473694086075,0.06506412476301193,-0.005475700832903385,-0.007006268482655287,-0.02388780750334263,-0.03786638379096985,0.04290110245347023,-0.12270515412092209,0.0975397452712059,0.0189974345266819,0.013109064660966396,-0.04400528594851494,-0.0674469918012619,-0.08159690350294113,-0.007219524122774601,-0.0944150760769844,0.08477307856082916,0.1284034103155136,0.0364181250333786,-0.018826644867658615,-0.03812793269753456,-0.09405756741762161,0.002631771145388484,-0.039019521325826645,0.007495081517845392,0.03077040985226631,0.033991359174251556,0.07523641735315323,0.012104902416467667,-0.06469996273517609,-0.0008717416785657406,-0.04429607093334198,0.033840082585811615,-0.019679153338074684,-0.027857139706611633,-0.0165922399610281,-0.05180048570036888,0.022859008982777596,-0.024507466703653336,0.10973254591226578,-0.06414153426885605,0.017063472419977188,-0.041841961443424225,0.014649839140474796,0.04019254073500633,-0.0006294449558481574,-0.04745640605688095,0.0031293691135942936,0.029567670077085495,-0.027871526777744293,0.07110805809497833,-0.03682636842131615,-0.02554977498948574,0.018485376611351967,0.03606181591749191,-0.02494576945900917,-0.03534562140703201,-0.053271662443876266,-0.03120817057788372,0.010264500044286251,0.04364155977964401,-0.06353935599327087,0.06579328328371048,0.016759123653173447,-0.005353417247533798,0.04538723826408386,0.03908955305814743,0.057211246341466904,0.014672519639134407,0.018550369888544083,0.0567304827272892,-0.012765936553478241,-0.04254881665110588,-0.0498812235891819,-0.014715366065502167,0.0043931989930570126,-0.00510481046512723,-0.060563262552022934,0.00939218606799841,0.01924983784556389,0.006441846955567598,0.013054744340479374,0.028819605708122253,-0.0074209957383573055,0.07225148379802704,0.03269346430897713,0.027639804407954216,-1.937088001113807e-8,-0.07028990238904953,-0.04675181210041046,-0.019669760018587112,0.019496481865644455,0.13415105640888214,-0.03154109790921211,0.030227486044168472,0.07924117892980576,-0.05926064774394035,-0.012634938582777977,-0.0011120002018287778,0.03122180514037609,0.010662396438419819,0.04939751327037811,0.007119069341570139,0.06488852947950363,0.0022148124407976866,-0.08475357294082642,-0.008304145187139511,0.042366351932287216,-0.09819523990154266,0.015218927524983883,-0.05989668518304825,-0.08388175815343857,0.030226407572627068,0.04342995211482048,-0.09491317719221115,0.015804460272192955,0.032798632979393005,0.07693737000226974,0.0013877121964469552,0.044875241816043854,-0.016599034890532494,-0.07725164294242859,-0.04173735901713371,0.01640024036169052,-0.032579563558101654,0.0048612747341394424,0.07221583276987076,-0.01784852147102356,0.011732417158782482,0.0510999895632267,0.03889588266611099,-0.022086357697844505,0.03229713812470436,0.016821181401610374,0.028752440586686134,-0.02165929786860943,-0.09176185727119446,-0.009065726771950722,-0.11744780838489532,-0.012004985474050045,0.03488339111208916,0.04216798394918442,-0.08351802825927734,-0.09120170772075653,0.04827595129609108,-0.05557500198483467,-0.03949464485049248,0.031425703316926956,-0.008057791739702225,0.06259159743785858,0.009699943475425243,0.08924119919538498]},{"text":"It was as though they had never seen these things before, and even now they could hardly believe that it was all their own.","book":"Animal Farm","chapter":28,"embedding":[0.013053891249001026,0.019962618127465248,0.039251431822776794,0.03736301511526108,0.02085503190755844,-0.07196769118309021,-0.06051977723836899,0.0010738628916442394,0.06916332244873047,-0.01952717825770378,0.03626307472586632,0.07063296437263489,0.06331708282232285,-0.05093993991613388,-0.1054626852273941,-0.030320949852466583,-0.016399715095758438,-0.07547680288553238,-0.018843481317162514,0.02705596201121807,0.003005075268447399,-0.019623547792434692,0.03272800147533417,-0.005745889153331518,0.06757581979036331,0.07932106405496597,-0.0659145787358284,0.012102634645998478,0.02953336574137211,0.022881191223859787,0.03190283477306366,0.027998439967632294,0.004782093223184347,0.040342774242162704,0.03205450251698494,-0.0034941500052809715,0.06099485605955124,0.03398369252681732,0.021567802876234055,-0.07352029532194138,-0.01750798150897026,-0.03431903198361397,0.012190206907689571,-0.021456938236951828,-0.04675685241818428,0.0318121574819088,0.03997378051280975,-0.006864197552204132,0.05117587745189667,-0.008000069297850132,0.000650135800242424,-0.041959844529628754,-0.04979415237903595,-0.1261688768863678,-0.04176231846213341,-0.0638045221567154,-0.052634626626968384,-0.026245776563882828,0.057643938809633255,-0.0034035942517220974,-0.008766458369791508,0.01420874148607254,0.033037617802619934,0.022741638123989105,-0.04767598584294319,0.07652542740106583,0.014537028037011623,0.01721675880253315,0.04061494767665863,0.027920333668589592,-0.039379969239234924,0.07865139096975327,0.051634084433317184,0.03358614817261696,-0.050148963928222656,-0.019400792196393013,-0.024164041504263878,-0.042184118181467056,-0.11607412993907928,-0.03624703735113144,-0.08515038341283798,0.07343916594982147,-0.0060988483019173145,-0.005639322567731142,0.02655090019106865,0.05710984393954277,0.004316937178373337,-0.0471695177257061,0.001238902215845883,0.018533581867814064,-0.08791089057922363,-0.09124156832695007,-0.03044271655380726,0.009174819104373455,0.01756555214524269,-0.09989908337593079,-0.05783834308385849,0.045451804995536804,0.09106991440057755,0.03886156156659126,-0.02202397771179676,-0.02272195927798748,0.024067796766757965,-0.0011440515518188477,0.03298461064696312,-0.013686079531908035,-0.011329815723001957,-0.06699864566326141,0.028705673292279243,0.0558663047850132,-0.04717371240258217,-0.047880031168460846,-0.01560616958886385,0.034308623522520065,-0.045514240860939026,-0.028697747737169266,-0.048007141798734665,-0.012722195126116276,-0.058342866599559784,0.04430563747882843,0.0395720936357975,0.03628302738070488,0.04011515900492668,0.045499708503484726,0.05523151904344559,-0.04210431128740311,-0.06581872701644897,-1.3027770628003171e-33,0.05767852067947388,0.07350633293390274,0.06293704360723495,-0.11761079728603363,0.06847207993268967,0.07543452829122543,-0.044990651309490204,0.03176415339112282,0.03366337716579437,0.016178155317902565,0.027380680665373802,0.06009913235902786,-0.029673052951693535,-0.04231899976730347,-0.025709500536322594,0.08334387838840485,-0.10115901380777359,-0.008124674670398235,0.06491930037736893,-0.03229374811053276,-0.11705797910690308,0.0855790451169014,-0.02211020700633526,-0.030144881457090378,-0.032037775963544846,0.02637101151049137,0.07667499035596848,0.07070979475975037,-0.022393709048628807,0.03454006463289261,0.006017396692186594,0.02396479994058609,0.031210632994771004,0.023604165762662888,0.022102901712059975,-0.014353904873132706,0.11994068324565887,-0.07656832784414291,-0.030871842056512833,0.02611159346997738,0.04917488992214203,-0.024491485208272934,-0.09155811369419098,-0.03316804766654968,-0.07442805171012878,0.009865731932222843,-0.03474964573979378,0.016254141926765442,-0.1001565009355545,0.02302311174571514,0.01821288652718067,0.04672136902809143,0.05983903259038925,-0.03362753987312317,0.011298177763819695,0.06093575060367584,-0.06140424311161041,0.003957509528845549,0.015708444640040398,-0.01683584600687027,-0.006387199275195599,0.03590651974081993,0.08481956273317337,0.012276777997612953,-0.030103003606200218,0.04653164744377136,0.051027387380599976,0.0005102618597447872,-0.04628772661089897,0.030467722564935684,-0.027041131630539894,0.0038415815215557814,-0.12211907655000687,-0.02351987175643444,0.0021517216227948666,-0.05528591200709343,-0.03343839943408966,0.034488990902900696,0.00943287555128336,-0.0030332847964018583,-0.009487180039286613,-0.08173104375600815,0.04303182661533356,-0.03261749446392059,-0.0565173514187336,-0.023267727345228195,0.054577313363552094,-0.05649494752287865,-0.05091146379709244,-0.0013832213589921594,0.0070699481293559074,-0.030526315793395042,0.015041566453874111,-0.13860398530960083,-0.08335110545158386,-1.7598544494641322e-33,-0.03162218630313873,-0.024098310619592667,-0.05677628144621849,0.05247845500707626,-0.021961906924843788,-0.052617769688367844,-0.07022999972105026,-0.010012386366724968,-0.010739291086792946,0.037067946046590805,0.01128760352730751,-0.07578911632299423,-0.0008178815478459001,-0.003143103327602148,-0.014976782724261284,-0.016844304278492928,0.06789608299732208,0.0012581625487655401,0.01568121835589409,-0.020456848666071892,0.025846516713500023,0.05374722555279732,-0.014883903786540031,0.029760213568806648,-0.002776832552626729,0.06584347784519196,-0.0000808876211522147,-0.05619622766971588,-0.012612328864634037,-0.02320677973330021,-0.0388970822095871,0.015045089647173882,0.0019078340847045183,-0.00975487194955349,0.040169984102249146,-0.015063795261085033,-0.008799782954156399,0.07430575788021088,-0.00727491918951273,-0.1107148751616478,-0.05919840186834335,0.0014417242491617799,-0.08056575804948807,-0.017159948125481606,-0.0776120275259018,-0.05038771778345108,-0.0043295640498399734,0.01796106807887554,-0.011120996437966824,-0.01272836048156023,-0.1430584192276001,-0.004716561641544104,-0.04170156270265579,-0.11671910434961319,-0.06712574511766434,0.022209161892533302,0.06822255253791809,0.031118495389819145,0.08884548395872116,0.000609685608651489,0.05780709162354469,-0.08559639006853104,-0.05748003348708153,-0.012556045316159725,0.02111293375492096,0.037562236189842224,-0.03139485418796539,0.0719381645321846,-0.0020245115738362074,0.017391646280884743,0.05264123156666756,0.001743970555253327,-0.10487556457519531,-0.017067406326532364,0.052755530923604965,0.068421870470047,-0.031452398747205734,0.029010165482759476,0.003648236161097884,-0.0039289528504014015,0.07400296628475189,-0.05289466306567192,0.059178367257118225,0.11115308105945587,0.07243219017982483,0.08482468873262405,-0.05426397547125816,0.008665142580866814,-0.020299743860960007,0.0963357463479042,0.04193555563688278,-0.022176986560225487,-0.040464501827955246,0.09473086148500443,-0.0313011072576046,-3.4516808966600365e-8,0.01669074036180973,0.031035855412483215,-0.026675408706068993,-0.004838291089981794,0.09130147844552994,-0.004111871123313904,0.08567622303962708,0.10359495133161545,-0.10298435389995575,0.015966245904564857,-0.03250075876712799,0.032426618039608,-0.05124209448695183,0.011735555715858936,0.03170979395508766,0.07440748810768127,-0.02232496254146099,-0.1509280800819397,-0.005185090936720371,0.07865285128355026,0.03946460783481598,0.03915496543049812,0.04731740429997444,-0.13302236795425415,-0.07592682540416718,0.04716610163450241,-0.10163102298974991,-0.07030583173036575,0.05036301538348198,0.047633010894060135,0.025492897257208824,-0.07014487683773041,-0.043516308069229126,0.03102727234363556,-0.03682287409901619,0.01879175752401352,-0.00684752780944109,0.020016523078083992,0.05518438667058945,-0.11057646572589874,0.007060149684548378,-0.042239703238010406,0.04492684826254845,0.04453476518392563,0.04298319295048714,0.08954831212759018,0.026997379958629608,-0.04235081002116203,-0.05297805368900299,0.04006358981132507,-0.0027495247777551413,0.08176092058420181,-0.0347135104238987,0.07333426922559738,0.062314391136169434,-0.03358999267220497,0.006221633870154619,0.026303661987185478,-0.06813254207372665,0.000965795770753175,0.024773919954895973,0.036496352404356,-0.006873972713947296,0.07193441689014435]},{"text":"They were just coming down the stairs when Mollie was discovered to be missing.","book":"Animal Farm","chapter":28,"embedding":[-0.04779880866408348,0.01753273792564869,0.032319989055395126,0.04948769137263298,0.006992045324295759,-0.05395429581403732,-0.014813033863902092,-0.03857438266277313,0.04851387441158295,-0.08382813632488251,0.07350160926580429,0.018761049956083298,0.05315940082073212,-0.06259074062108994,-0.02764374390244484,0.0034495515283197165,-0.02499213069677353,-0.042213451117277145,-0.06991855055093765,0.0003449964860919863,-0.050720762461423874,0.03192294016480446,0.026350753381848335,0.08073467016220093,-0.018119826912879944,-0.01689055748283863,-0.0678093284368515,0.028545400127768517,0.07617819309234619,0.020442910492420197,-0.01514593604952097,0.0767904594540596,-0.042598024010658264,0.03421145677566528,0.03419830650091171,0.011841210536658764,0.13464099168777466,0.03561454638838768,0.03521226346492767,-0.016930684447288513,-0.014925802126526833,-0.04718584194779396,-0.029742635786533356,0.04673093557357788,-0.11011999845504761,-0.0016313822707161307,0.05476956441998482,-0.11143346130847931,0.00463387044146657,-0.008918030187487602,0.007999802939593792,-0.032909095287323,-0.02750331722199917,-0.013773302547633648,0.021244119852781296,0.050909996032714844,0.053317148238420486,-0.0438181534409523,0.021217091009020805,-0.012839718721807003,-0.030419373884797096,-0.019970614463090897,-0.009608577005565166,0.026779506355524063,-0.028455907478928566,-0.01972862146794796,-0.07578413933515549,-0.09490275382995605,0.11030887812376022,0.0026206413749605417,0.04764236882328987,-0.039190635085105896,0.043959494680166245,-0.04167597368359566,-0.03089285083115101,0.015559155493974686,0.13016894459724426,-0.06322233378887177,-0.003516846103593707,0.008181581273674965,-0.02516058273613453,-0.052854396402835846,0.045653801411390305,0.016195569187402725,0.11789925396442413,-0.06636006385087967,-0.01317842211574316,-0.054142702370882034,-0.0485343411564827,-0.05999195948243141,-0.014480341225862503,-0.059820499271154404,-0.07474786788225174,0.10249318927526474,-0.0037345276214182377,-0.10115332156419754,-0.0009936465648934245,-0.0347311869263649,0.005217141006141901,0.08124279230833054,-0.05635780096054077,-0.028978247195482254,0.12112916260957718,0.03505100682377815,-0.003756363410502672,-0.02769145555794239,0.05605456233024597,0.0016534199239686131,0.048063889145851135,0.02639155276119709,-0.023016026243567467,-0.05695213004946709,0.13691681623458862,0.06987498700618744,0.011224902234971523,-0.0008154834504239261,-0.027341043576598167,0.07585464417934418,-0.06448519974946976,-0.031922537833452225,0.06492888927459717,0.06875593960285187,0.005254870280623436,-0.01401362195611,-0.03020673431456089,0.10471285879611969,-0.029170595109462738,-2.7230938261202702e-33,0.04839688539505005,0.020309168845415115,0.005378935020416975,-0.040612321346998215,0.12239852547645569,0.003259436460211873,-0.058707691729068756,-0.026603147387504578,0.0713716372847557,-0.01138769369572401,-0.034972116351127625,-0.07499179989099503,-0.06443469226360321,-0.08225184679031372,-0.036842361092567444,-0.009983747266232967,0.0045280614867806435,-0.01665339805185795,-0.035370901226997375,0.02919655852019787,0.05381808802485466,0.022747259587049484,0.00789406057447195,0.016477657482028008,-0.05975068360567093,0.0776851624250412,0.006588876247406006,-0.026829605922102928,0.014813612215220928,0.04091477766633034,0.0028393545653671026,-0.009516069665551186,0.07095830142498016,0.05407040938735008,-0.03758494183421135,0.05798572674393654,0.017692815512418747,-0.07322053611278534,0.012759801000356674,0.008138318546116352,-0.05005349963903427,-0.06228072568774223,0.04395822808146477,-0.04759882390499115,-0.08263532817363739,-0.005638559814542532,0.0021574015263468027,0.06082763150334358,0.058549437671899796,0.05763886868953705,0.021108660846948624,0.01647886261343956,-0.008904957212507725,0.02724670246243477,0.019268697127699852,0.04647156223654747,-0.09705522656440735,-0.08911050856113434,0.04797041043639183,-0.026295920833945274,0.000013695599591301288,0.036848071962594986,0.10146962851285934,-0.029564224183559418,0.014557278715074062,-0.027291398495435715,0.0018350728787481785,-0.01987414062023163,0.004083099775016308,0.03124546818435192,-0.07120790332555771,-0.03283514454960823,-0.02937258780002594,-0.061970215290784836,-0.02443920634686947,-0.037617459893226624,-0.005574453622102737,-0.10579679161310196,0.06859760731458664,-0.028440279886126518,0.061688780784606934,-0.018682420253753662,0.035823121666908264,-0.012592396698892117,0.057597946375608444,-0.09178341925144196,0.02489272877573967,-0.007037055213004351,-0.09178200364112854,-0.012311655096709728,-0.046851929277181625,0.019546877592802048,-0.013273916207253933,-0.061201613396406174,-0.01823587343096733,4.07296808027674e-34,0.0037136184982955456,0.05542362853884697,0.005840608850121498,-0.043757952749729156,-0.00833476148545742,-0.04334786534309387,-0.01456424593925476,-0.045476850122213364,0.054035626351833344,0.0334109328687191,-0.10446158796548843,-0.062335897237062454,-0.01952267996966839,-0.07695735991001129,0.016155701130628586,0.042784322053194046,0.02182556688785553,-0.020566953346133232,0.05903142690658569,-0.0026418061461299658,0.01576140522956848,-0.0492154061794281,-0.14821411669254303,-0.012151742354035378,0.02006968855857849,0.021624907851219177,0.10171819478273392,-0.02661326341331005,-0.09462888538837433,-0.06079760938882828,-0.022170182317495346,-0.03977430611848831,-0.056516844779253006,-0.04087478667497635,0.05245589837431908,0.04781268537044525,-0.017331451177597046,0.05902690440416336,-0.0924256220459938,-0.06847512722015381,0.020402420312166214,-0.03174591436982155,0.00970515888184309,0.09620913118124008,-0.029847221449017525,0.053384725004434586,-0.016101481392979622,0.14788870513439178,0.03582790493965149,-0.029690150171518326,-0.013398080132901669,0.012105482630431652,-0.04762203246355057,-0.019961591809988022,-0.035697586834430695,0.04943385347723961,0.0051149409264326096,0.03101181611418724,0.003981181886047125,-0.04366624727845192,-0.020417746156454086,-0.01848691888153553,-0.023836003616452217,-0.006418649572879076,-0.021177450194954872,0.05195339024066925,0.015254111029207706,0.041736070066690445,-0.03269053250551224,-0.02146940305829048,-0.07755941897630692,0.08086908608675003,-0.019433725625276566,-0.08870401978492737,0.06194477900862694,0.03279276192188263,-0.15031588077545166,-0.02255820669233799,0.008333207108080387,-0.05231751501560211,0.002530424389988184,-0.08433900028467178,0.041992779821157455,0.02354438789188862,0.008999347686767578,-0.019042298197746277,0.020734377205371857,0.05689692869782448,0.04324968904256821,-0.06430363655090332,0.0018151778494939208,0.005448676645755768,0.05099807679653168,-0.037889398634433746,0.0032431173603981733,-2.100891904888158e-8,0.04897052422165871,0.04898715019226074,-0.05392387881875038,-0.12807069718837738,0.06852331012487411,0.09272930771112442,0.020772410556674004,0.1356039047241211,-0.01927291229367256,0.07776650786399841,-0.03763639181852341,0.02735104039311409,0.05648865923285484,0.023781396448612213,0.049222759902477264,0.023733163252472878,-0.018173500895500183,-0.11544132977724075,-0.053958188742399216,0.0202823206782341,-0.02440696954727173,-0.003231495153158903,0.037293750792741776,0.09866061806678772,0.028945336118340492,0.0024539600126445293,-0.08260756731033325,0.00487865786999464,-0.05497019365429878,0.03548318147659302,0.018446382135152817,0.0039244783110916615,-0.0418839193880558,-0.02290935255587101,0.043090034276247025,0.08778712153434753,0.0813131108880043,0.031098725274205208,-0.030789727345108986,-0.03467613086104393,-0.03354278951883316,-0.04176681488752365,0.08630984276533127,0.06067114695906639,0.05260426178574562,-0.010130050592124462,0.005920830182731152,0.043192308396101,0.020279331132769585,0.029765862971544266,0.00232514925301075,0.006875250022858381,-0.04995230585336685,0.08850082755088806,-0.013049161992967129,-0.019704384729266167,-0.04282502457499504,-0.04053255543112755,-0.03489828482270241,0.024179957807064056,-0.0004451956774573773,0.01946300081908703,0.06639315187931061,-0.025717053562402725]},{"text":"Some hams hanging in the kitchen were taken out for burial, and the barrel of beer in the scullery was stove in with a kick from Boxer's hoof, otherwise nothing in the house was touched.","book":"Animal Farm","chapter":28,"embedding":[0.05496074631810188,0.16480739414691925,-0.013135404326021671,0.06826677918434143,0.06580749899148941,0.02923743426799774,-0.00029920905944891274,-0.018690990284085274,-0.02708321437239647,0.041508860886096954,0.019219299778342247,0.007213208358734846,-0.03811042383313179,0.011871354654431343,-0.069196917116642,-0.0793595239520073,-0.04489825665950775,-0.07501258701086044,-0.04724244773387909,0.027335088700056076,0.006224741693586111,0.046598173677921295,0.05728676915168762,0.03337790444493294,0.10549157112836838,0.03846248239278793,-0.03273070976138115,0.0028302487917244434,-0.027250634506344795,0.01519869826734066,0.016457824036478996,-0.033602554351091385,-0.07489077001810074,-0.04611168056726456,-0.02576279640197754,0.01766231097280979,0.16181088984012604,0.09896212816238403,0.06009538844227791,0.03315659612417221,-0.022004658356308937,-0.0172344371676445,-0.006446730345487595,-0.026643849909305573,0.0018085844349116087,0.08297838270664215,-0.047492727637290955,-0.0627460703253746,-0.014304772950708866,-0.04669563099741936,-0.0021469262428581715,-0.01392105221748352,0.03915486857295036,0.10489712655544281,0.04111722111701965,-0.0803794339299202,-0.012829508632421494,-0.03938625752925873,0.00897276308387518,-0.04789113625884056,-0.05769285559654236,-0.006851844489574432,-0.023727521300315857,0.06336351484060287,0.004733552690595388,-0.12079493701457977,0.02222912386059761,-0.0027673994190990925,0.06241629645228386,0.04002861678600311,0.06620535254478455,0.008150236681103706,0.027354486286640167,-0.07617384195327759,-0.07818751037120819,-0.02231910452246666,-0.03214682638645172,-0.0885712206363678,0.004909383598715067,0.032869260758161545,-0.03562767058610916,-0.04165580868721008,-0.05030697211623192,0.01906994916498661,-0.027413638308644295,0.02710043638944626,-0.02403010055422783,-0.018325455486774445,-0.05416565388441086,0.05412017181515694,-0.0733470693230629,-0.06507500261068344,-0.014606229960918427,0.015354211442172527,0.004645999521017075,-0.09550432860851288,0.05519901216030121,0.07706564664840698,0.039038751274347305,0.02099517732858658,0.017748098820447922,-0.000535320199560374,-0.0066632856614887714,-0.08147639781236649,0.11453445255756378,0.036992285400629044,-0.06072724238038063,0.03882299363613129,-0.002913927659392357,-0.001856396091170609,-0.046902041882276535,0.013645363040268421,0.01922466605901718,0.012980370782315731,-0.030689410865306854,0.04797552898526192,0.03276486694812775,-0.10717619955539703,-0.11471540480852127,-0.04743652418255806,0.04768075793981552,0.025749659165740013,0.021572060883045197,0.035493455827236176,-0.08801305294036865,0.013135178945958614,0.05866631492972374,8.585365336249622e-34,-0.01489266287535429,-0.07059738039970398,-0.028106484562158585,0.008514175191521645,0.09540773183107376,-0.08334311842918396,-0.06243666633963585,0.07431524991989136,0.06842263042926788,0.06940705329179764,-0.0023022331297397614,-0.0008836068445816636,-0.0037693153135478497,-0.05589544400572777,-0.013580109924077988,0.0496973916888237,-0.03546784073114395,-0.053001463413238525,0.06625981628894806,-0.07438616454601288,-0.08763639628887177,-0.0048011490143835545,0.002295182552188635,0.031096400693058968,-0.051360949873924255,-0.003091946244239807,0.017307652160525322,-0.066049724817276,-0.05115668475627899,0.016001716256141663,0.08442968875169754,0.03034394234418869,-0.0017554149962961674,-0.01804679073393345,-0.057313334196805954,0.008886332623660564,0.042586710304021835,-0.0566532127559185,-0.06255535036325455,-0.004618562292307615,0.05192617326974869,-0.04708930850028992,0.09129982441663742,-0.029550062492489815,-0.03942550718784332,0.05223788693547249,-0.04529412463307381,0.05143428593873978,-0.03009074553847313,0.05772283673286438,0.05928097665309906,0.050223223865032196,0.07280418276786804,0.045849815011024475,0.01615283265709877,0.09415151178836823,0.0805533155798912,-0.009465420618653297,0.019404463469982147,0.06097612902522087,0.04057648405432701,0.10204876214265823,0.005002039950340986,-0.004897187929600477,-0.08296908438205719,-0.07738557457923889,-0.022191394120454788,-0.01973826438188553,-0.08411219716072083,-0.017399458214640617,-0.07317224144935608,0.018599698320031166,-0.0005192565149627626,-0.07933466136455536,-0.031140172854065895,0.017853686586022377,-0.042627714574337006,-0.042397815734148026,-0.034210819751024246,0.005557684693485498,0.11638574302196503,-0.023736998438835144,-0.04082934185862541,0.04948684573173523,-0.012071484699845314,-0.01231389306485653,0.044692523777484894,-0.0698539987206459,-0.03614179790019989,0.043461333960294724,-0.06910880655050278,-0.0231761671602726,-0.029603563249111176,-0.07473776489496231,0.03130988031625748,-3.0027206059648683e-33,-0.009250149130821228,-0.012947247363626957,-0.03514166176319122,0.08114994317293167,-0.011786168441176414,-0.002290970180183649,-0.08736206591129303,-0.03701572120189667,-0.0006991149275563657,-0.052878014743328094,0.021065957844257355,-0.04685100540518761,0.02310314029455185,0.07600007951259613,0.07039350271224976,-0.06049341335892677,-0.06726492941379547,0.03205704316496849,0.025663428008556366,0.01437713485211134,0.04321708530187607,0.0129705173894763,-0.04222303628921509,-0.015958910807967186,-0.014097742736339569,0.05548259615898132,0.018650369718670845,0.031693872064352036,-0.028148381039500237,-0.030334949493408203,0.06927221268415451,-0.04930773749947548,0.02785203792154789,-0.008623705245554447,-0.02695140801370144,0.04562386870384216,0.05856747180223465,0.04682056978344917,-0.043085962533950806,-0.08657832443714142,0.07016372680664062,0.021925531327724457,-0.06307827681303024,0.1463785022497177,-0.035415343940258026,0.02671515941619873,-0.09665652364492416,-0.04256698489189148,0.12614311277866364,0.06631643325090408,0.07777481526136398,0.0006098284502513707,-0.04612041264772415,-0.026586059480905533,0.009593164548277855,0.001882954384200275,-0.038614269345998764,-0.07551257312297821,0.004116767086088657,-0.016001656651496887,-0.018070045858621597,0.04845510795712471,-0.06896107643842697,0.06689756363630295,-0.016099991276860237,-0.03661207854747772,-0.08360534906387329,0.020161515101790428,-0.027909742668271065,0.00628166226670146,0.016056030988693237,0.03532135859131813,-0.011982478201389313,0.036839358508586884,-0.0064397589303553104,0.06807086616754532,0.010383546352386475,-0.02266867272555828,-0.03138960897922516,-0.01708298735320568,0.03743389993906021,-0.03920437768101692,-0.010099747218191624,0.022750800475478172,0.07867121696472168,-0.04486718773841858,-0.00012614326260518283,-0.007055916823446751,-0.08493863791227341,-0.02999509684741497,0.0504787415266037,0.09791580587625504,0.07084042578935623,-0.005121190100908279,0.010606168769299984,-3.248459279348026e-8,-0.018792541697621346,0.02751501463353634,-0.015950093045830727,0.010382062755525112,-0.02730267122387886,-0.003964449279010296,0.1149195209145546,-0.035033270716667175,0.027864892035722733,0.007539167068898678,-0.11352446675300598,0.11511463671922684,0.02342567779123783,0.030601851642131805,-0.06019367277622223,-0.006905534770339727,-0.08763449639081955,-0.13816803693771362,-0.015054142102599144,0.013396624475717545,0.011277112178504467,-0.030990473926067352,0.02023439109325409,0.024639198556542397,-0.012013571336865425,-0.044957272708415985,0.02410544641315937,0.036870382726192474,0.05146689713001251,0.06444480270147324,-0.0072646369226276875,0.012060553766787052,-0.04062734544277191,0.018112609162926674,0.002311478368937969,0.020763011649250984,-0.009573409333825111,-0.023689646273851395,-0.059703528881073,-0.06357111036777496,-0.10521641373634338,-0.09338388592004776,-0.05407159775495529,-0.05933721363544464,0.024055901914834976,-0.03904052451252937,-0.024834584444761276,0.027437595650553703,-0.04049817845225334,0.011158148758113384,0.03027540072798729,0.04218534007668495,0.07488059252500534,0.04718811810016632,0.041918978095054626,-0.06732261925935745,0.02824348770081997,-0.028343454003334045,0.07942527532577515,-0.0025078386534005404,0.02093982882797718,0.01943555846810341,-0.02218206413090229,0.03737013787031174]},{"text":"But there is another matter that must be attended to first.\" The pigs now revealed that during the past three months they had taught themselves to read and write from an old spelling book which had belonged to Mr.","book":"Animal Farm","chapter":28,"embedding":[0.062105365097522736,-0.03693413734436035,0.025590134784579277,0.035635970532894135,-0.0964837297797203,0.028992895036935806,-0.014362827874720097,-0.0909842923283577,0.030549999326467514,0.05759594589471817,0.07006949186325073,0.09678371995687485,0.025235597044229507,0.007998869754374027,-0.032906707376241684,-0.025071309879422188,-0.0565711185336113,-0.040652766823768616,0.024783572182059288,-0.04099613428115845,0.006703115999698639,-0.003592429216951132,0.04689224436879158,-0.05572103336453438,-0.008474191650748253,-0.005785461515188217,-0.03948211669921875,-0.019886253401637077,0.01282601896673441,0.0026376114692538977,-0.018271353095769882,0.03845084086060524,0.033708710223436356,-0.06408839672803879,-0.03816092014312744,0.021450867876410484,0.08872593194246292,0.04045378789305687,0.07617437094449997,-0.04989705979824066,-0.03682800382375717,-0.1189931333065033,-0.002050763461738825,0.03169901296496391,0.015932749956846237,0.006782332435250282,0.038078077137470245,-0.022211778908967972,0.009080561809241772,-0.028758952394127846,-0.008920327760279179,-0.029382267966866493,-0.0366656593978405,-0.02875465154647827,-0.038271352648735046,0.02707027830183506,-0.06245676428079605,0.03242534026503563,-0.03569013625383377,-0.08189333230257034,-0.13383075594902039,0.023760301992297173,-0.026087071746587753,0.05579264089465141,0.055483654141426086,-0.05392751097679138,0.03524288535118103,-0.026464417576789856,-0.00426877336576581,0.03947873041033745,-0.01623751036822796,0.009523301385343075,0.0809217020869255,0.002383784856647253,-0.04476751387119293,0.00017538198153488338,-0.0017699929885566235,0.009340452030301094,0.06779306381940842,-0.11661793291568756,-0.05105210468173027,-0.023976054042577744,0.001720412983559072,0.04145759716629982,-0.04381655529141426,0.027707861736416817,-0.052900008857250214,-0.04630739614367485,-0.0847725197672844,-0.000040617720515001565,0.06590978056192398,-0.18164417147636414,0.06451205909252167,0.08677373826503754,0.06031724438071251,-0.022255387157201767,-0.07230328023433685,0.12679167091846466,-0.035983264446258545,0.050371795892715454,-0.059402406215667725,0.05434077978134155,0.020954862236976624,0.04729144275188446,0.07672426849603653,-0.05660103261470795,-0.05888861045241356,-0.055588919669389725,0.014502741396427155,-0.03516533598303795,-0.02747853845357895,-0.04571174085140228,0.049569252878427505,0.08753369003534317,0.022342346608638763,0.05081247165799141,0.04071986675262451,-0.02301146276295185,0.00156592286657542,0.005076983943581581,-0.0012203662190586329,0.08541522920131683,-0.06056194007396698,-0.008945979177951813,0.005293643567711115,-0.059802889823913574,0.04182760789990425,1.6003633529856902e-34,0.04079190269112587,0.042901523411273956,-0.053763020783662796,0.05430581420660019,0.004199552349746227,0.05041320621967316,-0.032606542110443115,-0.009736591018736362,0.07792004942893982,-0.037701576948165894,0.03236302733421326,-0.042815010994672775,0.0014105800073593855,-0.07749523967504501,-0.10567563027143478,0.03475689888000488,-0.04923525080084801,-0.006181030534207821,-0.04755433648824692,-0.05394177883863449,0.0038079500664025545,0.04718761146068573,0.03930153697729111,-0.045030996203422546,-0.012380203232169151,-0.009530703537166119,0.03827942907810211,-0.05540261045098305,0.05487576872110367,0.024196932092308998,0.002688848413527012,-0.07074618339538574,-0.08591598272323608,-0.024152832105755806,-0.07116450369358063,-0.07277939468622208,0.1423574537038803,-0.1266229897737503,0.03633645921945572,-0.04938046634197235,0.0904407948255539,-0.029189998283982277,0.08796646445989609,-0.021363142877817154,-0.02594771422445774,0.07013122737407684,-0.05583681911230087,0.06894014775753021,0.008100822567939758,0.016796747222542763,0.027201414108276367,-0.03576299175620079,-0.025995176285505295,-0.0010768744396045804,0.031683407723903656,-0.027660658583045006,-0.012719505466520786,0.014523998834192753,0.001907899510115385,0.01395264733582735,0.07516798377037048,0.0805702805519104,0.02488003671169281,0.11409734934568405,0.03954833745956421,-0.028956638649106026,-0.07284556329250336,0.009040926583111286,-0.026589199900627136,-0.02424309216439724,-0.07701965421438217,-0.041103485971689224,-0.07704871147871017,-0.06348994374275208,-0.013194168917834759,-0.003941262606531382,0.05871550738811493,-0.06602021306753159,-0.014122960157692432,-0.04239644482731819,0.017460979521274567,0.002892974531278014,-0.06758423149585724,0.012427160516381264,-0.05239859223365784,0.049462754279375076,0.09702704846858978,-0.09256576001644135,0.045615654438734055,-0.06550247222185135,0.026350922882556915,-0.025596853345632553,0.010302343405783176,-0.012626418843865395,0.001541909878142178,-2.357226903227595e-33,-0.11107055842876434,-0.009892360307276249,0.009236106649041176,0.06876987218856812,-0.006412987131625414,-0.032420434057712555,0.03305251896381378,-0.049628134816884995,0.04460709169507027,-0.031751230359077454,-0.09462722390890121,-0.04058505594730377,-0.02548482082784176,-0.020833173766732216,0.07103800773620605,-0.005945589393377304,0.07255005091428757,-0.08123723417520523,0.018602047115564346,0.025264058262109756,-0.08416484296321869,0.0134425675496459,-0.0972653403878212,0.03517293557524681,0.05104312300682068,0.046908289194107056,0.06562502682209015,-0.025426853448152542,-0.08421111106872559,0.03629647567868233,-0.009778011590242386,0.00526965968310833,-0.005316979251801968,-0.01603277400135994,-0.08915194869041443,-0.01664876751601696,0.028657270595431328,0.012102711945772171,-0.09727686643600464,0.07549368590116501,0.049258533865213394,-0.036598291248083115,-0.09687193483114243,-0.0101051339879632,-0.0035466973204165697,0.0396869070827961,-0.0006101345643401146,0.010615198872983456,0.03059735707938671,0.034736741334199905,0.035633593797683716,0.008931117132306099,-0.009822930209338665,-0.10922037810087204,0.009803488850593567,0.0760526955127716,0.044674526900053024,-0.07015925645828247,0.04192059487104416,-0.03489352762699127,0.025286240503191948,0.06326978653669357,-0.03512522205710411,0.00009768615564098582,-0.025933708995580673,-0.042449094355106354,-0.04792354255914688,0.04164905473589897,0.06328274309635162,-0.017168885096907616,0.008535383269190788,0.010886430740356445,-0.029295988380908966,-0.09827187657356262,0.04516111686825752,0.10758748650550842,0.03685752674937248,-0.006182247307151556,-0.02588859759271145,-0.1049560010433197,-0.025713646784424782,-0.016337094828486443,-0.011276178061962128,0.07571233063936234,0.033776696771383286,-0.024438215419650078,0.05513333901762962,0.018167024478316307,0.03242633119225502,0.003406756091862917,0.04474814236164093,-0.010465000756084919,0.030276190489530563,-0.001276843948289752,-0.05570788308978081,-3.628589695381379e-8,-0.05046389624476433,-0.0026454580947756767,-0.012286817654967308,0.038911446928977966,0.10994800180196762,-0.04189303144812584,0.009143956936895847,0.018789280205965042,-0.010896755382418633,0.10013359040021896,-0.05161565914750099,0.07153908163309097,0.008928798139095306,-0.028222665190696716,0.03498769551515579,0.08765897154808044,0.10088923573493958,-0.05987134203314781,-0.07837450504302979,0.02954535000026226,0.0346875935792923,0.002790953731164336,-0.068438820540905,-0.029501451179385185,-0.024014834314584732,0.047858826816082,0.006776373367756605,-0.019385265186429024,-0.013081660494208336,0.04780948534607887,0.016730915755033493,0.055037129670381546,-0.004695470444858074,-0.06344632059335709,-0.0011974854860454798,-0.031899504363536835,0.0018258239142596722,0.03263605386018753,0.0431203655898571,-0.007534784730523825,-0.01559537835419178,0.0005858587683178484,0.0710279569029808,0.07705200463533401,0.012077569961547852,-0.06307785958051682,-0.07958319038152695,0.031462229788303375,0.011113028042018414,-0.06539216637611389,0.010111449286341667,0.10930927097797394,0.09074868261814117,0.00873524509370327,0.044630955904722214,-0.03219687566161156,-0.019619647413492203,-0.006777406204491854,-0.08599954098463058,-0.028749309480190277,0.06211918219923973,0.050661247223615646,0.04520886018872261,-0.03026752918958664]},{"text":"After this they went back to the farm buildings, where Snowball and Napoleon sent for a ladder which they caused to be set against the end wall of the big barn.","book":"Animal Farm","chapter":29,"embedding":[-0.042565327137708664,0.09698165208101273,0.0257185660302639,-0.01628267392516136,0.03778977319598198,0.003070563543587923,-0.0861305296421051,0.057295363396406174,-0.06694851070642471,0.02977904863655567,0.038053300231695175,0.04274687170982361,0.040231719613075256,-0.0483691431581974,-0.017353612929582596,-0.007680485025048256,-0.08749475330114365,0.03511444851756096,-0.038701750338077545,-0.015245125629007816,-0.008520858362317085,-0.0894123911857605,-0.0001704393798718229,0.06224798783659935,0.05072749778628349,0.05818123370409012,-0.0719938576221466,0.018371807411313057,-0.052893850952386856,-0.052779316902160645,-0.006155490875244141,-0.012616588734090328,-0.054687727242708206,0.010038403794169426,-0.031555768102407455,0.06997282058000565,0.08001609146595001,0.0012924950569868088,0.044563744217157364,-0.027397293597459793,-0.0005078486283309758,0.006253163330256939,-0.013814480043947697,0.024288982152938843,-0.062342461198568344,0.02001543715596199,-0.015719326213002205,-0.09073954820632935,0.08487630635499954,0.03961872681975365,0.021968699991703033,0.05847318843007088,-0.02339838445186615,0.02034533955156803,0.039181288331747055,0.027328312397003174,0.016077211126685143,-0.025549789890646935,0.0869797021150589,0.034893948584795,0.060598716139793396,-0.005666227545589209,-0.015405822545289993,0.007396884262561798,0.03816656023263931,-0.05376095697283745,-0.09985725581645966,0.005412145983427763,0.01973840408027172,-0.036093804985284805,0.06892035901546478,-0.03038996458053589,0.02353564463555813,-0.14171530306339264,-0.03286108374595642,0.028365496546030045,-0.04164806380867958,-0.0017788285622373223,0.01224173977971077,0.003461974672973156,-0.030457476153969765,-0.06737015396356583,-0.014088458381593227,0.0423874594271183,0.00829556118696928,0.021405719220638275,0.08576104044914246,0.005874226335436106,0.09656534343957901,0.010937566868960857,0.004417600575834513,-0.09871551394462585,-0.03367343544960022,0.1282886266708374,-0.00684123020619154,-0.04290412366390228,-0.08846421539783478,0.019038449972867966,0.018702592700719833,0.04368506744503975,0.03411001339554787,-0.035361845046281815,0.08786266297101974,-0.03395993262529373,-0.02806689403951168,-0.014797291718423367,-0.07302688807249069,0.0389610230922699,0.011472053825855255,0.0036815074272453785,-0.019800802692770958,-0.048748042434453964,0.045888181775808334,0.10640823841094971,0.03357838839292526,0.08957091718912125,-0.04116231948137283,-0.11212600767612457,-0.15859630703926086,-0.010385561734437943,0.12634620070457458,0.10245291143655777,0.012776734307408333,-0.01030920259654522,-0.04388585314154625,0.08706307411193848,0.018674738705158234,-2.951319360410279e-33,0.04512748122215271,-0.013279822655022144,-0.0377047099173069,-0.05667480453848839,0.12331888824701309,0.04666062816977501,-0.10446924716234207,0.09257594496011734,0.023874832317233086,0.07644347846508026,-0.0868915468454361,0.01765119470655918,-0.0699700266122818,-0.0703580304980278,-0.027907347306609154,-0.07347436249256134,-0.0470380000770092,-0.039235878735780716,-0.05420180782675743,0.06319858878850937,0.021799597889184952,0.03945809602737427,-0.03588888421654701,0.10929884761571884,-0.000097802905656863,0.08444710075855255,-0.025319956243038177,0.0049668289721012115,-0.03891155496239662,0.04793832078576088,0.006966261193156242,-0.10498718172311783,-0.03496125712990761,0.03745398297905922,0.02191927842795849,0.004784723278135061,0.003407613607123494,-0.08693835139274597,-0.006552798207849264,0.04573860391974449,0.03368121758103371,-0.0592837817966938,-0.009618517942726612,0.07451914250850677,0.005434119142591953,-0.04398256912827492,-0.00007911788270575926,0.012293131090700626,0.01502219494432211,0.0009449377539567649,0.02364477515220642,0.034465909004211426,-0.04585094377398491,-0.03455265611410141,0.08728285133838654,0.03936173394322395,-0.048080991953611374,0.03971344977617264,0.036939892917871475,0.024872690439224243,0.060744840651750565,-0.008668382652103901,0.02769485116004944,0.0387117825448513,-0.016142884269356728,-0.037901245057582855,0.01682516559958458,0.11098092049360275,-0.035330630838871,-0.012097811326384544,0.03434484079480171,-0.03868427872657776,0.00657946802675724,0.0254521407186985,-0.03176731988787651,0.015791215002536774,-0.06676623225212097,-0.0021130668465048075,-0.0030732639133930206,-0.06424704939126968,0.03648588806390762,-0.005436557810753584,-0.05852946266531944,0.06445544213056564,0.006759463809430599,-0.02901466190814972,0.05308349058032036,-0.0662727877497673,-0.07018163800239563,-0.008770477958023548,-0.04180504381656647,0.0022349809296429157,-0.009250111877918243,-0.06247420236468315,0.015227146446704865,3.6961055097580762e-34,0.022963915020227432,0.00011935749353142455,-0.0400080531835556,-0.0717586874961853,0.01335818599909544,-0.01105152815580368,0.024575909599661827,-0.021385032683610916,0.013995260000228882,0.06086643785238266,-0.09150592237710953,-0.016161873936653137,0.01052804198116064,0.018174054101109505,0.06119433790445328,-0.03787975385785103,0.12042340636253357,-0.02045280858874321,-0.020858997479081154,-0.005644150078296661,0.07135351002216339,-0.01270106341689825,-0.10927971452474594,0.0309462808072567,0.013378959149122238,0.04961160570383072,-0.028172897174954414,-0.06195267662405968,-0.027084723114967346,-0.003122204914689064,-0.04513475298881531,-0.019334210082888603,-0.0007221114938147366,0.020138345658779144,0.04023968428373337,0.06106943264603615,-0.01777455024421215,-0.014907616190612316,-0.013822028413414955,-0.08304407447576523,0.049070216715335846,-0.035246506333351135,-0.014211741276085377,0.08626425266265869,0.021108005195856094,0.018212497234344482,-0.07925698161125183,0.057937297970056534,0.012037907727062702,0.00042206794023513794,-0.002337162848562002,0.04208024963736534,0.025968918576836586,-0.09221196919679642,-0.10787477344274521,-0.04165254905819893,0.01246625930070877,-0.09045092016458511,0.009411047212779522,0.019618717953562737,-0.005490414332598448,-0.07074902951717377,0.024176687002182007,0.012110179290175438,-0.04614206403493881,0.00753782270476222,-0.07168646901845932,-0.024408046156167984,-0.04451875388622284,0.010983994230628014,0.010208835825324059,-0.011094608344137669,0.029693782329559326,0.0404144749045372,-0.025115836411714554,0.05959925800561905,-0.06926707923412323,0.03604502975940704,0.056431904435157776,-0.07513183355331421,-0.02419990673661232,-0.04224695637822151,0.032805707305669785,0.006249247118830681,0.08652181923389435,-0.021612750366330147,-0.02986830100417137,0.08434127271175385,0.07603713870048523,-0.04676607996225357,-0.0072418637573719025,-0.043085984885692596,0.036995187401771545,0.006701858714222908,-0.0051414635963737965,-2.49532501328531e-8,-0.005665962118655443,0.07792309671640396,0.04364045336842537,0.01815752498805523,0.05981526896357536,-0.009961940348148346,0.006271555554121733,0.13333909213542938,0.023805588483810425,-0.0018369457684457302,-0.09364788234233856,0.14452776312828064,-0.0200370904058218,0.11165685951709747,-0.010575148276984692,0.06424472481012344,0.02518751658499241,-0.08779406547546387,-0.023611724376678467,0.016756296157836914,-0.07920018583536148,-0.04545622318983078,-0.019863547757267952,-0.02057131566107273,-0.029379060491919518,-0.005200544372200966,-0.060604095458984375,0.01103698555380106,0.050015248358249664,0.046512700617313385,0.01839994452893734,-0.01972205750644207,-0.048434171825647354,-0.09149425476789474,-0.023329993709921837,0.10726891458034515,0.0473933182656765,0.0006192949949763715,0.03316893428564072,-0.14113865792751312,-0.02588820271193981,-0.024216962978243828,0.061153583228588104,-0.0012374535435810685,0.02365008555352688,0.018395815044641495,-0.01915217749774456,0.04620122164487839,-0.006373958196491003,-0.03323262929916382,-0.04351383075118065,0.01672489382326603,-0.03094891831278801,0.027515791356563568,0.00533430278301239,-0.057981159538030624,-0.016489138826727867,-0.09569091349840164,0.04614800959825516,-0.06622466444969177,-0.06826769560575485,0.030243176966905594,-0.039085619151592255,0.006059050559997559]},{"text":"They ran thus: THE SEVEN COMMANDMENTS 1.","book":"Animal Farm","chapter":29,"embedding":[-0.031813036650419235,0.04310481250286102,-0.014405609108507633,0.019009996205568314,0.014657281339168549,0.006678530480712652,-0.01904354989528656,-0.08805274218320847,-0.09399709850549698,0.030497385188937187,0.006541470065712929,-0.008590232580900192,0.020138444378972054,-0.04682164266705513,0.013437963090837002,-0.0669667050242424,-0.0907527506351471,0.003998007159680128,-0.019241441041231155,0.007155091501772404,0.019783053547143936,0.09939945489168167,0.04277961328625679,0.03817489743232727,-0.039936866611242294,0.05422196164727211,-0.013417226262390614,-0.08097837120294571,-0.005938274320214987,-0.0834963470697403,-0.060792770236730576,-0.014482847414910793,0.05367068201303482,0.0744299665093422,0.01203097403049469,0.0496881827712059,0.16203783452510834,-0.03249445930123329,-0.013796970248222351,0.001652430510148406,0.04530736804008484,0.036783888936042786,0.01899123564362526,0.0115021001547575,-0.09554287791252136,0.024069899693131447,-0.056228697299957275,0.0014659345615655184,0.006854610051959753,0.00028880953323096037,0.004001190885901451,-0.005293078254908323,-0.010001694783568382,0.0009587672539055347,0.013382667675614357,-0.025682924315333366,-0.12909619510173798,-0.06063544750213623,0.06012735888361931,-0.06635574251413345,-0.020806381478905678,-0.024927182123064995,0.012742772698402405,0.013273699209094048,-0.03182724118232727,-0.03812241554260254,0.024148551747202873,-0.07275305688381195,-0.10306622087955475,0.04259626567363739,-0.020706674084067345,-0.03896943852305412,0.032945889979600906,-0.030795099213719368,-0.10437653213739395,-0.02803085930645466,-0.025344790890812874,-0.057118628174066544,-0.08666728436946869,-0.1675344556570053,-0.05514012649655342,-0.039180513471364975,-0.025645701214671135,0.09717415273189545,0.013664868660271168,0.05693952366709709,-0.02804356999695301,-0.027711695060133934,0.07746708393096924,-0.0036202778574079275,0.07659848034381866,-0.00851877499371767,0.04050281271338463,-0.010762560181319714,-0.029131749644875526,0.03263192996382713,0.01174227800220251,0.009606361389160156,0.031136395409703255,0.06243477389216423,-0.008390034548938274,0.039664071053266525,-0.011737361550331116,0.018217407166957855,-0.018549110740423203,-0.00865168310701847,-0.03907579556107521,-0.03764922544360161,-0.038709692656993866,-0.0496196374297142,-0.006115314085036516,-0.042906664311885834,0.059983354061841965,-0.04319130256772041,0.05842478200793266,-0.06305333971977234,0.025682637467980385,0.04628152400255203,0.0360318198800087,0.10907629877328873,-0.03606705367565155,0.0046725161373615265,0.07544650882482529,0.04654765874147415,-0.027084514498710632,0.011457172222435474,-0.05455968528985977,-3.5096279328440094e-33,-0.011892098933458328,-0.10885506868362427,0.033236049115657806,0.019213663414120674,-0.0012023127637803555,0.0473068505525589,0.02051449380815029,0.016498742625117302,0.0450580008327961,-0.05719316005706787,-0.013166910968720913,-0.04824529215693474,-0.03032011166214943,-0.03138710558414459,0.06328975409269333,-0.030533017590641975,-0.006613051984459162,-0.04193133860826492,0.02921195887029171,-0.02248198725283146,0.04743301123380661,0.06896064430475235,-0.055479999631643295,-0.02834380231797695,0.03949575126171112,0.016341807320713997,0.054456885904073715,0.12952668964862823,0.02310994453728199,0.01973855122923851,-0.0340447723865509,-0.011861688457429409,0.01359927374869585,0.08337864279747009,0.03202930837869644,0.07950294762849808,-0.036387037485837936,0.00785171240568161,0.048766814172267914,-0.032143473625183105,0.003612955566495657,0.014348558150231838,0.003713828744366765,-0.008811334148049355,0.0074140094220638275,0.012004228308796883,-0.09282384812831879,0.002808759920299053,0.030312925577163696,0.07214514166116714,0.03477439656853676,0.026604710146784782,0.04848220571875572,-0.07515193521976471,-0.0058796601369977,-0.03605664521455765,-0.10766329616308212,0.11977756023406982,-0.011515658348798752,0.043936487287282944,-0.006176857743412256,0.020864278078079224,-0.04710167646408081,0.06553498655557632,-0.0030532809905707836,0.024415859952569008,-0.0634525790810585,0.0010279507841914892,-0.029652507975697517,0.028483150526881218,-0.08699902147054672,0.007612189743667841,0.03079073503613472,0.07490355521440506,0.07126519083976746,0.06565894931554794,-0.023900503292679787,-0.10276693850755692,-0.08087915182113647,-0.05103588104248047,-0.017544182017445564,-0.04535195603966713,-0.0247909277677536,0.09926652908325195,0.06121658906340599,-0.003508871654048562,0.06680504232645035,-0.08473057299852371,0.007128920406103134,-0.09574133902788162,0.026938363909721375,0.01242891326546669,0.015952827408909798,-0.10127139836549759,-0.14253899455070496,1.4044982827777314e-33,-0.014234565198421478,0.07157871872186661,-0.05927376076579094,0.07335930317640305,-0.062978595495224,0.051946450024843216,-0.04555033892393112,-0.07757128775119781,-0.06403744220733643,-0.06424974650144577,-0.024687178432941437,0.033206626772880554,-0.014799144119024277,-0.0045625194907188416,0.004561840556561947,0.022864965721964836,0.05725960060954094,0.02696371078491211,0.03270917013287544,-0.012112484313547611,0.047024909406900406,-0.04701067507266998,-0.04087604954838753,0.06393688917160034,0.0710349753499031,0.060803696513175964,0.060881901532411575,0.015646889805793762,0.042953360825777054,-0.003926467150449753,0.09548007696866989,-0.047231558710336685,-0.06243796646595001,0.03747418895363808,-0.030626902356743813,-0.04763026908040047,-0.0385262668132782,0.09261729568243027,0.018633011728525162,-0.02246636338531971,-0.023525036871433258,-0.04831799864768982,0.01686730794608593,0.03281877934932709,-0.08014378696680069,0.0280692707747221,0.04814188927412033,0.07673028856515884,-0.09968949854373932,-0.014119517989456654,-0.10810456424951553,-0.028301291167736053,0.015527952462434769,-0.06450723856687546,-0.04821028560400009,-0.07165642827749252,-0.006677977275103331,0.019304737448692322,0.05661901831626892,0.03207036852836609,0.05846972391009331,0.023314613848924637,0.01862959749996662,0.049073848873376846,-0.0077491640113294125,0.007991365157067776,-0.015661684796214104,0.07433908432722092,0.012359975837171078,0.004984341561794281,-0.006654734723269939,-0.04242551326751709,-0.028767568990588188,-0.0008550271741114557,-0.002373307477682829,-0.03980807960033417,-0.013054251670837402,-0.06368822604417801,-0.06205987185239792,0.02955162338912487,0.03954434022307396,-0.04562853276729584,-0.14859417080879211,0.005836394615471363,0.08315291255712509,0.014492184855043888,0.08835800737142563,0.03414144366979599,0.04951824992895126,0.07073774933815002,0.013291249051690102,-0.030908817425370216,0.06454869359731674,0.03537653386592865,-0.037994384765625,-1.617636691264579e-8,-0.01204677764326334,0.009878371842205524,0.03125552460551262,0.0511031337082386,0.02066672593355179,0.006658507976680994,0.02688170224428177,0.009488905780017376,-0.004505204502493143,-0.05348236858844757,0.04166261851787567,0.06725466996431351,0.03996618092060089,0.056874409317970276,0.002903201151639223,0.03807990625500679,0.007943160831928253,-0.13233906030654907,0.01140349917113781,0.026907358318567276,0.033296212553977966,-0.057177867740392685,-0.010182664729654789,-0.03927593678236008,-0.02848801016807556,0.04763665050268173,-0.0441494919359684,0.036828141659498215,0.003937175031751394,0.02168826200067997,0.0680934265255928,-0.04272884130477905,-0.003178162034600973,-0.06454138457775116,-0.00273311254568398,0.09121961146593094,-0.08247850090265274,-0.026040073484182358,0.09308841824531555,-0.09497689455747604,-0.018656164407730103,0.09089413285255432,0.026908745989203453,0.058865029364824295,0.06292605400085449,-0.022437138482928276,-0.02881428599357605,0.0702052190899849,0.05972683057188988,-0.04428735747933388,0.0015315465861931443,0.14650015532970428,0.008067411370575428,0.00898969080299139,0.03024642914533615,-0.008869893848896027,0.022584857419133186,0.05322693660855293,-0.035101063549518585,0.06905598938465118,0.04651026800274849,-0.025945190340280533,-0.009109855629503727,0.008350820280611515]},{"text":"No animal shall drink alcohol. 6.","book":"Animal Farm","chapter":29,"embedding":[0.04391041770577431,0.02448328398168087,0.006461477838456631,0.08575460314750671,-0.007900913245975971,0.03503955900669098,-0.00775417173281312,-0.10534194111824036,0.009153158403933048,-0.03211939334869385,0.04780632629990578,-0.019965466111898422,-0.1381239891052246,0.048771392554044724,-0.025337161496281624,0.01865127496421337,-0.05318544805049896,-0.028223784640431404,0.02034037746489048,0.05714014172554016,0.006697271950542927,0.027121862396597862,0.07570189237594604,0.02353452704846859,-0.010482811369001865,0.002862784080207348,-0.002730038482695818,-0.005342904943972826,0.01968328095972538,0.018166018649935722,0.014654974453151226,0.08424484729766846,-0.030912069603800774,0.004869116470217705,0.05181188881397247,-0.07004614919424057,0.09907478094100952,-0.03451929986476898,0.07579260319471359,0.05759619548916817,0.049368783831596375,-0.04977414757013321,-0.0342290922999382,0.0324152447283268,-0.02521931193768978,0.058284297585487366,-0.15976141393184662,0.024338170886039734,0.07455115765333176,-0.03760846331715584,-0.060603827238082886,-0.04451705515384674,-0.057673368602991104,-0.03432111442089081,-0.023855092003941536,-0.0646892711520195,-0.015909776091575623,-0.06092008575797081,0.035512786358594894,-0.005520613398402929,0.006518279667943716,0.05747117102146149,0.045767251402139664,0.11263195425271988,0.020921502262353897,-0.020752208307385445,-0.029505055397748947,0.05846073105931282,-0.08947475254535675,0.0251409150660038,-0.04872386157512665,-0.06855908036231995,0.12897610664367676,-0.029776085168123245,-0.08984467387199402,-0.05184305086731911,-0.02551589533686638,-0.029654206708073616,0.043606143444776535,-0.017604492604732513,-0.08189933001995087,-0.028196366503834724,0.023774275556206703,0.04304333031177521,-0.0002544015587773174,-0.008186527527868748,-0.010278970934450626,-0.04543968290090561,-0.0931154265999794,0.09305176883935928,-0.04653184860944748,-0.039976540952920914,-0.011559667065739632,-0.10759049654006958,0.05303645879030228,0.0517902746796608,-0.017325185239315033,-0.08463811129331589,-0.08138158917427063,0.046344656497240067,-0.02791515924036503,0.07762571424245834,-0.006662178784608841,-0.017608873546123505,0.08210816234350204,0.003312814747914672,-0.05771836265921593,0.05714428052306175,0.053492676466703415,0.0005991915822960436,-0.08583970367908478,0.031025957316160202,0.07062815874814987,0.004870001692324877,0.019203850999474525,0.07994207739830017,0.019041230902075768,-0.040802109986543655,-0.04539794474840164,-0.03869625926017761,-0.018899153918027878,-0.0005575160030275583,0.06418489664793015,0.055433519184589386,-0.008328655734658241,-0.050334010273218155,0.027327848598361015,-3.92687516279815e-33,0.004203060641884804,-0.10435600578784943,-0.01956109330058098,-0.07575535774230957,0.03946438431739807,-0.026032794266939163,-0.019989529624581337,-0.01139447744935751,-0.061318233609199524,0.002946661552414298,-0.031734950840473175,-0.05718955025076866,-0.006482663564383984,-0.05161067470908165,0.13451698422431946,0.006833482533693314,0.08941967040300369,0.02938075177371502,0.11656692624092102,-0.053429242223501205,-0.005596643313765526,-0.0526767373085022,-0.036049533635377884,0.017550697550177574,-0.0433754101395607,0.017032114788889885,0.03773171827197075,-0.040915217250585556,-0.013826082460582256,0.013898123055696487,-0.1090894341468811,0.02146899327635765,0.0442015640437603,0.0010964000830426812,-0.030214959755539894,-0.001655985601246357,-0.09112507849931717,-0.07164233177900314,-0.06557615101337433,-0.02514323964715004,0.10856029391288757,0.04491426795721054,0.047433581203222275,-0.01740693673491478,0.04008549824357033,0.058277953416109085,-0.03992682322859764,0.014984721317887306,-0.023091360926628113,0.03754854202270508,0.006278784945607185,0.0180660430341959,0.1002005785703659,-0.005660632625222206,-0.026963336393237114,0.03502807393670082,0.03223210573196411,0.05144921690225601,-0.08014947175979614,-0.0698971375823021,-0.02988012321293354,-0.005359826609492302,-0.03738823160529137,-0.03302938863635063,-0.01091519370675087,-0.024041589349508286,-0.03455672785639763,-0.04560605809092522,-0.004372394643723965,-0.04374866187572479,-0.03141674026846886,0.05055058375000954,-0.020064711570739746,-0.06560356914997101,-0.04708394408226013,0.011251642368733883,0.04097440838813782,-0.02897610329091549,-0.00043729148455895483,-0.07129252701997757,0.02791379578411579,0.06114383786916733,0.022413460537791252,0.03745502606034279,0.12519440054893494,0.051710888743400574,0.054376743733882904,-0.061175618320703506,0.07211440056562424,-0.0575188510119915,0.10083669424057007,-0.04121382161974907,-0.024141496047377586,-0.06862196326255798,0.016733385622501373,2.706307766790528e-33,0.013902697712182999,-0.0070244744420051575,0.02517510950565338,0.04647594690322876,-0.03945007920265198,0.0023961493279784918,0.058142077177762985,0.027742015197873116,0.052483707666397095,-0.026644647121429443,0.04233220964670181,0.014894090592861176,0.010886742733418941,-0.056698113679885864,0.09179103374481201,0.015939343720674515,0.0030820525716990232,0.03917156532406807,-0.010993377305567265,-0.05897241830825806,-0.055590931326150894,0.005066750105470419,-0.021081361919641495,0.07052816450595856,-0.007508647628128529,0.06344004720449448,0.027913659811019897,-0.0034442611504346132,-0.017062146216630936,-0.06247537210583687,0.07983759045600891,0.03836702182888985,-0.02040952630341053,-0.07301858812570572,0.02873738296329975,-0.057203080505132675,0.036094650626182556,-0.008017092011868954,-0.09986558556556702,-0.007477059029042721,0.08122895658016205,0.07591048628091812,-0.08971773833036423,-0.014932051301002502,0.042291395366191864,0.006470141466706991,0.02549871616065502,-0.04470377415418625,-0.03365907445549965,0.024741144850850105,0.032886799424886703,-0.04934034124016762,-0.018687600269913673,-0.04633982107043266,0.030187232419848442,-0.025341106578707695,0.03486251085996628,-0.06011581048369408,0.03487640991806984,-0.050015587359666824,0.030951574444770813,0.08227989822626114,-0.03734572231769562,0.031402673572301865,-0.020900210365653038,-0.03144483268260956,-0.05272604525089264,0.13740359246730804,0.060389645397663116,-0.09089934825897217,0.10500387102365494,0.04445604607462883,-0.07707423716783524,-0.012849625200033188,-0.025643745437264442,-0.011996705085039139,0.021548699587583542,0.01610945537686348,0.054719872772693634,-0.03720841556787491,-0.017328057438135147,0.06451749056577682,-0.06369149684906006,0.09698250889778137,0.05551006644964218,-0.1001431867480278,0.10227540135383606,0.020003754645586014,0.0012625213712453842,0.06364760547876358,0.023051980882883072,-0.008567615412175655,0.002523781033232808,0.043245941400527954,-0.009937766939401627,-1.3779924756818218e-8,-0.04521538317203522,-0.03218373656272888,0.035932768136262894,0.07892580330371857,0.022353822365403175,0.05939488857984543,0.019717862829566002,-0.05929446592926979,-0.032292600721120834,0.0676339641213417,0.0784425213932991,0.005743767600506544,-0.006094453856348991,0.07369610667228699,-0.00957227312028408,0.07557286322116852,0.026954825967550278,-0.058008912950754166,-0.032886605709791183,0.02226930856704712,-0.07884135097265244,0.005252952687442303,0.008139400742948055,0.029590731486678123,-0.009186483919620514,-0.07606722414493561,-0.006974519696086645,0.07806286960840225,0.06919684261083603,-0.0031296066008508205,-0.062014538794755936,0.050876472145318985,-0.08543641120195389,-0.008915748447179794,-0.028131693601608276,-0.04522835835814476,-0.005292273126542568,-0.02997199445962906,0.0017053798073902726,0.044320907443761826,-0.05950446054339409,0.013987010344862938,-0.01693781279027462,-0.029118653386831284,-0.03323430195450783,-0.011812372133135796,0.022677287459373474,0.011178621090948582,-0.018620118498802185,0.004454321693629026,-0.012362178415060043,0.08887475728988647,0.038256511092185974,0.011416001245379448,0.00879552774131298,-0.0025772443041205406,-0.0164045337587595,-0.012862095609307289,-0.030687546357512474,-0.03478555753827095,0.16055354475975037,-0.013819146901369095,0.08302745968103409,0.014335266314446926]},{"text":"Let us make it a point of honour to get in the harvest more quickly than Jones and his men could do.\" But at this moment the three cows, who had seemed uneasy for some time past, set up a loud lowing.","book":"Animal Farm","chapter":29,"embedding":[-0.01789502613246441,-0.011715319938957691,-0.001656835782341659,0.05910756066441536,0.03144562616944313,-0.0781080350279808,0.048569124191999435,0.01840280368924141,-0.05762236937880516,-0.02848503552377224,0.020211033523082733,-0.059948910027742386,-0.042971864342689514,-0.01694188080728054,0.015303200110793114,0.03886343538761139,0.0060652634128928185,0.006360330618917942,-0.016845565289258957,-0.03912758082151413,0.006119230762124062,-0.022291064262390137,0.054524172097444534,0.06342025846242905,0.030662216246128082,-0.058621667325496674,-0.06879374384880066,0.019139530137181282,0.00342435366474092,0.017380226403474808,-0.05689854547381401,-0.00047515169717371464,0.12023990601301193,-0.018392138183116913,-0.07200951129198074,-0.03530185669660568,0.12952710688114166,-0.02016165293753147,0.10184864699840546,0.06261415779590607,0.06860210001468658,-0.06517152488231659,0.030889732763171196,-0.028255322948098183,-0.0801040381193161,0.033897969871759415,-0.048406876623630524,-0.03968586400151253,0.06709907203912735,-0.055955544114112854,0.027609705924987793,0.002952702809125185,-0.019429655745625496,-0.076304592192173,0.015297416597604752,0.016873501241207123,0.03425664082169533,0.0009047628846019506,0.024225231260061264,-0.00187002366874367,-0.008827955462038517,-0.0010482796933501959,-0.004929369315505028,0.05975979194045067,0.08555325120687485,-0.06143965944647789,-0.024720491841435432,-0.008611267432570457,-0.056913699954748154,0.07937364280223846,0.004605654161423445,-0.04177476465702057,-0.0339675098657608,-0.0854635238647461,-0.06935007870197296,0.09342052787542343,0.08202820271253586,-0.012266525998711586,0.02856825478374958,-0.08008565753698349,-0.015545438975095749,-0.06624890118837357,-0.08219771087169647,0.010225648991763592,-0.08799581229686737,-0.03808041289448738,0.025128202512860298,-0.08197993040084839,-0.04342259094119072,-0.042410366237163544,-0.06972292065620422,-0.09243322163820267,-0.0915297344326973,0.10235131531953812,-0.00646569998934865,0.012929894030094147,-0.020633624866604805,-0.026436565443873405,-0.0389886237680912,0.07480791211128235,-0.028325136750936508,0.024422679096460342,0.044001512229442596,-0.03885965049266815,-0.0021806268487125635,0.0023323693312704563,-0.13743402063846588,0.041005462408065796,-0.05885723978281021,0.00929082091897726,-0.02256067842245102,0.08352656662464142,0.0382014699280262,0.09918424487113953,-0.008816629648208618,0.149852454662323,-0.06861884146928787,-0.11168783903121948,-0.08530554920434952,-0.015675339847803116,0.05444962531328201,0.024431301280856133,0.012263350188732147,0.03820142522454262,0.0489036850631237,0.007567955181002617,0.12095461785793304,1.0374606409800342e-33,0.043664198368787766,-0.06652221083641052,-0.00947383139282465,-0.06535909324884415,0.06437548995018005,0.0475785955786705,-0.1318129003047943,-0.028296450152993202,0.017314035445451736,0.0236511267721653,-0.016193635761737823,-0.03496731445193291,0.060263097286224365,-0.08456331491470337,-0.05426337942481041,-0.11877799779176712,0.04796392470598221,-0.020163726061582565,0.02316569723188877,-0.03528376296162605,-0.014383113943040371,0.03900277242064476,-0.07112397253513336,0.020225271582603455,-0.004777123685926199,0.000893636024557054,0.04078647121787071,-0.06672495603561401,0.012674292549490929,0.024938322603702545,-0.038196172565221786,-0.07663285732269287,-0.008583108894526958,-0.05531417205929756,-0.003168222028762102,-0.03470239415764809,0.031143320724368095,-0.047360993921756744,-0.005778366234153509,0.027537096291780472,-0.021068193018436432,0.058742705732584,0.0674760490655899,0.00487291906028986,-0.02835053578019142,0.12609122693538666,-0.005626027472317219,0.020417604595422745,-0.101347416639328,0.022714974358677864,-0.020490571856498718,-0.02057933434844017,0.04109826311469078,0.0025797393172979355,0.0609322190284729,-0.029228338971734047,0.040739886462688446,-0.05947643145918846,0.012362882494926453,-0.0686039999127388,0.04340992867946625,0.0340348556637764,-0.023826809599995613,0.030826229602098465,-0.0004684839805122465,-0.014538336545228958,-0.011264820583164692,-0.031776100397109985,0.026084810495376587,0.0724581927061081,-0.03335675969719887,-0.029685713350772858,-0.052778132259845734,-0.11973156780004501,0.011371130123734474,0.016850080341100693,0.0681232139468193,0.01887793280184269,0.04719291627407074,-0.0691516101360321,0.05908194184303284,-0.018224099650979042,-0.05030684918165207,0.02747715450823307,0.010425024665892124,0.012026743963360786,-0.0705176517367363,-0.05370264872908592,-0.05281195044517517,0.009308628737926483,-0.05800860375165939,0.07650730013847351,0.01106493640691042,-0.09531670808792114,0.020418686792254448,-2.517579393701125e-33,0.03538544476032257,0.12047269940376282,0.026372866705060005,0.054668575525283813,0.046502869576215744,-0.04265161603689194,0.006257912609726191,-0.02227603644132614,-0.005701580550521612,-0.031055931001901627,-0.00617709755897522,-0.009429174475371838,-0.003540159435942769,-0.015462569892406464,0.048007749021053314,-0.059867482632398605,0.03733218088746071,0.04255540296435356,0.04218932241201401,0.051966115832328796,0.027285274118185043,-0.014575711451470852,-0.07315930724143982,0.0031629283912479877,0.01700373739004135,0.05046171694993973,-0.09541510045528412,-0.038088008761405945,-0.09470274299383163,-0.08101266622543335,-0.06395761668682098,-0.08434135466814041,0.021690789610147476,-0.011133012361824512,0.005456809885799885,0.036517709493637085,0.01604286953806877,0.04218391701579094,-0.01744988188147545,0.0037716873921453953,-0.0016832464607432485,0.06313182413578033,-0.024097232148051262,0.03955717012286186,-0.051449209451675415,0.08330510556697845,-0.011811370961368084,0.014363803900778294,-0.016353381797671318,0.07321735471487045,-0.03573325276374817,-0.017850138247013092,0.006963260471820831,0.04351230338215828,0.008005297742784023,-0.012063225731253624,0.10158855468034744,-0.06047455593943596,0.013443571515381336,0.03544016182422638,-0.05447690188884735,0.027164103463292122,0.009943091310560703,-0.02742520347237587,-0.012032308615744114,0.037479642778635025,0.010198468342423439,0.004722789861261845,0.03737429156899452,-0.04410918056964874,0.010080242529511452,-0.024656793102622032,-0.011892112903296947,0.008306789211928844,-0.0006685398984700441,0.04468382149934769,-0.09987207502126694,0.0003660979273263365,-0.031034840270876884,-0.020821193233132362,-0.011785251088440418,-0.06014235317707062,0.025121329352259636,0.10728815943002701,0.027699653059244156,-0.004867290612310171,0.006870907265692949,0.048563603311777115,0.06252589821815491,0.00942894909530878,0.01816108264029026,-0.006014846730977297,0.14018520712852478,-0.0015715004410594702,0.026016220450401306,-3.751275201580029e-8,-0.040306251496076584,-0.031572841107845306,-0.04947154223918915,-0.022959459573030472,0.12190574407577515,0.02958771027624607,-0.06695927679538727,0.011364574544131756,0.00734621100127697,0.07613109797239304,0.009340543299913406,0.11172648519277573,-0.005874188616871834,0.05796134099364281,0.05207577720284462,0.010616344399750233,0.025810113176703453,-0.10443468391895294,-0.040084291249513626,0.01211373507976532,-0.042138196527957916,-0.018098914995789528,-0.06725709140300751,-0.06042032688856125,0.06597677618265152,0.003816559910774231,-0.030604660511016846,0.03203681483864784,0.04221431538462639,0.04251907765865326,0.03720204904675484,0.07158449292182922,-0.08538026362657547,0.024983761832118034,0.0019970806315541267,0.0731755718588829,-0.07568448781967163,0.07140211015939713,0.07899890094995499,-0.08355215936899185,-0.09483695030212402,0.02102910540997982,0.008576863445341587,0.04779284819960594,0.01538852322846651,-0.013865926302969456,0.013429746963083744,0.04700062796473503,-0.030728958547115326,-0.03650379553437233,-0.04105949401855469,-0.009919396601617336,0.09902597218751907,0.06500555574893951,0.028077661991119385,-0.0487227700650692,-0.061848513782024384,-0.04784584417939186,-0.013864129781723022,-0.011034703813493252,0.04731476306915283,-0.02094379998743534,-0.0521235428750515,-0.005813067313283682]},{"text":"Comrade Snowball will lead the way.","book":"Animal Farm","chapter":30,"embedding":[-0.013423833064734936,0.01109128538519144,-0.0041535054333508015,-0.034521616995334625,-0.007317171897739172,0.06560219824314117,-0.026634134352207184,0.02742248773574829,-0.060112111270427704,-0.015577402897179127,-0.05332588404417038,0.09611659497022629,0.008513333275914192,0.057881053537130356,0.037905097007751465,0.010975806042551994,-0.026255471631884575,0.006005199160426855,-0.03736776113510132,-0.011880600824952126,-0.01786433719098568,-0.06610538810491562,0.08934970945119858,0.0013125600526109338,0.012863759882748127,0.043963853269815445,0.04763098061084747,0.008173211477696896,-0.05893200635910034,0.004597195889800787,0.007436170242726803,-0.049029260873794556,-0.06015656888484955,0.07019540667533875,0.05895331874489784,0.026781810447573662,0.03664031997323036,-0.010113336145877838,0.01480392087250948,0.056000005453825,0.004001850727945566,-0.07677830755710602,-0.0056360820308327675,0.028080476447939873,0.01361337024718523,0.054000720381736755,-0.019052254036068916,0.06623111665248871,0.04764442518353462,0.006924302317202091,-0.0144659373909235,0.0019257565727457404,-0.03237025439739227,0.09436126798391342,0.02778412215411663,-0.020346153527498245,-0.004615161567926407,-0.027645248919725418,0.0052096345461905,-0.040939588099718094,-0.060788318514823914,-0.034608393907547,-0.06433356553316116,-0.04737290367484093,0.025849418714642525,-0.05789678543806076,0.016938505694270134,0.07077842205762863,-0.03617386519908905,0.08025325834751129,0.09192084521055222,0.06623619794845581,0.02723938785493374,0.05406012758612633,-0.10010043531656265,0.010017195716500282,-0.02286110632121563,-0.017458109185099602,0.08181703835725784,0.048233211040496826,0.053286269307136536,0.09467974305152893,0.030560599640011787,0.010486245155334473,0.009027882479131222,0.018951119855046272,0.003812043694779277,0.010069809854030609,0.08090803027153015,0.03794777765870094,-0.20610976219177246,0.03761637210845947,0.015951359644532204,0.03911293298006058,-0.12044314295053482,0.05795176699757576,0.0594952367246151,0.005292512010782957,-0.08702226728200912,0.08064012229442596,0.016209132969379425,-0.03176051378250122,-0.04176470637321472,-0.07083341479301453,0.06143677979707718,-0.00033369436278007925,-0.03575330972671509,0.00737755699083209,-0.01225251518189907,0.027123281732201576,0.009114350192248821,-0.07163511216640472,-0.01968425139784813,0.0421503484249115,0.026151498779654503,-0.007235853932797909,-0.04392911493778229,0.02349225990474224,-0.1384706199169159,0.04342260584235191,0.03952927142381668,0.06123556196689606,-0.03740955889225006,0.07640866190195084,0.07530408352613449,0.007984255440533161,-0.045020975172519684,-3.580996602986246e-33,-0.020104078575968742,0.04598230496048927,-0.002526197349652648,0.0691077709197998,-0.04131168872117996,0.05822749063372612,0.02176482416689396,0.03784043341875076,-0.046190015971660614,0.03311297297477722,-0.04502880200743675,0.06826221942901611,-0.04787321388721466,-0.0686226561665535,0.02818765677511692,-0.10330408811569214,-0.06221625953912735,-0.01872090809047222,-0.0489492192864418,0.02230929210782051,0.04143662378191948,-0.006404985208064318,-0.009754430502653122,0.056667063385248184,0.03939007967710495,-0.0235589612275362,0.025889547541737556,-0.04518446698784828,0.05696368217468262,0.021289503201842308,0.06795375049114227,0.010649570263922215,-0.13073210418224335,0.05317002907395363,0.009239643812179565,-0.04805135726928711,-0.07465124130249023,-0.043260544538497925,-0.020491253584623337,0.0037106312811374664,-0.0008196751005016267,-0.038077425211668015,-0.0651475116610527,-0.013608966022729874,0.10328055173158646,0.017523081973195076,0.08302423357963562,-0.050004635006189346,-0.011003631167113781,-0.08499845862388611,-0.0019996396731585264,0.032329730689525604,0.037575412541627884,0.0028163709212094545,0.0021972875110805035,-0.05105948820710182,0.009208018891513348,0.07058966904878616,0.006260104943066835,-0.1146879717707634,0.02122355066239834,-0.019874488934874535,0.004028860945254564,0.04067160189151764,-0.04160105064511299,0.029040122404694557,0.026851465925574303,0.013470198027789593,-0.048956289887428284,0.05032559856772423,0.07889688014984131,0.004506710916757584,-0.08502932637929916,0.03617509454488754,-0.117388516664505,0.025705687701702118,0.02257145196199417,-0.06328969448804855,0.08789090812206268,-0.08973518759012222,-0.08575216680765152,-0.02793968841433525,0.017900152131915092,0.010223637335002422,0.03927392512559891,0.023387689143419266,0.056353334337472916,-0.02175121381878853,-0.03827185556292534,-0.05185221880674362,-0.10289430618286133,-0.031359560787677765,0.008549016900360584,0.0652565211057663,-0.08143401145935059,2.8328269584535e-33,0.061706263571977615,-0.06112337112426758,-0.00662651751190424,0.045093707740306854,0.04485705494880676,0.05327719822525978,0.02712089754641056,-0.06339036673307419,0.11074400693178177,0.08208614587783813,-0.006385842338204384,-0.0312519297003746,0.0554639995098114,0.0572751946747303,0.08748529106378555,-0.052400700747966766,0.10240962356328964,0.053548019379377365,-0.03158685937523842,0.0019733556546270847,-0.07324658334255219,0.048932675272226334,-0.09091644734144211,0.05434803664684296,-0.009565622545778751,0.028611456975340843,0.08279864490032196,-0.05147864297032356,-0.040512219071388245,0.015022993087768555,-0.018840031698346138,-0.02185073122382164,-0.04767169803380966,-0.05114688351750374,0.042042434215545654,0.06312452256679535,0.015683572739362717,-0.05535746365785599,-0.07520692050457001,-0.010938801802694798,0.03931623697280884,-0.013662395067512989,0.004554350860416889,0.08002518862485886,0.024060653522610664,-0.026307307183742523,-0.046411074697971344,0.07972505688667297,0.02677987329661846,0.027532950043678284,-0.07400840520858765,0.030108336359262466,-0.04563411325216293,0.008782385848462582,-0.058139968663454056,-0.007012876216322184,-0.018684405833482742,-0.09155777096748352,-0.04217754304409027,-0.0842239037156105,-0.06495380401611328,-0.02169571816921234,-0.004994489252567291,0.030321991071105003,0.061588726937770844,-0.027029311284422874,-0.05855860188603401,0.07225500792264938,0.02097725123167038,0.1079501062631607,0.08154366165399551,0.0214847419410944,0.020733440294861794,0.010396868921816349,0.025735311210155487,-0.022054459899663925,0.06499306112527847,0.0667652115225792,0.03240116313099861,-0.06735921651124954,0.010326907970011234,0.006651129573583603,-0.025158412754535675,-0.020701805129647255,0.07309294492006302,0.026317790150642395,0.0954098105430603,-0.03056660108268261,0.016215041279792786,0.09439218789339066,-0.024684986099600792,-0.049256160855293274,0.08608520030975342,0.0015283448155969381,-0.001636219909414649,-1.5793306218370162e-8,0.037975799292325974,0.011664573103189468,0.04133262485265732,0.09407700598239899,-0.018274376168847084,0.0045892479829490185,-0.06415193527936935,-0.014456593431532383,0.030484843999147415,0.023228948935866356,-0.030344447121024132,0.04647234082221985,0.0709288939833641,0.07204317301511765,-0.03951558843255043,0.05921586975455284,-0.00256403093226254,-0.0026551359333097935,-0.08635120093822479,-0.035596102476119995,-0.053460005670785904,-0.03826722502708435,-0.0013777267886325717,-0.006699424237012863,-0.07450981438159943,0.03559955582022667,-0.0716756284236908,-0.0579400435090065,0.0052039665170013905,0.05920211225748062,-0.10327421128749847,-0.033986080437898636,-0.02947685308754444,-0.003268038621172309,0.05765792727470398,0.034810010343790054,-0.07842675596475601,0.04748675972223282,-0.0035395740997046232,-0.04037929326295853,-0.05652265623211861,0.03916649520397186,0.02969232015311718,0.012062943540513515,-0.05822290480136871,-0.06911590695381165,-0.004631343763321638,-0.018974969163537025,0.006472460925579071,0.025633573532104492,-0.00955495610833168,0.023758824914693832,-0.047908686101436615,0.047947101294994354,0.011269330978393555,0.09052581340074539,-0.024554528295993805,0.0018979244632646441,-0.07446667551994324,0.004284495022147894,-0.07371614128351212,-0.09666372090578079,-0.021815113723278046,0.012780377641320229]},{"text":"Sometimes the work was hard; the implements had been designed for human beings and not for animals, and it was a great drawback that no animal was able to use any tool that involved standing on his hind legs.","book":"Animal Farm","chapter":30,"embedding":[-0.04528691619634628,0.10343322157859802,0.018990740180015564,0.038478489965200424,-0.0798259750008583,-0.03297476842999458,-0.03380636125802994,0.0721462219953537,-0.038493603467941284,0.1018531396985054,0.023814303800463676,0.04351846128702164,-0.009923085570335388,0.0654834434390068,-0.007986128330230713,-0.0600975826382637,-0.0048531643114984035,-0.009692433290183544,0.02866809442639351,0.02597999759018421,-0.005669090896844864,0.056565385311841965,0.06368433684110641,0.018145915120840073,-0.10522297024726868,-0.04409365728497505,-0.12310633063316345,0.026323651894927025,0.09723414480686188,-0.035685945302248,-0.06349825114011765,-0.020257333293557167,-0.023747479543089867,-0.03209199011325836,-0.04173828288912773,-0.0022463463246822357,0.08725012093782425,-0.01275501400232315,0.014320122078061104,0.046344444155693054,-0.019500169903039932,-0.048320330679416656,0.02431616559624672,-0.05666058510541916,-0.02633429504930973,0.012482664547860622,-0.017361754551529884,-0.10616756230592728,0.015072033740580082,-0.04483059048652649,0.021846970543265343,-0.03262986242771149,0.06475843489170074,-0.0624580979347229,-0.014940205961465836,-0.06398311257362366,-0.019368045032024384,-0.03580506518483162,-0.0016431845724582672,-0.03625524044036865,0.07669670879840851,0.035736192017793655,0.016314802691340446,0.023774979636073112,0.007183869834989309,-0.07777318358421326,-0.04204513877630234,-0.11219581961631775,-0.005023549776524305,0.045541319996118546,-0.009051035158336163,-0.09366054087877274,-0.031657952815294266,-0.03143974021077156,-0.018896739929914474,-0.04865119978785515,0.02710726112127304,0.02242249809205532,0.017717333510518074,-0.07725294679403305,-0.05173882097005844,0.013442507945001125,0.023617731407284737,0.0878460556268692,0.036590661853551865,0.07423218339681625,0.0009181912755593657,-0.016530441120266914,-0.040728628635406494,-0.03575247526168823,0.06405223906040192,0.023995326831936836,-0.010532202199101448,-0.05021551623940468,0.06183316186070442,-0.027202464640140533,-0.013982640579342842,0.0664103701710701,-0.044638313353061676,0.0037307534366846085,0.004011657554656267,-0.027933653444051743,0.03363245353102684,-0.004507099743932486,0.011604126542806625,-0.0096741933375597,-0.04631688445806503,-0.08500278741121292,0.009232785552740097,0.022371510043740273,-0.10147549211978912,0.015885228291153908,0.017037922516465187,0.1081792563199997,-0.023875661194324493,0.028457382693886757,-0.10854556411504745,-0.10168664902448654,-0.045664455741643906,-0.03732722997665405,0.08248373866081238,0.005227634217590094,0.0023097528610378504,0.03861994668841362,0.022535335272550583,0.03541513904929161,0.03980094939470291,-3.1453882431077577e-34,0.07166794687509537,-0.0692671611905098,-0.006465027574449778,-0.1064009740948677,0.05784099921584129,-0.04056050255894661,-0.01723523810505867,0.0207481998950243,0.02596980892121792,0.03243423253297806,0.00930254440754652,0.01940816082060337,0.02510901354253292,0.003002224024385214,0.0666508823633194,0.009745505638420582,0.04751823842525482,-0.03600751981139183,0.027232373133301735,-0.002396318828687072,-0.023984620347619057,-0.04393763840198517,0.05553654953837395,0.03349120914936066,0.03271237388253212,0.09466659277677536,0.00035749151720665395,-0.01274994108825922,-0.022134894505143166,0.025075770914554596,-0.05587222799658775,-0.04553571343421936,0.012256436049938202,0.028740547597408295,-0.07293037325143814,-0.03478066250681877,0.02868298627436161,-0.12515929341316223,-0.04546546936035156,0.020444875583052635,0.1172485426068306,0.00396922929212451,0.09533477574586868,-0.026932554319500923,0.008086315356194973,0.06708413362503052,-0.017334936186671257,0.0879911333322525,-0.04528183862566948,0.05720147117972374,0.011490332894027233,0.16277068853378296,0.10929244011640549,-0.057712212204933167,0.03988819196820259,0.05583658441901207,0.002352735260501504,0.01726863905787468,-0.08186417073011398,0.06552847474813461,-0.041286319494247437,0.0608934685587883,0.05373990163207054,0.033476393669843674,0.0004524012329056859,-0.06965145468711853,-0.013859599828720093,0.05279681086540222,-0.020663022994995117,-0.026991156861186028,-0.09931126236915588,-0.026480430737137794,-0.07551164925098419,-0.1273924559354782,-0.0015973271802067757,-0.00670600077137351,0.042583830654621124,0.023391008377075195,0.009540153667330742,-0.11027371138334274,0.003474918892607093,0.07806265354156494,-0.03465498983860016,-0.020893316715955734,0.035421621054410934,0.00848945789039135,0.0641980916261673,-0.025849664583802223,0.022681787610054016,0.03322403132915497,-0.01420536171644926,-0.0734265148639679,-0.042777590453624725,-0.012535893358290195,0.02223745919764042,-1.313225279033708e-33,-0.07312735915184021,0.021808220073580742,-0.00622589560225606,0.06549321860074997,-0.009802955202758312,-0.03579957038164139,-0.04958318918943405,-0.1036752462387085,0.010815313085913658,0.007824432104825974,-0.02710501104593277,-0.0012041180161759257,-0.0030064210295677185,-0.04530817270278931,0.12100547552108765,-0.01381844561547041,-0.10954790562391281,-0.015531975775957108,0.026266485452651978,-0.04637365788221359,0.08419089019298553,0.057442378252744675,0.02370181865990162,-0.05195657163858414,-0.03441082313656807,0.05782310292124748,-0.08459127694368362,-0.07096314430236816,-0.08521243929862976,-0.06737412512302399,0.01469453051686287,-0.030713506042957306,-0.03227429836988449,-0.03320278227329254,0.020244231447577477,-0.0388195626437664,-0.09244446456432343,0.07402797043323517,0.04980859160423279,-0.07367545366287231,0.0947408527135849,0.0181837510317564,0.011483869515359402,0.029489854350686073,0.006908508017659187,0.03274095058441162,-0.05841433256864548,-0.018882017582654953,-0.024384526535868645,0.011465515941381454,0.014590399339795113,0.00949581153690815,0.0770711600780487,-0.09821721911430359,0.014952865429222584,-0.04568289592862129,0.0162577573210001,-0.11203204840421677,0.05105520784854889,0.04261091351509094,-0.013685396872460842,0.020614802837371826,-0.031702227890491486,0.0681663453578949,0.0007595728966407478,0.03802954778075218,-0.017854489386081696,0.026620807126164436,-0.02845361828804016,-0.027659576386213303,0.035379067063331604,0.044140156358480453,0.08019997924566269,0.05145462602376938,0.038441501557826996,0.13415353000164032,0.012132721021771431,-0.06442166119813919,0.02113937959074974,-0.02614997699856758,-0.0214181300252676,-0.06062062457203865,0.03611712530255318,-0.035088781267404556,0.005889038555324078,0.07335300743579865,-0.08476954698562622,0.10425256192684174,-0.020867368206381798,-0.003940153401345015,0.03044837899506092,-0.0005327225080691278,0.03838997334241867,0.10518854856491089,0.06551026552915573,-3.316400665198671e-8,-0.03372868523001671,0.03828755021095276,0.015744496136903763,-0.002332418691366911,-0.02692728117108345,0.05514805018901825,-0.007464526686817408,-0.028051836416125298,-0.03005562722682953,0.049445703625679016,-0.06443020701408386,-0.010642570443451405,0.051879215985536575,0.1596423089504242,0.010600168257951736,0.025084521621465683,0.01608673669397831,-0.005484502296894789,-0.055649418383836746,0.010053683072328568,-0.0341564305126667,-0.02043808251619339,0.008112676441669464,-0.047569237649440765,-0.08518968522548676,-0.0381825752556324,-0.09144248068332672,-0.0048619103617966175,-0.057286955416202545,0.06460890173912048,0.038117919117212296,0.06912894546985626,-0.02371208369731903,0.05768227577209473,0.053456030786037445,0.007073969580233097,-0.056457601487636566,-0.01451264787465334,-0.004612501244992018,-0.03142745792865753,0.0069285426288843155,0.03514890745282173,-0.009891968220472336,0.015146401710808277,0.008840913884341717,0.024987785145640373,-0.07361328601837158,0.014191199094057083,-0.0464731827378273,0.02250833250582218,-0.05541199445724487,-0.016907447949051857,0.046708885580301285,-0.010187150910496712,0.026811594143509865,-0.02218887209892273,0.047428011894226074,-0.08715638518333435,-0.035459741950035095,0.027580484747886658,0.006139629054814577,0.027623606845736504,0.015263264998793602,0.07021459192037582]},{"text":"Boxer and Clover would harness themselves to the cutter or the horse-rake (no bits or reins were needed in these days, of course) and tramp steadily round and round the field with a pig walking behind and calling out \"Gee up, comrade!\" or \"Whoa back, comrade!\" as the case might be.","book":"Animal Farm","chapter":30,"embedding":[-0.022730311378836632,0.02633872628211975,-0.03486687317490578,0.04757299646735191,0.017002495005726814,-0.016319094225764275,-0.010864521376788616,-0.019813863560557365,-0.05961102992296219,0.02802247554063797,0.07599218189716339,0.009661690331995487,-0.019843222573399544,0.06477798521518707,-0.05532775819301605,0.020660197362303734,0.009504653513431549,0.0744856670498848,-0.04437393695116043,0.0006845789030194283,-0.03696511685848236,-0.029028460383415222,0.0728486031293869,0.09905564039945602,-0.022150009870529175,-0.0395689532160759,-0.05017409846186638,0.039961498230695724,-0.0335238017141819,-0.01841721497476101,-0.015479600988328457,-0.004576615057885647,0.04322134703397751,-0.01601390540599823,-0.06904582679271698,0.04975533112883568,0.11026392132043839,0.0423186793923378,0.07051757723093033,-0.040101174265146255,-0.033205628395080566,-0.1607569456100464,-0.03856971487402916,-0.011713910847902298,0.06277931481599808,0.05007799342274666,0.049613628536462784,0.015353865921497345,0.07365340739488602,-0.09358924627304077,0.049032267183065414,0.00615740567445755,-0.008015354163944721,0.02959577552974224,0.01671743020415306,-0.027676410973072052,0.029461735859513283,0.004119028802961111,0.01569320820271969,0.09099892526865005,-0.08065961301326752,0.057861924171447754,0.028255261480808258,0.05939953029155731,-0.01206603180617094,-0.020705927163362503,-0.06249932944774628,0.057161469012498856,-0.026485780254006386,0.03608960285782814,0.03760272637009621,-0.048172999173402786,-0.06911475211381912,-0.02388290874660015,-0.10053583979606628,0.039063774049282074,-0.06659002602100372,0.0612482875585556,0.02851339988410473,0.013011001981794834,-0.011295802891254425,-0.013508540578186512,-0.018723076209425926,0.05273888260126114,0.029173463582992554,0.02576105296611786,-0.028626685962080956,-0.029684074223041534,0.03295420482754707,-0.03730365261435509,-0.1577734500169754,-0.04424804821610451,0.048312388360500336,0.07403918355703354,-0.004257095046341419,-0.012682919390499592,0.003577024210244417,-0.005967568140476942,-0.10243526101112366,0.03208266571164131,0.02179788425564766,0.0008084513829089701,-0.03446241840720177,-0.08613146841526031,0.04265540838241577,0.046250294893980026,-0.08727854490280151,-0.05420949310064316,0.011768358759582043,-0.009868031367659569,0.03810589388012886,-0.03802713379263878,-0.006887906696647406,0.03599324822425842,0.045253124088048935,0.061927761882543564,-0.09157997369766235,-0.04467938095331192,-0.13398541510105133,0.04339590668678284,0.057466812431812286,0.037583041936159134,-0.05027207359671593,0.023397615179419518,0.08164828270673752,0.03310146555304527,0.02927067130804062,1.9927450892057228e-34,0.038485001772642136,0.054883331060409546,-0.04430985078215599,0.0349578782916069,0.04932984337210655,-0.032410625368356705,-0.02626911737024784,0.03098701499402523,0.06984230875968933,0.05206935480237007,-0.01865273341536522,-0.05131053924560547,0.028234243392944336,-0.012450997717678547,0.04265584424138069,-0.03839728981256485,-0.03401302546262741,-0.03367822617292404,0.013543064706027508,0.016481908038258553,-0.009363762103021145,0.0327104814350605,-0.07645700871944427,0.04776640981435776,0.08616509288549423,-0.019787130877375603,-0.0031433780677616596,-0.05760503187775612,0.10108963400125504,0.04016827419400215,-0.006711226888000965,0.000888531212694943,-0.02768712118268013,0.04989634081721306,-0.08135759830474854,-0.03424888104200363,0.0012092068791389465,-0.10892577469348907,-0.06069427356123924,0.03736774995923042,0.0613311231136322,-0.04643755406141281,-0.014350310899317265,-0.017239511013031006,-0.06120426207780838,-0.011910404078662395,0.007335117552429438,0.031059468165040016,-0.04429575428366661,0.002881574910134077,0.07129919528961182,0.06769575923681259,0.061710018664598465,0.016004055738449097,0.07342027872800827,-0.021608268842101097,0.02878178283572197,0.0335862897336483,-0.056032855063676834,-0.02255258336663246,0.05447813495993614,0.02950533665716648,-0.04393506050109863,0.07410325855016708,-0.060746751725673676,-0.07489537447690964,-0.04476657137274742,0.04133516550064087,-0.08497496694326401,0.07336800545454025,-0.048554036766290665,-0.025006474927067757,-0.09726965427398682,-0.09642162919044495,-0.01158942561596632,-0.007159828674048185,0.0389806367456913,-0.01784103736281395,0.06258469820022583,-0.11351866275072098,-0.00942983292043209,0.03612396866083145,-0.020054835826158524,-0.03172311559319496,0.031340692192316055,0.0450340211391449,0.057644762098789215,-0.05734259635210037,-0.04528217390179634,-0.09878437221050262,-0.04010895639657974,0.005808837246149778,-0.014276302419602871,0.02158067375421524,0.01071907114237547,-1.3851228297983185e-33,0.009210985153913498,0.04383114352822304,0.02680860459804535,0.07583269476890564,0.028184693306684494,0.04775882884860039,0.004701303318142891,-0.11003273725509644,0.04012148827314377,0.03244667872786522,-0.15211375057697296,-0.04881131276488304,0.003806737717241049,0.05221870169043541,0.1032462939620018,-0.10607673227787018,0.0033525549806654453,0.00034254093770869076,0.02643744647502899,0.06349125504493713,-0.006212329026311636,-0.06342257559299469,0.007027669344097376,-0.020971545949578285,-0.011472757905721664,0.04642004147171974,0.029911600053310394,-0.02176256850361824,0.009329257532954216,-0.021595153957605362,-0.03226397931575775,-0.08908412605524063,-0.06131192296743393,0.007476922124624252,-0.02844444289803505,0.045846790075302124,0.004321050364524126,0.02490823157131672,-0.04950821399688721,-0.058346182107925415,0.007800366263836622,-0.0405733622610569,-0.050907768309116364,0.06599977612495422,-0.07193385064601898,-0.037691161036491394,-0.0759536474943161,0.021837802603840828,-0.05280831828713417,0.05598532035946846,0.01579677127301693,0.03785700350999832,-0.022280124947428703,0.04078856483101845,-0.0965496301651001,-0.03883028030395508,0.010239982977509499,-0.0852402076125145,0.032611772418022156,-0.06629648804664612,-0.03996709734201431,0.01810358464717865,-0.02837872877717018,0.09730155766010284,-0.01996518112719059,-0.05759411305189133,-0.045347463339567184,0.06209440156817436,-0.05377361178398132,0.0785808190703392,0.08339213579893112,0.05254807695746422,0.05189643055200577,0.01556377112865448,0.03145940601825714,0.10414937138557434,-0.046496592462062836,-0.06275290250778198,0.019076166674494743,-0.007198091130703688,-0.02350456826388836,-0.045868612825870514,0.026399515569210052,0.05726633965969086,-0.02237481251358986,-0.007214172277599573,-0.0368025042116642,0.15222525596618652,0.07972103357315063,-0.017366984859108925,0.09638603776693344,0.005476813763380051,0.07547128945589066,0.005492100492119789,0.026627235114574432,-3.548158744592911e-8,-0.013325227424502373,0.06886454671621323,-0.08046363294124603,0.027409939095377922,0.0667853131890297,0.01180336531251669,-0.010240131989121437,-0.019910940900444984,0.029840203002095222,-0.0033244634978473186,-0.08062741160392761,0.05606688931584358,-0.0397852398455143,0.07827906310558319,-0.0024867334868758917,0.0642702579498291,-0.006243586074560881,-0.05480177700519562,-0.030007200315594673,0.042747706174850464,-0.013391041196882725,-0.014345279894769192,-0.03611171618103981,0.008404620923101902,-0.11110691726207733,-0.014467563480138779,-0.11641032993793488,-0.018815351650118828,0.024295415729284286,0.11460904031991959,-0.030987121164798737,-0.006733732298016548,-0.08350995182991028,0.0052745589055120945,-0.019904015585780144,0.07494426518678665,-0.03388087451457977,0.004659067373722792,0.04293927177786827,0.003522812156006694,-0.032718315720558167,-0.015209412202239037,0.011140274815261364,-0.0009132748818956316,0.03438536077737808,-0.010712294839322567,-0.028513804078102112,-0.03182082995772362,0.009346741251647472,-0.019127637147903442,0.03518780320882797,-0.0006787311867810786,0.033886730670928955,0.054128218442201614,0.024119975045323372,0.05555500090122223,-0.006798557937145233,-0.10298138856887817,-0.009468652307987213,0.030901383608579636,-0.07697150111198425,-0.06679604947566986,0.02227494865655899,-0.01222193706780672]},{"text":"There was no wastage whatever; the hens and ducks with their sharp eyes had gathered up the very last stalk.","book":"Animal Farm","chapter":30,"embedding":[0.07150046527385712,0.024904819205403328,0.010170666500926018,0.018084924668073654,0.10928292572498322,-0.03611806780099869,0.007471287157386541,-0.03333166241645813,-0.024841826409101486,0.03258433938026428,0.11524957418441772,-0.025359073653817177,0.012955499812960625,-0.00555036636069417,-0.07018192112445831,-0.06049146503210068,-0.049811191856861115,-0.09931386262178421,-0.01865454949438572,0.02488691173493862,-0.010627033188939095,0.03498689457774162,0.056037332862615585,0.04209725931286812,-0.04838551953434944,-0.0350024439394474,-0.07133848965167999,-0.05370641499757767,0.03916584327816963,-0.060445357114076614,-0.05521662160754204,0.03702311962842941,0.02032340131700039,-0.004579667001962662,-0.001133352518081665,0.00045490305637940764,0.07054967433214188,0.029027238488197327,0.06628241389989853,-0.017254412174224854,0.04552745819091797,-0.014073176309466362,-0.007834010757505894,-0.019044125452637672,-0.07507960498332977,0.019458647817373276,-0.06969071924686432,-0.009579514153301716,-0.002784809097647667,0.013396130874752998,0.03575289249420166,-0.08648783713579178,-0.031389977782964706,0.047310296446084976,0.03245773911476135,0.02883697859942913,0.0029795195441693068,-0.056779876351356506,-0.0010493684094399214,-0.0329376719892025,-0.050902582705020905,-0.010781070217490196,-0.005131546873599291,-0.03880281373858452,-0.020605336874723434,-0.059321947395801544,-0.013554341159760952,-0.05381711572408676,0.08065741509199142,0.06591200083494186,0.043838147073984146,-0.04148656874895096,-0.0004929511924274266,0.0020379112102091312,-0.035658687353134155,0.044420335441827774,-0.0578736774623394,-0.04520852863788605,0.03790532797574997,-0.023782875388860703,-0.046058304607868195,-0.05959484353661537,0.02265229821205139,-0.022088613361120224,0.053799472749233246,-0.020441170781850815,-0.026880629360675812,-0.0709119364619255,-0.02253967709839344,0.0000242277546931291,-0.045748017728328705,0.022936882451176643,-0.0066335550509393215,0.04877042397856712,0.0697048082947731,0.006315909791737795,0.011191155761480331,0.041999995708465576,0.034924980252981186,0.04080643132328987,-0.023263145238161087,-0.045265082269907,-0.017560750246047974,-0.08499803394079208,0.024803515523672104,0.016871297731995583,-0.07197584956884384,-0.039197396486997604,-0.033869463950395584,-0.01010605227202177,-0.05802149325609207,-0.03245415911078453,0.0583619624376297,0.03387884050607681,0.05690034478902817,-0.01489989273250103,0.04191092774271965,-0.06253203004598618,-0.10544822365045547,-0.026025135070085526,0.1436796337366104,0.036010801792144775,0.03805769607424736,-0.002512195613235235,-0.022574419155716896,0.09760471433401108,-0.05487880855798721,-1.2141846453536492e-33,0.033658403903245926,0.0038105209823697805,-0.03392339125275612,-0.08331190049648285,0.10168203711509705,-0.040049005299806595,-0.005606260150671005,0.03649388626217842,0.0026051534805446863,-0.06071886792778969,0.000596327823586762,-0.07125493139028549,-0.07960860431194305,-0.11036133021116257,0.04841103032231331,-0.04193200543522835,0.09274768084287643,0.047678977251052856,0.03756798803806305,-0.04179598018527031,-0.05182981118559837,0.05689907819032669,-0.042545218020677567,-0.06206545606255531,-0.01432555541396141,0.09002126008272171,-0.04291204735636711,-0.08000554889440536,-0.04417324438691139,0.03435836732387543,0.06942479312419891,0.01476945448666811,-0.006597829516977072,0.06349780410528183,-0.006698626093566418,-0.02708742395043373,0.07615288347005844,-0.15218114852905273,-0.04549176245927811,0.03415282815694809,0.0726877897977829,-0.03937293589115143,0.06460759043693542,-0.029075754806399345,-0.061311665922403336,0.050635259598493576,-0.10356379300355911,0.08078434318304062,-0.10303439944982529,0.09386830031871796,0.07941504567861557,-0.02246605046093464,0.08017497509717941,-0.015227862633764744,0.02918940596282482,0.05333474278450012,0.010493230074644089,0.018038606271147728,-0.012107551097869873,0.03112778440117836,0.009905166923999786,0.021302878856658936,0.01543356105685234,0.016845911741256714,0.033588189631700516,-0.10260405391454697,-0.06268233805894852,0.01867944374680519,-0.033894460648298264,0.05585186183452606,0.009941044263541698,-0.002903416519984603,-0.0886818915605545,-0.04948561638593674,-0.0065139844082295895,0.0046399421989917755,-0.05419968068599701,0.07141991704702377,0.06512689590454102,-0.04768695682287216,0.08224857598543167,0.12105908989906311,-0.08051379024982452,-0.022955089807510376,-0.03802204504609108,0.012884775176644325,0.10965851694345474,-0.03067697584629059,0.008549361489713192,-0.04307490959763527,0.06776740401983261,0.030814122408628464,0.014492243528366089,-0.1018766313791275,-0.0614180862903595,-5.302599915261644e-34,0.002514821710065007,0.05339944362640381,-0.04950655624270439,0.06316738575696945,-0.03921225666999817,0.0037652943283319473,0.011641841381788254,-0.007973595522344112,0.03269783779978752,-0.050966136157512665,-0.032895468175411224,-0.02397175319492817,-0.0195225290954113,0.012013077735900879,0.040017273277044296,0.0027667011599987745,0.0628252699971199,-0.047913603484630585,0.037020377814769745,-0.07750636339187622,-0.010315547697246075,-0.10950132459402084,-0.022473661229014397,-0.03706005588173866,-0.01726963184773922,0.07283900678157806,0.0005297219613566995,-0.010027982294559479,-0.08058364689350128,-0.039626214653253555,0.012360497377812862,-0.03821972385048866,0.026522209867835045,-0.0057806577533483505,0.012849434278905392,0.053836166858673096,0.07838618010282516,-0.020039573311805725,0.00940973311662674,-0.06576890498399734,0.006059650331735611,-0.04149290919303894,-0.012695543467998505,0.06991198658943176,-0.05200900137424469,-0.005419562570750713,-0.017840813845396042,0.09208543598651886,0.05347738415002823,-0.036157846450805664,-0.022582106292247772,0.020452748984098434,0.027133002877235413,0.0008476974326185882,-0.06793622672557831,-0.021115319803357124,0.061814673244953156,0.0008805421530269086,0.07939522713422775,-0.027557283639907837,-0.029687928035855293,-0.01923138089478016,-0.13201002776622772,0.03733853995800018,0.00529604684561491,-0.03814133629202843,-0.056483883410692215,-0.029384031891822815,0.0021119308657944202,-0.09162721782922745,0.014770936220884323,0.063885398209095,-0.0004946321714669466,0.020302779972553253,-0.020509829744696617,0.04047699272632599,0.03383931145071983,-0.03331325948238373,0.09578099846839905,0.005865175276994705,-0.03991346061229706,-0.04561189189553261,-0.014443989843130112,0.01709260419011116,-0.020391764119267464,-0.05805221572518349,0.04616519808769226,0.026970429345965385,-0.003872629953548312,0.003846375737339258,-0.004323557019233704,-0.017025969922542572,0.036116018891334534,0.06029492989182472,0.0590585321187973,-2.3448233577028077e-8,0.011351186782121658,0.1285104602575302,-0.0044761523604393005,-0.00792853906750679,0.16151072084903717,-0.031418051570653915,0.04231645166873932,0.10341434925794601,0.029623840004205704,0.05347566679120064,-0.1474580466747284,0.05819772556424141,0.1012193113565445,0.0243662241846323,0.06004124507308006,-0.0039021417032927275,0.030222730711102486,-0.049996230751276016,-0.06317897886037827,0.03160247206687927,-0.10611213743686676,0.04651057347655296,-0.06755545735359192,-0.08703114092350006,-0.06898044794797897,-0.009832259267568588,0.013288388028740883,0.02772495150566101,0.01590154878795147,0.042585890740156174,0.003425303380936384,-0.019222363829612732,-0.059248875826597214,-0.0243510901927948,0.007017699535936117,0.04398123174905777,-0.057887814939022064,-0.022622933611273766,0.05185149982571602,-0.00907849334180355,-0.06675874441862106,0.0018840659176930785,0.04322647675871849,0.030207542702555656,0.054704830050468445,0.003239364828914404,-0.004814145155251026,-0.03513873741030693,-0.04198358580470085,-0.023749995976686478,0.020137403160333633,-0.010709368623793125,0.0387205109000206,0.035627707839012146,-0.041952893137931824,-0.12221269309520721,0.04972442612051964,0.004947660490870476,0.025659579783678055,0.03811543062329292,0.007138601969927549,0.018066467717289925,0.06932205706834793,0.07914608716964722]},{"text":"With the worthless parasitical human beings gone, there was more for everyone to eat.","book":"Animal Farm","chapter":31,"embedding":[0.057463452219963074,0.07134047895669937,-0.01788082718849182,0.04290149733424187,-0.06727512180805206,-0.06938132643699646,0.02524075098335743,0.009763223119080067,-0.06048981845378876,0.00322174490429461,0.13812917470932007,-0.001775140524841845,0.04519296810030937,0.0060757980681955814,-0.07236476987600327,-0.044946908950805664,0.03583844006061554,-0.06624271720647812,-0.05757809057831764,-0.029538867995142937,-0.058681897819042206,-0.0065439725294709206,0.03246687725186348,-0.024286039173603058,-0.042403530329465866,0.040866918861866,0.0023260838352143764,-0.09868665039539337,0.02489945851266384,0.006787230726331472,-0.020001603290438652,0.047552742063999176,0.06491349637508392,-0.039294712245464325,0.015825863927602768,-0.031335294246673584,0.1541975736618042,-0.059649307280778885,0.021343830972909927,-0.03139820694923401,0.052549928426742554,0.007817001082003117,-0.0574745312333107,0.019544415175914764,-0.11511588841676712,-0.045776378363370895,-0.10980221629142761,-0.054681215435266495,0.04778236895799637,-0.013131634332239628,0.04289529100060463,0.0026975213550031185,-0.029350722208619118,0.006713355425745249,0.05835168808698654,-0.07216976583003998,-0.04933186247944832,-0.061650220304727554,-0.040001776069402695,-0.06360100209712982,-0.01464513223618269,0.020662831142544746,0.06509291380643845,0.0363660492002964,0.05953402444720268,-0.040938422083854675,0.006699109449982643,0.021286064758896828,-0.07773854583501816,0.07292070984840393,-0.007016630377620459,-0.02759673073887825,0.006124482490122318,-0.007732330821454525,0.0145680271089077,-0.05703981593251228,0.026465171948075294,-0.062096692621707916,-0.0016040957998484373,0.032537613064050674,-0.008326402865350246,0.04072006791830063,-0.01760570891201496,-0.01506124809384346,0.004392742179334164,-0.003996202256530523,-0.013022477738559246,0.021090557798743248,0.029778625816106796,0.04012954980134964,-0.004977805074304342,0.04419591650366783,-0.002352895447984338,0.04433649033308029,-0.03141002357006073,0.006935952231287956,-0.030599582940340042,-0.003087739460170269,0.02196459285914898,0.06817960739135742,-0.07133208215236664,-0.07151611894369125,0.027726612985134125,-0.0505090095102787,-0.03641685098409653,-0.023130375891923904,-0.06693208962678909,0.0072948322631418705,0.008396442979574203,-0.0377599261701107,-0.07404712587594986,0.0661776065826416,0.01387721300125122,0.0532643161714077,-0.05172009766101837,-0.020646829158067703,0.10319215804338455,-0.1165652871131897,-0.011024321429431438,-0.014048248529434204,-0.0032258895225822926,0.015981219708919525,-0.07531224191188812,0.08356700837612152,0.05932861566543579,-0.019808780401945114,0.006403287872672081,-3.540903429415575e-33,-0.03602144122123718,-0.056834105402231216,0.09129385650157928,-0.05613739416003227,0.04709108546376228,-0.01560883317142725,-0.01269968319684267,0.07359657436609268,0.06499972194433212,-0.030606675893068314,-0.05291328951716423,-0.08050581067800522,-0.05067191272974014,0.06121090427041054,-0.004427266772836447,-0.011265268549323082,-0.005443142727017403,0.026873251423239708,0.0849524661898613,0.012485044077038765,-0.04659775644540787,-0.0014858772046864033,0.00812838040292263,0.06799950450658798,0.05228642001748085,0.08111708611249924,0.0030292903538793325,-0.017700577154755592,-0.03382665663957596,-0.005438920110464096,0.07315894961357117,0.00751405768096447,-0.008727751672267914,-0.024511544033885002,-0.025205671787261963,0.07223787158727646,0.08016225695610046,0.0117654362693429,-0.050097834318876266,0.009101206436753273,-0.010892470367252827,0.0325300395488739,0.0873868316411972,-0.07243859022855759,0.006111569236963987,-0.009528564289212227,0.05447924882173538,0.019817303866147995,-0.053970593959093094,0.034231334924697876,0.028979500755667686,0.004195527173578739,0.06657299399375916,0.025998231023550034,-0.039066217839717865,-0.043835435062646866,-0.03720869868993759,0.07031083852052689,-0.042838528752326965,0.003092414466664195,0.06661058217287064,0.0014952471246942878,0.032642439007759094,0.031709812581539154,0.02153843082487583,-0.0012631691060960293,0.04078475013375282,-0.08124151080846786,-0.0890074074268341,0.08636938780546188,-0.014908109791576862,-0.04398588091135025,-0.10972462594509125,0.03738284111022949,-0.00829241517931223,-0.0016165056731551886,-0.00757026020437479,-0.09893617033958435,-0.019352326169610023,0.0028090595733374357,0.08800937980413437,-0.0011097427923232317,0.06154199689626694,-0.05531160160899162,0.029171086847782135,0.07381129264831543,0.04097384214401245,-0.0515906848013401,0.13714425265789032,-0.0076591395772993565,0.00935955811291933,0.010572344996035099,-0.02005915157496929,-0.045982297509908676,-0.04664749279618263,1.0015761045272914e-33,-0.052902597934007645,0.044044069945812225,-0.03267071023583412,0.025695934891700745,-0.04529387131333351,-0.018956389278173447,-0.011144550517201424,0.0005743293440900743,-0.04811624810099602,-0.01016242429614067,0.02224957011640072,0.02993214875459671,0.11461471766233444,0.04836282134056091,0.017165686935186386,0.04150740057229996,0.03255989030003548,0.013975712470710278,0.019494470208883286,-0.005403307266533375,-0.06758521497249603,0.05942480266094208,-0.06479940563440323,-0.009353308007121086,-0.10452426224946976,0.1099761500954628,-0.0033140447922050953,0.08191043138504028,-0.06020837649703026,-0.06902007758617401,0.02330579236149788,-0.010088530369102955,0.005822418257594109,-0.04573967307806015,0.05552755296230316,0.07590117305517197,-0.009496176615357399,0.0595402754843235,-0.02183862403035164,-0.07797873765230179,-0.036876410245895386,-0.01943688467144966,-0.03654908761382103,0.10935129225254059,-0.005027954000979662,0.053887128829956055,0.022474542260169983,-0.018460582941770554,0.03993057832121849,0.010941118001937866,0.013077924959361553,0.0026170960627496243,0.02203872986137867,-0.020231172442436218,-0.07880590111017227,-0.013332621194422245,0.021690726280212402,-0.09499563276767731,0.07821610569953918,-0.06995303928852081,-0.10032156109809875,-0.01118986401706934,-0.07272353768348694,0.07649043947458267,0.01895228959619999,-0.021600374951958656,0.0005685532232746482,0.014990393072366714,-0.06563320010900497,-0.025901595130562782,0.05068660154938698,-0.02265184558928013,-0.09054689854383469,0.019083751365542412,0.0052464245818555355,0.09254331886768341,-0.05478349328041077,0.00670202961191535,0.025816673412919044,-0.028652695938944817,0.0031471913680434227,-0.058954451233148575,0.046620313078165054,-0.06260720640420914,-0.00858029630035162,0.03875063359737396,-0.019308192655444145,0.02837378717958927,-0.032674603164196014,0.06412267684936523,-0.07301314175128937,-0.08055100589990616,0.009899374097585678,0.021094180643558502,0.009517793543636799,-2.2516362108149224e-8,0.08645086735486984,0.042943816632032394,-0.045216429978609085,0.0038870079442858696,0.06106016784906387,-0.04391198977828026,0.045762259513139725,0.08833764493465424,0.05039989575743675,0.16341766715049744,-0.11608877032995224,0.07646056264638901,0.014347078278660774,0.07084192335605621,0.03574213758111,0.07360787689685822,-0.03564368188381195,-0.07164455950260162,-0.05407513678073883,0.008600318804383278,-0.08281441032886505,0.06590302288532257,-0.08055461198091507,-0.09756028652191162,0.03845633566379547,0.007813886739313602,-0.0401623472571373,0.058107778429985046,0.06462083011865616,-0.025586318224668503,0.044672541320323944,-0.05169917270541191,-0.05788470804691315,0.021547045558691025,-0.027885103598237038,0.009317014366388321,-0.10793283581733704,0.020497914403676987,0.05258766934275627,-0.13073500990867615,-0.051532477140426636,0.00788817834109068,-0.005351752508431673,-0.008603444322943687,-0.012096213176846504,-0.021575666964054108,-0.06824583560228348,0.03628045320510864,0.000033638345485087484,-0.048807479441165924,0.0056373076513409615,-0.00031767101609148085,-0.030915819108486176,-0.022588340565562248,0.02116481587290764,-0.12985433638095856,0.026249967515468597,0.03735058382153511,-0.00644680904224515,-0.049537770450115204,0.05980149284005165,0.004227120894938707,-0.0353042371571064,0.02600083127617836]},{"text":"From morning to night he was pushing and pulling, always at the spot where the work was hardest.","book":"Animal Farm","chapter":31,"embedding":[0.026180250570178032,0.028533030301332474,0.01519901491701603,0.09310001879930496,-0.05481245368719101,-0.0034626356791704893,0.02050039730966091,0.012371581979095936,-0.06354968249797821,-0.03277117386460304,-0.044724009931087494,0.03526272252202034,-0.01375222485512495,0.12884797155857086,-0.023778479546308517,-0.003885099897161126,0.06328633427619934,-0.018556132912635803,0.00894167274236679,-0.027017634361982346,0.018946947529911995,0.02910556271672249,0.0767829567193985,-0.04261152073740959,0.058297425508499146,0.05042698234319687,-0.040483132004737854,0.046924103051424026,0.1237771138548851,-0.08808067440986633,-0.051035378128290176,-0.08512044697999954,-0.04744194820523262,-0.02379332110285759,0.008981212042272091,0.03816157951951027,-0.023425014689564705,0.09231193363666534,0.007984284311532974,0.052878472954034805,0.07581682503223419,-0.06675500422716141,0.053153231739997864,-0.014438330195844173,-0.06539792567491531,0.00512657081708312,0.04348015412688255,-0.05371613800525665,0.06087833642959595,0.0077643608674407005,-0.04683008790016174,-0.07014092803001404,0.03969678655266762,-0.05239216610789299,0.030143996700644493,0.07410912215709686,0.11009760200977325,-0.0022716117091476917,0.12486579269170761,-0.0018303124234080315,0.0005061720730736852,0.06098775565624237,0.023228703066706657,0.046618904918432236,0.08062825351953506,-0.0066398452036082745,-0.04168923199176788,-0.009588690474629402,-0.02660544402897358,0.0787314772605896,0.01602999120950699,0.009642490185797215,-0.04856903851032257,-0.10262105613946915,0.03135092556476593,-0.08685243874788284,-0.025797151029109955,0.002722344361245632,0.02972007915377617,-0.0036287186667323112,-0.05080794170498848,-0.027269847691059113,-0.041338153183460236,0.10546325147151947,-0.05269927904009819,-0.017171241343021393,0.02435053512454033,0.03275004029273987,0.040336307138204575,-0.007826505228877068,0.06630381941795349,-0.03432178124785423,-0.09404068440198898,0.023685310035943985,0.07633644342422485,-0.05454451963305473,-0.019181909039616585,0.03501538187265396,-0.06928087025880814,0.01287053246051073,0.021904287859797478,0.00002854467493307311,0.024413328617811203,0.006405571475625038,0.0010971566662192345,-0.02826429158449173,-0.061436738818883896,-0.025406191125512123,-0.09249069541692734,0.04101456701755524,0.00016003473137971014,-0.023777468129992485,0.042321957647800446,0.005247516557574272,0.024066077545285225,-0.03518127650022507,-0.08088009059429169,0.033861193805933,-0.12974601984024048,0.10928701609373093,0.030959945172071457,0.009527100250124931,-0.013887910172343254,-0.015153101645410061,-0.06660160422325134,0.01048870850354433,0.10505563020706177,-3.5959301566874894e-33,0.14405718445777893,-0.04241887107491493,-0.016907071694731712,0.025556530803442,-0.006821888033300638,-0.0008413352188654244,0.02036869525909424,0.05485803633928299,0.04514152184128761,-0.0012535951100289822,0.0036451625637710094,0.0360594317317009,-0.016339614987373352,0.00006490956002380699,-0.03412891551852226,0.021440129727125168,0.0015303465770557523,0.00013763265451416373,-0.10241372883319855,0.0050937579944729805,-0.018416093662381172,0.04448604956269264,-0.00133586919400841,-0.06920203566551208,0.010105895809829235,-0.044732220470905304,-0.01604788564145565,0.029195930808782578,-0.03404950723052025,0.0001707723713479936,-0.05657823756337166,-0.010015815496444702,0.017308611422777176,0.06057494133710861,-0.013053111732006073,0.039384469389915466,0.06029543653130531,-0.05187169834971428,-0.051830440759658813,-0.07362132519483566,0.013800597749650478,0.021162288263440132,0.0016031413106247783,-0.0013356175040826201,-0.01744029112160206,0.08717790991067886,0.010884749703109264,-0.05511683225631714,0.02479451708495617,0.015614074654877186,0.025077298283576965,0.036963559687137604,0.07464566081762314,-0.11501969397068024,-0.00021910775103606284,0.027436651289463043,-0.002653527772054076,0.05276898667216301,-0.015462913550436497,0.08749232441186905,0.012696481309831142,-0.0037586719263345003,0.0514567531645298,0.008007899858057499,-0.11016000062227249,-0.062337737530469894,-0.07057182490825653,0.04715655744075775,0.006726750638335943,-0.0035009514540433884,-0.09285803139209747,-0.05554474890232086,0.005110324826091528,-0.10712334513664246,0.026421204209327698,-0.009466084651648998,-0.03644867613911629,-0.04652354121208191,-0.07662077248096466,-0.05971929803490639,-0.017631934955716133,0.010722686536610126,0.04304170235991478,-0.043536074459552765,0.030605128034949303,0.07187636196613312,-0.022007528692483902,-0.03274789825081825,-0.03360661864280701,0.11974687874317169,0.008247096091508865,-0.022308148443698883,0.04003455489873886,0.00217592716217041,0.03604567423462868,1.6093160511230222e-33,-0.05099331960082054,0.026389049366116524,0.030516311526298523,0.0647997185587883,0.07972604036331177,-0.08233624696731567,-0.10324478894472122,-0.013087891042232513,-0.0010765021434053779,0.08260313421487808,0.01629364676773548,-0.006047995761036873,-0.030368277803063393,0.019584396854043007,0.005757379811257124,-0.0816655158996582,-0.028706414625048637,0.0092086773365736,-0.0027668350376188755,0.06280078738927841,0.04115390032529831,0.032953329384326935,0.0214329082518816,-0.05703620985150337,-0.01587071269750595,0.054268721491098404,0.003496800782158971,-0.024922819808125496,-0.050730954855680466,-0.06190392002463341,-0.030323060229420662,-0.03659037500619888,-0.09689102321863174,0.030622439458966255,-0.05633144825696945,0.0997796505689621,-0.09527357667684555,0.16197021305561066,-0.03602094203233719,-0.021026689559221268,-0.024778194725513458,-0.04300840198993683,0.008880335837602615,0.04218849539756775,-0.028083467856049538,-0.0005440165405161679,-0.020329901948571205,-0.04304850846529007,-0.0703449472784996,0.034801412373781204,-0.019596992060542107,0.08381541818380356,0.015566330403089523,0.020417194813489914,0.029271012172102928,0.03921467065811157,-0.017257042229175568,-0.08972382545471191,-0.02457403391599655,0.01863163709640503,-0.04403724893927574,0.006126504857093096,0.00012639694614335895,0.005454577039927244,0.036356717348098755,-0.020933836698532104,-0.07523784786462784,-0.015797818079590797,-0.08245649188756943,0.031003786250948906,-0.04481576383113861,-0.015788225457072258,0.046726763248443604,0.09723494946956635,0.030407629907131195,0.04247952252626419,-0.07103215903043747,-0.09099051356315613,-0.0214115921407938,-0.09553948044776917,-0.026649925857782364,-0.056409869343042374,0.02649739570915699,-0.01793544925749302,-0.07037629187107086,0.01982973702251911,0.01715969853103161,-0.07235640287399292,0.02194717712700367,-0.015066538006067276,0.04809980094432831,0.006624124478548765,-0.010397328995168209,0.009643731638789177,0.014908530749380589,-2.1521325166418137e-8,-0.08819477260112762,-0.03215060010552406,-0.014591430313885212,-0.05249590799212456,0.0748930424451828,0.030544498935341835,0.07471460849046707,0.043478820472955704,0.020753681659698486,0.11119628697633743,0.0026075937785208225,0.02290782518684864,0.0681079626083374,0.07310449331998825,-0.027491610497236252,-0.009546609595417976,0.01923735998570919,-0.005147695541381836,-0.035019587725400925,-0.03556705638766289,0.046131037175655365,-0.013513848185539246,0.045424092561006546,-0.011368880048394203,0.014993431977927685,-0.02401220053434372,-0.08764705061912537,0.1292383074760437,0.004630387760698795,0.031162377446889877,0.10127241909503937,-0.03015354834496975,-0.019075216725468636,-0.020357929170131683,-0.07590437680482864,0.07490478456020355,0.04954294487833977,0.02384004183113575,-0.07869994640350342,0.04682473838329315,0.037524234503507614,0.027006417512893677,0.026017969474196434,-0.02258196286857128,-0.1055109053850174,0.003464150708168745,-0.04392503201961517,0.03200565278530121,0.011218162253499031,-0.009243096224963665,-0.0009775516809895635,0.004257884807884693,0.051944147795438766,0.013739281333982944,0.07045198231935501,-0.06039595603942871,-0.014053762890398502,-0.05177263543009758,-0.10462778061628342,0.08787254244089127,-0.021376561373472214,0.06826051324605942,-0.04119967296719551,0.09906648844480515]},{"text":"Mollie, it was true, was not good at getting up in the mornings, and had a way of leaving work early on the ground that there was a stone in her hoof.","book":"Animal Farm","chapter":31,"embedding":[-0.04083086550235748,0.03804526478052139,0.03167865797877312,0.0683429092168808,0.0062833139672875404,0.00021502297022379935,0.09453766793012619,-0.00709432503208518,0.010387500748038292,-0.05152154713869095,-0.021907007321715355,-0.019078584387898445,0.021151088178157806,-0.00160445854999125,-0.020963206887245178,-0.003229421330615878,0.05351453274488449,0.026060130447149277,0.058216437697410583,-0.005772440228611231,-0.07511360943317413,0.03168823570013046,0.02498001977801323,0.09640303999185562,0.0477505587041378,-0.023930775001645088,-0.015167232602834702,-0.011440958827733994,-0.004305410664528608,-0.032369643449783325,-0.12335582822561264,0.052849769592285156,-0.03821690380573273,-0.047737687826156616,0.03922387212514877,0.05864028260111809,0.057620819658041,0.08773747086524963,0.014659124426543713,0.018994377925992012,0.0010086175752803683,-0.06303396821022034,-0.037281185388565063,-0.0759638324379921,-0.09273162484169006,-0.052736975252628326,0.08352080732584,-0.05798741802573204,-0.0520927831530571,-0.017193930223584175,-0.012760051526129246,-0.027805158868432045,-0.12044952809810638,-0.05421371012926102,-0.007396059110760689,0.01714235544204712,0.01341137196868658,0.002369806170463562,0.04562041163444519,0.05534902587532997,-0.0673600435256958,0.05672292411327362,0.045897435396909714,0.033042531460523605,0.04177632927894592,0.029354974627494812,-0.08972135186195374,-0.05924350395798683,-0.017395954579114914,0.01694219559431076,-0.019455300644040108,-0.017039749771356583,0.029455162584781647,-0.08680117130279541,-0.0018436601385474205,-0.006542850751429796,0.10923691093921661,-0.06699824333190918,0.05057413503527641,0.02372768707573414,-0.023800119757652283,-0.05059920996427536,-0.015331711620092392,-0.0070829144679009914,0.058205682784318924,-0.10510575026273727,-0.042078737169504166,-0.035921718925237656,0.01665438711643219,-0.11515584588050842,-0.04493608698248863,-0.007415817119181156,-0.026995563879609108,0.0937294065952301,0.09952946752309799,-0.08381866663694382,-0.024672405794262886,-0.029920490458607674,-0.06394374370574951,0.05909767746925354,0.0003925984783563763,0.045868050307035446,0.061451125890016556,0.07520508766174316,0.10549335926771164,-0.03613482788205147,0.03598998114466667,-0.06785453110933304,-0.018724972382187843,-0.026015745475888252,0.04571276530623436,-0.0034861378371715546,0.05888519063591957,0.03453846275806427,0.007273607421666384,0.037612803280353546,-0.059851158410310745,0.049399483948946,-0.07868649065494537,-0.0300004780292511,-0.002944343723356724,0.09714755415916443,-0.03163347393274307,-0.012814092449843884,-0.027656711637973785,-0.011511393822729588,0.05132252350449562,-1.135439931830995e-33,-0.021038677543401718,0.00008975948730949312,0.03687518090009689,-0.014648850075900555,0.153814896941185,0.0038705365732312202,-0.10668530315160751,0.0482131652534008,0.1439412534236908,-0.009877904318273067,-0.00033159900340251625,-0.05175122246146202,-0.06683269143104553,-0.07525645196437836,0.019550062716007233,0.08347222208976746,-0.05064639076590538,0.04328107461333275,0.02714025229215622,0.03074108622968197,0.03815348073840141,0.0635831281542778,-0.0745953619480133,-0.0023222705349326134,-0.062307208776474,-0.02717193216085434,0.08607210963964462,-0.05129154399037361,0.015374215319752693,0.035041194409132004,0.11007106304168701,-0.059301551431417465,0.14802519977092743,0.04385814443230629,0.002173210261389613,-0.009347343817353249,-0.00939923245459795,-0.10559733957052231,-0.03594934195280075,0.008658590726554394,-0.05995146185159683,-0.059271011501550674,0.18101263046264648,-0.02603479102253914,-0.08549050986766815,-0.018867500126361847,-0.015823176130652428,0.06611739099025726,-0.04024370014667511,0.01649388298392296,-0.012902429327368736,0.03315301239490509,0.005554750096052885,0.04947143793106079,0.009857036173343658,0.05672713369131088,0.019617360085248947,0.015373367816209793,0.03701486065983772,0.038799092173576355,-0.06428011506795883,0.0104950200766325,0.04986969009041786,-0.06600865721702576,-0.02389390394091606,-0.059054482728242874,-0.01731930486857891,-0.0684979036450386,-0.07501215487718582,0.03455088660120964,0.0024206433445215225,0.05347806587815285,-0.036737069487571716,-0.03690076619386673,-0.06489664316177368,0.02336982637643814,0.04014996811747551,-0.048364151269197464,-0.1196669191122055,-0.03142349049448967,0.12988699972629547,-0.01472054235637188,-0.03506530448794365,-0.08001036196947098,-0.009994092397391796,-0.020267467945814133,0.022176729515194893,-0.09332062304019928,-0.027731990441679955,0.04004748538136482,-0.04048643633723259,0.024584932252764702,0.06567619740962982,-0.09222877770662308,-0.02858027070760727,9.1566831413981e-34,-0.0010808591032400727,0.0269550159573555,0.07353843003511429,0.026678765192627907,0.08103884011507034,-0.04504462704062462,-0.005838284734636545,-0.07327146828174591,0.027120135724544525,-0.02446349896490574,-0.03144504502415657,-0.10058580338954926,-0.002636134857311845,-0.10587245225906372,-0.03411669656634331,-0.015478006564080715,-0.05626987665891647,-0.01625220850110054,0.046961039304733276,0.03776611015200615,-0.02231191098690033,-0.00009010760550154373,-0.08268193900585175,-0.006968280766159296,0.03691118583083153,0.04767988994717598,0.021488770842552185,0.06362427771091461,-0.0790870264172554,-0.028636382892727852,-0.07329084724187851,0.04427412152290344,-0.010232587344944477,-0.046277329325675964,-0.033998068422079086,0.09559284895658493,-0.04215334355831146,0.013946730643510818,-0.05429339408874512,-0.0300619937479496,0.05992415174841881,-0.07589017599821091,-0.003594041569158435,0.04415513947606087,-0.02728777937591076,0.037526559084653854,-0.03085670806467533,0.04717503860592842,0.0710277184844017,-0.02549850381910801,-0.020912468433380127,-0.009134779684245586,-0.04069715738296509,0.018797453492879868,0.047356247901916504,0.014270396903157234,0.049158357083797455,-0.01568670943379402,0.01620948687195778,-0.022410206496715546,-0.025547560304403305,0.01687368005514145,-0.016970783472061157,0.01375571545213461,0.00688356626778841,-0.01518447045236826,-0.01190705131739378,0.015279402025043964,-0.05974585562944412,0.012379243969917297,-0.03108097054064274,0.06421471387147903,-0.016414737328886986,0.03545907884836197,0.007000040262937546,0.06041036173701286,-0.08167006075382233,-0.04660492390394211,-0.00549399945884943,-0.06021133437752724,0.0073400321416556835,-0.02372235618531704,-0.006860865745693445,0.08055594563484192,0.03340315818786621,0.009157257154583931,-0.023451367393136024,0.017678294330835342,0.033482346683740616,0.04876266047358513,0.03176136314868927,-0.018358776345849037,0.07266911119222641,-0.06154826283454895,0.050892915576696396,-2.929099629511711e-8,0.021873921155929565,0.03477257862687111,-0.03745676204562187,-0.07069339603185654,0.02492832951247692,0.010610802099108696,0.06407219916582108,0.014723828062415123,-0.06280308216810226,0.05650855600833893,-0.05315166339278221,0.0539313405752182,0.041981443762779236,-0.02112608402967453,0.01597108133137226,0.004667855799198151,0.028619591146707535,-0.07323196530342102,0.027409257367253304,-0.041713595390319824,0.10653427243232727,0.03707897663116455,0.056997887790203094,0.012294814921915531,0.03564445301890373,0.05304846912622452,-0.048068784177303314,0.04715780168771744,-0.042025595903396606,0.10167812556028366,0.010439014062285423,0.029314128682017326,-0.09203528612852097,-0.03171150013804436,0.017098443582654,0.00009657268674345687,0.05117657408118248,0.007103665266185999,-0.09112505614757538,0.026565346866846085,0.028398510068655014,0.0099492771551013,0.011612783186137676,-0.032605335116386414,-0.017194001004099846,-0.010902809910476208,-0.003810492344200611,-0.04278874769806862,0.023188389837741852,0.06274348497390747,0.018609823659062386,-0.02988601103425026,0.06280797719955444,0.05180523917078972,-0.06487186998128891,-0.031735822558403015,-0.02661210112273693,-0.02947443537414074,-0.07532166689634323,0.02722615748643875,0.024511300027370453,0.058662835508584976,0.03802722319960594,-0.016792571172118187]},{"text":"Old Benjamin, the donkey, seemed quite unchanged since the Rebellion.","book":"Animal Farm","chapter":31,"embedding":[0.00665978342294693,0.028744949027895927,-0.009398741647601128,-0.02462758496403694,0.012672094628214836,0.0564025454223156,-0.054031118750572205,-0.015085688792169094,-0.05517742410302162,0.0016114177415147424,0.0520671121776104,0.07310769706964493,0.05135468393564224,-0.028891535475850105,0.011471744626760483,-0.01657191291451454,-0.032910969108343124,0.026019511744379997,-0.011629180051386356,0.011314480565488338,-0.0847354382276535,0.017699507996439934,-0.021479249000549316,0.03885233774781227,0.0638345405459404,0.02208959124982357,-0.009360019117593765,0.02968878671526909,0.057328492403030396,-0.07064305990934372,-0.02408629097044468,-0.010894681327044964,0.06650334596633911,-0.030705206096172333,-0.07107601314783096,-0.03250111639499664,0.06503314524888992,0.06507620215415955,0.055629752576351166,-0.01661880500614643,0.0152460727840662,0.06311564147472382,-0.05377225577831268,-0.031187409535050392,0.04785255342721939,0.021511254832148552,-0.016736740246415138,-0.06170288845896721,0.042412642389535904,0.051175426691770554,0.0746803805232048,-0.018296176567673683,0.048462919890880585,-0.0238801222294569,0.015865055844187737,-0.033441994339227676,0.015945397317409515,0.033146169036626816,0.11327914893627167,-0.02044953964650631,-0.04172239825129509,0.0796898826956749,0.12668713927268982,0.009780854918062687,-0.06139777600765228,-0.04047664627432823,-0.04632887616753578,-0.04259442165493965,0.015788370743393898,-0.008027075789868832,-0.04091324284672737,0.03800069913268089,-0.042487096041440964,-0.08972009271383286,-0.1174328476190567,-0.055860742926597595,-0.01322786882519722,0.08575385808944702,-0.015664096921682358,0.00043959845788776875,-0.037986889481544495,0.07209330052137375,-0.03372533991932869,0.02656959369778633,0.0020554992370307446,0.013288981281220913,-0.036495011299848557,-0.10267667472362518,-0.01833198219537735,-0.05754581466317177,0.04286063089966774,0.008765695616602898,0.024812813848257065,0.061237506568431854,0.031771469861269,-0.07621714472770691,0.1021353080868721,0.06494560837745667,0.016268089413642883,0.06710708141326904,-0.014167618937790394,-0.009772577323019505,-0.05867455527186394,-0.028523914515972137,0.06607726961374283,0.02167462930083275,0.05545726418495178,-0.051451053470373154,-0.00866815447807312,0.021009212359786034,0.021907532587647438,-0.06715691834688187,-0.01394872646778822,0.03937999904155731,0.02276463620364666,-0.08173812925815582,-0.11105366051197052,0.04572927579283714,-0.13231830298900604,0.07373825460672379,0.11006186902523041,0.047431472688913345,0.04852600395679474,0.03906645253300667,-0.028292139992117882,0.04539697617292404,0.03729858249425888,-4.2344682389457564e-33,0.004100066144019365,-0.11584466695785522,-0.05126745626330376,0.059866227209568024,0.060175731778144836,-0.008703076280653477,0.029803244397044182,0.04905720055103302,0.06684955209493637,-0.08237090706825256,0.04999316483736038,-0.013266095891594887,-0.05370704457163811,-0.021189341321587563,-0.060981668531894684,0.0072351363487541676,-0.09481307119131088,-0.07509253174066544,0.1395167112350464,-0.06320103257894516,-0.04922527074813843,0.09941722452640533,-0.06554636359214783,-0.018269633874297142,0.004482019226998091,-0.06540216505527496,0.03655681759119034,0.03655325621366501,-0.0004224955919198692,-0.013701986521482468,-0.025433266535401344,0.08108393102884293,0.022766588255763054,0.04019015282392502,0.02015196904540062,-0.05037450045347214,0.03670225664973259,-0.07320783287286758,-0.0928904339671135,0.01886657252907753,0.04456990212202072,0.033104944974184036,0.003587346524000168,0.018329991027712822,0.005672079510986805,-0.013019540347158909,0.048793647438287735,0.009242032654583454,0.013932210393249989,-0.07419893145561218,-0.004067508969455957,0.05339067429304123,0.0018993872217833996,-0.01706818863749504,-0.08017104864120483,-0.0882689356803894,-0.07685055583715439,0.07337012887001038,-0.06595463305711746,-0.03499724715948105,0.10799963027238846,0.04201878234744072,0.031787507236003876,0.06791172921657562,-0.030405161902308464,0.05300573259592056,-0.10650679469108582,0.04229569807648659,-0.027364512905478477,0.02354673109948635,0.022748572751879692,0.054330505430698395,-0.07169725000858307,-0.051742151379585266,-0.01654329150915146,-0.062449268996715546,-0.01599252223968506,-0.030130231752991676,0.015900088474154472,-0.14414680004119873,0.004349049646407366,-0.025536801666021347,-0.03917720168828964,0.08979757875204086,0.014435714110732079,-0.09135237336158752,0.11187811195850372,-0.07715954631567001,-0.0048992871306836605,-0.0037764897570014,0.035394176840782166,0.0015719338553026319,-0.05142216384410858,-0.010371731594204903,0.03988932445645332,2.7834920115624656e-33,-0.0363193042576313,0.0686781033873558,0.05604029446840286,0.1281430572271347,-0.05988875404000282,-0.006654458586126566,0.039381399750709534,0.021751675754785538,0.04062066972255707,-0.06279845535755157,-0.0492035448551178,-0.04308924078941345,-0.043586503714323044,0.03996675834059715,0.08447254449129105,0.020302310585975647,-0.04722616448998451,0.008942940272390842,-0.021295426413416862,0.013513964600861073,-0.040529150515794754,-0.009970264509320259,-0.05611329525709152,-0.10471904277801514,0.03326990827918053,0.1059369295835495,-0.08784141391515732,0.02239939384162426,-0.010056491941213608,-0.08985189348459244,0.03527995944023132,-0.03994956985116005,-0.02554146759212017,-0.0002518869296181947,-0.05463167279958725,0.007962784729897976,0.029563559219241142,-0.08381941169500351,-0.0029076619539409876,-0.05734744668006897,-0.0509374663233757,-0.08135206997394562,0.05041518807411194,-0.004826583433896303,0.06520725786685944,0.05288729444146156,-0.013233687728643417,-0.0035937486682087183,0.032696787267923355,-0.01529939565807581,0.05614524707198143,0.08122380822896957,-0.012130781076848507,0.03147466480731964,-0.01274259015917778,-0.05695360526442528,0.005849891342222691,0.005440611392259598,0.01513531245291233,-0.00021786938305012882,0.009343539364635944,-0.037156056612730026,0.019156355410814285,-0.0006136690499261022,-0.004661982413381338,0.04625271260738373,0.049103032797575,0.051767874509096146,0.08587373048067093,0.006276306230574846,0.09459131211042404,-0.0233488567173481,0.0088319918140769,-0.040262620896101,0.004849925637245178,0.03844978287816048,0.07098513096570969,-0.014296441338956356,0.002390107838436961,-0.002384844468906522,-0.04744110256433487,-0.031808655709028244,-0.00765370624139905,0.012510128319263458,-0.08265293389558792,0.07287578284740448,-0.0027655300218611956,0.04908048361539841,0.045274022966623306,0.05761224403977394,0.027874812483787537,-0.09066532552242279,-0.022117437794804573,-0.0402965173125267,0.05020992457866669,-1.704669827518046e-8,-0.020373985171318054,0.054996516555547714,-0.0864715427160263,0.049024663865566254,0.03097599558532238,0.006796358153223991,-0.06658599525690079,-0.025085538625717163,0.002838528249412775,-0.009302319958806038,0.0022712189238518476,0.0027305176481604576,0.004694158677011728,-0.03326818346977234,0.012961608357727528,0.01644911989569664,-0.0399753674864769,-0.10365935415029526,-0.007438399828970432,0.0019166492857038975,-0.11395750194787979,0.060588862746953964,-0.03359229862689972,-0.0668989047408104,-0.08097472786903381,-0.05613303184509277,-0.023202208802103996,0.022227397188544273,-0.006715945899486542,-0.020280176773667336,0.01119254156947136,0.020493756979703903,0.024446526542305946,-0.08474157750606537,0.032897621393203735,0.0013891203561797738,-0.06090257316827774,-0.009940850548446178,0.07615377753973007,-0.02981320209801197,0.04169832542538643,0.01923307217657566,-0.009642131626605988,0.017375443130731583,0.08238787204027176,-0.015305718407034874,0.03640081733465195,-0.009630474261939526,-0.03295084834098816,-0.08645772933959961,0.07669778168201447,0.1161172166466713,0.030427783727645874,0.07526682317256927,0.05338504537940025,-0.03545760735869408,-0.015988096594810486,0.03997693210840225,0.0013937546173110604,0.01388217881321907,0.024190252646803856,-0.01543149072676897,-0.0032250850927084684,0.03183361142873764]},{"text":"On Sundays there was no work.","book":"Animal Farm","chapter":32,"embedding":[0.023463545367121696,0.0445905365049839,0.02598360739648342,0.041599810123443604,0.0334831178188324,0.005573410540819168,-0.09735863655805588,-0.09360969811677933,-0.044778913259506226,0.010692279785871506,0.01517859660089016,0.03406725078821182,-0.002409588545560837,0.008072600699961185,0.016230519860982895,-0.08328638225793839,-0.057736147195100784,-0.08493246138095856,0.006863601040095091,-0.0483524426817894,-0.013732473365962505,0.012707488611340523,-0.020402804017066956,0.053241342306137085,0.05733213946223259,0.11117378622293472,-0.024742649868130684,-0.0051554786041378975,-0.015226660296320915,-0.043959058821201324,-0.10699459910392761,0.014273639768362045,0.007000470533967018,-0.034814946353435516,0.11458780616521835,-0.029191646724939346,0.086502805352211,0.08145438879728317,0.002449731808155775,0.006043495610356331,-0.01780766248703003,-0.008641892112791538,-0.04067666456103325,0.017736069858074188,-0.040040671825408936,0.006267030723392963,0.01127297431230545,-0.062257759273052216,-0.00005947406680206768,0.0522921048104763,0.03786320984363556,-0.034913308918476105,-0.053647663444280624,0.019520994275808334,0.07002940028905869,-0.017091309651732445,0.032337699085474014,-0.014041398651897907,0.04135311022400856,-0.002756257774308324,0.03112020529806614,0.007172474637627602,-0.0018748033326119184,0.03960157930850983,0.0025212832260876894,-0.0015234604943543673,-0.11286287754774094,-0.04724908247590065,-0.028162075206637383,0.02281092293560505,-0.05324762314558029,-0.010059393011033535,0.005875204224139452,0.014536985196173191,0.015536107122898102,-0.0032142603304237127,0.01657017692923546,-0.059939295053482056,0.03734329715371132,0.017788095399737358,-0.09648410230875015,-0.1192137822508812,-0.01709178276360035,0.10744111239910126,-0.0019635052885860205,0.04222918301820755,-0.019738024100661278,0.06424349546432495,0.10732905566692352,-0.054659340530633926,-0.02510393224656582,0.02403373084962368,-0.07399153709411621,-0.01800740882754326,-0.007041263859719038,-0.09908497333526611,-0.0047101816162467,0.049291763454675674,-0.06949562579393387,0.11203798651695251,-0.008773376233875751,-0.021373186260461807,0.0002715956652536988,-0.04114658385515213,-0.01067169476300478,0.08644714206457138,-0.014788680709898472,0.01852497085928917,-0.0954626053571701,-0.09277557581663132,-0.015192560851573944,-0.005219479091465473,0.02841682732105255,0.015457551926374435,-0.06189318746328354,0.012450969778001308,0.016904788091778755,-0.01603616401553154,-0.1277315318584442,0.0373772457242012,0.07051307708024979,0.05140487849712372,-0.012996832840144634,0.0018027930054813623,-0.15849345922470093,0.07559190690517426,0.06693704426288605,-2.9783584855440764e-33,0.053008072078228,-0.07743555307388306,0.0685296356678009,-0.030656348913908005,0.1198367178440094,-0.0293608158826828,0.010980665683746338,0.017334679141640663,0.10789818316698074,-0.029582995921373367,0.012423011474311352,0.019444357603788376,0.046519774943590164,-0.10780072957277298,0.08331383019685745,0.028868598863482475,0.03465063124895096,0.046834059059619904,-0.0036710817366838455,-0.030686184763908386,0.06732740253210068,-0.031242597848176956,-0.0784655213356018,-0.004992712754756212,-0.06392586976289749,-0.029058022424578667,0.015817195177078247,-0.03409411385655403,0.04394800588488579,-0.01449138205498457,-0.07456101477146149,0.03014611266553402,0.14707393944263458,0.03693753108382225,0.04244876652956009,0.011963177472352982,0.03831171244382858,-0.007055895868688822,-0.07289348542690277,-0.003789941081777215,0.002498914720490575,-0.08453571796417236,0.022266816347837448,-0.09858792275190353,-0.0010367993963882327,-0.006608633324503899,0.07992669194936752,-0.053749941289424896,0.03127889335155487,0.025587297976017,0.08216685801744461,0.053107865154743195,0.056895963847637177,0.003772180061787367,-0.018795758485794067,0.1003929078578949,0.004720691591501236,-0.006524072960019112,-0.05303439125418663,-0.040127795189619064,0.006847948767244816,-0.017545975744724274,0.049814313650131226,-0.0716404989361763,-0.06763028353452682,0.06514602899551392,-0.031179388985037804,-0.021448621526360512,0.009667539037764072,-0.036985814571380615,0.057407356798648834,0.039011675864458084,-0.019616086035966873,-0.01697372831404209,0.09862027317285538,0.009113412350416183,-0.07932302355766296,-0.014787888154387474,-0.028221312910318375,0.024816429242491722,0.16580238938331604,-0.051042038947343826,0.024265319108963013,-0.07476817071437836,0.11713042855262756,-0.011177175678312778,0.04076223075389862,0.09302789717912674,0.017698848620057106,-0.02941249869763851,-0.03494802489876747,-0.01837920770049095,-0.014665159396827221,-0.05928776040673256,0.07033194601535797,9.152048203907007e-34,-0.08359391987323761,-0.028460362926125526,-0.0635681301355362,0.035834670066833496,-0.032209426164627075,-0.008378113619983196,-0.027506159618496895,-0.025399720296263695,0.08146535605192184,0.06489285081624985,0.09644754230976105,0.0002919432008638978,-0.05059431865811348,0.024499395862221718,0.005791342351585627,-0.004085193388164043,-0.044790975749492645,0.04555065557360649,-0.05523459613323212,0.07693994045257568,0.05716314911842346,0.015991147607564926,-0.033740464597940445,0.03663140907883644,0.0394291952252388,0.09446747601032257,-0.03757917508482933,0.0570303276181221,0.015292533673346043,-0.022326583042740822,0.03567177802324295,-0.03898639604449272,-0.07715421915054321,-0.010052008554339409,0.025704428553581238,0.012280493043363094,-0.07725651562213898,0.10452825576066971,-0.017666740342974663,-0.06799140572547913,0.005280159879475832,0.012866196222603321,0.03408611938357353,0.07075297087430954,-0.032289303839206696,0.05863845720887184,-0.005241710692644119,0.007736957166343927,0.03870537877082825,-0.03956960141658783,-0.06425819545984268,0.00034105576924048364,-0.05424647778272629,0.008144033141434193,0.02100256457924843,0.006228041369467974,0.02018772065639496,-0.03767025098204613,-0.05633421987295151,0.03890601918101311,0.03870264068245888,-0.051767874509096146,-0.05800465866923332,0.01958315446972847,0.04067041724920273,-0.026953155174851418,-0.025335922837257385,0.05031263455748558,0.05277637019753456,-0.07040036469697952,-0.019123632460832596,-0.02394792065024376,-0.008772660046815872,-0.038312602788209915,-0.0318441279232502,0.13155469298362732,-0.026249965652823448,0.0192882027477026,-0.04440171271562576,-0.012608353048563004,-0.00491463765501976,-0.04091377928853035,-0.07136529684066772,0.0006784512661397457,0.05463140085339546,-0.026565276086330414,0.03455093875527382,-0.04802004247903824,0.010433162562549114,0.04909878969192505,0.023078711703419685,-0.01021596509963274,0.03173501789569855,0.13116246461868286,0.020255880430340767,-1.53653303414103e-8,0.07088661193847656,0.004813374485820532,-0.01564604975283146,-0.033822495490312576,0.005741364788264036,-0.0725010335445404,0.09715273231267929,-0.0938560888171196,0.07043677568435669,0.09240056574344635,-0.01639138162136078,-0.11740540713071823,-0.005814963020384312,0.04399434104561806,0.02214038372039795,-0.0033892954234033823,0.00896262377500534,-0.048514340072870255,0.005616731941699982,-0.04086223617196083,-0.045811381191015244,-0.0398140475153923,-0.058687806129455566,0.01438952423632145,0.04452371597290039,0.042215462774038315,0.01928757317364216,-0.011245512403547764,0.07172730565071106,0.019711129367351532,0.002757921116426587,0.03668241202831268,-0.0471135638654232,-0.033402688801288605,-0.08004457503557205,-0.028157049790024757,0.04829637333750725,0.06548961251974106,-0.09895165264606476,-0.026605280116200447,-0.0080946683883667,0.05326802656054497,-0.030077332630753517,-0.04177669808268547,-0.001465548644773662,-0.01231300551444292,-0.04255443438887596,0.035554029047489166,-0.028995200991630554,-0.06836968660354614,-0.01960337720811367,0.028589675202965736,0.0017737908056005836,-0.024712421000003815,0.02461993880569935,0.0006932132528163493,0.032313667237758636,-0.022293029353022575,-0.03675072267651558,-0.034250710159540176,0.03227602690458298,-0.04204387590289116,-0.028377141803503036,0.032257646322250366]},{"text":"This was run up the flagstaff in the farmhouse garden every Sunday morning.","book":"Animal Farm","chapter":32,"embedding":[0.046718254685401917,0.06978556513786316,-0.06488528102636337,0.008756022900342941,0.074532650411129,-0.036127641797065735,-0.12860694527626038,-0.06721650063991547,-0.08015980571508408,0.0012697094352915883,0.018989279866218567,0.05047354847192764,0.001404980313964188,-0.013014768250286579,-0.012552586384117603,0.026918016374111176,0.03811869025230408,-0.02697635442018509,0.035915885120630264,-0.006382760591804981,-0.050526924431324005,0.037493493407964706,0.09803877770900726,0.019597157835960388,0.014155304059386253,0.06718458980321884,-0.06248997151851654,0.04660091921687126,-0.06838802248239517,-0.030439844354987144,-0.05163639411330223,0.026272917166352272,-0.0274649728089571,0.002651192480698228,0.002758634276688099,0.04198407009243965,0.06166210025548935,0.04402141273021698,0.08391938358545303,0.06765537708997726,-0.019250452518463135,-0.07642703503370285,0.05211065337061882,-0.04709631949663162,-0.17307354509830475,0.03300536423921585,0.005501312203705311,-0.04695998504757881,0.08364490419626236,-0.021691370755434036,0.026411190629005432,0.015453438274562359,0.008857471868395805,-0.04376847669482231,0.022409874945878983,0.03607737272977829,-0.08133837580680847,0.010950814001262188,-0.0010088611161336303,0.06068971008062363,-0.02951887808740139,0.025651341304183006,-0.007489061448723078,0.01746349036693573,0.010509165935218334,-0.0531591922044754,-0.1068805530667305,-0.07588698714971542,0.07688425481319427,-0.11988616734743118,0.0011067517334595323,0.02681775391101837,-0.000872987206093967,-0.10478083789348602,-0.1243080347776413,0.11627770960330963,0.028492245823144913,0.005715301726013422,0.024124694988131523,-0.03808857500553131,-0.02051546424627304,0.014378983527421951,-0.01615455560386181,0.06583701074123383,0.01821834407746792,0.07101935893297195,0.022536003962159157,0.08100069314241409,0.10496494174003601,-0.00020376073371153325,0.004897487349808216,-0.022521136328577995,-0.09762924164533615,0.021407516673207283,-0.06975313276052475,-0.05288921296596527,-0.048462823033332825,-0.06460137665271759,-0.05521322414278984,0.04792772978544235,0.027624234557151794,-0.010603845119476318,0.035248465836048126,-0.01740705408155918,-0.009591755457222462,-0.019791098311543465,-0.14734937250614166,0.07636243849992752,-0.03747348114848137,-0.06702359020709991,0.0714111328125,0.015572953037917614,0.03383369743824005,0.01567005179822445,0.010545226745307446,-0.030854910612106323,0.02213652804493904,-0.034728266298770905,-0.11929425597190857,0.11061029881238937,0.08287610113620758,0.02144218608736992,-0.010081706568598747,0.02480878122150898,0.035888172686100006,0.07498613744974136,0.07915796339511871,-2.052060304559475e-33,0.04577102139592171,0.035581525415182114,0.04038773849606514,-0.029293019324541092,0.08981625735759735,-0.05923951789736748,-0.04489712044596672,0.0259751807898283,-0.034426499158144,0.008473657071590424,0.06856132298707962,-0.016737893223762512,-0.02030329406261444,0.021866613999009132,-0.056023385375738144,-0.08551735430955887,-0.04545897990465164,-0.012071422301232815,0.0019537070766091347,-0.04093426093459129,-0.02306254580616951,-0.014968197792768478,-0.10240623354911804,-0.0005728097748942673,-0.03838511183857918,-0.03493504226207733,0.06396220624446869,0.06862372905015945,0.013427692465484142,0.021226299926638603,0.11656724661588669,-0.08605938404798508,0.021324854344129562,0.011269302107393742,0.05834713578224182,-0.015554600395262241,0.03462560474872589,-0.06847792118787766,-0.07077053934335709,0.036870282143354416,0.013750077225267887,-0.00535614276304841,0.055100005120038986,-0.002697603078559041,-0.06307018548250198,-0.051893290132284164,0.028053104877471924,0.08930730819702148,0.04501999542117119,0.012825108133256435,0.05045181140303612,0.02154756896197796,0.08226509392261505,0.05548502877354622,-0.04170052707195282,0.003893469227477908,0.014907305128872395,-0.044682297855615616,0.022688983008265495,0.050999414175748825,0.013100845739245415,-0.0306788869202137,-0.10319935530424118,-0.054075855761766434,-0.05596567317843437,-0.03721456602215767,-0.01320931501686573,-0.013706483878195286,0.020517826080322266,0.08259021490812302,0.10567803680896759,-0.073390893638134,0.03772018849849701,0.020216548815369606,0.03232170268893242,0.00023194112873170525,0.03140009939670563,0.09320668876171112,0.01862599141895771,0.019327659159898758,0.04021109640598297,0.01010604202747345,0.016489893198013306,-0.023651903495192528,0.03166220337152481,-0.03353641927242279,0.00020505479187704623,-0.04207971319556236,-0.07224278897047043,-0.06087499484419823,-0.035357456654310226,0.034818463027477264,0.03785860911011696,-0.046293072402477264,0.06589806824922562,-4.4302694605250113e-35,-0.03556171432137489,0.0010582274990156293,-0.03568939492106438,0.009147515520453453,0.02500639297068119,-0.024949144572019577,-0.06423316895961761,-0.042039383202791214,-0.0009529259987175465,-0.00009471351950196549,-0.07147233933210373,0.0854203924536705,0.0688108503818512,0.017390402033925056,0.021065009757876396,-0.050510507076978683,0.04130464419722557,0.014703094027936459,0.021850204095244408,0.009076662361621857,-0.07655734568834305,0.05301259830594063,0.01670941337943077,-0.030062345787882805,0.05617458373308182,0.02148449420928955,-0.014740202575922012,0.056964509189128876,-0.04717658460140228,-0.05963848531246185,-0.04400371387600899,-0.0840880274772644,-0.01627860777080059,0.04026352986693382,-0.0410940982401371,0.010018753819167614,0.007592194713652134,-0.026116646826267242,0.01832285337150097,0.050315190106630325,-0.017610318958759308,0.00156698958016932,0.024681655690073967,0.08878912031650543,-0.08135320991277695,-0.06700008362531662,-0.06277590245008469,0.05645500868558884,0.0373510867357254,0.055714622139930725,-0.11091793328523636,0.07953020930290222,-0.01472815778106451,0.031968481838703156,-0.029202410951256752,0.00810715090483427,0.06383609026670456,0.03747725114226341,-0.0706695169210434,0.07180590182542801,0.0030617862939834595,0.05120037868618965,-0.0633627325296402,0.03051547333598137,0.007901549339294434,0.011499123647809029,-0.06889702379703522,-0.04634983837604523,-0.07130227237939835,0.026422563940286636,-0.06316162645816803,-0.04930940270423889,-0.015580760315060616,-0.045786965638399124,-0.06960804760456085,-0.00641603022813797,0.027223173528909683,0.0057403226383030415,-0.03328937292098999,-0.020858116447925568,-0.0049044727347791195,-0.09427698701620102,0.008251109160482883,-0.029262196272611618,0.005756191443651915,-0.015680940821766853,-0.017278680577874184,-0.008082685992121696,-0.003594648791477084,0.09380936622619629,0.036520715802907944,-0.0038824505172669888,-0.02347899228334427,0.046334341168403625,0.017465580254793167,-2.1171274511289084e-8,0.06229772791266441,0.024170884862542152,-0.038242556154727936,-0.012339758686721325,0.11877811700105667,-0.026237718760967255,0.1822037249803543,0.025321023538708687,0.00031288291211239994,-0.03085479699075222,-0.019386248663067818,0.01752741076052189,0.03493262454867363,0.057446811348199844,0.017728757113218307,-0.08044175803661346,0.051788851618766785,-0.019195133820176125,-0.06340108066797256,0.0078677823767066,-0.01691843383014202,-0.016570258885622025,0.03556007146835327,-0.056099146604537964,-0.059497106820344925,0.01442622859030962,0.0021147835068404675,-0.039099954068660736,0.04337260499596596,0.07502016425132751,-0.009231233969330788,0.07495415210723877,0.01003680843859911,-0.06077054142951965,-0.09436611831188202,0.0633997768163681,-0.062427930533885956,0.0784757137298584,-0.02370345965027809,-0.01663392037153244,-0.0328674241900444,0.013681244105100632,-0.011102697812020779,-0.018454579636454582,0.040510181337594986,0.07665150612592697,-0.07718610018491745,0.01645900309085846,-0.015078387223184109,-0.005250586662441492,-0.01409551128745079,0.016423698514699936,0.04156811907887459,-0.009985511191189289,0.05446198955178261,0.032028794288635254,-0.007547736167907715,-0.07463051378726959,0.06602609902620316,0.0023251690436154604,-0.05742644891142845,-0.02666598930954933,0.02167654223740101,-0.01958659291267395]},{"text":"The other animals understood how to vote, but could never think of any resolutions of their own.","book":"Animal Farm","chapter":32,"embedding":[0.07309067249298096,0.028879249468445778,0.0034905318170785904,0.04558679088950157,-0.03523005172610283,-0.027280153706669807,-0.06932383030653,-0.06443227082490921,-0.00789378210902214,0.07728369534015656,-0.008694489486515522,0.052195291966199875,0.013034531846642494,-0.023446757346391678,-0.06684840470552444,0.0019537112675607204,-0.1132434755563736,-0.04124828800559044,-0.005840598605573177,0.044539518654346466,0.03150699660181999,0.003726152004674077,0.050859738141298294,0.034347016364336014,-0.03548029810190201,-0.0032459376379847527,-0.005026353057473898,-0.025530841201543808,0.010103032924234867,-0.008384482935070992,-0.0076134721748530865,0.012841766700148582,0.04413655027747154,0.05888054147362709,0.013876467011868954,-0.07775883376598358,0.07470683008432388,-0.06628892570734024,0.052382487803697586,-0.12244223058223724,0.026057245209813118,-0.0018167136004194617,-0.0021033664233982563,-0.07761476188898087,-0.024017909541726112,0.0018578704912215471,-0.0777224525809288,-0.011845432221889496,0.006560022477060556,-0.04754980280995369,-0.01954186148941517,-0.012682022526860237,-0.05948638916015625,-0.03191658481955528,0.03597317636013031,-0.020107654854655266,-0.04618489369750023,0.003743097884580493,0.03491603583097458,-0.03381304070353508,-0.01968279294669628,0.010044298134744167,0.027093805372714996,0.008177095092833042,-0.022779444232583046,0.06729338318109512,-0.05725862830877304,-0.028773654252290726,-0.040148839354515076,0.053600750863552094,0.016116643324494362,0.0014083600835874677,0.04709598049521446,-0.07286694645881653,-0.040492087602615356,-0.04483184963464737,-0.05480800196528435,0.006015779450535774,0.062176089733839035,0.007157142739742994,-0.13687099516391754,0.053912680596113205,-0.04852305352687836,0.06879478693008423,0.1266181319952011,-0.020707715302705765,-0.008790913037955761,-0.05994874984025955,-0.009326143190264702,-0.0333099439740181,-0.10987408459186554,-0.05075990408658981,0.011032111942768097,-0.028031690046191216,0.021214352920651436,-0.03519684448838234,0.05666297674179077,0.006948594935238361,0.002714622300118208,0.05501183122396469,-0.056866150349378586,-0.019680168479681015,-0.012811298482120037,-0.04267949238419533,0.0012637561885640025,0.014356382191181183,-0.05524438992142677,-0.005025804042816162,0.029759259894490242,0.023642828688025475,-0.10260290652513504,-0.05194608494639397,0.09362208098173141,0.16229043900966644,0.029434947296977043,-0.001220900914631784,-0.06514521688222885,-0.01475073304027319,0.027505122125148773,0.009963967837393284,-0.01189497672021389,-0.019652925431728363,-0.06181632727384567,0.01932341419160366,0.08420897275209427,0.02121221087872982,0.0045749228447675705,-3.4445896671229354e-33,0.022949889302253723,-0.10178029537200928,0.007272469345480204,0.004834380000829697,0.024238385260105133,0.08246120810508728,0.03346985578536987,3.7559064480774396e-7,0.030006462708115578,0.03723921254277229,0.09740731865167618,0.044405773282051086,0.09999053925275803,-0.02758748270571232,0.0631192997097969,0.026715988293290138,-0.04997476190328598,0.05746268853545189,0.05260739475488663,-0.05546162649989128,0.04324091225862503,0.13611595332622528,0.053663596510887146,-0.07127901911735535,0.05575418472290039,-0.04614194855093956,0.011614889837801456,-0.03657195344567299,-0.044052254408597946,0.03692910820245743,-0.0423758290708065,-0.05954586714506149,0.0009351098560728133,0.02710036188364029,-0.05540190264582634,-0.049531687051057816,0.056608330458402634,-0.09385598450899124,-0.07053322345018387,0.006127005908638239,0.07752103358507156,-0.011206330731511116,0.029664108529686928,-0.026943204924464226,0.009038533084094524,0.08788178861141205,-0.011834616772830486,0.013287567533552647,-0.01146814227104187,0.061510711908340454,-0.0006396938115358353,0.051959969103336334,0.08817405253648758,-0.09794145077466965,0.0017482524272054434,-0.032625261694192886,0.023122422397136688,0.005857963114976883,-0.12310228496789932,-0.09485258907079697,-0.02207837998867035,-0.05761239677667618,0.0076936110854148865,-0.019085444509983063,0.028496835380792618,0.012485475279390812,-0.1224343404173851,0.015161973424255848,0.0013329604407772422,-0.0682610422372818,0.00650256872177124,-0.017372172325849533,-0.036103054881095886,-0.11552581191062927,-0.07669232785701752,-0.05499183014035225,0.06542738527059555,-0.03638400509953499,0.004108065739274025,-0.09445049613714218,0.029486490413546562,0.008059907704591751,-0.023800194263458252,0.021907933056354523,0.12766404449939728,-0.0081700524315238,0.10334426909685135,0.02276493050158024,0.03445397689938545,-0.0473811961710453,0.016742294654250145,0.023448431864380836,-0.01517539843916893,-0.1651502251625061,-0.005782666616141796,7.807413991325816e-34,-0.09036290645599365,0.002874676138162613,0.0356966033577919,0.0465666688978672,0.007014008238911629,0.0120497802272439,-0.03869232162833214,-0.10254435241222382,0.09616539627313614,-0.014879950322210789,-0.0012722613755613565,-0.015373742207884789,0.034193672239780426,-0.016023388132452965,0.0778789147734642,-0.01658441498875618,0.01604163832962513,-0.0013107815757393837,0.048102006316185,-0.020671291276812553,0.00492054270580411,0.0864068940281868,-0.06536313146352768,0.10718192905187607,-0.013179476372897625,0.04315805062651634,-0.03474413603544235,0.01581014320254326,0.021675657480955124,-0.07410788536071777,0.0188349187374115,-0.024960780516266823,-0.012305199168622494,-0.018236733973026276,0.0785282701253891,0.02605234459042549,-0.06591938436031342,-0.011702640913426876,-0.028862154111266136,0.0071066757664084435,-0.012349562719464302,-0.08063585311174393,-0.04157978296279907,-0.016049955040216446,-0.006619652733206749,0.016696680337190628,0.0064576356671750546,0.06261193007230759,-0.008747830055654049,-0.008648060262203217,-0.03632713109254837,0.0476311594247818,0.00861359667032957,-0.05262847617268562,-0.0040601277723908424,-0.02967686951160431,0.02093227580189705,0.0033999490551650524,0.09198727458715439,-0.020040787756443024,0.03911110758781433,0.007731740362942219,0.01810314692556858,0.04734364524483681,-0.024413708597421646,0.020938247442245483,-0.07480387389659882,0.03057650476694107,0.10086110234260559,0.029232174158096313,0.042251549661159515,-0.023447776213288307,-0.04106680676341057,0.027710823342204094,0.03531331568956375,0.06356293708086014,-0.07759226858615875,0.025251338258385658,-0.0039078001864254475,-0.06348998844623566,-0.017149850726127625,-0.013408658094704151,-0.03283155709505081,0.005504329688847065,0.05580064654350281,-0.004010636359453201,0.015768826007843018,0.046381041407585144,0.05994100123643875,0.04604772850871086,0.04610007628798485,-0.028888415545225143,0.05903153494000435,0.019345412030816078,-0.04280368238687515,-2.060874670917201e-8,-0.06537631154060364,0.08632512390613556,-0.05327257513999939,0.05521212890744209,0.05547144263982773,0.004085851833224297,0.0031713952776044607,-0.029425116255879402,0.00029159567202441394,0.07683009654283524,0.06581766903400421,0.005950650665909052,-0.04468708112835884,0.09997045248746872,0.05387924611568451,0.01993216760456562,0.01580023020505905,-0.022635456174612045,-0.06265832483768463,0.06271917372941971,-0.13318176567554474,-0.017632553353905678,-0.10407904535531998,-0.08515285700559616,-0.061549119651317596,0.009576776996254921,-0.00462100375443697,0.002493561478331685,-0.008447078987956047,0.04470694437623024,-0.044935937970876694,-0.018431901931762695,-0.08668024837970734,0.004413070622831583,-0.02002236805856228,0.02847655490040779,-0.023661702871322632,0.009518105536699295,0.06094701588153839,-0.04842597246170044,-0.021915433928370476,0.11883655935525894,-0.026326224207878113,0.06453210860490799,0.007342508528381586,0.06306629627943039,-0.02435634657740593,0.03425966203212738,-0.026250263676047325,0.015742149204015732,-0.06957894563674927,0.13016395270824432,-0.06266399472951889,-0.026515403762459755,0.02949070744216442,-0.0066776699386537075,0.024046361446380615,0.004461067263036966,-0.0036174969282001257,0.009889456443488598,0.09012037515640259,0.0856969878077507,-0.04737700894474983,0.0419018417596817]},{"text":"The pigs had set aside the harness-room as a headquarters for themselves.","book":"Animal Farm","chapter":32,"embedding":[0.05362542346119881,0.039496682584285736,-0.026401963084936142,0.053077295422554016,0.02014208771288395,0.00906098261475563,-0.05524209514260292,-0.03149372711777687,-0.023048551753163338,0.05404854193329811,0.12256602197885513,0.032823290675878525,0.09535185247659683,0.03575655817985535,-0.023277174681425095,-0.0880134254693985,0.01260080374777317,-0.029777199029922485,-0.015313351526856422,-0.009591411799192429,-0.011607094667851925,-0.08153977245092392,0.05669587478041649,0.031375445425510406,-0.022959129884839058,-0.06221230328083038,-0.07295869290828705,0.0433591827750206,-0.004453870002180338,-0.04043383151292801,-0.03613685816526413,-0.07372767478227615,-0.01205483078956604,-0.08984482288360596,-0.02394992858171463,0.025646671652793884,0.13296407461166382,0.044907111674547195,0.11248327046632767,0.013821757398545742,-0.013652808964252472,-0.0846894308924675,0.01358606293797493,0.001668659271672368,-0.06476513296365738,0.04311634972691536,0.016284722834825516,-0.039432257413864136,0.02021811343729496,-0.051593679934740067,0.04843173921108246,0.027745947241783142,0.0009699620422907174,0.008142510429024696,-0.01471827831119299,0.011624868027865887,-0.04948149621486664,-0.04303808882832527,0.0698278620839119,-0.07539094984531403,0.07213819772005081,0.027369579300284386,0.030214419588446617,0.05339768901467323,-0.006975766737014055,-0.03552238643169403,0.017860589548945427,0.06538358330726624,0.0174847524613142,-0.07292526960372925,0.026183081790804863,-0.05192471295595169,0.017989931628108025,-0.026009101420640945,0.0032381266355514526,0.04907836765050888,-0.010514981113374233,0.07014506310224533,0.09499508887529373,-0.051469966769218445,0.02347402274608612,0.06387895345687866,0.03156547620892525,0.08948580175638199,-0.005168267525732517,0.031745389103889465,-0.02318103425204754,-0.014269286766648293,-0.0863337367773056,-0.015568695962429047,-0.04937909543514252,-0.1083584800362587,-0.00040427938802167773,0.04202726483345032,0.07612551748752594,-0.043742887675762177,-0.0814320296049118,0.11839631199836731,-0.015316754579544067,0.003699260763823986,0.02544301375746727,-0.030679207295179367,0.023096952587366104,0.010412651114165783,0.050671372562646866,-0.018880771473050117,-0.06515440344810486,-0.00018387949967291206,0.025636501610279083,-0.013047635555267334,-0.022936368361115456,0.04152349382638931,-0.003694297280162573,0.07300377637147903,0.03258347138762474,0.16585959494113922,-0.06544873118400574,-0.025973374024033546,-0.005030990578234196,0.0023415409959852695,0.07849796116352081,0.06112217158079147,0.03163529187440872,-0.0035837742034345865,0.017357204109430313,0.03182073310017586,-0.007217531092464924,-4.274234478150105e-33,-0.0168897807598114,-0.04705187305808067,-0.06739397346973419,0.01596497930586338,0.17024172842502594,-0.004254811443388462,-0.10168708115816116,0.05442282184958458,0.053536951541900635,0.0542578399181366,-0.06071683019399643,0.010220739990472794,-0.023044100031256676,-0.051861561834812164,-0.024545317515730858,-0.022164026275277138,0.022962862625718117,0.005244908854365349,-0.040538761764764786,-0.018366510048508644,-0.06785113364458084,0.02352600172162056,-0.022990938276052475,0.04635240137577057,0.0479372963309288,0.06430592387914658,-0.04811768978834152,-0.029190683737397194,0.006320430431514978,0.051915112882852554,-0.03663072735071182,-0.04061885550618172,-0.01432611234486103,0.013841657899320126,-0.007153244223445654,-0.02742011286318302,0.02434714324772358,-0.07090792804956436,0.0005394429317675531,-0.011011443100869656,0.07999665290117264,-0.027079034596681595,0.03750601410865784,0.04335525259375572,-0.006227170117199421,0.0769042819738388,-0.04956132173538208,0.01345418207347393,-0.011171961203217506,-0.02080940455198288,0.034063875675201416,0.01313258521258831,-0.008597521111369133,-0.00954131968319416,-0.020113877952098846,-0.018911175429821014,-0.022212419658899307,0.008493969216942787,-0.039449840784072876,0.028444375842809677,0.037371523678302765,0.09097997844219208,-0.04695386067032814,0.1109929233789444,0.029859595000743866,-0.11047206819057465,-0.0073744128458201885,-0.023956287652254105,-0.00837435107678175,0.005347155965864658,-0.06851712614297867,-0.0022059662733227015,-0.07117395848035812,-0.10388819873332977,-0.0765945166349411,0.001783630228601396,-0.01186187844723463,0.054243870079517365,-0.08668562024831772,-0.08485054969787598,0.08763215690851212,0.04580998793244362,-0.03240935876965523,-0.00813931692391634,0.0693962350487709,0.05046314746141434,0.07462775707244873,-0.04713520407676697,0.021866532042622566,-0.03852111101150513,0.008877290412783623,0.0164314117282629,-0.011428686790168285,-0.049650952219963074,-0.04102075472474098,2.8721136326969117e-33,0.024203263223171234,0.0415165051817894,0.01526769157499075,-0.053899943828582764,0.013904816471040249,0.04115002229809761,0.019323447719216347,-0.10602807998657227,-0.0037960875779390335,0.01205992791801691,-0.061136528849601746,-0.017755454406142235,-0.015286347828805447,0.005808372516185045,0.04357956349849701,-0.006368002854287624,0.05609714984893799,-0.1267767697572708,-0.004798196256160736,-0.03629888966679573,-0.02091081067919731,-0.05625390261411667,0.00004290373908588663,-0.0008245168719440699,0.04376290738582611,0.07006052881479263,-0.04669424518942833,0.06161007285118103,-0.008780703879892826,0.024393852800130844,-0.04599637910723686,-0.021451851353049278,-0.05274571478366852,0.07670003175735474,-0.019489863887429237,0.012925936840474606,-0.06107792630791664,0.049519818276166916,-0.06622901558876038,-0.05387840420007706,0.010455155745148659,-0.061251964420080185,-0.15827405452728271,0.07172851264476776,0.005936615169048309,0.0670875683426857,-0.06038501858711243,-0.059074364602565765,-0.04437417536973953,0.028500284999608994,-0.06774746626615524,-0.03506486490368843,0.0246706772595644,-0.027029478922486305,-0.08955211937427521,0.09293609112501144,0.004894421901553869,0.02642403356730938,0.08875001221895218,-0.02851209230720997,0.01583552360534668,0.020635085180401802,-0.03201087564229965,0.029968518763780594,-0.05050744488835335,-0.011276972480118275,0.00042379627120681107,-0.02949383854866028,0.04545120894908905,0.03331129252910614,0.05183896794915199,0.035009607672691345,-0.008151833899319172,-0.05392182618379593,0.03362225741147995,0.1332174688577652,-0.0248067956417799,-0.04589868709445,-0.04013654962182045,-0.024464108049869537,-0.031540486961603165,-0.07086613774299622,0.02797151915729046,0.015272289514541626,0.02456207387149334,0.0169729795306921,0.05677945539355278,0.20851580798625946,-0.013790484517812729,-0.005955973640084267,0.07235115766525269,-0.042372751981019974,0.02731766737997532,0.01713007688522339,-0.023581434041261673,-1.8453699013321057e-8,-0.020722098648548126,0.0170720424503088,-0.04183448478579521,0.01740177720785141,-0.0006276188069023192,-0.053208090364933014,0.0010258088586851954,0.009850037284195423,0.027224015444517136,0.11418429762125015,-0.1222100481390953,0.05212002992630005,-0.013524670153856277,0.0870993584394455,-0.044788919389247894,0.08509925752878189,-0.07956930249929428,0.04593108594417572,-0.03314129635691643,0.023206809535622597,-0.005285882856696844,0.0018394208746030927,-0.046927325427532196,0.04287637770175934,0.009201347827911377,-0.010916776955127716,-0.08570276945829391,0.017114989459514618,-0.011990481056272984,0.04757997393608093,0.045971229672431946,-0.007008248474448919,-0.059237878769636154,-0.010332445614039898,-0.04876115918159485,0.028051292523741722,0.024976907297968864,0.028702091425657272,0.0836508497595787,-0.09747027605772018,-0.007037137169390917,-0.022074388340115547,-0.005249849986284971,0.0014255668502300978,0.04917838051915169,-0.012278740294277668,-0.0056732334196567535,0.07926296442747116,-0.0023161189164966345,-0.047189678996801376,-0.04171330854296684,0.09211662411689758,0.011493504978716373,0.025882380083203316,-0.00854835007339716,-0.08656896650791168,-0.020428599789738655,-0.014335326850414276,-0.0014650102239102125,0.036570433527231216,-0.11359880119562149,0.022435402497649193,-0.015949301421642303,-0.03716275095939636]},{"text":"On the whole, these projects were a failure.","book":"Animal Farm","chapter":33,"embedding":[-0.05085241049528122,0.035085126757621765,0.07801411300897598,-0.0017792216967791319,0.04404352605342865,-0.014397237449884415,-0.04108721762895584,0.017212463542819023,-0.03376379981637001,-0.023763135075569153,-0.01739579625427723,0.03906218707561493,0.05223398655653,-0.014329314231872559,-0.03302304446697235,-0.00879967026412487,-0.046210888773202896,-0.020174123346805573,0.026457304134964943,0.06740984320640564,-0.03510173782706261,0.08613897114992142,-0.040888164192438126,0.0625058189034462,-0.02740388549864292,0.08078678697347641,-0.06461110711097717,-0.03838607668876648,-0.017235971987247467,0.008044152520596981,-0.026381559669971466,0.04963340610265732,-0.05372605100274086,-0.0024032562505453825,0.08893123269081116,0.0961850956082344,0.03646203503012657,0.0338321328163147,-0.03685395419597626,-0.06307567656040192,-0.047304145991802216,0.010423554107546806,0.019981205463409424,0.017908791080117226,-0.007754265330731869,-0.09967625141143799,0.03969664126634598,-0.12006941437721252,-0.024336349219083786,-0.04994530603289604,0.025496551766991615,-0.06562116742134094,0.0215090811252594,-0.062409766018390656,0.0021583863999694586,-0.047348182648420334,-0.06411901116371155,0.043872661888599396,0.034348536282777786,0.03411869704723358,0.06362676620483398,0.015160467475652695,-0.04789012670516968,0.00011033804184990004,0.13356654345989227,0.030670886859297752,0.032997675240039825,-0.0798325389623642,-0.0397060289978981,0.09352760016918182,-0.013948854990303516,-0.0698152482509613,-0.0479179248213768,0.03325696662068367,0.044014737010002136,0.048233672976493835,-0.023408742621541023,-0.009036842733621597,0.03659193590283394,-0.04247450828552246,-0.03126160800457001,-0.07799647003412247,-0.02002776972949505,0.037743330001831055,0.06653779000043869,0.011075213551521301,0.05110098049044609,-0.038162633776664734,0.005565217230468988,-0.043221596628427505,-0.001089652068912983,-0.017824672162532806,0.15387529134750366,0.0897672101855278,0.07555350661277771,-0.0354376919567585,0.04038311541080475,-0.050552211701869965,0.03968290612101555,0.061309635639190674,-0.10501072555780411,-0.025231409817934036,0.07439212501049042,-0.09228415042161942,0.000678115407936275,-0.025184396654367447,-0.0014649481745436788,-0.048613257706165314,0.014913046732544899,0.01949591189622879,-0.03350111469626427,-0.06451694667339325,0.07346521317958832,-0.028273267671465874,0.07981438934803009,-0.02523515373468399,-0.04763470217585564,0.0013163377298042178,-0.059385769069194794,0.03341766819357872,-0.04204665124416351,0.014871269464492798,0.025640899315476418,0.002857900457456708,-0.07262643426656723,-0.04517846181988716,-0.00972263514995575,-6.547820917554863e-33,0.04728461802005768,0.005325220990926027,0.0061147743836045265,0.08388569951057434,0.024739960208535194,-0.037110429257154465,0.022271279245615005,0.01892702654004097,0.02945876680314541,-0.027180371806025505,0.04589933902025223,0.006749387364834547,-0.027465105056762695,-0.04472202807664871,0.12021592259407043,-0.025940528139472008,0.05467211455106735,0.03565356135368347,-0.04484442248940468,-0.019837353378534317,-0.05319900065660477,0.01010445412248373,0.06477660685777664,-0.05347694829106331,0.042729172855615616,0.05944661796092987,0.052262142300605774,0.0419168546795845,-0.05013611540198326,0.02779713086783886,-0.012903171591460705,0.02150471694767475,0.025964779779314995,0.037304796278476715,-0.05391949415206909,0.03666083142161369,-0.028702637180685997,-0.02046540193259716,-0.035461049526929855,0.0014662416651844978,-0.0564524307847023,0.0585327111184597,-0.0010126052657142282,-0.014085114933550358,0.09021409600973129,-0.030576329678297043,0.10093944519758224,-0.02492758072912693,-0.020284513011574745,0.007185892201960087,-0.002158618299290538,0.057114142924547195,-0.021568194031715393,0.024882584810256958,0.06600038707256317,-0.011431362479925156,-0.030676383525133133,-0.0023869588039815426,-0.010588183999061584,-0.017223315313458443,0.04271947219967842,-0.002081828424707055,-0.09237612783908844,-0.033674456179142,-0.02897215634584427,0.12298215925693512,0.017847882583737373,-0.000264795555267483,-0.001919825212098658,0.02664812281727791,-0.06783346086740494,-0.08512124419212341,-0.0027850496117025614,-0.03369222208857536,0.04102940484881401,-0.006162406411021948,-0.039775386452674866,-0.012725576758384705,0.03921712189912796,0.033057600259780884,-0.009059472940862179,-0.03916720300912857,-0.016139976680278778,-0.04766261950135231,-0.017478924244642258,0.004816524684429169,0.10020937025547028,0.003149238182231784,-0.07052609324455261,0.025703081861138344,-0.03363977372646332,-0.010725298896431923,-0.006569754332304001,-0.03397326171398163,0.015440850518643856,4.208451610226182e-33,-0.09899239242076874,0.02918066456913948,-0.05973019078373909,0.02324523963034153,0.0038185559678822756,-0.011258723214268684,-0.06285399943590164,-0.10224658250808716,0.04580088332295418,0.0909212976694107,-0.028114078566432,-0.05349080637097359,-0.11031583696603775,-0.00957107450813055,-0.09008840471506119,-0.06399271637201309,0.07121185213327408,-0.13248124718666077,0.018406707793474197,0.011681683361530304,0.07365722954273224,0.1316935122013092,-0.058602575212717056,0.01853400096297264,-0.011545415036380291,0.10905401408672333,0.00044680939754471183,-0.07972554117441177,0.019252318888902664,-0.0929373949766159,0.10468953102827072,-0.028473785147070885,-0.13116547465324402,0.04721381887793541,0.0039631640538573265,0.08032142370939255,-0.03598349168896675,0.05186028406023979,-0.07810360193252563,-0.06577305495738983,0.056853797286748886,0.015073652379214764,-0.03176392987370491,0.029208781197667122,-0.008572687394917011,-0.0029655196703970432,0.017498131841421127,0.008452302776277065,-0.05254141241312027,-0.005099114030599594,-0.03380121663212776,-0.01719776540994644,-0.03931334614753723,0.0016867873491719365,-0.0026016237679868937,0.018284467980265617,0.09906753152608871,0.005109840072691441,0.028363794088363647,0.04530065879225731,-0.07639565318822861,-0.0703098326921463,0.07768445461988449,-0.00815151259303093,-0.02128768339753151,0.02635151706635952,-0.012586250901222229,0.1282535046339035,0.059042032808065414,-0.0327182300388813,0.10615439713001251,0.08590342849493027,-0.01887381263077259,-0.015310523100197315,-0.03371373564004898,0.013552871532738209,-0.11867794394493103,0.013358700089156628,-0.003658127970993519,-0.058015335351228714,0.03331620618700981,-0.04141543433070183,0.011311948299407959,0.011575846001505852,0.08018657565116882,0.06771495938301086,0.024326033890247345,-0.05664477124810219,0.02319771610200405,0.04786832258105278,-0.03945104777812958,-0.025081904605031013,0.08383169025182724,0.139223113656044,0.017226098105311394,-1.981536179584964e-8,0.005936174187809229,0.09982000291347504,-0.04459545761346817,-0.025452082976698875,-0.00436444254592061,-0.034797221422195435,-0.03713595122098923,0.050943806767463684,0.024191146716475487,0.1188533827662468,-0.0196932852268219,-0.0029771882109344006,-0.02881995402276516,0.1312452107667923,-0.05895170941948891,-0.037251949310302734,0.05550920218229294,0.0502663291990757,-0.05763261392712593,-0.031908515840768814,-0.025012191385030746,0.06768950074911118,-0.026632772758603096,-0.030860017985105515,-0.03255854547023773,-0.013259798288345337,-0.01274273730814457,0.00469927815720439,-0.04543159529566765,0.03580508381128311,-0.019520839676260948,-0.010445852763950825,-0.004174614790827036,-0.00034859898732975125,-0.0401652529835701,0.02593712881207466,0.057393450289964676,0.03263857588171959,-0.01968173123896122,-0.044393040239810944,-0.042666926980018616,0.017980484291911125,0.02205839566886425,0.06931447982788086,0.03636770322918892,0.02877163514494896,-0.07058588415384293,0.02553929015994072,-0.03582710027694702,-0.056026749312877655,-0.009613711386919022,0.04754704236984253,-0.06024329364299774,0.03252561762928963,0.0887557715177536,-0.025802452117204666,0.002273144666105509,-0.01968277618288994,-0.09986049681901932,-0.01130631659179926,0.007431923411786556,-0.025158299133181572,-0.008524313569068909,0.06891856342554092]},{"text":"She was telling them that all animals were now comrades and that any sparrow who chose could come and perch on her paw; but the sparrows kept their distance.","book":"Animal Farm","chapter":33,"embedding":[-0.036778151988983154,0.08198362588882446,0.05108749121427536,0.09524283558130264,0.048638325184583664,0.030238457024097443,0.029788795858621597,-0.05308665335178375,-0.0443035364151001,0.05450056865811348,0.0042318361811339855,0.016577422618865967,-0.05539457127451897,-0.0792485848069191,-0.05580736696720123,0.04926621541380882,-0.009133202955126762,-0.03516186773777008,0.004296681843698025,0.022738976404070854,-0.09786885976791382,0.02248714491724968,0.06288281083106995,0.10769490897655487,-0.052997320890426636,0.016256164759397507,-0.06354423612356186,-0.009310915134847164,0.03843092545866966,0.006984281819313765,-0.07456070929765701,0.03863470256328583,0.055125024169683456,0.09501778334379196,-0.0405195951461792,0.04652409255504608,0.09521310776472092,-0.0013872405979782343,0.04849956929683685,0.0046762400306761265,0.04432640224695206,-0.02083734981715679,-0.0031294056680053473,-0.03616390749812126,-0.05977654457092285,-0.04124575853347778,-0.10531996935606003,0.03747006133198738,0.04240499809384346,-0.02345709316432476,-0.0650513619184494,-0.03289167582988739,-0.09940209239721298,-0.12641681730747223,0.026866110041737556,0.08253230154514313,0.07000740617513657,-0.02148563042283058,0.025802845135331154,-0.06630325317382812,0.007292845752090216,0.01766655221581459,0.006172120571136475,0.07764459401369095,0.02454349398612976,-0.024114534258842468,-0.04967889189720154,0.041409749537706375,-0.038173653185367584,0.06806457042694092,0.015469418838620186,-0.0025831612292677164,-0.04332229495048523,-0.05943036079406738,-0.024753475561738014,-0.0031045889481902122,0.03578409180045128,-0.021783800795674324,0.048966579139232635,-0.0025711010675877333,-0.1398376077413559,0.0156521275639534,-0.03609678894281387,0.028637828305363655,0.028578227385878563,-0.025387141853570938,-0.01760275289416313,-0.10354582965373993,-0.01905405893921852,-0.06777284294366837,-0.041057005524635315,-0.09727950394153595,-0.060619886964559555,0.12750525772571564,-0.021053502336144447,0.007940515875816345,-0.01991967298090458,-0.020008521154522896,0.013760141097009182,0.008665473200380802,0.03663938492536545,0.02824093960225582,-0.020057903602719307,-0.05199770629405975,-0.03194061666727066,-0.019301865249872208,0.014145595021545887,-0.07742200046777725,0.02827504277229309,0.018026746809482574,-0.06011879816651344,-0.03868425637483597,-0.03820493072271347,0.07489737123250961,-0.04098751023411751,0.040909748524427414,-0.06849677115678787,-0.03964940086007118,-0.02571280300617218,0.018928105011582375,0.03603662922978401,0.04820647090673447,-0.0034768516197800636,-0.007498548831790686,0.027357781305909157,0.002488215919584036,0.054083410650491714,-1.85190539169611e-33,0.02527826651930809,-0.08091789484024048,0.0225248783826828,-0.00006355993536999449,0.12416625022888184,0.08417553454637527,-0.026004357263445854,-0.00887472927570343,-0.04124126583337784,-0.026183031499385834,-0.0672268345952034,-0.04855147376656532,-0.017438918352127075,-0.06833458691835403,0.029058651998639107,0.05213112011551857,0.026909761130809784,-0.014040905050933361,0.10225284844636917,-0.048112206161022186,0.04473428055644035,0.06391199678182602,-0.038221798837184906,-0.08201339840888977,0.005891446955502033,0.02876586653292179,0.026792684569954872,-0.031328797340393066,-0.01266524475067854,0.0728091299533844,-0.0017272558761760592,0.034245170652866364,0.02620619162917137,-0.04061311483383179,-0.015372893773019314,0.036562513560056686,-0.02571883611381054,-0.11751937866210938,-0.029539823532104492,0.045088160783052444,0.009672340005636215,-0.06583869457244873,0.09337081015110016,-0.061687029898166656,-0.08702253550291061,-0.04688693583011627,-0.08195246756076813,0.02529125101864338,-0.07214042544364929,0.12091037631034851,0.0003161337226629257,-0.042646970599889755,0.05069700628519058,0.007985598407685757,0.02982581965625286,0.02347557432949543,-0.018380559980869293,0.03009982779622078,-0.012520192191004753,0.007415552157908678,0.02551453560590744,-0.07946691662073135,0.0642566904425621,-0.0755557119846344,0.12406071275472641,-0.008574645034968853,-0.0762314572930336,-0.0283421091735363,-0.030359555035829544,0.054572973400354385,-0.008061601780354977,0.04386783763766289,0.017642749473452568,-0.0016758195124566555,-0.06902986764907837,0.03623806685209274,0.019186263903975487,-0.002291102195158601,0.029868977144360542,-0.07361986488103867,0.013551021926105022,0.0698922798037529,-0.054206594824790955,0.01880437508225441,0.000343370164046064,-0.07658332586288452,0.0622328482568264,-0.050783902406692505,0.03129159286618233,0.03810084983706474,0.033147215843200684,0.05522075295448303,-0.01113041304051876,-0.11126270145177841,-0.07623298466205597,-1.5607523387287225e-33,-0.04484838247299194,0.06804502010345459,-0.012658092193305492,0.005378052592277527,0.007618008181452751,-0.04262860491871834,-0.002841668203473091,-0.03374785929918289,0.04065250977873802,0.0006563105853274465,-0.1084265410900116,-0.05599460005760193,0.07792779803276062,-0.010481929406523705,-0.02282000333070755,0.015493237413465977,0.016403179615736008,-0.0649237409234047,0.08191453665494919,-0.008504134602844715,-0.004812490660697222,-0.08928941935300827,0.0013600934762507677,0.030986672267317772,0.0944657102227211,0.013633817434310913,0.05190141126513481,-0.06839746981859207,-0.061269067227840424,-0.08961900323629379,0.053225163370370865,-0.02689250558614731,-0.09947826713323593,0.05097546428442001,0.05044258385896683,0.044687770307064056,-0.03301231563091278,0.05104193836450577,0.03958813101053238,-0.041268885135650635,0.019741568714380264,-0.08677396178245544,-0.04085778445005417,-0.06685463339090347,0.0630168542265892,0.058382999151945114,0.015283925458788872,0.038128577172756195,-0.036879245191812515,0.031793899834156036,-0.009379160590469837,-0.011723796837031841,0.10522093623876572,0.05875154957175255,0.0016516420291736722,-0.09850681573152542,-0.045666154474020004,-0.02193802036345005,0.1005975753068924,-0.09259898960590363,0.005333933047950268,-0.007754507940262556,-0.0995054841041565,0.05417848005890846,0.0069707538932561874,-0.006498976144939661,-0.060590535402297974,0.018073590472340584,0.030837539583444595,-0.036661531776189804,0.01263105683028698,0.02018493227660656,-0.045991797000169754,0.03629588708281517,-0.005246218293905258,0.034009791910648346,-0.07146298885345459,-0.13350506126880646,-0.01673060655593872,0.017123816534876823,0.017007047310471535,-0.04514438286423683,-0.008882562629878521,0.017207743600010872,0.012595352716743946,-0.05058342218399048,0.05314940959215164,0.12841655313968658,-0.004794673062860966,0.013224257156252861,0.03649311512708664,-0.025427285581827164,0.027055855840444565,-0.03004422038793564,-0.0072504798881709576,-2.364936513288285e-8,-0.05635860562324524,0.08998077362775803,0.0003075276908930391,-0.014839212410151958,0.0756048709154129,0.005534965079277754,0.04066012054681778,0.001056243316270411,0.022853845730423927,0.08838696777820587,-0.03544745594263077,-0.006841748487204313,0.08218853175640106,0.040532805025577545,0.05420076847076416,0.036505766212940216,0.03210936859250069,-0.16265039145946503,0.01593291014432907,0.028257200494408607,-0.005210559349507093,0.021901525557041168,-0.003972978796809912,-0.06071397662162781,-0.09229221940040588,-0.03480570390820503,-0.016718488186597824,0.005289928056299686,0.005984917748719454,0.06812652200460434,-0.02733175829052925,0.027207491919398308,-0.022548984736204147,0.02815837785601616,-0.0026892339810729027,0.025492437183856964,0.008162908256053925,-0.005889699328690767,0.11582054942846298,-0.028604943305253983,-0.05334264412522316,0.07510913908481598,-0.010640212334692478,-0.002713369205594063,0.048484236001968384,-0.01866583526134491,0.057389501482248306,-0.010668930597603321,-0.050915930420160294,-0.012867441400885582,-0.015987250953912735,0.03261890634894371,-0.00682268338277936,0.01166730746626854,0.005843406077474356,-0.041451290249824524,0.005017375107854605,-0.04282572120428085,0.030258232727646828,0.005409016739577055,-0.03283875435590744,0.03273802623152733,-0.02990415133535862,0.054890237748622894]},{"text":"Muriel, the goat, could read somewhat better than the dogs, and sometimes used to read to the others in the evenings from scraps of newspaper which she found on the rubbish heap.","book":"Animal Farm","chapter":33,"embedding":[0.10127785801887512,-0.01316833682358265,0.014413253404200077,0.08546917885541916,0.0012049857759848237,0.05548025295138359,-0.01914765127003193,0.04816413298249245,0.032993752509355545,0.025315241888165474,0.08531996607780457,0.006864273454993963,-0.016190147027373314,0.02636115252971649,-0.011058248579502106,-0.008716479875147343,0.03282496705651283,0.03223230317234993,0.002071620197966695,-0.05252578482031822,-0.09606371074914932,0.03920722380280495,0.05938884988427162,0.007454810198396444,-0.012338373810052872,-0.06293892115354538,-0.07995641976594925,-0.07971151173114777,-0.00679984362795949,-0.01618584431707859,-0.029823370277881622,-0.03242667764425278,0.027835307642817497,-0.006102327723056078,0.01753922365605831,0.03919563814997673,0.07362297922372818,0.025449233129620552,0.10037300735712051,-0.011290102265775204,-0.015849793329834938,-0.008439300581812859,-0.007120387628674507,-0.023918677121400833,-0.09072597324848175,-0.036368027329444885,-0.05167946591973305,-0.0005841039819642901,0.03135961294174194,-0.044444337487220764,-0.05128592997789383,-0.023766551166772842,-0.026689447462558746,-0.038033705204725266,-0.0440559983253479,-0.03578615188598633,-0.03937115520238876,-0.04150731861591339,0.015435189008712769,-0.04210638999938965,-0.07189402729272842,-0.0075471107847988605,0.05938487499952316,0.017663631588220596,-0.01205374300479889,-0.0028435070998966694,-0.06933300197124481,-0.0038575881626456976,0.007156561128795147,-0.033685751259326935,0.01045156642794609,-0.021992774680256844,0.05429565906524658,-0.04351326823234558,0.022840730845928192,-0.05910166725516319,-0.025484899058938026,-0.08521269261837006,0.07423149794340134,-0.015894679352641106,-0.06827610731124878,-0.010189816355705261,0.009310916997492313,0.027516324073076248,0.04161112383008003,-0.024074608460068703,-0.04981445521116257,-0.06957197189331055,-0.03645659610629082,-0.09252709150314331,-0.025581184774637222,-0.12481381744146347,-0.041373442858457565,0.08161856979131699,-0.030611984431743622,0.02617356926202774,-0.012827062048017979,0.04118161275982857,-0.025776034221053123,0.08586116880178452,-0.028774319216609,0.08168898522853851,-0.01651993952691555,-0.05376444756984711,0.017727559432387352,-0.02804115042090416,-0.027870530262589455,-0.03481314703822136,-0.010574688203632832,-0.04756740480661392,-0.025414438918232918,-0.06442132592201233,-0.03163618594408035,0.08284968137741089,0.07361952215433121,0.002958830911666155,0.004589351359754801,-0.025244271382689476,-0.046399086713790894,0.007407592609524727,0.08036521822214127,0.07442060112953186,-0.057390425354242325,0.034597184509038925,0.0630287155508995,-0.017851103097200394,0.047402046620845795,-4.000758288825192e-33,0.005654431413859129,0.01509749237447977,-0.010238057933747768,0.05428508669137955,0.06680889427661896,0.011794130317866802,-0.02409328706562519,0.026730110868811607,0.04138437286019325,-0.05675727128982544,0.021059392020106316,-0.01847011223435402,-0.07005289196968079,0.006033672951161861,-0.05727851390838623,0.032915279269218445,-0.029249217361211777,0.020147694274783134,0.0414913073182106,0.0006168634281493723,0.01444854587316513,0.06841840595006943,0.04195353761315346,-0.005360049195587635,0.10240837186574936,0.0031933102291077375,0.005243327934294939,-0.10612470656633377,0.06514476984739304,0.047911137342453,0.020944533869624138,-0.009386972524225712,-0.06266885995864868,-0.06504984945058823,-0.02818073332309723,-0.0307810939848423,-0.00797886960208416,-0.08914314210414886,-0.04393883794546127,0.0675828754901886,0.010745199397206306,-0.022277135401964188,0.09644550830125809,-0.05578555911779404,-0.09876083582639694,0.09488710761070251,-0.01564774289727211,0.038964707404375076,-0.0225019920617342,-0.028804004192352295,0.02095922827720642,0.004506487399339676,-0.005242171697318554,0.03711290284991264,0.06149369478225708,-0.0376591756939888,0.07038659602403641,-0.04538072273135185,0.04868645593523979,0.007146317046135664,0.12845665216445923,0.03456277400255203,0.023353805765509605,-0.03889204561710358,0.08524245768785477,-0.04734712466597557,-0.04221766069531441,0.03242791071534157,-0.025088787078857422,-0.015280117280781269,-0.06735383719205856,0.018760021775960922,-0.010081285610795021,-0.06823138892650604,-0.08875806629657745,-0.0021704097744077444,0.041286397725343704,-0.0023471966851502657,0.008341069333255291,-0.06629551202058792,0.03986239433288574,0.0491199865937233,-0.002178151160478592,0.040573850274086,-0.02883288636803627,-0.031102873384952545,0.0012964908964931965,-0.08164212107658386,-0.003989053890109062,-0.0469852052628994,-0.010065395385026932,0.07368721812963486,-0.00524462154135108,-0.10588980466127396,-0.03371920809149742,9.308282423390828e-34,-0.047877244651317596,-0.03059709258377552,0.021858200430870056,0.05483163148164749,-0.06489543616771698,-0.0070320977829396725,-0.01696881465613842,0.05163988843560219,0.11957870423793793,0.014356390573084354,-0.06732950359582901,-0.08713743090629578,-0.019487956538796425,-0.03388301655650139,0.08961709588766098,-0.006714150309562683,-0.02410273440182209,-0.04251348227262497,0.05134144425392151,-0.048963695764541626,-0.11290790885686874,0.029304001480340958,-0.01168413832783699,-0.011091741733253002,0.029164917767047882,0.08629314601421356,-0.010723506100475788,-0.061847902834415436,-0.0481453463435173,-0.08800108730792999,-0.02516665682196617,-0.015592520125210285,-0.007861302234232426,-0.12457849830389023,-0.012764726765453815,0.052417851984500885,-0.03048984333872795,-0.08612193912267685,-0.0859617069363594,0.02428167685866356,0.07867774367332458,-0.03502048924565315,-0.008455797098577023,-0.07724391669034958,-0.012770559638738632,0.04288531839847565,-0.051052212715148926,-0.03458120673894882,0.08737421035766602,0.040610186755657196,0.10557745397090912,-0.002574689919129014,-0.055401429533958435,-0.02283899113535881,-0.04254323989152908,0.044996026903390884,0.022167403250932693,-0.007757144048810005,0.11257275938987732,-0.03473924472928047,-0.012485357001423836,0.015721607953310013,-0.09776901453733444,0.09420453011989594,-0.052148930728435516,-0.09659095853567123,-0.031140949577093124,-0.051582466810941696,0.011488685384392738,-0.006790249142795801,0.02960309199988842,0.02054574154317379,-0.03838072717189789,-0.028732113540172577,0.04857811704277992,0.16711720824241638,-0.03709138557314873,-0.0020870317239314318,0.02607206627726555,0.05759581923484802,-0.05212227627635002,-0.05878326669335365,-0.022438330575823784,0.14389920234680176,0.06099236384034157,-0.03297125920653343,-0.06278031319379807,0.018406862393021584,0.034900128841400146,-0.04484797641634941,0.07320971041917801,0.007383423391729593,0.11077642440795898,0.03122681751847267,0.008310140110552311,-2.818277344829312e-8,-0.038889478892087936,-0.023758191615343094,-0.034469183534383774,-0.021168572828173637,0.03360285982489586,-0.07560564577579498,-0.03481804579496384,-0.006834516301751137,-0.08578073233366013,0.07393243163824081,0.008073059841990471,0.057744577527046204,-0.05188160017132759,-0.03968425467610359,0.07139382511377335,0.006107857916504145,0.06262288242578506,0.00022750080097466707,0.025265326723456383,0.054347481578588486,0.05205825716257095,0.007969534955918789,0.005187637638300657,-0.017598379403352737,-0.02986300364136696,-0.0033465626183897257,0.013640621677041054,-0.009096034802496433,-0.04505535587668419,0.026153365150094032,0.041173432022333145,0.0491747222840786,0.041066959500312805,-0.033024754375219345,0.03960417956113815,0.034576088190078735,-0.0036036844830960035,-0.08707783371210098,-0.03572967275977135,0.10398918390274048,0.08270571380853653,-0.007224817294627428,0.00859131570905447,0.0007832413539290428,0.08432051539421082,-0.04422742500901222,0.08403041213750839,-0.04256613925099373,0.0019762027077376842,-0.0014524050056934357,-0.09547725319862366,0.04096584767103195,0.07500053197145462,0.05604040250182152,-0.028598230332136154,-0.11162737756967545,0.016379812732338905,-0.07677195221185684,-0.057442620396614075,0.019119776785373688,0.0936586931347847,0.06268995255231857,-0.0007136666099540889,0.06856919080018997]},{"text":"He would trace out A, B, C, D, in the dust with his great hoof, and then would stand staring at the letters with his ears back, sometimes shaking his forelock, trying with all his might to remember what came next and never succeeding.","book":"Animal Farm","chapter":33,"embedding":[0.04695964232087135,0.06362584978342056,0.05243109166622162,-0.009818260557949543,-0.028728438541293144,0.02985554002225399,0.07736696302890778,-0.043624699115753174,-0.035111796110868454,0.002135544316843152,0.03515994921326637,-0.009844365529716015,0.009823912754654884,-0.04090530052781105,-0.04299798235297203,-0.03566259890794754,-0.005439332686364651,0.07574401050806046,-0.04287406802177429,0.006062369793653488,0.008282706141471863,0.05966426059603691,0.08885516226291656,-0.022386468946933746,-0.046622030436992645,0.06605042517185211,0.007410508580505848,-0.002657734788954258,-0.02693150006234646,-0.036295145750045776,-0.013567865826189518,-0.037245042622089386,-0.003316679736599326,0.022016864269971848,-0.047277212142944336,-0.014577477239072323,0.0057711247354745865,0.09886327385902405,0.042554862797260284,-0.03569742292165756,-0.05926863104104996,0.030855832621455193,-0.02819458581507206,0.07288199663162231,-0.044512901455163956,-0.05764596536755562,-0.05874069780111313,0.018250998109579086,0.023698298260569572,0.04949748516082764,-0.06366527825593948,-0.0843728631734848,-0.05008281394839287,-0.013244908303022385,-0.03522050008177757,0.02532259374856949,0.008927631191909313,-0.01754838414490223,0.00686176773160696,-0.00199177791364491,-0.08855538070201874,0.0003674872568808496,0.04307658225297928,0.01227065734565258,0.07997757941484451,0.0029138303361833096,-0.008961348794400692,-0.01600215956568718,0.012510825879871845,0.06462979316711426,0.023353373631834984,0.03332533687353134,0.02417556755244732,-0.09550698846578598,-0.038565609604120255,-0.06560347974300385,-0.058838196098804474,-0.14740021526813507,0.07048828899860382,-0.000020844378013862297,-0.05392860621213913,0.02883908711373806,-0.0349104106426239,0.0612797848880291,-0.034424468874931335,0.03175875172019005,0.0029960586689412594,-0.0946357399225235,-0.05468863993883133,0.000761348579544574,-0.08547024428844452,-0.162710040807724,-0.026799915358424187,-0.04571669548749924,-0.019632594659924507,0.04977374151349068,-0.021007701754570007,0.051123764365911484,-0.04505060240626335,-0.01384766586124897,0.0639314353466034,0.010851173661649227,0.01594642736017704,0.006132190115749836,0.024120179936289787,0.06252490729093552,-0.013685597106814384,-0.08638705313205719,-0.04665547236800194,-0.03213360905647278,-0.006710550282150507,-0.03156684339046478,0.04326599836349487,0.0515148900449276,0.004749175161123276,0.027803028002381325,-0.04475193843245506,-0.020187173038721085,-0.11017201095819473,0.0006206362158991396,0.07120978832244873,0.07248024642467499,0.034534603357315063,0.050546497106552124,-0.02485032007098198,0.01513735018670559,-0.014286630786955357,7.950921647752063e-34,0.05739622563123703,-0.043551307171583176,-0.013197259046137333,0.021373381838202477,0.05363927409052849,0.02922050654888153,-0.02360866777598858,0.026456065475940704,0.09769326448440552,0.02911188080906868,-0.057845622301101685,-0.0374707356095314,0.018104519695043564,0.09398702532052994,-0.07474775612354279,0.08382546156644821,-0.0033322861418128014,-0.004282759502530098,0.023439211770892143,-0.08111058920621872,-0.05480708181858063,-0.0025749902706593275,0.022040151059627533,-0.012286240234971046,0.06433551013469696,-0.004511986393481493,-0.007060436066240072,-0.0467848926782608,0.021306170150637627,0.040976058691740036,-0.03052583709359169,0.05792689323425293,-0.06106281280517578,0.019172703847289085,-0.018365556374192238,0.001297728274948895,-0.01566172018647194,-0.028537297621369362,-0.03207317739725113,-0.001998851541429758,0.03055632673203945,-0.008217173628509045,0.008304095827043056,-0.032370757311582565,-0.12763085961341858,0.010154444724321365,-0.002099031815305352,0.09390885382890701,-0.048001378774642944,0.06674833595752716,0.08133503794670105,0.009830147959291935,0.004641441162675619,-0.060440048575401306,0.05099049210548401,0.03889662027359009,0.033566590398550034,-0.025540262460708618,-0.018635179847478867,0.11551229655742645,0.11340325325727463,0.04544784128665924,0.06300322711467743,0.0977073684334755,-0.06237263232469559,-0.08861332386732101,-0.06507279723882675,-0.05859789252281189,-0.03722912818193436,-0.00002484202923369594,-0.04693415015935898,-0.08515818417072296,0.021854352205991745,-0.01355244405567646,-0.051257286220788956,-0.052117206156253815,-0.04257703945040703,0.01638117805123329,-0.05086421221494675,-0.11267924308776855,0.07427506148815155,-0.032634884119033813,-0.06709335744380951,0.03164900466799736,-0.027851929888129234,0.03642631322145462,0.014068884775042534,-0.1347690224647522,-0.09884317219257355,-0.023695502430200577,0.006062600761651993,0.00835584569722414,0.043937623500823975,-0.03635328263044357,-0.004219669383019209,-3.777625583810121e-33,0.030633483082056046,0.012817132286727428,0.05459892749786377,0.05907614529132843,-0.025354426354169846,-0.01143851038068533,-0.07311603426933289,-0.03516046702861786,0.007852905429899693,-0.027639131993055344,0.0028226349968463182,0.08140207827091217,-0.015048615634441376,0.011460849083960056,-0.0035469646099954844,-0.017245998606085777,0.03148682415485382,0.03452939912676811,0.030972445383667946,0.14202310144901276,0.033098671585321426,-0.11202837526798248,-0.02377803437411785,-0.013453463092446327,0.022581228986382484,0.033025749027729034,0.06763756275177002,-0.07141423970460892,-0.0700746551156044,0.0050866929814219475,-0.0031018881127238274,-0.012186035513877869,0.0045651597902178764,0.06316130608320236,-0.03196655958890915,0.011770974844694138,-0.019703233614563942,-0.07936905324459076,-0.06441695243120193,0.0009947813814505935,-0.008285058662295341,0.01965213008224964,0.07061886042356491,0.034101735800504684,-0.017695778980851173,0.0650346651673317,-0.05159930884838104,0.06289414316415787,0.023311827331781387,0.07952392101287842,0.026193613186478615,-0.0009831063216552138,0.06414873898029327,-0.038153018802404404,-0.0561843179166317,0.10501009225845337,-0.01987653225660324,-0.06988448649644852,0.03284577280282974,-0.022008832544088364,-0.020628273487091064,0.003219007980078459,0.03291749954223633,0.0005403091781772673,-0.007382687646895647,0.00495785241946578,-0.07165560126304626,0.06415227800607681,-0.05866275355219841,-0.020956410095095634,0.09406573325395584,-0.03620172291994095,0.02238628640770912,0.017087461426854134,0.04359791427850723,0.09975043684244156,-0.0875694677233696,-0.10401052981615067,-0.0029445309191942215,-0.016970638185739517,-0.10222531855106354,-0.03309842199087143,-0.009786435402929783,0.08147849887609482,-0.014016720466315746,0.017314137890934944,-0.10122300684452057,-0.02933087758719921,0.05787331983447075,-0.012746100313961506,0.06578880548477173,0.029882075265049934,0.09746479988098145,-0.008516195230185986,0.05964583158493042,-3.288971939241492e-8,-0.08770400285720825,0.0001361116155749187,-0.026676785200834274,-0.03629831597208977,0.07401224225759506,0.05401325598359108,-0.007791129406541586,-0.004362176638096571,-0.03241376578807831,0.05207691341638565,-0.05629415437579155,0.06502879410982132,-0.02573726885020733,0.07490836828947067,0.01613495871424675,0.043526142835617065,-0.054493241012096405,-0.05006534233689308,-0.06313949823379517,0.061085157096385956,0.06569571793079376,0.059921059757471085,0.011019018478691578,0.0353371724486351,-0.11699928343296051,0.02574668638408184,0.010189547203481197,0.012813244946300983,0.019167372956871986,0.10925182700157166,0.04358264431357384,0.007794661913067102,-0.07862843573093414,-0.08140627294778824,-0.03963255137205124,0.0349091961979866,-0.07959901541471481,0.005990205332636833,0.058995284140110016,-0.01277002040296793,0.03736203908920288,0.03235466405749321,-0.02622315101325512,0.013737421482801437,0.023647861555218697,-0.03389078006148338,0.020889759063720703,-0.03358594700694084,-0.04062429070472717,0.012183082289993763,0.0011793316807597876,0.0840451791882515,0.062310028821229935,0.013067030347883701,0.09625251591205597,-0.03891858085989952,0.04186777397990227,-0.0035036192275583744,-0.10307969152927399,0.002150325570255518,0.03499080240726471,0.009008361026644707,-0.12363570928573608,-0.012640080414712429]},{"text":"None of the other animals on the farm could get further than the letter A.","book":"Animal Farm","chapter":34,"embedding":[0.033700380474328995,0.03184370696544647,-0.02280924655497074,0.028806345537304878,-0.01561571191996336,-0.0049230968579649925,-0.08203797787427902,-0.06172064319252968,0.011637474410235882,0.05011812597513199,0.12211811542510986,-0.01847359538078308,0.03198373690247536,-0.08330082893371582,-0.060433484613895416,0.05592639371752739,-0.04451391473412514,-0.06459089368581772,-0.053687673062086105,-0.028969567269086838,-0.058454789221286774,0.057956673204898834,0.08005423098802567,0.03201520815491676,0.007612478919327259,-0.022543633356690407,-0.12111429125070572,-0.026475708931684494,-0.0290890634059906,-0.01262709405273199,-0.050012435764074326,0.039061594754457474,-0.014942247420549393,0.020354848355054855,0.08730719983577728,0.001572924666106701,0.09202251583337784,0.04590539634227753,0.14272527396678925,0.017538493499159813,0.029010629281401634,0.008398075588047504,0.002769673941656947,0.04309520870447159,-0.07560616731643677,0.040886040776968,-0.11145827174186707,-0.05262815207242966,-0.0197870135307312,-0.04035123437643051,0.0035182933788746595,-0.02452741004526615,-0.06686894595623016,-0.041224878281354904,-0.10820820927619934,-0.02412278763949871,-0.06498632580041885,-0.027013421058654785,0.013564848341047764,-0.00019041883933823556,-0.02717638947069645,0.015007874928414822,0.0904741883277893,0.01879359781742096,0.04023604840040207,-0.04944402724504471,-0.0916317030787468,-0.05896276235580444,-0.0498693473637104,0.010086936876177788,0.03459852933883667,-0.035481154918670654,0.011188551783561707,-0.021378813311457634,-0.06612246483564377,-0.020071132108569145,0.002853136043995619,0.00620424747467041,0.08265017718076706,0.018931636586785316,-0.12514781951904297,-0.04897874593734741,-0.04713946580886841,0.07665592432022095,-0.003420616500079632,-0.028258098289370537,-0.019682923331856728,-0.06548330932855606,0.0075147575698792934,0.025140482932329178,-0.0515393503010273,-0.10151610523462296,0.05190291628241539,0.00987179670482874,0.0648665577173233,0.0039204563945531845,-0.0452941432595253,-0.00917156133800745,-0.12220241874456406,0.019247792661190033,-0.008047249168157578,-0.0013748720521107316,0.001314284629188478,-0.003541192738339305,-0.03067333996295929,0.061385057866573334,-0.10192274302244186,-0.0546945221722126,-0.007093253545463085,0.005138534586876631,-0.01404788251966238,-0.014934117905795574,0.022443348541855812,0.06389658153057098,-0.055759940296411514,-0.014539588242769241,-0.015264751389622688,-0.09632864594459534,-0.026891712099313736,0.05386422574520111,-0.015807542949914932,-0.030917411670088768,-0.017959127202630043,0.03118353895843029,-0.02086094580590725,0.03303711861371994,0.051081281155347824,-4.052387470081246e-33,0.036169592291116714,-0.01567004807293415,0.031220629811286926,-0.08516090363264084,0.1268693208694458,0.030467888340353966,-0.05212496221065521,0.0017018489306792617,0.05006397143006325,0.0157617274671793,-0.03510183468461037,-0.03116896189749241,0.0755319744348526,-0.07078003138303757,0.021776370704174042,0.04963252693414688,0.09730347245931625,-0.05369586497545242,0.017545733600854874,-0.028258314356207848,0.012388844974339008,-0.00568415317684412,-0.07280557602643967,0.01583426631987095,-0.05618651211261749,-0.000926450127735734,-0.010196777060627937,-0.060379594564437866,-0.024278732016682625,0.004268983844667673,-0.05802072957158089,-0.03416913375258446,0.05564139038324356,-0.0014356967294588685,0.006189332809299231,-0.05631278455257416,0.023658832535147667,-0.08646529912948608,-0.03539850935339928,0.019572347402572632,-0.026373162865638733,-0.012063632719218731,0.09928549826145172,-0.08078241348266602,0.042258370667696,0.023787343874573708,0.010557780042290688,0.030808359384536743,-0.0715368464589119,0.08062630146741867,0.02387208305299282,0.034736692905426025,0.08264552056789398,-0.007072225213050842,0.03714891895651817,-0.010236636735498905,-0.026192432269454002,0.06840935349464417,-0.09141669422388077,0.03796427324414253,0.037823840975761414,0.017601720988750458,0.048403117805719376,-0.00986116100102663,0.016928143799304962,-0.03355283662676811,-0.06562016159296036,-0.01544063538312912,-0.006024526432156563,0.048258110880851746,0.03659655153751373,-0.028766589239239693,-0.009517243131995201,-0.037970758974552155,0.02198130637407303,-0.032446831464767456,0.03474098816514015,-0.024198180064558983,-0.010633174329996109,-0.045712485909461975,0.012647739611566067,0.04787624254822731,-0.02641291543841362,0.05979040265083313,0.025886893272399902,0.023309845477342606,0.02248903550207615,0.02298020012676716,0.09393531829118729,-0.09264939278364182,0.0784410834312439,0.03867858275771141,-0.07517360150814056,-0.1340685337781906,0.08866111934185028,1.2005389926505256e-33,-0.04846322163939476,0.06524457037448883,-0.011177538894116879,-0.008697723969817162,-0.03649698570370674,-0.022373104467988014,0.12253759801387787,0.03610304370522499,0.06282821297645569,0.02758144587278366,0.00598224438726902,0.03280830755829811,-0.000007728092896286398,-0.06909124553203583,0.06424298882484436,0.05978839099407196,0.03241793066263199,0.02724076248705387,0.034831080585718155,0.05967916175723076,-0.02533603645861149,0.016003230586647987,-0.06472691893577576,0.07610750198364258,0.044940438121557236,0.07408484816551208,-0.07594149559736252,0.03041054867208004,-0.034070540219545364,-0.0803072601556778,0.03422769531607628,0.010773398913443089,0.016848929226398468,-0.05453769862651825,-0.01750214584171772,-0.020818181335926056,0.026422031223773956,-0.02223547361791134,-0.043950628489255905,0.052999865263700485,0.07527340203523636,-0.0034706969745457172,-0.005360528826713562,0.04250260442495346,-0.028336944058537483,0.08223674446344376,-0.018746139481663704,0.034960635006427765,0.061602432280778885,0.05540776252746582,-0.02757267653942108,-0.007212120573967695,0.01946975663304329,-0.026686521247029305,-0.021363025531172752,-0.010822584852576256,0.03143349289894104,-0.04729880392551422,-0.0010805540950968862,-0.04008205607533455,0.025807132944464684,0.03808414563536644,-0.00359082012437284,0.08811400830745697,-0.02815116010606289,0.0031249122694134712,-0.08012279868125916,0.07617474347352982,0.03224311023950577,-0.12926404178142548,0.06800992786884308,0.08842004090547562,0.009099280461668968,-0.0675901249051094,0.015195363201200962,0.12150296568870544,0.005461426451802254,-0.06180255115032196,-0.025525186210870743,-0.1077791377902031,-0.06159356236457825,0.007099112030118704,-0.028193887323141098,0.0174478180706501,0.09485841542482376,-0.022511949762701988,-0.02180529572069645,-0.04268614202737808,0.044948894530534744,0.019691990688443184,0.025323227047920227,-0.03178900480270386,0.12320328503847122,0.03864312544465065,-0.018672112375497818,-2.035859480997715e-8,0.020384013652801514,0.0637703612446785,-0.01635991968214512,0.013123014010488987,0.04321675002574921,0.03361331671476364,0.017997736111283302,-0.05068732053041458,0.05320652201771736,0.12817586958408356,-0.03449242562055588,0.05157792940735817,-0.07109291106462479,0.0986819714307785,0.036372650414705276,0.04067749157547951,0.015248374082148075,-0.07994753867387772,-0.042266830801963806,0.05524539202451706,-0.13579456508159637,0.06607487797737122,-0.11658338457345963,-0.06452394276857376,-0.009963675402104855,-0.036325376480817795,-0.022090395912528038,-0.045130014419555664,0.0757477805018425,0.01612873375415802,0.04288060963153839,-0.014962476678192616,-0.0017016066703945398,-0.055629778653383255,-0.041017819195985794,0.03732586279511452,0.04108380153775215,0.04740505293011665,-0.02028588578104973,-0.007759208790957928,-0.026392251253128052,0.043231502175331116,-0.028415286913514137,0.03613835200667381,0.04215925931930542,-0.028101420029997826,-0.05262251943349838,-0.07868745923042297,-0.017337417230010033,-0.02418142557144165,0.0286879725754261,0.05882507190108299,-0.011699856258928776,-0.017567278817296028,0.029408497735857964,-0.07633533328771591,0.029496600851416588,-0.0724768191576004,-0.014184263534843922,-0.010569184087216854,0.04693274572491646,-0.008522211574018002,0.008706871420145035,0.05187119543552399]},{"text":"It should therefore be regarded as a leg.","book":"Animal Farm","chapter":34,"embedding":[-0.02815108932554722,0.08097448199987411,-0.06031441316008568,-0.03712664172053337,-0.10096343606710434,-0.04483092203736305,0.025362981483340263,0.04001570865511894,0.04094633460044861,0.0751386433839798,-0.007037120405584574,0.08968469500541687,-0.0003536752483341843,0.03513755276799202,0.009354442358016968,-0.025488924235105515,-0.019016029313206673,0.012979835271835327,-0.014520888216793537,0.0999830961227417,0.05372733622789383,0.042414650321006775,0.047101009637117386,0.01375550962984562,-0.02647542394697666,-0.02303623966872692,-0.010725151747465134,0.021736444905400276,0.04209419712424278,-0.03742571920156479,-0.06917350739240646,0.06287859380245209,-0.1105191707611084,0.01993187889456749,0.01909070648252964,-0.017932461574673653,0.11320888996124268,-0.017390891909599304,0.030546048656105995,0.015831327065825462,0.029505060985684395,-0.10149326175451279,-0.0338289774954319,0.0018388390308246017,0.07946298271417618,0.09875106811523438,0.0262781772762537,-0.026809988543391228,-0.03923485055565834,0.020543158054351807,0.009743229486048222,-0.044775623828172684,0.02119024656713009,0.04076637700200081,-0.04497488960623741,0.01331465132534504,-0.013013789430260658,-0.07499846071004868,-0.016294313594698906,-0.029621027410030365,0.04611855372786522,0.06375325471162796,-0.01992371305823326,0.03384660556912422,-0.05111359804868698,-0.11459172517061234,-0.03725166618824005,-0.12270841747522354,-0.005263349507004023,0.05589601397514343,-0.027932127937674522,-0.06274593621492386,0.035106610506772995,0.02045048214495182,-0.04143295809626579,-0.028922922909259796,0.04757196083664894,0.002705323975533247,0.05821534991264343,-0.014191455207765102,-0.07131503522396088,0.04593679681420326,0.031901076436042786,0.0009714480838738382,0.016581254079937935,0.0568552203476429,-0.022975943982601166,-0.05811941623687744,-0.11952786892652512,-0.006277758162468672,-0.062481001019477844,-0.022408502176404,0.11925540864467621,0.029595350846648216,-0.0003489576920401305,0.04795708879828453,0.02019389718770981,-0.008272632025182247,-0.07894277572631836,0.03134124353528023,-0.02013140730559826,0.010531468316912651,0.07638545334339142,0.14110691845417023,-0.06298913806676865,-0.05350135266780853,0.01746457628905773,-0.027390040457248688,0.06487579643726349,-0.04295749589800835,-0.03932525962591171,-0.0380716435611248,0.023464011028409004,0.04339732229709625,-0.016597984358668327,0.0724213719367981,-0.11083778738975525,-0.005119533743709326,0.030573835596442223,-0.07099450379610062,0.016541020944714546,0.017083821818232536,-0.0034785564057528973,0.046965282410383224,0.055064160376787186,-0.0014390790602192283,0.011590247042477131,-7.068619281582862e-33,-0.04179500788450241,0.0081194331869483,0.07752694189548492,-0.1296434998512268,0.010286778211593628,0.02133289910852909,-0.06258811801671982,0.027207212522625923,0.04067118838429451,0.018015922978520393,-0.05386582389473915,-0.08496703207492828,0.07436221092939377,0.03299138695001602,-0.007300469093024731,0.06704507023096085,-0.04103074222803116,0.0002769432030618191,-0.029308566823601723,0.00026069890009239316,0.02327609620988369,0.013292999938130379,0.009724844247102737,-0.04236487299203873,-0.02134399302303791,0.024226998910307884,-0.010362557135522366,-0.03885571286082268,-0.02891586720943451,0.022919749841094017,0.006853956263512373,-0.022093748673796654,0.06036226078867912,-0.0442991778254509,-0.021986763924360275,-0.0826755240559578,0.05517958477139473,-0.008981452323496342,-0.07519473880529404,0.027602849528193474,0.04737944155931473,-0.06235920637845993,0.006298539228737354,-0.025185786187648773,0.059936001896858215,0.03559207171201706,0.01792711392045021,-0.002448854735121131,-0.06087040156126022,0.008538205176591873,0.04123067483305931,0.08370988816022873,0.18375466763973236,-0.005254423711448908,0.042118653655052185,-0.010118863545358181,-0.018575062975287437,0.06885819137096405,-0.06242290511727333,-0.026007376611232758,0.007396605331450701,0.01308028306812048,0.01119379885494709,0.07645343989133835,-0.057182930409908295,0.012546696700155735,0.0032101378310471773,0.009917385876178741,-0.003921774215996265,-0.0356379859149456,-0.09441423416137695,-0.015099681913852692,-0.005438168998807669,0.03644443675875664,-0.037934042513370514,-0.03471669182181358,-0.009236213751137257,0.030631983652710915,0.03231201320886612,-0.03883202373981476,-0.021382559090852737,-0.05400625988841057,0.02182980626821518,-0.0271717868745327,0.08771239966154099,-0.029109539464116096,0.09613388776779175,-0.13788354396820068,-0.036560457199811935,-0.018146520480513573,-0.09400631487369537,-0.031122544780373573,-0.07174709439277649,0.04344463720917702,0.010295838117599487,2.4216632791068496e-33,0.04723535478115082,0.011652745306491852,-0.09932555258274078,0.054980628192424774,0.000041877352487063035,-0.03630513697862625,0.04921521991491318,-0.0676337331533432,-0.016343090683221817,0.0811753198504448,-0.005537101998925209,-0.028898248448967934,-0.10963929444551468,-0.0022237172815948725,0.13185857236385345,-0.009633653797209263,-0.07097865641117096,-0.02562432736158371,0.015041343867778778,0.08812081068754196,0.03300262242555618,0.04185754060745239,-0.01933795027434826,0.03227843716740608,-0.026834651827812195,0.03252948448061943,0.026900140568614006,-0.035442255437374115,-0.13790899515151978,-0.011389004066586494,-0.011991390027105808,-0.05739733576774597,-0.07897590845823288,-0.05196411535143852,-0.055813394486904144,-0.04874732717871666,-0.03533937409520149,-0.07337963581085205,0.04477764293551445,0.011779136024415493,0.0766969546675682,-0.03178815543651581,0.021662067621946335,0.08151736855506897,0.050070516765117645,-0.07285161316394806,0.003930771257728338,0.07820966094732285,-0.03235860913991928,-0.07001800835132599,-0.046043191105127335,-0.01430504024028778,0.07766401767730713,0.03538611903786659,0.03488203138113022,0.003031377214938402,-0.06604188680648804,-0.006516458932310343,-0.06513143330812454,0.034226976335048676,0.06276503950357437,0.05282739922404289,-0.04806876555085182,0.036801449954509735,0.08874855190515518,0.053970254957675934,-0.019343176856637,0.044003624469041824,0.031099580228328705,0.006726237013936043,0.009324703365564346,0.00132483069319278,-0.053987521678209305,0.10447345674037933,0.02087979018688202,0.0420491062104702,0.12080967426300049,-0.04926703870296478,0.0228426493704319,0.00401276582852006,-0.09388809651136398,-0.1299232393503189,0.04451145604252815,-0.09197838604450226,0.03863697871565819,-0.016982873901724815,-0.05085323378443718,0.02281123213469982,-0.0034816411789506674,-0.025221839547157288,-0.016489224508404732,-0.006121230777353048,-0.05145111307501793,-0.023556958884000778,-0.00039312810986302793,-2.2486300821356053e-8,-0.0017558271065354347,0.037162479013204575,-0.0008353980374522507,-0.001648969016969204,-0.0458407886326313,-0.0095503656193614,0.08884331583976746,-0.11151082813739777,-0.024019842967391014,-0.010754268616437912,0.00912719126790762,-0.019203083589673042,0.014159612357616425,0.07808101922273636,0.03636888042092323,0.011014565825462341,-0.04758661985397339,-0.005454763770103455,-0.09206588566303253,0.029596565291285515,-0.016414033249020576,-0.07537434995174408,0.0196003969758749,-0.009736362844705582,-0.02138553000986576,-0.05721164867281914,-0.0249859020113945,-0.010931001044809818,-0.0166713185608387,0.1013648509979248,0.04589129984378815,0.03441441431641579,0.026623118668794632,0.031004859134554863,0.027451252564787865,0.003033934161067009,0.01909257099032402,-0.009587021544575691,0.055167682468891144,-0.05784069374203682,-0.016084065660834312,0.032509565353393555,0.016171583905816078,0.08238352835178375,0.09808731824159622,0.010246511548757553,-0.039850108325481415,0.09153128415346146,-0.011564657092094421,-0.049621473997831345,0.006054869387298822,-0.020340319722890854,0.06585777550935745,-0.026011623442173004,-0.02997690811753273,-0.008663227781653404,0.0024485604371875525,-0.01674836128950119,-0.06570406258106232,0.035769615322351456,0.05115697532892227,-0.009934976696968079,0.0669262558221817,-0.03398102894425392]},{"text":"He said that the education of the young was more important than anything that could be done for those who were already grown up.","book":"Animal Farm","chapter":34,"embedding":[0.04173760488629341,0.13873112201690674,0.0012568950187414885,0.02962033636868,0.055329933762550354,0.026813935488462448,0.037115730345249176,-0.0017794243758544326,-0.08458179235458374,0.05605503171682358,0.08832601457834244,0.14296607673168182,0.0025395010598003864,-0.028079837560653687,0.031074604019522667,0.05369503051042557,-0.034246157854795456,-0.03210258483886719,-0.06436805427074432,-0.10773330181837082,-0.022648898884654045,0.02399161458015442,0.05164525657892227,0.022117845714092255,0.06446849554777145,0.04413378983736038,-0.03860418498516083,-0.04104969650506973,0.02990563027560711,0.07827302813529968,0.06187969073653221,0.01543338317424059,0.09893258661031723,-0.02514950931072235,-0.07591774314641953,0.0013065943494439125,0.110042504966259,0.07746674865484238,0.0019342023879289627,0.0007803937187418342,0.00131445552688092,-0.0008277238230220973,-0.023124007508158684,-0.003005520673468709,-0.01704610139131546,-0.05563659965991974,-0.023939499631524086,-0.10985980182886124,0.00281075993552804,0.017344564199447632,-0.05244481563568115,-0.03414914757013321,-0.04329569265246391,-0.14402079582214355,0.016011711210012436,0.14844492077827454,-0.04391533136367798,0.01013144850730896,-0.024058250710368156,-0.05160842463374138,-0.08889911323785782,-0.046845365315675735,0.05384669452905655,0.02243730239570141,0.010828162543475628,-0.07398197054862976,-0.0011796264443546534,-0.03058641403913498,-0.10715183615684509,0.07121116667985916,0.023546569049358368,0.05498216301202774,0.024702254682779312,-0.029207376763224602,-0.013873608782887459,-0.0879058912396431,-0.0002350367431063205,0.10510768741369247,0.04100432246923447,-0.012655302882194519,0.021851593628525734,0.0412498340010643,-0.10863741487264633,-0.01227189227938652,-0.029553141444921494,-0.06671746075153351,0.060248225927352905,-0.1629779189825058,-0.011513326317071915,-0.01034137886017561,-0.0014673813711851835,-0.07324210554361343,-0.006980063859373331,0.09433101862668991,0.020073894411325455,-0.003999785520136356,-0.06279545277357101,-0.03449074551463127,-0.0994473397731781,-0.050188854336738586,-0.03275923803448677,0.002005398739129305,0.05925188586115837,0.06802000105381012,-0.05842455476522446,-0.01680726744234562,-0.009737157262861729,-0.009291892871260643,-0.019997714087367058,0.04131616652011871,0.0026613054797053337,-0.020184598863124847,0.0014928716700524092,0.05420384928584099,0.06368178129196167,0.05289093405008316,0.05457867681980133,0.007287914864718914,-0.02676195092499256,0.012947329320013523,0.034708958119153976,0.018632061779499054,-0.09113699942827225,0.05296321585774422,-0.08141902089118958,-0.16219207644462585,0.052066605538129807,-1.6331053017187806e-33,0.02037544548511505,0.017212139442563057,-0.043620940297842026,0.04878393933176994,-0.0008059671963565052,0.03925810381770134,0.05218835920095444,-0.047711048275232315,0.01905803568661213,-0.035797521471977234,-0.02805093117058277,0.007578002754598856,0.027367768809199333,0.019947150722146034,0.04657293111085892,0.05269953981041908,-0.1355239748954773,0.0006596588063985109,0.08220720291137695,-0.040249478071928024,0.06568796932697296,0.015371624380350113,-0.04382254183292389,-0.12313573807477951,0.016939392313361168,-0.04865226522088051,0.051381099969148636,-0.0016195569187402725,-0.03660273179411888,-0.03235010430216789,-0.04045481234788895,0.011067033745348454,-0.07292862981557846,-0.009973287582397461,0.03969091922044754,-0.03361080586910248,0.025329185649752617,-0.017161181196570396,-0.013240084052085876,-0.07913921773433685,0.038395319133996964,0.033584706485271454,0.017505893483757973,0.008881359361112118,0.01078527420759201,0.05946642905473709,-0.0038689421489834785,-0.004184746649116278,-0.02385384775698185,0.008989817462861538,-0.055692363530397415,-0.029795443639159203,-0.015260511077940464,-0.14507390558719635,0.021339302882552147,0.037502605468034744,-0.029024748131632805,0.11706529557704926,-0.04008296877145767,-0.05346396565437317,-0.03525841236114502,-0.035222042351961136,0.023487990722060204,0.03130493313074112,0.00011892178008565679,0.030147429555654526,0.030318783596158028,0.034059155732393265,0.05977381393313408,-0.018088683485984802,-0.031797442585229874,-0.009491275995969772,-0.09590620547533035,-0.0016476040473207831,-0.06934612989425659,0.012995473109185696,-0.026454025879502296,-0.08296996355056763,0.011187033727765083,-0.049342792481184006,0.04831205680966377,-0.024372367188334465,-0.017784884199500084,-0.06311322748661041,0.033700767904520035,0.03721940889954567,0.0592455193400383,0.031531065702438354,0.08099555224180222,0.0366840697824955,0.03134050965309143,-0.07180291414260864,-0.012680988758802414,-0.016533829271793365,-0.04991816356778145,-2.5858508198999372e-33,-0.01330122072249651,0.043112702667713165,0.012637543492019176,0.0806756243109703,0.05768171325325966,0.004885686561465263,0.019960924983024597,-0.04848286882042885,0.017909683287143707,-0.04464671015739441,0.011456668376922607,0.030783161520957947,0.008762594312429428,-0.015845319256186485,-0.04440435394644737,-0.01122403983026743,-0.07966313511133194,0.03205335512757301,-0.050368111580610275,0.00785790290683508,0.05762758478522301,0.0693422257900238,-0.04527192935347557,0.022872239351272583,-0.024531446397304535,-0.0060232095420360565,-0.04704899713397026,0.02418241836130619,-0.052419938147068024,0.059978023171424866,0.09871744364500046,0.024865897372364998,0.003772331867367029,0.04493097588419914,0.011270479299128056,0.021265504881739616,0.04106526076793671,-0.027620935812592506,-0.03534096106886864,0.022332822903990746,0.043478988111019135,-0.07235231250524521,-0.04927682504057884,-0.08900999277830124,-0.027124471962451935,0.06311116367578506,0.00834211427718401,0.014244595542550087,-0.05690743774175644,0.03311281278729439,-0.032143834978342056,0.0005445470451377332,0.029833512380719185,0.05254766345024109,0.013532591052353382,-0.01261389721184969,0.029800329357385635,-0.0037619778886437416,0.07652775198221207,0.010780120268464088,0.03936583548784256,-0.05733921378850937,-0.031736113131046295,-0.04163247346878052,-0.019484499469399452,-0.001866925973445177,-0.0690016970038414,0.03688075765967369,0.0026620482094585896,0.050219859927892685,0.035807035863399506,-0.02856581285595894,0.06494223326444626,-0.015278181992471218,-0.047276996076107025,0.004353685770183802,0.037257928401231766,0.02663484774529934,-0.051662951707839966,-0.022905902937054634,0.00995238684117794,-0.08592893928289413,-0.02572360262274742,-0.038131967186927795,0.005156448110938072,0.004967318382114172,-0.0013903859071433544,-0.09079275280237198,0.007517087738960981,-0.024160031229257584,0.03499212861061096,-0.08622795343399048,-0.05249910056591034,-0.05609780177474022,-0.0657653957605362,-3.100435819192171e-8,-0.020260529592633247,-0.006159846670925617,-0.1006147563457489,-0.02548593282699585,0.029955126345157623,0.018633583560585976,-0.017670029774308205,0.04470738768577576,0.013281144201755524,0.12004193663597107,-0.037567395716905594,0.03199023753404617,0.0421992763876915,0.03239468112587929,0.023809773847460747,0.0038511555176228285,0.023488618433475494,-0.10060502588748932,0.031257618218660355,-0.005923802498728037,0.12316574156284332,0.022252848371863365,-0.00017768025281839073,-0.01799960248172283,-0.047809310257434845,-0.030542947351932526,0.05027628317475319,0.03524590656161308,-0.10053656250238419,0.05157703533768654,0.0268056932836771,-0.03504865989089012,0.021847769618034363,-0.04994078353047371,0.04970703646540642,0.021620795130729675,0.000866299553308636,0.05699056759476662,0.024450723081827164,-0.08535856008529663,-0.029933707788586617,-0.0203135646879673,0.039298463612794876,0.04265814647078514,0.04416579380631447,-0.025599488988518715,-0.05718220770359039,0.08745108544826508,-0.045598387718200684,0.03395700082182884,0.00412731571123004,0.021734578534960747,0.028406713157892227,-0.14276057481765747,0.10740002989768982,-0.02531311847269535,-0.026075970381498337,-0.012207519263029099,-0.05874555930495262,-0.033531852066516876,0.06845957785844803,0.04798855632543564,0.029115574434399605,0.005598592571914196]},{"text":"It was mixed every day into the pigs' mash.","book":"Animal Farm","chapter":34,"embedding":[0.034802958369255066,0.039038971066474915,0.02204114757478237,0.0377642884850502,-0.00869162380695343,-0.05748964101076126,-0.0471125952899456,-0.04194033890962601,-0.03995342552661896,-0.047495707869529724,0.06721491366624832,0.003543770406395197,0.025401651859283447,0.06143279746174812,-0.07203728705644608,-0.034280359745025635,0.040060803294181824,-0.04524237662553787,-0.003552368376404047,-0.0034196237102150917,0.0050897118635475636,0.0048683942295610905,0.020782267674803734,-0.029299002140760422,-0.0012073602993041277,0.02088271826505661,0.030796445906162262,0.0263004619628191,-0.006264963187277317,-0.07223417609930038,0.02273702435195446,0.10351302474737167,-0.0034840162843465805,-0.0802316963672638,-0.05078734830021858,-0.000091593770775944,0.09531798213720322,0.047559354454278946,0.10549614578485489,0.03697965666651726,-0.015268668532371521,-0.09114445000886917,0.10547474026679993,-0.06060883775353432,-0.06137673929333687,-0.004407268948853016,-0.017440618947148323,-0.02362205646932125,0.10415114462375641,-0.03439364582300186,0.007739884313195944,-0.01358092576265335,-0.048459310084581375,-0.02024981938302517,-0.013660111464560032,-0.07226801663637161,-0.0460968092083931,0.012328500859439373,0.060454268008470535,-0.007533855736255646,-0.07695510983467102,0.06706365197896957,0.006950467359274626,0.030950156971812248,0.07722987979650497,-0.08927007019519806,-0.009770307689905167,0.005074276588857174,0.05523195490241051,-0.009814434684813023,-0.03439050540328026,-0.026307476684451103,0.06482471525669098,-0.026362653821706772,-0.11318864673376083,0.06150667741894722,0.0008380534127354622,-0.07151202112436295,0.030736561864614487,0.010853236541152,-0.03495699167251587,0.022694824263453484,-0.016177544370293617,-0.008731246925890446,0.04402196407318115,0.026377899572253227,-0.0735141858458519,-0.00929507426917553,-0.03448178991675377,-0.006064361892640591,-0.03088756650686264,-0.05932028964161873,-0.020560553297400475,0.003621849464252591,0.06916183233261108,-0.0650993138551712,-0.05610387772321701,0.07024851441383362,-0.028968445956707,0.060013946145772934,-0.05408528447151184,0.012204068712890148,-0.014115400612354279,-0.05229976400732994,0.04132409021258354,-0.02463781274855137,-0.04606788232922554,0.04059316962957382,-0.045719221234321594,-0.01708914153277874,-0.05233992263674736,0.05427486076951027,0.061576250940561295,-0.004386665299534798,0.05116964876651764,0.05734441429376602,0.08831325173377991,-0.05986975505948067,-0.09110351651906967,0.05058706924319267,0.017261195927858353,0.04193202033638954,0.0018311731982976198,0.026857545599341393,0.011461579240858555,0.09704834222793579,0.11704058200120926,-3.942000836357356e-33,0.003707916010171175,-0.08554510027170181,-0.003813641844317317,-0.01857301965355873,0.14422911405563354,-0.02362128533422947,-0.10354699939489365,0.03073265589773655,0.08900535106658936,0.014071999117732048,0.019389165565371513,-0.045940712094306946,-0.08019940555095673,-0.027598338201642036,-0.038063935935497284,-0.04561157152056694,-0.030811602249741554,-0.019237587228417397,0.0347161591053009,-0.02313385158777237,-0.07329677045345306,0.040069855749607086,-0.011695307679474354,0.006720066070556641,-0.01623050682246685,0.0053761787712574005,0.04565189778804779,-0.03163891285657883,0.07052873820066452,0.01533509697765112,0.062205780297517776,0.0029079478699713945,-0.007684954442083836,0.01638525351881981,-0.023825015872716904,0.03300696611404419,0.004864139016717672,-0.08061029762029648,-0.022013450041413307,0.011032485403120518,0.13146768510341644,-0.028328241780400276,0.04628797993063927,-0.03844550624489784,-0.04425260052084923,0.05465083569288254,-0.05711905658245087,0.03751746937632561,0.021700458601117134,0.00020708238298539072,0.06811913102865219,-0.006049482151865959,0.018961990252137184,0.049661941826343536,-0.05075075849890709,0.02666565775871277,-0.003690627869218588,-0.029768746346235275,-0.0003235201584175229,0.08938568085432053,0.03834199905395508,0.05130309611558914,-0.01366548053920269,0.06188003718852997,0.019479254260659218,-0.021671855822205544,-0.035035837441682816,0.03966072201728821,-0.0676431655883789,0.036878980696201324,0.0026802709326148033,-0.02796570397913456,0.02400278113782406,-0.09685950726270676,-0.05228891596198082,-0.08257957547903061,0.031992726027965546,0.04046761244535446,-0.003836625022813678,-0.027103690430521965,0.10159680992364883,0.028838519006967545,-0.08413533121347427,0.00826241448521614,-0.08237645030021667,0.138556107878685,0.03266250342130661,-0.038337644189596176,0.02694576419889927,-0.06332363933324814,-0.037498630583286285,-0.05934049189090729,0.02720998413860798,-0.09094466269016266,-0.0017177782719954848,2.4408875708595865e-33,-0.01827872358262539,-0.004120541270822287,0.015448696911334991,0.08396860212087631,0.06948447972536087,0.03365219011902809,0.014436213299632072,0.061669450253248215,0.029332349076867104,0.00196334021165967,-0.0005275162402540445,-0.014936728402972221,0.011450406163930893,-0.036948978900909424,0.0731731578707695,0.03611760213971138,0.04283526912331581,0.02634897455573082,0.056195419281721115,-0.0002139244315912947,-0.10490573197603226,0.016103774309158325,0.012925662100315094,-0.006661603692919016,0.10927803814411163,0.03978322818875313,0.011703874915838242,0.04782113432884216,0.00942955818027258,0.04126141592860222,0.06230383738875389,-0.05587633699178696,-0.049331557005643845,-0.06273471564054489,-0.02915629744529724,-0.00980998482555151,0.004147457890212536,-0.02217220701277256,-0.042513929307460785,-0.037006963044404984,-0.06274764239788055,-0.01329649705439806,-0.1400451362133026,0.11976323276758194,-0.014067044481635094,0.1611482948064804,-0.06112329289317131,-0.00044457786134444177,0.03551214933395386,0.04444657638669014,-0.006376389879733324,-0.008422511629760265,-0.041388798505067825,-0.04255279153585434,-0.048998214304447174,0.06069248169660568,-0.0005566228064708412,-0.013081816025078297,-0.05751505494117737,0.018421756103634834,-0.06399311125278473,0.05406574532389641,-0.1361485868692398,-0.07857927680015564,-0.02523442544043064,0.020831497386097908,-0.06128804013133049,-0.08806946873664856,0.037173792719841,0.011581524275243282,0.02586628869175911,0.019885897636413574,-0.02277512475848198,0.013268629088997841,0.03535511717200279,0.01514667458832264,-0.010049385949969292,-0.023509249091148376,-0.03674238175153732,-0.02325522154569626,-0.10909359902143478,-0.02714039944112301,-0.015118162147700787,0.08226480334997177,-0.009702158160507679,-0.0098149748519063,-0.05789874121546745,0.08905734121799469,0.014753720723092556,0.08125193417072296,0.004670081660151482,-0.05297743156552315,-0.056866355240345,0.03837795928120613,0.04223116487264633,-1.7686856423893005e-8,0.0562143437564373,-0.03190167248249054,0.013026753440499306,0.04169794172048569,0.003154885722324252,0.04704820737242699,0.07801319658756256,-0.040211502462625504,0.05711048096418381,0.14247968792915344,-0.08132762461900711,0.12968574464321136,-0.04105238616466522,0.023046210408210754,-0.06324827671051025,0.023705873638391495,0.030204499140381813,-0.03874462842941284,-0.04676967114210129,0.03661103919148445,0.022697610780596733,-0.004283314570784569,0.0246962271630764,-0.05732094869017601,-0.04960528761148453,0.053032808005809784,-0.041330236941576004,0.023231521248817444,-0.022192152217030525,0.005552596878260374,0.06496983766555786,0.015841197222471237,-0.05870203301310539,-0.07641348987817764,-0.09022919088602066,0.012015915475785732,-0.02461034618318081,0.0480848029255867,0.056222595274448395,-0.07163246721029282,-0.0007356354035437107,0.011230552569031715,0.058472905308008194,-0.006231764797121286,-0.009681854397058487,-0.019339239224791527,-0.07618968933820724,0.014330904930830002,-0.0043369485065341,0.032971322536468506,0.03505508601665497,0.12190353125333786,0.031839221715927124,0.03749936819076538,0.03048601932823658,-0.06693073362112045,0.005556490272283554,-0.07871118187904358,0.02165273018181324,-0.05774633586406708,0.024041322991251945,-0.011916156858205795,0.010747957974672318,-0.02736496552824974]},{"text":"Squealer was sent to make the necessary explanations to the others. \"Comrades!\" he cried. \"You do not imagine, I hope, that we pigs are doing this in a spirit of selfishness and privilege?","book":"Animal Farm","chapter":35,"embedding":[0.0046034748665988445,0.01763126626610756,0.011362775228917599,-0.010852503590285778,0.04077829793095589,-0.01006881333887577,0.006419907324016094,-0.03147026523947716,-0.042231764644384384,-0.021289726719260216,0.05832844600081444,0.010310405865311623,0.06837344169616699,0.06498149037361145,-0.05893799290060997,-0.001669486635364592,-0.04568396508693695,-0.043120067566633224,-0.04859995096921921,0.011335465125739574,-0.02540876902639866,-0.04101622849702835,0.05560770258307457,0.03252051770687103,0.034065891057252884,-0.012158816680312157,0.02997792884707451,0.017141899093985558,0.0164046473801136,0.03867505118250847,0.019107991829514503,-0.08465788513422012,0.031672168523073196,-0.028914624825119972,-0.04938273876905441,0.022100569680333138,0.10288730263710022,0.034961916506290436,0.12964339554309845,-0.021516190841794014,-0.043024107813835144,-0.13306190073490143,-0.0011164804454892874,-0.029034538194537163,-0.007168672513216734,0.04271358251571655,0.02558915503323078,0.04761949181556702,0.036082811653614044,-0.0853685513138771,0.009162836708128452,0.04232014715671539,-0.028402062132954597,-0.11775161325931549,0.031019160524010658,-0.05313120037317276,0.019710583612322807,-0.04476575553417206,0.05135229229927063,-0.03238347917795181,-0.05733180046081543,0.02191694639623165,0.07088349014520645,0.08895760774612427,-0.01433824934065342,-0.04835496470332146,0.0684010237455368,0.05598380044102669,-0.10907254368066788,0.03232673928141594,-0.004270656034350395,-0.06488826125860214,0.012495703063905239,-0.06997761875391006,-0.01915903203189373,-0.05994896963238716,0.014206357300281525,0.025162354111671448,0.02582233026623726,-0.010669881477952003,0.0067788343876600266,-0.016704529523849487,0.004718665964901447,0.01360505260527134,-0.020075039938092232,-0.06115474924445152,0.006293969228863716,-0.033136364072561264,0.00906467903405428,0.042987968772649765,-0.0648185983300209,-0.08202007412910461,-0.009054993279278278,0.0782657265663147,0.025577956810593605,-0.013633694499731064,-0.0550544336438179,0.12162286043167114,-0.12151707708835602,0.004181265365332365,0.005562157835811377,-0.031101243570446968,0.02747545950114727,-0.08271006494760513,0.008441109210252762,-0.032158173620700836,-0.025488439947366714,-0.03974981606006622,0.006301754619926214,0.03402780368924141,-0.08586449921131134,-0.009464708156883717,-0.02672378160059452,-0.011344416067004204,0.050969645380973816,0.08356636762619019,-0.04262138158082962,-0.049981556832790375,-0.07746642082929611,-0.01646178960800171,0.10701898485422134,0.08215522766113281,-0.05429608374834061,0.12157332897186279,0.10282914340496063,-0.022969549521803856,-0.030276522040367126,-1.9889957673218285e-33,0.047536492347717285,0.02154880203306675,-0.027590692043304443,0.035872988402843475,0.041557710617780685,0.01774635724723339,-0.05824305862188339,-0.015955111011862755,0.08258187770843506,0.05454293638467789,-0.050326235592365265,-0.004199896473437548,0.027739379554986954,-0.04656034708023071,-0.05658653378486633,0.01114577054977417,-0.07865380495786667,0.024068016558885574,0.01863018423318863,-0.046609289944171906,-0.020334433764219284,0.02194399945437908,-0.038772158324718475,0.06459828466176987,0.019932251423597336,-0.03114575333893299,0.0081541258841753,-0.05866935849189758,0.0998121052980423,0.015096006914973259,0.03276446834206581,0.005846204701811075,-0.0013378179864957929,0.02047593519091606,0.009435360319912434,-0.026037290692329407,0.002545307856053114,-0.04702930897474289,-0.017109345644712448,-0.032920029014348984,0.08999818563461304,-0.02460683323442936,0.018689535558223724,0.032388266175985336,0.0027138646692037582,-0.02332666702568531,-0.03600352630019188,0.05484357848763466,-0.06877270340919495,-0.04877755790948868,0.0617322102189064,0.030350305140018463,0.049929287284612656,0.09564651548862457,0.0920548290014267,-0.02082795463502407,-0.009022182784974575,0.024746084585785866,-0.02847297117114067,-0.030059097334742546,-0.02543005533516407,0.006813119165599346,-0.016689278185367584,0.023448361083865166,-0.04208040237426758,-0.08849050104618073,-0.05502741411328316,0.014167810790240765,-0.058880556374788284,0.002940246369689703,0.0009142790222540498,0.019999295473098755,-0.07417455315589905,-0.07273595780134201,-0.0844373106956482,0.0001943407260114327,0.03052932396531105,0.06833301484584808,0.03068036027252674,-0.14173762500286102,0.0017724712379276752,0.003151031443849206,-0.02335553988814354,-0.023384733125567436,-0.09441516548395157,0.07422883063554764,0.053283050656318665,-0.11271698772907257,0.023087885230779648,0.0035576028749346733,-0.06305298954248428,-0.027645206078886986,-0.0629095584154129,0.006774336099624634,-0.06848087161779404,-6.382825959079555e-34,-0.045017339289188385,0.05150095745921135,0.023187287151813507,0.05868199095129967,0.009617209434509277,0.04433742165565491,0.0016049051191657782,-0.06398351490497589,-0.007858412340283394,-0.06284407526254654,-0.04332740604877472,-0.03369724750518799,0.033011503517627716,0.04155402258038521,0.025528518483042717,0.0504671148955822,0.0980428159236908,-0.061810415238142014,-0.01503051444888115,-0.015561217442154884,-0.0790189579129219,0.03633459284901619,0.048628076910972595,-0.024907145649194717,-0.0022568453568965197,0.06273536384105682,0.06024298071861267,-0.026549439877271652,0.07631456106901169,-0.0232600886374712,0.02394653856754303,-0.036028020083904266,-0.08543626964092255,-0.0013982630334794521,0.07460524886846542,0.05505344271659851,0.02271590381860733,0.03306373208761215,-0.09809374809265137,-0.07198907434940338,-0.004180699121206999,-0.008683586493134499,-0.12215837091207504,0.07030747085809708,-0.012019029818475246,0.06630474328994751,0.009332805871963501,-0.10997500270605087,-0.01452217809855938,0.010827003978192806,-0.05962292104959488,0.018758634105324745,0.05071890354156494,0.02353762276470661,-0.04658205062150955,0.02618001028895378,-0.006880828645080328,-0.024038534611463547,0.09961661696434021,-0.11778845638036728,-0.03711949661374092,0.03687159717082977,-0.05727409943938255,-0.03119545616209507,0.02566266804933548,-0.04366617649793625,-0.005504455883055925,0.018879422917962074,0.08264680951833725,0.04124947637319565,0.04967598617076874,-0.02343657799065113,-0.08145706355571747,-0.04449159651994705,0.06443821638822556,0.07809130847454071,-0.041872140020132065,-0.08981631696224213,-0.10121467709541321,-0.03906519338488579,-0.01997520960867405,-0.037225570529699326,0.03819863498210907,0.005645147059112787,0.03224947676062584,-0.08671785891056061,0.0770544558763504,0.13928848505020142,0.04583726450800896,0.031228888779878616,0.004819996654987335,-0.06334255635738373,0.0543149895966053,-0.006017356179654598,0.03374616056680679,-3.236950263385552e-8,-0.049325764179229736,0.04703453183174133,-0.04468842223286629,0.02312454953789711,0.03600553795695305,-0.004123311024159193,-0.004609710071235895,-0.01809544302523136,-0.05573134124279022,0.0766671672463417,-0.07101569324731827,0.0015226670075207949,-0.0025733213406056166,0.044753219932317734,0.0834534764289856,0.1003996878862381,-0.017928961664438248,-0.07085258513689041,-0.003201270243152976,-0.03250456601381302,0.017008094117045403,-0.007722080685198307,-0.07770105451345444,-0.000820483430288732,-0.05166439712047577,0.07243549078702927,-0.08581420034170151,-0.027104903012514114,-0.0707034096121788,0.057615697383880615,0.004086179193109274,0.05661522597074509,-0.04852180927991867,-0.05993533879518509,-0.019940996542572975,0.08212858438491821,-0.010351628996431828,0.019535938277840614,0.11500299721956253,-0.01833791472017765,-0.022076016291975975,0.02642180770635605,0.05346980690956116,0.03186001628637314,0.05047810077667236,-0.014454434625804424,-0.03644488379359245,-0.007378693670034409,0.05961284413933754,-0.006386849097907543,0.012281636707484722,0.046189259737730026,-0.008749512955546379,0.05255527049303055,0.05077587068080902,-0.05316435173153877,0.011945486068725586,0.008096903562545776,0.08009985089302063,0.009064719080924988,-0.044956255704164505,0.019369086250662804,-0.08167019486427307,-0.047152742743492126]},{"text":"Day and night we are watching over your welfare.","book":"Animal Farm","chapter":35,"embedding":[-0.008847229182720184,0.009399388916790485,0.018177632242441177,-0.007949917577207088,0.07767338305711746,-0.009466941468417645,0.08334498852491379,-0.031437404453754425,0.0023270195815712214,-0.02288961037993431,-0.027411840856075287,0.07687270641326904,0.03481622412800789,-0.00810286309570074,-0.004646623972803354,-0.02534370869398117,0.11374127119779587,-0.0912872850894928,-0.014849315397441387,0.05232769250869751,-0.0633942112326622,-0.011400419287383556,0.016905948519706726,0.02527649886906147,-0.02214582823216915,0.07640770822763443,0.031432025134563446,-0.02485739439725876,0.049855321645736694,0.01646752655506134,-0.025034168735146523,-0.0652037262916565,-0.017834672704339027,0.014584205113351345,0.0033859515096992254,-0.04242093861103058,0.08283676207065582,-0.12134940177202225,0.03298657760024071,0.03320841118693352,0.046652186661958694,-0.09312956780195236,-0.013854851014912128,0.07875709235668182,-0.05756855383515358,0.05714099854230881,0.056809213012456894,0.018060864880681038,0.04959743097424507,0.012322303839027882,0.0030676042661070824,0.07826457917690277,0.046959586441516876,0.07483670115470886,0.029599077999591827,0.052626192569732666,0.026035865768790245,0.05106678232550621,0.04686436057090759,0.05296536535024643,-0.006574413273483515,0.05901959165930748,-0.007022096775472164,0.023449279367923737,-0.00603123102337122,0.01999180018901825,-0.04248538985848427,0.04337819665670395,0.030160680413246155,0.024744143709540367,-0.09664871543645859,0.027976371347904205,0.04725370928645134,0.018618144094944,-0.05030256137251854,-0.030500460416078568,0.0657692551612854,-0.04296654090285301,0.04745367914438248,-0.0677744522690773,0.009398842230439186,-0.0688764899969101,-0.026231685653328896,-0.011430307291448116,0.030155837535858154,-0.0005783150554634631,-0.03802371397614479,0.053372301161289215,0.08769690245389938,0.018433699384331703,-0.025616997852921486,-0.01320159062743187,-0.05607368052005768,-0.03642083331942558,-0.0272059328854084,-0.11495877802371979,-0.04487565532326698,0.02698722667992115,-0.07506326586008072,0.10518765449523926,-0.028093110769987106,0.04962572082877159,0.028262605890631676,-0.01455093827098608,-0.016991257667541504,-0.0458899550139904,-0.08726800233125687,0.06936163455247879,0.0021530219819396734,-0.02721279487013817,0.03716572746634483,0.005957858636975288,0.008486423641443253,0.028750594705343246,-0.031089071184396744,-0.026443898677825928,0.0489993542432785,0.005550075322389603,-0.043170712888240814,-0.037317682057619095,0.10298972576856613,0.06874323636293411,-0.06753922253847122,-0.02980240061879158,0.06750620901584625,-0.0631503239274025,0.017101069912314415,-5.6737262570192875e-33,0.036001428961753845,0.038817148655653,0.02177433669567108,-0.019041981548070908,-0.014394640922546387,0.00010032097634393722,-0.02811172604560852,0.012023051269352436,-0.0019116211915388703,0.021965106949210167,0.02501925826072693,0.0009379801340401173,-0.0049250489100813866,0.01069200225174427,-0.048147767782211304,-0.03891277685761452,-0.01356040220707655,0.07655314356088638,-0.000823567621409893,0.027254438027739525,-0.006223718635737896,-0.005492334719747305,0.0032385499216616154,0.019454266875982285,-0.04985888674855232,-0.11213915050029755,-0.031107386574149132,-0.05677827075123787,-0.022370772436261177,-0.018860820680856705,0.03884809836745262,0.05883227661252022,0.060066819190979004,0.04274808242917061,0.0229758620262146,-0.07534340769052505,-0.017684008926153183,-0.015472051687538624,-0.09179887175559998,-0.07373804599046707,0.031094959005713463,0.01285865530371666,0.0655733197927475,-0.037149496376514435,0.04621168598532677,0.044411152601242065,0.08036147058010101,-0.02249174192547798,-0.08543410897254944,-0.04205179587006569,0.028545990586280823,0.031241966411471367,-0.014486966654658318,-0.08948266506195068,-0.09239588677883148,0.04586963355541229,-0.07347515225410461,-0.03380012512207031,-0.021440820768475533,-0.02419908344745636,-0.016550352796912193,-0.14389316737651825,0.043824903666973114,-0.13626424968242645,-0.053898315876722336,0.015260559506714344,0.012156759388744831,0.04602430760860443,-0.054420456290245056,0.04796981438994408,-0.007034997455775738,0.008236698806285858,0.06704315543174744,0.01654791831970215,-0.0007728877244517207,0.10193594545125961,0.08318526297807693,0.004292547702789307,0.037666790187358856,-0.014206817373633385,0.06212775781750679,-0.025065645575523376,0.10371726751327515,-0.05572513863444328,0.07943538576364517,0.12751618027687073,0.00601851986721158,-0.02858964167535305,-0.018213342875242233,-0.018736829981207848,-0.10868550091981888,-0.012467093765735626,0.039102841168642044,-0.04182277247309685,-0.03255989030003548,2.44665575837327e-33,-0.03535250946879387,-0.055918049067258835,-0.007754868362098932,-0.043076299130916595,-0.021320765838027,-0.10977569967508316,-0.040889956057071686,-0.00818430632352829,-0.0517883338034153,0.12759116291999817,0.008351167663931847,-0.01798240654170513,-0.06891381740570068,0.041135478764772415,-0.02247372828423977,-0.09470450133085251,0.04788990691304207,-0.026675129309296608,0.012203733436763287,-0.01847994513809681,-0.09424477815628052,0.11028634011745453,0.031586021184921265,0.054749611765146255,0.05243156477808952,0.04390593245625496,0.05562173202633858,0.06484334170818329,0.05753666162490845,0.0074248663149774075,-0.0547049343585968,-0.07447031885385513,-0.06130214035511017,0.004017828963696957,-0.0010273779043927789,0.13492758572101593,0.05151577293872833,-0.056153587996959686,-0.01971687190234661,-0.0017180296126753092,-0.060540761798620224,-0.02653520368039608,-0.07388618588447571,0.039380211383104324,-0.0316387414932251,-0.0017972462810575962,-0.11872520297765732,0.131193146109581,-0.14622285962104797,0.0018744446570053697,-0.01835816726088524,0.06429635733366013,0.040135618299245834,-0.009544446133077145,-0.020488934591412544,-0.011702722869813442,0.05169309303164482,-0.02907644771039486,0.008008227683603764,0.0028875397983938456,-0.025363117456436157,-0.03174378350377083,-0.071003258228302,-0.011321006342768669,0.04211099073290825,-0.03386582434177399,-0.035041067749261856,-0.012254628352820873,0.057876959443092346,0.024832138791680336,0.014317730441689491,-0.08062364906072617,-0.08107402175664902,-0.0566444918513298,0.037318095564842224,0.06116486340761185,0.04397968575358391,0.023417871445417404,-0.0368543416261673,0.03611109033226967,-0.04389680549502373,-0.12944497168064117,0.020602187141776085,0.0047810813412070274,-0.07275579869747162,-0.023960977792739868,0.08663692325353622,0.050240661948919296,0.008137531578540802,0.019722118973731995,-0.058678191155195236,0.008740352466702461,-0.09628036618232727,0.039144083857536316,0.006820909678936005,-1.88356512609289e-8,0.05950053036212921,-0.016013765707612038,-0.03974618390202522,-0.06644749641418457,0.016484607011079788,0.009731319732964039,0.01111997477710247,-0.021394480019807816,-0.00706620654091239,-0.009451143443584442,0.07447373867034912,-0.000004357684701972175,0.012476042844355106,-0.02868548408150673,0.016103634610772133,0.06530342996120453,-0.0490882582962513,-0.04490642249584198,-0.024147236719727516,0.02470819652080536,0.0034664960112422705,0.013753857463598251,-0.023115651682019234,0.08974222093820572,0.05582933500409126,0.08243925124406815,-0.04703234136104584,0.09786540269851685,0.008379318751394749,0.06856805831193924,0.08521159738302231,0.04194703325629234,-0.09746542572975159,-0.06749001145362854,0.004673999734222889,-0.051605191081762314,0.010381966829299927,0.001521351165138185,0.03395013138651848,0.07161509245634079,-0.0337139368057251,0.013670098967850208,-0.011110533960163593,0.03660052642226219,-0.03650712966918945,-0.02969425357878208,-0.05255642160773277,0.009613428264856339,-0.012205044738948345,-0.02200779877603054,-0.04387303441762924,-0.030357077717781067,0.08509640395641327,0.038916345685720444,0.0397426038980484,-0.055562470108270645,0.03739170730113983,-0.04439210891723633,-0.06529229879379272,0.03972036391496658,0.03357734531164169,-0.02580340765416622,-0.03546527028083801,-0.009814207442104816]},{"text":"When it was put to them in this light, they had no more to say.","book":"Animal Farm","chapter":35,"embedding":[0.06283988058567047,0.10374057292938232,0.004928965587168932,0.06637614965438843,0.011916379444301128,-0.09783889353275299,0.04089515283703804,-0.025129007175564766,0.07553432136774063,-0.024489527568221092,0.0755944773554802,0.04188525304198265,0.007671551778912544,-0.05120958387851715,-0.03769825026392937,0.03957957401871681,-0.006007764488458633,-0.09995704889297485,-0.07228420674800873,-0.038833919912576675,0.10375455021858215,0.004100088961422443,0.051954254508018494,0.06178295612335205,0.015538062900304794,0.04634454846382141,-0.12046369910240173,-0.047321971505880356,-0.0041540563106536865,0.08225277066230774,-0.042678575962781906,0.03206521272659302,-0.013740479946136475,0.07483593374490738,-0.03145328164100647,-0.035078708082437515,0.012466812506318092,0.014883089810609818,0.0528930127620697,-0.033428799360990524,-0.05229931324720383,-0.01731913723051548,-0.00349334510974586,0.006068291142582893,-0.004153988789767027,0.05235615372657776,0.01984337717294693,-0.08094532787799835,0.009226485155522823,-0.00033721147337928414,0.03287097439169884,-0.02402670495212078,-0.01244128867983818,-0.04087287187576294,-0.02134169638156891,-0.03435879945755005,-0.04479478299617767,0.0011437649372965097,0.05074024945497513,0.001050409278832376,-0.014640132896602154,0.0057506440207362175,0.026894154027104378,0.036917246878147125,-0.020879482850432396,0.02834361232817173,-0.07410601526498795,-0.055044516921043396,-0.04736137017607689,0.0627564862370491,-0.01677897945046425,0.020500443875789642,0.08455386757850647,0.010645754635334015,-0.07644329965114594,0.004258308093994856,0.0326518788933754,0.009789399802684784,-0.02371082454919815,-0.0004461010394152254,-0.024203835055232048,-0.07441693544387817,-0.013246480375528336,0.08750855177640915,0.04955451935529709,-0.018266363069415092,0.030589038506150246,-0.047594401985406876,-0.06281143426895142,0.012761829420924187,-0.09059624373912811,-0.057322945445775986,-0.03203136846423149,0.04645687714219093,-0.03740210831165314,-0.048372264951467514,-0.05060454085469246,0.02486930601298809,-0.06596081703901291,0.054578084498643875,0.02638634666800499,0.019221598282456398,-0.04137488454580307,-0.024886803701519966,-0.0629676952958107,-0.041831012815237045,-0.022997839376330376,0.04932917654514313,-0.056882329285144806,0.04791954532265663,0.020364267751574516,-0.02565915696322918,0.053304605185985565,0.0289510115981102,-0.0579996258020401,-0.008106804452836514,-0.0158341433852911,0.01135319471359253,-0.010678053833544254,0.06277204304933548,0.052676767110824585,-0.0006497766589745879,0.0027908252086490393,0.05657938867807388,0.00900075864046812,0.011226792819797993,0.027116255834698677,-3.74183949500926e-33,0.025403959676623344,0.07436950504779816,-0.013712734915316105,-0.06259801983833313,0.053041089326143265,0.029503541067242622,-0.019859643653035164,0.009916998445987701,0.03152811899781227,-0.04751615226268768,0.008045981638133526,-0.05455954745411873,0.04207639396190643,-0.07239750772714615,0.0302860327064991,-0.06126108393073082,-0.029820233583450317,0.06088006868958473,-0.02925752103328705,-0.015447360463440418,-0.032351575791835785,0.07714442908763885,-0.03894030302762985,-0.017564447596669197,-0.011573360301554203,0.04900462180376053,0.002994380658492446,-0.006778381764888763,-0.06996096670627594,0.013002454303205013,-0.012643111869692802,0.044338639825582504,0.12752817571163177,0.008562701754271984,0.045599211007356644,-0.0025070784613490105,0.07406418025493622,-0.027523964643478394,-0.05775431916117668,-0.03828972205519676,0.03093728795647621,0.011777111329138279,0.01662408374249935,-0.015583026222884655,0.0324193611741066,0.08543755114078522,-0.04856320470571518,-0.010928342118859291,-0.1158653050661087,0.08367648720741272,0.037043988704681396,0.034105416387319565,-0.0060675120912492275,0.019605645909905434,0.05624223127961159,0.03309043124318123,-0.023540331050753593,-0.004967766348272562,0.0016210904577746987,-0.07844531536102295,0.029111428186297417,0.00815741065889597,0.04289751127362251,-0.060080818831920624,0.04576987773180008,-0.014695274643599987,-0.03293260931968689,0.07970190048217773,-0.07182188332080841,-0.03457016870379448,-0.014369521290063858,0.03197990357875824,-0.09119708091020584,0.001648194040171802,-0.03326835855841637,-0.05842253565788269,-0.03893142193555832,0.03618445619940758,0.04959965497255325,-0.03465154021978378,0.07370346039533615,-0.08930626511573792,-0.0028433052357286215,-0.05103204771876335,0.016008667647838593,-0.033306606113910675,0.0007133994367904961,0.02925187535583973,-0.08985543996095657,-0.059437479823827744,0.02870841883122921,0.041565969586372375,0.016395030543208122,-0.07674584537744522,-0.09021180123090744,3.8119961661909513e-34,-0.048767078667879105,0.008991388604044914,-0.08651181310415268,0.03893290460109711,0.01102075818926096,0.0029902132228016853,-0.0018975735874846578,-0.03259005770087242,0.09089470654726028,0.05218180641531944,0.051403872668743134,-0.03487194702029228,-0.03726416081190109,0.00039916750392876565,0.01980792172253132,0.0007795419660396874,0.036008935421705246,0.06159147992730141,0.010352052748203278,0.03633140027523041,0.025529203936457634,-0.021073799580335617,-0.05709864944219589,0.055249977856874466,-0.056024953722953796,0.04842125624418259,0.0658809244632721,-0.0414334312081337,-0.06772683560848236,-0.09731462597846985,-0.005934020504355431,-0.010908905416727066,-0.05887536332011223,0.048644404858350754,0.031565334647893906,0.028241483494639397,0.035157348960638046,0.05579670891165733,-0.10379903763532639,0.027341067790985107,0.032098617404699326,0.03473725914955139,-0.10371346026659012,-0.009512453339993954,-0.10595981031656265,-0.03895430639386177,-0.04008691757917404,-0.05812833830714226,0.0038707477506250143,0.032336100935935974,-0.0553947277367115,-0.08735395222902298,0.023364506661891937,0.07625524699687958,-0.12092025578022003,-0.04732426628470421,0.0363619290292263,0.01395327690988779,0.07303793728351593,-0.049860548228025436,0.03909813240170479,0.02379603497684002,-0.031145617365837097,0.0025418561417609453,0.022834978997707367,0.057966988533735275,-0.013732417486608028,0.08788956701755524,0.06740625947713852,-0.0034176309127360582,0.12561576068401337,-0.028368128463625908,-0.05285309627652168,0.004650987684726715,0.039475299417972565,0.07025359570980072,-0.033177778124809265,-0.029942160472273827,-0.12956607341766357,-0.08029108494520187,0.05561249703168869,-0.04528101533651352,-0.08294150233268738,0.06370124220848083,0.06701977550983429,-0.0327143594622612,0.041392192244529724,-0.04565974697470665,-0.11860205978155136,0.0372098907828331,-0.019129041582345963,0.018119124695658684,0.026789991185069084,-0.014256693422794342,-0.05086085945367813,-2.5701062611460657e-8,0.015536604449152946,0.017072472721338272,-0.03459469601511955,-0.034452203661203384,0.1268472671508789,-0.012336468324065208,0.07287467271089554,0.0660005733370781,-0.04046875983476639,-0.02902146987617016,0.02265615202486515,-0.04700363799929619,-0.022169912233948708,0.04747717082500458,0.06503050774335861,0.06800688058137894,-0.00025632206234149635,-0.1512022465467453,-0.0036722852382808924,0.008304751478135586,-0.11104714870452881,0.0264509879052639,-0.03785958141088486,-0.010692033916711807,0.006111158989369869,0.08191674947738647,-0.04561975598335266,0.024736419320106506,0.0030080832075327635,0.07086766511201859,0.11015016585588455,-0.015965668484568596,-0.022376706823706627,0.014996161684393883,-0.09829339385032654,0.04262663424015045,-0.004339243751019239,0.013597212731838226,0.04335224628448486,-0.021184135228395462,-0.11810851097106934,0.017341656610369682,0.0029495656490325928,0.06489942222833633,0.09991174936294556,0.04527277871966362,-0.01873699761927128,-0.058137860149145126,-0.12797079980373383,-0.007328683044761419,0.026638774201273918,0.023288901895284653,-0.08154165744781494,0.04693569242954254,-0.015616940334439278,-0.03322925418615341,0.09315040707588196,0.043986231088638306,-0.0986047238111496,-0.0017714346759021282,0.06670400500297546,0.043221138417720795,-0.03478798270225525,0.08392191678285599]},{"text":"Most of this time Mr.","book":"Animal Farm","chapter":35,"embedding":[-0.04566377028822899,0.008901533670723438,0.018139665946364403,-0.024578731507062912,-0.012219225987792015,-0.0888291671872139,0.1152980700135231,0.023026952520012856,0.06890330463647842,0.01540142297744751,-0.07181940972805023,0.04299195110797882,-0.0028451099060475826,0.03970072418451309,0.043382320553064346,0.09939836710691452,0.07785817980766296,-0.014385786838829517,0.045964159071445465,0.019952375441789627,-0.022302409633994102,-0.018505115061998367,0.019821111112833023,-0.02426884137094021,0.04344049468636513,-0.02227681502699852,-0.003145072143524885,0.04290146008133888,-0.0009301292011514306,-0.06006886437535286,-0.05671756714582443,0.04792695492506027,-0.0023807804100215435,0.0009122606716118753,-0.029420772567391396,-0.02614537999033928,-0.021430056542158127,0.005259211175143719,0.0030627853702753782,0.014632637612521648,-0.004231014754623175,-0.0130916777998209,0.017092010006308556,-0.047936201095581055,0.0318557471036911,-0.014883582480251789,0.05647491663694382,-0.10449272394180298,0.10574700683355331,-0.005903617013245821,-0.08331680297851562,-0.025588078424334526,0.010556148365139961,0.07336576282978058,0.05392952263355255,-0.012686090543866158,0.04973940551280975,0.045353665947914124,0.0048829857259988785,0.0022632009349763393,-0.14327938854694366,0.13352200388908386,-0.022814882919192314,0.0483475886285305,0.03385980427265167,0.04353032261133194,-0.04144885018467903,0.032137203961610794,0.05609748512506485,0.12544135749340057,-0.07073931396007538,-0.010752862319350243,-0.0706622302532196,-0.05637401342391968,-0.06337616592645645,0.08023570477962494,0.015069426968693733,-0.08670680969953537,0.030881136655807495,0.05599742755293846,-0.0028114330489188433,0.03697482496500015,-0.03252082318067551,-0.0043978700414299965,0.03972940519452095,0.03552389517426491,0.015536028891801834,-0.04482024908065796,0.01252427976578474,0.017134252935647964,-0.059480998665094376,-0.04374361410737038,0.07410217821598053,0.0011291828704997897,-0.047655537724494934,-0.01148912776261568,-0.09557844698429108,-0.0019300575368106365,-0.08330225199460983,0.06920703500509262,-0.01669589802622795,-0.005935891065746546,0.0026489621959626675,0.047412972897291183,0.05757470801472664,-0.021539811044931412,0.006551596336066723,0.021922267973423004,0.04256562888622284,-0.03592371195554733,-0.023116162046790123,-0.013701025396585464,-0.016727197915315628,0.021551022306084633,-0.03951709344983101,-0.1412724405527115,-0.06429682672023773,-0.027186686173081398,-0.019676946103572845,-0.005875851958990097,-0.021094955503940582,0.07890283316373825,-0.028884632512927055,-0.06217929720878601,-0.019494347274303436,-0.11157970130443573,0.02222302556037903,-3.7912095230598265e-33,0.0035808042157441378,-0.017138885334134102,-0.007184105459600687,0.08230602741241455,0.012853044085204601,0.0718318521976471,0.027271654456853867,-0.004747012164443731,0.05024563521146774,-0.019307153299450874,0.08220915496349335,-0.0031870261300355196,-0.07616738975048065,-0.12319553643465042,-0.07567590475082397,0.005215304903686047,0.022352535277605057,0.08972808718681335,-0.06681989878416061,0.021727800369262695,-0.055216532200574875,-0.010814272798597813,0.010489141568541527,0.03720671683549881,0.028565818443894386,-0.015612601302564144,0.05213164910674095,0.010631167329847813,0.019158868119120598,0.027882834896445274,0.04185549169778824,0.012058058753609657,-0.09206045418977737,0.02172214724123478,0.01445018034428358,0.036653995513916016,0.04502968490123749,-0.0020065612625330687,-0.042282238602638245,0.023415904492139816,-0.004554067738354206,-0.025193482637405396,0.0438968725502491,0.07961941510438919,-0.021385403349995613,0.03910320624709129,0.026216182857751846,0.102715864777565,-0.03813411295413971,-0.010651781223714352,-0.01971651054918766,-0.008505220524966717,0.03284885361790657,0.0296824611723423,0.027751518413424492,-0.04633753001689911,0.03346327319741249,-0.06733186542987823,0.054339341819286346,0.10680074989795685,-0.02632826939225197,-0.05133053660392761,-0.02261197194457054,-0.061734020709991455,-0.07399992644786835,0.002007121918722987,0.007165396586060524,0.018483882769942284,-0.01202012412250042,0.048563141375780106,-0.05206023529171944,0.03710813820362091,-0.006804275792092085,-0.05767850577831268,0.005688164848834276,-0.030178925022482872,0.07463128119707108,0.08491627126932144,-0.07604362815618515,-0.02298358641564846,-0.021299945190548897,0.00658741919323802,0.007048075553029776,-0.0015900263097137213,0.030934173613786697,0.05173904821276665,0.06197785958647728,-0.14434847235679626,0.021498072892427444,0.0435129813849926,-0.06327918916940689,-0.040950194001197815,0.07685235142707825,0.0017934859497472644,-0.05223935842514038,1.9850995545618296e-33,-0.04074697569012642,-0.033879972994327545,0.0662461668252945,0.01057435106486082,-0.03648620843887329,-0.05406024307012558,0.011440468020737171,0.005258210003376007,-0.02257622964680195,0.07906349003314972,-0.031774941831827164,-0.03618573024868965,0.08165993541479111,0.002758922753855586,0.07208665460348129,-0.01906738243997097,0.10620606690645218,-0.025399839505553246,-0.004465826787054539,0.040856096893548965,-0.09261320531368256,0.02516784705221653,0.03206721320748329,0.045687124133110046,-0.05807729810476303,0.015652377158403397,0.00544370524585247,0.03062470443546772,-0.08916622400283813,-0.11379216611385345,0.06012643873691559,0.015097351744771004,-0.10915937274694443,-0.02690613642334938,-0.0715985894203186,0.08737459778785706,0.010002706199884415,0.07390887290239334,0.07059496641159058,0.07744360715150833,-0.00456660334020853,0.020056534558534622,-0.04237111657857895,0.05713029205799103,0.00156346894800663,-0.040951699018478394,-0.048222847282886505,-0.07556473463773727,0.015235839411616325,0.05311319977045059,-0.10627580434083939,-0.0764908492565155,-0.031429026275873184,-0.07558406889438629,-0.03238159418106079,0.07586120814085007,-0.029300404712557793,0.019734345376491547,-0.015182471834123135,0.02888733707368374,-0.08049288392066956,0.026886669918894768,-0.05030949413776398,0.03346399962902069,0.029565397650003433,0.05756087973713875,0.01176088023930788,-0.08221805095672607,-0.028185497969388962,0.03438108414411545,0.02001558616757393,-0.057504162192344666,-0.07767492532730103,-0.021397937089204788,-0.10390440374612808,0.03168202564120293,-0.027132537215948105,-0.04261092469096184,0.04879098758101463,-0.11330811679363251,-0.03741493448615074,-0.07387210428714752,0.021367983892560005,0.04018483683466911,-0.07939703017473221,-0.01883113570511341,-0.019708827137947083,-0.10373584926128387,0.007183932699263096,-0.0019459077157080173,-0.024756835773587227,-0.013192955404520035,0.04860944673418999,-0.02010991983115673,0.02566058374941349,-1.680219874344857e-8,0.00020799976482521743,0.04985382407903671,-0.01493905670940876,-0.06056876853108406,0.09371531754732132,0.04844819754362106,0.022415589541196823,0.02357669174671173,0.013092531822621822,0.04560545086860657,0.07666169852018356,0.011604267172515392,0.022854099050164223,-0.0008673486881889403,0.037024904042482376,0.03415105864405632,0.07817055284976959,-0.0605248399078846,-0.03260223940014839,0.06782077997922897,-0.015728704631328583,-0.005147816147655249,0.05008087307214737,-0.000959996075835079,0.015360440127551556,0.035702116787433624,-0.038616493344306946,0.002334549091756344,-0.026781488209962845,0.1490025520324707,-0.002180093200877309,0.09558643400669098,-0.07589296251535416,0.014363383874297142,0.022113125771284103,-0.03989517316222191,0.08232683688402176,0.0016830916283652186,0.0072656115517020226,0.0563247874379158,-0.05115564167499542,-0.014043147675693035,0.020875459536910057,0.06108313426375389,-0.013159375637769699,0.07706945389509201,-0.01474369503557682,0.002127648564055562,-0.017766496166586876,-0.029377909377217293,-0.04729875177145004,0.012932793237268925,0.04477277025580406,0.04708680137991905,0.106888547539711,0.03700582683086395,0.010916691273450851,-0.04237542301416397,-0.07224096357822418,-0.10508720576763153,0.01676943711936474,0.06690772622823715,-0.06442900747060776,-0.0267812367528677]},{"text":"One of them, which was named Foxwood, was a large, neglected, old-fashioned farm, much overgrown by woodland, with all its pastures worn out and its hedges in a disgraceful condition.","book":"Animal Farm","chapter":36,"embedding":[0.04876286908984184,0.04838098958134651,0.018811965361237526,0.09063597023487091,0.06807004660367966,-0.05266198888421059,-0.0716518685221672,-0.02462836727499962,-0.06489701569080353,0.047956954687833786,0.019996389746665955,0.06006858870387077,-0.0024854764342308044,-0.022554555907845497,-0.06881581991910934,0.01599796675145626,-0.07363449037075043,-0.020458443090319633,-0.02044161781668663,-0.019479528069496155,-0.06257671117782593,0.09138468652963638,-0.005779672879725695,-0.0030540332663804293,0.013646209612488747,-0.05771903693675995,-0.12729032337665558,0.03914732113480568,0.0064407759346067905,-0.0468880757689476,0.09019478410482407,0.11058228462934494,0.022184137254953384,0.06819871068000793,-0.01339277345687151,0.0436893031001091,0.040455326437950134,-0.014353757724165916,0.0077003915794193745,0.03137617185711861,-0.031641118228435516,0.03166871890425682,0.03810754045844078,-0.0738343745470047,-0.1374054253101349,-0.04880158230662346,-0.020175514742732048,-0.06538037210702896,0.06016666442155838,-0.05427979677915573,0.06219895929098129,-0.03055410645902157,-0.013227574527263641,-0.03566816821694374,-0.008295821025967598,0.01631768047809601,-0.012908022850751877,-0.006843192968517542,-0.05075783282518387,0.07312481105327606,0.03518655523657799,0.021991034969687462,0.014526644721627235,-0.006532191298902035,-0.04610554873943329,-0.0055490052327513695,-0.06001240760087967,-0.007895044982433319,-0.00407485943287611,0.024637389928102493,-0.05766196548938751,0.005194362718611956,-0.06781327724456787,-0.04229195788502693,-0.047698091715574265,-0.018609965220093727,-0.053671471774578094,-0.003918079659342766,0.008060747757554054,-0.06995529681444168,-0.07308007031679153,0.012613873928785324,0.006404081825166941,-0.02668367512524128,-0.04072527959942818,-0.027021558955311775,0.03338483348488808,0.054240815341472626,0.06374426931142807,-0.04556061699986458,0.03233916684985161,-0.07197605818510056,-0.02923629619181156,0.05211949348449707,0.05033930391073227,0.004326958674937487,-0.01159645151346922,-0.012864610180258751,-0.07813068479299545,0.008942960761487484,-0.04914938658475876,-0.04343634098768234,0.033855974674224854,0.011266015470027924,-0.06888025999069214,-0.006228859070688486,-0.12141145020723343,0.020610632374882698,0.011027224361896515,-0.010028531774878502,0.02556207962334156,-0.01742255873978138,-0.07779069989919662,0.09651009738445282,0.017444489523768425,-0.006308849435299635,0.08021152019500732,-0.07827669382095337,-0.09167049825191498,0.041039519011974335,0.04815904423594475,0.05729920044541359,-0.03943876177072525,0.010594328865408897,-0.006600696127861738,0.04239904135465622,0.0877271294593811,-4.754143271184751e-33,-0.024042444303631783,0.02734394744038582,-0.12490925937891006,-0.0392279326915741,0.08845910429954529,-0.027606414631009102,0.010031198151409626,0.022291574627161026,0.04034784436225891,0.027057794854044914,0.053347885608673096,-0.016898734495043755,0.0006150011322461069,-0.0951552540063858,-0.0005753809818997979,-0.012333490885794163,-0.009270135313272476,0.009182390756905079,0.018241340294480324,0.0016835636924952269,0.022028706967830658,0.15978039801120758,-0.0011389099527150393,-0.008915908634662628,-0.029587913304567337,-0.09566701203584671,0.03675682842731476,0.0005706304218620062,0.012734108604490757,0.02417781576514244,0.0973525196313858,-0.08342331647872925,-0.011865549720823765,0.0002391851448919624,0.02163347229361534,0.02740795910358429,0.008325567469000816,-0.05403861403465271,0.03508143126964569,0.08488129824399948,-0.014195481315255165,-0.0009028954082168639,0.07651287317276001,0.002102495403960347,0.01789320446550846,0.003936710301786661,0.014638561755418777,0.021746551617980003,-0.12129790335893631,-0.02186381071805954,0.028571229428052902,0.07622890919446945,0.049201980233192444,0.03612096235156059,-0.008829195983707905,-0.05769045278429985,0.030367519706487656,0.01752108708024025,0.005749853327870369,-0.005277187097817659,0.09502968192100525,-0.04082183912396431,-0.032573312520980835,-0.06504108756780624,0.04796835780143738,-0.016198139637708664,0.07701760530471802,0.09571447223424911,-0.13225416839122772,0.10351385921239853,-0.0016638328088447452,0.002308278577402234,-0.09387791156768799,-0.011706508696079254,0.028548646718263626,0.016035376116633415,0.004554438404738903,0.011575029231607914,-0.02135567180812359,-0.028248678892850876,-0.03560851514339447,-0.02408027835190296,-0.09153659641742706,0.056579142808914185,-0.015312185510993004,-0.059619396924972534,0.003996505867689848,0.018349435180425644,0.020410751923918724,-0.07749319076538086,0.034081559628248215,0.08347682654857635,-0.012395011261105537,-0.048955146223306656,0.05577326565980911,1.185430308658109e-33,-0.05546063184738159,0.052949294447898865,0.007340478710830212,0.05554826185107231,-0.03449810668826103,0.046787794679403305,-0.08089776337146759,-0.00457614054903388,-0.03902507200837135,-0.049028076231479645,-0.05750022083520889,0.035855166614055634,-0.017752589657902718,-0.018392743542790413,0.03560353070497513,-0.05462326854467392,0.011868570931255817,0.025640830397605896,-0.029939303174614906,-0.022212328389286995,-0.027473606169223785,0.08872924000024796,-0.08269744366407394,0.002003270434215665,-0.03440196439623833,0.024839336052536964,-0.030123988166451454,-0.07803696393966675,-0.027161702513694763,-0.05784033238887787,0.03053869865834713,-0.07053995132446289,0.019064083695411682,-0.06936771422624588,-0.002279936335980892,0.08183539658784866,0.04171685501933098,-0.0343107245862484,-0.05680606886744499,-0.011434518732130527,0.0686110258102417,-0.02257312834262848,0.04132585972547531,0.04151837155222893,-0.054879043251276016,-0.047740668058395386,-0.10736256092786789,0.03871483355760574,0.05521035194396973,0.12942153215408325,0.009940477088093758,0.1045384556055069,0.06373687088489532,-0.0007548564462922513,-0.06768197566270828,-0.07427981495857239,0.0010087486589327455,0.04249818995594978,-0.035385169088840485,0.03920990973711014,-0.03912696987390518,0.04326488450169563,-0.04576118290424347,0.027341904118657112,0.008763408288359642,-0.058621846139431,-0.12672898173332214,-0.04319803789258003,-0.010820543393492699,-0.035754576325416565,-0.0035466267727315426,0.06157954782247543,-0.027958253398537636,-0.009195487946271896,0.023326314985752106,0.12751315534114838,0.05224663391709328,-0.05747384950518608,-0.0016893827123567462,0.04282606393098831,0.06465622037649155,0.013817248865962029,0.07538202404975891,0.001003675046376884,0.03807378560304642,-0.026246437802910805,0.004713842179626226,0.09269941598176956,0.050010472536087036,-0.0624205619096756,0.0575975738465786,-0.03784570097923279,-0.01946936547756195,0.02136426977813244,0.016164643689990044,-3.0283612062476095e-8,-0.046791646629571915,0.026554755866527557,-0.015348013490438461,0.008847585879266262,0.04751079902052879,-0.065946064889431,0.05889881029725075,0.14090095460414886,0.009295259602367878,0.08718259632587433,-0.09191945940256119,0.1180204376578331,-0.0015759586822241545,0.044809721410274506,0.0350254625082016,-0.02036004513502121,-0.0015818186802789569,-0.04782896861433983,-0.027821797877550125,0.06238280236721039,-0.002966205822303891,-0.06132623925805092,-0.03348807245492935,-0.002766441088169813,-0.03396773338317871,-0.10050345212221146,-0.03928346559405327,-0.04574569687247276,0.015799470245838165,0.00048122555017471313,0.06631315499544144,0.09217645227909088,-0.01645040698349476,0.06658114492893219,-0.034042757004499435,0.01726042479276657,-0.01617339998483658,0.042492788285017014,-0.014506123960018158,-0.005424873903393745,-0.027051137760281563,-0.03656797483563423,0.057245317846536636,-0.00632846262305975,0.030007416382431984,-0.020616689696907997,-0.01345700491219759,-0.01638784445822239,-0.017166268080472946,-0.06353134661912918,0.0035249434877187014,0.03456680476665497,0.08358277380466461,0.07320001721382141,-0.036214474588632584,-0.09078005701303482,0.010698709636926651,-0.025680959224700928,0.0430670902132988,-0.0705726221203804,-0.021800760179758072,-0.06511405110359192,0.05323915183544159,0.040344223380088806]},{"text":"Nevertheless, they were both thoroughly frightened by the rebellion on Animal Farm, and very anxious to prevent their own animals from learning too much about it.","book":"Animal Farm","chapter":36,"embedding":[0.08039436489343643,0.04852250590920448,0.007174135185778141,0.09937450289726257,0.04435621201992035,0.0005261285114102066,-0.04183844104409218,0.005732716992497444,-0.0437924861907959,0.010407885536551476,0.08377090841531754,0.0016046095406636596,0.05732416361570358,-0.08664507418870926,-0.08730477094650269,0.012839757837355137,-0.0753457322716713,0.0032273672986775637,-0.03098905459046364,0.05212325602769852,-0.05506480112671852,-0.028489576652646065,0.0243294108659029,0.03644385188817978,-0.016859179362654686,0.029264116659760475,-0.0026945360004901886,0.016392428427934647,0.022127589210867882,-0.008511328138411045,-0.0313955694437027,-0.024065133184194565,0.0023693640250712633,-0.0070969401858747005,-0.0321020744740963,-0.025892645120620728,0.11109466105699539,0.02385970950126648,0.0968857854604721,-0.09193756431341171,0.0004957151249982417,0.03002476505935192,0.012259901501238346,-0.02100379578769207,-0.12039822340011597,-0.025541963055729866,-0.033590298146009445,-0.0677952691912651,0.02556510828435421,-0.06300979107618332,-0.00516077084466815,-0.06835532933473587,-0.026511337608098984,-0.10528398305177689,-0.028727982193231583,-0.01926611363887787,-0.02604375034570694,0.02791605144739151,0.011077267117798328,0.010381544940173626,-0.0662626326084137,0.0023727945517748594,0.04096129536628723,0.058045901358127594,0.008218077942728996,-0.06828096508979797,-0.02891445718705654,0.018449727445840836,-0.01017068699002266,0.034078311175107956,0.00996263325214386,-0.055167995393276215,0.020589271560311317,-0.1036924198269844,-0.06471085548400879,-0.023388421162962914,-0.03765350952744484,0.010100237093865871,0.050679873675107956,-0.09039528667926788,-0.04461174085736275,-0.01463657058775425,-0.005763333756476641,0.0051858630031347275,0.044056981801986694,-0.056523796170949936,0.015449268743395805,-0.038910288363695145,0.022093020379543304,-0.005098991096019745,0.05401509627699852,-0.11646746844053268,0.016669603064656258,0.06507055461406708,0.0764671042561531,0.0034120972268283367,-0.02323051728308201,-0.014835498295724392,-0.04546941816806793,0.01634625717997551,-0.022149018943309784,-0.04238487035036087,0.001242311205714941,0.04945804551243782,0.009940460324287415,-0.052823506295681,-0.08344732224941254,-0.09115450084209442,0.015634525567293167,0.004283933900296688,-0.07077682018280029,-0.011381723918020725,-0.010439506731927395,0.1259823739528656,0.053792279213666916,0.09973782300949097,-0.010068600997328758,-0.0599706806242466,-0.0851684957742691,0.03897765278816223,0.10200587660074234,0.006585789378732443,-0.006906963884830475,0.006355308461934328,0.04869857430458069,-0.006716870237141848,-0.017724651843309402,-1.905864072147707e-33,0.108098104596138,-0.09418395906686783,-0.09931658208370209,-0.017305908724665642,0.06314282864332199,0.045058317482471466,0.010790458880364895,0.002306964946910739,0.01368347555398941,0.05389115959405899,-0.0036724123638123274,-0.01686752401292324,0.0521109513938427,-0.06364436447620392,-0.0490482896566391,-0.02172774076461792,-0.08518427610397339,-0.05900029465556145,0.10357552021741867,-0.04125393554568291,-0.026157338172197342,0.057132963091135025,-0.03876173123717308,0.06317587196826935,-0.01299565564841032,-0.04424349218606949,0.008816132321953773,-0.013013571500778198,0.05086161941289902,0.046981535851955414,0.028206586837768555,-0.03500726819038391,-0.021589847281575203,0.02753118798136711,0.022019701078534126,-0.010374899953603745,0.004892503842711449,-0.12118731439113617,0.035172995179891586,0.018616681918501854,0.0914192795753479,-0.04069618508219719,0.10084118694067001,-0.008196394890546799,0.005819594953209162,0.040759917348623276,-0.05094034969806671,-0.056413307785987854,-0.11233068257570267,0.03732873126864433,-0.009974374435842037,0.039013318717479706,0.07740895450115204,-0.0028059727046638727,0.045368097722530365,0.029061900451779366,-0.013721739873290062,0.050959762185811996,-0.08854472637176514,0.00941929779946804,-0.045193273574113846,0.037877172231674194,0.05251249298453331,-0.04230444133281708,0.046156030148267746,0.0013189942110329866,-0.019903922453522682,0.006637951359152794,-0.03066438063979149,0.03429045528173447,-0.06283506751060486,-0.05273520573973656,-0.07768617570400238,-0.08341939002275467,-0.035032935440540314,-0.06931906193494797,0.045595232397317886,0.021822435781359673,-0.015252639539539814,-0.12638385593891144,0.027108365669846535,-0.04319806396961212,-0.021562229841947556,0.08290938287973404,-0.1118641048669815,-0.008932342752814293,0.04093998298048973,-0.026272423565387726,0.011546915397047997,0.03949258103966713,0.06671415269374847,0.05298355594277382,0.005729488097131252,-0.08365290611982346,0.002958400174975395,-7.785158577186888e-34,-0.08279541879892349,0.008105850778520107,-0.03579753637313843,0.059929560869932175,-0.04135178402066231,0.015556979924440384,0.0069996053352952,-0.013042949140071869,0.041031498461961746,-0.032547496259212494,-0.07588048279285431,0.018914660438895226,-0.04553823918104172,-0.00915314070880413,0.0275355726480484,-0.059822406619787216,0.0270594023168087,0.11697497218847275,0.0819055363535881,-0.040442343801259995,-0.06884339451789856,0.019964469596743584,-0.050783734768629074,-0.015055245719850063,0.04825214296579361,0.09521372616291046,-0.07274883985519409,0.0038296026177704334,-0.021680474281311035,-0.046162787824869156,0.04759252816438675,0.027422433719038963,0.05383121222257614,0.001363851479254663,0.049833327531814575,0.04712681844830513,0.0035592643544077873,-0.01988060399889946,0.0014689926756545901,-0.06234655901789665,-0.0008648517541587353,-0.00498828524723649,-0.014934801496565342,-0.004835894331336021,0.0031278403475880623,0.08147163689136505,0.06320296972990036,0.01744721084833145,0.028778042644262314,0.03046387992799282,-0.02585887536406517,0.10305751860141754,0.0176374688744545,-0.038445375859737396,0.00032824103254824877,-0.11938317865133286,0.05686722323298454,-0.06561826914548874,0.020947780460119247,0.027028681710362434,-0.02276894636452198,-0.0069765145890414715,-0.0415910929441452,0.022430086508393288,-0.04423390328884125,0.011463289149105549,-0.09699631482362747,0.041139233857393265,0.12134360522031784,-0.03281130641698837,0.016791993752121925,0.05795612186193466,0.02668449655175209,-0.01451479084789753,0.007518123369663954,0.0624520406126976,-0.01634841039776802,-0.02572476677596569,0.04983144626021385,-0.0498119592666626,0.012697760947048664,-0.007386647630482912,0.04469854012131691,0.0651029497385025,-0.07048667222261429,0.09404624998569489,-0.005874208640307188,0.10583029687404633,0.039642564952373505,-0.03886004909873009,-0.007483490277081728,-0.07180406153202057,0.1288096010684967,-0.043393898755311966,0.06201311573386192,-2.5291267746752055e-8,-0.005017847288399935,-0.028564095497131348,0.05561830475926399,-0.014558691531419754,0.10362578183412552,0.018012268468737602,-0.05759080871939659,0.02701171301305294,-0.07826142758131027,0.09129779040813446,-0.05608437582850456,0.0653817430138588,0.011485203169286251,0.031184347346425056,0.006896718870848417,0.054680876433849335,0.043497998267412186,-0.05664488300681114,-0.018161335960030556,0.03675872087478638,-0.035992298275232315,-0.007188312243670225,-0.06582178175449371,-0.1024978756904602,-0.027414457872509956,0.0011167853372171521,-0.03661283850669861,-0.0369659960269928,0.029272668063640594,0.04008736461400986,0.021979767829179764,-0.053616851568222046,-0.03868240863084793,-0.04705953225493431,-0.03960566222667694,0.05457445979118347,-0.019589785486459732,-0.05066744238138199,0.11081166565418243,-0.07659198343753815,-0.018981756642460823,0.057083502411842346,0.08879715949296951,0.05358882248401642,0.0896528959274292,-0.0388215146958828,0.049426719546318054,-0.02529534325003624,0.021492496132850647,-0.03373756259679794,-0.016703536733984947,0.07543995976448059,0.05321282893419266,0.0023438178468495607,0.00033011758932843804,-0.08327394723892212,-0.053915537893772125,-0.013957450166344643,-0.013381468132138252,0.04441370815038681,-0.002222915645688772,0.04381610453128815,-0.03219464048743248,0.005575721152126789]},{"text":"It was given out that the animals there practised cannibalism, tortured one another with red-hot horseshoes, and had their females in common.","book":"Animal Farm","chapter":36,"embedding":[-0.04439243674278259,0.06382302194833755,-0.07455989718437195,0.0667809471487999,-0.06614399701356888,-0.012071534059941769,-0.01162419468164444,-0.05988437682390213,-0.0725645199418068,0.068721704185009,0.07085997611284256,-0.010891249403357506,0.012366150505840778,0.0029116510413587093,-0.05661693215370178,-0.020496053621172905,0.011515467427670956,0.007119996938854456,-0.036463093012571335,0.03561845421791077,-0.03640507906675339,-0.09047645330429077,0.03958640247583389,0.00798238068819046,-0.08717334270477295,-0.04491635411977768,-0.003554511582478881,0.01773463562130928,-0.025317125022411346,-0.0031334131490439177,-0.07404918968677521,-0.071882463991642,0.05366068705916405,-0.02544446475803852,-0.06142760068178177,0.012074003927409649,0.049346357583999634,-0.06090433895587921,0.026808159425854683,0.01783258467912674,0.013487402349710464,0.005517804995179176,0.004629696253687143,0.031068168580532074,-0.040780868381261826,0.02382490411400795,-0.1437664031982422,0.05242709070444107,-0.032262250781059265,-0.0653810128569603,0.022453244775533676,0.008507505990564823,-0.07219655811786652,0.00232509127818048,-0.01653590425848961,-0.03939121961593628,-0.06969922035932541,-0.033806465566158295,0.002342755440622568,-0.040448226034641266,0.08418428152799606,0.0560799203813076,0.007077676244080067,0.03681705892086029,-0.014754924923181534,-0.0835457444190979,0.08406220376491547,0.011835938319563866,-0.059704966843128204,0.0034646298736333847,0.031883858144283295,-0.03598647937178612,0.008272068575024605,-0.07279942184686661,-0.0780017301440239,-0.01955993101000786,0.013951827771961689,-0.012952019460499287,-0.0572214238345623,-0.06327593326568604,-0.0014248589286580682,-0.004433751571923494,0.03841819241642952,0.03567386046051979,0.06451324373483658,-0.01687588356435299,-0.05033783242106438,-0.07262428849935532,-0.0009107091464102268,0.03737664595246315,-0.06031480431556702,-0.045004650950431824,0.016250193119049072,0.00057446607388556,0.06700459122657776,0.024819910526275635,-0.005580015014857054,0.1252312958240509,0.0560961589217186,0.012739923782646656,0.007003282196819782,-0.052419986575841904,-0.04505055397748947,-0.034206241369247437,0.0004971103626303375,-0.0409066341817379,-0.10184426605701447,-0.07120994478464127,0.004136528819799423,-0.0037504949141293764,-0.07417143136262894,0.04462282359600067,0.06778482347726822,0.06679990887641907,0.03863273561000824,0.038842882961034775,0.023470798507332802,-0.07816078513860703,-0.03443322703242302,-0.01079398114234209,0.0678887739777565,-0.016941815614700317,-0.07387987524271011,-0.02696191519498825,0.049109771847724915,-0.02361464686691761,-0.02762770839035511,-1.4407696303402917e-33,0.03477592021226883,-0.10285858064889908,-0.007040251512080431,-0.032061800360679626,0.057991981506347656,0.07533317059278488,-0.010007924400269985,0.0320238396525383,-0.00422633858397603,-0.02867816761136055,0.0599711574614048,-0.044950082898139954,-0.026864375919103622,-0.07752367854118347,-0.06958012282848358,0.02826833724975586,-0.008976338431239128,0.022594189271330833,0.06214273348450661,-0.006750201806426048,-0.02198745869100094,0.09950264543294907,-0.00007707370241405442,-0.022901242598891258,-0.05902492254972458,0.05775156989693642,-0.007924776524305344,-0.06555988639593124,0.06975557655096054,0.014566711150109768,0.06184506416320801,-0.0972222089767456,-0.05160688981413841,0.013098839670419693,0.018972421064972878,-0.0082236398011446,0.06295948475599289,-0.0955781638622284,-0.047181956470012665,0.06674166023731232,0.09206987917423248,-0.013170738704502583,-0.031686652451753616,-0.03521900624036789,-0.036123283207416534,0.052014946937561035,-0.05274089798331261,-0.014550760388374329,-0.025631915777921677,0.05018928647041321,-0.05972757935523987,0.0695982351899147,0.10816644877195358,-0.017698640003800392,-0.005893902387470007,0.09164624661207199,0.03578779846429825,0.09280969947576523,-0.05617980659008026,0.026289939880371094,0.004180266987532377,0.02600039914250374,0.06358564645051956,-0.02610814943909645,0.03236020356416702,-0.022510292008519173,0.014192420989274979,0.01741781458258629,-0.009813301265239716,-0.007450297009199858,-0.046319879591464996,0.049446072429418564,-0.08080421388149261,-0.04937856271862984,-0.08303161710500717,0.007451978512108326,0.12235357612371445,-0.03281674534082413,-0.004740497097373009,-0.11494272202253342,-0.028482142835855484,0.03287633880972862,0.004174570553004742,0.04929641634225845,-0.044733986258506775,-0.00853017158806324,0.039504192769527435,-0.03893538936972618,0.041424255818128586,0.008845597505569458,0.007409770507365465,-0.015079133212566376,-0.06604360789060593,-0.11911473423242569,0.019355347380042076,-6.483316491572956e-34,-0.061686042696237564,0.002430024789646268,-0.059248123317956924,0.07637888938188553,0.06155839562416077,0.00016184482956305146,-0.06953996419906616,-0.017112882807850838,-0.00025865191128104925,-0.008703269995748997,-0.043925151228904724,-0.11936561018228531,0.03921840712428093,0.025591403245925903,0.11011287569999695,-0.04391371086239815,-0.020603131502866745,0.05560562014579773,-0.010694533586502075,-0.020332854241132736,-0.041151098906993866,0.01814011111855507,-0.02072840742766857,-0.023861421272158623,-0.01415203046053648,0.10488390177488327,-0.018889427185058594,-0.02640904299914837,-0.022824199870228767,-0.014905412681400776,0.09064657986164093,0.021326947957277298,-0.03700867295265198,-0.02111303247511387,0.05942635238170624,0.04973933845758438,-0.0043447185307741165,0.08286342769861221,0.05315498635172844,-0.022255809977650642,0.058724295347929,-0.027672311291098595,-0.05679165571928024,0.06952062994241714,0.004182398784905672,0.07412311434745789,-0.000942012295126915,0.0268845371901989,0.034700825810432434,0.009534844197332859,0.012171010486781597,-0.0003427975461818278,-0.01876056380569935,-0.079523466527462,0.016658909618854523,-0.09790869057178497,-0.022593103349208832,-0.07622965425252914,0.06198323518037796,-0.03719599172472954,-0.029866274446249008,0.0023302393965423107,-0.09601203352212906,0.10904231667518616,-0.006114368326961994,-0.003291725181043148,-0.039089471101760864,-0.06533633172512054,-0.0323917493224144,0.03506045043468475,0.011619613505899906,0.016581814736127853,-0.006440308876335621,0.07844959199428558,0.0535288080573082,0.039582543075084686,-0.022400764748454094,-0.0317213200032711,0.08056192845106125,0.014574594795703888,-0.05801516771316528,-0.053546927869319916,0.06621614843606949,0.10018770396709442,0.01997656375169754,0.02959994599223137,0.020084192976355553,0.13172589242458344,0.020289374515414238,-0.015115771442651749,-0.03224531188607216,-0.09362781792879105,0.03227251395583153,0.02083684876561165,0.027481425553560257,-2.6250367213265235e-8,0.06941192597150803,0.003063647076487541,-0.025888163596391678,0.019539114087820053,0.030099758878350258,0.0026048505678772926,0.010712619870901108,0.04365290701389313,-0.04107040911912918,0.12871243059635162,-0.07298964262008667,0.12791220843791962,0.07538145780563354,0.10083647817373276,0.014758584089577198,0.03494635596871376,0.07801875472068787,-0.07999322563409805,-0.008460109122097492,0.0065970951691269875,-0.05457201972603798,0.013075044378638268,0.0446372926235199,-0.12839052081108093,-0.05716797709465027,0.004176035989075899,-0.0319320447742939,0.02612151764333248,0.04714224487543106,0.016962621361017227,-0.02500489167869091,-0.02077343501150608,-0.05949272960424423,-0.025908781215548515,0.001947594340890646,0.021067585796117783,-0.05288824439048767,0.042146746069192886,0.07978589087724686,-0.11416909098625183,-0.04317324236035347,0.052802227437496185,0.039898090064525604,0.07179270684719086,0.03612571582198143,0.03378819301724434,-0.029899979010224342,0.047806087881326675,-0.022482071071863174,0.005301033146679401,-0.08298225700855255,0.03724069148302078,0.06080837547779083,-0.01787104830145836,-0.06214320659637451,-0.05600643903017044,0.044463541358709335,0.056051209568977356,0.04815281555056572,0.024736320599913597,-0.015245874412357807,0.022784996777772903,0.015460492111742496,0.017812129110097885]},{"text":"Above all, the tune and even the words of 'Beasts of England' were known everywhere.","book":"Animal Farm","chapter":36,"embedding":[0.011039221659302711,0.004920916631817818,-0.000009859950296231546,-0.0002421884855721146,-0.0405542217195034,0.06693287938833237,-0.005546940490603447,-0.10234303772449493,-0.0869428738951683,-0.01641048491001129,-0.023594442754983902,0.03224169835448265,0.010549104772508144,-0.05045552924275398,-0.08215944468975067,0.061543505638837814,0.030247557908296585,-0.031814269721508026,0.009756878018379211,-0.043213069438934326,0.04208105430006981,0.10938902199268341,0.03324238955974579,0.07400115579366684,0.023961355909705162,-0.01477077417075634,-0.023311672732234,0.05949574336409569,-0.00028292479692026973,0.014004726894199848,-0.05500989779829979,0.02609395608305931,0.07738751918077469,-0.07043709605932236,-0.03556037321686745,0.023409493267536163,-0.015816761180758476,-0.0062163639813661575,0.05424512177705765,-0.004117554984986782,-0.011797466315329075,0.04860839247703552,-0.01262969896197319,0.018540237098932266,-0.0611499659717083,0.08182871341705322,-0.09517815709114075,-0.0032276988495141268,0.0029746051877737045,0.004582488909363747,0.03364155814051628,-0.0370820015668869,0.031686197966337204,-0.04240221530199051,-0.01528132427483797,-0.03667154908180237,0.009760502725839615,0.019586045295000076,0.04092644900083542,0.026361068710684776,-0.07416589558124542,0.021262338384985924,0.0025649049784988165,0.04690391570329666,-0.028761589899659157,-0.034158527851104736,0.027172794565558434,0.053041741251945496,-0.031395405530929565,0.0016807632055133581,-0.009677928872406483,-0.0013865132350474596,0.10432138293981552,-0.02766408957540989,-0.019453756511211395,0.018333444371819496,-0.06973174214363098,-0.019939586520195007,-0.07435055822134018,-0.04134230688214302,-0.04902898892760277,-0.0010134479962289333,0.039206668734550476,-0.06436268985271454,0.09138987958431244,-0.017359193414449692,0.024243690073490143,-0.024266598746180534,-0.032851360738277435,0.0037041993346065283,-0.04750467464327812,-0.1314506232738495,-0.015122785232961178,0.10106542706489563,0.06849537789821625,-0.042334847152233124,0.04988739266991615,0.020487939938902855,0.050379447638988495,0.012616715393960476,0.020509015768766403,-0.011176776140928268,0.010151535272598267,0.0625004693865776,-0.03623303398489952,-0.007769780699163675,-0.062221597880125046,0.047371745109558105,0.04575863480567932,-0.13725435733795166,-0.00853661447763443,0.037733711302280426,0.05504186451435089,0.024178946390748024,-0.0010523370001465082,-0.055370621383190155,0.017344797030091286,-0.06401567906141281,-0.04313073307275772,0.024404305964708328,0.02516089379787445,0.09023311734199524,0.0008500486728735268,-0.04593224823474884,-0.023534424602985382,0.07368588447570801,-0.05447128042578697,-5.519487806537972e-33,0.0278360266238451,-0.031403228640556335,-0.007328453939408064,-0.005578956101089716,0.028832711279392242,-0.010986818000674248,-0.06396407634019852,0.05152419954538345,0.07042727619409561,0.04652257636189461,0.019880764186382294,0.004570729564875364,-0.020230036228895187,-0.11978620290756226,-0.03273926302790642,0.018703144043684006,0.04996475204825401,-0.026685485616326332,0.06785886734724045,-0.010635578073561192,-0.06859596073627472,0.04837185516953468,0.04319276288151741,-0.050594501197338104,-0.056991562247276306,0.019672822207212448,0.026769384741783142,-0.05475209280848503,0.03595123067498207,0.047145307064056396,0.09246941655874252,-0.09800849854946136,-0.0053310878574848175,-0.011037062853574753,-0.02870064228773117,-0.03150457143783569,-0.05209767445921898,-0.11149506270885468,0.02167644537985325,0.04163876920938492,0.05294591933488846,0.008440312929451466,-0.023352738469839096,-0.07528762519359589,-0.06726418435573578,0.07359940558671951,-0.08683884888887405,0.03725726157426834,0.0010621865512803197,0.05430200323462486,-0.02349020354449749,-0.045208849012851715,0.02756589464843273,-0.036549780517816544,0.03659362718462944,0.0574784018099308,-0.0005259581375867128,0.09410252422094345,0.021176395937800407,-0.030782656744122505,-0.0005198691505938768,0.020827766507864,0.15486866235733032,-0.06209607422351837,0.05122875049710274,-0.016026439145207405,0.028072161599993706,-0.029528364539146423,-0.06356639415025711,0.013843650929629803,-0.01133793592453003,0.041491493582725525,0.017524635419249535,-0.009817716665565968,0.02473502978682518,-0.030262278392910957,0.026081392541527748,-0.07208886742591858,0.02530791610479355,0.016085028648376465,-0.030440984293818474,-0.012919018976390362,-0.040790870785713196,0.006457834504544735,0.055905211716890335,0.027588605880737305,0.0970146507024765,-0.10017689317464828,0.04012960568070412,0.008187215775251389,-0.09468699246644974,0.006214887369424105,-0.04101264849305153,-0.20424999296665192,-0.07249137759208679,2.810789929124436e-33,0.035318344831466675,-0.0037389600183814764,0.05489501729607582,0.05149707570672035,-0.05368503928184509,0.040850862860679626,-0.05037527531385422,0.04218912497162819,0.03744625300168991,0.05970000848174095,-0.04383191466331482,0.05100579932332039,0.03349492698907852,-0.0500350221991539,0.06139286234974861,-0.057746369391679764,-0.03809366002678871,0.020855717360973358,0.17100442945957184,0.08361102640628815,-0.03751479461789131,-0.13777469098567963,-0.023411642760038376,-0.0352645106613636,0.017601247876882553,0.0006677010096609592,-0.07855788618326187,-0.017488548532128334,-0.06034576892852783,-0.04417908191680908,0.036242496222257614,0.028700130060315132,-0.0618421770632267,-0.04011472314596176,-0.08079611510038376,0.03540653735399246,0.09672334790229797,0.019054358825087547,0.02967674285173416,0.011759903281927109,-0.11097073554992676,0.012881268747150898,-0.03406769409775734,-0.07765509933233261,-0.04230422526597977,0.00802637543529272,-0.057102885097265244,0.1059311032295227,-0.025900613516569138,0.08046519756317139,-0.010896590538322926,0.05273626744747162,0.03757853806018829,-0.02183462120592594,-0.04878693446516991,-0.017685621976852417,-0.0328737273812294,-0.09885289520025253,-0.025244902819395065,0.030049538239836693,-0.02676103450357914,-0.04137422516942024,-0.08586102724075317,-0.03925657644867897,-0.021749557927250862,0.09315762668848038,-0.06008647382259369,0.05251944065093994,0.05624327436089516,-0.043958332389593124,-0.05321129411458969,-0.0733627900481224,-0.08836423605680466,0.009161761030554771,-0.04920671135187149,0.06531526148319244,0.0416552759706974,-0.07525061070919037,0.01947108283638954,-0.031031640246510506,0.05936289206147194,0.00040958597674034536,0.012947438284754753,0.011654512025415897,0.055303603410720825,0.04438246041536331,-0.025350132957100868,0.07336319237947464,-0.015851015225052834,-0.010216513648629189,0.05137662589550018,0.036348842084407806,0.04062189906835556,-0.05411310866475105,0.058818988502025604,-2.278995658855365e-8,-0.06837263703346252,0.06827577203512192,-0.002090387511998415,-0.011234055273234844,0.08736427128314972,-0.020284464582800865,0.017358943819999695,-0.036758724600076675,-0.01085860189050436,0.04569951072335243,-0.0007752213277854025,-0.012520583346486092,0.052555568516254425,0.009528260678052902,0.027430705726146698,0.016876624897122383,-0.0005498376558534801,-0.021077409386634827,-0.026316242292523384,0.08160137385129929,0.0404052697122097,0.04911872372031212,0.045038338750600815,-0.0889812633395195,-0.041584648191928864,0.015363318845629692,-0.0038593304343521595,-0.12383650243282318,-0.002111653797328472,0.03595806285738945,0.015391824766993523,0.021196987479925156,0.04064834117889404,-0.04447554424405098,0.03184253349900246,0.0011888125445693731,-0.07135161757469177,-0.028752721846103668,0.021739738062024117,-0.039731770753860474,0.06785251200199127,0.058906927704811096,0.04567790403962135,0.041169099509716034,0.08289190381765366,-0.023556310683488846,0.04271344840526581,0.04588044807314873,-0.02694026753306389,0.016851788386702538,0.028106102719902992,0.10459841787815094,0.07020565122365952,0.06439856439828873,0.020684540271759033,0.000015230998542392626,-0.004001121036708355,-0.0030764287803322077,-0.040296681225299835,-0.03761981055140495,0.02054629661142826,-0.056564439088106155,0.0655929446220398,-0.04577269032597542]},{"text":"And yet the song was irrepressible.","book":"Animal Farm","chapter":37,"embedding":[-0.006395032163709402,0.015485502779483795,0.0014006932033225894,0.0605575293302536,0.04028456658124924,-0.006195960566401482,0.005004464648663998,-0.04698586463928223,0.053194478154182434,-0.03772133216261864,-0.028124114498496056,0.10001395642757416,0.07780738919973373,-0.09289437532424927,-0.10547888278961182,-0.06281575560569763,-0.0001359101152047515,0.05841272696852684,-0.014245310798287392,0.004751960281282663,0.015747079625725746,0.07776577770709991,-0.051774561405181885,0.020406680181622505,0.10097473859786987,0.04116346687078476,-0.028584949672222137,0.055258866399526596,0.05746222287416458,0.0060582333244383335,0.016831642016768456,0.05049407482147217,-0.021139830350875854,-0.053992196917533875,-0.06543026119470596,0.014903079718351364,-0.07529592514038086,0.001971357734873891,-0.04464177414774895,0.01513150054961443,0.013997694477438927,0.06693028658628464,-0.05268720164895058,-0.07869968563318253,-0.0430329404771328,-0.020922938361763954,-0.027640515938401222,-0.08495868742465973,0.00677423644810915,0.05223316699266434,0.021352771669626236,0.03212880715727806,-0.014703759923577309,-0.018421750515699387,-0.07138066738843918,0.012239044532179832,0.009591547772288322,0.07198537141084671,0.06030077114701271,0.01852848008275032,-0.0928359255194664,-0.004134808201342821,-0.0317712277173996,-0.006190721411257982,0.09730394184589386,0.00003624440068961121,0.008576784282922745,-0.04412097483873367,-0.009025768376886845,0.10249105840921402,0.04725339636206627,0.007638121955096722,0.033781036734580994,0.025278912857174873,0.0028433017432689667,0.009527785703539848,0.05297694355249405,0.038885727524757385,0.00051853246986866,0.08484210073947906,0.02966226637363434,-0.1124086081981659,0.00045295635936781764,-0.08110509812831879,-0.040913842618465424,-0.012067753821611404,-0.004431539680808783,-0.10771199315786362,-0.031012486666440964,0.047040943056344986,-0.054721225053071976,-0.022271759808063507,-0.021000629290938377,0.008167067542672157,0.04868178814649582,-0.07937715947628021,0.004062780644744635,-0.021227091550827026,0.007860158570110798,0.026191681623458862,0.0021944453474134207,0.07394784688949585,-0.09128718078136444,0.05469358712434769,-0.008657267317175865,-0.10348868370056152,0.051111169159412384,0.04958569258451462,-0.028246397152543068,-0.025962255895137787,-0.041266705840826035,-0.03200693055987358,0.06602976471185684,-0.013692749664187431,0.019937707111239433,0.021809257566928864,-0.06954022496938705,0.029871609061956406,-0.037551552057266235,0.04170406982302666,0.028779461979866028,0.0053662825375795364,-0.05772551894187927,-0.059474412351846695,-0.04221362993121147,-0.05761503800749779,-0.00045247888192534447,-2.822625136856301e-33,0.02827770635485649,0.010191204026341438,-0.005771152675151825,-0.026588013395667076,0.10573874413967133,-0.03198681399226189,-0.03375639766454697,0.04152838513255119,0.0371614545583725,0.022784996777772903,0.07579430937767029,-0.02386939339339733,-0.035167280584573746,-0.07928767800331116,-0.01573622040450573,-0.022975606843829155,0.0019023006316274405,0.07749175280332565,-0.052644453942775726,-0.020299825817346573,0.01858932338654995,0.09577053785324097,0.062872514128685,-0.0672321617603302,-0.02753942459821701,0.07714270800352097,0.029994063079357147,0.024010920897126198,0.006825151853263378,0.005211528390645981,0.009513143450021744,-0.025271734222769737,0.01916765607893467,-0.006612691096961498,0.012152777053415775,0.0304340161383152,0.055862486362457275,-0.040557656437158585,-0.002403103746473789,0.00026623965823091567,0.010612623766064644,0.06793127954006195,0.005364824552088976,-0.08527448773384094,0.029170405119657516,-0.008277683518826962,0.035932447761297226,0.030880184844136238,-0.08569972962141037,0.08428294211626053,0.0665169283747673,0.07415684312582016,0.029794299975037575,0.02847198024392128,0.013247418217360973,-0.01366339810192585,0.024920199066400528,0.041977331042289734,0.04241804778575897,0.002300083404406905,0.004342944826930761,0.07077079266309738,0.12850035727024078,-0.09532426297664642,0.06064267084002495,0.09404253959655762,-0.01801351085305214,0.002369835041463375,-0.044852662831544876,0.023036623373627663,-0.07642258703708649,-0.03471112996339798,0.01476210169494152,-0.021625518798828125,-0.04248270392417908,-0.07516598701477051,0.011079078540205956,-0.0648469477891922,-0.027841348201036453,-0.05905575305223465,-0.03936091065406799,-0.0015938939759507775,-0.006703853141516447,0.02818608470261097,0.01183103583753109,-0.09368260204792023,0.03606671094894409,-0.05750395730137825,-0.04294445365667343,-0.02528095617890358,-0.04198179766535759,0.013220304623246193,-0.003002775367349386,-0.1250530332326889,-0.011489151045680046,1.5304291762523154e-33,-0.0006993810529820621,0.016044750809669495,-0.044099412858486176,0.018500659614801407,0.017074692994356155,0.0518622100353241,0.0004363591142464429,0.04095632582902908,-0.0047859144397079945,-0.009021266363561153,-0.02974342741072178,-0.06576087325811386,-0.022079158574342728,-0.007002865429967642,-0.07340057939291,0.010871549136936665,0.0024489571806043386,0.055419906973838806,-0.015926044434309006,0.03199804574251175,-0.0743531882762909,0.0058465516194701195,0.030697647482156754,0.04265579953789711,-0.052897654473781586,0.06403803080320358,-0.004298378247767687,0.02942930907011032,0.0687115266919136,-0.020240722224116325,-0.003850521519780159,-0.04648721590638161,-0.19909614324569702,-0.09146332740783691,-0.02329123765230179,0.01216039527207613,-0.08304294943809509,0.08634933084249496,-0.09131191670894623,-0.026863140985369682,-0.032841477543115616,0.031911350786685944,-0.040062740445137024,0.02815568447113037,0.0834173634648323,-0.03505641594529152,-0.012701817788183689,0.01692320592701435,0.12208780646324158,0.08795268088579178,-0.008965348824858665,0.00030077568953856826,0.025984810665249825,0.0779375433921814,-0.05835402384400368,-0.020628295838832855,-0.030179277062416077,-0.01926412433385849,0.008765751495957375,-0.005095570348203182,-0.027346737682819366,-0.03657533600926399,0.00940717477351427,0.0022548725828528404,0.046331118792295456,0.06454154849052429,0.031118204817175865,0.06184006109833717,0.0729202926158905,0.03446061909198761,0.008552873507142067,0.07848464697599411,0.00541126262396574,0.025110898539423943,0.019246196374297142,-0.012228971347212791,-0.12062449008226395,0.06093065068125725,-0.0318455770611763,-0.0728490799665451,0.07963743805885315,0.005797845311462879,-0.05789793282747269,0.00032013168674893677,0.06043405458331108,0.07227301597595215,0.031561195850372314,-0.0218827947974205,-0.0027260943315923214,0.07544247061014175,0.05126303434371948,-0.024873526766896248,-0.008044915273785591,0.09142559766769409,0.013342865742743015,-1.948991190658944e-8,-0.05674249678850174,0.022041499614715576,-0.03251563385128975,0.01757889613509178,0.04569559916853905,0.053205456584692,0.0933557078242302,-0.05970010906457901,-0.04403693974018097,0.02414947748184204,-0.03312758356332779,-0.06360284239053726,-0.00402697641402483,0.10095185786485672,-0.0632297620177269,0.047308240085840225,0.0053939358331263065,0.018624335527420044,-0.0777297168970108,0.05654652789235115,-0.046063680201768875,-0.005332861561328173,-0.06692343950271606,-0.059952665120363235,0.03082127496600151,0.026505107060074806,-0.028278151527047157,-0.03532678633928299,-0.03725001588463783,0.02325456775724888,0.0007049728301353753,-0.04246510937809944,0.015786118805408478,-0.058150142431259155,-0.04315561801195145,-0.04974823072552681,0.07285451143980026,0.053529489785432816,-0.05111520364880562,-0.13014137744903564,-0.01280338317155838,0.18673421442508698,-0.011249348521232605,0.06338320672512054,0.0559670627117157,-0.04017017036676407,0.06206969544291496,-0.0062603214755654335,-0.06227804720401764,0.04404599219560623,0.006606276612728834,0.06037299335002899,-0.03903548792004585,-0.05922152101993561,0.09190678596496582,0.015481115318834782,-0.06845587491989136,0.070885069668293,-0.06902853399515152,-0.022372137755155563,0.03256075456738472,-0.022058814764022827,0.10694264620542526,-0.0007787939393892884]},{"text":"They were all carrying sticks, except Jones, who was marching ahead with a gun in his hands.","book":"Animal Farm","chapter":37,"embedding":[0.052953049540519714,0.024549338966608047,-0.04210047051310539,0.04521220177412033,0.11432787775993347,-0.03692110627889633,0.04024584963917732,0.012592247687280178,-0.11824323982000351,-0.004067533649504185,0.002410710556432605,0.022913329303264618,0.07135792076587677,-0.03459247946739197,-0.02367696352303028,-0.020008591935038567,-0.01073842216283083,-0.002679899800568819,-0.06639218330383301,-0.018776224926114082,-0.07969583570957184,0.05017751827836037,0.03146820887923241,0.06704476475715637,-0.03443809971213341,0.09480609744787216,-0.03794045373797417,0.025295868515968323,0.08739487081766129,-0.006818854715675116,-0.020083710551261902,-0.079672671854496,-0.06383533775806427,0.048121243715286255,-0.06356548517942429,-0.05217380076646805,0.07732858508825302,0.006544595118612051,0.03325709328055382,-0.006318860221654177,0.10372652858495712,0.00488275196403265,0.03343547508120537,0.013041842728853226,0.008633039891719818,0.032012198120355606,-0.068181611597538,0.005399745889008045,0.024025844410061836,-0.027008231729269028,0.05643434822559357,-0.03975019231438637,-0.10259938985109329,-0.010091488249599934,-0.03632647171616554,-0.10715285688638687,0.03659697249531746,-0.04999784380197525,0.028717253357172012,0.016261963173747063,-0.026311025023460388,0.04068608582019806,0.019937848672270775,0.04315260052680969,0.024215498939156532,-0.04469386115670204,-0.02535255067050457,-0.03522002696990967,-0.0007485920796170831,0.10366716980934143,0.038535796105861664,0.09633426368236542,0.013241758570075035,-0.01972934789955616,0.020484697073698044,0.03828263282775879,0.005654728505760431,0.04642067104578018,-0.033964239060878754,-0.136434867978096,-0.09141816198825836,-0.04321226477622986,-0.018815208226442337,0.03106261044740677,0.017290452495217323,0.018793324008584023,-0.026227187365293503,-0.014532355591654778,-0.054017115384340286,-0.02500634826719761,-0.06738599389791489,-0.054482486099004745,-0.0027107037603855133,0.0723477154970169,-0.006308195646852255,-0.03576212376356125,0.03627476096153259,0.07021356374025345,-0.031055079773068428,0.026585262268781662,-0.0022470569238066673,0.013115529902279377,0.0660221204161644,-0.015150515362620354,0.03504038229584694,-0.04524781554937363,-0.061571910977363586,-0.042982861399650574,-0.028223739936947823,-0.014426284469664097,0.023365478962659836,0.027548255398869514,-0.013860619626939297,0.09435414522886276,-0.0014488864690065384,-0.054342128336429596,-0.10545603930950165,0.017807116732001305,-0.1257004588842392,0.0219036266207695,0.013076410628855228,-0.01987396739423275,-0.036267515271902084,-0.002115307142958045,-0.00445893220603466,0.013742859475314617,0.04947979748249054,-3.4082393410336794e-33,0.041784871369600296,-0.031463999301195145,0.028971794992685318,-0.034234266728162766,0.059889618307352066,0.019510610029101372,-0.05056973546743393,-0.008404085412621498,0.09142820537090302,0.11219532042741776,-0.07148724049329758,0.03546048700809479,-0.02170668914914131,0.03543020412325859,-0.06467335671186447,-0.01420633029192686,-0.010794252157211304,0.0039981273002922535,-0.010630855336785316,-0.03148883581161499,-0.0038095563650131226,0.055754344910383224,-0.14700628817081451,0.020374249666929245,-0.015478101558983326,0.09219334274530411,-0.08080188184976578,0.11328640580177307,0.008143773302435875,0.024252338334918022,-0.06474389135837555,0.0406792126595974,-0.018571358174085617,0.05502243712544441,0.06890436261892319,-0.025368299335241318,0.04588833823800087,-0.09159903973340988,-0.08787950128316879,-0.07259806245565414,0.054175764322280884,0.0006443120655603707,-0.03594551607966423,-0.05734685808420181,-0.11537328362464905,0.036588311195373535,-0.07414624094963074,-0.04579522833228111,0.010161898098886013,-0.03097931295633316,-0.04208725318312645,-0.034383174031972885,0.06039616838097572,-0.0038898575585335493,0.000787862460128963,-0.04818376526236534,-0.06381801515817642,0.08713450282812119,-0.013667305931448936,-0.02828877605497837,0.03745662420988083,0.09877728670835495,-0.010073408484458923,0.07141530513763428,-0.04037338122725487,-0.03779928386211395,-0.01929328218102455,-0.004241465590894222,0.038873933255672455,0.015754228457808495,0.012914900667965412,0.03998410701751709,0.0024878124240785837,-0.09942243993282318,0.014885623939335346,-0.02240115962922573,0.04122292622923851,0.011218472383916378,0.05127652734518051,-0.05765005946159363,0.00789264403283596,-0.016624292358756065,-0.03218763321638107,-0.06718577444553375,0.04087764024734497,0.0003245581465307623,0.013624622486531734,-0.028768140822649002,-0.07863029092550278,-0.05344007909297943,-0.03850521892309189,0.0553344190120697,-0.0012112953700125217,-0.07309778779745102,-0.07814741134643555,-3.106075992678666e-34,-0.012030919082462788,0.0935622826218605,0.07135208696126938,0.04132199287414551,0.05928073823451996,-0.017247963696718216,0.02184371091425419,-0.06307709217071533,0.07125436514616013,-0.10100957006216049,-0.0550798624753952,-0.09477072209119797,0.008449753746390343,0.04950482398271561,0.01824725978076458,-0.04940280318260193,0.006605174858123064,0.05974964052438736,0.04693690687417984,0.035789430141448975,-0.04939675331115723,-0.07603872567415237,-0.02316415309906006,0.00047719161375425756,-0.0008346122340299189,0.029629718512296677,-0.005872419569641352,-0.027951806783676147,-0.15190277993679047,-0.000795236206613481,0.06929492205381393,-0.07703109085559845,0.010375971905887127,-0.005149207077920437,-0.028897082433104515,-0.06399916112422943,0.013521899469196796,0.12270935624837875,0.042706191539764404,-0.11380046606063843,-0.021190283820033073,0.008410217240452766,0.04771127924323082,0.09048770368099213,-0.02850155159831047,0.03824682533740997,-0.003834105096757412,0.04630663990974426,-0.04563835635781288,0.10308349132537842,-0.076081782579422,0.0044215088710188866,-0.04266444221138954,0.023620199412107468,-0.015508842654526234,0.030425332486629486,-0.019090769812464714,0.013863149099051952,0.006098970305174589,0.02308650314807892,-0.05578397959470749,-0.00013995927292853594,-0.022999800741672516,-0.020788120105862617,0.05366377905011177,0.04936802387237549,0.02689165621995926,0.049534671008586884,0.0006698444485664368,0.0002494574582669884,-0.008147350512444973,-0.018055664375424385,0.0187640730291605,-0.006002042442560196,0.025177113711833954,0.012954909354448318,-0.038623448461294174,0.013321145437657833,-0.03628792241215706,0.016011854633688927,-0.025878828018903732,-0.07490754127502441,-0.07828224450349808,0.05028974264860153,-0.06485827267169952,0.10433743894100189,0.044435709714889526,0.03140188008546829,-0.015872567892074585,-0.023266561329364777,0.07893184572458267,-0.037520065903663635,0.13332025706768036,0.00979709904640913,-0.044714316725730896,-2.250624042687832e-8,-0.03477328270673752,0.0877055749297142,-0.03722750395536423,-0.019684908911585808,0.013567887246608734,0.08329682052135468,0.013506397604942322,-0.024338968098163605,-0.018308302387595177,0.08250859379768372,0.010370085015892982,0.029310137033462524,-0.019608452916145325,0.0042899358086287975,-0.031214063987135887,-0.012405645102262497,-0.10394929349422455,-0.10447602719068527,-0.040940504521131516,0.021794095635414124,0.005781123414635658,-0.04808397591114044,0.01534378994256258,0.020295681431889534,0.06683207303285599,0.09169711917638779,-0.059636469930410385,-0.035615988075733185,0.034272219985723495,0.11335097998380661,0.011380486190319061,-0.02841939590871334,-0.04727589711546898,-0.014181707054376602,0.05266280099749565,-0.012714596465229988,0.07763613760471344,0.05638013035058975,0.07104136049747467,-0.00697360560297966,0.030909031629562378,0.03540044277906418,0.0534818060696125,-0.0017401367658749223,0.046870384365320206,0.0766984298825264,-0.03138264641165733,0.03519417345523834,-0.055860668420791626,-0.07284519076347351,0.004374150186777115,0.0012931126402691007,-0.028579868376255035,0.05546769127249718,0.04704417288303375,-0.08171307295560837,-0.002110710833221674,0.024694012477993965,0.019472887739539146,0.0170400682836771,-0.060300715267658234,-0.029399625957012177,-0.02127336896955967,0.07772493362426758]},{"text":"As the human beings approached the farm buildings, Snowball launched his first attack.","book":"Animal Farm","chapter":37,"embedding":[0.01669740118086338,0.09832753986120224,-0.005274686962366104,0.0524340383708477,0.025085851550102234,-0.013256223872303963,0.02367115207016468,0.055908139795064926,-0.011693825013935566,-0.012171207927167416,0.012933384627103806,0.015858065336942673,-0.018030108883976936,-0.021212734282016754,0.08979227393865585,-0.017451375722885132,-0.044431351125240326,-0.010798944160342216,-0.01488584280014038,-0.03291446343064308,0.03123578429222107,-0.033939652144908905,-0.0005025432328693569,-0.030824268236756325,0.04099832847714424,0.019887620583176613,0.009665116667747498,0.06808584928512573,-0.03285766392946243,-0.03611091896891594,0.012160168960690498,-0.08118168264627457,0.05373365804553032,0.09797071665525436,-0.06869646161794662,0.10859379172325134,0.061279408633708954,-0.010200092568993568,-0.020890627056360245,0.006206094287335873,0.012550934217870235,-0.050659120082855225,0.02167118526995182,-0.025700775906443596,-0.08833472430706024,0.020757367834448814,-0.06886955350637436,0.044446468353271484,0.07617615908384323,-0.01673278585076332,-0.02588626556098461,0.011025502346456051,0.010018780827522278,0.001529948553070426,0.06950396299362183,0.034174490720033646,-0.006552447564899921,-0.011630501598119736,0.058273594826459885,-0.07230484485626221,-0.036145903170108795,-0.09041893482208252,0.030257737264037132,0.028611155226826668,0.07286294549703598,-0.024692824110388756,-0.022456059232354164,-0.07187573611736298,0.01468949019908905,0.021808987483382225,0.11329488456249237,0.02879507839679718,-0.005399206653237343,-0.09276324510574341,-0.06652258336544037,0.02090703696012497,-0.05766894295811653,-0.008389869704842567,0.0677470788359642,0.0033885480370372534,0.09116307646036148,-0.03377091884613037,0.020292626693844795,0.035799261182546616,-0.048028089106082916,0.07916884869337082,0.0224914513528347,0.07186952233314514,0.07511481642723083,0.09221688657999039,-0.006063984706997871,-0.04612992703914642,-0.08329679071903229,0.11461149156093597,-0.036476120352745056,0.0025212555192410946,-0.025087784975767136,-0.06794200837612152,-0.04589717462658882,-0.0013177691726014018,0.03825189173221588,-0.08180107176303864,0.04345831647515297,-0.0064538829028606415,0.061600461602211,-0.003349038539454341,-0.10971192270517349,-0.013303528539836407,-0.0778135135769844,0.03271126374602318,0.016432343050837517,-0.10271630436182022,-0.06207386031746864,0.02247026190161705,0.0165677759796381,-0.01996789686381817,-0.05029779672622681,-0.008784853853285313,-0.1696675568819046,0.04284489527344704,0.143201544880867,0.06211332604289055,-0.032847531139850616,-0.00031426316127181053,0.0006667013512924314,0.02960645779967308,-0.02589927427470684,-4.047609085545153e-33,0.0397060364484787,-0.03221764788031578,-0.06591223925352097,-0.001129971002228558,0.0762878879904747,-0.05979971960186958,0.028080614283680916,0.0857245996594429,0.020612074062228203,0.014753778465092182,-0.03243306279182434,-0.023636212572455406,-0.007621700409799814,-0.04827413707971573,-0.034529633820056915,0.03232262656092644,-0.05210024118423462,-0.07132531702518463,-0.04274911433458328,0.10820683091878891,0.04411789029836655,-0.028466731309890747,-0.0451161190867424,0.031213847920298576,-0.017494123429059982,0.0067732855677604675,-0.043967198580503464,0.03327783942222595,-0.0014996103709563613,0.014705897308886051,0.024708403274416924,-0.10234305262565613,-0.08114632964134216,0.036640506237745285,0.0411810576915741,0.013525721617043018,0.03931072726845741,-0.08041977137327194,-0.07094493508338928,-0.014341998845338821,-0.02634739689528942,0.0363069511950016,-0.02789446897804737,-0.07320351153612137,-0.010415179654955864,-0.04066741093993187,-0.08848251402378082,0.06002284213900566,0.0461917370557785,-0.009357694536447525,0.02735106647014618,0.03376322239637375,0.037678398191928864,0.018283365294337273,0.06614792346954346,-0.02171267196536064,-0.059047795832157135,0.024515969678759575,0.006107449997216463,0.06865884363651276,-0.005099704954773188,-0.07031115889549255,0.03698306158185005,0.03289559856057167,-0.025613989681005478,-0.06666141003370285,-0.0041391197592020035,0.07703045010566711,-0.04831549897789955,0.06223425641655922,0.06425222754478455,-0.03830263018608093,0.008716975338757038,0.020154152065515518,-0.018321454524993896,0.04888375848531723,-0.0045084645971655846,0.00027799481176771224,0.005202248692512512,-0.0005522933788597584,0.01683576963841915,-0.009854868054389954,-0.005967790260910988,0.07724615931510925,-0.1414053738117218,0.028808513656258583,0.007035006303340197,-0.03813866898417473,-0.07034073770046234,0.024497920647263527,0.003680255264043808,0.01821340061724186,-0.011204586364328861,0.028019525110721588,-0.028951939195394516,6.7119767751017766e-34,-0.02965283766388893,0.018224097788333893,-0.05343478545546532,-0.01834193430840969,-0.03225092589855194,0.058004993945360184,-0.01609848253428936,-0.02931194193661213,0.03569447249174118,0.0668514221906662,-0.045152805745601654,0.05370289087295532,0.020029056817293167,-0.013706057332456112,0.04233137518167496,-0.03517545387148857,0.09389511495828629,0.0006575706647709012,-0.005427709314972162,0.04104528948664665,0.021891875192523003,0.013249757699668407,-0.09726709872484207,-0.018072566017508507,0.041615452617406845,0.011675572954118252,-0.018981844186782837,-0.0018455074168741703,0.006509198807179928,0.028491560369729996,0.024987604469060898,0.02606535702943802,0.039467569440603256,-0.03685348853468895,0.006176660768687725,0.11856086552143097,-0.0038358536548912525,-0.06325758993625641,0.0740407258272171,-0.048378653824329376,0.11266282200813293,-0.030060719698667526,0.0006774825160391629,0.10182270407676697,-0.0006227630074135959,-0.0400368869304657,0.010665959678590298,0.047770194709300995,0.018322722986340523,0.020112162455916405,-0.05967701971530914,0.061509545892477036,-0.03470581769943237,-0.07345625758171082,-0.08005493134260178,0.009991422295570374,0.06322498619556427,-0.12137579917907715,0.018253793939948082,0.012505944818258286,0.011246404610574245,-0.06887534260749817,0.00007944731623865664,0.06600964069366455,-0.1082124263048172,0.00297058979049325,-0.02398941107094288,0.01654406078159809,-0.021296871826052666,-0.004495085682719946,-0.004415718372911215,0.050711262971162796,0.026207679882645607,0.0006860350840725005,-0.056084152311086655,-0.022556893527507782,0.014678039588034153,0.012080985121428967,0.008370188996195793,-0.04481729492545128,0.009147862903773785,0.00672769732773304,-0.043532971292734146,-0.03070279210805893,0.10981051623821259,0.010113847441971302,0.04537561163306236,0.03865143656730652,-0.012433221563696861,0.023557959124445915,-0.05045188590884209,-0.041352540254592896,0.08304153382778168,0.10465209186077118,-0.060788679867982864,-2.0540699807725105e-8,-0.07862851768732071,0.04081342741847038,0.06996621191501617,0.03661257028579712,0.0716988667845726,0.0825081318616867,-0.03415730595588684,0.03066098876297474,0.0006526389042846859,-0.04210013151168823,-0.09529945999383926,0.15015597641468048,0.050424724817276,0.08796735107898712,-0.012153794057667255,0.06228269264101982,0.010751324705779552,-0.09674398601055145,-0.06242448464035988,-0.02655327320098877,-0.0327862985432148,-0.04015542194247246,-0.07458887994289398,-0.06418340653181076,0.019020356237888336,0.03736205771565437,-0.04534003138542175,-0.037600599229335785,0.07010579854249954,0.014571156352758408,-0.07211557775735855,-0.011073995381593704,-0.02232382446527481,-0.03133419528603554,-0.031053757295012474,0.1326780468225479,0.024123813956975937,0.034477900713682175,0.02632342092692852,-0.12649498879909515,-0.036252062767744064,0.0224543958902359,0.054852962493896484,-0.01291532814502716,-0.07114651799201965,0.04182055592536926,-0.0699639618396759,-0.018505096435546875,-0.026853295043110847,-0.023579752072691917,-0.029796941205859184,-0.035470642149448395,-0.037180159240961075,0.007633825298398733,0.009389366023242474,0.03195708617568016,-0.01102207601070404,-0.13651666045188904,0.04444124922156334,-0.06602577865123749,-0.041815318167209625,0.005162535235285759,-0.018601661548018456,0.029095038771629333]},{"text":"But once again the men, with their sticks and their hobnailed boots, were too strong for them; and suddenly, at a squeal from Snowball, which was the signal for retreat, all the animals turned and fled through the gateway into the yard.","book":"Animal Farm","chapter":37,"embedding":[0.02478904463350773,0.0320277102291584,0.060789622366428375,0.0947222039103508,0.0992065891623497,-0.036824099719524384,0.002010183408856392,-0.0011854302138090134,-0.018102234229445457,0.009421049617230892,-0.002159668831154704,0.09321796894073486,0.027320194989442825,-0.011323993094265461,0.0017378386110067368,0.018791044130921364,-0.10196990519762039,-0.009779729880392551,-0.03320600092411041,-0.004165301565080881,0.01093078963458538,0.00043492516851983964,-0.010626825504004955,0.039097968488931656,-0.11651340126991272,0.04347531124949455,-0.051547013223171234,0.06683608889579773,-0.013733457773923874,-0.04365861415863037,-0.00821242481470108,0.023337751626968384,-0.04663686826825142,0.021808583289384842,-0.04072215035557747,0.01975601352751255,0.06365611404180527,-0.048661068081855774,0.07220190018415451,0.047559864819049835,0.014732779935002327,-0.04851357638835907,0.075694739818573,-0.0004082574450876564,-0.017739249393343925,0.02542576566338539,-0.08266852051019669,-0.02208700403571129,0.12647132575511932,0.024496501311659813,0.04306264966726303,0.00236703734844923,0.0004914255696348846,0.034627120941877365,0.016645120456814766,-0.021099230274558067,0.014082211069762707,-0.06284865736961365,0.016009891405701637,-0.02465699426829815,0.03343299403786659,0.0053432779386639595,0.022354619577527046,0.041547197848558426,0.036336395889520645,-0.07432767748832703,-0.06186720356345177,-0.04369906708598137,0.05242674797773361,0.1137513816356659,0.047948773950338364,0.004635193385183811,-0.07458723336458206,-0.08139970898628235,-0.04446464776992798,-0.00864673312753439,-0.05254092440009117,-0.0363486222922802,0.011165413074195385,-0.04765823110938072,0.014337413012981415,-0.041416868567466736,-0.011116566136479378,0.034305401146411896,0.04933822900056839,-0.037640005350112915,0.05623697489500046,-0.03992345929145813,0.04986366257071495,0.05507657676935196,-0.08549335598945618,-0.0935758575797081,-0.009204681031405926,0.1064484566450119,0.01112570520490408,-0.0360427051782608,-0.0000806209136499092,-0.05534021183848381,-0.05462895333766937,0.048873063176870346,0.015456156805157661,-0.03801122307777405,0.022528067231178284,-0.05874725803732872,0.08249741047620773,-0.009391320869326591,-0.07223697006702423,0.03598576411604881,0.015977419912815094,0.08929196745157242,-0.03478270396590233,-0.01976659521460533,0.03257608413696289,0.10287414491176605,-0.0032127269078046083,-0.04003043845295906,-0.14001882076263428,-0.06792799383401871,-0.11514826864004135,0.014359155669808388,0.058689579367637634,0.08213663101196289,-0.021799959242343903,0.015140630304813385,0.055302999913692474,0.02588268555700779,0.03194472938776016,-2.5053087020464788e-33,0.021958062425255775,-0.0896415263414383,-0.059146299958229065,-0.03149216249585152,0.12067341059446335,-0.04550611227750778,-0.03774247318506241,0.002677721669897437,0.052322253584861755,0.032968372106552124,-0.017566978931427002,-0.004186604637652636,-0.05952312797307968,-0.10536780208349228,-0.00843812059611082,-0.04866731911897659,-0.0018636338645592332,-0.06264118105173111,0.05810435488820076,-0.0017828067066147923,-0.009390526451170444,0.011340707540512085,-0.03945509344339371,0.04400058835744858,-0.036249130964279175,0.03743782639503479,-0.07674126327037811,0.012737879529595375,0.030779840424656868,0.048713769763708115,0.04375363513827324,-0.06419649720191956,-0.027235403656959534,0.008752069436013699,-0.0075707510113716125,-0.023003675043582916,0.026584725826978683,-0.08659432083368301,-0.0180211141705513,0.02907579578459263,-0.02436082996428013,-0.07379500567913055,0.02697589434683323,-0.02439684234559536,0.009879359975457191,0.03453049063682556,-0.04700661078095436,0.05975453555583954,-0.06877121329307556,-0.021959619596600533,-0.02228677272796631,0.038257136940956116,0.0662444531917572,-0.03727579861879349,0.02488821931183338,0.01282805297523737,-0.019886163994669914,0.05508706346154213,-0.028294464573264122,0.0006008707568980753,0.047199297696352005,0.01454972755163908,0.0875353291630745,-0.0074790664948523045,0.0012557720765471458,-0.09939794987440109,-0.012434830889105797,0.04012767970561981,-0.07481709867715836,0.07813253998756409,-0.0026424983516335487,-0.003170725191012025,-0.01405458152294159,-0.031409263610839844,-0.041423819959163666,-0.010445884428918362,0.013694834895431995,0.03244623914361,0.04881842061877251,-0.09362911432981491,0.047646768391132355,-0.01384427398443222,-0.05179469659924507,0.08050765842199326,0.02452845685184002,0.02614312805235386,0.07782886922359467,-0.1418635994195938,-0.06833787262439728,-0.03076983615756035,-0.029099049046635628,0.025179484859108925,0.03541386500000954,-0.09567524492740631,-0.007319374941289425,1.64227710213079e-35,-0.01564636267721653,0.10323808342218399,0.0025585098192095757,0.026494408026337624,-0.02359107695519924,0.028230726718902588,0.0013327606720849872,-0.0003832262591458857,0.00781437661498785,0.03435542434453964,-0.10194048285484314,0.030726946890354156,0.010690426453948021,-0.01542919222265482,0.057929180562496185,-0.1009659469127655,0.11837461590766907,0.007426027674227953,0.012396068312227726,-0.03546629473567009,0.021812956780195236,-0.0299553032964468,-0.027376806363463402,-0.07842834293842316,0.0194868091493845,0.07629622519016266,0.04154711961746216,0.016055013984441757,-0.07009819149971008,-0.011927125975489616,0.07431548088788986,-0.007603119593113661,0.030541546642780304,0.03304027020931244,-0.009217912331223488,0.030456118285655975,-0.032763898372650146,0.03777503967285156,-0.02928711287677288,-0.09703337401151657,0.02330189198255539,-0.020323196426033974,-0.00023453286848962307,0.05487746000289917,0.027178002521395683,-0.004290580749511719,-0.05314944311976433,0.028431838378310204,0.010238614864647388,0.05330102890729904,-0.030151749029755592,0.04852967709302902,-0.027965042740106583,-0.0069565861485898495,-0.05428677424788475,0.004632472060620785,-0.020290156826376915,-0.0773882046341896,0.008523594588041306,-0.0381649024784565,-0.09665975719690323,0.022051358595490456,-0.06020210683345795,0.07587172091007233,0.004320085048675537,-0.019681934267282486,-0.09392227977514267,-0.006802602671086788,0.0009582294151186943,0.004428550135344267,0.061793435364961624,0.051418233662843704,0.016472015529870987,-0.012182359583675861,0.010358907282352448,0.08755714446306229,-0.021237196400761604,-0.013774179853498936,-0.03684680536389351,-0.03158368915319443,-0.008221494033932686,-0.05399756133556366,0.00044445652747526765,0.021961355581879616,0.004544277209788561,0.005094677209854126,0.006661660969257355,0.11593037843704224,0.005315099377185106,0.034755490720272064,0.047182347625494,-0.02021271362900734,0.12002089619636536,0.02874857932329178,0.0049652401357889175,-3.384705848930025e-8,-0.07072451710700989,0.10447541624307632,-0.03628888726234436,0.03150169178843498,0.11888611316680908,0.01952342875301838,0.009536081925034523,-0.013940208591520786,0.01116089429706335,0.03303099051117897,-0.08676827698945999,0.07543785125017166,0.027675585821270943,0.17348238825798035,-0.012444932945072651,0.062090616673231125,-0.015836404636502266,-0.14640124142169952,-0.06747336685657501,-0.02241896465420723,-0.06795802712440491,-0.06643596291542053,-0.05882437527179718,0.011507836170494556,-0.04691429063677788,0.035532813519239426,-0.08776738494634628,-0.058819688856601715,-0.003497736295685172,0.0617181770503521,-0.06688093394041061,-0.004309169016778469,-0.04462107643485069,-0.001661255955696106,-0.02406861074268818,0.10761264711618423,0.03203022480010986,-0.020785361528396606,0.10096100717782974,-0.0822017639875412,-0.047201331704854965,0.009072130545973778,0.07240642607212067,0.02504490502178669,0.013615386560559273,-0.018875010311603546,-0.025635521858930588,0.07826337218284607,-0.03594706580042839,0.026412447914481163,-0.07250954210758209,0.018970608711242676,-0.016781911253929138,0.06203806400299072,0.056911688297986984,-0.0720086544752121,-0.04172460734844208,-0.05083933472633362,-0.044509198516607285,0.0027216358575969934,-0.05777909979224205,0.00815577246248722,-0.0274922177195549,0.011212212964892387]},{"text":"Snowball now gave the signal for the charge.","book":"Animal Farm","chapter":38,"embedding":[-0.018730686977505684,0.07694049924612045,0.013755829073488712,0.004649378824979067,0.04541013017296791,-0.019808843731880188,0.011552808806300163,0.04773285612463951,-0.006166860926896334,-0.02506757713854313,0.03273206949234009,0.067092664539814,-0.0171671099960804,0.0719355046749115,0.03668810799717903,-0.023013239726424217,0.05574424937367439,-0.07261522859334946,-0.009863097220659256,-0.01928725838661194,0.04639127105474472,-0.02280542068183422,0.03945661708712578,-0.03462095931172371,0.017800863832235336,0.07749225944280624,0.029224468395113945,0.0513303242623806,-0.07863958925008774,-0.061213359236717224,-0.040783319622278214,0.028232548385858536,0.029052753001451492,0.06768052279949188,0.006428529508411884,0.025050699710845947,0.02858344092965126,0.0145704485476017,0.009621534496545792,0.025227170437574387,0.052468761801719666,-0.08633936941623688,0.030420701950788498,-0.009079541079699993,-0.06000249460339546,0.05943195894360542,-0.016785968095064163,0.02962767519056797,0.08625911921262741,0.046399980783462524,0.060737207531929016,-0.027386773377656937,-0.01823539286851883,0.04829629138112068,0.05227786675095558,0.051689282059669495,0.0011450819438323379,0.02950315736234188,0.010423270054161549,-0.045816920697689056,-0.06800714135169983,0.00138966110534966,-0.03416807949542999,0.022169852629303932,-0.0021360311657190323,-0.009935358539223671,-0.03809467330574989,-0.05920352041721344,-0.0019037426682189107,0.010640174150466919,0.09210273623466492,0.10330317169427872,0.009950092062354088,-0.09097790718078613,-0.024964628741145134,0.034369830042123795,-0.05847417190670967,-0.0074933115392923355,0.032039958983659744,0.05966143310070038,0.0012300361413508654,-0.0786103680729866,-0.044241055846214294,0.02484894171357155,0.04864351823925972,0.033725589513778687,0.028359314426779747,-0.025132637470960617,0.022623302415013313,0.005423875991255045,-0.07783059030771255,-0.028417285531759262,-0.0462937094271183,0.06634422391653061,-0.21215906739234924,-0.004578032530844212,0.016702288761734962,-0.015142470598220825,-0.07019898295402527,0.06696167588233948,0.08151517063379288,-0.008318840526044369,-0.04941494017839432,-0.004072751384228468,0.059895772486925125,-0.017339447513222694,-0.047245945781469345,0.03636642545461655,0.02947937324643135,0.03290398791432381,0.05813496559858322,-0.050828080624341965,0.013982318341732025,0.04594835266470909,-0.0457107275724411,0.07948602735996246,-0.10651760548353195,0.10227303951978683,-0.032634492963552475,-0.028184885159134865,0.0633113756775856,0.035727959126234055,-0.016933832317590714,0.061059754341840744,-0.0018444618908688426,0.04288375377655029,0.06162775680422783,-4.8986658935145354e-33,0.002897469559684396,0.04122777283191681,0.011250409297645092,-0.04494206979870796,0.0019189424347132444,-0.016281945630908012,-0.013755087740719318,0.13430695235729218,0.04168396815657616,0.0510648675262928,-0.04802267625927925,0.03332698717713356,-0.05431444197893143,-0.10609973967075348,0.0009278321522288024,-0.03036419302225113,-0.09971973299980164,-0.07193876802921295,-0.030203906819224358,0.10552244633436203,0.022100266069173813,-0.04144080728292465,0.009964767843484879,0.043065525591373444,-0.021911924704909325,0.10172822326421738,-0.006550305988639593,0.01454943884164095,0.06004989147186279,0.011535962112247944,0.027635300531983376,-0.01448493916541338,0.0055607957765460014,0.06512843072414398,0.029290741309523582,0.01983547955751419,0.013052830472588539,-0.06417066603899002,-0.022755654528737068,0.001402470050379634,0.059143178164958954,-0.09366614371538162,-0.12201783061027527,-0.048282135277986526,-0.0013766359770670533,-0.10074228048324585,-0.021781498566269875,-0.04589476436376572,0.03074127435684204,0.007000296842306852,0.021278295665979385,-0.039416585117578506,0.04775238409638405,-0.016162294894456863,0.03693857416510582,0.029609568417072296,-0.05359005182981491,0.042777903378009796,0.005197517108172178,0.005295536946505308,0.03640705719590187,-0.010236314497888088,0.08380967378616333,-0.011383705772459507,-0.08292265981435776,0.02425095997750759,0.02460455894470215,0.0031836326234042645,-0.07303087413311005,0.04315876215696335,0.025875357910990715,0.08047240227460861,-0.04508465155959129,-0.02325804904103279,-0.09032752364873886,0.028824806213378906,-0.05370630323886871,-0.0032352814450860023,0.08122065663337708,-0.07142549008131027,0.010912226513028145,-0.08595878630876541,0.03945223614573479,0.042779725044965744,0.036867596209049225,-0.014945422299206257,-0.010876469314098358,-0.039518579840660095,-0.073137566447258,-0.016473764553666115,-0.06100756675004959,0.033635079860687256,-0.022108864039182663,-0.04581457003951073,0.02682119980454445,3.865790231515685e-33,0.0045868391171097755,-0.020438142120838165,-0.06958676129579544,-0.001670305267907679,-0.01997099630534649,0.027835095301270485,0.0034015735145658255,-0.012388885952532291,-0.028114059939980507,0.08683115988969803,-0.03782806545495987,0.062450166791677475,-0.01425418071448803,-0.0006286858697421849,0.07815460860729218,-0.034600693732500076,0.06143440306186676,0.03898680955171585,0.014904686249792576,0.04462634027004242,0.014067068696022034,0.016042793169617653,-0.029746459797024727,0.021199218928813934,-0.0024482212029397488,0.021364016458392143,0.0511629693210125,-0.009138595312833786,0.004276912659406662,0.03927895054221153,0.04042746499180794,0.01072633732110262,-0.00015335663920268416,0.009672407992184162,-0.011833722703158855,0.05367724597454071,0.0765557587146759,-0.0014711235417053103,-0.0017828261479735374,-0.10440534353256226,0.04373682662844658,0.05051232501864433,0.035317279398441315,0.11823759973049164,-0.012695563957095146,-0.04019954428076744,-0.061846859753131866,0.05162665620446205,0.03869803249835968,0.07333187013864517,-0.07428548485040665,-0.026624200865626335,-0.041679397225379944,0.03362715616822243,-0.13459205627441406,0.02002565935254097,0.007593181915581226,-0.05363807454705238,-0.023256748914718628,-0.06690820306539536,-0.0291935782879591,-0.036879345774650574,-0.04987779259681702,-0.061205435544252396,0.03221716359257698,0.030594352632761,-0.003286920487880707,0.022929351776838303,0.08367329835891724,0.11690131574869156,0.09624072909355164,0.02166878432035446,-0.012892498634755611,-0.04123493283987045,-0.023870423436164856,0.006005174480378628,-0.034955091774463654,0.020156336948275566,-0.06480184942483902,-0.050157804042100906,0.033296775072813034,0.031716424971818924,-0.03855358809232712,-0.05178769677877426,0.0764894187450409,0.021069195121526718,0.09586997330188751,0.0196567103266716,-0.09658349305391312,0.030503060668706894,0.001008292892947793,0.050085488706827164,-0.006742578931152821,0.13170810043811798,-0.08549614995718002,-1.7595635171119284e-8,0.01125638373196125,0.13218028843402863,-0.025167258456349373,-0.037711698561906815,0.057559188455343246,0.05097208544611931,-0.010943624190986156,-0.07327669113874435,-0.016755810007452965,-0.12113585323095322,-0.005060240626335144,0.016147365793585777,0.047760043293237686,0.11094696074724197,0.04916495084762573,0.05814630538225174,-0.03560637682676315,-0.09588044136762619,-0.09353560209274292,0.0497899167239666,-0.08115481585264206,-0.006972736679017544,-0.09615030139684677,0.03222561627626419,-0.009059610776603222,0.0445544458925724,-0.02425931766629219,0.04164505749940872,0.04877731576561928,-0.06811698526144028,-0.10977209359407425,-0.024622678756713867,-0.00880588497966528,-0.010261333547532558,-0.004111634101718664,0.02158971130847931,-0.019515741616487503,0.0020842610392719507,0.050964001566171646,-0.025785058736801147,-0.01447171252220869,0.004720600787550211,-0.03842531889677048,0.022231334820389748,-0.04291682690382004,0.00028059640317223966,-0.005523153580725193,-0.0767337754368782,-0.04342005401849747,0.08237257599830627,-0.057102616876363754,0.019853167235851288,-0.07617176324129105,-0.017110079526901245,0.018009666353464127,0.08236735314130783,0.027923639863729477,-0.08658165484666824,-0.1087525263428688,-0.021566543728113174,-0.03701226785778999,-0.01297303382307291,-0.02053721621632576,0.029158271849155426]},{"text":"Jones was hurled into a pile of dung and his gun flew out of his hands.","book":"Animal Farm","chapter":38,"embedding":[0.05796147882938385,0.11681286245584488,-0.007156072184443474,0.06793520599603653,0.07044491916894913,-0.008830019272863865,0.11688520759344101,0.026417195796966553,-0.06505829840898514,0.009883086197078228,-0.027129637077450752,0.050048645585775375,0.020433353260159492,0.02467220462858677,0.01341765932738781,-0.018541842699050903,-0.022692477330565453,0.03403833881020546,-0.031174805015325546,0.019645823165774345,0.002386990236118436,0.11474651098251343,0.04083546996116638,0.03599473834037781,-0.04682495445013046,-0.006757945287972689,0.01665641926229,0.03260921314358711,-0.007290014997124672,-0.0211478378623724,0.006747291889041662,-0.02888171747326851,-0.12687797844409943,-0.017505429685115814,-0.07232528179883957,-0.060285475105047226,0.06745243072509766,0.023842828348279,-0.02829960361123085,0.013316278345882893,0.06244989112019539,0.035420339554548264,-0.006248808465898037,-0.015000027604401112,-0.033481426537036896,0.019540242850780487,-0.019312521442770958,-0.004734947346150875,0.0683613270521164,-0.01834743283689022,-0.020457200706005096,0.015296036377549171,-0.04028461501002312,0.04603602737188339,-0.001194562646560371,-0.12916328012943268,0.07137158513069153,-0.04016374796628952,-0.05992582067847252,0.005289518740028143,0.0012871200451627374,0.05379655957221985,-0.0012470470974221826,0.042481426149606705,0.07144338637590408,-0.09618797153234482,0.04390807822346687,-0.030907433480024338,-0.006160099990665913,0.055190835148096085,0.03365616500377655,-0.010802362114191055,-0.035349879413843155,-0.0848945751786232,0.014957111328840256,0.03469758480787277,0.0020358010660856962,-0.02610132284462452,0.048234548419713974,-0.06298176199197769,-0.044653214514255524,0.02767869643867016,-0.0012247792910784483,0.025062335655093193,-0.01498153991997242,0.024506712332367897,0.010192513465881348,-0.00542520172894001,-0.03142176568508148,-0.007009922992438078,-0.046658582985401154,-0.06549125164747238,-0.00971734058111906,0.038184233009815216,0.07830017060041428,-0.09708953648805618,0.056392934173345566,0.032640475779771805,-0.061804816126823425,0.03295465186238289,-0.057001743465662,0.03977999836206436,-0.016956863924860954,-0.08212412893772125,0.06547006219625473,0.04721600189805031,-0.05801761895418167,0.0028982432559132576,-0.10504837334156036,-0.00023898280051071197,0.000041393828723812476,0.054233912378549576,-0.0627051368355751,0.015767326578497887,0.0411316454410553,0.024359822273254395,-0.0662253350019455,-0.02512279897928238,-0.19646179676055908,0.02876347303390503,0.027781469747424126,-0.00885632261633873,-0.12893398106098175,0.06025199219584465,-0.036221250891685486,-0.03636154532432556,0.052522215992212296,-2.6976197615119974e-33,0.03906107693910599,-0.050971340388059616,0.007407879922538996,-0.024192288517951965,0.02341199479997158,0.014223248697817326,-0.011024555191397667,0.010829211212694645,0.08355801552534103,0.11549682170152664,-0.050399720668792725,-0.038335420191287994,-0.02880130335688591,0.000496053253300488,0.014149446040391922,0.011801152490079403,-0.030858512967824936,0.02829451486468315,0.050210367888212204,0.0017157134134322405,-0.0384417288005352,0.06016699597239494,-0.10893672704696655,-0.022647397592663765,-0.011687186546623707,0.06621217727661133,-0.11013608425855637,0.023021487519145012,-0.02457549050450325,0.016850274056196213,0.04376997798681259,0.041979264467954636,-0.026638150215148926,0.034332986921072006,-0.022154880687594414,-0.08005158603191376,-0.05784601718187332,-0.05385894328355789,-0.08525694906711578,-0.05961018055677414,0.050206903368234634,0.07759575545787811,-0.07580159604549408,-0.056261319667100906,-0.12179645895957947,-0.024081582203507423,-0.07459890097379684,-0.04838670790195465,0.014064682647585869,-0.03555524721741676,0.0668792724609375,-0.01604737900197506,0.1415085345506668,0.04045962169766426,-0.0510852187871933,0.024139391258358955,0.025088198482990265,-0.049965664744377136,0.030237453058362007,0.025751395151019096,0.053036730736494064,0.03872779756784439,-0.008862599730491638,0.05003993213176727,-0.03641492500901222,-0.09854920953512192,0.012656583450734615,0.04986065626144409,-0.008861670270562172,0.032680727541446686,-0.06006817892193794,0.030630916357040405,-0.02211044728755951,-0.09235133975744247,-0.06577901542186737,-0.030133279040455818,0.03915504738688469,-0.05789915472269058,0.006442399695515633,0.009754606522619724,0.03853997215628624,0.02793275937438011,0.05330374464392662,-0.027417609468102455,-0.02064008079469204,0.0670003592967987,0.013269644230604172,-0.05257529392838478,-0.07517829537391663,0.03708820417523384,-0.03849496319890022,0.05161429941654205,-0.023156696930527687,-0.11005201935768127,0.010642657987773418,-1.8585129556446776e-33,-0.03428072854876518,0.04417085275053978,-0.050268251448869705,0.09783797711133957,-0.0109736742451787,-0.041425809264183044,-0.026189841330051422,0.03509682044386864,0.019230511039495468,-0.12048614025115967,-0.060530804097652435,-0.05401083454489708,-0.022449955344200134,0.09498878568410873,0.0898401066660881,-0.052572641521692276,-0.06624867022037506,0.037487566471099854,-0.021092917770147324,0.08434230834245682,0.059515342116355896,-0.05301404744386673,0.06037873774766922,-0.08976680785417557,0.02546817436814308,-0.033849332481622696,-0.018739163875579834,0.017549345269799232,-0.07206438481807709,-0.02053171768784523,0.05063936486840248,-0.06025823950767517,0.04600843787193298,0.03214779868721962,-0.032588135451078415,-0.06782356649637222,0.06794553995132446,0.07527610659599304,0.05629056319594383,-0.11398093402385712,-0.006491422653198242,0.07054266333580017,0.028696129098534584,0.09170514345169067,0.004172982648015022,0.0021947608329355717,-0.03420830890536308,0.027429668232798576,0.08680615574121475,0.06782496720552444,-0.03855687379837036,-0.030580637976527214,0.04177878797054291,0.010648896917700768,0.01828746311366558,0.02216334082186222,0.0416170209646225,-0.06538573652505875,0.004031757824122906,0.04944677650928497,-0.07960506528615952,-0.005044495686888695,-0.058618586510419846,-0.00991641916334629,-0.02040235325694084,0.038271334022283554,-0.016033751890063286,-0.043160852044820786,-0.010999590158462524,-0.052870068699121475,-0.03699098527431488,0.04036315903067589,0.053256988525390625,0.013013271614909172,-0.03248922899365425,0.06288988888263702,0.03239632397890091,0.03808349370956421,-0.0036197658628225327,0.006318494211882353,0.02299337461590767,-0.07439063489437103,-0.0632103756070137,0.023367222398519516,-0.005561343394219875,0.04541816562414169,-0.036714453250169754,-0.019252264872193336,0.015935197472572327,-0.08590435236692429,0.049035292118787766,-0.025098735466599464,0.11962947249412537,-0.009799131192266941,-0.0028257027734071016,-2.227383255615223e-8,-0.04577434062957764,0.01585165224969387,0.055063456296920776,0.05341804027557373,0.038548558950424194,0.11794334650039673,-0.02646459825336933,0.0051776329055428505,0.034600719809532166,0.02598433382809162,0.02586040273308754,0.045405060052871704,0.020294521003961563,-0.0009599841432645917,-0.05188547819852829,-0.05908789113163948,-0.06438588351011276,-0.10929535329341888,-0.02109033800661564,0.015607554465532303,-0.030037065967917442,-0.0562521256506443,-0.02973756566643715,0.07764546573162079,0.021170014515519142,0.05539064109325409,-0.09843102097511292,-0.006105843931436539,-0.0044431076385080814,0.06213662773370743,0.04303532838821411,0.01962144486606121,-0.04910391569137573,-0.017334848642349243,-0.04643905907869339,-0.027486372739076614,0.04969295859336853,0.060053545981645584,0.06738563627004623,-0.07568734884262085,0.06193261221051216,0.05255876109004021,0.04414796084165573,-0.04076554626226425,0.045405007898807526,0.04136037081480026,0.007491257507354021,0.03183114901185036,-0.07628890872001648,-0.0032892359886318445,0.04242977872490883,0.05362573638558388,0.004204754717648029,0.016826041042804718,0.024575328454375267,-0.037305157631635666,-0.020507756620645523,-0.04513615742325783,-0.026826143264770508,-0.04680383950471878,-0.027315326035022736,0.008354749530553818,-0.04381220415234566,0.04174642637372017]},{"text":"They were gored, kicked, bitten, trampled on.","book":"Animal Farm","chapter":38,"embedding":[0.037906713783741,0.11442532390356064,-0.0030277096666395664,0.08541344851255417,0.08265221863985062,0.008032470941543579,-0.0036369336303323507,0.013769508339464664,-0.0658930167555809,0.04960176348686218,0.07490004599094391,-0.04392337426543236,0.028716465458273888,0.08416331559419632,-0.0950804129242897,-0.05741633474826813,-0.024044806137681007,-0.02255900576710701,-0.04969366639852524,0.03128925338387489,-0.031762659549713135,0.07266857475042343,0.024522578343749046,-0.01544010080397129,-0.015392782166600227,0.003969181794673204,-0.012511370703577995,0.012849397026002407,0.017359567806124687,-0.004108282271772623,-0.04523370787501335,-0.03219732269644737,0.04303259402513504,-0.003965795040130615,-0.045822929590940475,-0.02632403001189232,0.07627712935209274,-0.05236055329442024,0.00031228995067067444,0.01599777117371559,0.03769024461507797,-0.04235512763261795,0.016110599040985107,-0.037496231496334076,-0.0038311348762363195,0.01321671437472105,0.004226394928991795,0.00463271327316761,0.01819673739373684,-0.02991926111280918,0.1316463202238083,-0.010233737528324127,-0.01832347922027111,0.0022711565252393484,0.01857072301208973,-0.1337510645389557,-0.03871745616197586,-0.03980695456266403,0.03554193675518036,-0.041233137249946594,0.06659726053476334,0.06048733368515968,-0.025341367349028587,0.08886580169200897,-0.06025754660367966,-0.06444978713989258,0.02667313441634178,-0.02137794718146324,0.09458955377340317,0.07378605008125305,0.03651357814669609,-0.029233481734991074,0.04374748840928078,-0.06842396408319473,-0.05740493908524513,0.01815112680196762,-0.03339672088623047,-0.06989268213510513,-0.022441448643803596,-0.05536927655339241,-0.05494648218154907,-0.10357264429330826,-0.007769943214952946,0.020353524014353752,0.07456784695386887,0.0364002101123333,0.01739460416138172,-0.034856926649808884,0.0029310197569429874,0.07369806617498398,-0.014421826228499413,0.04495979845523834,0.05239851400256157,0.05366295203566551,-0.033884480595588684,-0.023113859817385674,0.0310825202614069,0.015186657197773457,0.022444594651460648,0.05941933020949364,-0.06775575131177902,0.0039400337263941765,-0.041579216718673706,0.011789016425609589,0.030876414850354195,-0.03810824453830719,-0.028567694127559662,-0.04657682403922081,-0.005095350556075573,0.047263018786907196,-0.03296983614563942,0.035642918199300766,0.054928719997406006,0.016590598970651627,0.04222527891397476,-0.029483485966920853,-0.05472831428050995,-0.021155864000320435,-0.016280272975564003,-0.004835822619497776,0.06351421773433685,0.02071753330528736,-0.056513141840696335,-0.04285763204097748,0.0198198352009058,-0.014863984659314156,-0.03811080381274223,-2.3567341139552113e-33,0.11544593423604965,-0.049434594810009,-0.09515577554702759,-0.024684153497219086,0.009662973694503307,0.005805780179798603,-0.05167287960648537,-0.019473416730761528,0.03664931654930115,0.11268451809883118,-0.044207844883203506,-0.07147131860256195,0.016825610771775246,-0.03387635946273804,0.007548894267529249,0.037148367613554,-0.041782647371292114,-0.039627738296985626,-0.05944597348570824,-0.008070805110037327,-0.017691880464553833,0.1358027309179306,0.00991214532405138,0.07555984705686569,-0.0506061315536499,0.04906109720468521,-0.09351209551095963,-0.03301553428173065,0.035315752029418945,0.00859907828271389,0.032290421426296234,-0.040126048028469086,0.03555213660001755,0.007522254716604948,-0.021333441138267517,0.09020882844924927,0.07574573904275894,-0.054852444678545,-0.08669039607048035,-0.004727210383862257,0.03938494995236397,-0.013787773437798023,0.009145010262727737,-0.0275008175522089,-0.022957731038331985,0.001074673142284155,-0.0735039934515953,-0.027269834652543068,-0.00499847112223506,-0.008179467171430588,0.02927311137318611,0.07484360784292221,0.13027185201644897,-0.024793917313218117,0.03471369668841362,0.12430457025766373,0.019373884424567223,0.026345377787947655,-0.047615207731723785,0.07323833554983139,0.04106086120009422,0.04722803831100464,0.07916004955768585,-0.0758662223815918,-0.019604332745075226,-0.09341656416654587,0.04039228707551956,0.002965122228488326,-0.007222461048513651,-0.0721246525645256,-0.06213407590985298,0.018375355750322342,0.02885196916759014,-0.06670695543289185,-0.058210987597703934,-0.0048898812383413315,-0.005098086781799793,-0.08985621482133865,-0.037129100412130356,-0.012816712260246277,0.05021291226148605,-0.02532537281513214,0.0500694215297699,-0.010637134313583374,0.014773093163967133,0.029961368069052696,0.03678731992840767,-0.11766553670167923,-0.0060085756704211235,-0.0048817521892488,-0.055812086910009384,0.041152048856019974,0.01458575390279293,-0.09916426241397858,0.001788532710634172,3.891221959960229e-34,-0.059790559113025665,0.07772626727819443,-0.08405032753944397,0.043099544942379,-0.035936206579208374,-0.03279658779501915,-0.059328339993953705,0.1236351877450943,-0.014849555678665638,-0.04979537054896355,-0.09982167184352875,-0.05541565641760826,-0.029633017256855965,0.05716419965028763,0.07003383338451385,-0.010165536776185036,0.025086306035518646,0.0033138850703835487,-0.005377964116632938,0.01774778962135315,0.00793128740042448,0.008970568887889385,0.01079512294381857,-0.015711653977632523,0.01128107775002718,0.07857616245746613,0.09484469145536423,0.0445854514837265,-0.06822340190410614,-0.014493649825453758,0.13797008991241455,-0.02319132536649704,0.011537523008883,0.019172249361872673,-0.03990618884563446,0.08327802270650864,0.01199897937476635,0.09207189828157425,-0.02238508313894272,-0.1390594094991684,0.03701423853635788,-0.026200462132692337,-0.058914702385663986,0.1100747361779213,0.02447817474603653,0.02883569523692131,-0.019664624705910683,0.046699896454811096,0.005937572568655014,-0.030897231772542,-0.019248325377702713,0.026427043601870537,-0.04482986032962799,-0.007277915719896555,0.0060567548498511314,-0.12489794939756393,0.05713862553238869,-0.06792080402374268,0.07634107023477554,-0.0430610217154026,-0.07532476633787155,0.01090903952717781,-0.025229062885046005,0.09887707978487015,-0.009013671427965164,0.03853410854935646,-0.08055282384157181,-0.033661287277936935,-0.08341912925243378,-0.01137427520006895,-0.01992405764758587,0.029012607410550117,-0.014864752069115639,-0.03709767386317253,-0.008919927291572094,0.007696431130170822,-0.11412649601697922,0.055384740233421326,0.020479101687669754,0.02077491767704487,-0.025511039420962334,-0.05302690714597702,-0.022013463079929352,0.08024314045906067,-0.0264643095433712,0.07270639389753342,-0.015035443939268589,-0.02336800843477249,0.011081063188612461,-0.04467247799038887,0.010715405456721783,-0.008028014563024044,0.0991002693772316,0.022305302321910858,-0.027370385825634003,-2.0132052469534756e-8,-0.046927813440561295,0.051119714975357056,-0.0339006632566452,0.004988888278603554,-0.0007047077524475753,0.0787285789847374,-0.01652653142809868,0.04622038081288338,0.038697078824043274,0.0012787356972694397,-0.08792141824960709,-0.0024552589748054743,0.06682484596967697,0.039723627269268036,0.05929810181260109,0.08788293600082397,-0.06968218833208084,-0.07234307378530502,-0.08689439296722412,-0.0017964367289096117,-0.07469678670167923,0.025115173310041428,-0.04347299039363861,0.03034190647304058,0.0007738243439234793,-0.009053461253643036,-0.06774255633354187,-0.06350960582494736,-0.015244876965880394,0.06851281970739365,-0.02787177637219429,-0.0231388621032238,-0.03241780027747154,-0.026812367141246796,-0.017563853412866592,0.10536826401948929,0.053023114800453186,-0.0504826121032238,0.052151232957839966,-0.0366862453520298,-0.06559037417173386,-0.007438010070472956,0.08737354725599289,0.014478746801614761,0.04104749485850334,-0.0400257371366024,-0.012970455922186375,0.02319970726966858,0.03771617263555527,-0.05744192749261856,0.052190642803907394,-0.01999913528561592,-0.06156209111213684,0.04424881935119629,-0.00534636527299881,-0.08233366161584854,0.02044340968132019,0.01996520534157753,0.01386083010584116,0.060069844126701355,-0.048803556710481644,-0.045028429478406906,0.004472225904464722,0.03226909786462784]},{"text":"All the men were gone except one.","book":"Animal Farm","chapter":38,"embedding":[0.0328863188624382,0.047294408082962036,0.018327152356505394,0.04635624215006828,0.05110407993197441,-0.00820124801248312,-0.02726069837808609,-0.13771715760231018,-0.016932323575019836,0.0010754258837550879,0.06255544722080231,0.06747931241989136,0.03974851593375206,-0.06750786304473877,-0.03682715445756912,-0.042934637516736984,-0.11545807868242264,-0.038528673350811005,-0.00347944931127131,-0.02140706777572632,-0.04653503745794296,0.025273233652114868,-0.04509568214416504,-0.011206744238734245,-0.018071908503770828,0.00037928661913610995,-0.08984023332595825,0.016569865867495537,-0.0047936514019966125,-0.01021549478173256,-0.054251644760370255,-0.000220203073695302,0.015308510512113571,-0.052303384989500046,0.03452330082654953,-0.049575310200452805,-0.008369795978069305,-0.009733187966048717,0.09296219050884247,-0.01465682964771986,-0.0030712794978171587,0.02867891825735569,0.023374410346150398,0.055730998516082764,0.019575968384742737,0.05647161975502968,-0.07078702002763748,-0.0959063172340393,0.06929567456245422,0.049499962478876114,0.12423471361398697,0.004756707698106766,-0.029928158968687057,0.0855461061000824,0.04637788608670235,-0.09520340710878372,0.006305919028818607,-0.08198091387748718,0.005917298141866922,-0.05947745963931084,-0.013906346634030342,-0.005665868986397982,-0.00447689788416028,0.013101269491016865,0.05131082981824875,-0.019010277464985847,-0.04079582542181015,-0.06340427696704865,0.08916264027357101,0.14193083345890045,0.05776158720254898,0.005953975487500429,-0.0356018990278244,0.04635369032621384,-0.03542707860469818,0.0023821124341338873,0.04905173182487488,-0.014062189497053623,-0.015878716483712196,0.044137246906757355,-0.09737768769264221,-0.08499103784561157,-0.023501817137002945,0.05683465301990509,0.05017051100730896,-0.02693914994597435,0.00755470572039485,-0.03984420374035835,0.014182585291564465,0.09260775148868561,-0.12612289190292358,-0.009938974864780903,0.09160633385181427,0.03842919319868088,0.007102335803210735,-0.005221987143158913,0.024145416915416718,0.12739887833595276,-0.054425615817308426,0.0718572735786438,0.027654217556118965,-0.018292376771569252,0.0011563767911866307,-0.059372927993535995,-0.05841539427638054,0.04362472519278526,-0.007281273137778044,-0.06364825367927551,-0.007372803054749966,-0.026797626167535782,-0.008343889378011227,0.011636168695986271,0.04736679047346115,0.045200616121292114,0.03062872216105461,-0.01596551202237606,0.008787344209849834,0.012585465796291828,-0.044040486216545105,0.0625527948141098,-0.023322677239775658,0.0423332154750824,0.030971158295869827,0.034993696957826614,-0.06610693782567978,0.07106354832649231,0.06984376907348633,-4.6012081500649094e-33,-0.005254531279206276,-0.04723506420850754,-0.014554787427186966,-0.01598680391907692,0.06425973027944565,0.05147140473127365,-0.015829557552933693,-0.047817736864089966,0.07265687733888626,-0.05976984277367592,-0.03681165724992752,0.001756691257469356,-0.0650312677025795,-0.08793842047452927,-0.06431979686021805,0.012419422157108784,0.11282633244991302,-0.023292971774935722,0.013718269765377045,-0.06567438691854477,-0.0025788182392716408,0.0943218320608139,-0.09732579439878464,0.028821652755141258,-0.03745395317673683,0.09144043177366257,0.010141667909920216,0.03497152775526047,-0.019318224862217903,0.014828185550868511,-0.06690198928117752,0.025472447276115417,0.05810098350048065,0.07103144377470016,0.037116941064596176,0.01102903950959444,0.013489034958183765,0.039352986961603165,-0.017151381820440292,0.011285844258964062,-0.06305824220180511,-0.010668566450476646,-0.04391751065850258,-0.06524001061916351,0.007053330074995756,-0.03236357495188713,-0.022528069093823433,0.05303911119699478,-0.012796470895409584,0.04422879219055176,-0.05565401911735535,0.01733379252254963,0.04412713274359703,-0.03643936663866043,-0.042475808411836624,0.020827172324061394,-0.041259102523326874,0.1035659909248352,-0.03627939522266388,0.014961319975554943,0.10234721750020981,0.04323512688279152,0.07943474501371384,0.013910352252423763,-0.021879451349377632,-0.013938541524112225,-0.015477011911571026,-0.019641680642962456,-0.05383020266890526,0.048516467213630676,-0.023606617003679276,-0.023046819493174553,0.017482757568359375,0.016004223376512527,0.008611097931861877,0.011057243682444096,-0.019524356350302696,0.014963638037443161,-0.0022803815081715584,-0.012280280701816082,0.01936691254377365,0.04043184220790863,-0.02170693874359131,0.022044235840439796,0.05164641886949539,-0.0466141551733017,0.07075202465057373,-0.10014163702726364,0.04953710734844208,-0.005564476363360882,-0.0780983418226242,0.013368683867156506,0.06183832883834839,-0.05612434446811676,-0.015612300485372543,2.5947483937807004e-33,-0.014897236600518227,0.07315196096897125,-0.003984267823398113,-0.03626113757491112,0.03545546159148216,0.0003224042011424899,0.04268857091665268,-0.019862744957208633,-0.023053942248225212,0.030864255502820015,0.04420125111937523,-0.037277571856975555,0.02372431568801403,0.041489239782094955,-0.008502327837049961,0.05804374814033508,0.056981898844242096,-0.07063122093677521,-0.03723079338669777,0.061859823763370514,0.08146285265684128,-0.011558364145457745,-0.00023934041382744908,0.005992201156914234,-0.029554739594459534,0.1013149619102478,0.034251824021339417,-0.019166937097907066,-0.0582006461918354,0.04386001080274582,0.014071804471313953,-0.07991182059049606,-0.06797414273023605,0.07545480877161026,0.03155219554901123,-0.009505830705165863,-0.06515888124704361,0.1613057404756546,0.025531979277729988,0.03761834278702736,-0.05127263441681862,-0.04009828343987465,-0.05003609508275986,0.08941906690597534,0.0053886412642896175,0.043096933513879776,-0.014577575959265232,0.025817260146141052,-0.01207524910569191,-0.0018353210762143135,-0.10668549686670303,0.013127506710588932,-0.049062781035900116,-0.025605328381061554,-0.04546171426773071,-0.0248419139534235,0.051286764442920685,-0.014455029740929604,-0.028221070766448975,0.026196541264653206,-0.09610773622989655,0.025466784834861755,0.008200575597584248,0.07763480395078659,-0.04878054931759834,-0.004881163593381643,-0.012679038569331169,0.013995679095387459,-0.12091413140296936,-0.04722357913851738,0.07209907472133636,-0.018598565831780434,0.0036686973180621862,-0.02920115366578102,0.040944550186395645,0.09317465871572495,-0.1361049860715866,0.03214524686336517,-0.02981245145201683,-0.06881595402956009,0.0017873215256258845,-0.02992631494998932,-0.005244947038590908,0.055230509489774704,0.02695111557841301,0.04020712152123451,0.05356813967227936,-0.03042718581855297,-0.01723043993115425,-0.008430374786257744,0.01998152770102024,-0.05678898096084595,0.16518928110599518,0.02560090646147728,-0.02264896221458912,-1.700968255136104e-8,-0.003589086700230837,0.038819197565317154,-0.015536734834313393,-0.049889761954545975,-0.001428669667802751,-0.07061977684497833,0.01093312632292509,0.07047774642705917,0.05244925245642662,0.08419744670391083,-0.07229670137166977,0.01648244820535183,-0.009799775667488575,0.022875890135765076,0.03839702904224396,-0.00788684468716383,-0.020498130470514297,-0.12441528588533401,-0.0523422546684742,-0.04926774278283119,-0.024566465988755226,-0.013937731273472309,-0.09118222445249557,-0.009674249216914177,0.05793457850813866,0.14775604009628296,-0.008282563649117947,-0.0920344814658165,0.010894451290369034,0.023992029950022697,0.030267056077718735,-0.04188331589102745,-0.03807536140084267,-0.04221278801560402,0.023622658103704453,0.09467129409313202,-0.022439125925302505,0.006636516191065311,0.01093147974461317,-0.09571731835603714,-0.10225355625152588,-0.006708837114274502,0.027583926916122437,0.004882686771452427,0.07220519334077835,-0.00386072788387537,-0.0030151770915836096,0.03565983474254608,-0.060738757252693176,-0.003849815111607313,0.02498723939061165,0.029847461730241776,-0.009188113734126091,0.05194690451025963,0.04157629236578941,-0.08119449019432068,0.006531756371259689,0.02871960960328579,-0.03422392159700394,-0.014558302238583565,0.030684713274240494,-0.10841673612594604,-0.010678468272089958,0.012488706968724728]},{"text":"The only good human being is a dead one.\" \"I have no wish to take life, not even human life,\" repeated Boxer, and his eyes were full of tears. \"Where is Mollie?\" exclaimed somebody.","book":"Animal Farm","chapter":39,"embedding":[0.0012507844949141145,0.035272568464279175,-0.002916493220254779,0.011218693107366562,-0.0042058262042701244,-0.028219394385814667,0.13249342143535614,-0.06128997355699539,0.004703208338469267,-0.016060607507824898,0.03745439648628235,-0.09056919813156128,0.01383450347930193,0.006270911078900099,-0.010017208755016327,-0.005195623729377985,-0.012384213507175446,-0.021274900063872337,-0.07230427861213684,0.07252389937639236,-0.022874094545841217,0.05682835355401039,0.06701534241437912,-0.014826017431914806,-0.08603423833847046,-0.0802006945014,-0.0691756159067154,-0.02963554859161377,0.06774818152189255,-0.03106963448226452,-0.02036418952047825,0.0020733338315039873,0.05908728390932083,0.012965085916221142,0.040411707013845444,0.045515354722738266,0.1132444217801094,0.028372827917337418,-0.003013106994330883,0.01996207796037197,-0.05998577922582626,-0.03348049521446228,-0.09840074926614761,-0.0025946584064513445,-0.0022179700899869204,-0.07216009497642517,0.01103248167783022,-0.062188223004341125,0.025960998609662056,-0.06262668967247009,-0.08703438192605972,0.005436343140900135,-0.023635512217879295,0.00015011036884970963,0.04662880301475525,-0.01074117049574852,0.028098972514271736,0.017977120354771614,0.011691788211464882,-0.08075772225856781,-0.00850813277065754,0.06178611144423485,0.08484065532684326,0.07753385603427887,0.03182677924633026,-0.05076787620782852,-0.012648334726691246,-0.04033466428518295,-0.0651262179017067,0.049913376569747925,-0.012186229228973389,-0.09255671501159668,0.01217595860362053,-0.04265381768345833,-0.10279051959514618,-0.005483765620738268,0.08721264451742172,-0.11183122545480728,0.061620164662599564,0.1266007423400879,0.08829312771558762,-0.053345680236816406,0.012482046149671078,-0.020219087600708008,0.049542199820280075,-0.06549105793237686,0.009760898537933826,-0.04970182105898857,-0.054096151143312454,-0.025528986006975174,-0.07424252480268478,0.055607330054044724,0.00045083145960234106,0.0806734561920166,0.0021197814494371414,0.010194007307291031,0.006679234094917774,0.045314446091651917,-0.09973198920488358,0.09197741746902466,-0.0122730303555727,-0.010819194838404655,0.04124616086483002,0.0047237202525138855,0.10715413838624954,-0.004250806290656328,-0.010038666427135468,0.021203061565756798,0.0029013410676270723,0.030851004645228386,-0.07713841646909714,-0.06808551400899887,0.0012093973346054554,0.03453296795487404,0.08773408830165863,0.03450946509838104,-0.047805529087781906,0.024045486003160477,-0.10688269883394241,-0.030227744951844215,0.0386190265417099,0.08215793967247009,-0.02580956183373928,0.05789655074477196,0.01987355761229992,0.03752651438117027,0.07031411677598953,-2.0331205650915836e-34,0.054852645844221115,-0.021354086697101593,0.08990179747343063,-0.03908809646964073,-0.01723437011241913,-0.0009022607700899243,-0.0470464825630188,0.008609512820839882,0.0896364152431488,-0.05408671870827675,0.0049443296156823635,-0.09447276592254639,-0.08023901283740997,0.041952963918447495,-0.04147806391119957,0.046302445232868195,-0.11137036234140396,-0.10894075036048889,0.07634511590003967,0.06248431280255318,0.01416113693267107,0.061758823692798615,-0.023542482405900955,-0.02748838998377323,-0.02029208466410637,0.04804109036922455,0.07136896252632141,-0.0562916100025177,0.010314988903701305,0.017765747383236885,-0.05934477597475052,0.03082415834069252,0.03447777032852173,0.0075232903473079205,-0.021939000114798546,-0.0048114825040102005,-0.05966386944055557,0.04409461468458176,-0.0489354245364666,0.045428983867168427,-0.06857382506132126,0.0586746521294117,0.0716433897614479,-0.06312728673219681,0.022160720080137253,-0.02548310160636902,-0.037776295095682144,0.07566305249929428,-0.03362273424863815,0.028005728498101234,-0.031120959669351578,-0.015871873125433922,-0.003949171397835016,0.0364784300327301,0.010819519869983196,0.03424853831529617,0.008109448477625847,0.10561308264732361,-0.006866721902042627,0.004327251110225916,-0.046181440353393555,-0.042929165065288544,0.06424996256828308,-0.034205179661512375,0.03353844955563545,-0.06454472243785858,-0.04906735569238663,-0.06096585467457771,-0.03536223620176315,-0.05983438715338707,-0.02147875912487507,0.01796988770365715,-0.050218939781188965,-0.040858153253793716,-0.051026225090026855,-0.05040482059121132,0.050408780574798584,-0.05288826674222946,-0.1109263077378273,0.04253740236163139,0.060873717069625854,0.038511309772729874,0.0016462678322568536,-0.036497700959444046,0.07418981194496155,-0.08106348663568497,-0.018576467409729958,-0.09006404876708984,-0.007301615085452795,0.029172729700803757,-0.022686054930090904,0.023038411512970924,-0.013923129066824913,-0.04226965457201004,-0.04119576886296272,-1.2972908102598387e-33,0.025012029334902763,0.0051293931901454926,0.03442666679620743,0.07915996015071869,0.0021419967524707317,-0.034055616706609726,-0.08042406290769577,0.001862207194790244,0.005914729088544846,0.05821230262517929,-0.05540314316749573,-0.09101951122283936,0.1117190569639206,-0.007705555763095617,0.0390702560544014,-0.03301873058080673,-0.04690319672226906,0.008394720032811165,-0.009326167404651642,-0.009196658618748188,-0.03672994300723076,0.06203144043684006,-0.11326578259468079,-0.05526807904243469,0.01874960958957672,0.09759387373924255,0.004199968185275793,-0.009543143212795258,-0.05233249440789223,-0.04014931246638298,0.050937823951244354,-0.0018462876323610544,-0.06424375623464584,0.01873166300356388,0.09268049895763397,0.020076707005500793,0.020227737724781036,0.015523655340075493,0.00772138824686408,-0.03944714367389679,0.011138671077787876,-0.017725994810461998,0.0008037352235987782,0.04012605920433998,-0.005694168619811535,0.012959242798388004,-0.04100123792886734,-0.025243625044822693,0.058972809463739395,-0.0514383427798748,-0.0682760626077652,-0.03102049231529236,-0.07927682995796204,0.0002592023811303079,0.034171804785728455,0.015269906260073185,-0.010758984833955765,-0.06851409375667572,0.132508784532547,-0.12161166220903397,-0.02101774327456951,0.026999570429325104,-0.04719366878271103,0.09007327258586884,-0.024029819294810295,0.000531704630702734,0.006055841688066721,0.09182221442461014,-0.09876639395952225,-0.05885109305381775,0.009726988151669502,0.007571594323962927,-0.07886099070310593,-0.04624137654900551,0.027449512854218483,0.09420716762542725,-0.0851828083395958,0.0033403236884623766,0.03192884102463722,-0.05523637309670448,-0.02204159088432789,-0.04990433529019356,0.001418272964656353,0.056096188724040985,0.02229333110153675,-0.04014836624264717,-0.0028965123929083347,0.04961187765002251,0.03995099291205406,-0.02028398960828781,-0.017060354351997375,0.003780581057071686,-0.03359416872262955,-0.04898667708039284,-0.01902386173605919,-3.900051126493054e-8,0.04900442808866501,-0.00038138392847031355,-0.036588799208402634,-0.049841079860925674,-0.010432996787130833,0.08876974880695343,0.018543899059295654,0.023273911327123642,0.004192597232758999,0.1195342168211937,-0.042242683470249176,0.11318664252758026,0.016443463042378426,-0.013646037317812443,0.035977911204099655,0.06846841424703598,-0.03882543742656708,-0.08654047548770905,0.002929644426330924,-0.0407685860991478,0.01647063158452511,-0.011177988722920418,0.051549188792705536,0.03319542855024338,-0.02001078799366951,0.028354711830615997,-0.05194895714521408,-0.044780559837818146,-0.1364108920097351,0.017263300716876984,0.0875840038061142,0.04684256389737129,-0.05130745843052864,-0.028388619422912598,0.07242150604724884,0.02439042553305626,0.05356041342020035,0.015738962218165398,-0.06226104125380516,0.011379153467714787,-0.010108393616974354,0.03973572701215744,0.007343566045165062,-0.02528892457485199,0.07966236025094986,-0.0387752391397953,0.04039881378412247,-0.054898202419281006,0.00047686247853562236,0.03651483729481697,0.02572089061141014,-0.03974386677145958,0.017325494438409805,0.014020206406712532,-0.011196660809218884,-0.043127983808517456,0.007309977430850267,0.02027396485209465,-0.0015125542413443327,-0.000526991905644536,0.04385184496641159,-0.002182834316045046,0.05978615954518318,-0.043711062520742416]},{"text":"And when the others came back from looking for her, it was to find that the stable-lad, who in fact was only stunned, had already recovered and made off.","book":"Animal Farm","chapter":39,"embedding":[-0.034788697957992554,-0.02348119392991066,0.03330715373158455,0.09856308251619339,0.08698417246341705,0.02311447262763977,0.010666166432201862,0.04128231853246689,-0.053777363151311874,-0.02093558944761753,0.10956715792417526,0.028344014659523964,0.03964739292860031,-0.1294376105070114,-0.0688449814915657,-0.0055948044173419476,-0.017717968672513962,0.02070011757314205,-0.05806431546807289,0.022451573982834816,-0.0757669061422348,0.024621175602078438,0.03205882012844086,0.015062151476740837,-0.022340694442391396,0.009662914089858532,-0.0771169662475586,-0.05251886695623398,0.11038846522569656,-0.040799982845783234,0.018353287130594254,0.0001750478259054944,0.011742506176233292,0.019413655623793602,-0.05187241733074188,0.10849171131849289,0.00825291033834219,0.01899782009422779,0.023370638489723206,-0.05370786786079407,-0.0551733672618866,-0.03124767541885376,-0.030496938154101372,-0.07850795984268188,-0.0378260612487793,-0.020815227180719376,0.05612999200820923,-0.02785417251288891,0.062126439064741135,-0.07534241676330566,-0.02100302278995514,-0.008060560561716557,-0.05329019948840141,-0.01499759778380394,0.00412028469145298,0.01441840548068285,0.05333540588617325,-0.039935629814863205,0.017665395513176918,-0.0003461666055954993,0.0164797380566597,0.05532663315534592,0.04615550860762596,0.007828847505152225,0.046740591526031494,-0.03253015875816345,0.0506398044526577,-0.05548778548836708,0.046930693089962006,0.10314800590276718,0.08144702017307281,-0.012078087776899338,-0.025906957685947418,-0.03014196641743183,-0.07007435709238052,0.01364811696112156,0.09181110560894012,-0.07922597229480743,0.025973375886678696,0.04920804128050804,-0.02347700297832489,-0.035217348486185074,-0.03607376292347908,0.03515075519680977,-0.001445268397219479,-0.047679509967565536,-0.018002379685640335,-0.12961943447589874,0.05636002868413925,0.021865250542759895,0.013180282898247242,-0.01955327019095421,-0.0076535954140126705,0.09443440288305283,0.009546573273837566,-0.010031075216829777,-0.003796960460022092,0.055369116365909576,0.021985266357660294,0.00455339252948761,-0.024775419384241104,0.08497234433889389,0.038971513509750366,0.028825299814343452,-0.04875865951180458,-0.0305226631462574,0.05811252072453499,-0.07347660511732101,0.030652090907096863,-0.02960182912647724,0.03362531587481499,-0.06377456337213516,-0.004460203927010298,0.0790320634841919,-0.006812080275267363,0.033702552318573,-0.09701842069625854,-0.057788461446762085,-0.09187375754117966,-0.04574396833777428,0.07793692499399185,0.03820587322115898,0.023023679852485657,-0.04263681545853615,-0.01769299991428852,0.04298815876245499,0.03454563394188881,-3.083079971180972e-33,0.043990276753902435,0.016275042667984962,-0.019182318821549416,0.00014617732085753232,0.010050411336123943,0.005842095706611872,-0.02826937474310398,0.03398636355996132,0.028308674693107605,-0.0016632603947073221,-0.029303723946213722,-0.06632541865110397,-0.03087981604039669,-0.10608943551778793,-0.12640216946601868,0.01072182971984148,0.03886887803673744,-0.011267186142504215,-0.020942168310284615,0.017154628410935402,0.06691668182611465,0.07682454586029053,0.012616315856575966,-0.04278407245874405,-0.031308792531490326,0.053363729268312454,0.07125360518693924,0.04780862480401993,0.01869630254805088,0.016362488269805908,-0.04918121173977852,0.0890970453619957,-0.004025657195597887,0.003001898992806673,-0.007324913050979376,0.041987620294094086,-0.02210089936852455,-0.05605870112776756,-0.06388664245605469,0.040103450417518616,-0.06805995851755142,0.0213774424046278,0.04678808152675629,-0.02268500067293644,-0.09253765642642975,-0.0687333345413208,-0.10598807036876678,0.012252060696482658,-0.06866796314716339,0.022351134568452835,-0.045418087393045425,0.08641283214092255,0.022588612511754036,-0.01730477809906006,0.021495159715414047,0.09509981423616409,0.008052937686443329,0.07488968223333359,0.0023275234270840883,0.04772571474313736,0.06059255450963974,-0.09926345944404602,0.04197247326374054,-0.003557488089427352,-0.023581979796290398,0.01626005955040455,0.003935262560844421,-0.062375836074352264,-0.03653542324900627,0.06594198197126389,-0.09324673563241959,0.04370137304067612,-0.03232504427433014,-0.03509097918868065,-0.0005793060408905149,-0.02797655574977398,-0.04178040102124214,0.019601136445999146,0.016233166679739952,-0.08248480409383774,0.05223894491791725,0.006667397450655699,-0.05879393592476845,0.11141400784254074,0.02050105482339859,-0.0826679989695549,0.04552585259079933,-0.1566840559244156,-0.05646222084760666,0.0168622899800539,0.012740571983158588,0.08176872879266739,0.04260697215795517,-0.08273571729660034,-0.02789919450879097,-1.9174918694114992e-35,-0.003808922367170453,0.004972666036337614,-0.06437849998474121,0.025839563459157944,0.04553963989019394,-0.02208610065281391,-0.033763337880373,-0.026007957756519318,-0.07558906078338623,-0.011995995417237282,-0.05602037161588669,-0.062306471168994904,-0.038453880697488785,0.006101612001657486,0.03311333432793617,-0.00039953109808266163,0.06175084039568901,-0.03774041682481766,0.04715519770979881,0.06730432063341141,0.06020417436957359,-0.043582890182733536,-0.016710007563233376,-0.0842776969075203,0.023157937452197075,0.060253698378801346,0.01411913987249136,-0.08046671003103256,-0.07552512735128403,-0.012834711000323296,-0.00639699399471283,-0.09267318248748779,-0.07098550349473953,0.022412093356251717,-0.01117753703147173,0.08366826921701431,-0.12648366391658783,0.030702577903866768,-0.00351970293559134,0.06265048682689667,-0.013824621215462685,0.0005125020397827029,0.00731820659711957,0.04816878214478493,-0.005933833308517933,0.03488953411579132,0.05939732491970062,0.09969684481620789,0.06891871988773346,-0.008908847346901894,0.06209573149681091,0.024251092225313187,-0.016638116911053658,0.04148227721452713,0.022660309448838234,-0.0027606324292719364,0.04636036977171898,-0.0365096777677536,0.06632206588983536,-0.017018403857946396,-0.10468334704637527,-0.04388786852359772,-0.04213448986411095,0.070931576192379,-0.015105091035366058,0.027884110808372498,0.000895750941708684,-0.03249449282884598,-0.0846325159072876,-0.033967696130275726,0.03514678776264191,-0.01699703373014927,0.024000411853194237,0.0013487113174051046,0.006721315905451775,0.04085969552397728,-0.15745756030082703,-0.09863852709531784,0.0078044855035841465,-0.07183302938938141,-0.0381833054125309,-0.04865945875644684,0.00974104180932045,-0.0016673537902534008,0.030220994725823402,-0.025031516328454018,0.017252778634428978,0.071503646671772,0.03774172440171242,-0.04720969870686531,0.05721885710954666,-0.07755769044160843,0.08181709051132202,-0.029538173228502274,-0.010067850351333618,-3.273669690884162e-8,-0.07300171256065369,0.05247025936841965,-0.0681774914264679,0.018333876505494118,0.08315745741128922,0.015677791088819504,0.00473227072507143,0.049107711762189865,-0.03276417404413223,0.031681451946496964,-0.1011585220694542,-0.01375950500369072,0.08947734534740448,0.010416715405881405,0.031209783628582954,-0.0037031047977507114,-0.06238711625337601,-0.10046283900737762,-0.052052099257707596,0.021602753549814224,-0.034564368426799774,-0.0477251335978508,-0.0002967611071653664,0.016291938722133636,-0.05398743599653244,0.09136778861284256,-0.03237678483128548,-0.018400754779577255,-0.013831477612257004,0.023141829296946526,0.027565954253077507,-0.03448278829455376,0.013113248161971569,-0.012014786712825298,0.03483583405613899,0.13084542751312256,0.005498442333191633,0.014729495160281658,0.05677667260169983,-0.018037699162960052,-0.038676198571920395,0.05469229817390442,0.02284412272274494,0.0750921443104744,0.12337581813335419,0.06637921929359436,0.018124038353562355,-0.02323208749294281,0.0017144348239526153,0.016185007989406586,0.0012950226664543152,-0.04641259089112282,0.029330991208553314,0.05319877713918686,0.04204871878027916,-0.06315334141254425,0.02302873507142067,-0.034773267805576324,-0.017794182524085045,0.00182440469507128,0.03268164023756981,-0.0033802464604377747,-0.053772933781147,-0.004521953873336315]},{"text":"The animals decided unanimously to create a military decoration, \"Animal Hero, First Class,\" which was conferred there and then on Snowball and Boxer.","book":"Animal Farm","chapter":39,"embedding":[-0.05701909586787224,0.08426498621702194,0.015368498861789703,0.06440502405166626,-0.052971843630075455,0.056022439152002335,0.003359799971804023,-0.005064843688160181,-0.03171670809388161,0.10319562256336212,-0.006230098195374012,0.022369759157299995,-0.010988698340952396,0.04676944389939308,0.016817277297377586,0.024219004437327385,0.002101401099935174,-0.011192051693797112,-0.025016117841005325,0.020457495003938675,0.03491905704140663,-0.021633384749293327,0.0007778143044561148,0.08181868493556976,-0.049176041036844254,-0.02747470699250698,-0.04440537467598915,0.026883292943239212,-0.0394173264503479,-0.05027499794960022,-0.0379728265106678,-0.05644223466515541,0.06388473510742188,0.09710106253623962,-0.061524342745542526,0.023763826116919518,0.10278202593326569,0.044670604169368744,0.048929400742053986,0.09527682512998581,-0.010594881139695644,-0.08262979239225388,0.016688060015439987,0.004115406423807144,0.029920315369963646,-0.0020605504978448153,-0.02122587151825428,-0.044642962515354156,0.023060688748955727,0.0018907360499724746,0.07059208303689957,0.009779835119843483,-0.043555911630392075,-0.006995383650064468,-0.0059868027456104755,0.022206958383321762,-0.02573755383491516,-0.08869457989931107,-0.008789663203060627,-0.02915327064692974,-0.10127180069684982,0.05305902659893036,0.08879601955413818,0.05922762677073479,-0.009209881536662579,-0.08625945448875427,-0.03464888036251068,0.0028906522784382105,0.07701542228460312,-0.041206710040569305,0.10830065608024597,0.01429425273090601,0.08492548018693924,-0.06677574664354324,-0.07459289580583572,0.03598857671022415,0.00025708656175993383,0.09209545701742172,0.09981757402420044,-0.01551134418696165,-0.011546666733920574,-0.03410494700074196,0.019167177379131317,0.021763231605291367,0.059038396924734116,0.047073014080524445,-0.03312091901898384,-0.032207489013671875,-0.06317780166864395,0.02712976559996605,-0.00014428944268729538,-0.0791570171713829,0.027958735823631287,0.03408464789390564,-0.08991988003253937,-0.00018416882085148245,-0.00014385733811650425,-0.04797735437750816,0.0021176545415073633,0.0340883769094944,0.009721810929477215,-0.09969327598810196,0.030079592019319534,0.006270086858421564,0.09123096615076065,-0.025373950600624084,-0.05640959367156029,-0.04859441518783569,-0.009203135035932064,0.004330469761043787,-0.02078869752585888,-0.03470085561275482,-0.03620700165629387,0.06084803119301796,0.0019839585293084383,0.1603550761938095,-0.12005791813135147,-0.025413362309336662,-0.018726862967014313,-0.016618503257632256,0.06959856301546097,0.008472553454339504,0.02143436297774315,-0.013288628309965134,-0.00822115782648325,0.020970355719327927,0.031168518587946892,-5.460649171491532e-33,0.06772025674581528,-0.08692494034767151,-0.0063020517118275166,0.02781093306839466,-0.0575682669878006,-0.036631353199481964,0.03473801165819168,-0.0015020571881905198,-0.02007327787578106,-0.001530319801531732,-0.025479337200522423,0.05313761532306671,0.06580846011638641,0.015344643034040928,0.020854804664850235,-0.018617816269397736,-0.1106865257024765,-0.09476099908351898,0.05662231147289276,0.0513334795832634,0.005732819903641939,0.02138572372496128,-0.006865635048598051,-0.009406129829585552,-0.013686823658645153,0.07556770741939545,-0.04958079382777214,-0.05705071613192558,-0.010360714979469776,0.03708219155669212,0.05354975536465645,-0.09220262616872787,0.019511263817548752,0.00534065579995513,-0.036281321197748184,-0.040638912469148636,0.035162851214408875,-0.08964509516954422,0.012126030400395393,-0.011706388555467129,0.11571840196847916,-0.05802331864833832,-0.04153481125831604,0.0005036121583543718,0.014540592208504677,0.04806562885642052,-0.008574297651648521,0.02543807402253151,0.02147991955280304,0.03897218406200409,0.02033238112926483,0.029600612819194794,0.08630668371915817,-0.06939955055713654,0.012404573149979115,0.01167353056371212,0.04061579704284668,0.045165397226810455,-0.09865785390138626,-0.08288422971963882,0.00035041672526858747,0.044399335980415344,0.03320026397705078,-0.0028794866520911455,0.008266161195933819,-0.05201854929327965,-0.02608869969844818,0.0755801647901535,0.015568409115076065,-0.06015637144446373,0.07072997093200684,0.04406419023871422,-0.050475120544433594,-0.14782051742076874,0.007936704903841019,0.058014485985040665,0.08456119894981384,-0.024258332327008247,-0.016510576009750366,-0.050260432064533234,-0.047646790742874146,0.07341933995485306,-0.01365287508815527,0.05882173776626587,-0.016082212328910828,-0.02256108820438385,0.11186777800321579,-0.014562592841684818,-0.01044926606118679,-0.021465860307216644,0.048693377524614334,0.020035922527313232,0.012015961110591888,-0.02929709665477276,0.01601502299308777,2.4172617874469894e-33,-0.006510032340884209,0.040967538952827454,0.006158383097499609,0.030392538756132126,0.03445206582546234,0.02319713681936264,-0.06380458921194077,-0.011444221250712872,-0.04450972378253937,0.06474242359399796,-0.0064965649507939816,0.0325174480676651,-0.04648878797888756,-0.08776161819696426,0.10653822124004364,-0.06072232872247696,-0.08443434536457062,0.009230346418917179,0.04095104709267616,0.009301054291427135,0.07329349964857101,0.031693994998931885,-0.023746322840452194,-0.05216237157583237,-0.04336932674050331,0.05427810177206993,-0.031031964346766472,-0.047987598925828934,0.04545964300632477,-0.02915261872112751,0.046572908759117126,-0.0017034505726769567,-0.0033503093291074038,0.01952550560235977,0.016827594488859177,0.03750016540288925,-0.00710349390283227,-0.0646340623497963,-0.01550130732357502,0.020413054153323174,0.02218165248632431,-0.0711810290813446,-0.11189035326242447,0.05912257730960846,0.024339554831385612,-0.04439039155840874,0.007886652834713459,0.03880716487765312,0.07258349657058716,-0.02356990985572338,-0.06618617475032806,-0.014446410350501537,-0.004950242582708597,-0.06100282073020935,0.003172176191583276,0.032739847898483276,-0.05606473237276077,-0.08284062892198563,0.04656374081969261,0.02772909216582775,0.0003814419324044138,-0.013749929144978523,-0.056673530489206314,-0.018401628360152245,-0.09341968595981598,-0.06213993579149246,-0.013282772153615952,0.023216979578137398,-0.0786510482430458,0.015472911298274994,0.04025081545114517,0.1317054033279419,0.016937460750341415,-0.0049185981042683125,0.009785822592675686,0.010273177176713943,0.060320593416690826,0.05000204220414162,0.05860728397965431,0.007874933071434498,-0.09919154644012451,-0.008790507912635803,-0.03488299623131752,0.03602662310004234,0.029726160690188408,-0.03355271369218826,0.006331796757876873,0.07622465491294861,0.057352375239133835,0.02115730009973049,0.03458647057414055,0.059304408729076385,0.08815556764602661,0.042955316603183746,-0.05393063277006149,-2.6185620782825936e-8,-0.0336664542555809,0.048277948051691055,-0.0789237767457962,0.042078807950019836,-0.01685290038585663,0.06255459040403366,-0.09512873739004135,-0.11267495155334473,0.005686079617589712,-0.01504514366388321,-0.023469174280762672,0.08935311436653137,-0.0389745868742466,0.013178852386772633,-0.010157043114304543,-0.028647389262914658,-0.017584621906280518,-0.007339280564337969,-0.024201586842536926,-0.01046903245151043,-0.0510798841714859,-0.10124082118272781,-0.06156432628631592,-0.08180904388427734,-0.0991920754313469,-0.02570982649922371,-0.03020654246211052,-0.05161689221858978,0.014210970140993595,0.10260611027479172,-0.06497460603713989,0.041715387254953384,-0.04741496220231056,-0.0647973045706749,0.11717145889997482,0.03593664988875389,-0.016225146129727364,-0.049886059015989304,0.04952645301818848,-0.04988652095198631,0.04372342303395271,0.035446539521217346,0.023725951090455055,0.018450643867254257,0.05934673175215721,0.05976384878158569,-0.029656032100319862,-0.03897852078080177,-0.03737559914588928,-0.0025402551982551813,-0.08363816887140274,-0.013717327266931534,-0.08535055071115494,-0.022404462099075317,-0.08785537630319595,0.05645616725087166,0.04304508492350578,-0.08263945579528809,-0.02509041503071785,-0.06378168612718582,-0.03739557042717934,0.013445178978145123,-0.03472836688160896,0.07333023101091385]},{"text":"Jones's gun had been found lying in the mud, and it was known that there was a supply of cartridges in the farmhouse.","book":"Animal Farm","chapter":39,"embedding":[-0.07817085832357407,0.08445175737142563,-0.02643991820514202,0.0222131609916687,0.09229051321744919,-0.04539079591631889,0.02378763072192669,0.015863701701164246,-0.14113770425319672,0.02843630686402321,0.014420682564377785,0.03968316689133644,0.03848325461149216,-0.015850696712732315,-0.06905347108840942,0.017403099685907364,0.03165164217352867,0.010174274444580078,0.027647849172353745,-0.035497039556503296,-0.07015689462423325,0.03673873841762543,0.04213094338774681,0.010891955345869064,0.03981366381049156,0.08386357873678207,-0.006946133449673653,0.06532739847898483,0.007715302519500256,-0.034134529531002045,0.003812269540503621,-0.0049692620523273945,-0.032546624541282654,-0.034160539507865906,0.09830951690673828,-0.05620671808719635,0.11799155920743942,-0.008631420321762562,0.08265382796525955,-0.006650934927165508,0.055591337382793427,0.0027723745442926884,0.026522960513830185,-0.02183542400598526,-0.08306871354579926,0.014912032522261143,-0.0341467447578907,-0.018522439524531364,0.020519331097602844,-0.028497561812400818,0.024015169590711594,-0.005646511446684599,-0.11441739648580551,0.008554005064070225,-0.01650393381714821,-0.11910843104124069,-0.0176705289632082,-0.002851286204531789,-0.07220667600631714,-0.0104442797601223,0.01403768826276064,0.012564217671751976,-0.012359768152236938,0.06077162176370621,0.05564362555742264,-0.018493633717298508,-0.014666304923593998,-0.08239897340536118,0.02862362377345562,-0.01722482219338417,0.0019933595322072506,0.05176801607012749,-0.03718586638569832,-0.08162742108106613,-0.034631047397851944,0.05673503130674362,0.08942736685276031,0.020327256992459297,0.007865248247981071,-0.06815708428621292,-0.024036424234509468,0.037145063281059265,0.0827978327870369,0.03964683413505554,-0.058207154273986816,0.06050587072968483,0.015571392141282558,-0.00571120111271739,0.011045524850487709,-0.08297955989837646,0.027757231146097183,-0.13816092908382416,-0.05839947983622551,0.07376174628734589,0.05957940220832825,-0.04227516055107117,0.041490018367767334,0.10884445160627365,0.03862043470144272,0.0057901362888514996,-0.04447042569518089,-0.017818940803408623,0.025211134925484657,-0.1377304047346115,-0.011917755007743835,0.01796317845582962,-0.13424906134605408,0.058244455605745316,-0.0044086286798119545,-0.055826444178819656,-0.019782496616244316,0.01366623304784298,0.01122334972023964,0.06488051265478134,0.008359827101230621,-0.02587500587105751,-0.057266101241111755,-0.016010109335184097,-0.14780279994010925,-0.01511322520673275,0.05297518149018288,0.00793396681547165,-0.05065746605396271,0.004523823037743568,-0.014052005484700203,0.07974710315465927,0.02364855818450451,-8.42251694066151e-33,0.01777021214365959,-0.011855974793434143,0.01986761763691902,0.0032579931430518627,0.07342235743999481,0.058278266340494156,0.01644759252667427,0.05679085850715637,0.04517745226621628,0.11279475688934326,-0.06880009919404984,-0.04059586301445961,-0.054468195885419846,0.014544057659804821,-0.11194507777690887,0.06074071675539017,-0.03876321762800217,-0.02081906795501709,0.050150658935308456,-0.03727060556411743,-0.01111532747745514,0.030016519129276276,-0.07011109590530396,-0.02546491101384163,0.03891439363360405,0.1039733812212944,-0.05446264520287514,0.056986790150403976,0.0011695889988914132,0.032835643738508224,0.0071982042863965034,0.033253300935029984,0.02249651961028576,-0.014965640380978584,0.037218302488327026,0.010593557730317116,0.011226787231862545,-0.09184283018112183,-0.10276838392019272,-0.010952151380479336,0.03444080799818039,0.06198926270008087,-0.008627715520560741,-0.039021722972393036,-0.05153684690594673,-0.06542633473873138,-0.08179335296154022,-0.0034047996159642935,0.004491900093853474,0.016708848997950554,-0.02890414372086525,0.00779329426586628,0.026969419792294502,0.07724428921937943,-0.040408905595541,-0.03254975005984306,-0.022208115085959435,-0.08161089569330215,0.023373764008283615,0.011006846092641354,0.05003346875309944,0.060954172164201736,-0.012833989225327969,0.0023878912907093763,0.005185666028410196,0.0019447965314611793,0.03030582331120968,0.0030752497259527445,0.007114539388567209,0.039573684334754944,0.005364131182432175,0.040941111743450165,-0.0015749857993796468,-0.10413961112499237,-0.019574705511331558,-0.0028039892204105854,0.01932429149746895,0.018404854461550713,0.05083024874329567,-0.08718463033437729,0.00014699960593134165,-0.056089144200086594,-0.03313012421131134,0.019638575613498688,-0.03141264617443085,-0.003524316241964698,-0.0031839676667004824,-0.06478172540664673,-0.05659259110689163,0.03219125419855118,-0.038315437734127045,0.011156083084642887,-0.10354070365428925,-0.07631775736808777,0.052936799824237823,3.378707249521177e-33,0.0020422320812940598,0.020613405853509903,-0.07494454085826874,0.07588537037372589,0.004250963684171438,-0.028058357536792755,0.019673099741339684,-0.06986882537603378,0.056494612246751785,-0.03211816027760506,-0.050840698182582855,0.008134977892041206,0.010975060984492302,0.03698689490556717,0.06826739758253098,-0.01114447508007288,-0.05285008251667023,-0.003830015193670988,0.05492470785975456,0.07499957829713821,-0.025058867409825325,-0.04505082592368126,0.005586127284914255,-0.05561605840921402,0.09632045030593872,0.021756494417786598,-0.07513328641653061,-0.08747472614049911,-0.08376321196556091,0.008978011086583138,-0.03698750212788582,-0.016112996265292168,0.026979884132742882,-0.002536821411922574,-0.050864025950431824,-0.044270168989896774,0.10348009318113327,0.04169584810733795,0.009665927849709988,-0.0750771313905716,0.02596168778836727,0.04208144173026085,0.0043126242235302925,0.09755753725767136,-0.04261917620897293,0.020144561305642128,0.032433826476335526,0.01944628544151783,0.10927851498126984,0.143897145986557,0.04791529104113579,0.010383437387645245,-0.0030686045065522194,0.012569066137075424,-0.07949379086494446,0.03964230790734291,-0.041727591305971146,0.015462622046470642,-0.06703488528728485,0.1473161280155182,-0.04599784314632416,0.018572954460978508,-0.13250188529491425,0.025854170322418213,0.0023581108544021845,0.03868633881211281,-0.06749196350574493,0.002772051841020584,0.02173967845737934,-0.08034029603004456,-0.02847592532634735,-0.08115075528621674,0.07706935703754425,-0.0008371011936105788,-0.012184626422822475,-0.016009608283638954,-0.07384715974330902,-0.009358217008411884,-0.00021255892352201045,0.038856811821460724,0.0050103068351745605,-0.08280976861715317,0.0298914834856987,0.06283440440893173,0.03611908107995987,0.0035707440692931414,0.021845992654561996,-0.018908387050032616,-0.01269782055169344,-0.119701087474823,0.004225833807140589,-0.006788221187889576,-0.02571827732026577,0.0115334652364254,-0.0021782638505101204,-2.7381560130379512e-8,-0.01812306046485901,0.03302883356809616,0.031161857768893242,-0.014865895733237267,0.08808215707540512,-0.0002498566755093634,0.06531848013401031,0.10352854430675507,-0.03559628501534462,0.06485233455896378,0.03227582573890686,0.01681753620505333,0.003946860786527395,-0.013425981625914574,-0.01308493409305811,-0.025437941774725914,-0.05831151455640793,-0.1213601604104042,-0.07358625531196594,-0.00665313983336091,0.012656893581151962,-0.021905267611145973,0.006045144516974688,0.02023128792643547,-0.007876599207520485,0.0025134440511465073,-0.007054760120809078,-0.011919382028281689,0.004024127032607794,0.08937328308820724,-0.007621642667800188,0.03928606957197189,-0.012471972033381462,-0.002957384567707777,-0.011423875577747822,-0.016654130071401596,0.04798544570803642,0.08924031257629395,0.018121227622032166,-0.08440069854259491,-0.03035322204232216,-0.010531909763813019,0.0018085259944200516,-0.047634292393922806,0.06989244371652603,0.059635695070028305,0.0124511094763875,0.04340827465057373,-0.10507545620203018,-0.010630046017467976,0.005978739820420742,0.03945648670196533,0.03704606741666794,0.053814180195331573,0.06096475571393967,-0.0722537413239479,-0.01998654194176197,-0.006304534152150154,0.03404812142252922,-0.006459638476371765,-0.08504623174667358,0.02040196768939495,0.05297231301665306,0.0011933015193790197]},{"text":"But there were also rumours of something more serious.","book":"Animal Farm","chapter":40,"embedding":[-0.014743613079190254,-0.001135441241785884,0.05126049742102623,0.05010903626680374,0.04740465059876442,-0.03522663936018944,-0.021340256556868553,0.06923587620258331,0.01593185029923916,0.0032856687903404236,0.019237322732806206,0.006439065560698509,0.04432651028037071,0.01845092512667179,0.09887804836034775,-0.07950323075056076,-0.04927017539739609,-0.03466013818979263,-0.042227908968925476,0.04947331175208092,-0.02133478969335556,0.004657603334635496,0.012430037371814251,0.03169253095984459,0.04072582721710205,-0.009192810393869877,0.015587256290018559,0.01780065894126892,0.005510261282324791,0.056933607906103134,-0.030177798122167587,0.09164182841777802,0.0061628189869225025,-0.08232132345438004,-0.019026225432753563,-0.03432697430253029,-0.015949927270412445,0.02886018343269825,0.04483703523874283,-0.036743875592947006,0.041511695832014084,-0.041366737335920334,0.029924483969807625,0.02937721461057663,-0.0826672613620758,0.03328891098499298,0.004086666274815798,-0.02593144215643406,-0.04875912144780159,0.033731408417224884,-0.006050975993275642,-0.06265886127948761,0.014579296112060547,-0.06755700707435608,-0.005517341662198305,-0.08897633105516434,-0.092137411236763,-0.05499916151165962,0.06805316358804703,0.057634469121694565,0.010292449034750462,-0.03534017875790596,0.010489461943507195,-0.02691047266125679,0.015855493023991585,0.03170087933540344,-0.0622250959277153,0.01963869482278824,-0.030936015769839287,0.0846480280160904,0.05369032174348831,-0.054277434945106506,-0.04762030765414238,-0.023376572877168655,0.0025272995699197054,0.011600803583860397,0.09467548877000809,0.08204206824302673,0.029129963368177414,-0.058132097125053406,-0.007715714629739523,-0.06907640397548676,-0.009560676291584969,-0.07794388383626938,-0.042619094252586365,0.0033828949090093374,-0.033682312816381454,-0.11233439296483994,-0.08425431698560715,0.01446298323571682,0.026250991970300674,-0.0861038789153099,0.006809167098253965,0.08662102371454239,0.024852700531482697,0.0017623261082917452,-0.05311156064271927,0.05773397907614708,-0.04560919851064682,0.04029393941164017,-0.08083778619766235,0.021756015717983246,0.04074864834547043,-0.0560830719769001,0.020547116175293922,0.020178182050585747,-0.010257560759782791,-0.07235018908977509,0.00900733657181263,-0.0032553134951740503,-0.055580370128154755,0.07697749882936478,0.0215283315628767,-0.02767730876803398,0.07766911387443542,0.010036050342023373,-0.017754612490534782,0.016450146213173866,-0.09834925830364227,-0.032269954681396484,0.026709141209721565,0.000489995232783258,-0.03244848549365997,0.009612481109797955,-0.0024300110526382923,0.021951837465167046,-0.039099544286727905,-4.2433913430944514e-33,0.029347790405154228,0.006654710043221712,0.048218950629234314,0.05387246236205101,0.09500876814126968,0.03282702714204788,-0.04117036238312721,-0.018286701291799545,0.017285320907831192,-0.000553834717720747,0.04593566432595253,-0.029353834688663483,-0.07787584513425827,-0.22682836651802063,-0.04326801002025604,0.012316740117967129,-0.05365589261054993,0.05232304334640503,0.004488619975745678,-0.022853994742035866,0.08801061660051346,0.010830671526491642,-0.010489662177860737,-0.031433846801519394,0.021492572501301765,0.07056434452533722,0.0704442635178566,0.020146049559116364,0.07309732586145401,-0.015563326887786388,-0.041928477585315704,0.023108093068003654,0.022365033626556396,-0.0032043387182056904,0.06277315318584442,0.12471749633550644,-0.08254477381706238,-0.15791071951389313,-0.05544331669807434,0.046532049775123596,0.048829544335603714,0.014021510258316994,-0.09794418513774872,0.015047960914671421,0.04835295304656029,0.04724808782339096,-0.1428566724061966,-0.015840791165828705,-0.023915298283100128,-0.030443871393799782,-0.02117692306637764,0.04133565351366997,-0.014397675171494484,-0.06856364011764526,0.04186033084988594,0.05979460850358009,0.013605627231299877,0.03278506174683571,0.083387091755867,0.04985890910029411,0.03441303223371506,0.012325028888881207,-0.04887721687555313,0.0015965236816555262,-0.07119224965572357,0.07140360027551651,0.048568278551101685,-0.031853143125772476,-0.06439733505249023,-0.02094976417720318,-0.010081065818667412,0.01227056048810482,0.006649769842624664,-0.022500647231936455,-0.0943581610918045,-0.018044132739305496,-0.07368718832731247,-0.035583704710006714,-0.03114728257060051,0.054988451302051544,0.00970716867595911,-0.03394315019249916,0.06097771227359772,0.011050751432776451,-0.0330689400434494,-0.03496621921658516,0.011457167565822601,0.059430081397295,-0.042388513684272766,0.04370001330971718,-0.05788169428706169,0.02319754846394062,-0.060618724673986435,-0.03517092764377594,0.02851349487900734,4.910143218317873e-35,-0.05260437726974487,-0.015236871317029,-0.035280391573905945,0.0627855733036995,0.04618453234434128,-0.037398625165224075,0.05195857211947441,-0.010065401904284954,0.038158614188432693,0.01957549899816513,0.0013152158353477716,-0.030626880005002022,0.03555169701576233,-0.032971449196338654,0.03562406077980995,-0.005342228803783655,0.05281507596373558,0.023805521428585052,0.014660308137536049,0.10611448436975479,0.027917461469769478,-0.04348447173833847,-0.07253308594226837,0.08049926906824112,0.015595533885061741,0.05771878734230995,0.06340113282203674,0.012876196764409542,-0.13040263950824738,0.009151997976005077,0.014828968793153763,0.03852791339159012,-0.0683317482471466,-0.008420638740062714,0.03734229877591133,-0.004953963682055473,0.01195443607866764,-0.061981264501810074,0.022408993914723396,-0.010748063214123249,0.0827840119600296,-0.10268134623765945,0.046538565307855606,-0.018199995160102844,-0.027453534305095673,-0.015626927837729454,-0.005721159279346466,0.09300439059734344,0.05948599427938461,-0.007790449075400829,-0.012107370421290398,0.015736589208245277,-0.035084404051303864,0.046036869287490845,-0.01601441018283367,-0.08384748548269272,-0.11631664633750916,-0.05975767597556114,0.05657621845602989,-0.0027369726449251175,-0.052653029561042786,0.0777326375246048,-0.02938774973154068,-0.12359169870615005,-0.00204986403696239,-0.02338295802474022,-0.0534709207713604,-0.060218364000320435,0.07299014925956726,-0.002738321665674448,0.06677577644586563,-0.03050028160214424,-0.033499207347631454,0.07634443044662476,-0.018497956916689873,-0.021218763664364815,-0.033697813749313354,-0.08148518204689026,-0.00012431730283424258,0.02261662483215332,-0.03160692751407623,-0.07454583793878555,0.06556707620620728,0.019955674186348915,0.057362038642168045,0.03375624865293503,-0.03410462290048599,-0.03378693386912346,-0.0131640350446105,0.03259705379605293,-0.0002326164103578776,-0.08367829024791718,0.07357928901910782,0.001684265909716487,0.003888791659846902,-2.3554800776537377e-8,0.024646790698170662,-0.0247014369815588,0.03400715813040733,-0.0797092542052269,0.060408856719732285,0.017453188076615334,0.02579689957201481,0.06405838578939438,0.025613075122237206,0.10086021572351456,-0.0676560327410698,0.029703393578529358,0.01010392140597105,-0.042586781084537506,0.0687723457813263,0.01116250827908516,-0.022430360317230225,-0.05926375836133957,0.016491586342453957,0.03211874142289162,-0.06426515430212021,0.024704838171601295,0.0019142874516546726,-0.06980586051940918,-0.022954106330871582,-0.0010622382396832108,0.009938552044332027,0.012829713523387909,-0.021870626136660576,0.027979617938399315,-0.00595982326194644,-0.13690242171287537,-0.0036887533497065306,-0.04779469966888428,0.016227537766098976,-0.025708245113492012,0.10905121266841888,0.03602813184261322,0.07287908345460892,-0.06563976407051086,-0.00805431604385376,-0.030561327934265137,0.01941678300499916,0.08251167833805084,0.07958412915468216,0.06373276561498642,-0.008707212284207344,-0.033042628318071365,0.02981114201247692,-0.020267872139811516,0.024453576654195786,0.05149168521165848,0.07676549255847931,-0.012503495439887047,-0.005927527789026499,0.06283533573150635,-0.08412568271160126,-0.008699615485966206,-0.07879633456468582,-0.03577004373073578,0.03491659089922905,-0.1267721951007843,0.07777298241853714,0.06227939575910568]},{"text":"What does that mean, Mollie?\" \"He didn't!","book":"Animal Farm","chapter":40,"embedding":[0.008886964060366154,0.0026794455479830503,0.07187429070472717,0.0043707010336220264,-0.043670836836099625,-0.10658367723226547,0.18092896044254303,-0.05053059384226799,0.014634056948125362,-0.13984638452529907,0.027813538908958435,-0.03711194545030594,0.05551386624574661,-0.04478542506694794,-0.029595740139484406,0.021156754344701767,-0.0005226264474913478,0.008938333950936794,-0.04862908646464348,0.025168826803565025,0.03646890074014664,0.0974142849445343,0.03931804746389389,0.0033921869471669197,-0.027620632201433182,0.015637611970305443,-0.07395545393228531,0.05407155305147171,0.04666706547141075,0.05042054504156113,0.0022147896233946085,0.09515126794576645,-0.03779809549450874,0.07005142420530319,0.06099719926714897,-0.051723580807447433,0.05016329139471054,0.01864396035671234,0.017550384625792503,0.056317828595638275,-0.053908441215753555,-0.053707756102085114,-0.06599819660186768,0.052254293113946915,-0.07147157192230225,0.005346277728676796,0.04591115936636925,-0.06639499217271805,-0.0601632259786129,0.027519017457962036,-0.07614737749099731,-0.0849699154496193,-0.051928382366895676,-0.12297690659761429,0.010102957487106323,0.05725765973329544,0.07813787460327148,0.01994895562529564,0.011337565258145332,-0.012282432988286018,-0.05427125468850136,0.008089819923043251,0.024436891078948975,0.13577044010162354,0.01884695701301098,-0.04974835738539696,-0.052410319447517395,-0.05300351604819298,-0.03100559487938881,0.03352903947234154,0.024183783680200577,-0.06671410799026489,0.05177373066544533,-0.0500362254679203,-0.08346524089574814,-0.06806353479623795,0.11518309265375137,-0.017241936177015305,0.09664657711982727,0.04917924106121063,-0.03222835063934326,-0.038970187306404114,-0.00391001533716917,-0.045395802706480026,0.06737115234136581,-0.14280706644058228,-0.007559031713753939,-0.07660241425037384,-0.0712822824716568,-0.04203162342309952,-0.07708562165498734,-0.06302677094936371,-0.08381421864032745,0.11417965590953827,-0.09574770927429199,-0.024985123425722122,0.03221597895026207,0.03562895953655243,-0.1530383825302124,0.10446353256702423,0.028193634003400803,0.008161352016031742,0.061303507536649704,0.059693604707717896,0.04579060152173042,-0.07465271651744843,0.040157247334718704,-0.00988713838160038,0.0032604383304715157,0.02240927517414093,-0.023625081405043602,-0.06156000867486,0.045729417353868484,-0.005610117223113775,0.04609653726220131,-0.06466648727655411,-0.06632356345653534,0.11203818768262863,-0.05879241228103638,-0.03363117575645447,0.015613369643688202,0.06819189339876175,-0.07188548147678375,0.04618927463889122,-0.07514555007219315,0.05606846511363983,0.012814265675842762,-4.669357067711847e-33,0.08644336462020874,0.014627561904489994,0.027168886736035347,-0.045041002333164215,0.04067408666014671,-0.019074629992246628,-0.041497066617012024,-0.026437465101480484,0.043858494609594345,0.00734113110229373,0.007811794523149729,-0.06725481152534485,-0.013270838186144829,0.021865535527467728,0.056436687707901,0.11815161257982254,-0.07235517352819443,-0.08774964511394501,0.0558832585811615,0.03123888000845909,0.036354560405015945,0.03553083911538124,0.010773155838251114,-0.006811472587287426,-0.046509549021720886,-0.014303138479590416,0.010995023883879185,-0.052796315401792526,0.03853210061788559,0.06563612818717957,0.0055508920922875404,0.014217667281627655,0.04696376621723175,0.039811164140701294,-0.012487959116697311,0.026354096829891205,-0.017846738919615746,-0.05944792553782463,-0.04091201722621918,0.005663605872541666,-0.01417734194546938,-0.031544845551252365,0.0035432828590273857,-0.07304133474826813,-0.11311730742454529,-0.07765240967273712,-0.020809654146432877,0.07034232467412949,0.07615236192941666,-0.0005586550105363131,0.02097104676067829,-0.034853495657444,0.017720859497785568,0.06109102815389633,0.01750122383236885,0.03862606734037399,0.024159476161003113,0.0016542542725801468,0.007920081727206707,0.0024861290585249662,-0.07259127497673035,-0.07310420274734497,0.09888777881860733,-0.06628739833831787,-0.05274822190403938,-0.048924464732408524,0.014379845932126045,-0.018073858693242073,0.021875809878110886,0.020392008125782013,-0.009655296802520752,-0.008437651209533215,-0.05338168516755104,-0.022568223997950554,-0.059789638966321945,-0.026292579248547554,0.006170761305838823,-0.008135839365422726,-0.00177617440931499,-0.008987844921648502,0.03992043435573578,-0.029972944408655167,-0.010043797083199024,-0.08910747617483139,-0.035647645592689514,-0.0473828986287117,0.020487232133746147,0.03470069169998169,-0.009045039303600788,-0.051445383578538895,-0.052758295089006424,0.014364052563905716,-0.046179238706827164,0.003165776841342449,-0.020878570154309273,4.376020166645822e-34,-0.008210486732423306,0.039361827075481415,0.045023370534181595,-0.03128857538104057,0.014838533475995064,-0.04971829801797867,-0.029013583436608315,-0.0314372219145298,0.10508956760168076,-0.06698092818260193,-0.08297161757946014,-0.05465210974216461,0.04658767208456993,-0.08445759862661362,-0.04388554021716118,-0.0037139125633984804,-0.022612813860177994,-0.012236285954713821,0.023336438462138176,0.03208925202488899,-0.01382107101380825,-0.07265614718198776,-0.07365063577890396,0.0003618832561187446,-0.024668844416737556,-0.017319483682513237,0.011566388420760632,-0.01283622533082962,-0.029639078304171562,-0.04628629609942436,0.020556993782520294,-0.061622560024261475,-0.05698714405298233,-0.011822018772363663,0.03486128896474838,0.06294525414705276,0.024993285536766052,0.0198543481528759,-0.06460607796907425,-0.022021837532520294,0.03489219769835472,-0.040511537343263626,0.029493065550923347,0.044392846524715424,-0.017537137493491173,0.05833826959133148,-0.053281936794519424,0.06626221537590027,0.08035019785165787,-0.02742352895438671,-0.004982446786016226,0.02857668697834015,0.005475718528032303,-0.024488601833581924,-0.024426568299531937,-0.010987901128828526,0.04393259435892105,0.022976024076342583,-0.04168529435992241,-0.061077918857336044,0.032564353197813034,-0.002444692887365818,-0.0049440739676356316,0.0392422191798687,-0.011274958960711956,0.03582828491926193,-0.005482910200953484,-0.005260903388261795,0.06035545468330383,0.014715536497533321,-0.0014274317072704434,0.09863363951444626,-0.014537923969328403,-0.047093577682971954,0.04204556718468666,0.05864517763257027,-0.14331144094467163,-0.03287597745656967,0.007375573739409447,-0.06563185155391693,0.02817167341709137,-0.013045462779700756,0.005454078782349825,0.02115282043814659,-0.015623284503817558,-0.052347712218761444,-0.023039551451802254,-0.031123630702495575,0.05192086473107338,-0.004469436127692461,0.036486558616161346,0.017161551862955093,0.04025907814502716,-0.0048479787074029446,0.049387577921152115,-2.539178289850952e-8,0.026448365300893784,0.024715606123209,-0.01849967986345291,-0.04238598048686981,0.08559069037437439,0.0960017517209053,-0.02636910416185856,-0.06633318960666656,0.027070194482803345,0.023221850395202637,-0.029778743162751198,0.04141886532306671,0.026158016175031662,-0.02905578538775444,0.01723574660718441,0.0673753097653389,0.054300352931022644,-0.09072311222553253,0.014260096475481987,0.00043290870962664485,0.06723061949014664,-0.013153939507901669,-0.006579324137419462,0.11461552232503891,-0.0019629565067589283,0.021059732884168625,0.015260785818099976,0.08310245722532272,-0.05659636855125427,-0.045459311455488205,0.056782517582178116,0.012782527133822441,-0.06967882812023163,-0.09261385351419449,-0.051610346883535385,0.06092609465122223,0.07311585545539856,0.007853534072637558,0.018988629803061485,-0.020095765590667725,-0.045058201998472214,0.02871187962591648,0.11092349886894226,0.003802433842793107,-0.003187584923580289,0.0518556609749794,-0.02572624944150448,0.021438399329781532,0.021949024870991707,0.023127608001232147,0.024302486330270767,0.019867679104208946,-0.07212622463703156,0.050916947424411774,-0.027038512751460075,-0.03079046867787838,0.02380448952317238,0.007903948426246643,-0.020360948517918587,-0.013235911726951599,0.035951171070337296,-0.0031582112424075603,0.050742048770189285,-0.07810012996196747]},{"text":"Hidden under the straw was a little pile of lump sugar and several bunches of ribbon of different colours.","book":"Animal Farm","chapter":40,"embedding":[-0.03432469815015793,0.04114918038249016,0.00006805859447922558,0.055698201060295105,0.04042823612689972,0.003991426434367895,0.10484199970960617,-0.026726502925157547,0.010961188934743404,0.06543878465890884,0.042323529720306396,0.008735228329896927,-0.027706356719136238,-0.02665862999856472,0.008287813514471054,-0.015519918873906136,-0.04243654012680054,-0.10013816505670547,-0.07316746562719345,0.006846773903816938,0.12806566059589386,-0.01640480011701584,0.08707467466592789,0.0925331637263298,0.0625496655702591,0.082431361079216,0.019647851586341858,-0.01659996062517166,0.02842537872493267,-0.003843789454549551,0.03551784157752991,-0.03786149621009827,0.04530591517686844,0.001178789883852005,0.016791922971606255,-0.029447373002767563,0.1035313606262207,-0.005963299889117479,0.08248983323574066,-0.004065330605953932,-0.03580522909760475,-0.03859618306159973,0.03732413798570633,0.06319437175989151,0.006844215095043182,-0.010651642456650734,-0.016118686646223068,-0.034092243760824203,-0.016767652705311775,-0.046580493450164795,0.02692406252026558,-0.1142561063170433,-0.029408512637019157,-0.07019851356744766,-0.05131799355149269,0.0026425623800605536,0.07438158243894577,0.005673849023878574,0.028380636125802994,0.03845738619565964,-0.031336355954408646,-0.05845736712217331,0.026665659621357918,0.07733733206987381,-0.04187983646988869,-0.0365145206451416,-0.024087218567728996,-0.030670680105686188,0.07261697947978973,-0.03816463425755501,0.012134728021919727,0.038566164672374725,-0.0052722846157848835,-0.03535563498735428,-0.00516398623585701,-0.050198450684547424,0.0888439193367958,-0.0013750660000368953,-0.09113503247499466,0.07065810263156891,-0.02926919236779213,0.045638907700777054,0.06326830387115479,0.13467086851596832,-0.06174217164516449,0.025638289749622345,0.05217011272907257,-0.0391155481338501,-0.0847240537405014,-0.0881807804107666,-0.04213783144950867,0.021860014647245407,0.0005328621482476592,0.0848265290260315,0.0020217769779264927,-0.06139710545539856,-0.012483646161854267,0.01260349154472351,0.1177397295832634,0.0416632704436779,0.035202864557504654,0.0034937625750899315,0.04329265281558037,-0.016203097999095917,0.02712773159146309,0.03268447890877724,-0.05497065559029579,-0.01761401630938053,0.04752375930547714,0.014264034107327461,-0.016742181032896042,0.010418943129479885,0.000058065110351890326,0.058166492730379105,-0.11244523525238037,0.007311861030757427,0.03132371976971626,-0.02567470818758011,-0.09983953833580017,0.03546864539384842,0.04793213680386543,-0.017546243965625763,0.04988408461213112,0.006526027340441942,-0.0027668147813528776,0.09015339612960815,-0.03729649633169174,-3.129176982148468e-33,0.031583454459905624,-0.10989408195018768,0.003318390343338251,-0.03632784262299538,0.12179511785507202,0.02710128016769886,0.0038974895142018795,-0.006869887001812458,-0.02977750264108181,0.11616268754005432,-0.05049610137939453,-0.03169894590973854,-0.09935033321380615,0.004548142198473215,-0.05515133589506149,-0.07846210151910782,-0.10432399064302444,0.0061681438237428665,-0.013292362913489342,-0.004542038310319185,-0.1021946370601654,0.06730734556913376,0.04022868722677231,-0.0314859040081501,-0.017064262181520462,0.1202533170580864,-0.007191798649728298,-0.04235874116420746,0.07481879740953445,0.013183060102164745,0.09266325831413269,0.02370423451066017,0.012043849565088749,-0.004668897017836571,-0.022346965968608856,0.022420912981033325,-0.0024275071918964386,-0.09232461452484131,0.06601305305957794,0.06435982137918472,0.028656112030148506,0.02244306541979313,0.09801921993494034,-0.025246551260352135,-0.10862737894058228,0.0313720740377903,-0.0021753800101578236,0.02153821289539337,0.04192761331796646,0.0029526236467063427,0.00012859843263868243,-0.015660641714930534,0.0392722524702549,0.03677002340555191,-0.015143667347729206,-0.023042211309075356,-0.029360463842749596,0.006962946150451899,-0.0068409377709031105,-0.036968231201171875,-0.00928846001625061,0.0032509330194443464,0.001721782609820366,-0.03387942537665367,-0.0872463807463646,0.01572323404252529,-0.03398355469107628,0.05868232250213623,0.06782223284244537,-0.05472039058804512,-0.05289646238088608,0.05529760196805,-0.07373015582561493,-0.1061129942536354,-0.0351276732981205,-0.0035737452562898397,0.03986192122101784,-0.0033824187703430653,-0.009334261529147625,-0.026318863034248352,0.0559721477329731,-0.039954621344804764,-0.052738647907972336,-0.06746580451726913,-0.09182342886924744,0.04374873265624046,-0.008596020750701427,-0.07087765634059906,-0.03373462334275246,-0.012619593180716038,-0.05349429324269295,-0.01451229490339756,-0.007776134647428989,-0.10294362157583237,-0.043737828731536865,-1.4889417561789736e-34,-0.030583936721086502,-0.017782937735319138,-0.005332215689122677,0.016273627057671547,0.05210127308964729,-0.007707745302468538,0.011500625871121883,-0.010076993145048618,0.03693639114499092,0.022177398204803467,-0.027321482077240944,0.07916047424077988,0.022973831743001938,0.024152779951691628,-0.01881226897239685,0.11950793862342834,-0.014316165819764137,0.0901750922203064,-0.0006054061814211309,0.0035495751071721315,-0.04790507256984711,0.05560608208179474,-0.04182784631848335,-0.07514072954654694,-0.039296675473451614,0.10758519917726517,0.016548452898859978,-0.05615146830677986,0.035359080880880356,-0.033604707568883896,0.06204340606927872,-0.060123756527900696,0.008691526018083096,-0.054304126650094986,-0.036253053694963455,-0.05186406895518303,-0.028016747906804085,-0.0930422991514206,-0.049760956317186356,-0.07210800051689148,-0.05854037404060364,-0.018982233479619026,0.02301100455224514,0.008549580350518227,-0.019817139953374863,0.005172615870833397,-0.11967729032039642,0.035639386624097824,-0.019437912851572037,0.023406460881233215,-0.021990112960338593,-0.014030884951353073,-0.0007825125940144062,0.07776617258787155,-0.04882209375500679,0.07054612040519714,-0.04026313126087189,0.04365694522857666,-0.004139959812164307,0.03218191862106323,-0.046732354909181595,-0.004501920193433762,-0.08851741999387741,-0.017543859779834747,0.010538388974964619,0.017662877216935158,-0.00973325315862894,-0.030403822660446167,0.0021051978692412376,-0.023556964471936226,0.01693364791572094,0.00802579801529646,-0.023755835369229317,-0.020109260454773903,0.0866527408361435,0.03223150596022606,-0.09548212587833405,-0.06268615275621414,-0.06832292675971985,0.029938839375972748,-0.024137429893016815,-0.010571818798780441,0.020665403455495834,-0.013265714049339294,0.019786106422543526,-0.08074755221605301,0.011239289306104183,-0.019050685688853264,-0.0521191842854023,0.00693191634491086,0.003260730765759945,0.055410873144865036,0.060216616839170456,0.07516198605298996,0.08606518059968948,-2.3203790888715048e-8,0.063938669860363,-0.02364257350564003,0.003578305710107088,-0.02115631476044655,0.06765458732843399,-0.021081790328025818,-0.07086142897605896,0.05238261818885803,-0.05453645810484886,0.019186025485396385,-0.042966973036527634,0.1117750033736229,-0.07105527818202972,0.04327263683080673,-0.02567095123231411,-0.04255980998277664,-0.08401426672935486,-0.02840532921254635,-0.019549766555428505,0.06998678296804428,-0.060880012810230255,0.027811609208583832,-0.0407114177942276,-0.006132854148745537,-0.06884714961051941,-0.007055795751512051,-0.0649629756808281,0.09300782531499863,-0.007194760721176863,0.06374778598546982,0.05910777300596237,0.08494691550731659,-0.007949399761855602,-0.023946614935994148,-0.06376395374536514,0.08203846961259842,-0.028218965977430344,0.010630221106112003,0.004799980670213699,-0.021933937445282936,-0.030781468376517296,-0.1296834796667099,0.00558216730132699,0.016384603455662727,-0.02913440205156803,0.008561689406633377,-0.04622339829802513,0.02268877439200878,-0.0809764489531517,0.122469961643219,0.004188472405076027,0.045432042330503464,-0.05377040430903435,0.0851031243801117,0.024378204718232155,-0.07202298939228058,-0.0015218014596030116,0.006961432285606861,-0.005518779158592224,0.03290576487779617,-0.00919989962130785,-0.06341824680566788,0.0588703490793705,-0.006489546503871679]},{"text":"Her coat was newly clipped and she wore a scarlet ribbon round her forelock.","book":"Animal Farm","chapter":40,"embedding":[0.0006184877129271626,0.09080945700407028,0.032148685306310654,0.061364129185676575,0.0007867042440921068,0.020044229924678802,0.11002039164304733,0.03041151911020279,-0.06303143501281738,0.009845486842095852,0.057089854031801224,-0.018151693046092987,-0.05639350414276123,-0.010054972022771835,-0.060711175203323364,-0.010708278976380825,-0.0055975825525820255,0.050374165177345276,-0.04038318246603012,0.056166812777519226,0.035429444164037704,-0.017786210402846336,0.04420974478125572,0.11458784341812134,-0.020280228927731514,-0.0022521645296365023,-0.03432728350162506,-0.04324021562933922,0.012757670134305954,-0.00706115085631609,-0.09903492033481598,-0.05813426896929741,0.04436318576335907,0.04836253076791763,-0.06410706788301468,-0.0440823920071125,0.1342473328113556,0.08150724321603775,0.014272334054112434,0.07529381662607193,-0.027512265369296074,-0.0431591160595417,-0.11359468847513199,-0.007619558833539486,0.0029934539925307035,0.004668934270739555,0.03729122877120972,0.07821303606033325,-0.037923652678728104,-0.03135550022125244,-0.014300583861768246,0.03324463590979576,-0.11929938942193985,-0.08687476813793182,-0.04974401742219925,0.04853746294975281,0.08290139585733414,-0.018760256469249725,0.04923795536160469,-0.010399598628282547,0.007235641125589609,-0.006253184285014868,-0.0587344653904438,0.10589925199747086,0.017468584701418877,-0.0099877854809165,0.006652025040239096,0.018040835857391357,0.05493435263633728,0.030899351462721825,0.09446626156568527,0.018674211576581,-0.025820225477218628,-0.05457396060228348,-0.03952277824282646,0.008765431120991707,0.06340464949607849,0.027315998449921608,0.03731212392449379,0.01784137450158596,-0.13013345003128052,-0.06847469508647919,0.02033955231308937,0.11404775083065033,0.06922990083694458,0.010525938123464584,-0.06521787494421005,-0.08780912309885025,-0.05835249647498131,-0.03151768073439598,0.014403937384486198,0.0002666283107828349,-0.06729482114315033,0.020709479227662086,0.01904061995446682,-0.020996754989027977,-0.05282839387655258,0.0027438648976385593,0.001762639731168747,0.01986529491841793,0.005659596528857946,-0.025264037773013115,-0.0032330125104635954,0.021432993933558464,0.019754961133003235,0.001422425266355276,0.012065138667821884,-0.05447174981236458,-0.036236368119716644,-0.022202860563993454,0.0779554545879364,-0.05488002672791481,0.029498372226953506,-0.0431022010743618,0.03977309167385101,0.06066558137536049,-0.09252610057592392,-0.00011754016304621473,0.008795290254056454,0.06092493236064911,0.015028408728539944,0.056724391877651215,-0.048514463007450104,-0.060040466487407684,-0.04479977861046791,0.03221704065799713,0.0499175600707531,-1.4156536323315388e-33,0.007778971455991268,0.0645584687590599,-0.039550282061100006,0.009512506425380707,0.020623302087187767,0.017389928922057152,0.03537435457110405,-0.059317462146282196,-0.07422313839197159,0.05072818323969841,0.08128294348716736,-0.0709942951798439,-0.03694862499833107,-0.027498314157128334,-0.04386726766824722,-0.018931157886981964,0.09763460606336594,0.02351142093539238,0.014805460348725319,0.08127326518297195,0.06231248006224632,0.09168466180562973,0.022563345730304718,0.00697167357429862,-0.01415130402892828,-0.031739432364702225,-0.009078466333448887,0.016335930675268173,-0.026195921003818512,0.0697399377822876,0.041712477803230286,0.03338860347867012,0.13064958155155182,-0.0006986178341321647,-0.07989045232534409,0.008121884427964687,0.0308212973177433,-0.08812686055898666,0.048698700964450836,0.04107256233692169,0.027434632182121277,0.014839490875601768,0.0792391449213028,0.03898485377430916,-0.15376383066177368,-0.04389112442731857,-0.009875288233160973,0.07452964782714844,-0.05884099751710892,0.05532697215676308,0.05321773141622543,-0.0009648509440012276,0.044199138879776,-0.01388228964060545,-0.04514742270112038,0.10288745164871216,0.0013311513466760516,-0.0041516791097819805,0.013872205279767513,-0.018053891137242317,0.02706477977335453,0.0318278893828392,-0.008113186806440353,0.012769477441906929,0.02996467426419258,0.025511518120765686,0.022192640230059624,-0.01839754544198513,-0.005396041553467512,-0.019830085337162018,-0.13251008093357086,0.06330915540456772,-0.023463835939764977,0.02487073838710785,-0.0017673717811703682,0.017848927527666092,-0.005905584432184696,-0.06503324210643768,0.007353947963565588,-0.0789710208773613,-0.09417489171028137,0.05807240307331085,-0.06826375424861908,0.03463776037096977,0.021668311208486557,-0.04571627825498581,0.07431411743164062,0.026994232088327408,-0.038191188126802444,-0.019917838275432587,0.11075608432292938,-0.015937674790620804,0.044248856604099274,-0.0850931778550148,-0.018590977415442467,4.326506599714761e-34,0.029346320778131485,0.02378075383603573,-0.01955402083694935,0.08210612833499908,0.016351260244846344,-0.010422620922327042,-0.09694018959999084,0.009560924023389816,-0.09689757227897644,-0.05269298329949379,0.0892028883099556,-0.0483585000038147,-0.05648215115070343,0.006199499126523733,0.012107099406421185,0.013385538011789322,0.0748211070895195,0.08794576674699783,0.023463932797312737,-0.02231939323246479,-0.04306359216570854,-0.1345362663269043,0.005596057511866093,0.018924588337540627,-0.07016215473413467,0.04529692977666855,-0.006059715058654547,-0.044927868992090225,0.014602272771298885,-0.06505400687456131,-0.016488224267959595,-0.030511125922203064,-0.04920962452888489,0.024884697049856186,-0.032484304159879684,0.09213025867938995,0.03892729431390762,-0.07941337674856186,0.047971680760383606,-0.05246177688241005,0.01589362695813179,-0.08076618611812592,0.047137774527072906,0.09682486951351166,-0.0018498285207897425,-0.015193714760243893,0.007959692738950253,0.11417241394519806,-0.03282250091433525,0.057180166244506836,-0.034482840448617935,-0.038334254175424576,0.07100163400173187,0.06365230679512024,-0.06010523438453674,-0.003971735946834087,-0.07955315709114075,-0.05585034191608429,0.034027401357889175,0.06284542381763458,0.03378309682011604,-0.03720526397228241,-0.06963251531124115,-0.04461992159485817,0.02486846223473549,-0.04983220249414444,-0.03429557383060455,-0.03666530176997185,-0.08267286419868469,-0.002155228750780225,0.04612262547016144,0.08444938063621521,0.011623453348875046,0.009288187138736248,0.026953987777233124,-0.018084196373820305,-0.038403160870075226,-0.04943583905696869,-0.030018769204616547,0.09823200106620789,-0.05663149058818817,-0.004094777163118124,-0.03985470160841942,-0.0055503868497908115,0.04001350700855255,-0.017239170148968697,-0.00003318675226182677,0.06882928311824799,-0.03289947286248207,-0.09152033925056458,-0.054601412266492844,-0.01765276864171028,0.043803151696920395,0.0011609626235440373,0.028564441949129105,-1.6802180979880177e-8,0.004935992881655693,0.0711652934551239,0.005539104342460632,-0.055247414857149124,0.021901289001107216,0.05700274184346199,-0.027690790593624115,-0.060116205364465714,-0.03225995972752571,-0.017810842022299767,-0.04689252749085426,0.046031080186367035,0.016449280083179474,-0.024384545162320137,-0.06208231300115585,0.01525020319968462,-0.014574892818927765,-0.015635063871741295,-0.03734613209962845,-0.046059370040893555,0.042740948498249054,-0.0036999902222305536,0.028430111706256866,-0.0026258951984345913,-0.06747597455978394,0.005314106587320566,-0.043622907251119614,0.044793616980314255,-0.02783547155559063,0.08094268292188644,0.025492269545793533,-0.03914687782526016,0.039050959050655365,-0.032658547163009644,-0.06893185526132584,0.019272197037935257,-0.010536231100559235,0.022101830691099167,0.08642081916332245,-0.025263667106628418,0.07409214973449707,-0.06118227168917656,0.026621485128998756,0.024862919002771378,0.007603442296385765,-0.035631924867630005,0.04865165427327156,0.01417925301939249,-0.032414510846138,0.03675365075469017,0.017899006605148315,-0.022289685904979706,-0.002356535056605935,0.07150980085134506,-0.07021551579236984,-0.017870087176561356,0.04232807457447052,-0.02169705368578434,0.039026353508234024,0.08328374475240707,-0.13220606744289398,-0.08975259959697723,-0.01333771925419569,-0.006541338283568621]},{"text":"Many meetings were held in the big barn, and the pigs occupied themselves with planning out the work of the coming season.","book":"Animal Farm","chapter":41,"embedding":[0.12104692310094833,0.014427821151912212,0.03898116201162338,-0.017496751621365547,0.029834428802132607,-0.02359299175441265,-0.11715274304151535,-0.027802754193544388,-0.019077450037002563,0.07866457104682922,-0.01472311932593584,0.036717791110277176,0.0008097264217212796,-0.007907679304480553,-0.020539114251732826,-0.046348687261343,0.025692665949463844,-0.046424854546785355,0.01615840569138527,-0.017551355063915253,-0.023156534880399704,-0.043728798627853394,-0.027095599099993706,0.025359805673360825,-0.015399213880300522,-0.05555393174290657,-0.055392786860466,0.02080000750720501,-0.012077314779162407,-0.0008966570603661239,-0.023039719089865685,0.04093722254037857,0.04674151912331581,-0.05471068620681763,0.0015319444937631488,0.08194396644830704,0.05590656027197838,0.009506233967840672,0.11857515573501587,0.006513540633022785,-0.011598124168813229,-0.09721125662326813,0.02535012736916542,-0.02555268630385399,-0.027767624706029892,-0.016204623505473137,0.03217489644885063,-0.06916645914316177,0.017300674691796303,0.0008069240138866007,0.024203358218073845,0.031030891463160515,-0.005922398064285517,-0.049752186983823776,-0.0030650335829705,-0.015204520896077156,-0.062397394329309464,-0.08058882504701614,0.02733110822737217,-0.04923436418175697,0.0032118281815201044,-0.029693054035305977,-0.01813480071723461,0.023607345297932625,0.01174623891711235,0.02293124608695507,0.017041059210896492,0.04447653517127037,0.007960133254528046,-0.08991918712854385,-0.013205057941377163,-0.04864683002233505,0.009428801015019417,-0.09908054023981094,-0.003470703260973096,0.008996065706014633,-0.004779658745974302,0.02000700868666172,0.1033017709851265,-0.06409192085266113,-0.02045944146811962,0.0018892044899985194,-0.018406925722956657,-0.029933622106909752,-0.023791033774614334,0.02208390086889267,-0.010315773077309132,0.026504119858145714,-0.003754531731829047,-0.00576610816642642,-0.050464991480112076,-0.07567542046308517,-0.047321826219558716,0.04768795147538185,-0.01157922949641943,-0.02740020863711834,-0.06230178847908974,0.06200384348630905,0.06125645712018013,0.05744217336177826,0.018529409542679787,0.024397417902946472,0.03395784646272659,-0.0885687917470932,0.011381684802472591,-0.04754970967769623,-0.07909535616636276,-0.014494357630610466,0.028667928650975227,0.00027567343204282224,-0.04800115153193474,0.05128784850239754,0.0032080227974802256,0.07740001380443573,0.03698917105793953,0.16864849627017975,-0.0189595278352499,-0.01964014582335949,-0.056204669177532196,0.008661539293825626,0.134632408618927,0.08532167226076126,0.030628513544797897,0.019977033138275146,-0.010532389394938946,0.05862267315387726,0.06254942715167999,-4.380390066895004e-33,0.018023567274212837,-0.07102958112955093,-0.002193692373111844,0.05732610076665878,0.16549363732337952,0.02335899882018566,-0.08055448532104492,-0.005246705841273069,0.08315345644950867,0.03405994549393654,0.014773131348192692,0.024546170607209206,0.04039683938026428,-0.08330068737268448,0.012115019373595715,-0.08230002224445343,-0.0061391242779791355,-0.012573303654789925,-0.037293560802936554,-0.020876217633485794,-0.052069470286369324,0.019789673388004303,-0.010156359523534775,0.09673719108104706,0.042974911630153656,0.004960090387612581,0.03014710173010826,-0.0556919164955616,-0.019732195883989334,0.037857357412576675,-0.009566138498485088,-0.060407012701034546,-0.04784456640481949,0.014786242507398129,0.003342775860801339,-0.02035929448902607,0.023664217442274094,-0.08710827678442001,0.10962219536304474,-0.026568543165922165,0.08439473062753677,-0.05615466460585594,0.024754224345088005,0.012843793258070946,0.007699207402765751,0.08123242110013962,-0.0826302021741867,0.07619114220142365,-0.0677790567278862,-0.03634639456868172,0.06947604566812515,-0.03083965554833412,-0.016916528344154358,0.04468786343932152,0.07739850878715515,-0.015157584100961685,-0.004683402832597494,-0.015545357018709183,0.00830669142305851,0.07156353443861008,0.011367352679371834,0.09352931380271912,-0.040486399084329605,0.06637264788150787,-0.05021879822015762,-0.032009974122047424,-0.010641830042004585,0.06216888129711151,-0.020908016711473465,0.030204469338059425,0.017995238304138184,-0.032415762543678284,-0.022645117715001106,-0.11675842106342316,-0.08021018654108047,-0.014311952516436577,0.03444491699337959,0.04264715686440468,-0.03230030834674835,0.0011397753842175007,0.09411896020174026,0.06748878210783005,-0.06748013943433762,-0.008419178426265717,-0.012091205455362797,0.04746951907873154,0.04838810861110687,-0.02466539479792118,0.01841481775045395,-0.049319859594106674,-0.016729410737752914,0.035391200333833694,0.007119395304471254,-0.05103199556469917,-0.023124882951378822,1.759957121548837e-33,0.0378035344183445,0.008942749351263046,0.045683544129133224,-0.04046659171581268,0.035096388310194016,-0.03164596110582352,-0.017392897978425026,-0.10345863550901413,0.018289580941200256,0.003997255582362413,-0.07457324117422104,-0.039183251559734344,-0.04583768546581268,-0.0062441714107990265,0.020990611985325813,-0.03273012489080429,0.07210567593574524,-0.060305505990982056,0.04314917325973511,-0.05270403251051903,-0.03164972364902496,0.014152903109788895,-0.010580964386463165,0.025565827265381813,0.013422323390841484,-0.012773043476045132,-0.013256660662591457,-0.00027537092682905495,-0.004158426076173782,-0.018686331808567047,-0.0604131817817688,-0.07430414110422134,0.00009022413723869249,0.0306247491389513,0.026199162006378174,0.0709889605641365,0.04933922365307808,-0.0009277649223804474,-0.08713886141777039,-0.0036246951203793287,0.03614348918199539,-0.0953756794333458,-0.13426324725151062,0.034287214279174805,-0.04987761750817299,0.059035349637269974,-0.05726296454668045,-0.003022446995601058,-0.013826248236000538,0.040323127061128616,0.022020306438207626,0.03176465630531311,-0.017697429284453392,-0.09293273091316223,-0.07950671017169952,0.06445018947124481,-0.020135995000600815,-0.03152982145547867,0.027823863551020622,-0.03759787976741791,-0.016566606238484383,0.016924502328038216,-0.006957612931728363,0.0030474152881652117,0.03477941453456879,-0.047493718564510345,-0.05461003631353378,-0.07604190707206726,0.03132975473999977,0.05068476125597954,-0.03260582685470581,-0.015596255660057068,-0.03913220763206482,0.043516796082258224,0.042112771421670914,0.07982215285301208,-0.041056543588638306,-0.06146661937236786,0.003998542204499245,0.014244556427001953,-0.09618151932954788,0.023452693596482277,0.029461126774549484,0.09556230902671814,0.04513270780444145,-0.016489939764142036,0.011309951543807983,0.16915327310562134,0.014990757219493389,0.026890000328421593,0.06181773915886879,-0.05235394462943077,0.048905011266469955,0.031236231327056885,0.0040753427892923355,-2.3420488659553484e-8,-0.0019884821958839893,0.025189312174916267,0.0017884086119011045,0.00998543668538332,0.10109914094209671,-0.03191335126757622,-0.012155094183981419,0.02219601906836033,0.056650642305612564,0.12202393263578415,-0.05629194527864456,0.10437669605016708,-0.04134406894445419,0.07241960614919662,0.013899498619139194,0.07866024225950241,-0.005976703017950058,-0.024656575173139572,-0.06080963462591171,-0.02364698238670826,-0.04791759327054024,-0.017126871272921562,-0.06172355264425278,-0.01686767116189003,0.044681962579488754,-0.04429880902171135,-0.09769201278686523,0.09921902418136597,-0.0482521653175354,0.02318454720079899,-0.005811586510390043,-0.03668174147605896,-0.06703593581914902,-0.07470671087503433,-0.008709396235644817,0.0002682154008653015,-0.05593502148985863,0.00867281761020422,0.13236862421035767,-0.09129086881875992,-0.044546179473400116,0.019927239045500755,0.06271042674779892,0.03160347416996956,-0.01818114146590233,-0.020900333300232887,-0.06310604512691498,0.06778957694768906,0.008669378235936165,-0.08090228587388992,-0.11250893026590347,0.0760064423084259,0.08612509816884995,0.022054607048630714,0.003888566978275776,0.00494632963091135,-0.04940414801239967,-0.04695580527186394,0.1202913373708725,-0.03761351481080055,-0.039811719208955765,0.04106580466032028,-0.0737745389342308,0.026000402867794037]},{"text":"Each had his own following, and there were some violent debates.","book":"Animal Farm","chapter":41,"embedding":[0.09212374687194824,0.007105280179530382,-0.06084267422556877,0.018708964809775352,0.013171318918466568,0.06267765909433365,-0.03661162033677101,-0.038127098232507706,-0.020799927413463593,0.012838024646043777,0.041383083909749985,0.023150335997343063,0.050467878580093384,-0.06539108604192734,0.037368711084127426,-0.008063293062150478,-0.07712904363870621,-0.03637299686670303,-0.056190818548202515,0.04126153886318207,-0.048451218754053116,-0.009938085451722145,0.035722989588975906,-0.017582984641194344,0.014215672388672829,0.024409200996160507,0.044954828917980194,0.029608527198433876,0.03877178207039833,0.02948879450559616,0.03628512844443321,-0.09070269763469696,-0.006584462244063616,-0.013592968694865704,0.026096906512975693,-0.11575060337781906,0.13590964674949646,0.10861530900001526,0.04416678845882416,-0.04913320392370224,0.007686913013458252,0.02019662596285343,0.045948173850774765,-0.02232837677001953,-0.04954506456851959,-0.019141700118780136,-0.10404428094625473,0.01613357663154602,-0.008185077458620071,-0.006133553571999073,-0.017987728118896484,-0.0023634894751012325,-0.04422652721405029,-0.07212210446596146,0.06552033126354218,-0.03475184366106987,0.023790301755070686,0.04747620224952698,0.062368880957365036,0.031589001417160034,-0.031023545190691948,-0.00934579223394394,-0.05290234461426735,0.05912940949201584,0.03615296632051468,-0.0026264190673828125,0.026575423777103424,0.019781606271862984,-0.006819299887865782,0.08739377558231354,0.03653213381767273,0.03302544355392456,0.07646837830543518,-0.05406438186764717,-0.0488961786031723,-0.044253651052713394,-0.01617436297237873,0.08316405862569809,-0.027006376534700394,-0.058751288801431656,-0.006529236678034067,0.03764594718813896,-0.029277244582772255,-0.03130423650145531,0.05571417883038521,-0.06474766135215759,-0.020420070737600327,-0.05090034380555153,-0.01038647722452879,0.03994699567556381,-0.015973303467035294,0.04425331950187683,0.0765337124466896,0.006712784990668297,0.011501741595566273,0.008752487599849701,-0.0007589412271045148,0.057091373950242996,0.07118318229913712,0.043086521327495575,-0.007533818017691374,-0.024062251672148705,-0.053611867129802704,-0.010895741172134876,-0.014453811571002007,-0.010540132410824299,-0.050535649061203,-0.1114514172077179,-0.1151939332485199,0.005798957776278257,-0.05874168872833252,-0.007264724001288414,-0.0005763742374256253,-0.014770380221307278,0.10532797873020172,0.005223090760409832,0.08464173227548599,0.016043582931160927,-0.04983798414468765,0.042537447065114975,-0.019730599597096443,-0.017697572708129883,-0.051287490874528885,0.03683855012059212,0.04134727269411087,-0.007672885898500681,-0.07734689861536026,-4.924623380174584e-33,0.049940381199121475,-0.14158613979816437,-0.10881549119949341,0.07835771888494492,0.02398020774126053,0.06901953369379044,-0.0694531500339508,-0.03502345457673073,0.0655103325843811,-0.07102874666452408,0.027117202058434486,0.02089308761060238,0.027471398934721947,-0.09810059517621994,-0.01911657117307186,0.020574718713760376,-0.08725803345441818,0.005316497758030891,-0.06144234910607338,-0.09811010956764221,0.0026870451401919127,0.104080930352211,-0.01821194402873516,0.07142793387174606,0.00945612695068121,-0.0011352092260494828,0.055892813950777054,-0.024084215983748436,-0.018317406997084618,0.021970579400658607,-0.05447792634367943,0.0300743468105793,-0.04018786549568176,0.07988999783992767,0.10374168306589127,0.08899185806512833,0.07122933119535446,-0.09091838449239731,0.0014685273636132479,0.047356657683849335,0.023839840665459633,0.04889536648988724,-0.007430249825119972,-0.014550341293215752,-0.026040587574243546,0.03016597405076027,-0.11678557842969894,-0.004546008072793484,0.02013114094734192,0.020563852041959763,-0.052901484072208405,-0.0035727289505302906,0.043408606201410294,-0.03284959867596626,-0.005689759273082018,-0.0035690495278686285,-0.09621655941009521,0.02934953197836876,0.020259276032447815,0.01859333924949169,0.029562054201960564,0.07925727963447571,-0.019520031288266182,0.013252077624201775,-0.01779043674468994,0.037984222173690796,-0.0714099183678627,0.03459905833005905,-0.019665757194161415,0.019935984164476395,-0.0017525473376736045,0.04566825181245804,-0.04963846132159233,-0.10426115989685059,-0.05726107954978943,0.02378084510564804,-0.10692451149225235,-0.0222691148519516,-0.09633555263280869,-0.009603059850633144,-0.0650104284286499,-0.05071909353137016,0.05540529638528824,0.023572629317641258,-0.04522544518113136,-0.0035245756153017282,0.016465242952108383,-0.03969394043087959,0.014230461791157722,0.012356714345514774,-0.04203963279724121,0.0048053874634206295,0.06274277716875076,-0.04269678518176079,-0.04688350111246109,1.0687012400630596e-33,-0.08231551945209503,0.04547106474637985,-0.02833378128707409,0.1338338404893875,0.05987214297056198,0.00011193560931133106,-0.06357605755329132,-0.00840807892382145,0.04876047745347023,-0.03706727176904678,0.0004750615044031292,-0.03983014076948166,-0.013593817129731178,0.02001103386282921,0.007637712638825178,-0.01977534219622612,0.04006965085864067,-0.02583998441696167,-0.0042759426869452,0.06370004266500473,0.0004051672003697604,-0.026335956528782845,-0.0434684194624424,-0.0449206717312336,0.03455531224608421,0.013164892792701721,0.020760389044880867,-0.03138544782996178,-0.03376813232898712,0.04434806481003761,0.0277058444917202,0.03283428028225899,0.008042914792895317,0.014260699041187763,0.034129831939935684,0.11512193828821182,0.005177090875804424,-0.027767635881900787,0.06975847482681274,-0.08433464914560318,-0.015582971274852753,-0.031144797801971436,0.04081081226468086,0.055621929466724396,-0.035456541925668716,0.07948241382837296,-0.06796669214963913,0.03158949688076973,-0.021538246423006058,-0.05593894422054291,-0.1057896763086319,0.06253894418478012,-0.03510387986898422,-0.006051371339708567,-0.003991142846643925,-0.07855843007564545,0.02134205959737301,-0.003414007369428873,-0.05228213593363762,0.016149120405316353,-0.035491760820150375,0.007609586697071791,-0.03354693949222565,-0.04942478612065315,0.0399225689470768,-0.007280327379703522,-0.062383875250816345,-0.026837361976504326,0.012745831161737442,0.004335005301982164,-0.03658297657966614,-0.01608024351298809,0.00041187956230714917,0.028601614758372307,0.06009514629840851,0.05777474492788315,-0.027101965621113777,-0.04831303283572197,-0.019979529082775116,0.04024318605661392,-0.034084025770425797,0.008080154657363892,-0.04756913706660271,0.06307780742645264,-0.06701736897230148,0.09439694881439209,0.013701371848583221,0.002859668340533972,0.013067321851849556,0.048587866127491,0.09845516830682755,-0.11489032208919525,0.10295339673757553,-0.048501476645469666,0.0074658324010670185,-2.3769567647491385e-8,-0.02848340943455696,-0.015741290524601936,-0.01317712850868702,0.04882926866412163,0.011151259765028954,0.06107764691114426,0.04184424877166748,-0.019299421459436417,-0.006981004029512405,0.1503867506980896,-0.00554811442270875,0.034585606306791306,-0.023891489952802658,-0.012399205006659031,-0.033116500824689865,-0.04530064016580582,-0.014260107651352882,-0.13548552989959717,-0.033422619104385376,0.004586239345371723,-0.02661408670246601,-0.03926932066679001,-0.004428550135344267,-0.0028393585234880447,0.06164320185780525,0.10373864322900772,-0.05530057102441788,0.008454859256744385,-0.03833252564072609,0.045927055180072784,-0.002136712661013007,-0.06247743219137192,-0.15760497748851776,-0.10910818725824356,-0.06111980229616165,0.0997738465666771,-0.05754103884100914,0.051925625652074814,0.08561647683382034,-0.09100750088691711,-0.03366410359740257,0.014966932125389576,0.05528457462787628,0.042116742581129074,0.08538275957107544,0.03397569805383682,-0.0269888024777174,0.01180214248597622,0.004133608657866716,-0.07010988891124725,-0.02840540185570717,0.0003248909197282046,0.0885424092411995,-0.025821171700954437,0.0194813571870327,-0.01165490597486496,0.01596713438630104,0.06329679489135742,0.0032067052088677883,-0.0272659994661808,0.08859013020992279,0.008323071524500847,0.017766449600458145,0.01976700872182846]},{"text":"Snowball had made a close study of some back numbers of the 'Farmer and Stockbreeder' which he had found in the farmhouse, and was full of plans for innovations and improvements.","book":"Animal Farm","chapter":41,"embedding":[-0.0014967387542128563,0.04102429002523422,0.036226943135261536,0.013388008810579777,0.01739015243947506,0.028921373188495636,-0.0738355815410614,0.0581948459148407,-0.08065495640039444,-0.023069510236382484,-0.053024984896183014,0.05747588723897934,-0.032491330057382584,-0.035513292998075485,-0.044134221971035004,-0.047864753752946854,-0.0631963387131691,0.035180602222681046,-0.03525155782699585,-0.10432971268892288,-0.11500280350446701,-0.022156821563839912,0.028659584000706673,0.01585652492940426,0.09584382176399231,0.06229199096560478,-0.0452321395277977,0.057778723537921906,-0.006070003844797611,-0.038962334394454956,-0.011544683016836643,0.07189733535051346,0.0788574367761612,0.010708477348089218,-0.029433995485305786,0.07329291105270386,0.008791455067694187,0.09122259169816971,-0.010815015062689781,0.046400539577007294,0.014957654289901257,-0.029518309980630875,0.050663985311985016,0.006634610705077648,-0.08580615371465683,0.03096427395939827,-0.02037264220416546,-0.019097723066806793,0.04245481640100479,0.021217437461018562,-0.07035000622272491,-0.03978431597352028,-0.02165745384991169,-0.06167218089103699,0.06370368599891663,0.033739831298589706,-0.0017209823708981276,-0.03948583826422691,-0.011834746226668358,-0.03194887563586235,0.009266545996069908,-0.031199663877487183,-0.02893514186143875,-0.053693074733018875,0.050280049443244934,-0.03478747606277466,-0.05883028358221054,-0.042933057993650436,0.01023063249886036,-0.02587486431002617,0.11235006153583527,0.08324416726827621,-0.04876439645886421,-0.0222652368247509,-0.0859416276216507,0.03637723997235298,-0.045871552079916,0.025319091975688934,0.02501843310892582,-0.0413416251540184,0.04565905034542084,0.006744226906448603,-0.007294562179595232,0.020561277866363525,-0.07496146857738495,-0.005683310329914093,0.0802089050412178,-0.0218767412006855,0.05762184411287308,0.044241517782211304,-0.00037781320861540735,-0.1179564967751503,-0.060963526368141174,0.06275409460067749,-0.10487686097621918,0.089662104845047,0.0002449376042932272,-0.01679104007780552,0.018547387793660164,0.04584513604640961,0.026715269312262535,-0.03758581355214119,0.13324889540672302,-0.05207186937332153,-0.02219867706298828,-0.013738345354795456,-0.09957463294267654,0.0058428216725587845,-0.0019294152734801173,0.006767557002604008,0.005054961424320936,-0.008253215812146664,-0.05554052069783211,0.10605131089687347,0.07709349691867828,-0.04701267182826996,-0.0743877962231636,-0.00991756096482277,-0.09159693121910095,0.04188241437077522,0.10629270225763321,0.0965791642665863,0.01561756432056427,0.006992671173065901,0.05945620685815811,0.05283179134130478,0.008974682539701462,-3.0477249581990765e-33,0.03182957321405411,-0.013995821587741375,0.010883431881666183,0.10390864312648773,0.09560909867286682,-0.04637819901108742,0.03095041774213314,0.08462486416101456,0.04074576124548912,-0.0037376899272203445,0.006040039472281933,0.03951720520853996,-0.06583012640476227,0.011831024661660194,0.021779431030154228,-0.06317941099405289,-0.10656511038541794,-0.02493937499821186,0.009916717186570168,0.0564003624022007,0.03169103339314461,-0.04145399481058121,-0.0102248415350914,0.021046852692961693,0.00966061931103468,0.036823347210884094,0.034470975399017334,-0.07316691428422928,0.026917625218629837,0.014419261366128922,0.07767488062381744,0.006687261164188385,-0.05502130463719368,-0.0011323135113343596,0.04663486033678055,-0.027027005329728127,-0.023443618789315224,-0.11385656893253326,0.003486131550744176,0.025184528902173042,0.002534205559641123,-0.005386704578995705,-0.010068805888295174,-0.0144649064168334,0.0031996839679777622,-0.0740383192896843,-0.00566654559224844,0.06267376244068146,0.014080235734581947,0.04122096672654152,0.01698087900876999,0.019061710685491562,0.033243853598833084,-0.093610979616642,0.07194454967975616,0.007150811608880758,-0.03919240087270737,0.03274744376540184,-0.0037137214094400406,0.04100921005010605,0.08810582011938095,0.07863317430019379,0.08046318590641022,-0.036527156829833984,-0.07201461493968964,0.04745350778102875,0.016512000933289528,0.05441192537546158,0.008473964408040047,0.08597815781831741,0.01873769611120224,-0.019678762182593346,-0.0565987229347229,-0.001506179105490446,0.004736419301480055,0.02234005555510521,-0.0329553447663784,0.005085659213364124,0.0324757844209671,-0.10614663362503052,0.023665033280849457,-0.022889353334903717,-0.08085424453020096,0.06243768334388733,-0.12082352489233017,0.014169980771839619,0.028613686561584473,-0.006153738126158714,-0.00951254554092884,0.010164421051740646,-0.019231071695685387,-0.009248781017959118,-0.07423470914363861,-0.03545784577727318,-0.02603832632303238,-3.234569234249302e-34,-0.08129842579364777,-0.023876817896962166,0.005746608134359121,0.04829608276486397,-0.020941276103258133,0.0027029477059841156,-0.03936150670051575,-0.05837688595056534,0.056305207312107086,0.012922060675919056,-0.04823051020503044,0.07396231591701508,0.016880668699741364,-0.04951176792383194,-0.015296407975256443,-0.043958358466625214,-0.01589816063642502,0.029021982103586197,-0.01083473302423954,-0.060531485825777054,0.04081819951534271,0.011533087119460106,-0.08498554676771164,-0.01946280524134636,0.026653122156858444,0.005921495147049427,-0.08089447766542435,-0.014494653791189194,-0.07553346455097198,-0.01014899741858244,0.05825669318437576,-0.07934023439884186,0.043620411306619644,-0.04129275307059288,-0.09235242754220963,0.007631678134202957,0.04545493423938751,0.0011397134512662888,0.003457768354564905,-0.07885541766881943,0.07417123019695282,-0.05599609389901161,0.024873090907931328,0.04621998965740204,0.029655400663614273,-0.029668118804693222,-0.09432367980480194,0.04184041544795036,0.1796334981918335,0.025561543181538582,0.03913237527012825,0.09640096873044968,-0.050354789942502975,-0.012757522985339165,-0.0666155070066452,0.0010252873180434108,0.051964208483695984,-0.08882597088813782,-0.0062428852543234825,0.03445397689938545,-0.07753574848175049,-0.03108423389494419,0.002654652576893568,0.030523866415023804,-0.024839885532855988,-0.02386377938091755,-0.10429515689611435,-0.08430448174476624,-0.039558786898851395,-0.025342091917991638,-0.01945333182811737,-0.0635729506611824,0.10440167039632797,0.03909269720315933,-0.029246123507618904,0.05200543627142906,0.03374117612838745,-0.027272282168269157,0.01056639477610588,0.022707242518663406,-0.043906133621931076,-0.06376451998949051,0.03196326643228531,0.024641666561365128,0.04393282160162926,0.005172204226255417,0.011335293762385845,0.04122812673449516,0.0012807900784537196,0.04500962793827057,0.01758928969502449,0.03219350054860115,0.015552638098597527,-0.01242705900222063,0.03166951239109039,-3.3838819746279114e-8,0.012819716706871986,0.03389158844947815,0.01838960126042366,0.008131572976708412,0.09622529149055481,-0.008816966786980629,-0.05054515227675438,0.06441850960254669,-0.03602380305528641,0.004312175791710615,-0.06903643906116486,0.10158409923315048,-0.02070523053407669,0.12313350290060043,0.06668690592050552,-0.01628497801721096,0.0841386541724205,-0.040361400693655014,-0.09739623963832855,0.00377056747674942,-0.01794314943253994,-0.0002798467467073351,-0.011220281943678856,-0.02447662688791752,-0.04471976310014725,0.030657945200800896,-0.029085559770464897,0.015064012259244919,0.01100840512663126,0.02741670235991478,0.004441306926310062,0.06611931324005127,0.043686363846063614,-0.06714601814746857,0.04747328534722328,0.05814668908715248,-0.07228022068738937,0.028977829962968826,-0.00013797785504721105,-0.07892853766679764,-0.06005465239286423,-0.04664284735918045,0.009442131966352463,0.020974263548851013,0.04798180237412453,0.008776327595114708,-0.11601296067237854,-0.018947748467326164,-0.07441423833370209,0.000741046795155853,-0.011919575743377209,0.019976111128926277,0.042129650712013245,0.031684424728155136,0.021389340981841087,0.04759559780359268,-0.025454457849264145,-0.12112118303775787,-0.030759671702980995,-0.07073953002691269,-0.06260106712579727,-0.044794611632823944,-0.03644859790802002,0.057781118899583817]},{"text":"After surveying the ground, Snowball declared that this was just the place for a windmill, which could be made to operate a dynamo and supply the farm with electrical power.","book":"Animal Farm","chapter":41,"embedding":[-0.04464980214834213,0.11674583703279495,0.011794938705861568,0.030521871522068977,0.06043103337287903,-0.03206047788262367,-0.004293112549930811,0.018617086112499237,0.02158430963754654,-0.06088614463806152,0.0003703846887219697,0.042233165353536606,0.05356120318174362,-0.0658135712146759,0.05867345631122589,0.0125219551846385,-0.05565012991428375,-0.0426686592400074,-0.0491437166929245,-0.06560911983251572,0.016796231269836426,-0.05885142832994461,-0.012746330350637436,-0.04430835321545601,0.05090725049376488,0.11328865587711334,-0.09855420887470245,0.11132209002971649,-0.046860720962285995,-0.03368173912167549,-0.010096379555761814,0.008081967942416668,-0.034661877900362015,0.05076926574110985,-0.030572425574064255,0.11231586337089539,0.00922663975507021,0.026310358196496964,0.0031199855729937553,0.041595980525016785,0.0021536604035645723,-0.06484950333833694,0.11588642001152039,-0.0333290696144104,-0.09268247336149216,0.10572120547294617,0.04697374999523163,-0.03436178341507912,0.01570703275501728,-0.028850145637989044,-0.00817603524774313,-0.01795167103409767,0.018955938518047333,0.0108522679656744,0.05489615723490715,0.07430917024612427,0.031952328979969025,-0.041562967002391815,-0.03193037211894989,0.005941130220890045,0.04134368523955345,-0.062137193977832794,-0.028675101697444916,0.01684945821762085,0.06486991047859192,-0.06939945369958878,-0.04418144002556801,-0.05920112133026123,-0.013812132179737091,-0.10651470720767975,0.1026594489812851,-0.02202553115785122,-0.03872927278280258,-0.0893237441778183,-0.07098016142845154,-0.020202061161398888,0.0036492631770670414,-0.013832825236022472,0.05202370882034302,0.035803571343421936,0.0437404029071331,0.053927499800920486,0.021595751866698265,-0.006135980132967234,-0.019179146736860275,0.018390927463769913,0.044889651238918304,-0.04577460139989853,0.06492824107408524,0.021213795989751816,-0.01575322076678276,-0.05968155711889267,-0.08571697026491165,0.08510918915271759,-0.0038308301009237766,0.06712159514427185,0.0214153453707695,-0.02924893982708454,-0.07270849496126175,0.030795563012361526,0.05551517754793167,-0.014191733673214912,0.05424076318740845,-0.014468611218035221,-0.00451512448489666,-0.010804501362144947,-0.11101669818162918,0.04667498171329498,-0.04470594599843025,-0.017755145207047462,0.026748565956950188,-0.021626805886626244,-0.03203487768769264,0.02249617502093315,-0.015014447271823883,-0.02995719574391842,-0.05231114476919174,-0.01380921620875597,-0.14180947840213776,0.044548265635967255,0.1171451285481453,0.05994772911071777,-0.03353491425514221,0.03488805890083313,0.06106862053275108,0.0659516304731369,0.017721615731716156,-5.273238637771996e-33,-0.010547609068453312,-0.04051083326339722,0.04031049460172653,-0.0034049740061163902,0.08448042720556259,0.04398006200790405,-0.02592131309211254,0.07619307935237885,0.06256909668445587,-0.0026675022672861814,0.03213037550449371,0.06076779589056969,-0.010253224521875381,-0.024018071591854095,0.054848670959472656,-0.10360974073410034,-0.015572993084788322,-0.1349329948425293,0.04195527359843254,0.04921399801969528,0.11483179032802582,-0.07708683609962463,-0.024627793580293655,0.006160669960081577,-0.0393548458814621,0.02184804156422615,0.07363692671060562,-0.03767004236578941,0.013376688584685326,0.03880124166607857,0.014240289106965065,-0.05466923862695694,-0.06936278194189072,0.0404529944062233,0.019146768376231194,0.02952941507101059,-0.027722040191292763,-0.08705779165029526,-0.023566851392388344,0.010227500461041927,0.012167687527835369,-0.030067360028624535,-0.08258102089166641,0.028753262013196945,-0.008297423832118511,-0.03151853010058403,-0.014107968658208847,0.04911176487803459,0.05276348814368248,-0.013427531346678734,0.05688099563121796,-0.005562701728194952,0.03450030833482742,-0.047728218138217926,0.13932448625564575,0.026134498417377472,-0.04925330728292465,0.0079483138397336,-0.0128428153693676,0.005372945219278336,0.004524792544543743,0.0027262945659458637,-0.005740263499319553,-0.0019005310023203492,0.0000034372476420685416,-0.01196359284222126,0.07758940011262894,0.03342215344309807,-0.028740927577018738,0.022091032937169075,0.04758588969707489,-0.038640111684799194,-0.01512468233704567,0.07740335911512375,-0.037850458174943924,0.03222407028079033,-0.059130143374204636,0.021752920001745224,0.014809311367571354,-0.03149019554257393,0.006214555818587542,-0.024847762659192085,-0.0219263918697834,0.0388791486620903,-0.01868482120335102,-0.06845071911811829,-0.014158145524561405,0.032308004796504974,-0.075995072722435,-0.08684305846691132,0.02470489963889122,0.07620340585708618,0.01227367203682661,-0.03667015582323074,-0.04013614356517792,1.9941358000417913e-33,-0.07757969200611115,-0.003465924644842744,-0.07049787789583206,-0.05199383199214935,0.020528648048639297,0.05739111080765724,0.03272460401058197,-0.10192509740591049,-0.06623310595750809,0.07641594111919403,-0.13280761241912842,0.012089996598660946,-0.008014097809791565,-0.030895087867975235,0.06611531227827072,-0.04015665128827095,-0.026667313650250435,0.03452681377530098,-0.036131247878074646,0.03631257638335228,0.05281869322061539,0.0773061215877533,-0.05844651907682419,-0.018377723172307014,0.00728954141959548,0.02868332900106907,-0.08310119062662125,-0.04089334234595299,-0.024552801623940468,0.05699727684259415,-0.01644263230264187,0.021668769419193268,0.01494617760181427,-0.028356507420539856,-0.05677715316414833,0.008497977629303932,0.00813286006450653,-0.043546125292778015,-0.01573484018445015,-0.0912095308303833,0.06456034630537033,-0.05663909763097763,0.02575809322297573,0.10527750104665756,0.0066464925184845924,-0.035447318106889725,-0.08559463918209076,0.03481450304389,0.08402793854475021,0.023874621838331223,-0.053983915597200394,0.011457890272140503,-0.07128620892763138,-0.009526945650577545,-0.05046308785676956,-0.04291504994034767,0.014932014979422092,-0.050816860049963,0.012179412879049778,-0.061682552099227905,-0.0045838141813874245,-0.07633468508720398,-0.005166496615856886,0.04705921560525894,-0.02225661091506481,0.035510554909706116,0.015894824638962746,-0.027815496549010277,-0.01334840152412653,0.034122034907341,0.02770024724304676,0.09008309990167618,0.05086792632937431,-0.046976711601018906,-0.0632396936416626,0.06965949386358261,0.07212802022695541,0.039590489119291306,-0.019721006974577904,-0.041427891701459885,-0.02302907407283783,0.011368590407073498,-0.003816245822235942,-0.03808724135160446,0.0581899918615818,-0.12060856819152832,0.02218579687178135,0.010622268542647362,0.022216737270355225,0.030856560915708542,0.014883207157254219,-0.016209768131375313,-0.028799384832382202,0.09512200951576233,0.014121857471764088,-2.7526297685653844e-8,0.012867173179984093,0.0530075877904892,0.02113008126616478,-0.02542511560022831,0.049019817262887955,0.035486850887537,0.05853331461548805,-0.03711185231804848,0.04701630398631096,-0.044915471225976944,-0.03133981302380562,0.07802576571702957,0.027049949392676353,0.05300116539001465,0.042065445333719254,0.04239340499043465,0.03978673741221428,0.009642909280955791,-0.04587551951408386,0.03553258627653122,0.012375975027680397,-0.040672361850738525,-0.07742607593536377,0.00501591432839632,0.019214468076825142,0.03670318424701691,-0.0016245039878413081,-0.014424970373511314,0.045792389661073685,-0.034981872886419296,-0.07098894566297531,-0.007699362467974424,0.06458856165409088,-0.0499768927693367,-0.05214232578873634,0.0846131443977356,-0.07614880055189133,-0.005074186250567436,-0.02086329646408558,-0.11548824608325958,-0.06734980642795563,-0.0054442198015749454,0.018820516765117645,0.01114747766405344,-0.012642040848731995,0.011234162375330925,-0.12732139229774475,-0.04113195091485977,-0.012914828024804592,0.06904088705778122,-0.06286019831895828,-0.017453037202358246,0.08502157777547836,0.06105564162135124,0.012457783333957195,0.12632308900356293,-0.0192194152623415,-0.10410324484109879,-0.07392441481351852,-0.0519842766225338,-0.08193658292293549,0.049567051231861115,-0.006310518365353346,0.017462054267525673]},{"text":"Jones--'One Thousand Useful Things to Do About the House', 'Every Man His Own Bricklayer', and 'Electricity for Beginners'.","book":"Animal Farm","chapter":42,"embedding":[-0.06237319856882095,0.09737127274274826,-0.011433586478233337,-0.0007666247547604144,0.01944001391530037,-0.009658393450081348,0.1496189534664154,-0.07197491079568863,-0.18166883289813995,-0.05605578422546387,-0.061373960226774216,-0.02173960581421852,0.017359087243676186,-0.00827148836106062,-0.049239225685596466,0.03374762088060379,0.021315813064575195,-0.009738783352077007,0.041323188692331314,-0.043784480541944504,-0.03720695152878761,0.0571463480591774,-0.0019165509147569537,-0.012630773708224297,-0.04308107867836952,0.04097069054841995,-0.013517135754227638,0.05751991644501686,0.013753397390246391,-0.07131585478782654,0.0046230037696659565,0.04528123512864113,0.018165091052651405,-0.011365806683897972,-0.0035595656372606754,0.016488324850797653,0.03572036325931549,0.009988394565880299,-0.003580871969461441,0.06170349940657616,0.030590400099754333,-0.04312995821237564,0.051376570016145706,-0.0324692465364933,-0.02063894085586071,0.0030216483864933252,0.031171657145023346,-0.11556880176067352,0.06044581159949303,-0.009659986011683941,-0.009150585159659386,0.013841921463608742,-0.056084044277668,-0.08783699572086334,0.05366138741374016,-0.023589611053466797,0.09452236443758011,0.011105857789516449,-0.06728620827198029,-0.06002836674451828,0.05998903512954712,-0.0542943961918354,-0.026568623259663582,0.04858669266104698,0.09094612300395966,-0.07169107347726822,-0.0026226092595607042,0.04262614995241165,-0.07167236506938934,0.025006648153066635,-0.03777507692575455,0.005384985823184252,0.022598886862397194,0.01478554867208004,0.046650733798742294,-0.02139155939221382,-0.04171837493777275,-0.033662039786577225,-0.0019249890465289354,-0.07497881352901459,-0.026118088513612747,-0.036491237580776215,-0.04240690544247627,-0.054489754140377045,-0.044395867735147476,0.08370865136384964,0.023751914501190186,0.00761119881644845,-0.05775737389922142,0.008971862494945526,-0.051037054508924484,-0.11796380579471588,0.027647675946354866,0.08648493885993958,-0.03420485928654671,0.039567138999700546,-0.05340869352221489,-0.07227855175733566,-0.09779230505228043,0.05831680819392204,-0.017232529819011688,0.01642804965376854,0.035607725381851196,0.03127218037843704,0.020247897133231163,-0.06168711185455322,0.006618786603212357,0.0938703864812851,0.012752274051308632,-0.02771705947816372,-0.0031522829085588455,-0.029404597356915474,-0.07115055620670319,-0.009154479019343853,0.04690141975879669,-0.05729149281978607,0.0149236423894763,-0.04853696748614311,0.0010572397150099277,0.10376036167144775,0.06878461688756943,0.019577164202928543,-0.043951213359832764,0.05839427933096886,-0.04253600910305977,-0.012650111690163612,0.06470517814159393,-3.915544499282177e-33,0.02717406116425991,0.053052544593811035,0.03732619807124138,0.08733346313238144,0.04516113921999931,0.002849017037078738,-0.010936295613646507,0.026206402108073235,0.055902283638715744,0.05052102357149124,0.03608403354883194,0.10348903387784958,-0.009497953578829765,0.04148313030600548,-0.04143929481506348,-0.029146332293748856,-0.0507480762898922,-0.09355135262012482,0.03961623087525368,-0.0686713457107544,0.028146585449576378,0.10425510257482529,-0.08241529762744904,0.03300740569829941,0.08345307409763336,-0.07243829220533371,0.027799760922789574,-0.0026259454898536205,0.0004955981858074665,0.022822421044111252,0.020818576216697693,0.10615202784538269,-0.012991439551115036,0.03067091852426529,-0.017116498202085495,0.020589007064700127,-0.05177398398518562,-0.04848145321011543,-0.00594783341512084,-0.03740070015192032,-0.09827672690153122,0.05160107836127281,0.033292729407548904,-0.04537948966026306,-0.0685385912656784,0.029294446110725403,-0.006657004356384277,0.05393248051404953,-0.014405804686248302,-0.0404079332947731,-0.07971268147230148,-0.008090358227491379,-0.0298676248639822,-0.03312749043107033,-0.014392907731235027,-0.10664670914411545,0.022074898704886436,0.001955514308065176,0.05626526102423668,-0.05849137902259827,0.00957510992884636,-0.005443290341645479,-0.028864318504929543,0.0217589121311903,-0.014547480270266533,-0.01922755129635334,0.037570882588624954,-0.044508758932352066,-0.031203851103782654,0.03638546168804169,-0.0742017850279808,-0.012358621694147587,0.046320993453264236,-0.09673421084880829,-0.012892874889075756,0.042284123599529266,0.007558133453130722,-0.027335647493600845,-0.09034227579832077,0.011890619061887264,-0.01477733999490738,0.004054224584251642,-0.007030363194644451,-0.019684836268424988,0.07033257186412811,-0.0018740914529189467,0.06068156287074089,-0.08877961337566376,-0.04121187701821327,0.06836307048797607,-0.0036853861529380083,0.0326625257730484,0.04150227829813957,-0.063324935734272,-0.10135441273450851,5.6969130667602494e-34,-0.019665317609906197,0.0020552058704197407,-0.004675918258726597,0.12108127772808075,0.11437641829252243,0.006405618507415056,-0.0769156888127327,-0.006854985374957323,0.003573050256818533,-0.01319434680044651,-0.04622083529829979,0.003958791960030794,0.06609462946653366,0.025902526453137398,0.02105598896741867,-0.049198560416698456,-0.062217503786087036,-0.0016857841983437538,0.03498310223221779,0.0739758089184761,-0.030650494620203972,0.08209864795207977,-0.04383610561490059,-0.07594560086727142,0.011978651396930218,0.011126602999866009,-0.07789254933595657,-0.02855253592133522,-0.03651528060436249,0.04488246515393257,-0.09997045993804932,-0.04131045192480087,-0.03653063252568245,0.08144377917051315,-0.08255907148122787,0.02952881157398224,0.0655466765165329,0.034045640379190445,-0.04422326758503914,0.033349841833114624,0.013088212348520756,0.025865433737635612,0.02668660692870617,0.0369434580206871,-0.010079210624098778,0.0061127436347305775,-0.13897927105426788,0.012550323270261288,-0.11533527076244354,0.08950807899236679,0.008862083777785301,0.0434475801885128,-0.01232583075761795,-0.03406299650669098,-0.02580195665359497,0.047066401690244675,0.07861360907554626,0.05189311131834984,0.011151761747896671,0.0702986940741539,-0.0628301277756691,0.0601436123251915,-0.026387345045804977,0.09847162663936615,-0.086228147149086,-0.007048437371850014,-0.007351268082857132,0.009055950678884983,-0.00993523932993412,-0.05968927592039108,-0.051561225205659866,-0.003957400564104319,-0.0217844657599926,-0.14179682731628418,-0.08510062843561172,0.04648478329181671,0.010044540278613567,-0.022667793557047844,-0.03954962641000748,-0.023692093789577484,0.06743401288986206,-0.06724163889884949,-0.02895178273320198,0.0734274834394455,0.039321742951869965,0.013279241509735584,0.044449977576732635,0.08021420240402222,-0.017774276435375214,0.013411094434559345,0.05896490067243576,0.027726927772164345,0.0008205359918065369,-0.05330362170934677,0.010167819447815418,-2.955087374800769e-8,-0.051262758672237396,0.021545864641666412,-0.01147039607167244,-0.10459471493959427,0.07540383189916611,-0.0070283845998346806,0.03484892472624779,0.004675866570323706,-0.015096784569323063,0.06058283522725105,0.13182765245437622,0.057525020092725754,0.014694726094603539,0.042214374989271164,-0.0031325421296060085,-0.04015568271279335,-0.05905241146683693,-0.04022768512368202,-0.0535375215113163,0.0386672243475914,0.03625500947237015,-0.011764641851186752,0.0337676927447319,-0.023656703531742096,0.028301112353801727,0.07137393206357956,0.019283046945929527,-0.043174561113119125,0.005591605324298143,0.03674985468387604,0.027416309341788292,0.02894512563943863,-0.02594096213579178,0.0064546228386461735,0.022965243086218834,0.009504259563982487,0.07591426372528076,0.04221512749791145,0.026918448507785797,-0.10128896683454514,0.017538215965032578,-0.04802901670336723,0.03136163204908371,0.06396757811307907,-0.0035758621525019407,-0.052900224924087524,0.011738788336515427,-0.06611503660678864,-0.009300929494202137,-0.06014850735664368,-0.005968680139631033,0.02858828380703926,0.04178769886493683,0.0016862554475665092,0.07823412865400314,0.07583329826593399,-0.01973874866962433,0.04116452857851982,-0.04945046454668045,-0.015344277955591679,0.026271408423781395,0.09610689431428909,-0.02623019926249981,0.001532084192149341]},{"text":"All of them came to look at Snowball's drawings at least once a day.","book":"Animal Farm","chapter":42,"embedding":[0.051168523728847504,0.038983557373285294,0.06379538029432297,0.0020699603483080864,0.06345830112695694,0.004517804365605116,-0.030832692980766296,0.003769378177821636,0.03732513263821602,-0.016743844375014305,-0.07394139468669891,0.06320236623287201,0.00941969733685255,0.03792708367109299,-0.00980636291205883,-0.03082508035004139,-0.06160067766904831,-0.05186200141906738,-0.018723657354712486,-0.0735497921705246,0.0034394063986837864,-0.07892419397830963,0.046208880841732025,-0.029876554384827614,0.06548204272985458,0.08226440101861954,-0.004613235127180815,-0.0023053635377436876,-0.03845879063010216,-0.009303216822445393,-0.11274777352809906,0.022404905408620834,-0.029064305126667023,0.06460728496313095,0.09034787118434906,0.019543925300240517,-0.0032792873680591583,0.09637133777141571,-0.006982359103858471,0.04193572327494621,0.00048824091209098697,-0.006791715510189533,0.056416105479002,0.03409035503864288,-0.04783107712864876,-0.018456311896443367,-0.03874271735548973,-0.0006081524770706892,0.053038980811834335,0.07174468040466309,-0.04023268073797226,-0.05456274002790451,-0.015932489186525345,-0.043836209923028946,0.10626999288797379,0.014430646784603596,-0.019765187054872513,-0.09568916261196136,0.037936028093099594,-0.006797487847507,-0.0752742663025856,-0.014074691571295261,-0.01951909065246582,0.010723896324634552,0.00744579778984189,0.05058427155017853,-0.030928706750273705,-0.016367921605706215,0.04487064853310585,0.00555623322725296,0.03745492547750473,0.09445809572935104,0.005755621939897537,0.004775420296937227,0.010609137825667858,-0.004119786899536848,-0.038306936621665955,-0.04250146448612213,-0.03210105001926422,-0.10392085462808609,0.0028318038675934076,-0.0003913616528734565,0.031283680349588394,0.016685063019394875,0.016857439652085304,0.050773605704307556,-0.02082088775932789,-0.018409499898552895,0.032435595989227295,0.08730170875787735,-0.08660732954740524,-0.06305813789367676,-0.03019590489566326,0.04377192631363869,-0.09012510627508163,-0.002555975690484047,0.055262818932533264,-0.02603648044168949,0.024824902415275574,0.0548459067940712,0.05431356653571129,-0.046787623316049576,0.1570790857076645,-0.021564876660704613,0.030830999836325645,-0.03443958982825279,-0.04683178663253784,-0.030313728377223015,-0.0661628395318985,0.029856903478503227,-0.005575481336563826,0.001771655515767634,0.04183341562747955,0.12284078449010849,-0.012750405818223953,-0.06695937365293503,-0.044262465089559555,0.027348438277840614,-0.06402093917131424,0.061900313943624496,0.07464662939310074,0.12284239381551743,0.07700419425964355,0.022454656660556793,0.026075156405568123,-0.009969785809516907,-0.04282302409410477,-3.568384283285892e-33,0.09633051604032516,0.03231819346547127,0.05886537954211235,0.02604491077363491,0.008582687005400658,0.0010150739690288901,0.029342789202928543,0.08188263326883316,0.04736519977450371,-0.026551656424999237,-0.03035813197493553,0.032469816505908966,-0.08514686673879623,0.052242211997509,-0.039942942559719086,0.06589270383119583,-0.05224855616688728,-0.040975090116262436,-0.02870532125234604,0.07454594224691391,-0.041182950139045715,-0.030905039981007576,0.02274760790169239,0.06243777275085449,-0.10506173968315125,0.0951143205165863,-0.006205770652741194,-0.01471949927508831,-0.0062441639602184296,0.0216072890907526,0.06070682778954506,0.021279050037264824,-0.04732529819011688,0.01739015243947506,0.06255391240119934,-0.01614394411444664,0.07818286865949631,-0.023861568421125412,0.010125338099896908,-0.0044996109791100025,-0.05318097397685051,-0.06989046186208725,-0.03029695898294449,-0.0654454454779625,-0.011036201380193233,0.028469016775488853,-0.06012001261115074,-0.005022086203098297,0.010838225483894348,0.060783665627241135,0.04150157794356346,0.05474693700671196,0.035890884697437286,-0.08302424103021622,0.0355672761797905,-0.07298767566680908,-0.04394957423210144,-0.03177342563867569,0.014607753604650497,0.03389037027955055,0.037152986973524094,0.05443868413567543,0.04649481177330017,0.003906989004462957,-0.07161571830511093,0.0948352962732315,0.05091550201177597,0.04812339320778847,-0.007152059581130743,0.05513453856110573,-0.010055676102638245,0.01015199813991785,-0.027635494247078896,-0.1285499632358551,-0.09498786926269531,-0.032383035868406296,0.01825283095240593,-0.0018167748348787427,-0.03343585506081581,0.01624462939798832,0.05472808703780174,-0.03342881426215172,0.015983344987034798,-0.0481000579893589,-0.047568559646606445,-0.0076769134029746056,0.06817536801099777,-0.06885203719139099,-0.05008438974618912,0.008521863259375095,-0.08445652574300766,0.008588258177042007,0.020492224022746086,-0.07246532291173935,-0.048613760620355606,1.1901499184766605e-33,-0.02203095704317093,-0.049690645188093185,-0.0088648134842515,0.04352031275629997,-0.0262798722833395,-0.006636404432356358,-0.024771584197878838,0.025378195568919182,0.06363484263420105,0.06843964755535126,0.016597524285316467,0.00592405628412962,-0.03706095740199089,-0.05415232107043266,0.03426573798060417,-0.09662306308746338,0.12408933788537979,0.003288471372798085,-0.03972204402089119,-0.01212340034544468,0.01760338805615902,-0.007562211714684963,-0.05459360033273697,-0.04213753715157509,-0.02922004833817482,0.0951223075389862,0.04783756285905838,-0.06377590447664261,-0.08689681440591812,0.04667152836918831,0.03203672543168068,0.00559572596102953,0.00042383288382552564,0.0104424012824893,-0.03186755254864693,-0.0011214896803721786,0.009817262180149555,0.02330603078007698,-0.0007358540897257626,-0.044663332402706146,0.007779896724969149,-0.0708354264497757,0.007263779174536467,0.05359886959195137,-0.025398235768079758,-0.00644618971273303,-0.1057007908821106,0.045115064829587936,0.010521144606173038,0.059776801615953445,-0.13608577847480774,-0.002359294332563877,-0.10868246853351593,-0.0868811160326004,-0.06773551553487778,0.0032299761660397053,0.04621925577521324,-0.032444458454847336,0.07091237604618073,0.00854453630745411,-0.09873317182064056,-0.0827982947230339,-0.11751262843608856,-0.01035483181476593,-0.03938671201467514,-0.052523769438266754,0.0024532214738428593,-0.007438808213919401,-0.06273354589939117,0.04858953505754471,0.061999768018722534,0.01530398614704609,-0.018229588866233826,-0.018937071785330772,-0.03494005650281906,0.040384307503700256,0.01732419617474079,0.10096512734889984,-0.029127206653356552,-0.060544516891241074,-0.0642501637339592,-0.0249528456479311,-0.017966728657484055,0.09338998049497604,0.0590449757874012,0.03929112106561661,-0.03804221749305725,-0.010418128222227097,-0.03658862039446831,0.10055990517139435,0.042648795992136,-0.03695664927363396,0.07504916936159134,0.07092198729515076,-0.0065131401643157005,-2.1779015924039413e-8,0.02939317189157009,0.0775330513715744,0.031185558065772057,-0.04660649970173836,0.08196070045232773,0.008014766499400139,0.02349759079515934,0.10905373096466064,-0.025312690064311028,-0.02759539894759655,0.0781802386045456,0.038346029818058014,0.019186513498425484,0.061976853758096695,0.056206557899713516,-0.0013118197675794363,0.014803743921220303,-0.09504836052656174,-0.06394403427839279,0.010398534126579762,-0.03128710389137268,-0.06205129250884056,0.004494763445109129,-0.05064288154244423,-0.06699559837579727,0.03815636411309242,-0.07122022658586502,-0.02788565307855606,0.0038685209583491087,0.03645136579871178,-0.061868470162153244,-0.032479532063007355,0.025131192058324814,-0.0753965899348259,0.07914509624242783,-0.02875530906021595,-0.02002834342420101,-0.04605637118220329,-0.016382604837417603,-0.04534485563635826,-0.048964645713567734,-0.02646145597100258,0.05410344526171684,0.03060908615589142,0.0505017451941967,0.003928148653358221,-0.011189866811037064,-0.054008468985557556,-0.0037615695036947727,0.06078890711069107,-0.13069190084934235,0.03582008183002472,-0.03556821122765541,0.0510239414870739,0.01171876210719347,0.05243721976876259,0.06248486414551735,-0.08352546393871307,-0.03766157478094101,-0.01738142780959606,-0.003536520292982459,-0.014920609071850777,-0.06754196435213089,0.03917211666703224]},{"text":"The whole farm was deeply divided on the subject of the windmill.","book":"Animal Farm","chapter":42,"embedding":[-0.010196308605372906,0.09510878473520279,0.03110072948038578,0.04633574187755585,0.14031511545181274,-0.08792927116155624,-0.08364694565534592,-0.015161548741161823,-0.05069293454289436,-0.022665774449706078,0.07193911075592041,0.0368804894387722,-0.017541395500302315,-0.08986854553222656,0.051130715757608414,0.04808353632688522,-0.08971256017684937,0.047010958194732666,-0.09170067310333252,-0.042412128299474716,-0.0745617151260376,-0.048164643347263336,-0.02881627343595028,-0.0019965842366218567,0.05640250816941261,0.10166355222463608,-0.08123066276311874,0.0435124933719635,0.017070787027478218,0.02499697357416153,-0.01733066700398922,0.09823649376630783,-0.030476883053779602,0.015218237414956093,-0.04538697749376297,0.07200349867343903,0.0949796661734581,0.0017998497933149338,0.060004737228155136,-0.04354099556803703,0.03667454421520233,0.07369144260883331,0.010799898765981197,0.02141820266842842,-0.06376912444829941,0.0772647112607956,0.05145367607474327,-0.02049039863049984,-0.00569657189771533,-0.026371706277132034,0.0035750267561525106,-0.034621503204107285,0.022579580545425415,-0.0254601389169693,0.015653127804398537,-0.0010471089044585824,0.04088784381747246,0.0013265113811939955,0.03630654886364937,0.051806457340717316,-0.06000366061925888,-0.04585980623960495,-0.006161465309560299,0.018845681101083755,0.08913829177618027,-0.08176489174365997,-0.04778122156858444,-0.018630150705575943,-0.08906281739473343,-0.037312548607587814,0.003980081994086504,-0.03859096020460129,-0.03969741612672806,-0.08278518170118332,-0.07570303976535797,0.004451736342161894,0.00035613050567917526,-0.05515008792281151,0.002701328368857503,0.0033361895475536585,-0.012881855480372906,0.011147676967084408,0.001766303787007928,-0.045606520026922226,0.030659908428788185,-0.06269775331020355,0.0001767562353052199,-0.016696322709321976,0.06060796231031418,0.0007612216286361217,-0.0034769843332469463,-0.07160023599863052,0.03899100050330162,0.02528567984700203,0.1665116250514984,0.08849526941776276,-0.06662952154874802,-0.021306082606315613,-0.046176791191101074,0.01358210388571024,-0.03298564255237579,-0.02703908272087574,0.008674483746290207,-0.028093470260500908,-0.06069763004779816,0.014155550859868526,-0.0906493291258812,0.02134111151099205,-0.0015355850337073207,-0.04374076798558235,-0.004693274386227131,0.018468135967850685,0.019592462107539177,0.03694974631071091,0.04042065143585205,-0.037908848375082016,0.07019376009702682,-0.07209911197423935,-0.09308061748743057,0.10546586662530899,0.06489050388336182,0.009761074557900429,-0.058061521500349045,0.04820730909705162,0.02442268468439579,0.06861406564712524,0.06163662299513817,-5.694810217569224e-33,-0.03385436534881592,-0.031145213171839714,-0.01672952063381672,0.03777851536870003,0.08934736251831055,0.04561116173863411,-0.016466910019516945,0.01888681761920452,0.05736066401004791,0.06889529526233673,0.02296738512814045,0.0238910261541605,-0.00686455424875021,-0.042754340916872025,0.011386658996343613,-0.10067131370306015,-0.03955749794840813,-0.015333070419728756,0.02642418071627617,-0.028928371146321297,-0.01921878196299076,-0.011733371764421463,-0.08745814859867096,-0.050604045391082764,-0.039046525955200195,-0.061667148023843765,0.07684612274169922,-0.013467766344547272,0.01246553473174572,0.036118581891059875,0.002092225942760706,-0.07346541434526443,-0.0501050241291523,0.028027314692735672,-0.0018826108425855637,0.026582704856991768,-0.04538407549262047,-0.0318235345184803,0.011616010218858719,0.027087874710559845,-0.015167278237640858,-0.003999758046120405,0.025599664077162743,0.025571348145604134,-0.019176730886101723,0.027573537081480026,-0.04857134073972702,0.0804358497262001,-0.037204138934612274,0.05246454104781151,0.03038715198636055,-0.009375271387398243,0.027102766558527946,-0.027327893301844597,0.04650619998574257,0.04166791960597038,-0.029740529134869576,0.05914593115448952,-0.04402747005224228,0.03382071852684021,0.025470614433288574,-0.00704649742692709,-0.08653262257575989,-0.0041639311239123344,0.020203780382871628,0.007283296901732683,-0.04531846567988396,0.05071740224957466,-0.08469126373529434,0.08917643129825592,-0.030574610456824303,-0.020030247047543526,-0.05144669860601425,0.030846133828163147,-0.04839823767542839,0.05445409193634987,0.014406862668693066,0.08825860917568207,-0.04365162178874016,0.0010287492768839002,0.008174993097782135,0.07962823659181595,-0.018575001507997513,-0.011397287249565125,-0.08910616487264633,-0.039887405931949615,-0.01432277262210846,0.005473066587001085,-0.04842062294483185,-0.06592614948749542,0.06534594297409058,0.05080191791057587,0.11363354325294495,-0.09265927225351334,-0.022235607728362083,3.081878395549241e-33,-0.11513591557741165,0.050482653081417084,-0.04823751375079155,-0.013500723987817764,0.0099259028211236,-0.014895102009177208,-0.0076438793912529945,-0.07186984270811081,-0.06584025174379349,0.0681033506989479,-0.04166435822844505,0.010944732464849949,-0.08516360074281693,0.040816791355609894,0.009512034244835377,0.010746701620519161,-0.0009390478953719139,0.08235052227973938,0.04471733793616295,0.013047747313976288,0.0406065434217453,0.05780653655529022,-0.0021478720009326935,0.008162631653249264,0.04509004205465317,0.02868431992828846,-0.058254119008779526,-0.02498743310570717,0.039380162954330444,0.041722673922777176,-0.03293488919734955,-0.034033868461847305,0.009661886841058731,0.011555369943380356,-0.02501598931849003,0.050202298909425735,-0.004197095986455679,-0.036122050136327744,0.06302446126937866,0.011054898612201214,0.0414067879319191,-0.08255433291196823,-0.08060594648122787,0.04338262230157852,-0.048147205263376236,-0.001254475791938603,-0.02949417755007744,-0.0014137000543996692,0.018550079315900803,0.05774446949362755,-0.07022936642169952,0.06345436722040176,0.06043986231088638,0.020541826263070107,-0.015980422496795654,-0.045347992330789566,0.0637107565999031,-0.04705166071653366,-0.03252677619457245,-0.060201652348041534,-0.011926889419555664,0.04707712680101395,0.0026643143501132727,0.03129243105649948,0.03751305490732193,-0.004319508094340563,0.03560477867722511,-0.048708125948905945,-0.005687061231583357,-0.04808549955487251,-0.07000438868999481,0.07174726575613022,0.026024911552667618,-0.01935306191444397,-0.05767661705613136,0.1101900115609169,0.07939285039901733,-0.008031323552131653,-0.02230718359351158,-0.018703611567616463,0.006231682375073433,-0.02088397741317749,0.03494417667388916,-0.004341081716120243,-0.024118512868881226,-0.04943465441465378,-0.05099452659487724,-0.0253505390137434,0.11342308670282364,-0.015209454111754894,-0.04029420390725136,-0.14279545843601227,0.06526152044534683,-0.005017960909754038,0.06582339107990265,-1.838216512339841e-8,-0.021653737872838974,-0.017380274832248688,0.03470003604888916,0.020992716774344444,0.07400918751955032,0.025953609496355057,-0.00856778398156166,0.052007950842380524,0.008789817802608013,0.16823288798332214,-0.08669251203536987,0.0834190621972084,-0.038096219301223755,0.030943267047405243,0.03844450041651726,0.006442175712436438,0.015879694372415543,-0.03769855573773384,-0.009764784015715122,0.0722871944308281,0.055542171001434326,0.022546742111444473,-0.05874137207865715,-0.02369971200823784,0.040991026908159256,-0.022885994985699654,-0.07882317900657654,0.017059165984392166,0.055321455001831055,-0.026784831658005714,0.007574853021651506,-0.012453237548470497,-0.054378706961870193,-0.058995578438043594,-0.1529821753501892,0.03953302279114723,-0.09783647954463959,0.0318346731364727,-0.015813540667295456,-0.01649809256196022,-0.05915503948926926,0.08119117468595505,0.04716690257191658,0.03285475820302963,0.056420981884002686,0.00591631792485714,-0.03281011804938316,-0.02462630532681942,-0.015193627215921879,-0.035798780620098114,-0.004426912870258093,0.03772543743252754,0.1276111751794815,0.03292177990078926,-0.0336817167699337,0.02117086388170719,-0.029487265273928642,-0.0593261644244194,-0.021707290783524513,-0.07431283593177795,-0.00009002126171253622,0.14044862985610962,-0.03784960135817528,-0.017600255087018013]},{"text":"The animals formed themselves into two factions under the slogan, \"Vote for Snowball and the three-day week\" and \"Vote for Napoleon and the full manger.\" Benjamin was the only animal who did not side with either faction.","book":"Animal Farm","chapter":42,"embedding":[0.01464325562119484,0.009700467810034752,0.04984235763549805,0.007699666544795036,0.026987694203853607,0.04816699028015137,-0.00016718854021746665,-0.021762769669294357,-0.047645628452301025,0.011793714947998524,-0.0007474150042980909,-0.010516291484236717,0.0182285625487566,-0.004934921395033598,0.03277350962162018,-0.03171083331108093,-0.10896895825862885,-0.0037359194830060005,0.025891266763210297,0.01265836600214243,-0.05886698141694069,-0.06471419334411621,-0.012129583396017551,0.03176043555140495,0.015680385753512383,0.03489932417869568,0.012240970507264137,0.00928032211959362,0.005041438154876232,-0.048232126981019974,-0.031284939497709274,-0.02921235002577305,0.011996228247880936,-0.004245005548000336,-0.016697270795702934,-0.06141345947980881,0.05242343246936798,-0.04943395406007767,0.027456453070044518,0.031043898314237595,0.001972106983885169,-0.030774995684623718,-0.035708535462617874,0.006000783294439316,-0.07903303951025009,0.021768130362033844,-0.08438648283481598,-0.02021053060889244,0.09930919110774994,0.05056591331958771,0.05355668440461159,0.003569705644622445,-0.05169401317834854,0.010148746892809868,0.06254982203245163,-0.00036983928293921053,-0.06911120563745499,-0.008338117972016335,0.05252618342638016,-0.04653340205550194,0.016267597675323486,0.01759948581457138,0.05980236455798149,0.005975642707198858,0.051209814846515656,-0.029162999242544174,-0.12280956655740738,-0.012630068697035313,-0.06197661906480789,0.017691051587462425,0.09776434302330017,0.0014377807965502143,0.04967251047492027,-0.13371217250823975,-0.07345766574144363,-0.008746583014726639,-0.049599796533584595,0.0669676810503006,0.07043738663196564,-0.0388939306139946,-0.06199106201529503,0.04876456409692764,-0.04659522324800491,0.06636303663253784,0.1187639907002449,0.0036601554602384567,0.029847100377082825,-0.02985897846519947,0.0016042848583310843,-0.00041964012780226767,-0.08223515748977661,-0.056039419025182724,0.08242211490869522,0.03905091434717178,-0.041363220661878586,-0.03494570404291153,0.011126632802188396,0.0749131515622139,-0.009967098012566566,0.07922650128602982,-0.014862951822578907,-0.04464561864733696,-0.008626813068985939,-0.0664331391453743,0.09085551649332047,-0.020390799269080162,-0.08850175887346268,-0.014250966720283031,0.06104086712002754,0.048243384808301926,-0.023436756804585457,0.0023833641316741705,0.04194718226790428,0.12205233424901962,0.06777366995811462,-0.04168286547064781,-0.08587377518415451,-0.04766463860869408,-0.06560034304857254,-0.016865301877260208,0.029675127938389778,0.04806280881166458,-0.007281096652150154,0.03173726797103882,0.08073294162750244,0.0409383699297905,0.026984689757227898,-2.0042652552680177e-33,0.040812451392412186,-0.11979101598262787,-0.003447355469688773,0.04247986897826195,-0.04241805523633957,0.041376903653144836,-0.03853067383170128,0.05506220832467079,-0.04258304089307785,-0.019797271117568016,-0.04442235827445984,0.03775523230433464,-0.04558704420924187,-0.027755651623010635,0.044053658843040466,-0.04880423843860626,-0.051278889179229736,-0.08300960808992386,0.09475867450237274,-0.014353431761264801,0.0074976054020226,0.10522778332233429,-0.03234601393342018,0.024662844836711884,-0.01769876852631569,-0.044367529451847076,-0.04958365112543106,-0.05529119446873665,-0.044258084148168564,0.04128854721784592,0.035013552755117416,-0.08345496654510498,-0.024416431784629822,0.09748584032058716,0.03353358060121536,-0.07518351078033447,0.002480969997122884,-0.1101154088973999,-0.04578375816345215,0.054372288286685944,0.03934397175908089,-0.067073293030262,-0.029448123648762703,-0.04551856219768524,0.008008692413568497,0.050672437995672226,0.009556985460221767,0.012793317437171936,0.04669458046555519,-0.03680899366736412,-0.0030261122155934572,0.05536270886659622,0.09822869300842285,-0.05344650521874428,-0.036389388144016266,0.003398411674425006,-0.02977091073989868,0.06459161639213562,-0.0889272466301918,-0.061095766723155975,-0.01105163712054491,0.02883090078830719,0.09396638721227646,0.010397850535809994,-0.02560947649180889,0.0069719101302325726,-0.046911001205444336,0.045112501829862595,0.007297432981431484,-0.026362627744674683,0.06331628561019897,0.00992897991091013,-0.0020715822465717793,-0.10343357175588608,0.011641746386885643,0.004074648953974247,0.03922119364142418,-0.027312299236655235,-0.014250457286834717,-0.09296693652868271,0.022072777152061462,-0.05471929907798767,0.0036301077343523502,0.023598486557602882,0.01061501819640398,0.02572934329509735,0.10526508837938309,-0.04000344127416611,-0.002285286784172058,0.00301477056927979,-0.06307268887758255,0.023401927202939987,-0.06589804589748383,-0.07125933468341827,0.020277639850974083,4.025181479850929e-34,-0.029127715155482292,-0.022466689348220825,0.06810840219259262,-0.010945955291390419,-0.00491282157599926,0.03908323496580124,0.05184322968125343,-0.03809182718396187,0.035824794322252274,0.042319390922784805,-0.011558395810425282,0.008611192926764488,-0.008809756487607956,-0.07064878195524216,0.08996330201625824,-0.023504260927438736,0.01875186525285244,0.015986282378435135,0.07702353596687317,-0.038131535053253174,-0.03570597618818283,-0.03224525228142738,-0.13381987810134888,-0.013297542929649353,-0.014597512781620026,0.11416883766651154,0.03476676717400551,-0.027797650545835495,0.02232946828007698,-0.06499651074409485,0.02374069020152092,0.020570063963532448,-0.002980255987495184,-0.0679633617401123,0.020499300211668015,0.0200277678668499,-0.07188813388347626,-0.03908654302358627,0.02025342360138893,-0.05327903479337692,-0.016314489766955376,-0.06421498954296112,0.002662023063749075,0.03755391016602516,0.043079812079668045,0.04712400585412979,0.0034882239997386932,0.008977928198873997,0.015692630782723427,0.05706067383289337,-0.026823747903108597,0.07422377914190292,-0.041520215570926666,-0.015881331637501717,-0.02557544782757759,-0.0399700291454792,-0.02381892502307892,-0.07266183942556381,0.0922442227602005,0.027879096567630768,-0.00031069875694811344,-0.010005504824221134,0.04506702348589897,-0.05375821515917778,-0.042822178453207016,-0.023213371634483337,-0.05850519612431526,0.011280876584351063,0.13392207026481628,0.0257730595767498,0.057712871581315994,0.05355605483055115,0.055740900337696075,-0.006846698001027107,0.005728335119783878,0.07713863998651505,0.006314991507679224,0.00717886770144105,0.05680315941572189,-0.05654745548963547,-0.10139673948287964,-0.03531958535313606,-0.0035986024886369705,0.08014241605997086,-0.02068924717605114,-0.007190157659351826,-0.009740475565195084,0.08355141431093216,0.03283322975039482,0.07704868912696838,0.12042684853076935,-0.013213073834776878,0.10671079903841019,0.0685245469212532,0.0029198476113379,-3.2555156792568596e-8,0.03775133565068245,0.05214234068989754,-0.004514667671173811,0.03687240928411484,0.0643778145313263,-0.024454422295093536,-0.03429124876856804,-0.08679191768169403,0.054737284779548645,0.09294808655977249,0.03338010609149933,0.02584477886557579,-0.07941500842571259,0.04966692999005318,0.01850193180143833,0.013289224356412888,0.0014056196669116616,-0.06808353215456009,-0.049854062497615814,-0.016307873651385307,-0.13231642544269562,-0.05167043209075928,-0.1005776897072792,-0.07564089447259903,-0.009862352162599564,-0.009575800970196724,-0.04935278370976448,0.032545994967222214,-0.002901606261730194,-0.00939497072249651,-0.09200063347816467,-0.005553419701755047,-0.06962836533784866,-0.07863973826169968,0.08656951785087585,0.043406691402196884,-0.02013234980404377,-0.02815612591803074,0.10158621519804001,-0.10346560180187225,0.04878130182623863,0.1283790022134781,0.05077546834945679,0.03347931057214737,0.023699795827269554,0.011819071136415005,-0.006851426791399717,0.012591315433382988,0.003103577299043536,-0.028556330129504204,-0.07559578120708466,0.0728939026594162,-0.017656203359365463,0.04216060787439346,-0.03580620884895325,0.0051935031078755856,-0.0403858907520771,-0.032006971538066864,0.009715070016682148,-0.030032992362976074,-0.04661528393626213,0.00011338299373164773,-0.0718763992190361,0.01513324398547411]},{"text":"They had all the more reason for doing so because the news of their defeat had spread across the countryside and made the animals on the neighbouring farms more restive than ever.","book":"Animal Farm","chapter":43,"embedding":[0.050063811242580414,0.06323549896478653,0.06824854761362076,0.02985147386789322,0.11969860643148422,0.004929061979055405,-0.07219130545854568,-0.0011851531453430653,-0.07963459193706512,0.02539774961769581,0.0796356052160263,0.006611654069274664,0.033092137426137924,-0.01948835700750351,-0.022565016523003578,0.015948934480547905,-0.044962912797927856,-0.04113107547163963,-0.046005431562662125,-0.0175203625112772,-0.09147877246141434,-0.04597092047333717,0.09539804607629776,0.06618756800889969,0.01634909398853779,-0.004335773643106222,-0.06000543385744095,0.03893675655126572,0.01652929000556469,-0.009423603303730488,-0.014847051352262497,0.061848971992731094,0.020126238465309143,-0.01163875125348568,-0.07381877303123474,0.033262044191360474,0.08030695468187332,-0.02005230076611042,0.006052772980183363,-0.018386417999863625,0.014483305625617504,-0.02428063005208969,0.0799807608127594,-0.04887140169739723,-0.08208238333463669,-0.01557257678359747,-0.03703101724386215,-0.034631311893463135,0.0531175397336483,-0.03705492243170738,0.12132977694272995,-0.010764655657112598,-0.03985605388879776,-0.15842263400554657,0.016515491530299187,-0.07793344557285309,-0.06336934864521027,0.007697585038840771,0.02576087787747383,0.010412748903036118,0.018689768388867378,0.03694659098982811,0.019851261749863625,0.003122111549600959,0.017320403829216957,-0.0711708515882492,0.0029291457030922174,0.04291675612330437,-0.08189473301172256,0.037465352565050125,0.05259530991315842,-0.06582208722829819,0.03142302483320236,-0.12471141666173935,-0.10076170414686203,-0.021673310548067093,-0.0612366609275341,0.04132445901632309,-0.04105421155691147,-0.04294077306985855,0.02979615516960621,0.03073005937039852,0.02417925000190735,0.020713984966278076,0.07185348123311996,-0.03740057721734047,0.043037936091423035,-0.11454223096370697,0.07525491714477539,-0.013879243284463882,0.049910642206668854,-0.05714477226138115,0.005421673413366079,0.058321576565504074,0.04856625944375992,-0.005780584644526243,-0.015444038435816765,0.05032941326498985,0.03032061643898487,0.008477413095533848,0.016200028359889984,-0.05181314796209335,-0.04656287282705307,-0.0863284170627594,-0.01781010814011097,-0.033515799790620804,-0.14235514402389526,-0.007758486084640026,0.006514742039144039,-0.004061472602188587,-0.09727033227682114,0.03183523565530777,0.025711586698889732,0.0667240098118782,0.049885816872119904,0.018387120217084885,-0.031109929084777832,-0.04127037525177002,-0.07161631435155869,0.005872038193047047,0.04546456038951874,-0.005989041179418564,-0.133522167801857,0.005463597364723682,0.07851209491491318,0.0254420954734087,-0.031028924509882927,2.0734356591387205e-34,0.04906657338142395,-0.04720316827297211,-0.07408218085765839,-0.03980707377195358,0.06724207103252411,-0.028376150876283646,-0.0530521459877491,0.013163971714675426,0.039168450981378555,-0.03149350732564926,-0.0009358529932796955,-0.01431983057409525,-0.02000330202281475,-0.09372234344482422,-0.02059977874159813,-0.0439717173576355,-0.042781855911016464,0.005843603052198887,0.0545605793595314,-0.024527039378881454,-0.02816019393503666,-0.01577623374760151,-0.0034663479309529066,0.04050144925713539,-0.026931414380669594,-0.013702715747058392,0.01812855899333954,0.00057285709772259,-0.050423335283994675,0.018143504858016968,0.07413146644830704,-0.1269836723804474,-0.03395147621631622,-0.026438632979989052,0.02854270674288273,0.031474702060222626,0.006395875476300716,-0.12297699600458145,-0.0068955495953559875,0.07117918878793716,0.04446708410978317,-0.013071824796497822,0.02048608288168907,-0.02761480025947094,0.0862070694565773,0.04474545270204544,-0.08974705636501312,0.005407688207924366,-0.0416763499379158,0.041310131549835205,0.027571093291044235,0.045763228088617325,0.01374212745577097,-0.04292452335357666,0.04500528797507286,0.04587883874773979,-0.022033045068383217,0.0646815076470375,-0.015275386162102222,0.055392831563949585,0.023326771333813667,-0.026470830664038658,0.028287677094340324,-0.03171805664896965,0.028529860079288483,-0.015086838975548744,0.06525212526321411,0.049659229815006256,-0.1015741303563118,0.05718381702899933,0.013263233937323093,0.014430634677410126,-0.08518406003713608,-0.07083176076412201,-0.006710718851536512,-0.012308829464018345,0.007724015973508358,-0.01664547808468342,0.012760649435222149,-0.025665629655122757,0.020240841433405876,0.054998382925987244,-0.09298989921808243,0.027955053374171257,0.008281616494059563,0.033826105296611786,0.0608648955821991,-0.054231442511081696,0.037893734872341156,-0.03713654354214668,-0.014351668767631054,0.07255363464355469,0.004524424206465483,-0.14147165417671204,-0.03127928823232651,-5.458111389390702e-34,-0.02897827699780464,0.03638486564159393,-0.03629150241613388,-0.01786097139120102,-0.03995245322585106,0.006200429983437061,0.00396115193143487,-0.07921537756919861,-0.01398045476526022,0.04900059103965759,-0.02516292780637741,-0.007352002896368504,-0.056764524430036545,-0.005332233849912882,-0.04304258152842522,-0.04081864655017853,0.06870421767234802,0.02336036041378975,0.030312586575746536,-0.026271983981132507,-0.05128426477313042,0.045684464275836945,-0.026011532172560692,-0.03566553443670273,0.0657435953617096,0.0751204565167427,-0.0835518091917038,0.03020676039159298,0.008192180655896664,-0.09214593470096588,0.0906541645526886,-0.012034876272082329,0.012025346979498863,-0.02567978762090206,0.05621350556612015,0.11086691170930862,0.0008612335659563541,0.0629744604229927,0.010249151848256588,0.0033724424429237843,-0.006830263417214155,-0.04446328058838844,-0.01716112717986107,0.029788894578814507,-0.033283088356256485,0.0738503485918045,-0.028062991797924042,0.043221697211265564,0.059727806597948074,0.01834426261484623,0.06385663151741028,0.03699110820889473,0.03451273962855339,0.00662130257114768,-0.020374560728669167,-0.029483379796147346,-0.005308279301971197,-0.03842177614569664,-0.030911214649677277,-0.0491332933306694,-0.045674264430999756,0.03660966828465462,-0.00216484721750021,-0.0017819353379309177,-0.023610856384038925,-0.005914222449064255,-0.033946000039577484,-0.028883444145321846,0.06912966817617416,-0.03823858126997948,-0.014562512747943401,0.0297547634691,-0.02468491531908512,0.0844956785440445,-0.029519058763980865,0.13160234689712524,-0.01615135744214058,-0.027534563094377518,-0.023112045601010323,0.03867287561297417,-0.08960392326116562,-0.10305629670619965,0.057244785130023956,0.04156162589788437,-0.03796589374542236,0.0643715038895607,0.001200798898935318,0.04244884476065636,0.11222507804632187,-0.0060438672080636024,0.014342466369271278,-0.12673407793045044,0.10347197949886322,0.039671044796705246,0.035551249980926514,-3.0136138917669086e-8,-0.021184904500842094,0.00870662834495306,-0.033658239990472794,0.06197871267795563,0.04248916357755661,-0.04401715472340584,0.048473458737134933,0.03264601156115532,0.038550324738025665,0.10314705967903137,-0.09672017395496368,0.04779061675071716,-0.009644798934459686,0.0812280923128128,0.0424489825963974,0.019161706790328026,0.04115244373679161,-0.07108402997255325,-0.017323078587651253,-0.0016781878657639027,-0.0385843962430954,-0.008015493862330914,-0.0820423886179924,-0.0817428007721901,0.034863367676734924,-0.023383811116218567,-0.10243503004312515,-0.020863598212599754,0.06572834402322769,0.030977534130215645,0.029125500470399857,-0.08056905120611191,-0.05193833261728287,-0.025281615555286407,0.01767045259475708,0.047431353479623795,-0.0224008709192276,-0.03305532783269882,0.050548698753118515,-0.09117220342159271,-0.02289460599422455,0.08885820209980011,0.11582411080598831,0.05413874611258507,0.09115587174892426,-0.009441395290195942,0.015033385716378689,0.013118792325258255,-0.014339540153741837,-0.04520201310515404,-0.059594977647066116,0.009578024037182331,0.07354915887117386,0.04821106046438217,0.009119350463151932,-0.033512260764837265,0.013141152448952198,-0.004842045251280069,0.05954695865511894,0.027505265548825264,-0.05758669227361679,0.03685029223561287,0.03797803819179535,0.024909313768148422]},{"text":"The animals listened first to Napoleon, then to Snowball, and could not make up their minds which was right; indeed, they always found themselves in agreement with the one who was speaking at the moment.","book":"Animal Farm","chapter":43,"embedding":[-0.023892389610409737,0.0059952763840556145,0.04010212793946266,0.009796361438930035,-0.007367120124399662,0.02265896089375019,0.052976395934820175,-0.0214786808937788,0.032669179141521454,-0.030528659000992775,-0.03122555837035179,0.030650317668914795,0.019704436883330345,0.009757035411894321,-0.004447173792868853,-0.01464759185910225,-0.017111705616116524,0.022798879072070122,0.011354957707226276,-0.006221085321158171,-0.0366755947470665,0.011182893067598343,0.052615415304899216,0.006112171337008476,-0.026725098490715027,0.0025553039740771055,-0.020905790850520134,-0.022471940144896507,0.0028456056024879217,-0.0021416821982711554,-0.015112439170479774,-0.008792703039944172,0.07354884594678879,0.06558225303888321,-0.09065437316894531,0.01076449640095234,-0.018671125173568726,-0.019749099388718605,0.053303029388189316,0.02355736307799816,-0.0270084161311388,0.033217091113328934,0.003377411048859358,-0.08094757050275803,-0.0884035974740982,-0.019679248332977295,-0.07617692649364471,0.06377159804105759,0.049359824508428574,0.0069861337542533875,-0.07892904430627823,-0.011113167740404606,-0.05943421646952629,-0.021987954154610634,-0.05067412927746773,0.02106102555990219,-0.011003530584275723,0.04355092719197273,0.03447582200169563,0.00022514561715070158,-0.008149606175720692,-0.02987240068614483,0.049593932926654816,0.03352416306734085,0.07934514433145523,0.0278574638068676,-0.03701680153608322,0.02084946632385254,-0.08061195909976959,0.058801840990781784,-0.005310347303748131,0.05549158528447151,0.08590123057365417,-0.12401001900434494,-0.06368633359670639,-0.0007413977873511612,-0.02020651288330555,-0.007092959713190794,0.03403180092573166,-0.0688171461224556,-0.06575228273868561,0.0013973722234368324,-0.028512239456176758,0.003073802450671792,0.04157566651701927,-0.06410861015319824,0.06996557116508484,-0.010786930099129677,0.025039590895175934,-0.004870879463851452,-0.05926250293850899,-0.08053802698850632,-0.013377967290580273,0.06294956803321838,0.047013215720653534,0.029829002916812897,-0.0029204590246081352,0.0592351034283638,-0.01844274066388607,0.03949754312634468,0.02128414623439312,-0.02721976861357689,-0.03683369234204292,0.018162112683057785,0.04465936869382858,-0.018351899459958076,-0.13664549589157104,-0.05288603529334068,-0.023857994005084038,0.04072887450456619,-0.06588658690452576,-0.05904737859964371,0.05349666252732277,0.16539955139160156,0.04232262820005417,0.06379768252372742,-0.06393540650606155,-0.06353747844696045,-0.0715218260884285,-0.02133774198591709,0.05296716094017029,0.0448731891810894,0.009538055397570133,0.013926361687481403,0.07556715607643127,0.021451031789183617,0.020147614181041718,-8.999884133612908e-34,0.06782767921686172,-0.06952624022960663,-0.01607360690832138,-0.05135079100728035,-0.004127305466681719,0.05531102418899536,-0.1092805340886116,0.03897766396403313,0.0006670160801149905,0.04498683661222458,-0.011797353625297546,0.09626404196023941,0.005552441813051701,-0.08909803628921509,-0.0686548501253128,0.028239155188202858,-0.09703312814235687,0.01665734127163887,0.004112701863050461,-0.027533292770385742,0.005915756803005934,0.08851984888315201,0.03177474066615105,0.01303525548428297,-0.03393501043319702,0.007954173721373081,-0.026818884536623955,-0.03888984024524689,-0.021529240533709526,0.025908544659614563,-0.03127019852399826,-0.10686855763196945,-0.05081530287861824,0.06752024590969086,-0.006475204136222601,-0.05023305490612984,0.027708012610673904,-0.07410493493080139,0.00041093482286669314,0.030156413093209267,0.08974729478359222,0.009862487204372883,-0.01391220185905695,-0.04333186894655228,-0.025359420105814934,0.019687023013830185,-0.0934787169098854,0.017223244532942772,0.003582746721804142,0.005429110489785671,-0.03588637709617615,0.04775674268603325,0.05613578483462334,-0.042396727949380875,0.030517740175127983,0.0372098907828331,0.005774905905127525,0.07130604982376099,-0.03373026102781296,-0.0691540539264679,0.041145019233226776,0.0018478762358427048,0.07921041548252106,-0.03402340039610863,0.08621567487716675,0.02087939903140068,-0.044181328266859055,0.05109616369009018,0.036693282425403595,-0.09104549139738083,0.019994691014289856,0.03488058224320412,-0.020715856924653053,-0.01663711480796337,-0.037673819810152054,-0.01796083338558674,0.07175952941179276,-0.01320937741547823,0.014219061471521854,-0.08967767655849457,0.01597321406006813,-0.01954418048262596,-0.11357869952917099,0.09696954488754272,-0.04064670950174332,0.03193296492099762,0.07072068750858307,-0.026955759152770042,0.010751026682555676,0.05198909714818001,-0.01660386472940445,0.05561428889632225,0.03577451780438423,-0.10290006548166275,0.017493296414613724,-1.197264322528524e-33,-0.011683079414069653,-0.002214577980339527,0.07166814059019089,0.05391563102602959,-0.02002234384417534,0.0405096635222435,0.010418021120131016,-0.02975481189787388,0.034871481359004974,0.0654960349202156,-0.03738472983241081,-0.04252021759748459,0.013232910074293613,-0.06616091728210449,0.03780606389045715,-0.11087100952863693,0.07907240092754364,-0.046629395335912704,0.059786513447761536,-0.04596765711903572,0.002629699418321252,-0.02406005747616291,-0.09453438222408295,0.026276038959622383,-0.016551904380321503,0.03427054360508919,0.016826286911964417,-0.08134305477142334,-0.0422045923769474,-0.05476437136530876,0.010577119886875153,0.0866573378443718,-0.03761185705661774,-0.03616651892662048,0.05647330358624458,0.022239336743950844,-0.06590255349874496,0.004222925286740065,-0.008366306312382221,-0.02285393513739109,-0.02957756631076336,-0.04573690518736839,-0.08668050169944763,-0.054932475090026855,0.05786651372909546,-0.01873558945953846,-0.0007220875122584403,0.02758697420358658,0.008892495185136795,0.004565687384456396,-0.03083762340247631,0.05631920322775841,-0.002401053672656417,-0.1375584602355957,-0.02056133560836315,0.03139341622591019,0.02788064070045948,-0.08064989000558853,0.06100400909781456,-0.06690022349357605,0.027506934478878975,-0.024635184556245804,0.0010096455225721002,-0.056721143424510956,-0.03711122274398804,0.04001159220933914,-0.08720412105321884,0.08859094232320786,0.144685298204422,0.06345392763614655,0.08973876386880875,0.007827362976968288,-0.0009164803777821362,-0.0016978788189589977,0.07478943467140198,0.06595209985971451,-0.07114670425653458,-0.06596532464027405,0.028884436935186386,-0.09107913821935654,-0.031104905530810356,0.05482829734683037,-0.02489079348742962,0.02711595967411995,0.05189112201333046,0.03984013944864273,-0.0377507284283638,0.01831284910440445,0.07987789809703827,0.03495846688747406,0.0502123087644577,-0.036178190261125565,0.0571451410651207,0.013202164322137833,-0.07590179145336151,-3.04736360590141e-8,-0.058537233620882034,0.03717203065752983,0.006892879027873278,0.08946141600608826,0.07838460803031921,0.006860841531306505,-0.019463561475276947,-0.024133877828717232,-0.03597056120634079,0.01990424655377865,-0.0026251100935041904,0.06634024530649185,-0.021330662071704865,0.05736420676112175,0.021302616223692894,0.07840988785028458,0.039695702493190765,-0.09524182975292206,-0.02166352979838848,0.041162166744470596,-0.03898696228861809,-0.0015994035638868809,-0.026135709136724472,-0.11690076440572739,-0.07619791477918625,-0.04177268221974373,-0.04021308198571205,-0.021105539053678513,-0.03995637968182564,0.033890251070261,-0.0685444176197052,-0.0053865076042711735,-0.05264442414045334,-0.07017343491315842,0.08484191447496414,0.007801281753927469,-0.013284771703183651,-0.014379615895450115,0.09849750995635986,-0.13690634071826935,0.03779447451233864,0.10428281873464584,0.036129552870988846,0.03008025325834751,0.02817959524691105,0.0721336230635643,0.04637639969587326,-0.003915322478860617,-0.02827429585158825,0.004594906698912382,-0.0891023799777031,0.11265552788972855,0.0033929888159036636,0.025841642171144485,0.04292650893330574,0.03833726793527603,-0.031064355745911598,-0.0538661889731884,-0.05550241842865944,-0.01445261761546135,-0.04460734501481056,0.11481129378080368,-0.053106363862752914,-0.027163758873939514]},{"text":"He said very quietly that the windmill was nonsense and that he advised nobody to vote for it, and promptly sat down again; he had spoken for barely thirty seconds, and seemed almost indifferent as to the effect he produced.","book":"Animal Farm","chapter":43,"embedding":[0.048413947224617004,0.06196717917919159,0.036820102483034134,0.05624288320541382,0.049432504922151566,-0.012722176499664783,0.04935068637132645,-0.01763216219842434,-0.05189310759305954,-0.07235633581876755,0.009129938669502735,0.03680485114455223,0.01718832366168499,-0.11426101624965668,-0.0368819385766983,0.04233625531196594,-0.025437073782086372,-0.027499955147504807,-0.03886577859520912,0.008173124864697456,0.014641507528722286,0.04408719018101692,0.0786372646689415,-0.03027443028986454,0.056269530206918716,0.04841705784201622,-0.038844995200634,0.022840969264507294,0.058354295790195465,0.03807193040847778,0.014977986924350262,0.01059617381542921,-0.013827529735863209,-0.02737598866224289,-0.02072942815721035,-0.038055285811424255,0.10213487595319748,0.03836089000105858,0.02340274676680565,-0.09514226764440536,0.023639025166630745,-0.0029537747614085674,-0.02172228693962097,-0.027391351759433746,-0.027768325060606003,0.011005682870745659,0.01053730770945549,-0.04983675107359886,0.02961791306734085,-0.011518290266394615,-0.05542372912168503,0.00245995563454926,-0.015149877406656742,-0.16244153678417206,0.03961794823408127,0.019671855494379997,0.07743006199598312,0.0762443020939827,0.011899415403604507,-0.00339056015945971,-0.022099269554018974,-0.10745023936033249,-0.034232016652822495,0.02191418595612049,0.10165616869926453,0.015333845280110836,-0.03118811547756195,-0.10885093361139297,-0.03502471745014191,0.06188281625509262,0.024062762036919594,-0.009360137395560741,-0.0016459997277706861,-0.059513676911592484,-0.06327194720506668,-0.13688242435455322,0.043321531265974045,0.0010640887776389718,0.060061100870370865,0.037552569061517715,-0.0431525893509388,0.02345709502696991,-0.061790939420461655,-0.008523131720721722,0.023625653237104416,-0.07035556435585022,0.050794776529073715,-0.022821221500635147,-0.008893155492842197,0.051442671567201614,-0.030766183510422707,-0.006375978235155344,-0.027458887547254562,0.062196966260671616,0.06699522584676743,0.09593845903873444,0.025665296241641045,0.06051220744848251,-0.1009402647614479,0.036232467740774155,0.004376629367470741,0.04412229359149933,-0.05712759494781494,-0.04539567977190018,-0.07468334585428238,0.022179467603564262,-0.08272814005613327,0.04594540596008301,-0.09308549761772156,0.04059809073805809,-0.04155441373586655,-0.03336990252137184,0.020980773493647575,0.01092645525932312,0.024295758455991745,0.03864629939198494,0.026968633756041527,-0.06497812271118164,-0.0648253858089447,0.0764661505818367,0.07674691081047058,0.0602339543402195,-0.058328140527009964,0.042503006756305695,0.04141934588551521,0.02661961503326893,0.04322581738233566,-2.691330866735098e-33,-0.0005248355446383357,-0.008935859426856041,-0.018894586712121964,0.01458115316927433,0.05839240923523903,0.03037242405116558,0.009695835411548615,-0.029020922258496284,0.061284326016902924,0.04220452904701233,0.03951941430568695,-0.024817917495965958,0.02168332226574421,-0.00994868017733097,-0.03794269263744354,-0.060097094625234604,0.028725706040859222,-0.018227431923151016,0.04035631939768791,-0.10805049538612366,0.060806695371866226,0.03321949392557144,-0.017178259789943695,-0.07223543524742126,0.01759246736764908,-0.07919588685035706,0.032462041825056076,-0.02124936878681183,0.05568655952811241,0.07362356036901474,-0.07404106110334396,0.009187528863549232,-0.0020903549157083035,-0.01706854999065399,0.06094799190759659,-0.0464334674179554,-0.036999210715293884,-0.03188987448811531,-0.029550475999712944,0.010714060626924038,-0.0111447274684906,0.05106101185083389,-0.06913945823907852,0.018065322190523148,-0.002168194158002734,0.03667466714978218,-0.01974358968436718,0.07538095116615295,-0.014689411036670208,0.008686358109116554,0.06921877712011337,0.0637856274843216,0.025338204577565193,0.007155013736337423,0.07634495198726654,-0.03799859434366226,0.004474211949855089,-0.023307042196393013,-0.07089542597532272,-0.002881943713873625,0.033185042440891266,0.019446443766355515,-0.023520423099398613,-0.007686743978410959,-0.016295094043016434,-0.005566915962845087,-0.12784720957279205,-0.03994423896074295,-0.12375210970640182,-0.014992382377386093,0.021999552845954895,-0.028923198580741882,-0.040550366044044495,-0.041747890412807465,-0.07333832234144211,-0.03298148140311241,-0.01633305847644806,0.04095552861690521,-0.0034170637372881174,-0.07874254137277603,0.060946378856897354,-0.067719466984272,-0.06360866129398346,-0.05351145938038826,-0.014657765626907349,-0.023584876209497452,-0.018707115203142166,0.014051299542188644,-0.030561411753296852,-0.11182696372270584,0.009984179399907589,0.05758431553840637,0.07148204743862152,-0.08593379706144333,-0.13875913619995117,-1.3975963860639776e-33,-0.1406492292881012,0.04119913652539253,-0.02193225547671318,0.08711384236812592,-0.03519534692168236,0.05721542239189148,-0.05821751430630684,-0.038721874356269836,-0.0016196005744859576,-0.03913813829421997,0.027937911450862885,0.0040281410329043865,0.03474096953868866,0.0004216090019326657,0.047654133290052414,0.007234810385853052,0.05792257934808731,0.002623587381094694,-0.005098003428429365,0.0723220631480217,0.13019651174545288,-0.019147085025906563,0.00587787851691246,0.018811624497175217,-0.030442189425230026,-0.01082520466297865,0.007650965824723244,-0.09127279371023178,0.014880522154271603,-0.009398115798830986,-0.00591480964794755,0.01473315991461277,-0.04846362769603729,-0.00375020457431674,0.060933247208595276,0.03977145627140999,-0.05614098161458969,0.017612438648939133,-0.0488617941737175,-0.011718738824129105,0.03517710790038109,-0.0399380624294281,0.009886651299893856,-0.05950773134827614,-0.045602623373270035,0.026131462305784225,-0.036354370415210724,-0.057265982031822205,-0.023857787251472473,0.044154513627290726,-0.016819331794977188,0.07167712599039078,0.06006380543112755,0.11040634661912918,-0.03144768625497818,-0.05601269006729126,0.015587186440825462,-0.06553131341934204,0.101748988032341,-0.038587022572755814,-0.06442956626415253,-0.03187769651412964,0.000019926930690417066,-0.003746112110093236,0.08474772423505783,0.04716670885682106,-0.03986547142267227,-0.0302834864705801,0.10084563493728638,0.0011018617078661919,0.02118479274213314,0.06349822133779526,-0.021461762487888336,0.024745173752307892,0.013824493624269962,0.13677164912223816,0.005052895285189152,0.003818539436906576,-0.05097102001309395,0.00016757844423409551,0.05691395327448845,0.06150823459029198,0.029637953266501427,-0.09705667942762375,-0.020882420241832733,-0.09588327258825302,-0.046836644411087036,-0.07746513932943344,0.013747772201895714,0.1053137555718422,0.07829776406288147,-0.04992259666323662,0.06199691444635391,0.026607384905219078,0.06570674479007721,-3.223500755211717e-8,-0.06724479049444199,-0.05148814246058464,0.022422369569540024,-0.01698344200849533,0.0598265640437603,0.04041188210248947,-0.0069494969211518764,-0.04573550820350647,-0.043517936021089554,0.023324856534600258,0.03807282820343971,0.018116969615221024,0.02676529996097088,0.02878592535853386,0.03498249128460884,0.004332234617322683,-0.03137696534395218,-0.08603537082672119,-0.03018338792026043,-0.022852806374430656,0.06618368625640869,0.020632939413189888,-0.07817251235246658,0.010865958407521248,0.01633431203663349,0.04386777803301811,-0.0044691902585327625,0.062165118753910065,-0.007734174374490976,-0.02565235272049904,-0.03683847934007645,0.030333226546645164,-0.07244497537612915,-0.09477398544549942,-0.15857405960559845,0.01772342063486576,0.0007193428464233875,0.011696046218276024,0.00263556488789618,-0.036185722798109055,-0.055475398898124695,0.04248122125864029,-0.010103530250489712,0.015055880881845951,0.06018165498971939,-0.005288759712129831,-0.036385342478752136,-0.04612526297569275,-0.030269766226410866,0.0093931183218956,0.014223592355847359,0.074806347489357,0.08401922881603241,0.011541653424501419,0.004242562688887119,0.062099140137434006,-0.02068985626101494,-0.035969723016023636,-0.10135213285684586,-0.06776992231607437,0.014925974421203136,0.08609814941883087,-0.07054366916418076,-0.00831945613026619]},{"text":"Electricity, he said, could operate threshing machines, ploughs, harrows, rollers, and reapers and binders, besides supplying every stall with its own electric light, hot and cold water, and an electric heater.","book":"Animal Farm","chapter":43,"embedding":[-0.06437298655509949,0.027773655951023102,0.009969071485102177,0.06910631060600281,-0.09067024290561676,-0.0407077819108963,0.016913531348109245,-0.057230886071920395,-0.10496203601360321,0.035461995750665665,0.042736444622278214,0.0050179618410766125,0.03069915995001793,-0.04224175959825516,0.027134733274579048,-0.01498901005834341,0.04339343309402466,0.01934981718659401,-0.07396534085273743,-0.05324644595384598,0.06387712806463242,0.0625365674495697,-0.012559507973492146,-0.041485387831926346,-0.05320987105369568,0.0658872053027153,-0.103659987449646,0.053406860679388046,0.015880806371569633,-0.051115524023771286,-0.02429363504052162,-0.06984395533800125,-0.06557736545801163,0.013331850059330463,0.030286137014627457,0.08328752219676971,0.031953901052474976,0.030156904831528664,0.027896380051970482,0.02910294011235237,0.038581062108278275,-0.11446581780910492,0.05314859747886658,0.0125273447483778,-0.06156134232878685,0.02118515782058239,0.010884664952754974,-0.09583093225955963,-0.03369104117155075,-0.040234047919511795,-0.03374074772000313,-0.05581511929631233,0.02712966501712799,0.031916290521621704,-0.0033147050999104977,-0.038027435541152954,0.019720349460840225,-0.01752914860844612,-0.013794357888400555,-0.022004425525665283,-0.024252647534012794,0.03190305456519127,-0.006341846194118261,0.037891414016485214,0.021615097299218178,-0.04837574064731598,-0.008128267712891102,0.00976070761680603,-0.06175097078084946,0.003979438915848732,0.0348370224237442,-0.0781431570649147,0.022778281942009926,-0.023457257077097893,-0.030854230746626854,-0.08365822583436966,0.04030337557196617,-0.05425024777650833,0.017551252618432045,-0.02932647056877613,-0.03103870339691639,-0.055743537843227386,-0.06877633929252625,0.02950131706893444,-0.033726491034030914,0.07020266354084015,0.09196380525827408,-0.08058681339025497,0.018648574128746986,-0.018711473792791367,-0.013967851176857948,-0.059351880103349686,0.023873435333371162,0.008089737966656685,0.01075075939297676,0.06520332396030426,-0.022662589326500893,0.001908223726786673,-0.0801129937171936,-0.05266639217734337,0.01401169691234827,0.016243238002061844,0.006279664114117622,-0.019412433728575706,-0.07087326794862747,-0.003342884127050638,-0.10947305709123611,0.019997602328658104,0.017835738137364388,-0.06674284487962723,-0.01012425497174263,-0.05049925670027733,-0.08603940904140472,-0.024723635986447334,0.006000921130180359,-0.06697366386651993,-0.05906268581748009,-0.05916953459382057,-0.05448790639638901,0.06487881392240524,0.05709849298000336,0.03897403925657272,0.028722016140818596,0.05387267842888832,0.025677306577563286,-0.03988777473568916,0.10458266735076904,-1.1406976976570323e-33,-0.01945428177714348,-0.04367392882704735,0.037380121648311615,-0.028222927823662758,0.07385239750146866,0.00807455088943243,-0.03143598139286041,0.06872846931219101,0.09066109359264374,0.04343963786959648,0.043607067316770554,0.11173469573259354,0.036755241453647614,0.11610237509012222,0.026722265407443047,-0.06205565854907036,0.11178218573331833,-0.08330736309289932,0.07225210219621658,-0.10089827328920364,0.03293793275952339,-0.001249122666195035,0.023851873353123665,-0.05144038796424866,0.0449834018945694,-0.02374293841421604,0.060826096683740616,-0.05592327192425728,0.022968312725424767,0.03732499107718468,-0.06411653757095337,0.10517719388008118,-0.03387884050607681,0.10455267131328583,-0.03598007559776306,0.11194781959056854,-0.0019507544348016381,-0.016735604032874107,-0.028475115075707436,0.014044110663235188,-0.00986766442656517,-0.001434850157238543,-0.03183792904019356,0.009115400724112988,-0.06825300306081772,-0.02656077779829502,0.018929045647382736,0.009995496831834316,-0.011958487331867218,0.023175381124019623,0.032091766595840454,0.047402523458004,0.02188820391893387,0.007664226461201906,0.14110608398914337,0.02231144905090332,-0.019047757610678673,0.06737972050905228,0.05803772434592247,0.011848170310258865,-0.04828360304236412,0.022999349981546402,-0.01756957173347473,0.01254845317453146,-0.05553480237722397,-0.05621795356273651,0.06120041757822037,-0.016918214038014412,-0.0072957659140229225,0.03128207474946976,-0.0977150946855545,-0.03873380273580551,0.0007384180789813399,-0.010105462744832039,0.03092886507511139,0.04772868752479553,-0.08875972777605057,0.012532972730696201,-0.0912780612707138,-0.036958642303943634,-0.013326098211109638,-0.11950426548719406,-0.0731341615319252,-0.0019330083159729838,0.04937281087040901,-0.02696322463452816,-0.005531013943254948,0.07148101180791855,-0.02150731347501278,-0.028313374146819115,0.0332656055688858,-0.015489887446165085,0.06313511729240417,-0.013677026145160198,-0.0821157693862915,-2.6711178740307243e-33,-0.033279500901699066,0.028864460065960884,-0.07605281472206116,0.12368526309728622,0.03215298056602478,0.009092620573937893,-0.057386480271816254,-0.05246909335255623,-0.061958782374858856,0.022551508620381355,-0.04798790439963341,-0.001029900973662734,0.005116731394082308,-0.05264034867286682,0.03444928303360939,-0.003910757601261139,-0.10545415431261063,0.014235150068998337,0.04662203788757324,0.06298693269491196,0.02400977723300457,0.07501520216464996,-0.0006397836841642857,-0.017919594421982765,-0.051566388458013535,0.06714735925197601,-0.09555664658546448,-0.04117504879832268,-0.002852232428267598,0.0558287650346756,0.0014647747157141566,-0.03285280615091324,-0.005034697242081165,0.06028221175074577,-0.06622117012739182,0.0020757101010531187,0.0878995731472969,0.0472724586725235,-0.015043973922729492,-0.06113671511411667,0.11432671546936035,-0.06032990664243698,0.049828287214040756,0.1046028584241867,-0.09894147515296936,0.019826790317893028,-0.09271680563688278,-0.03264176845550537,-0.02124878391623497,0.07070160657167435,0.04135514050722122,-0.011254794895648956,-0.033776331692934036,-0.009117262437939644,-0.011091206222772598,-0.05069970339536667,-0.02680213935673237,-0.07109072804450989,-0.009407196193933487,-0.015942290425300598,0.041017599403858185,-0.0722452774643898,0.025746174156665802,0.09885814040899277,-0.0006681638769805431,0.008805767633020878,-0.03521205112338066,0.009072043932974339,0.0033382729161530733,-0.009971564635634422,0.05409293249249458,0.044590674340724945,0.026116348803043365,-0.1110461875796318,-0.007993952371180058,0.025938142091035843,0.01252727024257183,-0.10782637447118759,-0.005366096273064613,-0.01902441307902336,-0.01941595785319805,-0.005638433620333672,0.013413852080702782,-0.05500638857483864,0.03972981870174408,-0.1091860979795456,-0.004472036380320787,0.0020069351885467768,0.035296883434057236,-0.03253141790628433,0.06248144805431366,-0.006322095636278391,0.06008610129356384,0.06805769354104996,0.01147344522178173,-3.771462786517077e-8,-0.05797053128480911,0.03821974992752075,0.05648873746395111,-0.017653655260801315,0.058246348053216934,-0.03725239261984825,0.08828436583280563,0.04773934930562973,-0.004209951497614384,0.053054653108119965,0.07452227920293808,0.01935439556837082,0.05104175582528114,0.05778662487864494,0.07980275899171829,0.021344734355807304,0.012269683182239532,0.010142364539206028,-0.018843743950128555,-0.0005195933626964688,0.03591680899262428,-0.03072727844119072,0.02901327796280384,0.033151909708976746,0.00452887499704957,0.07214292138814926,0.002319769933819771,-0.055895887315273285,-0.03753143921494484,0.09573959559202194,-0.059063058346509933,-0.0219448059797287,0.015574086457490921,0.014841850847005844,-0.05766146257519722,-0.01450218353420496,-0.05141590163111687,-0.05386681109666824,-0.021845553070306778,-0.08327041566371918,-0.02341395802795887,-0.03602494299411774,-0.057603869587183,0.050878334790468216,-0.0050302594900131226,-0.06983231008052826,-0.10096604377031326,-0.09661367535591125,-0.03538013622164726,0.07023599743843079,-0.0026299403980374336,-0.00011341711069690064,0.1258927583694458,-0.01949307695031166,0.027096068486571312,0.05369944870471954,-0.005759839434176683,-0.025962436571717262,-0.0616605207324028,0.03155253827571869,0.04193609580397606,-0.007587391883134842,0.03320162743330002,-0.005556309130042791]},{"text":"In a moment he was out of the door and they were after him.","book":"Animal Farm","chapter":44,"embedding":[0.028874807059764862,0.099527508020401,-0.05670325458049774,0.04650549963116646,0.08421303331851959,0.001189125468954444,0.07350534200668335,-0.04689060151576996,0.04897930100560188,-0.03231154382228851,0.08801309019327164,0.06135135516524315,0.017004113644361496,-0.056266069412231445,0.11325185000896454,-0.06369826197624207,-0.03657922148704529,-0.013348921202123165,-0.09380737692117691,-0.03838750347495079,-0.022548237815499306,0.0019891681149601936,0.005603097844868898,-0.04059211164712906,0.005811255890876055,0.0005032421322539449,-0.022016823291778564,-0.005942113231867552,0.03669726103544235,0.05366028845310211,-0.010526384226977825,-0.07435395568609238,0.020824797451496124,-0.024597888812422752,-0.017456233501434326,0.04240311682224274,0.07570087164640427,0.0514635406434536,0.04645340517163277,-0.06689000874757767,0.03330754116177559,0.027969250455498695,0.004910618532449007,0.022668633610010147,-0.02922074683010578,-0.05233516916632652,-0.019754743203520775,-0.14407572150230408,0.07799570262432098,0.027480797842144966,-0.050345078110694885,0.032911960035562515,-0.0009887145133689046,0.038534168154001236,-0.03639709949493408,0.0291623342782259,0.09676530212163925,-0.050944734364748,-0.002621652325615287,-0.021556006744503975,0.017436545342206955,-0.027440762147307396,-0.04181543365120888,0.03374622017145157,-0.008871215395629406,0.029869304969906807,-0.028924154117703438,-0.04199295863509178,0.06025727093219757,0.0720406025648117,0.08879902213811874,-0.03546407073736191,0.005863633472472429,-0.039996180683374405,-0.03344465419650078,-0.06386436522006989,0.01170271448791027,-0.009318124502897263,0.05036226660013199,-0.012282690033316612,-0.04015582054853439,-0.09027241170406342,-0.07973680645227432,0.050772830843925476,0.03566921129822731,-0.036322418600320816,0.07592244446277618,-0.046145569533109665,-0.0367596410214901,0.11131361126899719,-0.04248172417283058,-0.06823644787073135,-0.059771034866571426,0.046794310212135315,-0.016007550060749054,-0.10293810814619064,0.008855865336954594,0.09944693744182587,-0.0006410502828657627,0.0587015375494957,0.002238487359136343,-0.020684190094470978,-0.02794519253075123,-0.02837042696774006,0.0009080686722882092,0.07706009596586227,-0.038430992513895035,-0.0021823905408382416,0.059070952236652374,0.013947103172540665,-0.025044748559594154,-0.025427838787436485,0.024050047621130943,0.03791489079594612,0.08563712239265442,-0.00047977600479498506,-0.017872897908091545,0.05433553829789162,0.033801328390836716,0.026642095297574997,0.04295538365840912,0.07554125785827637,-0.0030737908091396093,0.0372718945145607,-0.044581253081560135,-0.024937108159065247,0.04465211555361748,-6.256437173821127e-33,-0.004420505836606026,0.02420620061457157,-0.06135755032300949,-0.036842044442892075,0.07335396856069565,0.04435844346880913,-0.05447075515985489,-0.008922173641622066,0.007993166334927082,0.027835801243782043,-0.12231075763702393,-0.08255714178085327,-0.0062365103513002396,-0.140067458152771,-0.10725441575050354,0.07690726220607758,-0.025627505034208298,-0.010247403755784035,0.01359796617180109,-0.0034668361768126488,0.0065952688455581665,0.019817732274532318,0.005176689941436052,0.10231906175613403,0.023077059537172318,0.012996954843401909,-0.024587396532297134,-0.02694752998650074,0.03036915324628353,0.03329097852110863,0.010229104198515415,0.05395331606268883,0.059315286576747894,0.10392079502344131,-0.005526128225028515,0.013246468268334866,-0.031131213530898094,-0.029769407585263252,-0.05336446315050125,-0.04728662222623825,-0.03409556299448013,0.018887154757976532,0.017649073153734207,0.020994747057557106,-0.12849639356136322,-0.013392960652709007,-0.0792769119143486,0.029409728944301605,0.06665635854005814,-0.021333210170269012,0.0004091539594810456,0.052777983248233795,0.059084970504045486,0.009243964217603207,-0.06416118144989014,-0.019753700122237206,0.004810553044080734,0.06378103047609329,0.058211520314216614,0.01870919205248356,0.0557459257543087,0.048561740666627884,0.09785237163305283,0.02365795709192753,-0.021887177601456642,-0.1464998424053192,-0.05025970935821533,-0.03287043422460556,0.008348928764462471,-0.04220498353242874,-0.0782022476196289,0.0011917967349290848,-0.03098972514271736,-0.0013708178885281086,-0.09707245975732803,-0.004744709003716707,-0.08346107602119446,-0.039441246539354324,0.01370066124945879,-0.0022503254003822803,0.03244190663099289,-0.024697957560420036,-0.029878733679652214,0.005867541767656803,-0.002783858682960272,0.012247900478541851,-0.022139688953757286,-0.11066079884767532,-0.04121575132012367,0.030950084328651428,-0.04605400562286377,0.04165749251842499,0.0504104420542717,-0.05038410425186157,-0.015713375061750412,1.0909930210584658e-33,0.0008475001086480916,0.048358600586652756,-0.004114644136279821,-0.01785525679588318,0.036514218896627426,-0.03741573914885521,-0.05284669250249863,0.034252408891916275,0.05681867524981499,-0.012459627352654934,-0.06457889825105667,0.028338385745882988,0.10066605359315872,0.004552381578832865,-0.03314584493637085,-0.025454992428421974,0.10039124637842178,-0.06722217798233032,0.002899147104471922,0.04444698989391327,0.08198767900466919,-0.07318141311407089,0.0397329106926918,0.030922360718250275,-0.04299403354525566,0.000009204691195918713,0.0892648696899414,0.015687579289078712,-0.17883606255054474,-0.07085359841585159,-0.005360498558729887,-0.05480509623885155,-0.02992561273276806,0.06338876485824585,0.012678633444011211,0.045493658632040024,-0.020333552733063698,0.022797975689172745,-0.0857100784778595,0.01795121654868126,0.0162234865128994,0.032596655189991,-0.03899761661887169,0.06357987970113754,0.027839789167046547,0.07542142271995544,0.011712425388395786,0.07797354459762573,-0.024108054116368294,0.025619378313422203,-0.020893428474664688,0.08806243538856506,0.04760780185461044,-0.006245235446840525,-0.06097007542848587,-0.025882365182042122,-0.04901636764407158,-0.002803685376420617,0.07317531853914261,-0.0056292824447155,-0.06381748616695404,-0.005895386915653944,0.08137905597686768,0.01811186410486698,0.0005315228481777012,0.015156758949160576,-0.034033987671136856,-0.003074896289035678,-0.03181380033493042,-0.06431079655885696,0.034538306295871735,-0.01471417024731636,-0.03248811513185501,0.04163428395986557,-0.032060131430625916,0.06315258145332336,-0.08727319538593292,-0.12751410901546478,-0.019688427448272705,-0.11430510878562927,-0.03265748918056488,-0.07505548745393753,-0.039518967270851135,-0.03741484135389328,-0.015240629203617573,-0.05865764245390892,0.07276076823472977,-0.05401744693517685,0.03889622911810875,-0.040303830057382584,0.07458649575710297,0.005844872444868088,0.07894276082515717,-0.020329320803284645,-0.04233826696872711,-2.5165945771732368e-8,-0.008466901257634163,0.00710758101195097,-0.0399811714887619,-0.041521865874528885,0.07015016674995422,0.08446687459945679,0.03262399509549141,0.052272260189056396,-0.017924802377820015,0.03262588381767273,-0.010803661309182644,0.02397642657160759,-0.005881146993488073,0.006516472902148962,0.006331266835331917,0.009165854193270206,-0.026565738022327423,-0.13394062221050262,-0.015105629339814186,0.038959454745054245,-0.04092465713620186,0.002348901703953743,-0.01808355189859867,0.04969354346394539,0.01675112172961235,0.019228661432862282,-0.10445979237556458,-0.0238087996840477,0.007515380159020424,0.08809992671012878,0.02024029567837715,-0.014180556870996952,-0.0028588625136762857,0.029855234548449516,0.003611538093537092,0.07214143872261047,0.05879650264978409,0.0076986271888017654,0.06904146075248718,-0.10996951907873154,-0.00850727315992117,0.011417804285883904,-0.07375659048557281,0.021043341606855392,0.06842274963855743,0.019770195707678795,0.061424046754837036,0.040312256664037704,-0.08496547490358353,0.031286902725696564,-0.00966523215174675,0.002280445070937276,-0.054356541484594345,-0.07257037609815598,0.04776304215192795,-0.08638012409210205,-0.013104409910738468,-0.03795060142874718,-0.053656239062547684,-0.002403603633865714,-0.06618255376815796,-0.024547742679715157,0.013193340972065926,-0.007564696948975325]},{"text":"Then he was up again, running faster than ever, then the dogs were gaining on him again.","book":"Animal Farm","chapter":44,"embedding":[0.014026546850800514,0.05038585141301155,-0.012669953517615795,0.07712803035974503,0.002349759452044964,0.028465989977121353,-0.050713714212179184,-0.0015575115103274584,-0.002653121016919613,-0.058437421917915344,0.12467373162508011,0.07211405038833618,0.05108087137341499,0.025768280029296875,-0.019093723967671394,0.002204732969403267,-0.02473919466137886,0.045763321220874786,-0.06048484519124031,-0.06169746071100235,-0.015741514042019844,-0.03671247884631157,0.0586797371506691,0.045307908207178116,-0.07874717563390732,-0.013246620073914528,-0.06686048209667206,0.014681607484817505,0.06011759117245674,-0.012147204019129276,-0.06844840943813324,-0.10032622516155243,-0.02319677360355854,-0.021983081474900246,-0.07337790727615356,-0.0579105019569397,0.04036840796470642,0.06361432373523712,0.06548615545034409,0.06103852018713951,0.029289793223142624,-0.0890192836523056,-0.05397970601916313,-0.027963528409600258,-0.05545753985643387,-0.01117885485291481,-0.0657525360584259,-0.04513486474752426,0.06482411921024323,0.027201693505048752,-0.02440972998738289,0.013057240284979343,0.007719055749475956,-0.05025973170995712,0.02105322852730751,0.024371033534407616,-0.04769673943519592,0.017455561086535454,0.029025621712207794,-0.04428884759545326,-0.03530418500304222,0.0379500649869442,0.04199524596333504,0.048566773533821106,0.017254091799259186,-0.020273607224225998,-0.0776732787489891,-0.017885660752654076,-0.009598479606211185,0.12628312408924103,0.1215345561504364,0.029051633551716805,0.016889765858650208,-0.13615047931671143,-0.04117601737380028,-0.05998246744275093,-0.00424905214458704,0.038080357015132904,0.08134230226278305,-0.0233612060546875,0.014809399843215942,-0.09590841084718704,-0.12720972299575806,0.0763910710811615,0.041081469506025314,-0.002912183990702033,0.03895685821771622,-0.06487134844064713,-0.06087739020586014,0.04416479915380478,-0.04744341969490051,-0.05365069583058357,-0.021879639476537704,0.07721369713544846,0.03777184337377548,0.006552558857947588,-0.06012529134750366,-0.019895635545253754,0.008041564375162125,0.035887088626623154,0.013004627078771591,0.014018828980624676,0.030500199645757675,0.059923477470874786,0.06368356943130493,0.013237171806395054,-0.012012025341391563,0.08401896059513092,0.03378681465983391,0.0639042854309082,0.032280948013067245,-0.06503865867853165,0.05632047727704048,0.10076276957988739,0.001602971344254911,0.030841577798128128,-0.12044614553451538,-0.02785833552479744,-0.0994620993733406,0.059823404997587204,0.07584662735462189,0.04311133176088333,-0.03820187970995903,-0.021566221490502357,0.023404797539114952,-0.0731382668018341,0.11736726760864258,-2.260962181089904e-33,0.007239560596644878,-0.0861630067229271,-0.030080346390604973,-0.05447494238615036,0.03701380267739296,-0.008766921237111092,-0.0462203323841095,0.004075291566550732,-0.003975610714405775,-0.05214712768793106,-0.08897081017494202,-0.009412308223545551,-0.008413335308432579,-0.011813039891421795,-0.06948088854551315,-0.05439154803752899,0.016378721222281456,0.04892300069332123,0.10712382197380066,-0.01786956563591957,0.04415678605437279,0.015972048044204712,-0.024254241958260536,0.011313769966363907,0.10264012962579727,0.03598695620894432,-0.03254857659339905,-0.028317704796791077,-0.050811152905225754,0.006386679597198963,0.0011930286418646574,-0.029782429337501526,-0.03739171475172043,0.01182540412992239,-0.07589656114578247,0.011625263839960098,0.03710297495126724,-0.053148724138736725,-0.027415618300437927,0.08154959231615067,0.04026445001363754,0.007549355737864971,0.029172537848353386,-0.03664178028702736,-0.09652849286794662,-0.01370701752603054,-0.06084953248500824,0.06142515316605568,-0.037019286304712296,0.02285977266728878,0.03582905977964401,0.013360423967242241,0.042841020971536636,-0.05892731249332428,0.0026541261468082666,0.04272131621837616,0.015386325307190418,0.07806743681430817,-0.03468157723546028,0.13209041953086853,0.08080746978521347,0.0064669339917600155,0.06031172350049019,0.011457091197371483,-0.015721973031759262,-0.14506423473358154,-0.018992390483617783,-0.037223607301712036,-0.09644173830747604,0.0521930530667305,-0.03014998696744442,-0.06259320676326752,-0.01782187446951866,-0.03299977630376816,0.04950227215886116,-0.054594554007053375,-0.05052521452307701,0.056459758430719376,-0.11104603856801987,-0.04710744321346283,0.0563189759850502,-0.04793273285031319,0.016329163685441017,0.02323288656771183,0.05292904004454613,0.035462312400341034,0.02341219037771225,-0.08701051026582718,0.000566742499358952,0.005956385284662247,-0.0031341807916760445,0.0018850048072636127,0.05970277264714241,-0.0436026006937027,-0.019501788541674614,9.532719651628823e-35,-0.021023208275437355,0.04718396067619324,0.0659622922539711,0.026662975549697876,0.03243338316679001,0.03772102668881416,-0.07778750360012054,0.0302964486181736,-0.09748617559671402,-0.0335436686873436,-0.026783911511301994,0.031545087695121765,0.0517553836107254,0.029245324432849884,0.004265200346708298,0.0017453520558774471,0.03217676281929016,0.04275642707943916,-0.01034327782690525,0.04611478000879288,0.02935572899878025,-0.018429355695843697,0.0382608138024807,0.011711899191141129,0.03342372551560402,0.08889351785182953,0.011780188418924809,0.06180848926305771,-0.047233253717422485,-0.018576644361019135,0.006475187372416258,-0.08736317604780197,-0.03337806463241577,0.036330729722976685,-0.01744585484266281,0.08692244440317154,-0.022638563066720963,-0.04637250304222107,-0.06513670086860657,-0.013050245121121407,0.06906392425298691,-0.0026154196821153164,0.0023649721406400204,0.02482602931559086,0.013213035650551319,0.025377778336405754,-0.011294689029455185,0.02347223460674286,-0.03672560304403305,0.009319874458014965,-0.02596893534064293,-0.018919408321380615,-0.040596261620521545,0.01423601247370243,-0.06911423057317734,0.02247471734881401,0.011067666113376617,-0.02516263909637928,-0.01915884204208851,-0.024448860436677933,-0.04546007141470909,-0.011509577743709087,0.01294924970716238,0.08727023005485535,-0.08028902858495712,-0.049988776445388794,-0.05083382502198219,-0.01652863621711731,0.014899499714374542,-0.08284597843885422,0.008822735399007797,0.06628662347793579,-0.07564984261989594,0.028637848794460297,-0.04886607825756073,0.07579874247312546,-0.06341210752725601,0.03223586827516556,-0.0016770672518759966,-0.05114973336458206,-0.11733325570821762,-0.06874499469995499,0.021678879857063293,0.06526536494493484,-0.08227105438709259,0.05377407744526863,-0.025741353631019592,0.02641320414841175,0.05870569869875908,-0.06832274049520493,0.08066331595182419,-0.017500288784503937,0.0812755897641182,0.10832905024290085,-0.04701274260878563,-2.1117996240604953e-8,-0.026648348197340965,0.07222750037908554,-0.03080102615058422,0.02907106839120388,0.07998973876237869,0.0978008434176445,-0.005365947727113962,-0.01527794636785984,-0.04834020510315895,0.004452031571418047,-0.006334079895168543,0.0414782352745533,0.09755683690309525,0.052286840975284576,0.017107034102082253,0.0023032608442008495,-0.02788686752319336,-0.08858200907707214,0.0037618200294673443,0.052860528230667114,-0.06292092800140381,0.07157322764396667,-0.02763884700834751,0.0218205489218235,-0.001193042378872633,-0.0070713842287659645,-0.0617125928401947,0.012721102684736252,-0.03939436748623848,0.006136918906122446,-0.015890467911958694,0.0021195763256400824,-0.05099533870816231,-0.004438131116330624,0.04195564612746239,0.026480378583073616,0.055591557174921036,0.025146419182419777,0.06401978433132172,-0.03986918553709984,-0.020949093624949455,0.092153400182724,0.01739257574081421,-0.011627553030848503,0.044333476573228836,0.0020220233127474785,-0.028033209964632988,0.03719288110733032,-0.03168048709630966,-0.07554984837770462,-0.08940577507019043,0.017226291820406914,-0.013139571063220501,-0.033292777836322784,0.0968305841088295,-0.062118686735630035,-0.06316715478897095,-0.075066477060318,-0.044516947120428085,0.03612969443202019,-0.022184321656823158,-0.0056063104420900345,0.01872044801712036,0.05083690956234932]},{"text":"At first no one had been able to imagine where these creatures came from, but the problem was soon solved: they were the puppies whom Napoleon had taken away from their mothers and reared privately.","book":"Animal Farm","chapter":44,"embedding":[-0.08441972732543945,0.06121368333697319,0.02312912419438362,0.04337015748023987,0.021744048222899437,0.006979387253522873,-0.04445819929242134,-0.021952014416456223,-0.018346572294831276,0.027251707389950752,0.10100894421339035,-0.10414579510688782,0.04670191556215286,-0.03871363773941994,-0.09504987299442291,0.012217572890222073,0.035526543855667114,-0.0619768388569355,0.002877109916880727,0.03367695212364197,-0.02177649363875389,-0.01789356954395771,0.08683612197637558,0.02489182911813259,-0.011132053099572659,0.027725333347916603,-0.025482842698693275,-0.01755381189286709,0.027028024196624756,-0.025917652994394302,0.0019825035706162453,-0.0067870644852519035,0.0220782533288002,-0.014576883986592293,-0.0011910574976354837,0.0008459491655230522,0.03408467769622803,0.01936473324894905,0.0795072466135025,0.05042951554059982,0.021759280934929848,0.026639411225914955,-0.01295012328773737,0.0013992971507832408,-0.040450066328048706,0.011042080819606781,-0.03753411024808884,-0.02433111146092415,0.011514734476804733,-0.01371882576495409,-0.019751878455281258,0.007969466038048267,-0.02953062579035759,-0.018309276551008224,-0.07932315766811371,-0.11111022531986237,0.00014914515486452729,-0.0009614386945031583,0.07400024682283401,0.04004373773932457,0.02661837451159954,0.08320330083370209,0.04974598437547684,-0.002660260070115328,-0.053722772747278214,-0.012017072178423405,-0.026243695989251137,0.07934686541557312,0.045287538319826126,-0.007110296748578548,0.03219877928495407,0.05602967366576195,0.04123043641448021,-0.06799989938735962,-0.04845342040061951,-0.005055525340139866,-0.03789164125919342,-0.000790088961366564,-0.05504750460386276,-0.02771681547164917,-0.018171727657318115,0.000306613597786054,0.03965535759925842,0.019689075648784637,0.055220626294612885,0.0043944562785327435,0.12050966173410416,-0.018323231488466263,0.004817059263586998,0.047724489122629166,0.001311684143729508,-0.07643596082925797,0.02005453035235405,0.0812099501490593,0.0260116346180439,-0.04376496374607086,-0.011525905691087246,0.06578370928764343,-0.010613500140607357,0.013621319085359573,-0.016427652910351753,-0.1053817868232727,0.05107628181576729,0.01782624050974846,-0.04770893603563309,-0.003199708415195346,-0.06737308204174042,-0.012588100507855415,0.0004532800812739879,0.001439055660739541,-0.03261220082640648,-0.05239621549844742,-0.005304594989866018,0.11924880743026733,0.01455345656722784,0.027976585552096367,-0.03659477084875107,-0.144547238945961,-0.032279785722494125,-0.0008705761865712702,0.02195516601204872,0.006035151891410351,-0.049484532326459885,0.0056986394338309765,0.0449988879263401,0.03237204626202583,-0.11821862310171127,2.2351182031031067e-33,0.04862970858812332,0.007337549701333046,0.02091379091143608,-0.05155221372842789,-0.03258547931909561,0.040581826120615005,-0.09769175201654434,0.03933997452259064,-0.02789982035756111,0.008280487731099129,-0.062406931072473526,-0.0006923782057128847,-0.039310272783041,-0.04515144228935242,-0.029377572238445282,-0.05473252385854721,-0.06542462110519409,0.017073893919587135,0.07204017043113708,0.029457787051796913,-0.04430439695715904,0.1137552559375763,0.03690733388066292,-0.02986307628452778,-0.0011447853175923228,0.10096105933189392,-0.06588757038116455,-0.10316471755504608,-0.07870767265558243,0.028246020898222923,0.03579094633460045,-0.08150651305913925,-0.03415784239768982,0.05444120243191719,-0.04316579923033714,-0.0036240287590771914,0.04579022526741028,-0.13486340641975403,-0.048772286623716354,0.05477442964911461,0.0644134134054184,-0.03936666622757912,0.011935368180274963,0.07742977142333984,0.001175777055323124,-0.03035042993724346,-0.02093539386987686,-0.03398260846734047,0.01805676892399788,0.029764242470264435,-0.06355072557926178,0.000021822881535626948,0.046263162046670914,-0.09365329146385193,-0.011539208702743053,0.043467409908771515,-0.04230596125125885,0.05444631353020668,0.008372148498892784,-0.013168582692742348,0.09312842786312103,-0.011327658779919147,0.06031434237957001,-0.04117162153124809,0.08040174841880798,-0.08680670708417892,-0.031777068972587585,0.07566788047552109,-0.013885059393942356,-0.05274345725774765,0.0035759613383561373,-0.004865099210292101,0.011569719761610031,-0.07861755788326263,0.03930846229195595,0.0007271015783771873,0.0482909269630909,0.03952086716890335,-0.028877055272459984,-0.10924503952264786,0.05179723724722862,0.002476257737725973,-0.07275442034006119,0.0058206659741699696,-0.024268152192234993,0.033459510654211044,0.0889073982834816,0.00852330680936575,0.011325675994157791,0.07378638535737991,-0.060895323753356934,-0.02546459063887596,-0.03600872680544853,-0.0773419737815857,-0.005821893457323313,-3.8193563679482816e-33,0.014059646055102348,0.005035426467657089,0.022832386195659637,-0.014761276543140411,-0.036592256277799606,0.0015454357489943504,-0.02603532373905182,0.07870441675186157,-0.008449241518974304,0.08321861922740936,-0.12056654691696167,-0.03242627903819084,0.08062416315078735,-0.07100318372249603,0.023567261174321175,-0.0564165897667408,0.09540092945098877,-0.05617291107773781,-0.013703563250601292,-0.0905260369181633,-0.06400715559720993,-0.006006405223160982,-0.0479888841509819,-0.023493124172091484,-0.06024312227964401,0.10318782180547714,0.0000026138477551285177,-0.007839561440050602,-0.03397122398018837,0.019172733649611473,-0.07636436074972153,0.05837382376194,0.04509280249476433,0.02336812950670719,0.0156160993501544,0.06611573696136475,-0.08970297127962112,0.03491799160838127,0.0783931091427803,-0.05962486192584038,-0.04913059622049332,-0.054864395409822464,-0.034263670444488525,0.022509701550006866,0.04058564826846123,0.06045199930667877,0.00349382683634758,0.05030662566423416,0.02971041202545166,0.02598343789577484,0.007468097843229771,0.04476506635546684,-0.004154722206294537,-0.0902518704533577,-0.06537855416536331,-0.027267752215266228,-0.041567884385585785,-0.06515379250049591,0.09190683811903,-0.004879496991634369,-0.0032326229847967625,0.004124890081584454,-0.02445070445537567,-0.04696117714047432,-0.06812053918838501,-0.01755562797188759,-0.11292974650859833,0.052744150161743164,0.03925482556223869,-0.0271705761551857,0.05605793744325638,-0.009594378992915154,0.015228573232889175,-0.00004538524808594957,0.012231023982167244,0.059013258665800095,-0.08539590984582901,-0.05366295203566551,0.08319144695997238,-0.04685784503817558,-0.026557596400380135,-0.056059204041957855,0.08497927337884903,0.0013979090144857764,0.0199815072119236,-0.0143132908269763,-0.02526223286986351,0.019032252952456474,0.12665243446826935,-0.0627257227897644,-0.015531717799603939,-0.01717090606689453,-0.002758996095508337,0.04757137596607208,0.010599277913570404,-3.3674020016860595e-8,0.03531302139163017,0.03159165382385254,0.08721804618835449,0.09272433817386627,-0.010262219235301018,-0.10337986052036285,-0.036885008215904236,0.07040508836507797,-0.015487593598663807,0.02566838264465332,-0.09260711818933487,-0.002548294374719262,-0.003949934151023626,0.022600959986448288,0.10865795612335205,0.059827953577041626,0.05930539593100548,0.0013705641031265259,0.010173406451940536,0.0755477100610733,-0.09980282187461853,-0.010729522444307804,0.05965402349829674,-0.0503966324031353,-0.06881681084632874,-0.05733227729797363,-0.021712979301810265,-0.08947418630123138,0.012569252401590347,0.009238573722541332,-0.0037952838465571404,0.04426025226712227,-0.05105450004339218,-0.039827946573495865,0.03352741897106171,0.032003067433834076,-0.053756095468997955,-0.0617789626121521,0.028762871399521828,-0.15123775601387024,0.0236942358314991,0.019997136667370796,0.051344964653253555,0.014890791848301888,0.07608585804700851,0.021659215912222862,0.03309421241283417,0.0003430176875554025,0.01576199382543564,0.020598532631993294,-0.03257991373538971,0.06064775958657265,-0.030393680557608604,0.05015499144792557,-0.0011906803119927645,-0.07164919376373291,0.025255460292100906,-0.0368155799806118,0.07151765376329422,0.06774666160345078,-0.07443612813949585,0.07272008806467056,0.06416355818510056,0.01676805689930916]},{"text":"He announced that from now on the Sunday-morning Meetings would come to an end.","book":"Animal Farm","chapter":44,"embedding":[0.01612422987818718,0.012388410046696663,0.030220376327633858,0.024085940793156624,-0.0010201784316450357,0.011446499265730381,0.010862044990062714,-0.012746372260153294,-0.013882843777537346,-0.036911316215991974,-0.09534844011068344,0.05851943418383598,-0.08197089284658432,0.04554145783185959,0.08373863250017166,0.026746321469545364,-0.06247495859861374,-0.03555257245898247,-0.026882613077759743,0.018176458775997162,0.040010713040828705,0.053098250180482864,0.0427776575088501,-0.019463397562503815,-0.00888141617178917,0.046050138771533966,0.004719551187008619,-0.04367242008447647,0.06018074229359627,-0.02816157042980194,0.015161472372710705,0.0012392777716740966,0.028838075697422028,-0.018921079114079475,0.0189144816249609,0.01231791265308857,0.03670351579785347,0.09704483300447464,-0.0122939832508564,0.012231620028614998,0.07776771485805511,-0.0682472288608551,-0.012383277527987957,0.0775335282087326,-0.08012139052152634,-0.008475270122289658,-0.0359296090900898,-0.08306355029344559,0.002436335664242506,0.10977596044540405,-0.06890800595283508,-0.08133035153150558,0.02099042758345604,-0.04706956818699837,0.09880504757165909,0.11182214319705963,0.022587455809116364,-0.015017969533801079,0.028512364253401756,0.0687301829457283,-0.024519415572285652,-0.0034084899816662073,-0.09543432295322418,0.06060798093676567,0.0582813061773777,0.031342726200819016,-0.06373454630374908,0.0029579210095107555,-0.021995941177010536,0.02108636498451233,-0.027793684974312782,-0.0031500975601375103,-0.042599987238645554,-0.07822864502668381,0.013239600695669651,0.032755296677351,0.025430331006646156,0.041421078145504,0.08013320714235306,-0.01206829585134983,-0.047334935516119,0.006677558179944754,0.042092252522706985,-0.03511783853173256,0.025199221447110176,0.039509572088718414,-0.03264345973730087,-0.003597694681957364,-0.004861522000283003,0.0009330793982371688,-0.0692475363612175,-0.03007311373949051,-0.05462900921702385,-0.0024931090883910656,-0.07384607195854187,0.023509018123149872,-0.03491669520735741,-0.009862713515758514,0.000355933589162305,0.03478970751166344,-0.031873688101768494,0.013132847845554352,-0.035572152584791183,-0.07856470346450806,-0.028354451060295105,-0.021210303530097008,-0.06690578907728195,0.06306134164333344,0.014243011362850666,-0.056304335594177246,-0.0021368174348026514,-0.04167826101183891,0.050161078572273254,-0.10463535785675049,0.04071711003780365,0.12234766036272049,-0.003657571505755186,0.11550641804933548,-0.005819794721901417,0.03446679562330246,0.0809372216463089,0.03690759465098381,-0.008352518081665039,-0.0031215366907417774,-0.03657756373286247,0.11088916659355164,-0.0011964653385803103,-6.025693510226466e-33,-0.016874467954039574,-0.07049240916967392,0.003850533626973629,0.018878769129514694,0.10847815126180649,0.02552398107945919,-0.06057543680071831,-0.00845079030841589,0.03767704963684082,-0.0821094810962677,-0.0047292024828493595,0.02613726258277893,-0.0164543054997921,-0.05572276934981346,-0.07384860515594482,-0.029825367033481598,0.06051228567957878,0.05539124831557274,-0.07382325828075409,-0.11674235016107559,0.05192543566226959,-0.02113215997815132,0.003995754290372133,0.0446118600666523,0.053529731929302216,0.008045373484492302,0.03580501303076744,0.009764470160007477,0.050048232078552246,-0.004355276469141245,-0.0932350903749466,0.06174576282501221,0.02198290079832077,0.07611431181430817,0.058566391468048096,0.03885796293616295,-0.02261991985142231,-0.017209690064191818,-0.028523055836558342,-0.05321948230266571,0.05182560905814171,0.0008147608605213463,-0.09800929576158524,-0.04046012833714485,-0.02015593647956848,-0.08412200957536697,0.04106331616640091,0.048505328595638275,0.12457215040922165,-0.04137679934501648,0.018931670114398003,-0.015411083586513996,-0.022115182131528854,-0.03937885910272598,-0.04069773852825165,0.0004845426301471889,-0.034235332161188126,-0.016642188653349876,0.06303312629461288,0.08036037534475327,0.03195950388908386,0.05750502645969391,0.019999904558062553,0.019441088661551476,-0.11256662011146545,0.014803814701735973,-0.03363483399152756,-0.039134666323661804,-0.022059312090277672,-0.02643781341612339,0.044989556074142456,0.01504446566104889,-0.030757039785385132,0.015216377563774586,-0.08342089504003525,-0.029278848320245743,-0.07822827249765396,0.032437846064567566,0.08770879358053207,0.06326868385076523,0.13288581371307373,0.025197375565767288,0.0016587000573053956,-0.01571279764175415,0.05182269960641861,0.02358892746269703,0.01575649343430996,0.00413054134696722,-0.04971236735582352,0.03054060786962509,-0.10050123184919357,-0.015574525110423565,0.05838463455438614,0.07275383174419403,0.018884891644120216,1.853017886896568e-33,0.019898509606719017,-0.04655032977461815,-0.09764149785041809,0.03316784277558327,0.0001458398182876408,-0.03747649863362312,0.007748168893158436,0.057324521243572235,0.019770462065935135,-0.015910128131508827,0.038424938917160034,0.06149238720536232,-0.010683853179216385,-0.012387879192829132,-0.012549672275781631,-0.05628925561904907,0.09143408387899399,-0.05304262414574623,0.012220422737300396,0.045388445258140564,0.01135168969631195,-0.06321459263563156,-0.05688421428203583,-0.03058692067861557,0.07068915665149689,-0.010017032735049725,0.09856678545475006,0.0243516992777586,-0.06089773401618004,-0.047792889177799225,-0.006246411241590977,-0.09642960131168365,-0.12071044743061066,0.08622918277978897,0.05050479993224144,0.07156115770339966,-0.015597722493112087,-0.045456744730472565,0.019560184329748154,-0.010326627641916275,0.11943687498569489,-0.09539695084095001,0.028465235605835915,0.02163420058786869,0.026037851348519325,0.014637519605457783,-0.037735626101493835,0.08111417293548584,-0.06485310196876526,-0.05471650883555412,-0.08721858263015747,-0.008282561786472797,0.0041024829261004925,0.007530933246016502,-0.057812660932540894,0.02694338746368885,-0.007835367694497108,-0.03804692253470421,0.02754516713321209,-0.020589860156178474,0.004066105000674725,0.014770479872822762,0.07204519957304001,-0.034360505640506744,0.08396659791469574,-0.02269982360303402,-0.030631519854068756,0.018415916711091995,0.04570532590150833,-0.003155109705403447,0.04078099504113197,-0.11408571153879166,-0.040835995227098465,0.02214662730693817,-0.0551687590777874,0.047907691448926926,-0.0016330061480402946,-0.1105586513876915,0.0027898873668164015,-0.023862497881054878,-0.09474725276231766,-0.03891455754637718,0.0009638805640861392,-0.024362070485949516,0.03273935988545418,-0.0905948281288147,0.02816316857933998,0.007743298076093197,0.10897274315357208,0.06360604614019394,-0.0025331813376396894,-0.06677278876304626,0.009217956103384495,0.05891761928796768,0.0037158126942813396,-2.5590148666765344e-8,-0.02236265130341053,-0.05838315561413765,-0.0002717945899348706,-0.052880823612213135,0.14737114310264587,-0.03334625065326691,0.01827194169163704,-0.03915445879101753,0.02548973821103573,0.07878347486257553,0.12421834468841553,0.016169946640729904,-0.008721703663468361,0.02345859445631504,-0.03405994549393654,0.020263783633708954,0.03696690872311592,-0.06334540992975235,0.03031419776380062,-0.007916247472167015,-0.1078246608376503,-0.11234554648399353,-0.007597105111926794,-0.011964887380599976,0.059672292321920395,-0.01954559236764908,-0.09889408946037292,0.10995646566152573,-0.010689882561564445,0.016691051423549652,-0.0006410462083294988,0.020686659961938858,-0.05939534679055214,0.04081939533352852,0.026353193446993828,-0.03083820641040802,-0.04766524210572243,0.03556063398718834,0.07090473175048828,-0.0065655154176056385,0.025269774720072746,-0.0041344319470226765,-0.010343505069613457,0.049215950071811676,-0.031987790018320084,-0.0010863224742934108,0.010021393187344074,0.03698855638504028,-0.015818649902939796,-0.0295974500477314,-0.02398923970758915,-0.023247309029102325,0.059497080743312836,-0.08711259067058563,0.01789417490363121,0.013473670929670334,0.02295355685055256,-0.01724216714501381,-0.02792849764227867,-0.0463796928524971,-0.05186777561903,-0.07564864307641983,-0.03543347492814064,0.0032406607642769814]},{"text":"In spite of the shock that Snowball's expulsion had given them, the animals were dismayed by this announcement.","book":"Animal Farm","chapter":45,"embedding":[0.014448218047618866,0.08785824477672577,0.16602656245231628,0.1044013649225235,0.07256967574357986,-0.01703110709786415,0.05052584782242775,0.03980506584048271,0.010848159901797771,0.012033692561089993,-0.020215829834342003,0.003743574721738696,-0.0019637371879070997,0.007314071990549564,-0.01179682370275259,-0.020175762474536896,-0.048921216279268265,-0.03292999416589737,-0.040466710925102234,-0.006800496950745583,0.020160937681794167,0.002392410533502698,-0.010274996049702168,0.03818995878100395,0.005424883216619492,0.03371807187795639,-0.051272474229335785,0.026535825803875923,-0.04051133617758751,0.0012051569065079093,-0.07062878459692001,-0.044342659413814545,0.0013055470772087574,0.026286864653229713,-0.025298120453953743,-0.00952722504734993,0.028360119089484215,-0.025292346253991127,0.0223709549754858,0.006710508372634649,0.06203984096646309,-0.026265166699886322,0.05350993573665619,-0.002361106453463435,-0.0927404835820198,-0.013277903199195862,-0.07809146493673325,-0.018160900101065636,-0.029661966487765312,-0.00648331455886364,-0.004595622420310974,-0.06948857754468918,-0.03389481455087662,0.014148853719234467,-0.02932725101709366,-0.014918496832251549,0.013492973521351814,-0.0676807090640068,-0.004446874372661114,-0.04994974285364151,-0.01986074075102806,-0.01931670494377613,0.04070065915584564,0.037038035690784454,0.07377216964960098,-0.024807706475257874,0.007754746358841658,-0.05703974515199661,0.01812116615474224,0.035499829798936844,0.07663337141275406,0.004761653486639261,0.047622378915548325,-0.06950841844081879,-0.04857589676976204,0.04210808873176575,0.0065699308179318905,0.051878295838832855,0.059372104704380035,0.0005602437886409461,0.013022667728364468,-0.0357307605445385,0.020905306562781334,-0.042413901537656784,0.01936490088701248,-0.047078974545001984,0.002457246882840991,-0.034315455704927444,-0.012403487227857113,0.05021208897233009,-0.02710995450615883,-0.13916365802288055,0.027569815516471863,0.06914110481739044,-0.06251374632120132,0.008552131243050098,0.0071253529749810696,-0.06832398474216461,-0.03567630797624588,0.03816291317343712,-0.009062415920197964,0.003931294661015272,-0.021214833483099937,-0.040931325405836105,0.028477422893047333,-0.016458122059702873,-0.12651580572128296,-0.058797407895326614,-0.029550878331065178,0.03511340543627739,-0.08022068440914154,-0.04220686852931976,0.06266096979379654,0.029824115335941315,-0.029438497498631477,0.07966509461402893,-0.03433901444077492,0.023836400359869003,-0.06479628384113312,-0.01734863594174385,0.03932655602693558,0.05327939987182617,0.017887331545352936,-0.012814716435968876,0.04597906395792961,0.055514298379421234,-0.052668679505586624,-6.139356834453273e-33,0.12361505627632141,-0.07954348623752594,-0.042368002235889435,-0.03216039389371872,0.06449878960847855,-0.02002452313899994,0.004955413285642862,0.043173372745513916,0.05167030915617943,-0.01960732974112034,-0.11084476113319397,0.017466645687818527,-0.0003051295061595738,-0.10664360970258713,-0.06320938467979431,-0.019386423751711845,0.01156151294708252,-0.028650572523474693,0.08428896963596344,0.041488006711006165,0.09084493666887283,0.006461455021053553,-0.0018397229723632336,0.04047302529215813,-0.08783861249685287,0.09169656038284302,-0.08031337708234787,-0.000957025564275682,-0.000991717097349465,0.02590862475335598,0.006469720043241978,-0.06419781595468521,0.022272497415542603,0.01889743097126484,0.021371880546212196,-0.03696072846651077,-0.02181096374988556,-0.10582328587770462,0.034016311168670654,-0.018080424517393112,0.05528578907251358,-0.0710284635424614,-0.03483850881457329,-0.06139390170574188,0.04691661149263382,0.0178214218467474,0.0018419664120301604,-0.057947203516960144,0.021284062415361404,-0.007403351832181215,0.09835593402385712,0.03505868837237358,0.0737944170832634,-0.026979153975844383,0.027418227866292,0.004877343773841858,0.03500181436538696,0.033158257603645325,-0.03015296347439289,-0.0227130688726902,-0.014030550606548786,0.018239174038171768,0.09746307879686356,-0.07563355565071106,0.03138672187924385,-0.005361515562981367,-0.011252252385020256,0.047762103378772736,-0.09013760834932327,-0.009286829270422459,-0.008221068419516087,0.0007598906522616744,-0.06595995277166367,-0.05847928673028946,-0.04111076518893242,-0.022438159212470055,0.004074646160006523,-0.07405403256416321,0.10741186887025833,-0.12758134305477142,0.053348906338214874,-0.029627976939082146,-0.027449307963252068,0.11273988336324692,-0.04276392608880997,0.04901473596692085,0.062041670083999634,0.03387289121747017,-0.011908169835805893,0.01866537518799305,0.05428384244441986,0.07392257452011108,-0.0316431000828743,-0.03308110684156418,0.0795041173696518,2.348457899041453e-33,0.009342115372419357,-0.007540970109403133,-0.14787434041500092,-0.004178155213594437,-0.04798590764403343,0.048703644424676895,0.02887142449617386,0.06693395227193832,0.046001166105270386,0.0020178966224193573,-0.07013873010873795,0.01844753697514534,-0.013294967822730541,-0.0121603487059474,-0.0029773442074656487,-0.07271766662597656,0.05789162963628769,-0.0016334669198840857,0.017746727913618088,-0.05447421595454216,-0.021551433950662613,0.020844968035817146,-0.07887604832649231,-0.04009963572025299,0.033427607268095016,0.029909854754805565,0.03728090599179268,-0.047524891793727875,-0.019170498475432396,-0.02559226006269455,0.06482501327991486,0.07595107704401016,0.0011869333684444427,0.004955996759235859,0.07465296983718872,-0.009121435694396496,-0.045289546251297,0.03788980469107628,-0.058881644159555435,-0.07452614605426788,0.03631840646266937,-0.0536893792450428,-0.01496438030153513,0.10374542325735092,0.06151015684008598,0.04586843401193619,0.010849562473595142,-0.01237655058503151,0.09314742684364319,0.08767222613096237,-0.03047149069607258,0.018031690269708633,-0.017414338886737823,-0.013547581620514393,-0.011039749719202518,-0.009887656196951866,-0.044346731156110764,-0.1297883838415146,0.06475702673196793,-0.04299653694033623,-0.1045689731836319,-0.030815480276942253,-0.020453955978155136,-0.037051405757665634,0.014272209256887436,-0.004528433550149202,-0.054489847272634506,-0.040474217385053635,0.11473926156759262,-0.0168143417686224,0.10507001727819443,0.048645325005054474,-0.03679555281996727,-0.04554688557982445,0.02802552841603756,0.11818979680538177,-0.012484299950301647,0.03069039061665535,0.007853883318603039,-0.006023548077791929,-0.01753258891403675,0.06248869374394417,0.0455654039978981,0.03775936737656593,0.02791070193052292,-0.014833581633865833,0.030673079192638397,0.0786784365773201,0.018938707187771797,0.009057399816811085,0.026431651785969734,0.00003205484972568229,0.09207643568515778,0.0353546217083931,0.04266827180981636,-2.495497142263048e-8,0.00048347763367928565,0.04954663664102554,-0.05444393679499626,-0.0012831480707973242,0.09959783405065536,0.0426478385925293,-0.01654021069407463,0.012736376374959946,-0.024351295083761215,-0.00016546790720894933,0.008680838160216808,0.060234226286411285,0.025061054155230522,0.1315712183713913,0.028340578079223633,0.06959381699562073,0.0636957511305809,-0.0368511863052845,-0.05391974002122879,0.007028430700302124,-0.1529683768749237,-0.041844435036182404,-0.07491040229797363,-0.08756326884031296,-0.020290421321988106,-0.03412965312600136,-0.034827470779418945,-0.028481513261795044,-0.026353612542152405,-0.005913539323955774,-0.07815326750278473,-0.07864456623792648,0.015247918665409088,0.02160901017487049,-0.017826223745942116,0.11540188640356064,0.05843948572874069,-0.04676755145192146,0.09075488895177841,-0.0913446918129921,-0.026011385023593903,0.060837335884571075,0.0306539386510849,0.027230186387896538,0.004767518490552902,-0.019398517906665802,-0.051130298525094986,-0.006349688395857811,-0.05848002806305885,0.02921326644718647,-0.10458844900131226,-0.012625382281839848,-0.07676118612289429,0.02792038768529892,0.030178435146808624,0.005212445743381977,-0.051790326833724976,-0.06641664355993271,-0.08221694082021713,0.006295826286077499,-0.002026105299592018,-0.04412238672375679,-0.05951213464140892,0.02520657330751419]},{"text":"Four young porkers in the front row uttered shrill squeals of disapproval, and all four of them sprang to their feet and began speaking at once.","book":"Animal Farm","chapter":45,"embedding":[0.04345519840717316,0.05369133502244949,0.003009471110999584,-0.0387139618396759,-0.025672893971204758,0.04466124251484871,-0.013949613086879253,-0.036226142197847366,0.05704978480935097,-0.03084775060415268,0.05071478709578514,-0.042394623160362244,0.032168518751859665,0.018522366881370544,-0.0953173041343689,-0.004722632002085447,0.020396744832396507,0.062461212277412415,-0.04850482568144798,-0.04660078138113022,-0.02735724113881588,0.03777690604329109,0.04276410490274429,0.018032079562544823,0.013959127478301525,0.04226137697696686,-0.003756714751943946,-0.07770449668169022,0.0003613497538026422,0.009058821946382523,0.06297627836465836,0.011288585141301155,0.04611248895525932,-0.004099144134670496,-0.08307009190320969,0.00932379812002182,0.08459854871034622,0.016459133476018906,0.08163446187973022,0.029982101172208786,-0.016432270407676697,-0.03836575895547867,-0.010894556529819965,-0.07800255715847015,0.0010651685297489166,-0.0031294338405132294,-0.007297984324395657,0.011528657749295235,0.08370812982320786,-0.03767969459295273,0.010910873301327229,-0.07529367506504059,0.02561250329017639,-0.03150138258934021,-0.0016572062158957124,-0.08123666793107986,-0.03150000795722008,-0.013010116294026375,0.05613965541124344,0.036748990416526794,0.025349140167236328,-0.05769069492816925,0.026111910119652748,0.0036279624328017235,-0.08115457743406296,0.01234442088752985,0.04115162417292595,-0.007801789324730635,-0.0696248710155487,0.09779393672943115,-0.002839257474988699,0.011358586139976978,0.01923784241080284,0.017218487337231636,-0.06421631574630737,-0.028157906606793404,0.023173023015260696,-0.052482713013887405,0.13703316450119019,-0.0862036943435669,0.033740248531103134,-0.045421358197927475,-0.07045409828424454,-0.05965495854616165,-0.03674231842160225,-0.09226148575544357,-0.020445305854082108,-0.021499620750546455,-0.02175207808613777,-0.014632072299718857,-0.0775386244058609,-0.09189415723085403,-0.028384918347001076,0.008923078887164593,0.025445781648159027,-0.07052033394575119,-0.07391704618930817,-0.051800068467855453,0.017991913482546806,0.0011654620757326484,0.03647127002477646,-0.01150206383317709,0.09021847695112228,0.01282638031989336,-0.0032373738940805197,-0.047143567353487015,-0.03168962150812149,0.04919087514281273,-0.024051126092672348,0.03629504516720772,-0.10812792927026749,0.039728619158267975,0.03416186943650246,0.0023367463145405054,0.0010101905791088939,0.06022501364350319,-0.09676923602819443,-0.052047692239284515,-0.05044322833418846,-0.025958318263292313,0.07472347468137741,0.0834432989358902,0.0323789119720459,0.025472884997725487,0.1007315069437027,-0.04442562535405159,-0.11523857712745667,-5.871111686825016e-34,0.06640195846557617,0.0716567263007164,0.05044019967317581,0.035114940255880356,0.040055133402347565,-0.0214840117841959,-0.06587176769971848,-0.02635980024933815,0.06190454214811325,0.0668969452381134,-0.058462753891944885,-0.06043525040149689,0.04829109460115433,-0.08714822679758072,0.0011882578255608678,-0.010805129073560238,-0.04485153779387474,0.0026428878773003817,-0.04408925771713257,-0.06630813330411911,-0.02746703289449215,0.08596953749656677,-0.005631029140204191,0.04629438370466232,-0.03793882951140404,-0.010544204153120518,0.03946169465780258,-0.06461755931377411,0.048567552119493484,0.028766285628080368,0.040217574685811996,-0.03819165378808975,-0.047237083315849304,-0.03313722833991051,0.032981861382722855,-0.0813692957162857,0.06876862794160843,-0.019232045859098434,0.016989773139357567,-0.05221688002347946,0.0333651602268219,-0.027786780148744583,0.0305982306599617,0.028459567576646805,-0.009095940738916397,0.05344479903578758,-0.11594157665967941,0.003827539039775729,-0.05396762862801552,0.021512122824788094,0.019806470721960068,0.05728790909051895,0.0645211711525917,0.07730408012866974,0.031198160722851753,-0.008804318495094776,-0.008655271492898464,0.005419610533863306,-0.05171651393175125,-0.025803878903388977,-0.05193210393190384,0.0514826774597168,-0.08214344829320908,-0.05109141767024994,-0.015477299690246582,-0.08939841389656067,-0.020252438262104988,0.04731571301817894,0.011077094823122025,0.01578960381448269,0.04003429785370827,-0.06829972565174103,-0.011366848833858967,-0.0940084382891655,-0.08548589795827866,-0.004138796124607325,0.07485632598400116,-0.009485428221523762,-0.027205640450119972,-0.05793100968003273,0.05181274563074112,0.012973899953067303,-0.04838976636528969,0.03316078335046768,-0.012434955686330795,0.00901787355542183,0.05372581258416176,-0.14078809320926666,0.07302882522344589,0.02073889970779419,-0.025556210428476334,-0.04361514002084732,0.030328746885061264,-0.04704530909657478,-0.054579488933086395,-1.5307987222888552e-33,0.04798611253499985,0.12807953357696533,-0.027105020359158516,0.04690355435013771,0.029953261837363243,0.016935735940933228,-0.0269145667552948,0.09047193825244904,-0.017974046990275383,-0.1250302791595459,-0.011712608858942986,-0.03736605495214462,0.0024163874331861734,0.02261200174689293,0.03825656697154045,0.06432881206274033,0.026052258908748627,-0.013060830533504486,0.020145533606410027,-0.01001004595309496,0.04705986753106117,-0.06628571450710297,-0.0005079867551103234,0.009709389880299568,0.01959691382944584,0.006004455033689737,0.08893200755119324,-0.02966725267469883,-0.010736708529293537,0.0572420097887516,0.07238609343767166,-0.030379438772797585,0.02748837135732174,0.05689094588160515,0.030440259724855423,-0.0006184295052662492,-0.02006838656961918,0.08347653597593307,-0.0829094648361206,-0.06599534302949905,0.04402846097946167,-0.0588371604681015,-0.02991180308163166,0.08774720877408981,-0.042548444122076035,0.007327125407755375,0.01587488502264023,0.0032596515957266092,-0.07836595922708511,0.05215427652001381,-0.07725731283426285,-0.017453530803322792,0.060856666415929794,0.006850354373455048,-0.04764815792441368,-0.03566361591219902,0.0266558900475502,-0.016677970066666603,0.052762437611818314,-0.015263979323208332,-0.04998396709561348,-0.04381158947944641,0.035532452166080475,-0.06617248058319092,0.05863651633262634,0.0014110514894127846,-0.03678883984684944,-0.019793374463915825,0.024830596521496773,-0.022889312356710434,-0.004984808620065451,0.020264577120542526,-0.06410513073205948,0.009654185734689236,0.055611830204725266,0.08020094037055969,-0.09988270699977875,-0.12125474959611893,-0.09739357978105545,0.01898597925901413,-0.034927114844322205,-0.04512243717908859,0.02232341654598713,-0.009922398254275322,-0.031843677163124084,-0.029441148042678833,0.0771443322300911,0.14692117273807526,0.02961001545190811,0.050393231213092804,0.057256512343883514,0.022007854655385017,0.17787009477615356,-0.03024589642882347,-0.013858065009117126,-2.3624119549481293e-8,-0.06788256764411926,0.03335711359977722,-0.023319633677601814,0.03333045542240143,0.039602503180503845,0.02224639058113098,-0.01774134486913681,0.025198686867952347,-0.012873826548457146,-0.030475955456495285,-0.07921306043863297,0.05357203632593155,0.00826557818800211,-0.00972392875701189,0.0511578731238842,0.06376095116138458,-0.051802657544612885,-0.006796882022172213,0.00189768907148391,-0.013238579966127872,0.054853543639183044,0.0739494115114212,0.02191845141351223,0.04492060840129852,-0.03113415092229843,0.0008712632115930319,-0.017626643180847168,-0.03938924893736839,-0.06850415468215942,0.030895717442035675,0.08921574801206589,0.0757894366979599,-0.0428265780210495,-0.03543902188539505,-0.03633344918489456,0.09369447082281113,-0.07027367502450943,0.027220536023378372,0.11813917011022568,-0.02882627584040165,-0.0768149346113205,-0.008651964366436005,-0.09123336523771286,0.052535124123096466,0.010787067003548145,0.04203806072473526,-0.056498266756534576,-0.0033092957455664873,0.013490895740687847,-0.03548067808151245,-0.0789228156208992,0.09098800271749496,0.03255970776081085,0.045166466385126114,0.01748642884194851,-0.01156256627291441,-0.018687967211008072,0.03147291764616966,0.07552983611822128,-0.0045339385978877544,0.025722172111272812,0.03778999671339989,-0.05965355038642883,0.007985725067555904]},{"text":"On the contrary, it is a deep and heavy responsibility.","book":"Animal Farm","chapter":45,"embedding":[0.00208382704295218,0.052489664405584335,0.020036989822983742,-0.055262915790081024,0.03244082257151604,-0.011300293728709221,-0.046849653124809265,0.003831446636468172,0.015345962718129158,0.04186538606882095,0.01354113407433033,0.024376152083277702,-0.035628315061330795,-0.00005251698530628346,-0.004806967452168465,-0.04757824167609215,0.01868305914103985,-0.020293286070227623,-0.037072766572237015,0.039549559354782104,0.03210044652223587,-0.0072747147642076015,0.09958451241254807,0.06865961104631424,-0.04776722192764282,-0.003029867308214307,0.002767088357359171,-0.04117850586771965,0.010568010620772839,-0.015639230608940125,0.023304885253310204,-0.01240746770054102,0.02509399875998497,0.05656653642654419,-0.09828145802021027,0.11073248088359833,0.048121169209480286,-0.018329063430428505,0.01922472193837166,-0.04840025305747986,0.07938873022794724,0.0249546617269516,-0.05435061454772949,0.007138228043913841,0.005124716088175774,0.031461793929338455,0.07194393873214722,-0.06366685032844543,-0.06417016685009003,-0.0680449977517128,-0.013901462778449059,0.017844507470726967,0.00355503149330616,0.022288480773568153,-0.03546280041337013,-0.048440732061862946,0.0413486585021019,-0.053214337676763535,0.0032917798962444067,0.03016243316233158,0.00038937441422604024,0.01342254038900137,-0.012284679338335991,0.006751575507223606,0.07809291034936905,0.004194012843072414,-0.027942264452576637,-0.010257854126393795,-0.06427992135286331,0.03025244176387787,0.03457437828183174,0.01770695485174656,0.06529033929109573,0.02305172197520733,-0.025302791967988014,-0.02166270837187767,-0.015287886373698711,0.0282874908298254,0.0004657920217141509,0.0021281945519149303,0.0841219499707222,0.05411148816347122,0.0860595628619194,0.011102835647761822,0.06633824110031128,-0.08243002742528915,-0.016619417816400528,-0.08719272166490555,0.05735854431986809,0.021721258759498596,-0.03679196909070015,-0.061372093856334686,0.14695493876934052,-0.045785147696733475,-0.01638173498213291,-0.0010103790555149317,-0.04127198085188866,0.03398974612355232,-0.14951474964618683,0.012385384179651737,-0.06462415307760239,0.029162732884287834,-0.04629584029316902,-0.024247603490948677,-0.039438068866729736,-0.017726799473166466,-0.042307693511247635,-0.012006029486656189,-0.05316658318042755,-0.012888072989881039,-0.012844243086874485,-0.0004145074635744095,0.021216576918959618,0.022448468953371048,0.10898081958293915,0.039539460092782974,-0.04740547388792038,0.01722029224038124,-0.013258606195449829,-0.045369625091552734,-0.02770349197089672,0.01805332489311695,-0.022580230608582497,0.029249710962176323,-0.020827945321798325,-0.05349784344434738,-0.03516295552253723,-8.336204063900476e-33,0.017262764275074005,0.02291015163064003,0.012189685367047787,-0.02781236357986927,-0.039778925478458405,0.0393599234521389,-0.011620095930993557,0.008868821896612644,0.02740013785660267,0.09559889882802963,0.06590189039707184,-0.03301304578781128,0.005237822886556387,0.009764837101101875,-0.05491141602396965,-0.018761737272143364,-0.12262583523988724,0.1148545891046524,0.032594937831163406,0.025231139734387398,0.005034864880144596,0.0104443971067667,0.003698586719110608,-0.04052145406603813,0.015098280273377895,-0.08006875216960907,0.01682305335998535,0.027255546301603317,-0.03900434449315071,0.001946497824974358,0.028550108894705772,-0.05002317950129509,0.00742809334769845,0.0009764737915247679,0.01694699376821518,-0.026032239198684692,-0.05359625816345215,0.0481874980032444,-0.018408846110105515,-0.036723099648952484,-0.008536339737474918,-0.0035647558979690075,0.020812034606933594,0.06073007732629776,0.03952745348215103,-0.06868448108434677,0.0016154752811416984,-0.08535490930080414,-0.11236374080181122,0.06124589219689369,0.07813950628042221,-0.005436916835606098,0.05354791507124901,-0.09229566901922226,0.013757733628153801,0.025830522179603577,0.045771099627017975,0.03370985761284828,-0.036388326436281204,-0.05775943025946617,0.03489987552165985,-0.06847319006919861,-0.14184600114822388,0.1626502424478531,0.00924147479236126,0.07650382816791534,0.026366282254457474,0.039249520748853683,0.014415862038731575,-0.003987640608102083,0.029078690335154533,0.03301860764622688,0.03474412485957146,-0.04290742054581642,-0.11163096129894257,0.0684034526348114,-0.031919702887535095,-0.110673688352108,0.08339322358369827,0.0037535896990448236,-0.004747239872813225,0.05621916800737381,0.05891786888241768,0.04956645891070366,0.009679307229816914,0.008463394828140736,0.016400601714849472,-0.03256855905056,0.08036662638187408,0.09606559574604034,-0.015958180651068687,-0.016755355522036552,-0.03695307672023773,-0.035851702094078064,0.02160688303411007,6.0274427927572835e-33,-0.017535332590341568,-0.036278825253248215,-0.025083592161536217,-0.021070457994937897,0.04165926203131676,0.008464834652841091,-0.05523987486958504,-0.10613176226615906,-0.019812356680631638,0.11108608543872833,-0.09495831280946732,-0.04489227756857872,-0.04855608940124512,0.05454966053366661,0.043005384504795074,-0.11025181412696838,0.05594046786427498,0.01716858707368374,-0.03407737985253334,-0.0987233817577362,0.03140043094754219,0.08982030302286148,-0.008968488313257694,0.10353615880012512,-0.0652889534831047,0.015712792053818703,-0.05262169986963272,-0.04639558866620064,0.03218141570687294,-0.04279293119907379,-0.052429620176553726,-0.0067518893629312515,-0.0926990807056427,-0.04715913534164429,-0.030284473672509193,0.005852853413671255,-0.012716447934508324,0.046511948108673096,-0.047281477600336075,0.01089728344231844,-0.028985999524593353,0.023275092244148254,-0.09197873622179031,0.03363582864403725,-0.025714684277772903,-0.05002700909972191,0.03686198592185974,-0.013156458735466003,0.051375046372413635,-0.012389585375785828,-0.046286460012197495,-0.1106279268860817,0.07944869995117188,0.08541230112314224,0.01843775250017643,-0.008532155305147171,0.027406837791204453,-0.016119763255119324,0.057727549225091934,0.004285367671400309,0.02166966162621975,0.01961575821042061,-0.03059384599328041,0.03283439576625824,0.02148660086095333,0.0670197457075119,-0.06959407776594162,-0.04807494580745697,0.10378812998533249,0.042889099568128586,0.09067261964082718,-0.07207382470369339,-0.06783334910869598,-0.023287057876586914,-0.03965919837355614,-0.03532646596431732,-0.026701103895902634,0.048359502106904984,-0.07220149785280228,0.04851067066192627,0.0982959195971489,-0.17978431284427643,0.0695229172706604,-0.026946300640702248,-0.053378306329250336,0.001558402320370078,0.03973618894815445,-0.004465328063815832,0.02258859947323799,0.047189921140670776,-0.06312588602304459,-0.010508636012673378,-0.03394245356321335,-0.021892644464969635,-0.01110466942191124,-2.5929098868004985e-8,0.016658907756209373,0.004441338591277599,0.04298120737075806,-0.020740855485200882,0.05409204587340355,-0.04456602409482002,0.0608387365937233,0.01913454383611679,-0.014725660905241966,0.12125060707330704,0.06939273327589035,-0.03674367442727089,0.050574950873851776,0.004704284016042948,0.036711085587739944,0.018502220511436462,0.072769396007061,-0.011108633130788803,-0.04036156088113785,0.04769536852836609,0.0479331873357296,0.015524739399552345,-0.04572537913918495,0.021250173449516296,0.009575072675943375,-0.030297424644231796,-0.09108129888772964,0.04914896562695503,0.02859877608716488,0.07140924781560898,0.037232689559459686,0.005818186793476343,-0.05593480169773102,0.034611776471138,-0.034273069351911545,-0.12426064908504486,0.031047070398926735,0.017317013815045357,0.018937917426228523,-0.01028778962790966,-0.03497280925512314,0.10861648619174957,0.040202606469392776,0.0957222506403923,0.025567978620529175,0.03879156708717346,-0.0927753672003746,0.06378690153360367,-0.013197396881878376,0.01924750581383705,-0.06388421356678009,-0.030421748757362366,0.06232520192861557,0.06354323029518127,0.014277607202529907,0.014955425634980202,0.02668280340731144,-0.019166134297847748,-0.08579909056425095,-0.009950058534741402,0.07458905875682831,-0.0262188371270895,0.05802299827337265,-0.0222160741686821]},{"text":"And as to the Battle of the Cowshed, I believe the time will come when we shall find that Snowball's part in it was much exaggerated.","book":"Animal Farm","chapter":45,"embedding":[-0.06438209861516953,-0.0012056875275447965,0.05462195351719856,0.01831137202680111,0.045517582446336746,0.005745909176766872,-0.0669533982872963,0.06464029103517532,-0.01984051614999771,-0.04029718041419983,-0.07571177184581757,0.05127410218119621,0.00842652190476656,0.02996140904724598,0.03567960858345032,-0.05984041094779968,-0.014841538853943348,-0.06678146868944168,0.03370377793908119,-0.00857480987906456,0.039233025163412094,-0.048351187258958817,0.037691980600357056,0.045344121754169464,0.07063151895999908,0.004274115897715092,0.012039868161082268,0.05612049624323845,-0.08724133670330048,0.021433021873235703,-0.032804179936647415,0.003052534069865942,-0.04962525516748428,0.043013978749513626,-0.03521029278635979,0.00548533583059907,0.09693724662065506,0.010276315733790398,0.054864514619112015,0.022152911871671677,-0.011982331052422523,-0.052292659878730774,0.06769756972789764,0.02801627665758133,0.00233252951875329,0.054785240441560745,-0.04410424083471298,0.021099912002682686,0.007477153092622757,0.0065926434472203255,-0.033749088644981384,-0.006985952612012625,0.04575621336698532,-0.03231334686279297,0.028824683278799057,0.044957391917705536,0.017701392993330956,-0.025533918291330338,0.034327760338783264,0.007291792891919613,-0.032478801906108856,0.011181001551449299,0.007434511091560125,0.05185239017009735,0.013073893263936043,-0.06664681434631348,0.001728264382109046,-0.01925688423216343,-0.07554642111063004,0.04781423881649971,-0.007813403382897377,0.0752566009759903,-0.018169039860367775,-0.07299027591943741,-0.07866210490465164,0.08033712953329086,-0.004508056212216616,-0.0035851048305630684,0.09905466437339783,-0.03823332488536835,0.03573998436331749,0.04359346255660057,0.0028418847359716892,-0.00649305758997798,-0.06636833399534225,-0.04863617196679115,0.07291319221258163,-0.013226543553173542,0.04131295904517174,-0.03129974380135536,-0.08107800036668777,-0.1153479740023613,-0.0702308937907219,0.11134403198957443,-0.04725456237792969,0.024306338280439377,0.0019176772329956293,0.06368239223957062,0.02242087759077549,0.0374041311442852,-0.003771830815821886,-0.03823303431272507,-0.032259631901979446,-0.019987186416983604,0.039189957082271576,0.015544990077614784,-0.13299839198589325,-0.017814407125115395,-0.04813438281416893,-0.03636248782277107,-0.001129776705056429,-0.021936964243650436,0.01554980780929327,0.08181614428758621,0.010793899185955524,0.07670652121305466,-0.0495213158428669,-0.08670211583375931,-0.168413445353508,0.03267474099993706,0.06614021211862564,0.09120086580514908,0.012396764941513538,0.06776506453752518,0.05549498274922371,0.03347468376159668,0.05851879343390465,-4.562915686902904e-33,0.023109840229153633,-0.08433828502893448,-0.043708547949790955,-0.057694368064403534,0.022216301411390305,0.015744084492325783,-0.02023233287036419,0.06501425802707672,0.04398221895098686,0.005568563472479582,-0.05384403467178345,-0.02272086590528488,-0.04136211797595024,-0.08091755956411362,-0.016180915758013725,-0.0362163782119751,-0.01308740396052599,-0.010215597227215767,-0.018097244203090668,0.03200078755617142,-0.00592605909332633,0.007712465710937977,-0.026391979306936264,0.007389615755528212,-0.06979247182607651,0.013783031143248081,0.09298955649137497,0.009799481369554996,-0.017967507243156433,0.043774329125881195,0.00479043647646904,-0.09649404883384705,-0.07506056874990463,-0.0034609574358910322,0.04193641245365143,-0.04552900791168213,-0.008811144158244133,-0.07735083252191544,0.020931923761963844,0.049513015896081924,0.010968383401632309,0.00817151553928852,-0.0470893569290638,-0.009189681150019169,0.015455633401870728,0.021538598462939262,0.03584032133221626,0.026344770565629005,-0.04544217884540558,-0.08655385673046112,0.030408546328544617,0.0639980360865593,0.07857340574264526,-0.0171346552670002,0.06336314976215363,0.013502087444067001,0.006343968212604523,-0.0249928068369627,-0.015327569097280502,-0.00037661654641851783,0.038553640246391296,0.009539566934108734,0.06013026461005211,0.007670556660741568,-0.05147743597626686,0.07844854146242142,0.04333779960870743,0.02951742708683014,-0.034615494310855865,0.03601900488138199,0.059158604592084885,-0.03603179380297661,-0.04937358200550079,-0.05396077036857605,-0.040917057543992996,0.012255305424332619,0.10294916480779648,0.01542099192738533,-0.015524549409747124,-0.0023402711376547813,0.0055343108251690865,-0.04490600526332855,0.0147243095561862,0.014291291125118732,-0.02161671593785286,-0.06436268240213394,0.05283082276582718,-0.0662788674235344,-0.08680036664009094,-0.0575772300362587,-0.05445358157157898,0.02344166859984398,0.009873846545815468,-0.09025738388299942,0.010664965957403183,1.979230715344357e-33,0.015501217916607857,0.011590679176151752,0.009454263374209404,0.004169736988842487,-0.030913589522242546,-0.028145883232355118,0.0012441136641427875,0.08201679587364197,0.0020680315792560577,-0.03161204978823662,-0.05383829027414322,0.023976268246769905,-0.025023318827152252,-0.028822030872106552,0.014395889826118946,-0.05037973076105118,0.04855002090334892,0.04263536259531975,-0.004248014185577631,-0.013268213719129562,0.02971882000565529,-0.04045120254158974,-0.1167747974395752,-0.03434799239039421,0.07006275653839111,0.04150497168302536,-0.013249140232801437,-0.03155769780278206,-0.02318705804646015,-0.020453080534934998,-0.021497106179594994,-0.06094575300812721,-0.027973517775535583,-0.06715337932109833,-0.01472061313688755,0.031713150441646576,0.1277124583721161,-0.02736024558544159,-0.015495965257287025,-0.11722928285598755,0.023619217798113823,-0.020795593038201332,-0.06597106903791428,0.07964315265417099,0.002935093827545643,-0.0013299760175868869,-0.06492599844932556,0.08627831190824509,0.05965086445212364,0.07989916205406189,-0.0593971386551857,0.05797402933239937,0.010209286585450172,-0.06381569802761078,-0.0394454300403595,0.013612051494419575,0.0329117551445961,-0.12614484131336212,0.014021916314959526,0.019095007330179214,-0.03965965658426285,-0.00674835778772831,-0.0031768535263836384,-0.042136114090681076,0.02695482224225998,-0.02024693228304386,-0.04019938409328461,-0.040239084511995316,0.046671461313962936,0.018104856833815575,0.03295774757862091,0.012096717022359371,-0.06424181908369064,0.06172123923897743,0.03378014266490936,0.06226889416575432,0.05209331214427948,0.09596226364374161,0.010601001791656017,-0.02609005942940712,0.07623695582151413,-0.026765910908579826,0.017185386270284653,-0.00922372192144394,0.07963526993989944,0.05770942196249962,-0.03012537583708763,0.060044389218091965,0.01831372268497944,0.040944311767816544,-0.04233287647366524,-0.05761624500155449,0.06665915250778198,0.00024559066514484584,0.013082198798656464,-2.8111765359994934e-8,0.045417699962854385,0.05565541982650757,0.025170622393488884,-0.014460672624409199,0.04034356027841568,0.04609633609652519,-0.03993126377463341,0.03183649107813835,0.011550422757863998,0.016710156574845314,0.058912284672260284,0.14853765070438385,0.04659244418144226,0.08335830271244049,-0.022012948989868164,0.0823015570640564,0.08332358300685883,-0.17329822480678558,-0.08668252825737,0.008959542959928513,-0.03529715538024902,-0.043564364314079285,-0.06854798644781113,-0.08627577126026154,-0.04109123721718788,0.0246131531894207,-0.1126459389925003,0.04045315831899643,0.03552684187889099,0.03574655205011368,-0.06741407513618469,-0.015414901077747345,-0.038797151297330856,-0.08303806930780411,0.0465812124311924,0.07467137277126312,-0.10530053079128265,0.0613025464117527,0.025855984538793564,-0.10607922077178955,-0.06846196949481964,0.05911662429571152,0.10262778401374817,0.05845705419778824,0.036347080022096634,-0.04853760078549385,-0.01824028789997101,0.00466783344745636,-0.02265935204923153,-0.016660168766975403,-0.07654202729463577,0.03552398830652237,-0.039896659553050995,0.06019354239106178,0.03258013352751732,0.06931797415018082,-0.023478779941797256,-0.12097352743148804,-0.01832783967256546,-0.07405795902013779,0.02288808487355709,-0.08244111388921738,-0.028635859489440918,0.054032232612371445]},{"text":"Boxer, who had now had time to think things over, voiced the general feeling by saying: \"If Comrade Napoleon says it, it must be right.\" And from then on he adopted the maxim, \"Napoleon is always right,\" in addition to his private motto of \"I will work harder.\" By this time the weather had broken and the spring ploughing had begun.","book":"Animal Farm","chapter":46,"embedding":[-0.06873553991317749,0.0293949693441391,0.028665050864219666,0.005653285887092352,0.012429474852979183,0.08081783354282379,0.07812077552080154,0.05670415237545967,-0.045074157416820526,-0.046355001628398895,-0.044222451746463776,0.026506591588258743,0.04015381261706352,0.04860498383641243,0.013378294184803963,0.007017404306679964,0.04115872085094452,0.07932256907224655,-0.029542645439505577,-0.06574132293462753,-0.03167365863919258,0.08099927753210068,0.05160198733210564,0.06792977452278137,0.0027666192036122084,0.029267191886901855,-0.055137548595666885,-0.03681021183729172,0.03553316742181778,0.023722311481833458,0.029034754261374474,-0.03211955353617668,0.11630319058895111,0.011521396227180958,-0.07375480979681015,-0.012696830555796623,-0.027596432715654373,0.04873981699347496,0.04118168726563454,0.047069963067770004,-0.08625578135251999,-0.041474342346191406,-0.0735940933227539,0.025219906121492386,0.02584882080554962,0.0747704952955246,0.04978341981768608,0.02160288207232952,0.08405870944261551,0.03224848583340645,0.012641599401831627,0.005562689155340195,-0.003379259491339326,-0.0715939998626709,0.03318493068218231,0.0014803872909396887,0.03901814669370651,0.07000365853309631,0.0724540576338768,0.025655308738350868,-0.042234841734170914,-0.003991690929979086,0.039894722402095795,0.06719803810119629,0.049866508692502975,-0.000012741262253257446,-0.00538230873644352,0.026616912335157394,-0.15370234847068787,0.11978360265493393,-0.04089530184864998,0.025418754667043686,-0.015112992376089096,-0.09138154983520508,-0.06164313480257988,-0.016825875267386436,0.039341140538454056,0.018898721784353256,0.047154124826192856,0.05452651530504227,-0.05099371820688248,-0.00646132230758667,-0.0744786262512207,0.003454382298514247,-0.026707855984568596,-0.06581531465053558,0.07858709245920181,-0.036010973155498505,0.06065100058913231,-0.06303420662879944,-0.05023888126015663,-0.09081629663705826,-0.04268399626016617,0.13398918509483337,0.014741241931915283,0.03191664442420006,-0.12040267139673233,0.03428076207637787,-0.11195757240056992,0.03786168619990349,0.05073150247335434,-0.01063830591738224,0.016424238681793213,-0.039334144443273544,0.05731460452079773,-0.0008986612665466964,-0.015299104154109955,-0.011967872269451618,-0.006867147982120514,0.013665632344782352,-0.05189020186662674,-0.0727030411362648,0.060450129210948944,0.06443008035421371,0.0742369145154953,0.09003811329603195,-0.0664176344871521,-0.11120997369289398,-0.13586872816085815,0.006882882211357355,-0.004917773883789778,0.004456050228327513,-0.07439464330673218,0.031984105706214905,-0.01000022143125534,-0.020014381036162376,0.08973626792430878,-1.2837656457276744e-33,0.037004150450229645,-0.01393483579158783,0.06053497642278671,0.06596416980028152,-0.058447521179914474,0.00952379684895277,-0.06905505806207657,0.009399980306625366,0.007480355445295572,0.0722150206565857,-0.007954281754791737,0.041127827018499374,-0.034599848091602325,0.00508603360503912,-0.05183808505535126,0.03919621929526329,-0.14410139620304108,0.004138333257287741,0.029646815732121468,0.02899726666510105,0.011064395308494568,0.03703949227929115,-0.02809171751141548,-0.04314666986465454,0.05946718901395798,0.03543328121304512,0.0735345259308815,-0.0856589525938034,-0.01986493170261383,0.008915153332054615,-0.008096946403384209,0.01814868487417698,-0.011995110660791397,0.07705748826265335,-0.057537246495485306,-0.08791814744472504,-0.01878075674176216,-0.00585455447435379,-0.023570571094751358,0.07826165109872818,0.002826758660376072,0.016842203214764595,-0.02473471499979496,-0.03428314998745918,0.04896357282996178,0.014435325749218464,-0.0795760378241539,-0.0038082432001829147,-0.03578821197152138,-0.0022705579176545143,-0.003983506467193365,0.053690776228904724,0.04543638229370117,-0.030317336320877075,0.05999287962913513,-0.06285563111305237,0.005918438546359539,0.15374000370502472,0.0009253319585695863,-0.10749317705631256,-0.019943971186876297,-0.03202487900853157,0.015131899155676365,-0.015835493803024292,-0.021836942061781883,0.004188784398138523,-0.10466974973678589,0.07116704434156418,-0.061349548399448395,-0.009665990248322487,0.011715945787727833,0.06296157091856003,-0.08300364017486572,-0.07937145978212357,-0.002802332164719701,-0.02319292165338993,0.03936899080872536,0.04782445728778839,-0.01639482192695141,-0.02082712948322296,-0.06007351353764534,-0.049185484647750854,-0.008045239374041557,0.014338728040456772,-0.0029213526286184788,0.03525439277291298,0.04212258383631706,-0.06971986591815948,-0.028495529666543007,0.09652786701917648,-0.0975683405995369,-0.010898154228925705,0.008731581270694733,0.053030554205179214,-0.04887332767248154,-5.7964921319542825e-34,0.010037490166723728,0.014063524082303047,0.0501248762011528,0.12359759211540222,0.04199041798710823,-0.014168580994009972,-0.050695933401584625,-0.005437103565782309,-0.003536830423399806,0.031256530433893204,-0.0045007201842963696,-0.044021543115377426,-0.011390941217541695,-0.004550281446427107,0.03746053948998451,-0.09158133715391159,0.012276177294552326,-0.019457470625638962,-0.017062420025467873,0.008226258680224419,-0.012748601846396923,-0.018301941454410553,-0.053175829350948334,-0.005061069503426552,-0.019588012248277664,0.04462283104658127,0.004360477905720472,-0.041527386754751205,0.004097722936421633,-0.02594980038702488,-0.09782741963863373,-0.000011974781955359504,-0.09261468797922134,0.08800806105136871,0.03694684058427811,0.056493669748306274,-0.010676270350813866,0.0064823925495147705,-0.010310010053217411,0.0586589090526104,-0.05636870488524437,-0.03182276710867882,-0.04094741493463516,-0.02413925901055336,0.051219627261161804,-0.0848756954073906,-0.03943348675966263,-0.12096249312162399,-0.010219329036772251,0.006548102479428053,0.021001648157835007,0.023576736450195312,-0.004368592519313097,0.027349717915058136,0.0024827688466757536,-0.04079970344901085,-0.037123143672943115,-0.08660837262868881,-0.040268950164318085,-0.06493350863456726,-0.022592876106500626,0.027485545724630356,-0.017575865611433983,-0.020216861739754677,-0.08494994044303894,-0.008143188431859016,-0.026810921728610992,0.0794471949338913,0.04932204261422157,0.0968303307890892,0.04566221684217453,-0.05070428550243378,-0.02770051918923855,0.08209801465272903,0.05429588630795479,0.06899623572826385,0.0061198994517326355,-0.018805228173732758,-0.03883024677634239,-0.030160043388605118,-0.01871126890182495,-0.03934533894062042,0.02942148596048355,-0.00965140014886856,0.033175405114889145,0.011939962394535542,-0.06696777790784836,-0.010453613474965096,0.0753900408744812,0.018848974257707596,0.01061434019356966,0.02236541174352169,0.00971199106425047,-0.04155335575342178,-0.004399387631565332,-4.588723356846458e-8,-0.08321525901556015,0.0038332550320774317,-0.03618759289383888,0.02104400284588337,0.03038276918232441,-0.0014274480054154992,-0.009168985299766064,-0.037841904908418655,-0.015182365663349628,0.01791203022003174,0.022695614024996758,0.04278726130723953,-0.021567458286881447,0.021803095936775208,0.0414741076529026,0.026444511488080025,-0.06356335431337357,-0.10173916071653366,0.01593860611319542,0.0006765133002772927,-0.017869260162115097,-0.0003174313751515001,0.05185582488775253,-0.08701027929782867,-0.060752350836992264,-0.027800152078270912,-0.034350622445344925,-0.02399587631225586,-0.05767355486750603,0.07111497968435287,0.005615162197500467,0.03395019844174385,-0.10851079225540161,-0.11932200938463211,0.023181665688753128,0.07271338254213333,0.11001613736152649,0.016371283680200577,0.046074170619249344,-0.0829266607761383,-0.03237966448068619,0.07483260333538055,0.0225507952272892,-0.014482072554528713,0.02515724115073681,0.035308558493852615,0.07883204519748688,0.025941796600818634,-0.013366379775106907,-0.05439899489283562,0.027689971029758453,0.05546516552567482,0.05141587555408478,0.006856527645140886,0.04756338149309158,0.028528543189167976,-0.043028052896261215,-0.08063728362321854,-0.008406911045312881,-0.049582287669181824,-0.043784819543361664,0.05555637553334236,-0.05564001202583313,-0.03534894809126854]},{"text":"Nowadays they did not sit all together as they had done in the past.","book":"Animal Farm","chapter":46,"embedding":[0.0502936989068985,-0.03702623397111893,0.002639038721099496,0.0008518900722265244,-0.02295239083468914,0.008423632942140102,-0.13447695970535278,-0.03893806412816048,-0.027579091489315033,-0.012161011807620525,0.087920181453228,0.09126461297273636,0.03757518157362938,-0.03947380557656288,0.013637561351060867,-0.06384609639644623,-0.150483176112175,-0.05044509097933769,-0.047970354557037354,0.04484112560749054,-0.13874390721321106,-0.02399582602083683,-0.010897034779191017,0.021803556010127068,0.03944426029920578,0.0759076401591301,-0.031739816069602966,-0.021085169166326523,0.02181122452020645,-0.020755834877490997,-0.03427797555923462,0.025579437613487244,0.0037365786265581846,0.023057114332914352,0.00525240134447813,-0.011729447171092033,0.04539771005511284,0.08522535860538483,0.05904335901141167,-0.13966767489910126,-0.015633730217814445,0.0030772059690207243,-0.012649630196392536,-0.046241167932748795,-0.04006969556212425,-0.038053590804338455,-0.06532548367977142,-0.07768174260854721,0.0007449316326528788,0.02883070893585682,-0.02283935435116291,-0.04568443074822426,0.014657515101134777,-0.06706640869379044,0.023362066596746445,0.03453746810555458,-0.04688553512096405,-0.021252376958727837,0.03971441090106964,0.006548910867422819,0.0028871367685496807,0.023532526567578316,-0.028231093659996986,0.02419137954711914,-0.00607276288792491,-0.06677278876304626,-0.019188828766345978,0.04970979690551758,-0.024254316464066505,0.10958880931138992,-0.054879091680049896,0.008791780099272728,-0.02167193405330181,-0.08398488163948059,-0.0676526427268982,0.04268001392483711,-0.009398871101439,0.018878696486353874,-0.052358098328113556,-0.056755758821964264,-0.028216596692800522,0.03451142460107803,-0.017386313527822495,0.015008218586444855,0.02574285864830017,-0.013384510762989521,-0.056360915303230286,-0.10115240514278412,-0.08301758021116257,-0.043558571487665176,-0.010245857760310173,0.029132569208741188,0.030460648238658905,0.04286943003535271,0.06794960051774979,-0.02017340250313282,0.014559864066541195,0.1645883023738861,0.08772476762533188,0.08268822729587555,-0.0335804782807827,0.056607287377119064,0.021415023133158684,-0.03963154926896095,-0.06832554191350937,-0.05034482106566429,-0.01336092222481966,-0.057975590229034424,-0.0058036609552800655,-0.04103957116603851,-0.07391307502985,-0.04760785400867462,0.0121188098564744,0.044865526258945465,-0.0002427387807983905,-0.054689742624759674,-0.03100489266216755,-0.02362252026796341,-0.027164366096258163,0.008752625435590744,0.011323767714202404,0.05802374333143234,-0.003541870042681694,0.0329170823097229,0.02966615930199623,-0.028644921258091927,0.04165908321738243,-2.78199725110925e-34,0.0033655010629445314,-0.05901401489973068,-0.04671459645032883,0.019165784120559692,0.0032971107866615057,0.0333271324634552,-0.06791135668754578,0.05603828653693199,0.04923166334629059,-0.01873125694692135,0.0024765722919255495,-0.04783458635210991,0.0005708744283765554,-0.13088276982307434,0.007974714040756226,0.06195008382201195,-0.02979358285665512,0.008329520002007484,0.03715789318084717,-0.01796337030827999,0.0022291052155196667,0.1825246959924698,0.007024871185421944,0.020980892702937126,0.0010350476950407028,0.07409527897834778,0.0691489428281784,0.06295374780893326,-0.06383699923753738,0.010671869851648808,0.024451252073049545,0.017098482698202133,-0.02093973197042942,0.06979039311408997,0.032352421432733536,0.09557246416807175,0.01405528374016285,-0.08164547383785248,-0.048370569944381714,0.01027438323944807,-0.0027545136399567127,0.009728292003273964,-0.0350416824221611,-0.06434953957796097,-0.06544749438762665,0.025958536192774773,-0.032716576009988785,0.020554259419441223,0.01735842600464821,0.03940408676862717,-0.009492055512964725,0.06954468786716461,-0.044493045657873154,-0.008887327276170254,-0.006895842496305704,-0.012968884781002998,-0.051850270479917526,0.06640130281448364,-0.019611937925219536,0.052779097110033035,0.07155707478523254,0.026404250413179398,0.019465867429971695,-0.05717897042632103,-0.000025683455532998778,0.1532669961452484,0.02972128987312317,0.054742977023124695,-0.07175292819738388,0.026502184569835663,-0.013680858537554741,-0.02532176859676838,-0.08421450853347778,0.0018171871779486537,0.02975519746541977,-0.05141043663024902,-0.025255518034100533,-0.045662496238946915,0.021643266081809998,-0.001991366734728217,0.016918281093239784,0.004339912440627813,0.031565871089696884,-0.022875206544995308,0.033227838575839996,-0.06632184982299805,0.06162644550204277,0.047200288623571396,0.01905105635523796,0.0557560957968235,-0.07601802796125412,0.04813201352953911,0.12112218141555786,-0.0971345603466034,0.02067435346543789,-2.535530845477112e-33,-0.020131735131144524,0.07127111405134201,-0.05076838657259941,0.05737825855612755,0.05947213992476463,-0.002896156394854188,-0.004845892079174519,-0.057181403040885925,0.01570991612970829,0.031170375645160675,0.01411765068769455,-0.03104160912334919,0.00466195261105895,0.005016146693378687,-0.012975644320249557,0.04618842154741287,0.09547238051891327,0.014116517268121243,0.053709253668785095,0.02851147949695587,0.08384772390127182,-0.00885310210287571,-0.029898110777139664,0.06107395142316818,-0.003252420574426651,0.05053927004337311,0.03153671696782112,-0.02343902736902237,-0.08347108215093613,0.04577086493372917,0.025748183950781822,-0.06578448414802551,-0.04979155585169792,0.007496242877095938,-0.014326256699860096,-0.01907408982515335,-0.1239885613322258,0.014028457924723625,-0.04640689864754677,-0.10774890333414078,-0.03943902626633644,-0.03377861529588699,-0.030901102349162102,0.05812922120094299,0.05019235238432884,-0.01261858083307743,-0.041516318917274475,0.047809503972530365,-0.02612798660993576,-0.07815665006637573,-0.022122113034129143,0.04903918132185936,-0.057382259517908096,-0.03516703099012375,-0.04561203345656395,-0.0015875607496127486,0.08704756945371628,-0.026615716516971588,-0.037375111132860184,0.025238171219825745,0.019344938918948174,-0.012598446570336819,0.02018258534371853,-0.04947904497385025,-0.007862859405577183,0.08218342810869217,0.018828393891453743,0.019240152090787888,-0.0521320179104805,0.026602592319250107,0.01833612471818924,-0.08834677189588547,-0.048360325396060944,0.06003542244434357,-0.006876915227621794,0.11813849210739136,-0.07105332612991333,0.017747297883033752,0.01764421910047531,-0.04842069000005722,-0.02938293106853962,0.0030640566255897284,-0.0052776881493628025,0.00981906894594431,-0.007490129210054874,0.11844971030950546,0.0017640703590586782,-0.06845510005950928,0.029733141884207726,-0.002073038835078478,0.04035963863134384,-0.1015750914812088,0.14511914551258087,0.016279730945825577,-0.014209246262907982,-2.7690374437838727e-8,0.041753847151994705,0.02419932372868061,-0.053780801594257355,0.0051630111411213875,-0.03160388022661209,-0.06142054498195648,0.06288354843854904,0.04258270561695099,0.021381519734859467,0.15472523868083954,0.031955063343048096,-0.0193049143999815,-0.03095134347677231,-0.03220713138580322,0.03590897470712662,0.010918167419731617,-0.09614380449056625,-0.09206626564264297,-0.05681679770350456,0.04341142997145653,-0.07853452861309052,-0.0024354434572160244,-0.008865849114954472,0.014875312335789204,0.01235254481434822,0.04441791772842407,-0.02924363501369953,-0.06870835274457932,0.05171855166554451,0.01795313134789467,0.04726245254278183,-0.0030134478583931923,-0.037788327783346176,-0.0721663385629654,-0.021385852247476578,-0.007820626720786095,0.004777198191732168,0.03962283581495285,-0.00552770821377635,-0.057557761669158936,-0.06431093066930771,0.03644542768597603,0.018004992976784706,0.07304763048887253,0.12445630133152008,-0.016047198325395584,-0.026548834517598152,0.05606023222208023,-0.01757950708270073,-0.09684091806411743,0.026831237599253654,0.1051199659705162,0.022200467064976692,-0.0031160693615674973,-0.00853941310197115,-0.02215242013335228,0.0012740333331748843,0.018822653219103813,-0.03210063278675079,-0.010503340512514114,0.012201265431940556,-0.06725512444972992,0.04144363850355148,0.01991180330514908]},{"text":"He did not give any reason for having changed his mind, but merely warned the animals that this extra task would mean very hard work, it might even be necessary to reduce their rations.","book":"Animal Farm","chapter":46,"embedding":[0.012474559247493744,0.10750501602888107,0.038473229855298996,0.04316391795873642,0.04097382351756096,-0.0188471470028162,0.048398662358522415,-0.01267915591597557,-0.09868256747722626,0.017107348889112473,0.00005702479393221438,-0.008469395339488983,-0.06990037858486176,0.05859086662530899,0.018580622971057892,-0.05360767990350723,0.022380981594324112,-0.0030335490591824055,-0.024427730590105057,0.033202655613422394,0.004481918178498745,0.0036337741184979677,0.05823450908064842,-0.010077089071273804,-0.03833087533712387,-0.025105765089392662,-0.05721696466207504,-0.008998614735901356,0.012254903092980385,-0.01959628239274025,-0.03167583420872688,0.07304759323596954,0.052090082317590714,0.005040144082158804,-0.06537578999996185,-0.005392707884311676,0.03692566603422165,0.007811553310602903,0.023083394393324852,0.009472421370446682,0.019608614966273308,-0.017223045229911804,-0.07367277145385742,-0.015629354864358902,-0.1083701029419899,0.0010742256417870522,-0.06582075357437134,-0.0874999463558197,0.04494467005133629,-0.04511008784174919,-0.03643487021327019,-0.036094728857278824,-0.06075001880526543,-0.15896254777908325,0.003629420418292284,0.01141098327934742,0.028254378587007523,0.01783662848174572,-0.016614951193332672,-0.019175680354237556,0.006994179449975491,0.00431846221908927,0.01584949903190136,0.02003561705350876,0.05063512176275253,-0.03926236182451248,-0.06894001364707947,0.011905668303370476,-0.08862651139497757,0.06352303922176361,0.017224160954356194,-0.013386211358010769,0.04757975786924362,-0.11584039777517319,-0.02856711484491825,-0.06936309486627579,0.002071789465844631,0.016832806169986725,0.09590683877468109,-0.07705932855606079,-0.08453705161809921,0.020687486976385117,-0.021780962124466896,0.032566461712121964,0.014559765346348286,-0.03039964847266674,-0.03979940712451935,-0.09383382648229599,0.07008301466703415,-0.012948757037520409,0.057399164885282516,-0.08933760970830917,0.005856293253600597,0.01591813936829567,0.008385502733290195,0.07057537138462067,-0.05712670087814331,0.05255251005291939,-0.0715530589222908,0.0007923342054709792,-0.003436074825003743,-0.013025335967540741,0.0017597710248082876,-0.02929411455988884,0.003992592915892601,-0.06159725412726402,-0.06052447855472565,0.01321958377957344,-0.006771104410290718,0.03554953634738922,-0.05216081067919731,0.03385770320892334,0.059729959815740585,0.04915303364396095,-0.03627471625804901,0.09605615586042404,-0.04478262737393379,-0.042751748114824295,-0.09179718792438507,0.06046871840953827,0.04954882711172104,0.004174383357167244,0.018675493076443672,0.06181441992521286,-0.007659540511667728,0.016795210540294647,0.06840663403272629,-1.1735964784586865e-33,0.049320779740810394,-0.10720334947109222,0.016434095799922943,-0.0662086233496666,0.10637399554252625,0.022551069036126137,-0.04963504895567894,-0.003794363234192133,0.10038056969642639,-0.043981704860925674,0.008891541510820389,0.01815810054540634,0.03532465174794197,0.05936898663640022,-0.03299984335899353,-0.040333446115255356,0.023365436121821404,0.005927331745624542,0.14128345251083374,-0.0670446828007698,-0.006706420797854662,-0.006339555140584707,0.04331095144152641,-0.020477797836065292,0.023682530969381332,0.01271393895149231,0.015634210780262947,-0.05285879224538803,0.01392106432467699,0.031014684587717056,-0.06504461914300919,-0.004350992850959301,-0.044056735932826996,0.03376416116952896,-0.022675611078739166,0.01651245355606079,-0.018205495551228523,-0.07935400307178497,-0.07441043108701706,-0.017070520669221878,0.11818059533834457,0.045221392065286636,0.08947639167308807,0.04063687101006508,-0.004494091495871544,0.03879430145025253,0.028561275452375412,0.03792475163936615,-0.03595694527029991,0.04790448024868965,0.06330352276563644,0.06376954913139343,0.07802384346723557,-0.07198867946863174,0.02548130229115486,-0.0002764676755759865,0.03846902400255203,0.04180370271205902,-0.053423576056957245,-0.025291824713349342,0.01922415755689144,-0.018770935013890266,0.0041490341536700726,0.04913776367902756,0.004365372471511364,-0.011370731517672539,-0.02866789698600769,-0.01686910353600979,-0.09509211778640747,-0.00595474150031805,-0.06735476851463318,-0.052388716489076614,-0.07609675824642181,-0.06859640777111053,-0.05652441456913948,-0.026043344289064407,0.007511673495173454,0.03847390040755272,-0.04460952803492546,-0.1624877154827118,0.07237692177295685,0.05021951347589493,-0.062088195234537125,0.05066089332103729,-0.053104594349861145,0.043752942234277725,0.029939530417323112,0.045976340770721436,0.08995413780212402,0.01579779013991356,0.04881299287080765,-0.011095674708485603,-0.008846350014209747,-0.059166595339775085,-0.007833708077669144,-1.499226413393707e-33,-0.13622763752937317,-0.01630103588104248,-0.034923478960990906,0.05280519649386406,0.004429826978594065,0.005087095312774181,0.004834650084376335,-0.08534330129623413,0.08871038258075714,-0.01381587702780962,-0.041421204805374146,-0.0031224458944052458,-0.007156842853873968,-0.013456291519105434,-0.07249685376882553,0.0048410240560770035,-0.09948433190584183,0.0005454634083434939,-0.04118972644209862,-0.08472494035959244,-0.035147760063409805,0.05800987407565117,0.04668411985039711,0.029660284519195557,0.034463733434677124,0.06911970674991608,-0.052740469574928284,0.02046501450240612,0.00043499484308995306,-0.15656815469264984,0.00448876665905118,0.0017840191721916199,-0.059068113565444946,0.010161270387470722,0.09707602858543396,-0.004465812351554632,-0.03963961452245712,0.07825524359941483,-0.07233518362045288,0.04708218574523926,0.06725606322288513,-0.03828835487365723,-0.024260278791189194,0.011427037417888641,0.001586908008903265,0.05375777184963226,0.04754777252674103,-0.07683618366718292,0.02939785271883011,-0.0035427543334662914,0.04182939603924751,-0.0284179225564003,0.02528117597103119,-0.05377588048577309,-0.01118067093193531,-0.039498113095760345,0.009942246600985527,-0.09165891259908676,0.050140630453825,-0.04559273272752762,-0.010121528059244156,-0.010678589344024658,0.03389425575733185,-0.006768209394067526,-0.007726870011538267,0.024994781240820885,-0.032693635672330856,0.000047935780457919464,0.11763191968202591,-0.013309674337506294,0.0787728801369667,-0.007816515862941742,0.05281895399093628,-0.019906451925635338,0.0016203612321987748,0.07398693263530731,-0.024035640060901642,-0.057523664087057114,-0.011470303870737553,-0.05350038409233093,-0.04235305264592171,-0.09572847187519073,0.020179547369480133,0.0200509000569582,-0.0012998927850276232,-0.04361115023493767,-0.014502917416393757,0.06166587397456169,0.038928307592868805,0.05009789392352104,-0.006431231740862131,-0.0572502538561821,0.08237498998641968,0.09121094644069672,0.0411633662879467,-3.259405545463778e-8,0.009562992490828037,-0.007663581520318985,-0.020451240241527557,0.10464740544557571,0.10416105389595032,-0.02020607329905033,-0.045887693762779236,-0.028603438287973404,0.0059426515363156796,0.0970916897058487,0.025578025728464127,0.07589659094810486,0.07079514116048813,0.08530032634735107,0.043782349675893784,-0.006318834610283375,0.05611846223473549,-0.07153498381376266,-0.020493438467383385,0.02290375530719757,-0.030202817171812057,0.028358763083815575,-0.08859584480524063,-0.04268551245331764,-0.013131056912243366,-0.04225010424852371,-0.03314682096242905,0.047480933368206024,0.05624668672680855,0.011933409608900547,0.0008068854222074151,0.022632872685790062,-0.04795600473880768,0.029588723555207253,0.0011576040415093303,-0.0158938467502594,-0.044003989547491074,0.0061564259231090546,0.08859045058488846,-0.04579506814479828,-0.03685639798641205,0.06275542080402374,-0.030901538208127022,0.05392755940556526,-0.012921255081892014,-0.058504149317741394,-0.05581318959593773,0.07026191800832748,-0.036528393626213074,0.011650157161056995,-0.06452358514070511,0.09216860681772232,0.06763297319412231,-0.019284075126051903,0.0787106603384018,-0.07506707310676575,0.019335171207785606,-0.09428256750106812,-0.025035878643393517,0.010089438408613205,-0.0252565685659647,0.01513949129730463,-0.09566453099250793,0.006774815730750561]},{"text":"On the contrary, it was he who had advocated it in the beginning, and the plan which Snowball had drawn on the floor of the incubator shed had actually been stolen from among Napoleon's papers.","book":"Animal Farm","chapter":46,"embedding":[-0.13943248987197876,0.13428479433059692,0.06766711175441742,-0.018968136981129646,0.09113077074289322,0.028362156823277473,0.00039440044201910496,0.10509880632162094,-0.05946788191795349,0.0664827972650528,0.0186433307826519,0.07818423956632614,0.06061185523867607,0.00003781610939768143,-0.00860542245209217,-0.06815551966428757,-0.03740343078970909,-0.016671301797032356,-0.04018489643931389,-0.0031633221078664064,0.04159945622086525,-0.02893896959722042,0.07713301479816437,-0.03793894499540329,0.08179396390914917,0.039925746619701385,-0.03619594871997833,0.019469669088721275,0.024533424526453018,0.017629556357860565,0.05060409754514694,-0.01919751800596714,-0.015602834522724152,-0.0232836976647377,0.03903333097696304,-0.021020453423261642,0.03128708153963089,0.013892716728150845,0.027035275474190712,0.05595378205180168,0.019140252843499184,-0.027710694819688797,-0.05792342126369476,0.0433269701898098,-0.08748213946819305,0.05421891808509827,-0.010569700971245766,0.04211607575416565,-0.01036655530333519,0.0036964588798582554,-0.027481423690915108,0.06758815050125122,-0.014347666874527931,-0.007749720476567745,-0.026778478175401688,-0.030214788392186165,0.02087610773742199,-0.024180427193641663,0.02540585584938526,-0.012942315079271793,0.06217222660779953,0.040572237223386765,0.01472499966621399,-0.0015531521057710052,0.08044496923685074,0.0012173334835097194,-0.07110508531332016,-0.0421178936958313,0.023730196058750153,0.050124265253543854,0.1058030053973198,0.02647525444626808,0.024961460381746292,-0.08607786893844604,-0.054675277322530746,-0.017256014049053192,-0.01778983324766159,0.07700519263744354,-0.033541083335876465,-0.01388266310095787,-0.00526531133800745,0.007338739465922117,0.028035657480359077,0.01457216590642929,-0.08764410018920898,-0.04661189392209053,0.10069956630468369,-0.052739668637514114,0.11231444776058197,0.01693085953593254,-0.007715033367276192,-0.06947600096464157,-0.016072960570454597,0.0856080874800682,-0.076717808842659,0.04871920123696327,-0.030002137646079063,0.05534517765045166,-0.060630347579717636,0.00914875790476799,-0.026895565912127495,-0.03383507579565048,0.05427242070436478,0.01972038857638836,-0.0437033511698246,-0.06677643954753876,-0.12448010593652725,-0.11580035090446472,-0.004288431257009506,0.010103929787874222,-0.035357385873794556,-0.06269032508134842,0.11098649352788925,0.12929949164390564,0.10774450749158859,0.015911772847175598,-0.02582501620054245,-0.06388088315725327,-0.08601967990398407,0.03360921889543533,0.07765280455350876,0.028355112299323082,-0.006419380661100149,0.07123380154371262,-0.038315486162900925,0.022400353103876114,-0.01132663618773222,-4.6911782836249395e-33,0.029998766258358955,0.03602681681513786,-0.00367250619456172,0.0035767988301813602,0.02491370216012001,0.023686179891228676,-0.07091931998729706,0.06302978098392487,0.005859589669853449,0.06639350950717926,-0.02074485644698143,0.027740299701690674,-0.07960404455661774,0.017484551295638084,-0.005140487104654312,0.00191456766333431,-0.016266247257590294,-0.039635490626096725,0.03769158944487572,0.026145314797759056,0.034734707325696945,0.018460994586348534,0.0324997715651989,0.0023339041508734226,0.008827277459204197,0.07030851393938065,-0.03351322561502457,-0.0758051723241806,-0.005411983001977205,0.050008196383714676,0.013786190189421177,-0.015720009803771973,-0.02935325726866722,0.06861009448766708,0.019814036786556244,-0.026116328313946724,-0.026549484580755234,-0.10373909026384354,-0.03597527742385864,0.04581531509757042,0.02293696627020836,-0.044818077236413956,0.046786706894636154,-0.010370543226599693,0.041628144681453705,-0.0463956817984581,-0.038826704025268555,0.035071562975645065,0.026421992108225822,0.0009871036745607853,0.045654963701963425,-0.013317023403942585,0.059436000883579254,-0.10665661841630936,0.043750688433647156,-0.0009241094230674207,-0.06084737926721573,0.029748978093266487,0.06833922863006592,0.010417375713586807,0.01599559187889099,0.06292541325092316,0.032315097749233246,0.035254888236522675,-0.0727742463350296,-0.07978175580501556,0.023047735914587975,0.04011353850364685,-0.03706197813153267,0.004026756621897221,-0.03079558163881302,0.04496810585260391,-0.04739871248602867,0.0007381311152130365,-0.03707423806190491,0.0021808205638080835,-0.0054708984680473804,0.05241791531443596,-0.03897319361567497,-0.06415768712759018,0.0396149717271328,-0.05743257701396942,0.010415301658213139,-0.0049811117351055145,-0.10914766043424606,0.006690169684588909,0.07392057776451111,0.0727171003818512,-0.003008526284247637,0.0793684870004654,-0.038340575993061066,-0.02398611046373844,-0.02657628059387207,-0.03488263487815857,0.012333896942436695,1.7949840981384563e-33,-0.025095269083976746,-0.09985091537237167,-0.05875074490904808,0.01442950963973999,-0.0005346145480871201,0.008775140158832073,0.0018193135038018227,-0.07725732773542404,-0.04771922156214714,-0.02865898236632347,-0.11475401371717453,-0.002349416958168149,0.049100201576948166,-0.0025781665463000536,0.04778342694044113,-0.028918607160449028,0.03298596292734146,-0.05760152265429497,-0.06482359766960144,-0.06616344302892685,-0.009091871790587902,-0.05095164477825165,-0.09686559438705444,-0.020182816311717033,-0.06927590072154999,0.022076446563005447,0.02094440907239914,-0.01505306363105774,-0.048216573894023895,0.04834058880805969,-0.05274558439850807,0.10184800624847412,-0.04390126094222069,0.02348705567419529,-0.0014737836318090558,0.0246430691331625,0.021180223673582077,-0.011132672429084778,0.008101957850158215,-0.12548963725566864,0.01407173927873373,-0.04458889737725258,-0.003877639537677169,0.018925003707408905,0.061080943793058395,0.03194206580519676,-0.038601361215114594,-0.0036836599465459585,0.09205341339111328,0.03878624737262726,-0.01143805030733347,0.06318815052509308,-0.032813459634780884,-0.08513116836547852,-0.05550605058670044,0.01441102847456932,-0.005182492081075907,-0.14099767804145813,0.02073592133820057,0.014370735734701157,0.03244594484567642,-0.02523687109351158,-0.020618237555027008,-0.05665278807282448,-0.04901888594031334,-0.008001464419066906,-0.0522039532661438,0.009459258057177067,0.04196220263838768,0.006084566004574299,0.03279424086213112,-0.06448331475257874,0.08747818320989609,-0.011650185100734234,0.04343261569738388,0.0721483901143074,-0.004630210343748331,0.002447047969326377,-0.02275730110704899,-0.042854662984609604,-0.07458313554525375,-0.06376350671052933,0.020253585651516914,-0.0747622698545456,0.0378107875585556,-0.043951667845249176,-0.0522201769053936,-0.021338677033782005,0.0140462014824152,-0.030012037605047226,-0.0013798815198242664,-0.04868827015161514,0.04928029701113701,0.03895711153745651,0.030214939266443253,-3.2805555605364134e-8,0.03683612495660782,0.09977200627326965,0.09263432770967484,0.045972105115652084,0.08985166996717453,-0.06925183534622192,0.016624506562948227,0.00962617713958025,0.007098765578120947,0.054269444197416306,-0.06732999533414841,0.06441964209079742,0.00029652653029188514,0.12567220628261566,0.010568817146122456,-0.0083975400775671,0.08111340552568436,-0.06865566968917847,-0.05680007487535477,-0.0035827341489493847,0.0042143999598920345,-0.004148663021624088,-0.06773769855499268,-0.07218413054943085,-0.008686973713338375,-0.009582259692251682,0.018157390877604485,-0.027452953159809113,0.014299369417130947,0.060559891164302826,-0.07905343174934387,-0.03776106610894203,-0.004091461654752493,-0.06175190955400467,-0.0049732583574950695,0.09744657576084137,0.06196284666657448,0.015497061423957348,0.015641193836927414,-0.17774443328380585,0.046341173350811005,0.02898472547531128,0.026586556807160378,-0.0003285219136159867,0.07091137766838074,0.07487381994724274,-0.03158297389745712,-0.02837594412267208,-0.012615574523806572,0.029767949134111404,-0.05273839458823204,0.03137984871864319,0.016827145591378212,0.04115781933069229,0.07748047262430191,-0.03163159638643265,0.0018772697076201439,-0.11316509544849396,0.011498190462589264,-0.04784443974494934,-0.10131092369556427,-0.019230268895626068,-0.01101862546056509,0.005734668113291264]},{"text":"He had SEEMED to oppose the windmill, simply as a manoeuvre to get rid of Snowball, who was a dangerous character and a bad influence.","book":"Animal Farm","chapter":47,"embedding":[0.00011377564806025475,0.13359951972961426,0.039628852158784866,0.0534423366189003,0.06362959742546082,0.05478914454579353,0.03506521135568619,0.028801901265978813,-0.05423574522137642,-0.017537640407681465,0.022379085421562195,0.044463515281677246,0.03652426227927208,-0.048481445759534836,0.04027575999498367,0.009532182477414608,-0.07848306745290756,-0.01956174708902836,-0.04573701694607735,0.03996121510863304,-0.02326715551316738,-0.04215743765234947,0.005955797620117664,-0.026418142020702362,-0.017351752147078514,0.07936704903841019,-0.05676431208848953,0.11166620254516602,0.00672277994453907,-0.0008067690650932491,0.03530862182378769,0.02459789253771305,-0.045461636036634445,-0.0033965955954045057,-0.05759500339627266,0.017588334158062935,0.0408947728574276,0.05557471513748169,-0.0442577488720417,-0.02959536761045456,0.028681203722953796,0.03171820193529129,0.024322371929883957,-0.009342048317193985,-0.08063855767250061,0.030785394832491875,-0.008769186213612556,-0.020473502576351166,0.049498725682497025,0.011880765669047832,-0.033623162657022476,0.017368024215102196,-0.021811557933688164,-0.0875837653875351,0.06814538687467575,0.012644303031265736,0.05453204736113548,0.030029207468032837,0.03158197179436684,-0.02140069380402565,0.0228412002325058,-0.09464902430772781,-0.03803705796599388,0.03025466948747635,0.08987640589475632,-0.07545394450426102,-0.08981161564588547,-0.06435424834489822,-0.050025373697280884,0.046015363186597824,0.08195339888334274,-0.029154431074857712,-0.02541647106409073,-0.11222562938928604,-0.06211906298995018,-0.09238699823617935,0.005426856689155102,-0.026568517088890076,0.03374278545379639,0.03797701746225357,0.06614106893539429,0.06836555898189545,0.00036628174711950123,0.060314685106277466,0.018423473462462425,-0.006987609434872866,0.03554762527346611,-0.09822072833776474,0.0982380360364914,0.07164524495601654,-0.009726274758577347,-0.050411924719810486,0.028174033388495445,0.07348743081092834,0.027190059423446655,0.07346760481595993,0.012337266467511654,0.048066046088933945,-0.12153677642345428,0.036080606281757355,0.0662941038608551,-0.031189804896712303,0.014295866712927818,0.019755948334932327,0.03210414946079254,0.0023686683271080256,-0.044147856533527374,-0.00881093181669712,-0.04233629256486893,0.017282644286751747,0.015682073310017586,-0.03710436075925827,-0.03847392275929451,-0.016634803265333176,0.04108700156211853,-0.021667461842298508,-0.02064397931098938,-0.019013240933418274,-0.18242588639259338,0.04294021800160408,0.12292124330997467,0.08659867197275162,-0.045963190495967865,0.08867988735437393,0.013864077627658844,0.05015028268098831,-0.017749570310115814,-4.29068368487994e-33,0.01223955862224102,-0.0470595546066761,-0.02046923339366913,-0.025952396914362907,0.08211537450551987,0.008246142417192459,-0.004361921455711126,0.014882130548357964,0.08815151453018188,-0.00015547082875855267,0.04100652039051056,0.028060222044587135,-0.09783785045146942,-0.04952104389667511,0.01135423593223095,-0.03544420376420021,-0.07197822630405426,-0.08219332993030548,0.057187262922525406,0.0026551068294793367,0.036553822457790375,-0.017992597073316574,-0.028903715312480927,-0.04900002107024193,-0.09378648549318314,0.03301184996962547,0.015635447576642036,-0.005722296889871359,0.032581038773059845,0.04624437168240547,0.015207737684249878,-0.026025837287306786,-0.0987543836236,0.04046577215194702,0.08646266907453537,-0.032119669020175934,-0.12415885925292969,-0.10947001725435257,-0.016476396471261978,0.04186848923563957,-0.060195375233888626,0.014455752447247505,-0.10352912545204163,0.0247991681098938,0.002151332562789321,-0.052703142166137695,0.029420701786875725,0.052120745182037354,-0.010982216335833073,-0.011040126904845238,0.08627081662416458,0.012000491842627525,0.055186912417411804,-0.04618128389120102,0.027610469609498978,0.020828768610954285,-0.014542614109814167,0.06423242390155792,-0.06574039906263351,-0.0109119126573205,0.047498151659965515,-0.024073820561170578,0.05790622904896736,0.02690429985523224,-0.046998895704746246,-0.054250653833150864,-0.015164246782660484,0.011913085356354713,-0.1446712762117386,0.008013902232050896,-0.000263694062596187,0.0015670121647417545,-0.025104565545916557,0.01634000428020954,-0.049085456877946854,-0.01142212189733982,-0.030358944088220596,0.058131154626607895,0.005919418763369322,-0.016854872927069664,-0.02819208800792694,-0.00865904800593853,0.01397431269288063,0.0014990601921454072,-0.09020094573497772,-0.03494957461953163,0.06131957471370697,-0.03612767904996872,-0.026858577504754066,-0.04741945490241051,0.0501415990293026,0.02114507369697094,0.0066157798282802105,-0.007264238316565752,-0.07999742776155472,4.023957771864624e-34,-0.13813555240631104,-0.01017141342163086,-0.0006209709099493921,-0.017018411308526993,-0.012058820575475693,0.07867805659770966,-0.03838169947266579,-0.05454356223344803,-0.01080065593123436,-0.03008650243282318,-0.05465695261955261,0.03211174160242081,-0.011998867616057396,-0.03542110696434975,0.07967565208673477,-0.03934882953763008,0.025431359186768532,0.06809773296117783,-0.026339881122112274,-0.0036496093962341547,0.1065514087677002,0.023129666224122047,-0.049860961735248566,-0.07048537582159042,-0.01638888008892536,0.011765682138502598,-0.005957435816526413,-0.06900031119585037,-0.016753699630498886,0.06517212837934494,0.019216790795326233,0.08878475427627563,0.029940608888864517,-0.022333892062306404,-0.0028907579835504293,0.09323327243328094,-0.048895735293626785,0.005546971224248409,-0.008052867837250233,-0.07156749814748764,0.032294631004333496,-0.06190938502550125,0.09535405039787292,0.021536486223340034,0.021314110606908798,0.013824704103171825,-0.08561371266841888,0.028738101944327354,0.05611437186598778,0.03758510202169418,-0.06504276394844055,0.05101555958390236,-0.0478864349424839,0.042279258370399475,-0.04794884845614433,-0.04529421031475067,0.027028562501072884,-0.12824128568172455,0.02642141841351986,-0.0380522720515728,-0.10973655432462692,-0.07360539585351944,0.010913776233792305,0.02928057499229908,0.0018290826119482517,0.062384992837905884,-0.050337016582489014,-0.05982816591858864,-0.00006161780038382858,-0.030339941382408142,0.011620964854955673,0.024535005912184715,0.0465073324739933,-0.006775954272598028,-0.031003642827272415,0.07411765307188034,0.011100172065198421,0.019667325541377068,-0.051667410880327225,-0.03555063530802727,-0.06475627422332764,0.024434799328446388,0.007912818342447281,0.019013497978448868,-0.028661368414759636,-0.05078963562846184,-0.040865905582904816,-0.04176566004753113,0.019690360873937607,0.07574234902858734,0.079990915954113,-0.06275687366724014,0.036820851266384125,0.07475697994232178,0.035554565489292145,-2.705422019744219e-8,-0.04358401894569397,-0.01807502470910549,0.051147159188985825,-0.02250986546278,0.028922662138938904,0.07505180686712265,-0.04301109537482262,-0.04835735261440277,0.03412766382098198,0.08364958316087723,-0.013393609784543514,0.09050744771957397,0.08329088240861893,0.042407866567373276,0.021922193467617035,0.010414998047053814,0.03226236626505852,-0.07513629645109177,-0.05810616910457611,0.02269112318754196,0.017908526584506035,-0.04945806786417961,-0.057025615125894547,0.022791855037212372,0.021232236176729202,0.0444505475461483,-0.05734329670667648,-0.010192833840847015,0.028279565274715424,0.010599980130791664,-0.05329498276114464,0.008720760233700275,-0.013778815045952797,-0.1033954918384552,-0.08042620122432709,0.08990921825170517,0.0048385378904640675,-0.0019294852390885353,-0.01876007951796055,-0.006545541808009148,-0.027078913524746895,0.09534823149442673,0.028560053557157516,0.02855265699326992,0.038540128618478775,0.00040452880784869194,-0.06278987973928452,-0.025905832648277283,-0.02011740580201149,0.06256789714097977,0.024337029084563255,0.04670056328177452,0.0672776848077774,0.04616566002368927,-0.034474633634090424,0.045262422412633896,-0.0074220034293830395,-0.04412277415394783,-0.10922358930110931,-0.08683541417121887,-0.05060982704162598,0.03387477248907089,-0.009870337322354317,0.023827804252505302]},{"text":"Unknown Chapter VI All that year the animals worked like slaves.","book":"Animal Farm","chapter":47,"embedding":[-0.07238565385341644,0.0739302858710289,0.017013156786561012,0.0581417977809906,-0.03457450494170189,0.04203423857688904,-0.09122956544160843,-0.08250020444393158,-0.08672057837247849,0.04697063937783241,0.05074693262577057,0.053109876811504364,0.005524211097508669,-0.01118076965212822,-0.06859192252159119,-0.010330733843147755,-0.025720257312059402,0.01660887524485588,0.04765096679329872,-0.015299891121685505,0.002156652044504881,0.046805739402770996,0.019094010815024376,0.03968879207968712,-0.06506114453077316,0.034938227385282516,-0.0590367317199707,-0.026053249835968018,-0.011334795504808426,-0.015313978306949139,-0.10825153440237045,0.033453766256570816,-0.00012374015932437032,0.035486046224832535,0.03753529116511345,0.01781969703733921,0.10920152068138123,-0.011092185974121094,0.03464376926422119,-0.00880619790405035,0.01445692591369152,-0.005027922801673412,0.027406252920627594,0.0186739694327116,-0.058004263788461685,0.01396095845848322,-0.04960312694311142,-0.025392241775989532,0.024323610588908195,0.012640105560421944,0.007897804491221905,0.013147668913006783,-0.003699800930917263,0.02389613911509514,-0.038972608745098114,0.030511125922203064,-0.03168240562081337,-0.09318291395902634,0.07950177788734436,-0.03744438290596008,-0.009201540611684322,0.07033461332321167,0.008105658926069736,0.058323394507169724,0.03838044032454491,-0.04795889928936958,-0.008032077923417091,0.013060140423476696,-0.08577535301446915,-0.043349672108888626,-0.007840340957045555,-0.05301951617002487,-0.036377787590026855,-0.10560815036296844,-0.04855358600616455,0.04486524686217308,0.019363360479474068,-0.03321429714560509,0.0546099916100502,-0.1256740242242813,-0.10218368470668793,-0.06883171200752258,-0.01255309022963047,0.06251809746026993,0.018684623762965202,0.0429217554628849,0.05428022891283035,-0.09298788756132126,0.0381862111389637,-0.012418132275342941,0.012159429490566254,-0.10607652366161346,0.03265077993273735,-0.0008161591831594706,0.02199782244861126,-0.005044745746999979,0.03231349214911461,0.07409612834453583,0.09250497817993164,0.08041641116142273,-0.03723006322979927,-0.08533166348934174,0.05142422392964363,-0.051490556448698044,-0.007268358021974564,-0.03208451718091965,-0.03714505210518837,-0.004789549857378006,-0.02694547548890114,-0.009428341872990131,-0.07428786158561707,-0.045062918215990067,0.022811179980635643,0.13171613216400146,0.07473432272672653,0.01689871959388256,0.037514183670282364,-0.04091325029730797,-0.05210758373141289,0.09593672305345535,0.05711556598544121,0.016817811876535416,-0.04004932567477226,0.06112057715654373,-0.07819703966379166,-0.0012773001799359918,0.0706830620765686,-3.098746004799572e-33,0.034453652799129486,-0.10249518603086472,0.012468058615922928,-0.034014154225587845,0.09109947830438614,0.04381665959954262,-0.025731345638632774,0.027901004999876022,0.007269406691193581,0.06356724351644516,-0.06875576078891754,-0.05629262700676918,-0.03106887824833393,-0.016623154282569885,-0.057403795421123505,-0.010303765535354614,-0.045557595789432526,-0.07404232770204544,0.05916764959692955,-0.06670050323009491,0.06415268033742905,0.05846654623746872,0.010135369375348091,-0.03719542920589447,-0.0008815321489237249,-0.015896892175078392,-0.022752730175852776,-0.09734895825386047,0.01688820868730545,0.0640336200594902,0.053181495517492294,-0.00450043985620141,0.003492840100079775,-0.03785562515258789,-0.0624663308262825,0.05314211547374725,0.0035636520478874445,-0.09630993008613586,0.020583437755703926,0.017833171412348747,0.05758163705468178,-0.009543376043438911,0.0414218045771122,-0.04721137136220932,0.04794410243630409,0.048919886350631714,0.02011304721236229,-0.0021973319817334414,0.02512504905462265,0.08932226896286011,-0.02511032484471798,0.032258275896310806,0.01569732464849949,-0.09998183697462082,0.015482025220990181,0.04842730611562729,0.004404580686241388,0.10117601603269577,-0.040262509137392044,0.02192315086722374,0.03204228729009628,0.03368578851222992,0.05849685147404671,-0.02154434658586979,0.07253006100654602,-0.047588545829057693,0.007435974664986134,-0.0030841592233628035,-0.011303327977657318,-0.0062650106847286224,-0.050800494849681854,0.006867996416985989,0.005121780093759298,-0.11814120411872864,-0.020030537620186806,-0.007585734128952026,0.033538516610860825,-0.0419028177857399,-0.08065276592969894,-0.07580185681581497,-0.03160427138209343,0.031592171639204025,-0.035246219485998154,0.10115741938352585,0.02831781469285488,0.004887998104095459,0.11305607855319977,0.0024566047359257936,0.0785239115357399,-0.028238892555236816,0.12757359445095062,-0.006824682001024485,-0.02627367526292801,-0.10567191988229752,0.009821701794862747,1.3179245013721123e-33,-0.036505963653326035,-0.0012629233533516526,0.005929610691964626,0.0412592887878418,-0.008912266232073307,-0.05868041515350342,-0.09908520430326462,0.022086219862103462,-0.017502255737781525,0.033072929829359055,-0.02451230026781559,-0.01859050989151001,0.012502353638410568,0.052172623574733734,0.02008487656712532,0.009406786412000656,0.03760106861591339,-0.014795302413403988,-0.0199569184333086,0.018190747126936913,-0.05371423065662384,0.0007401477196253836,0.016869068145751953,0.02444937452673912,0.11121626198291779,0.04773611202836037,-0.0005691819242201746,0.04230198636651039,-0.04922637715935707,-0.0594930462539196,0.010338576510548592,0.012994986027479172,-0.02794506773352623,0.0025962130166590214,-0.03471836820244789,-0.038632892072200775,0.010088221170008183,0.03129088506102562,0.0534430667757988,-0.0625382736325264,0.05774984508752823,-0.027147453278303146,-0.10719086974859238,0.023112861439585686,-0.06362052261829376,0.07815852761268616,0.050965987145900726,0.026401743292808533,0.0019914142321795225,0.012108887545764446,0.002208358608186245,-0.008743270300328732,0.029003964737057686,-0.08565208315849304,0.0028706465382128954,-0.01638927310705185,0.00007024093065410852,-0.04411741718649864,0.015590834431350231,-0.00177469861228019,0.0010288571938872337,0.046368807554244995,0.004197182133793831,0.07626863569021225,-0.016905875876545906,-0.05456272140145302,-0.028775081038475037,-0.020504357293248177,0.07867385447025299,-0.03868870809674263,0.03520864620804787,0.019542498514056206,-0.05639804154634476,-0.011711199767887592,0.03213270753622055,0.0716961920261383,-0.04290140047669411,-0.052957382053136826,-0.024063589051365852,-0.07320842146873474,-0.06845572590827942,-0.08687887340784073,0.012714662589132786,0.07520487159490585,0.040827374905347824,0.06658060103654861,0.0006227403064258397,0.0778813287615776,0.06097423657774925,0.00590727711096406,-0.02312176302075386,-0.10418651252985,-0.004735685419291258,0.01268838532269001,0.023505492135882378,-1.8577477334247305e-8,0.03542167320847511,0.11914665997028351,0.04246027395129204,0.007989834062755108,0.02901586703956127,0.004476402886211872,-0.005961674265563488,-0.0027493773959577084,0.005381632596254349,0.1410985141992569,0.01711469702422619,-0.020698176696896553,0.11176624894142151,0.053040798753499985,0.04049472138285637,0.09659001976251602,0.07003026455640793,-0.06472167372703552,-0.05679222196340561,-0.00952921062707901,-0.03096524439752102,0.023308617994189262,-0.00482887914404273,-0.08660897612571716,-0.04042587801814079,0.03026062808930874,-0.11926965415477753,0.021314198151230812,-0.007370785344392061,0.006790978368371725,0.004517664201557636,0.020326705649495125,-0.09080461412668228,-0.09820390492677689,-0.028510192409157753,0.036295462399721146,-0.03194832056760788,-0.02749345637857914,0.04202711954712868,-0.14079704880714417,0.013286778703331947,0.10943183302879333,0.0486464649438858,0.014232281595468521,0.07545697689056396,0.0004345044435467571,0.014411593787372112,-0.013063306920230389,0.022275306284427643,-0.05772059038281441,-0.04442563280463219,0.08261218667030334,0.0385916531085968,0.05963825061917305,-0.007053004112094641,-0.09200283885002136,0.02563401684165001,-0.011619094759225845,-0.042689621448516846,-0.02957715466618538,0.07921648770570755,0.008543579839169979,-0.057991039007902145,-0.00515617523342371]},{"text":"The harvest was a little less successful than in the previous year, and two fields which should have been sown with roots in the early summer were not sown because the ploughing had not been completed early enough.","book":"Animal Farm","chapter":47,"embedding":[0.022244498133659363,0.07103437185287476,0.03307716175913811,0.030284428969025612,0.08265765756368637,-0.06037241965532303,-0.14672259986400604,0.0031137384939938784,-0.09274591505527496,0.04630892723798752,0.08363241702318192,-0.0015706412959843874,-0.009731867350637913,0.0015664262464269996,-0.05353640764951706,0.028525695204734802,-0.049745503813028336,-0.07138906419277191,-0.048133764415979385,0.012233907356858253,0.011218172498047352,0.022055506706237793,-0.004999893717467785,0.03938805311918259,0.05381258949637413,0.020175067707896233,-0.1706799417734146,0.03102821856737137,0.026360107585787773,-0.026398662477731705,0.024848109111189842,0.1529548317193985,0.00018539825396146625,-0.06408866494894028,0.011458822526037693,0.06869636476039886,0.07670991867780685,-0.01770973578095436,0.006602898705750704,0.00890561006963253,-0.010247521102428436,-0.03104805015027523,0.011113574728369713,-0.0034488749224692583,-0.07950785011053085,-0.02197074517607689,0.007635291200131178,-0.09425416588783264,-0.029357828199863434,-0.044423434883356094,0.07705259323120117,0.0059182667173445225,-0.04788675904273987,-0.08456181734800339,-0.027534034103155136,0.07217883318662643,-0.054561108350753784,0.038463044911623,-0.029615603387355804,0.010207696817815304,-0.009238816797733307,-0.006115939002484083,-0.05740942060947418,-0.05091060325503349,0.037430062890052795,-0.04781246557831764,-0.0543527752161026,-0.0908006876707077,-0.04686231538653374,0.008714962750673294,0.07305307686328888,-0.01838110387325287,-0.05670962110161781,-0.014063568785786629,-0.03280872851610184,0.03933018818497658,-0.007908888161182404,0.06797786056995392,-0.008481795899569988,-0.03941967710852623,-0.03556375205516815,0.010731208138167858,-0.058389149606227875,-0.022061193361878395,-0.08560847491025925,-0.006200783420354128,0.005724785849452019,-0.053207878023386,0.03673029690980911,0.0056275916285812855,0.07650396227836609,-0.042550552636384964,-0.05185066536068916,0.118438720703125,-0.00510313780978322,0.05384188890457153,0.04531828686594963,-0.009014327079057693,-0.03169017285108566,-0.03161134198307991,-0.015612899325788021,0.000648606161121279,-0.00391353527083993,-0.07273443043231964,0.00968476478010416,0.008807339705526829,-0.14135965704917908,-0.018256885930895805,-0.01771898940205574,0.027954667806625366,-0.007335607428103685,-0.005645034369081259,0.005363429896533489,0.06294874846935272,0.01674989052116871,0.08144842088222504,-0.021032176911830902,-0.035666823387145996,-0.10206742584705353,0.031156374141573906,0.03267716243863106,0.036957453936338425,-0.009800015017390251,0.0823131874203682,0.0020567355677485466,-0.028452225029468536,0.04881175607442856,1.720600652328345e-33,0.055026836693286896,-0.043931324034929276,-0.020069556310772896,-0.048363976180553436,0.0009666321566328406,-0.036002352833747864,0.002409988082945347,0.015291974879801273,0.03136945143342018,-0.06237387657165527,-0.047345273196697235,-0.04164084792137146,-0.002162459073588252,-0.1322837620973587,0.08085288852453232,-0.11904742568731308,-0.034306664019823074,-0.0687083974480629,0.026533445343375206,0.0672747865319252,-0.027466872707009315,-0.03521106764674187,-0.054963622242212296,-0.01769760064780712,0.05091351643204689,0.018348420038819313,0.06636801362037659,-0.028436856344342232,-0.05349310487508774,0.008565853349864483,0.12158806622028351,-0.046366896480321884,0.05188506096601486,-0.029422665014863014,0.010543117299675941,-0.015961863100528717,0.09374813735485077,-0.050504419952631,-0.02643066644668579,0.02461951971054077,-0.0036961401347070932,0.02485382743179798,0.06703300774097443,-0.018932444974780083,0.03467915207147598,-0.014897267334163189,0.031732797622680664,0.09113047271966934,-0.062160976231098175,0.042072802782058716,0.08869224041700363,0.0832834243774414,0.06574604660272598,0.04515750706195831,0.028323056176304817,0.06064571440219879,-0.02280792035162449,0.0007091353763826191,-0.06776043772697449,-0.032126396894454956,0.08241510391235352,0.027769777923822403,0.008819371461868286,-0.01172561850398779,-0.03713265061378479,-0.011195249855518341,0.028856884688138962,0.049023889005184174,-0.09126850962638855,0.06276339292526245,-0.06661701202392578,-0.03436136245727539,-0.11208396404981613,-0.09483575820922852,0.05163700878620148,0.006044122856110334,0.07599340379238129,0.054276127368211746,0.08920421451330185,-0.013148685917258263,0.05832526832818985,0.016805162653326988,-0.09299606084823608,-0.05583229288458824,-0.029148630797863007,-0.026540325954556465,0.04808029904961586,0.054698504507541656,0.013106513768434525,0.005268660373985767,0.061227262020111084,0.03342175483703613,0.027821090072393417,-0.09479895234107971,0.04646345600485802,-2.881009002525767e-33,0.003489573486149311,0.017009183764457703,0.02209480106830597,0.05396341159939766,0.004488705191761255,0.04859335348010063,0.0051271673291921616,-0.056422919034957886,-0.06563878059387207,0.00110805279109627,-0.03608500584959984,0.07064498215913773,0.0009228442213498056,-0.023136021569371223,0.0047704256139695644,0.00205630692653358,0.013840250670909882,0.04729960113763809,-0.008103069849312305,0.013639644719660282,0.003949098289012909,0.12693406641483307,-0.07184064388275146,-0.06771357357501984,-0.05668153613805771,0.017409654334187508,-0.054965790361166,-0.018287675455212593,-0.04646725952625275,-0.040265798568725586,0.09096181392669678,-0.06414509564638138,-0.019213853403925896,-0.03494515269994736,-0.02625085785984993,0.08196980506181717,-0.006794372107833624,0.010318689048290253,-0.01240676362067461,-0.030839940533041954,-0.01607453264296055,-0.02534298039972782,-0.0012768445303663611,0.06581807136535645,-0.025986196473240852,-0.020777707919478416,-0.022001951932907104,0.08660122752189636,0.10282536596059799,0.08680246770381927,0.005044108256697655,0.0639757364988327,-0.029147524386644363,0.014939420856535435,-0.05447949841618538,-0.08025556802749634,0.04295817017555237,-0.08038780838251114,-0.10863535106182098,-0.06085480749607086,-0.05655395984649658,0.012322130613029003,-0.04149317368865013,-0.03475578874349594,0.04815390333533287,0.003343850839883089,0.002502761548385024,0.015945129096508026,-0.016902118921279907,-0.02947634644806385,-0.03468102961778641,-0.061242979019880295,0.01327729132026434,0.024084579199552536,-0.0013960042269900441,0.10657408833503723,-0.06444017589092255,-0.027391605079174042,0.00996552687138319,-0.0163708608597517,-0.040903814136981964,0.05364251136779785,0.029041143134236336,0.020016076043248177,0.042253147810697556,0.0021464216988533735,-0.009930016472935677,-0.03890958055853844,0.03525448217988014,0.02815173752605915,0.0016002169577404857,-0.02894533984363079,0.050223395228385925,0.06805374473333359,0.11046040803194046,-3.323248165543191e-8,0.0012082064058631659,0.06908739358186722,-0.022543255239725113,0.04047858715057373,0.10215508192777634,-0.06749600172042847,0.06881324201822281,0.06877762824296951,0.0540546290576458,0.0039809346199035645,-0.13254088163375854,0.03283049911260605,-0.034091826528310776,0.06631503999233246,0.13179416954517365,-0.08528117090463638,0.05346168577671051,-0.030838025733828545,-0.039082396775484085,-0.07001561671495438,-0.051913388073444366,-0.031208522617816925,-0.04066656902432442,-0.02756563201546669,-0.050723847001791,0.0009264423279091716,-0.014540297910571098,0.015504762530326843,0.022501833736896515,0.022640256211161613,0.08831187337636948,0.018668221309781075,0.03699611499905586,-0.011784480884671211,-0.06581699103116989,0.01367326732724905,0.011226087808609009,0.09802796691656113,-0.014321412891149521,-0.060889266431331635,-0.060844216495752335,0.007846805267035961,0.04774770140647888,0.05994562432169914,-0.019056418910622597,-0.0009246613481082022,-0.031062444671988487,0.011679192073643208,0.02682523801922798,-0.045419830828905106,0.0306161567568779,-0.01622922532260418,0.04019983857870102,-0.008524675853550434,0.014323674142360687,-0.021803250536322594,0.017720423638820648,-0.0006821091519668698,0.00955523457378149,0.027216868475079536,-0.040508076548576355,-0.028876056894659996,-0.0034840996377170086,0.03969995677471161]},{"text":"There seemed no way of doing this except with picks and crowbars, which no animal could use, because no animal could stand on his hind legs.","book":"Animal Farm","chapter":47,"embedding":[-0.00800267979502678,0.05846821516752243,-0.004641087260097265,0.04352661222219467,-0.06239086017012596,-0.02200513705611229,0.005273072514683008,-0.047461166977882385,-0.002290019067004323,0.08187136054039001,0.036354660987854004,-0.026555554941296577,0.0040702964179217815,0.051899366080760956,-0.015014504082500935,0.008459656499326229,-0.02775881253182888,0.05697657912969589,0.043319039046764374,0.08562798798084259,-0.017389725893735886,0.040106408298015594,0.02610676735639572,0.003309231484308839,-0.11018849909305573,-0.027579456567764282,-0.08733274787664413,-0.01349822897464037,0.039398226886987686,-0.0865570530295372,0.03727557137608528,-0.025345060974359512,-0.021951738744974136,-0.003180619329214096,-0.06392139941453934,-0.0598725862801075,0.04731398820877075,0.02729523554444313,0.060337845236063004,0.02697478048503399,0.01675589196383953,-0.020950965583324432,-0.012869485653936863,-0.0078048380091786385,-0.05721904709935188,0.03664450719952583,-0.043206606060266495,-0.023980503901839256,0.05659893900156021,-0.02491021156311035,0.015239562839269638,-0.07905378937721252,0.001132602570578456,0.026336312294006348,-0.025082683190703392,-0.05392308533191681,-0.030881116166710854,-0.09874264150857925,-0.0029874914325773716,-0.04805474728345871,0.0900014340877533,0.07030069082975388,0.008990944363176823,-0.004580807406455278,-0.008342036977410316,-0.0036205961368978024,-0.06085366755723953,0.009432420134544373,0.02031519263982773,0.0811181291937828,0.030351247638463974,-0.05670563131570816,-0.016537493094801903,-0.045185089111328125,-0.01309976726770401,0.0044899978674948215,0.014926973730325699,-0.005917009431868792,0.12979014217853546,-0.003564275335520506,-0.13519297540187836,0.02290327660739422,0.005120367277413607,0.07275696843862534,0.03957408666610718,0.042234595865011215,-0.008453941904008389,0.02179615944623947,-0.022336740046739578,-0.03895764797925949,-0.06825105845928192,0.008622906170785427,0.02982442080974579,-0.03163450211286545,0.013729104772210121,-0.009043167345225811,-0.026598628610372543,0.0027228391263633966,-0.07808993011713028,0.010803286917507648,0.03249487653374672,-0.005006025079637766,0.06292472034692764,0.02220803312957287,0.03586319088935852,0.005474905949085951,-0.01551161240786314,-0.07436275482177734,0.014869899488985538,0.007879539392888546,-0.10700399428606033,-0.011154884472489357,0.09655307233333588,0.1295577585697174,-0.09653737396001816,0.03981199860572815,-0.13324736058712006,-0.06744121015071869,-0.0810653418302536,-0.023282717913389206,0.07663844525814056,0.018510596826672554,0.03797435387969017,0.0015064815524965525,0.0392877459526062,0.0453220009803772,0.012219792231917381,2.2340955230178913e-33,0.07013384997844696,-0.09161850064992905,0.018306994810700417,-0.11669690161943436,0.08129481226205826,-0.06158206984400749,-0.06271261721849442,0.012165404856204987,0.040407873690128326,0.006827769801020622,-0.055118728429079056,-0.02923731319606304,0.060838185250759125,-0.0399143286049366,0.10682760179042816,-0.040524400770664215,0.04304153472185135,-0.04046574607491493,0.08073373883962631,-0.06414105743169785,-0.01428917609155178,-0.012126854620873928,0.02113748900592327,-0.056362878531217575,0.04767623916268349,0.07498998939990997,-0.040649570524692535,-0.05622300133109093,0.008342177607119083,0.042686935514211655,-0.04911389946937561,-0.05268218740820885,-0.026515556499361992,0.029530443251132965,-0.053506892174482346,-0.018539318814873695,-0.04199552536010742,-0.049977175891399384,-0.021767567843198776,0.0517210029065609,0.09144267439842224,-0.08794614672660828,0.03516743332147598,0.025798942893743515,-0.05586569756269455,0.05700225755572319,-0.008917328901588917,0.0155560914427042,-0.15030251443386078,0.0359683521091938,0.06599731743335724,0.08912064135074615,-0.03305526450276375,-0.07221191376447678,0.03446413204073906,0.01736222580075264,0.016013840213418007,0.055184025317430496,-0.041198913007974625,0.04591737687587738,-0.06006013602018356,0.029014185070991516,0.05532154068350792,-0.012695826590061188,-0.012375866062939167,-0.10691256821155548,-0.06774429231882095,-0.014668998308479786,-0.03149794042110443,-0.07305324822664261,-0.029654711484909058,-0.01802871562540531,-0.010687215253710747,-0.0739695355296135,-0.060362398624420166,-0.0433899387717247,0.03228181228041649,-0.00010207331797573715,0.014758285135030746,-0.07670960575342178,0.06390140950679779,0.02790740132331848,-0.04626566171646118,-0.014725500717759132,0.06862495839595795,-0.01339481957256794,0.06364987790584564,-0.04001222178339958,0.01330169104039669,-0.08293381333351135,-0.05828379467129707,-0.03609393909573555,-0.04862971231341362,-0.1128280833363533,0.019940586760640144,-3.0575511726169893e-33,-0.010609101504087448,-0.017978809773921967,0.07114012539386749,0.08237125724554062,-0.04901630058884621,0.02241966314613819,0.04353636875748634,-0.04049816355109215,-0.01304947305470705,0.003402880858629942,-0.06668055802583694,0.050644125789403915,0.026179159060120583,0.018158812075853348,0.11982135474681854,0.030504528433084488,-0.07765524834394455,0.022591227665543556,0.0019834793638437986,0.009667567908763885,0.05086524039506912,-0.0313052162528038,-0.05179189145565033,0.0327119305729866,0.01517762616276741,0.07330289483070374,-0.02652541920542717,-0.02752102166414261,0.005118245724588633,-0.04132591933012009,0.026191256940364838,-0.08385536074638367,0.020304923877120018,-0.15741588175296783,0.023923251777887344,-0.03384098783135414,-0.04013223946094513,0.051227912306785583,-0.05804584175348282,-0.06101394072175026,0.07495661824941635,-0.017748206853866577,0.000626398716121912,0.017263412475585938,0.021002285182476044,0.038587894290685654,-0.01787398010492325,0.0066611128859221935,-0.05864317715167999,-0.027424406260252,0.011891788803040981,-0.003334278240799904,0.005352194886654615,-0.04331452026963234,0.03536873683333397,-0.0005194086115807295,0.05955515056848526,-0.02818848192691803,0.1070345863699913,-0.03358810395002365,-0.02071710117161274,-0.010641365312039852,-0.008140717633068562,-0.024740096181631088,0.04446345567703247,0.031097399070858955,-0.02475731074810028,0.08026372641324997,-0.010067367926239967,-0.05706942081451416,0.07557126134634018,0.05690464377403259,0.09805766493082047,-0.057570088654756546,0.06350037455558777,0.12979455292224884,0.024250628426671028,-0.046274177730083466,0.03423907235264778,-0.07983452081680298,-0.07060843706130981,-0.03854638338088989,0.05376715958118439,-0.005173639394342899,0.05555243045091629,0.033891238272190094,-0.06686036288738251,0.10876065492630005,-0.0043768249452114105,-0.017003370448946953,0.01836293376982212,0.0055961511097848415,0.13549020886421204,0.07942090183496475,0.07433497160673141,-2.68310547113515e-8,-0.04831134155392647,0.02804281935095787,0.055777352303266525,0.05146433413028717,-0.0009058452560566366,0.08818083256483078,0.05311715602874756,-0.1011946052312851,-0.011551891453564167,0.016582410782575607,-0.061310652643442154,-0.00962290819734335,0.004542381502687931,0.11656445264816284,0.006510457023978233,0.0770304724574089,0.010476944968104362,-0.023145413026213646,-0.04001212865114212,-0.002429300919175148,-0.07794066518545151,0.019781406968832016,0.016884032636880875,0.023529179394245148,-0.07028046995401382,-0.05560542643070221,-0.07351021468639374,-0.06578309088945389,0.009936380200088024,0.05212289094924927,-0.019006824120879173,0.04420486092567444,0.004609548486769199,0.011332128196954727,0.050575464963912964,0.01747823692858219,-0.05933152139186859,0.008294899016618729,0.06490162014961243,-0.01669674925506115,-0.024088820442557335,0.048983633518218994,-0.026777416467666626,0.029127636924386024,-0.027562836185097694,0.059348270297050476,0.0010119639337062836,-0.015273425728082657,-0.04809751361608505,-0.008305534720420837,-0.02676277607679367,-0.019526388496160507,0.06128127872943878,0.008798285387456417,0.02420821040868759,0.011469212360680103,0.01720116101205349,-0.04887876287102699,-0.01486576534807682,0.011656497605144978,-0.009349655359983444,-0.04344335198402405,-0.033695369958877563,0.06746045500040054]},{"text":"The horses carried it off in cart-loads, the sheep dragged single blocks, even Muriel and Benjamin yoked themselves into an old governess-cart and did their share.","book":"Animal Farm","chapter":48,"embedding":[-0.026626581326127052,0.06265956163406372,0.018481090664863586,0.08365209400653839,0.06552362442016602,-0.007856992073357105,0.019308771938085556,0.01715841516852379,-0.05443151667714119,0.013723062351346016,0.10181810706853867,0.02649354189634323,-0.025020580738782883,-0.006044061854481697,-0.0681660994887352,0.05888143181800842,-0.055402226746082306,0.025253959000110626,-0.10839216411113739,-0.012408179230988026,-0.026140447705984116,-0.05437980964779854,-0.052520349621772766,0.0409584604203701,0.0816873237490654,-0.007265008520334959,-0.12114022672176361,-0.02065587230026722,0.053516313433647156,-0.011482799425721169,-0.02447405271232128,-0.08542609959840775,0.010839180089533329,0.0156613290309906,-0.05082504078745842,0.045174434781074524,0.12656348943710327,-0.03958415240049362,0.08843977749347687,-0.03427424281835556,0.07401607185602188,-0.017850583419203758,-0.018511833623051643,-0.006061695050448179,0.007764061447232962,0.04490164667367935,0.015378357842564583,0.013444885611534119,0.07349617034196854,0.04124026373028755,0.026386618614196777,-0.0029731574468314648,0.02252713032066822,0.042309146374464035,-0.013598882593214512,-0.02487996220588684,0.019755901768803596,-0.03737888112664223,0.05925998091697693,0.0018026621546596289,-0.012422318570315838,0.03138686344027519,0.08169689774513245,0.03382047638297081,0.010475379414856434,-0.04236985743045807,-0.056021206080913544,-0.0019662464037537575,-0.009343327023088932,-0.0409836508333683,0.03053615614771843,-0.04338814318180084,0.001674335217103362,-0.04657544195652008,-0.0029919114895164967,-0.029435504227876663,-0.028932252898812294,-0.04580165818333626,-0.020254937931895256,-0.02467942424118519,-0.0915699228644371,-0.04530663415789604,0.023439986631274223,0.025381235405802727,0.0028532114811241627,-0.016748927533626556,0.002327641937881708,0.00242788577452302,0.002816385356709361,-0.05260537937283516,-0.09365289658308029,-0.08038023859262466,-0.0366237573325634,0.1278894543647766,0.07280775159597397,-0.0853392481803894,0.014641931280493736,0.09815306216478348,0.0030223133508116007,0.03660865128040314,0.010666966438293457,0.022435471415519714,-0.030600085854530334,-0.04549422115087509,-0.03991936147212982,0.046617016196250916,-0.04075951501727104,-0.03560908883810043,-0.018694711849093437,-0.03078215941786766,-0.06065061315894127,-0.02475661411881447,0.06155424565076828,0.07700249552726746,-0.005083518102765083,-0.03488719090819359,-0.1206137165427208,0.030172573402523994,-0.07880380004644394,0.013518985360860825,0.08044735342264175,0.05436994880437851,0.06206445023417473,-0.005068580154329538,-0.05531904846429825,0.034254491329193115,0.0904170423746109,-1.6818795010702743e-33,-0.01568746753036976,-0.08270028978586197,-0.0652163177728653,0.03601953387260437,0.10546999424695969,-0.008578320033848286,-0.005012706387788057,0.03915756568312645,0.01803472265601158,0.03081773966550827,0.0641230121254921,-0.09305299818515778,0.008882054127752781,-0.03420146927237511,-0.08339985460042953,-0.048123497515916824,0.015030096285045147,-0.11060735583305359,0.09620571881532669,-0.02907031588256359,0.00611098762601614,0.13846226036548615,0.0016208381857722998,-0.029212260618805885,0.013999482616782188,-0.012902182526886463,-0.017486881464719772,0.023936506360769272,0.048938117921352386,0.06474345922470093,0.055613573640584946,-0.06282048672437668,-0.05030394345521927,0.018937278538942337,-0.01709282025694847,0.008795534260571003,0.00945111084729433,-0.06578382849693298,-0.05782580375671387,0.028946522623300552,-0.014200243167579174,-0.03390974923968315,0.04310555383563042,-0.03863362595438957,-0.1356244832277298,0.010455715470016003,-0.010300762951374054,0.04724873974919319,-0.032552845776081085,-0.01794125884771347,0.0139831667765975,0.05044473335146904,0.00116675382014364,0.0037998103071004152,0.005569930654019117,-0.08290444314479828,-0.02665018104016781,0.00961550883948803,-0.035993847995996475,-0.010941767133772373,0.11174242943525314,0.07298856228590012,-0.03296326845884323,0.026690352708101273,0.03216901794075966,-0.023990096524357796,-0.03879207745194435,0.012620842084288597,-0.061972443014383316,0.01581590063869953,-0.05628208443522453,0.04184131324291229,-0.057608556002378464,-0.06091021001338959,0.007071309257298708,-0.001808184664696455,0.006653528194874525,-0.06408622115850449,-0.051254596561193466,-0.08112874627113342,-0.02723207324743271,-0.007913243025541306,-0.020861778408288956,0.02208784595131874,-0.010018600150942802,-0.01710699312388897,-0.04456504061818123,-0.05658016726374626,-0.009001192636787891,-0.02764153853058815,0.02718193829059601,0.02529902383685112,-0.039473757147789,-0.08945722132921219,0.05660931393504143,-2.6229133187824615e-35,-0.004003062844276428,0.1340935081243515,-0.028909508138895035,-0.0008748635882511735,-0.026046454906463623,-0.03776317834854126,0.04110313206911087,-0.01780668832361698,0.0582282654941082,0.01319345086812973,-0.1298055350780487,-0.0769268125295639,0.007829105481505394,0.05681596323847771,0.06327767670154572,-0.010609149932861328,-0.00128801423124969,0.011382092721760273,0.04919085279107094,-0.09085636585950851,0.00337198656052351,0.01875268667936325,-0.04168611019849777,0.04525381699204445,0.0003731513279490173,0.08875873684883118,-0.06269428133964539,0.00878277886658907,0.02441232092678547,-0.03375229984521866,0.04105568677186966,-0.09384601563215256,0.026406247168779373,-0.07247807830572128,-0.0850554034113884,0.05184746906161308,-0.03937165066599846,0.0489722341299057,0.05886077880859375,-0.06843571364879608,0.03926308453083038,-0.04412749782204628,-0.05650417506694794,0.033058229833841324,-0.059042081236839294,0.036539360880851746,-0.04880974069237709,0.007184422574937344,0.06472748517990112,0.04384053125977516,0.06819446384906769,0.09102291613817215,-0.0117789963260293,-0.0915026068687439,0.017404280602931976,0.017499582841992378,0.022467467933893204,0.0031334960367530584,0.03692318871617317,-0.08381099253892899,-0.03169218450784683,0.03460021689534187,-0.019207317382097244,-0.0352054126560688,-0.022310489788651466,-0.04818474128842354,-0.009866745211184025,-0.0516902394592762,0.034188590943813324,-0.039038218557834625,0.023535678163170815,0.0897994264960289,0.027555732056498528,-0.04533056914806366,0.04158525541424751,0.11225591599941254,0.01759546808898449,0.00346614932641387,0.08275653421878815,-0.011987564153969288,0.01324489526450634,-0.09102954715490341,0.08104805648326874,0.04811794310808182,0.06594452261924744,0.023004600778222084,-0.0069089652970433235,0.07277704030275345,0.04364363104104996,-0.05261336266994476,0.06825286149978638,-0.03309902921319008,0.11984331905841827,0.03678867593407631,0.054914690554142,-2.518113006999556e-8,-0.0008899305830709636,-0.0034528900869190693,-0.054958805441856384,-0.012514696456491947,-0.02050367370247841,0.003914275206625462,0.0002182189782615751,0.11771200597286224,-0.02990649826824665,0.03551584109663963,0.01147120539098978,0.13392862677574158,-0.05741361528635025,0.027050109580159187,-0.024487270042300224,0.0022413323167711496,-0.024073520675301552,-0.014150979928672314,-0.008804436773061752,-0.05829276889562607,-0.029201902449131012,-0.07753150910139084,-0.028561560437083244,0.025645773857831955,-0.055013496428728104,-0.06274343281984329,-0.042505353689193726,-0.0008534871740266681,0.036279577761888504,0.010861550457775593,-0.002224867232143879,-0.005903962533921003,-0.019098816439509392,-0.03356106951832771,0.043247517198324203,0.0527002178132534,-0.13309399783611298,0.016411496326327324,0.032563433051109314,-0.027959680184721947,0.05217546969652176,0.09810972213745117,0.031348589807748795,0.0025746296159923077,0.07111717015504837,-0.01691863313317299,-0.08573070913553238,0.037364378571510315,-0.06771975755691528,-0.06596621125936508,0.009054257534444332,-0.0036124391481280327,0.040599972009658813,0.13986320793628693,0.04526997730135918,-0.06638859957456589,-0.011662526056170464,-0.057047341018915176,0.0319971889257431,0.0509767085313797,-0.030766114592552185,0.04008054360747337,0.019711965695023537,-0.005422454327344894]},{"text":"When the boulder began to slip and the animals cried out in despair at finding themselves dragged down the hill, it was always Boxer who strained himself against the rope and brought the boulder to a stop.","book":"Animal Farm","chapter":48,"embedding":[-0.0192155372351408,0.13779212534427643,0.020716402679681778,0.14367103576660156,0.10269896686077118,0.06541212648153305,-0.01187614630907774,0.07173457741737366,0.01367935724556446,-0.005489086266607046,0.03233231231570244,-0.017549477517604828,-0.017076605930924416,0.03872576728463173,-0.05668243393301964,0.08754732459783554,-0.08515191823244095,0.05305923894047737,0.01649205945432186,-0.037845294922590256,-0.006471118424087763,0.08000177145004272,0.0010208869352936745,0.11681872606277466,-0.10291033983230591,0.020240958780050278,-0.09224735200405121,-0.004393478389829397,0.03964909538626671,-0.08837348967790604,-0.011951385997235775,-0.06076335906982422,0.05848788097500801,0.05898241698741913,-0.04215894639492035,0.059630703181028366,0.008018314838409424,0.020226724445819855,0.022791920229792595,0.031464479863643646,-0.03478718549013138,0.030728112906217575,0.013896617107093334,-0.05593537166714668,0.03804636374115944,0.03668593242764473,-0.004560146480798721,-0.0010553826577961445,0.07435739040374756,0.03899706155061722,0.045823533087968826,-0.0022100128699094057,-0.010947894304990768,-0.032606955617666245,0.0064681218937039375,0.008090903982520103,0.060542136430740356,-0.010078201070427895,0.02455592341721058,0.00344084482640028,0.07175420224666595,0.04274257645010948,-0.016522077843546867,0.07533497363328934,0.02027818001806736,-0.005015016533434391,0.03341740369796753,-0.03125070035457611,-0.013178643770515919,0.07111523300409317,0.021749943494796753,-0.009226975031197071,0.013872221112251282,-0.06914815306663513,-0.011506425216794014,0.0099082225933671,0.005356544628739357,0.02356663905084133,0.016916466876864433,0.02728992886841297,-0.032326191663742065,-0.019487177953124046,-0.019828908145427704,-0.030063632875680923,-0.011484582908451557,-0.03214362636208534,0.05794540047645569,-0.013841534033417702,0.00415283627808094,-0.06985104084014893,-0.022551938891410828,-0.07571592926979065,-0.07325556129217148,0.1004553809762001,0.06762360036373138,-0.013122094795107841,-0.042298465967178345,0.0020722560584545135,-0.03043537773191929,0.015980852767825127,0.07753720879554749,-0.008718154393136501,-0.04426804929971695,-0.019351813942193985,0.10069430619478226,-0.031832024455070496,-0.04419213905930519,-0.015437152236700058,0.013409989885985851,0.10615535080432892,-0.03056112863123417,-0.027148272842168808,0.1062101200222969,0.056733179837465286,0.044762853533029556,0.06603383272886276,-0.10040677338838577,-0.007958570495247841,-0.10861498862504959,0.07080215960741043,0.04452461749315262,0.039130862802267075,-0.04876227304339409,-0.006859822664409876,-0.03713609650731087,0.0016422535991296172,0.020429858937859535,-2.570339437256868e-33,0.05561627447605133,-0.11103595793247223,-0.03419860824942589,-0.03083428367972374,0.029772527515888214,-0.04062434285879135,-0.040821708738803864,-0.029915008693933487,0.014238076284527779,0.05926863104104996,-0.08361488580703735,-0.030514627695083618,0.011006208136677742,0.014941615983843803,-0.05858270451426506,-0.03769689425826073,0.0019453942077234387,-0.08831225335597992,0.0385865643620491,0.026761189103126526,-0.017978083342313766,0.028638998046517372,-0.020229464396834373,-0.012681537307798862,-0.030493371188640594,0.05514303967356682,0.008708744309842587,-0.028969205915927887,0.029811188578605652,0.011199021711945534,-0.03264908865094185,-0.0814078152179718,-0.013764084316790104,0.052426714450120926,0.014488372020423412,-0.017524689435958862,0.05390077084302902,-0.020256245508790016,-0.022578470408916473,0.04672396928071976,0.01023006346076727,-0.0397762767970562,-0.021425094455480576,-0.03313848003745079,-0.024881111457943916,0.010964110493659973,-0.010734375566244125,-0.009383827447891235,-0.08717268705368042,0.015188916586339474,0.015816526487469673,0.06450707465410233,0.07427621632814407,-0.0038287232164293528,0.026242084801197052,-0.054947227239608765,0.030749933794140816,-0.001924511045217514,-0.10510369390249252,0.015293732285499573,0.018747948110103607,-0.010756177827715874,0.0052236891351640224,-0.03902658075094223,-0.0362936332821846,-0.09694979339838028,-0.051527105271816254,0.002867806702852249,-0.11680755764245987,-0.03920401632785797,-0.08602114766836166,0.011701182462275028,-0.03450698032975197,-0.09967558830976486,-0.05912243574857712,-0.016776127740740776,-0.038576677441596985,-0.03570551797747612,0.022100934758782387,-0.027843263000249863,-0.046543676406145096,-0.03162117302417755,-0.032303642481565475,0.016892507672309875,0.02215171605348587,-0.013982848264276981,0.051241084933280945,-0.14126606285572052,0.027945958077907562,0.04521392285823822,-0.04421886056661606,0.03842810541391373,0.046898555010557175,0.0005957139073871076,0.11747510731220245,3.9060823207710345e-34,0.012935942970216274,0.03093632124364376,0.00925670936703682,0.045049190521240234,0.03314155712723732,-0.00008682067709742114,-0.032393716275691986,0.002040029503405094,0.010658861137926579,-0.03371842950582504,-0.1025385707616806,-0.07441919296979904,-0.02046067826449871,0.0505310520529747,0.11501156538724899,-0.061293069273233414,-0.00931622739881277,0.021751902997493744,0.053153522312641144,0.025635281577706337,-0.03781008720397949,0.010828514583408833,-0.08072225749492645,-0.08225317299365997,0.07205474376678467,0.07093676179647446,-0.0017271707765758038,-0.013627626933157444,0.037202611565589905,-0.04499572888016701,-0.024522950872778893,-0.030411217361688614,-0.006438524462282658,0.03575623407959938,-0.005436166189610958,0.11570942401885986,-0.04442339017987251,0.032850299030542374,-0.023112449795007706,-0.04863181710243225,0.0012097653234377503,0.0017422882374376059,-0.032936979085206985,0.018197834491729736,0.03352467343211174,0.04015548527240753,-0.0028844112530350685,-0.01538823451846838,-0.027372751384973526,0.009653081186115742,-0.009509379975497723,0.000052938343287678435,0.06400376558303833,-0.04647603631019592,-0.0006799452821724117,-0.012629485689103603,-0.07316804677248001,0.005709783639758825,-0.03460519015789032,-0.060644034296274185,-0.10837910324335098,0.003677226137369871,-0.07407815754413605,0.03661739453673363,-0.05034232512116432,-0.027908524498343468,-0.03268858417868614,-0.03181186318397522,-0.08225098997354507,0.038459260016679764,-0.014085181057453156,0.08067493140697479,-0.020499669015407562,-0.014223593287169933,0.08859354257583618,0.08625732362270355,-0.07910100370645523,0.03257715702056885,0.025469806045293808,-0.06591537594795227,-0.024611804634332657,-0.005319506861269474,0.05589332804083824,0.048362839967012405,-0.02424071915447712,-0.005044613499194384,-0.008435842581093311,0.049113016575574875,-0.010027645155787468,-0.01009913720190525,0.06209326162934303,0.029475271701812744,0.05033358931541443,-0.0005456616636365652,0.04728046804666519,-2.842940460823229e-8,-0.07377030700445175,0.03330940008163452,-0.12167918682098389,-0.0031639353837817907,0.07390829175710678,0.08213714510202408,0.12297853082418442,0.024450676515698433,-0.01492557767778635,0.07354943454265594,-0.07643236219882965,0.12493109703063965,-0.0028083869256079197,0.12341334670782089,-0.07129588723182678,0.009439680725336075,-0.018111800774931908,-0.04588550329208374,0.018320349976420403,0.019761214032769203,0.0011124013690277934,-0.04871711507439613,0.004874709062278271,-0.04743127152323723,-0.07511766999959946,-0.06737206131219864,-0.02870548516511917,-0.036666277796030045,-0.037645962089300156,0.041504230350255966,0.055937979370355606,0.02536829188466072,-0.12317611277103424,-0.034536972641944885,0.04877354949712753,0.1142212525010109,0.06050928309559822,-0.015552460215985775,0.09967277944087982,-0.02432650327682495,-0.016844579949975014,0.1550551801919937,0.0013675985392183065,-0.032098136842250824,0.01922665908932686,-0.044996436685323715,0.0011570408241823316,0.000512333819642663,-0.05031140521168709,-0.025453010573983192,-0.026977134868502617,0.0011395871406421065,-0.017148423939943314,0.04941430687904358,0.09425044804811478,-0.06035611778497696,0.004210056271404028,-0.06694944947957993,-0.09719268232584,0.03921688720583916,-0.05662127211689949,-0.007752781733870506,0.04023626819252968,-0.028572874143719673]},{"text":"And in his spare moments, of which there were not many nowadays, he would go alone to the quarry, collect a load of broken stone, and drag it down to the site of the windmill unassisted.","book":"Animal Farm","chapter":48,"embedding":[0.005185950547456741,0.15111641585826874,0.027922876179218292,0.09056203067302704,0.04827847331762314,-0.0064372774213552475,0.0365072563290596,-0.008347042836248875,-0.08884114027023315,0.0023578458931297064,0.08917906880378723,-0.05239083990454674,0.00993905309587717,-0.05705076828598976,0.044731076806783676,0.015189051628112793,-0.08162815123796463,0.04165036603808403,-0.04801202192902565,0.01571364514529705,-0.040443386882543564,-0.02686728909611702,0.032361891120672226,-0.020060906186699867,0.04872310906648636,0.08836819231510162,-0.13412080705165863,0.04277391359210014,0.05280805379152298,-0.018656596541404724,0.018425200134515762,0.03034112975001335,-0.07424779236316681,-0.03262055665254593,-0.01056086178869009,0.0662747249007225,-0.00035567692248150706,0.057654187083244324,-0.0034104660153388977,-0.029591666534543037,0.011049400083720684,0.061687882989645004,-0.002061916049569845,0.005971886683255434,-0.07681137323379517,-0.014845019206404686,0.03275103121995926,-0.07920607179403305,0.06289901584386826,-0.016477221623063087,0.025638485327363014,0.009201095439493656,-0.044777270406484604,-0.07923907041549683,0.02076982520520687,-0.03917527571320534,0.05883494019508362,-0.06591349095106125,0.009368708357214928,0.027011534199118614,0.04064439237117767,-0.0008127710316330194,-0.03035125881433487,-0.0017014241311699152,0.08336272090673447,-0.07102970778942108,-0.047742512077093124,-0.045771073549985886,0.0063434503972530365,0.0414402075111866,0.014432207681238651,-0.006804021541029215,-0.04570590332150459,-0.0683828741312027,-0.01570814475417137,-0.08390550315380096,0.0056058671325445175,-0.01507261861115694,-0.08622153103351593,0.005413626320660114,-0.001455895253457129,0.005049241241067648,0.022584710270166397,0.03441942110657692,0.03300239145755768,0.03622181713581085,-0.004771384410560131,-0.005268660839647055,0.06040741503238678,0.012969687581062317,-0.035355959087610245,-0.012979986146092415,-0.042780209332704544,0.07847307622432709,0.10688351094722748,0.050106678158044815,-0.03662795573472977,0.10984919965267181,-0.15027481317520142,0.029735779389739037,0.06341027468442917,0.049689412117004395,0.0297397430986166,0.03716930374503136,-0.060981933027505875,0.05076376721262932,-0.07567988336086273,0.007977200672030449,-0.012217274866998196,-0.03875242918729782,-0.0009148146491497755,-0.03646606206893921,0.0431784987449646,0.011609193868935108,-0.023755302652716637,0.011014402844011784,-0.06346167623996735,-0.05647020787000656,-0.10748761892318726,0.0894596055150032,0.0667399987578392,0.05966528505086899,-0.00618575606495142,0.08052707463502884,-0.05076080560684204,-0.019278304651379585,0.017443159595131874,-3.9390426313551145e-33,0.013907186686992645,-0.0064468057826161385,-0.028205441311001778,-0.008029497228562832,0.14506025612354279,0.014361411333084106,-0.06590653955936432,0.016620861366391182,0.08282847702503204,-0.0042089661583304405,0.01731586642563343,-0.056650470942258835,-0.0585598386824131,0.012880495749413967,-0.0497608482837677,0.009088375605642796,0.06446979194879532,-0.045712411403656006,0.07677097618579865,-0.07407212257385254,0.00927111878991127,-0.039081647992134094,-0.07050428539514542,-0.00781518965959549,-0.001414267928339541,0.04071029648184776,0.016771679744124413,0.013011718168854713,0.011638072319328785,0.027792297303676605,-0.02420218661427498,0.016580628231167793,-0.02024422213435173,0.017995601519942284,-0.007165209855884314,-0.013674691319465637,-0.027279861271381378,-0.02838939055800438,-0.0862373486161232,-0.000024448137992294505,-0.011964725330471992,-0.009289311245083809,-0.016359832137823105,0.01246547233313322,-0.10461171716451645,-0.06669958680868149,-0.01763792522251606,0.08993479609489441,0.005793828517198563,0.04390920326113701,0.04191049188375473,0.016695089638233185,-0.014338266104459763,-0.008311661891639233,0.003334002336487174,0.0025422510225325823,-0.014750215224921703,0.014018302783370018,-0.027588680386543274,0.07246778905391693,0.059102050960063934,-0.040564633905887604,-0.004353232216089964,0.12366944551467896,0.03516298159956932,-0.06438985466957092,-0.03735606372356415,-0.0017521915724501014,-0.11628655344247818,0.03407677263021469,-0.0732201635837555,-0.00889377761632204,-0.06842181086540222,-0.040156640112400055,-0.08591737598180771,-0.03507990017533302,-0.04762653633952141,-0.04077109321951866,-0.07204147428274155,0.03558160364627838,0.02708120457828045,0.01401277631521225,-0.057602595537900925,-0.04094380885362625,0.0054391613230109215,0.07508262246847153,0.07689544558525085,-0.13183356821537018,-0.002440792042762041,-0.05033484473824501,-0.005802932195365429,-0.0006215423927642405,0.01316751167178154,-0.11818276345729828,-0.03498980030417442,4.209680369164776e-34,-0.07494863867759705,0.044405218213796616,0.016563162207603455,0.025908533483743668,0.016523532569408417,0.03589612990617752,-0.017453430220484734,-0.04589230567216873,-0.0035138605162501335,0.016645807772874832,-0.14773155748844147,0.019721919670701027,0.010264304466545582,0.014809420332312584,0.031153922900557518,-0.005596370901912451,0.019838998094201088,-0.013616747222840786,-0.03882008418440819,0.11321034282445908,0.07500260323286057,-0.018072525039315224,0.004239000845700502,-0.03653097525238991,-0.035863276571035385,0.01739456132054329,-0.05254333093762398,-0.09418938308954239,-0.053338829427957535,0.03545137122273445,-0.01619437336921692,-0.021873103454709053,0.021552670747041702,0.03500941023230553,-0.023766987025737762,0.05525132268667221,-0.02167794294655323,0.047406431287527084,0.00891097355633974,0.04168998822569847,0.0015041764127090573,-0.02751319110393524,0.006780893076211214,0.031202930957078934,-0.011432312428951263,0.023904426023364067,-0.057855308055877686,0.0632723793387413,-0.009484518319368362,0.04919150844216347,-0.011896632611751556,0.01287855114787817,0.009874830022454262,0.01689000241458416,0.017230713739991188,0.0030441603157669306,0.032538481056690216,-0.04198324307799339,-0.015534373000264168,-0.06265982985496521,-0.08553488552570343,-0.005528515204787254,-0.05088762566447258,0.06642831116914749,-0.005434226710349321,0.05115942656993866,-0.047722458839416504,0.033751752227544785,-0.1043141782283783,0.040856558829545975,-0.03698013722896576,0.07881269603967667,0.027665231376886368,-0.0771542564034462,0.02593354322016239,0.11974237114191055,0.01931305043399334,0.03899282217025757,-0.028379162773489952,-0.11518500745296478,0.004032214172184467,-0.0359310619533062,0.05499233677983284,-0.08637236058712006,-0.027213888242840767,-0.10861789435148239,-0.021337097510695457,-0.01495718490332365,0.04110867902636528,-0.04412474483251572,0.046234436333179474,-0.05420111492276192,0.08053667843341827,0.024994513019919395,0.04361779987812042,-3.0989998123232e-8,-0.08000976592302322,0.0636579692363739,-0.03384165093302727,0.004226620774716139,0.09174876660108566,0.014522088691592216,0.10841308534145355,0.014692789874970913,0.020737476646900177,0.10949447005987167,-0.1397404968738556,0.02308780886232853,0.04899151250720024,0.10994568467140198,0.031298939138650894,-0.02990393526852131,-0.0066263130865991116,-0.07753077149391174,-0.03613641485571861,0.04123454540967941,0.05248655751347542,0.018634673207998276,0.05601924657821655,-0.002099653473123908,-0.018767230212688446,0.016208888962864876,-0.05398653820157051,-0.0400320440530777,0.032266732305288315,0.06359957158565521,0.021442880854010582,-0.02910965494811535,-0.02275664173066616,-0.057352613657712936,-0.04095151275396347,0.055985428392887115,-0.016188206151127815,0.026848886162042618,-0.029129810631275177,-0.05149241164326668,-0.022661175578832626,0.06233086809515953,-0.018051324412226677,0.03466501832008362,0.05186157301068306,-0.012188894674181938,-0.05096692591905594,-0.04202600568532944,-0.04857996478676796,-0.007658044341951609,0.05087951570749283,0.05316368117928505,0.13596786558628082,0.01032688282430172,0.06689669191837311,0.04679796099662781,0.012243567034602165,-0.01660364866256714,-0.07583408057689667,-0.02544400654733181,0.013981201685965061,0.030895771458745003,-0.042683396488428116,-0.07390911132097244]},{"text":"Such jobs as weeding, for instance, could be done with a thoroughness impossible to human beings.","book":"Animal Farm","chapter":48,"embedding":[-0.00946829468011856,0.014570964500308037,-0.025993401184678078,0.010687199421226978,-0.042138293385505676,-0.05390564352273941,-0.00927853025496006,-0.09611611813306808,-0.11216511577367783,0.04231784865260124,0.05248396471142769,0.07867016643285751,-0.03632233664393425,0.04602504521608353,-0.03408064693212509,-0.05064103752374649,0.02622268721461296,0.06013762205839157,-0.01819855347275734,0.01885630004107952,-0.004617888480424881,0.08087180554866791,-0.04235852509737015,-0.013887230306863785,-0.03373341262340546,-0.0031674557831138372,-0.07511754333972931,-0.09829813987016678,0.0017849064897745848,-0.04549752548336983,0.020914841443300247,0.11134056001901627,-0.003227564971894026,0.06316263228654861,0.026660891249775887,0.04327680543065071,0.021011624485254288,0.056899622082710266,0.059426672756671906,-0.045887887477874756,0.03102564439177513,-0.08681567758321762,-0.04257575049996376,-0.026666732504963875,-0.0604984313249588,-0.05359972268342972,0.04053119942545891,-0.09595432877540588,-0.023351119831204414,-0.10898376256227493,0.012516239657998085,-0.00887508038431406,0.018266191706061363,-0.00044090059236623347,-0.022287685424089432,-0.052710626274347305,-0.03806132450699806,0.08269737660884857,-0.045367952436208725,0.02319832146167755,-0.04738971218466759,-0.02323942631483078,0.03474542871117592,-0.017266366630792618,0.06227472797036171,-0.01671651192009449,-0.04164909943938255,-0.0033131930977106094,-0.01575891301035881,0.02022855170071125,0.033799007534980774,-0.061764735728502274,-0.12554040551185608,0.0356314443051815,0.03670908883213997,-0.021495554596185684,-0.03913181275129318,0.0279574915766716,0.002483571879565716,-0.02523595467209816,-0.0168404970318079,-0.08915149420499802,0.01484919898211956,0.05270447954535484,-0.010093999095261097,0.003018578514456749,-0.08010522276163101,0.013952747918665409,0.10717564076185226,-0.027250420302152634,-0.0603342205286026,-0.0535987950861454,0.03709830343723297,-0.06957516819238663,0.014883749186992645,0.0044732349924743176,0.07128389179706573,-0.017119986936450005,-0.04002324119210243,0.0010461328784003854,-0.025719795376062393,0.03774949163198471,-0.035027876496315,-0.05606406182050705,0.010508033446967602,0.06207707151770592,-0.01824391633272171,-0.08153997361660004,-0.006106930319219828,-0.007500665262341499,-0.06459331512451172,-0.004233881365507841,0.04495706036686897,0.010897100903093815,0.0003033503016922623,0.012718761339783669,0.0016300302231684327,-0.033638305962085724,-0.07089471071958542,-0.005040930584073067,-0.010639404878020287,0.023228973150253296,-0.042253002524375916,0.004495799075812101,0.044280536472797394,-0.05805361643433571,0.0140603082254529,-2.2969365326578892e-33,-0.036534566432237625,0.023180125281214714,0.048142023384571075,-0.02650315873324871,0.023228753358125687,-0.004060061648488045,-0.016529256477952003,-0.0304116178303957,0.1425655633211136,0.02300400659441948,-0.00010226887388853356,-0.055882010608911514,0.008148206397891045,0.030652370303869247,0.10897228866815567,0.005540142767131329,-0.03696666285395622,0.035668693482875824,0.033662546426057816,0.0026841498911380768,0.0451371930539608,-0.07471859455108643,-0.10156884044408798,-0.0298643559217453,0.0038012475706636906,-0.0581764318048954,0.043689828366041183,-0.057823799550533295,0.15859049558639526,0.014484193176031113,0.0052408818155527115,0.11169912666082382,-0.020508747547864914,0.06917359679937363,-0.03196775168180466,0.06574255228042603,0.017273973673582077,0.025042733177542686,0.04497404769062996,0.04190193861722946,-0.039233043789863586,0.04468066245317459,0.08857215940952301,-0.06181054189801216,0.03861087188124657,0.03696981817483902,0.0804881677031517,0.004001196939498186,-0.09884382784366608,0.06803194433450699,0.022003119811415672,0.08808919042348862,0.07042817026376724,-0.04409690946340561,0.042936112731695175,0.03281804546713829,0.04789082333445549,0.04908553138375282,-0.03582790121436119,0.02354583516716957,-0.04028410464525223,0.020164409652352333,-0.103539377450943,0.048209697008132935,-0.06467575579881668,-0.08486448228359222,0.023902621120214462,0.07591380923986435,-0.025446517392992973,0.07632025331258774,-0.036056600511074066,0.027910809963941574,-0.02985459566116333,-0.058270905166864395,-0.006382090505212545,-0.01998012885451317,0.04895184189081192,-0.019877811893820763,0.009229625575244427,0.003101756563410163,0.03881736844778061,-0.05926680564880371,-0.005190147552639246,-0.06577901542186737,0.10626555234193802,0.03412383049726486,0.05651263892650604,0.026391128078103065,0.00888507068157196,-0.02014644630253315,0.021654972806572914,0.017835820093750954,-0.026277974247932434,0.029378565028309822,-0.05012325942516327,-8.30927293731016e-34,-0.07620613276958466,-0.043797824531793594,-0.0009560259059071541,0.08567946404218674,0.038473453372716904,0.042790792882442474,0.03310231491923332,-0.0981493815779686,-0.011966201476752758,-0.045630719512701035,-0.09224125742912292,0.02101859077811241,0.06506195664405823,0.016569199040532112,-0.04700706899166107,-0.07998558133840561,-0.04095562919974327,0.06023111939430237,-0.08027293533086777,0.08501191437244415,-0.012915641069412231,0.02499553933739662,-0.08328595757484436,0.04570264369249344,-0.06555760651826859,0.07013873010873795,-0.14068716764450073,-0.04896250739693642,-0.009353820234537125,0.04212396591901779,0.018390001729130745,0.07664521783590317,-0.1057247743010521,-0.03847554698586464,-0.0019894500728696585,0.0009826049208641052,-0.019923577085137367,0.04114679992198944,-0.06309736520051956,-0.05125058442354202,0.031114835292100906,-0.024595515802502632,-0.03173265606164932,-0.03498879447579384,-0.045665331184864044,-0.03307952731847763,-0.0303412526845932,0.008980239741504192,-0.05578245595097542,0.013256730511784554,0.0110012823715806,0.11562254279851913,-0.01757463812828064,0.07815856486558914,0.008953860960900784,-0.018036499619483948,0.04815113544464111,-0.09928595274686813,0.002638566307723522,0.05489692836999893,-0.001557982643134892,0.061406612396240234,-0.00582905113697052,0.0681249126791954,-0.011400812305510044,-0.04478386417031288,-0.0025967226829379797,0.07567653805017471,0.05084788799285889,-0.0053718602284789085,0.08996797353029251,-0.04948505386710167,0.01350007951259613,0.027565738186240196,-0.010912332683801651,0.032968103885650635,0.04629760608077049,-0.025456814095377922,-0.005977498833090067,-0.078469417989254,0.0545196533203125,-0.04842822253704071,0.06476160883903503,-0.034484539180994034,0.04662826657295227,-0.0007262984872795641,-0.08100146800279617,-0.025108369067311287,0.0634508803486824,-0.07966341078281403,-0.10422113537788391,-0.051769599318504333,-0.04666556790471077,0.042767222970724106,0.02357224002480507,-2.5090862720844598e-8,-0.03571920841932297,-0.02884679101407528,0.0419696643948555,0.017336219549179077,0.03859798610210419,-0.05750948190689087,0.011814301833510399,0.033923789858818054,0.01835748180747032,-0.008282607421278954,-0.046617452055215836,-0.00956613291054964,0.006538480054587126,0.0858892872929573,0.07246381044387817,0.06263086944818497,0.05800582095980644,0.03272851184010506,-0.05307798832654953,0.003365596290677786,-0.030621975660324097,0.03672465682029724,-0.07928639650344849,0.023623783141374588,-0.062496453523635864,0.030341224744915962,-0.0454770103096962,0.007761696353554726,0.049132950603961945,0.11573595553636551,0.03746502846479416,0.009810160845518112,-0.049942873418331146,0.0735359713435173,-0.010832243598997593,-0.055173322558403015,-0.020505204796791077,-0.04103119298815727,-0.07807539403438568,-0.08996908366680145,-0.04464619234204292,0.05700915679335594,-0.009965975768864155,0.041991569101810455,0.01599111221730709,-0.11056895554065704,-0.01376398280262947,-0.0051218485459685326,-0.010666091926395893,-0.00890786200761795,0.08132026344537735,0.0315563790500164,0.027936795726418495,-0.043726567178964615,0.044906944036483765,0.03387734293937683,0.05010022595524788,-0.023409364745020866,-0.10727483034133911,0.0004617627419065684,0.030827214941382408,-0.057120468467473984,0.10918956995010376,0.003576866118237376]},{"text":"How these were to be procured, no one was able to imagine.","book":"Animal Farm","chapter":49,"embedding":[-0.04035643860697746,0.055091287940740585,-0.00964915007352829,0.025840971618890762,0.04109315946698189,-0.028170574456453323,0.09527016431093216,0.06882021576166153,0.03519081324338913,0.041359793394804,0.12581230700016022,0.013825408183038235,0.02430846355855465,-0.03672739863395691,-0.07556822896003723,-0.021548770368099213,0.012995520606637001,-0.11942005902528763,-0.09157082438468933,0.06743163615465164,-0.04978407546877861,-0.02618357725441456,0.06371921300888062,-0.013393714092671871,-0.05345991626381874,0.09051337838172913,-0.0586589053273201,0.009388871490955353,0.003294088877737522,0.006293634418398142,0.010050063021481037,-0.04397882521152496,0.0006283168331719935,0.0031230272725224495,0.009945303201675415,-0.02701638825237751,0.03575736656785011,0.0021813991479575634,0.0007065980462357402,-0.08557391166687012,0.023151345551013947,-0.07762548327445984,-0.03855618089437485,0.024103131145238876,-0.03766684606671333,-0.039887621998786926,0.09415870904922485,0.012532584369182587,0.010824469849467278,-0.057357147336006165,-0.0020759825129061937,-0.03914950415492058,-0.05154295638203621,-0.02010587602853775,-0.11166319251060486,-0.12082688510417938,-0.05925369635224342,-0.03168396279215813,0.041841063648462296,0.025254419073462486,0.0023953544441610575,-0.008733050897717476,-0.02131432294845581,-0.032731059938669205,0.008407198823988438,-0.008214728906750679,0.048346832394599915,0.07513488829135895,0.045287925750017166,0.03939993306994438,0.05042686313390732,-0.0018661924405023456,-0.02887057140469551,-0.025466199964284897,0.04698177054524422,-0.009923340752720833,0.03620029240846634,-0.046142518520355225,-0.040791843086481094,-0.025890888646245003,-0.03971758484840393,0.03794854134321213,0.07535605877637863,0.0076436433009803295,-0.019534703344106674,0.09121681749820709,0.01090666651725769,0.0020551318302750587,0.008415231481194496,0.011545438319444656,-0.00307067041285336,-0.05091191828250885,-0.0033150333911180496,-0.012478428892791271,0.028012968599796295,-0.032424673438072205,-0.06826241314411163,-0.05473318323493004,-0.04573386535048485,0.08125214278697968,0.015478425659239292,-0.05700293555855751,0.0345492921769619,-0.10025644302368164,-0.04530683532357216,0.06158895418047905,-0.023381659761071205,0.009813732467591763,0.05807724967598915,0.07260920852422714,-0.05591564625501633,-0.011414904147386551,0.009927615523338318,0.07036376744508743,-0.09313735365867615,0.05096111446619034,-0.1058444008231163,-0.01926395855844021,0.032570451498031616,-0.06600219011306763,0.04222189262509346,0.02168424054980278,0.011937870644032955,-0.06227501109242439,-0.044008318334817886,-0.009378350339829922,-0.04199730604887009,-3.571198857572142e-33,0.027197228744626045,0.06375445425510406,0.012226032093167305,0.01625705510377884,0.07557391375303268,0.030621860176324844,-0.0018369179451838136,-0.022512033581733704,0.0624595545232296,0.015520317479968071,0.013234082609415054,-0.01849762164056301,0.004582547582685947,0.007926220074295998,0.03875048831105232,-0.014515445567667484,-0.09623084962368011,0.05357852578163147,0.05816847085952759,0.07267112284898758,-0.00992401409894228,0.03773723542690277,0.10386460274457932,-0.02619026042521,0.021022241562604904,0.01966778188943863,0.009757825173437595,-0.0014911959879100323,0.09395930171012878,0.020863959565758705,0.03948337212204933,0.0884738564491272,0.06579533964395523,0.05784645304083824,-0.0243618693202734,0.11491671949625015,0.009753004647791386,-0.06429324299097061,-0.019851060584187508,-0.028595760464668274,0.05455467104911804,0.025538833811879158,0.04775010794401169,0.03517754375934601,0.010513106361031532,0.008912942372262478,-0.01837608963251114,0.05319776013493538,-0.08985128998756409,0.03541306033730507,0.0035572401247918606,0.0029716494027525187,-0.08292336761951447,-0.08482342958450317,-0.042166173458099365,-0.016256870701909065,-0.03583906218409538,0.02913796715438366,-0.02054242417216301,-0.04496229812502861,-0.0124166589230299,0.015579733066260815,0.06813462823629379,-0.0427883118391037,-0.08259309828281403,-0.017357831820845604,-0.032478395849466324,0.000938048935495317,-0.04010513424873352,0.016773050650954247,-0.09363459795713425,0.015807827934622765,0.02748861163854599,-0.06514395773410797,-0.09640360623598099,0.014806190505623817,-0.11619929224252701,0.06646464765071869,0.05908476561307907,0.03289534151554108,0.0358768105506897,-0.06208086758852005,-0.024596717208623886,0.09175632148981094,0.03350521996617317,0.05253102630376816,0.020765993744134903,-0.01162657793611288,0.025441870093345642,-0.046524159610271454,0.0007972065359354019,0.013039771467447281,-0.01386940199881792,-0.11951852589845657,-0.020150145515799522,8.180169678456294e-34,-0.046026792377233505,0.02967280149459839,-0.01377206388860941,0.06626839935779572,-0.03455118462443352,0.00899423286318779,-0.07111051678657532,-0.06389767676591873,0.019492696970701218,0.05131026357412338,-0.007006393279880285,0.05743876099586487,0.026461010798811913,-0.03655076399445534,-0.022075824439525604,-0.06923465430736542,0.051756490021944046,0.019673490896821022,0.0002844736154656857,-0.08947387337684631,0.030016737058758736,0.06101861968636513,0.022227954119443893,0.1124248206615448,-0.042689431458711624,0.061899084597826004,0.005128180608153343,-0.041287198662757874,-0.02631583996117115,0.039620425552129745,0.0002538650296628475,-0.0007751602679491043,-0.07238248735666275,0.00385340116918087,-0.02231523022055626,0.07179686427116394,0.025618543848395348,0.1108664944767952,-0.035331424325704575,-0.17410294711589813,-0.039298806339502335,0.024825919419527054,-0.04234679788351059,0.021949956193566322,-0.10288143903017044,-0.017277654260396957,0.005758702754974365,0.001200010534375906,0.06514885276556015,0.0281546488404274,-0.02934284694492817,0.02786414697766304,-0.05908836051821709,-0.07974860072135925,-0.12422066926956177,-0.03198454529047012,0.06783735007047653,-0.013603311963379383,0.16366809606552124,0.038848668336868286,-0.040672946721315384,0.01919119618833065,-0.01310812309384346,0.02154562436044216,-0.007722218055278063,0.017300359904766083,0.0036483295261859894,0.07632336765527725,-0.03289179876446724,-0.04688338562846184,0.10216739773750305,0.027171852067112923,-0.0001666574680712074,-0.05646214261651039,0.04526709020137787,0.0018748573493212461,-0.12220033258199692,0.0031648247968405485,-0.07095792889595032,-0.03823385387659073,0.06172756105661392,-0.09893551468849182,-0.016066700220108032,0.026880456134676933,0.06055207923054695,-0.004441358614712954,0.03943811357021332,-0.10211127996444702,-0.0032326807267963886,0.004515751264989376,-0.06942904740571976,0.010843987576663494,-0.0032305445056408644,0.14156973361968994,0.009863350540399551,-2.510489593987586e-8,0.04897465929389,0.024900564923882484,0.017167387530207634,0.03526240959763527,-0.0034954887814819813,-0.028509899973869324,-0.04338342696428299,0.07650797069072723,0.010528817772865295,0.002615908393636346,-0.03365418687462807,0.032480522990226746,-0.03654974699020386,0.032040029764175415,0.057138841599226,0.054097194224596024,-0.07380496710538864,-0.031536344438791275,-0.10617489367723465,-0.011113320477306843,-0.046334173530340195,0.013553852215409279,0.04162793979048729,-0.02387367933988571,-0.006686822045594454,0.007553722709417343,0.04082479700446129,-0.012220429256558418,0.006792608182877302,0.11493302881717682,-0.032211802899837494,-0.07101154327392578,0.020211055874824524,-0.05414789542555809,-0.016134297475218773,0.028632497414946556,0.01557614840567112,0.025040997192263603,0.03803727775812149,-0.07352664321660995,-0.07409191131591797,-0.07063554972410202,0.020828761160373688,0.0541892945766449,0.020315511152148247,0.021108826622366905,-0.06281165778636932,0.057165030390024185,-0.04018450528383255,0.1034303829073906,0.03743540123105049,-0.011286836117506027,0.0716376081109047,0.08281735330820084,-0.027498364448547363,-0.05313921719789505,0.03614592179656029,0.0058737085200846195,0.020081818103790283,0.04521835222840309,0.01668677292764187,0.0014445000560954213,-0.017848193645477295,0.0006553655839525163]},{"text":"The hens, said Napoleon, should welcome this sacrifice as their own special contribution towards the building of the windmill.","book":"Animal Farm","chapter":49,"embedding":[-0.04477882385253906,0.10095550864934921,0.006163972429931164,-0.04176586493849754,0.06328553706407547,0.027679545804858208,0.04876546934247017,-0.04608979821205139,0.025597557425498962,-0.049103815108537674,0.03908873721957207,-0.02605975791811943,-0.003729084273800254,-0.015465863980352879,-0.028679348528385162,0.014560602605342865,-0.004874208010733128,-0.02774735726416111,-0.0419490672647953,0.03458875045180321,-0.05788830667734146,-0.08541359752416611,0.08325418829917908,-0.011009015142917633,0.03829250484704971,0.01772194728255272,-0.04192645102739334,0.027470190078020096,0.030430760234594345,0.03320604935288429,0.0516587570309639,-0.06766851246356964,-0.0074670459143817425,-0.01803852804005146,-0.04869756102561951,0.08475299179553986,0.04507113993167877,-0.00074333930388093,-0.01815555803477764,-0.017784614115953445,0.02941082790493965,-0.019732413813471794,0.009837665595114231,0.01703726127743721,-0.011371495202183723,0.055033519864082336,0.055632609874010086,-0.027061400935053825,0.07605864852666855,-0.025308798998594284,0.0782182589173317,-0.016492491587996483,-0.01704191230237484,-0.06791404634714127,0.028608134016394615,0.09973848611116409,0.017376486212015152,-0.0608377642929554,-0.03477802500128746,-0.0322938933968544,-0.051056139171123505,0.01766636222600937,0.02700131945312023,0.035285480320453644,0.02220712974667549,-0.06955505162477493,-0.007967613637447357,0.02260526455938816,-0.08116842806339264,0.019607199355959892,0.00909537635743618,-0.012998308055102825,0.059589285403490067,-0.05284171551465988,-0.07276641577482224,0.044899605214595795,-0.02998337149620056,-0.05448028817772865,-0.009258841164410114,-0.047699421644210815,-0.016286198049783707,-0.021997587755322456,0.034229826182127,0.03895281255245209,0.04797518625855446,0.04508649930357933,0.06815867125988007,-0.033074118196964264,0.10537823289632797,0.014687315560877323,0.032548364251852036,-0.04990366846323013,-0.023353954777121544,0.05545332655310631,0.07474151998758316,0.05422764644026756,-0.04306234419345856,0.08963790535926819,-0.11741120368242264,0.035183362662792206,-0.004248412791639566,-0.028756339102983475,0.021268995478749275,-0.015532366931438446,-0.019745932891964912,0.044373638927936554,-0.11473211646080017,-0.00845914613455534,-0.03909978270530701,-0.04558546096086502,-0.0172645915299654,0.00972331315279007,0.05401765927672386,0.07027143239974976,0.043699733912944794,0.058336108922958374,-0.022873928770422935,-0.1701381504535675,-0.08559930324554443,0.07568634301424026,0.10057380795478821,0.01543775200843811,-0.0019394760020077229,0.03766244649887085,-0.0678965225815773,0.03535184636712074,-0.11385124921798706,-6.123178358766112e-33,0.009804017841815948,0.070466049015522,0.062059223651885986,-0.04748242348432541,0.027448520064353943,0.006621308159083128,-0.08937648683786392,0.029222894459962845,0.006844998802989721,-0.032453615218400955,0.007835231721401215,-0.0053757792338728905,-0.006697661709040403,0.003840697929263115,-0.04387344792485237,-0.09224928170442581,0.04088791087269783,0.021884974092245102,0.057286303490400314,-0.06360386312007904,-0.022305211052298546,0.025135762989521027,-0.045540951192379,-0.06760036200284958,-0.045161813497543335,-0.03350045531988144,0.006984145846217871,-0.07390089333057404,-0.06377612799406052,0.04280853644013405,0.025571996346116066,-0.09191735833883286,-0.047455642372369766,-0.009668844752013683,-0.0691240057349205,-0.014980572275817394,0.006258274894207716,-0.08781053125858307,-0.08890056610107422,0.07544680684804916,0.057525884360075,-0.011564808897674084,0.020250793546438217,0.13595624268054962,0.00909515656530857,-0.010810835286974907,-0.016536112874746323,0.013264667242765427,0.02761244773864746,0.003827374428510666,0.0330701544880867,-0.00789321307092905,-0.035347409546375275,-0.111136294901371,0.06732010841369629,0.02476324513554573,-0.01607680693268776,0.02323821932077408,-0.05325085297226906,-0.09500391781330109,-0.02811209298670292,-0.0884854644536972,-0.0656912550330162,0.07390884310007095,0.0252532958984375,-0.04377829283475876,-0.010152624920010567,0.04822530969977379,-0.09931077063083649,0.03969447687268257,-0.06682109832763672,0.03033049777150154,-0.035786159336566925,-0.010164146311581135,-0.05698436498641968,0.06865561008453369,0.0042235953733325005,0.027900461107492447,0.030666567385196686,-0.04696609452366829,0.05209830775856972,0.015510431490838528,-0.0806688517332077,0.0036267712712287903,0.01386411301791668,0.019966773688793182,0.046084992587566376,-0.05529923364520073,-0.0009315341012552381,-0.018025126308202744,0.022753503173589706,0.0376676507294178,-0.004135300405323505,-0.10341251641511917,-0.1255064159631729,3.44642674438808e-33,-0.07029064744710922,0.03470384329557419,-0.06853949278593063,0.042289379984140396,0.06788317859172821,0.02418588474392891,-0.047834448516368866,-0.0373949334025383,-0.00900103710591793,0.10751503705978394,-0.056641366332769394,-0.0590861551463604,-0.0021481914445757866,0.02138148806989193,0.01016409881412983,-0.03439905494451523,-0.005839733872562647,0.02188754640519619,-0.005754478275775909,-0.06353762000799179,0.038661930710077286,0.11126118153333664,0.06394035369157791,0.005496887490153313,-0.037454936653375626,0.0815555602312088,-0.06410209834575653,-0.048282407224178314,0.010389209724962711,0.01820802502334118,-0.08616385608911514,0.04503477364778519,-0.007954457774758339,0.07607784122228622,0.04603780433535576,0.08998801559209824,0.023988939821720123,-0.026174847036600113,0.018607057631015778,0.11091651767492294,0.036281559616327286,-0.04687202721834183,-0.03289495036005974,0.020564725622534752,-0.043004367500543594,-0.033325228840112686,-0.01649915613234043,-0.06021377444267273,0.07518596947193146,-0.020530197769403458,-0.02757258154451847,-0.031492918729782104,0.009209192357957363,-0.0300733745098114,0.01738433726131916,0.00044813964632339776,0.07990586757659912,-0.09484740346670151,0.06898295134305954,-0.049821410328149796,-0.014266198500990868,0.0164482519030571,0.03211024031043053,0.03623872622847557,-0.02059038355946541,0.029649633914232254,-0.03431684896349907,0.035316381603479385,0.005517179612070322,0.004489846061915159,-0.02635810151696205,0.034772180020809174,-0.00602297019213438,0.02189081534743309,-0.0364726185798645,0.0043510557152330875,0.06867446005344391,0.019152307882905006,-0.0023012221790850163,0.008123590610921383,-0.017580483108758926,-0.01163364015519619,0.04638174548745155,-0.0684492439031601,0.07669336348772049,-0.1710403710603714,0.007622511126101017,0.016467783600091934,0.0784972533583641,0.012875058688223362,-0.0011274589924141765,-0.002010632771998644,0.03220970183610916,0.016419989988207817,0.06345038115978241,-2.341309368603106e-8,-0.0726393461227417,0.0534745492041111,-0.011719009838998318,0.07432939857244492,0.028439681977033615,-0.032590389251708984,-0.06836282461881638,-0.11369657516479492,-0.011304235085844994,0.06633298099040985,-0.039073292165994644,0.0743689015507698,0.04759059101343155,0.03444123640656471,0.03564019873738289,0.0145182553678751,0.023435425013303757,-0.09787535667419434,-0.04674871265888214,0.013531762175261974,0.03374471887946129,0.07960283011198044,0.006144910119473934,-0.06789141148328781,0.00951257161796093,-0.018263116478919983,-0.07932626456022263,0.0102377999573946,-0.022040896117687225,0.07655279338359833,-0.01418329682201147,-0.006808694452047348,-0.06968820095062256,-0.05898275226354599,-0.06176318973302841,0.04306040331721306,-0.013299142941832542,-0.03975820913910866,0.05059269443154335,-0.004444756079465151,-0.02917507290840149,0.014642159454524517,-0.00309953885152936,0.03900593891739845,0.08170602470636368,0.020900676026940346,-0.015158518217504025,-0.04281233623623848,-0.04634328559041023,0.007034753914922476,0.02825169265270233,-0.02324303612112999,0.1346973031759262,0.06513545662164688,0.021152369678020477,-0.02613062784075737,0.013028728775680065,0.01568838581442833,0.07501306384801865,-0.0703125149011612,-0.016381461173295975,0.13515233993530273,0.06104519963264465,-0.04683026671409607]},{"text":"Then, as usual, the sheep broke into \"Four legs good, two legs bad!\" and the momentary awkwardness was smoothed over.","book":"Animal Farm","chapter":49,"embedding":[0.008503816090524197,0.032739248126745224,0.03732332959771156,0.06547998636960983,-0.0224900022149086,-0.03857903927564621,0.009042010642588139,0.036053452640771866,-0.023310942575335503,0.03137081488966942,0.07987462729215622,0.07083710283041,-0.012523308396339417,0.05579710751771927,-0.013184677809476852,0.019681649282574654,-0.07150181382894516,0.001868653460405767,-0.02134096249938011,0.07475735992193222,0.04499417915940285,-0.016487451270222664,0.013933717273175716,-0.030850334092974663,-0.005723705515265465,-0.013414540328085423,-0.055779509246349335,0.0315992534160614,0.08669412136077881,-0.00642121909186244,-0.04953310638666153,0.024175351485610008,-0.029010776430368423,-0.004980430006980896,0.01250375434756279,0.010848631151020527,0.06627862900495529,0.026463793590664864,0.0338866151869297,0.030275123193860054,0.0060607367195189,-0.06181253492832184,-0.02296517975628376,-0.06211574003100395,0.017112622037529945,0.03312699869275093,0.07298637181520462,-0.03930113837122917,0.0852951854467392,0.01647353172302246,-0.03595152869820595,-0.016141435131430626,0.07318438589572906,-0.03569413721561432,0.015294978395104408,0.007132468279451132,-0.04074161499738693,0.037006817758083344,-0.01333346962928772,-0.015125235542654991,0.009872128255665302,0.03959520906209946,0.0412033274769783,0.08039931207895279,0.052785977721214294,0.042685557156801224,-0.04597683995962143,-0.08398213237524033,-0.06755326688289642,0.1549912691116333,-0.04045998305082321,-0.07709639519453049,-0.012932509183883667,-0.07558813691139221,-0.08968789130449295,-0.04635074362158775,0.06016029417514801,-0.054826486855745316,0.07909917086362839,0.052348170429468155,-0.004815397318452597,-0.10936442017555237,-0.05040157213807106,0.0057183061726391315,-0.007363957352936268,-0.03715689852833748,0.026471221819519997,-0.07235432416200638,-0.04244733974337578,-0.033891186118125916,-0.0633234828710556,-0.04037068411707878,-0.02114449068903923,0.08995328843593597,0.02771136723458767,-0.012140177190303802,-0.01673424243927002,0.03127722442150116,-0.03421724960207939,0.09152597188949585,-0.027961935847997665,0.020071182399988174,-0.006170670967549086,-0.00011473233462311327,-0.0035811285488307476,-0.019951829686760902,-0.0004753197717946023,0.04796478524804115,0.04358522221446037,-0.009754279628396034,-0.06712600588798523,-0.017110470682382584,0.07139343023300171,0.10183285176753998,-0.03256062790751457,0.04879872128367424,-0.05492068827152252,-0.04801898077130318,-0.030095502734184265,0.0032368542160838842,0.09664790332317352,0.05591753497719765,0.056634314358234406,0.04540940374135971,-0.020275147631764412,-0.007807582151144743,0.05696001276373863,-1.9263088576443837e-33,0.02498655766248703,-0.030893975868821144,-0.01889282464981079,-0.03282457962632179,0.07508432120084763,-0.010299691930413246,-0.09795574098825455,0.00023370675626210868,0.006820297800004482,0.037265002727508545,0.04912470281124115,-0.08941149711608887,0.02279292792081833,-0.06219678372144699,-0.07204635441303253,-0.015582691878080368,-0.03730164095759392,0.007837029173970222,0.07883406430482864,0.05022822320461273,-0.03184427320957184,0.059798628091812134,0.06019998714327812,0.004807050805538893,0.005147132091224194,0.032624825835227966,0.054600585252046585,-0.01918468251824379,0.056793998926877975,0.05504179000854492,-0.02787240594625473,0.0040848394855856895,0.004930705763399601,-0.05086906626820564,0.02442813105881214,-0.02440340258181095,0.0003173044533468783,-0.05315254256129265,-0.060109496116638184,0.06536601483821869,-0.009492706507444382,-0.0020757366437464952,0.14232629537582397,-0.004654773976653814,-0.012120314873754978,0.015267743729054928,-0.05539076775312424,0.07849070429801941,-0.09350406378507614,-0.006141867022961378,-0.00887108501046896,0.14055420458316803,0.14277707040309906,0.03607123717665672,0.016015419736504555,-0.009305278770625591,0.017235148698091507,-0.006697723176330328,-0.04242141172289848,0.05409756675362587,0.003821498481556773,0.06028963625431061,0.0012698883656412363,-0.12838080525398254,0.033275872468948364,-0.11012421548366547,0.0164593905210495,0.02324363775551319,-0.04420729726552963,-0.014624428004026413,-0.05287425220012665,0.0002861540124285966,-0.07781752943992615,-0.07138058543205261,-0.06269938498735428,-0.05754351243376732,-0.022809093818068504,-0.034691691398620605,0.026397312059998512,-0.10974583774805069,0.07284465432167053,-0.03136344254016876,0.039506275206804276,0.001791790477000177,-0.009932181797921658,-0.04815710335969925,0.0007185283466242254,-0.1429164707660675,-0.028277680277824402,0.016407553106546402,-0.041660916060209274,0.024159803986549377,-0.020075811073184013,-0.04540199413895607,0.09774405509233475,8.318697095925893e-34,0.03160235285758972,0.07953731715679169,-0.09105780720710754,0.1349829137325287,-0.0609271265566349,-0.03854387253522873,0.023255672305822372,0.011054021306335926,0.014211743138730526,0.007084313780069351,0.044093046337366104,-0.04420182853937149,-0.07232078164815903,-0.04882729426026344,0.07506480067968369,-0.02497299388051033,0.009708386845886707,-0.03511025011539459,0.10096947848796844,0.03657074645161629,0.1093703880906105,-0.045234885066747665,0.004697586875408888,0.046871788799762726,0.025099817663431168,0.07004188001155853,-0.014733050018548965,-0.04272286593914032,-0.14624512195587158,-0.04219018295407295,0.03136216476559639,-0.06383225321769714,-0.07192347943782806,0.010200155898928642,0.02758294716477394,0.03690455108880997,-0.11377798765897751,-0.02975483238697052,0.005634089931845665,-0.07716532051563263,0.056914810091257095,-0.00815888587385416,-0.0045814733020961285,0.0609138086438179,0.010210489854216576,-0.0025380540173500776,-0.06282002478837967,0.03331311047077179,-0.025023827329277992,0.022324606776237488,-0.06556238979101181,0.015565675683319569,-0.020738355815410614,-0.07913292199373245,-0.012282020412385464,-0.06237185373902321,-0.01377259660512209,-0.03789888322353363,-0.012760048732161522,0.013108283281326294,-0.048855412751436234,0.027305392548441887,-0.03202744200825691,-0.022677207365632057,0.019038818776607513,-0.01891791634261608,-0.05040549114346504,-0.01214019488543272,0.02693718485534191,-0.040019646286964417,-0.0025675161741673946,0.026755761355161667,-0.06630031019449234,-0.0005705153453163803,-0.016751300543546677,0.08904298394918442,0.022495081648230553,-0.09988103806972504,0.03205138444900513,-0.03617164492607117,-0.0411117859184742,-0.09904010593891144,0.04708164557814598,-0.02198636904358864,-0.03202764689922333,0.021272901445627213,-0.01988341473042965,0.13961677253246307,0.006917987484484911,0.013248355127871037,0.0498754121363163,-0.032522574067115784,0.050051625818014145,0.031493328511714935,0.015562486834824085,-2.758895334409317e-8,-0.07607434689998627,0.012570170685648918,-0.04736779257655144,-0.01613333448767662,0.0022596120834350586,0.0036691268905997276,-0.06003935635089874,0.03268728405237198,-0.017702847719192505,-0.0893917828798294,-0.04664852097630501,0.06851950287818909,0.01267029158771038,0.11886371672153473,-0.026913687586784363,0.08001692593097687,-0.03991786390542984,-0.015722446143627167,-0.057702723890542984,0.07228242605924606,-0.057199593633413315,-0.025182487443089485,-0.05521802976727486,0.04661265015602112,-0.05070933699607849,-0.012848490849137306,-0.05391865223646164,0.001660408335737884,-0.0011446161661297083,-0.006045883521437645,0.048110231757164,-0.002110289642587304,-0.03899981454014778,0.016831960529088974,-0.004140621982514858,0.07740994542837143,-0.07668565958738327,-0.009849626570940018,0.1322990506887436,-0.031708184629678726,-0.017801228910684586,0.09128795564174652,0.02527034841477871,0.019576869904994965,0.05523383617401123,0.011596258729696274,0.006455979309976101,-0.006994329858571291,-0.006884829141199589,-0.028380364179611206,0.011543524451553822,0.0031898377928882837,0.012139026075601578,0.07097097486257553,0.062057655304670334,-0.08684070408344269,-0.04637038707733154,-0.035270486027002335,-0.029361557215452194,0.031867142766714096,0.033798422664403915,0.04284808784723282,-0.050350531935691833,0.023838965222239494]},{"text":"Napoleon ended his speech with his usual cry of \"Long live Animal Farm!\" and after the singing of 'Beasts of England' the animals were dismissed.","book":"Animal Farm","chapter":49,"embedding":[-0.020200861617922783,0.07640933990478516,0.1023688018321991,0.0017929788446053863,0.046175774186849594,0.014241342432796955,-0.024446973577141762,-0.05742755904793739,-0.09316720068454742,-0.08991017192602158,-0.0011713680578395724,0.011285739950835705,-0.006644068751484156,-0.02535236068069935,-0.046742696315050125,0.017819300293922424,-0.037134379148483276,0.04143477976322174,0.003979747649282217,0.015335692092776299,0.07807962596416473,0.1293219029903412,0.000446583260782063,0.09115301072597504,0.01458855252712965,-0.019727248698472977,-0.03959009051322937,-0.07490447908639908,-0.017760083079338074,0.04342450574040413,-0.0022876679431647062,-0.010809015482664108,0.03455444425344467,-0.02106739580631256,-0.024767566472291946,-0.018604038283228874,0.03266272321343422,-0.030471624806523323,0.0663260743021965,-0.0007398314774036407,0.011095166206359863,-0.00763009674847126,-0.05058681592345238,0.02062012255191803,-0.024835767224431038,0.00759228365495801,-0.08610042184591293,-0.0632394403219223,0.06987152248620987,0.02704436518251896,-0.0265964325517416,0.00972127914428711,-0.016707846894860268,-0.050108108669519424,-0.05774892866611481,-0.08042565733194351,0.019680609926581383,0.053709644824266434,0.046834733337163925,0.03820967301726341,-0.0015147856902331114,0.0122781777754426,0.049064457416534424,0.05933862924575806,0.015261009335517883,-0.04433199763298035,-0.047962870448827744,0.009703530929982662,-0.04507482051849365,0.12998151779174805,-0.040811654180288315,-0.027343058958649635,0.038064032793045044,-0.08152765780687332,-0.1047063022851944,0.0006929698283784091,-0.03851277753710747,-0.02344026416540146,0.033162422478199005,-0.05009935796260834,-0.04694999009370804,-0.11155960708856583,-0.017002413049340248,-0.03284361585974693,0.06752286106348038,-0.09540732949972153,0.0951254665851593,-0.05522875487804413,-0.00828595645725727,0.005745133850723505,0.01737770438194275,-0.11312323808670044,0.002016521990299225,0.12282473593950272,0.015344090759754181,-0.023401740938425064,-0.017876526340842247,0.033960361033678055,-0.03192136436700821,0.021598247811198235,-0.04547463729977608,-0.03688720241189003,-0.028195174410939217,-0.028443237766623497,-0.0402153916656971,0.0035683843307197094,-0.1343519389629364,0.029447752982378006,-0.031965531408786774,0.013225696049630642,-0.07593033462762833,-0.006844474468380213,0.013739856891334057,0.06635740399360657,0.08173825591802597,0.10218971222639084,-0.03022039495408535,-0.16231729090213776,-0.1064462661743164,0.04385345056653023,0.05088640749454498,0.07368149608373642,-0.02170969918370247,-0.010899498127400875,0.07524114102125168,0.06370478123426437,0.026973692700266838,-2.0282888700499713e-33,-0.010072515346109867,-0.09343043714761734,-0.07122163474559784,-0.013146180659532547,-0.02199728414416313,0.05973412096500397,-0.08877988159656525,0.03959677368402481,0.018621694296598434,0.04846205562353134,0.006928552873432636,0.021689435467123985,-0.019361937418580055,-0.08017653226852417,-0.04444636031985283,-0.02943463623523712,0.017971714958548546,0.057049158960580826,0.11287635564804077,0.017133379355072975,-0.002882645931094885,0.09211315214633942,0.004167802166193724,0.09082071483135223,0.032121386379003525,0.024453474208712578,-0.029976362362504005,-0.09887232631444931,-0.04442058503627777,0.049759697169065475,-0.03577495738863945,-0.09748820960521698,0.012735440395772457,0.05166430026292801,-0.01555471308529377,-0.09381484240293503,-0.042803820222616196,-0.07649353891611099,0.015302344225347042,0.039212532341480255,0.047223035246133804,0.0037462087348103523,0.04180235415697098,-0.03763323649764061,-0.010816498659551144,-0.0029020882211625576,-0.028457501903176308,0.06704528629779816,0.04504843428730965,0.03500646725296974,0.010949566960334778,0.0032018760684877634,0.04695839434862137,-0.05835958197712898,0.053374044597148895,0.04651306942105293,-0.00989780854433775,0.03900708630681038,0.027703741565346718,-0.05768632888793945,0.035869114100933075,0.019661659374833107,0.06310761719942093,-0.053126055747270584,0.061056505888700485,-0.06923242658376694,-0.06118142977356911,0.058148808777332306,-0.04061948135495186,-0.09265759587287903,0.039693865925073624,-0.016182513907551765,-0.0036402412224560976,-0.05098910629749298,-0.0025407341308891773,-0.021743014454841614,0.026438333094120026,0.0038848049007356167,-0.09203353524208069,-0.03817135468125343,0.07041434198617935,-0.08971688151359558,-0.08721703290939331,0.00898605678230524,0.045417651534080505,0.05035434663295746,0.03501630201935768,-0.07802507281303406,0.0272122323513031,0.04391282796859741,-0.049197107553482056,0.005692598409950733,-0.04852611571550369,-0.07682854682207108,0.006206498481333256,-6.416144336263155e-35,0.025334812700748444,0.06487254053354263,-0.0030736858025193214,0.08510840684175491,-0.03737041726708412,0.011882182210683823,0.018904877826571465,0.097292959690094,0.03290523588657379,-0.00005132751903147437,-0.05569751188158989,-0.02322819083929062,0.02763161063194275,-0.009436113759875298,-0.03881703317165375,-0.06217338144779205,0.05384017899632454,-0.05771443247795105,0.0385468564927578,0.019748514518141747,-0.047747060656547546,-0.02644200623035431,-0.017779314890503883,-0.029744980856776237,-0.05026107281446457,0.05303977429866791,-0.08902677893638611,-0.050008624792099,0.02772381342947483,-0.0751028060913086,0.0026389982085675,0.051399245858192444,-0.028461575508117676,-0.008916563354432583,0.057030096650123596,0.009257550351321697,-0.01607278548181057,-0.030140556395053864,0.028947841376066208,0.020704595372080803,0.031176667660474777,-0.049771953374147415,-0.06168841943144798,0.007251369301229715,0.04710076376795769,0.0015294660115614533,-0.023958470672369003,0.004246961325407028,0.01823182962834835,0.03149201348423958,-0.037832506000995636,0.06596309691667557,0.052422896027565,-0.04039539769291878,-0.02136092819273472,-0.08942504227161407,-0.0011224127374589443,-0.0675428956747055,-0.04222648963332176,-0.027303030714392662,0.007626489270478487,-0.015554657205939293,0.027044761925935745,-0.04534399136900902,-0.041833654046058655,0.0527888685464859,-0.0404929555952549,0.10221221297979355,0.0931667909026146,0.017532195895910263,0.01227626670151949,0.01686379685997963,-0.0012270711595192552,0.039746493101119995,-0.009267277084290981,0.09700994193553925,-0.010604212060570717,-0.09824695438146591,0.05696915090084076,-0.08052469044923782,0.0025999892968684435,-0.03729669004678726,0.028992097824811935,-0.04575304687023163,0.03135133907198906,-0.02111891098320484,-0.11557884514331818,0.05062464252114296,0.0732511356472969,0.04596097394824028,0.018675990402698517,-0.04420754685997963,0.09406375885009766,0.0029682947788387537,0.058149129152297974,-2.6675364139805424e-8,-0.05699865147471428,0.05138029530644417,0.07631570100784302,-0.006117918062955141,0.1204037144780159,-0.08379796147346497,-0.005261680576950312,0.02621273696422577,0.023970862850546837,0.0663413405418396,-0.05199270322918892,0.05238770321011543,-0.03242342919111252,0.056642577052116394,-0.013737435452640057,0.021035313606262207,0.05436822772026062,-0.1101049855351448,0.026502860710024834,0.0471641980111599,-0.08805572241544724,0.005001639947295189,-0.04198898747563362,-0.06595749408006668,0.002625714987516403,-0.02839055098593235,-0.0027335782069712877,-0.05010585859417915,-0.005351813044399023,0.005532365292310715,0.05485445261001587,0.045312460511922836,-0.0686367079615593,-0.0439903661608696,-0.01122673787176609,0.03176825866103172,0.0049795410595834255,-0.007681007031351328,0.08657505363225937,-0.06458112597465515,-0.0116032175719738,0.07897690683603287,0.06482555717229843,-0.01665983721613884,0.11416714638471603,0.05506841465830803,0.05088391527533531,0.028397414833307266,0.004428795073181391,0.010595523752272129,-0.055920202285051346,0.03373030573129654,-0.002381644444540143,-0.007647754158824682,0.03826003521680832,-0.000880595704074949,0.03263881430029869,-0.020603446289896965,0.017101237550377846,-0.023329801857471466,-0.012792539782822132,0.02813197486102581,-0.007764291949570179,-0.03318633511662483]},{"text":"Have you any record of such a resolution?","book":"Animal Farm","chapter":50,"embedding":[-0.006010227371007204,-0.019699564203619957,0.030938412994146347,-0.017932865768671036,-0.06985136866569519,-0.02628459595143795,-0.09387718886137009,-0.009098867885768414,-0.020581437274813652,-0.003397685009986162,-0.02868509292602539,0.07098999619483948,0.0453636609017849,-0.026799196377396584,0.007870549336075783,0.013285062275826931,-0.05241914093494415,-0.07047262042760849,-0.03880799934267998,0.03437553718686104,0.008543867617845535,-0.010437950491905212,0.04102287068963051,0.002911835676059127,-0.021823249757289886,-0.0029942551627755165,-0.019516943022608757,-0.01878899522125721,-0.046996552497148514,-0.0009535306598991156,-0.02080474980175495,0.08860921114683151,0.010991259478032589,0.04413416609168053,0.08657507598400116,0.011334762908518314,0.0019727263133972883,0.009389732964336872,-0.012628589756786823,-0.0965409204363823,0.06692246347665787,0.009151776321232319,0.11713935434818268,-0.017817674204707146,0.005362057127058506,0.07069982588291168,0.00217326357960701,0.024410465732216835,-0.055178169161081314,-0.09880277514457703,-0.07070346921682358,0.026509668678045273,0.08756939321756363,0.05288049206137657,-0.006180411204695702,0.023505324497818947,-0.03757083788514137,0.05186857655644417,-0.01753099635243416,0.08764611929655075,-0.01078057661652565,0.04234547168016434,-0.08906788378953934,0.001090135076083243,0.009365647099912167,0.10838982462882996,-0.01134160440415144,-0.07294721901416779,0.01950814016163349,0.046744853258132935,-0.02203945815563202,0.027728065848350525,-0.021198635920882225,0.10088544338941574,-0.020062636584043503,-0.04951128736138344,-0.04623386263847351,-0.011705066077411175,0.08385124057531357,0.048237964510917664,0.023492509499192238,-0.0069467537105083466,-0.03923695534467697,0.042779114097356796,0.007646217942237854,-0.1157446950674057,0.0832991972565651,0.027950244024395943,0.009544707834720612,-0.004934427794069052,-0.09884894639253616,-0.03690200671553612,-0.008660071529448032,0.017372826114296913,-0.07492829859256744,-0.057223834097385406,0.09311719983816147,-0.038859106600284576,0.046296700835227966,0.08670052886009216,0.06471911817789078,-0.007617301307618618,0.030161306262016296,-0.032799672335386276,0.026209622621536255,0.02579069510102272,0.008421078324317932,0.08220569789409637,-0.036045413464307785,-0.04338496923446655,0.014939133077859879,-0.007866055704653263,0.018645992502570152,-0.029647504910826683,0.1096525639295578,-0.011005949229001999,-0.04634200036525726,0.05839639529585838,0.04633769020438194,-0.09618793427944183,-0.012814104557037354,-0.02529323101043701,-0.08101867884397507,-0.040399227291345596,0.014545476995408535,-0.0020541781559586525,-0.0515219047665596,-4.8403848836007664e-33,0.023114098235964775,0.007490567862987518,-0.010532703250646591,0.031593866646289825,0.057957861572504044,0.09808939695358276,-0.06636662036180496,0.050914499908685684,0.03470109403133392,0.013897729106247425,0.04239299148321152,0.012999355792999268,0.006373205222189426,-0.02460073120892048,-0.023096159100532532,0.006353409960865974,-0.049293167889118195,0.12274916470050812,-0.036152102053165436,0.07720845192670822,0.05975182726979256,-0.03365812450647354,0.037756241858005524,-0.01188737154006958,0.013539610430598259,0.02710273675620556,0.010510633699595928,0.0144656952470541,0.06829719990491867,-0.013572977855801582,-0.02042793296277523,0.023395637050271034,0.048073917627334595,-0.060009997338056564,0.018676232546567917,0.034759521484375,0.06929446011781693,0.011841475032269955,-0.039999332278966904,0.03502608835697174,-0.012291546911001205,0.07282031327486038,-0.02954559214413166,-0.07753869146108627,0.005198900122195482,-0.017708906903862953,0.028779523447155952,-0.0396459698677063,-0.08283156901597977,0.07224477827548981,-0.002507181139662862,0.005346211604773998,-0.060126498341560364,-0.11995045840740204,0.010687782429158688,0.05701777711510658,0.05520983412861824,-0.06558267772197723,0.044335562735795975,0.03316127508878708,0.0591820627450943,-0.09006378054618835,-0.08635053038597107,-0.03206198289990425,0.008685512468218803,-0.00795548316091299,-0.06150072067975998,0.004340010229498148,-0.013316307216882706,-0.02330894023180008,0.023634955286979675,-0.046336423605680466,0.06129968538880348,-0.10649216920137405,0.021361423656344414,-0.010708969086408615,-0.055877961218357086,0.0777139961719513,-0.05382965877652168,0.025804022327065468,-0.047874417155981064,0.004023306537419558,0.07472285628318787,-0.01848013512790203,-0.00508654722943902,0.01339744683355093,0.016974423080682755,-0.01762903854250908,-0.036327093839645386,-0.04783640801906586,-0.07328890264034271,0.06107426807284355,-0.009259570389986038,-0.04621649160981178,-0.015873899683356285,2.8993726120085113e-33,-0.02857981249690056,-0.046787459403276443,0.005863729398697615,-0.011341520585119724,0.0013487040996551514,-0.05819086730480194,0.09440939873456955,0.09441506117582321,0.0037952447310090065,-0.0743706151843071,0.06165771558880806,-0.04472815617918968,0.004364680964499712,-0.026691589504480362,-0.0012064938200637698,-0.017210859805345535,0.08578597009181976,-0.02604016661643982,0.016055723652243614,-0.011774430051445961,-0.03590956702828407,0.03409384563565254,0.02325439453125,-0.0004385606443975121,0.04816797748208046,0.020378688350319862,0.06619293242692947,0.021579133346676826,0.003531912574544549,-0.05242673680186272,0.06140393018722534,-0.07129034399986267,-0.030194301158189774,0.01246692705899477,0.02714408002793789,-0.0023709714878350496,0.07611081004142761,-0.05929998308420181,-0.0862138494849205,-0.04435277357697487,-0.030739177018404007,0.019695786759257317,-0.0618467852473259,0.08270128816366196,-0.013606518507003784,-0.06457863003015518,-0.047851286828517914,0.040740445256233215,0.05308853089809418,0.0008265572832897305,-0.00999633502215147,0.006992622744292021,0.017710920423269272,-0.07917732745409012,-0.0024494926910847425,-0.007510347291827202,-0.08546379953622818,0.02536170370876789,0.07242345809936523,0.008576723746955395,0.027835663408041,0.013289261609315872,-0.12335754185914993,-0.06537420302629471,0.09088847786188126,0.07782573252916336,0.015099944546818733,0.050287339836359024,0.012367723509669304,0.0872403159737587,0.013577412813901901,-0.1307995617389679,-0.12213844805955887,-0.000963037193287164,0.04782247915863991,-0.00012133752170484513,-0.051227036863565445,0.005798169411718845,-0.09655166417360306,0.04954369738698006,-0.0013506716350093484,-0.06170894205570221,0.032321762293577194,0.043094467371702194,0.08964414149522781,-0.006047717295587063,0.00410346407443285,-0.0013183489209041,0.003201104700565338,0.0587286576628685,-0.016628248617053032,0.023838773369789124,-0.09630472958087921,-0.02250649221241474,-0.0011830037692561746,-1.860808929166069e-8,-0.06570476293563843,0.042001329362392426,-0.08022349327802658,0.013815444894134998,0.03681968152523041,-0.024229537695646286,0.03978599235415459,-0.01921869069337845,-0.007260489277541637,-0.0608137808740139,0.012315047904849052,-0.01796555146574974,-0.060559190809726715,0.05251095071434975,0.08383472263813019,-0.13422362506389618,0.035062275826931,0.002146852668374777,-0.06221091374754906,0.0010446886299178004,-0.01936301961541176,0.06395068019628525,0.03820483759045601,-0.11934177577495575,-0.0179353766143322,-0.008016284555196762,0.008176615461707115,-0.010437880642712116,-0.10457023978233337,-0.008188857696950436,-0.01685403287410736,0.06710708886384964,0.034800976514816284,-0.07781504839658737,0.0986301451921463,0.007573239970952272,0.024720579385757446,0.08163377642631531,0.03149930760264397,-0.09442823380231857,-0.0186289194971323,0.044886983931064606,0.023009568452835083,0.11493933945894241,0.08315306156873703,0.036991119384765625,-0.01156834326684475,-0.028471916913986206,0.07188644260168076,-0.04122886061668396,-0.016164114698767662,0.07128836959600449,0.01870819553732872,-0.030301496386528015,-0.03522876277565956,0.014312265440821648,0.04313371330499649,0.017275910824537277,-0.0974196270108223,-0.0033055373933166265,0.145565003156662,-0.00961326714605093,-0.0852072611451149,0.04793587699532509]},{"text":"Nevertheless, the sight of Napoleon, on all fours, delivering orders to Whymper, who stood on two legs, roused their pride and partly reconciled them to the new arrangement.","book":"Animal Farm","chapter":50,"embedding":[-0.08877117931842804,0.08890377730131149,0.010820909403264523,0.006619331426918507,0.051741138100624084,0.08686978369951248,0.030742090195417404,0.08388646692037582,-0.006342743989080191,0.04902977868914604,0.024662304669618607,-0.020875126123428345,0.0692591592669487,-0.013543668203055859,-0.03255940228700638,-0.002854157006368041,-0.05174103379249573,0.051150575280189514,-0.013325629755854607,0.03116661310195923,-0.02460377663373947,-0.019321026280522346,0.06496135145425797,0.02456149272620678,-0.02263377234339714,0.02102920226752758,0.01844559796154499,-0.014917183667421341,0.062372446060180664,-0.0661441832780838,0.015046898275613785,0.003719870001077652,-0.027724094688892365,0.010585767216980457,-0.06877114623785019,-0.015864621847867966,0.07808256149291992,0.021346203982830048,0.015908852219581604,0.02275029756128788,0.017870882526040077,-0.036517027765512466,-0.07564768195152283,-0.014852863736450672,-0.03313366323709488,0.013840286992490292,0.06001746281981468,0.0392969511449337,0.04846132919192314,0.0075017837807536125,0.02234474942088127,-0.0022043013013899326,-0.07838035374879837,-0.07776245474815369,-0.006075034849345684,0.029022034257650375,0.03618653863668442,0.008127081207931042,0.04207539185881615,0.032705482095479965,0.047222111374139786,0.04632528871297836,0.010086070746183395,-0.007088416256010532,0.010728648863732815,-0.057143621146678925,-0.04338126629590988,0.007327567785978317,-0.05082930251955986,0.09573367238044739,0.025390539318323135,-0.03947261720895767,0.01069206278771162,-0.10800350457429886,-0.0885748639702797,-0.028558215126395226,0.001494258176535368,-0.008456286042928696,-0.010814838111400604,-0.09077721834182739,-0.08454012870788574,-0.04104447737336159,-0.044575776904821396,0.057026561349630356,0.009152084589004517,-0.10678020864725113,0.060635797679424286,-0.04404843598604202,0.08718013018369675,0.006630306597799063,-0.019222993403673172,-0.05040811374783516,-0.028895340859889984,0.04809362441301346,-0.045735593885183334,0.008721886202692986,-0.04806610569357872,0.09700479358434677,-0.04118719324469566,0.037164945155382156,0.029651939868927002,-0.010046803392469883,-0.0006987352971918881,0.05481906607747078,-0.02723943442106247,-0.04318160191178322,-0.0033617012668401003,-0.03270907700061798,-0.0034105253871530294,-0.035094037652015686,0.009329729713499546,-0.05923163890838623,0.05535439774394035,0.06785941869020462,0.036533549427986145,0.11366841942071915,-0.13649408519268036,-0.10681743919849396,-0.024254774674773216,-0.0479535274207592,0.0643010213971138,0.027942165732383728,0.047625526785850525,0.03490026295185089,0.037784188985824585,0.03538758307695389,0.056018710136413574,-1.9829562977524944e-33,0.018388068303465843,0.03682773932814598,0.020487762987613678,0.01822895184159279,0.0018095187842845917,0.06718281656503677,-0.0822272002696991,0.06167919933795929,-0.0043180654756724834,0.05938436836004257,0.029537003487348557,0.06254333257675171,0.043527595698833466,0.023255566135048866,-0.08451291173696518,-0.04228828102350235,-0.011368042789399624,0.09528634697198868,-0.014785715378820896,-0.001554447109811008,-0.018384257331490517,0.06270449608564377,-0.011671817861497402,-0.02629195526242256,-0.033980049192905426,0.06232406198978424,-0.018859906122088432,-0.026732224971055984,-0.05929908901453018,0.008355200290679932,0.027178004384040833,-0.005514817778021097,-0.01771716959774494,-0.0005081831477582455,-0.033578500151634216,-0.09372956305742264,0.010121406987309456,-0.04412505403161049,-0.0828719437122345,0.05165110155940056,-0.03312137350440025,0.008961067534983158,-0.005804343149065971,0.014129968360066414,0.02948322333395481,-0.01924208179116249,-0.06145923584699631,-0.011936220340430737,-0.028570495545864105,0.016478797420859337,-0.04722397401928902,0.03145020455121994,0.06601668894290924,0.019387265667319298,0.03193264082074165,-0.011400696821510792,-0.08412151783704758,0.04929404333233833,-0.0048711104318499565,-0.02506263367831707,0.02545715682208538,0.049800772219896317,0.007401927374303341,0.03034578450024128,0.02035767212510109,-0.045956630259752274,-0.0020036192145198584,-0.013312163762748241,-0.016527565196156502,0.006749285385012627,-0.0679117888212204,0.007580967154353857,0.05892762169241905,-0.01996806263923645,-0.005106306169182062,-0.00015222460206132382,-0.02015187218785286,-0.011685310862958431,-0.047514256089925766,-0.11719390749931335,-0.010245964862406254,-0.019863959401845932,-0.015813631936907768,0.02790035679936409,0.010650634765625,-0.003955894615501165,0.06813421100378036,-0.1172420009970665,-0.0047392104752361774,0.06588642299175262,-0.040350254625082016,-0.018114306032657623,0.0366150438785553,-0.05200442299246788,-0.034390322864055634,6.721148960074926e-35,0.06311872601509094,0.03416847810149193,0.03560487553477287,0.004160633776336908,0.04120984300971031,-0.059533026069402695,-0.015568086877465248,-0.027128921821713448,-0.030400587245821953,0.0030140001326799393,-0.031649619340896606,-0.0233123991638422,0.09418702125549316,-0.001705912291072309,0.08638908714056015,-0.017618251964449883,0.07264000922441483,0.0107309240847826,-0.0229042898863554,0.010510318912565708,0.08036131411790848,-0.038477953523397446,-0.031745631247758865,-0.08890862762928009,-0.01781957596540451,0.07800667732954025,0.09951964765787125,-0.07366441935300827,-0.07941122353076935,0.06685154139995575,0.02514365315437317,0.0030773705802857876,-0.02344226837158203,0.02824665978550911,0.07638338953256607,0.03493920713663101,-0.11471741646528244,0.07559695839881897,0.05709359049797058,0.03684629872441292,-0.04590773209929466,-0.07302132993936539,0.03812615945935249,0.052585870027542114,0.033526159822940826,-0.048126570880413055,-0.03586174175143242,0.002442016964778304,-0.03948533162474632,0.0008610372897237539,-0.05811711400747299,-0.00257006729952991,0.0005577928968705237,-0.05553297698497772,-0.024396833032369614,-0.033741749823093414,-0.08181923627853394,-0.05033942684531212,0.04128757864236832,0.01778070256114006,0.05565819516777992,-0.000916552497074008,0.04491256922483444,-0.06131524592638016,0.016290048137307167,0.06569277495145798,-0.06069430708885193,0.035987816751003265,0.008826968260109425,0.057681065052747726,0.015778858214616776,-0.12027733027935028,-0.021984128281474113,0.09880374372005463,0.10813963413238525,0.06876730173826218,-0.00970476120710373,-0.05478603392839432,-0.018941793590784073,-0.044054239988327026,-0.11953701078891754,-0.02611660398542881,0.012544929049909115,-0.08229082822799683,-0.02599790319800377,0.044198546558618546,-0.021885212510824203,0.09623806923627853,0.13002441823482513,-0.06106564402580261,0.0615447498857975,-0.05277322232723236,0.07705279439687729,-0.015411670319736004,0.06884817779064178,-3.188407760035261e-8,-0.08926314860582352,-0.004594221245497465,0.028660209849476814,0.08580759167671204,-0.01656142622232437,-0.0577692836523056,-0.012248487211763859,-0.010991820134222507,-0.06945034861564636,0.05609540641307831,-0.07126352190971375,0.044671300798654556,0.04456351324915886,0.03792337700724602,0.1270214021205902,0.018579870462417603,0.01599803939461708,-0.15260852873325348,-0.09641847759485245,-0.059138886630535126,-0.0311321709305048,-0.051321227103471756,0.036966148763895035,-0.09431295841932297,-0.06349639594554901,0.050714489072561264,-0.03664335981011391,-0.06328514218330383,-0.02631206065416336,0.019776828587055206,0.10928834974765778,0.027933113276958466,-0.05804334208369255,-0.02835572324693203,0.07517208904027939,0.046457841992378235,0.0003883566823787987,-0.001730127725750208,0.10513582825660706,-0.0978352278470993,-0.027288611978292465,0.023676695302128792,0.025831319391727448,0.09378910809755325,0.08624041080474854,0.01890788972377777,0.02057141251862049,-0.0267636701464653,-0.010169866494834423,-0.037580203264951706,-0.05181831121444702,-0.003452801378443837,0.04279361292719841,-0.02373560704290867,0.004469216801226139,-0.03316868096590042,-0.03871260583400726,0.04469317942857742,-0.023014100268483162,-0.000133504145196639,0.01010288204997778,0.04896589368581772,-0.0911710187792778,-0.10864513367414474]},{"text":"And yet, against their will, they had developed a certain respect for the efficiency with which the animals were managing their own affairs.","book":"Animal Farm","chapter":50,"embedding":[0.008133042603731155,0.09088429808616638,0.035752952098846436,0.07914681732654572,-0.02142917923629284,-0.027315335348248482,-0.018351349979639053,-0.07238133996725082,-0.025196488946676254,0.08393064141273499,0.05951675772666931,0.06650422513484955,0.0023679379373788834,0.017207449302077293,-0.04050857201218605,0.020392144098877907,-0.010651855729520321,0.018126847222447395,-0.02657308243215084,0.08478634804487228,-0.0559358112514019,-0.009973695501685143,0.07412324100732803,0.06633426249027252,-0.06320139020681381,-0.01072259247303009,-0.06251168996095657,-0.026179179549217224,0.0286246445029974,0.016208834946155548,-0.0342884436249733,-0.04903753846883774,0.06952329725027084,0.03559359908103943,-0.04161425679922104,0.014597189612686634,0.07539860904216766,-0.05971033498644829,0.06466200202703476,-0.010893096216022968,0.05391330271959305,-0.03720627352595329,0.018008630722761154,-0.04433402046561241,-0.09231545776128769,-0.0235072523355484,-0.048895809799432755,-0.05253906920552254,-0.0024700567591935396,-0.04431562125682831,0.038630060851573944,-0.040603090077638626,-0.04525831341743469,-0.13500778377056122,-0.0034884160850197077,-0.0019619748927652836,-0.025215988978743553,-0.06833624839782715,0.027845993638038635,-0.07725771516561508,0.027134055271744728,-0.0029289547819644213,0.005787072237581015,0.04834117740392685,-0.009920427575707436,-0.0025914304424077272,0.013706381432712078,0.0639786571264267,-0.13081328570842743,0.026586685329675674,0.020802641287446022,-0.07780302315950394,0.02773302048444748,-0.11845988035202026,-0.05688733980059624,-0.03571357578039169,0.004477632697671652,0.015538287349045277,0.03299526125192642,-0.12880916893482208,-0.005706191528588533,0.03865424543619156,-0.013040268793702126,0.06590809673070908,0.07330620288848877,-0.021322183310985565,-0.007403089199215174,-0.12187648564577103,0.06532667577266693,0.003123853588476777,-0.006587168201804161,-0.08835747838020325,0.0077869100496172905,-0.026461008936166763,0.04186316207051277,0.004612010437995195,0.040159162133932114,-0.00043022329919040203,0.0030347814317792654,0.0044367071241140366,-0.003117338055744767,-0.004396564792841673,-0.11702114343643188,-0.010248810984194279,0.019524406641721725,-0.038589637726545334,-0.11158357560634613,-0.035350654274225235,-0.008383326232433319,0.06808937340974808,-0.06960811465978622,0.009186320006847382,0.021703198552131653,0.1420004814863205,0.09226002544164658,0.0773875042796135,-0.09427700191736221,-0.016122104600071907,0.004537155851721764,-0.001415684469975531,0.05616646632552147,-0.034897126257419586,-0.04629197716712952,0.009324365295469761,0.005821076221764088,-0.013369043357670307,-0.01596968062222004,-4.140673340641738e-33,0.01706962287425995,-0.09315312653779984,-0.02169603295624256,-0.019372733309864998,0.0091211823746562,0.018571609631180763,-0.0644805058836937,0.010388853028416634,0.015459468588232994,-0.0362212136387825,-0.04114909470081329,0.049206480383872986,0.01974191889166832,-0.05094466730952263,0.01145458035171032,-0.04348279908299446,-0.036857835948467255,-0.0057739801704883575,0.13818693161010742,-0.02905421145260334,-0.028454367071390152,0.08547830581665039,0.016949882730841637,-0.030861299484968185,0.04672878235578537,-0.06949636340141296,-0.04600313678383827,-0.02937260828912258,-0.05399893969297409,0.049415748566389084,0.06876589357852936,-0.07195982336997986,-0.064093679189682,0.016009211540222168,-0.0086213992908597,0.029022131115198135,-0.02120172418653965,-0.043304212391376495,0.013915713876485825,0.038931820541620255,0.046425387263298035,-0.004898830782622099,0.06082786247134209,-0.026744099333882332,0.008244953118264675,0.05512971803545952,-0.019255755469202995,-0.01639002375304699,-0.061027947813272476,0.07988391816616058,-0.0111782755702734,0.05644655227661133,0.017677586525678635,-0.09222874790430069,0.03287714347243309,0.012157054618000984,0.0020978974644094706,0.12586823105812073,-0.0937357097864151,0.03832078352570534,-0.02738514356315136,0.044917650520801544,0.002605333924293518,0.04047255963087082,0.029278267174959183,-0.026326537132263184,0.0048767877742648125,0.007701420690864325,-0.01819879747927189,0.007735599763691425,-0.01558744627982378,0.02757447585463524,-0.0699133425951004,-0.10034296661615372,-0.04485492408275604,0.010609760880470276,0.08608970791101456,-0.041114117950201035,-0.053875863552093506,-0.06836944818496704,-0.00788882002234459,0.03690657019615173,-0.045809436589479446,0.025172708556056023,0.041959501802921295,0.019277682527899742,0.0736154168844223,-0.03636286407709122,0.07464125752449036,0.024911954998970032,0.01378855761140585,0.04635590314865112,-0.009574757888913155,-0.0630795806646347,-0.008942174725234509,1.3124611158701773e-33,0.004884023219347,0.0046996623277664185,-0.008462819270789623,0.044425155967473984,-0.01849512942135334,-0.004703768528997898,-0.07278280705213547,-0.0872432067990303,-0.009832135401666164,0.0007936848560348153,-0.08029907941818237,-0.01570843532681465,-0.03702104464173317,0.016473693773150444,0.016401059925556183,-0.0768168568611145,0.01402572076767683,-0.04142113775014877,-0.0012949510710313916,-0.0932115986943245,-0.02108415588736534,0.07131402939558029,0.039181482046842575,0.04341232031583786,-0.01923246681690216,0.11488908529281616,-0.1085699126124382,-0.05389349162578583,-0.038022324442863464,-0.0952962189912796,0.016508452594280243,-0.02815878763794899,-0.013455955311655998,0.009024432860314846,0.03098318725824356,-0.023635298013687134,-0.039012398570775986,0.05750123783946037,-0.00968903861939907,-0.023446999490261078,-0.02115829661488533,-0.010593404993414879,-0.04139222949743271,0.03760828822851181,-0.003768917405977845,0.0433087982237339,-0.008228834718465805,-0.022526750341057777,0.03573823347687721,0.0656752735376358,0.018143808469176292,-0.00933068711310625,0.029760731384158134,-0.02068624459207058,-0.029750531539320946,-0.05016430839896202,0.07141935080289841,-0.02703007496893406,0.10355233401060104,-0.039438966661691666,-0.02306286431849003,-0.008205369114875793,0.017460092902183533,0.06167961284518242,-0.036499738693237305,-0.0012708107242360711,-0.020754314959049225,-0.0062147947028279305,0.15440808236598969,-0.008208989165723324,0.008524750359356403,0.04070655629038811,-0.07666955888271332,0.012732273899018764,-0.004275118000805378,0.09121419489383698,-0.0131807466968894,-0.04939504340291023,0.01794659160077572,0.05231970176100731,-0.010770898312330246,-0.010758677497506142,0.024268005043268204,0.008655698969960213,-0.06363669037818909,0.005603151861578226,-0.003009191481396556,0.0326077900826931,0.06284576654434204,0.02538101002573967,0.013244380243122578,-0.07967895269393921,0.05813387408852577,0.01926599256694317,-0.016071099787950516,-2.466734194683795e-8,-0.03174380958080292,-0.0005258156452327967,0.06766745448112488,0.10700968652963638,0.05092652514576912,-0.029550498351454735,-0.007995231077075005,0.028363898396492004,-0.02563687041401863,0.11378079652786255,-0.024410778656601906,0.03881577402353287,0.057008545845746994,0.13419273495674133,0.018250543624162674,0.05434265360236168,0.0838959738612175,-0.06984823197126389,-0.05282057821750641,0.03436990827322006,-0.04680585488677025,0.04226122796535492,-0.0674843043088913,-0.0936814621090889,-0.06409601867198944,-0.023023197427392006,-0.1200118437409401,-0.03921777755022049,0.010780851356685162,0.07927027344703674,0.03455493599176407,-0.027493804693222046,-0.06942638754844666,-0.0451902337372303,-0.05799653008580208,0.003615529043599963,-0.0532279796898365,-0.07777249813079834,0.10528905689716339,-0.07412096112966537,-0.023399604484438896,0.13413648307323456,0.05860675871372223,0.0751291811466217,0.061527151614427567,-0.06013403832912445,0.020549362525343895,0.05594892427325249,0.004215630237013102,-0.04939039796590805,-0.02821388468146324,0.0632161945104599,0.02147950790822506,-0.005919188726693392,0.004303249064832926,-0.037980832159519196,0.04334619268774986,-0.02478763647377491,-0.06283143162727356,0.034278955310583115,-0.01198367029428482,0.05921429395675659,0.012863921001553535,0.034673016518354416]},{"text":"Frederick of Pinchfield--but never, it was noticed, with both simultaneously.","book":"Animal Farm","chapter":50,"embedding":[-0.012698142789304256,0.01796666905283928,-0.021202823147177696,0.03691238909959793,-0.03577021136879921,-0.0033599594607949257,0.05751141905784607,0.018223237246274948,0.02193889394402504,-0.06883923709392548,0.08920918405056,0.0012758884113281965,0.0289139524102211,-0.009141287766397,-0.0832415521144867,0.0009401933057233691,-0.07163664698600769,0.011619585566222668,0.02196182683110237,0.006524704862385988,0.00470108212903142,-0.08689627051353455,0.053801409900188446,-0.05986283719539642,0.05583924055099487,0.011711196973919868,0.019780555739998817,0.035811346024274826,0.03919417783617973,-0.03820556029677391,-0.05050422251224518,-0.01610003411769867,-0.040623996406793594,0.037462253123521805,0.023021025583148003,0.006245889235287905,0.030025839805603027,0.08445432037115097,0.05635564401745796,0.04274749755859375,-0.02973073720932007,-0.07062184810638428,-0.013909897767007351,-0.0409797765314579,-0.05697142705321312,-0.012402619235217571,0.028111733496189117,0.07339699566364288,-0.07795986533164978,0.01888180896639824,-0.06098422035574913,-0.042536813765764236,0.03537885472178459,-0.026657598093152046,0.05352071672677994,0.07146049290895462,-0.03636109083890915,0.039677493274211884,0.023529620841145515,0.053016748279333115,-0.023184869438409805,-0.012970669195055962,-0.0003260284720454365,0.03228689730167389,0.03414838761091232,-0.0283610038459301,-0.07062555849552155,-0.08077853173017502,0.05381370708346367,-0.034980952739715576,0.059275366365909576,0.02222113311290741,0.014281571842730045,-0.07747329026460648,-0.0308362003415823,-0.009953695349395275,-0.002913158852607012,0.048773493617773056,-0.06800483167171478,-0.04065660014748573,-0.06188274174928665,-0.056598495692014694,-0.071969173848629,-0.018902448937296867,0.012500371783971786,-0.08201949298381805,0.01869817078113556,0.021542726084589958,-0.03865378722548485,-0.028090819716453552,-0.03106754831969738,-0.040331993252038956,-0.05742097645998001,0.044006459414958954,-0.05746517702937126,0.044666267931461334,-0.028309449553489685,0.08406074345111847,-0.048623211681842804,0.0030357830692082644,0.01816057413816452,-0.005960204638540745,0.03534228727221489,0.10432024300098419,0.10743749141693115,-0.029166260734200478,-0.03470437973737717,-0.05790429934859276,-0.0379289910197258,-0.03798362612724304,0.05397393926978111,0.02861631289124489,0.04476214572787285,0.04162419214844704,-0.05805740877985954,-0.039736032485961914,-0.01725776307284832,0.005804778542369604,-0.029994547367095947,0.0049259355291724205,0.0327305942773819,-0.004357388708740473,-0.029338601976633072,0.03181419149041176,-0.04943007975816727,0.14316825568675995,0.05175941810011864,-4.766763305066782e-33,-0.023748936131596565,-0.04375481605529785,-0.011770892888307571,0.02754656970500946,-0.023566436022520065,0.04903288558125496,-0.03434383496642113,0.06780022382736206,-0.014994194731116295,0.012552309781312943,0.08975280076265335,-0.045880597084760666,-0.004661606624722481,-0.08898474276065826,-0.07388131320476532,-0.015550180338323116,0.0004514503525570035,0.018328841775655746,0.004993094597011805,0.021249404177069664,0.03555312752723694,0.17023953795433044,-0.029559344053268433,-0.03153011575341225,-0.021183526143431664,0.029393743723630905,0.02073141746222973,-0.06491057574748993,0.07869473844766617,0.04428175836801529,0.042025282979011536,0.03078126348555088,0.0323304608464241,0.005592915695160627,0.05732494592666626,-0.006310500204563141,0.027230627834796906,-0.12160805612802505,-0.08231527358293533,-0.004676312208175659,0.0005703409551642835,-0.011587212793529034,0.058013059198856354,-0.08062213659286499,-0.05473767966032028,-0.06746134907007217,-0.09476783871650696,0.04652189463376999,0.02411189302802086,-0.07070032507181168,0.030410906299948692,0.016143478453159332,0.06626173108816147,0.037082258611917496,0.09435506165027618,0.01783699356019497,-0.019204573705792427,0.06491605937480927,0.000970993482042104,0.09225205332040787,-0.0263366661965847,0.08735194802284241,-0.011107893660664558,-0.0005406923010013998,0.0055451649241149426,0.024278659373521805,0.037467945367097855,0.004316364414989948,-0.04247099161148071,0.06436682492494583,-0.04263370484113693,0.06897912919521332,-0.04897059500217438,-0.04713421314954758,-0.07587709277868271,-0.07968209683895111,-0.01744304597377777,0.12236204743385315,0.029407259076833725,-0.05258883908390999,-0.009177562780678272,0.0034382925368845463,0.06277387589216232,0.011872552335262299,-0.04700833559036255,-0.009638724848628044,0.017740365117788315,0.024794111028313637,-0.07450831681489944,0.02921491302549839,-0.0048775323666632175,0.11181002110242844,-0.011295394971966743,-0.07312528789043427,-0.054248858243227005,2.0880631251312692e-33,-0.05442916974425316,-0.029413698241114616,0.05455750226974487,0.0594809353351593,0.038505952805280685,0.0022470070980489254,-0.02706516906619072,-0.01922578737139702,-0.06016101688146591,-0.024263471364974976,0.07806253433227539,-0.04067885875701904,-0.04163471981883049,0.01948539912700653,0.020471731200814247,0.01478846836835146,-0.0027237124741077423,-0.02341606467962265,-0.01660836488008499,0.039648860692977905,-0.013825980946421623,-0.07649447023868561,-0.006947644054889679,0.02472681552171707,-0.12869124114513397,0.07396869361400604,-0.009149509482085705,-0.05714523792266846,-0.18021903932094574,0.03804914280772209,0.0028055720031261444,0.10006041079759598,-0.08152712136507034,-0.05263011157512665,-0.026387231424450874,0.04012337327003479,-0.03453151881694794,0.018208308145403862,0.019687548279762268,0.00995984673500061,-0.02890787087380886,-0.008307539857923985,-0.006749042309820652,0.15140163898468018,-0.004898812156170607,-0.0095346849411726,-0.022255420684814453,0.034830354154109955,-0.06259552389383316,0.016010655090212822,-0.1503860205411911,0.046845242381095886,-0.09404727071523666,-0.005945437587797642,-0.029849272221326828,-0.003009177278727293,0.01821456290781498,-0.05103352665901184,0.03189060464501381,0.06438622623682022,0.047020506113767624,-0.01360852736979723,-0.06613475829362869,-0.04716375470161438,0.07692396640777588,0.06699666380882263,-0.05395619198679924,0.0396450012922287,0.03336454927921295,-0.0023584451992064714,0.08895674347877502,0.022707873955368996,-0.02835138700902462,-0.03649440035223961,-0.02405504509806633,0.16203124821186066,0.014006621204316616,-0.06345527619123459,-0.016933823004364967,-0.027590680867433548,-0.04315315559506416,-0.019637225195765495,-0.03241609036922455,0.07756134122610092,-0.016696378588676453,0.05256165191531181,-0.012812362983822823,-0.05519290268421173,-0.05577217787504196,0.006564377807080746,-0.0058204010128974915,-0.034778714179992676,0.028010165318846703,-0.10053330659866333,0.043882206082344055,-2.2712454139650617e-8,-0.05343843623995781,0.16410945355892181,-0.012580088339745998,-0.05478263273835182,0.06910759210586548,-0.026589691638946533,0.030368182808160782,-0.016940198838710785,-0.0353655107319355,0.03241995349526405,-0.09003467857837677,0.050299204885959625,0.007197332102805376,0.012020266614854336,0.09936296939849854,-0.06340761482715607,-0.011510410346090794,-0.06290114670991898,-0.074775829911232,0.07513657212257385,0.03944738581776619,0.014498041942715645,0.019570771604776382,-0.01851489208638668,-0.07726525515317917,0.015769505873322487,0.01730027049779892,-0.007645823992788792,0.05383768305182457,-0.06001150608062744,0.04471210017800331,-0.027870170772075653,0.005482300650328398,-0.00808737426996231,0.0332106351852417,0.04708361253142357,-0.013504760339856148,-0.013289988972246647,0.01906585693359375,-0.05250203236937523,-0.011471048928797245,-0.020158493891358376,-0.004185972735285759,0.04949982836842537,0.07179921865463257,0.08083931356668472,0.08004108816385269,-0.002096195239573717,0.013941816054284573,0.05292969197034836,-0.050525400787591934,0.044229283928871155,0.018286120146512985,0.036437585949897766,0.01974739320576191,-0.03559058532118797,-0.003470592899248004,0.02369154617190361,0.046662554144859314,-0.04421697184443474,0.013070921413600445,-0.07866435497999191,-0.05244588106870651,0.06111833453178406]},{"text":"Nevertheless, some of the animals were disturbed when they heard that the pigs not only took their meals in the kitchen and used the drawing-room as a recreation room, but also slept in the beds.","book":"Animal Farm","chapter":51,"embedding":[0.1298615038394928,0.039114002138376236,0.018283165991306305,0.08063868433237076,0.009442268870770931,0.01952132023870945,-0.03132553771138191,-0.07049185782670975,0.034050196409225464,0.021313071250915527,0.009315906092524529,-0.03225750848650932,0.06193052604794502,0.04913635924458504,0.018820662051439285,-0.06307234615087509,0.04960232973098755,-0.007561737205833197,0.046468961983919144,0.025590980425477028,-0.023773642256855965,-0.00976511463522911,0.10237354785203934,-0.012910149991512299,0.033689241856336594,-0.05535474792122841,-0.016141340136528015,-0.006315751001238823,0.03228674456477165,-0.041770514100790024,-0.043109335005283356,0.05000414326786995,-0.02241174876689911,-0.062380801886320114,0.04165227338671684,0.010543565265834332,0.062371689826250076,0.05030553787946701,0.08860182762145996,-0.0017954213544726372,-0.01067735068500042,-0.03461821377277374,0.021784024313092232,-0.058100178837776184,-0.06708864122629166,-0.00038161975680850446,-0.09493625164031982,-0.06901723146438599,0.03141890838742256,-0.0471186637878418,0.014184635132551193,0.04688246548175812,-0.04096575453877449,-0.04969525709748268,-0.0063317385502159595,-0.050322141498327255,0.00616231607273221,-0.057000137865543365,0.04930372163653374,-0.08288555592298508,0.041159048676490784,0.03256101906299591,0.08000940084457397,0.04628491774201393,-0.03399098664522171,-0.020450837910175323,-0.025880765169858932,0.03188440948724747,0.025866443291306496,-0.04848586022853851,-0.03238924592733383,-0.04313237965106964,0.038488008081912994,-0.08747410029172897,-0.005334431305527687,0.007963831536471844,-0.0010088756680488586,-0.032740868628025055,0.061733976006507874,-0.09026233851909637,-0.06620168685913086,-0.032920707017183304,-0.027888085693120956,0.028844019398093224,0.01060875877737999,0.024508250877261162,-0.04138904809951782,0.022995956242084503,-0.0643630102276802,0.008550848811864853,0.03587925434112549,-0.0364755243062973,-0.017969448119401932,0.01720534637570381,0.1273382008075714,-0.0479448027908802,-0.05252809450030327,0.02029152400791645,-0.004639614373445511,0.0290646031498909,0.0018344209529459476,0.05553152412176132,0.07821100205183029,-0.0076705049723386765,0.04875240474939346,-0.0476856455206871,-0.05513640120625496,-0.027472155168652534,-0.03590644896030426,-0.023624947294592857,-0.096836157143116,0.022489720955491066,0.06551165133714676,0.12483241409063339,0.04763371869921684,0.07757976651191711,0.049297697842121124,-0.07455506175756454,-0.022448431700468063,0.05824796482920647,0.1220998540520668,0.05794321000576019,0.002448136219754815,0.009185120463371277,0.002820516936480999,-0.004799425136297941,0.023837517946958542,-2.2199016124027045e-33,0.045844320207834244,-0.07978089898824692,-0.06162487342953682,-0.002586230169981718,0.18804931640625,0.00658276816830039,-0.07044678926467896,0.058875612914562225,0.11058422923088074,0.035773951560258865,-0.03134430944919586,-0.0343034565448761,0.03517068177461624,-0.01512284018099308,-0.017342323437333107,0.02186969853937626,-0.0009734681225381792,-0.016578130424022675,0.027079390361905098,-0.004669012036174536,-0.08209768682718277,0.0453152135014534,0.04112119972705841,0.06878488510847092,-0.022114431485533714,0.01799694262444973,-0.02573675662279129,-0.0582440085709095,-0.02426740899682045,0.03277251124382019,-0.02289155311882496,-0.08893086016178131,-0.05114591494202614,-0.020916925743222237,-0.02773568592965603,-0.05469493195414543,0.0527995303273201,-0.042593635618686676,-0.04634448140859604,-0.016016779467463493,0.0354456789791584,-0.036704905331134796,0.06404361128807068,0.007637751288712025,-0.020422987639904022,0.08677095174789429,-0.032625649124383926,0.05466324836015701,-0.08474317938089371,0.028966929763555527,0.03234364837408066,0.04140865057706833,-0.01296944823116064,0.01678808033466339,0.0037195768672972918,-0.007051789201796055,0.037791941314935684,-0.05851765722036362,-0.035654839128255844,0.0336771085858345,0.05594062805175781,0.09154470264911652,-0.0135177718475461,0.003815686097368598,0.00797653291374445,-0.09286561608314514,-0.01930449716746807,-0.017032088711857796,-0.03227926790714264,-0.07175793498754501,-0.05581698939204216,-0.006890677381306887,-0.03361530601978302,-0.08631806820631027,-0.060978494584560394,-0.0738481804728508,-0.040426261723041534,0.012808321975171566,-0.06453510373830795,-0.1125137135386467,0.16967542469501495,0.0027078352868556976,-0.08546873927116394,0.011624200269579887,-0.0316593237221241,0.08962501585483551,0.09745534509420395,0.0033434221986681223,0.002149308333173394,-0.00597890792414546,-0.04011038690805435,-0.005551828071475029,0.030874714255332947,-0.09681043773889542,0.0038629192858934402,6.720952317318778e-34,-0.06309182196855545,-0.00878108199685812,-0.09363658726215363,0.014486419968307018,-0.020292147994041443,-0.024236498400568962,-0.006592205259948969,-0.07188357412815094,0.027946868911385536,-0.0331585668027401,-0.061718642711639404,-0.05148874968290329,-0.008013351820409298,-0.005384115502238274,0.07216226309537888,-0.06246643885970116,0.027771512046456337,-0.05640178546309471,0.020131126046180725,-0.04360228404402733,-0.04013488441705704,-0.011461285874247551,0.0013711197534576058,-0.05011478811502457,0.03987361118197441,0.11047588288784027,-0.0435214564204216,0.027873210608959198,-0.00143968197517097,-0.021128037944436073,0.011443191207945347,-0.024562157690525055,0.02321568876504898,0.009110133163630962,0.05762628838419914,-0.05489997938275337,-0.009879020042717457,0.021805260330438614,-0.09519315510988235,-0.04202260449528694,0.07246463000774384,-0.03534726798534393,-0.1436951607465744,0.0648757666349411,0.0046422481536865234,0.10557719320058823,-0.04105560854077339,-0.03847431391477585,-0.020108317956328392,0.0018565973732620478,0.047388866543769836,-0.01380505133420229,0.007853868417441845,-0.103548564016819,-0.042501404881477356,0.052486877888441086,0.036639951169490814,-0.0249638594686985,0.09434518963098526,0.047953952103853226,-0.000008684824024385307,0.045861754566431046,-0.0720033273100853,-0.007607228122651577,-0.01506485790014267,-0.009733127430081367,-0.050175733864307404,-0.028015490621328354,0.08769908547401428,0.01956649124622345,0.02783452905714512,0.06303201615810394,-0.000604374916292727,0.02875235117971897,0.04144320264458656,0.11324058473110199,0.0019725821912288666,-0.012432214803993702,0.018877824768424034,-0.08267010003328323,-0.0579848550260067,-0.0953328013420105,0.03786787763237953,0.029072722420096397,-0.018190793693065643,-0.04742259159684181,-0.03687482327222824,0.08364281803369522,-0.0230927262455225,-0.009203637950122356,0.029711255803704262,0.001346887438558042,0.027269016951322556,0.010834584943950176,0.0927651897072792,-2.8392415529765458e-8,-0.038479890674352646,-0.014204890467226505,0.0160453412681818,0.0062560876831412315,0.06262975931167603,-0.05968838930130005,0.08287332952022552,-0.014152374118566513,0.034450605511665344,0.08886951953172684,-0.061795853078365326,0.01735025830566883,0.029932556673884392,0.040296025574207306,-0.005490325391292572,0.08596755564212799,0.07597189396619797,-0.028039420023560524,-0.01891332119703293,0.011699890717864037,0.031470414251089096,-0.00025486157392151654,-0.07454396039247513,-0.06029977276921272,-0.008329015225172043,-0.03433697298169136,-0.07228543609380722,0.01152868289500475,-0.023971326649188995,0.03340592980384827,0.0549524761736393,-0.005030840635299683,0.00783461332321167,-0.026249684393405914,-0.03442635014653206,-0.01475718803703785,-0.01858484372496605,-0.06645499169826508,0.08689585328102112,-0.022840717807412148,-0.07062746584415436,-0.01582302153110504,-0.024451756849884987,-0.0337466225028038,0.032091304659843445,-0.04514038935303688,0.04074431583285332,0.04462777078151703,-0.04668264091014862,0.04551875963807106,-0.11106143146753311,0.07485835999250412,0.05199427902698517,0.028241071850061417,-0.0014774055453017354,-0.1008089929819107,0.05234835669398308,-0.03126285597681999,0.042255256325006485,0.026455042883753777,-0.004029612988233566,0.09013737738132477,-0.07786345481872559,0.0003815495001617819]},{"text":"And Squealer, who happened to be passing at this moment, attended by two or three dogs, was able to put the whole matter in its proper perspective. \"You have heard then, comrades,\" he said, \"that we pigs now sleep in the beds of the farmhouse?","book":"Animal Farm","chapter":51,"embedding":[0.020060919225215912,-0.015480822883546352,0.005633336026221514,0.050058797001838684,0.046072639524936676,-0.004753708839416504,-0.022747593000531197,-0.046712178736925125,-0.001501024467870593,-0.04189632087945938,0.07928021997213364,0.004070529248565435,0.06146273389458656,0.061669327318668365,-0.03131191059947014,0.02595493011176586,-0.08434746414422989,0.02827070839703083,0.027893777936697006,0.0006420769495889544,-0.03581060469150543,0.020042505115270615,0.10493326932191849,0.014933344908058643,0.04383723810315132,-0.029006602242588997,0.014730839058756828,-0.015492246486246586,-0.009471512399613857,0.0164735596626997,0.010830783285200596,-0.045699309557676315,-0.02117624133825302,-0.036523304879665375,-0.030449436977505684,0.015187629498541355,0.11446340382099152,0.0672943964600563,0.15400470793247223,0.04108448699116707,-0.01070714183151722,-0.06711404025554657,0.02160397730767727,-0.06360507011413574,-0.002654162934049964,0.06110605597496033,-0.03158043324947357,0.006138266064226627,0.0690794587135315,-0.025701910257339478,-0.016154976561665535,0.028517017140984535,-0.014320324175059795,-0.09219205379486084,-0.011492910794913769,-0.01626359112560749,-0.04277150332927704,0.011595119722187519,0.009618295356631279,0.0009828025940805674,0.0004681255668401718,0.04084181413054466,0.05364125221967697,0.06752656400203705,-0.01421684306114912,-0.022089239209890366,-0.018021343275904655,0.0001752669340930879,-0.07134994864463806,0.061825189739465714,-0.024533942341804504,-0.030545499175786972,-0.01141796912997961,-0.09482724219560623,-0.0405237153172493,-0.0966767743229866,0.013330970890820026,0.02767648547887802,0.07468203455209732,-0.02580839768052101,0.011362525634467602,-0.02764417789876461,-0.016862832009792328,-0.0013585882261395454,-0.027459125965833664,-0.03512448072433472,0.04052727296948433,-0.02973160333931446,-0.06090317666530609,0.007323789410293102,-0.037485722452402115,-0.16071802377700806,-0.04909252002835274,0.09951616823673248,0.07636367529630661,-0.025671668350696564,-0.0896843746304512,0.0989973321557045,-0.049106698483228683,-0.008284108713269234,-0.00666771037504077,-0.006563936360180378,0.048679713159799576,-0.045541536062955856,0.019391484558582306,-0.021088533103466034,-0.06557811051607132,0.011358862742781639,-0.011609643697738647,0.02989819087088108,-0.05205369368195534,-0.013483991846442223,0.0018577637383714318,0.07970751076936722,0.08215773105621338,0.07396018505096436,-0.017776697874069214,-0.06844530254602432,-0.05900683254003525,-0.025765422731637955,0.10357789695262909,0.09112745523452759,-0.04899203032255173,0.0943685993552208,0.08949559181928635,-0.03756081312894821,0.02731483243405819,-1.1467905236496342e-33,0.03488105908036232,-0.007280360907316208,-0.04413650929927826,0.04199908301234245,0.10366052389144897,-0.004205969162285328,-0.08946042507886887,0.012244243174791336,0.08849355578422546,0.05679568275809288,-0.03835427388548851,-0.06960462033748627,0.023272540420293808,-0.09714100509881973,-0.08800792694091797,0.0392565056681633,-0.08618011325597763,0.028101744130253792,0.041921909898519516,-0.06006667762994766,-0.04720839485526085,0.06047758832573891,-0.01469805371016264,0.028756573796272278,0.04957323148846626,-0.032707326114177704,0.05200253427028656,-0.07942002266645432,0.01049652136862278,0.007110266480594873,0.03336164355278015,0.003145709866657853,-0.03921228647232056,0.008282169699668884,-0.010800018906593323,0.0060752336867153645,0.009359288960695267,-0.0817115306854248,-0.061673346906900406,0.05524779483675957,0.05318804085254669,-0.003015808993950486,0.047917742282152176,0.0332687608897686,-0.01998882368206978,-0.012514503672719002,-0.05494992434978485,0.0838238000869751,-0.03626510873436928,-0.029668057337403297,0.036404434591531754,0.025978801771998405,-0.015048968605697155,0.03134920448064804,0.06859615445137024,-0.004459424875676632,-0.009264900349080563,0.025090977549552917,0.012574192136526108,0.026544345542788506,0.03471413627266884,0.01705757901072502,0.003055599518120289,-0.062044739723205566,-0.025325629860162735,-0.11162377893924713,-0.08206593990325928,-0.0028760137502104044,-0.09302883595228195,0.03736431896686554,0.0025950148701667786,-0.020086750388145447,-0.03859266638755798,-0.0709335207939148,-0.07674524188041687,-0.004583974834531546,0.0030027872417122126,0.07583289593458176,0.01083757821470499,-0.11912848800420761,0.05986184626817703,0.02176271192729473,-0.012830626219511032,0.0021627238020300865,-0.07615138590335846,0.07698126882314682,0.07839272916316986,-0.09622028470039368,-0.04434623941779137,-0.027366768568754196,-0.09344017505645752,-0.0007388846133835614,0.000571583688724786,-0.07711873203516006,-0.04357065260410309,-1.4804259424557393e-33,-0.06407339125871658,0.004303437657654285,0.04261977598071098,0.11712180823087692,-0.010385783389210701,0.015347720123827457,-0.03216066583991051,-0.015258514322340488,-0.016775237396359444,-0.036018118262290955,-0.026612406596541405,-0.008323987945914268,0.025619948282837868,0.013836328871548176,0.08232008665800095,0.03185490891337395,0.05639775097370148,-0.0990343987941742,-0.010692037642002106,0.02709987945854664,-0.04470996931195259,-0.041539255529642105,0.012811255641281605,-0.026142125949263573,0.02088264189660549,0.09201350808143616,0.04234761372208595,-0.0023214174434542656,0.015606718137860298,-0.07565996795892715,-0.02867102064192295,-0.09098459035158157,-0.028426630422472954,-0.046698205173015594,0.035734858363866806,0.04418404400348663,0.05179799348115921,-0.028767360374331474,-0.08317694067955017,-0.055363163352012634,0.032161980867385864,-0.04438482224941254,-0.09444115310907364,0.058374665677547455,-0.011887636035680771,0.06277794390916824,-0.011083866469562054,-0.05027588829398155,-0.0004282795125618577,0.0035889921709895134,-0.05761804059147835,0.04610619693994522,-0.012367061339318752,0.004477156791836023,-0.04796188697218895,0.05111315846443176,-0.010973531752824783,-0.043156612664461136,0.08406582474708557,-0.04699961468577385,-0.051902350038290024,0.05902852863073349,-0.05670810863375664,0.017338713631033897,0.017619887366890907,-0.034779638051986694,-0.07477153092622757,-0.01877778023481369,0.02608533762395382,0.0098743736743927,0.011368741281330585,-0.04899755120277405,-0.05121279135346413,-0.008196167647838593,0.021175744011998177,0.06820344924926758,0.009112645871937275,-0.08702224493026733,-0.07142379879951477,-0.028927164152264595,-0.02475413866341114,-0.11864112317562103,0.020773479714989662,0.01005562860518694,0.05394653603434563,-0.09544796496629715,0.02666439116001129,0.06838276982307434,0.05528353899717331,-0.0038042652886360884,0.009579583071172237,-0.041186846792697906,0.08324132859706879,-0.08148271590471268,0.01376399677246809,-4.086094662625328e-8,-0.05926207825541496,0.05879839137196541,-0.03813428059220314,0.0029098382219672203,0.046285007148981094,-0.02474767342209816,0.040463436394929886,0.01569671556353569,-0.11764299124479294,0.10723740607500076,-0.07102067768573761,0.02842472307384014,0.029102366417646408,0.047860708087682724,0.0701887458562851,0.054256319999694824,-0.008775979280471802,-0.08890806138515472,-0.004299757536500692,0.02682073786854744,0.031177209690213203,0.018465107306838036,-0.06456245481967926,-0.032871976494789124,0.0016446184599772096,0.074151910841465,-0.0396101213991642,-0.009924488142132759,-0.058261170983314514,0.032630447298288345,0.003021674696356058,0.09454009681940079,-0.049330685287714005,-0.06141287460923195,-0.03286805748939514,-0.005650173407047987,0.046397481113672256,-0.007715046405792236,0.1071028858423233,-0.07543773949146271,-0.0470038466155529,0.05094398558139801,0.02454392798244953,0.05153653398156166,0.11385252326726913,0.0003294633061159402,0.023951200768351555,-0.006522598676383495,-0.005504915025085211,0.021899206563830376,-0.02980715222656727,0.08302389085292816,0.07843774557113647,0.048633694648742676,0.025823457166552544,-0.08141505718231201,-0.02232021652162075,-0.06416020542383194,0.05352175235748291,0.012989156879484653,-0.007399606518447399,0.018467631191015244,-0.034445520490407944,-0.02446802332997322]},{"text":"We have removed the sheets from the farmhouse beds, and sleep between blankets.","book":"Animal Farm","chapter":51,"embedding":[-0.011835425160825253,0.024335572496056557,0.002164948731660843,0.07435581088066101,0.08670316636562347,0.027996113523840904,-0.09307259321212769,-0.10164109617471695,0.0054390570148825645,0.06320573389530182,-0.004151236265897751,0.0468338243663311,0.024297494441270828,0.06435967236757278,0.06826305389404297,0.023500822484493256,-0.021637527272105217,-0.010434867814183235,0.05019597336649895,0.04726304113864899,-0.011006219312548637,0.010148472152650356,0.030909914523363113,0.000340095633873716,0.1282736361026764,-0.01778055541217327,-0.07960361242294312,-0.041170522570610046,0.03423291817307472,0.026069441810250282,0.02190740592777729,-0.0523446723818779,0.004840459208935499,-0.0059282779693603516,0.03644317761063576,0.05976533517241478,0.02778659760951996,-0.030138134956359863,-0.00680255563929677,0.010590997524559498,0.058098286390304565,0.0027630403637886047,-0.0012063640169799328,-0.06094953790307045,-0.022897057235240936,0.08886265754699707,-0.0525687150657177,-0.01756327413022518,0.04113214090466499,-0.012331841513514519,0.021970098838210106,0.05098738893866539,-0.06603626906871796,0.018268615007400513,-0.04547171667218208,0.009435733780264854,0.029874062165617943,0.010600849986076355,0.07904842495918274,0.017776694148778915,0.003858560463413596,0.08596736937761307,-0.0036630239337682724,0.022026153281331062,0.004648704081773758,0.013519074767827988,-0.01428019069135189,0.07364003360271454,0.05516357347369194,0.051838219165802,-0.09033645689487457,0.011160752736032009,0.01194723229855299,-0.03862958028912544,-0.034269463270902634,-0.03865552693605423,0.006990642286837101,-0.043052587658166885,0.009840423241257668,-0.09313125163316727,-0.08022117614746094,0.019477762281894684,0.03499902784824371,0.038821641355752945,-0.08904118090867996,0.024208134040236473,0.011805463582277298,0.049968719482421875,0.0187620148062706,-0.030723068863153458,0.08734027296304703,-0.04033888131380081,0.007971514947712421,0.10846731066703796,0.017997844144701958,0.02859170362353325,-0.07810799032449722,0.013385921716690063,0.00241105817258358,0.03007415309548378,-0.04583150893449783,0.06077194958925247,0.01270877756178379,-0.013300815597176552,-0.059720445424318314,-0.012456241995096207,-0.06084622070193291,-0.04029202088713646,-0.10792458057403564,-0.04118194058537483,-0.024513637647032738,0.03568429499864578,-0.045466382056474686,0.09345618635416031,0.006558707449585199,-0.022015195339918137,0.13631244003772736,0.027665138244628906,-0.01796126179397106,0.06574571877717972,0.052855562418699265,0.06394404917955399,0.01865703985095024,0.03642451390624046,0.004209340084344149,-0.0012826777528971434,-0.035060521215200424,-2.3956367321536902e-33,0.0337505005300045,0.04062463343143463,0.0018685865215957165,0.08748675882816315,0.06606258451938629,-0.016670402139425278,-0.1202533021569252,0.05067824199795723,0.08702592551708221,0.08381357043981552,-0.0053766281343996525,-0.03663382679224014,0.05933159962296486,-0.05695190653204918,-0.05097821354866028,-0.0187868420034647,-0.04508369415998459,-0.028183357790112495,0.04618719592690468,0.02880285121500492,-0.0673791766166687,0.03687603026628494,0.050567109137773514,0.0764046311378479,-0.006031426601111889,-0.054331619292497635,-0.013471775688230991,-0.02423114702105522,-0.0736977607011795,-0.0033227575477212667,0.057503409683704376,-0.03820522874593735,-0.04460865631699562,-0.023000670596957207,-0.02737022191286087,0.08547193557024002,0.009287558495998383,0.0008403403917327523,-0.0767643004655838,0.07297790050506592,-0.04602224379777908,0.060921087861061096,0.03523389622569084,0.042319800704717636,0.04852695390582085,-0.021219152957201004,0.08485696464776993,0.10633661597967148,0.009676224552094936,-0.059301018714904785,0.053891703486442566,0.010730207897722721,-0.10195694863796234,-0.09348512440919876,-0.04879162460565567,-0.0013070646673440933,-0.008997077122330666,-0.08751028031110764,0.030459564179182053,0.05157538875937462,0.10184439271688461,-0.09072640538215637,-0.015453466214239597,-0.11447151005268097,-0.03031826950609684,-0.11349532753229141,0.013013440184295177,0.04475782811641693,-0.052570123225450516,-0.09398074448108673,-0.03270063176751137,-0.03528950363397598,0.07567904144525528,0.0003689211152959615,0.01682124473154545,0.008178846910595894,0.002394519280642271,0.026566892862319946,0.03398679196834564,-0.11612997204065323,0.10623035579919815,0.01628706231713295,-0.03506803512573242,-0.013407712802290916,0.029122095555067062,-0.02051566354930401,-0.012316462583839893,0.04395975545048714,-0.06150909513235092,0.041088223457336426,-0.051401153206825256,0.02480560541152954,0.1097201257944107,-0.08883165568113327,-0.005829695146530867,6.829429323735559e-34,0.0005156685365363955,-0.06363078951835632,-0.07458560168743134,-0.009836276061832905,-0.023137247189879417,0.00924050621688366,-0.028627274557948112,-0.038918886333703995,-0.020654121413826942,0.04296586290001869,0.012773102149367332,-0.08425931632518768,0.022090619429945946,-0.015695257112383842,0.00886581465601921,-0.010721225291490555,-0.043823327869176865,-0.03413769230246544,-0.026625163853168488,-0.03405579552054405,-0.06278546899557114,-0.003970627672970295,0.07006096839904785,0.004843051545321941,0.005647123325616121,0.05115625262260437,-0.07406577467918396,0.0921388566493988,-0.03542022779583931,-0.04925723373889923,-0.0502316877245903,-0.10873334854841232,-0.05250255763530731,-0.08535492420196533,0.020746875554323196,0.03857377544045448,-0.04880733788013458,-0.007631336804479361,-0.04142293334007263,-0.059911809861660004,0.05595771595835686,-0.0430479496717453,-0.013213831931352615,0.004781490191817284,0.018202684819698334,0.06320483982563019,-0.11040547490119934,-0.01317738089710474,-0.05173251032829285,0.033200014382600784,0.013267798349261284,0.016836779192090034,-0.09258252382278442,-0.07946968078613281,-0.08509302884340286,0.039919622242450714,0.01842649281024933,-0.008566231466829777,-0.029520947486162186,0.12287192046642303,0.034944429993629456,0.0754007026553154,-0.04464464262127876,0.014224250800907612,0.03316816687583923,-0.02158980257809162,-0.05541377142071724,-0.018417365849018097,-0.0025576245971024036,0.04604937508702278,-0.08664663881063461,-0.07228294014930725,-0.0157588142901659,-0.05249830335378647,-0.004698353819549084,-0.02575048618018627,0.0310311671346426,-0.1314975917339325,-0.025477854534983635,-0.061858829110860825,-0.006604143418371677,-0.06618508696556091,0.0180322527885437,-0.032570622861385345,-0.002493323991075158,-0.05213627219200134,0.06808605045080185,-0.03110189363360405,-0.01016389299184084,-0.028253721073269844,-0.039893727749586105,-0.04045765474438667,0.08855143934488297,-0.0006043722969479859,0.06837102770805359,-2.0524458577142468e-8,-0.036657825112342834,0.01706431433558464,0.048003438860177994,0.0007418642053380609,-0.009728102013468742,-0.10429862886667252,0.059608928859233856,0.057400524616241455,0.0003505105269141495,-0.01470551174134016,-0.012462843209505081,0.013866479508578777,0.06034283712506294,0.0005696321022696793,0.035923637449741364,0.007342159748077393,0.01129621360450983,0.010027194395661354,-0.03428316488862038,-0.07099082320928574,0.036356255412101746,0.035991355776786804,-0.022299597039818764,0.04357023164629936,0.06192886456847191,-0.03175250440835953,0.04202846437692642,0.052636802196502686,0.025438731536269188,0.05253136157989502,0.03432472422719002,-0.004550050012767315,-0.0020464558620005846,0.04965653270483017,-0.046438075602054596,-0.01811433769762516,0.028291581198573112,-0.019316591322422028,0.05292828381061554,-0.008767222985625267,-0.011499571613967419,0.07264306396245956,-0.07072213292121887,0.012239433825016022,0.028272682800889015,-0.031847525388002396,0.04828675463795662,0.07660459727048874,-0.05850229039788246,0.08569306135177612,0.030413297936320305,-0.0314839705824852,0.04530316963791847,0.09466341882944107,0.0014949693577364087,-0.11054642498493195,-0.02757761813700199,-0.058835819363594055,0.08573470264673233,0.022963158786296844,-0.07271625846624374,-0.0902128517627716,-0.016263743862509727,-0.010436022654175758]},{"text":"Surely none of you wishes to see Jones back?\" The animals reassured him on this point immediately, and no more was said about the pigs sleeping in the farmhouse beds.","book":"Animal Farm","chapter":51,"embedding":[0.06014227867126465,0.031000612303614616,0.04106954485177994,0.0835660770535469,0.11222533881664276,-0.018912630155682564,0.007412696722894907,-0.05464213341474533,-0.026837877929210663,-0.028106890618801117,-0.04078403860330582,-0.04823073372244835,0.008646934293210506,-0.007149035576730967,-0.002090555615723133,0.031636808067560196,0.014890019781887531,-0.02785342186689377,0.010070024989545345,0.01985323056578636,-0.07195904850959778,0.047234468162059784,0.0790320560336113,0.012853826396167278,-0.00604657270014286,-0.08805893361568451,0.0006785189616493881,0.07209339737892151,-0.014149150811135769,0.011790083721280098,-0.08458445966243744,-0.004240720067173243,-0.04000166803598404,-0.045473795384168625,-0.0010986051056534052,0.013888196088373661,0.06674791127443314,0.006591388490051031,0.07459142059087753,0.024425188079476357,0.014457808807492256,-0.01847449131309986,0.008258562535047531,-0.04591423273086548,-0.05589257553219795,-0.0126483254134655,0.021596768870949745,-0.09350253641605377,0.0555867925286293,-0.07874176651239395,0.007140394300222397,0.03560829162597656,-0.11328647285699844,-0.08356817066669464,-0.043580230325460434,0.005038198549300432,-0.03851993754506111,-0.04638097062706947,-0.02937830612063408,-0.034433040767908096,0.01456547249108553,0.03585345298051834,0.06993786245584488,0.104850172996521,0.05708633363246918,-0.015844322741031647,-0.044535525143146515,-0.0378500372171402,-0.0215280931442976,-0.03001626580953598,-0.04522007331252098,-0.03874806687235832,0.027187373489141464,-0.10515711456537247,-0.047476958483457565,0.04283110424876213,0.08289226144552231,0.0016702123684808612,0.07594354450702667,-0.09511971473693848,-0.05618330091238022,-0.03329479694366455,0.010035094805061817,-0.007976111955940723,-0.06644900888204575,0.021430280059576035,0.025502631440758705,-0.027885016053915024,-0.11486240476369858,-0.005616825073957443,0.026353685185313225,-0.1406448781490326,-0.07404136657714844,0.111885666847229,0.034500300884246826,-0.036484163254499435,-0.06357870250940323,0.06338196992874146,-0.036702126264572144,0.021841606125235558,-0.05844943970441818,0.04698169603943825,0.10414376854896545,-0.00011967098544118926,0.009132718667387962,0.000491760263685137,-0.05024188756942749,0.021247541531920433,-0.003545665182173252,-0.018006864935159683,-0.08088455349206924,0.029087819159030914,-0.001393271260894835,0.12892727553844452,0.027024531736969948,0.052759356796741486,0.03608349710702896,-0.020714636892080307,-0.07718171924352646,0.03881898522377014,0.06841124594211578,0.09245789796113968,0.011830099858343601,0.08007636666297913,-0.016841908916831017,0.020693708211183548,0.06137976422905922,-1.856554839195597e-33,0.04293394461274147,-0.02004302851855755,0.01567385345697403,-0.06550583988428116,0.11064454913139343,0.06338939070701599,-0.06953105330467224,0.047576602548360825,0.09723395109176636,0.05839346721768379,-0.06800958514213562,-0.027060512453317642,0.05273278057575226,-0.07280542701482773,-0.12576737999916077,0.056573040783405304,0.02735949121415615,0.0025497563183307648,0.04286729171872139,-0.040016788989305496,-0.01710972748696804,0.08948012441396713,-0.08131610602140427,0.06214579567313194,0.027515584602952003,-0.02815340831875801,0.03704586997628212,-0.03453275188803673,-0.012431912124156952,0.012631706893444061,-0.05824321135878563,-0.004055461380630732,0.02753756381571293,-0.002969588153064251,0.019067374989390373,0.0033925690222531557,-0.0010280426358804107,-0.0565456822514534,-0.0579410158097744,-0.043278682976961136,0.018619030714035034,0.02997659146785736,0.037010952830314636,-0.03221876919269562,-0.12083164602518082,-0.052016355097293854,0.0036743308883160353,0.09233392775058746,-0.05653054639697075,-0.033463213592767715,0.03369979187846184,0.01793627440929413,-0.02166549488902092,0.02099701762199402,-0.010824257507920265,-0.047988418489694595,-0.008515325374901295,-0.021752171218395233,0.011535374447703362,0.014187252148985863,0.03780074045062065,-0.030182965099811554,-0.03440125286579132,-0.055053144693374634,-0.01289874967187643,-0.07666286826133728,-0.02055555023252964,-0.009853321127593517,-0.07203981280326843,0.03589491918683052,-0.025909289717674255,-0.015735359862446785,-0.06644324213266373,-0.11378476023674011,-0.07402411103248596,-0.03073284588754177,0.003656980348750949,0.025196528062224388,0.06337659806013107,-0.06905030459165573,0.13166791200637817,0.03605307638645172,-0.08593476563692093,-0.04295000806450844,0.03610314056277275,0.046639878302812576,0.04438597708940506,-0.04529149457812309,0.008839131332933903,-0.03427717089653015,0.00848771259188652,0.06099575757980347,-0.0013626056024804711,-0.07831848412752151,0.004804390482604504,-1.0942382119862007e-33,-0.0447484590113163,-0.0008038891246542335,-0.017739582806825638,0.023684542626142502,-0.018967607989907265,-0.01910489611327648,-0.025192946195602417,0.011013027280569077,0.04384103789925575,-0.09120595455169678,0.04159965366125107,-0.0665716901421547,0.05225973203778267,0.014801468700170517,-0.00213539507240057,-0.035197481513023376,-0.0416787788271904,-0.09182427823543549,0.033689167350530624,0.06388048082590103,-0.0700068548321724,-0.022673852741718292,-0.05634357035160065,-0.0438099205493927,0.06355922669172287,0.0302728358656168,-0.01136302575469017,0.035548970103263855,-0.056032467633485794,-0.06730502098798752,-0.04056814685463905,-0.13153262436389923,-0.009584352374076843,0.017206311225891113,0.0860028937458992,0.011962431482970715,0.04602092131972313,0.0039045545272529125,-0.05431371182203293,0.007460684049874544,0.0707918033003807,-0.01575220562517643,-0.06617001444101334,0.06159750372171402,0.011925415135920048,0.13069091737270355,0.0029964186251163483,0.030275190249085426,0.026223070919513702,0.12105897068977356,-0.0015032169176265597,0.016185587272047997,0.015134480781853199,-0.0393529012799263,-0.036469679325819016,0.048535268753767014,0.019813967868685722,0.02170559950172901,0.04178611934185028,-0.001936715329065919,-0.06781883537769318,0.021748283877968788,-0.019743068143725395,-0.00919721182435751,0.010580513626337051,0.050375234335660934,-0.028504274785518646,0.01958250254392624,0.057876598089933395,-0.09903042018413544,0.01655176281929016,-0.015955651178956032,-0.01778433658182621,-0.04891378432512283,0.02335393615067005,0.05794655159115791,-0.006360064260661602,-0.09488489478826523,-0.016031460836529732,-0.043683528900146484,0.07133589684963226,-0.07259057462215424,0.05610048770904541,0.042428553104400635,0.06849948316812515,-0.045822873711586,0.02932014875113964,0.09464447945356369,0.015137304551899433,-0.06596329808235168,0.059751447290182114,-0.027285657823085785,0.03015676513314247,-0.027301667258143425,0.024740375578403473,-2.9580206728496705e-8,-0.03863077238202095,0.0035484042018651962,0.005179024767130613,-0.019936326891183853,0.08748767524957657,0.02199830487370491,0.024762339890003204,-0.02859978750348091,-0.06632698327302933,0.06472551822662354,0.017161566764116287,0.06534142792224884,-0.02691609226167202,-0.01538668479770422,0.009027463383972645,0.05077389255166054,0.010038171894848347,-0.11203750967979431,0.033693261444568634,0.04165968298912048,-0.066774383187294,-0.01314192172139883,-0.06393183022737503,0.02696848101913929,0.09650528430938721,0.03500892221927643,-0.04372122511267662,-0.03426629304885864,0.013144967146217823,0.01632709801197052,0.044018492102622986,-0.0011524430010467768,-0.02195573039352894,0.010205467231571674,-0.0031756763346493244,-0.014353821985423565,0.06928768008947372,0.04346369951963425,0.1145934984087944,-0.03669187054038048,0.025954874232411385,0.06426697224378586,0.045687299221754074,-0.026391828432679176,0.06674613058567047,-0.03003682941198349,0.06093956157565117,0.007810033392161131,-0.06738760322332382,-0.08689343184232712,-0.08845751732587814,0.008539064787328243,0.0649067685008049,0.014844847843050957,0.011497970670461655,-0.05285311117768288,-0.020036635920405388,-0.01999768428504467,-0.0124961631372571,0.004166842438280582,0.031188786029815674,0.013146905228495598,-0.06934704631567001,-0.06406466662883759]},{"text":"After the harvest there was a stretch of clear dry weather, and the animals toiled harder than ever, thinking it well worth while to plod to and fro all day with blocks of stone if by doing so they could raise the walls another foot.","book":"Animal Farm","chapter":52,"embedding":[-0.07057223469018936,0.09834124892950058,0.08982887864112854,0.09472168236970901,0.01666506752371788,-0.0691329687833786,-0.029358504340052605,-0.004260865040123463,-0.07473398745059967,0.05706046521663666,0.02974863350391388,-0.06312405318021774,-0.01618308015167713,0.0557977668941021,-0.03511054813861847,0.005191452335566282,-0.06477362662553787,0.030708346515893936,-0.030403638258576393,0.03748506307601929,0.030872726812958717,0.030368562787771225,0.021502994000911713,0.02693277783691883,-0.008123612962663174,0.04097906872630119,-0.1921258419752121,0.05782041698694229,0.10825730115175247,-0.04320413991808891,-0.049130264669656754,0.09346336126327515,0.032154716551303864,-0.0009273996693082154,0.0012173582799732685,0.08159671723842621,0.09281962364912033,-0.04685325548052788,-0.0010773378890007734,0.023420309647917747,-0.005512384232133627,-0.02537275291979313,0.009573987685143948,-0.0383041612803936,-0.07543925195932388,-0.035873670130968094,0.004258700646460056,-0.05598447844386101,0.005067809950560331,-0.016759222373366356,0.07057351619005203,-0.010714187286794186,-0.046522367745637894,-0.07676348835229874,0.026897234842181206,-0.02270020730793476,-0.01336592435836792,-0.0779598206281662,0.039796583354473114,-0.04688237980008125,0.0207195021212101,0.07353761047124863,-0.05442230775952339,-0.0002811226004268974,0.07414282858371735,-0.07498621940612793,-0.0822630226612091,-0.043832167983055115,-0.0033844769932329655,-0.03231383487582207,0.06813766807317734,0.007290791254490614,0.04826856032013893,-0.10190882533788681,-0.03488950803875923,-0.00726288789883256,-0.051297593861818314,0.0071275015361607075,-0.09443480521440506,-0.07803096622228622,-0.0221074391156435,-0.037701305001974106,0.00758966151624918,-0.000128724001115188,-0.0655188113451004,0.01277380995452404,-0.005966738797724247,-0.03600487485527992,0.02326052077114582,-0.007676240522414446,0.05956191569566727,0.006695145275443792,-0.0722065418958664,0.1044839546084404,0.0074853068217635155,0.056013043969869614,-0.046314358711242676,-0.061951372772455215,-0.0742991492152214,0.03352277725934982,0.013549205847084522,0.008605614304542542,-0.013616926036775112,-0.08021504431962967,0.0312640517950058,-0.050815265625715256,-0.08806295692920685,0.02886538952589035,-0.042847223579883575,0.04586836323142052,-0.035625386983156204,0.036175359040498734,0.04606705531477928,0.12188581377267838,-0.07021980732679367,0.027526844292879105,-0.10923919081687927,-0.07996228337287903,-0.008656774647533894,-0.007984652183949947,0.04767928272485733,0.0197481419891119,-0.017835907638072968,0.02233853191137314,0.019043581560254097,-0.05991494655609131,0.022343510761857033,1.6995451607822178e-33,0.06281466782093048,-0.03399103507399559,-0.05238238349556923,-0.03430284932255745,0.11287370324134827,-0.020704062655568123,-0.07702144235372543,-0.027637971565127373,0.04502328857779503,-0.03567613661289215,-0.07015516608953476,-0.0028736719395965338,-0.0128819290548563,-0.027164312079548836,-0.013463019393384457,-0.11158259958028793,-0.02348705381155014,-0.015391018241643906,0.03105918876826763,0.042338911443948746,-0.007276818156242371,-0.06807175278663635,0.040822576731443405,0.03754546865820885,0.09892328828573227,0.027380887418985367,-0.002863420406356454,-0.018554801121354103,-0.032127127051353455,0.03066193126142025,0.07760033011436462,-0.06493623554706573,0.0028897516895085573,-0.02456720918416977,-0.036926329135894775,0.05637039616703987,0.11594231426715851,-0.07357095927000046,-0.07499091327190399,0.034731678664684296,0.06285163760185242,-0.04329051822423935,0.08242899179458618,-0.010674383491277695,0.0021974851842969656,-0.007265098858624697,0.009959188289940357,0.06945081800222397,-0.14198845624923706,0.02696366235613823,0.05972125753760338,0.11501532793045044,0.02642366662621498,-0.0014670941745862365,-0.008181975223124027,0.027716154232621193,0.008636506274342537,-0.05057675018906593,-0.06819114089012146,0.02681340090930462,0.020468518137931824,0.02726566791534424,0.021702950820326805,0.02541406825184822,-0.020288195461034775,-0.027797380462288857,-0.01526942104101181,0.12354687601327896,-0.05775608867406845,-0.019783345982432365,-0.06961143761873245,-0.048444196581840515,-0.054535236209630966,-0.07777082175016403,-0.06107031926512718,-0.0352783277630806,0.02648635394871235,0.006342525593936443,-0.0046488577499985695,-0.003124887589365244,0.09328682720661163,0.04777158424258232,-0.06946399807929993,-0.03410526365041733,-0.008746863342821598,0.02896556630730629,0.07831130921840668,-0.013784357346594334,0.06400666385889053,-0.004105215892195702,-0.01413244754076004,0.005532893817871809,0.07816708832979202,-0.13065214455127716,0.0206159595400095,-2.4182848348741894e-33,0.001309231505729258,0.015466632321476936,0.005559590645134449,0.07884936034679413,-0.013303497806191444,-0.05844813957810402,-0.07499312609434128,0.0019313727971166372,-0.015736794099211693,-0.0019661029800772667,-0.10127858817577362,0.0815659686923027,0.03364362567663193,-0.02397257834672928,0.025364182889461517,-0.006575826555490494,-0.015444918535649776,0.001569763757288456,0.029782578349113464,-0.03117063082754612,-0.025964530184864998,-0.0017540162662044168,-0.056806277483701706,-0.038378939032554626,0.01240991149097681,0.08829401433467865,-0.08387716859579086,-0.004486315418034792,-0.02729574777185917,-0.037726595997810364,0.07223286479711533,-0.0793510302901268,-0.049220822751522064,-0.019898666068911552,0.01105125155299902,0.05116620659828186,-0.007537555415183306,0.04780542477965355,0.02450961247086525,0.0009225598187185824,0.043561648577451706,-0.0064061968587338924,-0.016405997797846794,0.05342195928096771,-0.026848042383790016,0.06259540468454361,0.03315914794802666,0.042031921446323395,0.022274255752563477,-0.03517657145857811,0.07889210432767868,0.03867907449603081,0.028231507167220116,-0.052991509437561035,0.03649211302399635,-0.06428933143615723,-0.020684542134404182,0.0038781461771577597,-0.056805070489645004,-0.010167082771658897,-0.0420306995511055,0.0013770507648587227,-0.06629596650600433,0.053058069199323654,0.021543094888329506,-0.011573661118745804,-0.0003571806300897151,-0.003917678724974394,-0.029077846556901932,0.03614275902509689,-0.02429383434355259,0.029409974813461304,-0.0062381853349506855,0.04209679737687111,0.02914704941213131,0.1475880891084671,-0.010629029013216496,-0.02941996231675148,0.010318545624613762,-0.01369902491569519,-0.0684652253985405,-0.05867242068052292,-0.005414846818894148,-0.0042625125497579575,0.04818004369735718,-0.02085494063794613,-0.037916816771030426,0.07731213420629501,0.01932886615395546,0.0014557609101757407,0.004748888313770294,-0.08971262723207474,0.05629058554768562,0.02655692771077156,0.09717966616153717,-3.287884453584411e-8,-0.02733323909342289,0.0270036980509758,-0.05481620877981186,0.025937536731362343,0.06243688240647316,-0.008855072781443596,0.14465606212615967,0.015070803463459015,0.053005341440439224,-0.04589523747563362,-0.08682873100042343,0.04620400816202164,0.047773197293281555,0.12506239116191864,0.07680930942296982,0.018005743622779846,0.07673472166061401,-0.04067368805408478,-0.02949054352939129,0.008000440895557404,0.012106090784072876,-0.04734892398118973,0.026767263188958168,-0.0012798067182302475,-0.06699158996343613,-0.053099729120731354,-0.03964178264141083,-0.01832197792828083,-0.016087142750620842,0.07867582142353058,0.05915950611233711,-0.01981465332210064,-0.006707609165459871,0.00022798996360506862,0.08038093149662018,0.03490202873945236,-0.030720889568328857,0.0025175116024911404,0.01774555817246437,-0.024644238874316216,0.00619084108620882,0.018607886508107185,0.010571367107331753,0.010336272418498993,-0.04022832214832306,-0.028192592784762383,-0.08607323467731476,0.07947695255279541,-0.05261939764022827,-0.03672835975885391,-0.014222226105630398,0.0416070856153965,0.09240066260099411,-0.012286771088838577,0.061952151358127594,-0.04219427704811096,0.05027322471141815,-0.02217869646847248,0.02362067997455597,0.02631097286939621,-0.03317805752158165,-0.012060502544045448,-0.043881893157958984,0.017353825271129608]},{"text":"Building had to stop because it was now too wet to mix the cement.","book":"Animal Farm","chapter":52,"embedding":[-0.00040373438969254494,0.03643893823027611,0.11486518383026123,0.05851844325661659,0.028901927173137665,-0.04654502868652344,-0.037100162357091904,0.022410906851291656,-0.03487681597471237,-0.013216332532465458,0.017756938934326172,0.02947232313454151,-0.0024671866558492184,0.028705429285764694,-0.026466824114322662,0.031382616609334946,-0.05985017865896225,0.024560891091823578,-0.08630558103322983,0.013653423637151718,0.000622111780103296,0.009808523580431938,-0.053236402571201324,0.02231660671532154,0.0314679853618145,0.15036973357200623,-0.04066723212599754,0.026930492371320724,0.1285078376531601,-0.039698436856269836,-0.013504278846085072,0.06390393525362015,0.03695335611701012,-0.06903620809316635,0.03465850278735161,0.0181330144405365,0.03793662413954735,0.007810551673173904,0.05743696168065071,-0.025843316689133644,-0.012911448255181313,0.0011872559553012252,0.07038621604442596,0.009374672546982765,0.025832077488303185,0.04461786150932312,0.02399710938334465,-0.09496298432350159,0.0786183550953865,-0.00862482376396656,0.042612407356500626,0.0014339219778776169,-0.031997114419937134,-0.0873928815126419,-0.0894232913851738,-0.05200739949941635,0.04630470648407936,0.06358218193054199,0.028555722907185555,-0.0045847417786717415,-0.007108230143785477,0.027060944586992264,-0.09849359840154648,0.018402360379695892,0.06835697591304779,0.010532799176871777,-0.050118494778871536,-0.014605261385440826,0.04306711629033089,0.06809084862470627,0.08053813129663467,0.05541250854730606,0.02151569351553917,-0.09829911589622498,0.007616839837282896,0.009505007416009903,-0.011680911295115948,-0.002354878932237625,0.028320062905550003,-0.013273386284708977,-0.023828905075788498,-0.053039807826280594,-0.011618289165198803,0.04318680614233017,0.02953999862074852,0.046159956604242325,0.02931567095220089,-0.01657901145517826,0.02862398326396942,-0.05380862578749657,-0.024885499849915504,0.06796098500490189,-0.026391232386231422,0.12743714451789856,0.037629276514053345,0.015022688545286655,-0.05130218341946602,-0.03947003558278084,-0.0026958773378282785,0.033589210361242294,-0.0651639923453331,0.07272684574127197,0.01919650100171566,-0.04654530808329582,0.08134330064058304,-0.07173537462949753,-0.03792978450655937,0.025240877643227577,-0.019460855051875114,0.002607627073302865,0.012208263389766216,-0.04007786884903908,0.0896754190325737,0.026113098487257957,-0.05853309854865074,0.05428500846028328,-0.03064604103565216,-0.024650687351822853,-0.06263758987188339,0.008734596893191338,0.06285535544157028,0.017554953694343567,-0.048666417598724365,0.003397675696760416,-0.05230558291077614,-0.07317841053009033,0.05160348117351532,-6.395867701559943e-33,-0.01073815580457449,-0.1451852023601532,-0.06648126989603043,0.06792978197336197,0.11226259917020798,-0.01812698319554329,-0.006908029783517122,0.021854417398571968,-0.05901079252362251,-0.013362355530261993,0.08940127491950989,-0.052977584302425385,-0.07755248248577118,-0.0015003866283223033,0.030256856232881546,-0.049596913158893585,0.018753694370388985,-0.013650216162204742,-0.03574743494391441,0.050287891179323196,0.014793514274060726,-0.07321947813034058,-0.04094809666275978,0.015741972252726555,0.0029561410192400217,0.07542161643505096,0.04719228297472,0.06621572375297546,-0.009945476427674294,0.00040654389886185527,0.011950237676501274,-0.010757570154964924,0.03577999770641327,0.11634861677885056,-0.012625421397387981,0.02403932996094227,0.0472947359085083,-0.04378363490104675,-0.032924193888902664,-0.022271329537034035,-0.030282706022262573,-0.022233469411730766,0.0021012877114117146,-0.013407951220870018,0.09343398362398148,-0.10290054976940155,-0.04889518395066261,0.008847934193909168,0.015217820182442665,-0.018971554934978485,0.06744245439767838,0.12612693011760712,-0.07786131650209427,0.06739772856235504,-0.0304622370749712,-0.02278302237391472,0.04918958619236946,0.0007611569599248469,-0.09841682016849518,0.023945840075612068,-0.043558280915021896,0.08046061545610428,0.01632050797343254,0.10020860284566879,-0.03760894760489464,-0.04410696402192116,-0.03431404009461403,0.07292483747005463,-0.0021717094350606203,-0.022304125130176544,-0.02369185909628868,-0.023769017308950424,-0.001096406253054738,0.039353661239147186,-0.09913846105337143,-0.03906737640500069,-0.10913613438606262,0.01647268421947956,0.025810958817601204,0.024975420907139778,0.09366410970687866,-0.0004236109380144626,-0.009473083540797234,-0.05678192898631096,-0.023283639922738075,0.01869865693151951,0.05403411015868187,0.05640329048037529,-0.047593116760253906,0.027630023658275604,-0.03854522109031677,-0.00018628461111802608,0.10964609682559967,-0.0553385354578495,0.018978510051965714,2.1690631347685714e-33,0.0034871045500040054,-0.0007369978702627122,-0.06751391291618347,-0.013299615122377872,0.04669312760233879,0.0364699512720108,-0.01128209475427866,-0.051479239016771317,0.009266751818358898,0.06392617523670197,0.06870618462562561,0.013371418230235577,0.020717058330774307,-0.013043767772614956,-0.057655319571495056,0.06722778081893921,0.04359477385878563,0.018881166353821754,0.020159391686320305,0.049310337752103806,-0.008183665573596954,-0.023055478930473328,-0.03340187296271324,0.07459460198879242,-0.07440255582332611,0.031096402555704117,-0.06978531926870346,-0.032198771834373474,-0.014949752017855644,0.049449194222688675,-0.03982112556695938,-0.01334404293447733,-0.06358014792203903,0.02815145067870617,-0.016125662252306938,0.054241713136434555,-0.030892184004187584,-0.06853604316711426,-0.04617433622479439,-0.09397444874048233,0.02121574804186821,-0.05628131330013275,0.0466642752289772,0.06550826132297516,0.02420937642455101,-0.03625326231122017,0.06394502520561218,-0.09739849716424942,-0.041409820318222046,-0.06041223928332329,0.04811866953969002,0.01671668142080307,0.006172710098326206,-0.008335111662745476,0.00820309016853571,0.025583501905202866,0.009817888960242271,-0.02016410231590271,-0.1158272922039032,0.02368755452334881,0.07008032500743866,0.056235652416944504,-0.04337899759411812,-0.0494278147816658,-0.010652802884578705,0.040789972990751266,-0.02686287835240364,0.05162923038005829,-0.013805577531456947,0.005175257101655006,0.03911745920777321,0.040934007614851,-0.007896073162555695,0.04673442989587784,0.012801041826605797,0.003283304627984762,-0.07303068786859512,0.016824057325720787,-0.042082298547029495,-0.05604217201471329,-0.05475732311606407,0.006304741371423006,-0.07737106084823608,0.06710616499185562,0.08712335675954819,-0.0611528605222702,-0.06774277985095978,-0.028172820806503296,0.021691467612981796,0.02362358756363392,0.00758582167327404,0.023472007364034653,0.005489881616085768,0.014154596254229546,-0.0031629407312721014,-1.8759550357572152e-8,-0.05498193949460983,0.024823736399412155,-0.10094130784273148,-0.06992857903242111,0.000673149072099477,-0.08595802634954453,0.10959002375602722,0.03728426992893219,-0.003881902666762471,0.011467529460787773,-0.10068566352128983,0.00358704780228436,-0.05365497246384621,0.1430186629295349,-0.055879008024930954,-0.07457230240106583,-0.034939203411340714,-0.07552583515644073,-0.04316682741045952,-0.08287542313337326,-0.004084495827555656,-0.03172371909022331,-0.06367546319961548,-0.011458231136202812,-0.052711695432662964,-0.0026243191678076982,-0.05228189006447792,0.020605791360139847,-0.01335636992007494,0.022229207679629326,0.027922021225094795,-0.027913248166441917,-0.11899878829717636,-0.007076270878314972,-0.027805402874946594,0.03567207604646683,0.14249876141548157,-0.027559170499444008,0.02817956730723381,-0.0762956440448761,-0.04015888273715973,0.01333141140639782,0.020838528871536255,0.027008773759007454,0.07310294359922409,0.027315862476825714,-0.09371347725391388,0.025523440912365913,-0.03218338266015053,0.047216929495334625,0.07962711155414581,-0.00801156647503376,-0.04841729626059532,0.04084398224949837,0.1030634343624115,-0.03939405083656311,-0.06856683641672134,-0.02330857142806053,-0.03172668069601059,-0.005206575151532888,-0.049976203590631485,-0.006562468595802784,0.00765644758939743,0.07627496123313904]},{"text":"A terrible sight had met their eyes.","book":"Animal Farm","chapter":52,"embedding":[0.05893690511584282,0.06353895366191864,0.005539312027394772,0.07049456238746643,0.03567322716116905,-0.024787122383713722,0.03395593538880348,0.040684543550014496,-0.016004260629415512,-0.01862080581486225,0.044054318219423294,0.006128073204308748,0.05330516770482063,-0.043899357318878174,-0.10894547402858734,-0.0009640248026698828,-0.03439844772219658,0.0023753310088068247,0.05887654423713684,0.07100850343704224,0.04849177598953247,0.08746469020843506,0.0006954933633096516,-0.02649264596402645,-0.010249740444123745,0.057472482323646545,0.02061665989458561,-0.03229523450136185,-0.03788827359676361,0.017676029354333878,-0.04054293408989906,0.020576639100909233,-0.02724488452076912,0.05480683594942093,0.05370494723320007,-0.006927959620952606,0.0934310331940651,0.051228512078523636,-0.0081129539757967,-0.0490303598344326,0.0027660122141242027,0.08383535593748093,-0.04254326596856117,-0.01908019185066223,0.005564817227423191,-0.0471358597278595,-0.010451816953718662,0.016124429181218147,0.009696912951767445,-0.019800588488578796,-0.07781455665826797,-0.03583335131406784,-0.034245893359184265,-0.13031768798828125,-0.0051625920459628105,0.0011713553685694933,-0.0688292607665062,-0.006787356920540333,0.06257157027721405,0.03289347141981125,0.05597181245684624,-0.012509997002780437,-0.00038048779242672026,-0.021165329962968826,0.022136008366942406,0.020771481096744537,0.03272434324026108,-0.07617475837469101,0.0720982700586319,0.07985943555831909,-0.04438119754195213,0.013078838586807251,0.009059643372893333,-0.03278420493006706,-0.0837085172533989,0.007732521742582321,0.027427896857261658,-0.13059866428375244,0.03493889048695564,-0.04451608285307884,0.004326910711824894,-0.005225528031587601,0.06400903314352036,-0.05594157800078392,0.08022452890872955,0.044758908450603485,-0.029870405793190002,-0.09938719123601913,-0.0122258011251688,0.022518422454595566,-0.0513620600104332,-0.031896401196718216,-0.06274145841598511,-0.0007151258178055286,0.057864509522914886,-0.07050397992134094,0.06538045406341553,-0.005058689508587122,-0.025282273069024086,0.0678614154458046,-0.007940927520394325,0.07033126801252365,-0.046468231827020645,-0.031344491988420486,-0.0238553024828434,-0.025332672521471977,0.003289449494332075,0.047200798988342285,-0.017777426168322563,0.02256440743803978,0.012632962316274643,-0.05438297614455223,-0.021352598443627357,-0.04003242403268814,-0.025697028264403343,0.0625019371509552,0.003793521085754037,-0.02160594053566456,-0.022413181141018867,0.028775297105312347,0.01800498552620411,0.03808457776904106,0.014089126139879227,0.03522805497050285,0.016490083187818527,-0.014103320427238941,-0.015046590939164162,-5.290360447675692e-33,0.04797117039561272,0.07083205878734589,-0.0025733185466378927,-0.032227396965026855,0.09183689951896667,-0.02435416355729103,-0.008640360087156296,0.025532538071274757,0.0507473386824131,0.051615118980407715,-0.04075484350323677,-0.05298885703086853,-0.02390657179057598,-0.01986822485923767,0.05808431655168533,0.003170289332047105,0.037241220474243164,0.058284007012844086,0.0047581871040165424,-0.04330004006624222,-0.10079368203878403,0.046773821115493774,0.028276506811380386,-0.032099027186632156,-0.06454474478960037,0.044540949165821075,0.004548602271825075,0.04059559479355812,-0.02818744070827961,0.02982126735150814,-0.01983650028705597,0.06912310421466827,0.046812161803245544,0.038571156561374664,0.05856185406446457,-0.08112862706184387,0.013125334866344929,0.01898878812789917,-0.015082397498190403,0.017745081335306168,-0.05466347560286522,0.03547064960002899,0.013894027099013329,-0.06632160395383835,0.016367649659514427,0.08875502645969391,-0.017880182713270187,0.033819779753685,-0.0540766604244709,0.015024890191853046,0.027837345376610756,0.013892902061343193,0.015067151747643948,0.0661456361413002,-0.006240502931177616,0.10820821672677994,0.00785060040652752,-0.0035457557532936335,-0.027678780257701874,-0.03791731595993042,0.054790712893009186,0.03366617485880852,0.031853944063186646,0.04642485827207565,-0.010328460484743118,-0.08783801645040512,0.032896075397729874,-0.028655393049120903,-0.05620018392801285,-0.04274827986955643,-0.03767973184585571,-0.0014696357538923621,0.04836636409163475,-0.05352593585848808,-0.029399540275335312,-0.04800916090607643,0.052279334515333176,0.05682404711842537,0.02113190107047558,-0.015463517047464848,0.07198994606733322,-0.013241853564977646,0.03514784574508667,-0.06003432348370552,-0.01136257778853178,-0.006381042301654816,-0.0299553070217371,-0.09321495145559311,-0.06797479093074799,0.017225254327058792,0.01851777918636799,0.02038332261145115,0.02077278308570385,-0.13807585835456848,-0.04782658442854881,2.650391337231835e-33,0.03175317496061325,0.004261055029928684,0.04027113690972328,-0.007003232836723328,-0.07134081423282623,-0.054425425827503204,0.02232149802148342,0.016371093690395355,0.057947948575019836,0.04713992029428482,0.03455640375614166,-0.023018965497612953,0.02829735167324543,0.029435718432068825,0.017510676756501198,-0.01949051208794117,0.128554105758667,-0.006833438295871019,-0.03570001944899559,0.010784261859953403,0.03025757521390915,-0.028793875128030777,-0.039915576577186584,-0.0805056095123291,-0.0011693352134898305,0.07842285186052322,0.10305839776992798,-0.06839821487665176,-0.1715463250875473,-0.072882741689682,0.09041281044483185,0.04791662096977234,-0.019195977598428726,0.08585525304079056,-0.0007316164555959404,0.05769006907939911,-0.06602129340171814,-0.0048655252903699875,-0.05602074787020683,-0.06487511843442917,0.007638670038431883,0.04631328955292702,0.04190126806497574,0.05445130169391632,0.02110055647790432,-0.00037296299706213176,0.01137189194560051,-0.012835665605962276,-0.015794795006513596,-0.008617782033979893,-0.17294329404830933,0.006130418740212917,-0.04511815309524536,-0.02042655274271965,-0.12876658141613007,-0.05537179484963417,0.021833794191479683,-0.024804875254631042,0.09490836411714554,0.0024792987387627363,-0.002857484156265855,-0.11045192182064056,-0.10404464602470398,0.08716806769371033,0.02651396207511425,-0.016948195174336433,-0.05761408433318138,0.0872269794344902,0.04709097743034363,0.026544705033302307,0.07066644728183746,-0.08375894278287888,-0.03752531111240387,0.044066041707992554,0.02590935118496418,0.023734303191304207,-0.04005049541592598,0.09315881133079529,0.011087298393249512,0.030313530936837196,0.037741489708423615,-0.003970659337937832,-0.026675913482904434,0.11405941843986511,0.042657170444726944,0.04594209045171738,0.022570036351680756,0.05511242523789406,-0.018254023045301437,-0.009243983775377274,-0.06930246949195862,-0.11278380453586578,0.05710935592651367,-0.002995822113007307,-0.023123247548937798,-1.5965465394174316e-8,-0.09830408543348312,0.0007726784097030759,-0.0010905824601650238,-0.010514969006180763,0.018378041684627533,-0.03059399500489235,-0.006199902854859829,0.16477057337760925,-0.08306014537811279,0.04473503679037094,-0.138743594288826,0.07127388566732407,-0.047978725284338,0.014399477280676365,0.04371551796793938,0.03127489238977432,-0.02840805985033512,-0.04188456013798714,-0.049536749720573425,0.03584146872162819,-0.04412269592285156,-0.006168766412883997,-0.016348261386156082,0.03895903006196022,-0.011536628007888794,-0.014231937937438488,-0.0787552148103714,-0.0238186065107584,-0.06242920085787773,0.02750018611550331,0.09189597517251968,0.03763001412153244,0.004453794099390507,0.02357206866145134,-0.0691208690404892,-0.006261538248509169,-0.04871756210923195,-0.006845087744295597,0.04833684861660004,-0.03095427341759205,-0.04705382138490677,0.07356644421815872,0.02428690902888775,0.04864449426531792,0.016688352450728416,-0.04695180431008339,0.0725717693567276,-0.04525483027100563,-0.047150783240795135,-0.007142639718949795,-0.021850397810339928,0.07919225096702576,-0.04173208400607109,0.03770630806684494,0.005995704792439938,-0.14548656344413757,0.04404022544622421,0.0016432023840025067,-0.09611037373542786,0.03395429626107216,0.0394509993493557,0.04973113536834717,-0.07549624145030975,-0.005056722089648247]},{"text":"Unable at first to speak, they stood gazing mournfully at the litter of fallen stone.","book":"Animal Farm","chapter":52,"embedding":[0.12085293978452682,0.08320352435112,0.03889673203229904,0.07292851060628891,0.039824649691581726,0.04057023301720619,0.045370109379291534,-0.030740512534976006,-0.009569643065333366,-0.0838405191898346,-0.01001011859625578,-0.07013839483261108,-0.016137301921844482,-0.02419167384505272,-0.07412326335906982,-0.05135925114154816,-0.014117352664470673,0.07917088270187378,0.010867536999285221,0.04700980335474014,0.067070871591568,0.1108948364853859,0.06501569598913193,0.016037965193390846,0.061527319252491,-0.014301810413599014,-0.059108056128025055,0.025734400376677513,0.03438224270939827,0.02434428036212921,-0.031540099531412125,-0.05617348104715347,-0.014927639625966549,0.000654728792142123,-0.027987061068415642,0.06118923798203468,0.02272925153374672,-0.0010456446325406432,-0.0019410044187679887,-0.036273859441280365,-0.05632530897855759,0.02218525856733322,-0.02823910117149353,-0.0596303753554821,-0.014049891382455826,-0.09395170211791992,0.054084304720163345,-0.01254742220044136,-0.009691660292446613,-0.06394239515066147,-0.01570645533502102,-0.05786357820034027,-0.010455618612468243,-0.046357251703739166,-0.056551456451416016,-0.03093084879219532,-0.00024482657318003476,-0.046681731939315796,0.03336277976632118,-0.1056770458817482,-0.014692272059619427,-0.00929092988371849,0.0795842856168747,0.020967882126569748,-0.02906363271176815,0.048622339963912964,0.049935195595026016,-0.0907912477850914,0.012538767419755459,0.04622310772538185,-0.043368835002183914,0.011475078761577606,0.0590132474899292,-0.012598765082657337,-0.11875157803297043,0.0008771608700044453,0.04225248843431473,-0.09062904119491577,-0.019976237788796425,-0.08871208876371384,-0.0348471961915493,-0.007526672910898924,-0.000259439431829378,0.036770276725292206,-0.06798872351646423,-0.0005778592312708497,-0.03787384554743767,0.025034667924046516,-0.07332783192396164,-0.007628408260643482,0.007193169556558132,0.02787487581372261,-0.0790318176150322,0.10984504967927933,0.0543222650885582,-0.05994997173547745,0.06358792632818222,0.011940350756049156,-0.09596596658229828,0.02383321337401867,0.05480628088116646,0.0935894176363945,-0.013791291043162346,0.031236641108989716,0.01577390730381012,-0.014623219147324562,-0.12145537883043289,-0.09563852846622467,-0.03878115490078926,0.062305983155965805,-0.007516623008996248,-0.04270214959979057,-0.011253510601818562,0.05451158434152603,-0.044427525252103806,0.08462464809417725,-0.07401839643716812,-0.09576180577278137,-0.021408719941973686,0.08014016598463058,0.01020534336566925,0.054455533623695374,-0.034103840589523315,-0.04147304967045784,0.07064265012741089,0.01151829119771719,-0.000690013519488275,-2.6607584627221182e-33,0.07469742745161057,0.033835992217063904,-0.017610499635338783,0.07668380439281464,0.03404869884252548,-0.049219775944948196,0.011703583411872387,-0.0034236744977533817,0.033650364726781845,0.010866634547710419,-0.007731194142252207,0.00002706020495679695,-0.014738518744707108,-0.08834545314311981,-0.05718458816409111,0.011087464168667793,-0.01742311380803585,-0.023820798844099045,0.048307474702596664,-0.015497653745114803,-0.08551198989152908,0.03944940119981766,-0.017324332147836685,-0.004172285553067923,-0.02128547988831997,0.010744328610599041,-0.03287858888506889,-0.017625054344534874,-0.026514584198594093,0.045809462666511536,0.022447869181632996,0.01008658204227686,0.06691146641969681,-0.03446091338992119,0.015945566818118095,-0.05422818660736084,0.03334009274840355,0.063658207654953,-0.0524197556078434,-0.0568062923848629,0.06079425290226936,-0.020997608080506325,0.08305703848600388,-0.0941368117928505,-0.06621497869491577,0.010116892866790295,-0.0496726930141449,0.06483947485685349,-0.04395220801234245,0.039712995290756226,0.06858722120523453,0.04272954538464546,-0.03751719370484352,0.06124585494399071,0.025116782635450363,0.05790971219539642,0.03167258948087692,-0.056572701781988144,-0.02162160538136959,0.002897076541557908,-0.0012636261526495218,0.029540086165070534,0.04257854446768761,0.002409772016108036,0.00016136918566189706,-0.02263147197663784,-0.05544088035821915,-0.009071983397006989,-0.031932614743709564,-0.030033065006136894,-0.08267851918935776,-0.011697967536747456,-0.05479921028017998,-0.04762129485607147,-0.0849512591958046,0.01652134768664837,0.02560300938785076,-0.080885149538517,0.02957259491086006,0.005982093513011932,0.08846364170312881,-0.055742643773555756,-0.11715229600667953,-0.08092013001441956,-0.037129759788513184,0.04354783520102501,0.05315103009343147,-0.07728083431720734,0.0056134737096726894,-0.014860720373690128,0.00921121146529913,0.0954410508275032,0.06778682768344879,-0.12355504930019379,-0.04114643111824989,-1.7622293842714e-34,0.04089222848415375,0.006973835173994303,0.06162378564476967,0.06870757043361664,-0.047473564743995667,-0.028976354748010635,-0.012809235602617264,0.0012889706995338202,0.05156653746962547,0.01929633691906929,-0.05369628593325615,0.009805543348193169,0.010890025645494461,0.03622110188007355,0.032770413905382156,-0.04174130782485008,0.07473575323820114,-0.027988042682409286,0.06796584278345108,0.037999484688043594,-0.027467694133520126,0.022273341193795204,-0.0831461250782013,-0.07299192994832993,-0.07620510458946228,0.04496840015053749,0.07034408301115036,-0.07952205091714859,-0.03363698720932007,-0.15635666251182556,0.10748312622308731,-0.008005435578525066,-0.06211210787296295,0.05195365101099014,0.029389502480626106,0.06287217140197754,0.004520921036601067,-0.05338412895798683,-0.08519693464040756,-0.017428435385227203,0.08327393233776093,0.011230729520320892,-0.07577455788850784,0.02734973654150963,0.011938387528061867,0.009793594479560852,0.06850416958332062,0.024343999102711678,0.014400815591216087,0.013336802832782269,-0.03926187381148338,-0.016993746161460876,0.022480465471744537,0.032677218317985535,0.03975122794508934,0.02050911821424961,0.008151390589773655,0.027730127796530724,-0.042682550847530365,-0.05620122700929642,-0.022878076881170273,-0.00940155703574419,-0.08718550205230713,0.04683549329638481,0.008434638381004333,0.010983050800859928,0.010385453701019287,0.032132331281900406,0.09128422290086746,0.0970536321401596,0.05704907700419426,0.020026065409183502,-0.005815684795379639,-0.052984949201345444,0.03918562829494476,0.06048835441470146,-0.11646824330091476,0.012478819116950035,-0.040111806243658066,-0.1400461047887802,0.0767420083284378,0.03950701653957367,0.025454696267843246,-0.02263795956969261,0.001457688631489873,-0.006111794151365757,-0.02820783481001854,0.045788928866386414,0.01142694242298603,-0.06338966637849808,-0.06027665734291077,-0.010077964514493942,0.045334991067647934,-0.043742090463638306,-0.01712873764336109,-2.1298903973843153e-8,-0.0778445228934288,-0.012977978214621544,-0.08383713662624359,0.019320230931043625,0.02607332170009613,-0.056212931871414185,0.1314723789691925,0.020196806639432907,-0.03479830175638199,0.013117436319589615,-0.1324332058429718,0.0663650631904602,0.05530770123004913,0.02841918170452118,0.015227447263896465,0.0502602756023407,-0.017671741545200348,-0.046560876071453094,-0.014044057577848434,-0.017825912684202194,0.006029787473380566,0.03647882863879204,-0.012372254393994808,0.03365105018019676,-0.01844457909464836,0.02071615681052208,-0.03238087147474289,-0.08168528974056244,-0.05424700677394867,0.055889878422021866,0.11407974362373352,0.032757557928562164,-0.029458755627274513,-0.015265921130776405,0.036849480122327805,0.000851005781441927,0.07773837447166443,0.005621370859444141,0.09406832605600357,-0.007297476753592491,0.0520688034594059,0.01375286653637886,-0.007362757809460163,-0.0075185406021773815,-0.008244947530329227,0.02746015600860119,0.032217804342508316,0.010166347026824951,-0.03850020095705986,0.017824597656726837,-0.0038029609713703394,0.09071488678455353,0.023473316803574562,0.014383017085492611,-0.01355188712477684,-0.038453102111816406,0.03549248352646828,0.0842658206820488,-0.030046170577406883,0.05552009865641594,0.03596469759941101,0.012092279270291328,-0.012981696985661983,-0.021362269297242165]},{"text":"SNOWBALL!\" he suddenly roared in a voice of thunder. \"Snowball has done this thing!","book":"Animal Farm","chapter":53,"embedding":[-0.04159633442759514,0.08396172523498535,0.06502845138311386,0.0010882640490308404,0.014810633845627308,0.025194646790623665,0.12385545670986176,-0.019725453108549118,0.0019933015573769808,-0.14293862879276276,-0.06982538849115372,0.0011118849506601691,0.013640491291880608,0.012478145770728588,0.036498501896858215,-0.034814245998859406,-0.032714199274778366,0.02932344563305378,-0.027694763615727425,-0.022626571357250214,0.0583580918610096,0.012151626870036125,0.008439833298325539,0.03932233154773712,0.046602968126535416,0.12267249077558517,-0.006265317089855671,0.01449122279882431,-0.08274742215871811,-0.02383141778409481,-0.01741710864007473,-0.024053236469626427,-0.0204719677567482,0.05086144432425499,-0.04624011367559433,0.018561094999313354,-0.01116249430924654,0.045393817126750946,0.01962154731154442,-0.015451503917574883,0.021382272243499756,-0.03793613985180855,-0.002162196906283498,-0.05226210877299309,-0.05054999142885208,0.023373685777187347,-0.05496177077293396,-0.036219414323568344,0.07908742129802704,0.06967922300100327,-0.09766752272844315,-0.06509123742580414,-0.006361585110425949,0.014827774837613106,0.058503467589616776,0.041468631476163864,0.07861370593309402,-0.05655287951231003,0.019583052024245262,-0.04860120266675949,-0.04150829091668129,-0.018098769709467888,-0.005629288032650948,0.05785924196243286,0.05496133491396904,-0.0088673559948802,-0.035189189016819,-0.020110709592700005,-0.06576968729496002,0.0854305550456047,0.06260830163955688,0.1149909719824791,0.020343225449323654,-0.033213451504707336,-0.024061033502221107,-0.01804034225642681,-0.021674543619155884,-0.0815395712852478,0.08879487216472626,0.07633814960718155,0.059116750955581665,-0.05345703288912773,-0.04838661104440689,-0.038877785205841064,0.050040725618600845,-0.023789674043655396,0.01973111368715763,-0.006297677289694548,0.0030373670160770416,0.04023047909140587,-0.07646913826465607,-0.060928378254175186,-0.048868004232645035,0.08815350383520126,-0.1178642138838768,0.0313408225774765,0.007819836027920246,-0.047948867082595825,-0.02812134474515915,0.022064294666051865,0.040995508432388306,-0.07082372158765793,0.04516725614666939,-0.06053709238767624,0.0578734464943409,0.008732935413718224,-0.08312913775444031,-0.04150037840008736,-0.05138297379016876,0.015116107650101185,0.031381648033857346,-0.09864068031311035,-0.020269056782126427,0.01901710405945778,0.058307815343141556,-0.05700168013572693,-0.1354452520608902,-0.01327579002827406,-0.17819519340991974,0.06980280578136444,0.07544398307800293,0.08274204283952713,-0.03741331025958061,0.05879948288202286,0.07202014327049255,0.016279349103569984,0.017768094316124916,-6.951247272679211e-34,0.06038055941462517,0.037491943687200546,0.041823651641607285,0.032727692276239395,0.07055450230836868,0.008511187508702278,-0.012895365245640278,0.07475469261407852,-0.02813546545803547,-0.00969229731708765,-0.05181913822889328,0.003679573303088546,-0.07181692868471146,-0.10980548709630966,-0.007742021698504686,0.016945432871580124,-0.07900484651327133,-0.05089588835835457,-0.00019164360128343105,0.0885486900806427,0.0764254555106163,0.05502612516283989,-0.007883560843765736,0.04501624032855034,-0.013125351630151272,-0.010719042271375656,0.024789538234472275,-0.046315353363752365,0.06762778013944626,0.037765368819236755,-0.013079789467155933,-0.03526591137051582,-0.006136472802609205,0.05010894313454628,0.06626148521900177,0.02480018138885498,-0.05062044411897659,-0.004192035179585218,-0.03457491472363472,0.018050136044621468,-0.010270466096699238,-0.03411538898944855,-0.12007774412631989,-0.03838198259472847,-0.06839831918478012,-0.018349088728427887,-0.02281191200017929,0.05323120579123497,0.020923445001244545,-0.04535447433590889,0.03800927847623825,0.007648003287613392,0.04098612815141678,-0.07105298340320587,0.11403332650661469,0.018323032185435295,0.048904940485954285,-0.010374107398092747,0.08550132066011429,-0.02325998805463314,-0.00015433946100529283,-0.03596918284893036,0.11457985639572144,-0.04959208145737648,-0.03710131719708443,-0.07118966430425644,0.008250260725617409,-0.01419500820338726,-0.0006775684305466712,-0.011533292010426521,0.05973127484321594,0.004693289287388325,-0.06580980122089386,0.01911628246307373,-0.05217655748128891,-0.009516917169094086,-0.02785525843501091,-0.021138837561011314,0.001122576417401433,-0.01826930046081543,-0.030540581792593002,-0.040253620594739914,-0.013844694010913372,0.05482540279626846,-0.018515489995479584,0.011504167690873146,-0.04837408289313316,-0.06611143797636032,-0.10538284480571747,0.054727572947740555,-0.0026771961711347103,-0.007951692678034306,0.03601107746362686,0.019222872331738472,-0.008112305775284767,-2.6598322099078687e-33,-0.02122347615659237,0.016218876466155052,-0.029990164563059807,0.0560721717774868,0.009272487834095955,0.10312706977128983,-0.02764623984694481,-0.045644473284482956,0.0166182704269886,-0.048427946865558624,-0.030154187232255936,0.06195865944027901,0.029176251962780952,-0.030639616772532463,-0.00679909298196435,-0.04641745984554291,0.08882272243499756,0.045062363147735596,0.02654125913977623,0.030421104282140732,0.028528952971100807,-0.05555759742856026,-0.006079721264541149,0.014876747503876686,-0.09379402548074722,-0.010385612957179546,-0.0005837212083861232,-0.0019105896353721619,0.018190279603004456,-0.0020847239065915346,-0.007022886537015438,0.0038475936744362116,0.010360152460634708,-0.01882026717066765,-0.035463713109493256,0.028103584423661232,0.037442196160554886,-0.08187906444072723,-0.0054403929971158504,-0.12124432623386383,0.04924089461565018,-0.01087049301713705,0.05383329465985298,0.104517862200737,0.03968222811818123,-0.02359219267964363,-0.03109668754041195,0.05153311416506767,0.0231113713234663,-0.01362286601215601,-0.07324861735105515,-0.05027241259813309,-0.04007800295948982,-0.011112364940345287,-0.08437010645866394,0.014594404958188534,0.03586101159453392,-0.08701302856206894,0.04695724695920944,-0.03910694643855095,-0.10858894884586334,-0.014291761443018913,0.020258847624063492,0.005114460829645395,0.025882093235850334,-0.013383051380515099,-0.01476914994418621,-0.020041106268763542,-0.008471926674246788,0.03314334526658058,0.15006355941295624,0.022483086213469505,-0.032014232128858566,0.0025328979827463627,-0.015035226009786129,0.0503016822040081,0.009570887312293053,-0.04949776083230972,-0.03977164998650551,-0.016030756756663322,0.008292334154248238,0.03527180105447769,-0.011030979454517365,0.008356540463864803,0.03155050426721573,0.005321419332176447,0.04896050691604614,-0.011104792356491089,-0.027283506467938423,0.10899429768323898,0.05074498802423477,0.07905620336532593,0.09513937681913376,-0.037055183202028275,0.0077070980332791805,-2.3819769268129676e-8,-0.002302200300619006,0.03134850040078163,-0.0027741233352571726,-0.029918311163783073,0.06211691349744797,0.05361093580722809,0.012684473767876625,0.025791512802243233,0.014571238309144974,-0.10477731376886368,-0.01583201251924038,0.03560981526970863,0.07829733937978745,0.09722723811864853,0.009120950475335121,0.07426358759403229,-0.008080198429524899,-0.06248358637094498,-0.045823194086551666,-0.05505601689219475,-0.04396424442529678,-0.02630108967423439,0.0003157197206746787,-0.016715411096811295,-0.024220839142799377,0.025192372500896454,-0.02604983188211918,-0.03924727439880371,0.008661485277116299,-0.03031245619058609,-0.07513591647148132,-0.003917733673006296,-0.0879795104265213,-0.05881626904010773,-0.03768600523471832,0.008256583474576473,0.0908842384815216,0.05467692017555237,0.10688035935163498,-0.10725818574428558,-0.007489355280995369,0.06520111858844757,-0.0071020876057446,-0.00960457231849432,-0.04800095409154892,0.05225464701652527,-0.02096422389149666,-0.051309164613485336,-0.0005101735587231815,0.07606826722621918,-0.040799666196107864,0.009975145570933819,-0.02855251170694828,-0.046778641641139984,-0.002339158207178116,0.12278581410646439,0.03642202541232109,-0.12287690490484238,-0.021424707025289536,-0.0327523797750473,-0.022517884150147438,-0.018837768584489822,-0.06801468133926392,0.03732304275035858]},{"text":"Almost immediately the footprints of a pig were discovered in the grass at a little distance from the knoll.","book":"Animal Farm","chapter":53,"embedding":[0.03032870776951313,0.08399586379528046,0.028105944395065308,0.011919979937374592,0.032245054841041565,0.002131278160959482,-0.09109057486057281,-0.014732634648680687,0.031064169481396675,0.07535849511623383,0.10738692432641983,-0.014066568575799465,0.0007436580490320921,0.023387107998132706,-0.07751811295747757,-0.028639039024710655,0.03305700793862343,0.02780199609696865,-0.06138555333018303,0.01623246818780899,0.028839457780122757,0.0322725884616375,0.08542843908071518,0.0030641616322100163,0.044386398047208786,-0.04442650452256203,0.016878671944141388,-0.012653159908950329,0.014222277328372002,-0.0027067989576607943,-0.03137803450226784,0.054283007979393005,0.05460410937666893,-0.0698632299900055,0.014516434632241726,-0.008244086988270283,0.08129200339317322,0.11708781868219376,0.141377255320549,-0.04090942442417145,-0.01565985567867756,-0.11054639518260956,0.017630163580179214,0.02710885927081108,-0.04204970598220825,-0.011475284583866596,0.06861895322799683,0.027493173256516457,-0.016027864068746567,-0.04296163097023964,-0.027006929740309715,-0.036693427711725235,-0.028369244188070297,-0.07597781717777252,-0.05630847066640854,-0.008671893738210201,-0.04020346701145172,-0.04494588077068329,0.011319486424326897,-0.028536636382341385,0.04622247815132141,-0.03507175296545029,-0.018595516681671143,0.030726462602615356,-0.0021603417117148638,-0.07279670238494873,0.036390941590070724,-0.13241679966449738,0.06142604351043701,-0.006359524093568325,0.017098063603043556,0.019889812916517258,-0.023378128185868263,-0.02243540808558464,-0.05055336654186249,-0.015065822750329971,-0.02877570502460003,0.021483363583683968,0.02230428159236908,-0.10895494371652603,-0.007921868935227394,0.03250598534941673,0.012137467041611671,0.08470819890499115,-0.02790464274585247,0.006280830595642328,-0.029138410463929176,0.09129609167575836,-0.050151318311691284,-0.11489920318126678,0.0068763261660933495,-0.12497033178806305,-0.10179883986711502,0.002937823534011841,-0.002693835413083434,-0.06817931681871414,-0.01923959329724312,0.043600574135780334,0.03756386786699295,0.023775873705744743,0.02459615096449852,0.009723706170916557,0.03341016545891762,-0.0033695038873702288,0.030736682936549187,0.01244406122714281,-0.11985864490270615,-0.04419013485312462,0.037110090255737305,0.06060989946126938,0.022632548585534096,-0.048588670790195465,-0.009973927401006222,0.1317899227142334,-0.009866489097476006,0.0653003677725792,0.012103131972253323,-0.030647138133645058,-0.04105626791715622,0.01795765571296215,0.01606551557779312,0.05546310544013977,-0.001614452339708805,0.04011986032128334,0.02036372758448124,0.09822845458984375,0.03432399407029152,-3.7175423941197477e-33,0.032628074288368225,0.024532942101359367,-0.0016052504070103168,-0.036861635744571686,0.08886951953172684,-0.02684216946363449,-0.014251981861889362,-0.015621527098119259,0.03452710062265396,0.07007760554552078,-0.025865748524665833,-0.017077457159757614,0.054205507040023804,-0.0525658093392849,-0.05982302874326706,0.00934361107647419,-0.025712061673402786,-0.011891507543623447,-0.01101189199835062,-0.06880313903093338,-0.08995473384857178,-0.062322795391082764,0.004844400566071272,-0.017183134332299232,0.022861607372760773,-0.03240688890218735,0.0135488985106349,-0.11034052819013596,0.048788055777549744,0.02616995945572853,0.057737093418836594,-0.022200824692845345,0.033524028956890106,0.014607012271881104,-0.02948409505188465,-0.04648415744304657,0.03722706809639931,-0.09926454722881317,0.040514424443244934,-0.008870351128280163,0.11686667799949646,-0.02650507539510727,0.10061707347631454,-0.07529393583536148,-0.011556820012629032,0.05814620479941368,-0.02629217877984047,0.09187782555818558,-0.007735118735581636,0.00007632829510839656,0.04310581088066101,0.07260864973068237,0.014544724486768246,0.0051667350344359875,0.05629783123731613,0.04378901794552803,-0.012502347119152546,-0.02440096065402031,-0.07539849728345871,0.1025637611746788,0.020454704761505127,0.06644607335329056,0.026645919308066368,-0.0028265570290386677,0.007313575129956007,-0.08080170303583145,-0.0853971540927887,0.015251853503286839,-0.016464173793792725,0.0846206396818161,0.01931888610124588,0.02335907705128193,0.011103106662631035,-0.07440072298049927,-0.010836630128324032,-0.046297796070575714,0.034175340086221695,0.006610485725104809,-0.08773507922887802,-0.05765169486403465,0.05363394692540169,0.03589934855699539,-0.11380188912153244,-0.060366906225681305,-0.0660381093621254,-0.010020079091191292,0.011028668843209743,-0.05961330980062485,-0.0574227012693882,-0.08683393895626068,-0.011097819544374943,0.027071399614214897,-0.07638245075941086,-0.11242920160293579,0.022223548963665962,1.5984414426809698e-33,-0.028311029076576233,0.023807886987924576,0.10465624183416367,0.05892689526081085,0.003205328481271863,0.017611129209399223,0.023398321121931076,0.0009958363370969892,-0.04900083690881729,0.006300787441432476,-0.1064845398068428,0.034592945128679276,0.024412894621491432,-0.06207473576068878,0.07154057174921036,0.06254543364048004,0.041481275111436844,-0.04566448926925659,0.0513150580227375,-0.020476683974266052,-0.06598827242851257,-0.09045297652482986,-0.07514830678701401,-0.0005678553716279566,0.012464620172977448,0.03719462454319,0.08900634944438934,-0.016047941520810127,-0.14501123130321503,0.013221228495240211,-0.009770285338163376,-0.014998757280409336,-0.06883732229471207,-0.0795862078666687,-0.014031105674803257,0.012973567470908165,-0.002330067800357938,-0.024405106902122498,-0.043473366647958755,-0.031556811183691025,-0.009147961623966694,0.01855655200779438,0.0020320648327469826,0.005928846541792154,0.005750046111643314,-0.030958056449890137,-0.01264062151312828,0.06648503243923187,-0.012802003882825375,0.03718382492661476,0.06568148732185364,0.04489661753177643,0.05404815077781677,-0.014693225733935833,0.03021891601383686,0.0867285430431366,-0.0813363566994667,0.002015933860093355,0.026197751984000206,-0.021673277020454407,-0.044700127094984055,0.030878202989697456,-0.03710273280739784,0.0859655886888504,0.01957550272345543,-0.02184869907796383,-0.09956943988800049,0.09575068205595016,-0.015819314867258072,0.030834516510367393,-0.07840140908956528,0.04269050434231758,-0.019219517707824707,-0.03891874849796295,0.019299188628792763,0.0918923020362854,0.04108007624745369,-0.016019660979509354,-0.015084080398082733,-0.024694712832570076,-0.00891589093953371,-0.014682301320135593,0.052273254841566086,-0.02115909568965435,0.09242160618305206,0.0254715234041214,-0.059728290885686874,0.07850112020969391,0.03599025681614876,-0.03248412162065506,0.030509591102600098,0.023727253079414368,-0.038200292736291885,-0.027193356305360794,0.04908629134297371,-1.900529866816214e-8,-0.018578873947262764,0.014448078349232674,0.04210922122001648,-0.00788378156721592,0.10894410312175751,0.06496933102607727,0.06794652342796326,0.08542371541261673,-0.037345632910728455,0.0065302117727696896,-0.13758331537246704,0.05352451279759407,0.00918329507112503,0.12332925945520401,0.011450841091573238,0.0191008560359478,0.009152060374617577,-0.07498994469642639,-0.04133664816617966,0.055186375975608826,-0.01280105672776699,0.04738090559840202,-0.026839055120944977,-0.016447342932224274,-0.0761883333325386,0.005293182097375393,-0.041294194757938385,-0.0036463961005210876,-0.013101664371788502,0.02080538123846054,0.04019751399755478,0.007686877157539129,-0.03014260344207287,-0.06576763093471527,0.03155329078435898,-0.0006733605405315757,-0.01625397428870201,0.03856987878680229,-0.004927510861307383,-0.024305053055286407,0.008870621211826801,-0.014019371010363102,0.051110781729221344,0.01221512071788311,0.008268317207694054,-0.0376853346824646,-0.019021611660718918,0.014920026995241642,-0.05262544006109238,0.002020549960434437,-0.07952512800693512,0.11423756927251816,0.024315685033798218,-0.009014144539833069,0.0315982848405838,-0.07595749199390411,-0.04793884605169296,-0.10165092349052429,0.02695966698229313,0.05714065954089165,-0.023928044363856316,0.0048809838481247425,-0.012284927070140839,0.03552768751978874]},{"text":"We will teach this miserable traitor that he cannot undo our work so easily.","book":"Animal Farm","chapter":53,"embedding":[-0.06916289776563644,0.03759031742811203,-0.005373886786401272,-0.012562441639602184,-0.08222667127847672,0.0077595701441168785,-0.016702983528375626,-0.07273516803979874,-0.00012232341396156698,-0.01823744922876358,-0.024214474484324455,0.1771998554468155,0.04608986899256706,0.024329090490937233,-0.009329177439212799,-0.007675047963857651,-0.019927283748984337,0.071863554418087,-0.014119112864136696,-0.0244558397680521,0.07612515240907669,0.07785758376121521,0.00884301122277975,0.019530365243554115,0.03651249036192894,0.013387183658778667,0.042532194405794144,0.0667620599269867,-0.02737160213291645,-0.07297444343566895,-0.052224647253751755,-0.0524519644677639,0.010844245553016663,0.07180874049663544,0.054993003606796265,-0.04366011917591095,-0.036041710525751114,0.042528945952653885,0.04726478457450867,-0.01730656810104847,-0.009565007872879505,-0.04636426270008087,-0.06755787879228592,0.01815442554652691,-0.04170816391706467,0.0016646628500893712,-0.04550338163971901,-0.0779600441455841,0.01601763442158699,-0.019161272794008255,0.02546313963830471,0.030761709436774254,-0.022934583947062492,-0.049674708396196365,-0.002246222924441099,0.016983477398753166,0.07785895466804504,0.03700089454650879,0.013698483817279339,-0.018308814615011215,-0.014778251759707928,-0.005174781661480665,-0.0004964694380760193,-0.01744721084833145,-0.02783900499343872,-0.025949209928512573,0.0315927229821682,0.00766441086307168,-0.05713667348027229,0.09289716184139252,-0.04388128221035004,-0.009794065728783607,0.0446324422955513,-0.06355524063110352,0.0016598294023424387,-0.03163768723607063,0.0079676304012537,0.04112124815583229,0.044628825038671494,-0.03760334104299545,-0.05843297392129898,-0.04453044384717941,-0.037155866622924805,0.07275739312171936,-0.04353448748588562,-0.024717094376683235,-0.02623678185045719,-0.008788403123617172,0.12393276393413544,0.008736354298889637,-0.05373819172382355,-0.0996556431055069,0.03753626346588135,-0.008443007245659828,-0.04578771814703941,-0.028822407126426697,0.060954391956329346,0.03518371656537056,-0.17042182385921478,0.0631822720170021,-0.02649412862956524,0.044397126883268356,-0.03281455114483833,-0.09066522121429443,-0.01012383308261633,-0.02014971897006035,-0.00028295419178903103,-0.04052344709634781,0.001460563624277711,-0.048833053559064865,-0.020322388038039207,0.039079610258340836,-0.0026446690317243338,0.05701728165149689,0.0712791234254837,0.002303445478901267,-0.022741343826055527,-0.01792038604617119,-0.16367080807685852,0.07023756951093674,0.07724025100469589,0.06974576413631439,-0.03861759975552559,0.10118592530488968,-0.03887715935707092,-0.11397479474544525,-0.03884142264723778,-3.624098674753038e-33,0.07424198091030121,0.11715034395456314,-0.01140073873102665,0.0369265079498291,-0.010584943927824497,0.038870636373758316,0.07107675075531006,-0.027376677840948105,-0.017783915624022484,-0.010329579003155231,0.050587672740221024,0.06887709349393845,0.06925462931394577,0.061247605830430984,-0.09484618157148361,0.056150682270526886,0.039923250675201416,0.008791438303887844,-0.009564576670527458,-0.04136073589324951,0.008896262384951115,-0.004463615827262402,0.026015406474471092,-0.05413096770644188,0.01592962071299553,-0.065694160759449,-0.00999535620212555,0.04081907868385315,-0.017501825466752052,0.020494475960731506,-0.027827979996800423,0.06354470551013947,0.04805581271648407,0.06265266239643097,0.0024307798594236374,0.0032918171491473913,-0.036772508174180984,-0.06610163301229477,-0.032929662615060806,-0.005020258482545614,0.03202507644891739,0.03790200874209404,0.025702690705657005,0.021965738385915756,0.07670127600431442,0.006734615657478571,0.12501393258571625,0.0211179256439209,0.017805885523557663,-0.07136192917823792,0.02569284290075302,0.028762372210621834,-0.006956885103136301,-0.06069280579686165,0.011594886891543865,0.029216455295681953,0.03717108815908432,0.06887222826480865,0.01807132549583912,0.029990356415510178,-0.02687331847846508,0.021783722564578056,0.00276610953733325,0.05703991651535034,-0.07696949690580368,-0.03113842010498047,-0.11864902824163437,0.003569998312741518,-0.12536729872226715,-0.03906560689210892,-0.06959540396928787,-0.02145329862833023,-0.0641227588057518,-0.05991204082965851,-0.11552496254444122,0.003957152366638184,0.12431203573942184,-0.05155443400144577,0.03585423156619072,-0.08024222403764725,-0.10114549845457077,-0.062392883002758026,0.04782626032829285,-0.040778934955596924,0.06730321049690247,0.009250926785171032,0.04584319144487381,-0.06880338490009308,0.005286002065986395,0.09488589316606522,0.012480458244681358,-0.03313993662595749,-0.01345654483884573,0.06833557784557343,0.047410327941179276,7.603535516435229e-34,-0.0010609625605866313,0.016193808987736702,-0.020141465589404106,0.04904299974441528,-0.005377457942813635,-0.009595511481165886,-0.01834568753838539,0.04679299145936966,-0.02423904836177826,0.006521160714328289,-0.018622033298015594,-0.025158260017633438,-0.008920063264667988,0.002673454349860549,-0.04859272390604019,-0.04582927003502846,0.06785394996404648,0.012182321399450302,-0.06750727444887161,0.03183235228061676,-0.04725689813494682,0.10877834260463715,-0.022945888340473175,0.06922230124473572,-0.055264320224523544,0.019375715404748917,0.023622136563062668,0.015360422432422638,-0.044051241129636765,-0.026492705568671227,-0.0052569531835615635,-0.05734137073159218,-0.05267226696014404,0.013566877692937851,0.08445072919130325,0.03332110866904259,0.0003675256739370525,0.0529504232108593,-0.06396032869815826,0.02376924641430378,0.010935378260910511,0.007966429926455021,-0.02191133238375187,-0.0038274286780506372,0.017130298539996147,0.01324405800551176,0.048440176993608475,-0.0968838781118393,-0.004681632854044437,0.07822643965482712,0.041153065860271454,-0.009025730192661285,-0.0032696095295250416,0.014286010526120663,0.04390483722090721,0.013128998689353466,-0.027493054047226906,-0.11355971544981003,0.07940446585416794,-0.015439690090715885,-0.010722724720835686,-0.00945223681628704,0.00927099771797657,0.05183788388967514,0.05270061269402504,-0.04761398211121559,-0.03437086194753647,0.14694422483444214,0.03509070724248886,0.07844077050685883,0.05896124988794327,0.011046008206903934,-0.035399142652750015,-0.06692174077033997,0.04986181482672691,0.0067902603186666965,-0.06789951026439667,-0.017451228573918343,-0.0431770384311676,-0.011379263363778591,0.06299751251935959,-0.0706629753112793,-0.04813032224774361,-0.027601633220911026,0.0007823246996849775,0.016391709446907043,0.05345473438501358,0.05601436644792557,0.05363854020833969,-0.0030982906464487314,-0.03139122575521469,-0.0709415152668953,0.07164265960454941,-0.08738969266414642,0.030344225466251373,-2.0259090405261304e-8,-0.054601795971393585,-0.12235455960035324,-0.04503118619322777,-0.010268990881741047,0.010181071236729622,-0.018161140382289886,-0.0493355318903923,-0.015649793669581413,-0.0007433961145579815,0.07562221586704254,0.013548953458666801,-0.007984772324562073,0.0763745903968811,-0.015049099922180176,0.027163520455360413,0.11228611320257187,0.05208142474293709,0.006994202267378569,-0.030655531212687492,-0.008426586166024208,-0.026444265618920326,0.0249833595007658,-0.005901701748371124,0.0007807709625922143,-0.015107464045286179,-0.016837261617183685,-0.016142481938004494,0.10130477696657181,0.00020221299200784415,0.11094160377979279,-0.030432555824518204,-0.06314723193645477,-0.09188124537467957,0.016118336468935013,-0.05794256180524826,-0.01850074715912342,-0.011015279218554497,-0.012376731261610985,-0.001336260000243783,0.05550284683704376,-0.05005188658833504,0.10417471826076508,-0.007649718318134546,0.03636949509382248,-0.023519642651081085,-0.0540698766708374,-0.04840029031038284,0.03584311157464981,0.00667213648557663,-0.006317785009741783,-0.047854915261268616,0.04834625497460365,-0.004605178255587816,0.021899672225117683,0.06918766349554062,0.04205157607793808,0.040342096239328384,-0.06301546096801758,-0.13061527907848358,0.06399120390415192,0.0038011360447853804,-0.000310773029923439,-0.002381531521677971,-0.062081027776002884]},{"text":"Out of spite, the human beings pretended not to believe that it was Snowball who had destroyed the windmill: they said that it had fallen down because the walls were too thin.","book":"Animal Farm","chapter":53,"embedding":[-0.05050451681017876,0.1363050639629364,0.07397119700908661,0.08374236524105072,0.10945965349674225,-0.05600326880812645,-0.010510211810469627,0.026966657489538193,0.0107576297596097,-0.021817170083522797,-0.00879742857068777,0.016034698113799095,0.01744261384010315,-0.08979415893554688,0.05327152460813522,-0.03528890758752823,-0.13557621836662292,-0.007046048529446125,-0.0498843789100647,-0.007598778698593378,-0.018006257712841034,-0.07641058415174484,-0.015453984029591084,0.005842307116836309,0.03790934756398201,0.10769323259592056,-0.09335120022296906,0.06856321543455124,-0.012322193011641502,0.02828177437186241,-0.0013734379317611456,0.03153897076845169,-0.04338320717215538,-0.007309179287403822,0.013700214214622974,0.04428350180387497,0.04694991558790207,-0.019257543608546257,-0.02921607717871666,-0.03660035878419876,0.028199002146720886,0.003272206522524357,0.018072722479701042,-0.033595696091651917,-0.04935944452881813,0.13059315085411072,0.028258489444851875,0.02143418975174427,0.01264719758182764,0.025347553193569183,-0.05345919728279114,0.01891368441283703,0.017885297536849976,-0.040734197944402695,0.012072204612195492,-0.0334598682820797,0.04273846372961998,0.008024848066270351,0.007750057149678469,0.0285931583493948,0.05374034494161606,-0.07295359671115875,-0.04105105623602867,0.04452597722411156,0.13004399836063385,-0.04882677644491196,-0.046844325959682465,-0.056159473955631256,-0.026012811809778214,-0.009874418377876282,0.09664823859930038,-0.006531998515129089,-0.05444113537669182,-0.023374589160084724,-0.036328334361314774,-0.04494726285338402,-0.030023332685232162,-0.0692608430981636,0.004701216705143452,0.08052055537700653,0.04275773838162422,0.01229569036513567,0.022282375022768974,-0.008997594937682152,-0.022199762985110283,-0.0070371185429394245,0.04169877618551254,-0.009524457156658173,0.0384979248046875,0.04797792062163353,-0.013861398212611675,-0.04511068016290665,-0.05922440066933632,0.12901203334331512,0.038392338901758194,0.05946553498506546,-0.010128423571586609,0.03364016115665436,-0.07740005850791931,0.059645798057317734,0.005248068366199732,-0.023261407390236855,0.048132382333278656,-0.02413485012948513,0.014051361009478569,-0.00295261200517416,-0.09244327247142792,-0.041373398154973984,-0.0023569860495626926,0.002649686997756362,-0.005780184641480446,-0.03972356766462326,0.020441647619009018,0.05003170669078827,0.042621955275535583,-0.03497815132141113,0.010749809443950653,-0.0467432402074337,-0.19083960354328156,0.015959903597831726,0.10074294358491898,0.1189754381775856,-0.046274539083242416,0.04998954385519028,0.021761547774076462,0.012179519049823284,-0.01956193707883358,-2.8075378505344894e-33,0.03669016808271408,-0.001311274478211999,0.02242443710565567,-0.019877782091498375,0.10265220701694489,-0.014173651114106178,-0.01195190753787756,0.0505870021879673,0.09584241360425949,0.014757630415260792,-0.012904169037938118,-0.005144357215613127,-0.12367221713066101,-0.06280526518821716,0.014090416021645069,-0.03733417019248009,-0.04506451636552811,-0.09645777195692062,0.01940607838332653,0.06011838838458061,0.07237602025270462,-0.02016066573560238,-0.020670071244239807,-0.04049759730696678,-0.11068523675203323,0.032643016427755356,0.013322832994163036,0.03377927839756012,-0.001357120811007917,0.04570331424474716,0.02613757736980915,-0.08176526427268982,-0.060218024998903275,0.04762372747063637,-0.0026999516412615776,-0.02613859437406063,-0.034916043281555176,-0.06088168919086456,-0.016738390550017357,-0.0021092884708195925,-0.024017805233597755,-0.010618737898766994,-0.07172826677560806,0.02350388653576374,0.022840233519673347,-0.04126414284110069,0.012915889732539654,0.016114259138703346,-0.07326135039329529,0.027042724192142487,0.11260122805833817,0.04332837462425232,0.007512209936976433,-0.01865505613386631,0.07297401875257492,0.012768633663654327,0.025388769805431366,0.02185468189418316,-0.05576103553175926,0.016880908980965614,0.025753416121006012,-0.04240996390581131,0.03181187063455582,0.009870102629065514,-0.026790466159582138,-0.03100462816655636,-0.01160441990941763,0.04066053032875061,-0.13260602951049805,0.0055039976723492146,0.0035982849076390266,0.004011017270386219,-0.07075788080692291,0.06838610768318176,-0.05056968703866005,0.015799399465322495,-0.013313768431544304,0.00986410677433014,0.03594650700688362,-0.012687122449278831,0.03656790778040886,0.0271760243922472,-0.01036708801984787,-0.038820505142211914,-0.09585803002119064,-0.02948233298957348,0.03395586088299751,-0.04821867123246193,-0.05789802968502045,-0.09259552508592606,0.03239872306585312,0.02625361643731594,0.0745316669344902,-0.012875259853899479,-0.08958946168422699,-1.1339807576325407e-33,-0.15757179260253906,-0.020596159622073174,-0.06339506059885025,-0.03157610446214676,-0.08480416983366013,0.08363064378499985,-0.004179995507001877,-0.029039470478892326,-0.06884106248617172,0.0035144942812621593,-0.04472355917096138,-0.029322592541575432,0.01580680161714554,0.043937042355537415,0.06868824362754822,-0.07638180255889893,0.06906816363334656,0.0406353659927845,-0.01951427571475506,-0.005752814933657646,0.07920437306165695,0.03895201534032822,-0.10317406058311462,-0.004740807693451643,0.03768729418516159,0.0020908177830278873,0.0340193510055542,-0.10318177193403244,0.06604427844285965,0.039904460310935974,-0.013927288353443146,0.04889056086540222,-0.015444180928170681,0.0018781089456751943,0.04413213953375816,0.036810435354709625,0.018703099340200424,0.005161108914762735,-0.03058036044239998,-0.11299777030944824,0.035435762256383896,-0.026034196838736534,-0.05389633774757385,0.020333359017968178,0.01733451522886753,-0.0339118130505085,-0.05915287509560585,0.003698422573506832,0.06252577900886536,0.0517565980553627,-0.010462894104421139,-0.0033624309580773115,-0.020778728649020195,-0.028755879029631615,-0.04628823325037956,-0.0612991601228714,0.05444251745939255,-0.08701539784669876,0.04571142420172691,-0.04000876471400261,-0.0739695280790329,-0.052137866616249084,-0.036110300570726395,0.0414145290851593,-0.0005075575900264084,0.029886120930314064,-0.009871609508991241,0.03191027045249939,0.0032684134785085917,0.008061191067099571,0.04336640611290932,0.1126658022403717,-0.0013236749218776822,-0.057368144392967224,0.008317767642438412,0.0976450964808464,0.041058823466300964,0.06474451720714569,-0.040018294006586075,-0.01781877502799034,0.013658516108989716,0.027093494310975075,0.05814044177532196,-0.004564014729112387,0.02870856039226055,-0.08570719510316849,-0.03701033815741539,0.0040883696638047695,-0.023507466539740562,0.11048472672700882,0.030459236353635788,-0.04005717113614082,0.010538136586546898,0.08280465006828308,0.023003965616226196,-3.210758237059963e-8,-0.006513138301670551,0.016026237979531288,0.003518100129440427,-0.0033167132642120123,0.04670370742678642,0.0499563030898571,0.014170377515256405,-0.02711358107626438,0.024684635922312737,-0.0245808195322752,-0.07239190489053726,0.036131102591753006,0.0491485595703125,0.10393252223730087,0.008246833458542824,0.040146052837371826,-0.03290415555238724,-0.06430233269929886,-0.002596303354948759,0.002140522003173828,0.030851176008582115,-0.02064540795981884,-0.08816767483949661,-0.0051993923261761665,0.0009940055897459388,0.027360407635569572,-0.10520471632480621,-0.011534450575709343,0.007132069207727909,0.010673660784959793,-0.05803723633289337,-0.03520997241139412,-0.0073382556438446045,-0.0858825147151947,-0.0816025659441948,0.06286831945180893,0.026849737390875816,0.02042320929467678,-0.026849567890167236,-0.09421475976705551,-0.04900477081537247,0.061516765505075455,0.019700033590197563,0.00013667877647094429,0.06479683518409729,0.0011519846739247441,-0.0676644891500473,-0.04106203466653824,-0.054646704345941544,0.03256350755691528,0.03348635137081146,0.003726209979504347,0.04587424919009209,0.06696269661188126,-0.024409504607319832,0.03660338744521141,-0.046768706291913986,-0.015998007729649544,-0.09590482711791992,-0.12453397363424301,-0.01345999538898468,0.03698873519897461,-0.03424660116434097,0.06790059059858322]},{"text":"They were always cold, and usually hungry as well.","book":"Animal Farm","chapter":54,"embedding":[0.004655510187149048,0.07100308686494827,0.005310980137437582,0.17817045748233795,-0.0026034147012978792,-0.02537262998521328,-0.03846478462219238,-0.06340957432985306,-0.051285386085510254,-0.005570205859839916,0.06286058574914932,-0.006286370102316141,-0.009751691482961178,-0.007258471101522446,-0.008483650162816048,-0.09981607645750046,0.015415464527904987,-0.088748998939991,-0.003061295486986637,-0.008403192274272442,-0.05205987021327019,-0.006948217749595642,0.00472987350076437,-0.00098015449475497,0.0691775530576706,0.03760348632931709,-0.03222329542040825,-0.0214957557618618,0.02721756510436535,0.059472598135471344,-0.10012493282556534,-0.010228645987808704,0.05142557993531227,-0.017092544585466385,-0.016047857701778412,-0.0009516034624539316,0.08058975636959076,-0.033111657947301865,-0.04148632287979126,0.009737348183989525,0.05498480424284935,-0.0016298727132380009,0.051719170063734055,-0.04251859709620476,-0.09067737311124802,-0.0014023763360455632,-0.06538165360689163,0.039210665971040726,0.03559397533535957,0.043488964438438416,0.0035053107421845198,-0.009651829488575459,-0.06064533069729805,0.0018407654715701938,0.0311996191740036,0.01993406005203724,-0.030930181965231895,-0.06040533632040024,0.031195353716611862,-0.016344431787729263,-0.05791638791561127,0.0795581191778183,-0.050331320613622665,0.041114985942840576,0.03526604548096657,-0.011909974738955498,-0.046564243733882904,0.03639562427997589,0.101502925157547,0.02158297784626484,-0.003204924985766411,0.06759436428546906,-0.02225404977798462,-0.07458746433258057,-0.05541925132274628,0.005645315162837505,0.014950426295399666,-0.11795298755168915,-0.07046287506818771,-0.024404840543866158,-0.08242698758840561,-0.045173529535532,0.016093282029032707,0.017833996564149857,0.027174437418580055,-0.014788123778998852,0.046823590993881226,-0.06269143521785736,0.007183434441685677,0.019886977970600128,0.025321558117866516,-0.036157216876745224,-0.045453883707523346,0.0004726674233097583,0.018289679661393166,-0.0035620462149381638,0.0345853753387928,0.0019625239074230194,0.02654346264898777,-0.0006519269081763923,0.02891620807349682,-0.06610756367444992,0.07736536860466003,0.10045488178730011,0.05074187368154526,0.007623275276273489,-0.04350436106324196,-0.050580356270074844,0.00587635301053524,0.02350984886288643,-0.059185728430747986,0.058152858167886734,0.04637480154633522,0.06837423890829086,-0.044362809509038925,-0.032107457518577576,-0.10080665349960327,-0.054142434149980545,-0.07708518952131271,0.02041926607489586,-0.0503975972533226,0.09980499744415283,-0.017736932262778282,-0.01160922646522522,-0.01599750854074955,0.06557999551296234,0.05524766817688942,-3.5791826682661335e-33,0.05178676173090935,-0.09017948806285858,0.046582575887441635,0.020231353119015694,0.0476030595600605,-0.04430592432618141,-0.0575837567448616,0.07744744420051575,0.08483608067035675,0.022221840918064117,-0.0455508753657341,-0.08436835557222366,-0.048628874123096466,-0.013326941058039665,-0.015775173902511597,-0.029621735215187073,-0.08865951746702194,-0.020004810765385628,0.056275755167007446,0.06964816898107529,-0.04920916631817818,0.0669272243976593,0.05695981904864311,0.012044406495988369,0.029076140373945236,0.007101718336343765,-0.02699834294617176,-0.017688769847154617,-0.07820235937833786,0.02230239473283291,0.0533406063914299,-0.046767573803663254,-0.034366678446531296,0.00004589337549987249,-0.018754445016384125,0.0250549279153347,0.06298532336950302,-0.02894427813589573,-0.04036751016974449,0.02800625003874302,0.1113007590174675,-0.05541936680674553,0.11167091131210327,-0.010666180402040482,-0.04092468321323395,0.011591545306146145,-0.11649300158023834,0.03501208871603012,-0.02347531169652939,0.030078526586294174,0.02125556766986847,0.0106996800750494,0.03639005497097969,-0.02608512155711651,0.00457555428147316,0.026703543961048126,0.04612332955002785,0.043806325644254684,-0.06960662454366684,0.01661691628396511,0.031658608466386795,0.025976525619626045,0.0790858045220375,-0.10069771111011505,-0.0010789429070428014,0.07078595459461212,0.010082273744046688,-0.0268049668520689,-0.07557301223278046,0.0016706257592886686,0.036965206265449524,-0.01749820075929165,0.024277249351143837,-0.056665387004613876,-0.038960352540016174,0.0012332724872976542,-0.0012215839233249426,-0.04161634296178818,-0.014930333010852337,-0.03575592488050461,0.10466449707746506,-0.017230408266186714,0.010869724676012993,0.03318559750914574,-0.07271520793437958,0.024335112422704697,0.030965059995651245,-0.037157367914915085,0.02559862658381462,0.06683779507875443,0.007932966575026512,0.014534237794578075,0.051527027040719986,-0.06143025681376457,-0.05518064647912979,1.3611174902801004e-33,-0.005938006564974785,0.04197031632065773,-0.0199155043810606,0.06271257251501083,0.007778117898851633,-0.008903111331164837,-0.06165283918380737,-0.014153947122395039,0.009326420724391937,0.02597152069211006,-0.02366090938448906,-0.01692911796271801,0.0011370532447472215,-0.027967844158411026,0.05966431275010109,0.055327240377664566,0.05317322164773941,0.09948304295539856,0.07132367044687271,0.011739074252545834,-0.06670082360506058,-0.026753364130854607,-0.04682097211480141,-0.01792062073945999,0.0075796497985720634,0.09271910786628723,0.04026707634329796,0.028122615069150925,-0.1682969331741333,-0.07713016122579575,0.03736381232738495,-0.003977437503635883,-0.017134927213191986,-0.010293225757777691,-0.026774952188134193,0.057937487959861755,-0.12115886062383652,-0.001669578836299479,-0.025105822831392288,-0.03152871131896973,-0.0022817349527031183,-0.014809591695666313,0.06053939089179039,0.12174849957227707,-0.00014743579959031194,0.015920694917440414,-0.005048416089266539,-0.018901433795690536,-0.006501039955765009,0.027919329702854156,0.035440050065517426,0.004376932512968779,-0.08496233075857162,-0.008527502417564392,-0.09338398277759552,0.0013201538240537047,-0.06351231038570404,-0.014489973895251751,0.03861892595887184,-0.08070676028728485,-0.06185026466846466,-0.07520896941423416,0.008326005190610886,-0.015925275161862373,-0.018590569496154785,0.037861548364162445,-0.020375998690724373,-0.026310868561267853,0.011914807371795177,0.008412295952439308,0.10778705775737762,-0.018576061353087425,0.01882782392203808,0.04105432331562042,-0.027669623494148254,0.043000172823667526,-0.06317251175642014,-0.015191583894193172,0.010990066453814507,-0.008383875712752342,-0.14692489802837372,-0.041512053459882736,0.01517097931355238,0.06122942641377449,-0.045366499572992325,0.03999384865164757,-0.029808124527335167,-0.03531983122229576,0.009343055076897144,0.05022156983613968,0.007129313889890909,-0.08245012164115906,0.07658649235963821,0.029122022911906242,0.05228548124432564,-1.8708339766249082e-8,0.08791244775056839,0.05789000913500786,-0.023531166836619377,0.10598988085985184,0.00005397971108322963,-0.054452236741781235,0.05019062012434006,0.03365160897374153,0.0264796931296587,0.09425767511129379,-0.06229226663708687,0.12659530341625214,0.07812681049108505,0.0057760621421039104,0.02190258353948593,0.011498228646814823,0.008139672689139843,-0.09262289106845856,-0.06164957955479622,-0.03277105093002319,-0.03661629557609558,0.008736714720726013,-0.0415484793484211,0.02349170856177807,-0.03019142895936966,0.058469709008932114,-0.01088354829698801,0.010551904328167439,0.09628164768218994,0.07510151714086533,-0.03973160311579704,-0.02126219868659973,0.02985522150993347,-0.0722668245434761,0.040556252002716064,0.011108669452369213,-0.0021544266492128372,0.0039180913008749485,0.0645255297422409,-0.11700224876403809,-0.053375471383333206,-0.005691594444215298,-0.043687112629413605,-0.004491626285016537,-0.015316077508032322,0.017515696585178375,-0.005768408998847008,0.12680800259113312,0.008508630096912384,0.046913739293813705,-0.018094222992658615,0.08260897547006607,-0.010785607621073723,0.053023409098386765,-0.04286756366491318,-0.12190622091293335,0.01566227525472641,-0.006206718739122152,0.06799764931201935,0.02136961556971073,-0.05585368722677231,0.05900340527296066,-0.12198369204998016,-0.016779549419879913]},{"text":"The potatoes had become soft and discoloured, and only a few were edible.","book":"Animal Farm","chapter":54,"embedding":[0.08492262661457062,-0.01712070405483246,-0.05294596776366234,0.05403619632124901,0.0950462818145752,-0.05321569740772247,-0.057126495987176895,0.007563872262835503,-0.0068885632790625095,0.02348197065293789,0.12191898375749588,-0.03116937167942524,-0.0006534642889164388,-0.06087885797023773,-0.053009986877441406,-0.03695106878876686,0.012623906135559082,-0.0496387854218483,-0.07494671642780304,0.03976739943027496,-0.0429808683693409,0.03583488613367081,-0.011974111199378967,-0.01820259913802147,0.04426945745944977,0.06555995345115662,-0.020131096243858337,-0.018045149743556976,0.048938263207674026,-0.06556185334920883,-0.03726547211408615,0.048155441880226135,-0.01439642533659935,0.030033841729164124,0.0686153694987297,-0.028137503191828728,0.03452533483505249,-0.03631293401122093,0.056579798460006714,-0.06424905359745026,0.004442020319402218,-0.0671529620885849,-0.03139432147145271,0.007187658455222845,0.018114833161234856,-0.028740892186760902,-0.11028614640235901,-0.08862944692373276,0.04347902536392212,-0.04638946056365967,0.037621233612298965,0.012678646482527256,-0.03524857386946678,-0.055892765522003174,0.024110717698931694,-0.12094247341156006,-0.024168865755200386,0.03722676634788513,0.00861175637692213,0.03027176298201084,-0.016325023025274277,-0.046447739005088806,0.06763456761837006,-0.02408587746322155,-0.016704721376299858,-0.04224484786391258,-0.08645668625831604,-0.06640453636646271,-0.044240210205316544,0.032436471432447433,0.03451089188456535,0.029335815459489822,0.03252771496772766,-0.0523819737136364,-0.05458544194698334,-0.028131285682320595,-0.035573963075876236,0.007947014644742012,-0.016437318176031113,0.03386194631457329,-0.05943071469664574,0.006927665323019028,-0.013473025523126125,-0.011811304837465286,-0.0397145114839077,0.021738827228546143,-0.017882859334349632,-0.032582882791757584,-0.03371841460466385,0.04014592245221138,0.07245591282844543,0.011538097634911537,0.03897971659898758,0.027840517461299896,0.07807963341474533,-0.05132780596613884,0.003141253488138318,-0.05045342445373535,0.005784906912595034,0.007505406159907579,-0.059976767748594284,0.043425388634204865,-0.00237695942632854,0.011121501214802265,-0.02184475027024746,-0.003718955907970667,-0.07214786857366562,-0.0630202516913414,-0.035954441875219345,0.03451735898852348,-0.01316541712731123,0.0459405779838562,0.0388910248875618,0.03491321951150894,-0.042391087859869,-0.05931071937084198,-0.007315844297409058,-0.024855995550751686,-0.02927372232079506,0.008595206774771214,-0.07234696298837662,0.05034947395324707,0.006979116704314947,0.032141491770744324,-0.04530864953994751,0.021455274894833565,0.06140795722603798,-2.9795304901460447e-33,0.06277083605527878,-0.04792650043964386,-0.013644782826304436,-0.05184609442949295,0.07386786490678787,-0.04460270330309868,-0.019558999687433243,0.03064245916903019,0.08289501070976257,-0.03804653137922287,-0.02706087939441204,-0.07549203187227249,-0.06663770973682404,-0.0742645338177681,0.02417907491326332,0.022767676040530205,0.01765386573970318,-0.056388918310403824,0.10014139115810394,0.007032071705907583,-0.10817473381757736,0.01811971887946129,0.0052969856187701225,0.04552386701107025,-0.07634170353412628,0.018106818199157715,0.02215169183909893,-0.07398340851068497,-0.00894507858902216,-0.011487115174531937,-0.02500663697719574,0.033389944583177567,-0.004353450611233711,0.05593174695968628,0.025027208030223846,0.06862519681453705,0.06536456197500229,0.008460844866931438,-0.04811519756913185,-0.010072737000882626,-0.004953067284077406,-0.027164019644260406,0.09146080166101456,-0.038965024054050446,-0.024332931265234947,-0.009432997554540634,0.01276505459100008,0.052969831973314285,-0.0307052880525589,-0.044960927218198776,0.00844589713960886,0.05484449490904808,0.022241903468966484,-0.009418264962732792,-0.003721460700035095,-0.006475038360804319,0.041616152971982956,-0.00414083618670702,-0.11081132292747498,0.032110344618558884,0.049803804606199265,0.04911890998482704,0.03850490599870682,-0.04845908656716347,-0.05886315554380417,0.03679580241441727,-0.104591965675354,-0.028336821123957634,-0.05802220478653908,-0.020282505080103874,0.02231457084417343,-0.033083535730838776,0.04271702468395233,-0.10013201087713242,-0.01633100025355816,-0.016553768888115883,0.041002776473760605,-0.021176893264055252,-0.0005895739886909723,-0.06883510202169418,0.08016326278448105,-0.004372880794107914,-0.020148327574133873,0.061624325811862946,-0.07702603936195374,0.07465817034244537,0.011103782802820206,-0.04698999971151352,0.054014675319194794,-0.03560757264494896,-0.027058254927396774,0.011557267047464848,-0.009509654715657234,-0.10768159478902817,-0.013456106185913086,9.09607355064375e-34,-0.018147939816117287,0.09220163524150848,-0.0754794105887413,0.07045644521713257,0.030132725834846497,0.007091935258358717,-0.07550379633903503,0.0016134559409692883,0.028048882260918617,-0.06585303694009781,0.03618825599551201,-0.00924200564622879,-0.0240746159106493,-0.04991362243890762,-0.04646042734384537,0.10344769805669785,-0.018867140635848045,0.08110328763723373,0.032733507454395294,0.0066544958390295506,-0.022833967581391335,0.04137125983834267,-0.0031149506103247404,0.012551337480545044,0.04634096473455429,0.07417451590299606,0.04169538989663124,0.021953202784061432,-0.04835670068860054,-0.06612196564674377,0.14838795363903046,-0.07463231682777405,-0.012276188470423222,0.018245698884129524,0.05412491038441658,0.0314832404255867,-0.018861327320337296,0.011583642102777958,-0.01509215496480465,-0.019994515925645828,-0.05510345473885536,-0.04237707704305649,-0.008851408958435059,0.082562156021595,-0.00971203576773405,0.03904782980680466,0.004466484300792217,-0.001101720379665494,0.04314936697483063,-0.003599091200158,0.08355045318603516,0.1018659770488739,-0.05105181783437729,0.022972751408815384,-0.04694867879152298,0.037119634449481964,0.020373357459902763,0.0038231092039495707,0.015155461616814137,-0.044509995728731155,-0.06345649808645248,0.031118733808398247,-0.07410787791013718,0.005723855923861265,0.038216762244701385,0.009960174560546875,-0.024783406406641006,0.012708755210042,-0.01941806636750698,-0.006261645350605249,0.049420371651649475,0.012788067571818829,0.06628286838531494,0.02186756581068039,0.0543561615049839,-0.01419118233025074,-0.09386812895536423,-0.050707537680864334,0.06815940886735916,0.008037119172513485,-0.0786357894539833,0.021794738247990608,-0.010673376731574535,0.015674591064453125,0.0344921313226223,0.05911415442824364,0.00916263461112976,-0.107980877161026,-0.044825319200754166,0.09607870876789093,0.05576033890247345,-0.019229436293244362,0.13629165291786194,0.03739502653479576,0.037390999495983124,-1.943693028749749e-8,0.1468922197818756,-0.030321670696139336,-0.0891822800040245,0.03339220583438873,0.09107281267642975,-0.11192072182893753,0.04484887421131134,0.02827606350183487,0.014899950474500656,0.1059926375746727,-0.17668332159519196,0.028249258175492287,-0.029159702360630035,0.07630201429128647,0.046073801815509796,0.059602443128824234,0.08899345993995667,-0.06571653485298157,0.006072298623621464,0.03849956765770912,-0.040499404072761536,0.005122507456690073,-0.08464532345533371,-0.0928678959608078,-0.021610667929053307,-0.01656896248459816,-0.015612918883562088,-0.07351619005203247,0.0904608964920044,0.11025003343820572,0.06027679145336151,-0.01877002790570259,0.008933182805776596,-0.0575907900929451,-0.02991221286356449,0.04052439332008362,-0.04176052287220955,-0.017942562699317932,-0.032114144414663315,-0.04967812821269035,-0.09379252791404724,-0.005166208371520042,0.018898015841841698,0.0081072598695755,-0.06539469212293625,0.023705456405878067,-0.048744913190603256,0.04204518720507622,0.00006701581150991842,0.07466630637645721,0.03268183767795563,0.10553336888551712,0.04890256002545357,0.06062541529536247,-0.010804072953760624,-0.059877634048461914,0.09560904651880264,0.011519785970449448,0.0791880190372467,0.045865271240472794,-0.026667337864637375,0.07653889060020447,-0.0010824816999956965,0.038750436156988144]},{"text":"Once again it was being put about that all the animals were dying of famine and disease, and that they were continually fighting among themselves and had resorted to cannibalism and infanticide.","book":"Animal Farm","chapter":54,"embedding":[-0.02847772091627121,0.11024745553731918,-0.007199326530098915,0.07867935299873352,0.011869512498378754,0.05646876245737076,-0.03021233156323433,-0.014123925007879734,-0.07088885456323624,0.032677602022886276,0.05431940034031868,0.017192980274558067,-0.02067900076508522,0.01800924353301525,-0.07583361119031906,-0.0012700099032372236,-0.011066660284996033,-0.011746828444302082,-0.011873728595674038,0.05019121989607811,0.000820309913251549,0.0636337473988533,0.04634443670511246,0.07424768805503845,-0.10870762169361115,-0.032540079206228256,0.01271107792854309,0.01732596755027771,-0.018160047009587288,0.024807211011648178,-0.05253181234002113,0.025298355147242546,0.023190155625343323,-0.0027040380518883467,-0.03841657564043999,-0.032613616436719894,0.057699523866176605,-0.02302076667547226,0.023797307163476944,-0.02557230181992054,0.014103508554399014,-0.01857704482972622,-0.013159542344510555,-0.05143345892429352,-0.02652663365006447,-0.02947341464459896,-0.10015126317739487,-0.02951677143573761,0.0802547037601471,-0.004894915036857128,0.023490795865654945,-0.07431739568710327,-0.03726496174931526,-0.08490866422653198,0.05452544242143631,-0.07617326080799103,-0.02338094264268875,0.004255674313753843,-0.052762359380722046,-0.05621698126196861,0.035515401512384415,0.014840911142528057,0.048553720116615295,0.0678907260298729,0.07460389286279678,-0.0045467265881598,0.004057599231600761,0.06559186428785324,-0.10126538574695587,0.027854211628437042,-0.011234849691390991,-0.061878908425569534,0.02136113867163658,-0.08446948230266571,-0.03970414772629738,-0.01442998182028532,-0.042638856917619705,0.007847294211387634,0.028988147154450417,-0.04537034034729004,0.05562293902039528,-0.027581404894590378,0.008807247504591942,-0.0420866422355175,0.05269021540880203,-0.04811378940939903,0.02713249996304512,-0.12385118007659912,0.05223393440246582,-0.007716333027929068,-0.02294878475368023,-0.09114869683980942,0.0312725268304348,0.05886717140674591,-0.0009930863743647933,0.00543952127918601,-0.04445823282003403,-0.05465219169855118,0.0458337627351284,0.031005224213004112,-0.024869447574019432,-0.07750237733125687,-0.03980781510472298,-0.013729138299822807,0.01732964627444744,-0.08246329426765442,-0.06354101747274399,-0.023953141644597054,-0.02859923429787159,0.008337321691215038,-0.13041052222251892,0.03493881970643997,0.0361974723637104,0.09142045676708221,0.11590883880853653,0.022616500034928322,0.03869922459125519,-0.08097414672374725,-0.013204621151089668,-0.013999810442328453,0.015871545299887657,-0.030921196565032005,-0.09549854695796967,0.06568944454193115,0.02274586260318756,-0.028566131368279457,0.008909346535801888,-1.1742773009094537e-34,0.05312258377671242,-0.12018239498138428,0.01293637603521347,0.028910262510180473,0.05719028413295746,0.007957961410284042,-0.03362097218632698,0.011440790258347988,0.03659714758396149,-0.04561251774430275,0.03439652919769287,-0.06365833431482315,-0.010921317152678967,0.024865686893463135,-0.06488925963640213,-0.03820372000336647,-0.07447025179862976,0.014385189861059189,0.13836991786956787,0.0013174462364986539,-0.07326798141002655,0.06803471595048904,-0.010800345800817013,-0.02786523662507534,0.05652753263711929,0.08106344193220139,-0.01675625704228878,-0.07191462814807892,-0.018175378441810608,0.009286453947424889,0.04256794974207878,-0.027647139504551888,-0.06998094171285629,-0.08029516786336899,0.010681647807359695,-0.046901948750019073,-0.01310659572482109,-0.02196725830435753,-0.034886542707681656,0.061121825128793716,0.030753254890441895,-0.0013730674982070923,-0.02148638851940632,-0.053907278925180435,0.05172399431467056,0.05843861773610115,-0.018425963819026947,0.027405356988310814,-0.018793754279613495,0.06228732317686081,0.005185192916542292,0.027128413319587708,0.05801687017083168,-0.07529362291097641,-0.002982951235026121,0.0012563830241560936,-0.027054058387875557,0.026157230138778687,-0.06008502095937729,-0.011241691187024117,0.07880987972021103,-0.004841399844735861,0.0488419383764267,-0.05796506628394127,0.021787088364362717,0.008401146158576012,-0.00025674121570773423,0.005768013186752796,-0.06537333875894547,0.023081351071596146,-0.06201478838920593,-0.0563998818397522,-0.05426710098981857,-0.0645005851984024,-0.08014560490846634,-0.029156526550650597,0.0556793175637722,-0.04684586077928543,-0.10064861178398132,-0.022541947662830353,0.03131050616502762,0.04579060524702072,0.0021881177090108395,-0.04104751721024513,-0.0320628322660923,0.03192264586687088,0.07999300956726074,-0.08104953169822693,0.04818371310830116,-0.021981805562973022,0.04190785810351372,0.06301556527614594,0.013306164182722569,-0.08079840242862701,0.001279342221096158,-1.873036188349087e-33,-0.04049937427043915,0.008381791412830353,-0.00996530894190073,0.04711080342531204,-0.02022579126060009,-0.016546981409192085,-0.09885188192129135,0.021597180515527725,0.02328529953956604,-0.00010823328921105713,-0.01754589006304741,-0.0293962974101305,0.05617889389395714,0.03618498146533966,-0.024412851780653,-0.023415125906467438,-0.029568122699856758,-0.01280547771602869,-0.020030958577990532,-0.03195596858859062,-0.05651633068919182,0.022591905668377876,-0.08116879314184189,-0.08406458795070648,0.04501178860664368,0.11871261149644852,-0.00042210108949802816,0.0065363203175365925,-0.003471849951893091,-0.1015985831618309,0.04683733731508255,0.030939938500523567,0.0029404074884951115,0.00020777760073542595,0.024012843146920204,0.042418643832206726,0.07053246349096298,0.010708272457122803,-0.01168513298034668,-0.0587347149848938,0.04625449329614639,-0.05110066756606102,-0.07829798012971878,0.043019965291023254,-0.0004062575753778219,0.05572233721613884,0.036302950233221054,0.05944443494081497,0.05584718659520149,0.05274574086070061,-0.006563776172697544,-0.024985244497656822,0.011289671063423157,-0.03454902395606041,-0.0090267863124609,-0.026107802987098694,-0.02322864718735218,-0.08233935385942459,0.034569453448057175,-0.07892406731843948,-0.083579882979393,0.0035228345077484846,-0.035664062947034836,0.015050457790493965,-0.004716144409030676,-0.01862139068543911,-0.021876053884625435,-0.03683299571275711,0.03336486965417862,0.035020940005779266,-0.01597331464290619,0.013343681581318378,-0.08291488140821457,0.08506302535533905,-0.016840942203998566,0.05980587378144264,-0.015650348737835884,-0.031290680170059204,0.022241847589612007,0.027607565745711327,-0.01709749549627304,-0.07669960707426071,0.029781954362988472,0.04360445216298103,-0.043110959231853485,-0.00079235719749704,-0.032103173434734344,0.11701527237892151,0.041101839393377304,0.011997254565358162,-0.05141731724143028,-0.11253070831298828,0.01319488137960434,0.059591833502054214,0.020212121307849884,-3.041624907496043e-8,0.09569001197814941,-0.008789023384451866,-0.04085153341293335,0.007939220406115055,0.09651529788970947,-0.007996593602001667,0.07018715888261795,-0.005397365428507328,-0.0007253899821080267,0.17308871448040009,-0.056240860372781754,0.1494455635547638,-0.0025582651142030954,0.11080116033554077,-0.044630199670791626,0.021184783428907394,0.0354899987578392,-0.14353296160697937,-0.009122912771999836,0.04318176582455635,-0.06600479036569595,0.024830449372529984,-0.009689748287200928,-0.12155888229608536,0.013463970273733139,-0.010129453614354134,-0.06315655261278152,0.04027432203292847,-0.007166409399360418,-0.017503267154097557,-0.007930606603622437,0.014362391084432602,-0.02458282932639122,-0.02022434026002884,-0.005842259153723717,0.03294094279408455,-0.043772030621767044,0.024177029728889465,0.10731104016304016,-0.12236421555280685,0.01772291399538517,0.09686039388179779,0.06761696934700012,0.06108886003494263,0.08615653961896896,0.008996819145977497,0.007194582372903824,0.07129077613353729,-0.046148866415023804,-0.007356570102274418,-0.09789024293422699,0.04614579305052757,0.040224891155958176,0.035539865493774414,0.04112495109438896,-0.013500378467142582,0.008534491062164307,0.0676240399479866,-0.003017864655703306,0.0052461144514381886,0.07201192528009415,0.06131120026111603,0.009181389585137367,0.054262712597846985]},{"text":"On some suitable pretext Whymper was led through the store-shed and allowed to catch a glimpse of the bins.","book":"Animal Farm","chapter":54,"embedding":[-0.023185251280665398,0.12200764566659927,-0.04253260791301727,0.005976860411465168,0.1419854313135147,0.03962942957878113,0.04721750691533089,0.06215043365955353,-0.008871559984982014,0.12153951823711395,0.09614297747612,-0.005528970155864954,0.055888526141643524,-0.004964062944054604,0.02178628370165825,-0.030407844111323357,-0.02291686087846756,-0.053291406482458115,-0.06416626274585724,-0.04976431652903557,-0.0005559064447879791,-0.017479075118899345,0.03650360926985741,-0.024450525641441345,-0.015880383551120758,0.051534127444028854,-0.06277849525213242,0.00625990517437458,0.05335051566362381,0.012621796689927578,0.018861036747694016,0.03851957619190216,0.05811334401369095,-0.012634637765586376,0.06432007253170013,0.06028389930725098,0.07257170975208282,-0.007780821528285742,0.01924475096166134,-0.042300645262002945,-0.01914740726351738,-0.0008221413008868694,-0.024667968973517418,0.030695127323269844,-0.1262884885072708,-0.015059745870530605,0.04566844180226326,0.04703957587480545,0.029639581218361855,-0.08916738629341125,0.022597065195441246,0.0239486675709486,0.04860350862145424,-0.04996536299586296,-0.022525642067193985,0.025710534304380417,0.009526267647743225,-0.049886588007211685,-0.01268692035228014,0.03935810551047325,-0.014868628233671188,0.002076968550682068,-0.025661801919341087,-0.009398757480084896,0.05735662579536438,-0.03137238323688507,0.040931910276412964,-0.00891928095370531,0.0853145495057106,-0.04850170761346817,0.013348055072128773,-0.032273344695568085,-0.029850563034415245,0.004114971961826086,-0.0826277807354927,0.04166587069630623,0.03380749747157097,-0.04414329677820206,-0.09810646623373032,-0.0681803822517395,-0.058577172458171844,-0.014804859645664692,0.04172013700008392,0.01895975135266781,-0.055164799094200134,0.03239091485738754,0.0009135742438957095,-0.04976228252053261,0.06116543337702751,0.026322700083255768,-0.031100990250706673,-0.09684675186872482,-0.03354427218437195,0.049910202622413635,-0.007018003612756729,-0.062631756067276,0.01208614930510521,0.11402895301580429,0.03516516089439392,0.048256803303956985,0.03995979204773903,-0.03137646242976189,0.016996700316667557,-0.006747842766344547,0.0008227895013988018,-0.07176299393177032,-0.023816997185349464,0.024647021666169167,0.0008690557442605495,0.004979673773050308,-0.04349832609295845,-0.0077055408619344234,0.08898881077766418,0.0363750085234642,0.023439131677150726,0.021344058215618134,-0.04355422034859657,-0.005950615741312504,-0.058366820216178894,0.01201249286532402,0.11079293489456177,0.05811174586415291,0.03184017911553383,0.013927076943218708,-0.012818251736462116,-0.013343091122806072,0.03325892239809036,-2.9732957783118787e-33,0.0011240019230172038,-0.0748138502240181,0.04262697696685791,0.011935424990952015,0.08993741124868393,0.00733886519446969,-0.04903470724821091,0.0483960397541523,0.04772535338997841,0.08120880275964737,0.015533829107880592,-0.026649199426174164,-0.05072484165430069,-0.027504250407218933,0.012685014866292477,0.004649041686207056,-0.05331715568900108,0.04439366236329079,0.03286929056048393,-0.033944226801395416,-0.07228876650333405,-0.0473811998963356,-0.011162557639181614,-0.04672667756676674,0.04994963854551315,0.034221403300762177,0.009837484918534756,-0.0859505832195282,0.14652608335018158,0.044358350336551666,0.00902517233043909,0.007915668189525604,0.003946940880268812,-0.018164340406656265,0.002375614596530795,-0.02180422656238079,-0.030604306608438492,-0.06494561582803726,-0.08440785109996796,-0.07940921187400818,0.03799492120742798,0.00865707267075777,0.03649475425481796,0.012972722761332989,0.0047767870128154755,-0.040539368987083435,-0.1446668952703476,0.0223541297018528,-0.08165858685970306,0.08383477479219437,0.05041656270623207,0.048744477331638336,-0.016222059726715088,0.04523026943206787,0.009180485270917416,-0.00017614242096897215,0.019075440242886543,-0.05178031697869301,0.03850232809782028,0.12805718183517456,0.010057935491204262,0.14198389649391174,-0.014916571788489819,-0.0020866128616034985,-0.05608629807829857,-0.07267052680253983,0.08300869166851044,0.006355024874210358,-0.04018799215555191,0.11663329601287842,-0.11557329446077347,0.061685651540756226,0.03557266667485237,0.02823343314230442,-0.06411653012037277,0.021072525531053543,-0.07876623421907425,0.0688767358660698,-0.012457510456442833,-0.12925440073013306,0.10040416568517685,-0.03236118331551552,0.011431271210312843,0.011509228497743607,-0.10631480067968369,0.03680897131562233,0.04141305387020111,-0.08166341483592987,-0.05668129399418831,-0.019766489043831825,0.044905129820108414,0.019810205325484276,-0.03567218407988548,-0.04436034336686134,-0.1121516153216362,1.0385962787255239e-33,-0.03687824308872223,-0.04979715123772621,-0.06193419545888901,-0.011807612143456936,-0.0672946348786354,-0.0070967222563922405,-0.0038553059566766024,-0.1416398137807846,-0.026299718767404556,-0.033698201179504395,-0.052949972450733185,0.04318584129214287,0.03366212174296379,0.049959272146224976,-0.014410791918635368,0.016214445233345032,0.05648340657353401,-0.05358009412884712,-0.008051532320678234,0.05929600074887276,0.009739326313138008,-0.014874864369630814,-0.09061605483293533,-0.0962921679019928,-0.028642553836107254,0.0008509765611961484,-0.024066975340247154,0.017195044085383415,-0.03070526011288166,0.027716413140296936,0.015383338555693626,-0.022602511569857597,-0.05201709270477295,-0.004358517937362194,-0.02704639732837677,-0.04715583100914955,-0.009698701091110706,0.007188867311924696,0.01297863107174635,-0.03283416107296944,-0.014183655381202698,0.008098522201180458,-0.05600825324654579,0.04062988609075546,-0.06259302794933319,0.06735643744468689,-0.018789546564221382,0.003379893023520708,0.06346116214990616,0.014954104088246822,0.0002489881298970431,-0.013834004290401936,0.03856579214334488,-0.041530948132276535,-0.06576742976903915,0.019950151443481445,-0.0494367852807045,0.005130200181156397,0.08430008590221405,-0.015459060668945312,0.05746837705373764,0.005845881067216396,-0.053769152611494064,-0.00613134540617466,0.004610877018421888,-0.06840895861387253,-0.0039537809789180756,0.010321657173335552,-0.00008136573887895793,-0.0666043758392334,0.08730245381593704,-0.07286284863948822,-0.022467629984021187,-0.005017390474677086,-0.010741034522652626,0.09591374546289444,-0.05146626755595207,-0.06450284272432327,-0.05528946593403816,0.016202660277485847,-0.08470562100410461,-0.004586737137287855,0.016916347667574883,-0.007541434373706579,0.08277256786823273,-0.04593430459499359,0.003381564514711499,0.026840830221772194,0.05809151008725166,-0.05303395912051201,0.008115642704069614,-0.0038941861130297184,-0.004156907554715872,0.0545930415391922,0.02093006856739521,-2.620918593265742e-8,-0.03143831342458725,-0.012692139483988285,-0.031907979398965836,0.030866151675581932,0.15145078301429749,0.0017373415175825357,0.029193023219704628,0.09509827941656113,-0.04881085455417633,0.03757566958665848,0.004625940229743719,-0.04521690309047699,-0.1250661462545395,0.046701762825250626,0.10870981961488724,-0.029313430190086365,-0.030545266345143318,-0.04098189249634743,-0.05251070857048035,-0.00266883778385818,-0.015208159573376179,0.06935875117778778,0.032629746943712234,-0.02301160804927349,-0.08523073047399521,0.053795259445905685,0.005745221860706806,0.03322679176926613,0.022138072177767754,0.066503144800663,0.0884893387556076,0.01856626756489277,-0.013651029206812382,0.01774550788104534,-0.013981272466480732,0.09170107543468475,-0.06588057428598404,0.06784313172101974,0.03317024186253548,-0.022166971117258072,-0.04257228225469589,-0.06333199143409729,-0.02909216284751892,0.07032963633537292,0.055786482989788055,0.026714317500591278,-0.00013245057198219,0.0315251462161541,-0.050539955496788025,-0.019627170637249947,-0.013414009474217892,-0.014527017250657082,0.023649336770176888,0.09017477929592133,0.08966045081615448,-0.05158119276165962,-0.05572197958827019,-0.035326819866895676,0.00025924190413206816,0.026406018063426018,-0.009184897877275944,0.023022184148430824,-0.05359393730759621,0.024789992719888687]},{"text":"Frequently he did not even appear on Sunday mornings, but issued his orders through one of the other pigs, usually Squealer.","book":"Animal Farm","chapter":55,"embedding":[0.07836201041936874,-0.027817770838737488,0.04243423789739609,0.007810227107256651,-0.02342415787279606,-0.000966654799412936,-0.024263670668005943,-0.036670226603746414,-0.04427221417427063,-0.04280443489551544,0.042862966656684875,-0.013228580355644226,0.05519545450806618,0.07321605086326599,-0.011580053716897964,-0.0806603878736496,0.04544349014759064,0.0019202727125957608,0.009885739535093307,-0.005180747248232365,0.008176896721124649,0.04031233862042427,0.057688068598508835,-0.013343230821192265,0.030112193897366524,-0.060831908136606216,0.021733637899160385,-0.009107863530516624,0.023701729252934456,-0.10187242925167084,0.02029133401811123,-0.008184053003787994,-0.03311445191502571,-0.027033045887947083,-0.03246830031275749,-0.013604645617306232,0.0823337510228157,0.08075735718011856,0.10393113642930984,0.027265002951025963,0.015591153874993324,-0.08187230676412582,0.008590239100158215,-0.08909144997596741,-0.07787226140499115,-0.05328218266367912,0.03295503184199333,0.016457339748740196,0.06834463030099869,-0.008933290839195251,-0.05094584450125694,-0.03333619609475136,-0.02011646330356598,-0.041760578751564026,0.010022617876529694,0.017017820850014687,-0.016159942373633385,-0.02247985452413559,0.08359085023403168,0.020004156976938248,0.022564444690942764,0.05556168407201767,0.05384541675448418,0.04466691240668297,-0.08615949004888535,0.018922002986073494,-0.056976981461048126,-0.04694802686572075,0.01671338826417923,0.0005056041991338134,0.014608430676162243,-0.029445549473166466,-0.025584420189261436,-0.0013762798625975847,-0.06905721127986908,-0.04685802757740021,0.06313255429267883,-0.008277514018118382,0.043244555592536926,-0.0038595872465521097,-0.07939435541629791,-0.06776177883148193,0.003307260572910309,-0.012649607844650745,0.012862787581980228,-0.022587336599826813,-0.03671857714653015,0.04607401788234711,-0.036449842154979706,0.03209792450070381,0.012785784900188446,-0.05003597214818001,-0.001162115135230124,-0.004162495490163565,0.05954412370920181,-0.07874275743961334,-0.03588922694325447,0.10367371141910553,-0.12281595170497894,0.03772042319178581,-0.0034121056087315083,-0.02671755664050579,0.0660114511847496,-0.0003397628606762737,0.05027605965733528,-0.027255989611148834,-0.07207688689231873,-0.014524459838867188,-0.004027179442346096,-0.06606936454772949,-0.05839873477816582,0.04767569899559021,0.03163757920265198,-0.045563895255327225,0.05880189314484596,0.10642492026090622,-0.05345554277300835,-0.013460611924529076,-0.09814257174730301,-0.032917704433202744,0.12303562462329865,0.06478722393512726,-0.0031112167052924633,0.025062330067157745,0.009995697997510433,0.06738298386335373,0.031579017639160156,-6.040126193131664e-34,0.03154429420828819,-0.05329809710383415,-0.020732305943965912,-0.05163776874542236,0.11475256830453873,0.03710544481873512,-0.04834146425127983,-0.009784003719687462,0.15069717168807983,0.04275408759713173,0.02509884722530842,0.011239457875490189,0.01721019670367241,-0.08383229374885559,-0.10478031635284424,0.051341328769922256,0.03445176035165787,0.028583629056811333,0.014687921851873398,-0.07324805855751038,-0.026197457686066628,0.015345151536166668,-0.03685872629284859,0.05056149885058403,0.027618519961833954,-0.032533228397369385,0.03501973673701286,-0.06299459934234619,0.12569428980350494,0.03460099548101425,0.022572021931409836,0.005679207853972912,0.027071857824921608,0.04881730675697327,0.04912015423178673,-0.016640450805425644,-0.009608477354049683,-0.0793440192937851,-0.045964792370796204,-0.04268146678805351,0.07312795519828796,-0.0159237552434206,-0.01733270287513733,0.004918963182717562,-0.09350719302892685,-0.0009268514113500714,-0.024064142256975174,0.08428850024938583,0.07293285429477692,-0.07158156484365463,0.09577297419309616,0.017097823321819305,0.03064672462642193,0.047147806733846664,-0.0040404838509857655,-0.02007284387946129,0.044042304158210754,-0.05390382558107376,-0.0017641454469412565,0.09342412650585175,0.0050963955000042915,0.04857180640101433,0.03437018021941185,-0.015028657391667366,-0.069743812084198,-0.1032455638051033,-0.05258947238326073,-0.011816059239208698,-0.08836444467306137,0.01675732247531414,0.07154883444309235,-0.028847286477684975,0.004434804432094097,-0.17815299332141876,-0.04369017109274864,-0.0686553344130516,0.000358372664777562,0.061271775513887405,0.009253080934286118,-0.030703971162438393,0.10177022963762283,0.041613467037677765,0.03856920450925827,-0.007102993316948414,-0.06456437706947327,0.09967180341482162,0.0501532144844532,-0.017583850771188736,0.05193040892481804,0.04581519588828087,-0.03632675111293793,-0.049788400530815125,-0.023546375334262848,-0.07828744500875473,0.011310461908578873,-1.5631861630479016e-33,-0.08989273756742477,0.03975173458456993,0.038123585283756256,0.09451159089803696,0.014874372631311417,0.007466220296919346,-0.05469279736280441,0.04603948816657066,0.042598363012075424,-0.09229176491498947,-0.04720737040042877,0.024977320805191994,-0.013238269835710526,-0.044523242861032486,0.0518612302839756,0.051440443843603134,0.10468871146440506,-0.04922717064619064,-0.045174602419137955,-0.00730481930077076,-0.026071663945913315,-0.07360107451677322,0.027397314086556435,-0.021330514922738075,0.013532300479710102,0.058051660656929016,0.03486606478691101,0.07234209030866623,0.0034434772096574306,-0.04704296961426735,-0.017701979726552963,-0.014032730832695961,-0.020895853638648987,-0.026226529851555824,-0.02019478566944599,0.060838889330625534,-0.045450109988451004,0.0796530544757843,-0.05205073207616806,0.0012306551216170192,0.021492555737495422,-0.037415314465761185,-0.010948261246085167,0.05448312684893608,-0.04767923057079315,0.0889054387807846,-0.023848583921790123,-0.030678432434797287,0.0013153598411008716,0.01775941625237465,-0.0887211337685585,0.04684014618396759,-0.028110533952713013,0.04440651461482048,-0.043703846633434296,0.0750364437699318,-0.032179560512304306,0.004869846627116203,0.04752858355641365,-0.008010816760361195,-0.0259099043905735,0.007610430009663105,-0.009361399337649345,-0.06549098342657089,-0.004889558535069227,-0.035839419811964035,-0.04149039462208748,-0.03477833420038223,0.032397810369729996,-0.05460400506854057,-0.003636287059634924,-0.0858631283044815,0.042440932244062424,-0.036651361733675,-0.03737032786011696,0.14020125567913055,-0.05041751265525818,-0.07798412442207336,-0.04772647097706795,-0.008713727816939354,-0.05594049394130707,-0.034526411443948746,0.0089589087292552,0.0060871862806379795,-0.061117470264434814,-0.07298456877470016,0.050963904708623886,0.013253547251224518,0.08309770375490189,0.03935202583670616,0.0716424509882927,-0.04005386307835579,0.04638907313346863,0.013210713863372803,0.06707406789064407,-2.585790781495234e-8,-0.046824291348457336,-0.033275216817855835,0.05419040471315384,-0.05876382067799568,0.11424275487661362,0.021346518769860268,0.045278266072273254,-0.08363611251115799,-0.013086391612887383,0.05487874895334244,-0.0746549442410469,-0.01504527498036623,0.004533293191343546,-0.06829860061407089,0.07324043661355972,-0.016042450442910194,-0.014231245964765549,-0.07867100089788437,-0.009986582212150097,0.016093377023935318,-0.05169755965471268,-0.048577237874269485,0.05748485401272774,-0.0019511436112225056,0.03734592720866203,0.018455177545547485,-0.05718537047505379,-0.016051996499300003,0.04355015978217125,0.11763343214988708,-0.006895911879837513,0.08211776614189148,-0.0070267911069095135,-0.11831732839345932,-0.003750420408323407,0.006114099640399218,0.014784405939280987,0.04405125603079796,0.039569251239299774,-0.0032355370931327343,0.0004598935483954847,-0.054503653198480606,0.033620793372392654,0.0354270413517952,0.02061721310019493,-0.009144437499344349,-0.027943093329668045,-0.02496066503226757,0.05105040222406387,-0.03462360426783562,-0.053852759301662445,0.022546522319316864,0.07358986884355545,-0.00254849623888731,-0.017371807247400284,-0.031275197863578796,0.009825136512517929,-0.09421785920858383,0.05880678445100784,-0.010786053724586964,-0.07301605492830276,-0.04871821403503418,-0.022214975208044052,0.015954872593283653]},{"text":"They had been warned earlier that this sacrifice might be necessary, but had not believed that it would really happen.","book":"Animal Farm","chapter":55,"embedding":[-0.0014239074662327766,0.08683955669403076,-0.02154025435447693,0.05012522637844086,0.06561523675918579,-0.07275709509849548,0.007298609241843224,-0.06126059591770172,-0.01712043210864067,0.03175234794616699,0.047906629741191864,0.037063855677843094,0.009830653667449951,0.014339176937937737,-0.02518119476735592,-0.07974902540445328,-0.02590113691985607,-0.07983365654945374,-0.03468956798315048,0.04975093528628349,0.038502126932144165,-0.0373535081744194,0.055856842547655106,0.029946260154247284,0.05832510441541672,-0.02869039587676525,-0.011199085973203182,0.014228455722332,-0.02964569628238678,0.03035680018365383,-0.007180000189691782,-0.04410214349627495,0.02674202062189579,-0.04159391298890114,-0.034822363406419754,0.05868644639849663,0.030177665874361992,0.014487037435173988,-0.02101355418562889,-0.03732392191886902,0.045741401612758636,-0.03551505506038666,0.009451440535485744,0.08420295268297195,-0.036098603159189224,-0.05625074356794357,-0.04390634596347809,-0.0862162634730339,-0.06478790938854218,-0.06230911239981651,0.04358235374093056,-0.048882391303777695,-0.03927069902420044,-0.09245502203702927,-0.033121444284915924,-0.018093081191182137,-0.08113828301429749,-0.06889968365430832,0.008978156372904778,-0.04388584569096565,-0.01790088787674904,0.013666507788002491,0.047630198299884796,0.010813592933118343,-0.026035942137241364,-0.015762509778141975,0.06340111047029495,0.0071655819192528725,-0.06373955309391022,0.060840558260679245,-0.007266586180776358,-0.020133929327130318,0.010839234106242657,-0.08354108035564423,-0.0816466361284256,-0.015499288216233253,0.014006299898028374,-0.026587417349219322,-0.0288351122289896,-0.052967336028814316,-0.004911502823233604,0.00456312345340848,0.017224550247192383,0.08393555879592896,0.00002120043609465938,0.07085379213094711,-0.010736765339970589,-0.09600663930177689,0.037347741425037384,0.023473139852285385,0.07788553833961487,-0.10657943785190582,-0.05723947286605835,0.08848433196544647,-0.016998473554849625,0.048498399555683136,-0.011375436559319496,0.06501218676567078,-0.0620354488492012,-0.02837098203599453,-0.018222542479634285,0.004804017022252083,-0.02235974185168743,-0.035286977887153625,0.004742578603327274,0.010531507432460785,-0.08910860866308212,-0.06709203869104385,-0.041538141667842865,0.01795315369963646,0.0031150993891060352,0.04610520973801613,0.03564341366291046,0.0607513003051281,-0.034769926220178604,0.14331287145614624,-0.04755629226565361,-0.030969228595495224,-0.05040496215224266,0.06374026834964752,0.04773840308189392,0.04347248375415802,0.05596861615777016,0.045454706996679306,0.018354250118136406,0.044803403317928314,-0.021921107545495033,-2.1693900691348938e-33,0.11452902108430862,-0.06457798182964325,0.009317463263869286,-0.06582467257976532,-0.011297062039375305,-0.038606610149145126,-0.04810849949717522,0.022018613293766975,0.014171551913022995,-0.06289142370223999,0.016421137377619743,-0.1113729327917099,0.024704584851861,-0.04983137175440788,-0.06450450420379639,0.01537308655679226,-0.014780141413211823,-0.002104897052049637,0.09532028436660767,-0.038264427334070206,0.01870003342628479,-0.012689496390521526,-0.007164289243519306,-0.09139442443847656,-0.020386457443237305,0.008458231575787067,0.00013587645662482828,0.07309722155332565,0.04853900521993637,0.009188014082610607,-0.04713809862732887,-0.02952747792005539,0.09560644626617432,-0.0011031731264665723,0.02352571301162243,0.05520607531070709,0.0005849095759913325,-0.06941526383161545,-0.08124050498008728,-0.03407493233680725,0.10577870160341263,0.06273641437292099,-0.034754425287246704,-0.006801652256399393,0.04732632264494896,-0.08435063809156418,0.019811956211924553,-0.07155172526836395,-0.023785481229424477,0.055651746690273285,0.09796784073114395,0.030586184933781624,0.01660429686307907,-0.06494922190904617,0.021624285727739334,0.017296258360147476,0.05266436189413071,0.04394827410578728,-0.05428438261151314,-0.02279040962457657,-0.006314694415777922,-0.13499286770820618,-0.001944604329764843,0.015182399190962315,-0.10594755411148071,0.07238389551639557,0.06655701249837875,-0.007305813953280449,-0.16949617862701416,-0.0027595399878919125,-0.09056360274553299,-0.03353709727525711,-0.06994157284498215,0.03385205194354057,-0.05582506209611893,0.045419301837682724,0.023896222934126854,0.01462183240801096,0.04651211202144623,-0.06184978783130646,0.04330078512430191,-0.038464635610580444,0.001962086884304881,0.06008534878492355,0.04349373281002045,-0.002606264315545559,0.05218764394521713,-0.0051930551417171955,-0.03242551535367966,-0.08412472158670425,0.04390575736761093,0.09823352843523026,-0.06162577494978905,-0.09354107826948166,-0.011738399975001812,-8.977265969264157e-34,-0.0765501856803894,0.0018211872084066272,0.005207099486142397,0.05035553127527237,0.0023370273411273956,0.00618342449888587,-0.01439609657973051,-0.09755285084247589,0.053319837898015976,-0.024388602003455162,-0.02448277920484543,-0.0027033130172640085,-0.02124028652906418,0.05619475618004799,-0.007658324204385281,-0.01732560805976391,-0.04944965988397598,0.02972797304391861,0.007747837342321873,-0.0027002631686627865,0.04897261783480644,0.050482023507356644,0.015703296288847923,-0.01180407963693142,-0.020415743812918663,0.06683279573917389,-0.06855623424053192,0.006299064960330725,-0.060412850230932236,-0.07401107996702194,0.03368978574872017,0.02540094405412674,-0.03638850152492523,0.014143381267786026,0.03010779619216919,0.08258925378322601,0.03694768249988556,0.12414192408323288,-0.05801105499267578,0.009579228237271309,-0.014066451229155064,-0.012124028988182545,-0.06155286729335785,-0.0107945017516613,-0.10929182916879654,0.013764411211013794,0.17477352917194366,0.05741855129599571,0.09940747171640396,0.013195795938372612,-0.03197713568806648,-0.005853366572409868,-0.005511787720024586,0.02225250005722046,-0.05182671174407005,-0.03078511357307434,0.054455291479825974,-0.07402593642473221,0.1075744479894638,-0.07406045496463776,0.03655434772372246,-0.03233713656663895,0.055598098784685135,-0.06583163887262344,-0.0030900100246071815,0.05664670467376709,0.005104450508952141,0.04924630746245384,0.030442386865615845,0.07980833947658539,0.03650283068418503,-0.031153971329331398,-0.1184237077832222,0.03805621340870857,0.010236212983727455,0.04196956381201744,-0.09607855975627899,0.00970857311040163,-0.03594760596752167,0.02868301048874855,0.0435061939060688,-0.013737804256379604,0.04000368341803551,0.02199358120560646,0.06372679024934769,-0.0280083566904068,0.03728485852479935,-0.025468111038208008,-0.0011841973755508661,0.005891474429517984,-0.07733629643917084,-0.012763707898557186,0.0785214826464653,0.05766858905553818,-0.05295538902282715,-2.5721524465893708e-8,0.030222676694393158,0.0058278776705265045,-0.037419144064188004,0.0013852828415110707,0.02943532168865204,-0.062258411198854446,0.05681540444493294,-0.07827720046043396,-0.010656996630132198,0.07999434322118759,0.004791105166077614,0.05410994216799736,0.035159166902303696,0.014441589824855328,0.058402106165885925,0.031591106206178665,-0.03879782557487488,-0.1306966096162796,-0.029060933738946915,-0.028114894405007362,-0.023966196924448013,0.02034369669854641,-0.07600393146276474,-0.11747477203607559,0.04558422043919563,0.03589862585067749,-0.03619356080889702,0.06055750697851181,0.018525060266256332,0.032054830342531204,0.026039816439151764,-0.07971297949552536,-0.01503355149179697,0.0007200687541626394,-0.03992129862308502,0.10934139043092728,0.055961038917303085,-0.021139049902558327,-0.0004234474909026176,0.0003475931298453361,0.012500961311161518,0.05294826999306679,0.021716536954045296,0.07474781572818756,0.05429341271519661,0.003330123843625188,-0.02651042304933071,0.02341788448393345,-0.010686409659683704,-0.013498114421963692,0.03486242517828941,-0.001402000430971384,-0.0018410967895761132,0.03589268773794174,0.03458152711391449,-0.03973720967769623,0.016611292958259583,0.0772535651922226,0.03867778182029724,0.009059970267117023,0.024136153981089592,-0.0371125265955925,-0.004561044275760651,-0.017262052744627]},{"text":"Napoleon acted swiftly and ruthlessly.","book":"Animal Farm","chapter":55,"embedding":[-0.047611720860004425,0.05543909966945648,0.0032075471244752407,-0.012881645932793617,-0.007056918926537037,0.026438286527991295,0.02274172380566597,0.05643575266003609,-0.09564991295337677,-0.03335852548480034,0.03199762478470802,-0.05436023697257042,0.06571660190820694,0.03051127679646015,-0.024654855951666832,-0.10743433237075806,0.07934747636318207,0.06001273915171623,-0.003764982335269451,0.04606761038303375,0.05035223439335823,-0.01937968097627163,0.09253866970539093,-0.015761520713567734,-0.012384244240820408,0.018729979172348976,0.02129172720015049,-0.027812261134386063,-0.0484527088701725,-0.03439930081367493,-0.009478917345404625,-0.06086716800928116,-0.029294854030013084,-0.016432782635092735,-0.0853792279958725,-0.030606292188167572,0.03283105045557022,-0.008461791090667248,0.05473204702138901,0.007909012958407402,0.004774566274136305,0.0066368733532726765,-0.07748457044363022,0.0669858381152153,0.006425574421882629,-0.03205301612615585,0.002165578305721283,0.022203152999281883,0.0057448092848062515,-0.00549136009067297,-0.09844692051410675,0.047744665294885635,-0.08127409219741821,-0.02223946526646614,-0.04102310538291931,-0.08083617687225342,-0.0034428604412823915,0.04628056287765503,0.10394423454999924,0.04107976704835892,-0.01924712583422661,0.04362586513161659,0.07719946652650833,0.013462320901453495,0.0656222328543663,-0.01626451686024666,-0.02851496823132038,-0.017831221222877502,-0.05735166370868683,0.1650899350643158,0.006098594982177019,-0.039654433727264404,0.04855547472834587,-0.09862308204174042,-0.1399967074394226,-0.07289707660675049,-0.027663296088576317,0.00443582609295845,-0.02389018051326275,-0.025014884769916534,-0.03161830082535744,-0.08088479936122894,-0.019457001239061356,0.05757932737469673,0.06314456462860107,-0.07774117588996887,0.1181376576423645,-0.06390181183815002,0.08629467338323593,0.029906606301665306,0.031850069761276245,-0.025136467069387436,0.051947660744190216,0.04409930482506752,-0.02531440742313862,0.0032454533502459526,-0.05833689123392105,0.011292200535535812,-0.050093647092580795,0.023433689028024673,-0.024519510567188263,0.0022512972354888916,-0.06770628690719604,0.031463559716939926,-0.020087022334337234,0.02425779588520527,0.0046423193998634815,-0.013165108859539032,-0.07779265195131302,0.004193972796201706,-0.02939947508275509,-0.03695496544241905,-0.010140364989638329,-0.0009872453520074487,0.08370872586965561,0.057454101741313934,-0.07735580950975418,-0.12456218898296356,-0.055844563990831375,0.056779202073812485,0.08050638437271118,0.01466930378228426,-0.036672018468379974,0.05379614233970642,-0.005208949558436871,0.03251255676150322,0.0034408089704811573,-3.8228857897366255e-33,0.03701271489262581,0.0077721914276480675,-0.008526936173439026,-0.011570257134735584,-0.10659656673669815,0.006537180859595537,-0.0973779633641243,0.04388612508773804,0.009955192916095257,0.07510370761156082,0.0037633308675140142,-0.04141630232334137,-0.06425656378269196,0.0505094975233078,-0.07018968462944031,0.05743053928017616,-0.02290213853120804,0.08676725625991821,0.02382611110806465,0.01485932432115078,-0.011885319836437702,0.0325288400053978,0.010669469833374023,-0.004806671757251024,0.014676664024591446,0.024456417188048363,-0.043820805847644806,0.017192156985402107,-0.006188202649354935,0.01576700620353222,0.031493913382291794,-0.09502293914556503,-0.011490730568766594,0.08041713386774063,0.03277970105409622,-0.032490551471710205,-0.12537898123264313,-0.02346966788172722,0.03317615017294884,0.1324765533208847,-0.01537935808300972,-0.0011730154510587454,-0.029513606801629066,0.05537903308868408,-0.005133591592311859,0.05479919910430908,-0.0768297091126442,0.038198526948690414,0.027279840782284737,-0.015664782375097275,-0.000851140939630568,-0.008745982311666012,0.0817403718829155,-0.003923850134015083,0.0444064661860466,0.12034166604280472,0.02501034364104271,0.1080092117190361,0.021217547357082367,0.0040016076527535915,0.005767196416854858,-0.01159524917602539,-0.026641547679901123,0.041522275656461716,-0.030683385208249092,-0.08609387278556824,-0.01390773244202137,0.0832882672548294,0.03397499397397041,-0.10062842071056366,-0.08007171750068665,0.0307187307626009,0.028123699128627777,-0.07583129405975342,-0.03095836751163006,-0.008466667495667934,0.08462274819612503,-0.06987430900335312,-0.07780858129262924,-0.002963222097605467,-0.02735109068453312,-0.041109587997198105,-0.012963546440005302,-0.010490136221051216,0.011962419375777245,0.04715869203209877,0.0362304225564003,-0.10460034757852554,-0.0397457517683506,0.11997227370738983,-0.051128726452589035,-0.04204156622290611,-0.06252899020910263,-0.02642081119120121,-0.054184213280677795,1.259583982056833e-33,0.09785295277833939,0.012857498601078987,0.03327661380171776,0.0837448462843895,-0.011421693488955498,0.008314721286296844,-0.0670170709490776,0.043518517166376114,0.002621173392981291,0.0567377507686615,-0.05448639392852783,-0.03174101933836937,0.052774712443351746,-0.021952511742711067,0.03188268095254898,-0.056190185248851776,0.09616323560476303,-0.009760727174580097,-0.041144441813230515,0.012896356172859669,-0.05418076366186142,-0.020177913829684258,-0.019821690395474434,0.014652056619524956,-0.11913935840129852,0.07447102665901184,0.02470187097787857,-0.06957195699214935,-0.10214808583259583,0.03734166547656059,-0.007590337656438351,0.07303740084171295,-0.025141993537545204,0.035525333136320114,0.02528584934771061,0.13320687413215637,-0.049815937876701355,0.007020715624094009,0.02416715770959854,0.005124250892549753,-0.025862347334623337,0.015164695680141449,0.04060296341776848,0.03537968918681145,0.008269339799880981,-0.04537411779165268,0.020984897390007973,-0.01795193739235401,-0.03281404823064804,0.05874479189515114,-0.050156109035015106,0.02450966089963913,0.02004282735288143,0.007073246408253908,-0.021913716569542885,-0.026747984811663628,0.007435222622007132,-0.09802167862653732,-0.012218043208122253,0.008648107759654522,-0.033613886684179306,-0.03319313004612923,0.02587762661278248,-0.011718039400875568,-0.012726769782602787,0.019239233806729317,-0.0654117614030838,-0.023138344287872314,0.07624797523021698,0.05187663063406944,0.0064543504267930984,-0.02020658366382122,0.0157578457146883,0.05739176645874977,0.023293757811188698,-0.03106709197163582,-0.04934015870094299,-0.006305260118097067,-0.022624433040618896,-0.0691661387681961,-0.00551214162260294,-0.00833084899932146,0.026850445196032524,-0.04996718466281891,-0.11942506581544876,0.049971431493759155,-0.015719234943389893,-0.03004174679517746,0.0606972798705101,-0.009630955755710602,0.03396158665418625,-0.11022861301898956,0.1326124668121338,-0.03595909848809242,0.016557682305574417,-1.4512743007344397e-8,-0.07166191190481186,0.04877123609185219,0.07953128218650818,0.06383389979600906,-0.005160477012395859,-0.012188879773020744,-0.06526301056146622,0.08993846923112869,0.024382418021559715,-0.010902084410190582,-0.015367371961474419,0.044480737298727036,0.037742067128419876,0.0163990780711174,0.026175756007432938,0.04459824785590172,0.029408976435661316,-0.03670510649681091,-0.03215276449918747,0.04145924001932144,-0.030328039079904556,0.008648953400552273,0.018803102895617485,-0.04469868913292885,0.017269574105739594,-0.01141798309981823,-0.027511855587363243,0.009000761434435844,-0.008058619685471058,0.07611400634050369,0.03970283269882202,-0.06764151901006699,-0.04601091891527176,-0.09957985579967499,-0.03971647098660469,0.043094389140605927,0.07461392879486084,-0.033491529524326324,0.05336537957191467,-0.0969044417142868,0.016215668991208076,0.06793319433927536,0.03247937560081482,0.004093634895980358,0.07086114585399628,0.058201007544994354,0.018669182434678078,-0.004891958087682724,0.05624229460954666,0.02905704639852047,-0.013226437382400036,0.05287431553006172,-0.06816399097442627,0.030554531142115593,-0.022516325116157532,-0.006330614443868399,0.0002726372331380844,-0.044396352022886276,-0.04381381347775459,0.010910759679973125,0.026992129161953926,0.020392006263136864,0.04416646808385849,-0.10065954923629761]},{"text":"Their bodies were buried in the orchard, and it was given out that they had died of coccidiosis.","book":"Animal Farm","chapter":55,"embedding":[0.056590620428323746,0.0913701131939888,-0.028970450162887573,0.009475545957684517,0.06263568252325058,-0.01884802058339119,-0.004520558286458254,-0.009092838503420353,-0.07411496341228485,0.04188650846481323,0.10728765279054642,-0.06494689732789993,-0.00563865527510643,-0.003336825640872121,-0.11861223727464676,-0.02140859328210354,-0.061775073409080505,-0.02905801311135292,-0.0023903597611933947,0.024584786966443062,-0.06809823960065842,0.08115868270397186,-0.01751398667693138,0.05752034857869148,0.027506262063980103,0.019865501672029495,-0.09064368903636932,-0.008211128413677216,-0.025363849475979805,0.015501472167670727,-0.038560256361961365,-0.009636851027607918,0.054352663457393646,0.010613066144287586,-0.021257182583212852,0.04990525543689728,0.10598930716514587,-0.09749216586351395,0.07119936496019363,0.06259851902723312,-0.03751145303249359,0.11620476841926575,0.061601243913173676,0.08520732074975967,-0.0543145127594471,-0.0001848412211984396,-0.058728672564029694,0.0038687135092914104,0.06407877802848816,0.015034982934594154,0.0015368133317679167,-0.017713909968733788,-0.039799269288778305,-0.008645047433674335,-0.030089348554611206,0.020210973918437958,0.005781685467809439,-0.04106944054365158,0.0071101440116763115,0.016068143770098686,0.007583131082355976,-0.06560984253883362,0.05176891013979912,0.027720071375370026,0.008105053566396236,-0.052145689725875854,0.02716873586177826,-0.0554157979786396,0.061764806509017944,0.013637102209031582,0.04304547607898712,-0.03690888360142708,-0.058107707649469376,-0.02737952210009098,-0.1188916265964508,0.07228991389274597,-0.03516678139567375,-0.09316561371088028,-0.1077842116355896,-0.0705476626753807,-0.013272619806230068,0.032188523560762405,0.043344855308532715,-0.02046191692352295,-0.024160150438547134,-0.010489766485989094,-0.04938522353768349,-0.05507205054163933,0.024411475285887718,0.019376279786229134,0.054199498146772385,-0.09762843698263168,-0.017078449949622154,0.02205662801861763,-0.02062990516424179,-0.00697815977036953,0.0261217188090086,0.04389475658535957,-0.020640159025788307,-0.03958912938833237,-0.0586223304271698,-0.07829760760068893,-0.02983768656849861,0.007371147163212299,-0.0346524678170681,-0.03299494460225105,-0.08179623633623123,-0.0031874836422502995,0.05476464703679085,0.03436318784952164,-0.026497915387153625,0.033072639256715775,0.004664246458560228,0.033408213406801224,0.04881565645337105,0.09033851325511932,0.034916672855615616,-0.04768037050962448,-0.10113881528377533,-0.006744650192558765,0.03481578454375267,0.008990860544145107,-0.049516722559928894,-0.02957902103662491,0.008561295457184315,0.04465422034263611,0.028302127495408058,-2.8205614095866387e-33,0.03309471532702446,-0.0137585224583745,0.0218228567391634,0.05163022130727768,0.09550745785236359,-0.09117872267961502,-0.023675117641687393,-0.00886670034378767,0.04180172458291054,-0.05885457620024681,-0.01804577000439167,-0.08442448079586029,-0.03266856446862221,-0.054096587002277374,-0.10854469239711761,-0.009285048581659794,-0.0643208846449852,-0.024747196584939957,0.04337441176176071,-0.006419109646230936,0.033411942422389984,0.07036338746547699,-0.042380232363939285,0.041459884494543076,-0.0327109768986702,0.06959468871355057,-0.02803131751716137,0.070065937936306,-0.029519017785787582,-0.004542065318673849,0.076812244951725,-0.013632148504257202,0.023015916347503662,0.03862806409597397,0.02054290845990181,0.03446665033698082,0.016134681180119514,-0.061838388442993164,0.002675087423995137,0.060082774609327316,0.046727679669857025,0.005753612611442804,0.06401059776544571,0.04546009376645088,0.015124051831662655,-0.09298806637525558,-0.023344896733760834,0.027365736663341522,-0.019536472856998444,0.06209508702158928,0.0367937907576561,0.059011660516262054,0.047898877412080765,0.030399296432733536,0.00333407218568027,0.09209184348583221,-0.0016202580882236362,-0.023129163309931755,0.013196968473494053,0.017556186765432358,0.13334326446056366,0.05791443958878517,0.0119097251445055,0.010397653095424175,-0.05177030712366104,0.026390602812170982,0.001764727639965713,-0.020777175202965736,0.03118329681456089,0.03718266636133194,-0.008233034051954746,-0.04231370985507965,-0.07530556619167328,0.03484003618359566,-0.06294525414705276,0.02965068444609642,-0.07853607088327408,-0.06920768320560455,-0.04443857818841934,-0.012483004480600357,0.05338885262608528,-0.009121664799749851,0.0030552519019693136,0.03576340526342392,-0.0186165738850832,0.0062644025310873985,0.010608917102217674,0.008423536084592342,-0.046265434473752975,-0.018254943192005157,-0.0011116293026134372,0.15412907302379608,0.04806266352534294,-0.11532146483659744,-0.0003951170656364411,-3.8501276991253767e-35,-0.04208824038505554,0.008514153771102428,-0.08846776932477951,-0.016405126079916954,-0.10340607911348343,0.002376400865614414,-0.09370656311511993,-0.02409958653151989,0.016308609396219254,-0.07364720106124878,-0.050232093781232834,0.015365147963166237,-0.033740654587745667,0.024398915469646454,-0.03669460862874985,0.021186329424381256,0.036163631826639175,0.09743665158748627,-0.029985036700963974,0.0114754568785429,-0.020581047981977463,0.020270628854632378,-0.08086038380861282,-0.10293003916740417,0.04660678654909134,0.06564370542764664,0.026554660871624947,-0.023238705471158028,-0.06596703827381134,-0.10161738842725754,0.08244000375270844,-0.02140299417078495,0.014582091011106968,-0.012184595689177513,0.017022985965013504,0.0465429462492466,-0.0069557433016598225,-0.054028723388910294,-0.01583523117005825,-0.02555839903652668,0.05461142957210541,-0.008648672141134739,0.02040763385593891,0.1470939964056015,0.02077026478946209,0.012384898960590363,-0.0441073402762413,0.05671406164765358,0.10404537618160248,0.05728600546717644,-0.02926642633974552,-0.007062905002385378,-0.01782442070543766,0.013214302249252796,-0.010788536630570889,-0.06204865872859955,-0.025426825508475304,-0.033523548394441605,-0.0025682339910417795,-0.09998589009046555,-0.013695565983653069,0.0010083925444632769,-0.05251350998878479,0.050957899540662766,0.043986137956380844,0.04021735116839409,-0.011917552910745144,0.020279455929994583,-0.022741133347153664,-0.006598384585231543,0.03598472476005554,0.028532154858112335,-0.054741211235523224,0.024181026965379715,-0.041069287806749344,0.0973232239484787,-0.0920594185590744,0.07943372428417206,-0.018773995339870453,0.034207943826913834,-0.054478514939546585,-0.09717298299074173,0.058727290481328964,0.07991153746843338,0.01774352602660656,-0.05324842408299446,-0.00711607513949275,-0.06065477058291435,0.0032379573676735163,-0.011115777306258678,-0.0723985806107521,-0.07126734405755997,0.09483181685209274,-0.029271764680743217,-0.009494470432400703,-2.1528800075998333e-8,0.08179948478937149,0.010128051973879337,-0.0595981627702713,-0.0455811582505703,0.021011626347899437,-0.014986497350037098,0.0053396751172840595,0.05109235644340515,0.045870427042245865,0.1291823536157608,-0.1574256718158722,0.10340089350938797,-0.0008393843309022486,0.07804004102945328,0.02425384521484375,0.00616080267354846,-0.01327263843268156,-0.07759620994329453,-0.03555407002568245,-0.0044104005210101604,-0.09493806213140488,-0.03434101119637489,0.012152490206062794,0.006252069026231766,0.008979657664895058,-0.009062397293746471,0.04663349688053131,0.010104061104357243,-0.006072891876101494,0.04272006079554558,-0.03741854056715965,-0.026425393298268318,-0.011760253459215164,-0.01051067840307951,-0.014615016058087349,0.01917317882180214,0.016083894297480583,0.0014129688497632742,-0.016178693622350693,-0.06630750000476837,-0.06002067029476166,0.00790408905595541,-0.033592235296964645,-0.0033003506250679493,0.0851110965013504,-0.024033410474658012,0.022446436807513237,0.06567651778459549,-0.03706986829638481,0.017559178173542023,0.08383134752511978,0.02394549548625946,0.04724419116973877,0.07707474380731583,-0.01767275109887123,-0.10987939685583115,0.07553186267614365,-0.014024678617715836,0.06341537833213806,0.026742996647953987,-0.06316949427127838,0.046849992126226425,0.06606156378984451,-0.009796584956347942]},{"text":"It happened that there was in the yard a pile of timber which had been stacked there ten years earlier when a beech spinney was cleared.","book":"Animal Farm","chapter":56,"embedding":[-0.05875048413872719,0.01539425179362297,0.03795711696147919,0.034612659364938736,0.028154948726296425,-0.07066666334867477,-0.11958441883325577,-0.05631141737103462,0.00879385694861412,0.07018755376338959,0.04544736072421074,0.06490471214056015,-0.03199109435081482,0.03421584889292717,-0.08147954940795898,0.04192833602428436,-0.10548576712608337,0.019844189286231995,-0.05447513610124588,0.021161874756217003,-0.004659393336623907,0.06431566178798676,-0.03246152400970459,0.04986399784684181,0.05100023373961449,-0.01721644029021263,-0.09027499705553055,0.07053368538618088,0.039045363664627075,0.0004486427060328424,0.055600445717573166,0.03621748462319374,-0.007404277101159096,-0.000746109988540411,0.045011475682258606,0.031199760735034943,0.018964499235153198,-0.04452867805957794,0.030996067449450493,0.015477784909307957,0.012081677094101906,-0.00028449163073673844,0.039252765476703644,0.008824502117931843,-0.14796684682369232,0.030027270317077637,-0.009227552451193333,-0.013172633945941925,0.018713992089033127,-0.07311093807220459,0.03748943656682968,-0.03942082077264786,-0.04421130567789078,-0.10041659325361252,-0.028794407844543457,-0.009025978855788708,0.052016183733940125,-0.0291556678712368,0.015014879405498505,0.0611325167119503,0.038171395659446716,0.036112379282712936,-0.10224448144435883,-0.021012013778090477,0.03525670990347862,0.007386987563222647,-0.08301007002592087,-0.01728503406047821,0.09085807204246521,0.038917139172554016,0.10163531452417374,-0.012103202752768993,-0.06720680743455887,-0.05322963371872902,-0.013846795074641705,-0.010593690909445286,0.0068795992992818356,-0.00949574913829565,-0.007582224439829588,-0.08513804525136948,-0.09265433996915817,0.0010056449100375175,0.0310945026576519,-0.04970741271972656,-0.027295760810375214,-0.04962482675909996,-0.004081975668668747,0.08262431621551514,0.004376420751214027,-0.006242969073355198,-0.014901434071362019,-0.030583713203668594,-0.0031948464456945658,0.09091594070196152,-0.034149207174777985,0.0205545537173748,0.027060260996222496,0.01389116421341896,0.024645458906888962,0.011041059158742428,-0.04905610904097557,0.021614084020256996,0.01564704440534115,-0.06245550513267517,-0.05985790491104126,-0.011955024674534798,-0.08797796815633774,0.056673597544431686,-0.010030298493802547,-0.03219645842909813,-0.00778149114921689,-0.0030180993489921093,0.04199996590614319,0.10467299073934555,-0.04671940580010414,-0.02160380221903324,0.08084437251091003,-0.02543698437511921,-0.09837619215250015,-0.015528841875493526,0.017979158088564873,0.07374881207942963,-0.0063560958951711655,0.013315659947693348,-0.048765867948532104,0.029891669750213623,0.0629911720752716,-2.6482545089072308e-33,0.06789710372686386,-0.05354020744562149,-0.029301922768354416,0.009737999178469181,0.15585029125213623,-0.05062085762619972,-0.039231520146131516,-0.016549069434404373,0.019864298403263092,0.07789716869592667,0.0006391520146280527,-0.08904161304235458,-0.0457158163189888,-0.10242432355880737,0.03021116554737091,-0.04115463048219681,-0.07140709459781647,-0.029306190088391304,-0.03822006657719612,-0.0017818489577621222,-0.022404754534363747,0.010246623307466507,-0.009834704920649529,-0.03133073449134827,-0.03923022747039795,-0.007500489708036184,0.03709063678979874,0.002487938618287444,0.000561609398573637,0.014557695016264915,0.10368875414133072,0.009228965267539024,-0.04227527976036072,-0.045777078717947006,0.018562301993370056,0.03196137398481369,0.10037145018577576,-0.05431627854704857,-0.017643628641963005,-0.007954886183142662,0.0009114544955082238,-0.04428433999419212,-0.004984348081052303,-0.0030524455942213535,-0.00008910020551411435,-0.047694168984889984,0.018331769853830338,0.08287175744771957,-0.06826945394277573,0.015716921538114548,0.07023957371711731,0.04682399332523346,0.04218156263232231,0.0031924836803227663,-0.04809075966477394,0.057600222527980804,0.07636836916208267,-0.025857487693428993,0.04894159361720085,0.061168354004621506,0.15697766840457916,0.04195868968963623,0.016333067789673805,-0.03106643632054329,-0.019741570577025414,-0.04928622022271156,0.08939792215824127,0.017681196331977844,-0.06361766904592514,-0.0024304590187966824,-0.018996378406882286,-0.027352510020136833,-0.04805605858564377,-0.003204042324796319,-0.017362138256430626,-0.01126678567379713,-0.020776716992259026,0.010619783774018288,-0.0011578465346246958,-0.009285912849009037,0.061151761561632156,-0.08918464928865433,-0.0006120252655819058,-0.04185749962925911,0.0030974859837442636,-0.057001225650310516,0.007275717332959175,-0.022779500111937523,-0.02886960096657276,0.04645818471908569,-0.034949563443660736,-0.004428731743246317,0.05534108728170395,-0.06389599293470383,0.08698462694883347,-1.1177604967946278e-33,-0.05384441837668419,-0.009182974696159363,-0.05403633043169975,0.024873387068510056,-0.04103532060980797,-0.05140075460076332,-0.060702670365571976,-0.018896300345659256,-0.05876903980970383,-0.0396844856441021,-0.016366394236683846,0.06331770122051239,0.06591159850358963,0.03344272822141647,0.017833350226283073,0.06654837727546692,-0.01676367036998272,0.04237808287143707,-0.020278774201869965,0.014733332209289074,0.03493761271238327,-0.04932775720953941,-0.027227060869336128,0.023994028568267822,0.007142521440982819,0.006642298772931099,0.00825462769716978,-0.018719932064414024,-0.02067960612475872,-0.03592730686068535,0.026837121695280075,-0.018822334706783295,0.014940621331334114,-0.12027145177125931,-0.08166224509477615,-0.02823304571211338,0.06136910617351532,-0.10493353754281998,0.0008453583577647805,-0.07042349129915237,0.07919362932443619,0.0019016365986317396,0.04511804133653641,0.08448565006256104,-0.0549420565366745,-0.0731743723154068,-0.04278353601694107,0.04511241614818573,0.011949374340474606,0.004064579028636217,-0.004731618333607912,0.08152464032173157,0.04424497112631798,0.025283638387918472,-0.03300446271896362,0.054060425609350204,0.008899956941604614,0.0005844066618010402,0.015529242344200611,0.014451281167566776,-0.026037368923425674,0.08348751813173294,-0.15187712013721466,-0.03919540345668793,0.08427003771066666,0.009535153396427631,-0.10087601840496063,-0.06698192656040192,-0.06231601536273956,-0.0035857365000993013,-0.008032207377254963,0.048769544810056686,-0.04825783520936966,-0.00874976348131895,0.006100189872086048,0.10821365565061569,-0.04106156900525093,0.009967534802854061,-0.03946193680167198,-0.009955150075256824,0.014301173388957977,-0.0391768179833889,0.03422071412205696,0.005218717735260725,0.06340434402227402,-0.06042855232954025,0.032092396169900894,0.018343457952141762,0.009680687449872494,-0.049015164375305176,0.03345150500535965,-0.0032151800114661455,-0.008283229544758797,0.05441216006875038,0.021357504650950432,-2.7138451486052872e-8,-0.04516986757516861,0.09073766320943832,0.0032228364143520594,-0.029858922585844994,0.04679574444890022,-0.08899657428264618,0.1564244031906128,0.12593522667884827,0.006796388421207666,-0.03618176281452179,-0.1251431554555893,0.0641690120100975,-0.022417588159441948,0.03482403606176376,0.030068930238485336,-0.058864906430244446,-0.05654710531234741,-0.05972956120967865,-0.04905344173312187,0.0009890749352052808,0.021111473441123962,0.00014526350423693657,0.05650226026773453,0.06790466606616974,-0.10033275187015533,-0.023000560700893402,-0.0008658950100652874,0.02125801332294941,0.03681080415844917,-0.03330326825380325,0.09006955474615097,0.05734492838382721,0.020772943273186684,-0.0008548888727091253,-0.06545894593000412,0.09723415225744247,-0.0016045841621235013,0.03310127183794975,-0.002919171703979373,-0.10351400077342987,-0.08596114814281464,-0.06340277940034866,-0.02034352719783783,0.03517887741327286,0.06435058265924454,0.062111351639032364,-0.09165948629379272,0.09793736040592194,0.013316077180206776,-0.07122134417295456,0.002069951267912984,0.03838199004530907,0.01633666269481182,0.08229363709688187,0.038998618721961975,-0.018898872658610344,0.010650220327079296,-0.011668783612549305,0.025724075734615326,-0.002629062859341502,-0.010505370795726776,-0.08356370776891708,-0.008889327757060528,0.03126237541437149]},{"text":"Suddenly, early in the spring, an alarming thing was discovered.","book":"Animal Farm","chapter":56,"embedding":[-0.012096745893359184,0.06314264237880707,0.06152952089905739,0.12181996554136276,0.11410195380449295,-0.026805678382515907,0.07890509814023972,-0.002059723949059844,0.00713928509503603,0.0005481108091771603,0.07054217904806137,0.055417031049728394,0.02014927938580513,0.05359121784567833,-0.048922304064035416,-0.016027744859457016,-0.02194780856370926,-0.05762184038758278,0.01902146264910698,0.03287006542086601,-0.04657323285937309,0.025030827149748802,0.060307081788778305,0.037640076130628586,0.004168575629591942,0.029372278600931168,0.057028643786907196,-0.006169970612972975,-0.02451522834599018,0.0057052369229495525,-0.024692460894584656,0.06863489747047424,-0.0018067107303068042,-0.06533116847276688,-0.021316446363925934,0.014136875979602337,0.13592973351478577,0.03180171921849251,0.05756368115544319,-0.03085356019437313,-0.00041016199975274503,-0.0633634626865387,0.07096751779317856,-0.010840153321623802,-0.07644052803516388,0.04220883548259735,0.0017557303654029965,0.019669311121106148,0.004831700585782528,-0.04858136922121048,0.049974892288446426,-0.05103593319654465,-0.01164849754422903,-0.10781054943799973,-0.011629410088062286,-0.018442293629050255,-0.007619562093168497,0.01760643720626831,0.02462841011583805,0.022716006264090538,-0.015187205746769905,-0.010902361012995243,-0.01441313698887825,0.011982854455709457,0.03534951061010361,-0.009164927527308464,-0.03469129279255867,-0.07464289665222168,0.10700022429227829,0.01175645086914301,0.08287282288074493,-0.00016367628995794803,0.022671673446893692,0.05166938155889511,-0.02503102272748947,0.024575427174568176,0.07840438932180405,0.034657370299100876,0.0736132338643074,-0.00859005469828844,-0.081110380589962,-0.03713667020201683,-0.025443924590945244,-0.034471187740564346,0.03152308613061905,-0.012097508646547794,0.006258887704461813,-0.004708706401288509,-0.03892388939857483,-0.01985372230410576,0.014801759272813797,-0.12391587346792221,-0.046197906136512756,0.06480851024389267,-0.005676961038261652,-0.018058285117149353,-0.08151090890169144,-0.011427936144173145,-0.0010894834995269775,0.018165407702326775,-0.029233714565634727,-0.005418070126324892,-0.013642750680446625,0.06413576751947403,0.048344116657972336,-0.042674314230680466,-0.11341199278831482,0.010021914727985859,0.0619543232023716,-0.0033046037424355745,-0.039266809821128845,-0.007254958618432283,0.07995215803384781,0.025478921830654144,-0.014576861634850502,-0.039049193263053894,0.006521537899971008,-0.005047336220741272,-0.07834260165691376,0.07190725207328796,0.05082154646515846,-0.006655129604041576,-0.06779060512781143,-0.01931172050535679,0.06322088092565536,0.1187455877661705,-0.018131164833903313,-5.519712619832567e-33,0.07086564600467682,-0.016738632693886757,0.02806210331618786,0.02343093231320381,0.04924357682466507,-0.023608900606632233,-0.06473177671432495,-0.01934659853577614,0.09646038711071014,0.015730667859315872,-0.014744630083441734,0.007829978130757809,-0.02901654876768589,-0.05633733421564102,-0.09347712993621826,-0.026872187852859497,-0.07753687351942062,0.015039287507534027,0.06047070771455765,-0.07125060260295868,-0.0770951434969902,-0.0012432255316525698,0.06512764096260071,-0.014709634706377983,0.027361160144209862,0.08480511605739594,0.038885921239852905,-0.052047017961740494,0.06681274622678757,0.03788227587938309,0.06530964374542236,-0.009318719618022442,0.023838473483920097,0.05821969360113144,-0.007141995243728161,0.02264595963060856,0.05901448801159859,-0.10236843675374985,-0.00028535278397612274,-0.01155970897525549,0.06902209669351578,-0.028227435424923897,0.023158274590969086,-0.03814121335744858,0.021789338439702988,0.031713180243968964,-0.0336485281586647,0.084443598985672,-0.007493798155337572,-0.04416732117533684,-0.006893111392855644,0.03257333114743233,0.0326574370265007,-0.04521661996841431,-0.017472798004746437,0.08519802242517471,0.012804953381419182,-0.01663425751030445,0.006348262540996075,-0.008382013067603111,-0.03575945645570755,0.096131332218647,0.07527697086334229,-0.0485956072807312,-0.02693079225718975,-0.048457153141498566,0.0025188049767166376,-0.031984031200408936,-0.04049643129110336,0.033372461795806885,0.012489505112171173,-0.04551614075899124,-0.041314758360385895,-0.04025674983859062,-0.03273053467273712,-0.0378551185131073,0.03614160791039467,-0.015472432598471642,0.05430128797888756,-0.060480691492557526,0.10248000919818878,-0.08711068332195282,0.10728409886360168,0.04286022484302521,-0.05807415768504143,0.005265474785119295,0.008316720835864544,-0.0125581044703722,-0.09265580028295517,0.1019446924328804,-0.000764621130656451,0.06833386421203613,0.02715109847486019,-0.00927326176315546,-0.02840634621679783,2.223712785493261e-33,-0.01405374426394701,-0.009788211435079575,-0.039640676230192184,0.009185560047626495,-0.02056984417140484,-0.05685781314969063,-0.06357460469007492,-0.01306835189461708,-0.11500249803066254,-0.018351254984736443,-0.00028014942654408514,-0.02346051298081875,0.04595942050218582,-0.010515576228499413,0.0038570447359234095,-0.005362064111977816,0.04278048127889633,0.08501123636960983,0.014942933805286884,0.08634047955274582,-0.04450399428606033,-0.061616841703653336,-0.10423564165830612,-0.02183467335999012,0.024349993094801903,0.04321680963039398,0.05082045868039131,-0.02768191136419773,-0.08599185198545456,-0.044038593769073486,-0.07169345766305923,0.03791169822216034,0.028418637812137604,-0.01659124530851841,-0.013305693864822388,0.028274059295654297,0.057242147624492645,-0.052510637789964676,-0.06030157208442688,-0.1189446896314621,-0.04040838032960892,0.04938799515366554,0.0936426892876625,0.0783689022064209,0.008202084340155125,-0.012791452929377556,0.0547763854265213,0.10707294940948486,-0.01878233812749386,0.07625215500593185,-0.05262617766857147,-0.0015126451617106795,-0.015032319352030754,-0.055698368698358536,-0.036888446658849716,0.012332308106124401,-0.03276583552360535,-0.026232348755002022,0.009924528189003468,0.07391853630542755,-0.047833401709795,-0.004786449484527111,-0.07050381600856781,-0.019794803112745285,0.05101899430155754,0.02404290996491909,-0.10226960480213165,-0.020091086626052856,0.003755076788365841,-0.016521750018000603,0.10265481472015381,0.010085277259349823,-0.038518790155649185,-0.02419472113251686,-0.037408776581287384,0.06007015332579613,-0.08244386315345764,-0.0792335644364357,-0.10387767851352692,-0.0016788308275863528,-0.0889565646648407,-0.05701832473278046,-0.015974370762705803,0.043922293931245804,-0.04429714009165764,-0.02671513520181179,-0.004783946089446545,0.02367475815117359,-0.03472156450152397,-0.023420283570885658,-0.07843325287103653,0.018868546932935715,-0.0892665684223175,-0.008650604635477066,-0.007772501092404127,-2.125895370852504e-8,0.027917001396417618,0.039206117391586304,-0.029116492718458176,-0.06026527285575867,0.15252448618412018,0.011443913914263248,0.05261743813753128,0.07513942569494247,-0.021917346864938736,-0.09133024513721466,-0.09667869657278061,0.0286265779286623,0.07926208525896072,0.047126736491918564,0.08928853273391724,-0.07610485702753067,0.018936635926365852,-0.06666800379753113,-0.10471990704536438,-0.030534518882632256,0.02283160760998726,0.050392888486385345,0.0326017290353775,-0.061132561415433884,0.006341846659779549,-0.0031849872320890427,-0.041435517370700836,0.08033668249845505,-0.0034371307119727135,0.0024905838072299957,-0.04983757436275482,-0.04969363287091255,-0.04069960489869118,-0.009440063498914242,-0.04863305762410164,0.09659332782030106,0.032010406255722046,0.003787756199017167,0.046554550528526306,-0.11941187083721161,-0.0033080766443163157,0.020729726180434227,0.0165712907910347,0.06705797463655472,-0.027986576780676842,0.02028086967766285,0.0032653524540364742,-0.056006550788879395,-0.003662001108750701,0.09701745957136154,0.021246759220957756,0.027610233053565025,0.07012803107500076,-0.016661254689097404,0.04352027550339699,0.017209291458129883,-0.007975216023623943,-0.10337171703577042,-0.0633605346083641,-0.0017290530959144235,0.0008922087727114558,-0.04360228776931763,-0.045898158103227615,0.029437530785799026]},{"text":"Whenever anything went wrong it became usual to attribute it to Snowball.","book":"Animal Farm","chapter":56,"embedding":[0.009216179139912128,0.040483467280864716,0.0972101166844368,0.07351834326982498,0.02363489381968975,0.009867090731859207,-0.012080276384949684,0.04538774490356445,-0.004228850360959768,-0.018268950283527374,-0.06041990965604782,0.10594214498996735,0.0012311628088355064,0.057708654552698135,0.03717410936951637,-0.05060312896966934,0.0006722573307342827,-0.04197140410542488,-0.052831076085567474,-0.021192407235503197,-0.029807409271597862,0.025231795385479927,-0.027010243386030197,0.018774302676320076,-0.014858735725283623,0.07120674103498459,-0.04633558169007301,0.04116247966885567,-0.08127237856388092,-0.03849121928215027,-0.08975672721862793,0.08826716989278793,-0.02985943667590618,0.04283929988741875,0.01303554605692625,0.03636613488197327,-0.039541494101285934,0.03251221403479576,-0.039374399930238724,0.06126125901937485,0.0344172865152359,-0.04086032509803772,0.06488138437271118,-0.01618724875152111,-0.06908784806728363,0.052869681268930435,0.01907167211174965,0.017492080107331276,0.029620375484228134,0.07367648184299469,-0.02318940870463848,-0.0029433080926537514,0.027079634368419647,0.040438175201416016,0.07442010939121246,0.07689177244901657,-0.03516096994280815,0.028770053759217262,0.03341138735413551,-0.0004848252865485847,-0.034037794917821884,0.009267655201256275,-0.0588393434882164,0.0061895283870399,0.12229679524898529,0.003553146729245782,-0.038996655493974686,-0.07356885075569153,-0.0066182371228933334,0.08933591097593307,0.03287038952112198,0.0972488522529602,-0.003438448766246438,0.031096557155251503,-0.036033179610967636,0.055050190538167953,-0.012402554973959923,-0.02103525586426258,0.041549645364284515,0.03479565307497978,0.01966904103755951,0.04640020430088043,0.011514280922710896,-0.012388271279633045,0.0941462591290474,0.010042295791208744,0.034011099487543106,0.00006063983164494857,0.05910874530673027,0.05680769681930542,-0.0923037901520729,-0.06638900935649872,0.03450407832860947,0.09599842876195908,-0.07486701756715775,0.01743628829717636,0.04745674505829811,-0.0673692375421524,-0.012267081998288631,0.0495256632566452,0.02191070280969143,-0.038012824952602386,0.03925613313913345,-0.03307168558239937,0.12540246546268463,-0.040580544620752335,-0.007126296870410442,-0.003119382541626692,-0.053630802780389786,0.03904000297188759,-0.0073150466196238995,-0.014491471461951733,0.01113320142030716,-0.002835206687450409,-0.02922212705016136,-0.029883569106459618,-0.1087818294763565,0.022117460146546364,-0.14739234745502472,0.010230541229248047,0.049100376665592194,0.07857163995504379,0.012153287418186665,0.05638206750154495,0.02079339697957039,0.04514917731285095,-0.016792045906186104,-3.0335209456793123e-33,0.04458630457520485,-0.05444130674004555,0.016032252460718155,0.027450505644083023,-0.021404918283224106,-0.054015323519706726,-0.05064942315220833,0.021965548396110535,0.07152360677719116,-0.004359327722340822,0.07106322050094604,0.07939306646585464,-0.11812597513198853,-0.08989764004945755,0.05796928331255913,0.022549264132976532,-0.11771683394908905,0.016536729410290718,-0.04704386740922928,0.11198916286230087,0.027598228305578232,0.0029742128681391478,-0.010008693672716618,-0.0022021851036697626,-0.07292703539133072,0.0943194106221199,-0.03980662673711777,0.0039036795496940613,-0.004319693427532911,0.012922202236950397,0.10740067809820175,-0.029655585065484047,-0.006137410644441843,0.013859626837074757,0.03319326788187027,-0.03111138753592968,-0.021859953179955482,-0.05709206685423851,0.0017876772908493876,0.009543896652758121,-0.06036810576915741,-0.05624871328473091,-0.11094044893980026,-0.048360779881477356,0.04652607813477516,-0.028226062655448914,0.020325949415564537,-0.026758987456560135,-0.060371603816747665,-0.027189014479517937,0.048463381826877594,0.009694399312138557,0.1318904459476471,0.007124447263777256,-0.027303064242005348,0.017644992098212242,0.03777443990111351,-0.011521848849952221,-0.04159097746014595,-0.03590037673711777,0.028574127703905106,0.000979342614300549,0.07933055609464645,-0.09382347017526627,-0.07819727808237076,0.07063879072666168,0.06585300713777542,0.05419037863612175,-0.04799814522266388,-0.032123226672410965,0.055523715913295746,0.038134850561618805,-0.0860283374786377,0.05515894666314125,-0.03288939967751503,-0.03133109584450722,-0.004909721203148365,-0.04691469296813011,0.09352706372737885,-0.026067374274134636,-0.014073311351239681,-0.02851901575922966,0.026366563513875008,-0.009239005856215954,-0.07744261622428894,-0.007751168683171272,0.0653187558054924,-0.0010808029910549521,-0.08821456879377365,0.005544664338231087,0.02299780398607254,-0.022678619250655174,-0.012540090829133987,0.018831852823495865,-0.03055824711918831,6.359652649156528e-34,-0.04475214704871178,-0.04401500150561333,-0.06928014010190964,0.078745536506176,-0.040762729942798615,0.03151938319206238,0.02251967415213585,-0.003399906912818551,0.06420181691646576,0.040922291576862335,-0.025727534666657448,-0.005032797809690237,-0.0548650324344635,-0.03272795304656029,0.06438922137022018,-0.05266408622264862,0.03401434049010277,0.0295583326369524,0.016806546598672867,0.00930127501487732,0.06007124483585358,-0.001242160564288497,-0.12761637568473816,-0.0158818531781435,-0.014839989133179188,0.03657563775777817,0.015084807761013508,-0.028948761522769928,-0.07823184132575989,-0.01470818743109703,0.046326689422130585,0.08411900699138641,-0.021366894245147705,-0.026330560445785522,-0.011747190728783607,0.048861369490623474,0.041930053383111954,-0.08730705827474594,-0.04724503681063652,-0.11612556874752045,0.007115945219993591,-0.05282418057322502,-0.003630005521699786,0.12014700472354889,0.06994056701660156,-0.02428554929792881,-0.052013590931892395,-0.006949758622795343,0.09028810262680054,0.013447443023324013,-0.10022036731243134,-0.03142355754971504,-0.0604446642100811,0.027107901871204376,-0.07401426136493683,0.053418420255184174,-0.05670260265469551,-0.0890677198767662,-0.06480486690998077,0.019268391653895378,-0.08432181179523468,-0.059977222234010696,-0.05842415243387222,-0.02148592099547386,-0.03634893149137497,0.04425492882728577,-0.030526569113135338,-0.10775212943553925,0.012180326506495476,0.029306795448064804,0.06591770052909851,0.01387527585029602,-0.06460843980312347,-0.020713072270154953,-0.04980301856994629,0.02547702006995678,0.03188430517911911,0.060746755450963974,-0.028754767030477524,-0.01980261318385601,-0.041018981486558914,0.03484726697206497,-0.012269476428627968,0.04151409864425659,0.014665408059954643,-0.024758128449320793,0.01940600760281086,-0.008253809995949268,-0.06786709278821945,0.06622906774282455,0.0006863962044008076,-0.03795340657234192,-0.03273175284266472,0.06041642650961876,-0.04401577636599541,-2.2560517010106196e-8,0.013659362681210041,0.11111152917146683,0.000634752563200891,0.03223491460084915,0.08488667756319046,0.029120219871401787,0.03889521211385727,0.03314894065260887,0.03244127333164215,-0.0425410158932209,-0.04920817166566849,0.0445149764418602,0.0431857667863369,0.024401027709245682,0.030065057799220085,0.014538242481648922,-0.009412087500095367,-0.011696464382112026,-0.09661848098039627,-0.0016614650376141071,-0.02503843978047371,-0.034824732691049576,-0.05141027271747589,-0.05213386192917824,-0.015697883442044258,0.0390632301568985,-0.02742733433842659,0.014546259306371212,0.03922929987311363,-0.03186756372451782,-0.047017116099596024,-0.04231680929660797,0.05619395524263382,-0.03176489844918251,0.004375190939754248,0.06577471643686295,0.036718666553497314,0.0030493582598865032,0.03689819574356079,-0.081093929708004,-0.013162731193006039,0.08372966200113297,0.030497973784804344,0.03622432425618172,-0.01083166990429163,0.0422852486371994,-0.09805869311094284,0.026847826316952705,-0.007406266871839762,-0.026009486988186836,-0.010263209231197834,0.03939985856413841,-0.10335978865623474,0.0836358442902565,0.055987510830163956,0.04159262403845787,0.0006566710071638227,-0.09126216918230057,-0.05251073092222214,-0.09228003770112991,-0.0005478201783262193,-0.03167400136590004,-0.09452898055315018,0.08112762868404388]},{"text":"Napoleon decreed that there should be a full investigation into Snowball's activities.","book":"Animal Farm","chapter":56,"embedding":[-0.05006427690386772,0.096577487885952,0.08008351922035217,-0.028396671637892723,0.0712272971868515,0.010281319729983807,0.03321020305156708,0.05135462060570717,-0.02404271997511387,0.03978946432471275,-0.04001711681485176,0.060213107615709305,-0.015029042959213257,0.04304516315460205,-0.019377905875444412,-0.052389614284038544,-0.015287359245121479,-0.010301090776920319,-0.058825407177209854,-0.039600685238838196,0.03922281786799431,-0.08123664557933807,0.07335499674081802,-0.001818042597733438,-0.0005420420202426612,0.12604303658008575,-0.031183451414108276,-0.05021246150135994,-0.06280811131000519,0.0004191455082036555,0.01169344037771225,0.030344093218445778,0.019641337916254997,0.040316078811883926,-0.02191966213285923,-0.006361862178891897,0.07003480195999146,-0.06794512271881104,0.027452189475297928,0.011191881261765957,0.019584469497203827,-0.061140500009059906,0.005781874526292086,0.07893083989620209,-0.07611870020627975,-0.0016880541807040572,0.015523870475590229,0.008417212404310703,0.006506622768938541,0.06578865647315979,0.019474275410175323,-0.008970259688794613,-0.025152726098895073,-0.011956530623137951,0.009450231678783894,-0.00024058946291916072,-0.01115446537733078,-0.058195196092128754,0.02819572016596794,0.0021131408866494894,-0.060785356909036636,0.025042956694960594,-0.0265795961022377,0.021937981247901917,0.05453922599554062,-0.028105176985263824,-0.04889853298664093,-0.09003794938325882,-0.021022094413638115,0.055565059185028076,0.07033207267522812,0.05763943865895271,0.07766405493021011,-0.06459707766771317,-0.08661747723817825,-0.057723913341760635,-0.0782051607966423,0.0003911878156941384,-0.015058488585054874,-0.05946451798081398,-0.03153626620769501,0.00856706127524376,0.07386967539787292,0.00428883358836174,0.0335492379963398,-0.02012360841035843,0.11614449322223663,-0.07852818816900253,0.050152990967035294,0.09762514382600784,-0.005921874660998583,-0.11883338540792465,0.006407744251191616,0.09028033912181854,-0.14790122210979462,0.046392593532800674,-0.019555281847715378,0.015956031158566475,-0.02250605635344982,0.058265797793865204,0.012556061148643494,-0.03553808853030205,0.008686658926308155,0.043115224689245224,-0.041503194719552994,0.0293589998036623,-0.07268315553665161,-0.04948988929390907,-0.005899208132177591,0.009152177721261978,0.0014062094269320369,-0.06132100149989128,0.0577065646648407,0.05647069960832596,0.06470883637666702,0.05467136949300766,-0.05402872711420059,-0.033511627465486526,-0.07647824287414551,0.0031866608187556267,0.08204980194568634,0.03670038655400276,0.04062652960419655,0.04352691397070885,0.06451385468244553,0.0716543048620224,-0.017200471833348274,-6.02321946195997e-33,0.05716501176357269,-0.0218331441283226,0.03340335562825203,-0.03313225507736206,-0.058935243636369705,0.0815192312002182,-0.02608969621360302,0.08408603072166443,0.019706804305315018,0.034825749695301056,0.016697343438863754,0.09554242342710495,-0.0755840390920639,-0.055844325572252274,0.014649600721895695,0.026463771238923073,-0.05769159644842148,0.03156731650233269,-0.015465224161744118,0.048230431973934174,0.04524620994925499,-0.07999017834663391,0.015457844361662865,0.07678370177745819,-0.0432366281747818,0.07717569172382355,-0.03451532498002052,-0.0516856424510479,0.02418222837150097,0.04638649523258209,0.02456408552825451,-0.06186099722981453,-0.011844055727124214,0.07442868500947952,0.01730334758758545,0.010198895819485188,-0.05491514503955841,-0.044156063348054886,0.007560334168374538,0.031154727563261986,0.04012063890695572,-0.07608243823051453,-0.07258927822113037,-0.031025081872940063,-0.04647946357727051,-0.032957009971141815,-0.033626116812229156,0.006234677508473396,0.07180290669202805,-0.016032040119171143,0.057012081146240234,-0.01980840228497982,0.10587025433778763,-0.13619405031204224,0.05861946940422058,0.08423572033643723,-0.053572360426187515,0.052092455327510834,0.019341500476002693,-0.03641127422451973,0.0385759212076664,0.002571940189227462,0.04232961684465408,0.08689049631357193,-0.07235274463891983,0.031930211931467056,0.03180297836661339,0.09153025597333908,0.040962763130664825,-0.052730951458215714,-0.04989028349518776,0.062244266271591187,0.03662794083356857,-0.009647435508668423,-0.02446862868964672,0.02671867050230503,0.047598663717508316,-0.027353743091225624,-0.004394538700580597,-0.06475301086902618,0.01023902092128992,-0.10137941688299179,0.04391483962535858,-0.017027253285050392,-0.061734382063150406,0.03873029723763466,0.02928897552192211,0.014571969397366047,-0.06996002048254013,0.053661126643419266,-0.09814025461673737,-0.013317539356648922,-0.03945883363485336,-0.013583320192992687,-0.02174096740782261,3.1761332060180185e-33,0.010285752825438976,-0.05953387916088104,-0.04371500015258789,0.021966245025396347,-0.021706096827983856,0.0130100566893816,-0.04255726933479309,-0.09357760101556778,0.019311705604195595,0.07404550164937973,-0.04163694009184837,-0.025386633351445198,-0.04016385227441788,-0.06797263026237488,0.019373007118701935,-0.04819753021001816,0.061389848589897156,-0.05035452917218208,-0.05288025736808777,-0.005078669171780348,-0.05146991088986397,0.0015590607654303312,-0.11841907352209091,0.01659354753792286,-0.04491446912288666,0.072379931807518,0.03551512584090233,-0.09257331490516663,-0.04443201795220375,0.07327239215373993,-0.010307768359780312,0.0841321274638176,-0.016184737905859947,-0.019724182784557343,0.000015346104191849008,0.02057061716914177,0.06556563079357147,-0.024160290136933327,0.009638717398047447,-0.053580790758132935,0.003671366022899747,0.005981381516903639,-0.009610737673938274,0.1219935491681099,0.07218997925519943,-0.030587900429964066,-0.06498218327760696,0.09032998234033585,0.02766500413417816,0.024657316505908966,-0.09427415579557419,0.01354452595114708,-0.06494299322366714,-0.03632688522338867,-0.06399424374103546,0.046592604368925095,-0.051754239946603775,-0.1201474741101265,0.009405392222106457,-0.04684342071413994,0.021189209073781967,-0.022485941648483276,-0.008460062555968761,-0.05382400006055832,-0.018765900284051895,0.018633462488651276,-0.026309426873922348,0.039613984525203705,0.10975358635187149,0.08395399898290634,0.025968236848711967,-0.03935569152235985,0.009093907661736012,0.0427696667611599,0.004385477397590876,0.026511603966355324,0.053366899490356445,0.00307954172603786,-0.0233991090208292,0.03335701674222946,-0.05195675790309906,-0.0141645772382617,-0.027012817561626434,-0.06223447248339653,0.04611988365650177,0.0293473768979311,-0.013042869046330452,0.02211829647421837,-0.019047172740101814,0.013023076578974724,0.0016529408749192953,-0.051168233156204224,0.03335510939359665,-0.023768417537212372,-0.0027729682624340057,-2.062630777288632e-8,0.013262970373034477,0.050235915929079056,0.006758959032595158,0.03786984086036682,0.060140617191791534,-0.04657644405961037,-0.06786786019802094,0.06599399447441101,-0.0063087958842515945,-0.04435288533568382,0.03677211329340935,0.04249051585793495,0.018314091488718987,0.06550659239292145,0.0409587062895298,0.004931298550218344,0.07372745871543884,-0.037709712982177734,-0.11631438136100769,0.04217296466231346,-0.06565891951322556,-0.020820114761590958,-0.04989368095993996,-0.06630703061819077,-0.022508306428790092,0.0005097017274238169,-0.023762116208672523,0.009317967109382153,0.0028990397695451975,0.009326333180069923,-0.03137018159031868,-0.03441072255373001,-0.01925228349864483,-0.06770876049995422,0.03548544645309448,0.04116837680339813,0.0644359290599823,-0.022893842309713364,0.0570359006524086,-0.10746263712644577,-0.0289889108389616,0.04939540475606918,0.10285214334726334,0.04827440530061722,-0.016515560448169708,0.014842193573713303,-0.07319815456867218,-0.012559400871396065,0.021325236186385155,0.038093335926532745,-0.09532516449689865,0.02915663830935955,-0.04716186597943306,0.0425654835999012,0.0664149671792984,0.09754785150289536,0.05384436249732971,-0.07761411368846893,-0.09334032237529755,-0.0818057581782341,0.006404089741408825,0.04072857275605202,-0.03371524438261986,-0.041428644210100174]},{"text":"I can smell him distinctly!\" and at the word \"Snowball\" all the dogs let out blood-curdling growls and showed their side teeth.","book":"Animal Farm","chapter":57,"embedding":[0.0009721445385366678,0.01872372440993786,0.07938148081302643,0.03587877005338669,-0.008350838907063007,-0.022918229922652245,0.039775874465703964,0.016642777249217033,0.03376849740743637,-0.07082901149988174,-0.06713936477899551,-0.011807060800492764,0.01373069453984499,0.08821432292461395,0.024864593520760536,0.011432395316660404,-0.0033622998744249344,0.05624296888709068,0.0038884636014699936,-0.01814357563853264,0.027094842866063118,0.07037874311208725,0.0876668244600296,-0.03594287857413292,-0.005569910630583763,0.06199450418353081,0.05023068189620972,-0.012258486822247505,-0.03490256145596504,-0.01594611629843712,0.0019824227783828974,-0.03525067865848541,-0.05313770845532417,-0.025753270834684372,-0.028830481693148613,0.01726136915385723,0.02610994689166546,0.05767771974205971,0.057801876217126846,0.05081905424594879,0.013792164623737335,0.008186617866158485,0.012880977243185043,-0.0366206131875515,-0.10290716588497162,-0.012449512258172035,-0.06872110813856125,-0.03585441783070564,0.07713942229747772,0.07387230545282364,-0.04717084392905235,-0.04914804920554161,0.060197945684194565,-0.014578299596905708,-0.04092353582382202,-0.05038627237081528,0.015815772116184235,-0.07107793539762497,-0.05218200385570526,-0.05619523674249649,-0.042347460985183716,-0.00804757047444582,0.027883172035217285,0.05748450383543968,0.009690504521131516,0.008963785134255886,-0.045705605298280716,-0.022983349859714508,-0.027692435309290886,0.02287883497774601,0.04035448282957077,0.1014496386051178,0.03818076476454735,-0.08563996851444244,-0.055803488940000534,0.0022708415053784847,0.026378199458122253,-0.03971908241510391,0.08243350684642792,-0.02964259497821331,-0.025433380156755447,0.025431955233216286,-0.019845644012093544,0.016333121806383133,0.030358407646417618,-0.029077548533678055,-0.008845385164022446,-0.060525402426719666,-0.14582374691963196,0.04908507317304611,-0.0895434319972992,-0.11541976034641266,-0.081100694835186,0.02738506905734539,-0.07362167537212372,-0.021950310096144676,-0.019129859283566475,0.038080036640167236,-0.04732085391879082,0.0023805946111679077,0.024045130237936974,-0.034164298325777054,0.03545571491122246,-0.030948812142014503,0.07617857307195663,0.01905965618789196,-0.08270806074142456,-0.028338735923171043,-0.036583852022886276,0.000003385757054275018,-0.015708791092038155,-0.07544182986021042,0.0003600800409913063,-0.00753615191206336,0.04692262411117554,-0.021300967782735825,-0.052979689091444016,-0.01705264300107956,-0.12790213525295258,0.05747179687023163,0.03489794582128525,0.05907738208770752,-0.04306170716881752,0.0788387581706047,0.09920449554920197,-0.03407629579305649,-0.0013144075637683272,-2.31408570953944e-33,0.026134086772799492,0.02748701348900795,0.026692084968090057,-0.05631307512521744,0.08554495126008987,0.03683028742671013,-0.012244218029081821,0.05680767074227333,-0.009859115816652775,0.0421910285949707,-0.01807951182126999,0.04686309024691582,-0.10020732134580612,-0.022594278678297997,-0.08674789220094681,0.08260402828454971,-0.059917524456977844,-0.06001288443803787,0.04237684607505798,0.014830752275884151,-0.017258508130908012,0.09536867588758469,0.03999338671565056,0.06850860267877579,-0.06272008270025253,-0.029260994866490364,-0.03181041032075882,-0.03476012870669365,-0.022798199206590652,0.017934948205947876,0.05023721605539322,-0.015327184461057186,0.021504200994968414,0.044151317328214645,-0.023957811295986176,-0.06456178426742554,-0.02796662598848343,-0.03235943987965584,-0.06615074723958969,0.0578838475048542,0.052605196833610535,-0.03678866848349571,-0.03866101801395416,-0.022504393011331558,-0.10691526532173157,0.019271360710263252,-0.08622219413518906,0.06372954696416855,0.0858929306268692,-0.09188670665025711,0.09724795073270798,0.03933709114789963,0.07427322119474411,-0.023015286773443222,0.03363592550158501,0.032008927315473557,0.057454247027635574,-0.01788068376481533,0.02415335550904274,0.07167594879865646,0.034020308405160904,0.06542645394802094,0.159419447183609,-0.05768426135182381,-0.051140476018190384,-0.13020752370357513,-0.04359844699501991,-0.006368082016706467,-0.0371311716735363,0.030407477170228958,0.0015100643504410982,0.007681962568312883,-0.03454621881246567,-0.07301849871873856,-0.052000921219587326,-0.07965053617954254,0.03784318268299103,0.017537400126457214,0.020960038527846336,-0.0375959537923336,-0.007540044840425253,-0.014139761216938496,0.040511421859264374,0.07650600373744965,-0.06658528745174408,0.047000352293252945,-0.01563817262649536,-0.07163016498088837,-0.015514858067035675,0.014735211618244648,-0.03250407427549362,-0.015149136073887348,0.026960451155900955,-0.10213402658700943,-0.016955913975834846,-1.3672209691902566e-33,0.002962682396173477,0.004119540564715862,0.05070115625858307,0.04641885310411453,-0.05798262357711792,0.0747196301817894,-0.059620074927806854,0.1209932342171669,-0.033247750252485275,0.03319953754544258,0.005266350228339434,0.1143307313323021,0.014835726469755173,-0.04250553250312805,0.021278727799654007,-0.016496989876031876,0.043840192258358,0.08043374866247177,0.07633895426988602,-0.05900565907359123,-0.005036721471697092,0.028998155146837234,-0.038475796580314636,0.009364135563373566,-0.061680566519498825,0.041947588324546814,0.04124308004975319,-0.028309768065810204,-0.010095097124576569,-0.027785055339336395,0.029696542769670486,0.08651593327522278,0.0002857871004380286,-0.06850922852754593,-0.009851108305156231,0.0008807284175418317,-0.050390712916851044,-0.05878891423344612,-0.02057863399386406,-0.016698263585567474,0.04139380902051926,-0.059161920100450516,0.03323475643992424,0.07059437036514282,0.05707648769021034,0.000440215808339417,-0.057370517402887344,-0.07095944881439209,-0.017682990059256554,0.05471300706267357,-0.058404531329870224,0.06518843024969101,-0.10237421840429306,0.011792910285294056,-0.08024847507476807,0.0654708743095398,0.030988633632659912,-0.08363435417413712,0.07529809325933456,-0.04885421320796013,-0.092601478099823,-0.010178796015679836,-0.01922355405986309,0.012211520224809647,-0.026727501302957535,-0.0895262286067009,0.007245372980833054,-0.038413163274526596,0.06818244606256485,0.008526015095412731,0.028622720390558243,0.02639640122652054,-0.05312182754278183,-0.008371136151254177,0.01576446369290352,0.05698199197649956,0.0030800537206232548,-0.07912053912878036,-0.021356195211410522,-0.003712640143930912,-0.03714046999812126,-0.023206377401947975,-0.004381272010505199,0.052827369421720505,0.07420013844966888,-0.01623675599694252,-0.038921456784009933,0.02574111334979534,-0.006110713817179203,0.028851570561528206,0.05757172033190727,0.05222392827272415,0.011866585351526737,-0.021951042115688324,0.039602819830179214,-3.03319254157941e-8,-0.04181717336177826,0.010462499223649502,-0.022079497575759888,-0.04335756227374077,0.05805741250514984,0.020206838846206665,-0.09992817789316177,-0.02617735043168068,-0.09581424295902252,0.024316605180501938,0.07454594224691391,0.06024825945496559,-0.04506264626979828,0.025621430948376656,0.04671972244977951,0.1278766691684723,-0.0069082919508218765,-0.055349528789520264,-0.008573081344366074,0.008166633546352386,-0.085809625685215,0.06951624900102615,-0.01541664358228445,0.01829199492931366,-0.032031890004873276,-0.0414494127035141,-0.04295431077480316,0.01242762804031372,0.0281350277364254,-0.0018754684133455157,-0.01768951117992401,0.013850738294422626,-0.04960056394338608,-0.0737605094909668,0.03971455246210098,0.004637229721993208,0.059065014123916626,-0.04288520663976669,0.039649296551942825,-0.0504501536488533,0.046951670199632645,0.020583663135766983,-0.02040456421673298,-0.01680736243724823,-0.027938151732087135,-0.0048592532984912395,0.06854856014251709,0.0036057126708328724,-0.023510342463850975,0.08812586963176727,-0.13269484043121338,0.08796931803226471,-0.01861995831131935,0.04542633146047592,0.022542031481862068,0.002328716916963458,-0.03392959013581276,-0.11648023128509521,0.010442733764648438,-0.016921516507864,0.08562243729829788,0.03222711756825447,-0.02899797633290291,-0.05702536925673485]},{"text":"Snowball is to act as his guide when the attack begins.","book":"Animal Farm","chapter":57,"embedding":[0.00779303815215826,0.03688080608844757,0.026537252590060234,0.01130132470279932,0.025737835094332695,0.07440497726202011,0.06153763085603714,0.023962372913956642,0.016423454508185387,-0.02379816211760044,-0.06036027893424034,0.07933928072452545,-0.039351314306259155,0.049542538821697235,0.0777839794754982,-0.0210199523717165,-0.016728563234210014,-0.04529280588030815,-0.031251974403858185,-0.028404206037521362,0.06125965341925621,-0.002819379325956106,0.056440651416778564,-0.06071498617529869,-0.05805554240942001,0.05236884579062462,0.015905655920505524,0.011754251085221767,-0.05844971910119057,-0.027361776679754257,-0.00982597004622221,-0.053899135440588,-0.012231053784489632,0.0848248228430748,-0.0801466628909111,0.07761647552251816,0.02547827735543251,0.05830811336636543,-0.03769109770655632,0.0489073172211647,0.04015278071165085,-0.02535451389849186,0.01879548840224743,0.011388474144041538,-0.050044357776641846,0.051333554089069366,-0.07118131220340729,0.022532204166054726,0.04009494557976723,0.031044859439134598,-0.10137360543012619,-0.01268862746655941,-0.022059263661503792,0.021463291719555855,0.11251119524240494,0.10197986662387848,0.02253473736345768,-0.03891869634389877,0.04969397932291031,-0.01868378184735775,-0.02699200250208378,-0.048378512263298035,-0.05596050247550011,0.015960708260536194,0.032765716314315796,-0.05077666789293289,-0.0072688390500843525,-0.038642361760139465,-0.005946802441030741,0.00330090313218534,0.06596150994300842,0.10521284490823746,0.05361727997660637,-0.02332882583141327,-0.031107833608984947,0.001978848595172167,-0.032368045300245285,-0.023378824815154076,0.036791540682315826,0.0062537360936403275,0.0063468217849731445,-0.009098430164158344,0.025838449597358704,0.04588308557868004,0.001667469390667975,0.043952297419309616,0.01042204350233078,-0.05257856100797653,0.10187140852212906,0.14517496526241302,-0.03828035667538643,-0.06303178519010544,-0.05605751648545265,0.09240657091140747,-0.1455361396074295,0.08548851311206818,0.011729047633707523,-0.05788709595799446,-0.11677062511444092,0.030907589942216873,0.07062777876853943,-0.08514087647199631,0.023125601932406425,-0.026328282430768013,0.044766541570425034,-0.02563784085214138,-0.07052043080329895,-0.02757999487221241,-0.06744807958602905,0.019901446998119354,0.010968510992825031,-0.08209852129220963,-0.011398249305784702,-0.00797680951654911,-0.023635782301425934,0.042605504393577576,-0.10832395404577255,0.06080549582839012,-0.10055216401815414,0.060988109558820724,0.11571833491325378,0.07964815199375153,0.028672577813267708,0.07193643599748611,0.021256370469927788,0.01499050110578537,-0.023730847984552383,-4.246547912768394e-33,0.06763821095228195,-0.015316978096961975,-0.02023891732096672,-0.01614605262875557,0.010300758294761181,-0.043575484305620193,-0.010837843641638756,0.05248492583632469,0.039138924330472946,-0.00528352428227663,-0.05744068697094917,0.008719396777451038,-0.05217879265546799,-0.015271933749318123,-0.059298206120729446,0.026277106255292892,-0.03023320622742176,0.009042513556778431,-0.07139825075864792,0.03903491795063019,0.03639024496078491,-0.0293650571256876,-0.020203443244099617,-0.0027074418030679226,-0.004453388974070549,0.04143934324383736,-0.037792712450027466,0.022088373079895973,0.004796852823346853,0.027470514178276062,-0.011392051354050636,-0.02736007608473301,-0.09113586694002151,0.03314140811562538,0.03389306738972664,0.04423724487423897,-0.03373461589217186,-0.06847363710403442,-0.04255470633506775,-0.05704963952302933,-0.04907553270459175,-0.026177842170000076,-0.13808007538318634,-0.05025211349129677,-0.003129982389509678,-0.058172132819890976,0.008360584266483784,0.023237572982907295,0.040374916046857834,-0.014692133292555809,0.05153696984052658,-0.010753054171800613,0.09466566890478134,-0.06803102046251297,0.06881877034902573,-0.045704375952482224,-0.019251009449362755,0.03693877160549164,0.008099429309368134,0.009542644955217838,0.0738401785492897,-0.06252787262201309,0.08414880931377411,0.044258296489715576,-0.04841356724500656,-0.002031633397564292,0.005622927099466324,0.01986277662217617,-0.0018904346507042646,-0.03451297804713249,0.018507925793528557,0.03619164228439331,0.01544451154768467,0.033352337777614594,-0.05626596510410309,0.007163329515606165,-0.03343803808093071,-0.030992116779088974,0.08205511420965195,-0.02446252666413784,-0.030765168368816376,-0.013173394836485386,0.0323481485247612,0.0770670548081398,-0.0901237353682518,-0.00021399087563622743,0.050982892513275146,-0.031324353069067,-0.08074817806482315,0.020168807357549667,-0.03926597535610199,-0.01074993796646595,-0.04124682769179344,0.06864470988512039,0.006814193446189165,1.172892283874147e-33,0.019198335707187653,-0.05361888185143471,-0.015638237819075584,0.03430302441120148,-0.0030360743403434753,0.05027001351118088,-0.04692981019616127,-0.0015817820094525814,0.10596942901611328,0.03715670481324196,-0.1253487914800644,0.0367928221821785,-0.005629813298583031,-0.04476776719093323,0.06487149745225906,-0.06513042002916336,0.057789962738752365,0.03571762144565582,-0.007665777113288641,-0.012677089311182499,0.02008623257279396,0.007035454735159874,-0.08403974026441574,-0.057593267410993576,-0.010328403674066067,-0.018033942207694054,0.055200304836034775,0.01554244477301836,-0.060299020260572433,0.04537878930568695,0.021719934418797493,-0.011435002088546753,0.0073301526717841625,-0.05431162193417549,-0.04772837460041046,0.11785067617893219,-0.017673855647444725,-0.037897925823926926,-0.011556201614439487,-0.025683097541332245,0.08264772593975067,-0.02400895766913891,0.044624511152505875,0.07723695039749146,0.010273978114128113,0.0010448343819007277,0.046361085027456284,0.09269418567419052,0.04934064298868179,0.03389006480574608,-0.06489202380180359,0.004982850048691034,-0.042117588222026825,-0.04903477430343628,-0.08846630901098251,0.07471577823162079,-0.048283353447914124,-0.09972048550844193,-0.005077774170786142,-0.07536420971155167,-0.00015117644215933979,-0.05638537183403969,0.010448973625898361,0.05155564844608307,-0.012114515528082848,0.015973612666130066,-0.030067715793848038,0.025587011128664017,0.03264806047081947,0.04991763457655907,0.009605628438293934,-0.009495621547102928,-0.005180621985346079,-0.042400915175676346,-0.027391696348786354,-0.054303061217069626,0.02382705733180046,-0.03854648768901825,-0.029315706342458725,-0.0496763177216053,-0.03706737980246544,0.0033154308330267668,-0.05874839052557945,0.03537628427147865,0.05981164053082466,0.02473987266421318,0.08532137423753738,0.05341256782412529,-0.010391538962721825,0.06771813333034515,0.04074707254767418,-0.01204050611704588,0.03670944273471832,0.07897119969129562,-0.07952744513750076,-2.1331858945927706e-8,-0.014672140590846539,0.06689785420894623,0.02720223180949688,-0.007607792038470507,0.05978415906429291,0.13774541020393372,-0.008884068578481674,-0.044101495295763016,0.012655843049287796,0.01418827660381794,0.05335352197289467,0.07668834179639816,0.09912936389446259,0.035021595656871796,0.0035844340454787016,0.02407926321029663,0.0014711545081809163,-0.10831926763057709,-0.1137266755104065,-0.0007532703457400203,-0.060540493577718735,-0.08141584694385529,-0.022945044562220573,0.022479254752397537,0.02061442844569683,0.02746926061809063,-0.017152370885014534,0.016238370910286903,0.07398945093154907,0.07518643885850906,-0.09581513702869415,-0.015281842090189457,0.05070357769727707,0.0024286380503326654,0.0034841338638216257,0.11804704368114471,0.0077217076905071735,0.009001257829368114,0.024957170709967613,-0.035277459770441055,-0.008177500218153,-0.005688954144716263,0.038176968693733215,0.02895210310816765,-0.10550853610038757,0.007483558729290962,-0.06474479287862778,-0.030403997749090195,-0.04600414261221886,0.0019527398981153965,-0.06445181369781494,-0.02322991192340851,-0.04508785903453827,0.02067067287862301,0.051289401948451996,0.1135251596570015,0.016563881188631058,-0.13396303355693817,-0.022505588829517365,-0.05220643803477287,-0.06875015050172806,-0.018918659538030624,-0.07888554036617279,0.03299364075064659]},{"text":"Snowball was in league with Jones from the very start!","book":"Animal Farm","chapter":57,"embedding":[-0.035628851503133774,0.025967568159103394,-0.04302898049354553,-0.00047858833568170667,0.06131702661514282,0.007150799501687288,0.02203051932156086,0.0416475348174572,-0.020576419308781624,-0.02673109993338585,-0.1471579670906067,0.01306302472949028,-0.008931243792176247,0.04944942519068718,0.021575341001152992,-0.029902968555688858,-0.01777498982846737,-0.008207629434764385,-0.03838478773832321,-0.07366075366735458,-0.021591074764728546,0.006636935286223888,-0.0643068253993988,-0.021046537905931473,0.048981040716171265,0.023480933159589767,-0.00092600955395028,0.104812391102314,-0.052350517362356186,-0.03250890597701073,-0.05179315060377121,0.03594977408647537,0.019040293991565704,0.04381543770432472,-0.04193209856748581,0.009789098054170609,0.022303149104118347,-0.00587694114074111,0.001267226878553629,0.026566343382000923,0.07032711058855057,-0.03246115520596504,0.024546241387724876,-0.014707140624523163,-0.07228250801563263,0.054295048117637634,-0.03465689346194267,0.007489900570362806,-0.0050756740383803844,0.03555658087134361,-0.021766837686300278,0.02383424900472164,-0.04128776490688324,0.07047635316848755,0.0074129425920546055,0.07912051677703857,0.0007835141150280833,-0.03748291730880737,-0.0644456073641777,-0.03969065099954605,-0.005452535580843687,0.002269718097522855,-0.04108009487390518,0.0325944647192955,0.018039846792817116,-0.0744013860821724,-0.05539596453309059,-0.03663320094347,0.0011255244025960565,-0.0714326873421669,0.09040217846632004,0.07427996397018433,-0.007992735132575035,-0.07611804455518723,0.07511744648218155,0.11654125899076462,0.016223885118961334,-0.04473205283284187,0.03611147776246071,-0.029480822384357452,0.0022515389136970043,-0.018900157883763313,0.03325536102056503,0.027458151802420616,-0.04079997166991234,-0.0026065667625516653,0.0159467700868845,-0.0059077199548482895,0.05933311581611633,0.004773835185915232,-0.02786342240869999,-0.07884267717599869,-0.06802345812320709,0.09905043989419937,-0.08813504874706268,-0.00039088804624043405,0.058666061609983444,-0.06691427528858185,-0.026324037462472916,0.06931328028440475,-0.05422739312052727,0.0068426188081502914,0.09475934505462646,-0.031302403658628464,0.12595295906066895,-0.014751068316400051,-0.029404273256659508,0.006524983327835798,-0.065521739423275,0.010074610821902752,0.003463122993707657,0.02114091068506241,-0.023465115576982498,0.12729838490486145,-0.02634030021727085,-0.009203741326928139,-0.06549860537052155,0.031028756871819496,-0.09667176008224487,0.03279900550842285,0.056657854467630386,0.06738600879907608,-0.04731501638889313,0.0982816219329834,0.0011523496359586716,0.07055144011974335,0.04875224083662033,-2.52575385488514e-33,0.026046881452202797,-0.052735891193151474,0.05759795382618904,-0.004126929212361574,-0.0170743390917778,-0.003993434365838766,0.02258809469640255,0.04610157012939453,0.017702972516417503,-0.06343745440244675,-0.06739296019077301,0.05118896812200546,-0.015049661509692669,-0.07935962826013565,0.04372090846300125,0.019936399534344673,-0.10035702586174011,-0.05420202761888504,-0.015033039264380932,0.06484989821910858,0.023422908037900925,0.0342758446931839,-0.10346861928701401,0.014302341267466545,-0.07949786633253098,0.0964123085141182,-0.03701789677143097,-0.046007439494132996,0.028166210278868675,0.011359029449522495,0.06321574747562408,-0.0011224449845030904,-0.05665840953588486,0.09812121838331223,0.048784635961055756,0.035650111734867096,-0.02850462682545185,-0.06836659461259842,-0.038263775408267975,-0.035967323929071426,-0.03673040494322777,-0.01293114759027958,-0.07266838848590851,-0.15045221149921417,-0.1409039944410324,-0.08089403808116913,-0.06809019297361374,-0.02036333829164505,0.03992841765284538,-0.07387978583574295,0.02389967441558838,-0.0027829280588775873,0.10988008975982666,0.0036723176017403603,0.009989269077777863,-0.04987816885113716,0.01986549235880375,0.014237682335078716,-0.007808399852365255,-0.004483508411794901,0.0002697056042961776,0.035896603018045425,0.0425976887345314,-0.030351947993040085,-0.07267141342163086,-0.03445403650403023,0.06719445437192917,-0.008693964220583439,-0.023450659587979317,0.003026810474693775,0.03955501317977905,0.0218890979886055,-0.00008131352660711855,-0.026504099369049072,0.0032583936117589474,0.008667679503560066,0.0671520084142685,-0.0004959135549142957,0.062390029430389404,-0.01003382820636034,0.02665242739021778,-0.05367468297481537,0.0037865343037992716,-0.05294326692819595,-0.06486306339502335,0.02944323979318142,-0.002912613097578287,0.07870166748762131,-0.08874434232711792,0.04927707090973854,-0.033936697989702225,0.05100151151418686,-0.03755209222435951,-0.0282046627253294,0.012732991948723793,-5.175356784382459e-34,-0.021136363968253136,-0.035822514444589615,-0.015394685789942741,-0.029367340728640556,0.07289604842662811,0.03203651309013367,0.03855196386575699,0.031047770753502846,0.03377468138933182,-0.05013350769877434,0.02987944707274437,-0.04275059700012207,-0.011670185253024101,-0.023531189188361168,-0.00628410279750824,-0.08023121953010559,0.007869119755923748,0.0657932385802269,0.04669651389122009,0.07833679020404816,-0.003160408465191722,-0.011113670654594898,-0.12691669166088104,-0.06497364491224289,0.005023750942200422,-0.03187147155404091,-0.018188390880823135,0.01655089110136032,-0.14552874863147736,0.057597652077674866,0.006555074825882912,0.03234059363603592,0.005908370483666658,-0.0411313958466053,0.0021981927566230297,0.009406001307070255,-0.041795313358306885,0.006778272334486246,0.0004182293196208775,-0.06930217891931534,0.042267296463251114,0.015687420964241028,0.040773678570985794,0.1720089465379715,0.1041315346956253,-0.006656390614807606,-0.06063106283545494,0.009605927392840385,0.0382431298494339,0.08193709701299667,-0.10838906466960907,0.03729625791311264,-0.11239191144704819,-0.005133778788149357,-0.026447810232639313,0.0658794716000557,0.021604023873806,-0.04651033878326416,-0.047545045614242554,-0.08218657970428467,-0.08928568661212921,-0.04624240845441818,-0.05988584831357002,-0.0016234518261626363,0.03910406678915024,0.09304019063711166,0.00812264159321785,-0.03748433664441109,-0.049512483179569244,-0.01951594278216362,-0.0009091953979805112,0.04567630961537361,0.00880926288664341,-0.0007111981976777315,-0.0540492907166481,-0.04666122421622276,0.03163350373506546,0.08715290576219559,-0.01696406677365303,0.012502024881541729,-0.018453584983944893,0.07898540794849396,-0.022759180516004562,0.08656821399927139,0.06176077574491501,0.06669968366622925,0.05720655992627144,-0.0007912435685284436,-0.048837680369615555,0.025988902896642685,0.037698205560445786,0.005797218065708876,0.020254826173186302,0.01329788938164711,0.013067206367850304,-1.9909855097921536e-8,0.01432507298886776,0.10067771375179291,-0.014170694164931774,0.027425091713666916,0.0578528568148613,0.0817570611834526,0.025375589728355408,-0.005809684284031391,0.006026071030646563,0.031522806733846664,0.0497828908264637,0.10049302130937576,-0.011044008657336235,0.042384907603263855,0.000118838062917348,0.00873362086713314,-0.07012153416872025,-0.022676609456539154,-0.01356546301394701,0.012998666614294052,-0.08490578830242157,-0.03833785280585289,-0.05975807458162308,0.02590239979326725,0.0956386849284172,0.0530705600976944,-0.044809386134147644,-0.024808455258607864,0.07441894710063934,-0.047674667090177536,0.010368636809289455,-0.005130587611347437,0.0434134416282177,-0.018948374316096306,0.042302537709474564,-0.011690229177474976,0.05020561441779137,0.06285378336906433,0.01637847162783146,-0.08114384114742279,0.027995994314551353,0.0367816686630249,0.019685016945004463,-0.02547350898385048,0.03828446567058563,0.03583409637212753,-0.058517713099718094,-0.001360474736429751,-0.04739614576101303,-0.047319844365119934,-0.05498124659061432,0.02048342116177082,0.02013542130589485,0.014384030364453793,0.023654088377952576,0.09976097196340561,-0.029350275173783302,-0.06458176672458649,-0.08514788001775742,-0.07511343061923981,0.013999064452946186,-0.020847240462899208,-0.06156699359416962,0.09514030814170837]},{"text":"This was a wickedness far outdoing Snowball's destruction of the windmill.","book":"Animal Farm","chapter":57,"embedding":[-0.04537442326545715,0.14954856038093567,0.061134856194257736,0.035284630954265594,0.06843806803226471,-0.04158138856291771,-0.03689603880047798,0.01063269842416048,0.010638006031513214,-0.06527325510978699,-0.02187461033463478,0.11225549131631851,0.025665611028671265,-0.09166121482849121,0.02613944374024868,0.016426339745521545,-0.09389664232730865,-0.003799141850322485,-0.08737051486968994,0.020725229755043983,0.030828092247247696,0.0008311247802339494,-0.029444729909300804,0.01198369450867176,0.02503337524831295,0.14053787291049957,-0.057464707642793655,0.059986457228660583,-0.03985505551099777,0.043616265058517456,-0.011627323925495148,0.01482155080884695,-0.07054822891950607,-0.01360795833170414,-0.01651446335017681,0.03673121705651283,0.03928876668214798,0.013509102165699005,-0.008657465688884258,-0.05520699918270111,0.08377371728420258,0.03775904327630997,0.020711194723844528,-0.03477802872657776,-0.06451470404863358,0.07919139415025711,0.022343793883919716,-0.01736675202846527,0.01743990369141102,-0.03357550501823425,-0.042883120477199554,-0.0006152549758553505,-0.017810529097914696,-0.009484603069722652,0.02500441111624241,0.010787732899188995,0.023441944271326065,-0.041960958391427994,0.024823859333992004,0.08011455088853836,-0.0062949745915830135,-0.014617607928812504,-0.006167231593281031,-0.0003589516272768378,0.08375225961208344,-0.09422381967306137,-0.006259407848119736,-0.056122466921806335,-0.04523990675806999,0.009757849387824535,0.06535659730434418,-0.010510582476854324,-0.009798165410757065,-0.02745424397289753,-0.05343275144696236,-0.0017704050987958908,-0.012272532097995281,-0.06253713369369507,0.03459099307656288,0.034567706286907196,0.07473830133676529,-0.01799347624182701,0.06612478196620941,-0.027854006737470627,0.036077775061130524,0.005952971056103706,0.025932028889656067,-0.03853331133723259,0.1425018310546875,0.0782470703125,-0.057168230414390564,-0.017379794269800186,-0.001780939637683332,0.06698154658079147,0.03795360028743744,0.01974419876933098,0.026291776448488235,-0.019666090607643127,-0.055098555982112885,0.12959453463554382,-0.01599714532494545,-0.01921258307993412,0.029419902712106705,-0.04878542199730873,0.0018682248191908002,0.007965512573719025,-0.09614286571741104,0.011389583349227905,-0.034596074372529984,-0.02362656220793724,0.02420715242624283,-0.011060398072004318,0.014339550398290157,-0.03784292936325073,0.05845930799841881,-0.03399667516350746,0.01596893183887005,-0.012007835321128368,-0.13240981101989746,0.08322429656982422,0.17160464823246002,0.06333666294813156,-0.029099980369210243,0.07378087937831879,-0.015030267648398876,-0.006576752755790949,-0.03561457246541977,-4.4026476850858396e-33,0.03089057467877865,0.014046730473637581,0.0055665127001702785,-0.020464610308408737,0.0792439803481102,0.023570911958813667,0.008732927031815052,0.044132914394140244,0.07565505802631378,-0.001433152356185019,0.013631327077746391,-0.004050873219966888,-0.07916953414678574,-0.07042527198791504,0.012545725330710411,-0.043572038412094116,-0.008953495882451534,0.002343093743547797,0.04148702695965767,0.04368578642606735,0.06209653615951538,-0.06588687002658844,-0.04575863853096962,-0.017278281971812248,-0.10867086797952652,0.06819391250610352,0.013968772254884243,-0.00045550765935331583,0.011036448180675507,0.03269479423761368,0.03311661630868912,-0.013838971965014935,-0.0488252229988575,0.03991714119911194,0.027917716652154922,-0.025639258325099945,-0.1097930446267128,-0.056808531284332275,0.012614574283361435,0.04015232250094414,-0.056238386780023575,-0.016455644741654396,-0.08478296548128128,0.05289078131318092,0.013454985804855824,-0.007861134596168995,0.010140949860215187,0.05683481693267822,0.00919378362596035,-0.003976193722337484,0.06028839945793152,0.0351715013384819,0.04073353111743927,-0.0069326735101640224,0.03235245496034622,0.08641750365495682,0.035849928855895996,0.04189544543623924,-0.035294950008392334,0.00576199172064662,0.046676136553287506,0.0025027443189173937,0.019036509096622467,-0.01842612214386463,-0.021845396608114243,-0.038604628294706345,-0.02555755153298378,0.04465752840042114,-0.09057510644197464,0.048819608986377716,-0.010271839797496796,-0.0010106548434123397,-0.034973520785570145,-0.001052524778060615,-0.07234982401132584,-0.010096578858792782,0.004312486387789249,-0.010656367987394333,0.03085307404398918,0.024668704718351364,0.005306026432663202,0.04503216966986656,0.06479793787002563,0.0007052424480207264,-0.05911904573440552,-0.0815340057015419,-0.01689872145652771,-0.03151695057749748,-0.06669321656227112,-0.04027099162340164,0.016584940254688263,0.05900874733924866,0.022623924538493156,-0.08122645318508148,-0.09435266256332397,1.9203279791215984e-33,-0.06091912463307381,0.03468973934650421,-0.07037359476089478,0.001431284355930984,-0.03427299112081528,0.09352119266986847,0.012450352311134338,-0.012286368757486343,-0.09349031001329422,0.0015197490574792027,-0.03557309880852699,0.023860786110162735,0.021987149491906166,0.025259995833039284,0.10099989920854568,-0.04211572930216789,0.10798707604408264,0.02876407839357853,-0.008585013449192047,0.000933357048779726,0.10353777557611465,0.026395846158266068,-0.08912913501262665,0.021203242242336273,-0.043835751712322235,-0.01116729062050581,-0.019579485058784485,-0.05221700295805931,0.0020306480582803488,0.08244184404611588,-0.013626433908939362,0.05518774315714836,0.01443510316312313,0.02022414654493332,-0.0009205583482980728,0.057731401175260544,0.038184404373168945,-0.022870328277349472,-0.04553299397230148,-0.08393919467926025,0.03376482054591179,-0.009839123114943504,-0.01773635670542717,0.09607154875993729,0.019099384546279907,-0.0923236832022667,-0.0903845727443695,0.03172045201063156,0.09081556648015976,0.049370139837265015,-0.08390122652053833,-0.005307045299559832,-0.08733499050140381,-0.0003329832397866994,-0.08959613740444183,-0.060727499425411224,0.04112333804368973,-0.1421104520559311,0.022732039913535118,-0.048012275248765945,-0.15495508909225464,-0.04558368772268295,-0.05653630569577217,0.03880386799573898,-0.004556816071271896,0.02120424248278141,-0.014873933047056198,-0.04409920051693916,-0.01732967421412468,-0.010577218607068062,-0.0011453423649072647,0.09493802487850189,-0.03181617707014084,-0.07070280611515045,-0.011607893742620945,0.07237745076417923,0.0738418772816658,0.0467773973941803,-0.07179006189107895,0.007926150225102901,0.0269555002450943,0.09432563185691833,0.029697373509407043,-0.0069844420067965984,-0.018932778388261795,-0.0715690478682518,-0.01943931356072426,-0.021445393562316895,-0.0018423539586365223,0.09560924023389816,0.03124121204018593,-0.08734305948019028,0.023015134036540985,0.05625925958156586,0.03768361732363701,-2.2997774351551925e-8,-0.04465022683143616,0.06212761998176575,-0.02325482666492462,-0.0023511929903179407,0.0039279465563595295,0.05444514751434326,-0.030109455808997154,0.018671201542019844,0.0011489668395370245,-0.015248313546180725,0.0039077261462807655,0.05080024152994156,0.08637841045856476,0.09854748100042343,-0.005852347239851952,0.00930462684482336,0.03450499847531319,-0.060951538383960724,-0.06251020729541779,-0.005566153209656477,-0.03586987406015396,-0.01677093468606472,-0.036906804889440536,-0.04973626881837845,-0.02152944542467594,0.013259686529636383,-0.10961779206991196,0.000676014635246247,0.03595370054244995,0.05233638733625412,-0.04452100768685341,-0.024827469140291214,-0.023257695138454437,-0.024640383198857307,-0.11495669186115265,0.0066702221520245075,-0.06002527475357056,0.006917990744113922,-0.025451894849538803,-0.05496542900800705,-0.036557842046022415,0.08797604590654373,0.02187996730208397,0.04859405383467674,0.06512384116649628,-0.03528081253170967,-0.08056376129388809,-0.05948087200522423,-0.00867179874330759,0.018993154168128967,-0.0010813064873218536,0.009824922308325768,0.03983065485954285,0.06055477261543274,0.04556464031338692,0.05306588485836983,-0.016630254685878754,-0.042416419833898544,-0.13355274498462677,-0.02818136103451252,-0.02078886330127716,0.03111211769282818,-0.005056446418166161,0.019996028393507004]},{"text":"He lay down, tucked his fore hoofs beneath him, shut his eyes, and with a hard effort managed to formulate his thoughts. \"I do not believe that,\" he said. \"Snowball fought bravely at the Battle of the Cowshed.","book":"Animal Farm","chapter":58,"embedding":[0.039370376616716385,0.10017823427915573,0.03796548396348953,0.03371477872133255,0.031023235991597176,0.021340573206543922,0.12714236974716187,0.07425298541784286,-0.03244875371456146,-0.05929659307003021,-0.09609100967645645,-0.007233831100165844,-0.008434655144810677,-0.0037998303305357695,0.06541557610034943,-0.032891470938920975,-0.08384490758180618,0.023666828870773315,-0.01892823539674282,-0.02585632912814617,0.05726400762796402,-0.009715840220451355,0.06510297954082489,0.048479147255420685,0.028641872107982635,0.06924212723970413,0.02325277030467987,0.037105314433574677,-0.05336151272058487,0.01865406520664692,-0.05852280184626579,-0.09663427621126175,-0.028363674879074097,0.013839664869010448,-0.0750436931848526,0.02966063655912876,0.029718780890107155,0.017479121685028076,0.03713053837418556,0.03148229047656059,-0.026332927867770195,-0.03915417566895485,0.0035059775691479445,0.023459268733859062,-0.031156327575445175,0.03126683831214905,-0.027147077023983,0.006421513389796019,0.06865454465150833,0.02130657248198986,-0.09520649909973145,-0.014933791942894459,-0.014689342118799686,-0.06385812908411026,0.029350774362683296,0.034796904772520065,0.04210156574845314,0.001257964875549078,0.021461177617311478,0.0019746324978768826,0.019496623426675797,-0.052968889474868774,0.042540524154901505,0.10696034133434296,0.052735812962055206,-0.030358612537384033,-0.010298476554453373,-0.03443002328276634,-0.08681672811508179,0.09531009197235107,0.038166116923093796,0.05873730406165123,-0.0442071333527565,-0.11695254594087601,-0.07500406354665756,-0.04787001013755798,0.03706084191799164,-0.019341634586453438,0.12851932644844055,0.030592702329158783,0.030757790431380272,0.042113274335861206,-0.03843775764107704,0.04003562033176422,-0.05732346326112747,-0.04678109660744667,0.09632327407598495,-0.03198433294892311,-0.03937171399593353,0.01363794319331646,-0.0434887520968914,-0.08491663634777069,-0.10595910251140594,0.07795657962560654,-0.05458041653037071,0.020670142024755478,-0.0215888861566782,0.0008940313127823174,-0.10410471260547638,0.0004794485284946859,0.11237373948097229,-0.03881107643246651,0.052494946867227554,-0.01613287813961506,-0.003609056118875742,0.04924885928630829,-0.10973253101110458,-0.008157319389283657,-0.08318288624286652,0.058720022439956665,-0.012048535980284214,-0.06671447306871414,-0.05659690499305725,0.0694141536951065,-0.00510437460616231,0.09628957509994507,-0.034556593745946884,-0.04147038981318474,-0.13590070605278015,0.013667269609868526,0.07919446378946304,0.12367559969425201,0.03140460327267647,0.09412405639886856,0.02167193591594696,-0.02519654668867588,0.06520222872495651,-6.5279944604538186e-34,0.12999467551708221,-0.08222077786922455,-0.02195148915052414,0.014794278889894485,0.054361794143915176,0.003399695036932826,-0.019160736352205276,0.04705486446619034,-0.005391357000917196,0.09695952385663986,-0.051465969532728195,0.015117250382900238,-0.0057665323838591576,-0.04326039180159569,-0.014749083667993546,-0.013851680792868137,-0.05070300027728081,-0.08672508597373962,0.01509531494230032,0.06701001524925232,0.0523984394967556,0.033928848803043365,-0.011210383847355843,-0.0075619458220899105,-0.04520963504910469,0.01576773077249527,-0.01148178894072771,-0.057368163019418716,-0.0487164631485939,0.04930870607495308,-0.04808143526315689,-0.07527954876422882,-0.011397547088563442,0.005043501500040293,0.0833711177110672,-0.051432084292173386,-0.06590376049280167,0.004137590993195772,-0.019704852253198624,0.015837548300623894,0.01968318037688732,0.004738218616694212,-0.015093726105988026,-0.026954462751746178,-0.03918927162885666,0.02137523889541626,-0.03477498143911362,0.06750240921974182,-0.042386673390865326,-0.032884594053030014,0.06246355175971985,0.03031470626592636,0.035974182188510895,-0.08039668202400208,0.06389220803976059,0.014744626358151436,-0.0016953947488218546,0.02564598247408867,0.005505543202161789,-0.005606960970908403,0.02691533975303173,-0.05184980109333992,0.004471959546208382,-0.017623024061322212,-0.08940035849809647,-0.06061451882123947,-0.07179490476846695,-0.013425509445369244,-0.041675906628370285,-0.005739325657486916,-0.005844416096806526,0.02032998949289322,-0.06639038771390915,-0.03725358471274376,-0.08896429091691971,0.011065619997680187,0.0045399973168969154,-0.0032574140932410955,-0.036316849291324615,-0.06907100975513458,0.08331503719091415,-0.04654158651828766,-0.09040866792201996,0.05590074881911278,-0.06265020370483398,0.007685782853513956,-0.04757636412978172,-0.058413103222846985,-0.09153904020786285,0.008118021301925182,-0.06479491293430328,0.0214950330555439,0.04939369484782219,-0.11828389018774033,-0.05481800436973572,-2.0374637871291315e-33,-0.024204352870583534,0.011250264011323452,0.02160211279988289,0.07426142692565918,-0.06740006804466248,-0.0008560156566090882,-0.02460046485066414,0.01939813233911991,0.018943706527352333,-0.04667474329471588,-0.02763967029750347,0.042800527065992355,0.02411509118974209,-0.03390592709183693,0.03220471739768982,-0.08016075193881989,0.007812103722244501,0.067535899579525,0.01746816374361515,-0.02884170599281788,0.0639650896191597,-0.05797330290079117,-0.04053286090493202,-0.07691637426614761,0.0538301020860672,0.011020677164196968,0.0006649705464951694,-0.005144658498466015,-0.018037976697087288,-0.021875351667404175,0.04793422669172287,-0.040682923048734665,-0.018423793837428093,0.0224321186542511,-0.040592581033706665,0.08314567804336548,0.03341053053736687,-0.020793305709958076,-0.007429614197462797,-0.11019186675548553,0.05392496660351753,-0.05359932780265808,0.007503828499466181,0.007044394500553608,0.017580024898052216,0.030173705890774727,-0.12633974850177765,0.02790660969913006,0.06565585732460022,0.04766331985592842,-0.080898217856884,0.03795323893427849,-0.04724086821079254,-0.02017974853515625,-0.030008168891072273,-0.027999743819236755,-0.05250193923711777,-0.06510794907808304,0.02593562752008438,-0.04848632961511612,-0.03176937997341156,-0.035756390541791916,-0.009319615550339222,0.04968522489070892,0.03196662291884422,0.016300421208143234,-0.05980304628610611,0.003059525042772293,0.005559278652071953,0.006382826715707779,0.054277945309877396,0.04873816296458244,0.044695302844047546,0.032886847853660583,0.05686623230576515,0.0906161293387413,0.0061215609312057495,-0.011863848194479942,-0.0017447508871555328,-0.009864011779427528,0.05375956371426582,-0.041932787746191025,0.002893096301704645,0.001939297653734684,0.05206407606601715,0.009568818844854832,-0.04005810245871544,0.03257134556770325,-0.04413415491580963,0.06723833829164505,0.0326896607875824,0.003687942633405328,0.11064200848340988,0.018286971375346184,0.03371397778391838,-3.4832421391683965e-8,-0.013320793397724628,-0.018058769404888153,-0.03101624920964241,-0.0002456774818710983,0.023845255374908447,0.12844744324684143,-0.03861202299594879,-0.02660810574889183,-0.018220610916614532,-0.005937445908784866,0.012692823074758053,0.10259535908699036,0.029281074181199074,0.09276046603918076,-0.01044510118663311,0.06035146862268448,0.004834511782974005,-0.11536676436662674,-0.02168148010969162,-0.021374711766839027,0.043036267161369324,-0.05725693702697754,-0.07705257087945938,0.011237346567213535,0.019868534058332443,0.0425134114921093,-0.026850348338484764,0.039613090455532074,-0.02956627868115902,0.01668432541191578,0.00803774781525135,0.045509036630392075,-0.07125834375619888,-0.08298859000205994,0.040603067725896835,0.06339645385742188,0.04719739034771919,0.05346963182091713,0.05421093851327896,-0.11435450613498688,-0.030907394364476204,0.09112031757831573,0.0572083480656147,-0.005855537485331297,0.021380838006734848,0.016416924074292183,0.004730996210128069,0.021534256637096405,-0.050286129117012024,0.059593066573143005,-0.019164279103279114,0.05471906438469887,0.00814727135002613,0.06320449709892273,-0.04150902107357979,-0.018602579832077026,0.03389372304081917,-0.06117228791117668,-0.07357925921678543,-0.045840248465538025,-0.04791470617055893,0.027390707284212112,-0.056401271373033524,-0.014060708694159985]},{"text":"And he very nearly succeeded--I will even say, comrades, he WOULD have succeeded if it had not been for our heroic Leader, Comrade Napoleon.","book":"Animal Farm","chapter":58,"embedding":[-0.07262714207172394,0.0711495652794838,0.014328816905617714,-0.10122167319059372,-0.005945156328380108,-0.025996945798397064,-0.009199409745633602,0.05236618220806122,-0.08046115934848785,0.014325330033898354,0.009862705133855343,0.07466931641101837,0.1254395991563797,-0.027118975296616554,-0.003971364814788103,-0.037679851055145264,0.02355615794658661,0.009456964209675789,0.020998412743210793,-0.012001033872365952,-0.032814871519804,0.07003258913755417,0.10980699956417084,0.0161995068192482,0.044947125017642975,-0.0011352024739608169,0.00007753078534733504,0.007874667644500732,0.006960572209209204,0.032454513013362885,0.02190081775188446,-0.14129985868930817,-0.0377056747674942,-0.006518608890473843,0.023178178817033768,-0.06102142855525017,0.012903152033686638,0.0016027798410505056,0.02203258126974106,-0.019740380346775055,0.003819457022473216,0.016723044216632843,-0.04797961935400963,0.04861324280500412,0.028561225160956383,-0.008390822447836399,-0.05515033006668091,-0.02890246920287609,-0.0213589146733284,0.02606349252164364,-0.04728035256266594,0.03003859333693981,-0.009926699101924896,-0.0789300799369812,-0.00802078377455473,-0.0408719927072525,-0.04548295959830284,0.014752141200006008,0.07867351174354553,0.015668407082557678,-0.025439729914069176,0.031657081097364426,0.031030915677547455,-0.027658341452479362,0.009918458759784698,-0.03670883923768997,-0.07023714482784271,0.002971191657707095,-0.08782915025949478,0.1527128368616104,0.015632320195436478,-0.010870198719203472,0.02768605761229992,-0.021746888756752014,-0.10531165450811386,-0.10800863057374954,0.04203018173575401,0.045727550983428955,-0.002919763559475541,0.05540994927287102,-0.03762764483690262,0.04961508512496948,-0.00262995483353734,0.035964857786893845,0.0705876424908638,-0.053142718970775604,0.09684862196445465,-0.08514151722192764,0.053093090653419495,-0.03001999668776989,-0.008705146610736847,-0.005400157067924738,-0.0067815836519002914,0.03195759281516075,-0.03907381370663643,0.039828069508075714,-0.013647467829287052,0.07952729612588882,-0.06212306395173073,-0.010561801493167877,0.002284758724272251,0.001690570148639381,-0.027874251827597618,-0.03903743997216225,-0.01827571727335453,0.03401707112789154,-0.0038560747634619474,0.003077398519963026,-0.0029902521055191755,-0.047350380569696426,-0.0016414161073043942,-0.09255561977624893,0.0036320218350738287,0.05568908527493477,0.09626469761133194,0.0057740285992622375,-0.09379148483276367,-0.05052471533417702,-0.0608215257525444,0.024041542783379555,0.033551108092069626,0.013626373372972012,-0.009946967475116253,0.05190308764576912,0.002330936724320054,-0.03184984251856804,0.07235855609178543,-2.381949386135311e-33,-0.03470227122306824,0.038434311747550964,0.0024595758877694607,0.08756739646196365,-0.11796609312295914,0.08154497295618057,-0.06749022752046585,0.0008362741209566593,-0.0036641729529947042,-0.014618695713579655,-0.002600714797154069,-0.019801318645477295,-0.051185864955186844,0.05660036951303482,-0.07467176765203476,0.05379671975970268,0.03837861493229866,-0.002911482471972704,0.02925773337483406,-0.009295341558754444,0.027037041261792183,0.02278660424053669,0.010502465069293976,-0.02984834648668766,0.049091797322034836,0.0715336874127388,0.014318324625492096,-0.010009463876485825,-0.015906373038887978,0.023523371666669846,0.07359068840742111,-0.0026264297775924206,-0.043387383222579956,0.08290499448776245,-0.017529882490634918,-0.06382963061332703,-0.04878790304064751,-0.07731150090694427,-0.01090469304472208,0.07533172518014908,0.005218345206230879,-0.030577637255191803,-0.018815718591213226,-0.0004615938232745975,0.006167816463857889,-0.07647707313299179,0.01068479847162962,0.04464033246040344,0.056037284433841705,-0.04885874316096306,-0.011888906359672546,0.0022428054362535477,0.008230856619775295,-0.0067030154168605804,0.05652830749750137,-0.0033419649116694927,0.009732128120958805,0.20148256421089172,0.035809475928545,-0.04160165414214134,-0.04479248449206352,-0.09884330630302429,-0.030550174415111542,0.0783240795135498,-0.031158993020653725,-0.027628624811768532,0.012876210734248161,-0.02591981366276741,-0.005974104627966881,-0.007797692436724901,-0.002128473250195384,-0.05148390308022499,-0.04753069207072258,-0.035391658544540405,-0.005948404781520367,-0.042878083884716034,-0.00135028304066509,0.016370855271816254,-0.01915256306529045,-0.019143668934702873,-0.09613692760467529,-0.04066544398665428,-0.05417339876294136,-0.04473751410841942,0.0432262122631073,0.08801162987947464,0.11132414638996124,-0.11900092661380768,-0.0932915210723877,0.058094240725040436,-0.009733421728014946,-0.022581009194254875,-0.05780095234513283,0.011762413196265697,-0.08392710238695145,-2.019197615107811e-34,0.02448030561208725,0.029727160930633545,0.08811257034540176,0.0633508712053299,0.03613974526524544,-0.0021696793846786022,-0.01309136301279068,-0.0622270330786705,-0.03396587073802948,0.011738731525838375,0.06985606998205185,-0.03030039742588997,-0.0014901834074407816,0.029554568231105804,-0.037452712655067444,0.07633300870656967,0.04860500991344452,-0.11007578670978546,-0.04240040481090546,0.030033327639102936,-0.050359614193439484,0.017282703891396523,0.013064119033515453,0.030571099370718002,-0.08752594143152237,0.03849899396300316,-0.044538579881191254,-0.07288070768117905,-0.07012450695037842,-0.05924269184470177,-0.031583625823259354,0.028452279046177864,-0.0949823185801506,0.021090716123580933,0.08401709794998169,0.11199682950973511,-0.014455913566052914,0.01916702464222908,0.029867632314562798,0.04850273206830025,-0.004737223498523235,-0.018999813124537468,0.048931464552879333,-0.0027167368680238724,0.032078444957733154,-0.026631401851773262,-0.023965610191226006,-0.045409269630908966,0.00038362908526323736,0.0716928020119667,-0.06825516372919083,0.010129407048225403,-0.03244899585843086,0.009050476364791393,-0.030396001413464546,0.012866654433310032,-0.02357490547001362,-0.07443437725305557,0.004037359729409218,-0.05848861485719681,-0.059843093156814575,-0.06149733066558838,0.0600074902176857,0.004357799421995878,-0.009247936308383942,0.01841696724295616,-0.0778898373246193,0.1759854108095169,0.03732817992568016,0.09475620836019516,0.03719523921608925,-0.011389224790036678,0.017843756824731827,0.0931692123413086,-0.02453366294503212,-0.0011578996200114489,-0.06313007324934006,-0.044465288519859314,-0.003813143353909254,-0.038023918867111206,-0.05298856273293495,-0.03924945741891861,-0.01571662165224552,-0.08538477122783661,-0.026057148352265358,0.05277993902564049,-0.005733118392527103,-0.022803887724876404,0.09566252678632736,0.02025586925446987,0.05287288874387741,-0.1032845601439476,0.10986807197332382,-0.027005888521671295,0.07365256547927856,-2.8483086111918965e-8,-0.01302439533174038,0.09587351977825165,0.03532563894987106,0.06873776763677597,-0.0034829135984182358,-0.04002486541867256,0.04564492404460907,-0.03646308183670044,-0.004177580587565899,0.07320030778646469,-0.07263892889022827,0.004254260566085577,0.014261403121054173,0.028859326615929604,0.03258027508854866,-0.002546909963712096,0.015012097544968128,-0.017636271193623543,0.0140182264149189,0.0346982479095459,0.03045523911714554,0.022277938202023506,-0.006582541391253471,-0.08571410924196243,-0.07966717332601547,0.060337502509355545,-0.07590704411268234,-0.05840795114636421,-0.025168275460600853,0.026824522763490677,0.038319531828165054,-0.05031862109899521,-0.07508724927902222,-0.04836888983845711,0.0008999732090160251,0.08157587051391602,0.06792222708463669,-0.01905231922864914,-0.005978745874017477,-0.1020970493555069,0.021732984110713005,0.0930895060300827,0.052873432636260986,0.0516253262758255,0.06387430429458618,0.07629465311765671,0.00384867493994534,0.037305042147636414,0.03889943286776543,0.011688572354614735,0.007520467042922974,0.05766243115067482,-0.024957386776804924,-0.008393528871238232,0.03431353718042374,-0.03176971897482872,-0.014232956804335117,-0.008714643307030201,-0.07082004845142365,-0.0607842393219471,0.01301712729036808,-0.01099840085953474,-0.006185848731547594,-0.08860033750534058]},{"text":"At any rate, they remembered that at the critical moment of the battle Snowball had turned to flee.","book":"Animal Farm","chapter":58,"embedding":[-0.007863984443247318,0.10670345276594162,0.017912162467837334,0.05739881843328476,0.12149383127689362,0.08535300195217133,-0.02257745899260044,0.06778360903263092,-0.04664163663983345,-0.02682516723871231,-0.0295597892254591,0.028371479362249374,0.02312827669084072,-0.038134653121232986,0.013349862769246101,-0.029863500967621803,-0.042624130845069885,-0.034967534244060516,-0.04730207845568657,0.013733827508985996,0.009781592525541782,-0.04151454567909241,0.0638110414147377,0.07892841100692749,0.04307493939995766,0.07882999628782272,-0.027648964896798134,0.05213087052106857,-0.035246942192316055,0.025278449058532715,-0.03746290132403374,-0.009718253277242184,-0.07632185518741608,0.07114782184362411,-0.06207478791475296,0.058776289224624634,-0.030156385153532028,0.02364456094801426,0.01899600960314274,-0.029927240684628487,-0.021435150876641273,0.041284382343292236,0.00529450410977006,0.018550880253314972,-0.025392411276698112,0.03896423429250717,-0.04325001686811447,-0.0010775222908705473,0.03647193685173988,0.08427221328020096,0.007868493907153606,0.01896429993212223,-0.031401801854372025,0.01996399648487568,0.04684409499168396,0.062111616134643555,0.035739146173000336,-0.07494586706161499,0.017683444544672966,0.019274912774562836,-0.11970683187246323,-0.06393814086914062,-0.011508491821587086,-0.005331206601113081,-0.0297720804810524,-0.03614496439695358,0.0208491962403059,-0.06389690190553665,-0.050715621560811996,0.10574150085449219,0.010422549210488796,0.06921115517616272,0.03171602636575699,-0.13193345069885254,-0.009102980606257915,0.007032712921500206,-0.01046340074390173,-0.01823391579091549,0.04061286896467209,-0.002148127881810069,0.02618185244500637,0.01537443045526743,-0.013139588758349419,0.042189642786979675,0.01780593767762184,-0.034902025014162064,0.10379733145236969,-0.04252209886908531,0.09508079290390015,0.023673156276345253,-0.041172903031110764,-0.09203878045082092,-0.005037867929786444,0.07815127819776535,0.00027217253227718174,0.012160729616880417,0.030855655670166016,0.011284708976745605,0.0025802848394960165,-0.008073457516729832,0.11238338053226471,-0.047421324998140335,-0.007696711458265781,-0.007798835635185242,0.047474149614572525,-0.028435496613383293,-0.03274816647171974,-0.03597855195403099,-0.019148075953125954,0.05085139349102974,0.002651365241035819,-0.04011448472738266,0.06186316907405853,0.042996596544981,-0.007091248407959938,-0.009709585458040237,-0.11342369765043259,-0.006938624195754528,-0.07950232177972794,0.09131372720003128,0.05886178836226463,0.05151781439781189,0.005699789151549339,0.009755216538906097,-0.0012719104997813702,0.0399727001786232,0.025020640343427658,-3.5104254322926454e-33,0.06003209576010704,-0.05916346609592438,-0.050087329000234604,0.004725467413663864,0.018329065293073654,-0.0017971993656829,-0.004956893622875214,0.05121574178338051,0.042300477623939514,-0.02615688368678093,-0.09713177382946014,-0.013548341579735279,-0.0805877149105072,-0.14295127987861633,-0.030962739139795303,-0.03789548575878143,-0.1308189183473587,-0.04225873202085495,-0.034556858241558075,0.06441357731819153,0.014668107964098454,0.01736791431903839,0.0016326716868206859,-0.003591657616198063,-0.053429048508405685,0.06595062464475632,-0.04207794740796089,0.05552508309483528,-0.0055440878495574,0.03616663068532944,0.028029782697558403,-0.047922197729349136,-0.05578091740608215,0.011392714455723763,0.032739296555519104,0.03621625527739525,-0.004792332649230957,-0.03896541893482208,0.017247594892978668,0.024464240297675133,-0.058132972568273544,-0.04772123321890831,-0.07982505857944489,-0.029037702828645706,-0.034549281001091,-0.08765022456645966,0.051590532064437866,-0.014563803561031818,-0.021214336156845093,-0.03974040970206261,0.05596952512860298,0.035131245851516724,-0.004210341721773148,-0.029482724145054817,0.06987664103507996,0.052881870418787,-0.013351064175367355,0.038908395916223526,-0.046711698174476624,-0.0021933752577751875,0.02679499238729477,0.005955882370471954,0.11703447252511978,-0.023426923900842667,-0.039612431079149246,0.028922012075781822,-0.04281708225607872,0.024782758206129074,-0.09724362194538116,0.03783475235104561,0.024824608117341995,-0.004672134295105934,0.014078415930271149,-0.05943804606795311,-0.0998237282037735,-0.0037734704092144966,0.05700791999697685,-0.011522067710757256,0.0644785612821579,-0.060836564749479294,0.05300241708755493,-0.08870182931423187,-0.0025220641400665045,0.034671634435653687,-0.008577101863920689,-0.09499289095401764,0.1254304200410843,-0.10591195523738861,-0.11466377228498459,-0.0453806146979332,-0.013638355769217014,0.014744660817086697,0.02853679656982422,-0.05658343806862831,-0.06810028851032257,7.416987662407728e-35,-0.008088499307632446,-0.034865040332078934,-0.0494571253657341,0.08684573322534561,-0.02610669657588005,0.020669611170887947,0.0020929204765707254,0.007704328279942274,-0.010937596671283245,0.005926650483161211,-0.07948378473520279,-0.005840825382620096,-0.0634637326002121,-0.006036745384335518,-0.01154441386461258,-0.04450107365846634,0.08674750477075577,0.01877691224217415,0.007279343903064728,0.026969829574227333,0.054984766989946365,-0.02340855821967125,-0.06395822018384933,-0.008524386212229729,-0.034894101321697235,0.04288890212774277,0.08510562777519226,-0.0378902368247509,-0.07681366056203842,-0.038950614631175995,0.08134401589632034,-0.008249819278717041,-0.023295091465115547,0.052944112569093704,0.014120321720838547,0.0660015195608139,0.0009390657069161534,0.023457083851099014,-0.04362137243151665,0.000015077198440849315,0.05821991339325905,0.010438982397317886,-0.009871394373476505,0.09551551938056946,-0.0022588656283915043,0.010962328873574734,-0.044255271553993225,0.09236609190702438,0.06608578562736511,0.029445501044392586,-0.07799382507801056,-0.0032273191027343273,-0.026249775663018227,0.017903296276926994,-0.0970877856016159,0.0022879745811223984,-0.061511144042015076,-0.13183030486106873,0.025600355118513107,-0.020054368302226067,-0.0791470929980278,-0.055503539741039276,-0.0031674860510975122,-0.02028578706085682,-0.005594560410827398,0.03533243387937546,-0.03315332159399986,-0.009987506084144115,0.030989134684205055,0.08461256325244904,0.08806255459785461,0.05033152177929878,-0.04203181713819504,-0.0502089262008667,-0.005764437839388847,0.027527932077646255,-0.07455798983573914,0.05418461933732033,-0.03793695569038391,-0.057148732244968414,0.033907756209373474,0.020651724189519882,-0.045713819563388824,-0.0032812729477882385,-0.010001986287534237,0.03334851935505867,0.035977043211460114,0.042169131338596344,-0.027859721332788467,-0.0387575700879097,0.021817078813910484,-0.015128741972148418,0.10591325908899307,-0.024642473086714745,-0.005335640162229538,-2.448439495594812e-8,-0.01735725812613964,0.09916108101606369,0.054764460772275925,0.019759725779294968,0.06287875771522522,0.011603099294006824,0.03818302974104881,0.01516377367079258,-0.013639324344694614,0.08049127459526062,-0.009022786282002926,0.056536417454481125,0.07147879898548126,0.06895238906145096,-0.028496146202087402,0.06525900214910507,0.05989678204059601,-0.08629730343818665,-0.03656743839383125,-0.01747225597500801,-0.056673187762498856,-0.06240653991699219,-0.038072530180215836,-0.021165257319808006,-0.030825715512037277,0.06832852959632874,-0.010269763879477978,-0.02978183515369892,-0.003909369930624962,0.04585697129368782,-0.10402599722146988,-0.06825388967990875,-0.027820764109492302,-0.07911786437034607,0.008744978345930576,0.13671468198299408,0.07382208108901978,0.014594348147511482,0.06798139214515686,-0.07217288762331009,-0.06415735930204391,0.056048132479190826,0.005866775289177895,0.03045019507408142,-0.005536648910492659,0.0063367728143930435,-0.030610818415880203,0.01847722940146923,-0.044267408549785614,-0.015942826867103577,0.04780992120504379,0.03522917628288269,-0.06456796824932098,0.1271832287311554,0.05552675202488899,0.044166065752506256,-0.005374363623559475,-0.06405855715274811,-0.04746813327074051,-0.003340879688039422,-0.05696915090084076,0.0025669638998806477,-0.11461637914180756,0.06081464886665344]},{"text":"They all cowered silently in their places, seeming to know in advance that some terrible thing was about to happen.","book":"Animal Farm","chapter":58,"embedding":[0.08426748216152191,-0.006974466145038605,0.06576379388570786,0.09870631247758865,0.08585228025913239,-0.050215184688568115,0.0015950646484270692,-0.018688732758164406,-0.0038638522382825613,-0.05321841314435005,0.05858365818858147,0.02298722416162491,0.03282480686903,-0.0849560871720314,-0.10081800818443298,-0.04764063283801079,-0.04061364009976387,-0.023088539019227028,-0.02825276367366314,0.007075692061334848,-0.01204428169876337,0.023799173533916473,0.03736100345849991,0.07054785639047623,0.0691223219037056,0.06229383125901222,-0.001310262712650001,-0.0019317951519042253,0.010673578828573227,0.041137322783470154,-0.012398810125887394,-0.010152839124202728,0.00780536700040102,-0.012131702154874802,0.025707559660077095,-0.021788522601127625,0.1554257869720459,0.009007908403873444,0.07217739522457123,-0.0809418261051178,0.02013929933309555,-0.0010517514310777187,0.06141152232885361,-0.03758722543716431,-0.08619727194309235,-0.02740457095205784,-0.049927663058042526,-0.0318027101457119,0.031463559716939926,-0.07299556583166122,0.03047160990536213,-0.0484963059425354,0.021202975884079933,-0.08927653729915619,0.023329874500632286,-0.02757393755018711,0.0030206029769033194,-0.01271966565400362,0.031072592362761497,0.0025848690420389175,0.022760648280382156,-0.07023600488901138,0.04898034408688545,0.0325654000043869,0.017411641776561737,0.07411658763885498,0.03654024004936218,0.03303031250834465,0.011727009899914265,0.04450144246220589,-0.023068100214004517,0.024566777050495148,0.018539724871516228,-0.03801815211772919,-0.08121386915445328,0.019447674974799156,0.02601088024675846,-0.01957249827682972,-0.014729696325957775,-0.0348161943256855,-0.004971622955054045,-0.012039007619023323,-0.03834033012390137,0.008893980644643307,0.0413985401391983,-0.02654443122446537,0.042779985815286636,-0.058467742055654526,-0.00006788086466258392,-0.011255009099841118,-0.08393856137990952,-0.0526752732694149,-0.08591125905513763,0.05954815819859505,0.02674773521721363,-0.0453542023897171,0.002742170123383403,0.09722016751766205,0.06297854334115982,0.06123848259449005,-0.03021817095577717,0.0527421273291111,-0.011277756653726101,-0.054746076464653015,-0.018199922516942024,-0.018992150202393532,-0.1388252228498459,-0.059240590780973434,-0.02248924970626831,-0.02051227167248726,-0.06816724687814713,-0.00003631052459240891,0.053738586604595184,0.020209353417158127,-0.00415408331900835,0.06336324661970139,-0.056933626532554626,-0.03828081488609314,-0.09768334776163101,0.04888874292373657,0.043452970683574677,0.09718312323093414,-0.02573058381676674,0.05642553046345711,0.06068046763539314,0.05860235169529915,0.009650154039263725,-2.5376950407795714e-33,0.121458999812603,-0.1077025756239891,-0.046171970665454865,0.006587538868188858,0.03363896161317825,-0.002987810643389821,-0.07405713200569153,-0.0463879220187664,0.09254330396652222,0.08859042078256607,0.04347764328122139,-0.05110655725002289,0.0585319884121418,-0.12385083734989166,-0.05401469022035599,-0.023758644238114357,-0.030976423993706703,0.03432495892047882,-0.029646670445799828,-0.010810988955199718,0.014276640489697456,0.07084836810827255,-0.013294659554958344,0.003167688148096204,0.005561464466154575,0.02845229208469391,-0.021737374365329742,0.0220891572535038,-0.006282200571149588,0.04853542149066925,-0.06167053431272507,-0.020929710939526558,0.047276172786951065,-0.035663578659296036,0.05274438485503197,-0.009072844870388508,-0.024577341973781586,-0.04615224525332451,0.0386904738843441,-0.021843481808900833,0.044894006103277206,-0.0024337044451385736,-0.061555758118629456,-0.06958828866481781,0.018463565036654472,0.08396194875240326,-0.08333877474069595,0.0022486750967800617,-0.04855328053236008,0.01385254692286253,-0.014939242973923683,0.016806993633508682,-0.030071914196014404,0.05858061835169792,0.015689579769968987,0.030225645750761032,0.05681593716144562,-0.0645875632762909,-0.02627258002758026,-0.001129153068177402,0.02713446319103241,0.07103410363197327,-0.023375896736979485,-0.0776265561580658,-0.020021064206957817,-0.03615497797727585,0.009431371465325356,0.004179512616246939,0.02507861703634262,-0.016315629705786705,-0.01065881084650755,0.0190123300999403,-0.06762002408504486,-0.03986097127199173,-0.01980709098279476,0.016369139775633812,-0.014460942707955837,-0.01748630777001381,0.018068302422761917,-0.07215840369462967,0.09589959681034088,-0.07275709509849548,-0.007372093852609396,0.0207521952688694,-0.024846533313393593,0.0048857140354812145,-0.034836750477552414,-0.009618442505598068,-0.12492186576128006,-0.0214836448431015,-0.03055943176150322,0.08031585812568665,0.021123124286532402,-0.10418438166379929,-0.11860404908657074,-1.4228629024509334e-33,0.02098947949707508,0.10641183704137802,0.00046190727152861655,0.02930312417447567,-0.03146129846572876,-0.043208200484514236,-0.04280655086040497,-0.05032893642783165,0.031737104058265686,0.004943318199366331,-0.06231669709086418,-0.011929417960345745,-0.004591183736920357,0.05109173804521561,0.005682532209903002,0.022221015766263008,0.13389171659946442,0.04647285118699074,0.043523915112018585,0.02543671242892742,0.021473051980137825,-0.008047246374189854,-0.0292645450681448,-0.017363181337714195,0.018613401800394058,0.037837449461221695,0.07233315706253052,-0.03549677133560181,-0.04757332429289818,-0.077814482152462,0.03057551570236683,0.046316180378198624,0.007676048669964075,0.04656730964779854,0.017761502414941788,0.10439585894346237,-0.0029696037527173758,0.047610167413949966,-0.03366106003522873,-0.10492546111345291,-0.010624038986861706,0.04636833444237709,-0.09207335859537125,-0.012519721873104572,-0.06807995587587357,0.039739273488521576,0.006660077720880508,0.05185570567846298,-0.0338250994682312,0.013535993173718452,-0.07597243040800095,0.058557894080877304,0.043608084321022034,0.04393132030963898,-0.029413415119051933,-0.012158127501606941,0.026371663436293602,-0.11246708035469055,0.03205704689025879,0.047619931399822235,-0.016296397894620895,0.004401287995278835,0.010727751068770885,-0.01663520373404026,-0.025917906314134598,-0.0034562728833407164,-0.04291291907429695,-0.0031100953929126263,0.06945522129535675,-0.011957122012972832,0.0685148760676384,-0.02714751660823822,-0.12459718436002731,0.019494198262691498,0.018871193751692772,0.10432159155607224,-0.12741385400295258,-0.03173031657934189,-0.054062217473983765,0.018836164847016335,-0.044710300862789154,-0.05696314573287964,0.004535387270152569,0.05063538998365402,0.05308190733194351,0.09012091904878616,0.028083501383662224,0.03877494856715202,0.020219819620251656,0.040241539478302,-0.04099300876259804,-0.07086927443742752,0.125301331281662,-0.05352985858917236,-0.04927358403801918,-2.6803377295436803e-8,-0.04108559712767601,-0.016885315999388695,-0.03753640875220299,-0.02432687021791935,0.05517834797501564,-0.04911358281970024,-0.028046613559126854,0.09471942484378815,-0.03429923579096794,0.06361936777830124,-0.06850073486566544,0.010803612880408764,-0.018774069845676422,0.0058114174753427505,0.04820672422647476,0.06855691969394684,-0.007164082955569029,-0.10449955612421036,-0.08163786679506302,-0.05748555436730385,0.0022909981198608875,-0.02779695950448513,-0.08494817465543747,-0.0745873898267746,0.05697027966380119,-0.007333935704082251,-0.05484014004468918,0.047711070626974106,-0.03770823031663895,0.017575468868017197,-0.0008997631375677884,-0.017131811007857323,-0.05203777551651001,-0.04785742610692978,0.03057786636054516,0.11741170287132263,0.042102787643671036,-0.016449488699436188,0.07516878843307495,-0.09267314523458481,-0.09039676934480667,0.0031411044765263796,0.07330645620822906,0.0452209934592247,0.0851135402917862,-0.010419018566608429,0.0186381246894598,-0.044719185680150986,-0.02744467556476593,-0.08431372046470642,-0.00441887928172946,0.05711229890584946,-0.033644117414951324,0.07912670075893402,0.05547923967242241,0.019519688561558723,-0.018245462328195572,0.029037369415163994,0.01699857972562313,-0.009825126267969608,-0.042137499898672104,0.015759294852614403,-0.06526237726211548,-0.0006292802863754332]},{"text":"Boxer saw them coming and put out his great hoof, caught a dog in mid-air, and pinned him to the ground.","book":"Animal Farm","chapter":59,"embedding":[0.041110385209321976,0.12282619625329971,-0.008675692602992058,0.07927349209785461,0.04443132132291794,0.03121000900864601,0.04795236513018608,0.02388576604425907,0.0042433724738657475,0.040723271667957306,0.09079118072986603,-0.006977969780564308,0.014974630437791348,0.057044632732868195,-0.04864491894841194,0.020584234967827797,-0.04112745821475983,0.022208724170923233,-0.05240803584456444,-0.024158425629138947,0.0006624181405641139,0.03667229413986206,0.04172080010175705,0.05760262906551361,-0.09720002114772797,-0.014116465114057064,-0.028454121202230453,-0.03714391961693764,0.0037009839434176683,-0.043217554688453674,-0.046244241297245026,-0.05246172100305557,0.050109006464481354,0.005025540944188833,-0.1277586817741394,-0.03300904110074043,0.09293554723262787,0.049036238342523575,0.03776474669575691,0.04245886206626892,-0.0044588567689061165,-0.019018495455384254,0.022105388343334198,-0.026984496042132378,0.05002455413341522,-0.00495587894693017,-0.027047807350754738,-0.03582131117582321,0.06149110570549965,0.01900492049753666,0.0002957502438221127,0.004348441027104855,0.04577914625406265,0.03910430520772934,0.031330157071352005,-0.06549154967069626,-0.04499460756778717,-0.05664180964231491,0.0546172559261322,0.0012541103642433882,0.060764070600271225,0.05725078657269478,-0.0073916008695960045,0.06559725105762482,-0.010194405913352966,-0.040206220000982285,-0.002529025310650468,0.025335730984807014,0.029318740591406822,0.09388785064220428,0.02105231210589409,-0.01663079671561718,0.010432199575006962,-0.10932759940624237,-0.03906480222940445,0.004336230922490358,-0.054568201303482056,-0.03450918570160866,0.053872596472501755,0.020170727744698524,-0.008939804509282112,-0.05087675526738167,-0.07360230386257172,0.0028153033927083015,0.0195973739027977,0.00756083382293582,0.022134507074952126,-0.012551476247608662,-0.07029574364423752,-0.06191697716712952,-0.07960712909698486,-0.12139099836349487,-0.02549942210316658,0.05769919604063034,0.018273772671818733,-0.1045892983675003,-0.03136404976248741,-0.032026857137680054,0.0185308288782835,0.03534100204706192,0.06655436009168625,0.004674735479056835,0.01562601886689663,-0.02421688847243786,0.07113529741764069,0.03125526010990143,-0.03570270538330078,0.07542186975479126,0.023295238614082336,0.05487479642033577,-0.03597738966345787,-0.013155926950275898,0.0466596744954586,0.0063025979325175285,-0.017183614894747734,0.10282561182975769,-0.0999203696846962,-0.04674001410603523,-0.08473797887563705,-0.06329315155744553,0.09427972137928009,0.05933358520269394,-0.00621463917195797,0.0019111274741590023,0.007546307519078255,-0.09041333198547363,0.018722619861364365,-1.498032460108157e-33,0.08761280030012131,-0.07326722145080566,-0.025332143530249596,-0.0492454431951046,0.01618904620409012,-0.050485290586948395,-0.02873367629945278,-0.0027775634080171585,0.029555238783359528,0.10868427902460098,-0.05386204272508621,-0.010003364644944668,0.03985246643424034,-0.014522244222462177,-0.06387054175138474,-0.0030220274347811937,-0.03875475749373436,-0.04284593090415001,0.03261345997452736,0.04124153405427933,-0.056055109947919846,0.04816184192895889,-0.04197319597005844,0.005107521545141935,0.028909239917993546,0.05946232005953789,-0.013590675778687,-0.09412487596273422,-0.005559477023780346,0.027388352900743484,0.042185645550489426,-0.031214898452162743,0.04033845290541649,0.06009296700358391,-0.11141867935657501,-0.0018567537190392613,-0.010845541022717953,-0.06772972643375397,-0.041357751935720444,0.011652483604848385,0.08442465215921402,-0.0135381780564785,0.05777532979846001,0.013816572725772858,-0.01340961828827858,0.030853405594825745,-0.10531975328922272,0.010729174129664898,-0.07080835849046707,0.06285630911588669,0.033456504344940186,0.05938343331217766,0.04307102784514427,-0.005729960277676582,0.05996207892894745,0.04286574572324753,0.0337081141769886,0.06871278584003448,-0.004346893634647131,0.0825386717915535,0.04610529541969299,0.04774175211787224,-0.03635875880718231,-0.013201347552239895,-0.05681648105382919,-0.09490910917520523,-0.05634008347988129,0.027281591668725014,-0.09939570724964142,0.05026458948850632,-0.06911540776491165,0.010283062234520912,-0.023004215210676193,-0.07565826177597046,-0.008352232165634632,-0.015702106058597565,-0.007220858708024025,-0.017146944999694824,-0.016421770676970482,-0.00988886971026659,0.09077145159244537,0.026749245822429657,-0.00756507134065032,0.05879220366477966,-0.03672003000974655,0.02196577377617359,-0.016024455428123474,-0.08524739742279053,-0.029968341812491417,0.03152267634868622,-0.0625571459531784,0.051656853407621384,0.05410221964120865,-0.04149752855300903,0.08513548970222473,-6.396721702797591e-35,0.01544789969921112,0.09681658446788788,-0.046533890068531036,0.042402155697345734,0.03675461933016777,0.013098416849970818,-0.09562244266271591,0.012803127057850361,-0.01389456819742918,-0.04368223249912262,-0.07496944814920425,-0.008076202124357224,-0.04938695207238197,0.08471046388149261,0.08337350189685822,-0.07315998524427414,-0.01262968685477972,0.02881500869989395,0.011046307161450386,0.004926643799990416,0.017703140154480934,-0.035646893084049225,0.030371617525815964,-0.0540054552257061,0.004367738496512175,0.054891012609004974,0.08252769708633423,0.027900464832782745,-0.057098500430583954,0.01190222054719925,-0.011410406790673733,-0.08951728045940399,0.0004210681945551187,0.06481623649597168,-0.047985851764678955,0.07273204624652863,0.004490204621106386,0.036378610879182816,-0.03386164456605911,-0.06419152766466141,-0.04861929267644882,0.0061152298003435135,-0.032320983707904816,0.05727609992027283,-0.03215789049863815,0.06939361989498138,-0.014342175796627998,-0.06211109086871147,0.027192359790205956,-0.017806770280003548,-0.04198874905705452,0.00493815029039979,-0.05259028822183609,-0.07531048357486725,-0.043935198336839676,-0.00770997442305088,0.006190200336277485,-0.04659336060285568,0.05387979373335838,-0.07267189770936966,-0.11417414993047714,0.05135171487927437,-0.0026676428969949484,0.04040638357400894,-0.06987159699201584,-0.01150505617260933,-0.039952654391527176,-0.0032141052652150393,-0.07898800075054169,-0.02326306328177452,-0.0334896482527256,0.07663922011852264,0.021623743698000908,0.03444048389792442,0.046757034957408905,0.06952604651451111,-0.0331307016313076,-0.010402446612715721,0.02038065530359745,0.03594706207513809,-0.01725599355995655,-0.06047697737812996,0.01806437224149704,0.06917618960142136,0.030178898945450783,0.03167111054062843,-0.02878461591899395,0.015633102506399155,-0.0420893058180809,-0.004522256553173065,0.071868397295475,0.053482189774513245,0.1282907873392105,0.0029921752866357565,0.04601395130157471,-2.322887482364422e-8,-0.07302571833133698,0.0205136239528656,-0.09467381983995438,-0.002211778424680233,-0.019874954596161842,0.1703103929758072,-0.07457932084798813,-0.029763784259557724,-0.02403964102268219,-0.02132912166416645,-0.032579559832811356,0.08434939384460449,-0.0664680078625679,0.07656282186508179,-0.004887881223112345,-0.01464889943599701,-0.06901519745588303,-0.07852783799171448,0.0057753464207053185,0.02733033336699009,-0.036431606858968735,0.016520388424396515,0.07201336324214935,0.0073173330165445805,-0.04537859931588173,-0.04665479436516762,-0.008971137925982475,-0.015145882032811642,-0.027932537719607353,0.08563054352998734,-0.04253979027271271,0.05284805968403816,-0.13331623375415802,-0.018861057236790657,0.0809834823012352,0.04469674825668335,0.016924753785133362,0.002232117811217904,0.03522872179746628,-0.013610723428428173,-0.03200215473771095,0.027232039719820023,-0.015173079445958138,-0.032411523163318634,0.10350657254457474,-0.002204393967986107,0.0463993065059185,-0.010093281045556068,-0.03481733798980713,-0.030007997527718544,-0.0150497080758214,-0.031169939786195755,0.021115776151418686,0.06380809098482132,0.027337076142430305,-0.06409420818090439,-0.006469056010246277,-0.1633361428976059,0.02397093176841736,0.05015459284186363,-0.07181719690561295,0.045727793127298355,0.021059948951005936,0.07305508852005005]},{"text":"The four pigs waited, trembling, with guilt written on every line of their countenances.","book":"Animal Farm","chapter":59,"embedding":[0.08798546344041824,0.040473874658346176,-0.007390511687844992,0.022057682275772095,-0.005638849455863237,0.061502911150455475,-0.038000475615262985,-0.03823627158999443,0.08600825071334839,0.00009609326662030071,0.07037724554538727,-0.015438759699463844,0.050487637519836426,-0.022618865594267845,-0.06538465619087219,-0.05091101676225662,-0.05525817722082138,-0.025106629356741905,-0.03831180930137634,-0.019515646621584892,-0.0013388320803642273,-0.011783989146351814,0.0632537305355072,0.009848108515143394,-0.037125054746866226,0.0020010890439152718,-0.012023761868476868,-0.05398990586400032,0.04066941887140274,-0.041073765605688095,-0.09486349672079086,-0.030991140753030777,0.07951458543539047,-0.05363444238901138,-0.004333258606493473,0.0004442852223291993,0.05448809266090393,0.02952687256038189,0.11478665471076965,0.015812542289495468,0.031836628913879395,-0.09299998730421066,-0.038596395403146744,0.010814786888659,-0.06861566752195358,0.0015573528362438083,-0.0032570178154855967,0.020218532532453537,0.03292306512594223,-0.030818894505500793,0.024628058075904846,-0.010128161869943142,-0.07443541288375854,-0.04842546582221985,-0.023556247353553772,-0.09487900882959366,0.017558628693223,-0.03564886748790741,0.038043081760406494,-0.011664258316159248,0.015885280445218086,0.05136873200535774,0.014861839823424816,0.08653486520051956,0.026438334956765175,0.102573923766613,0.07403714209794998,-0.0001363132323604077,-0.01649083010852337,0.06079520285129547,0.006842346396297216,-0.00953414011746645,0.036378879100084305,-0.005851565860211849,-0.0941382497549057,-0.05136708542704582,0.002934358548372984,-0.04474083334207535,0.0641733929514885,-0.04448256641626358,-0.06055613234639168,-0.04087810963392258,-0.01081040594726801,0.010732545517385006,-0.05882899463176727,-0.0358603298664093,0.0001407669624313712,-0.06524986028671265,-0.004640782717615366,-0.01214826013892889,0.0248725526034832,-0.07738708704710007,-0.059848982840776443,0.032537635415792465,-0.022826548665761948,0.010158170945942402,-0.06467484682798386,0.042769655585289,-0.007390343584120274,0.012949795462191105,0.041359443217515945,0.04813259094953537,0.028054678812623024,0.02000340074300766,0.07469706982374191,-0.021302074193954468,-0.007276223506778479,-0.028876889497041702,-0.06931804120540619,-0.008371145464479923,-0.050520218908786774,-0.02424449473619461,0.05436965450644493,0.07207439839839935,0.05491716042160988,0.10076349973678589,-0.04681289568543434,-0.018903661519289017,-0.008169473148882389,0.04710381105542183,0.09559561312198639,0.0971694365143776,0.029054131358861923,-0.02357224002480507,0.028639357537031174,0.01268656738102436,-0.001734978868626058,-3.28720676925317e-33,0.11270108819007874,-0.07193067669868469,-0.022317131981253624,0.02269763872027397,0.03692832216620445,0.021187910810112953,-0.09211079031229019,-0.012763084843754768,0.04797691851854324,0.08288431167602539,-0.05472581461071968,-0.10047107934951782,0.003999118227511644,-0.051068566739559174,-0.06565503776073456,-0.03560648486018181,0.02463769167661667,-0.07205215841531754,0.055958524346351624,0.009874269366264343,-0.0635683462023735,0.005024077370762825,0.012071426026523113,0.0726969838142395,-0.015585861168801785,0.013945545069873333,-0.007846343331038952,-0.0413176491856575,-0.011908224783837795,0.02504373900592327,-0.03894439712166786,-0.005773213692009449,0.010402156971395016,-0.051977626979351044,-0.042207859456539154,0.0060454681515693665,0.04184894263744354,-0.07883291691541672,0.08369677513837814,-0.02365710772573948,0.035772137343883514,-0.040529146790504456,0.04695124924182892,-0.013538160361349583,-0.018781105056405067,0.047816287726163864,-0.13452760875225067,0.005740732420235872,-0.05569778010249138,0.06882099062204361,0.02284245565533638,0.024681467562913895,0.01812216080725193,0.03784554451704025,0.0291206743568182,-0.02898980677127838,-0.023463580757379532,0.030368298292160034,-0.08481661230325699,0.07186409831047058,0.034123554825782776,0.026508351787924767,-0.06325718760490417,0.016666840761899948,0.03868233039975166,-0.011725325137376785,-0.06492596864700317,-0.06637456268072128,-0.036405451595783234,-0.023057403042912483,-0.07190640270709991,-0.05651959776878357,-0.028254615142941475,-0.06626378744840622,-0.06554844975471497,-0.022318799048662186,-0.025136519223451614,-0.03321138769388199,-0.010450616478919983,-0.08817125856876373,0.058301012963056564,0.02170538529753685,-0.0807105302810669,0.02904036082327366,0.002293264726176858,0.060562968254089355,0.09643596410751343,-0.1254655122756958,0.013604756444692612,-0.03560783341526985,0.006426902487874031,-0.0019062968203797936,0.0790284052491188,-0.0952475368976593,-0.06156555935740471,6.328041034669024e-34,0.03405862674117088,0.013444468379020691,0.011931909248232841,0.0934547558426857,0.05814819037914276,0.050764404237270355,-0.00894157588481903,-0.01734546571969986,-0.017557427287101746,0.016905466094613075,-0.01594235748052597,-0.022845689207315445,-0.009352182038128376,0.08431874960660934,0.04638542979955673,0.05510111153125763,0.06855206191539764,-0.07067964971065521,0.05743131414055824,-0.05963587388396263,-0.04099472612142563,-0.021560076624155045,-0.0021208692342042923,0.01809884048998356,0.08709495514631271,0.019019650295376778,0.029992353171110153,-0.06661492586135864,-0.02250787429511547,0.01591760851442814,0.004274880513548851,0.0005409711156971753,0.04806813225150108,0.08784539997577667,0.017448144033551216,0.0037451672833412886,0.12741254270076752,0.05972797051072121,-0.08800917863845825,-0.031453922390937805,0.03451495245099068,-0.026045646518468857,-0.07188083976507187,-0.020183449611067772,-0.03923873230814934,0.09177524596452713,-0.01946314238011837,0.06223622336983681,-0.0575425960123539,0.08887166529893875,-0.0038941840175539255,-0.011185256764292717,0.025404801592230797,0.00447832653298974,-0.02683105692267418,-0.01492547057569027,-0.03858254849910736,-0.0951925590634346,0.03532307222485542,-0.0239602979272604,-0.07203751802444458,-0.012392419390380383,0.04210524633526802,-0.01676177978515625,0.0902647152543068,-0.02522033080458641,-0.0029671238735318184,-0.030326204374432564,0.0413554348051548,0.0027788453735411167,0.04384162649512291,-0.042183514684438705,-0.10645076632499695,-0.011500347405672073,0.06655989587306976,0.059863101691007614,-0.09115665405988693,-0.10123755782842636,-0.0690288320183754,-0.05270068719983101,-0.02825724333524704,-0.025548478588461876,0.0438782274723053,0.09847474098205566,-0.06506308913230896,-0.0005139678250998259,0.1455729603767395,0.13456881046295166,0.018422352150082588,0.06638731807470322,0.045779112726449966,-0.02727746218442917,0.09873075038194656,0.016980120912194252,0.03619103506207466,-2.0125575872498302e-8,-0.07364679872989655,0.026016967371106148,-0.005911847576498985,0.013703979551792145,0.09520318359136581,0.03695430979132652,0.03905288502573967,-0.07542258501052856,-0.04165724664926529,0.02834838442504406,-0.04392894729971886,0.05183939263224602,0.00643412908539176,0.003379636211320758,0.0019422501791268587,0.06356331706047058,0.009654448367655277,-0.06155163049697876,-0.012554651126265526,-0.009036194533109665,-0.00021836046653334051,0.02169172465801239,-0.07645996659994125,-0.04540342092514038,0.0028884937055408955,0.0741417184472084,-0.0326327383518219,-0.0036683634389191866,-0.060426533222198486,0.026194192469120026,0.022651487961411476,-0.030307620763778687,0.0031190402805805206,-0.1201186552643776,-0.05534182861447334,0.0132552245631814,-0.02966511994600296,-0.012272556312382221,0.11169492453336716,0.0027796525973826647,0.00043185282265767455,0.02985224314033985,0.02919848822057247,0.00370364123955369,0.03023308701813221,-0.061556655913591385,-0.06652507185935974,0.034320730715990067,-0.008145865984261036,-0.003913509659469128,-0.12197541445493698,0.08656281977891922,0.03778066486120224,0.07080720365047455,0.026819953694939613,-0.06592468917369843,0.03358146548271179,0.019488051533699036,0.006030591670423746,0.0014170417562127113,0.059701040387153625,0.005004337057471275,-0.018109077587723732,-0.1296686828136444]},{"text":"When they had finished their confession, the dogs promptly tore their throats out, and in a terrible voice Napoleon demanded whether any other animal had anything to confess.","book":"Animal Farm","chapter":59,"embedding":[-0.07623862475156784,0.10850757360458374,0.07678569853305817,0.034589555114507675,0.02923230640590191,0.03578335791826248,-0.014744958840310574,-0.011488916352391243,0.02403644099831581,-0.04409937188029289,0.019423585385084152,-0.02005443535745144,0.045709677040576935,-0.017571181058883667,-0.06437590718269348,-0.06692874431610107,-0.058815062046051025,0.02972600981593132,0.007788626477122307,0.0013693682849407196,0.016301710158586502,0.03823889419436455,0.1053357720375061,0.01512928120791912,-0.04146887734532356,0.02619459666311741,-0.015342099592089653,-0.1287510097026825,-0.01581975445151329,0.0010519594652578235,-0.0461646132171154,-0.04747304692864418,0.03369642049074173,0.017234936356544495,-0.05623307451605797,-0.027621615678071976,0.05184660851955414,0.021496275439858437,0.08488623797893524,0.046172596514225006,0.0028877449221909046,0.019523773342370987,-0.06344649940729141,-0.0033403842244297266,-0.060279425233602524,-0.01670745015144348,-0.10928986966609955,-0.010158032178878784,0.062221772968769073,-0.021098824217915535,-0.03141811862587929,0.008735126815736294,-0.031681280583143234,-0.035149186849594116,-0.11020961403846741,-0.10321765393018723,0.003663206472992897,0.037815384566783905,0.043409258127212524,0.10534771531820297,0.048180703073740005,0.04133562371134758,0.06783801317214966,0.0624520480632782,0.05373120680451393,0.004337550140917301,-0.008202305063605309,0.04609090834856033,-0.014046577736735344,0.1271055042743683,-0.02009904570877552,-0.04120747372508049,0.04489078000187874,-0.13723081350326538,-0.16120675206184387,-0.05073153227567673,-0.025570474565029144,-0.06012624874711037,0.03535624220967293,-0.004614647477865219,-0.06317614018917084,-0.0890001431107521,-0.02723757177591324,0.02271713875234127,0.018113674595952034,-0.08579821139574051,0.11370150744915009,-0.0691949799656868,-0.025054004043340683,0.027247987687587738,-0.019768141210079193,-0.14253175258636475,-0.005705519113689661,0.07222849875688553,0.04853631928563118,-0.030483420938253403,-0.08166803419589996,0.02906874008476734,-0.025516582652926445,0.03045974299311638,-0.044958047568798065,0.011115727946162224,-0.03241134434938431,-0.11381401121616364,0.033749744296073914,0.018921324983239174,-0.0705876350402832,-0.06275179982185364,-0.010426338762044907,0.0032497786451131105,-0.03084755502641201,0.0018855184316635132,0.046818915754556656,0.03833625465631485,0.10514318197965622,0.11568962782621384,-0.0353466272354126,-0.11059531569480896,-0.0720999613404274,0.05193592980504036,0.08413127809762955,0.026328468695282936,-0.022201847285032272,0.037943035364151,0.005613388959318399,0.009610484354197979,-0.025412745773792267,-1.8076548252143667e-33,0.09674294292926788,-0.048885539174079895,-0.047364894300699234,-0.0613834522664547,-0.016881337389349937,0.07722282409667969,-0.0752347782254219,0.014787448570132256,0.03710562735795975,0.04752064123749733,-0.016435550525784492,-0.04565819352865219,-0.056768253445625305,-0.07427530735731125,-0.07902918756008148,0.01700679399073124,-0.010144000872969627,0.057933494448661804,0.05948108062148094,-0.0019625879358500242,0.019941091537475586,0.09640497714281082,0.056636255234479904,0.02952580340206623,0.003352712607011199,0.01224418357014656,-0.05516690015792847,-0.05128966271877289,-0.020402127876877785,0.026936104521155357,-0.029742101207375526,-0.067189522087574,0.021865101531147957,0.08262351900339127,-0.01997612975537777,-0.012522212229669094,-0.006465913727879524,-0.06731674075126648,0.03740723058581352,0.061195533722639084,0.06451606750488281,-0.004028548486530781,0.022417616099119186,-0.002495321212336421,-0.05785413086414337,-0.018938012421131134,-0.11246596276760101,-0.005121542606502771,0.02528276853263378,0.06639330089092255,0.03185082599520683,0.03183600306510925,0.06188381090760231,-0.05504963546991348,0.012635316699743271,0.08488709479570389,0.04674778878688812,0.05987660214304924,0.010966727510094643,0.026798566803336143,0.05149342119693756,-0.009731629863381386,0.030301380902528763,-0.08461125940084457,0.05491703748703003,-0.0848337709903717,-0.04716155305504799,0.04564252123236656,-0.026249751448631287,-0.10342669486999512,-0.10063807666301727,-0.034971289336681366,-0.0016110590659081936,-0.050976209342479706,0.024986546486616135,-0.015019371174275875,0.0692712664604187,0.0025938304606825113,0.009303508326411247,-0.05949513241648674,0.038656897842884064,-0.028727762401103973,-0.03758647292852402,0.06930949538946152,-0.0010770030785351992,0.0740729421377182,0.04246583208441734,-0.06273303925991058,0.025360334664583206,0.03859104961156845,-0.04316512495279312,-0.016022775322198868,0.006430524401366711,-0.09690098464488983,0.031324513256549835,-2.161372095636332e-33,0.04771972447633743,0.0135244932025671,-0.0216103196144104,0.0657004788517952,-0.02125004678964615,0.009600614197552204,-0.05570242553949356,0.08966707438230515,-0.018195388838648796,0.01007495354861021,-0.0646759495139122,-0.03067973628640175,0.05821172893047333,0.007840070873498917,0.009747358970344067,-0.027978019788861275,0.06387512385845184,-0.005077076144516468,-0.013130885548889637,-0.05888386815786362,-0.057534538209438324,-0.017619339749217033,0.013607342727482319,0.027295563369989395,-0.005488178227096796,0.06966327875852585,0.016578368842601776,-0.047389402985572815,0.01617983728647232,-0.052817270159721375,0.0311146080493927,0.03868959844112396,-0.025492709130048752,0.030726226046681404,0.06222186237573624,0.022233789786696434,-0.003482149913907051,0.0378057099878788,-0.03332601487636566,-0.04085009545087814,0.006281981244683266,-0.07814084738492966,-0.03974030166864395,0.0174799095839262,0.02671893499791622,-0.03355415537953377,0.038579121232032776,-0.017953794449567795,0.006493819411844015,0.02922424115240574,-0.02064736746251583,0.0021880685817450285,-0.004375954158604145,-0.048632554709911346,-0.06375142186880112,-0.042245104908943176,-0.05245145037770271,-0.07616528868675232,0.033394984900951385,-0.045693397521972656,-0.03371766582131386,0.02468043565750122,0.019632328301668167,-0.013213114812970161,-0.05034347251057625,-0.029806112870573997,-0.08463709056377411,0.014791766181588173,0.055255308747291565,0.0010103932581841946,0.019469760358333588,-0.026211030781269073,-0.0354810506105423,0.017550531774759293,0.04421531409025192,0.09164844453334808,-0.07878033071756363,-0.10952793806791306,0.0032346441876143217,-0.01657104305922985,-0.015316876582801342,-0.041942495852708817,0.0018192972056567669,0.07278094440698624,0.04752767086029053,-0.03625969961285591,-0.002356219105422497,0.0631476491689682,0.04170539230108261,0.020332608371973038,0.023653510957956314,-0.03573043644428253,0.0907217487692833,-0.011198355816304684,0.043918877840042114,-2.748620353543174e-8,-0.03716152161359787,0.06288892775774002,-0.004103513900190592,0.03763386607170105,0.07721880078315735,-0.0690276250243187,-0.0708964616060257,0.0032336057629436255,-0.03147420287132263,0.00897615123540163,-0.0002721385098993778,0.033014457672834396,-0.031733814626932144,0.014527353458106518,-0.018152233213186264,0.05541083589196205,0.01933928020298481,-0.05857657268643379,0.026179086416959763,0.030302200466394424,-0.1034867987036705,-0.031865183264017105,0.02083033137023449,-0.06900779902935028,-0.018245389685034752,-0.011303695850074291,-0.03703128173947334,-0.019084131345152855,-0.08273991197347641,0.05295143648982048,0.03225569799542427,0.0016574251931160688,-0.05009804666042328,-0.010466041974723339,0.02108042873442173,0.07573890686035156,0.05735710263252258,-0.0768444836139679,0.10324432700872421,-0.0976715013384819,0.03880755603313446,0.05650797113776207,0.05512778460979462,0.02645481936633587,0.03501862660050392,0.03790557384490967,0.05787483975291252,0.01901288516819477,0.02192210778594017,0.00920639093965292,-0.11462225019931793,0.0663406029343605,-0.07437808811664581,0.04491443932056427,0.036867156624794006,-0.0004463675431907177,0.01477848831564188,-0.032292310148477554,0.013487778604030609,-0.007375059183686972,-0.012991053983569145,0.07901009172201157,-0.01069033145904541,-0.07357662916183472]},{"text":"And so the tale of confessions and executions went on, until there was a pile of corpses lying before Napoleon's feet and the air was heavy with the smell of blood, which had been unknown there since the expulsion of Jones.","book":"Animal Farm","chapter":59,"embedding":[-0.06872798502445221,0.0901663526892662,0.00548106525093317,0.06606605648994446,0.10276008397340775,-0.0009642097866162658,-0.015670035034418106,-0.010898659937083721,-0.04746290668845177,-0.025940513238310814,0.013943338766694069,0.05666698142886162,0.045795489102602005,0.00449724355712533,-0.07150811702013016,-0.04199369624257088,0.01472195703536272,0.0036411916371434927,0.018509622663259506,0.03601536154747009,0.0655989795923233,0.06930436193943024,0.15138469636440277,-0.030665289610624313,0.004893594421446323,-0.021679362282156944,0.043512579053640366,-0.05196918919682503,-0.018103301525115967,-0.027878692373633385,0.049492888152599335,-0.024821771308779716,-0.012038934975862503,-0.06849076598882675,0.0048437644727528095,-0.06463009864091873,0.12192696332931519,-0.000011063343663408887,0.00887259840965271,0.05620323494076729,-0.00560332415625453,-0.011882612481713295,-0.040102455765008926,0.05623074993491173,-0.045510679483413696,-0.005168265663087368,-0.02701486647129059,0.007397138979285955,-0.0014810203574597836,0.002374709816649556,0.03566170856356621,0.058580182492733,-0.06710772961378098,-0.041180532425642014,-0.07919536530971527,-0.12133762985467911,-0.02777252346277237,-0.03532138094305992,-0.038412030786275864,-0.03145667165517807,-0.0038134553469717503,0.04806418716907501,0.02768377959728241,0.03344987332820892,0.0221013892441988,-0.043429240584373474,0.02018214389681816,-0.024045594036579132,0.05002518370747566,0.03554524481296539,-0.03763791546225548,-0.007722426671534777,0.013646806590259075,-0.15636740624904633,-0.1413583755493164,0.030390610918402672,0.008809405378997326,-0.05239742621779442,-0.08047974109649658,-0.096001036465168,0.02025189995765686,-0.055730853229761124,-0.008698401041328907,0.04033566266298294,-0.0032559779938310385,-0.0032806992530822754,0.06384805589914322,-0.08755616098642349,-0.07501556724309921,0.017769234254956245,0.03149945288896561,-0.1291867047548294,-0.030786307528614998,0.08369692414999008,0.04404676333069801,-0.025630304589867592,-0.038443274796009064,0.11986982822418213,0.004730572458356619,-0.006942457519471645,-0.07211080938577652,-0.012465711683034897,-0.03658206760883331,-0.005743686575442553,0.02966606803238392,-0.016528720036149025,-0.052440449595451355,-0.06302628666162491,-0.04983499273657799,-0.06658075749874115,-0.000954264949541539,-0.025313004851341248,0.039147719740867615,0.032438065856695175,0.1049610823392868,0.06350921094417572,0.00989441480487585,-0.1017228215932846,-0.12265150994062424,0.10672661662101746,0.05701979994773865,0.018839282914996147,-0.04341881722211838,0.003256414318457246,0.004101411439478397,0.003619719296693802,0.016784099861979485,-3.860257693885143e-33,0.00869996938854456,-0.024849088862538338,0.005393777508288622,-0.05387869477272034,-0.011541103944182396,0.039584822952747345,-0.08210911601781845,0.02512531168758869,0.026595553383231163,0.13489149510860443,-0.075059674680233,-0.042782872915267944,-0.08318543434143066,-0.01362795289605856,-0.09827631711959839,0.00995707418769598,-0.0450090728700161,0.06658170372247696,0.033947594463825226,-0.06103761866688728,-0.0453050322830677,0.04471443220973015,-0.04279658943414688,0.017350243404507637,-0.045417629182338715,0.0779942199587822,-0.023653998970985413,0.05199919641017914,-0.04431990906596184,0.006097942125052214,0.011261893436312675,0.004241363611072302,0.031122351065278053,0.03276064991950989,-0.008632403798401356,0.013721833005547523,0.032954778522253036,-0.05152379348874092,0.0027957295533269644,0.04652264714241028,0.03060430847108364,0.05886080488562584,-0.04875193536281586,-0.011440555565059185,-0.012248959392309189,0.027033228427171707,-0.07183951884508133,-0.030070118606090546,0.09729459881782532,0.029760489240288734,0.02636701427400112,-0.0038877204060554504,0.05814085900783539,0.01429150439798832,0.015787364915013313,0.07976535707712173,-0.02302638627588749,0.020149236544966698,0.07332448661327362,0.0040400889702141285,0.041073016822338104,0.0750156119465828,0.0021073201205581427,0.0058257924392819405,-0.042090315371751785,-0.00805574469268322,-0.0009595427545718849,-0.0232726838439703,-0.03855861723423004,-0.031803764402866364,-0.0998220145702362,0.03404483199119568,0.02157110720872879,-0.024570293724536896,0.0037597035989165306,0.013600015081465244,0.005424728151410818,-0.018568456172943115,-0.03635743632912636,-0.038068369030952454,0.04585934430360794,-0.061023350805044174,0.03286665678024292,-0.01709047332406044,0.03816038742661476,0.034066230058670044,0.04237532243132591,-0.026894282549619675,-0.06584487855434418,0.048984840512275696,-0.033391695469617844,0.011601308360695839,0.00015757301298435777,-0.12277868390083313,0.034059226512908936,-4.0439049008076206e-34,0.05764663964509964,-0.018057454377412796,-0.02026166394352913,0.04396785795688629,0.010148974135518074,-0.023823559284210205,-0.07268233597278595,0.0675472617149353,-0.04298228397965431,-0.021888185292482376,-0.03776119649410248,-0.023927921429276466,0.042970381677150726,0.05184934660792351,0.06048988178372383,-0.005149990785866976,0.02280459925532341,-0.005055013578385115,-0.03360852971673012,0.1027245745062828,-0.0844600647687912,-0.043714143335819244,-0.054542429745197296,-0.0764104500412941,-0.028454484418034554,0.07359810173511505,0.0206136554479599,-0.040357671678066254,-0.07972599565982819,-0.006324164103716612,-0.032424069941043854,0.045876502990722656,0.00026538840029388666,0.03182792663574219,0.0070691099390387535,-0.013428882695734501,0.05235693231225014,0.05023731291294098,0.025270454585552216,-0.057791732251644135,-0.03069019876420498,-0.08112715929746628,0.032806213945150375,0.023875610902905464,0.02912215143442154,-0.001996510662138462,-0.05703948438167572,0.01029997505247593,0.04631933569908142,0.007263835519552231,-0.032129399478435516,0.06261414289474487,-0.03136100247502327,0.015670334920287132,-0.0016796098789200187,0.02882377803325653,-0.06031661108136177,-0.11055635660886765,-0.008893301710486412,0.043678995221853256,0.0027043090667575598,-0.03621664270758629,-0.024929314851760864,-0.08797178417444229,0.012146977707743645,0.04604857787489891,-0.03303271159529686,0.042418014258146286,0.01069690939038992,0.062442097812891006,-0.0456010065972805,-0.09202206134796143,-0.07455243915319443,0.05212714523077011,0.019741272553801537,0.03992597386240959,-0.08641663938760757,-0.015218746848404408,-0.024868149310350418,0.02775420993566513,-0.0836174413561821,-0.1018621176481247,0.011267513036727905,0.0007907805265858769,0.06091167405247688,0.040586311370134354,-0.04565787315368652,-0.012809231877326965,0.022008337080478668,-0.04306748881936073,-0.03872761130332947,-0.06787679344415665,0.043108537793159485,-0.060950327664613724,0.013540972955524921,-3.071739484994396e-8,-0.04412926733493805,-0.01316746510565281,0.10508695244789124,0.04529925435781479,0.01212319079786539,-0.00636088103055954,0.013039895333349705,0.04104961082339287,-0.005459619220346212,0.07875367254018784,-0.032098814845085144,0.11670171469449997,0.008669211529195309,0.010815585032105446,0.04254678264260292,0.034660227596759796,-0.06221569702029228,-0.14461569488048553,-0.020099712535738945,-0.02948603592813015,-0.04592049494385719,-0.0028035531286150217,0.032069072127342224,-0.05819229036569595,0.06671121716499329,0.030401155352592468,-0.029634304344654083,-0.03827832639217377,-0.003516398137435317,0.0783008262515068,0.04371793568134308,-0.03237973526120186,-0.05561724677681923,-0.017566902562975883,-0.021448111161589622,-0.002434947993606329,0.12074646353721619,0.0033135192934423685,0.02779497392475605,-0.14377200603485107,0.04134798422455788,-0.016071083024144173,0.025186818093061447,0.006537170149385929,0.12917548418045044,0.020679621025919914,0.07588494569063187,0.007159316446632147,-0.021915964782238007,-0.004297337494790554,0.0159778855741024,0.07257235050201416,-0.006653801538050175,0.0883164182305336,0.11601653695106506,-0.0424744188785553,-0.014074085280299187,0.052432071417570114,-0.023508289828896523,-0.021412525326013565,0.026882853358983994,0.05535830557346344,0.028589919209480286,-0.061358530074357986]},{"text":"Since Jones had left the farm, until today, no animal had killed another animal.","book":"Animal Farm","chapter":60,"embedding":[0.05471612513065338,0.02916102111339569,0.015013768337666988,0.06599391251802444,0.09456531703472137,-0.04899584501981735,-0.0340665839612484,-0.04315781220793724,-0.04235664755105972,0.037084441632032394,0.030768798664212227,0.03698445484042168,-0.014698347076773643,0.01821538805961609,-0.029829874634742737,0.04605093225836754,-0.04486076906323433,-0.026257891207933426,-0.025412527844309807,-0.026151446625590324,-0.06541849672794342,0.02443692460656166,0.03696087375283241,-0.003394815605133772,-0.041146572679281235,-0.018739324063062668,-0.047121819108724594,0.06197282299399376,0.0021516024135053158,-0.0007145048002712429,-0.0702744796872139,-0.007782179396599531,0.0016513491282239556,0.00809470470994711,-0.022068040445446968,-0.019516240805387497,0.09143784642219543,-0.030366644263267517,0.07825394719839096,0.018458670005202293,0.026651481166481972,0.0005150476936250925,-0.00530823552981019,-0.021782131865620613,-0.07201684266328812,0.01678178645670414,-0.1257697492837906,-0.060296811163425446,0.042366061359643936,-0.05473824590444565,-0.01646992564201355,0.010382287204265594,-0.08626554161310196,0.016919441521167755,-0.04155674949288368,-0.06791757792234421,-0.01849241554737091,-0.03634732589125633,-0.023145845159888268,-0.06270961463451385,0.04673435911536217,0.04014212638139725,0.04545234888792038,0.07203881442546844,0.013245654292404652,-0.032402753829956055,-0.0723365917801857,-0.06345625221729279,0.010558389127254486,-0.01127617433667183,0.04664047434926033,-0.06580092012882233,-0.006543510593473911,-0.09277109056711197,-0.07366123795509338,0.11047109216451645,0.07474987953901291,0.022981133311986923,0.09058830887079239,-0.0687742605805397,-0.07550625503063202,-0.017842885106801987,0.012685430236160755,0.025074025616049767,0.017296254634857178,0.05544385686516762,-0.0005441264365799725,-0.0165981724858284,-0.046053770929574966,-0.01464535016566515,-0.0014070490142330527,-0.07161860167980194,0.032588474452495575,0.032180819660425186,0.07233211398124695,-0.024827688932418823,-0.011700451374053955,0.06326673179864883,-0.046383846551179886,0.015594864264130592,-0.09121139347553253,-0.01239056047052145,0.020710844546556473,-0.08722765743732452,0.08741486817598343,0.027199655771255493,-0.1005140095949173,0.034926582127809525,-0.016573090106248856,0.011826715432107449,-0.05355473607778549,0.06298235058784485,-0.012897373177111149,0.1314874291419983,0.07076474279165268,0.045199282467365265,-0.014263334684073925,-0.03768514469265938,-0.10304857045412064,0.024521654471755028,0.06713578850030899,0.00691896490752697,-0.04354582726955414,0.020002085715532303,-0.044773880392313004,0.04933406040072441,0.055320776998996735,-1.8712262943908052e-33,0.06033780425786972,-0.11983772367238998,-0.0013307457556948066,-0.14102086424827576,0.05854776129126549,0.0318312793970108,-0.07273489981889725,0.06684664636850357,0.08100739121437073,0.023441996425390244,-0.038308024406433105,-0.09678912162780762,0.03617751598358154,-0.06613931804895401,-0.030012888833880424,0.003339066868647933,0.0594957061111927,-0.01934364065527916,0.10888488590717316,-0.04546528682112694,-0.0015663447557017207,0.05644995719194412,-0.11063119024038315,0.0602874718606472,0.0027436097152531147,0.05712753161787987,-0.03181854635477066,-0.01755046658217907,-0.0660887286067009,0.0004415094736032188,-0.0358293242752552,-0.07670503854751587,0.022456571459770203,0.04279394447803497,-0.004293926525861025,-0.014441976323723793,-0.009437717497348785,-0.09366953372955322,-0.03646158054471016,-0.006721304263919592,0.004154404159635305,0.035790953785181046,0.0014991055941209197,-0.10882219672203064,-0.0456915944814682,-0.05015089735388756,-0.012976709753274918,-0.0002675505238585174,-0.035472653806209564,0.025494815781712532,0.03192160278558731,-0.00837857648730278,0.056197527796030045,-0.015545450150966644,-0.02521691657602787,0.039995431900024414,0.018620287999510765,0.02414252981543541,-0.0022781507577747107,0.030384358018636703,0.03651665896177292,0.002494657877832651,-0.005926376208662987,-0.004499863833189011,0.01532217301428318,-0.050469398498535156,-0.005173154640942812,-0.025695640593767166,-0.058028772473335266,0.08220607042312622,0.006457414478063583,0.0168031994253397,-0.05170806869864464,-0.12920628488063812,-0.013552691787481308,-0.08265858143568039,0.04107493907213211,-0.010098366998136044,0.004646451212465763,0.0007923626690171659,0.07641781121492386,0.07259885221719742,-0.03378574922680855,0.0030851790215820074,0.030343294143676758,0.06889282912015915,0.02329958602786064,0.028163939714431763,0.036567773669958115,-0.04941593110561371,0.04284181818366051,0.051037319004535675,-0.13638702034950256,-0.09496481716632843,0.08502758294343948,-5.01330547498325e-35,-0.05605314299464226,0.03676263988018036,-0.03113935887813568,0.04447335749864578,-0.03593755140900612,-0.043500497937202454,0.009325878694653511,-0.005040893796831369,0.024577144533395767,-0.06927557289600372,0.0664527490735054,-0.02555561065673828,-0.012750960886478424,0.06110353022813797,0.03787817433476448,-0.03603200986981392,-0.057702310383319855,-0.039550282061100006,0.014011746272444725,0.0509834848344326,-0.06864963471889496,-0.013200567103922367,-0.051677677780389786,-0.029196742922067642,0.046937547624111176,0.051370520144701004,-0.10718046128749847,0.02851923555135727,-0.04935299605131149,-0.10241862386465073,0.03366352617740631,-0.06398967653512955,0.059345703572034836,0.005290194880217314,0.049598805606365204,-0.01165916956961155,0.04827722907066345,0.023497547954320908,0.005584446247667074,-0.06350204348564148,0.06873609125614166,0.005756269209086895,-0.008935988880693913,0.09685046225786209,-0.006651053670793772,0.06445378810167313,0.020686635747551918,0.03608336299657822,0.005857443902641535,0.06253449618816376,-0.021994387730956078,-0.0043095871806144714,0.024492083117365837,-0.04916008934378624,0.019824644550681114,0.04004354774951935,0.059825632721185684,-0.04765386879444122,0.004838954657316208,-0.055277131497859955,-0.010896041058003902,-0.007788519375026226,-0.0004669777408707887,0.07313739508390427,-0.01766698621213436,0.04951127618551254,-0.03805631399154663,0.04345657303929329,-0.0253396388143301,-0.11686345934867859,0.044527340680360794,0.12631173431873322,-0.06485944241285324,-0.01893417350947857,-0.0842270478606224,0.08363094180822372,-0.051042068749666214,-0.019611641764640808,0.011139770038425922,0.011152307502925396,-0.0166642926633358,-0.057794928550720215,0.0032512852922081947,0.046484511345624924,0.038260240107774734,0.04153463616967201,-0.024258069694042206,0.04352264851331711,0.04794614762067795,-0.04450156167149544,-0.03038722649216652,-0.03307972848415375,0.08429107815027237,0.058263979852199554,-0.03557482734322548,-2.0554670854266988e-8,0.003052719868719578,0.03879314661026001,0.003448478179052472,0.021057981997728348,0.09129636734724045,0.011012480594217777,0.05163472145795822,-0.06862753629684448,0.0065732961520552635,0.13591665029525757,0.02466268464922905,0.06443868577480316,-0.056530509144067764,0.027085572481155396,0.007755080703645945,-0.06229495629668236,0.037569135427474976,-0.13160988688468933,0.02895616553723812,0.05716996267437935,-0.15251904726028442,-0.011909657157957554,-0.06511947512626648,-0.03506113588809967,0.08258076757192612,0.01424552220851183,-0.01380769070237875,-0.014736119657754898,0.06605078279972076,-0.01313641108572483,0.027302328497171402,-0.007238481193780899,-0.023994510993361473,0.01533128134906292,0.008368992246687412,-0.030222337692975998,0.048984065651893616,0.05624999850988388,0.03917849436402321,-0.062058866024017334,0.011716497130692005,0.12632787227630615,0.018715327605605125,-0.013508172705769539,0.10977586358785629,0.03516966477036476,0.01903163082897663,-0.05467604473233223,-0.018863720819354057,-0.06426610797643661,0.005934526678174734,0.017119525000452995,0.03300683572888374,0.00012998994498047978,0.027952080592513084,-0.05045993626117706,0.021485326811671257,-0.011811530217528343,0.008856038562953472,-0.01735399104654789,0.0247928649187088,-0.002214552601799369,0.02120269276201725,0.042835552245378494]},{"text":"He fidgeted to and fro, swishing his long black tail against his sides and occasionally uttering a little whinny of surprise.","book":"Animal Farm","chapter":60,"embedding":[0.060631152242422104,0.05077551677823067,0.053520772606134415,0.05469253659248352,0.030386140570044518,-0.004483828321099281,0.1423909068107605,0.04232615977525711,-0.05228285491466522,-0.05242141708731651,-0.002858426421880722,-0.043229956179857254,0.01984892413020134,0.01950886845588684,-0.014189180918037891,-0.010004222393035889,0.03779701888561249,0.053131382912397385,-0.05595352128148079,0.01933238096535206,0.08960690349340439,0.039597511291503906,0.06819421797990799,-0.025899557396769524,-0.10278327018022537,-0.04756513983011246,0.05529937520623207,-0.007250532507896423,0.04532476142048836,-0.02855107933282852,-0.05719770863652229,0.048152338713407516,-0.05699429661035538,-0.05939146503806114,-0.11364787817001343,-0.017942139878869057,0.039394646883010864,0.04044142737984657,0.053992100059986115,-0.018001271411776543,-0.00036585150519385934,0.002382851205766201,0.00030657550087198615,0.0312977097928524,-0.05807170271873474,-0.04955423250794411,0.028130188584327698,0.016898801550269127,0.06065282225608826,0.04166623577475548,0.013004799373447895,-0.05037146434187889,0.05050039291381836,-0.02718198113143444,-0.03695574775338173,0.004987175110727549,0.02220398373901844,0.03299729526042938,0.018962491303682327,-0.0012433521915227175,0.00523347407579422,-0.009575034491717815,0.12478018552064896,0.009594988077878952,0.0014681067550554872,-0.04355194792151451,-0.0032490480225533247,0.009062238968908787,-0.02694491110742092,0.12328996509313583,0.04983292892575264,-0.021724609658122063,0.027528448030352592,-0.023502759635448456,-0.004250878933817148,-0.02493293210864067,0.00958632305264473,0.008740912191569805,0.040931470692157745,0.014070548117160797,-0.02889307774603367,0.03557579964399338,0.018055103719234467,0.01627747341990471,-0.004139553289860487,-0.05981576442718506,0.016875196248292923,-0.035296909511089325,-0.0923745259642601,0.02150029130280018,-0.03648987412452698,-0.06511111557483673,-0.040348898619413376,-0.046995341777801514,0.005615975242108107,-0.03683718666434288,-0.02647162787616253,-0.03489742800593376,-0.07383059710264206,0.06598137319087982,0.005550787318497896,0.009131812490522861,0.0702284574508667,0.060873545706272125,-0.04180252179503441,-0.0047843013890087605,-0.08133564889431,0.05284437909722328,-0.04154572635889053,0.011104727163910866,-0.06555728614330292,-0.07250843942165375,-0.04721144214272499,-0.025919921696186066,0.08496430516242981,0.02060379832983017,-0.13820424675941467,0.010465906001627445,-0.09066364914178848,0.03457455709576607,0.14239563047885895,0.11621589213609695,-0.06288646161556244,0.06077902019023895,0.015331925824284554,0.008728842251002789,-0.006347697228193283,1.9648020732009904e-33,0.11182952672243118,-0.007913113571703434,-0.048287905752658844,-0.010542635805904865,0.09442263841629028,0.0427117645740509,-0.02535584196448326,-0.0020421412773430347,0.004180812742561102,0.07993782311677933,0.03143883869051933,0.0723232701420784,0.05622761696577072,-0.0650671198964119,-0.07577047497034073,-0.04165942594408989,-0.09465118497610092,0.051117923110723495,0.026534661650657654,-0.016228724271059036,0.01705331727862358,0.01743575930595398,0.041798342019319534,-0.07458899170160294,-0.003502827137708664,-0.019197873771190643,-0.041278012096881866,0.00015073166287038475,0.020185545086860657,0.0375850573182106,-0.03248443454504013,0.005153685342520475,0.004504375625401735,-0.04188438504934311,-0.008385119028389454,-0.045501451939344406,-0.08381979167461395,-0.06680773943662643,-0.06374137103557587,0.028217889368534088,0.0812515988945961,-0.016479983925819397,-0.06182815879583359,-0.017422232776880264,-0.09300301969051361,0.028352342545986176,-0.08096610009670258,0.04111567512154579,-0.02490088902413845,-0.05759765952825546,0.1283968985080719,-0.006718283519148827,0.08728724718093872,-0.014228956773877144,0.016272712498903275,0.007897614501416683,0.02737642265856266,-0.06305982172489166,0.025130359455943108,0.038055285811424255,0.007023220881819725,-0.022535625845193863,0.011525051668286324,-0.11237077414989471,-0.09893724322319031,-0.11590702086687088,-0.08724953979253769,0.06383770704269409,-0.054121289402246475,-0.03910403698682785,-0.027511050924658775,-0.012654699385166168,-0.03732192516326904,-0.06424955278635025,-0.08738896250724792,-0.04162421450018883,-0.004426357802003622,-0.028061281889677048,-0.016005970537662506,-0.03669267147779465,0.0870530903339386,-0.028633030131459236,-0.017202893272042274,0.001743278349749744,-0.0872904509305954,-0.011293580755591393,-0.02183212712407112,-0.09580536931753159,-0.05449528247117996,0.07646729797124863,0.0030112750828266144,-0.008497602306306362,0.02244029939174652,-0.03046427108347416,-0.02924860082566738,-4.971348913277785e-33,0.023342225700616837,0.08410103619098663,-0.014654570259153843,0.06561442464590073,-0.07035449147224426,0.019712841138243675,-0.058274202048778534,0.06843714416027069,-0.04110988974571228,-0.1304754763841629,-0.027834532782435417,0.01469374168664217,0.01746702566742897,-0.013045167550444603,0.009245462715625763,0.016264421865344048,0.06306587159633636,0.0770820751786232,0.050320908427238464,0.009141883812844753,0.06539341807365417,-0.05456193536520004,0.05468018725514412,-0.09093509614467621,-0.02210964262485504,-0.0007029999978840351,0.06911634653806686,-0.041695550084114075,-0.04748799651861191,0.010022356174886227,-0.0004889332922175527,-0.06647384166717529,-0.019559742882847786,0.011349298991262913,0.004089595749974251,0.05249936133623123,-0.05309921130537987,0.05380250886082649,0.019384756684303284,-0.06929269433021545,0.06748271733522415,-0.07118956744670868,0.031808074563741684,0.012394720688462257,0.028020402416586876,0.03261168301105499,-0.08695929497480392,0.051950860768556595,0.03680631145834923,0.03113904595375061,-0.031676337122917175,0.01997716724872589,0.027647260576486588,-0.011029629968106747,-0.029945464804768562,0.0375252328813076,-0.05346888303756714,0.02079629898071289,-0.01895792782306671,-0.02492387592792511,-0.02638930268585682,-0.01164917554706335,-0.010015789419412613,-0.0024024471640586853,0.014776059426367283,-0.014775814488530159,0.008494318462908268,-0.04732923209667206,0.08069057762622833,-0.04165450111031532,0.04737348482012749,0.030217822641134262,-0.014001659117639065,0.014385506510734558,0.04856947436928749,0.10742463916540146,-0.048481978476047516,-0.17544718086719513,-0.02112492360174656,0.013707523234188557,-0.013527126982808113,-0.02814018353819847,0.01443159393966198,0.0032687275670468807,-0.11506515741348267,-0.013688291423022747,-0.017679547891020775,0.04835863038897514,0.07119116187095642,-0.008725816383957863,0.07849504053592682,0.057041265070438385,0.017778897657990456,0.035325322300195694,0.11827768385410309,-3.2722766718507046e-8,-0.05234919860959053,-0.02898601070046425,0.002580717671662569,-0.03218863531947136,0.07936517149209976,0.11804993450641632,-0.06304819881916046,-0.052497848868370056,-0.06338699162006378,-0.01845572516322136,-0.00911853089928627,-0.00830020010471344,0.06268460303544998,-0.023752950131893158,0.06197195127606392,0.059125866740942,-0.013090784661471844,-0.0212060809135437,-0.009937831200659275,-0.04475622996687889,-0.054518040269613266,0.00514663802459836,0.029361844062805176,0.013891462236642838,-0.04690341278910637,-0.0348564013838768,-0.05639340728521347,0.04496639966964722,-0.04378500208258629,-0.004033242352306843,0.035870712250471115,0.023653261363506317,-0.04963016137480736,-0.11662474274635315,-0.020940199494361877,0.07876244932413101,0.0006955189164727926,0.014295031316578388,0.13470996916294098,-0.025076720863580704,0.020192822441458702,0.08526570349931717,0.04725530743598938,0.005610324442386627,-0.016208820044994354,0.025891587138175964,0.06268582493066788,-0.019627803936600685,0.0015521353343501687,0.05813750997185707,-0.0046267095021903515,-0.007312688045203686,0.014075462706387043,0.05168420448899269,-0.02357584610581398,-0.016599705442786217,-0.052618857473134995,-0.03542470186948776,-0.07466785609722137,0.016575977206230164,-0.052613429725170135,0.03826257586479187,-0.018976755440235138,-0.028440551832318306]},{"text":"From now onwards I shall get up a full hour earlier in the mornings.\" And he moved off at his lumbering trot and made for the quarry.","book":"Animal Farm","chapter":60,"embedding":[-0.006950719282031059,0.10932508111000061,0.04495600238442421,0.02838839404284954,0.04063975811004639,-0.02816346473991871,0.057412490248680115,-0.012425068765878677,-0.11828501522541046,-0.02115863375365734,-0.04067644104361534,-0.029191285371780396,-0.06425190716981888,0.010256205685436726,0.027689091861248016,0.0910918265581131,0.013046405278146267,0.025306355208158493,0.04176458716392517,-0.004640593659132719,0.0009671593434177339,0.01795344613492489,0.06411495059728622,0.022269224748015404,0.10010229796171188,0.057646818459033966,-0.026024749502539635,0.040360499173402786,0.08926060050725937,-0.01610656827688217,-0.05573989078402519,-0.010736105963587761,0.019432110711932182,-0.05888783559203148,-0.0036261382047086954,0.11081018298864365,0.012854333966970444,-0.013189957477152348,0.031168051064014435,0.01749715395271778,0.054746363312006,0.038616251200437546,-0.020822767168283463,0.04325871169567108,-0.1242252066731453,-0.024326516315340996,0.06780949234962463,-0.09354813396930695,0.06109827011823654,0.014923246577382088,-0.028307702392339706,0.0074012503027915955,-0.0966557115316391,-0.1417931318283081,-0.006810409482568502,0.11314848810434341,0.059980619698762894,0.009450001642107964,0.1085730493068695,-0.005282433703541756,-0.052266646176576614,0.06913282722234726,-0.0317697748541832,0.09529928117990494,0.07570656388998032,-0.0661768689751625,-0.08211939036846161,-0.04875298961997032,-0.025391874834895134,0.09126744419336319,-0.06518959999084473,0.016628477722406387,-0.06864532828330994,-0.07304350286722183,-0.05039948597550392,-0.028921203687787056,0.08695225417613983,0.03661896660923958,0.0494975671172142,-0.056345801800489426,-0.08347033709287643,-0.00895558763295412,0.01179967075586319,0.00040790732600726187,-0.05038972944021225,-0.005438827443867922,0.008628551848232746,0.09687288105487823,0.01421669777482748,-0.0427817665040493,0.08782390505075455,-0.03440612182021141,-0.09282322973012924,0.07967863231897354,0.03450731560587883,0.024392759427428246,-0.04230296239256859,0.12680457532405853,-0.054197702556848526,-0.0029525584541261196,0.04796900600194931,0.004246141761541367,-0.04084809869527817,0.025227542966604233,-0.014883004128932953,0.024429654702544212,-0.07918359339237213,0.053259991109371185,-0.03656363859772682,-0.05342042073607445,-0.005901444237679243,-0.019164569675922394,0.021427646279335022,0.029863430187106133,-0.0021370917093008757,0.11191326379776001,-0.06199875473976135,0.004011901095509529,-0.04823877662420273,0.06905322521924973,0.03651351481676102,0.07939881086349487,-0.005268263164907694,0.013073755428195,-0.05710809677839279,-0.042764876037836075,0.11116325855255127,-1.7920348241382164e-34,0.05623883754014969,0.0018313964828848839,-0.0607970729470253,-0.003987450152635574,0.12273348122835159,-0.029228676110506058,-0.08021336793899536,0.05226261541247368,0.03666539117693901,0.06806883215904236,-0.011761639267206192,-0.046231694519519806,-0.0273190438747406,-0.01954500563442707,-0.1181301474571228,-0.031712986528873444,0.09866484254598618,-0.03736565262079239,0.024782059714198112,-0.05487276613712311,-0.020159125328063965,-0.04783983901143074,-0.06590083241462708,0.014087211340665817,0.01437282469123602,-0.06146284565329552,0.030929431319236755,-0.014256134629249573,-0.011479437351226807,0.037067148834466934,-0.007530849892646074,0.014194831252098083,0.028343316167593002,0.00952933169901371,0.03471466526389122,0.016429131850600243,0.0018991074757650495,-0.02369622327387333,-0.14537063241004944,-0.0075025190599262714,0.028066881000995636,0.018506251275539398,0.006531573366373777,-0.006446279585361481,-0.05472200736403465,-0.05785954371094704,-0.011097034439444542,0.12086138874292374,-0.00888977013528347,0.04763895645737648,-0.011524076573550701,0.038230977952480316,0.07724244147539139,-0.07789310812950134,-0.02211407944560051,0.018015941604971886,0.018466558307409286,-0.018274620175361633,0.030319098383188248,0.05546901002526283,0.025445779785513878,-0.05245316028594971,0.03273285925388336,0.05692705512046814,-0.06339548528194427,-0.08348096162080765,0.008349357172846794,-0.07646296918392181,-0.003914164379239082,0.046017326414585114,-0.027762016281485558,0.021714387461543083,-0.013081350363790989,-0.002484211465343833,-0.08311904221773148,-0.027716616168618202,-0.08708453178405762,-0.02209569700062275,-0.09211461991071701,0.015341813676059246,0.04713248461484909,0.0462709479033947,-0.06709349155426025,-0.0610656701028347,0.06369294971227646,-0.008571863174438477,0.06544775515794754,-0.0969499871134758,-0.006924489513039589,0.04776504263281822,-0.06912180781364441,-0.018572170287370682,0.012560678645968437,-0.054447997361421585,0.007626359350979328,-1.3932838829998945e-33,0.031995341181755066,-0.001702298759482801,0.004582161549478769,0.05536762997508049,-0.016826074570417404,-0.016620049253106117,-0.006123100873082876,-0.02590090222656727,-0.0319502092897892,0.012977825477719307,-0.08379359543323517,0.0621102899312973,0.05475560203194618,-0.061017248779535294,-0.0001682320871623233,-0.06618672609329224,0.029324958100914955,-0.02829749323427677,0.022156884893774986,0.07293407618999481,0.011660118587315083,-0.03212617710232735,-0.04359425976872444,-0.09540615975856781,0.0037239650264382362,0.02953927405178547,-0.029705867171287537,0.0012038974091410637,-0.11024270206689835,0.002934926189482212,-0.08966868370771408,-0.08008728921413422,-0.03934355825185776,0.03585508093237877,-0.06827736645936966,0.04938193038105965,-0.042930155992507935,-0.025711597874760628,0.007239393889904022,0.015745563432574272,0.02966407500207424,-0.025567324832081795,-0.02356630377471447,0.05519981309771538,-0.023640790954232216,-0.00644809752702713,-0.012269670143723488,0.07909438014030457,-0.05374517664313316,0.049311090260744095,0.01333233155310154,0.039921268820762634,0.09323213249444962,-0.00917554646730423,0.008784539066255093,-0.0012630134588107467,-0.0016102551016956568,-0.07494659721851349,-0.02008320763707161,0.010060518980026245,-0.03681611269712448,0.030460793524980545,-0.02443697676062584,0.06500835716724396,0.04841768741607666,0.04028687998652458,-0.04593437910079956,0.010435075499117374,-0.0735943391919136,-0.007965575903654099,0.00034381027217023075,-0.057269152253866196,-0.02976134791970253,0.019864853471517563,-0.003345128381624818,0.019092286005616188,0.06651035696268082,-0.020578958094120026,-0.01732415147125721,-0.0509512722492218,-0.010792573913931847,-0.05223296210169792,0.058026060461997986,-0.005498856771737337,-0.04382945969700813,-0.03038637712597847,-0.049844224005937576,0.03582092002034187,0.04235012084245682,-0.02281523123383522,0.10980713367462158,-0.00819128006696701,0.026876654475927353,-0.015627404674887657,0.04668371006846428,-3.138237758548712e-8,-0.057683706283569336,0.0013621809193864465,-0.03510138764977455,-0.02817402221262455,0.07219957560300827,-0.004328146576881409,0.07681272178888321,0.06477456539869308,-0.04349852353334427,0.04909680783748627,0.01983068883419037,-0.006042946130037308,0.08240699023008347,0.020873744040727615,0.05751337856054306,-0.012941356748342514,0.0172398891299963,-0.0933336690068245,-0.036739107221364975,-0.016522107645869255,0.004139968194067478,0.007746604736894369,0.0835379883646965,-0.0011904240818694234,-0.026227306574583054,0.02458471991121769,-0.026759319007396698,0.03603037819266319,0.05736444890499115,0.12804868817329407,0.05633023753762245,0.05142825096845627,-0.06603489816188812,-0.01515558734536171,-0.020311852917075157,0.0021965710911899805,0.03748805820941925,0.04557744413614273,0.01770300418138504,0.020921161398291588,-0.014982245862483978,0.005615185480564833,-0.03032030537724495,-0.0010049710981547832,-0.0264450591057539,0.004603619687259197,-0.020538561046123505,0.06073341146111488,-0.049492932856082916,-0.056312356144189835,0.018567537888884544,-0.015537386760115623,0.10263864696025848,-0.042021770030260086,0.03183024376630783,0.00626132870092988,0.00022325367899611592,-0.05454010143876076,-0.013320045545697212,-0.0179448164999485,-0.042715493589639664,0.022382859140634537,-0.10759779810905457,-0.12515953183174133]},{"text":"It was a clear spring evening.","book":"Animal Farm","chapter":60,"embedding":[0.05518682301044464,0.08447954803705215,0.07754813134670258,0.07039151340723038,0.056055307388305664,-0.05102751404047012,0.021992146968841553,-0.06922397017478943,-0.037115029990673065,-0.03341532126069069,0.006035501603037119,0.04462062194943428,0.024110348895192146,-0.013698953203856945,0.01813581772148609,0.030836036428809166,0.018348930403590202,-0.01922125555574894,0.04331009089946747,0.0421433188021183,-0.012945904396474361,-0.009234224446117878,0.005095688160508871,0.0724097266793251,0.04806384816765785,0.06197528913617134,0.033327460289001465,0.019312001764774323,0.04452605918049812,-0.03519207984209061,-0.06457620114088058,0.07967577874660492,-0.008838795125484467,-0.03738321363925934,-0.006492290645837784,0.04467649385333061,0.1207614317536354,-0.07535691559314728,0.06461179256439209,0.06100500002503395,0.012252980843186378,0.00018595274013932794,0.023824436590075493,-0.010035943239927292,-0.004575117491185665,0.07943227142095566,0.04030264541506767,-0.005951108410954475,-0.00004933218951919116,0.0018498273566365242,0.09301064908504486,0.00411104504019022,-0.08998899161815643,-0.09974274039268494,-0.08227483928203583,0.09650342911481857,-0.04448441416025162,-0.07618625462055206,0.06867218762636185,0.020007912069559097,-0.06794244796037674,0.0032460324000567198,-0.08830446004867554,0.0560278482735157,0.0855339914560318,-0.015365459024906158,-0.10335201770067215,-0.08792015165090561,0.091380774974823,-0.04429709166288376,-0.011216532438993454,0.0043840184807777405,0.0625828430056572,-0.03370553255081177,-0.11551787704229355,-0.01747085154056549,-0.0006938704173080623,0.0010970962466672063,0.03784480690956116,-0.021739646792411804,0.03893408551812172,-0.05577225983142853,0.0040898011066019535,0.004634884651750326,-0.03155538812279701,0.018752312287688255,0.03466925024986267,0.009817367419600487,-0.0008813780732452869,0.040784306824207306,-0.0031819543801248074,-0.018200021237134933,-0.11220446974039078,0.06369582563638687,-0.03712217137217522,-0.016786178573966026,-0.009036066941916943,-0.011536967940628529,0.045405395328998566,0.1113114282488823,0.042635101824998856,0.041204728186130524,-0.003680638736113906,0.03556456044316292,-0.012024009600281715,-0.01844879239797592,-0.045506734400987625,0.035002369433641434,-0.022187646478414536,-0.0041285790503025055,-0.03163719177246094,-0.004235384054481983,0.05409891903400421,0.04028967022895813,0.04230496287345886,0.01578327640891075,-0.020588478073477745,-0.010365213267505169,-0.017729314044117928,-0.004159027244895697,0.059716228395700455,0.02605358138680458,0.018401915207505226,0.03135772794485092,0.02599676325917244,0.09930578619241714,0.14218772947788239,-6.843025752612742e-33,0.05961022153496742,-0.052874207496643066,0.00009486315684625879,0.0006266710697673261,0.11273461580276489,-0.021089838817715645,-0.00417287228628993,-0.02391703426837921,0.002346550580114126,-0.05645907670259476,0.023019524291157722,-0.04434547573328018,-0.10610484331846237,-0.10364927351474762,-0.016963282600045204,-0.03302622213959694,-0.007901346310973167,0.042351823300123215,0.008920194581151009,0.03821219503879547,-0.0814271941781044,0.05880073457956314,-0.028532281517982483,-0.057076189666986465,-0.0148612717166543,-0.011311979964375496,0.022284118458628654,0.04575181379914284,0.011434191837906837,0.034356143325567245,0.10736425966024399,-0.020894808694720268,0.06715688109397888,0.09599240869283676,0.024961726740002632,0.03312263265252113,0.03362514451146126,-0.08840023726224899,0.011425912380218506,0.007320820819586515,-0.03454207628965378,0.035726241767406464,-0.01842806488275528,-0.030574647709727287,-0.04456300288438797,0.011683414690196514,-0.040192682296037674,0.09064193814992905,-0.011654105968773365,0.03223206847906113,-0.002824238734319806,0.04615910351276398,-0.0002513758954592049,-0.10095027834177017,-0.06475477665662766,0.1016131117939949,-0.03166620433330536,0.01896323636174202,-0.03572383522987366,-0.05081779509782791,0.013446453027427197,0.03349070996046066,0.033575206995010376,-0.0658905878663063,-0.0359673798084259,-0.020004695281386375,-0.04349767789244652,0.045668166130781174,-0.025459757074713707,-0.03373755142092705,-0.003548822831362486,-0.06709738820791245,0.061925847083330154,-0.03649492561817169,0.04027193784713745,-0.02013554982841015,0.11374074220657349,-0.014884213916957378,0.04622400179505348,0.04448609799146652,0.05275922268629074,0.011103210970759392,0.04013886675238609,-0.03681475296616554,-0.03107132948935032,-0.03538643941283226,0.05690692365169525,0.06539645045995712,-0.06591010838747025,0.04828382283449173,-0.05808914452791214,0.05136089026927948,0.06942353397607803,-0.04019796848297119,-0.0799356997013092,4.760398370499064e-33,0.07740788161754608,0.04089010879397392,-0.07459239661693573,0.10060568153858185,-0.01008553896099329,-0.02953909896314144,-0.051208045333623886,0.018230479210615158,-0.07299315929412842,0.07795635610818863,0.030788464471697807,0.031467732042074203,-0.008112955838441849,-0.02366742491722107,-0.025604333728551865,-0.037723932415246964,0.09383055567741394,0.10950709134340286,-0.010661523789167404,0.07867225259542465,-0.036021240055561066,-0.011202345602214336,-0.008554798550903797,-0.04100043699145317,0.03463355451822281,0.0675659030675888,0.013319406658411026,-0.024732347577810287,-0.09048468619585037,-0.0405309833586216,-0.011434588581323624,0.0013952646404504776,0.05049099028110504,-0.011758179403841496,-0.028234075754880905,0.06901881098747253,0.06105858087539673,-0.07084399461746216,-0.05078930780291557,-0.011795558035373688,-0.011843293905258179,-0.03737688064575195,0.024628816172480583,0.032331109046936035,0.0133279450237751,-0.0080732312053442,-0.07102522999048233,0.08183763921260834,0.028967784717679024,0.04876191169023514,-0.0684036836028099,0.012184157967567444,-0.008026881143450737,0.013879154808819294,-0.02023017220199108,-0.0875704437494278,0.02914896048605442,-0.02104547806084156,-0.026554519310593605,0.019361373037099838,-0.07392411679029465,-0.01295413076877594,-0.07511793822050095,-0.11433355510234833,0.10106341540813446,-0.0275937058031559,-0.03924795985221863,0.02789583057165146,-0.06651730090379715,0.003270586719736457,0.04043950140476227,-0.05216234549880028,-0.04369749501347542,0.06073781102895737,0.07397796958684921,0.02151760645210743,-0.004714623559266329,-0.024881280958652496,-0.056896328926086426,-0.022940587252378464,-0.1393054872751236,-0.012532524764537811,-0.12496104836463928,0.08337998390197754,-0.06928600370883942,-0.013593010604381561,-0.06436827033758163,-0.07427839934825897,-0.02952422760426998,0.05175609514117241,0.03229154273867607,-0.009640081785619259,-0.030749991536140442,-0.043409403413534164,-0.02139497548341751,-1.7744826052989993e-8,0.04931251332163811,0.04143055900931358,-0.01840604841709137,-0.03034706972539425,0.039771053940057755,-0.015781868249177933,0.07406258583068848,-0.023417694494128227,0.0411209911108017,-0.04615555331110954,-0.031120020896196365,0.03064887970685959,0.0465828962624073,-0.003302409080788493,0.031538382172584534,-0.05109266936779022,-0.09122364968061447,-0.07053892314434052,-0.09600403904914856,-0.013321653939783573,-0.007439422886818647,0.05241868644952774,-0.004323720466345549,-0.03269658982753754,0.0887257307767868,0.025317804887890816,-0.0173949021846056,0.0928676575422287,0.008882989175617695,0.00393471447750926,0.04697968065738678,0.05022881180047989,-0.018171878531575203,-0.08523682504892349,-0.09729479998350143,0.04081207886338234,0.008656417950987816,0.06912308186292648,-0.026005811989307404,-0.02092326432466507,-0.10157464444637299,0.014582092873752117,0.0211772583425045,-0.0208144448697567,0.05103288218379021,0.04614246264100075,0.011600392870604992,-0.0359283871948719,-0.0625908374786377,-0.034129537642002106,-0.02516949363052845,-0.01029713824391365,0.05115198343992233,0.0680006891489029,-0.01384531520307064,-0.04632296785712242,0.030894920229911804,-0.0623544417321682,-0.03421080484986305,-0.05065663531422615,-0.05272599682211876,-0.0004206020385026932,-0.09568279981613159,0.03987669572234154]},{"text":"These scenes of terror and slaughter were not what they had looked forward to on that night when old Major first stirred them to rebellion.","book":"Animal Farm","chapter":61,"embedding":[0.042176827788352966,0.06784357130527496,0.0035919121000915766,0.010682563297450542,0.07012069225311279,-0.024018818512558937,-0.07834275811910629,-0.0878368467092514,-0.03619420528411865,-0.061967432498931885,0.06493610888719559,0.06493940949440002,0.048804234713315964,-0.07024054229259491,-0.0745197981595993,-0.06064104288816452,0.01825849525630474,-0.030909935012459755,-0.004491785075515509,0.07041345536708832,0.0058361380361020565,-0.014796215109527111,0.07846613228321075,0.06238829717040062,0.08338247239589691,0.0789932981133461,0.009050827473402023,0.043785713613033295,0.006326396018266678,-0.013732029125094414,0.01416095532476902,0.006372734904289246,-0.006203645374625921,-0.03146287053823471,0.038925934582948685,-0.03621416166424751,0.05877247825264931,0.03934647887945175,0.034913402050733566,-0.0169642623513937,0.03844273462891579,0.08511845022439957,0.020879238843917847,-0.031323935836553574,-0.03739909082651138,-0.0704030692577362,-0.05211687460541725,-0.09256941080093384,-0.054699499160051346,-0.06778707355260849,0.0124347023665905,-0.002892459277063608,-0.08831269294023514,-0.05261761695146561,-0.023085203021764755,-0.04026539623737335,-0.008659008890390396,0.008149203844368458,0.11833615601062775,-0.014801416546106339,-0.057509008795022964,0.056710269302129745,0.11153233796358109,-0.028995458036661148,-0.07319092750549316,-0.07466381788253784,0.05572937801480293,0.0600135400891304,-0.0675848200917244,0.06859022378921509,-0.06963808834552765,-0.0387306772172451,0.06840343028306961,-0.06329234689474106,-0.10956230014562607,-0.06518043577671051,0.012405483983457088,-0.025713536888360977,-0.05287114903330803,-0.0796930119395256,-0.01784677617251873,-0.017549801617860794,0.02902836725115776,0.055828653275966644,0.0036954768002033234,-0.013462702743709087,-0.01076061837375164,-0.08090867102146149,0.02251911163330078,0.031069129705429077,0.009268785826861858,-0.06741342693567276,-0.0002469681785441935,0.07360260933637619,0.0844000056385994,-0.08924312889575958,0.044195421040058136,0.03866562247276306,0.04362696036696434,0.02358410321176052,-0.047967031598091125,-0.06058325991034508,-0.012480638921260834,-0.005099929869174957,-0.02318710833787918,-0.015074876137077808,-0.0016793136019259691,-0.07318473607301712,-0.09075881540775299,-0.020309342071413994,-0.02838687039911747,0.0035136176738888025,-0.01270286738872528,-0.016306104138493538,0.07066204398870468,-0.033448800444602966,-0.008342534303665161,-0.013667282648384571,-0.0803404375910759,0.05731738731265068,0.09691307693719864,-0.011989092454314232,-0.030108924955129623,0.03184821084141731,-0.008203895762562752,0.058470629155635834,0.008601061068475246,-1.4269118376410431e-33,0.09483998268842697,-0.09505297988653183,-0.11146844178438187,-0.05654846876859665,0.020087774842977524,-0.010614488273859024,-0.027146069332957268,0.011724610812962055,0.06036948785185814,0.06930657476186752,0.00944665540009737,-0.07351605594158173,0.007243043277412653,-0.034398067742586136,0.028784479945898056,-0.012297989800572395,-0.0032294795382767916,0.004209856037050486,0.06320999562740326,-0.07931956648826599,-0.07800228893756866,0.07666848599910736,-0.07999607920646667,-0.04199288785457611,-0.00238063745200634,-0.009603007696568966,0.029277849942445755,0.0401630774140358,-0.01565232127904892,-0.011577095836400986,-0.03463510796427727,0.036607056856155396,0.1030513122677803,0.005670493468642235,0.050780825316905975,0.07991059124469757,-0.0036916122771799564,-0.0880928784608841,-0.00916698295623064,-0.011497987434267998,0.014406017027795315,0.0780998095870018,-0.06799544394016266,-0.042008429765701294,0.010801641270518303,-0.04575270041823387,-0.015729965642094612,-0.01391528733074665,-0.03720559924840927,0.01544757280498743,0.07210776209831238,0.025331653654575348,0.06104373559355736,-0.007565570529550314,0.010102161206305027,0.06533250212669373,-0.004651020281016827,0.024188293144106865,-0.016501370817422867,-0.035636186599731445,0.045213960111141205,-0.0612555667757988,0.002645225031301379,-0.006879206746816635,-0.03567264974117279,0.06057034432888031,0.020347829908132553,0.044167980551719666,-0.09566276520490646,-0.007016416173428297,-0.06027108430862427,-0.011666295118629932,-0.011796149425208569,-0.012838475406169891,0.04464682191610336,-0.03617258369922638,-0.008337653242051601,0.039716821163892746,-0.06545518338680267,-0.032506272196769714,0.034821122884750366,-0.048820141702890396,0.011722579598426819,0.041605278849601746,0.02012029103934765,-0.02415688894689083,0.06845705956220627,0.0001165183712146245,-0.014390183612704277,0.016802553087472916,-0.011056852526962757,-0.008898729458451271,-0.0010716707911342382,-0.006468791980296373,-0.03928075358271599,-1.5177308066920615e-33,-0.0018374128267168999,0.08186953514814377,-0.06897636502981186,0.03561165928840637,-0.039277348667383194,0.044872529804706573,0.00825289636850357,-0.016557155176997185,0.009838639758527279,-0.0004264150920789689,-0.0009655753965489566,-0.02564369887113571,-0.08385403454303741,0.01672227866947651,0.016014600172638893,-0.04580039530992508,0.02275632694363594,0.05875660479068756,0.0118918651714921,0.07506063580513,0.007666388992220163,0.01567285694181919,-0.1149812564253807,-0.07755016535520554,-0.022505860775709152,0.08835671097040176,-0.03349193558096886,0.0723627582192421,-0.08465654402971268,-0.08625125885009766,0.044381070882081985,0.0033940018620342016,0.025765880942344666,-0.047641322016716,-0.0011727436212822795,0.09185697138309479,0.025502579286694527,-0.0018262378871440887,-0.044065870344638824,-0.042476214468479156,-0.001673191785812378,0.0196884386241436,-0.022093284875154495,0.045434173196554184,-0.08899553120136261,0.07640989124774933,0.033571816980838776,0.03774099051952362,0.031049838289618492,-0.04792268946766853,-0.09286179393529892,0.07972723990678787,-0.013388081453740597,-0.012952237389981747,-0.026662064716219902,-0.08262933790683746,0.028888443484902382,-0.09719038754701614,-0.0071504791267216206,-0.013051578775048256,-0.01697627641260624,-0.0375337079167366,-0.018335850909352303,-0.07246899604797363,0.022288985550403595,0.06368138641119003,-0.036153122782707214,-0.006604495923966169,0.058982450515031815,0.03340994194149971,0.02872750535607338,0.0065264576114714146,0.01832316815853119,0.0165797658264637,0.009942052885890007,-0.0298438910394907,-0.07896491140127182,0.0632736086845398,0.03827725723385811,-0.028454339131712914,0.10554412752389908,-0.054867323487997055,-0.06105294078588486,0.0498252771794796,0.009840582497417927,0.12825067341327667,0.041227973997592926,0.05239340290427208,0.0023559443652629852,0.010886778123676777,0.0022948584519326687,-0.18637526035308838,0.13114219903945923,-0.001403996953740716,0.05391262099146843,-2.4191697534092782e-8,-0.007722259033471346,-0.03917718306183815,-0.034888580441474915,0.022040866315364838,-0.03920723497867584,0.014934700913727283,-0.03060978464782238,-0.0009213602752424777,-0.017315413802862167,0.10989250242710114,0.013620845973491669,0.008259586989879608,0.03217366337776184,-0.024785161018371582,-0.0405266173183918,0.07156656682491302,-0.01432305108755827,-0.18812580406665802,-0.005719708278775215,-0.029105760157108307,-0.05576498433947563,0.011040731333196163,-0.060006033629179,-0.043179016560316086,0.04984104260802269,0.048029713332653046,-0.022891169413924217,0.0008963379659689963,0.01913793943822384,0.05287308990955353,0.04374048486351967,-0.015631888061761856,-0.044318925589323044,-0.04968787357211113,-0.050358276814222336,0.021558549255132675,0.060022417455911636,0.03444761037826538,0.03201252594590187,-0.0865558609366417,0.01143712643533945,0.04025183245539665,0.023228634148836136,0.006400205194950104,0.1282404065132141,0.05743364244699478,0.0009391549392603338,-0.0469905361533165,-0.012386355549097061,-0.06785017997026443,0.06282206624746323,0.04531944915652275,0.006145646795630455,0.05745701119303703,0.0024457962717860937,-0.02777385711669922,0.06196065992116928,0.08397179841995239,-0.049188945442438126,-0.004059461411088705,0.0843765065073967,-0.04503871500492096,-0.045228149741888046,-0.0010433958377689123]},{"text":"Whatever happened she would remain faithful, work hard, carry out the orders that were given to her, and accept the leadership of Napoleon.","book":"Animal Farm","chapter":61,"embedding":[-0.10924001783132553,0.026040270924568176,0.08723443746566772,0.007618766278028488,-0.033892787992954254,0.04003114625811577,-0.029239436611533165,-0.0009651334839873016,-0.10279541462659836,0.011721531860530376,0.03970089182257652,0.024322248995304108,0.03470887243747711,-0.06572110950946808,-0.04591698572039604,0.005469152703881264,0.06432240456342697,0.0440421923995018,-0.07137178629636765,0.07395530492067337,-0.004327960778027773,-0.05863397940993309,0.058620307594537735,0.05251450464129448,-0.011308547109365463,0.007099730893969536,-0.012559857219457626,-0.013886547647416592,-0.02260923944413662,-0.06125868111848831,-0.05126919597387314,-0.03480956703424454,-0.021433493122458458,0.04850877821445465,-0.036755215376615524,0.007056777831166983,0.07757210731506348,0.0173946563154459,0.04620273783802986,0.014879916794598103,0.005539863836020231,-0.05227000266313553,-0.05777963995933533,0.003163777757436037,-0.03200628608465195,-0.029852090403437614,-0.006994733586907387,0.017535226419568062,-0.03698661923408508,-0.028898661956191063,0.018775103613734245,0.01900286041200161,-0.14113953709602356,-0.04882205277681351,-0.029607253149151802,-0.07786067575216293,0.02125927433371544,0.03159776329994202,0.07850078493356705,0.06459573656320572,0.00921571534126997,0.0904950350522995,0.004708866123110056,0.026822896674275398,-0.00785690639168024,-0.06263145059347153,-0.03676842898130417,-0.008023137226700783,-0.012876802124083042,0.03440914675593376,0.005626973696053028,0.0054046157747507095,-0.03387100249528885,-0.08402177691459656,-0.08252112567424774,-0.06447848677635193,0.10152918100357056,-0.053727664053440094,0.013264340348541737,0.023766912519931793,-0.11111771315336227,0.02737279236316681,0.044861745089292526,0.15889479219913483,0.04868074879050255,-0.061533454805612564,0.07742651551961899,-0.08176186680793762,0.07946280390024185,0.019259188324213028,-0.029338346794247627,-0.023057498037815094,0.05053024739027023,0.01788070984184742,-0.042315345257520676,0.019886964932084084,-0.04815152660012245,0.02242714911699295,0.003424730384722352,0.005355547647923231,-0.07720823585987091,0.06514912098646164,-0.026388192549347878,0.019795581698417664,-0.09485159069299698,0.04510291665792465,0.03398984298110008,-0.07254227250814438,-0.0402669683098793,-0.028889188542962074,-0.009281094186007977,-0.07246527075767517,-0.034549299627542496,0.03267868608236313,0.09038478136062622,0.1430024355649948,-0.03359958529472351,-0.10379587113857269,-0.10442706197500229,-0.00867951288819313,0.033933334052562714,-0.026654744520783424,0.01829572767019272,0.0077062444761395454,-0.02004976198077202,0.027066513895988464,0.06733070313930511,-1.7867400256483534e-33,-0.03367193043231964,-0.025378411635756493,-0.021450897678732872,0.07374181598424911,-0.045151278376579285,0.06994976103305817,-0.03025905042886734,0.02297513373196125,0.04739638790488243,0.0016820684541016817,0.035715166479349136,-0.010958893224596977,-0.09707922488451004,-0.040654249489307404,-0.015895336866378784,0.04342780262231827,0.002839382505044341,0.10456741601228714,0.06970061361789703,0.07602193206548691,0.10658064484596252,0.0755816400051117,0.00019575834448914975,0.041173357516527176,-0.008148861117661,0.011114711873233318,0.03806253895163536,0.04279376566410065,-0.12311434745788574,0.015117468312382698,0.003341361880302429,-0.07363957911729813,0.014766347594559193,-0.0049790916964411736,-0.045490510761737823,-0.007888047955930233,-0.004068539943546057,-0.055171187967061996,0.023142436519265175,0.005814994685351849,-0.011067884042859077,-0.029952500015497208,0.03156762942671776,0.050542138516902924,-0.044613391160964966,-0.03374512121081352,0.048916399478912354,-0.012515392154455185,0.10054806619882584,0.030691036954522133,-0.0337122343480587,-0.04179161414504051,0.034797850996255875,-0.022774741053581238,0.012754551135003567,0.0754665657877922,-0.010879646055400372,0.0749308243393898,0.06504813581705093,-0.050135254859924316,0.06330109387636185,-0.0736498087644577,-0.02600889652967453,0.08066355437040329,0.016868727281689644,0.0113291060552001,-0.011401057243347168,-0.06976235657930374,0.004647705238312483,-0.06302174180746078,-0.10583479702472687,0.019701076671481133,0.0159657783806324,0.03459690511226654,-0.029321545735001564,0.029312465339899063,0.018590161576867104,-0.10035631060600281,0.008552209474146366,-0.04732492193579674,0.02955343760550022,-0.02046217955648899,-0.05800065025687218,0.04700872302055359,0.0806770995259285,0.01970864087343216,0.10031843930482864,-0.06919199228286743,-0.032551784068346024,0.02805190533399582,0.03883900120854378,0.018530508503317833,0.001052700448781252,-0.08767854422330856,0.010382396169006824,2.2789674025488916e-34,0.07208224385976791,0.007665407378226519,0.02630143240094185,0.08399994671344757,0.04988400638103485,0.00776998046785593,-0.07851145416498184,0.013299543410539627,0.036073166877031326,0.01030856091529131,0.008956581354141235,-0.08943313360214233,0.00631355494260788,0.05308331549167633,-0.06943992525339127,0.017301863059401512,0.03132141754031181,-0.07527061551809311,-0.038599152117967606,0.07756360620260239,-0.09812258183956146,-0.004389083478599787,0.006340926047414541,0.06090313196182251,0.0018544995691627264,0.06727804988622665,-0.010010084137320518,-0.05943179875612259,-0.03191746771335602,-0.022111838683485985,0.046537134796381,0.00967868510633707,-0.03631303831934929,0.057110995054244995,0.03239259496331215,-0.015283000655472279,-0.0328969731926918,0.013630736619234085,0.05209410563111305,0.0034396674018353224,-0.003960251342505217,-0.06392906606197357,0.06151468679308891,0.027896486222743988,0.06834480911493301,0.041969455778598785,-0.005231046117842197,0.020433617755770683,0.03046995960175991,0.013431736268103123,-0.015008143149316311,-0.009051300585269928,0.026516547426581383,0.07000334560871124,0.01807662844657898,0.01030841562896967,0.024916231632232666,-0.09250108897686005,0.07710105925798416,-0.055152229964733124,0.00009673472959548235,-0.06382312625646591,0.03171351179480553,-0.0696263313293457,-0.07252247631549835,-0.02153988741338253,-0.06657871603965759,0.03334503993391991,-0.03783407807350159,0.07985957711935043,0.0559069998562336,-0.03518073260784149,0.011534161865711212,0.07574469596147537,0.010528184473514557,-0.014488302171230316,-0.0816703513264656,-0.08564768731594086,0.012627004645764828,-0.001151767559349537,-0.08854218572378159,-0.017484035342931747,-0.015327055007219315,-0.11981359124183655,0.014832810498774052,0.011016584001481533,-0.04936094954609871,0.0020821220241487026,0.1563374400138855,-0.1259135901927948,0.0043419962748885155,-0.11112218350172043,0.07446302473545074,-0.06997056305408478,-0.0005004535778425634,-2.1963272089919883e-8,-0.018362360075116158,0.03388344123959541,0.06291377544403076,0.0038326468784362078,-0.025229884311556816,-0.0623011477291584,0.017335189506411552,-0.025723924860358238,0.061524055898189545,0.05344049260020256,-0.07512021064758301,0.048187896609306335,0.033351365476846695,-0.008016061969101429,0.04704917594790459,0.021224601194262505,0.06816121935844421,-0.05124833062291145,-0.015935664996504784,0.02313201315701008,-0.030782638117671013,-0.050212468951940536,0.008877858519554138,-0.06426464021205902,-0.06078728288412094,0.011601362377405167,-0.007410919293761253,0.026912420988082886,-0.0005850226734764874,0.07132932543754578,0.0531947985291481,-0.0225251242518425,-0.007237722631543875,-0.07255247235298157,-0.06870733201503754,0.05825567618012428,0.03008074127137661,-0.04036587104201317,-0.01207554992288351,-0.05067311227321625,0.04401314631104469,0.09161210060119629,-0.006290964782238007,0.04038485512137413,0.05503535643219948,-0.00997158046811819,0.03877400606870651,-0.025805188342928886,-0.017545409500598907,0.0071936403401196,0.06798902899026871,0.09240496158599854,-0.025178804993629456,0.02210019715130329,-0.024578429758548737,0.030558275058865547,0.03615335747599602,0.007431140169501305,-0.03859015181660652,0.011923001147806644,-0.02930072508752346,0.0008075213991105556,0.0012065202463418245,-0.07279866188764572]},{"text":"The other animals sitting round her took it up, and they sang it three times over--very tunefully, but slowly and mournfully, in a way they had never sung it before.","book":"Animal Farm","chapter":61,"embedding":[0.023545648902654648,0.04243795573711395,0.028279922902584076,0.0454549714922905,-0.012410684488713741,-0.00470151798799634,0.024806035682559013,-0.033113498240709305,0.027669725939631462,-0.0403846874833107,-0.042806513607501984,0.013567229732871056,0.03524312004446983,-0.09944228827953339,-0.036061953753232956,0.00677095539867878,-0.05937499552965164,0.04827984422445297,0.033734146505594254,-0.013593839481472969,-0.036435097455978394,0.004053071141242981,0.08432797342538834,0.0871862918138504,-0.014725647866725922,-0.0269479937851429,-0.03976401314139366,-0.019115783274173737,0.0002854053454939276,0.01612134464085102,-0.0746120885014534,0.05348557233810425,0.00177775917109102,0.025147804990410805,-0.019971800968050957,-0.011673051863908768,0.0014235033886507154,0.0008733312715776265,0.07084048539400101,0.04754093661904335,0.04001229628920555,-0.004995009396225214,-0.01399883721023798,-0.10949177294969559,-0.055815376341342926,-0.025379911065101624,-0.10173546522855759,-0.07849080115556717,0.08159708976745605,-0.006595648359507322,0.027035972103476524,-0.030856771394610405,-0.030674869194626808,-0.06604888290166855,-0.0816490426659584,0.00648054713383317,0.027311332523822784,0.03946442902088165,0.039937764406204224,-0.004376473370939493,-0.04078320786356926,0.003658928209915757,0.07292487472295761,0.013290029019117355,0.0399848073720932,-0.013679860159754753,-0.02515561878681183,-0.10623647272586823,-0.048489224165678024,0.12046587467193604,-0.01467495784163475,0.036418549716472626,0.013719512149691582,-0.09059054404497147,-0.04939088970422745,-0.054437439888715744,0.0954926460981369,-0.025696441531181335,0.039817601442337036,-0.031096072867512703,-0.06660670042037964,-0.034065619111061096,0.027807224541902542,0.0071686333976686,-0.024903642013669014,-0.03422882780432701,0.0028754323720932007,-0.021276241168379784,-0.08166942745447159,-0.05347459763288498,-0.060797564685344696,-0.021357890218496323,-0.1021236702799797,0.05752415582537651,0.07007010281085968,-0.003125070361420512,-0.01921245828270912,0.007827888242900372,0.07727614045143127,0.02643500082194805,0.005893987603485584,0.02940935268998146,0.03956383466720581,0.014697523787617683,0.03894535079598427,-0.0372408926486969,-0.032111525535583496,0.02452312782406807,0.03997747227549553,-0.023761704564094543,-0.050659265369176865,-0.0005242694169282913,0.08622420579195023,0.14234939217567444,-0.04693780094385147,0.07636380195617676,-0.03739819675683975,-0.08500918000936508,-0.05431114137172699,0.027231549844145775,0.09130994230508804,0.006685392465442419,0.0029285773634910583,-0.07504850625991821,0.011613518930971622,-0.027056075632572174,0.0710080936551094,-3.465599791933961e-33,0.0240698903799057,-0.04310077428817749,0.03373972699046135,-0.034236758947372437,0.09785933047533035,0.011226633563637733,-0.02922072261571884,0.029922695830464363,-0.027429891750216484,-0.0004673149378504604,-0.00501045398414135,-0.04764525592327118,-0.0021017168182879686,-0.11787664145231247,0.027422823011875153,-0.027335556223988533,-0.0005473641213029623,-0.010106056928634644,0.0810336172580719,0.024071890860795975,0.05643071234226227,0.11537234485149384,0.04301198199391365,-0.049207523465156555,-0.0469406396150589,0.032364748418331146,0.013727125711739063,0.02590443380177021,-0.03409050032496452,0.03544038534164429,0.04529760405421257,-0.06446415930986404,-0.010125335305929184,-0.02738087996840477,-0.011098981834948063,-0.020023690536618233,0.04238176345825195,-0.010512273758649826,-0.04290254786610603,0.07844583690166473,0.02103131264448166,-0.013757249340415001,0.0733424499630928,-0.036740273237228394,-0.11887026578187943,0.09294860810041428,-0.09846711158752441,0.046426501125097275,-0.0016047070967033505,0.05194885656237602,-0.012561479583382607,0.015783164650201797,0.042855240404605865,0.052870459854602814,0.008553257212042809,0.038696881383657455,0.08782915025949478,-0.09969653189182281,0.025423895567655563,0.005471198353916407,-0.010441547259688377,-0.06021913141012192,0.09029481559991837,-0.08925694972276688,0.050672147423028946,0.06147383525967598,-0.02996428683400154,-0.030900700017809868,0.02971128560602665,-0.04491904005408287,-0.06056787446141243,-0.016468903049826622,-0.07097537070512772,-0.09613601863384247,-0.06187979504466057,-0.041539885103702545,0.09744689613580704,-0.01578080840408802,0.05775262042880058,-0.06778693199157715,0.017209608107805252,0.01836547814309597,-0.04902243986725807,0.08827140182256699,0.080872543156147,-0.0797715038061142,-0.01553261186927557,-0.08323386311531067,-0.09160860627889633,0.0145470155403018,-0.003683297662064433,0.06147027015686035,0.03458840772509575,-0.17572465538978577,-0.05067047104239464,5.849581313928256e-34,-0.01559092290699482,0.07203704118728638,0.02196258120238781,0.08662155270576477,0.012538648210465908,-0.023786574602127075,-0.041131313890218735,0.02433082088828087,0.042503852397203445,0.004929821938276291,0.0031312117353081703,-0.10664190351963043,0.052095867693424225,-0.024017253890633583,0.056242890655994415,0.028172429651021957,0.026158595457673073,0.023872870951890945,0.06384070962667465,-0.03859495371580124,-0.05771707743406296,-0.09571391344070435,0.02502012811601162,0.07150626927614212,0.001334145781584084,0.03479951247572899,0.03798260539770126,-0.0185707937926054,0.019246963784098625,-0.10040285438299179,0.029186220839619637,-0.06978679448366165,-0.03827974200248718,-0.012788827531039715,0.0887821763753891,0.016838056966662407,-0.030371706932783127,0.00213242438621819,-0.03472182899713516,-0.0027671551797538996,0.04565807059407234,-0.04268457368016243,-0.07062382996082306,-0.004311338532716036,0.03893706202507019,0.0220783818513155,-0.0006783593562431633,0.11182429641485214,-0.021459028124809265,0.08175815641880035,-0.008412621915340424,-0.07163628935813904,0.019323984161019325,0.04655103757977486,0.007593527901917696,-0.03963283821940422,0.007917024195194244,-0.0075406646355986595,0.05703212693333626,-0.03299883008003235,-0.00479618925601244,-0.0011954840738326311,-0.055891092866659164,-0.006346238311380148,-0.08329381048679352,-0.014081732369959354,0.0310190599411726,-0.07014404982328415,-0.02727733924984932,0.07796119898557663,-0.07004469633102417,0.08958783000707626,-0.06873678416013718,0.039535753428936005,-0.004206351935863495,0.11917832493782043,-0.06828935444355011,-0.007951890118420124,0.015276222489774227,-0.055110979825258255,-0.03870466724038124,-0.042210087180137634,0.008605030365288258,0.012580878101289272,0.027736295014619827,-0.01527615636587143,0.046269871294498444,0.06424964219331741,-0.04293718561530113,0.038451191037893295,0.02391267567873001,0.04262320697307587,0.04518362134695053,-0.021100342273712158,-0.011941622011363506,-2.803260201744706e-8,-0.04427069425582886,0.06672270596027374,-0.025206010788679123,-0.05462845414876938,0.0923449769616127,0.0102534219622612,0.14186251163482666,-0.056992508471012115,-0.025659995153546333,0.012755761854350567,0.005172086879611015,0.03579844534397125,0.037165913730859756,0.018404023721814156,-0.05038342624902725,0.04513949900865555,0.008551384322345257,-0.01474559586495161,-0.009978569112718105,0.009490295313298702,-0.0566861666738987,-0.0379319041967392,0.03939725086092949,-0.18200096487998962,-0.036907609552145004,-0.007738182786852121,-0.035519614815711975,0.012819749303162098,-0.046512991189956665,-0.03365388512611389,0.01204273197799921,0.03655458986759186,-0.04757434129714966,-0.0018873752560466528,0.011922374367713928,-0.05046623572707176,0.06225286051630974,-0.01997876726090908,0.010495440103113651,-0.022960921749472618,-0.016858387738466263,0.11940179765224457,0.006678363773971796,0.028475947678089142,0.05190669745206833,-0.015904298052191734,0.044598598033189774,0.014852840453386307,-0.05447865650057793,-0.01479839626699686,-0.07193639129400253,0.02327512763440609,-0.017145847901701927,0.08506035059690475,-0.02255447395145893,0.014342203736305237,-0.0021849325858056545,-0.030573008581995964,-0.0017729979008436203,0.02536691538989544,-0.062085241079330444,0.039331380277872086,-0.0027286370750516653,0.027398180216550827]},{"text":"But the Rebellion is now completed.","book":"Animal Farm","chapter":61,"embedding":[0.021787133067846298,-0.02452678605914116,0.021448610350489616,-0.11509134620428085,0.01479876134544611,0.010379469022154808,-0.039104945957660675,-0.0634273812174797,-0.061855558305978775,0.06840623915195465,0.08200955390930176,0.0727601945400238,0.04364798590540886,-0.010801269672811031,0.012680449523031712,-0.029801709577441216,-0.015383334830403328,-0.003205453045666218,-0.003280254080891609,-0.001851542154327035,0.011268530040979385,0.04638725146651268,0.018679792061448097,0.08018472790718079,0.07031599432229996,0.034420620650053024,-0.014998994767665863,0.015712546184659004,0.04840262606739998,-0.05936156213283539,0.013996211811900139,0.010444661602377892,-0.05421813949942589,-0.000048347788833780214,-0.0059536416083574295,0.005025562830269337,0.03689165785908699,0.005638466216623783,0.08931997418403625,-0.058740049600601196,0.029915891587734222,-0.016313161700963974,-0.03291897848248482,0.050303321331739426,0.03506241366267204,-0.013188907876610756,0.024636242538690567,-0.053318269550800323,-0.0028502142522484064,-0.002179474802687764,0.07758837938308716,-0.0474369153380394,0.013944101519882679,0.013618126511573792,0.04860277846455574,-0.01915694586932659,0.0019019842147827148,-0.041617389768362045,0.09306371212005615,0.009702222421765327,-0.0909067690372467,0.07223732024431229,-0.008112378418445587,0.01058326568454504,0.02375028096139431,-0.020754704251885414,0.02026607282459736,-0.01539781503379345,-0.026557886973023415,0.04806756228208542,0.030907688662409782,-0.02971186861395836,0.02054712176322937,-0.026765795424580574,-0.05736950412392616,0.0026753104757517576,0.02619265578687191,0.0838564783334732,0.059752143919467926,-0.04706496000289917,-0.053160410374403,-0.02014111541211605,-0.005653562024235725,0.050712279975414276,-0.0024632595013827085,-0.030039921402931213,-0.01088797114789486,-0.061380065977573395,0.06927448511123657,-0.03505628556013107,0.02469787187874317,0.009127506986260414,0.0027391244657337666,0.09410253912210464,-0.10044287145137787,-0.0032982570119202137,0.06012806296348572,-0.011689331382513046,-0.024260263890028,0.08336824178695679,-0.041724011301994324,-0.045286186039447784,-0.029679879546165466,-0.07716390490531921,-0.027652598917484283,-0.05902766063809395,0.06524526327848434,-0.004141583573073149,-0.06528671085834503,-0.09019879251718521,-0.05462696775794029,-0.05226027965545654,-0.006008252967149019,0.026986662298440933,0.06984327733516693,0.031087348237633705,0.023303905501961708,-0.01327368151396513,-0.0459388867020607,0.05695898458361626,0.10068434476852417,-0.019110342487692833,0.00781646091490984,0.07930681109428406,0.014820692129433155,0.021573329344391823,0.012926631607115269,-5.7831537608213035e-33,-0.04073407128453255,-0.053472306579351425,0.009265497326850891,0.05141961947083473,-0.019462671130895615,-0.024755319580435753,0.03570966050028801,0.05521887540817261,-0.04800943657755852,-0.04455438256263733,0.004764831159263849,-0.08674979209899902,-0.08925919234752655,-0.004038772080093622,-0.04902077838778496,-0.11143547296524048,0.018464457243680954,-0.025617389008402824,0.011622459627687931,-0.028462566435337067,0.03180457651615143,0.008976360782980919,-0.04624735936522484,0.022942524403333664,0.009108870290219784,0.001908377860672772,0.024566350504755974,0.041290733963251114,-0.038115452975034714,0.028838852420449257,0.04193183407187462,0.0479566864669323,0.03973029926419258,0.03713100031018257,-0.01686861552298069,0.054388709366321564,0.016100991517305374,-0.10642892867326736,0.003242132253944874,0.0379481241106987,-0.02895522117614746,0.021885201334953308,-0.09502687305212021,0.0011425220873206854,0.07098210602998734,-0.06097343564033508,0.07364558428525925,-0.06757115572690964,0.042503487318754196,0.059530820697546005,0.06261928379535675,-0.0004500499926507473,0.05154718458652496,-0.01865570619702339,0.03296881914138794,0.005575643852353096,-0.12731751799583435,0.11959844827651978,0.014832361601293087,-0.01737803779542446,0.043917298316955566,-0.03419269993901253,-0.07633385807275772,0.04961344599723816,0.0046539753675460815,0.07672306150197983,0.0733146145939827,0.04676700010895729,-0.04027387872338295,-0.030465999618172646,-0.0812622681260109,-0.03754177689552307,-0.015585172921419144,0.06296587735414505,-0.008925269357860088,-0.05308813974261284,-0.0036303745582699776,0.006700769066810608,-0.0034371421206742525,0.010926922783255577,-0.040330223739147186,-0.05605742707848549,-0.0345088467001915,0.08993153274059296,0.09463174641132355,-0.08538990467786789,0.11598040163516998,-0.06835377961397171,-0.008542164228856564,-0.04706461727619171,-0.08102711290121078,0.013678004965186119,0.03860609978437424,0.10386478155851364,-0.022368695586919785,4.736493590849139e-33,0.01676665060222149,0.008030233904719353,-0.08814927190542221,0.051218897104263306,-0.015148202888667583,0.0018169884569942951,0.01646028645336628,-0.0423000268638134,-0.1115548387169838,-0.015962325036525726,-0.053324732929468155,0.06303075700998306,-0.009390582330524921,0.06405939906835556,0.014619673602283001,-0.006419162265956402,0.12537600100040436,0.04942171275615692,0.028106482699513435,0.10258610546588898,-0.03695287927985191,0.009203188121318817,-0.0596456378698349,-0.06911155581474304,0.05129621550440788,0.07468809932470322,-0.05926503986120224,0.008862059563398361,-0.05956816300749779,-0.030519725754857063,0.07729580253362656,-0.07300692796707153,-0.10541655123233795,-0.02391134388744831,0.03669709339737892,-0.06915656477212906,0.01474970206618309,-0.06369674205780029,-0.006929134484380484,-0.019602995365858078,0.007277998141944408,-0.048872604966163635,0.0015956781571730971,0.052360277622938156,-0.0010018314933404326,0.010861714370548725,0.0631796345114708,0.04503671079874039,0.034004341810941696,0.018269715830683708,0.022574687376618385,0.02671995386481285,0.05106615275144577,0.031620338559150696,0.015524688176810741,-0.05643370375037193,0.025445949286222458,0.0031959088519215584,-0.04480399936437607,-0.04382240027189255,-0.08814729750156403,0.02078518643975258,-0.017432905733585358,-0.01355975866317749,0.09871819615364075,-0.018352365121245384,0.04536541551351547,0.08881937712430954,0.14052392542362213,0.036527279764413834,0.05543699860572815,0.03787079080939293,-0.12784965336322784,-0.0479603074491024,0.07937009632587433,-0.03243304789066315,-0.0007104745600372553,0.02129437029361725,-0.0004566380230244249,-0.06793674826622009,-0.00844547525048256,-0.03899267688393593,-0.029067395254969597,-0.09015592932701111,-0.057075705379247665,0.04533146694302559,0.008298363536596298,0.040893565863370895,0.06151895970106125,0.011463000439107418,-0.021739600226283073,-0.13428492844104767,0.15308022499084473,-0.009503125213086605,-0.02566043846309185,-1.8036203641713655e-8,0.04722294583916664,0.05192497745156288,-0.03628594055771828,-0.011402526870369911,0.026071207597851753,0.10926412045955658,-0.0037783337756991386,-0.02963479980826378,0.003805515356361866,0.028633076697587967,0.12919530272483826,-0.04264478385448456,0.005546695087105036,0.008678543381392956,-0.019486913457512856,-0.02548881061375141,0.03728760406374931,-0.06242300570011139,-0.06087224557995796,-0.03333539515733719,-0.10346033424139023,0.012533147819340229,-0.039234135299921036,-0.0691947266459465,-0.026220984756946564,0.03833344206213951,-0.06950516253709793,-0.02714742347598076,0.004020111635327339,0.04953296482563019,0.040623873472213745,-0.07185172289609909,-0.009764332324266434,-0.01824861206114292,0.013907574117183685,0.05582888424396515,0.013759007677435875,0.014201506972312927,0.0754503458738327,-0.08913619071245193,0.04234609752893448,0.07078217715024948,0.021942637860774994,0.025924207642674446,0.08232125639915466,0.01830701157450676,0.0012673065066337585,-0.07735007256269455,0.008872906677424908,-0.11419115960597992,0.05911385267972946,-0.012858262285590172,0.017076173797249794,0.009976540692150593,-0.023421254009008408,-0.02402307838201523,0.016702832654118538,0.021652711555361748,-0.03221019729971886,-0.03390420228242874,0.07807917892932892,-0.11358145624399185,0.0010009206598624587,0.01682531088590622]},{"text":"Clearly this song has no longer any purpose.\" Frightened though they were, some of the animals might possibly have protested, but at this moment the sheep set up their usual bleating of \"Four legs good, two legs bad,\" which went on for several minutes and put an end to the discussion.","book":"Animal Farm","chapter":62,"embedding":[-0.011261709965765476,0.00422064820304513,0.03304166719317436,-0.004200721625238657,0.0031869327649474144,0.03548554331064224,0.020517785102128983,-0.03522743657231331,-0.008847053162753582,0.0011128009064123034,0.003850000910460949,0.00520738959312439,0.022332891821861267,-0.05980250984430313,-0.06263720244169235,0.08473467826843262,-0.06950406730175018,-0.005551733076572418,-0.06000331789255142,0.02931121550500393,-0.029533490538597107,0.05279705673456192,0.04250846803188324,0.01012418419122696,-0.052635688334703445,0.017589589580893517,-0.03985863924026489,0.03934120014309883,0.02814570814371109,0.00410086615011096,-0.0068367174826562405,0.06903205811977386,0.053174979984760284,-0.053697653114795685,-0.00042895751539617777,-0.036080069839954376,0.08207152038812637,-0.04737970232963562,0.009593934752047062,0.034942034631967545,0.02123897336423397,-0.002278014784678817,-0.01274112518876791,-0.05329394340515137,-0.0732518658041954,0.055884141474962234,0.00023595336824655533,-0.11680304259061813,0.03701687604188919,-0.005105983000248671,0.05988699942827225,-0.03746756911277771,0.06436044722795486,-0.06068209558725357,-0.04111172631382942,-0.0152579415589571,-0.0007218890241347253,0.05864039808511734,0.0003925817145500332,-0.03143307566642761,0.07641401141881943,0.020923079922795296,0.03856112062931061,0.02285386249423027,0.02769654244184494,-0.055070869624614716,-0.08329690992832184,-0.039800625294446945,-0.039922043681144714,0.07369109988212585,0.012022548355162144,-0.034986745566129684,0.04441080987453461,-0.03552675619721413,-0.06953217089176178,-0.01534777507185936,0.03701045364141464,-0.05967459827661514,0.03985615447163582,-0.03068569116294384,0.05625646933913231,-0.06336510181427002,0.029357945546507835,-0.033654991537332535,0.01628562994301319,-0.001395004102960229,0.035540804266929626,-0.08685514330863953,-0.0807480737566948,-0.03298313915729523,-0.04772932454943657,-0.058286894112825394,-0.039010707288980484,0.10021624714136124,0.03076004981994629,-0.007623728830367327,0.0004319820727687329,-0.012859015725553036,-0.019461438059806824,0.04885287955403328,0.00434234831482172,0.007590064778923988,0.004119380377233028,-0.004555735271424055,0.012229613028466702,-0.0721951499581337,-0.026691051200032234,0.1092931255698204,0.05516989156603813,-0.07316315919160843,-0.0479193814098835,-0.0006140677724033594,0.05038831755518913,0.11472825706005096,-0.005189153365790844,0.08452305197715759,-0.045469045639038086,-0.07207445055246353,-0.05711714178323746,0.02984720841050148,0.09152047336101532,0.035082463175058365,-0.011425494216382504,0.05759290233254433,0.04566466063261032,-0.001857530209235847,0.006597858853638172,6.579398920250773e-34,0.06304214149713516,-0.0293996874243021,0.0037716717924922705,-0.06768295913934708,0.17060494422912598,-0.05906553938984871,-0.06055184826254845,-0.0018996130675077438,0.013420755974948406,0.005673445761203766,0.04541454464197159,-0.0855504497885704,0.06617844104766846,-0.04291246086359024,-0.029636390507221222,-0.07866302877664566,-0.005886524450033903,-0.057029061019420624,0.1204010546207428,-0.011729213409125805,-0.013053925707936287,0.107383131980896,0.0768708735704422,-0.05173467472195625,-0.0074003590270876884,0.03782311826944351,0.006382562220096588,-0.013072961941361427,0.03678417205810547,0.029722820967435837,-0.021349182352423668,-0.0005197292193770409,-0.0571649931371212,-0.08260798454284668,-0.03333189710974693,-0.03757232800126076,-0.01677037961781025,-0.07851771265268326,-0.09229758381843567,0.014367494732141495,0.06523234397172928,0.017415471374988556,0.05594613403081894,-0.02411038614809513,0.013995540328323841,0.031987834721803665,-0.07488160580396652,0.081497922539711,-0.09014467895030975,0.0340842567384243,0.030163338407874107,0.09545542299747467,0.10014408081769943,0.04098593816161156,0.035542551428079605,-0.02001197263598442,0.00023192456865217537,-0.006441077683120966,-0.06033697351813316,-0.027938758954405785,0.041548147797584534,0.0489012710750103,0.034485772252082825,-0.115495465695858,0.050376180559396744,-0.04756223410367966,0.0772087499499321,-0.0516112856566906,-0.010463024489581585,-0.038064144551754,-0.04967093467712402,-0.047565240412950516,-0.037853337824344635,-0.08666406571865082,-0.05649827793240547,-0.07905969768762589,-0.0008594552055001259,-0.02827788144350052,0.07571185380220413,-0.08836359530687332,0.04684515669941902,0.009543673135340214,0.03242872655391693,0.04086167365312576,-0.012914310209453106,-0.06055740267038345,0.05887911841273308,-0.1454743891954422,-0.03251546621322632,0.014786635525524616,-0.024838261306285858,0.018030313774943352,-0.09942091256380081,-0.046299226582050323,0.0011079588439315557,-1.9787816397681444e-33,-0.0058993929997086525,0.06228749081492424,-0.04458359628915787,0.10456721484661102,-0.06058540940284729,-0.0055872006341814995,0.059374090284109116,0.02029413916170597,0.07507837563753128,0.07886746525764465,0.014240244403481483,-0.03588716313242912,-0.06756485253572464,-0.03458632901310921,0.13880670070648193,-0.04426933825016022,-0.004506741650402546,0.01803687959909439,0.09261667728424072,-0.06514124572277069,0.01726127229630947,-0.035528816282749176,-0.019337790086865425,-0.004537228960543871,0.04545457288622856,0.040698979049921036,0.034723203629255295,-0.00839797779917717,-0.05744783207774162,-0.058561164885759354,0.0624639093875885,-0.05506154149770737,-0.061427876353263855,-0.041368480771780014,0.030894162133336067,-0.029534341767430305,-0.05733383446931839,0.010336131788790226,0.01008849497884512,-0.06804268807172775,-0.0065215034410357475,0.025947464630007744,-0.006251395680010319,-0.031505417078733444,-0.01705336384475231,0.06712168455123901,0.004566824529320002,0.16454806923866272,0.0030216483864933252,0.020173046737909317,0.030977418646216393,-0.017074745148420334,0.05211050808429718,-0.005055728834122419,0.008372857235372066,-0.06427318602800369,-0.0668133795261383,-0.045651454478502274,0.024659989401698112,0.028758585453033447,-0.006513229571282864,0.05736926198005676,-0.06861016154289246,-0.0366838313639164,0.022877372801303864,0.04689790681004524,-0.058041878044605255,0.01045269425958395,0.06874668598175049,-0.028781896457076073,-0.021812748163938522,0.004474646877497435,-0.06425268203020096,0.004427804611623287,-0.04999173432588577,0.09198273718357086,-0.03825703263282776,-0.0860997661948204,-0.031294506043195724,-0.017173808068037033,-0.03928852081298828,-0.09632489830255508,0.012730792164802551,0.05629134550690651,0.07722953706979752,-0.013198742642998695,-0.016976622864603996,0.16186143457889557,0.021879615262150764,0.016129307448863983,0.08052461594343185,-0.00972394272685051,0.021559851244091988,0.05565367639064789,0.003922675270587206,-3.71603690041411e-8,-0.04621485620737076,0.0020836531184613705,-0.08535977452993393,-0.03618926554918289,0.035632748156785965,0.007086976431310177,0.024139024317264557,-0.04164077341556549,0.026220180094242096,0.009670844301581383,0.0033171193208545446,0.0008267619414255023,-0.007227292750030756,0.05252363905310631,-0.0730552226305008,0.08450392633676529,0.006362476851791143,-0.09097776561975479,-0.03419872745871544,0.0028148277197033167,-0.05349642038345337,-0.028943205252289772,-0.089220330119133,-0.07603833079338074,-0.015163054689764977,-0.006133048329502344,-0.01614055410027504,0.0027785422280430794,-0.01830075867474079,-0.015447796322405338,0.05068034678697586,0.03576182574033737,0.03031083010137081,0.03635910153388977,0.08418876677751541,0.010172172449529171,-0.06599545478820801,-0.018556367605924606,0.038864463567733765,-0.07432880252599716,-0.0046939910389482975,0.10469243675470352,0.1073792427778244,0.019049540162086487,0.010347011499106884,-0.04792865365743637,-0.022579286247491837,0.05582469701766968,-0.0019655434880405664,-0.007957538589835167,-0.04596610739827156,0.028322376310825348,0.013388658873736858,0.12122955173254013,0.026677623391151428,-0.033992569893598557,-0.021566536277532578,-0.0036990344524383545,-0.023541100323200226,-0.012637280859053135,0.000850220094434917,0.01724507473409176,0.02416883409023285,-0.022819258272647858]},{"text":"Clover asked Benjamin to read her the Sixth Commandment, and when Benjamin, as usual, said that he refused to meddle in such matters, she fetched Muriel.","book":"Animal Farm","chapter":62,"embedding":[0.013274799101054668,-0.008594289422035217,-0.001684621092863381,0.05499454587697983,0.05005841702222824,0.03390582650899887,-0.009182625450193882,0.020454997196793556,-0.034320466220378876,-0.03471948951482773,0.023881202563643456,0.0016220888355746865,-0.047426220029592514,-0.06137177720665932,-0.018168114125728607,0.004265885334461927,-0.03738902136683464,0.052967995405197144,-0.1281174272298813,0.09132715314626694,-0.07007946819067001,0.040558990091085434,0.09926489740610123,0.029829183593392372,-0.02691159024834633,-0.019007451832294464,-0.017517628148198128,-0.0420854277908802,0.06259981542825699,-0.04914649948477745,-0.02679738588631153,0.06469816714525223,0.042849209159612656,0.02391035109758377,-0.008403987623751163,0.0023926077410578728,0.08398672193288803,-0.021178511902689934,0.03926294296979904,-0.10922612994909286,-0.03348277509212494,-0.04576398804783821,-0.03310267999768257,-0.03143255040049553,-0.0006008186610415578,0.0011868738802149892,0.02631845325231552,-0.004226985387504101,0.09986834228038788,-0.13145776093006134,-0.012077528052031994,0.021166561171412468,-0.044838763773441315,0.012048814445734024,0.027263158932328224,0.017419086769223213,0.03601047024130821,-0.008174128830432892,0.06728003919124603,0.010175646282732487,-0.12426146864891052,-0.007823367603123188,0.056460246443748474,0.00106601242441684,0.04801332205533981,-0.02984447591006756,-0.048829298466444016,-0.025303872302174568,-0.0018858348485082388,0.0037774303928017616,0.01264580525457859,-0.04304762929677963,0.024397263303399086,-0.008228026330471039,-0.023065771907567978,-0.009278133511543274,-0.023482833057641983,0.02402082085609436,0.0130152627825737,-0.04027116298675537,-0.09399782866239548,-0.04987268149852753,0.024090290069580078,0.10599867254495621,-0.01994696632027626,-0.06600268930196762,-0.020452670753002167,-0.05149805545806885,0.026006361469626427,-0.021124878898262978,-0.05063323676586151,-0.08042583614587784,-0.04874245449900627,0.05007858946919441,-0.09216134250164032,0.03135610371828079,-0.003048843005672097,-0.028723303228616714,-0.0861739069223404,0.011006715707480907,0.03179771453142166,0.10203789919614792,-0.11486847698688507,0.007165085058659315,0.053882207721471786,0.020747855305671692,0.015816643834114075,-0.04200075939297676,-0.005964614450931549,0.020900031551718712,0.07492037862539291,-0.06985525786876678,-0.009543131105601788,0.010720542632043362,0.05170121043920517,-0.013471374288201332,0.012553543783724308,0.019973240792751312,-0.02592264674603939,-0.008159573189914227,0.03986458107829094,0.09054282307624817,0.015076699666678905,0.05249621346592903,-0.031838688999414444,-0.040762003511190414,0.0628289133310318,-1.9989169396427686e-33,0.05038922652602196,-0.0613071583211422,-0.026967015117406845,0.05310935154557228,0.03446267917752266,0.0026240856386721134,0.04983861371874809,0.023839907720685005,0.04286758229136467,-0.07294794917106628,0.010539648123085499,-0.08297976106405258,-0.01476961188018322,-0.03612714260816574,-0.01756702922284603,0.05816366896033287,0.052129972726106644,-0.08314595371484756,0.10513245314359665,0.0452812984585762,0.08324138075113297,0.030085064470767975,-0.0773882120847702,-0.02114793471992016,0.05773508548736572,-0.06575994938611984,-0.006120495032519102,0.045668549835681915,0.02146160788834095,0.020805008709430695,-0.08392169326543808,0.04998490586876869,0.07744230329990387,0.02422204613685608,0.055422063916921616,-0.030928313732147217,0.014864378608763218,0.02155063860118389,-0.06486648321151733,-0.0014690282987430692,0.00402324553579092,-0.013440369628369808,-0.043251633644104004,-0.0326252207159996,-0.05791033059358597,-0.013485762290656567,0.029335808008909225,0.03214089199900627,0.04541805014014244,-0.07309212535619736,0.010035756975412369,0.008122390136122704,0.048186253756284714,0.011337646283209324,0.11589295417070389,0.0009822897845879197,0.039429448544979095,-0.020842542871832848,-0.031067393720149994,-0.00079739885404706,0.06936120986938477,-0.009338604286313057,0.00953463464975357,0.10591956973075867,-0.07196050137281418,-0.03368760272860527,-0.10005095601081848,0.013337807729840279,-0.06631497293710709,0.03212554380297661,-0.17443542182445526,0.055268868803977966,-0.005891482345759869,-0.04902079701423645,-0.02503354474902153,0.0424492247402668,0.02289922907948494,-0.0339091457426548,0.04302001744508743,-0.11679016798734665,0.06305985152721405,0.007147976662963629,-0.03658217191696167,0.13755632936954498,-0.05910703167319298,-0.048716895282268524,-0.01857032999396324,-0.03611128777265549,-0.018753530457615852,-0.1065654531121254,0.06779599189758301,0.008092076517641544,0.02615286037325859,-0.0393032543361187,-0.06933192908763885,-1.3611977545037424e-33,0.021044552326202393,0.06820685416460037,-0.0420529805123806,0.02604738064110279,-0.04585536941885948,0.04351560026407242,0.0024360388051718473,-0.06457135081291199,0.10567493736743927,-0.04813427850604057,-0.022957507520914078,-0.015941381454467773,-0.0041651651263237,-0.020836180076003075,0.024781418964266777,0.014682851731777191,-0.03578444570302963,-0.036447152495384216,0.07628773897886276,0.010220701806247234,-0.04423962160944939,-0.04521813988685608,-0.03641128167510033,-0.09804990142583847,0.009411546401679516,0.07002405822277069,0.03643428161740303,-0.02306746318936348,-0.014132183976471424,-0.06418036669492722,0.05487808212637901,-0.06474797427654266,-0.03201541304588318,-0.06375034898519516,-0.06775049865245819,-0.013435096479952335,0.006145702674984932,-0.015677114948630333,-0.02679182030260563,0.02310427837073803,0.0326782688498497,-0.05298423394560814,0.013973405584692955,-0.00666922889649868,-0.03005978651344776,-0.032190725207328796,0.03803594782948494,0.0067521147429943085,0.02430596947669983,0.030025258660316467,0.0834386870265007,0.012991522438824177,-0.012012908235192299,0.09721238911151886,-0.08161550760269165,-0.08625873178243637,0.033621855080127716,0.025310438126325607,0.0863911584019661,-0.00028993882006034255,0.015138555318117142,-0.015476344153285027,-0.06489801406860352,0.07479996979236603,-0.024827614426612854,0.01585969142615795,0.03546535223722458,0.044924844056367874,0.014252066612243652,0.05814758688211441,0.04454562067985535,-0.003860937664285302,0.10955782979726791,0.027780432254076004,0.08961895108222961,0.05259639397263527,-0.03717675060033798,-0.16862685978412628,-0.009936733171343803,0.06666496396064758,-0.010034974664449692,0.011254127137362957,-0.08221472799777985,0.08321930468082428,-0.06669994443655014,-0.05243111774325371,0.021254273131489754,0.03690037876367569,0.026508931070566177,-0.01249398197978735,0.07646093517541885,-0.09269624203443527,0.07183635234832764,0.0013340612640604377,0.04612523317337036,-2.821274591724432e-8,-0.020086070522665977,-0.04482167586684227,-0.14070665836334229,0.003139001550152898,0.06661539524793625,-0.02218201383948326,-0.06864818930625916,0.025407878682017326,-0.054049596190452576,0.0025172072928398848,-0.06866750121116638,0.05844183266162872,-0.03267859295010567,-0.049491092562675476,0.039144400507211685,-0.009558344259858131,0.06006914749741554,-0.16092218458652496,-0.0025629098527133465,-0.033982329070568085,0.004705522675067186,-0.04529440030455589,-0.03602270781993866,-0.03292107209563255,-0.057842932641506195,0.01671377569437027,0.009557489305734634,0.011260821484029293,-0.04601683467626572,0.044306784868240356,0.03095994144678116,-0.02627665549516678,0.022292928770184517,-0.042248524725437164,-0.027274195104837418,0.04299800843000412,0.0237685926258564,-0.07003068923950195,0.0006979040335863829,0.035075899213552475,0.10126832127571106,0.03088918887078762,-0.014027034863829613,0.009062950499355793,0.027999823912978172,-0.008085928857326508,0.026889750733971596,-0.018958615139126778,0.04443100467324257,0.033186174929142,0.034837063401937485,0.03108062781393528,0.009633003734052181,0.07979769259691238,-0.025325288996100426,0.029389584437012672,-0.02985220029950142,-0.06873911619186401,-0.05683837831020355,0.06646313518285751,0.019894707947969437,0.05918807536363602,-0.01777142472565174,-0.012913973070681095]},{"text":"To rebuild the windmill, with walls twice as thick as before, and to finish it by the appointed date, together with the regular work of the farm, was a tremendous labour.","book":"Animal Farm","chapter":62,"embedding":[-0.0646977499127388,0.11032038927078247,0.004499080125242472,0.07448430359363556,0.022651387378573418,-0.034067876636981964,-0.08248577266931534,-0.04724392667412758,-0.13030888140201569,-0.01929570734500885,0.03130310773849487,0.02966337278485298,-0.010431388393044472,-0.024186598137021065,0.006799900904297829,0.01500164158642292,-0.06158513203263283,0.0045308806002140045,-0.00743082957342267,-0.06900183856487274,-0.050342779606580734,-0.05675147846341133,-0.008474629372358322,-0.027014365419745445,0.08592430502176285,0.08552586287260056,-0.11383547633886337,0.07322289049625397,0.07812440395355225,0.008425033651292324,-0.001224013976752758,0.057707950472831726,-0.011043063364923,-0.019578928127884865,-0.004902846645563841,0.06966574490070343,0.059675492346286774,0.01335169281810522,-0.02043486386537552,-0.07555468380451202,0.02919047512114048,-0.0034848246723413467,0.0380585715174675,-0.000666969281155616,-0.08497688174247742,0.0633334293961525,0.10246104747056961,-0.04377960413694382,0.03758467733860016,-0.009597143158316612,0.04775116965174675,-0.03812378644943237,-0.026208017021417618,-0.09892170876264572,0.03901934623718262,0.06700249016284943,0.011620327830314636,-0.028778601437807083,-0.02250182442367077,0.026413293555378914,-0.04055827111005783,0.0037506415974348783,-0.05467154458165169,0.01168092805892229,0.09932620823383331,-0.10390864312648773,-0.04651350900530815,-0.027421262115240097,-0.07091636210680008,0.03730112314224243,0.058479614555835724,-0.06862353533506393,-0.07118816673755646,-0.06021340563893318,-0.019880615174770355,-0.01367610041052103,0.01552660297602415,-0.03711872547864914,-0.04778718948364258,-0.04587262123823166,0.0065368469804525375,-0.018073739483952522,-0.021059371531009674,0.017145946621894836,0.00013946600665804,-0.03258983790874481,0.0027553406544029713,-0.06505469977855682,0.08109550923109055,-0.03437215834856033,0.07314003258943558,-0.04915380850434303,-0.1040537878870964,0.08620540052652359,0.11926437169313431,0.05572390556335449,-0.05459754914045334,0.037241365760564804,-0.019758377224206924,0.0754605233669281,-0.040516503155231476,-0.02866811491549015,0.0020576866809278727,-0.02290150709450245,-0.05568834766745567,0.0046026380732655525,-0.09853513538837433,0.06383541226387024,-0.03332677111029625,-0.03013441525399685,0.007601636461913586,0.007500545121729374,0.04100476950407028,0.02306370437145233,0.04908865690231323,-0.025401221588253975,-0.019178327172994614,-0.048356760293245316,-0.07595361769199371,0.08653043210506439,0.1499037891626358,0.05124100297689438,-0.09919297695159912,-0.03734785318374634,-0.10758507996797562,0.003482324304059148,0.10089119523763657,-5.4190697322510396e-33,-0.015243533067405224,0.050198569893836975,-0.0064414977096021175,0.061854951083660126,0.08599773049354553,0.023285217583179474,-0.01870526187121868,0.0038392723072320223,0.060230910778045654,0.008032303303480148,0.01718120649456978,-0.037234071642160416,-0.03849376365542412,-0.004816045053303242,-0.021131090819835663,-0.0964307114481926,0.029172031208872795,0.0073190475814044476,0.02548600733280182,0.04659230634570122,0.01461396086961031,-0.03664903715252876,-0.007226675283163786,-0.010831831954419613,0.004384972620755434,-0.0811949148774147,0.10443417727947235,-0.029080180451273918,0.002940624952316284,0.031918447464704514,0.046184659004211426,-0.058827850967645645,-0.06966523081064224,0.03834468126296997,-0.0461924746632576,0.05017894506454468,0.010948832146823406,-0.11252430826425552,0.008443446829915047,0.041821397840976715,0.0006349519244395196,-0.005167385097593069,-0.014433854259550571,0.06165345385670662,0.01845644973218441,0.0211204644292593,-0.030354605987668037,0.06246981397271156,-0.004127487540245056,0.0357910580933094,0.045440178364515305,0.03534085303544998,-0.02186363935470581,-0.01390531100332737,0.0652458593249321,0.03275519609451294,0.0006083200569264591,0.007412012200802565,-0.025909336283802986,0.03219166025519371,0.04515950381755829,-0.029627643525600433,-0.03530499339103699,0.10789525508880615,-0.026645181700587273,0.009457096457481384,-0.010908677242696285,0.07088784128427505,-0.03941763937473297,0.03899373114109039,-0.056246429681777954,-0.024919431656599045,-0.05889427289366722,-0.000005809867616335396,-0.003390868194401264,0.02869456633925438,0.047413356602191925,0.030876189470291138,-0.012737010605633259,-0.022732703015208244,-0.007542524952441454,0.11903370171785355,-0.06453126668930054,-0.03535131365060806,0.019301384687423706,-0.006841967348009348,0.0113136675208807,-0.029635382816195488,0.015790125355124474,-0.0648336336016655,0.06152569130063057,0.027453767135739326,0.09748170524835587,-0.0669497698545456,-0.05390990152955055,2.3798996178610645e-33,-0.05608834698796272,0.030391473323106766,-0.05204387009143829,0.0126423928886652,0.00003565657607396133,-0.033672306686639786,-0.04381384700536728,-0.06338312476873398,-0.10930599272251129,0.031180178746581078,0.008699730038642883,-0.0036604434717446566,-0.02297104522585869,0.0008327444083988667,-0.001333538326434791,-0.014120311476290226,0.036779168993234634,0.0012723564868792892,-0.04652074724435806,0.007036806549876928,0.03936564922332764,0.06123887747526169,-0.015056546777486801,-0.0121436333283782,0.01700168289244175,0.01323525421321392,-0.12852007150650024,-0.07232172042131424,0.049706608057022095,0.06257493048906326,-0.061495739966630936,-0.031119035556912422,-0.041311975568532944,0.0565546490252018,0.01252889633178711,0.0665760263800621,0.05767650157213211,-0.003302768338471651,-0.0016322715673595667,0.020478563383221626,0.023169947788119316,-0.018469518050551414,-0.022786572575569153,0.07028070092201233,-0.02222827635705471,-0.023689141497015953,-0.058229733258485794,-0.05297968164086342,0.04070566967129707,0.03614574298262596,0.05450417473912239,0.04731953516602516,0.001807115157134831,-0.020659979432821274,-0.03219537064433098,-0.09027450531721115,0.06663431227207184,-0.07810337096452713,0.023482438176870346,-0.01400267705321312,-0.07405305653810501,-0.04510185495018959,0.008481540717184544,0.0649384930729866,0.03180096298456192,-0.02248234674334526,0.025739509612321854,-0.04267459362745285,-0.04050976783037186,-0.009872803464531898,-0.07558505982160568,0.11718624830245972,-0.04416058212518692,0.07347697764635086,-0.05597797781229019,0.06028730422258377,0.08602078258991241,0.035804957151412964,-0.05130670964717865,0.03270237147808075,-0.03585132956504822,0.008783840574324131,0.051868997514247894,-0.009050596505403519,-0.001527141546830535,-0.06580888479948044,-0.0332091748714447,0.04228818789124489,0.08133382350206375,-0.010377033613622189,-0.02259267307817936,-0.09577681124210358,0.01475805789232254,0.033688150346279144,0.09803203493356705,-3.1257730626066405e-8,-0.08932314813137054,-0.004093258175998926,-0.012221099808812141,-0.004878104664385319,0.048765748739242554,-0.06317669153213501,0.02506456896662712,0.01628238521516323,0.053294844925403595,0.005627654027193785,-0.09091252088546753,0.07234624028205872,0.025790797546505928,0.07039698213338852,0.026354428380727768,0.00032474048202857375,0.006375758908689022,-0.011923445388674736,-0.02913299761712551,0.01066484022885561,0.049997419118881226,0.03353209048509598,-0.039970625191926956,0.009693576954305172,-0.02674684301018715,-0.007595036178827286,-0.09134453535079956,0.051327913999557495,0.03850223869085312,0.0411994531750679,0.008652272634208202,0.005537776276469231,-0.0035019335336983204,-0.08387238532304764,-0.1385720819234848,-0.01722990907728672,-0.02169094979763031,-0.01569971814751625,-0.03574484959244728,-0.05390132963657379,-0.03465801849961281,0.05034676939249039,0.03717009723186493,0.017138097435235977,0.06906192004680634,-0.03479249030351639,-0.06985873728990555,-0.03241098299622536,-0.0789494588971138,-0.07159046083688736,0.04973885789513588,0.05106668174266815,0.17485357820987701,0.07037854939699173,0.022613322362303734,0.005347227677702904,-0.030291343107819557,-0.042359475046396255,-0.039509762078523636,-0.019028417766094208,-0.006155294366180897,0.09034962207078934,0.035857394337654114,-0.0062574115581810474]},{"text":"All orders were now issued through Squealer or one of the other pigs.","book":"Animal Farm","chapter":62,"embedding":[0.0395280122756958,-0.0400010421872139,0.05434895679354668,-0.01471366360783577,-0.028769634664058685,-0.013082706369459629,-0.12195883691310883,-0.09974467754364014,-0.031267713755369186,0.03397579863667488,0.17391423881053925,0.06885109841823578,0.04197372496128082,0.04146112874150276,-0.059870846569538116,-0.04889862239360809,0.017395470291376114,-0.05166728049516678,-0.03955002501606941,-0.018115466460585594,-0.014478624798357487,0.0448782853782177,-0.025306986644864082,-0.005636522546410561,0.0013770794030278921,-0.031139373779296875,-0.09456831216812134,-0.044445525854825974,0.015915507450699806,-0.09204410016536713,-0.0006619245395995677,0.007931130938231945,-0.010098997503519058,-0.002457381458953023,0.0039102621376514435,-0.04560127854347229,0.10683374106884003,0.005975787527859211,0.18763141334056854,-0.00029937573708593845,-0.014805024489760399,-0.09322439879179001,-0.003107774769887328,-0.033102452754974365,-0.010718210600316525,0.045341331511735916,-0.003349483944475651,-0.0003691520250868052,0.0433339923620224,-0.0005542852450162172,-0.0030598570592701435,-0.006458328105509281,-0.05067732557654381,0.012529212981462479,0.02278789132833481,-0.041489068418741226,-0.0057394979521632195,-0.05871758982539177,0.03502345830202103,0.007678098976612091,-0.037943314760923386,0.051843997091054916,0.005536661949008703,0.05425352230668068,-0.12326429784297943,-0.000007510030627599917,0.010640254244208336,-0.040217019617557526,0.0020559357944875956,-0.02479998953640461,0.0216620322316885,-0.07186076790094376,-0.020359868183732033,0.021702690050005913,-0.05738542973995209,0.008294097147881985,0.048503048717975616,0.01846214383840561,-0.01793498918414116,-0.05315856263041496,-0.0842871218919754,-0.06890883296728134,0.0041818153113126755,-0.01230393536388874,0.05488127842545509,-0.04012491926550865,-0.04417599365115166,-0.00003726921204361133,-0.0015723323449492455,0.025698672980070114,-0.006049599498510361,-0.09317827224731445,0.023674584925174713,0.032019756734371185,0.03814398869872093,-0.06437716633081436,-0.005751172546297312,0.101197250187397,-0.0656900703907013,0.0035146295558661222,-0.010239829309284687,-0.04682513326406479,0.04403919354081154,-0.04483843967318535,0.03662963584065437,-0.0030675497837364674,-0.044258102774620056,-0.03454495966434479,0.0127381831407547,-0.0006761087570339441,-0.09669730812311172,0.06688687950372696,0.045015688985586166,0.0012409741757437587,-0.02915436029434204,0.15849760174751282,-0.09117666631937027,-0.005764276720583439,-0.03394853696227074,-0.057861052453517914,0.08249814808368683,0.05729895085096359,-0.013581274077296257,0.054345328360795975,-0.013796037994325161,0.043619636446237564,0.04608745500445366,-7.839667535931464e-34,0.010465100407600403,-0.03443896025419235,-0.0032751199323683977,-0.031126132234930992,0.09428538382053375,0.025632113218307495,-0.03680022433400154,-0.007398227695375681,0.10151509195566177,0.06343062222003937,0.01951637864112854,-0.00820946041494608,-0.0262516550719738,-0.07837118208408356,-0.07418709993362427,0.001622108742594719,-0.024869397282600403,0.05462226644158363,0.03954586759209633,-0.00391786452382803,-0.05714019387960434,0.0053207711316645145,-0.055132847279310226,0.07523737102746964,0.04244740679860115,0.06269130110740662,0.010814720764756203,-0.044858623296022415,0.031649503856897354,0.03530280664563179,0.0582541786134243,-0.019608495756983757,0.01474987342953682,0.01913958229124546,-0.04355483129620552,-0.016844341531395912,0.00401532556861639,-0.11997462064027786,-0.007184604648500681,-0.04100283980369568,0.05967649444937706,-0.030366020277142525,-0.03343452140688896,0.04644434526562691,-0.03410441055893898,0.0010011297417804599,-0.12290720641613007,0.08892025798559189,0.050108902156353,-0.006630528252571821,0.011468147858977318,-0.009361707605421543,-0.022611215710639954,0.10050243139266968,0.000701667508110404,-0.04902936890721321,-0.019293000921607018,0.0016205089632421732,-0.042283397167921066,0.02395394630730152,0.052812620997428894,0.05131641775369644,0.004951662849634886,0.02645537443459034,-0.005084637086838484,-0.08435232192277908,-0.0012174033327028155,-0.02373708412051201,-0.08195517212152481,-0.01705966703593731,0.024096960201859474,0.020853092893958092,-0.000023578691980219446,-0.10586973279714584,-0.03728758543729782,-0.03126606345176697,0.015390073880553246,0.037067171186208725,0.03272319212555885,-0.1012408658862114,0.059155188500881195,0.09938985109329224,0.01587488502264023,0.05443888530135155,0.0003330670588184148,0.10621286183595657,0.0824902206659317,-0.026780061423778534,0.08461561799049377,-0.030299430713057518,-0.058138590306043625,-0.032323457300662994,-0.019625084474682808,-0.06176195666193962,0.02006957307457924,-5.976018588328655e-34,-0.04742474853992462,0.08496325463056564,-0.010957005433738232,0.07692193984985352,0.016450822353363037,0.01288873516023159,-0.013530204072594643,0.0063789235427975655,0.004109919536858797,-0.05942758917808533,-0.022788280621170998,0.0056784250773489475,0.01355263963341713,-0.0028359596617519855,0.07813327014446259,0.11725959926843643,0.09511393308639526,-0.08908827602863312,-0.016711635515093803,-0.008268045261502266,-0.026219019666314125,-0.01549200713634491,0.02767913229763508,0.04335232079029083,0.01509160827845335,0.07443942129611969,0.04973230138421059,0.0724293515086174,0.008690038695931435,-0.0368892177939415,0.024238957092165947,-0.025866327807307243,-0.012732247821986675,0.04636088386178017,-0.016694093123078346,-0.022222988307476044,0.015728019177913666,0.08535277098417282,-0.026995139196515083,-0.01462589856237173,-0.01908198371529579,-0.04372085630893707,-0.08621329814195633,0.12498996406793594,-0.05341015383601189,0.024839341640472412,0.04126763716340065,-0.07396290451288223,0.024259086698293686,0.04313795641064644,-0.042088497430086136,0.030286382883787155,0.03746502101421356,0.01709103211760521,-0.054729972034692764,0.10194914042949677,-0.0035495103802531958,-0.032387591898441315,0.03238349407911301,-0.058724626898765564,-0.0178513303399086,0.09399880468845367,-0.019879210740327835,-0.0375528410077095,0.014584023505449295,-0.0021300215739756823,0.0012159488396719098,-0.054799534380435944,0.021646756678819656,-0.02323381043970585,0.025877302512526512,-0.004727816674858332,-0.06004881486296654,-0.01849517412483692,0.07396316528320312,0.08278943598270416,-0.04808428883552551,-0.07256632298231125,-0.0982453003525734,0.0016936288448050618,-0.03886518254876137,0.01165580190718174,0.031602900475263596,0.015889285132288933,0.0017050520982593298,-0.038478314876556396,0.09142899513244629,0.08188887685537338,0.06290210783481598,-0.037924427539110184,-0.011877771466970444,-0.04554404318332672,0.08044193685054779,0.01638367399573326,0.022837063297629356,-2.045870495237523e-8,-0.0280827134847641,0.02587495557963848,0.0017214893596246839,0.03318137302994728,0.11870382726192474,0.013762194663286209,0.022542033344507217,0.028550613671541214,-0.06781943887472153,0.034689195454120636,-0.09652497619390488,0.04218553006649017,-0.027271568775177002,-0.04081086814403534,0.06943873316049576,-0.01907435990869999,0.008547506295144558,-0.1124642938375473,-0.03912809118628502,-0.0005578462732955813,-0.07880663126707077,0.007351582869887352,0.016484126448631287,-0.058491792529821396,-0.024410389363765717,0.04618557170033455,-0.028146998956799507,-0.04460989683866501,0.037769660353660583,0.08859626948833466,-0.006788167636841536,0.03661723807454109,0.03270642086863518,-0.08933334052562714,-0.037518810480833054,0.014737357385456562,-0.050201866775751114,0.02239370159804821,0.09506107121706009,-0.061556510627269745,-0.03498726338148117,-0.004056556150317192,0.0007403744384646416,0.06806983053684235,0.03747772425413132,-0.011878062039613724,-0.09990286827087402,-0.07454512268304825,0.04774012416601181,-0.03937387838959694,-0.04571942985057831,0.05659860000014305,0.03276819735765457,0.05327655375003815,-0.01684718020260334,-0.04728375002741814,-0.022481625899672508,-0.04720861092209816,0.1039547473192215,0.03211762383580208,-0.02973676659166813,-0.07618992030620575,-0.0047397916205227375,0.038909364491701126]},{"text":"It was also announced that the gun would be fired every year on Napoleon's birthday, as well as on the other two anniversaries.","book":"Animal Farm","chapter":63,"embedding":[-0.09601996093988419,0.11702542006969452,0.03265365585684776,-0.03443905711174011,0.012887457385659218,0.06836254149675369,-0.02222522534430027,-0.005624574609100819,-0.12045936286449432,-0.011824646033346653,0.030003316700458527,0.09774202853441238,0.06692860275506973,-0.02338300831615925,0.00862893182784319,-0.04471969231963158,-0.015232306905090809,0.0011473821941763163,0.0013881068443879485,-0.01668304018676281,0.014178176410496235,-0.03602483123540878,0.08416669070720673,0.07578190416097641,0.018190084025263786,0.02739579789340496,-0.0052667357958853245,-0.00824666116386652,-0.049974989145994186,0.06211106479167938,0.06545411795377731,-0.009724587202072144,-0.11614580452442169,-0.03187122941017151,-0.03767666220664978,-0.13460354506969452,0.006646801717579365,0.06319095939397812,0.0127359414473176,0.06319795548915863,-0.013671561144292355,-0.0492449514567852,-0.0036780829541385174,0.05842119827866554,-0.040145985782146454,0.01363755576312542,-0.03279264643788338,-0.005801706574857235,-0.022334134206175804,0.08162803202867508,-0.02413647249341011,0.02579427696764469,-0.031426649540662766,-0.0852208361029625,0.006217572838068008,-0.13410905003547668,-0.035412002354860306,0.03566210716962814,0.04154419153928757,0.023382939398288727,-0.06359724700450897,-0.018261268734931946,-0.01780649647116661,0.005685950163751841,0.02834262140095234,-0.011311756446957588,0.00295450771227479,-0.07990237325429916,0.012871803715825081,0.002979105105623603,0.04279683157801628,0.052961498498916626,0.09090996533632278,-0.06940662860870361,-0.028323743492364883,0.02628222107887268,-0.006349306087940931,0.15693466365337372,-0.005763742607086897,-0.04686083644628525,-0.05572497099637985,-0.0882764682173729,0.016865184530615807,-0.003418374340981245,0.04162183776497841,0.018703404814004898,0.07012313604354858,-0.022152982652187347,-0.0006499566370621324,0.004322079010307789,-0.01580154336988926,-0.03673985227942467,0.04851439595222473,0.042634956538677216,-0.0800105631351471,-0.03918100520968437,-0.05743783339858055,0.11402980983257294,-0.022112969309091568,0.019635150209069252,-0.06269331276416779,-0.00024221987405326217,-0.022346217185258865,0.03793547302484512,-0.008782750926911831,0.05320820212364197,-0.05277901142835617,-0.027117082849144936,-0.11544907093048096,-0.07881049811840057,0.006400850601494312,0.0023688653018325567,0.1261644810438156,-0.003257569158449769,0.04475202038884163,0.1113264411687851,-0.05406787246465683,-0.008572577498853207,0.016307486221194267,0.004563007038086653,0.05814557522535324,0.006677934434264898,-0.013073202222585678,0.02008245512843132,-0.07328183948993683,0.04684944823384285,0.02230612374842167,-2.5516437506200163e-33,0.04304293170571327,0.006329186260700226,-0.019226975739002228,0.00025334052043035626,-0.037229787558317184,-0.017578745260834694,-0.08561402559280396,0.02501760423183441,-0.005448177922517061,0.0035790756810456514,-0.021324828267097473,-0.03342871740460396,-0.05230175331234932,-0.013601343147456646,0.02020050585269928,0.0215541310608387,-0.014536339789628983,0.1197042241692543,0.061201486736536026,-0.007903181947767735,0.028564535081386566,-0.035875674337148666,-0.04436482489109039,-0.008381477557122707,0.02740759216248989,0.16839265823364258,0.0030618091113865376,0.05820215493440628,-0.07249575853347778,0.015971627086400986,0.020170466974377632,0.025761298835277557,0.027752945199608803,-0.00020692420366685838,-0.0153511893004179,-0.09840013831853867,-0.016671203076839447,-0.05004606023430824,-0.01830133982002735,0.005109969526529312,0.08251263201236725,-0.042093515396118164,-0.1009744182229042,0.002072995062917471,0.000589299772400409,-0.015488012693822384,-0.005679854657500982,-0.006301480811089277,0.11882494390010834,-0.06613947451114655,0.035227056592702866,-0.037553586065769196,0.021957971155643463,0.012483833357691765,0.0499742291867733,0.04500075429677963,-0.06632094085216522,-0.01194151584059,0.11442938446998596,-0.040920767933130264,0.06716405600309372,0.05346284806728363,0.03944922611117363,0.049924254417419434,-0.028486350551247597,0.014822668395936489,0.07960197329521179,0.07779361307621002,0.08175112307071686,0.020739445462822914,0.030888421460986137,-0.0016752510564401746,0.005932040512561798,-0.14220236241817474,0.05228749290108681,0.03883769363164902,0.09819351136684418,-0.05947180464863777,0.026864396408200264,0.014924748800694942,0.0224556103348732,-0.05278506129980087,0.034831952303647995,0.024784782901406288,0.006734772119671106,0.03227405995130539,0.06736499816179276,-0.022348860278725624,-0.0860796868801117,0.052218373864889145,0.002904445631429553,-0.07092009484767914,-0.026905836537480354,0.04232851043343544,0.03253743425011635,-1.6107901256307281e-34,0.043480921536684036,0.028992250561714172,-0.04041705280542374,0.03584000840783119,-0.016466686502099037,-0.06562832742929459,-0.07347910106182098,0.04449889436364174,-0.0040367888286709785,0.027177320793271065,0.05736328288912773,-0.032096266746520996,0.00011682671174639836,0.05628379061818123,-0.0069288089871406555,0.0023622207809239626,0.03974960744380951,-0.04769272357225418,-0.10870962589979172,0.018306994810700417,-0.01403532363474369,-0.011247189715504646,-0.05042096972465515,0.0006607490358874202,-0.000034975833841599524,0.030930282548069954,-0.0050630043260753155,-0.08357296139001846,-0.06988948583602905,-0.008818182162940502,-0.09026555716991425,0.03507855907082558,-0.037492454051971436,0.0010434124851599336,0.03380643576383591,-0.03338737040758133,0.02476312778890133,-0.006346537731587887,0.04833387956023216,0.0023551825433969498,0.003471082542091608,-0.016173619776964188,-0.03583652526140213,0.06464703381061554,-0.005506180692464113,0.006679221522063017,0.028313908725976944,0.04448750987648964,0.05725327506661415,0.0560586154460907,-0.08074994385242462,-0.026866579428315163,-0.04017854854464531,-0.03949351608753204,-0.04138478264212608,0.03945017233490944,0.018364880234003067,-0.10609544813632965,-0.00985522661358118,0.12343613803386688,0.038194749504327774,-0.04076657444238663,-0.0037701220717281103,-0.06990800052881241,-0.08351492881774902,0.013585792854428291,-0.0785578116774559,0.032816555351018906,0.0718713328242302,0.12042241543531418,0.05234275013208389,-0.045755233615636826,-0.031048601493239403,0.034272268414497375,-0.10049053281545639,0.03492008522152901,0.031218573451042175,-0.014558998867869377,-0.056404951959848404,0.018815336748957634,-0.07924053817987442,0.019771208986639977,-0.07866434007883072,0.03224044665694237,-0.03855765983462334,0.03316352143883705,-0.05541353300213814,-0.005357552785426378,0.043759752064943314,-0.047870852053165436,-0.034241802990436554,-0.06239116191864014,-0.016753586009144783,0.005026618018746376,-0.019346268847584724,-2.7323556750502576e-8,0.033099375665187836,0.13975073397159576,0.0037007357459515333,-0.0038546205032616854,0.03996746987104416,-0.05305361747741699,0.00765304546803236,0.02288992702960968,-0.0038558044470846653,-0.0075037251226603985,0.04012501612305641,0.022775834426283836,0.012732425704598427,-0.014545037411153316,0.0259466040879488,-0.002428879262879491,0.0049001313745975494,-0.0264064222574234,-0.03161545842885971,-0.03356113284826279,0.03488996997475624,-0.05069112777709961,0.09717030078172684,-0.026245739310979843,-0.10924870520830154,-0.05143260583281517,-0.02408718131482601,0.022778719663619995,-0.00369432894513011,0.051402729004621506,-0.01392086036503315,-0.06286343187093735,-0.02255839854478836,-0.12333620339632034,-0.013994821347296238,0.01764523983001709,0.02785959281027317,-0.0001114256156142801,0.03640708327293396,-0.10029331594705582,0.033854253590106964,-0.03803083673119545,-0.012032274156808853,0.07273358851671219,0.03305773437023163,0.040126971900463104,0.006060080602765083,-0.05737060308456421,-0.06746510416269302,0.044763438403606415,-0.034352485090494156,0.07115050405263901,-0.06044534221291542,-0.01806204579770565,0.04018598049879074,0.06199471279978752,-0.012431412003934383,-0.08724791556596756,0.02167227305471897,-0.09865403920412064,-0.0029596707317978144,0.011944033205509186,0.014312167651951313,-0.015544602647423744]},{"text":"Oh, how my soul is on Fire when I gaze at thy Calm and commanding eye, Like the sun in the sky, Comrade Napoleon!","book":"Animal Farm","chapter":63,"embedding":[-0.06203509122133255,0.011674663983285427,0.021058736369013786,-0.017694855108857155,0.06424704194068909,0.009868710301816463,0.10410143435001373,-0.05354873836040497,0.012230219319462776,0.009876896627247334,-0.016024764627218246,-0.00933236163109541,0.05839495733380318,-0.05230242386460304,-0.03385099396109581,0.009249716065824032,0.012525828555226326,-0.018486356362700462,-0.038001056760549545,0.0473056435585022,-0.04836185649037361,0.038589272648096085,0.07444535195827484,0.0517844557762146,-0.020297912880778313,0.013548209331929684,0.04201749712228775,0.00029869884019717574,-0.011989431455731392,-0.009537245146930218,0.054388146847486496,0.02096516452729702,-0.08158493041992188,0.029518576338887215,0.01224956102669239,-0.00426504435017705,0.008662896230816841,0.008355606347322464,0.028811847791075706,0.049228180199861526,-0.051354244351387024,-0.04343448206782341,-0.08994361758232117,0.02550962194800377,0.020244712010025978,0.026311561465263367,-0.034743357449769974,-0.022480614483356476,0.07711879909038544,-0.011709758080542088,-0.10398924350738525,0.05964436009526253,-0.0593736432492733,0.02886161021888256,-0.03909318894147873,-0.021603571251034737,-0.02003360725939274,0.07404712587594986,0.04147080332040787,-0.004607655573636293,-0.07485409080982208,0.04587503522634506,0.010845971293747425,0.013277551159262657,0.022448986768722534,-0.03708132356405258,-0.02064913883805275,-0.01162217278033495,-0.042331255972385406,0.0014961152337491512,0.015237676911056042,0.03961826488375664,0.07795868813991547,-0.08945219963788986,-0.18101894855499268,-0.02513202652335167,0.018397832289338112,-0.0408971831202507,0.009452490136027336,0.03081907331943512,0.06624392420053482,-0.00923293549567461,-0.014494898729026318,0.03873024880886078,0.014841296710073948,-0.010995620861649513,0.06327755004167557,0.013572942465543747,0.08265857398509979,0.1084585040807724,-0.06308059394359589,-0.02334110252559185,-0.004968432243913412,0.07230935245752335,-0.0680643618106842,-0.034489840269088745,0.050196077674627304,0.07721859216690063,-0.09641777724027634,0.06329703330993652,0.036646079272031784,-0.025329018011689186,-0.05659432336688042,0.03222300484776497,-0.03453253209590912,0.014891750179231167,-0.02341100573539734,0.023473381996154785,-0.026596268638968468,-0.048473287373781204,0.03326552361249924,-0.055691707879304886,-0.01946585811674595,0.014293179847300053,0.0470939502120018,0.007948929443955421,-0.06229086220264435,-0.11151798814535141,-0.06988965719938278,0.028819110244512558,0.09299509972333908,0.027508752420544624,0.011009987443685532,0.12085915356874466,0.09062068909406662,-0.07553520053625107,-0.0010783523321151733,-1.3800862956825258e-33,0.0295768603682518,0.06798423081636429,0.003628692589700222,0.035443101078271866,-0.08701275289058685,0.011402576230466366,-0.08917920291423798,0.03245549276471138,-0.10873381793498993,0.0974649116396904,-0.07227592915296555,0.06954677402973175,-0.007767363917082548,0.09381982684135437,-0.07289557158946991,-0.010659032501280308,-0.04753115773200989,0.06548918038606644,0.0022679707035422325,-0.012585156597197056,-0.13557842373847961,0.011779439635574818,0.018192298710346222,0.010331312194466591,0.03427167981863022,0.06523708999156952,0.013866733759641647,-0.001203262945637107,-0.0363583117723465,0.053784411400556564,0.00662290770560503,-0.028056101873517036,0.02368251234292984,0.023188577964901924,-0.022191837430000305,-0.03695865347981453,-0.08087868988513947,-0.04909578338265419,-0.013316791504621506,0.049539484083652496,-0.0004950401489622891,0.06847833096981049,0.019894914701581,0.05945359170436859,0.008717748336493969,0.002794575411826372,-0.04666526988148689,0.041780754923820496,-0.01512245275080204,-0.03350365161895752,-0.08788374811410904,0.03897103667259216,0.0891856849193573,0.008917801082134247,0.11992095410823822,0.017196012660861015,0.026549210771918297,0.07329166680574417,0.015862511470913887,-0.06162654608488083,-0.04265427961945534,-0.09318695217370987,-0.004851969424635172,-0.03667556494474411,0.04112662374973297,-0.05093369260430336,-0.11165814101696014,0.0026775512378662825,0.036766957491636276,-0.022059544920921326,0.018159138038754463,-0.008589123375713825,0.029532285407185555,-0.011200410313904285,0.004883055109530687,-0.02300283871591091,0.0647936761379242,0.0295571219176054,-0.06455904990434647,-0.011037495918571949,-0.008110898546874523,-0.03398534655570984,-0.015122149139642715,0.014589610509574413,0.061214447021484375,0.013372056186199188,0.0872550904750824,-0.08986274898052216,-0.1114644855260849,0.04844297096133232,-0.06719769537448883,-0.0486905463039875,0.06151567026972771,-0.055842798203229904,-0.06606049835681915,1.3090946102520176e-33,0.07523483037948608,-0.031816378235816956,0.0356735959649086,0.05656285583972931,-0.026388633996248245,0.01695532165467739,-0.013962397351861,-0.0009182436624541879,-0.06851465255022049,0.09677048772573471,0.025031983852386475,-0.011285114102065563,0.00837479718029499,0.012322632595896721,0.00007495655154343694,-0.036776840686798096,0.05161280184984207,0.030956728383898735,-0.05105967074632645,0.014909851364791393,-0.07847636938095093,0.007870257832109928,0.021973567083477974,0.020339876413345337,-0.10098987072706223,0.056514836847782135,0.06893261522054672,-0.04870660603046417,-0.0525209866464138,0.015369844622910023,-0.021952122449874878,0.015590519644320011,-0.13331903517246246,0.024313969537615776,0.08093204349279404,0.03574144467711449,-0.027347460389137268,-0.049851495772600174,-0.03296726942062378,-0.018953004851937294,-0.02850845269858837,0.02945604920387268,0.042437437921762466,-0.04835112765431404,-0.028662612661719322,-0.07695361971855164,-0.023211518302559853,0.03891915827989578,-0.08987373113632202,0.05902425944805145,-0.07190100103616714,-0.050128597766160965,-0.05145636945962906,0.00326823559589684,-0.0352838896214962,-0.05612641200423241,-0.003692642319947481,-0.037691880017519,0.03601446747779846,-0.030569182708859444,0.09538866579532623,-0.05519191548228264,0.018741147592663765,0.028123505413532257,-0.011840241961181164,0.01794683374464512,-0.06502994894981384,0.15489213168621063,0.06346511095762253,0.14417949318885803,0.04601183161139488,-0.07837243378162384,-0.054108958691358566,0.07432101666927338,0.030848080292344093,0.03661445900797844,0.08345802873373032,-0.03428066149353981,-0.005900914780795574,-0.03932078182697296,-0.044575002044439316,-0.054187480360269547,0.016625462099909782,0.0001672574580879882,-0.03621691092848778,0.05688486993312836,-0.035375017672777176,0.018670788034796715,0.027021799236536026,-0.001261686673387885,-0.03457145392894745,-0.01626281626522541,-0.018553853034973145,-0.022521182894706726,0.045675378292798996,-2.852690350607645e-8,-0.06363832205533981,0.007189292926341295,0.05590371787548065,0.06340077519416809,0.03308676928281784,-0.058029890060424805,0.022876502946019173,-0.061568424105644226,-0.07712221145629883,-0.04796214401721954,0.04146404191851616,-0.0051895324140787125,0.06682431697845459,0.049776893109083176,0.09533841907978058,0.05013653263449669,-0.035026226192712784,-0.0005853403126820922,-0.027019070461392403,-0.04614584520459175,-0.017027832567691803,0.03937382996082306,0.1000584065914154,-0.01125533226877451,-0.05167610943317413,0.03647153824567795,-0.04913322255015373,-0.0003051159146707505,-0.004473095294088125,0.08103136718273163,0.07664996385574341,0.015146669000387192,-0.04062957316637039,-0.09463232755661011,-0.03265805542469025,-0.010642875917255878,0.00805974192917347,0.018963679671287537,-0.0028616408817470074,-0.02745053358376026,-0.04825325682759285,0.0312836579978466,0.040964387357234955,0.013995914719998837,-0.012482212856411934,0.0028508189134299755,0.10401002317667007,-0.010398905724287033,0.0016564568504691124,0.006370074115693569,0.054585762321949005,0.023183204233646393,0.012160382233560085,0.002263623056933284,0.03212984278798103,-0.02791372686624527,0.008825072087347507,0.032110925763845444,0.0023513627238571644,-0.0256329532712698,0.04265565797686577,0.0349431112408638,-0.08560867607593536,-0.13655981421470642]},{"text":"The Project Gutenberg eBook of Frankenstein; or, the modern prometheus This eBook is for the use of anyone anywhere in the United States and most other parts of the world at no cost and with almost no restrictions whatsoever.","book":"1984","chapter":1,"embedding":[-0.06895366311073303,-0.005932506173849106,0.05058707669377327,0.006769060622900724,-0.0027545420452952385,-0.010524497367441654,-0.09497785568237305,0.046261612325906754,-0.05997893586754799,-0.00262629147619009,-0.037703365087509155,0.04109789803624153,-0.04188523441553116,0.041061881929636,-0.09931910783052444,-0.009862437844276428,0.02336021699011326,0.02773514948785305,0.07323635369539261,-0.005802116356790066,0.013686318881809711,0.042355503886938095,0.04038509726524353,0.0037595301400870085,0.011053701862692833,-0.05201895907521248,0.04981572553515434,-0.08334233611822128,-0.02799467369914055,-0.05990961939096451,-0.0217225831001997,-0.008669168688356876,-0.001185550238005817,-0.0886649563908577,0.05670920014381409,0.005813750438392162,0.03340506926178932,-0.02237248606979847,0.021692052483558655,0.019829701632261276,-0.07647009938955307,0.03672168776392937,-0.05830893665552139,0.0624491386115551,-0.04239542409777641,-0.008899267762899399,-0.08558094501495361,-0.0021464878227561712,-0.007563785649836063,0.023635661229491234,-0.07813527435064316,-0.0708358958363533,-0.013140274211764336,-0.0769769549369812,0.03590373322367668,-0.001432663295418024,0.048992134630680084,0.019926810637116432,-0.014683122746646404,-0.08008205890655518,0.010535751469433308,-0.033824700862169266,-0.020917639136314392,0.020798273384571075,-0.032650526612997055,0.11232899129390717,0.009287320077419281,0.08111397176980972,-0.05517680570483208,-0.04460490122437477,-0.06729215383529663,-0.011953151784837246,0.04323163256049156,-0.02217884175479412,0.051137931644916534,-0.1021779477596283,-0.02284766547381878,-0.07567165046930313,-0.04066057130694389,0.03135691210627556,-0.06576652824878693,0.0004610246396623552,-0.0015594306169077754,-0.08173220604658127,-0.024157432839274406,0.07367587089538574,0.02315436489880085,0.06525422632694244,0.047342028468847275,0.06823698431253433,0.007869632914662361,-0.04865911602973938,-0.012528469786047935,-0.015878591686487198,-0.018133215606212616,0.09751248359680176,0.004561704117804766,-0.002396797528490424,0.042258698493242264,0.01098642684519291,-0.04399345815181732,-0.07682325690984726,0.03177299723029137,0.019681047648191452,0.0134926438331604,-0.03234199434518814,-0.002530178055167198,-0.0017261859029531479,0.0080344807356596,0.022258415818214417,0.014296015724539757,-0.03524789586663246,0.03237564116716385,0.04013298451900482,0.060015302151441574,-0.06443995982408524,0.05086097866296768,0.011510838754475117,0.0814666673541069,0.04968283325433731,0.008923952467739582,0.0666438490152359,-0.046223584562540054,0.017953790724277496,-0.028621921315789223,0.009034030139446259,0.007909339852631092,1.717240207852932e-33,0.051868461072444916,0.02352808602154255,0.006368988659232855,0.018869392573833466,0.029510363936424255,-0.030891362577676773,-0.006136204116046429,0.04843730106949806,-0.060257814824581146,-0.040147051215171814,-0.05789888650178909,-0.02177511528134346,-0.024672837927937508,0.07004439830780029,-0.0591624490916729,-0.0077107492834329605,0.01969161443412304,0.10546199232339859,0.027627620846033096,0.02547426149249077,0.009743495844304562,-0.07003888487815857,-0.02613593265414238,-0.03695497661828995,-0.045989345759153366,0.021270275115966797,-0.023412151262164116,0.006171387154608965,0.08689793944358826,0.01821332983672619,-0.04016737639904022,-0.006772428750991821,-0.026313113048672676,-0.05828019231557846,0.007590221241116524,0.023383352905511856,-0.06491558998823166,-0.030244754627346992,-0.018149293959140778,0.025251133367419243,-0.021040651947259903,0.0725068747997284,-0.018981195986270905,-0.006558439694344997,0.030379127711057663,0.030015558004379272,0.08652414381504059,0.06934632360935211,0.07452072203159332,-0.05326421186327934,-0.10134904086589813,0.015968238934874535,-0.005614589434117079,-0.07243464142084122,0.04461163654923439,0.06376384198665619,0.00025376208941452205,0.010135894641280174,0.09429534524679184,-0.014055468142032623,0.07620591670274734,0.10674945265054703,0.06362691521644592,-0.020660268142819405,0.06530283391475677,0.052706461399793625,-0.05956069752573967,0.07673519849777222,-0.013978102244436741,-0.009886365383863449,-0.12614873051643372,-0.033847834914922714,0.07497212290763855,0.040578681975603104,-0.007190626580268145,0.04331895709037781,0.04224782809615135,-0.05793595314025879,0.004213987849652767,-0.13675406575202942,-0.15326254069805145,-0.023411978036165237,-0.028223436325788498,0.00006101703911554068,0.005173176527023315,0.03402409330010414,-0.010811524465680122,0.012240375392138958,0.002275321166962385,0.09278886020183563,-0.021195270121097565,-0.08066873997449875,-0.10517353564500809,-0.04932250455021858,-0.027835147455334663,-2.669873319386791e-33,-0.01402791403234005,-0.14257533848285675,-0.023527048528194427,0.013528627343475819,0.028018979355692863,-0.017030108720064163,-0.1079835370182991,0.07480504363775253,0.0204478669911623,0.024243487045168877,-0.07211219519376755,0.00683292793110013,0.09194013476371765,-0.007900859229266644,0.023417314514517784,-0.021460741758346558,0.002276031533256173,-0.057364560663700104,0.012314720079302788,-0.007847646251320839,-0.08931870013475418,0.015421315096318722,-0.024586904793977737,-0.09198000282049179,0.018074940890073776,0.031712278723716736,-0.026211321353912354,0.023494821041822433,-0.06871550530195236,-0.045267120003700256,-0.026197323575615883,-0.06835773587226868,-0.019348204135894775,-0.004220184870064259,-0.05262630060315132,0.05557435005903244,0.03479123115539551,0.015418261289596558,0.04821007698774338,-0.0354229100048542,0.0061994935385882854,-0.03089594468474388,-0.07854048907756805,0.05010751262307167,0.029627928510308266,0.02267519384622574,-0.06125953793525696,0.00449329661205411,0.005356041248887777,-0.03512382134795189,0.01922566257417202,0.05470231920480728,0.05493207648396492,-0.08904814720153809,-0.06577583402395248,-0.05299197882413864,-0.0015781240072101355,-0.05581239238381386,0.0778958648443222,0.15548592805862427,-0.011873872950673103,-0.005018011201173067,-0.041361793875694275,0.1182459369301796,-0.01726119965314865,-0.010403054766356945,-0.07393832504749298,0.07670968770980835,-0.13251018524169922,0.08679104596376419,-0.030413204804062843,0.004497132264077663,-0.010647444054484367,0.011116132140159607,0.035098228603601456,0.07523099333047867,-0.043189018964767456,0.0075311665423214436,-0.00818425603210926,0.027264660224318504,0.0702480673789978,-0.007361848838627338,0.011661072261631489,0.07582274079322815,0.04341287538409233,-0.021772317588329315,-0.05171295627951622,0.029156241565942764,-0.06608705222606659,-0.00895245186984539,-0.09508737921714783,-0.019461030140519142,0.0045333001762628555,-0.004524100571870804,0.04831757768988609,-3.9467654033842337e-8,0.03439648076891899,0.07952108234167099,0.07306436449289322,-0.0531201995909214,-0.02305535227060318,0.05506172403693199,0.05482484772801399,0.009786947630345821,-0.0728750079870224,0.03498801216483116,-0.09370065480470657,-0.09222095459699631,0.062431450933218,0.05859241634607315,0.01743813045322895,0.03485022857785225,0.10566285252571106,-0.029664194211363792,-0.03586083650588989,0.0019520050846040249,0.07624532282352448,0.0484188050031662,0.035386018455028534,-0.08662381023168564,-0.03264626860618591,0.06807874888181686,0.04089381918311119,-0.03398025408387184,-0.03703782707452774,-0.007632403634488583,-0.043270934373140335,0.07005662471055984,0.07779776304960251,-0.014396598562598228,0.010110748000442982,0.020688021555542946,-0.08901073038578033,0.03828708082437515,-0.05178767815232277,0.011003336869180202,0.0400085411965847,-0.00582998339086771,-0.041253264993429184,0.003242626553401351,0.02790440060198307,0.010609263554215431,0.05710878223180771,-0.052985161542892456,-0.006595382932573557,0.10846439749002457,0.054917603731155396,-0.03836601972579956,0.05879182368516922,0.020619021728634834,0.04586587846279144,0.0020592615474015474,0.04139137640595436,-0.029184726998209953,-0.091901034116745,0.01756356656551361,0.09815186262130737,-0.021569324657320976,0.08230835944414139,0.016375580802559853]},{"text":"I try in vain to be persuaded that the pole is the seat of frost and desolation; it ever presents itself to my imagination as the region of beauty and delight.","book":"1984","chapter":1,"embedding":[-0.016205189749598503,0.07800213247537613,0.05756901949644089,0.04321267083287239,0.012187576852738857,0.0034996604081243277,0.08642981946468353,0.02570735663175583,0.07697921246290207,0.06122812628746033,-0.06779474020004272,0.0072036185301840305,-0.011851231567561626,-0.08607351779937744,-0.0015550217358395457,-0.08251476287841797,-0.035247813910245895,-0.03175278753042221,0.06768035888671875,0.06731997430324554,0.033066023141145706,-0.022962385788559914,0.010841118171811104,0.03264662250876427,-0.070649653673172,0.05485218018293381,-0.0902438834309578,0.05820653587579727,0.02697221003472805,-0.03174346312880516,-0.05105803161859512,0.023535005748271942,-0.0003798402030952275,-0.003729757387191057,0.03182113915681839,0.027140824124217033,0.06754282861948013,-0.13522425293922424,0.014295242726802826,-0.045111529529094696,0.06485255062580109,0.03343169391155243,-0.002268836135044694,-0.009291104041039944,0.03688126429915428,0.05379698798060417,0.013050088658928871,0.01953437365591526,0.0024170540273189545,-0.03331150487065315,-0.028590405359864235,-0.02937193028628826,0.017919646576046944,-0.043787162750959396,-0.022978762164711952,0.09042420238256454,0.046218141913414,-0.060773465782403946,0.028457295149564743,-0.00808920431882143,-0.006290202960371971,0.031261567026376724,-0.032140158116817474,0.06942245364189148,0.112124964594841,-0.11872178316116333,-0.07823361456394196,-0.06989819556474686,-0.0030047243926674128,-0.005202732980251312,0.045562323182821274,0.0470590740442276,-0.023643920198082924,-0.009362122043967247,-0.04986316338181496,0.020810307934880257,-0.03649454191327095,-0.03600025922060013,-0.00894971378147602,0.024992257356643677,0.03845229744911194,0.03487774357199669,0.0011734671425074339,0.05117306858301163,-0.03770012408494949,-0.027220116928219795,-0.0014683020999655128,-0.061204228550195694,-0.01604233682155609,-0.03693942725658417,-0.02295949123799801,0.004132354632019997,-0.1333424299955368,-0.009633008390665054,-0.13537202775478363,0.04671312868595123,-0.002747745718806982,0.011652274057269096,-0.028179729357361794,0.05099894851446152,0.03228718787431717,-0.019204584881663322,0.052621979266405106,-0.04168957471847534,-0.02893313765525818,-0.07645522803068161,-0.05683299899101257,-0.03557083010673523,-0.0007089391001500189,-0.08182176947593689,-0.05492714047431946,-0.09452664107084274,0.03323779255151749,0.07529336959123611,-0.027929164469242096,0.04112771525979042,-0.03969208523631096,-0.07635920494794846,-0.012444638647139072,0.07355571538209915,0.005203085020184517,0.06958148628473282,0.06638874113559723,0.11107923835515976,-0.04474427551031113,-0.02723059430718422,-0.027045344933867455,-3.141239758239813e-33,0.013242486864328384,0.022389162331819534,0.07299124449491501,-0.021600203588604927,0.10599497705698013,-0.0009427363984286785,-0.014071342535316944,0.11022085696458817,-0.014391555450856686,0.017718037590384483,0.022148247808218002,-0.040860213339328766,0.03558165952563286,0.01116903219372034,-0.03227849304676056,-0.02117772400379181,0.017058173194527626,-0.04674579203128815,-0.004701848607510328,-0.005658384878188372,0.038964685052633286,0.056925300508737564,0.04369490593671799,-0.10026269406080246,-0.019528156146407127,0.04878424480557442,-0.02987346611917019,0.036432649940252304,-0.025227099657058716,0.05338338762521744,0.05232438072562218,0.0034725156147032976,-0.013245603069663048,-0.0010569920996204019,0.026019060984253883,-0.03926454856991768,0.0491645373404026,-0.048039257526397705,-0.08050195872783661,0.026569560170173645,0.002069053938612342,-0.13092848658561707,-0.036233071237802505,0.08172053843736649,0.0057630701921880245,0.05103250965476036,0.06586159765720367,-0.024584125727415085,-0.06274843961000443,0.0013133120955899358,0.02534015104174614,0.06912701576948166,0.0894535556435585,-0.07051361352205276,-0.005829342640936375,-0.00583052821457386,0.016048738732933998,0.0198274664580822,-0.033860232681035995,-0.05266973376274109,-0.03306589648127556,-0.01989414170384407,-0.06750600785017014,-0.07227253168821335,0.05615488812327385,-0.008608553558588028,0.00023401544603984803,-0.022592438384890556,0.02682464011013508,0.026258228346705437,-0.02897416427731514,-0.029951130971312523,0.019143348559737206,0.03456350043416023,-0.03793990984559059,0.023825885728001595,-0.0762747973203659,0.01595558226108551,0.08357909321784973,0.01729755662381649,-0.01908428966999054,0.06431976705789566,-0.002840648405253887,-0.02789182960987091,0.04719773679971695,-0.10965143889188766,0.1091085895895958,-0.0019126271363347769,-0.03547874465584755,-0.013500546105206013,0.03261585533618927,0.004997123032808304,0.1063944548368454,-0.05906739458441734,-0.0511142760515213,-1.4474330302705232e-33,-0.028527338057756424,-0.03906494006514549,-0.06776712089776993,0.030160898342728615,-0.04922826215624809,0.020181139931082726,-0.10372570157051086,-0.009939816780388355,-0.08147532492876053,0.007663143333047628,-0.004141197074204683,-0.04285630211234093,0.08691612631082535,0.029623117297887802,0.0510142520070076,-0.003141118446364999,-0.08331634104251862,0.03862487152218819,-0.0687805712223053,0.019364526495337486,-0.004461594391614199,0.012340500019490719,-0.021900305524468422,-0.009666677564382553,-0.05569136515259743,0.0008549371268600225,0.1380009800195694,-0.12028160691261292,-0.04379374906420708,0.04092688858509064,-0.11305395513772964,-0.0005093650543130934,-0.07146474719047546,-0.0639408528804779,-0.026805035769939423,0.04643118754029274,-0.019529076293110847,-0.06227356567978859,-0.05751105770468712,-0.031389083713293076,0.013412456028163433,-0.039310675114393234,0.15333987772464752,0.002855605911463499,0.0908099114894867,-0.13924573361873627,-0.008087712340056896,0.09001216292381287,-0.01228549238294363,0.066719651222229,-0.07043089717626572,-0.034830786287784576,0.0015552678378298879,0.0015578852035105228,-0.010802860371768475,-0.031987302005290985,-0.07253548502922058,-0.04647114500403404,0.02769502066075802,0.0600716769695282,-0.01061368826776743,-0.040344931185245514,-0.07071699947118759,0.022732695564627647,0.07843805849552155,-0.015202328562736511,-0.013691507279872894,0.003474889788776636,-0.0033966454211622477,0.04530351608991623,0.005543266888707876,-0.033894047141075134,-0.0574643611907959,-0.011555125936865807,0.029746809974312782,0.03528241440653801,0.10555195808410645,0.05992235243320465,-0.005645024590194225,-0.036573685705661774,-0.02527209185063839,0.006516422610729933,0.03820664435625076,-0.005602794699370861,0.051108505576848984,-0.07474963366985321,-0.08069434016942978,-0.0021825809963047504,-0.08662272244691849,0.035739604383707047,-0.04511807858943939,0.01843365840613842,-0.03638497367501259,-0.018562017008662224,0.03547465801239014,-3.3343297900501057e-8,0.020195210352540016,0.06919463723897934,-0.0033947320189327,0.037354204803705215,0.07937807589769363,-0.026225620880723,0.01217142678797245,-0.1019333153963089,-0.10410060733556747,-0.0017718150047585368,-0.005796187091618776,0.038410402834415436,0.033507950603961945,0.05670340359210968,0.06629856675863266,0.06965244561433792,-0.03437218815088272,-0.031327005475759506,-0.04710521921515465,0.06118972972035408,0.006545121781527996,-0.003742252243682742,0.03385292366147041,-0.09880198538303375,-0.05649258941411972,-0.0028349203057587147,-0.006205986253917217,-0.023938056081533432,0.02818017266690731,0.02679954282939434,-0.03446017950773239,-0.010448640212416649,-0.0123568931594491,-0.01012510247528553,0.053669314831495285,0.027873700484633446,-0.03431231155991554,-0.03222059831023216,0.04337713494896889,-0.04994381591677666,0.037489037960767746,0.07247362285852432,-0.022477926686406136,0.05370654910802841,0.01126215048134327,0.0714796707034111,0.04009828716516495,0.044496241956949234,-0.03930819407105446,0.04872893914580345,-0.09216579049825668,-0.05310440808534622,0.02643759176135063,0.06630971282720566,-0.0015814139042049646,0.003400981891900301,0.019433800131082535,-0.019398216158151627,-0.10776620358228683,0.04421483725309372,0.09185798466205597,0.0001048035774147138,-0.054164402186870575,-0.001017640344798565]},{"text":"I have read with ardour the accounts of the various voyages which have been made in the prospect of arriving at the North Pacific Ocean through the seas which surround the pole.","book":"1984","chapter":2,"embedding":[-0.04053405672311783,0.04139111191034317,-0.01297199446707964,0.0825425535440445,0.014352097176015377,-0.013836061581969261,-0.011383619159460068,0.04442538693547249,-0.08761461079120636,0.07020769268274307,-0.02678236924111843,0.008766213431954384,-0.029477858915925026,0.010142547078430653,-0.006173725239932537,0.05347904935479164,-0.06262946873903275,-0.06472421437501907,0.08860050141811371,-0.04052461311221123,-0.04885347560048103,-0.06442943960428238,-0.033584557473659515,-0.03339586779475212,0.0027730981819331646,0.014044169336557388,-0.04077612981200218,-0.06278225034475327,0.014058813452720642,-0.01825954206287861,-0.12308394908905029,0.04542328417301178,0.002579601015895605,0.05436324700713158,0.039013758301734924,0.12140484154224396,0.04915645718574524,-0.0504722073674202,-0.033136267215013504,0.01821022853255272,0.005617915652692318,0.04662685468792915,0.07442270219326019,0.055072054266929626,-0.0004292624944355339,-0.049759265035390854,0.022568339481949806,0.016796013340353966,-0.014856492169201374,0.062280621379613876,-0.014509833417832851,-0.04129091277718544,0.05586777999997139,-0.1328161358833313,0.007338839117437601,0.06577679514884949,-0.006571169011294842,-0.1397211104631424,0.0648886039853096,-0.004719496238976717,0.03154782950878143,-0.04319213330745697,-0.06288214027881622,-0.008874025195837021,0.028587007895112038,-0.04030343145132065,-0.06086137518286705,0.009835016913712025,0.0057287863455712795,0.002201226307079196,-0.010122478939592838,0.0037654838524758816,-0.10440664738416672,0.010000145994126797,-0.03075438179075718,-0.04011397436261177,-0.022994281724095345,-0.0021591519471257925,-0.09692516177892685,-0.018792275339365005,0.0025517400354146957,0.04993579164147377,-0.03427603840827942,0.013600602746009827,0.05417484790086746,-0.00919998437166214,0.03308798372745514,-0.036070287227630615,0.029938753694295883,0.020481416955590248,0.03924143686890602,-0.13355936110019684,-0.007570091634988785,-0.053006552159786224,-0.05017216503620148,0.012865097261965275,-0.08099709451198578,0.006996838375926018,0.03173362463712692,-0.028020232915878296,0.1343853771686554,0.00019030591647606343,-0.006075307261198759,-0.0701596587896347,-0.050778377801179886,-0.04632929712533951,-0.026939574629068375,-0.0031507504172623158,0.02169676497578621,0.0032763471826910973,-0.12921088933944702,0.029284944757819176,0.005191848147660494,0.029344668611884117,0.027324751019477844,0.09093176573514938,0.012495473958551884,-0.04868355765938759,0.021947799250483513,-0.017467789351940155,-0.0014850980369374156,-0.01360270194709301,0.05029602721333504,0.054459888488054276,-0.07562357187271118,-0.027358349412679672,0.06494221091270447,-2.060654453960932e-33,0.06968311965465546,0.02564181014895439,-0.057232148945331573,0.03189560025930405,0.0631268173456192,0.03428107872605324,-0.00173928530421108,0.020871587097644806,0.027341756969690323,-0.01046416349709034,0.005928212311118841,0.0385611467063427,0.019459309056401253,0.0447578951716423,-0.031894441694021225,-0.008935917168855667,-0.008125034160912037,-0.05917581543326378,0.0009758976520970464,-0.07156213372945786,0.0210082046687603,-0.0372074693441391,-0.0004654065996874124,-0.0642237439751625,0.024078648537397385,-0.040855929255485535,-0.05879855155944824,-0.04904450476169586,-0.03196779638528824,0.05751793831586838,-0.025450345128774643,-0.004464833531528711,-0.003153294324874878,0.02148224413394928,0.044632550328969955,0.017797434702515602,0.04474084824323654,-0.028047094121575356,0.01879630982875824,0.08373265713453293,0.029325813055038452,-0.0266026109457016,-0.047783102840185165,0.09060880541801453,0.003323296783491969,-0.008089298382401466,0.03880082070827484,0.03138546273112297,0.08354119211435318,0.03675384074449539,-0.06270474940538406,0.00622029323130846,-0.02451055310666561,-0.10634772479534149,0.03044211119413376,0.02591961994767189,0.007480671163648367,-0.016632020473480225,-0.07086146622896194,0.012801316566765308,0.012242170050740242,0.04541265219449997,0.0008402545936405659,-0.01573089137673378,0.03554929047822952,0.06696940958499908,0.03992235288023949,-0.0732283741235733,-0.047984395176172256,-0.010397637262940407,-0.05708402395248413,-0.02773177996277809,0.0373537577688694,-0.006521628238260746,0.029870210215449333,0.05344661325216293,-0.08487243205308914,0.005812705494463444,0.05510052666068077,0.033403217792510986,-0.09229756891727448,0.0703163743019104,0.03209051117300987,0.049861807376146317,-0.05269103869795799,-0.02100387029349804,0.10783088207244873,0.01793038100004196,0.0376722514629364,-0.029038146138191223,-0.023905394598841667,-0.021392248570919037,0.07791132479906082,-0.09056129306554794,-0.08386318385601044,3.193561011794913e-35,-0.027897465974092484,0.019156845286488533,-0.03638684004545212,-0.052335310727357864,-0.060344696044921875,-0.044895950704813004,0.0008192820241674781,0.027626410126686096,-0.027739103883504868,-0.06587234884500504,-0.12492699176073074,-0.06589535623788834,0.1001429483294487,0.08449036628007889,0.03994455933570862,-0.06783454120159149,0.03737955167889595,0.10848643630743027,-0.017293212935328484,-0.044125035405159,0.042835794389247894,-0.10015557706356049,0.011504791676998138,-0.024279499426484108,-0.009004618041217327,0.05458906665444374,0.16936147212982178,-0.10250308364629745,-0.10214675217866898,0.01110124122351408,-0.06349894404411316,0.15332527458667755,0.014234496280550957,-0.04736156389117241,-0.08631065487861633,0.08367004245519638,0.020458906888961792,0.09482455253601074,-0.008585793897509575,-0.05585319548845291,0.00523244496434927,-0.014116796664893627,0.06172918155789375,-0.06396164000034332,-0.05574857443571091,-0.014971599914133549,-0.021548762917518616,0.0867985337972641,-0.02739953063428402,0.019023649394512177,-0.046620871871709824,-0.017735572531819344,0.07725464552640915,-0.007577836047858,-0.007963564246892929,-0.020068807527422905,-0.06681467592716217,-0.05516483262181282,0.03885866329073906,0.02156408317387104,-0.06888706982135773,0.00985659845173359,-0.03550594300031662,-0.01899143122136593,0.05741524696350098,-0.03589615225791931,0.07172934710979462,0.015807989984750748,-0.020362595096230507,-0.01971987634897232,-0.05580054223537445,0.010035100392997265,-0.010472632944583893,0.0600818432867527,0.017851928249001503,-0.00043077178997918963,-0.02059793472290039,-0.020933212712407112,-0.029223894700407982,-0.022046977654099464,-0.02788037434220314,0.014124395325779915,-0.01658104546368122,-0.021015383303165436,-0.005811566952615976,0.04513251408934593,-0.011729366146028042,-0.060784272849559784,0.022698823362588882,-0.041147567331790924,-0.002905962523072958,-0.0067300694063305855,-0.08257432281970978,-0.021761396899819374,0.001369439298287034,-2.8249317551853892e-8,0.12688595056533813,0.03587856888771057,0.025282934308052063,0.06304041296243668,0.0106565672904253,-0.008854037150740623,-0.019340593367815018,0.03239887207746506,-0.03490192070603371,0.05102343112230301,-0.0688057467341423,0.08117038756608963,0.0715533122420311,0.015184866264462471,0.08150699734687805,0.0015143987257033587,0.07017239928245544,-0.0016155324410647154,-0.01566375605762005,0.001994212856516242,0.04243943467736244,0.07650002837181091,0.052155040204524994,-0.08181244134902954,0.008790102787315845,0.08009009063243866,0.023694783449172974,-0.029286623001098633,0.0658283606171608,-0.013282692059874535,-0.001681942492723465,0.029366346076130867,-0.04494510218501091,-0.03523748740553856,0.07241417467594147,0.01207894366234541,-0.017235804349184036,-0.06616951525211334,-0.05102468654513359,-0.02881152741611004,-0.010112518444657326,0.18904277682304382,-0.02587418258190155,0.08045311272144318,0.03386703133583069,0.03853732347488403,-0.025319302454590797,-0.0037368563935160637,-0.032565146684646606,0.01873382367193699,-0.05166574940085411,-0.0413527749478817,0.06456969678401947,0.013393616303801537,0.06038029119372368,0.03896714374423027,-0.01837334595620632,-0.10806909948587418,-0.02766837365925312,0.0662773996591568,0.004304546397179365,0.025695497170090675,-0.019143003970384598,0.04173002019524574]},{"text":"I accompanied the whale-fishers on several expeditions to the North Sea; I voluntarily endured cold, famine, thirst, and want of sleep; I often worked harder than the common sailors during the day and devoted my nights to the study of mathematics, the theory of medicine, and those branches of physical science from which a naval adventurer might derive the greatest practical advantage.","book":"1984","chapter":2,"embedding":[-0.013483230955898762,0.09497585147619247,0.038488052785396576,0.07515241205692291,-0.01055331714451313,-0.009832010604441166,0.019246341660618782,0.016079984605312347,-0.09635763615369797,0.05757282301783562,-0.0601922944188118,-0.04903353378176689,0.004424418322741985,0.1001032292842865,0.01881706528365612,-0.007695343811064959,-0.060193367302417755,-0.0148900942876935,0.0074674878269433975,0.039366304874420166,-0.10651222616434097,0.043051041662693024,-0.008256124332547188,0.027609556913375854,-0.02297583967447281,0.04977421462535858,0.030486242845654488,-0.03533349931240082,0.0008127643959596753,0.015015410259366035,-0.09424804151058197,-0.0010558280628174543,0.05069563537836075,-0.0026172951329499483,0.017704570665955544,0.052532121539115906,0.03711222857236862,0.00016292401414830238,0.02814490534365177,0.07393041253089905,-0.015656154602766037,-0.01016099750995636,0.10688243806362152,0.08433350175619125,-0.019942495971918106,-0.06545636057853699,0.022934917360544205,0.0029053823091089725,-0.007413537707179785,0.07211145758628845,0.012326686643064022,-0.02529374323785305,-0.07983839511871338,-0.02869897522032261,0.052489712834358215,0.01251038908958435,-0.033042121678590775,-0.04824943095445633,-0.008401011116802692,-0.058607883751392365,0.004818766377866268,0.023221401497721672,0.028029195964336395,0.0009296538191847503,0.035934269428253174,-0.008638572879135609,-0.04551374167203903,0.043955378234386444,-0.009899855591356754,0.03790393844246864,-0.011221283115446568,-0.010976226069033146,-0.04120467230677605,0.02853812463581562,-0.015756504610180855,-0.06449969112873077,0.05106927827000618,-0.055757392197847366,0.025479890406131744,0.001702643116004765,-0.026093436405062675,-0.04915773868560791,-0.08358658850193024,0.06784612685441971,0.005635540466755629,-0.025779981166124344,0.03695611283183098,-0.055303435772657394,0.03137320280075073,-0.03429785743355751,0.04156509414315224,-0.12788045406341553,-0.04521507769823074,-0.05276043340563774,-0.022929947823286057,0.0056315260007977486,-0.07193201780319214,0.03828977048397064,-0.026665301993489265,0.04306735098361969,0.07584893703460693,-0.03232240676879883,-0.004034359008073807,0.0489981546998024,0.017077656462788582,-0.03063923306763172,-0.012447104789316654,-0.0679665133357048,0.025105463340878487,-0.03699791058897972,-0.07837636768817902,0.09946268796920776,-0.012164301238954067,0.06623519957065582,0.00722887646406889,0.04173804447054863,-0.06530921906232834,0.017876245081424713,0.030138341709971428,0.039511654525995255,0.019713087007403374,0.04227420315146446,0.09348820149898529,0.011220941320061684,-0.07151563465595245,-0.029037820175290108,0.05171653628349304,-1.6258945622314474e-33,-0.026095280423760414,-0.07240243256092072,0.012113401666283607,0.08416100591421127,0.0697844848036766,-0.029732855036854744,-0.05525840446352959,0.0006464172038249671,0.046679262071847916,-0.003185539972037077,0.015836888924241066,0.13130319118499756,0.002993909642100334,0.05040014907717705,-0.013661467470228672,0.05715982988476753,-0.08477810770273209,-0.07418034225702286,-0.0192706398665905,-0.014382694847881794,0.04396696016192436,0.011501412838697433,0.04861757904291153,0.00020762153144460171,-0.027816085144877434,-0.025995884090662003,0.005779605358839035,-0.09189343452453613,0.0011909176828339696,0.04861137270927429,0.030952807515859604,-0.028987960889935493,-0.057003267109394073,-0.04658210650086403,0.04829947277903557,-0.0011744925286620855,0.021941786631941795,-0.07067886739969254,0.02160458080470562,-0.01017120573669672,-0.04098527505993843,-0.005290953908115625,0.09777167439460754,-0.003672612365335226,0.03643970936536789,0.047377586364746094,0.06587236374616623,0.036432649940252304,-0.041153885424137115,-0.005478988401591778,-0.09433823078870773,-0.03905873745679855,-0.01078448910266161,-0.14059458673000336,0.04093446210026741,-0.02962481416761875,0.003126377472653985,0.06284793466329575,-0.09423379600048065,0.014369637705385685,-0.038459133356809616,-0.011538690887391567,0.05302185192704201,-0.0049681877717375755,-0.018203524872660637,0.04534052684903145,-0.014223906211555004,-0.08688729256391525,0.02782367542386055,-0.07562988996505737,-0.08222053945064545,-0.005363380536437035,-0.01498719397932291,-0.1039605438709259,-0.028143340721726418,0.022273363545536995,0.035595204681158066,-0.03676733374595642,-0.07689296454191208,-0.04290024936199188,0.008564738556742668,-0.017414800822734833,-0.016766883432865143,0.048247937113046646,0.05959412455558777,0.01798558421432972,0.028191309422254562,-0.158927783370018,0.06768503040075302,-0.036412715911865234,-0.01796584390103817,-0.044644080102443695,0.027757316827774048,-0.1075582206249237,-0.032939061522483826,-1.0343190404919655e-33,-0.02482980489730835,-0.017291627824306488,0.0033229959663003683,-0.04379034787416458,0.07524315267801285,-0.09566033631563187,0.016710322350263596,-0.06086543947458267,-0.031725864857435226,0.007427633740007877,-0.07815992087125778,0.012766952626407146,-0.013814693316817284,-0.004598261322826147,-0.000716507260221988,-0.04982773959636688,-0.020197754725813866,0.0795198306441307,-0.016465118154883385,-0.05373728275299072,0.02197292447090149,0.02221701480448246,0.007914392277598381,-0.07890969514846802,0.04146164283156395,0.06959759443998337,0.00981508195400238,-0.001461551059037447,-0.039761099964380264,-0.03926253318786621,0.039555516093969345,0.14096224308013916,0.014866155572235584,-0.10755786299705505,-0.07621830701828003,0.10069973021745682,0.02961631491780281,0.081703320145607,-0.04487919434905052,-0.06148029491305351,0.03211809694766998,-0.03408417850732803,0.09607087820768356,-0.02274850383400917,-0.011111708357930183,0.026735303923487663,-0.06342194229364395,-0.0034117484465241432,0.0009150637779384851,0.0511021614074707,0.007082283031195402,-0.027343425899744034,0.04250174015760422,-0.04890655726194382,0.060303326696157455,-0.020103657618165016,-0.0008038314990699291,-0.09730006754398346,0.09299825876951218,-0.014839676208794117,-0.05565876513719559,-0.007479453459382057,-0.049422215670347214,0.06475644558668137,-0.019675638526678085,-0.027269357815384865,-0.017406979575753212,0.04466830566525459,-0.08396284282207489,-0.027130339294672012,-0.037704888731241226,0.002853191690519452,0.0016889761900529265,0.03064086101949215,-0.04656428098678589,0.03412587568163872,-0.07220593094825745,0.012791037559509277,-0.00873243622481823,0.018262043595314026,-0.09606354683637619,-0.08611111342906952,0.027688337489962578,0.009226697497069836,-0.044996265321969986,0.005872019100934267,0.029355615377426147,-0.010521460324525833,0.0600958988070488,-0.13071022927761078,0.010412552393972874,-0.029237383976578712,-0.007895694114267826,-0.014146778732538223,0.04506697133183479,-3.713120122483815e-8,0.04804593324661255,0.01032734103500843,0.030455805361270905,0.06361398100852966,0.006719205994158983,-0.019419359043240547,-0.06732271611690521,0.07199230045080185,-0.04660508409142494,0.03598643094301224,-0.022244999185204506,0.08219968527555466,0.0909598171710968,0.06811294704675674,0.13279183208942413,-0.0062189060263335705,0.06399599462747574,-0.05438018962740898,-0.04707128554582596,-0.0733746886253357,0.036506690084934235,0.015212164260447025,-0.022037941962480545,-0.05553780868649483,-0.08775655925273895,0.07905400544404984,0.03759414330124855,0.022517215460538864,0.04806281998753548,0.01757534220814705,0.02544683963060379,0.03860679641366005,-0.10971220582723618,0.004705405328422785,-0.011565199121832848,-0.017654165625572205,-0.05313792824745178,-0.059834446758031845,-0.04310320317745209,0.02889440394937992,-0.04834786430001259,0.13418281078338623,0.04263337701559067,0.08678403496742249,0.065650075674057,0.03546111285686493,0.016266589984297752,0.05993278697133064,0.02227342128753662,0.026125475764274597,0.007657949812710285,0.04036484286189079,0.03748343512415886,0.027360348030924797,0.006220111157745123,0.04144209250807762,-0.033604562282562256,-0.02113453485071659,-0.1223178505897522,0.04719705507159233,0.08418253809213638,-0.004632467404007912,-0.11287645250558853,0.0020572119392454624]},{"text":"I have no ambition to lose my life on the post-road between St.","book":"1984","chapter":3,"embedding":[0.11546443402767181,0.02389761246740818,0.002479412592947483,0.035714901983737946,-0.004023388959467411,0.032333120703697205,-0.04312891140580177,-0.0024970199447125196,-0.013647391460835934,-0.04110105335712433,-0.067421555519104,-0.04697144404053688,-0.04037268087267876,-0.05189485847949982,-0.035754043608903885,-0.048666492104530334,-0.05450887978076935,-0.05723626911640167,0.06283297389745712,0.04416567087173462,0.012295443564653397,0.01502902340143919,-0.06566198170185089,0.007772726006805897,0.02958853542804718,0.07783611118793488,0.012972782365977764,-0.016804303973913193,-0.03636833652853966,-0.03273447975516319,0.08808596432209015,-0.024870017543435097,-0.03571813181042671,0.0023802502546459436,0.08588162809610367,-0.010743615217506886,0.03851780667901039,-0.08443912863731384,0.07608091831207275,0.06417647004127502,0.014405125752091408,0.04714270681142807,-0.0016302061267197132,0.021289316937327385,0.02824173867702484,-0.08131958544254303,0.00631792563945055,-0.035569608211517334,-0.011999414302408695,-0.083235964179039,0.039567362517118454,-0.046568505465984344,-0.0866251289844513,-0.027481932193040848,-0.007966809906065464,0.06801056116819382,0.023101946339011192,0.06436827033758163,-0.0021154501009732485,-0.036108992993831635,0.028106261044740677,0.03109946846961975,0.0018082470633089542,-0.015296149998903275,0.029927177354693413,0.04285736382007599,0.06105887517333031,0.026789013296365738,0.019405042752623558,0.03807682543992996,-0.06946134567260742,-0.034651629626750946,-0.07135606557130814,0.01317012682557106,0.020315103232860565,0.029517771676182747,0.0009101330069825053,-0.028109239414334297,0.034256238490343094,0.06660165637731552,-0.009637902490794659,0.036505285650491714,-0.12338235974311829,0.10169723629951477,-0.055611513555049896,-0.024099573493003845,0.01945332996547222,-0.01709561049938202,0.1491105705499649,-0.004406425636261702,-0.06419801712036133,0.01304625254124403,-0.05409179627895355,0.0024001440033316612,-0.035015229135751724,-0.0016137263737618923,-0.03318830206990242,0.04125257208943367,-0.06456580013036728,0.0617590956389904,-0.08745887875556946,0.04066920652985573,0.024248428642749786,0.06754518300294876,0.03130703046917915,0.07606793940067291,-0.032208338379859924,0.04579225182533264,-0.03429555147886276,-0.008574333041906357,0.034132324159145355,-0.027929993346333504,0.004058367572724819,-0.019197184592485428,-0.00869019515812397,0.05968857556581497,-0.05232987925410271,0.03930283710360527,0.0026503554545342922,0.0490243099629879,-0.08650455623865128,0.05282158777117729,-0.031022891402244568,0.061782337725162506,-0.058665867894887924,-0.08602425456047058,0.014892910607159138,-4.102044759563795e-33,-0.018887458369135857,-0.04394914582371712,0.09651809930801392,-0.0029260923620313406,0.05780470743775368,-0.04515935853123665,-0.06764141470193863,-0.004782827105373144,0.02188771963119507,0.030945153906941414,0.08505700528621674,-0.03762894123792648,0.021585529670119286,-0.11520439386367798,0.1248827576637268,-0.008237291127443314,0.06348210573196411,-0.011568397283554077,0.041474323719739914,0.012285674922168255,0.05215837061405182,0.006483649834990501,0.0000455562949355226,-0.023852583020925522,0.0005075440276414156,-0.0538543164730072,0.019087351858615875,-0.020253997296094894,-0.01555301807820797,-0.008172912523150444,-0.0717916414141655,0.12265213578939438,0.028948340564966202,-0.027458015829324722,0.03782204911112785,-0.01771230809390545,-0.0833459347486496,-0.027556613087654114,0.009118158370256424,0.05237448215484619,-0.07854373008012772,-0.03547775000333786,0.016426345333456993,0.03432096913456917,0.06477630883455276,-0.006093345582485199,0.050998203456401825,-0.06301037222146988,-0.015466758981347084,-0.02032567374408245,0.012527809478342533,-0.019888125360012054,-0.061262600123882294,0.029178734868764877,-0.04069666191935539,-0.08548636734485626,0.002441019518300891,0.01370127685368061,0.008899986743927002,-0.041936393827199936,0.00731411250308156,-0.019417088478803635,-0.016740133985877037,0.043956175446510315,0.05858120694756508,0.0014031119644641876,-0.07657534629106522,0.004880817607045174,0.020966922864317894,-0.01736944541335106,0.00739284185692668,-0.014591549523174763,-0.0343388132750988,-0.07312491536140442,0.04658280685544014,0.012384895235300064,-0.07525360584259033,-0.028411949053406715,0.07166074216365814,0.00724494643509388,0.03570607304573059,0.09118073433637619,-0.08664672821760178,-0.020638903602957726,0.2365381419658661,-0.017209146171808243,0.03959732875227928,-0.0961286872625351,0.02497592568397522,0.03534698858857155,-0.04203980043530464,-0.005411601159721613,-0.032263342291116714,-0.006386927794665098,-0.005776008125394583,2.4026814330639697e-33,-0.0063072084449231625,-0.05609455704689026,0.05529871582984924,0.029340101405978203,-0.039706118404865265,0.035952456295490265,0.06475981324911118,-0.028084468096494675,0.08602439612150192,0.10952451825141907,-0.01930251158773899,-0.039842039346694946,0.041931334882974625,0.10234004259109497,0.024575164541602135,-0.0498623363673687,0.022740229964256287,0.026262398809194565,-0.15454165637493134,0.030152594670653343,-0.006761536002159119,0.07394839823246002,-0.0838392823934555,0.01723732054233551,-0.02443079836666584,-0.01745680160820484,0.022043779492378235,0.032696936279535294,-0.09078334271907806,-0.0365925058722496,0.05600522458553314,0.01687573455274105,-0.05416933074593544,-0.1069687083363533,-0.015334272757172585,0.07109277695417404,-0.015911830589175224,0.036216672509908676,0.014708996750414371,-0.04939422756433487,0.0038831469137221575,-0.05283637344837189,0.05333247035741806,-0.024717994034290314,0.042071372270584106,0.01582852192223072,0.020780101418495178,0.017252657562494278,0.04866914451122284,0.055827658623456955,0.0426199808716774,0.10837101191282272,-0.05598791316151619,0.021389104425907135,0.07618579268455505,-0.08109390735626221,0.022599011659622192,-0.03816428780555725,0.00607713358476758,-0.0313921794295311,0.04541825130581856,0.03639247268438339,-0.04156382009387016,0.10230102390050888,0.13937363028526306,-0.06559331715106964,-0.02842193841934204,-0.007352318614721298,0.002915889024734497,-0.05804096907377243,-0.017097610980272293,-0.013036624528467655,-0.027537235990166664,-0.05223723500967026,0.026735851541161537,-0.05904961749911308,0.0013801383320242167,0.05184119567275047,-0.014550529420375824,-0.0647544115781784,0.018271788954734802,-0.031155014410614967,-0.013987017795443535,0.013396118767559528,0.014657367020845413,0.052283477038145065,-0.04909539222717285,-0.056740835309028625,0.02316686324775219,0.06605849415063858,0.010885745286941528,0.042941633611917496,-0.007546965032815933,-0.03800853714346886,-0.02663438580930233,-2.0151988522343345e-8,0.031979214400053024,0.0011729066027328372,0.022290660068392754,0.06783489137887955,0.013521527871489525,-0.019077707082033157,-0.017528751865029335,-0.054720163345336914,0.0084516117349267,0.07932177931070328,-0.0022606533020734787,-0.0001576588983880356,-0.0014151819050312042,0.009196985512971878,-0.01855451427400112,0.006995676085352898,0.043859824538230896,-0.08779449760913849,-0.0013893331633880734,-0.04645416513085365,-0.09101933985948563,-0.03195774182677269,-0.03476645424962044,-0.016918068751692772,-0.0010424680076539516,-0.04457516968250275,0.13843132555484772,0.0023886931594461203,0.0624653585255146,-0.0005382141098380089,0.03772222250699997,-0.007684546057134867,-0.022626524791121483,0.045427355915308,-0.026416532695293427,-0.10468649864196777,0.04274936020374298,0.10236800462007523,-0.02086195908486843,0.044231876730918884,-0.0518791489303112,0.038493961095809937,0.04504641890525818,0.05348584055900574,-0.13094180822372437,0.036426980048418045,0.0018525260966271162,0.048650890588760376,-0.03164033219218254,0.007063084281980991,0.004418111871927977,-0.0016308336053043604,-0.040120575577020645,0.009988207370042801,-0.011504136957228184,0.022161895409226418,0.0017130071064457297,0.043877456337213516,-0.10558899492025375,0.06774245947599411,0.06030893325805664,-0.10390351712703705,-0.0942695364356041,-0.04950980842113495]},{"text":"Yet a second step is taken towards my enterprise.","book":"1984","chapter":3,"embedding":[0.020228398963809013,-0.019078273326158524,0.046210866421461105,-0.03892222046852112,0.017344539985060692,-0.037461329251527786,0.009504735469818115,-0.014282070100307465,0.019789349287748337,0.0008621339220553637,0.00040678915684111416,0.043180737644433975,-0.013238486833870411,-0.012652711011469364,0.0461072102189064,-0.011305773630738258,-0.012854428961873055,-0.05774085596203804,0.012082505039870739,0.0236921738833189,-0.1130109503865242,-0.06348541378974915,0.010836043395102024,0.011512349359691143,-0.0015707885613664985,-0.041402120143175125,0.032866861671209335,0.07494034618139267,0.023687617853283882,-0.07738923281431198,0.02772603929042816,0.006151743233203888,-0.007783580105751753,0.07045778632164001,0.04342126473784447,-0.00777393439784646,0.00644886028021574,-0.0014547078171744943,-0.02182200364768505,-0.047374971210956573,0.10311982035636902,-0.09494820237159729,-0.07887425273656845,0.014844642020761967,-0.03199344873428345,-0.0343390516936779,-0.009081367403268814,-0.027469860389828682,0.022067418321967125,-0.020683934912085533,-0.055540379136800766,-0.02885482646524906,-0.013409744948148727,-0.03174480423331261,0.017427220940589905,0.08399409055709839,0.06336123496294022,0.0388786606490612,0.0032672840170562267,-0.0580335333943367,0.018909938633441925,-0.057501766830682755,0.002442695200443268,0.049083590507507324,0.007278921082615852,0.08995476365089417,0.012079039588570595,-0.04420923441648483,-0.08298807591199875,0.002520838053897023,0.008534465916454792,-0.07977523654699326,-0.04705769568681717,0.06855927407741547,0.0004158967058174312,-0.06335926800966263,0.044567856937646866,0.004919302649796009,0.099619559943676,-0.08914279192686081,-0.03962036594748497,0.02377132512629032,-0.05084015056490898,0.03840033710002899,-0.08939629048109055,-0.03093862533569336,0.06523311138153076,-0.07190687209367752,0.07772887498140335,0.025735756382346153,0.023891987279057503,-0.07449177652597427,0.015409278683364391,-0.02410997450351715,0.06284046173095703,0.06799693405628204,-0.030208270996809006,-0.0695338323712349,-0.06221122294664383,0.03685872256755829,-0.013081412762403488,0.06525111943483353,-0.02588427998125553,-0.06804031133651733,-0.08239588141441345,-0.054810937494039536,0.0195415448397398,0.017894919961690903,0.038068730384111404,0.015815362334251404,0.012695979326963425,-0.03308062255382538,0.06520622968673706,-0.0027587611693888903,0.016654878854751587,0.06876258552074432,-0.07971362769603729,0.08452244848012924,0.05812479555606842,-0.019246302545070648,0.026864590123295784,0.05925193428993225,0.0021259188652038574,0.04495790973305702,-0.018279200419783592,-0.02894730679690838,-0.024381358176469803,-5.084686037822239e-33,-0.09078279882669449,0.10483765602111816,-0.011911431327462196,0.013965851627290249,-0.03740647807717323,-0.0003790203481912613,-0.013082491233944893,-0.005399896763265133,-0.06862755864858627,-0.029569244012236595,-0.016135048121213913,0.02666090615093708,0.023616038262844086,-0.005670790560543537,-0.03866800293326378,-0.12427246570587158,0.01742282137274742,0.12825021147727966,0.09685573726892471,-0.018425561487674713,0.06106964498758316,-0.085744708776474,0.0335051454603672,-0.04221758618950844,0.07541190832853317,-0.027025509625673294,-0.04347260668873787,0.025147024542093277,0.03710417076945305,0.013014872558414936,0.02326016128063202,0.007312260568141937,-0.013593964278697968,-0.011866590939462185,0.013285805471241474,-0.029842017218470573,0.008193889632821083,-0.07906825095415115,0.004063690546900034,-0.027718281373381615,-0.11591891944408417,0.03920232877135277,0.012988210655748844,-0.04771234095096588,-0.0009861805010586977,-0.011340768076479435,0.03979942575097084,-0.08238787949085236,0.007805753964930773,0.04737681895494461,-0.010279584676027298,-0.0004586471477523446,0.09719040244817734,0.015901761129498482,0.04469647631049156,-0.013500423170626163,0.037288472056388855,-0.086065873503685,0.031975213438272476,0.00013458232569973916,-0.0012352470075711608,0.03827165812253952,-0.07483485341072083,0.08998922258615494,-0.014643753878772259,0.07882771641016006,0.017927706241607666,0.08149305731058121,0.013120576739311218,0.038317520171403885,-0.0013292921939864755,-0.06583381444215775,0.008132916875183582,-0.049755729734897614,0.028862876817584038,0.012855145148932934,-0.03885708004236221,-0.0645090639591217,0.05682481825351715,-0.03557203337550163,-0.09809033572673798,-0.014265794306993484,-0.056036483496427536,0.04859499633312225,0.14910888671875,0.012624967843294144,0.010241427458822727,-0.06106765195727348,-0.020136358216404915,0.06209021061658859,-0.07782420516014099,0.04499717801809311,-0.02229660376906395,0.12512239813804626,0.016640380024909973,2.978209528369308e-33,0.023905301466584206,-0.04276612028479576,0.0021191949490457773,-0.009998023509979248,0.031047595664858818,-0.046652425080537796,0.04201018065214157,-0.0512799508869648,-0.02407408133149147,0.08520100265741348,0.02965182438492775,-0.014855597168207169,-0.03434887155890465,-0.035643961280584335,0.027943558990955353,-0.04510127753019333,0.15609386563301086,0.029100079089403152,0.04359818622469902,-0.004422896075993776,-0.04281022027134895,0.052279505878686905,-0.04744574800133705,0.0948757752776146,0.004757659509778023,0.05893128365278244,0.03453819826245308,0.014096852391958237,-0.014738894067704678,-0.08515919744968414,-0.017834387719631195,-0.004916934296488762,-0.11464019119739532,0.019609272480010986,0.03655440732836723,-0.022869713604450226,-0.031126374378800392,-0.0054213665425777435,-0.049777377396821976,-0.04378661513328552,0.017833562567830086,-0.018825342878699303,-0.030876077711582184,0.0514623299241066,-0.05849780514836311,-0.02518754079937935,0.09715582430362701,0.03672246262431145,-0.05760999023914337,-0.023838268592953682,-0.06202733889222145,-0.018996573984622955,0.06097109243273735,-0.0032498135697096586,-0.083109050989151,0.04563765227794647,0.08897821605205536,0.021197820082306862,-0.06318558007478714,0.011119144037365913,0.021318921819329262,0.021880969405174255,0.05638142675161362,0.06841151416301727,0.04327914118766785,-0.021738432347774506,-0.010033268481492996,0.08496461063623428,-0.03335093706846237,-0.03835483640432358,-0.009901848621666431,-0.016687914729118347,-0.08871811628341675,-0.002124758204445243,-0.0012114180717617273,-0.06910129636526108,0.03661483898758888,-0.06443756818771362,0.025003446266055107,-0.011121008545160294,0.00825867336243391,-0.028407419100403786,0.02166750282049179,-0.010526007041335106,-0.0033311524894088507,-0.017542840912938118,-0.0350969061255455,-0.05054745450615883,0.04203244298696518,0.006659789942204952,-0.1221214085817337,-0.01739165186882019,-0.026298940181732178,0.11871155351400375,-0.03296080231666565,-1.9610029156069686e-8,-0.06927793473005295,-0.052661243826150894,0.11304770410060883,0.05112932622432709,0.09158672392368317,-0.006279940251260996,-0.04571845754981041,0.06750347465276718,-0.046007685363292694,-0.0705229789018631,-0.013131429441273212,-0.003772201482206583,0.021994376555085182,0.12557397782802582,0.07334782183170319,0.02707424759864807,-0.04883195832371712,-0.037875328212976456,-0.05659664794802666,-0.04035337269306183,-0.032759714871644974,0.030476873740553856,0.04232797771692276,-0.050496168434619904,-0.06582588702440262,0.037768445909023285,0.045238666236400604,0.047014277428388596,0.043867867439985275,-0.02959364466369152,0.015365177765488625,-0.013508054427802563,-0.05878482013940811,0.0913277119398117,-0.00022949874983169138,-0.012206540443003178,0.026083296164870262,0.09154079109430313,0.006935053039342165,-0.007799288257956505,-0.040348902344703674,0.0494348518550396,0.02191263437271118,0.06243951991200447,-0.09153880178928375,0.0550907664000988,-0.10558890551328659,-0.008024712093174458,0.017699968069791794,-0.05884941667318344,0.05322284251451492,-0.04671705514192581,0.052189894020557404,0.09732194989919662,0.04932211712002754,0.006594417151063681,-0.016370056197047234,0.010520909912884235,-0.06380069255828857,0.1183687224984169,0.0985558032989502,-0.08144225180149078,0.04985267296433449,0.003817992750555277]},{"text":"Now I am twenty-eight and am in reality more illiterate than many schoolboys of fifteen.","book":"1984","chapter":4,"embedding":[0.06655020266771317,0.025204932317137718,0.06693872809410095,-0.026862168684601784,0.04331411048769951,0.00302328635007143,0.03510259464383125,0.03851395845413208,0.0375305637717247,0.006374557502567768,0.09092365950345993,0.026298368349671364,0.003048092359676957,-0.0035846105311065912,0.027778081595897675,-0.04231078922748566,0.009529410861432552,-0.02769191935658455,-0.07840336859226227,-0.1224326565861702,-0.06322447955608368,0.08740336447954178,-0.045110445469617844,-0.008297951892018318,-0.011886442080140114,0.09363620728254318,-0.07762425392866135,-0.14436669647693634,-0.08749814331531525,0.028061337769031525,-0.018787575885653496,0.047014687210321426,-0.026344245299696922,-0.07108531892299652,0.004341419320553541,-0.05283576622605324,0.010770093649625778,-0.0052381460554897785,0.0415978878736496,0.001304270583204925,0.0029313075356185436,-0.09018465876579285,-0.08192712813615799,0.030008118599653244,0.09541793167591095,-0.07984229177236557,-0.07131901383399963,0.008351071737706661,0.08992846310138702,0.026202388107776642,-0.05748341977596283,-0.051567576825618744,0.05660068243741989,0.003322587814182043,0.000014518088391923811,0.0424191951751709,-0.03358742594718933,0.13593098521232605,0.0007397131412290037,-0.009629272855818272,-0.06137857213616371,-0.012745271436870098,-0.01188722439110279,0.017652276903390884,-0.020714648067951202,0.0339636355638504,0.04693282023072243,-0.04470045119524002,0.03242669999599457,0.07102838903665543,0.0020084066782146692,0.037198927253484726,-0.030028866603970528,0.056307774037122726,0.008587232790887356,-0.0057225837372243404,-0.011469865217804909,-0.026495661586523056,0.13383939862251282,0.05557257682085037,-0.023796333000063896,0.057437896728515625,-0.017855657264590263,-0.03380909934639931,-0.005251437891274691,-0.06771869957447052,-0.01264085341244936,-0.006716778501868248,-0.009695837274193764,-0.013435227796435356,-0.015179519541561604,-0.055386390537023544,-0.012349200434982777,0.14216899871826172,0.028256358578801155,-0.06263018399477005,0.043739162385463715,0.022304747253656387,-0.049671344459056854,0.06216704472899437,0.0023605944588780403,0.024819113314151764,0.049277275800704956,0.04497646540403366,-0.03496737778186798,0.014841013588011265,0.06582102924585342,-0.040278878062963486,-0.048535335808992386,-0.061766915023326874,0.001988572534173727,-0.042292460799217224,-0.008580038323998451,0.00559030007570982,0.03659814968705177,-0.00230884226039052,0.03975137695670128,0.03158597648143768,0.03962433710694313,0.062099892646074295,-0.04120158404111862,0.038586102426052094,-0.020346568897366524,0.0793360024690628,-0.02802281454205513,-0.10840645432472229,-0.040455736219882965,1.2977451204593323e-33,0.0061173406429588795,0.07383427768945694,-0.031230855733156204,0.1162450760602951,0.02119944803416729,-0.009432067163288593,0.041951682418584824,0.06359819322824478,-0.03968598693609238,-0.05616728588938713,0.11286095529794693,-0.02976236306130886,-0.07255754619836807,0.013818320818245411,0.07422273606061935,0.018087802454829216,-0.05147634074091911,0.02511276863515377,0.01307581551373005,0.02762770839035511,-0.000564197835046798,0.009033425711095333,-0.00038089018198661506,-0.07805534452199936,0.012166183441877365,-0.014424437656998634,-0.009248240850865841,0.011289471760392189,-0.02314685843884945,0.006177253555506468,0.07626868039369583,0.0019969716668128967,-0.04757343605160713,-0.03498426824808121,-0.06732919812202454,-0.0776786282658577,0.18522289395332336,-0.04790114983916283,0.00901806354522705,-0.03494195267558098,0.028142783790826797,0.007462599780410528,0.033801402896642685,0.008816053159534931,0.04259146749973297,0.11239226907491684,0.007967685349285603,-0.030502211302518845,-0.048736441880464554,-0.019548708572983742,-0.1414581835269928,0.07761078327894211,-0.08993999660015106,-0.06759228557348251,0.021236900240182877,-0.043398771435022354,-0.01874489337205887,0.0675651878118515,0.010636133141815662,-0.04682474210858345,0.042136624455451965,0.05612042173743248,0.01135491393506527,-0.002283048117533326,-0.005192273762077093,0.02134569175541401,0.011612634174525738,-0.04379626363515854,0.10190492868423462,-0.01098323892802,-0.027514224871993065,-0.058121975511312485,-0.036992721259593964,0.06064745411276817,-0.01117890514433384,-0.009384135715663433,-0.02997693046927452,-0.08480675518512726,-0.008594226092100143,-0.025932613760232925,0.13157157599925995,0.029115406796336174,0.018223607912659645,-0.05698638781905174,0.07857942581176758,-0.05905565619468689,0.05565427988767624,-0.0438414104282856,0.0904165506362915,-0.09146218746900558,-0.01804371364414692,-0.04075034707784653,0.048828329890966415,-0.052116625010967255,-0.05842315033078194,-2.1367017752904338e-33,0.04428800567984581,0.04677240923047066,-0.02323230914771557,0.04532036930322647,-0.023758582770824432,-0.03788772225379944,0.09291870892047882,0.054743893444538116,-0.017930764704942703,-0.0657619759440422,-0.02170102670788765,0.021897489205002785,-0.02682790905237198,0.03910784050822258,0.010336597450077534,-0.021361161023378372,0.008573653176426888,0.0019709079060703516,-0.08254113048315048,-0.015483110211789608,-0.05011456087231636,0.008016188628971577,-0.09096355736255646,0.012192525900900364,-0.05307910591363907,-0.032326702028512955,0.005868653301149607,-0.02286483347415924,-0.08631345629692078,0.06961856037378311,0.05307019129395485,0.024323923513293266,0.01684034988284111,0.0026627383194863796,-0.06709133088588715,-0.02381727658212185,-0.03954427316784859,-0.06611856818199158,-0.06970363855361938,-0.016314318403601646,0.05581336468458176,-0.07567740231752396,0.040340740233659744,-0.03983230143785477,-0.045087072998285294,0.01481717824935913,0.024797186255455017,-0.020261922851204872,-0.002930797403678298,0.05372025817632675,0.03195579722523689,0.0203012116253376,0.01921626552939415,-0.06583168357610703,-0.024249272421002388,-0.012890766374766827,0.04314642772078514,-0.043088722974061966,-0.01631338708102703,0.07431180775165558,0.0015530816745012999,-0.03557959944009781,-0.036449432373046875,-0.06022902950644493,0.03378298878669739,-0.08122582733631134,-0.08232925087213516,0.06611510366201401,-0.01338438130915165,-0.008400115184485912,0.03916339948773384,0.003978154622018337,-0.017303738743066788,-0.033939264714717865,0.00021751322492491454,-0.033384770154953,0.09118377417325974,0.06832969933748245,-0.02035708725452423,-0.045123446732759476,0.022106802091002464,0.02819647453725338,0.0013822148321196437,0.010068979114294052,-0.06684862077236176,0.024992043152451515,-0.05760456994175911,-0.036157332360744476,0.02834460139274597,0.04544806480407715,-0.019605884328484535,-0.011717680841684341,-0.004423046950250864,0.0024475743994116783,-0.06741010397672653,-2.7415557823928793e-8,0.015147832222282887,-0.03716534748673439,0.020220095291733742,0.06349924206733704,0.007940717972815037,0.0202054250985384,-0.07046280801296234,0.05643472447991371,0.03807227313518524,-0.030811354517936707,-0.03112928196787834,-0.06310682743787766,0.048157915472984314,-0.0753658339381218,0.09860898554325104,0.02748151309788227,0.051668401807546616,-0.015387115068733692,0.0005396495689637959,-0.007582629099488258,0.09194187074899673,0.08891324698925018,-0.06695446372032166,-0.015031632967293262,0.0011723312782123685,0.07527375221252441,-0.002452250337228179,0.03343190997838974,-0.09203106164932251,0.07236181199550629,0.016661837697029114,0.009952160529792309,-0.02210116945207119,-0.01125789899379015,0.0053270175121724606,-0.07340622693300247,-0.06504464894533157,0.017583467066287994,0.012499766424298286,-0.05696733295917511,-0.05031245946884155,-0.04018054157495499,0.05970221385359764,0.06530070304870605,0.004124458879232407,0.01092304103076458,0.023747537285089493,-0.054734088480472565,-0.003558511845767498,0.017666103318333626,-0.011279434897005558,0.01962966099381447,0.1635981649160385,-0.021671397611498833,0.09974613785743713,-0.042516592890024185,-0.02383439429104328,0.05740554258227348,-0.1003151684999466,0.021763434633612633,0.08749043196439743,0.00682021165266633,-0.025637539103627205,-0.07002239674329758]},{"text":"This, briefly, is his story.","book":"1984","chapter":4,"embedding":[0.05001642927527428,0.11481539160013199,0.040709108114242554,0.07721175998449326,0.004483378957957029,0.034301646053791046,0.027480190619826317,0.03227441757917404,0.01189002487808466,-0.017451319843530655,0.0013547090347856283,0.10116366297006607,0.025029752403497696,0.04193498566746712,0.03482503071427345,-0.04975588247179985,0.013634835369884968,0.05117300525307655,-0.029894886538386345,-0.02109541743993759,0.04143686965107918,0.03796761855483055,0.046444378793239594,-0.044062260538339615,0.013176162727177143,-0.045506395399570465,0.04585443064570427,0.028584623709321022,0.0604671984910965,-0.060035862028598785,-0.015399318188428879,0.02624346874654293,0.013980953022837639,-0.0018116680439561605,-0.02122003398835659,0.023716557770967484,-0.01705322042107582,0.09442266076803207,0.04306643456220627,-0.02199426107108593,0.03148283436894417,-0.05532087758183479,0.013939348049461842,0.12825196981430054,-0.004801155999302864,-0.01693323627114296,-0.02252824231982231,-0.07649587094783783,-0.026535682380199432,-0.017966831102967262,-0.10049170255661011,0.08873660117387772,0.055108923465013504,-0.09876791387796402,0.05473291873931885,0.048099666833877563,-0.014685423113405704,-0.013980095274746418,0.03925836831331253,-0.03892528638243675,0.043893035501241684,0.022764340043067932,-0.07726645469665527,0.07634200900793076,0.034504376351833344,0.007290273439139128,0.03026765212416649,0.028113124892115593,-0.06090840697288513,0.060163889080286026,0.05707535147666931,0.0323893167078495,-0.00570773147046566,-0.009098549373447895,-0.029521401971578598,-0.053232382982969284,0.040674835443496704,0.02257346734404564,0.027362190186977386,-0.03864229843020439,-0.011783993802964687,-0.008059561252593994,-0.035821784287691116,-0.02150006592273712,-0.04543478041887283,-0.0440828911960125,0.008951578289270401,-0.07086517661809921,0.015426801517605782,0.019331417977809906,-0.03246661648154259,-0.1459849625825882,0.009710256941616535,-0.009717922657728195,-0.06802848726511002,0.019757607951760292,-0.00650447653606534,-0.012909268029034138,-0.08764255791902542,0.03147508576512337,-0.007773750461637974,0.020578378811478615,0.017747504636645317,-0.014783544465899467,0.02990838885307312,-0.06924819946289062,-0.03519291803240776,0.05782203748822212,-0.045590534806251526,-0.010855582542717457,0.001267311628907919,-0.04373619332909584,-0.032637350261211395,-0.018023217096924782,0.14570164680480957,0.08096112310886383,-0.021416781470179558,-0.030966173857450485,-0.01399498712271452,0.07258382439613342,0.06499968469142914,0.09591022878885269,-0.036707326769828796,0.10826300084590912,-0.039800774306058884,-0.04722820222377777,0.02681647799909115,-1.0587505701807536e-32,0.07433155924081802,-0.06325757503509521,-0.029963577166199684,0.07203513383865356,0.10082102566957474,0.013306363485753536,-0.06830202043056488,-0.0176433976739645,-0.020760295912623405,-0.06980207562446594,-0.035347674041986465,0.06155816465616226,-0.007506075315177441,-0.005782526917755604,-0.17456373572349548,-0.01638038456439972,-0.07028771191835403,0.03216968849301338,0.04834933951497078,0.0038597136735916138,-0.01726341061294079,0.013347153551876545,-0.017250437289476395,-0.024624142795801163,0.03617472946643829,-0.004642100539058447,0.03490849584341049,-0.057182203978300095,-0.012397163547575474,0.03401142731308937,-0.07910270988941193,0.11769862473011017,-0.003950252663344145,-0.032599806785583496,0.06237063556909561,0.04637300595641136,-0.032224785536527634,-0.045596539974212646,-0.000537954387255013,0.05269734561443329,0.0030365490820258856,-0.001251803943887353,-0.03911289945244789,-0.07287238538265228,-0.012991592288017273,-0.016150837764143944,-0.052494581788778305,0.05421735346317291,0.025447281077504158,-0.01486670970916748,-0.01345999538898468,0.029246710240840912,-0.019474437460303307,-0.08269043266773224,0.02971728891134262,0.02107927016913891,-0.01831868663430214,-0.028605392202734947,0.12984059751033783,0.09930353611707687,0.0695548728108406,0.031796377152204514,-0.04803154617547989,0.026354115456342697,-0.040275443345308304,0.0209017526358366,-0.044625312089920044,-0.06327865272760391,-0.0309929046779871,-0.011323289945721626,-0.060516357421875,-0.019627250730991364,0.01927139423787594,-0.03434814140200615,-0.05229977145791054,0.012479173950850964,-0.036538995802402496,0.014838587492704391,-0.1443890929222107,0.03320913389325142,0.0051572443917393684,-0.039353881031274796,-0.006509382277727127,-0.010877929627895355,-0.06983792036771774,0.008098850958049297,0.03001232258975506,-0.11325857788324356,-0.09224232286214828,0.06047078222036362,-0.05968301370739937,0.014873341657221317,-0.015375703573226929,-0.038040027022361755,-0.00872030109167099,5.639896264286591e-33,0.012277436442673206,-0.012479844503104687,0.010663611814379692,-0.017186006531119347,0.05331004410982132,-0.07041922211647034,-0.07187055796384811,0.09099391102790833,0.022553889080882072,-0.0032001188956201077,-0.0937553271651268,0.024391530081629753,0.014991041272878647,-0.026017460972070694,0.009691152721643448,0.009198074229061604,0.06090106442570686,-0.04596589878201485,-0.04265077784657478,0.06558479368686676,0.05541487783193588,0.051220279186964035,-0.008246068842709064,-0.0029617594555020332,-0.023884255439043045,0.028979063034057617,0.037977006286382675,0.003713623620569706,-0.11457443982362747,-0.0044199759140610695,-0.03369949758052826,-0.06466397643089294,-0.039581429213285446,-0.046529922634363174,-0.059672314673662186,0.0457320511341095,-0.014149042777717113,-0.018814848735928535,-0.0064620631746947765,0.00016208748274948448,0.04867621511220932,-0.0731450691819191,0.08873635530471802,0.006426745094358921,0.0023641688749194145,0.0009235133766196668,-0.04659590125083923,0.0431138277053833,0.017289573326706886,0.04940600320696831,-0.09893646836280823,0.0051794336177408695,0.017311884090304375,0.028649749234318733,-0.0405629463493824,-0.024030420929193497,-0.058670010417699814,-0.0767335519194603,0.047695256769657135,0.022814009338617325,-0.01414527092128992,0.036486122757196426,-0.029907826334238052,0.014720875769853592,0.06746573746204376,-0.02166854962706566,-0.016133137047290802,0.016806747764348984,0.05179324373602867,-0.006707489024847746,0.0022970885038375854,-0.06842905282974243,-0.04662773758172989,-0.03684218227863312,0.0271611325442791,0.06239556521177292,-0.06688331067562103,-0.09372087568044662,-0.02456425130367279,-0.033534709364175797,-0.007060862146317959,-0.07752737402915955,0.015669595450162888,0.021347831934690475,0.01707439124584198,-0.05669540911912918,-0.05376048758625984,0.021992217749357224,0.04418063536286354,-0.014143714681267738,-0.050078827887773514,-0.06250038743019104,0.1093263179063797,0.021266672760248184,-0.0019898340106010437,-2.34046826363965e-8,-0.030235877260565758,-0.012011329643428326,-0.04949784651398659,-0.00048437085933983326,0.06716799736022949,0.15107452869415283,0.03339439257979393,-0.004860987886786461,-0.07343659549951553,0.10292520374059677,-0.0010616148356348276,0.05525980144739151,0.034171223640441895,0.032319504767656326,0.045633044093847275,-0.08042807877063751,0.13788345456123352,-0.08548469841480255,-0.015602336265146732,0.03199515491724014,0.06094658374786377,0.02952427975833416,0.05224283039569855,-0.07742548733949661,-0.036006201058626175,0.06139751896262169,-0.04738355427980423,0.039014190435409546,-0.0017217322019860148,0.007622580975294113,-0.03383735567331314,0.13925135135650635,-0.03882940486073494,0.014450564980506897,0.00854431837797165,0.03390111029148102,0.06824216991662979,0.07357817143201828,0.04637375846505165,-0.12903538346290588,0.016742045059800148,0.003184026572853327,0.06253205239772797,0.0428086556494236,0.08001899719238281,0.04415316507220268,-0.008748223073780537,-0.027859382331371307,0.0028258259408175945,0.0638408437371254,-0.06638678908348083,-0.0003875216643791646,0.07025289535522461,-0.004730026703327894,0.03332708775997162,-0.05914895609021187,-0.03898843005299568,-0.02007915824651718,-0.06021341308951378,-0.057726699858903885,0.021848255768418312,0.08746455609798431,0.02861078269779682,0.06541555374860764]},{"text":"I cannot describe to you my sensations on the near prospect of my undertaking.","book":"1984","chapter":5,"embedding":[0.006409193389117718,0.016043730080127716,-0.019413162022829056,0.017966194078326225,-0.012563856318593025,-0.05258781462907791,0.019626976922154427,0.052574966102838516,-0.052342187613248825,-0.018963536247611046,-0.03635379299521446,-0.04207437485456467,0.0462246835231781,0.0014709094539284706,-0.02473180927336216,-0.002745663747191429,0.10815855860710144,-0.0971410870552063,-0.016774537041783333,0.14980919659137726,0.011436576955020428,0.053409773856401443,-0.0036811467725783587,0.018276099115610123,-0.02864033170044422,0.02047683484852314,-0.012619596906006336,0.012110418640077114,-0.010293266735970974,-0.06710842996835709,-0.026627056300640106,0.029258787631988525,-0.05878879874944687,-0.005474258214235306,0.11889863759279251,0.0971345528960228,-0.09726779162883759,-0.01778225786983967,0.0085296044126153,-0.08054166287183762,0.00033454911317676306,-0.08985856175422668,-0.010712876915931702,-0.06448093056678772,0.07090387493371964,-0.024972455576062202,-0.03387678414583206,-0.06546046584844589,0.002929178299382329,0.013997353613376617,-0.06344053149223328,-0.11374159902334213,0.03140737861394882,-0.08224420994520187,-0.0773693397641182,-0.025306709110736847,-0.042370982468128204,-0.030683061107993126,-0.028007732704281807,-0.04813374951481819,0.04086325317621231,-0.006046383175998926,0.00684533454477787,0.004696403630077839,0.02310357615351677,-0.061371996998786926,-0.014080542139708996,-0.07258183509111404,0.027743404731154442,0.0361279658973217,0.004567764233797789,-0.01505508553236723,-0.09476121515035629,0.013492952100932598,0.0010492636356502771,-0.09107810258865356,0.03365641087293625,0.007801673375070095,0.012822507880628109,-0.04284582659602165,-0.02017628587782383,0.009051964618265629,-0.018660301342606544,0.07117348164319992,-0.11663508415222168,-0.025730770081281662,0.050014007836580276,-0.02979104407131672,0.05487750470638275,0.026505693793296814,-0.03597677871584892,-0.05577418953180313,-0.09623431414365768,-0.0280879158526659,0.015433385036885738,-0.02409021556377411,-0.03235091641545296,0.03765451908111572,-0.09841349720954895,0.042729731649160385,0.04841629043221474,0.0733296126127243,-0.0469261072576046,-0.03595136106014252,-0.0728059932589531,0.025544261559844017,-0.11632408946752548,-0.06674378365278244,-0.026320990175008774,-0.03145265206694603,-0.07688654214143753,0.007074853405356407,0.019231382757425308,-0.0413517989218235,-0.017924843356013298,0.03584557771682739,-0.05535907670855522,0.03797192871570587,0.021388813853263855,0.06108534708619118,-0.005617427174001932,-0.04248081147670746,-0.013660172931849957,-0.006040862295776606,-0.06540308147668839,-0.0946575328707695,0.029258841648697853,-6.172237982839665e-33,-0.018989114090800285,-0.07269550859928131,-0.007791758514940739,-0.008040694519877434,0.038257066160440445,-0.0029094377532601357,-0.045436665415763855,-0.014192665927112103,0.020482171326875687,0.021496230736374855,0.10930122435092926,0.06472782045602798,0.06776858121156693,0.01600051112473011,0.06715848296880722,-0.0797833502292633,0.056814856827259064,0.0007680320413783193,0.006416754797101021,-0.00039775189361535013,-0.020285220816731453,0.05890779569745064,-0.02544480934739113,0.0007205035071820021,-0.03659878298640251,-0.026654772460460663,-0.04388289526104927,-0.046118613332509995,0.02498670294880867,0.03214068338274956,0.0028699354734271765,0.11475751549005508,-0.07682868093252182,-0.0878821313381195,0.0014368101255968213,0.10286584496498108,0.019742555916309357,-0.039549604058265686,-0.01098237931728363,0.0010351157980039716,-0.025587376207113266,0.008180486969649792,0.0022481558844447136,0.01315196044743061,0.012400773353874683,0.07777008414268494,0.14382515847682953,0.005442257504910231,-0.09674245864152908,-0.019534748047590256,-0.019300758838653564,0.0755438357591629,0.0597723089158535,-0.0005542552680708468,0.04889645054936409,0.04344084486365318,0.012861279770731926,-0.007860807701945305,-0.03939672186970711,-0.0314115472137928,0.004935004748404026,-0.03933979570865631,-0.05879119783639908,0.0024755254853516817,-0.13305406272411346,0.021281998604536057,-0.05215814709663391,-0.028831355273723602,0.0033349422737956047,0.038683515042066574,-0.07760711014270782,-0.00553663307800889,-0.013754868879914284,-0.06789492070674896,0.03821265697479248,-0.07238046824932098,0.006072645541280508,0.027893884107470512,0.06657596677541733,-0.04661858454346657,-0.004064927343279123,0.014589662663638592,0.013778137974441051,0.043701205402612686,0.13665273785591125,0.04825932905077934,0.019726788625121117,-0.03177943825721741,0.02096644788980484,0.013312801718711853,-0.05474206805229187,0.018372979015111923,-0.0037217140197753906,-0.01744108460843563,-0.05210138112306595,2.1935468453862765e-33,-0.03413630649447441,0.042448461055755615,0.06805148720741272,0.051940493285655975,0.00613807700574398,-0.018373701721429825,0.005174101796001196,0.06234898790717125,-0.020576532930135727,0.043804608285427094,-0.04211749508976936,0.03382119908928871,-0.01808856800198555,-0.003893819870427251,-0.07023391127586365,0.013244053348898888,0.011135869659483433,0.060741595923900604,-0.002444483106955886,0.0012606149539351463,-0.0144343301653862,0.13189686834812164,-0.03589194267988205,-0.019520286470651627,-0.04060351103544235,0.07433158904314041,0.04167809709906578,-0.050988346338272095,-0.04737062007188797,-0.05550684034824371,0.053352613002061844,0.03995848447084427,-0.09782447665929794,-0.06003115698695183,-0.0029826092068105936,0.1117730513215065,0.0000798328110249713,0.06580419838428497,-0.06768195331096649,-0.04002935811877251,-0.03849782794713974,0.035840507596731186,0.03974755108356476,-0.009065307676792145,0.008189195767045021,-0.04612642899155617,0.004304839763790369,-0.026968086138367653,0.01973576657474041,0.0316946916282177,-0.009937386959791183,0.1175776869058609,-0.0472087562084198,-0.03230241686105728,0.02509620413184166,-0.04045893996953964,0.05067033693194389,-0.09788815677165985,0.05462706834077835,-0.05170441418886185,0.04978526383638382,0.08959541469812393,-0.03995351493358612,0.072208933532238,0.09345635771751404,0.09041951596736908,-0.02562950737774372,0.08315905183553696,0.00346126826480031,0.007509658578783274,-0.025018295273184776,-0.05766119435429573,0.017295313999056816,-0.0256003700196743,0.0793880745768547,-0.007527344860136509,-0.025622768327593803,0.013898041099309921,-0.0033702051732689142,-0.043049152940511703,0.056045517325401306,-0.0002412947651464492,0.060180339962244034,-0.034501951187849045,0.052382469177246094,-0.02491351217031479,-0.03460031747817993,0.013451622799038887,-0.025087881833314896,0.015998568385839462,-0.0014640346635133028,-0.0036335561890155077,-0.02729388140141964,-0.00732638081535697,0.08723689615726471,-2.3216028210981676e-8,-0.027706602588295937,-0.0770053118467331,0.06038821116089821,-0.05454818904399872,0.01648329757153988,-0.0024830347392708063,-0.03000655211508274,-0.06397181004285812,-0.04749054089188576,-0.006975286174565554,-0.018008841201663017,0.019577424973249435,-0.025085046887397766,0.07194061577320099,0.0410204753279686,0.0679866299033165,0.03682110086083412,0.05437318608164787,-0.043588317930698395,-0.024767842143774033,-0.036203958094120026,0.08104720711708069,0.007698472589254379,0.037692904472351074,0.02200905606150627,0.07354044169187546,-0.006815061904489994,0.01720925234258175,-0.03755025193095207,-0.0010474412702023983,0.057074498385190964,0.04350520297884941,0.00691677862778306,0.05488528683781624,-0.09784457832574844,-0.04530755430459976,-0.032147303223609924,0.02799021452665329,-0.0722062811255455,-0.014763183891773224,-0.018769672140479088,0.054383836686611176,0.06463935226202011,0.13320527970790863,0.0027812502812594175,-0.06914946436882019,0.07399599254131317,-0.0552552230656147,-0.0005809022695757449,0.023921329528093338,0.02650359645485878,0.09779656678438187,0.07613950967788696,0.10251826047897339,0.06441899389028549,0.05272315815091133,-0.041459910571575165,0.03357276692986488,-0.10655783861875534,0.06274764239788055,0.11858727037906647,-0.04642900452017784,-0.05579062178730965,-0.039532434195280075]},{"text":"Remember me with affection, should you never hear from me again.","book":"1984","chapter":5,"embedding":[-0.03718730807304382,-0.016629492864012718,0.06852292269468307,0.06253628432750702,-0.03951435163617134,-0.02167539857327938,0.09479516744613647,-0.021472761407494545,0.029157046228647232,-0.12859313189983368,-0.06856770068407059,0.026887843385338783,-0.005084593780338764,0.0554574616253376,-0.008314194157719612,0.09566634893417358,0.0033714028540998697,0.043999362736940384,-0.01605498418211937,0.06148529797792435,-0.08980965614318848,0.07276824861764908,0.025603335350751877,-0.018931547179818153,-0.05238768830895424,0.009550129063427448,0.04966772347688675,0.006532410625368357,-0.03451775759458542,0.04089687019586563,0.020111091434955597,0.0198531374335289,-0.022629166021943092,0.00491989916190505,-0.006175652612000704,0.03951498493552208,-0.08827082067728043,-0.05784105882048607,0.00641852430999279,-0.015726562589406967,0.031090425327420235,-0.04395994544029236,0.05066918209195137,-0.05954355001449585,-0.017094556242227554,0.013299556449055672,-0.0549776665866375,0.007415854837745428,0.03827658295631409,-0.05778495594859123,-0.06849724054336548,0.012159643694758415,-0.04258452728390694,0.054920874536037445,0.09851479530334473,0.09204529970884323,0.08058637380599976,0.011189327575266361,-0.0213646087795496,0.08079712837934494,-0.02803543582558632,0.013850308954715729,-0.08903051912784576,0.00533911632373929,-0.03725579008460045,0.039121147245168686,-0.022471074014902115,-0.0025723064318299294,0.008370714262127876,0.09455787390470505,-0.01531661581248045,0.08298266679048538,-0.009083842858672142,-0.016400815919041634,-0.06606074422597885,0.06101808696985245,-0.017869768664240837,-0.05144607648253441,0.030927883461117744,0.03442574664950371,-0.08011458814144135,-0.025794388726353645,-0.08097998797893524,-0.003282821038737893,-0.04441502317786217,-0.03858325630426407,0.05186162143945694,-0.14132389426231384,-0.05832449719309807,-0.014907400123775005,-0.02078571729362011,0.018826350569725037,-0.005678554996848106,0.0569530613720417,-0.019905708730220795,-0.043938133865594864,-0.05340002104640007,0.04731766879558563,-0.08843959867954254,0.07661830633878708,0.023388657718896866,0.014455168507993221,-0.028608132153749466,0.11776794493198395,-0.036115862429142,0.03196118026971817,-0.1156289353966713,0.06840576976537704,-0.021850675344467163,0.02241676114499569,0.000434939720435068,-0.019141504541039467,-0.06631985306739807,0.01622174121439457,0.013664379715919495,-0.07138361036777496,0.01731129176914692,-0.08310035616159439,0.05202615633606911,0.09741433709859848,-0.003186294576153159,0.024131305515766144,0.01362297311425209,0.05380244180560112,-0.01631985232234001,-0.13178247213363647,-0.02692364528775215,-5.4031968850950924e-33,-0.06540497392416,-0.009829999879002571,0.0287652388215065,0.02485579438507557,0.01572968065738678,0.016619594767689705,0.02197815105319023,-0.037079472094774246,-0.04885793477296829,-0.010955456644296646,-0.004979308228939772,0.05934711545705795,0.016270872205495834,-0.03704679757356644,-0.06804686784744263,0.06005173921585083,-0.0320170633494854,0.02775806561112404,0.07363675534725189,0.0324895977973938,-0.011252366937696934,0.014566391706466675,0.07772339880466461,-0.01517531555145979,-0.06475824862718582,-0.06839289516210556,0.0062765455804765224,-0.014243110083043575,0.08950787037611008,0.02152596041560173,-0.010455869138240814,0.018634362146258354,0.10179091989994049,-0.03850901871919632,-0.0016623183619230986,-0.026784531772136688,0.029238829389214516,-0.0172937773168087,-0.068092942237854,0.02638709731400013,0.06197159364819527,0.08733578026294708,-0.032244984060525894,-0.043696578592061996,0.00021304102847352624,0.01086165476590395,-0.015777388587594032,0.05365309864282608,0.015277768485248089,-0.10040532797574997,-0.03539345785975456,0.047436244785785675,-0.07082600146532059,0.09443480521440506,-0.05130352824926376,-0.03873136267066002,0.012024587951600552,0.034238338470458984,-0.025333838537335396,0.07346009463071823,0.03789307177066803,0.010145562700927258,0.09898189455270767,-0.0466969795525074,0.00366114336065948,-0.04412887990474701,-0.004433697555214167,0.0027534235268831253,0.0025742212310433388,-0.052770599722862244,0.04350585862994194,0.04655931144952774,-0.009882371872663498,0.035512734204530716,-0.0036170852836221457,-0.10107894986867905,0.09249083697795868,-0.053093407303094864,0.053606726229190826,-0.07621148973703384,0.04092203825712204,0.05170184001326561,-0.021932128816843033,0.011691880412399769,0.06131111830472946,-0.01176903210580349,0.02650623954832554,-0.0310209970921278,-0.03699081391096115,0.027976470068097115,-0.03809957206249237,0.02342960797250271,0.06870152056217194,-0.13086052238941193,-0.13308697938919067,2.94108025360164e-33,0.1218075156211853,0.02368820644915104,0.03760503605008125,-0.06186966970562935,-0.03441477194428444,-0.0030188951641321182,-0.03340435028076172,0.04609273746609688,-0.02876099944114685,0.07356999814510345,0.06433402001857758,-0.08320337533950806,0.10463657230138779,0.013422194868326187,0.025001633912324905,-0.03325168043375015,0.02450978383421898,-0.1406312882900238,-0.03968248888850212,-0.013759703375399113,-0.013873998075723648,-0.00592776807025075,0.007227269466966391,0.0895078256726265,-0.055388081818819046,-0.06617332994937897,0.0621195025742054,-0.009378860704600811,0.01155655737966299,-0.05330955609679222,0.07731998711824417,-0.03322400897741318,-0.039654459804296494,0.016140196472406387,0.04747609794139862,-0.004214163403958082,0.050645340234041214,0.04506465420126915,-0.019018074497580528,0.025377456098794937,-0.0394708551466465,0.048347171396017075,-0.04035287722945213,-0.013306992128491402,0.041487839072942734,-0.04507676139473915,0.05165601149201393,0.05559350922703743,0.02668611891567707,0.014117032289505005,-0.029416842386126518,0.02627129666507244,0.025518758222460747,-0.04753398522734642,-0.03358813002705574,-0.04202154651284218,0.07949315756559372,0.02977675199508667,-0.010437668301165104,-0.07390359044075012,-0.015824738889932632,-0.041955310851335526,-0.07653098553419113,0.006217940244823694,0.11370476335287094,0.06664224714040756,0.003317991504445672,-0.011455296538770199,-0.01763470470905304,-0.022940704599022865,0.045493099838495255,0.06068006530404091,-0.09753603488206863,0.04034872725605965,0.00023921231331769377,0.07390090823173523,-0.08366961777210236,-0.08460041135549545,-0.05499759316444397,-0.055661894381046295,-0.07665979117155075,0.027709005400538445,-0.005964446347206831,0.025590481236577034,0.0030142497271299362,-0.008830774575471878,0.033409181982278824,0.016727743670344353,-0.008428864181041718,-0.056580059230327606,-0.09146369993686676,0.00469253258779645,0.07741440832614899,-0.09436555951833725,-0.007525727152824402,-2.2884490746832853e-8,-0.0885879248380661,-0.03846101835370064,-0.02310374565422535,-0.0207977294921875,0.014499243348836899,-0.02268347516655922,0.008095767349004745,-0.07850860059261322,-0.04099615290760994,-0.001569483894854784,0.0002643890620674938,0.03485378995537758,0.0316864550113678,0.060011494904756546,0.0023301169276237488,0.057676542550325394,0.11405060440301895,-0.058987848460674286,-0.023050354793667793,-0.11803755909204483,-0.04543395712971687,0.0460221953690052,-0.06369739770889282,0.01095947902649641,0.012958841398358345,0.0426991768181324,0.03945796191692352,0.05260740593075752,-0.02413848787546158,-0.015291732735931873,0.015329498797655106,0.0015554266283288598,-0.025227850303053856,-0.052069250494241714,0.0014065554132685065,-0.05390293151140213,-0.010086920112371445,-0.06971586495637894,-0.015260957181453705,-0.027523260563611984,-0.010662606917321682,0.016100142151117325,0.02234930731356144,0.025808185338974,0.031352829188108444,0.052773889154195786,0.07022107392549515,-0.034276023507118225,0.003700004890561104,-0.038266897201538086,-0.06287810951471329,0.09495949745178223,0.04554688185453415,0.04363323003053665,0.1032799705862999,0.08001135289669037,0.030977487564086914,0.03405752778053284,0.02526155486702919,-0.003426857991144061,0.07239940762519836,0.03381900489330292,-0.01092043612152338,-0.020335502922534943]},{"text":"But success _shall_ crown my endeavours.","book":"1984","chapter":6,"embedding":[0.04962354153394699,-0.0040082791820168495,-0.028506789356470108,-0.05993805080652237,-0.05897921696305275,-0.018894512206315994,0.053744129836559296,-0.026825280860066414,-0.03472340106964111,0.008859070017933846,-0.006920915562659502,-0.013421373441815376,0.07104981690645218,0.055675752460956573,-0.044907860457897186,0.027449913322925568,-0.0022983287926763296,0.039221614599227905,-0.014805859886109829,0.03306702896952629,-0.027028491720557213,0.11155615746974945,-0.0419900119304657,-0.023274395614862442,-0.04174152389168739,0.011922809295356274,-0.07547816634178162,-0.008408497087657452,0.048131685703992844,0.000023034075638861395,0.01641857624053955,-0.04984641820192337,-0.020958060398697853,0.013618199154734612,0.0468432642519474,0.07232728600502014,-0.07494577020406723,-0.0701865553855896,0.01612606830894947,-0.020391061902046204,0.01225082017481327,-0.054097019135951996,-0.02237781323492527,0.01136363297700882,0.0058522638864815235,-0.04668138548731804,-0.021397540345788002,-0.048034749925136566,0.0006323658744804561,-0.024023421108722687,-0.0658591240644455,-0.09130106121301651,-0.004541679285466671,-0.0653563067317009,-0.049177344888448715,0.060452207922935486,-0.0373893603682518,0.018051285296678543,0.04282116889953613,0.02073858119547367,0.01880485564470291,0.06326580792665482,-0.08775564283132553,0.039092790335416794,0.05293908342719078,-0.01808456890285015,0.04420942813158035,0.0703684389591217,-0.12602534890174866,0.11820272356271744,0.02295617200434208,-0.044511470943689346,-0.08880623430013657,0.04490822181105614,0.007730442099273205,0.014006388373672962,0.05820789188146591,-0.04763555899262428,-0.005661987233906984,0.0015118535375222564,-0.10881341993808746,0.013093626126646996,-0.05597243830561638,0.014770028181374073,-0.02431468665599823,-0.03474387526512146,-0.0128225302323699,-0.05049265921115875,0.053866900503635406,-0.030229171738028526,-0.07302122563123703,-0.05944519862532616,-0.07597152143716812,0.08540152758359909,-0.007079636678099632,0.020246924832463264,-0.0008003324619494379,-0.07847660779953003,0.02170485630631447,0.07000555098056793,-0.0488150380551815,0.024870138615369797,-0.08209847658872604,-0.05064273998141289,-0.0382244735956192,-0.04265560582280159,-0.08415211737155914,0.03398245573043823,0.04750717431306839,-0.03773721307516098,-0.03935828059911728,-0.032841797918081284,-0.015783868730068207,0.032355282455682755,0.10671292990446091,0.05855847895145416,-0.12439387291669846,0.04506595805287361,-0.012115180492401123,0.020440733060240746,-0.0038709065411239862,0.01240741740912199,-0.000018219825506093912,-0.02588619664311409,-0.051350660622119904,-0.12483744323253632,0.018566660583019257,-6.0824698873711826e-33,-0.02803386002779007,-0.05149068683385849,0.03857126086950302,0.11563962697982788,0.007865357212722301,0.010760367847979069,-0.010734105482697487,0.04354890063405037,-0.04250486195087433,-0.005598604679107666,0.022859515622258186,0.05492344871163368,0.01857008785009384,-0.04452694579958916,0.028477584943175316,-0.046592552214860916,0.09282752871513367,-0.02074400521814823,-0.05806383490562439,0.043385595083236694,-0.026327060535550117,-0.0037060806062072515,0.02176426164805889,-0.039489712566137314,-0.010220642201602459,-0.04573696479201317,0.05464981868863106,-0.03789420425891876,0.037330564111471176,0.07441391795873642,0.024309003725647926,-0.012151544913649559,-0.048083383589982986,-0.04487186670303345,-0.042105451226234436,0.08771273493766785,-0.08380471915006638,-0.0727149248123169,-0.0012700209626927972,0.023968365043401718,-0.0947812870144844,0.06050879880785942,-0.050302837044000626,-0.0007452986901625991,-0.014790989458560944,0.06186697259545326,0.040623739361763,0.03147706389427185,0.028093334287405014,0.028180530294775963,0.009876500815153122,0.002012042561545968,0.10997935384511948,-0.0028629053849726915,0.049217622727155685,-0.028744198381900787,-0.059762198477983475,0.11194086074829102,-0.020375195890665054,-0.06501363217830658,-0.013558448292315006,-0.08932803571224213,-0.08339148014783859,0.03951890394091606,-0.03591379523277283,0.0315941721200943,0.06164583936333656,-0.04518352448940277,0.02870483510196209,0.002884511137381196,-0.06226590275764465,0.04490271955728531,-0.08758041262626648,-0.035432420670986176,0.006399423815310001,-0.003335571149364114,0.060230303555727005,0.04371827840805054,0.10052598267793655,-0.0018391493940725923,-0.0020019670482724905,0.06027160584926605,-0.14047111570835114,-0.07043714076280594,0.18588776886463165,0.07837054133415222,0.037983864545822144,-0.06486476957798004,0.022469323128461838,0.06897168606519699,0.016809958964586258,0.007715658750385046,-0.03195397928357124,0.010058254934847355,-0.09482022374868393,2.8142638822731006e-33,0.04098973050713539,-0.00610228069126606,0.01870175637304783,0.09852196276187897,0.05205310881137848,0.03432933986186981,0.021170878782868385,-0.08490967005491257,-0.06911882013082504,0.06433402746915817,-0.036357417702674866,0.0042968508787453175,-0.022910628467798233,0.015622387640178204,-0.061502307653427124,-0.09751216322183609,0.017654500901699066,-0.027586156502366066,0.0026731775142252445,0.045025356113910675,-0.01682516187429428,0.07251764833927155,-0.058707233518362045,0.01071846578270197,-0.005376620218157768,0.07048385590314865,-0.035928964614868164,0.01850557141005993,-0.06133450195193291,-0.02809152379631996,0.0698552280664444,-0.0077277361415326595,-0.20698437094688416,-0.0030389458406716585,-0.03773227334022522,0.055892594158649445,0.056774746626615524,-0.024341976270079613,-0.04390720650553703,0.03245237097144127,-0.09448634833097458,0.0018479105783626437,0.025901421904563904,-0.0048826914280653,-0.032064832746982574,-0.03654957935214043,0.07801342010498047,0.020910389721393585,0.03802141919732094,0.07752228528261185,0.026156647130846977,0.031344491988420486,-0.04781476408243179,-0.0006025451584719121,-0.005177224054932594,-0.04329179599881172,0.06276853382587433,-0.07297468930482864,-0.03290174901485443,-0.0037230534944683313,-0.008913081139326096,0.012350410223007202,0.017902614548802376,0.06906478852033615,0.005047288257628679,-0.02175387181341648,0.026011662557721138,0.07986755669116974,0.026215635240077972,0.018115265294909477,-0.026874801144003868,0.023591630160808563,-0.03201984614133835,-0.06448635458946228,-0.0371897891163826,0.011253871954977512,0.050428278744220734,-0.04384459927678108,0.010643607005476952,-0.016604000702500343,0.006036707200109959,0.016486147418618202,-0.02801230363547802,0.00009752575715538114,0.03698711469769478,-0.062264591455459595,0.06301838904619217,-0.03357689827680588,0.011496377177536488,-0.023082908242940903,-0.0037669946905225515,-0.02076144330203533,0.08618141710758209,-0.020427560433745384,0.07247195392847061,-2.007937816017602e-8,-0.025522544980049133,0.009535451419651508,0.006687052082270384,-0.0012336125364527106,0.020801575854420662,0.024507250636816025,-0.03367890045046806,-0.023404475301504135,-0.020141301676630974,-0.06695837527513504,0.025958890095353127,0.025713661685585976,0.008552503772079945,0.08176197111606598,0.04503817483782768,-0.03238264098763466,0.07174435257911682,-0.007360211573541164,-0.05516849085688591,-0.04151516780257225,0.030501555651426315,0.04437842220067978,0.05925321206450462,-0.0578962005674839,-0.06463190913200378,-0.0004459907067939639,-0.014057518914341927,0.10207479447126389,-0.027045119553804398,0.005135593470185995,0.04898785054683685,-0.01998783089220524,-0.013373814523220062,-0.011381004936993122,-0.05389957129955292,-0.01302767638117075,0.00898838136345148,0.03070339746773243,0.011905460618436337,0.009255734272301197,0.02753342315554619,0.0744621604681015,0.09949395060539246,0.12608405947685242,-0.03415052965283394,0.02997892163693905,0.022818662226200104,0.09521344304084778,0.00378299574367702,-0.08484108746051788,0.024803495034575462,-0.013528703711926937,0.020594047382473946,0.058195535093545914,0.04295002669095993,0.06043831259012222,0.04233630374073982,0.014318014495074749,-0.06362646818161011,0.0611514188349247,0.054545808583498,-0.10287941247224808,0.012462720274925232,-0.08074470609426498]},{"text":"About two o’clock the mist cleared away, and we beheld, stretched out in every direction, vast and irregular plains of ice, which seemed to have no end.","book":"1984","chapter":7,"embedding":[0.02640066109597683,0.07152551412582397,0.0726129412651062,0.11185172200202942,0.13851234316825867,-0.0180373452603817,-0.006296416744589806,-0.026414627209305763,0.07176943868398666,-0.06040769815444946,-0.030520154163241386,0.02770446240901947,-0.007136424537748098,-0.0827755555510521,-0.029425613582134247,0.004402543883770704,-0.11542601883411407,-0.09669137746095657,-0.03397928178310394,-0.03542197123169899,0.04701310023665428,0.02098998799920082,-0.04811244085431099,0.016054349020123482,-0.040578145533800125,0.10853702574968338,-0.006593003869056702,-0.03880498185753822,0.07637381553649902,0.0005411114543676376,-0.028116753324866295,0.06686968356370926,-0.06083182618021965,-0.024091240018606186,0.053907424211502075,0.004714856389909983,0.05108054727315903,0.010681124404072762,0.03261419013142586,-0.0228747371584177,0.08364205062389374,0.07003892958164215,-0.0063204155303537846,0.08003504574298859,-0.01095969695597887,0.16201651096343994,-0.009512083604931831,-0.0369177907705307,-0.01150025799870491,0.03528143838047981,-0.009592804126441479,0.0038738653529435396,-0.11186175048351288,0.023295540362596512,-0.07199444621801376,0.008201291784644127,-0.03915482386946678,-0.06110868602991104,-0.0189475417137146,0.024549398571252823,-0.05322151631116867,0.0255588311702013,-0.035268742591142654,0.03264478221535683,0.03853048384189606,-0.03785901889204979,-0.0982762798666954,-0.009871181100606918,0.08507959544658661,0.015602056868374348,0.02549913339316845,0.08546390384435654,-0.044823285192251205,-0.051103558391332626,-0.047354310750961304,-0.0476621612906456,-0.03338233754038811,-0.06253760308027267,-0.021852456033229828,-0.000025089786504395306,0.06881778687238693,0.0025923759676516056,0.05273956432938576,0.03875677287578583,-0.07693246006965637,-0.02239634282886982,0.06969339400529861,0.018966717645525932,0.08572699874639511,-0.005402279552072287,0.0012771703768521547,-0.023804204538464546,-0.08652432262897491,0.03679405897855759,0.06668642163276672,0.06760010123252869,0.05319501459598541,0.07423299551010132,-0.025787636637687683,0.01500401645898819,0.03022054024040699,-0.0024172316771000624,-0.056124817579984665,-0.020114194601774216,0.03672412782907486,-0.0029266146011650562,-0.03943631425499916,-0.049417175352573395,0.025331620126962662,-0.0076808021403849125,-0.008919505402445793,-0.08601529151201248,0.011338467709720135,-0.01779259368777275,0.0645953044295311,0.013866523280739784,-0.026289911940693855,0.012267005629837513,-0.05430726706981659,0.032598815858364105,-0.038530245423316956,0.07703886926174164,-0.03327854722738266,0.02456795424222946,0.026529204100370407,0.07985579967498779,0.08567196875810623,-3.416191560316992e-33,0.025585468858480453,-0.06508661806583405,-0.018671410158276558,-0.0008182883611880243,0.12839357554912567,-0.07545244693756104,0.04412974789738655,-0.02148347906768322,0.026889516040682793,0.06494871526956558,-0.037697840481996536,-0.06966757029294968,-0.12444052845239639,-0.018407709896564484,-0.0003975395520683378,-0.05866583436727524,0.03178077191114426,0.030391426756978035,-0.05296621844172478,0.01650823839008808,0.007977524772286415,0.007072081323713064,-0.035387370735406876,-0.0759623572230339,-0.052115894854068756,0.03200012817978859,-0.043606098741292953,0.02215748466551304,0.009643332101404667,0.009892930276691914,0.07512573897838593,0.008520378731191158,-0.03358679264783859,0.039002127945423126,0.041522443294525146,0.011005643755197525,-0.00567944860085845,0.011694141663610935,0.05395912379026413,0.02005515620112419,0.010576050728559494,-0.00318375532515347,0.0049975416623055935,-0.0749245136976242,0.03801482170820236,-0.0719529315829277,0.03263867646455765,0.001787056913599372,-0.038189955055713654,-0.028425229713320732,-0.0001439731422578916,0.05068550258874893,0.010190490633249283,-0.02822888456285,-0.017233991995453835,0.026417789980769157,0.003312841523438692,0.046527452766895294,-0.06945011019706726,0.030115503817796707,0.012915310449898243,-0.055852167308330536,0.009586593136191368,-0.07729744911193848,0.017098011448979378,-0.021736990660429,-0.08541255444288254,-0.01866156794130802,0.0026138757821172476,0.015498729422688484,-0.04588115215301514,-0.054433077573776245,-0.012462936341762543,0.033217523247003555,-0.002005229005590081,-0.016530456021428108,0.015340657904744148,0.04289670288562775,0.04428916051983833,0.017781654372811317,-0.03629591315984726,0.0035942578688263893,-0.0019547995179891586,0.05770014598965645,-0.013374429196119308,-0.053104761987924576,0.0831267312169075,0.0063858130015432835,-0.08221300691366196,-0.029760656878352165,-0.051696788519620895,0.01197729166597128,0.10849771648645401,-0.060696281492710114,-0.0514516681432724,-9.833903344828571e-35,0.07548229396343231,0.007936873473227024,-0.030727490782737732,-0.007426710333675146,-0.03283931314945221,-0.0038841143250465393,0.0014589756028726697,0.15323922038078308,-0.008192801848053932,0.010509015992283821,-0.003445601789280772,0.058816734701395035,0.05603158101439476,-0.02017960697412491,-0.031995903700590134,0.028932416811585426,0.0982872024178505,0.04463072493672371,0.008721612393856049,0.03492037579417229,-0.051809586584568024,-0.0916108563542366,-0.010502510704100132,-0.06333241611719131,0.024992037564516068,0.07424166053533554,0.07484396547079086,-0.05797647312283516,-0.030817460268735886,-0.03005075454711914,-0.015497188083827496,-0.05783089995384216,0.01562880352139473,-0.02436511218547821,-0.052272845059633255,0.046437133103609085,0.04198877513408661,-0.06635197252035141,-0.08246933668851852,-0.06722699850797653,0.05900247022509575,-0.09749391674995422,0.03676190972328186,-0.0022772967349737883,0.021728165447711945,0.02634849213063717,-0.06006092578172684,0.08885716646909714,0.014391977339982986,-0.02116643264889717,0.0006442024605348706,-0.02098970301449299,0.0083380825817585,0.05640439689159393,-0.0022246036678552628,-0.06441438943147659,-0.02608359046280384,-0.0028489246033132076,-0.01959349773824215,-0.03976423665881157,-0.041096121072769165,0.0007139177760109305,-0.03516080603003502,-0.08263544738292694,0.034022752195596695,0.026921505108475685,-0.01359385997056961,0.07668193429708481,-0.08141114562749863,-0.039027824997901917,0.023740792647004128,0.01511282380670309,-0.11783073842525482,-0.041564539074897766,0.015880174934864044,0.1004691869020462,-0.019438091665506363,-0.0867001935839653,0.0004259974230080843,0.01242208294570446,-0.04201323911547661,-0.010571399703621864,-0.05318620800971985,-0.04448123276233673,0.05031510069966316,-0.05208757519721985,-0.007077161688357592,-0.07479637861251831,-0.008388558402657509,0.07795840501785278,-0.02821054868400097,-0.0601428747177124,-0.009352380409836769,0.058697160333395004,-0.02477937936782837,-3.080146981915277e-8,0.021687624976038933,0.0570184700191021,0.049469660967588425,0.029619883745908737,0.01409817487001419,-0.0741182342171669,0.10825543850660324,0.1266898363828659,-0.03008505329489708,-0.04030609875917435,-0.059092212468385696,-0.009744426235556602,0.06125982850790024,0.05743979662656784,0.08407751470804214,-0.05391630902886391,-0.04239353910088539,-0.05932474881410599,-0.013396449387073517,-0.08352817595005035,-0.03339279815554619,0.02409016340970993,-0.0953679084777832,-0.11731933057308197,-0.018374141305685043,0.10700260102748871,-0.025776676833629608,0.004999926313757896,0.009741167537868023,-0.02008740045130253,0.06276966631412506,0.0026905934792011976,0.05462431535124779,-0.032638825476169586,-0.01455419510602951,0.02145928516983986,-0.003156468505039811,-0.004795352462679148,-0.03475615009665489,-0.0503300204873085,0.0012348298914730549,0.1346275806427002,0.00427671242505312,0.020464828237891197,0.07608040422201157,0.01438504084944725,0.01231963001191616,0.02836688421666622,-0.056554555892944336,0.04809766635298729,0.02621711790561676,-0.004036678466945887,-0.01332303136587143,0.0440562479197979,0.07359213382005692,-0.07515465468168259,-0.060602910816669464,-0.07280758768320084,-0.1262032836675644,-0.01456153392791748,-0.03023245371878147,0.003875924041494727,-0.07969877123832703,0.05311637371778488]},{"text":"It was, in fact, a sledge, like that we had seen before, which had drifted towards us in the night on a large fragment of ice.","book":"1984","chapter":7,"embedding":[-0.0437730997800827,0.0402500219643116,0.03921625018119812,0.09820979833602905,0.0423685759305954,-0.07913501560688019,-0.0052436962723731995,0.06360562890768051,-0.016548432409763336,0.0017300767358392477,0.02240416221320629,0.020320484414696693,-0.023551268503069878,0.013647006824612617,0.00187081063631922,-0.0016269279876723886,-0.045137085020542145,-0.056714195758104324,-0.022507453337311745,0.025797981768846512,0.055271510034799576,0.059344638139009476,-0.06925658881664276,-0.0021682479418814182,0.05037446320056915,0.10722612589597702,0.004039524123072624,0.0004118014476262033,0.04181010276079178,0.01823512651026249,0.004913452081382275,0.04842458292841911,-0.015643518418073654,0.033812232315540314,0.049139369279146194,0.026084233075380325,0.014777567237615585,-0.02420690841972828,0.04329316318035126,0.028439458459615707,0.03227813169360161,0.029310692101716995,0.046187225729227066,0.017674969509243965,-0.043562594801187515,0.07362256944179535,-0.005430570803582668,-0.026192141696810722,-0.041787076741456985,0.025334320962429047,0.03110758401453495,-0.006761301774531603,-0.05984668806195259,-0.06597792357206345,-0.02520894631743431,0.03989659994840622,-0.046958718448877335,-0.08513110131025314,0.06833264976739883,0.026347074657678604,0.021993039175868034,-0.01114695705473423,0.05852869525551796,-0.007470389828085899,0.013788040727376938,-0.04566144198179245,-0.03798571601510048,-0.09319134056568146,0.06938192248344421,0.06255610287189484,0.05746057629585266,0.04213031008839607,-0.014682836830615997,-0.05869480222463608,-0.060438014566898346,-0.09641562402248383,0.007558158133178949,0.04503526911139488,-0.04582415893673897,0.0063939522951841354,0.0053037661127746105,-0.01662241667509079,0.03568844869732857,0.04628971964120865,-0.03700027987360954,0.0013215073850005865,0.06334993243217468,0.02874722145497799,0.06261622160673141,0.006201918236911297,-0.0287494994699955,-0.03130133077502251,-0.06001821532845497,0.012303352355957031,0.01049051620066166,-0.03714151680469513,-0.061628006398677826,-0.008014806546270847,-0.007256721146404743,0.00774060282856226,0.08640982210636139,0.03496959060430527,-0.05581595003604889,-0.01335383951663971,0.05800291895866394,0.03870343416929245,-0.03864424675703049,-0.04587860405445099,0.020956840366125107,0.09765687584877014,-0.032504670321941376,-0.007776232436299324,0.0060233972035348415,-0.004344031680375338,-0.021032191812992096,-0.0780036672949791,-0.06469149887561798,0.02001921646296978,-0.13925787806510925,0.05068180337548256,0.008681408129632473,0.09410456568002701,-0.02398071438074112,0.055709995329380035,0.03298385813832283,0.017880860716104507,0.0666528269648552,-5.050480621581249e-33,0.09553845971822739,-0.051371052861213684,-0.03590632975101471,-0.08136609196662903,0.06733302026987076,-0.030474906787276268,-0.018663614988327026,0.03381190448999405,-0.07337791472673416,0.0015131866093724966,-0.0768878385424614,-0.033811304718256,-0.045229874551296234,0.022095980122685432,0.015696341171860695,0.023614097386598587,-0.018369924277067184,-0.06725519895553589,-0.0404791459441185,0.02879060059785843,-0.03257148340344429,-0.06936261802911758,0.054353054612874985,-0.0952763557434082,-0.06870072335004807,0.00690064113587141,0.0013036014279350638,-0.033935148268938065,0.07249049097299576,-0.000536444247700274,-0.013861536048352718,-0.03314296156167984,-0.002010903088375926,0.06266383081674576,0.03189881145954132,0.0866391584277153,0.055333178490400314,-0.09684740751981735,-0.05797962844371796,0.008484860882163048,0.04372784495353699,-0.008135290816426277,0.011430608108639717,-0.06132384017109871,-0.010193418711423874,0.011894822120666504,-0.003713714424520731,0.021950634196400642,-0.03914380073547363,-0.0037620251532644033,0.00789795070886612,0.023941872641444206,0.04298457130789757,-0.018368510529398918,-0.003581634722650051,0.08026732504367828,0.030192581936717033,0.08950363099575043,-0.026703890413045883,0.03679199144244194,-0.05995148792862892,-0.10520526766777039,0.02717629261314869,-0.0017382792429998517,0.027619153261184692,0.06943347305059433,-0.03873142972588539,0.07224001735448837,-0.06284672021865845,-0.046196773648262024,-0.0724196806550026,-0.04607651010155678,0.03274748846888542,0.10289859771728516,-0.047658007591962814,-0.00885108020156622,-0.05689125135540962,0.037000786513090134,0.07306484878063202,0.012449134141206741,-0.10831370949745178,-0.0004756929411087185,-0.03988439217209816,-0.062067531049251556,-0.02981545589864254,-0.016125155612826347,0.025506887584924698,-0.02648989111185074,-0.06019746884703636,0.03111293353140354,-0.12955570220947266,-0.00334768183529377,0.03288086876273155,-0.02988233044743538,-0.042134303599596024,9.119524662942654e-34,-0.03290867060422897,-0.031893715262413025,-0.017558444291353226,0.03765265271067619,0.008801528252661228,0.02402452379465103,0.002582426415756345,0.009922747500240803,-0.12300435453653336,0.02471485361456871,0.03566299378871918,-0.010048754513263702,0.03209864720702171,-0.02949163131415844,0.08114498108625412,-0.003401413792744279,0.03794068843126297,0.027670668438076973,0.05360262095928192,0.028494548052549362,0.019240517169237137,-0.03777225688099861,-0.027621721848845482,-0.044967230409383774,0.030536675825715065,0.08871280401945114,0.1087033748626709,-0.05794849991798401,-0.03487361967563629,-0.034459542483091354,-0.034527603536844254,0.01905181258916855,-0.047419507056474686,-0.11546938121318817,-0.05791568011045456,0.15068408846855164,0.07293606549501419,-0.021032756194472313,-0.0886790081858635,-0.12673471868038177,-0.054894573986530304,-0.029174884781241417,0.04986182600259781,0.12542568147182465,0.010456094518303871,-0.04386163502931595,-0.0007665692828595638,0.12520509958267212,-0.05191930755972862,0.01736445166170597,-0.048399921506643295,0.027793290093541145,-0.026738058775663376,0.007653534412384033,-0.024079155176877975,-0.034993384033441544,-0.07102249562740326,-0.05135967954993248,-0.048410918563604355,-0.057608090341091156,-0.02177308313548565,0.051393598318099976,-0.10413467139005661,-0.022335859015583992,0.07660490274429321,-0.009833103977143764,-0.028498442843556404,-0.033653248101472855,-0.12436605244874954,-0.01608220860362053,0.0155160678550601,0.042170099914073944,-0.030656050890684128,0.030826859176158905,0.07393878698348999,-0.029994335025548935,-0.06015263497829437,-0.01569957658648491,0.026760568842291832,-0.025711916387081146,0.008496432565152645,-0.043346863240003586,0.013188319280743599,0.03204810991883278,0.06531026214361191,-0.08533864468336105,-0.017772940918803215,-0.020042816177010536,0.04231780767440796,0.011375902220606804,-0.03466122969985008,-0.07390633225440979,-0.0607278048992157,0.021620579063892365,-0.015742825344204903,-2.5501915246195495e-8,0.022773511707782745,0.12659835815429688,-0.059227846562862396,0.0021061545703560114,0.057145409286022186,-0.020869093015789986,0.08008910715579987,0.05745279788970947,-0.04792524874210358,-0.08613234758377075,-0.08650649338960648,-0.0004841112531721592,0.008763322606682777,0.07216322422027588,0.014574378728866577,-0.05247144028544426,-0.013513837940990925,-0.014273247681558132,-0.009922859258949757,-0.007788664661347866,0.03695867955684662,-0.018066376447677612,-0.03336569666862488,-0.014999191276729107,-0.05914494767785072,0.051304351538419724,0.00666201114654541,0.03589975833892822,0.029111739248037338,-0.026471925899386406,0.000799035478848964,-0.01126882154494524,0.07696705311536789,-0.01898588426411152,0.020148281008005142,0.015576804988086224,0.00853771809488535,-0.009461155161261559,0.10535597801208496,-0.012087886221706867,-0.010791989043354988,0.1395336389541626,0.05861729010939598,0.0418410450220108,0.02333412691950798,0.15622973442077637,-0.05024099722504616,-0.046790994703769684,-0.015558089129626751,0.027496691793203354,0.0147168580442667,0.016321072354912758,-0.0026891641318798065,0.0877075344324112,0.018539344891905785,0.015767116099596024,-0.059813980013132095,-0.11817320436239243,-0.09145127236843109,0.01735268346965313,-0.03172527253627777,-0.08685208112001419,-0.05063175410032272,0.06909848004579544]},{"text":"By slow degrees he recovered and ate a little soup, which restored him wonderfully.","book":"1984","chapter":8,"embedding":[0.021176546812057495,0.0729617103934288,0.07914621382951736,0.0890413224697113,-0.021153738722205162,0.04192947596311569,-0.008339650928974152,-0.050248146057128906,-0.07403124868869781,-0.09993651509284973,0.025591015815734863,0.041677601635456085,0.04104845970869064,-0.008405082859098911,-0.011958904564380646,-0.12931863963603973,-0.003659524954855442,0.06545677781105042,-0.09529415518045425,0.005529588554054499,-0.06744121760129929,0.07097504287958145,0.04667869582772255,-0.05593625828623772,0.028648298233747482,0.043814294040203094,-0.049751799553632736,0.030117027461528778,0.08063984662294388,-0.015397504903376102,-0.03510167822241783,-0.019395731389522552,0.009218988940119743,-0.04324154183268547,-0.07962553203105927,0.08478842675685883,0.03612356632947922,0.00992379616945982,-0.044694382697343826,0.015844857320189476,0.011922111734747887,0.025018490850925446,-0.045178357511758804,0.00552677595987916,-0.024752262979745865,-0.021660126745700836,-0.06913770735263824,-0.02341657318174839,0.0943230390548706,-0.025321798399090767,-0.06244209036231041,0.04881502315402031,-0.08705589920282364,-0.05417023226618767,-0.019992174580693245,0.08217189460992813,0.052038609981536865,-0.011153439059853554,-0.034973084926605225,0.01803404837846756,0.003151703393086791,0.035722922533750534,0.009460355155169964,0.02000831998884678,0.12602761387825012,-0.027689659968018532,-0.010359305888414383,-0.00837415549904108,-0.03757074102759361,0.08640430867671967,0.03533535078167915,0.014675725251436234,0.030603764578700066,-0.03907212242484093,-0.07471775263547897,-0.05423570051789284,-0.022369645535945892,-0.04623952507972717,0.004574996419250965,0.10907123237848282,-0.027132080867886543,-0.035598043352365494,-0.051449183374643326,0.02620559372007847,-0.09165848046541214,-0.0244910828769207,0.019375888630747795,-0.10412857681512833,-0.05052885785698891,0.05127289891242981,0.056920818984508514,-0.04214984551072121,-0.03933878615498543,-0.009111483581364155,0.046621378511190414,0.01956596039235592,-0.0070046973414719105,-0.02575100213289261,-0.07081963866949081,0.0245415810495615,-0.031239064410328865,0.040434133261442184,-0.024497106671333313,-0.03756387159228325,0.06684188544750214,0.02565155364573002,0.03661588206887245,0.04484916105866432,-0.027264965698122978,0.004522991832345724,-0.0015807361342012882,0.008199513889849186,0.05016523599624634,0.055006470531225204,0.06283894926309586,0.015191478654742241,-0.08926775306463242,-0.038395073264837265,-0.06303707510232925,0.05565901845693588,0.001128064002841711,0.042405709624290466,0.0054459115490317345,-0.0072417729534208775,-0.021045908331871033,0.02709774300456047,0.12760254740715027,-3.836544299409211e-33,0.08059641718864441,-0.0059423623606562614,0.05480328947305679,0.05268874764442444,0.07490022480487823,0.03321803733706474,-0.0246147271245718,-0.02722710557281971,0.055203601717948914,0.006926971487700939,0.037969380617141724,0.018178017809987068,-0.002217045985162258,0.05583548545837402,-0.0839509516954422,-0.026981724426150322,-0.019177841022610664,0.012199693359434605,0.0650736391544342,0.03838004916906357,-0.00945654883980751,0.0024877700489014387,0.0348435640335083,-0.0003624424571171403,0.032808274030685425,0.015753263607621193,0.0014221390010789037,0.04454946517944336,-0.014081578701734543,0.03586622327566147,-0.09116269648075104,0.023959392681717873,-0.0769491121172905,-0.02981712855398655,-0.03809273988008499,0.0014315013540908694,-0.009166945703327656,0.025082530453801155,-0.05708520486950874,0.077198326587677,-0.008916388265788555,0.06366686522960663,0.01566373184323311,0.012563190422952175,-0.07018104940652847,-0.015182744711637497,-0.04171767830848694,0.14166533946990967,0.01627371832728386,-0.038046471774578094,0.08226551860570908,-0.0023649863433092833,0.02410869300365448,-0.10818913578987122,-0.06759031862020493,0.019360730424523354,0.031949885189533234,0.04750553518533707,-0.04155244305729866,0.08461251854896545,0.10387138277292252,0.02362423576414585,0.03833045810461044,-0.03568858280777931,-0.037767890840768814,-0.002928632078692317,-0.04471326246857643,-0.0395176000893116,-0.07915955781936646,-0.024876058101654053,-0.07090168446302414,0.008226701989769936,0.017330415546894073,-0.053630631417036057,0.01026496198028326,-0.05495872721076012,0.010589181445538998,-0.1156025379896164,-0.018400466069579124,-0.0771298035979271,0.09263835847377777,-0.03369704261422157,0.010998334735631943,-0.004833529703319073,-0.004225790034979582,-0.025826113298535347,-0.016343798488378525,-0.05217404291033745,0.044836483895778656,0.022676728665828705,-0.04403974860906601,-0.030173493549227715,0.03458671271800995,-0.09926246106624603,-0.08887885510921478,6.856738904405541e-34,0.040623098611831665,-0.05026931315660477,-0.027896136045455933,0.09676195681095123,-0.0029081511311233044,-0.005421784240752459,-0.07859737426042557,0.1315043419599533,0.02089589089155197,-0.06611805409193039,0.015399308875203133,-0.019254067912697792,0.08125900477170944,-0.026239195838570595,-0.002579574706032872,0.07632190734148026,-0.006010393612086773,-0.032900746911764145,-0.027233101427555084,0.030758673325181007,0.04521925002336502,-0.05216711387038231,0.03357001021504402,0.019351689144968987,0.024435071274638176,0.036201342940330505,0.0025643697008490562,0.0008719878387637436,-0.0040733348578214645,-0.026331374421715736,0.06359761953353882,-0.09976192563772202,-0.03732509911060333,-0.006091842893511057,0.015004956163465977,0.15582382678985596,-0.066484235227108,-0.03409351408481598,-0.09063435345888138,-0.02175530046224594,0.0695807933807373,-0.038270335644483566,0.06371390074491501,0.11732478439807892,0.09653256088495255,-0.020929956808686256,-0.00474615627899766,-0.03839200362563133,-0.012298379093408585,0.07524479925632477,0.07494053244590759,-0.06546439230442047,0.011788726784288883,0.07257559150457382,-0.006346036680042744,-0.019500933587551117,-0.0378849171102047,-0.11753453314304352,-0.09174096584320068,-0.031693972647190094,-0.10085907578468323,-0.056201327592134476,0.05273857340216637,0.060653287917375565,0.0251457579433918,-0.0039405724965035915,0.016575144603848457,-0.04774152487516403,-0.08881353586912155,-0.021788353100419044,0.04483150318264961,0.039994075894355774,-0.0036303263623267412,-0.052182987332344055,0.034797925502061844,0.06214755401015282,-0.09346101433038712,0.011934872716665268,-0.04368683695793152,0.03366723284125328,-0.036639515310525894,0.0399969182908535,-0.028757376596331596,-0.0815645083785057,-0.03600022569298744,-0.05727890878915787,-0.038584206253290176,-0.06409109383821487,0.042641106992959976,0.019617214798927307,0.06796994805335999,-0.07582132518291473,0.03755831718444824,0.006143565289676189,0.07515057176351547,-2.0211796680769112e-8,-0.027785899117588997,-0.02060670778155327,-0.0768294706940651,0.055507030338048935,-0.013466959819197655,0.018646422773599625,-0.006394890137016773,-0.016797039657831192,0.022958384826779366,0.05865428224205971,-0.10449345409870148,0.10196226090192795,0.032666031271219254,0.010557865723967552,0.03885430842638016,-0.06608597189188004,0.02991603873670101,-0.03696214780211449,-0.029676934704184532,-0.026787657290697098,0.025145478546619415,-0.005804391577839851,0.039807192981243134,0.038853149861097336,0.029758471995592117,0.028274664655327797,-0.03163463622331619,-0.03355345502495766,-0.017413103953003883,-0.00732983136549592,-0.00609318632632494,-0.031152483075857162,-0.03680174797773361,-0.011893728747963905,0.03723950684070587,0.006504036486148834,0.06056653708219528,0.031877703964710236,0.08193399012088776,-0.08333396911621094,-0.04561982676386833,0.031977590173482895,-0.014582883566617966,-0.02141343243420124,0.02552541345357895,-0.05433148518204689,0.009171389043331146,0.10416404157876968,0.0017737551825121045,-0.01509601529687643,-0.02046702615916729,0.1138419508934021,-0.023950878530740738,0.021374192088842392,-0.007608253043144941,-0.019799547269940376,-0.020903365686535835,-0.02001125179231167,-0.0778893306851387,0.018756624311208725,-0.04175615310668945,0.09406962245702744,-0.015508926473557949,-0.042327724397182465]},{"text":"I have promised that someone should watch for him and give him instant notice if any new object should appear in sight.","book":"1984","chapter":8,"embedding":[-0.01456814631819725,-0.0072240326553583145,0.03481827676296234,-0.03796900063753128,0.0841895192861557,0.00281424168497324,0.08111884444952011,-0.04233365133404732,0.003305226331576705,-0.007297102361917496,0.04238554462790489,-0.06111164391040802,-0.06668392568826675,0.07494000345468521,0.05487339571118355,-0.032424382865428925,0.08896765857934952,0.0001547278807265684,-0.03921898454427719,-0.022883234545588493,0.0708126649260521,-0.004437957424670458,0.02525864727795124,-0.012110773473978043,-0.06193898618221283,-0.05654814839363098,0.026051048189401627,-0.011738655157387257,0.011147069744765759,-0.03833848237991333,0.05566457286477089,-0.06800513714551926,0.016711005941033363,0.01362314447760582,-0.060067370533943176,0.000006581899015145609,0.007930134423077106,0.00854297075420618,-0.039794132113456726,-0.06486135721206665,0.04650869593024254,0.003306751372292638,0.0058760750107467175,0.030791794881224632,-0.03616543859243393,0.007024993654340506,0.08816016465425491,-0.014806544408202171,0.06433892995119095,-0.12228900194168091,-0.11312531679868698,-0.08629724383354187,0.007838591933250427,-0.057164810597896576,-0.03934973105788231,0.022762104868888855,0.019805390387773514,-0.01612560637295246,0.047798577696084976,-0.03285706043243408,0.046472445130348206,-0.01323332916945219,0.06271237879991531,-0.011356947012245655,-0.025254810228943825,0.022206170484423637,-0.05563696473836899,-0.0007202535634860396,0.07107140868902206,0.09780260920524597,0.05095644295215607,0.08404675871133804,0.039795853197574615,-0.0021804412826895714,-0.08147986978292465,-0.059620391577482224,-0.029851507395505905,-0.03682131692767143,0.05994020402431488,-0.013154382817447186,-0.06924666464328766,-0.015328946523368359,-0.015308177098631859,-0.05158008262515068,0.010067605413496494,0.03295484557747841,0.0052572814747691154,-0.009373579174280167,-0.05818434804677963,0.031784843653440475,-0.0015841505955904722,0.046510014683008194,-0.0631878525018692,-0.036096252501010895,-0.12203381955623627,-0.020031340420246124,-0.011040018871426582,0.036771032959222794,-0.09225147217512131,0.0631071925163269,0.029142355546355247,-0.01614978164434433,0.049379028379917145,0.033784572035074234,0.037161462008953094,0.05388668552041054,-0.010511164553463459,-0.01565355435013771,-0.007329232525080442,0.054474908858537674,0.03205014020204544,0.0017733644926920533,0.006722631398588419,-0.005448165349662304,-0.019196225330233574,0.09833300113677979,-0.10261361300945282,0.06565749645233154,-0.02884327992796898,0.011262074112892151,0.1475362479686737,0.0342097170650959,0.06521932780742645,0.0702931359410286,0.05378294363617897,-0.034309979528188705,0.0028561647050082684,-4.104137047672762e-34,0.052801650017499924,0.029194453731179237,-0.0030668103136122227,-0.00015086456551216543,0.060434360057115555,0.06456296145915985,0.022541221231222153,0.03642222657799721,0.030786633491516113,-0.002248830161988735,0.049905817955732346,-0.0117601053789258,0.03275425732135773,0.009942412376403809,-0.09003963321447372,0.014637423679232597,0.08303045481443405,-0.015979163348674774,-0.013724357821047306,-0.0009977980516850948,-0.029421424493193626,-0.08281033486127853,-0.057064056396484375,-0.02857111766934395,0.02034727856516838,0.06205665320158005,0.04448583722114563,-0.031154202297329903,0.04162962734699249,0.031003689393401146,-0.035837918519973755,0.1484626978635788,0.011250821873545647,0.01209091953933239,-0.04593275859951973,-0.0583992637693882,-0.09247284382581711,-0.016418959945440292,-0.06660228967666626,-0.05226609855890274,0.007020263001322746,0.019829848781228065,-0.12526682019233704,-0.05502967908978462,-0.040576089173555374,-0.029315300285816193,0.04029794782400131,0.0758495032787323,0.0032937340438365936,-0.004632964264601469,0.055928271263837814,-0.013422352261841297,-0.04713089391589165,-0.11145345121622086,-0.059345681220293045,0.04013195261359215,-0.00927651859819889,-0.024660397320985794,0.0883226990699768,-0.06331902742385864,0.04514915868639946,-0.05427896976470947,0.03585793077945709,0.08011539280414581,-0.042651042342185974,-0.10739246010780334,-0.011482514441013336,-0.029627742245793343,-0.05549651384353638,-0.03401433676481247,0.009012359194457531,0.04015815630555153,-0.04193894937634468,-0.0603942945599556,-0.055155955255031586,-0.0691412091255188,-0.07415943592786789,0.024503182619810104,0.047539595514535904,-0.002563213463872671,0.030156321823596954,-0.022293182089924812,0.006864008493721485,-0.034766025841236115,-0.04976845905184746,0.03978588432073593,0.04235304892063141,-0.05645721033215523,-0.06151886284351349,0.055450499057769775,0.06735087186098099,-0.009882106445729733,0.00890137068927288,-0.025245243683457375,-0.029503559693694115,-3.401988282481197e-33,0.0499943308532238,-0.024660099297761917,0.035851359367370605,0.009657911024987698,0.04133807122707367,-0.034274931997060776,-0.07238335907459259,0.0516720712184906,0.015132150612771511,0.04140168055891991,-0.0043296716175973415,0.06139346957206726,-0.03993942216038704,0.044689636677503586,-0.025473499670624733,-0.03392224758863449,0.06775031983852386,-0.046962670981884,-0.013388991355895996,-0.024529049172997475,0.060193419456481934,0.025297271087765694,-0.012132079340517521,-0.038898225873708725,-0.06406167149543762,-0.023084618151187897,0.08862794190645218,0.026183219626545906,-0.1393493413925171,-0.08685359358787537,-0.06362446397542953,-0.009001231752336025,-0.09180855005979538,0.032463885843753815,0.052834365516901016,0.009727287106215954,0.07956545054912567,-0.06296420097351074,-0.061546407639980316,0.08114862442016602,0.038583140820264816,0.013423854485154152,-0.004660236183553934,-0.0037428536452353,-0.028284654021263123,-0.08592583239078522,0.0963539108633995,0.02904467098414898,-0.052336156368255615,0.029645336791872978,-0.06894447654485703,0.023047029972076416,-0.01108576450496912,-0.09278040379285812,-0.07534811645746231,0.042545147240161896,-0.032849088311195374,0.014398054219782352,0.12831909954547882,-0.022474680095911026,0.0024634774308651686,-0.038788843899965286,-0.008177565410733223,0.06659771502017975,0.005833538714796305,0.029680952429771423,-0.042376454919576645,0.03970014303922653,0.08817002922296524,-0.0044436403550207615,0.06257914006710052,-0.04635365679860115,-0.09080840647220612,-0.011749623343348503,0.031052958220243454,-0.00029647196060977876,0.041572581976652145,-0.07844085246324539,0.010360445827245712,-0.00543340016156435,0.08856358379125595,-0.04469551891088486,0.021024269983172417,-0.02714977040886879,0.04445894435048103,-0.002477157860994339,0.03151119872927666,-0.022083647549152374,-0.017248230054974556,0.05043947696685791,-0.059336837381124496,0.03568744286894798,0.023788990452885628,0.032548487186431885,0.005242428742349148,-2.9570692561264877e-8,-0.060906846076250076,0.007504062261432409,0.011143267154693604,-0.01523087453097105,0.049360837787389755,0.020722704008221626,-0.08252999931573868,-0.07344182580709457,-0.08347766846418381,-0.04334735870361328,0.021833090111613274,-0.05146964639425278,0.03901807591319084,0.04511477053165436,0.1367403119802475,-0.07371076196432114,-0.05117190256714821,-0.08144938200712204,-0.07826057076454163,0.04709876701235771,-0.030900022014975548,0.09172827005386353,0.05319390818476677,-0.032285481691360474,-0.01211250014603138,-0.022040193900465965,-0.02643194980919361,0.03565613552927971,0.002771570812910795,0.05523828789591789,-0.04744914174079895,0.04155202582478523,-0.005335455760359764,0.019929960370063782,0.08044235408306122,-0.013211352750658989,-0.019561056047677994,0.016972245648503304,0.1041967049241066,-0.010331218130886555,0.04329961538314819,0.015039525926113129,0.020991897210478783,0.05450546368956566,-0.027982259169220924,0.024210743606090546,0.02249705232679844,-0.13758955895900726,-0.030548207461833954,-0.04320793226361275,-0.058178093284368515,-0.05817456170916557,0.01824657991528511,0.05017067864537239,0.023708894848823547,-0.03892845660448074,0.08170154690742493,-0.04546298459172249,-0.030833812430500984,0.003756685182452202,0.032602835446596146,-0.05768405646085739,-0.12121635675430298,-0.03212035447359085]},{"text":"He is so gentle, yet so wise; his mind is so cultivated, and when he speaks, although his words are culled with the choicest art, yet they flow with rapidity and unparalleled eloquence.","book":"1984","chapter":9,"embedding":[0.08149469643831253,0.04987194389104843,0.017312737181782722,0.02975449152290821,-0.0642566978931427,0.07503806799650192,0.1260237693786621,-0.08617394417524338,-0.0034322706051170826,-0.004239458125084639,-0.0049301451072096825,-0.019186971709132195,-0.046784453094005585,-0.015372519381344318,0.016158951446413994,0.009354713372886181,0.008106024004518986,0.009203567169606686,-0.030558152124285698,-0.023180896416306496,0.04870123043656349,0.05718621239066124,0.03763309493660927,-0.022913236171007156,-0.08607218414545059,0.011970659717917442,-0.0421590693295002,-0.039032045751810074,0.07477090507745743,-0.023179078474640846,0.012572812847793102,0.04510052129626274,0.010034504346549511,0.02755451574921608,-0.10452447831630707,0.10580142587423325,-0.05943365395069122,0.05589898303151131,0.05378926172852516,-0.005398239009082317,-0.022704236209392548,0.015446493402123451,-0.0855855718255043,0.04134536162018776,-0.004232681356370449,-0.06182051822543144,-0.05914640426635742,-0.005077817477285862,0.009403763338923454,-0.0121234692633152,-0.15840645134449005,-0.05382409691810608,-0.05730847641825676,-0.04569093883037567,-0.037229444831609726,0.07767542451620102,0.039246778935194016,0.023412853479385376,-0.023287223652005196,-0.01683557592332363,-0.0064535136334598064,-0.01796836592257023,0.024218445643782616,0.04676930606365204,-0.0018051133956760168,0.020688069984316826,0.038030918687582016,-0.018114985898137093,-0.10175444185733795,0.07786975055932999,0.05544246360659599,0.04600272327661514,0.08392482995986938,-0.0038790125399827957,-0.06383620947599411,-0.05818675458431244,-0.018456552177667618,-0.035130150616168976,-0.006019953638315201,-0.03804764896631241,-0.03033648431301117,0.01986878179013729,-0.05562771484255791,-0.0031693167984485626,-0.06108773127198219,-0.026187529787421227,0.05346253886818886,-0.11778676509857178,0.01334573794156313,-0.010018246248364449,0.04113129898905754,-0.024243047460913658,-0.12425986677408218,-0.01317688263952732,0.011863703839480877,0.0822453424334526,-0.013380582444369793,-0.062430333346128464,-0.15536417067050934,-0.00014412394375540316,0.07098831236362457,0.032280076295137405,0.014129436574876308,0.08977308124303818,0.011829091235995293,0.003226160304620862,-0.09347840398550034,-0.02605828084051609,-0.05502811819314957,0.0494767464697361,-0.02133326418697834,-0.09050817787647247,0.011869517154991627,-0.022928953170776367,0.03621595352888107,0.02722347155213356,-0.05596737191081047,-0.0541277676820755,-0.06169353425502777,0.0932595357298851,0.07648682594299316,0.03379547968506813,0.012469852343201637,0.05852604657411575,-0.04143122211098671,-0.10114753246307373,0.04822637885808945,2.4677353108193906e-33,0.01030942052602768,-0.02977791428565979,0.024299869313836098,-0.014747911132872105,-0.017320621758699417,0.0010977567872032523,0.02486143633723259,-0.07066072523593903,-0.028750954195857048,-0.07623109221458435,-0.03450588509440422,0.007823005318641663,-0.005059834569692612,0.12128252536058426,-0.10438253730535507,0.00013473178842104971,-0.008125794120132923,-0.04283374547958374,0.06789261102676392,-0.049916889518499374,-0.045075125992298126,0.0386880487203598,-0.010686199180781841,-0.0698530450463295,-0.014423424378037453,-0.06373460590839386,0.018309827893972397,-0.036107610911130905,-0.03314955532550812,0.04096108302474022,-0.03260279446840286,0.026400908827781677,0.004624485969543457,0.013902084901928902,-0.003445229958742857,-0.037707552313804626,-0.07407969981431961,0.009922513738274574,0.028750859200954437,0.021875519305467606,-0.02546270750463009,-0.012740928679704666,-0.006773891858756542,0.01325808372348547,-0.02167048491537571,0.08415669202804565,-0.025644827634096146,0.027492569759488106,-0.04399598017334938,-0.006274254526942968,-0.009876656346023083,0.00882402341812849,-0.022404272109270096,-0.0035372006241232157,0.06903185695409775,0.01358638983219862,0.009764202870428562,0.151137575507164,-0.006880294997245073,-0.05230442062020302,0.02902947925031185,-0.027649428695440292,0.008671088144183159,-0.004571619443595409,0.0022054037544876337,-0.08192116022109985,-0.09205222874879837,-0.03126616030931473,0.0013324894243851304,0.009583351202309132,-0.10320532321929932,-0.001104439957998693,-0.025460075587034225,0.02022526040673256,-0.02992427349090576,-0.04174700751900673,0.04827939346432686,-0.05728820711374283,0.02377466671168804,0.024756787344813347,-0.10055393725633621,0.03615006059408188,-0.056102726608514786,0.023062212392687798,-0.0006041187443770468,-0.019178904592990875,0.021627889946103096,-0.06079709529876709,0.038158636540174484,0.10667289793491364,0.0021258939523249865,0.017359018325805664,0.07344921678304672,-0.12868814170360565,-0.024631835520267487,-6.230841519015941e-33,0.039650991559028625,0.013399148359894753,0.017089784145355225,0.1821683794260025,0.0034294743090867996,0.008841684088110924,-0.08836567401885986,0.09014436602592468,0.007776979357004166,-0.005249984096735716,-0.08551749587059021,-0.0002817058120854199,0.039465636014938354,-0.05952028930187225,0.03152649849653244,-0.032205063849687576,0.064236581325531,0.035987257957458496,0.048767875880002975,0.03370640426874161,0.06187702342867851,0.08941013365983963,-0.03909353166818619,-0.06739462912082672,-0.09587091207504272,-0.02099185809493065,-0.04517032578587532,-0.02927057072520256,-0.06944042444229126,0.034453947097063065,0.0501544326543808,-0.055664852261543274,-0.05523841083049774,0.04870414361357689,0.004081744700670242,0.05716749653220177,0.02339053526520729,-0.03009004145860672,-0.03951996937394142,0.11391189694404602,0.01097496785223484,-0.014994703233242035,0.08857834339141846,-0.062257248908281326,0.04595741629600525,-0.04574217274785042,-0.07034865766763687,-0.007145503535866737,-0.03407113999128342,0.01134619489312172,0.019992822781205177,0.0059050992131233215,-0.01020117662847042,-0.004078097175806761,0.016168242320418358,-0.05436535179615021,0.03403009474277496,-0.053691647946834564,0.011664672754704952,-0.00736369239166379,0.008298608474433422,-0.009052802808582783,-0.022647298872470856,0.028540294617414474,0.033462803810834885,0.02506757713854313,-0.049116797745227814,0.04086732491850853,0.01763048581779003,0.0030880779959261417,-0.009196287952363491,-0.01719873771071434,-0.07517953217029572,0.00548339681699872,0.0041193715296685696,0.04975743219256401,-0.02258988842368126,-0.08526831865310669,-0.001994192134588957,-0.08729533851146698,0.0005712970159947872,0.009527785703539848,0.012608525343239307,0.02009394019842148,-0.07191461324691772,0.005052878987044096,-0.027905890718102455,-0.04897178336977959,0.018040452152490616,0.017635134980082512,0.029412755742669106,-0.03447961062192917,0.009501307271420956,-0.06912469863891602,0.03550712764263153,-3.909747192665236e-8,-0.10119527578353882,-0.07334683835506439,-0.030253220349550247,-0.02297084964811802,0.1121612936258316,0.024859104305505753,0.05878372862935066,-0.037341080605983734,-0.030979298055171967,0.046676427125930786,0.03958452120423317,0.0584615133702755,-0.01861989125609398,0.06756631284952164,0.05424930900335312,0.00721213361248374,0.009479152970016003,0.011827320791780949,0.017525814473628998,-0.06368038058280945,0.08855539560317993,0.0007994362968020141,0.012653380632400513,-0.04018953815102577,-0.06539908796548843,0.034498874098062515,-0.06522819399833679,-0.004731951281428337,-0.05873384699225426,0.1014397069811821,0.055604562163352966,0.04006388038396835,0.0053929490968585014,-0.050830088555812836,0.0512324757874012,0.007698436733335257,-0.07590792328119278,-0.010421467944979668,0.039973266422748566,0.04040813818573952,0.04581018164753914,0.07918407022953033,-0.010307629592716694,0.0005175727419555187,0.011607175692915916,-0.09340868145227432,0.05828921124339104,0.0380917452275753,-0.0474272258579731,0.05508389323949814,-0.03430573269724846,0.05728098005056381,0.0944184735417366,-0.012627349235117435,0.036633893847465515,-0.027694158256053925,-0.021011345088481903,0.02877526730298996,-0.07505621016025543,0.0429571270942688,0.019934335723519325,0.09972869604825974,0.08584118634462357,-0.0968029797077179]},{"text":"Have you drunk also of the intoxicating draught?","book":"1984","chapter":9,"embedding":[0.03444673866033554,0.03351583331823349,0.025192024186253548,0.03129502013325691,0.01220175065100193,-0.04192853718996048,0.08846180140972137,-0.03667467460036278,0.023803574964404106,-0.06139863282442093,-0.051957011222839355,-0.03807559981942177,-0.020484425127506256,0.059528227895498276,0.01077737845480442,0.009472622536122799,-0.05902254953980446,-0.03243788331747055,0.04198787733912468,0.04115790128707886,-0.029920687898993492,0.003378549823537469,0.04573717713356018,0.01568644307553768,0.046933069825172424,0.0030955078545957804,-0.015522481873631477,0.020714595913887024,0.05529266968369484,-0.075393907725811,-0.031538497656583786,0.08694005012512207,-0.02309301495552063,-0.07830560207366943,-0.003409621072933078,-0.028600458055734634,0.03217938542366028,0.0005540365818887949,0.07095883786678314,-0.03802281618118286,0.06257307529449463,0.03794423118233681,0.024834614247083664,0.004391415975987911,-0.021614346653223038,0.026812206953763962,-0.05917847156524658,-0.008997014723718166,0.050625987350940704,-0.027728065848350525,0.022698666900396347,0.01750258356332779,0.0923580601811409,0.049593254923820496,0.05116674304008484,-0.055677883327007294,0.07776860892772675,0.014924800023436546,-0.008224192075431347,0.06206579506397247,-0.10028231143951416,0.0811174288392067,-0.024685820564627647,0.06427567452192307,-0.0024955556727945805,0.00027889228658750653,-0.11078038811683655,0.044356819242239,0.026610834524035454,0.05060020461678505,-0.006688495632261038,-0.06127593666315079,0.09691639989614487,-0.04572998732328415,-0.075192891061306,-0.05230206996202469,0.020260654389858246,-0.018141383305191994,-0.04799535125494003,0.057746414095163345,-0.041994210332632065,0.0537138469517231,-0.020244719460606575,0.060072679072618484,-0.045553259551525116,-0.07024536281824112,-0.013246674090623856,-0.012137895449995995,-0.05787726119160652,0.022238323464989662,-0.018397940322756767,0.009916071780025959,-0.02607961744070053,-0.06493780761957169,0.04479307308793068,-0.042667895555496216,0.02266751416027546,-0.02918982319533825,-0.028506942093372345,0.01166935171931982,0.012985097244381905,0.10399127751588821,0.03057086654007435,-0.094521164894104,0.07585699111223221,0.0005910703330300748,-0.016332508996129036,0.015336216427385807,0.02306937798857689,-0.09003140777349472,-0.009114524349570274,0.04057685658335686,0.13528436422348022,-0.05396550893783569,-0.02840294875204563,0.06978803128004074,-0.007371369283646345,-0.004811351653188467,0.015299038961529732,0.0674632117152214,-0.03836330026388168,0.0518261082470417,-0.010414553806185722,0.039168693125247955,-0.01089596375823021,-0.07558679580688477,0.015463137067854404,-4.1592130906061135e-33,-0.02085895836353302,-0.06233476847410202,-0.08284245431423187,0.07246239483356476,0.10446108877658844,-0.0447707362473011,-0.025396060198545456,0.0032636758405715227,-0.011942720972001553,-0.016251808032393456,0.060128118842840195,-0.09120258688926697,-0.04980788007378578,0.0015129972016438842,0.040909044444561005,-0.06331575661897659,-0.04844750836491585,-0.004194508772343397,-0.028161318972706795,-0.015849104151129723,-0.03285062685608864,-0.07158605009317398,-0.05127311125397682,0.033137258142232895,-0.03533409163355827,0.05901958420872688,0.005867055617272854,-0.0026579531840980053,0.058607108891010284,0.027072440832853317,-0.013342388905584812,0.0848105177283287,-0.035004980862140656,-0.024383259937167168,-0.039620742201805115,0.05218066647648811,0.03697876259684563,-0.0002222009643446654,-0.01183604821562767,-0.006023062393069267,-0.02591089718043804,0.08508063107728958,0.03438391536474228,0.014227149076759815,-0.06281890720129013,-0.026166049763560295,-0.09177323430776596,-0.007860308513045311,-0.06796848773956299,0.0020030795130878687,-0.01222776435315609,0.01494956761598587,0.022676341235637665,0.008791995234787464,-0.05636803060770035,0.013533427380025387,0.04663291946053505,-0.027965491637587547,0.0019043284701183438,-0.005522529594600201,-0.020090198144316673,0.09134244173765182,-0.08118820190429688,-0.018514279276132584,0.014300295151770115,-0.031268905848264694,0.003096581669524312,-0.03660254180431366,0.06421505659818649,-0.1379731446504593,-0.0866146981716156,0.01599545031785965,-0.0022481984924525023,-0.011168425902724266,-0.0026557217352092266,-0.028764106333255768,0.019317779690027237,-0.05682379752397537,0.03945142775774002,-0.059643734246492386,0.03155111148953438,-0.02439829893410206,0.03003113903105259,0.030994221568107605,0.0322902649641037,-0.028935452923178673,0.07928545027971268,-0.10122781246900558,0.025673193857073784,-0.015806881710886955,-0.0647207647562027,-0.02650957927107811,0.08205854892730713,-0.05766363814473152,-0.053767863661050797,2.2078505912548682e-33,-0.0061417012475430965,-0.0413375198841095,0.051297497004270554,-0.07003651559352875,0.052970901131629944,-0.026793446391820908,0.044547189027071,0.009040305390954018,-0.0329040065407753,-0.0030420729890465736,0.07397183775901794,0.06763629615306854,-0.044804785400629044,-0.0020898848306387663,0.07532627135515213,-0.036161769181489944,0.029677992686629295,0.11170849204063416,0.008871722966432571,-0.10923507064580917,-0.027822500094771385,-0.04945079982280731,0.06475954502820969,-0.026712071150541306,-0.011829031631350517,0.04794071614742279,0.07757404446601868,0.02458808571100235,-0.025603707879781723,-0.05187888815999031,0.07950359582901001,0.04495531693100929,-0.04886510223150253,-0.013786215335130692,0.017621779814362526,-0.02070797234773636,0.06980154663324356,0.0048145391047000885,-0.10360164940357208,-0.0828697606921196,-0.020296577364206314,0.0007312938687391579,-0.02058742195367813,0.06574878841638565,0.0894821509718895,-0.06841648370027542,-0.03367037698626518,-0.09297490119934082,0.056440602988004684,0.026917792856693268,0.028866836801171303,0.00926603190600872,-0.10612060129642487,0.07043320685625076,0.014085059985518456,-0.025351332500576973,0.03443241864442825,-0.06474916636943817,0.03171749413013458,-0.030501589179039,-0.11697105318307877,0.12193740904331207,-0.04447708651423454,-0.06366968899965286,0.07339076697826385,-0.06331449747085571,-0.06646496802568436,0.09418876469135284,0.08513475209474564,-0.026382269337773323,-0.02220892533659935,-0.10387815535068512,-0.04880483075976372,0.06362920254468918,0.036495599895715714,-0.055793870240449905,-0.015300866216421127,-0.0091375932097435,-0.018646517768502235,-0.05570383369922638,-0.06924852728843689,0.06844527274370193,0.02448311820626259,0.062232863157987595,0.0019283501897007227,-0.054142411798238754,0.034121423959732056,-0.054046791046857834,-0.0159271452575922,0.03031756915152073,0.06690512597560883,0.03081711381673813,-0.03912007436156273,-0.02637300454080105,0.061272770166397095,-1.805982208225032e-8,-0.040654782205820084,0.02112494222819805,0.013589348644018173,0.10986168682575226,0.001378942746669054,-0.027665743604302406,-0.00635300250723958,0.001502206432633102,-0.08714422583580017,-0.052146971225738525,0.0694512352347374,0.06081502512097359,0.07042192667722702,-0.03313795477151871,0.04171132296323776,0.013448023237287998,0.08895084261894226,-0.00473251985386014,-0.011308549903333187,0.015137809328734875,0.027117639780044556,0.04772603139281273,0.02503127045929432,0.007681053131818771,-0.08297223597764969,-0.0006560803158208728,-0.05165867879986763,-0.024358220398426056,0.028775231912732124,-0.019972866401076317,-0.0007257831166498363,0.14871206879615784,-0.09722446650266647,0.002514090621843934,0.00719493767246604,-0.07582681626081467,0.037539321929216385,-0.040664203464984894,-0.02544221840798855,0.03600576892495155,-0.012259782291948795,-0.06935388594865799,0.011935676448047161,0.016292141750454903,0.0687103420495987,0.03878946974873543,-0.017336593940854073,0.037652939558029175,0.03291475772857666,-0.022736012935638428,-0.00570694450289011,0.09910189360380173,0.06444953382015228,0.04290301725268364,0.06335704773664474,-0.03596622496843338,-0.037092119455337524,-0.02359669655561447,-0.05720085650682449,-0.10764778405427933,0.15325719118118286,0.009360239841043949,-0.010184516198933125,-0.017145328223705292]},{"text":"The starry sky, the sea, and every sight afforded by these wonderful regions seem still to have the power of elevating his soul from earth.","book":"1984","chapter":10,"embedding":[0.06080241873860359,0.09299502521753311,0.05066327005624771,0.013868356123566628,0.031699299812316895,-0.01942378468811512,0.028704173862934113,-0.1042446568608284,-0.05670055374503136,-0.04871354624629021,-0.03241310641169548,-0.009862233884632587,-0.0011833214666694403,-0.05294336378574371,0.02405286394059658,0.029727421700954437,-0.038060128688812256,-0.08434394747018814,-0.0565841868519783,0.021140042692422867,-0.005767454393208027,0.09800351411104202,0.00804146844893694,0.007669458165764809,0.02081122249364853,-0.03009168803691864,0.002641399158164859,0.010581317357718945,0.07316995412111282,-0.04238663986325264,0.042897675186395645,0.06160350888967514,-0.022565098479390144,0.017178790643811226,0.02664821781218052,0.07352127134799957,-0.0033361921086907387,0.0016969058196991682,-0.014614122919738293,-0.015348393470048904,0.00950581394135952,-0.04421365633606911,-0.017906583845615387,0.05716322734951973,-0.07944323122501373,-0.06570350378751755,0.024835990741848946,-0.057478807866573334,0.011121709831058979,-0.02239098586142063,-0.02146638184785843,-0.005019507370889187,-0.06246136873960495,-0.01651044562458992,-0.01637832634150982,0.05483162775635719,0.027376141399145126,-0.021612703800201416,0.06319085508584976,-0.04193064197897911,-0.009643707424402237,0.055376242846250534,0.0024629118852317333,-0.0016682492569088936,0.027157556265592575,-0.08335383981466293,-0.04524090886116028,-0.007978926412761211,-0.12680646777153015,0.018876906484365463,0.007781899534165859,0.02047368884086609,0.00950009934604168,-0.03222452476620674,-0.02112252078950405,-0.01937124878168106,-0.062322113662958145,-0.06846556067466736,0.016652271151542664,-0.03525654226541519,0.043163031339645386,0.07641932368278503,-0.04212338849902153,0.09529369324445724,0.034216247498989105,0.001669580116868019,-0.022887172177433968,-0.05378316342830658,0.005030834581702948,0.04941359534859657,0.03813771903514862,-0.10163909941911697,-0.07375796139240265,-0.02416677214205265,-0.020118772983551025,-0.046507950872182846,-0.006030313204973936,-0.05016903579235077,0.0035664429888129234,-0.008936543017625809,0.010623142123222351,0.028236106038093567,-0.029099229723215103,-0.009398047812283039,0.020833885297179222,0.005364552140235901,-0.025493677705526352,0.06954362988471985,-0.016902778297662735,0.004663870204240084,-0.0036013734061270952,-0.04421799257397652,-0.03115282766520977,-0.03312409669160843,-0.014016530476510525,0.08075050264596939,-0.0771479532122612,-0.01965419203042984,-0.09714005142450333,-0.03591654449701309,0.03318540006875992,0.03511646389961243,0.12381724268198013,0.14954744279384613,-0.01780047081410885,-0.05465861037373543,0.004092670977115631,-2.508581351787565e-33,0.037621092051267624,-0.036698125302791595,0.010083645582199097,0.04364380985498428,0.006974555552005768,0.023629290983080864,-0.005196277983486652,0.028951462358236313,-0.058129265904426575,-0.03157668560743332,-0.06107211858034134,0.10938413441181183,0.04819812998175621,0.019876835867762566,-0.011553393676877022,-0.003773040371015668,0.03859918192028999,-0.055946264415979385,0.00989266112446785,-0.054689571261405945,-0.02577057294547558,0.043217502534389496,-0.0309244766831398,-0.039370834827423096,-0.0076199001632630825,0.03414539992809296,0.05012021213769913,0.03792060166597366,-0.06644836068153381,0.05193021148443222,-0.04277455061674118,0.03203785791993141,0.021355291828513145,-0.015153351239860058,-0.015604608692228794,0.05261269584298134,-0.011599225923418999,-0.010257271118462086,-0.021859610453248024,0.0491064116358757,0.0006020135479047894,0.0513889454305172,-0.05113302916288376,-0.03370564803481102,0.0245649591088295,0.0092536099255085,0.04668577015399933,0.06463205814361572,-0.004389049950987101,-0.00020473940821830183,-0.04667402058839798,0.01448559109121561,0.01715138927102089,-0.08456365019083023,0.08180688321590424,0.03212936967611313,0.004142458550632,0.03338755667209625,0.04947463795542717,0.031406328082084656,0.032502323389053345,-0.049076300114393234,0.06244441866874695,0.016848213970661163,0.025343479588627815,0.026120182126760483,-0.018725326284766197,0.014682158827781677,-0.16533248126506805,0.015403693541884422,-0.03133944794535637,-0.004905350040644407,0.035546645522117615,-0.03864452615380287,-0.015425081364810467,-0.042854003608226776,-0.029572855681180954,0.017537757754325867,-0.05765588954091072,0.02700585313141346,-0.03467340022325516,0.0020803085062652826,-0.010738102719187737,-0.005397316999733448,0.09205379337072372,0.016927381977438927,0.04107992351055145,-0.09231586009263992,-0.06341899931430817,-0.048686232417821884,-0.04124900698661804,-0.05726729705929756,0.138844832777977,-0.17176802456378937,-0.16380591690540314,1.8358770900040414e-35,0.04296249896287918,-0.06814800202846527,0.004373783245682716,0.028481679037213326,0.04240313172340393,-0.04892069101333618,-0.053729329258203506,0.06235101819038391,-0.09594877809286118,0.015330418944358826,-0.06687002629041672,0.07971720397472382,0.10878760367631912,-0.07614758610725403,0.0033764939289540052,-0.005669728387147188,0.013638678938150406,0.03909183293581009,-0.08640174567699432,0.03689837455749512,0.05077488347887993,0.006934009026736021,0.03457095846533775,-0.018114540725946426,-0.09095899760723114,0.0550537183880806,-0.054988108575344086,-0.028810817748308182,-0.06151257082819939,0.0019860235042870045,-0.05702439695596695,0.00819016806781292,-0.08535647392272949,0.01945384405553341,-0.04162607714533806,0.053241029381752014,0.014421357773244381,0.05390147864818573,-0.08106499165296555,0.028792768716812134,-0.002846332499757409,0.006188628263771534,0.10182741284370422,0.00769274914637208,-0.03556273132562637,0.019187891855835915,0.006157555151730776,0.13002152740955353,-0.06326530873775482,0.047956567257642746,-0.03770649805665016,-0.02098424732685089,-0.0344901904463768,0.06789969652891159,-0.0524192675948143,0.014149567112326622,-0.013087661005556583,0.054358504712581635,0.038437191396951675,-0.05416782200336456,-0.02112189121544361,-0.08247280865907669,0.04404616355895996,0.07711175084114075,0.03511405363678932,0.03158918768167496,0.018988817930221558,0.16978970170021057,-0.0756831169128418,0.05900949984788895,0.008276203647255898,-0.08627238124608994,-0.08659561723470688,0.027904020622372627,0.0046492465771734715,0.11898253113031387,0.03182125464081764,-0.027094582095742226,-0.01796872541308403,-0.04055238142609596,0.034714121371507645,-0.040651049464941025,-0.019488265737891197,-0.009438366629183292,0.047660019248723984,0.04077700152993202,-0.06930216401815414,-0.11687339842319489,0.04021994024515152,-0.05445265769958496,-0.09501764178276062,-0.030199185013771057,-0.07305245101451874,-0.048496752977371216,0.03341560438275337,-2.7483379128057095e-8,-0.0262009110301733,0.03725659102201462,0.005633797496557236,0.031382907181978226,0.06181230768561363,0.00047780227032490075,0.10143629461526871,0.08903098851442337,-0.01810251548886299,0.025044476613402367,-0.007959185168147087,-0.009999715723097324,0.048205096274614334,-0.023713119328022003,0.05562593415379524,-0.04016217216849327,0.03484417498111725,-0.022375524044036865,-0.018614906817674637,0.046150464564561844,0.0053058797493577,0.024514416232705116,0.12375441938638687,-0.04865535348653793,-0.05374700203537941,0.01934145763516426,-0.06510549783706665,-0.09345827996730804,0.0025981413200497627,-0.050464268773794174,0.08053816109895706,0.007532160263508558,-0.0036116819828748703,-0.015081007964909077,0.005021152086555958,-0.005283701699227095,-0.039857614785432816,0.03071574494242668,-0.008461969904601574,-0.006067520473152399,-0.010222451761364937,0.062427353113889694,0.024395043030381203,0.03869341313838959,-0.009962212294340134,0.0020843714009970427,0.09249243885278702,0.03277261182665825,-0.007850931026041508,0.07887329161167145,-0.03899981081485748,0.06028816103935242,0.047630149871110916,-0.06578508764505386,0.05599334090948105,-0.06758926063776016,-0.03838541358709335,0.061954792588949203,-0.05788293853402138,0.08072851598262787,0.07894846051931381,0.0037241342943161726,-0.02761220932006836,-0.020575007423758507]},{"text":"Prepare to hear of occurrences which are usually deemed marvellous.","book":"1984","chapter":10,"embedding":[0.08142466098070145,-0.022323032841086388,0.06972716748714447,0.05569826811552048,-0.021112779155373573,-0.0017795447492972016,0.06118524447083473,-0.0005807623965665698,-0.05179418623447418,-0.042156435549259186,0.0004991407040506601,0.03348793834447861,0.016842179000377655,0.01999768801033497,0.0004757059214171022,-0.02598472684621811,0.10938355326652527,-0.057705357670784,-0.006587541196495295,0.01590746082365513,-0.006241591181606054,-0.051846571266651154,-0.026083629578351974,0.03796754404902458,-0.03471268340945244,0.008059781976044178,-0.008983198553323746,-0.07227522879838943,-0.011406403966248035,-0.002490303246304393,-0.06613235920667648,0.07027408480644226,-0.059953365474939346,-0.033907100558280945,0.01564653404057026,0.06393858045339584,0.017176738008856773,-0.014480999670922756,0.0856252908706665,-0.06333411484956741,0.022111807018518448,-0.034397490322589874,0.07026378065347672,-0.07604058086872101,-0.03265506401658058,-0.08105498552322388,0.0143019650131464,0.008419963531196117,0.04073549434542656,-0.06454695761203766,-0.02481713704764843,-0.033645208925008774,0.011149431578814983,0.00001165257617685711,0.02014125883579254,-0.04867086932063103,-0.031226836144924164,-0.05528255179524422,0.01355822291225195,0.01873554103076458,-0.015148780308663845,0.0566854290664196,-0.08111904561519623,0.04861189424991608,0.022960931062698364,0.01903443969786167,0.004960373975336552,0.0897228792309761,0.09438027441501617,0.12509645521640778,-0.02273246832191944,0.042800743132829666,-0.028514862060546875,0.10686318576335907,-0.028157513588666916,0.03057197481393814,0.0038350452668964863,-0.07898008823394775,0.045069918036460876,0.021853065118193626,-0.06952764838933945,0.030209915712475777,0.042471494525671005,-0.10417921841144562,0.09030811488628387,-0.03767785429954529,0.04324239119887352,-0.02397703006863594,0.050009921193122864,0.03732047602534294,-0.020680483430624008,-0.02060023322701454,0.030208570882678032,0.001455793739296496,0.016581011936068535,0.011641483753919601,-0.0847725123167038,0.0017015797784551978,0.055015046149492264,0.07570703327655792,-0.013599500991404057,0.029958456754684448,0.038927070796489716,0.06965303421020508,0.01642022281885147,-0.023391297087073326,-0.06228013336658478,-0.04711625725030899,-0.004967362619936466,-0.037809062749147415,-0.02071072719991207,0.03789451718330383,0.08365172892808914,-0.07818059623241425,-0.022316137328743935,0.0414075143635273,0.04620224982500076,-0.0014416695339605212,-0.051027167588472366,0.05334401875734329,0.09966612607240677,0.08177445083856583,0.01656237617135048,-0.014129634015262127,-0.016185853630304337,0.03996582701802254,-0.0764319971203804,-3.913436690974359e-33,0.06685885787010193,0.00806515384465456,-0.0445704311132431,0.10862606763839722,0.029316037893295288,-0.0034460623282939196,-0.07515326142311096,-0.03617500886321068,0.08737833797931671,0.11554592102766037,0.11069220304489136,0.05878430977463722,0.035358116030693054,-0.10907524079084396,-0.09394554048776627,-0.025227095931768417,-0.06580235809087753,0.07550185173749924,-0.053054314106702805,0.039686255156993866,-0.02953246608376503,-0.0536421462893486,0.005335639230906963,0.032201845198869705,-0.011348861269652843,0.020320435985922813,0.04312209412455559,-0.015080978162586689,0.05461674928665161,0.03691960871219635,0.01930716075003147,0.033046871423721313,0.039494629949331284,0.02659311704337597,-0.0039967698976397514,0.08139380812644958,-0.05168478190898895,-0.026184014976024628,0.03911838307976723,-0.011304585263133049,-0.05514902248978615,-0.02272317185997963,-0.09620816260576248,-0.022816622629761696,0.08035378158092499,0.07772577553987503,0.04473333805799484,-0.013198576867580414,-0.11236892640590668,-0.08688567578792572,-0.07146120071411133,0.020704809576272964,-0.012409718707203865,0.031085416674613953,-0.016825325787067413,0.003767743706703186,0.07159145176410675,-0.09242162853479385,0.10200772434473038,0.05705138295888901,0.01737435907125473,0.011940253898501396,-0.0036900241393595934,-0.04740489646792412,-0.05199269950389862,-0.08780628442764282,0.028040165081620216,0.022110436111688614,-0.08377246558666229,-0.04273078218102455,0.0038558547385036945,0.021498244255781174,-0.05562335252761841,-0.04618815332651138,-0.0019082669168710709,-0.007952654734253883,0.05596161261200905,-0.06139737740159035,-0.014040021225810051,-0.012427580542862415,0.016082588583230972,-0.031676020473241806,0.06356246769428253,0.0385686494410038,0.04342113062739372,0.026977285742759705,0.019341742619872093,-0.14265026152133942,-0.024160785600543022,0.004042424261569977,0.06363299489021301,-0.03243768960237503,0.07623880356550217,-0.11095915734767914,-0.08660874515771866,7.599985615331242e-34,0.0021935664117336273,-0.03030460700392723,-0.014796452596783638,0.02964736334979534,-0.004001994617283344,-0.049483466893434525,-0.10886075347661972,0.019112586975097656,0.014229142107069492,-0.06996728479862213,-0.06238487362861633,0.013907669112086296,0.05067829415202141,-0.049630679190158844,0.011479569599032402,-0.0532655231654644,0.09185608476400375,0.011046135798096657,-0.009764594957232475,0.06722257286310196,0.02118721604347229,0.004750232677906752,-0.05548085272312164,-0.02472739666700363,-0.08490587025880814,0.013957913964986801,-0.026769045740365982,-0.14612245559692383,-0.05737542361021042,-0.0735057070851326,-0.05974584072828293,0.04177677631378174,-0.04541539028286934,-0.03090507537126541,-0.02565660886466503,0.10325542837381363,0.04194385185837746,-0.024402564391493797,-0.01536600198596716,0.023574460297822952,0.016554638743400574,-0.008167567662894726,0.07562175393104553,0.07294994592666626,0.004935106728225946,-0.027660243213176727,0.009300083853304386,0.04027422517538071,0.017876094207167625,0.020328974351286888,-0.11251170933246613,0.011065342463552952,-0.0560564361512661,-0.01687992364168167,-0.026980500668287277,0.020235976204276085,-0.024750126525759697,-0.08509403467178345,-0.06316368281841278,0.05889204517006874,-0.05513845756649971,0.01860509254038334,-0.006877431180328131,0.00412213196977973,-0.02302887849509716,-0.06811358779668808,-0.09128718823194504,-0.0020076788496226072,-0.08297128230333328,0.024311117827892303,-0.0004736903647426516,0.0022796771954745054,-0.1599326878786087,-0.060791466385126114,0.007892066612839699,0.027485448867082596,0.011737587861716747,-0.02610664814710617,-0.03227682039141655,0.021884331479668617,0.06093664839863777,0.00043880686280317605,0.02123604528605938,-0.018664084374904633,-0.024183522909879684,0.04074953496456146,0.016569243744015694,-0.0013647963060066104,-0.016908541321754456,0.013265262357890606,-0.08436527103185654,0.006771317217499018,-0.014354092068970203,0.016488950699567795,0.046194884926080704,-2.438099677704031e-8,-0.053224802017211914,0.012069260701537132,-0.02013239823281765,-0.060365229845047,0.09062685072422028,-0.03298637643456459,-0.03799547627568245,0.06790512800216675,-0.03152095526456833,-0.023200590163469315,-0.05709138885140419,0.0022805961780250072,-0.016911249607801437,-0.0006622983491979539,0.07787732034921646,0.0029261766467243433,0.0668334886431694,0.03269266337156296,-0.1320071965456009,-0.04420037567615509,-0.058262456208467484,0.0759023129940033,0.05525681748986244,-0.07146941125392914,-0.04917057231068611,0.052284423261880875,0.030625443905591965,-0.031069446355104446,-0.009292948991060257,0.0636732280254364,-0.017093613743782043,0.04290327802300453,-0.0012901659356430173,-0.031857170164585114,-0.011147787794470787,0.04143613576889038,-0.00009305559797212481,-0.014265859499573708,0.09277158230543137,-0.031542375683784485,0.02040410041809082,-0.01249020453542471,0.03694356232881546,0.14845240116119385,-0.03553522005677223,-0.02004750818014145,-0.020504768937826157,0.031299617141485214,0.013502462767064571,0.028892051428556442,-0.032795872539281845,-0.0039025098085403442,0.03573937341570854,0.02097378857433796,0.05683383345603943,0.061768047511577606,0.03582552820444107,0.017563454806804657,0.023247016593813896,-0.013292301446199417,0.0741645097732544,-0.018307723104953766,-0.0498407706618309,0.03328373655676842]},{"text":"Chapter 1 I am by birth a Genevese, and my family is one of the most distinguished of that republic.","book":"1984","chapter":11,"embedding":[0.0008479302050545812,0.013881773687899113,0.009531286545097828,-0.05465684458613396,0.023377100005745888,0.024005871266126633,0.02064458839595318,0.03745783865451813,-0.08147464692592621,0.0022813272662460804,0.030353806912899017,-0.07151094079017639,0.04144558310508728,-0.13973930478096008,-0.09238705039024353,-0.03724075108766556,-0.05866067484021187,-0.027721697464585304,0.005810284521430731,0.0014505204744637012,-0.02416015788912773,-0.0035644168965518475,0.09827232360839844,0.026898996904492378,0.032618552446365356,0.011546069756150246,0.05821298062801361,0.04757275804877281,-0.002659593941643834,-0.07146526873111725,0.025713682174682617,-0.007017127703875303,-0.008185490034520626,0.02161029726266861,0.00222934503108263,0.010011578910052776,0.05188973620533943,0.018344957381486893,0.11849074810743332,-0.0016704434528946877,0.03961430862545967,-0.0026523161213845015,0.030676422640681267,0.029121486470103264,0.0380239263176918,0.04367022216320038,-0.036118920892477036,0.07679896801710129,-0.03846808895468712,0.03184148669242859,0.009073353372514248,0.02197875827550888,0.009616211988031864,0.017389429733157158,0.0381527841091156,0.099042609333992,-0.037228409200906754,-0.0394345298409462,-0.007511522620916367,0.013420619070529938,-0.007405479904264212,0.02454182505607605,-0.04326596483588219,-0.008304719813168049,-0.04970378801226616,0.020487425848841667,0.050416164100170135,-0.0242991391569376,-0.01194943767040968,-0.08521141111850739,-0.009777509607374668,0.00888810120522976,-0.007096126209944487,0.11758885532617569,-0.13941074907779694,-0.035523734986782074,-0.022237559780478477,0.10983506590127945,0.00837633851915598,-0.043946582823991776,-0.08994975686073303,0.01568026654422283,0.015558173879981041,-0.025613049045205116,-0.011797409504652023,0.026576533913612366,0.037913981825113297,-0.05749186873435974,-0.001592258457094431,-0.006299830973148346,-0.012500962242484093,-0.05201393738389015,0.14792519807815552,0.012627186253666878,-0.021576670929789543,-0.0029382994398474693,0.06956673413515091,-0.00010384138295194134,0.02382979728281498,0.07627007365226746,-0.03993676230311394,-0.069339819252491,-0.013140963390469551,0.11414404213428497,-0.14078515768051147,-0.011351539753377438,-0.06576889008283615,-0.057825133204460144,-0.0020600648131221533,-0.056202616542577744,-0.08883623778820038,-0.018724462017416954,-0.04103175550699234,0.016341470181941986,0.04501911997795105,0.02541651576757431,0.09616472572088242,0.030861197039484978,0.0343114472925663,-0.014765612781047821,-0.03371873497962952,0.028200453147292137,-0.08140552788972855,0.021904347464442253,0.029887154698371887,-0.0005801821826025844,-0.004694516770541668,-4.6709943109373516e-33,-0.02449803054332733,0.0048534078523516655,0.02475714311003685,0.0871373862028122,-0.09100379049777985,0.05178775265812874,-0.028355371206998825,-0.0037738559767603874,-0.06891178339719772,-0.03916867822408676,-0.043211061507463455,-0.073340505361557,-0.08626864850521088,-0.014304975979030132,-0.010547771118581295,0.08600704371929169,-0.09399528801441193,-0.037275295704603195,-0.04810427129268646,0.047471143305301666,-0.02521430142223835,0.11008899658918381,0.0014686203794553876,-0.05406330153346062,0.042291950434446335,-0.04933438077569008,0.03374728187918663,-0.028102926909923553,-0.04882427677512169,0.02520642802119255,0.07352158427238464,-0.0318310521543026,-0.03866477310657501,-0.06083125248551369,-0.005230393726378679,-0.016417646780610085,0.006099285092204809,-0.08043666929006577,0.009165960364043713,0.07856683433055878,-0.02343313954770565,-0.017797324806451797,0.04546229541301727,0.02624429576098919,0.05566411092877388,0.07445666193962097,0.0613221675157547,-0.04749489575624466,0.00527936452999711,0.006825617048889399,-0.048975128680467606,0.009910615161061287,-0.043506309390068054,-0.061939965933561325,-0.002472814405336976,0.005117360968142748,-0.06001519784331322,0.10943402349948883,-0.034525759518146515,0.030489526689052582,0.046181801706552505,0.015445356257259846,-0.00009642716031521559,0.028068553656339645,-0.043194372206926346,0.03329847380518913,-0.08124270290136337,0.035733748227357864,0.10668126493692398,-0.00452555762603879,0.009870735928416252,-0.014281067065894604,0.004842002876102924,0.03673427179455757,0.00906039122492075,0.11294795572757721,0.04608575627207756,-0.00740263145416975,-0.1116609126329422,-0.052455514669418335,-0.10327727347612381,0.061902280896902084,-0.046451881527900696,-0.03245522826910019,0.07653564214706421,0.009817621670663357,0.046344444155693054,-0.07759979367256165,-0.007689612917602062,0.031473834067583084,0.11200784146785736,0.014268400147557259,0.023715995252132416,-0.06069968640804291,-0.05209260806441307,7.684635443092351e-34,-0.021206149831414223,-0.04075378552079201,0.04895015433430672,0.008225097320973873,0.008072004653513432,-0.015019843354821205,-0.04094983637332916,0.013827209360897541,-0.07365012913942337,-0.042792756110429764,-0.018073780462145805,0.010181798599660397,0.056084103882312775,-0.0025376486591994762,0.0018357281805947423,0.015509297139942646,0.031068138778209686,0.06758724898099899,-0.0021343084517866373,0.03973934426903725,-0.08354895561933517,0.0755661129951477,-0.036857955157756805,-0.02024502493441105,0.016149049624800682,-0.029524503275752068,-0.09350621700286865,0.04229745268821716,0.028572794049978256,-0.10719766467809677,-0.00007498904597014189,-0.0017973990179598331,-0.05556313693523407,-0.0344393216073513,0.03108215145766735,-0.015474691987037659,0.023165764287114143,-0.08398468047380447,0.05245150625705719,0.02357395365834236,-0.049765489995479584,-0.000154677196405828,-0.01918664760887623,0.07239693403244019,-0.05670512467622757,-0.026772391051054,0.060440175235271454,0.020882410928606987,-0.00872922595590353,-0.009198922663927078,-0.06692715734243393,-0.0054913838393986225,0.07526882737874985,-0.017420154064893723,0.061126239597797394,-0.03434339538216591,0.06837977468967438,0.03027339093387127,-0.004765151999890804,0.06781939417123795,0.0031026394572108984,0.08184521645307541,-0.056035105139017105,0.08385533839464188,0.03304266184568405,-0.09301310032606125,-0.09594153612852097,0.047290295362472534,0.12067191302776337,0.03639822453260422,-0.018459584563970566,-0.10672197490930557,-0.07184719294309616,-0.0021708516869693995,0.04731595516204834,-0.0065546417608857155,-0.01563432812690735,0.012786613777279854,-0.025816209614276886,-0.044612739235162735,-0.0416688397526741,-0.032884594053030014,-0.04767920821905136,-0.08275073766708374,0.02321338839828968,0.02620891109108925,0.059848982840776443,-0.06236489489674568,0.10577983409166336,-0.0242918711155653,0.05988507345318794,0.014903824776411057,-0.054574593901634216,-0.049226973205804825,0.020639581605792046,-2.6466018709925265e-8,0.12153761833906174,-0.03283992409706116,0.006738846655935049,0.013363335281610489,-0.04867259040474892,-0.06022519990801811,-0.027078283950686455,0.01274008397012949,-0.08924061059951782,0.01732647232711315,-0.035472095012664795,0.030592933297157288,0.032630305737257004,-0.008715090341866016,0.09634179621934891,-0.01026810985058546,-0.057972028851509094,0.08716069906949997,-0.031986579298973083,0.0004889701958745718,0.016085445880889893,-0.02546985074877739,0.022425927221775055,-0.035792551934719086,-0.03704249486327171,0.016823258250951767,0.052697569131851196,0.003415308427065611,-0.003966836258769035,0.036016758531332016,0.03278500586748123,0.0486731231212616,-0.0867370069026947,-0.06068354845046997,0.029283270239830017,0.03724007308483124,-0.056878454983234406,-0.0072662304155528545,0.0671209990978241,-0.048490818589925766,0.08249401301145554,0.02000303752720356,0.026347259059548378,0.11758260428905487,-0.0229306910187006,-0.01790008507668972,0.12063100934028625,-0.034812282770872116,0.03067222237586975,-0.08379854261875153,-0.05487363412976265,0.03276119381189346,0.002202083356678486,0.048312682658433914,-0.06361832469701767,0.03579457104206085,-0.041912224143743515,0.0440024808049202,0.027805697172880173,-0.0654011219739914,0.04803023859858513,0.01907946541905403,-0.015390952117741108,-0.04554480314254761]},{"text":"Beaufort had taken effectual measures to conceal himself, and it was ten months before my father discovered his abode.","book":"1984","chapter":12,"embedding":[-0.05339273437857628,0.07697884738445282,0.027686262503266335,0.09189479053020477,0.07424633949995041,0.03662777319550514,-0.013154461048543453,-0.01759369485080242,-0.049106065183877945,0.051787763833999634,0.07303789258003235,0.03759178891777992,-0.016055569052696228,0.008011159487068653,-0.017565255984663963,0.01761152781546116,-0.03539176285266876,-0.014629815705120564,-0.004266847390681505,0.02809455804526806,-0.025586562231183052,0.09386128932237625,0.03441685065627098,-0.009586915373802185,0.009315982460975647,-0.04884915053844452,-0.010105505585670471,0.05795183777809143,0.07206932455301285,-0.011162846349179745,0.027067361399531364,-0.0574672669172287,0.03359241038560867,0.08730859309434891,-0.008032233454287052,-0.02762351930141449,0.03382269665598869,0.04985133558511734,-0.017246229574084282,0.049274083226919174,0.008856061846017838,0.1059545949101448,0.0674670860171318,-0.048883236944675446,-0.0380362868309021,-0.02506883256137371,-0.004181138705462217,0.012504045851528645,0.008514882065355778,0.005152838304638863,-0.01588073931634426,-0.03080330789089203,-0.08898892998695374,-0.057568494230508804,-0.0027730807196348906,-0.01097127515822649,0.013571852818131447,-0.00029240146977826953,-0.02896757237613201,-0.017959173768758774,-0.019785510376095772,-0.014533043839037418,-0.04699498414993286,-0.04639603942632675,0.027163848280906677,0.06451062113046646,0.04054559767246246,-0.08930547535419464,0.09464792162179947,0.11487869918346405,0.09374751895666122,0.02989550493657589,-0.05692422389984131,-0.007522300351411104,-0.085638627409935,-0.03185538202524185,0.004122648388147354,0.037419479340314865,0.0181905385106802,-0.052532799541950226,-0.11933083087205887,0.05398649722337723,0.01289572473615408,0.06460229307413101,-0.020662153139710426,-0.015135051682591438,-0.004059358965605497,-0.04786420986056328,-0.004468125756829977,0.012617676518857479,0.07835299521684647,-0.11138762533664703,-0.006582540925592184,-0.03210210055112839,-0.028266243636608124,-0.03874986618757248,0.015840042382478714,0.07079653441905975,-0.07253000885248184,-0.03779609873890877,-0.030288534238934517,0.014263086020946503,-0.08108439296483994,0.011830541305243969,-0.02146601863205433,0.03048514388501644,-0.023319298401474953,-0.020749423652887344,-0.06323835253715515,0.007658058311790228,0.015404202044010162,-0.006874613929539919,0.003632184350863099,-0.021461568772792816,0.04964856058359146,0.002080284059047699,-0.030153773725032806,0.016384858638048172,-0.061536017805337906,0.04115952178835869,0.03172047808766365,0.11410590261220932,0.028619997203350067,0.05365334823727608,-0.04915114864706993,0.036802735179662704,0.08915459364652634,-3.009706118897874e-34,0.07658325880765915,0.019350310787558556,-0.10418128222227097,0.11391527950763702,0.05200732871890068,0.041324786841869354,-0.022134892642498016,-0.009074772708117962,-0.03514174744486809,0.034866709262132645,0.0769466981291771,-0.03574846684932709,-0.03891926258802414,-0.08301860839128494,-0.03944937139749527,0.06166544184088707,0.013502822257578373,-0.01166331022977829,0.03320277854800224,-0.03813143074512482,0.01682228222489357,-0.009564082138240337,-0.008641435764729977,-0.0757281705737114,0.04148225486278534,-0.04117501527070999,-0.013868804089725018,0.02393607422709465,-0.09933146089315414,0.018930623307824135,0.028073392808437347,0.13617652654647827,0.03604235500097275,-0.0006996422307565808,0.06890702992677689,0.0064448220655322075,0.032234374433755875,-0.037094347178936005,0.023766091093420982,0.02458922751247883,0.05947054922580719,-0.009646274149417877,-0.029023297131061554,0.0087730148807168,0.02948632277548313,-0.11382132023572922,0.038637228310108185,0.01736075058579445,0.011640386655926704,0.01721421256661415,0.011529444716870785,0.060748305171728134,0.06241271272301674,-0.11087215691804886,-0.012303827330470085,0.020406974479556084,0.03654062747955322,-0.0591493658721447,0.02674035169184208,0.04452343285083771,0.10075227916240692,-0.0028988479170948267,0.04379566013813019,0.062209874391555786,-0.071117103099823,-0.13936932384967804,-0.030528979375958443,-0.024632835760712624,-0.03330245986580849,-0.04400451108813286,-0.0317985825240612,-0.05694384500384331,0.014397712424397469,-0.09894263744354248,-0.028279252350330353,-0.008663784712553024,-0.049348074942827225,0.06996966153383255,-0.020983388647437096,-0.08427013456821442,-0.00554190156981349,0.01801914907991886,0.04411071538925171,0.08212760090827942,-0.068788081407547,-0.05889761447906494,0.057100702077150345,-0.05537109076976776,-0.07186581194400787,0.04272230342030525,0.014837143011391163,-0.005228031426668167,0.017111560329794884,-0.11258317530155182,0.009346754290163517,-1.3554699746083685e-33,-0.040024030953645706,-0.015837371349334717,0.031968142837285995,0.01557309553027153,-0.049925826489925385,-0.10253465920686722,-0.008386711589992046,0.007352291140705347,0.0011839389335364103,-0.045849669724702835,-0.057747866958379745,0.05553821101784706,0.01867818646132946,-0.05725352466106415,-0.026490051299333572,0.06325226277112961,0.002648442517966032,-0.0032207854092121124,-0.02899343892931938,-0.0497707724571228,0.011539886705577374,-0.06962216645479202,-0.024045398458838463,-0.07097652554512024,0.038776569068431854,0.03920811787247658,0.04040024057030678,-0.043955545872449875,-0.05285070091485977,-0.04057328775525093,-0.04222876951098442,0.05137688294053078,0.017376068979501724,-0.03971794247627258,-0.07067860662937164,0.005517869722098112,0.012282599695026875,0.06330317258834839,-0.07056565582752228,-0.08938993513584137,0.0765497013926506,0.0017611830262467265,0.0335191935300827,0.03082798607647419,0.013589235953986645,-0.005592246539890766,0.03745574504137039,0.03575831651687622,0.02942655235528946,0.105709508061409,-0.0381600596010685,0.015044600702822208,0.0819617360830307,0.021154416725039482,0.022905627265572548,-0.01784088835120201,-0.026668429374694824,-0.10959994047880173,0.008368643000721931,0.052514757961034775,0.01246755663305521,0.015171649865806103,-0.06472264975309372,-0.0007310389191843569,0.0049814945086836815,0.0437716506421566,-0.06847520917654037,0.022968139499425888,-0.013338440097868443,-0.03130670264363289,-0.017986534163355827,-0.03983457386493683,0.04392699524760246,-0.06337763369083405,0.021004164591431618,0.05377914011478424,0.01152888499200344,-0.040495023131370544,-0.1013379916548729,0.0341186448931694,-0.0461454913020134,-0.08163627982139587,-0.08537537604570389,-0.024064820259809494,-0.00152118771802634,-0.0025185137055814266,0.008848444558680058,-0.07323868572711945,-0.017973804846405983,-0.051166970282793045,-0.013685799203813076,-0.08077335357666016,-0.010214118286967278,-0.0933900997042656,-0.05670413374900818,-2.4491921379876658e-8,0.011504290625452995,0.07424762099981308,0.024515390396118164,0.020275460556149483,0.07218123227357864,-0.07103711366653442,0.08342505246400833,0.0317901149392128,-0.0738421082496643,0.03926493227481842,-0.06353435665369034,0.0074199410155415535,0.12730471789836884,-0.014829382300376892,0.10773731023073196,-0.12140479683876038,0.03471340611577034,-0.12174051254987717,-0.07620690762996674,-0.018384380266070366,-0.03428729623556137,0.058019161224365234,0.00948147289454937,0.010075473226606846,-0.0628097876906395,0.03975119814276695,0.04432288184762001,0.01558168139308691,0.06631019711494446,0.1142549142241478,0.01363650057464838,0.019097836688160896,-0.001750228344462812,0.06950756162405014,0.009423885494470596,0.00222375662997365,0.041564080864191055,0.054307907819747925,0.010633774101734161,-0.00891730934381485,-0.009058183059096336,0.07481171935796738,0.03416333720088005,0.08283110707998276,0.03317977488040924,0.027617119252681732,0.021409161388874054,0.03421270102262497,0.007573520299047232,0.014152996242046356,0.040772680193185806,0.08356568962335587,-0.033350322395563126,0.0624137744307518,0.0038600864354521036,0.029312146827578545,0.06452279537916183,-0.10321471095085144,-0.0854521170258522,0.021938981488347054,0.000932421418838203,-0.09813419729471207,-0.06162022054195404,0.011065763421356678]},{"text":"He came like a protecting spirit to the poor girl, who committed herself to his care; and after the interment of his friend he conducted her to Geneva and placed her under the protection of a relation.","book":"1984","chapter":12,"embedding":[-0.06408542394638062,0.17661947011947632,-0.007688052486628294,0.06704194098711014,0.008608818985521793,0.07763005793094635,0.11088166385889053,0.008657708764076233,-0.04491548240184784,0.04367319867014885,0.06721075624227524,0.006918822880834341,0.024154001846909523,-0.0022443796042352915,0.044087160378694534,0.021344004198908806,-0.01993432827293873,-0.005137976258993149,-0.1383657306432724,0.02385331317782402,-0.007793184835463762,-0.01064720842987299,0.04407590255141258,-0.028414584696292877,-0.07807966321706772,-0.006608258467167616,0.019679900258779526,-0.034118130803108215,0.08409985154867172,0.009438461624085903,0.007191150914877653,-0.0279072355479002,-0.05881114676594734,0.025114713236689568,-0.052944365888834,0.10754774510860443,0.06848260760307312,0.053785860538482666,-0.0011823554523289204,-0.02103736624121666,-0.014016247354447842,0.0465804748237133,0.0059020379558205605,0.02222864329814911,-0.023944223299622536,-0.04993881657719612,0.006223645992577076,0.020585447549819946,0.01262475922703743,-0.11836354434490204,-0.05709904432296753,0.011527862399816513,-0.05619831755757332,0.012038903310894966,-0.04232010617852211,0.0163141917437315,0.03331916034221649,-0.008949550800025463,-0.03540544956922531,-0.03803684562444687,-0.023703988641500473,0.038698840886354446,0.033535342663526535,0.01283322088420391,0.01819627545773983,-0.05742597207427025,0.03955464065074921,0.06046471744775772,-0.0004893107688985765,0.08745677024126053,0.04588281363248825,-0.011126046068966389,0.014600386843085289,-0.02393130585551262,-0.08800484985113144,-0.08188693970441818,0.02510247752070427,-0.023724058642983437,0.038110483437776566,-0.007930755615234375,-0.008488821797072887,0.014135081321001053,0.029944662004709244,0.04611634835600853,-0.03305233642458916,-0.07246421277523041,0.07363713532686234,-0.1550106555223465,0.10310633480548859,0.04365983232855797,-0.027499988675117493,-0.09104060381650925,-0.043514434248209,0.042125552892684937,-0.019907183945178986,-0.008580843918025494,-0.021839570254087448,0.06883641332387924,-0.11791206151247025,0.05965835601091385,0.07177653163671494,0.01575300842523575,0.012608485296368599,0.07115064561367035,0.014808524399995804,-0.004340521525591612,0.0681014209985733,-0.04765346273779869,-0.06201723590493202,0.0332973450422287,-0.01065376028418541,-0.02602528966963291,-0.04487484320998192,-0.0941111221909523,0.05573255196213722,0.06215337663888931,-0.003606172977015376,-0.06702644377946854,-0.0586976557970047,-0.016652051359415054,0.06838444620370865,0.018105115741491318,-0.015422347001731396,0.09292714297771454,-0.07333829998970032,-0.05797792598605156,0.018340380862355232,-2.0423650475590835e-33,0.05842963233590126,-0.04173540696501732,-0.04318293556571007,-0.029269756749272346,-0.008213024586439133,0.06448769569396973,0.001373913954012096,-0.010021020658314228,-0.01791377179324627,-0.021271537989377975,-0.06289196759462357,-0.09923796355724335,-0.061425238847732544,-0.008283331990242004,-0.12322696298360825,0.03818606957793236,-0.05346037447452545,-0.011342054232954979,0.07076659053564072,0.049951907247304916,0.020662620663642883,0.0837896317243576,-0.004921357613056898,0.011670481413602829,0.004426927305757999,0.011646542698144913,0.05217607691884041,-0.016367485746741295,-0.02727089449763298,0.051472071558237076,0.01145712099969387,0.08942335844039917,0.06974047422409058,0.014885113574564457,0.09435619413852692,0.06536875665187836,-0.07480625063180923,0.0029709122609347105,-0.01823691837489605,0.0027517112903296947,-0.01312579121440649,0.029003938660025597,0.03597213700413704,-0.02991572953760624,-0.045937780290842056,-0.042662009596824646,-0.11689070612192154,-0.03963381052017212,-0.005876448005437851,0.03668418899178505,-0.03425301983952522,0.000879264494869858,-0.003806095803156495,-0.018008530139923096,-0.048410918563604355,0.08541297167539597,0.03379043936729431,0.057135745882987976,0.04202798753976822,-0.007837564684450626,0.0065868450328707695,-0.06772647053003311,-0.011807752773165703,-0.009196330793201923,-0.02714710868895054,-0.075857974588871,-0.00014301796909421682,-0.05147551745176315,-0.07468162477016449,-0.04634243994951248,-0.16298337280750275,0.08624045550823212,-0.06902993470430374,-0.017299626022577286,-0.05808740481734276,-0.004751008003950119,-0.005308976862579584,-0.053500737994909286,-0.056539010256528854,-0.026309175416827202,-0.08455473929643631,0.014967930503189564,0.04581437259912491,0.04279722645878792,-0.08247528970241547,-0.03515743464231491,0.07921881228685379,-0.060223620384931564,-0.00943270605057478,-0.0034678939264267683,0.07611827552318573,0.039884425699710846,0.05127720534801483,-0.08919741213321686,0.001839300966821611,-2.291536972825784e-33,0.016440879553556442,-0.06895337253808975,0.00903437752276659,0.057340867817401886,0.05151199549436569,-0.07980205118656158,-0.06616892665624619,0.0370994508266449,0.022522177547216415,0.051161300390958786,-0.06545428931713104,-0.08028881996870041,0.0540635846555233,0.05349329486489296,0.0017245173221454024,-0.03167949989438057,0.032395899295806885,0.05786815285682678,0.02346048131585121,0.028957093134522438,0.023920303210616112,0.03260483592748642,0.030861878767609596,-0.04507303237915039,-0.03866970166563988,0.008493291214108467,0.0606740303337574,-0.03801202401518822,-0.04303692653775215,-0.028091782703995705,0.09543398022651672,-0.03693903610110283,-0.04944000765681267,0.028728818520903587,-0.03256187215447426,0.03645915165543556,-0.003956263884902,0.07178797572851181,-0.006707977969199419,-0.07482560724020004,0.02448899857699871,-0.03806735575199127,-0.013530273921787739,0.008583520539104939,0.007716045249253511,0.007322919089347124,-0.019281558692455292,0.0643051266670227,0.07326238602399826,-0.09647487848997116,-0.015897804871201515,-0.029068900272250175,0.04239538684487343,0.020126422867178917,0.016147950664162636,-0.11785963922739029,-0.06805749237537384,-0.007705838419497013,0.02751998044550419,0.0184722188860178,-0.013819839805364609,-0.06256277114152908,-0.037395719438791275,0.051221154630184174,0.014607127755880356,-0.0016079857014119625,-0.09509143978357315,-0.039057839661836624,-0.013859241269528866,0.0028666891157627106,-0.018102232366800308,0.0030173335690051317,-0.014505099505186081,0.03920099139213562,0.05477949231863022,-0.039576731622219086,-0.09092434495687485,-0.08194658160209656,0.019699955359101295,-0.03903871402144432,-0.003508824622258544,-0.09287568181753159,-0.054143037647008896,-0.03759010136127472,-0.058132391422986984,-0.04375872761011124,0.06182646378874779,0.03188500180840492,0.0074772038497030735,-0.06409337371587753,-0.002912751631811261,-0.008849809877574444,-0.037353020161390305,-0.0731835588812828,-0.008122376166284084,-3.457008190821398e-8,-0.0041299196891486645,0.014612022787332535,-0.021164463832974434,0.015962138772010803,-0.030783621594309807,0.01742827147245407,0.03065146505832672,-0.07610509544610977,0.02214314416050911,0.13248950242996216,-0.08880054205656052,0.0835035890340805,0.05191374570131302,-0.01636022888123989,-0.034066978842020035,-0.0354006290435791,-0.010785617865622044,-0.07283943891525269,0.005228174384683371,-0.026009615510702133,0.0455797053873539,-0.03639128431677818,0.012420915998518467,-0.006421377882361412,0.027912277728319168,0.03766726329922676,-0.010037294588983059,0.002032083459198475,0.013993565924465656,0.06740188598632812,0.039576660841703415,0.03828414902091026,-0.01753401756286621,-0.005753589794039726,-0.04071023315191269,0.11882996559143066,-0.03824656456708908,-0.01737826317548752,0.04944303259253502,-0.060175903141498566,0.056305624544620514,0.034700747579336166,0.1012677550315857,-0.006498205009847879,0.1370730698108673,-0.014992919750511646,0.07095037400722504,-0.023648958653211594,0.04618390277028084,0.01732778549194336,0.024038130417466164,0.06073462963104248,0.02740008570253849,0.014150768518447876,0.021182619035243988,-0.09484034031629562,0.04474484920501709,0.014306156896054745,-0.03545606508851051,0.007919912226498127,-0.02697787433862686,-0.05930636078119278,0.02502814494073391,-0.011544505134224892]},{"text":"I, their eldest child, was born at Naples, and as an infant accompanied them in their rambles.","book":"1984","chapter":13,"embedding":[-0.00319886882789433,0.08488257229328156,-0.006002080626785755,0.05657162889838219,0.003406753996387124,-0.012348965741693974,0.03246055915951729,0.0275849848985672,-0.04667135328054428,-0.026409879326820374,0.017294667661190033,-0.03703925386071205,0.037612184882164,-0.019659409299492836,-0.10349410772323608,0.012716790661215782,-0.010267254896461964,0.0025780252180993557,0.03092096373438835,0.009565982036292553,-0.028768911957740784,-0.010776433162391186,0.08062715083360672,0.04035015404224396,0.10472734272480011,0.15029838681221008,0.06314873695373535,0.022633684799075127,0.02110162191092968,0.05282903462648392,-0.029755815863609314,-0.03866350278258324,0.051891542971134186,-0.02145879529416561,-0.03679383173584938,0.045323681086301804,0.10256051272153854,-0.01412773784250021,0.10516118258237839,0.024963613599538803,0.040661584585905075,-0.00514579750597477,0.008232046850025654,0.015101970173418522,0.043990135192871094,-0.013713526539504528,-0.057110778987407684,0.0359121635556221,0.01467753853648901,0.03143695741891861,-0.04599874094128609,-0.03298287093639374,0.05445285886526108,0.022451408207416534,-0.022820590063929558,0.038332805037498474,-0.011529320850968361,-0.06433852016925812,-0.01224567461758852,0.0799274668097496,-0.008315963670611382,-0.02353592962026596,-0.02025131694972515,0.016300048679113388,-0.10815166682004929,0.0077794636599719524,0.019870130345225334,0.02733771875500679,0.014329127967357635,-0.024320419877767563,0.0001286687474930659,0.037458036094903946,0.07522943615913391,0.09114015847444534,-0.08631247282028198,0.039861150085926056,-0.02447395771741867,0.02194126695394516,-0.06448523700237274,-0.12421289086341858,-0.07950648665428162,-0.07431832700967789,-0.0262928307056427,-0.05957363545894623,0.0038373435381799936,0.011018787510693073,0.08206523209810257,-0.03400257229804993,-0.011361089535057545,0.048890385776758194,0.029475446790456772,-0.0391247496008873,-0.06173860281705856,0.046977367252111435,0.05067756026983261,-0.10741428285837173,-0.04906498268246651,0.07644007354974747,-0.02066539041697979,-0.001669031917117536,-0.011031858623027802,-0.019280944019556046,0.10009176284074783,0.13761663436889648,-0.08394762128591537,0.040332552045583725,-0.06859131902456284,-0.07170030474662781,-0.08831999450922012,0.0028790764044970274,-0.10130276530981064,-0.04520806297659874,-0.002410917542874813,0.04159671440720558,-0.004719890654087067,0.0178206954151392,-0.03126741200685501,0.012334946542978287,-0.08885558694601059,0.003693919163197279,-0.0009231043513864279,0.06193148344755173,-0.1210455447435379,0.019408127292990685,-0.07794313132762909,-0.03006165660917759,-0.052030839025974274,-2.206535139607901e-33,-0.0018500878941267729,0.005512062925845385,-0.002818957669660449,0.08791737258434296,-0.0316646546125412,0.028434665873646736,-0.0658533051609993,-0.06675641238689423,-0.005817018914967775,-0.04479476064443588,-0.043432559818029404,-0.12279806286096573,0.030169129371643066,-0.08243972808122635,-0.030376840382814407,0.00658595422282815,-0.06712289154529572,-0.0359945222735405,0.019090352579951286,0.022881658747792244,-0.04947291314601898,0.07712569087743759,-0.0880635604262352,-0.10750331729650497,0.00031547731487080455,0.04175034537911415,0.008538305759429932,-0.03327624499797821,-0.03269483894109726,0.043195273727178574,0.08582709729671478,-0.05029677972197533,-0.02038392797112465,-0.03216036781668663,0.005335502326488495,0.025082819163799286,0.057512447237968445,-0.08854474872350693,-0.04513122886419296,0.03503774479031563,-0.021321097388863564,-0.03463572636246681,0.04413985460996628,0.1083948016166687,-0.03939953073859215,-0.022390056401491165,0.02611970715224743,0.023587826639413834,0.11424035578966141,-0.03407368063926697,-0.04726111888885498,-0.0026193067897111177,-0.07396165281534195,-0.02435966208577156,0.02903449349105358,0.04868309944868088,-0.0405307412147522,0.10968869179487228,-0.0324552096426487,-0.01560293510556221,0.07687300443649292,-0.016660507768392563,-0.04617543891072273,0.01753816194832325,0.0183851420879364,0.0022097432520240545,0.005298726260662079,0.0995236411690712,0.10034672170877457,-0.06364274024963379,0.049662135541439056,-0.009873216971755028,-0.029016556218266487,-0.0021643233485519886,-0.06639920175075531,0.027782296761870384,0.08128199726343155,-0.013465204276144505,-0.04764813557267189,-0.07611929625272751,-0.007868612185120583,0.040575284510850906,-0.009891971945762634,0.024098912253975868,0.012084806337952614,0.007806103210896254,0.018585534766316414,-0.012766391970217228,-0.04669791832566261,0.04629954695701599,-0.003419930348172784,0.0548018142580986,0.10686561465263367,-0.08038989454507828,-0.04444744810461998,-2.9365118509275126e-34,0.045427355915308,-0.0024211308918893337,0.009652000851929188,0.012417066842317581,-0.06834670901298523,-0.02022230066359043,-0.029165610671043396,0.0608639270067215,-0.04327647015452385,-0.0019226341973990202,-0.12676919996738434,0.012569544836878777,0.04333677887916565,-0.1122356429696083,-0.035763006657361984,0.011750472709536552,0.048212237656116486,0.07853979617357254,0.03787107393145561,-0.05596111714839935,0.008986864238977432,0.015488912351429462,-0.04820862412452698,-0.07836870104074478,0.02257273904979229,0.0479506179690361,0.02647927962243557,0.03808773681521416,-0.09032683074474335,0.0025683448184281588,0.06644968688488007,-0.06961424648761749,-0.013679028488695621,-0.0555637888610363,0.040706049650907516,0.05142737925052643,-0.022774895653128624,0.011867469176650047,-0.0028992341831326485,-0.021123375743627548,-0.12560385465621948,-0.03482522442936897,0.051174040883779526,0.09291398525238037,-0.003960938658565283,-0.012946562841534615,0.009730719961225986,0.05403892323374748,-0.02635703794658184,-0.0010867503006011248,-0.018595507368445396,0.017439385876059532,-0.03316254913806915,-0.027074960991740227,0.0028106935787945986,-0.035904210060834885,0.01079610176384449,-0.05462314933538437,0.09283582121133804,-0.00913348887115717,0.0344565287232399,0.0013366249622777104,-0.06320171803236008,-0.029263736680150032,-0.008655146695673466,-0.033645350486040115,-0.06588917970657349,0.06078799068927765,-0.011542867869138718,0.009976871311664581,0.008371923118829727,-0.035855937749147415,-0.010943016037344933,0.03786146640777588,0.003742394968867302,-0.013391130603849888,-0.06422888487577438,0.06695650517940521,-0.036193471401929855,-0.012395184487104416,-0.005967103410512209,-0.03253895789384842,-0.024816475808620453,-0.0008178695570677519,-0.06011400744318962,-0.07457725703716278,0.06540735065937042,-0.07918571680784225,0.029513031244277954,-0.06146769970655441,0.057326819747686386,0.03341919928789139,0.026196591556072235,-0.08319465816020966,0.0024681289214640856,-2.3320149367123122e-8,0.07060650736093521,-0.0020720434840768576,-0.0059036449529230595,0.05538579076528549,0.01920766942203045,-0.09939262270927429,-0.01016079168766737,0.06745131313800812,-0.015449268743395805,0.012627342715859413,-0.122316375374794,0.03147250413894653,0.06997092068195343,-0.034364908933639526,0.13295340538024902,-0.03521357476711273,0.019535286352038383,-0.030678940936923027,-0.01302946824580431,0.03969551622867584,0.03570310026407242,0.042879026383161545,0.03326263278722763,-0.024482486769557,-0.0109902024269104,-0.021039098501205444,0.02200281247496605,0.009035452269017696,0.0028807346243411303,0.012668570503592491,0.03112844005227089,0.07722686231136322,-0.03399020805954933,-0.03613134101033211,-0.03299686312675476,0.04539509862661362,-0.07070233672857285,0.023314006626605988,-0.04170998930931091,-0.07993727177381516,0.019538838416337967,-0.012549553997814655,0.0797092616558075,0.06826284527778625,0.08473557233810425,0.01249800343066454,0.001770752016454935,0.012688090093433857,0.006583083886653185,-0.0296783410012722,-0.07691354304552078,0.07171265780925751,0.012031485326588154,0.08189892023801804,0.024771472439169884,-0.01344549935311079,-0.012788727879524231,0.02236722968518734,0.048544906079769135,0.10952089726924896,-0.05346082150936127,0.06187211722135544,0.006938763428479433,-0.01052249874919653]},{"text":"During one of their walks a poor cot in the foldings of a vale attracted their notice as being singularly disconsolate, while the number of half-clothed children gathered about it spoke of penury in its worst shape.","book":"1984","chapter":13,"embedding":[0.023636071011424065,0.07941977679729462,0.07190608233213425,0.13551999628543854,0.0025221414398401976,-0.022996854037046432,0.05059756338596344,0.024692540988326073,0.08904583007097244,0.008554209023714066,0.04435321316123009,-0.02168688178062439,-0.010851935483515263,0.05332252383232117,-0.010255788452923298,-0.015691084787249565,-0.04452522099018097,0.011899147182703018,0.03588194027543068,0.07145044952630997,-0.004455246962606907,0.06801643967628479,0.013214454986155033,0.006343315355479717,0.010906051844358444,0.021925780922174454,0.0026742650661617517,-0.06406846642494202,0.046030834317207336,-0.05407566577196121,-0.011277786456048489,0.13615091145038605,0.07988795638084412,-0.006565120071172714,0.052969422191381454,0.04547258839011192,0.04763784632086754,0.06543274223804474,0.04905473068356514,-0.02101859822869301,-0.006912965793162584,0.06403042376041412,-0.024495216086506844,-0.03700289875268936,-0.035072457045316696,-0.062447428703308105,0.0068244412541389465,0.011571256443858147,-0.048027925193309784,-0.037464436143636703,0.06215156242251396,-0.06882769614458084,-0.03223229572176933,0.04659776762127876,-0.05302363261580467,-0.037754274904727936,-0.0064591276459395885,0.03545549884438515,0.011193470098078251,-0.03414933755993843,0.03994575887918472,0.01276059728115797,-0.04225008562207222,-0.04591968655586243,0.016845816746354103,-0.0250729750841856,0.09658337384462357,-0.04941978305578232,-0.023714864626526833,0.10828706622123718,0.03309083729982376,0.0427670031785965,-0.011722947470843792,-0.03799935430288315,-0.019310783594846725,-0.0008776196045801044,-0.015686552971601486,-0.0406118668615818,0.00005032511398894712,-0.059271134436130524,-0.09747043251991272,0.013159647583961487,-0.02350161410868168,-0.057580601423978806,-0.027307264506816864,-0.05115029588341713,0.044895581901073456,-0.07978998869657516,-0.027012938633561134,-0.04130903631448746,-0.005864634178578854,0.06758206337690353,-0.008402049541473389,0.0465988852083683,0.027408000081777573,0.001628314726985991,0.018430044874548912,0.017095724120736122,-0.06687936931848526,0.08165454119443893,0.03244718536734581,0.0993870198726654,-0.013740581460297108,0.0849689245223999,0.034228432923555374,-0.05174834281206131,-0.002678800607100129,-0.0864807739853859,-0.029169950634241104,0.017873341217637062,-0.04013688117265701,-0.0727081149816513,0.1059836745262146,0.025378966704010963,-0.05561589077115059,-0.08347130566835403,0.01671161688864231,-0.009052202105522156,0.012377533130347729,0.1579684615135193,0.005813748575747013,0.014137271791696548,-0.029662489891052246,0.0803830623626709,-0.06383755803108215,-0.022209879010915756,-0.019157640635967255,1.0671546384722629e-33,-0.014007867313921452,0.06476575881242752,0.03192881494760513,0.0733153447508812,0.11524411290884018,-0.04004437103867531,-0.06414907425642014,-0.028653129935264587,0.06365032494068146,-0.002111231442540884,-0.07295826077461243,-0.06528716534376144,0.040060508996248245,-0.0004397970042191446,-0.04496866837143898,-0.049744416028261185,-0.03298848122358322,-0.02349788323044777,0.0033314500469714403,0.0038934818003326654,-0.08130820840597153,0.09121450036764145,0.04834407567977905,-0.055685050785541534,-0.004165433347225189,-0.004182548727840185,-0.019610410556197166,-0.009863058105111122,0.0038805236108601093,0.031137974932789803,0.034288208931684494,-0.015764186158776283,0.021765880286693573,-0.013827171176671982,0.00119031872600317,0.016461769118905067,0.09144292026758194,0.03941938653588295,-0.09637341648340225,0.0854698047041893,-0.08939873427152634,-0.0412752591073513,0.04941071197390556,-0.02233363687992096,0.04126349464058876,0.049153245985507965,0.119874969124794,0.019642047584056854,-0.1807977557182312,0.04476867988705635,0.005038843490183353,0.018503447994589806,-0.029719503596425056,-0.008500384166836739,-0.037604935467243195,-0.061251621693372726,0.030955471098423004,-0.043820757418870926,-0.07534251362085342,0.0032336029689759016,0.09821875393390656,0.0032399913761764765,-0.01854388229548931,-0.10861705988645554,-0.025467248633503914,-0.07061169296503067,-0.06386355310678482,-0.0229816697537899,-0.005368352402001619,-0.07239077240228653,-0.07796622812747955,0.09093058854341507,-0.022853415459394455,-0.02231193333864212,-0.021057603880763054,-0.024930965155363083,0.030143702402710915,-0.0006103665800765157,0.017984630540013313,-0.05164099484682083,-0.04348583146929741,-0.07736173272132874,0.02447563223540783,-0.10258317738771439,-0.07930585741996765,-0.069302037358284,0.046313244849443436,-0.04280694201588631,-0.04687431827187538,0.06389997154474258,-0.055523790419101715,0.04306785389780998,0.06684433668851852,-0.07628314942121506,0.059974879026412964,-2.9843002421454984e-33,-0.09494981169700623,-0.06365194916725159,-0.04374220222234726,0.004179030656814575,-0.08275637030601501,-0.007697355002164841,0.017531437799334526,0.04303760081529617,-0.01289026066660881,-0.04349520057439804,-0.03176736459136009,-0.03886987268924713,0.05164245516061783,0.011349472217261791,0.02380385622382164,-0.011606687679886818,0.08281993120908737,0.018887268379330635,0.06105133146047592,0.004970781039446592,-0.015674898400902748,0.0027883481234312057,-0.10633194446563721,-0.0286638755351305,-0.006850557401776314,0.08270896971225739,0.022681957110762596,-0.09698305279016495,-0.06564667820930481,0.04524271935224533,0.0794709175825119,-0.03186069428920746,-0.0035037528723478317,0.059417542070150375,-0.020612435415387154,0.014146966859698296,-0.06485229730606079,0.0033815151546150446,-0.07692781090736389,-0.06134917214512825,0.01927427388727665,-0.04045148938894272,0.007427993230521679,0.058745793998241425,0.04067448154091835,-0.06586471945047379,-0.055482156574726105,0.028091629967093468,-0.040410351008176804,0.02199653722345829,0.015362938866019249,0.041501179337501526,-0.013801113702356815,0.06158846244215965,-0.025561578571796417,-0.015377692878246307,-0.11074590682983398,-0.010203678160905838,0.04194130003452301,0.08549205213785172,-0.012524981051683426,-0.0012188410619273782,-0.10488585382699966,-0.013513906858861446,0.04347897320985794,-0.06177996098995209,-0.08546438068151474,0.05875549465417862,0.05127878114581108,0.011359414085745811,0.04473615437746048,0.03917907178401947,-0.054989032447338104,-0.1007312759757042,0.03258819505572319,0.023209255188703537,0.03942064195871353,-0.03312176093459129,-0.001110267941839993,-0.012698904611170292,-0.017673105001449585,-0.085966557264328,0.03157417103648186,-0.021922629326581955,-0.0759134441614151,-0.045629870146512985,0.001489803777076304,0.02524915710091591,-0.01626904308795929,0.024908490478992462,-0.018394816666841507,-0.04092603921890259,0.055721890181303024,0.004538563545793295,0.08151740580797195,-3.467975062676487e-8,-0.05197488144040108,-0.01405927911400795,-0.02061707340180874,-0.03702172636985779,0.056694354861974716,-0.07600272446870804,0.050504520535469055,0.044036585837602615,-0.0032548902090638876,0.10437880456447601,-0.15134203433990479,0.02683199569582939,-0.01249049324542284,0.029592376202344894,0.04619940370321274,0.08085354417562485,-0.006670726463198662,0.06122608855366707,-0.037453774362802505,-0.0240074060857296,-0.00019212931510992348,0.028460511937737465,-0.0158996544778347,-0.0460222102701664,-0.04171760380268097,-0.09328103065490723,-0.0016006500227376819,-0.015004475601017475,-0.07416677474975586,0.02983618900179863,0.07355823367834091,0.04691006988286972,-0.018940499052405357,0.010495522990822792,-0.021509967744350433,0.06861917674541473,-0.005711422301828861,0.020468221977353096,0.029445528984069824,0.010274686850607395,0.0012160188052803278,0.015640992671251297,0.0008041856926865876,-0.0262235626578331,0.05307277664542198,-0.043269168585538864,0.04387909546494484,0.046502627432346344,-0.027015281841158867,0.004035877995193005,0.0003682123788166791,0.06880296021699905,0.020417526364326477,0.06405941396951675,0.028040144592523575,-0.03774222359061241,0.014043767936527729,0.04651467502117157,-0.041954126209020615,0.04643724858760834,0.0492825023829937,0.05193718150258064,-0.0019423911580815911,-0.03357968106865883]},{"text":"The infant had been placed with these good people to nurse: they were better off then.","book":"1984","chapter":14,"embedding":[-0.046140316873788834,0.039514653384685516,-0.04680422693490982,0.08556383103132248,-0.01719571463763714,0.027786800637841225,0.009507552720606327,0.015452087856829166,-0.06538347154855728,0.006018316838890314,0.007171839941293001,0.11904821544885635,-0.028818579390645027,-0.0015365033177658916,-0.058699265122413635,-0.006382390856742859,0.0681154727935791,0.01834353245794773,0.006830169819295406,0.022668087854981422,-0.09923966974020004,-0.002675953321158886,0.017133992165327072,0.04487431421875954,0.0489971823990345,0.0520944707095623,-0.03357982635498047,0.010748541913926601,0.08698628097772598,0.11348501592874527,-0.08821234852075577,-0.0664326474070549,0.029432544484734535,-0.027323072776198387,-0.08939152956008911,0.022055791690945625,0.020845284685492516,0.009680299088358879,-0.03465135395526886,-0.03265733644366264,0.0804443433880806,0.029044929891824722,-0.029031898826360703,-0.09022148698568344,-0.0008115512318909168,0.00014902406837791204,0.00810446497052908,-0.029473667964339256,-0.03567426651716232,-0.04570158198475838,-0.03809252753853798,-0.06782937049865723,-0.05755311995744705,0.013904212042689323,-0.010783437639474869,0.025122644379734993,-0.012499324977397919,-0.07571408897638321,-0.016876285895705223,-0.011027551256120205,-0.057800330221652985,0.018998242914676666,0.03638848289847374,0.003428144147619605,0.05688159540295601,-0.009782027453184128,-0.010655555874109268,-0.02853137068450451,0.023507043719291687,0.002671441063284874,-0.007461473811417818,0.018776873126626015,0.10702938586473465,0.06992550939321518,-0.030183332040905952,0.04094623401761055,0.046976976096630096,-0.025807319208979607,0.005442727357149124,-0.031194910407066345,-0.0030734101310372353,-0.041200947016477585,-0.01344455685466528,0.015710782259702682,-0.02207050658762455,-0.04117785394191742,0.034316953271627426,-0.11738795042037964,-0.015851274132728577,-0.04100542888045311,0.10148032009601593,0.08092418313026428,0.008267651312053204,0.026180962100625038,0.016009598970413208,-0.029373031109571457,-0.041737448424100876,0.05370810255408287,-0.048472579568624496,0.027660664170980453,-0.044563595205545425,0.05966939032077789,-0.022902900353074074,0.04990847036242485,0.008976727724075317,-0.0406731441617012,0.00395944295451045,-0.10429102182388306,-0.06862544268369675,0.04925583675503731,-0.09291692078113556,0.0681254118680954,0.003398982575163245,0.08498584479093552,-0.06427595764398575,0.0014203637838363647,-0.01994147151708603,-0.044567007571458817,0.0005434909253381193,0.03130868822336197,0.02115025371313095,0.02688421867787838,-0.05411628261208534,0.017731795087456703,-0.023518335074186325,-0.06940508633852005,0.017497042194008827,-2.1843269289139988e-33,-0.023347174748778343,0.002219950780272484,0.10347596555948257,0.024230770766735077,0.11073460429906845,0.10430420190095901,-0.0473746694624424,-0.08811665326356888,0.10678122937679291,-0.024609725922346115,-0.08051438629627228,-0.05614221841096878,0.006127701606601477,-0.025412485003471375,-0.04969615861773491,0.010557153262197971,-0.1419367492198944,-0.043317072093486786,-0.026530899107456207,0.12896618247032166,0.0303655955940485,0.0491316020488739,-0.043770261108875275,0.04398031905293465,-0.021429501473903656,0.07122853398323059,-0.0007306751795113087,0.029066039249300957,0.008061177097260952,0.018625088036060333,-0.004356713965535164,-0.04651084169745445,-0.028538906946778297,-0.04325614497065544,-0.045309558510780334,-0.03149731084704399,0.03567167744040489,0.0013302714796736836,-0.07355888932943344,-0.012387669645249844,-0.08735682815313339,0.08733820915222168,0.057781510055065155,0.05011119320988655,0.006990395486354828,0.03373010829091072,-0.008182166144251823,-0.07802978157997131,-0.010089465416967869,-0.03576334938406944,0.03474590927362442,-0.07264961302280426,-0.04859909042716026,-0.08624418079853058,-0.009437628090381622,0.061886757612228394,0.004438170697540045,0.1369156390428543,-0.08611462265253067,-0.024600699543952942,0.0858905166387558,-0.038832854479551315,0.03572637215256691,-0.08888674527406693,-0.0006380556151270866,-0.04459705203771591,0.021615691483020782,0.02208130992949009,0.0415596067905426,-0.0561135895550251,-0.03892116993665695,0.04405990242958069,-0.07716991752386093,-0.036964301019907,-0.04778750613331795,0.018776224926114082,0.012734499759972095,-0.0064329542219638824,-0.009031377732753754,-0.11203522235155106,0.10197389125823975,0.03801878169178963,0.018171442672610283,-0.004815893713384867,0.006864173337817192,-0.11741834878921509,-0.07075691223144531,-0.02061913162469864,0.016671737655997276,0.049310434609651566,0.012051346711814404,0.10266564786434174,0.10390924662351608,-0.030802670866250992,-0.025790570303797722,-1.4896004921929149e-33,-0.056398406624794006,0.05547970160841942,-0.04361717402935028,0.07560845464468002,-0.04478948563337326,-0.07573705911636353,-0.03845085948705673,-0.017541011795401573,0.0073139118030667305,0.08993817865848541,0.0010995026677846909,-0.04148866608738899,0.06194080412387848,0.007126381155103445,-0.04539244621992111,-0.007392730098217726,-0.011084357276558876,0.032789040356874466,0.011219114065170288,-0.017384832724928856,0.07701840251684189,0.036984823644161224,-0.024583525955677032,0.013856351375579834,0.009905759245157242,0.07350817322731018,-0.02749965712428093,0.06320196390151978,-0.08025187999010086,-0.07138696312904358,-0.0028819204308092594,0.037083711475133896,0.018574096262454987,0.020390719175338745,-0.006724916398525238,0.017446570098400116,-0.07431421428918839,0.010399146005511284,-0.05756573751568794,-0.06819690018892288,0.08687461167573929,-0.0714222639799118,-0.08105158060789108,0.06175406277179718,0.003958521876484156,-0.017589036375284195,0.0738174244761467,-0.047190893441438675,0.039672210812568665,-0.007051798515021801,-0.043990641832351685,-0.10084843635559082,-0.10515211522579193,0.04939985275268555,-0.04878891259431839,-0.043223317712545395,0.059981077909469604,-0.1368175894021988,0.08969233185052872,0.050719358026981354,0.011362899094820023,-0.005768845323473215,-0.08608289808034897,-0.0015531909884884953,-0.03039919026196003,-0.0052193705923855305,0.0018553923582658172,0.03663184121251106,0.0039777448400855064,0.0010329323122277856,0.04363204538822174,-0.02973097562789917,0.010081402026116848,-0.012357247993350029,-0.03818649798631668,0.05436599999666214,-0.03606250509619713,-0.01568586751818657,-0.0672190859913826,-0.021122394129633904,-0.09545473009347916,-0.08273068070411682,-0.03866299241781235,0.021063009276986122,0.0000810024284874089,-0.0027626550290733576,0.08674278110265732,-0.011301489546895027,-0.03669310733675957,-0.020330103114247322,0.057680919766426086,-0.03457529842853546,0.026243265718221664,-0.049481939524412155,-0.031186487525701523,-2.3484663103090497e-8,0.01975419372320175,-0.022817321121692657,-0.0026678750291466713,0.006599936168640852,0.011376919224858284,-0.12311971932649612,-0.0839739516377449,0.10148593038320541,-0.008649044670164585,0.0711108073592186,-0.07623652368783951,0.06000147759914398,0.015791820362210274,-0.004337893333286047,0.13671022653579712,0.09478935599327087,-0.019495414569973946,-0.015599625185132027,-0.039353203028440475,0.06934249401092529,-0.03402230888605118,0.05532315373420715,0.002235875930637121,0.0008241852628998458,-0.005234573036432266,-0.03213648125529289,-0.05868649482727051,-0.006843001581728458,-0.05657177418470383,0.025114797055721283,0.048210106790065765,0.03407423198223114,0.033809371292591095,-0.0018994519487023354,-0.0032971245236694813,0.03274880722165108,-0.017225999385118484,0.013359772972762585,0.01554159540683031,-0.07186959683895111,0.007155688013881445,0.014433477073907852,0.0047414530999958515,0.03267586976289749,0.09363202750682831,-0.020413057878613472,-0.022544389590620995,0.06362234055995941,0.012402985244989395,-0.023559723049402237,0.02857578545808792,-0.0029187542386353016,0.0165516696870327,-0.007231190800666809,0.04607601836323738,-0.00760191073641181,-0.031073058024048805,-0.020617041736841202,-0.00715510593727231,0.08516756445169449,-0.002116142539307475,0.012503162957727909,0.034942690283060074,0.07614453136920929]},{"text":"Her presence had seemed a blessing to them, but it would be unfair to her to keep her in poverty and want when Providence afforded her such powerful protection.","book":"1984","chapter":14,"embedding":[0.015051946975290775,0.04822894185781479,0.07920242846012115,0.05016876757144928,0.03912077471613884,0.08434043079614639,0.027333686128258705,0.03369864076375961,-0.09351696074008942,0.03992816433310509,0.02087457850575447,0.07463829219341278,-0.008242279291152954,-0.06906238943338394,-0.018481606617569923,0.023778697475790977,0.0808335617184639,0.016902724280953407,-0.08381021022796631,0.09352031350135803,-0.00704773236066103,-0.05059043690562248,0.012879732064902782,0.06378410756587982,0.010432008653879166,0.026174133643507957,0.028506159782409668,0.005321682896465063,0.07865722477436066,-0.005176467355340719,-0.05759749189019203,-0.06257539987564087,0.008687714114785194,0.09529470652341843,-0.006378250662237406,0.07965969294309616,0.06782718747854233,0.0074081928469240665,-0.008895906619727612,-0.07944203168153763,0.020574403926730156,-0.02852576971054077,0.013651372864842415,-0.043951865285634995,-0.07993209362030029,-0.17576006054878235,0.029411451891064644,0.033099718391895294,0.010064464993774891,-0.1414743810892105,0.0483274981379509,0.012870514765381813,-0.07642323523759842,-0.12397006154060364,-0.021733948960900307,0.07984177023172379,-0.0027800840325653553,-0.05942653492093086,0.041451532393693924,-0.06331872940063477,-0.045081108808517456,0.06296466290950775,0.030178654938936234,-0.013436215929687023,0.029990417882800102,-0.01323057059198618,0.013556973077356815,0.06820976734161377,-0.01860954612493515,0.004838135093450546,0.04005565494298935,0.01783447340130806,-0.01059908140450716,-0.05610768124461174,-0.04341457784175873,-0.030123982578516006,0.06893444061279297,-0.01603313535451889,-0.029674893245100975,0.04752134531736374,-0.008313794620335102,0.04224091395735741,0.04261580854654312,0.07262194156646729,0.03253690525889397,-0.02405519038438797,0.01807580702006817,-0.18495924770832062,0.10476589947938919,-0.04034707322716713,0.04087941348552704,-0.02950192615389824,0.04311666265130043,-0.04205925390124321,0.021514082327485085,-0.021017080172896385,-0.04422130808234215,-0.0430135540664196,0.002833039266988635,0.0004387663211673498,-0.021438948810100555,0.06105116382241249,-0.028015317395329475,0.04963662847876549,-0.03456738963723183,-0.012121868319809437,0.014689919538795948,-0.15009422600269318,0.008882822468876839,0.028921373188495636,0.03184971585869789,-0.05322463437914848,0.015398040413856506,0.0397862046957016,0.004199969582259655,0.030223887413740158,-0.05392474681138992,-0.04061219468712807,-0.034861646592617035,-0.040106821805238724,0.04095671325922012,-0.04101642593741417,-0.0493355430662632,0.013837873004376888,-0.028523990884423256,-0.025796232745051384,0.005915055982768536,-1.8291900653924233e-33,-0.02320285513997078,-0.030483487993478775,-0.008145587518811226,-0.027991080656647682,0.06846469640731812,0.03646661713719368,-0.02548009157180786,-0.047896530479192734,-0.029201241210103035,-0.024830341339111328,-0.08052816987037659,-0.05540633201599121,-0.016709821298718452,-0.09137026220560074,-0.06362464278936386,0.017399048432707787,-0.023492973297834396,0.0021500098519027233,0.09137400984764099,0.06667307019233704,0.04036380723118782,0.050491396337747574,0.02584136091172695,0.020831478759646416,-0.0950985997915268,-0.0289839506149292,0.05175448954105377,-0.004065420478582382,-0.029110416769981384,0.03555869311094284,-0.010537163354456425,0.05265306681394577,0.11243599653244019,-0.015785591676831245,0.008025427348911762,0.05283002555370331,-0.030432866886258125,-0.03332235664129257,0.04789871722459793,-0.008923853747546673,-0.04623563215136528,-0.009127315133810043,0.1381232738494873,0.044073328375816345,-0.06619691103696823,-0.006655336823314428,0.038610830903053284,-0.047527629882097244,-0.01041615940630436,0.07254499942064285,0.004088881891220808,-0.0050470829010009766,-0.047756269574165344,-0.025049913674592972,0.034305207431316376,0.024745672941207886,-0.04822687804698944,0.11378821730613708,0.08810339868068695,0.007754676975309849,-0.0009250485454685986,-0.08643011003732681,0.09176113456487656,-0.02459525503218174,0.05233973264694214,0.0033042209688574076,0.029698647558689117,-0.01875995472073555,-0.05754754692316055,0.024765394628047943,-0.0711941123008728,0.073820099234581,-0.08164829760789871,0.03913535922765732,-0.040576253086328506,0.022698843851685524,0.05703088641166687,-0.03393696993589401,0.023160303011536598,-0.03343866020441055,0.007972011342644691,-0.06368102878332138,-0.006516983266919851,0.09912669658660889,0.050160881131887436,-0.06144719570875168,0.03319263085722923,-0.0625581368803978,-0.030795862898230553,-0.049863848835229874,0.11549275368452072,0.06196418032050133,0.05541916936635971,-0.08826900273561478,-0.06412460654973984,-1.0280952570818422e-33,0.025044932961463928,-0.0315106138586998,-0.002135137328878045,0.0042229387909173965,0.0049148439429700375,-0.05443120375275612,-0.060605525970458984,-0.052444975823163986,-0.006992616690695286,0.04426795244216919,-0.04455956071615219,-0.03523271530866623,-0.008497931063175201,0.03285108506679535,-0.09038077294826508,0.04988906905055046,0.030106162652373314,-0.026457244530320168,-0.008554891683161259,0.0068933418951928616,-0.042763080447912216,0.0625624731183052,-0.00955402571707964,0.04895651340484619,0.03384826332330704,0.05526135116815567,-0.052213847637176514,-0.08180118352174759,-0.09801583737134933,-0.04552697390317917,0.0691600888967514,0.11024021357297897,-0.0863361656665802,0.01950407400727272,-0.0248155165463686,0.025287477299571037,0.020619602873921394,0.016105735674500465,-0.008698023855686188,-0.025253111496567726,0.013163077645003796,-0.07200842350721359,0.032574258744716644,0.02661246806383133,-0.005344227887690067,0.08449868857860565,0.06562238186597824,0.03206384554505348,0.10260803997516632,-0.019424589350819588,-0.05128498747944832,-0.012286658398807049,0.05596159026026726,0.15306799113750458,-0.02450934611260891,-0.07333129644393921,0.07130609452724457,-0.027437802404165268,0.05478626489639282,-0.06776492297649384,-0.08015753328800201,-0.0655594915151596,-0.03784729540348053,-0.05927271395921707,-0.013223239220678806,0.003312285989522934,0.006260081194341183,0.008703166618943214,-0.0304508525878191,-0.03426522761583328,0.013377398252487183,-0.06068463996052742,0.016802622005343437,0.08941468596458435,-0.02366231195628643,0.06406354159116745,-0.006716194562613964,-0.0700627937912941,-0.07139186561107635,0.021526634693145752,-0.021909218281507492,-0.06130332127213478,-0.05032482370734215,-0.06574901938438416,-0.006623812951147556,0.05279114469885826,0.02598966844379902,-0.01575188897550106,0.029628444463014603,-0.0037092810962349176,-0.05095447599887848,-0.05257376283407211,0.04297919198870659,-0.059278786182403564,-0.022265812382102013,-2.7235829591631955e-8,0.04776792228221893,0.005670156329870224,-0.01153943408280611,0.00045804213732481003,-0.07063525170087814,-0.03320018947124481,0.03757725656032562,0.0284527987241745,-0.03502368927001953,0.10726504772901535,-0.1183205097913742,-0.019566230475902557,0.026265237480401993,0.007855448871850967,0.07917695492506027,0.07299014925956726,0.021040141582489014,-0.04839339479804039,-0.06339334696531296,-0.031135156750679016,-0.007306594401597977,0.005444326903671026,-0.0023409586865454912,-0.07327412068843842,-0.05193360894918442,-0.0284042339771986,-0.03054746799170971,-0.029717503115534782,0.05151061713695526,0.00035562258563004434,0.03880324587225914,-0.008418398909270763,-0.052249059081077576,-0.005788327194750309,-0.06225351616740227,0.025726351886987686,0.005953752435743809,-0.024583006277680397,0.017013724893331528,-0.0617215633392334,0.014185815118253231,0.08740934729576111,-0.018044909462332726,0.014774518087506294,0.05903610959649086,-0.040712952613830566,0.04603033512830734,0.031877610832452774,0.02844187431037426,0.01408296637237072,0.030069056898355484,0.039648402482271194,0.022412139922380447,0.03455144166946411,0.021019721403717995,-0.07256288826465607,0.009544371627271175,0.025861497968435287,-0.04027900472283363,0.015049462206661701,-0.05942853167653084,-0.014584630727767944,-0.01488378457725048,-0.017718862742185593]},{"text":"She busied herself with following the aerial creations of the poets; and in the majestic and wondrous scenes which surrounded our Swiss home —the sublime shapes of the mountains, the changes of the seasons, tempest and calm, the silence of winter, and the life and turbulence of our Alpine summers—she found ample scope for admiration and delight.","book":"1984","chapter":15,"embedding":[0.028688333928585052,0.04598931595683098,0.11291952431201935,0.06079520285129547,0.04196201264858246,0.041335608810186386,0.07133393734693527,-0.0483630895614624,-0.0009460667497478426,-0.01753750443458557,-0.07363206148147583,-0.04590423032641411,0.007436285261064768,-0.060948532074689865,0.020243797451257706,0.06041901558637619,-0.00882301852107048,-0.05330657958984375,-0.016966640949249268,0.07632723450660706,0.014464453794062138,0.00803048349916935,0.017232703045010567,0.11915157735347748,0.019864460453391075,-0.0019705784507095814,-0.03130717575550079,-0.010767387226223946,-0.0021791080944240093,-0.010598191991448402,-0.049200985580682755,0.06088823825120926,-0.06753552705049515,0.02174811065196991,-0.003789047244936228,0.16417601704597473,0.026484880596399307,-0.008226130157709122,-0.07219237089157104,0.026602206751704216,-0.02129419520497322,-0.007892022840678692,-0.04350430145859718,-0.03661513701081276,-0.03927072137594223,-0.05567271262407303,0.0007940506911836565,-0.03384292125701904,0.011837429367005825,0.01677672564983368,-0.0829988494515419,-0.027899332344532013,-0.07852445542812347,-0.06213626638054848,-0.04641345888376236,0.08115649968385696,0.03616267070174217,-0.02475661411881447,0.05760170891880989,-0.0451495498418808,0.007956083863973618,-0.0026156071107834578,-0.019725674763321877,0.04073500633239746,0.03129119798541069,-0.052241064608097076,-0.06621479988098145,-0.02737157978117466,-0.016330355778336525,-0.02166048251092434,0.050315845757722855,0.04874050244688988,0.04974699765443802,-0.0156543105840683,0.01350004319101572,-0.0743718147277832,-0.039913274347782135,-0.08865468949079514,-0.029434368014335632,-0.003796538570895791,0.02806714177131653,-0.006812429521232843,0.02579980157315731,0.07229539752006531,-0.010451030917465687,0.017868176102638245,-0.0007042305660434067,-0.08707832545042038,-0.019458960741758347,-0.0696239024400711,-0.010539654642343521,-0.12028738856315613,-0.06497462838888168,0.03863876685500145,-0.06350158154964447,0.010887034237384796,0.003014842513948679,-0.05572696775197983,0.03386453166604042,0.07612869888544083,0.0437408983707428,0.029935838654637337,0.00980219617486,0.0785493552684784,-0.07592769712209702,-0.03650062158703804,0.02555135078728199,-0.027834076434373856,-0.10647179931402206,-0.008111516013741493,0.016759749501943588,-0.02060251496732235,0.005586250685155392,-0.020304804667830467,0.05581975728273392,-0.006342663429677486,-0.021124141290783882,-0.10813533514738083,-0.019009627401828766,0.011299064382910728,0.07852627336978912,0.009867841377854347,0.008047324605286121,0.051213521510362625,-0.0026463165413588285,-0.04723043739795685,0.025780750438570976,-3.6870970904334504e-33,0.029774263501167297,0.010372428223490715,0.10577594488859177,0.09680277854204178,0.093272864818573,0.04760746285319328,-0.017384106293320656,-0.041873715817928314,-0.022581417113542557,-0.0733838677406311,-0.027328744530677795,-0.010210258886218071,-0.015418845228850842,0.02097332663834095,0.028789717704057693,-0.015995675697922707,0.011634061112999916,-0.03457757085561752,0.023314161226153374,0.09032879769802094,0.028911346569657326,0.06032849848270416,-0.00020777384634129703,-0.0004657550307456404,-0.08941928297281265,-0.0181090347468853,0.08380095660686493,0.042736705392599106,-0.12767960131168365,0.029056690633296967,-0.0012301066890358925,0.06638038158416748,0.03066176548600197,-0.07568530738353729,0.042011670768260956,0.020776402205228806,-0.07540853321552277,-0.023492135107517242,0.017002616077661514,0.04084743186831474,-0.003908856306225061,-0.036322396248579025,-0.049861226230859756,-0.027501419186592102,-0.05965125560760498,0.10638031363487244,0.05773628130555153,0.09464098513126373,0.016419095918536186,0.012382082641124725,-0.008404442109167576,0.05026823282241821,-0.047200970351696014,0.015721576288342476,0.03940153867006302,0.07201005518436432,0.006167934276163578,-0.09375716000795364,0.025416022166609764,-0.052618492394685745,0.05324578657746315,-0.046173933893442154,0.04644770547747612,-0.021920301020145416,0.03737587854266167,-0.017636209726333618,0.03807949647307396,-0.019231855869293213,-0.01231391355395317,0.0019952578004449606,-0.10942142456769943,0.04074353724718094,-0.00271044485270977,0.03478105366230011,-0.05982799455523491,0.021631697192788124,-0.006430350244045258,-0.021951070055365562,0.0094315679743886,0.05197499692440033,-0.02628372423350811,-0.030422667041420937,-0.00710176769644022,0.08401728421449661,-0.01869221217930317,-0.06248648092150688,0.08780909329652786,-0.09296019375324249,-0.08942180871963501,0.06695752590894699,-0.005384813528507948,0.050888363271951675,0.08730755746364594,-0.14050939679145813,-0.12001969665288925,6.660536040283839e-34,0.08081313967704773,-0.06993302702903748,-0.032873302698135376,0.0065529742278158665,-0.029876433312892914,-0.0035250175278633833,-0.042655009776353836,0.09583547711372375,0.012055712752044201,0.06502360850572586,-0.03336649015545845,0.038474079221487045,0.04937806725502014,-0.09549181163311005,-0.0035043982788920403,-0.0045999810099601746,0.07068002223968506,0.03161720931529999,0.025110719725489616,-0.03857087343931198,-0.02981693483889103,0.013662480749189854,-0.042878925800323486,-0.11133141815662384,-0.029996825382113457,0.05420352518558502,-0.0014449761947616935,0.002633916912600398,-0.041353121399879456,-0.05758759751915932,-0.0016514710150659084,-0.04819975793361664,-0.011183910071849823,-0.019848477095365524,-0.035713840276002884,0.10470990091562271,0.022648463025689125,-0.128079354763031,-0.007861367426812649,-0.030884597450494766,-0.0068873693235218525,-0.043495066463947296,0.1151009276509285,-0.0009226103429682553,0.06214835122227669,-0.02325090952217579,-0.07651051878929138,0.039354681968688965,-0.047111380845308304,-0.05866866931319237,0.015341370366513729,-0.0155427735298872,0.021260438486933708,0.06299011409282684,0.06580773741006851,-0.07646820694208145,0.0004641924751922488,-0.019283397123217583,0.09476520121097565,-0.0050253053195774555,-0.018130667507648468,0.01133651938289404,-0.10007590800523758,-0.0161429513245821,-0.011460788547992706,-0.1267354041337967,-0.05842476710677147,-0.10896338522434235,-0.05953913554549217,0.087541863322258,0.0005606139893643558,0.02658623643219471,-0.05567831173539162,0.0469030998647213,-0.003384764539077878,0.06770934164524078,0.012210381217300892,-0.0015732167521491647,0.0031176237389445305,-0.028569728136062622,-0.04690013453364372,-0.029855025932192802,-0.014666303992271423,0.038047704845666885,0.000036751836887560785,0.010415897704660892,-0.033128805458545685,-0.06162867695093155,0.017543090507388115,0.009290536865592003,0.011516964994370937,0.012627549469470978,-0.018830502405762672,-0.059450916945934296,0.06906960159540176,-3.9017223230075615e-8,-0.026268204674124718,-0.009346560575067997,-0.04788785055279732,-0.05511517450213432,-0.05919055640697479,-0.030389005318284035,0.12905573844909668,-0.04481041431427002,-0.015248461626470089,0.054970547556877136,-0.019525477662682533,0.03833258897066116,0.08757185935974121,0.030719749629497528,0.05635889619588852,-0.028395386412739754,0.09582400321960449,0.029983581975102425,-0.03526855260133743,0.07908480614423752,0.045995403081178665,0.025539176538586617,-0.010197940282523632,-0.10274074971675873,-0.05463745445013046,-0.029903210699558258,0.008547024801373482,-0.01819331757724285,0.00439021922647953,-0.005646551959216595,-0.04149830341339111,0.028282590210437775,0.044264912605285645,-0.05108139291405678,-0.0549277625977993,0.022652097046375275,-0.06368151307106018,0.006285795941948891,-0.043942347168922424,-0.026916930451989174,0.04338500648736954,0.05597319453954697,0.03221121057868004,0.0015084374463185668,0.025338632985949516,-0.07585367560386658,0.04841171205043793,-0.06376063078641891,0.019818076863884926,0.09636381268501282,-0.00833219476044178,0.04456011578440666,0.08315157890319824,0.0471612773835659,-0.021656503900885582,-0.013941261917352676,-0.011862354353070259,-0.01713929884135723,-0.06995782256126404,0.05631633102893829,0.030985195189714432,0.024014879018068314,-0.032968517392873764,-0.050529442727565765]},{"text":"He loved enterprise, hardship, and even danger for its own sake.","book":"1984","chapter":15,"embedding":[0.070350281894207,0.07703603059053421,0.03253162279725075,-0.03177701681852341,-0.015985315665602684,0.07321237772703171,0.09980063140392303,0.07272034138441086,-0.09335680305957794,-0.02212315984070301,-0.019377153366804123,0.039461418986320496,0.012808150611817837,0.012302356772124767,0.012193691916763783,0.0028705024160444736,0.01644488424062729,-0.022704176604747772,-0.03562742471694946,-0.0021880739368498325,-0.04859977588057518,0.00010088713315781206,0.003209443762898445,-0.03576229140162468,-0.02122463285923004,0.018183846026659012,0.06195102259516716,0.044153474271297455,0.039771124720573425,-0.0768187940120697,0.05694141611456871,0.004322320222854614,0.0339159220457077,0.047448333352804184,0.0010406732326373458,0.0036764894612133503,0.039208777248859406,0.042600326240062714,-0.04492874816060066,-0.09378693252801895,0.02021951600909233,0.034622352570295334,-0.004000029992312193,0.04761752858757973,-0.06491054594516754,-0.0998949185013771,-0.04953732714056969,-0.1414901465177536,0.10686295479536057,0.020921070128679276,0.026879191398620605,-0.0033666607923805714,0.004021612927317619,-0.12328339368104935,0.05227464437484741,0.05637655034661293,0.05393524095416069,0.028296560049057007,0.02534756250679493,-0.09407205879688263,-0.0022595440968871117,-0.052454281598329544,0.06122349202632904,0.011456764303147793,-0.0064937276765704155,0.028495900332927704,-0.012397510930895805,0.029949165880680084,-0.11127348989248276,0.023763131350278854,-0.04267390817403793,-0.054221391677856445,-0.03280149772763252,-0.0823688730597496,-0.010056091472506523,-0.04421745613217354,0.006124263629317284,-0.03774024546146393,0.027057169005274773,-0.06602011620998383,-0.0066751111298799515,0.04833492264151573,-0.10753288120031357,0.048022691160440445,-0.03248278424143791,0.004446845967322588,0.038070276379585266,-0.15083588659763336,0.04910935461521149,0.06865713745355606,0.035699862986803055,-0.05767155438661575,0.04990897327661514,-0.02425341121852398,0.02280591055750847,0.05681075155735016,-0.032674338668584824,-0.04332764446735382,-0.06680379062891006,-0.00958794541656971,0.03203997761011124,-0.010128270834684372,0.008273297920823097,0.042078353464603424,-0.07835182547569275,-0.041466522961854935,0.0060022929683327675,-0.04221556708216667,-0.0046894727274775505,0.03737708553671837,-0.04312208294868469,-0.05094856396317482,0.01628040336072445,-0.07864531874656677,0.040093980729579926,0.006599206943064928,-0.09160713851451874,0.026529377326369286,0.016195645555853844,0.06141640618443489,0.05295012146234512,0.07141939550638199,0.01804204098880291,0.14584127068519592,-0.01802166923880577,-0.015332730486989021,0.03472302481532097,-3.4221858468222165e-33,-0.021716834977269173,-0.0791010707616806,-0.07111424952745438,0.008584153838455677,0.012072097510099411,0.02392822876572609,-0.0017685850616544485,-0.011083429679274559,-0.07034670561552048,0.010451791808009148,-0.03599412739276886,0.05780656635761261,0.010729054920375347,-0.05753709748387337,0.037813588976860046,0.007837309502065182,-0.059813983738422394,0.028944851830601692,0.0591755174100399,-0.07209889590740204,-0.016251757740974426,0.03414269536733627,0.01303583662956953,-0.058617979288101196,0.0009028735221363604,-0.050600409507751465,-0.02934652753174305,0.0044619194231927395,0.0608481802046299,0.023419030010700226,-0.08899165689945221,0.09265515953302383,-0.016768360510468483,0.01711324043571949,0.07586663961410522,0.058426547795534134,-0.1490437537431717,-0.04470781981945038,-0.0366562157869339,0.06266850233078003,-0.035646338015794754,0.07350923120975494,0.041910912841558456,0.05746786668896675,-0.010299243032932281,-0.012657326646149158,0.061505548655986786,-0.05973384156823158,0.04141932353377342,0.00014746664965059608,-0.04159209132194519,-0.016747577115893364,0.056708067655563354,-0.05029163509607315,0.03229287266731262,0.03393322601914406,-0.01136084645986557,0.005886637140065432,0.04094376042485237,-0.010479658842086792,0.003669927828013897,0.008763427846133709,0.08101064711809158,0.012669053860008717,0.028206709772348404,0.07381410896778107,0.015513270162045956,0.05253715440630913,-0.1181853637099266,0.05090324953198433,-0.04048740863800049,-0.049366969615221024,-0.005860412959009409,-0.13255631923675537,-0.05143163353204727,0.011808924376964569,-0.0075730751268565655,-0.04464223235845566,-0.12303192168474197,-0.07313943654298782,-0.14916762709617615,-0.05922439321875572,0.004010028671473265,0.06068732216954231,0.017208324745297432,0.010153795592486858,0.04383859038352966,-0.06536482274532318,0.00717107905074954,-0.008930549956858158,0.010358803905546665,-0.07482770830392838,-0.010923332534730434,-0.027210436761379242,-0.07756970077753067,1.7605997863509505e-33,-0.030728690326213837,-0.022362910211086273,-0.0449838861823082,-0.0031884738709777594,0.027856357395648956,-0.03624117001891136,-0.05151956528425217,0.0007634642533957958,0.002421277342364192,0.0693218857049942,-0.013111405074596405,-0.008300935849547386,-0.04717528074979782,-0.02497713267803192,-0.036833230406045914,-0.0031844680197536945,0.025117434561252594,0.04413515329360962,0.02640136331319809,0.020154204219579697,0.04823851212859154,0.031565990298986435,-0.050679292529821396,0.014911992475390434,0.01743217371404171,0.06297808885574341,-0.07025131583213806,-0.042747560888528824,-0.06019464135169983,-0.025376180186867714,0.0592167042195797,0.07672900706529617,-0.036374811083078384,0.08968467265367508,0.015702074393630028,0.0357961431145668,-0.037748973816633224,0.0009305248968303204,-0.041496653109788895,-0.06779902428388596,0.028312889859080315,0.005001761484891176,0.0520809069275856,0.08361846953630447,-0.0011166766053065658,0.03648965805768967,0.023612746968865395,0.0019617213401943445,-0.005004335194826126,0.005950639024376869,-0.08196571469306946,0.020867157727479935,0.03016381710767746,0.04177308455109596,-0.06297480314970016,0.004208356607705355,0.1101238876581192,-0.006370477378368378,-0.05855203792452812,-0.014477920718491077,-0.05115170404314995,-0.06465544551610947,0.08169005066156387,0.0652579665184021,-0.02405085787177086,0.03237561881542206,-0.057035498321056366,-0.003331967629492283,-0.07361811399459839,-0.06243346631526947,-0.000005294834863889264,-0.02014971524477005,-0.07148833572864532,0.004306005779653788,-0.04182009771466255,0.0637984350323677,-0.035366058349609375,0.001327615580521524,0.011309197172522545,0.019154684618115425,0.002746064681559801,0.001426376635208726,-0.03255282714962959,0.06117337569594383,-0.07545554637908936,0.0683613270521164,-0.07168377935886383,-0.028819076716899872,0.04259923845529556,0.022976258769631386,0.005703718401491642,-0.06371929496526718,0.05557174235582352,0.03849286213517189,-0.024387165904045105,-2.114335906355791e-8,-0.08356549590826035,0.006400357466191053,0.02534576691687107,0.011769291013479233,0.053431011736392975,0.0135718435049057,0.0229139793664217,0.03081122413277626,-0.0394141860306263,0.1794629842042923,-0.06744982302188873,-0.0225022304803133,-0.04178276285529137,0.08151839673519135,0.07697456330060959,0.038337916135787964,0.09604542702436447,-0.02387937717139721,-0.031714532524347305,0.006767253391444683,0.016727259382605553,0.02959347702562809,0.050682127475738525,-0.05717002972960472,-0.03768516331911087,0.07155196368694305,-0.005864358507096767,-0.0633951723575592,0.10141436010599136,0.08123626559972763,0.06443958729505539,-0.049478139728307724,-0.08949300646781921,-0.01801878958940506,-0.03295779973268509,0.028227245435118675,0.019500629976391792,0.00547993928194046,0.004622236359864473,0.036037344485521317,-0.019730068743228912,0.1008002907037735,0.06306945532560349,-0.032132331281900406,0.04364825040102005,0.07238718867301941,0.036853328347206116,-0.04235269874334335,0.032359085977077484,0.014495880343019962,0.044579047709703445,0.049412600696086884,-0.01382656954228878,0.030994372442364693,0.06052473559975624,-0.07266402989625931,-0.01890978030860424,0.026720469817519188,-0.02645942196249962,0.012892567552626133,0.05154053866863251,0.021599961444735527,0.08344156295061111,-0.00009582653001416475]},{"text":"Meanwhile Clerval occupied himself, so to speak, with the moral relations of things.","book":"1984","chapter":16,"embedding":[0.04303276911377907,0.03999858722090721,0.010652759112417698,-0.07057170569896698,-0.008603286929428577,0.0227296594530344,0.03677872195839882,-0.01847718097269535,0.045603860169649124,-0.06883137673139572,-0.002247345633804798,0.014590718783438206,0.030075881630182266,0.0205643642693758,0.05616378411650658,0.007464709226042032,-0.04424417018890381,0.006558110471814871,-0.022663844749331474,0.11301815509796143,0.04143895208835602,0.006260024383664131,0.033798906952142715,0.03473357856273651,-0.03384976461529732,0.08133682608604431,0.006469793617725372,-0.008143492974340916,0.11528351157903671,0.005280693061649799,-0.005525426939129829,0.01945001445710659,0.04606708511710167,-0.0036966586485505104,-0.057236943393945694,0.09535550326108932,0.06453242897987366,0.07903878390789032,0.05196258798241615,0.006974517833441496,-0.004829700570553541,0.02188773639500141,-0.05569259077310562,-0.021683046594262123,-0.020224887877702713,-0.0510280579328537,0.011038624681532383,-0.06228991597890854,0.010609877295792103,-0.036834850907325745,-0.02554318495094776,0.026525666937232018,-0.015308845788240433,-0.07113334536552429,0.01061556302011013,0.07551996409893036,-0.016102783381938934,0.02232327125966549,0.10146989673376083,-0.04166923463344574,0.045161161571741104,0.01233378890901804,0.043226636946201324,0.06458341330289841,0.04062424972653389,-0.037672366946935654,0.029948515817523003,0.05876469612121582,-0.16957177221775055,-0.008476205170154572,0.027193177491426468,0.004867227282375097,-0.006392631214112043,-0.07526710629463196,-0.01720990426838398,-0.009621025994420052,0.02518436498939991,-0.003974343184381723,0.02344799041748047,-0.1108851432800293,-0.030143892392516136,0.027402307838201523,-0.05992187559604645,0.07024326175451279,-0.05090854689478874,-0.08339624106884003,0.053775761276483536,-0.11786869168281555,0.09889642894268036,0.03313078731298447,-0.04728991910815239,-0.05786874517798424,0.014164808206260204,0.02340666390955448,-0.018084129318594933,0.12729451060295105,-0.0663398802280426,0.1061854287981987,-0.06237275153398514,0.040263596922159195,-0.018046410754323006,0.008926418609917164,-0.037233736366033554,-0.0415710024535656,-0.012875653803348541,-0.015873894095420837,0.021026119589805603,-0.05247454717755318,-0.1054903045296669,-0.00017534877406433225,-0.030111148953437805,-0.022631093859672546,0.017647745087742805,0.024022480472922325,0.15120960772037506,0.06620042026042938,-0.017721958458423615,0.010777739807963371,0.00017410144209861755,0.015885120257735252,0.05363965779542923,-0.0010246203746646643,-0.07269936054944992,0.11037424951791763,0.00485320296138525,-0.004064864479005337,0.03516468405723572,-4.956712539242109e-33,0.011870653368532658,-0.07869560271501541,-0.007434993050992489,0.02539966255426407,-0.009848639369010925,0.004129791632294655,0.004311096854507923,0.002106024418026209,0.06235290318727493,-0.03367927670478821,0.10043548047542572,0.005474183242768049,-0.00623756367713213,-0.04289564490318298,-0.07291490584611893,0.06169170141220093,-0.0840936154127121,0.00878498237580061,0.016891617327928543,-0.07468624413013458,-0.0065193274058401585,0.053417403250932693,-0.0016982245724648237,0.04049794748425484,-0.010025501251220703,-0.03537936881184578,0.08825314790010452,-0.04902615398168564,0.0018358152592554688,-0.00010783017933135852,0.008527315221726894,0.07068469375371933,0.06767621636390686,-0.04743563011288643,0.050156120210886,0.0659412294626236,-0.013241841457784176,0.03397984057664871,-0.06752654910087585,0.055384561419487,-0.003918103873729706,0.008675583638250828,-0.07729199528694153,-0.010873289778828621,-0.000557546503841877,-0.114496149122715,-0.029826601967215538,0.02962968870997429,-0.08331157267093658,0.021289603784680367,-0.015884125605225563,0.020111769437789917,-0.06629271805286407,-0.024422526359558105,-0.030474932864308357,0.03924650326371193,-0.028265971690416336,-0.044516727328300476,-0.06946393102407455,0.002823910443112254,0.06444397568702698,-0.0067333742044866085,0.009221251122653484,-0.059214022010564804,0.014037689194083214,-0.03177879378199577,-0.07084184885025024,-0.026196228340268135,-0.04799279943108559,-0.017363881692290306,-0.049802184104919434,0.008338561281561852,-0.11559033393859863,0.016735944896936417,-0.025755422189831734,0.01497622486203909,-0.06542376428842545,-0.06019585207104683,-0.08690068870782852,0.006748693063855171,0.04688379541039467,-0.006796800531446934,0.07565876841545105,0.006757649593055248,-0.02171057090163231,-0.028765982016921043,0.017683127894997597,-0.11928398907184601,0.0555557981133461,0.025313127785921097,-0.010743150487542152,-0.018140466883778572,0.00487181032076478,-0.06906665116548538,-0.14415447413921356,1.4858152167122748e-33,0.04488489404320717,-0.043173447251319885,0.029246315360069275,0.10970663279294968,-0.02321762964129448,0.02820740081369877,-0.08774710446596146,-0.036400239914655685,-0.078822560608387,-0.039395999163389206,-0.1083071380853653,0.019378414377570152,0.03283790498971939,0.02665788307785988,0.05372898280620575,0.03467481583356857,0.0723327025771141,0.03210776671767235,-0.08106876909732819,0.02220633625984192,0.0436692088842392,0.036214642226696014,0.023160060867667198,0.03778907284140587,-0.025893285870552063,0.03176265209913254,-0.02980760857462883,-0.035442888736724854,-0.0008917058003135026,0.023869588971138,0.021981842815876007,-0.027559809386730194,-0.024004196748137474,0.0015486993361264467,0.012185960076749325,0.031313713639974594,0.002666429616510868,-0.04080162197351456,-0.013551834970712662,-0.03655526414513588,-0.016674060374498367,-0.10769825428724289,0.005303665529936552,-0.007565639913082123,-0.04380253702402115,-0.06982782483100891,-0.0013221078552305698,0.00541239557787776,-0.02338232472538948,0.012361622415482998,-0.05541515350341797,-0.006597500294446945,0.0036891656927764416,0.03493417799472809,-0.020856264978647232,0.014957166276872158,-0.06677357107400894,-0.028642499819397926,0.06149781867861748,-0.06267929822206497,-0.018150214105844498,0.01503560971468687,-0.042320314794778824,-0.013567071408033371,0.032752491533756256,0.012952880933880806,-0.04723941534757614,0.006676322780549526,-0.002790858270600438,-0.013436062261462212,-0.0047986917197704315,-0.044226840138435364,-0.0539792999625206,-0.04248690977692604,0.08577706664800644,0.10578863322734833,-0.06193330138921738,-0.10963467508554459,-0.057381510734558105,0.041848648339509964,-0.03386342525482178,-0.06860051304101944,0.011671832762658596,-0.05573273077607155,-0.0964633896946907,0.03167193382978439,0.015403591096401215,-0.05365265905857086,0.04331566393375397,-0.03552334010601044,0.024564946070313454,-0.10665111243724823,0.08062564581632614,0.020893046632409096,0.06760711222887039,-2.5161508432347546e-8,-0.04955112561583519,-0.03851354494690895,-0.025247415527701378,0.0546015128493309,-0.03501258045434952,0.025247443467378616,0.03912268579006195,-0.029143767431378365,-0.01772286370396614,0.14885495603084564,-0.039861034601926804,0.0058749644085764885,0.017200393602252007,0.04793282598257065,0.06123356893658638,0.08545857667922974,0.11873922497034073,-0.109642893075943,-0.04099198803305626,-0.003213962772861123,0.0011690541869029403,-0.047504764050245285,0.01009204052388668,0.03970099240541458,0.003249759553000331,0.00036195217398926616,-0.09909679740667343,0.02267608419060707,0.013745221309363842,0.09290043264627457,0.06945585459470749,0.008916995488107204,-0.02338625304400921,-0.048249296844005585,0.0629005879163742,0.04970315098762512,-0.012523770332336426,-0.004713704343885183,0.0680261179804802,0.027645301073789597,0.09496039897203445,0.07302412390708923,0.003364325501024723,0.04282931983470917,0.13060368597507477,0.029085323214530945,0.015246222727000713,0.07075304538011551,-0.04720195010304451,-0.05740961804986,0.03342130035161972,0.02545051835477352,0.032193414866924286,0.023714464157819748,0.02180161327123642,-0.034128423780202866,0.018678810447454453,0.03001609444618225,-0.04152992367744446,0.0016184084815904498,-0.016902143135666847,0.08026263862848282,-0.027760831639170647,-0.07362766563892365]},{"text":"In this house I chanced to find a volume of the works of Cornelius Agrippa.","book":"1984","chapter":16,"embedding":[-0.09994974732398987,-0.048561081290245056,-0.011649536900222301,-0.012214582413434982,-0.09105338901281357,-0.0056503028608858585,-0.08437040448188782,0.05404243990778923,-0.022618116810917854,-0.015145321376621723,-0.0058219702914357185,0.030595293268561363,-0.07013704627752304,-0.07579076290130615,-0.10393424332141876,-0.03798385336995125,-0.009976990520954132,0.07702478021383286,0.04914029315114021,0.026403289288282394,-0.017414243891835213,0.050802912563085556,0.10919612646102905,-0.05016845464706421,0.09508007019758224,0.03285939618945122,0.0023199233692139387,0.0006514238193631172,0.058408673852682114,-0.0322515070438385,0.04036010429263115,0.008823797106742859,0.08113491535186768,-0.007113634143024683,0.00481158634647727,-0.045538607984781265,0.01257567573338747,0.08148763328790665,0.07677885890007019,-0.08757666498422623,0.05495571345090866,0.05288579687476158,0.04081207141280174,-0.034910354763269424,-0.008222602307796478,0.0036654402501881123,-0.048542704433202744,-0.07941175997257233,0.008615284226834774,0.06291258335113525,0.03340950235724449,0.027635501697659492,-0.04712197557091713,0.014441153965890408,0.01541957724839449,0.010373742319643497,0.022464163601398468,-0.0641217902302742,0.018522266298532486,-0.015853852033615112,-0.009997169487178326,0.008500151336193085,-0.1195019781589508,0.013197683729231358,0.06396804004907608,-0.04165757820010185,0.012570682913064957,0.04461492598056793,-0.02938179112970829,0.015394473448395729,0.02493683621287346,-0.020554376766085625,0.10218321532011032,0.03816584125161171,0.027135582640767097,-0.006193635053932667,-0.025006715208292007,-0.0857357606291771,0.01569729670882225,-0.07216102629899979,-0.025369886308908463,0.07101400196552277,0.03393268212676048,0.039350200444459915,-0.09744486212730408,-0.009311530739068985,0.08097025007009506,0.03016838990151882,0.010214995592832565,-0.03677932173013687,0.056613847613334656,-0.05348842591047287,-0.10519123077392578,-0.0007087257108651102,-0.02344118431210518,0.02797342836856842,-0.045980002731084824,0.06988359987735748,0.029703913256525993,0.022997422143816948,0.050562985241413116,0.03176719695329666,0.08417577296495438,-0.003562697907909751,-0.018299836665391922,-0.01965325139462948,0.0002633631229400635,0.06189180538058281,0.004110767971724272,0.0431058295071125,-0.045426711440086365,-0.03988085314631462,-0.04806869104504585,-0.004377393517643213,0.002556116320192814,-0.0725470632314682,0.008402079343795776,-0.08265884220600128,-0.04330022633075714,-0.029587948694825172,0.0009649212588556111,-0.026898164302110672,-0.013729342259466648,0.056447554379701614,-0.026056623086333275,-0.026060214266180992,0.04396115988492966,-4.38344378081325e-33,-0.0024176265578716993,-0.029431777074933052,-0.008182184770703316,0.024180542677640915,0.16465206444263458,-0.028159838169813156,0.02652815356850624,0.04891151562333107,0.029732083901762962,-0.034910451620817184,-0.039236970245838165,-0.012371065095067024,-0.053637538105249405,-0.0026973362546414137,-0.11704473197460175,0.017864113673567772,-0.049344222992658615,-0.016176369041204453,0.025652596727013588,-0.09866335988044739,-0.0061768824234604836,-0.008167726919054985,0.0587664432823658,0.007051211316138506,0.07541663944721222,-0.007808678783476353,0.0058870939537882805,-0.01974736526608467,0.042142901569604874,0.017303675413131714,0.006531881168484688,0.04609140008687973,-0.061363741755485535,-0.026358550414443016,-0.029675809666514397,0.06879963725805283,-0.05716022476553917,-0.06284503638744354,0.02220824547111988,0.03764906898140907,0.006888638716191053,0.06481677293777466,0.08737339824438095,0.026823991909623146,-0.04878022149205208,0.04476253688335419,0.022721635177731514,0.06801614165306091,0.12347237020730972,0.035638708621263504,-0.0025475493166595697,-0.019006216898560524,-0.06461859494447708,-0.010012056678533554,0.12572963535785675,0.009244024753570557,-0.09825657308101654,0.06380346417427063,0.05744753032922745,-0.009374837391078472,0.10265962779521942,0.08344940841197968,-0.013544769957661629,0.054313499480485916,-0.01284861285239458,0.03850714862346649,-0.11409088224172592,0.019481325522065163,0.01821139268577099,-0.031945113092660904,-0.0670643076300621,-0.043592751026153564,-0.03733952343463898,-0.06495186686515808,0.0014890088932588696,0.044540904462337494,0.015027941204607487,-0.03309929743409157,-0.08411373198032379,-0.07480160146951675,-0.06640616804361343,0.0034223091788589954,-0.00901175569742918,0.030562646687030792,0.024767400696873665,0.013532456010580063,0.04102824628353119,0.024022813886404037,-0.06374803930521011,0.06468471884727478,0.05505087971687317,-0.07801945507526398,-0.05796198174357414,-0.045724257826805115,-0.05432501062750816,2.235330526770224e-33,-0.05101720616221428,-0.02748689614236355,-0.015676060691475868,0.03352755680680275,0.02314852923154831,-0.011440632864832878,-0.043050069361925125,0.06648171693086624,0.042250607162714005,0.011117193847894669,0.004148316569626331,0.04195687174797058,0.09991801530122757,0.023224875330924988,-0.03483466058969498,-0.05206640437245369,0.012336195446550846,0.03675812482833862,0.051134105771780014,0.05218935012817383,-0.09294071793556213,0.08015616238117218,-0.0011114306980744004,-0.019705940037965775,-0.016916662454605103,0.009129419922828674,0.0735720843076706,-0.022423099726438522,-0.06598575413227081,0.02460888959467411,-0.03390723839402199,-0.021185405552387238,-0.10616200417280197,0.011597991921007633,-0.008835739456117153,0.012702890671789646,0.15435469150543213,0.05270002409815788,-0.07012173533439636,-0.02040160447359085,0.03011893667280674,0.047972023487091064,-0.006431704852730036,0.008931429125368595,0.03165111690759659,-0.03333546966314316,-0.03390536457300186,0.07367528975009918,-0.07553500682115555,0.004483670461922884,0.07740064710378647,-0.03316260874271393,0.04190375283360481,-0.0227325689047575,0.0020429205615073442,0.044716447591781616,0.10470380634069443,-0.06430712342262268,0.015524365939199924,0.06457079201936722,-0.08678417652845383,-0.007460099179297686,-0.06560876220464706,0.030741244554519653,0.034836895763874054,0.05480130389332771,-0.03930411487817764,0.09208125621080399,-0.04604390263557434,0.0508866086602211,0.018268439918756485,-0.04372415319085121,-0.04194645583629608,-0.09142050892114639,0.01306452788412571,0.12783178687095642,0.08853811025619507,0.005384613759815693,0.010883457027375698,-0.0780685544013977,0.061453644186258316,-0.044326819479465485,-0.018902475014328957,0.0552426353096962,-0.054253097623586655,-0.0124900471419096,0.007331994362175465,-0.02968459203839302,-0.04185071215033531,0.020568950101733208,-0.018727147951722145,0.023296814411878586,0.02280106022953987,-0.039195407181978226,0.08411458134651184,-1.8725865302826605e-8,-0.010643967427313328,0.05204548314213753,0.03354790806770325,-0.06687021255493164,0.047346387058496475,-0.007630367763340473,0.028114475309848785,-0.023314660415053368,-0.05767238885164261,0.09131962805986404,-0.023531045764684677,0.035563379526138306,0.03599337115883827,-0.05303499102592468,0.007993142120540142,-0.09616826474666595,0.048986855894327164,-0.024683743715286255,-0.09812431782484055,-0.01221948117017746,0.0025725201703608036,0.0525251179933548,0.05452174320816994,-0.05141495540738106,-0.011738196015357971,0.044553808867931366,0.04113968089222908,-0.09236167371273041,-0.04440974071621895,0.024180717766284943,-0.020402194932103157,0.09963313490152359,-0.009342780336737633,-0.06187188997864723,0.06918302178382874,-0.056682195514440536,-0.03530527278780937,-0.0965336263179779,-0.016349751502275467,-0.02569686807692051,0.050476085394620895,-0.0709434375166893,0.017170531675219536,-0.012502540834248066,0.04686525836586952,0.03141419216990471,0.07437660545110703,0.019683724269270897,0.003284099046140909,0.06810455769300461,-0.022279376164078712,0.01660938188433647,0.02623336762189865,-0.01739066280424595,-0.030171845108270645,-0.11838952451944351,-0.013609612360596657,-0.03250508010387421,-0.03913019225001335,0.0003372846986167133,0.0587567538022995,0.057642292231321335,-0.03618769720196724,0.02656085044145584]},{"text":"Those of his successors in each branch of natural philosophy with whom I was acquainted appeared even to my boy’s apprehensions as tyros engaged in the same pursuit.","book":"1984","chapter":17,"embedding":[0.07577774673700333,0.02411602810025215,-0.027560120448470116,-0.04943214729428291,0.03885992243885994,-0.03260880336165428,0.09623222053050995,0.03563188388943672,0.032657820731401443,0.008765938691794872,0.009265427477657795,-0.003239280777052045,-0.012642503716051579,-0.03514578193426132,-0.011026809923350811,-0.025551656261086464,-0.0940292701125145,-0.006605127826333046,-0.01978365331888199,-0.011286682449281216,-0.0856177806854248,0.0323416106402874,0.03954846411943436,0.00061883992748335,-0.035618264228105545,-0.0039105103351175785,0.040764108300209045,0.012692746706306934,0.08686882257461548,-0.005072921048849821,-0.03785080090165138,0.039022840559482574,0.02173766680061817,-0.01965673454105854,-0.009090774692595005,0.04330034554004669,0.027209855616092682,0.05268260836601257,0.07032349705696106,-0.06674519926309586,-0.0037084019277244806,0.048262156546115875,-0.02812102437019348,0.027700770646333694,-0.01932225376367569,-0.11033478379249573,-0.029696542769670486,-0.021065009757876396,0.02040783129632473,-0.012353379279375076,-0.01394440047442913,-0.05924580246210098,-0.01487796101719141,0.006403815932571888,-0.026012027636170387,0.11286523938179016,-0.019282197579741478,-0.01181409414857626,0.006083955522626638,-0.01392519474029541,0.00014642321912106127,-0.01342600118368864,-0.031111346557736397,0.03857414051890373,-0.028934190049767494,0.05582674965262413,-0.030780982226133347,0.027233310043811798,-0.04932333156466484,0.07002267241477966,0.0795312449336052,-0.0005376028711907566,-0.019887877628207207,0.0006765758153051138,-0.10385024547576904,-0.004938520025461912,0.09074801951646805,-0.03825114294886589,-0.03107229806482792,-0.09766869246959686,-0.016269734129309654,0.08418378233909607,-0.037868984043598175,-0.04757571965456009,-0.007159135304391384,-0.05975424498319626,-0.04419579356908798,-0.09085869789123535,0.02798895165324211,0.03535221889615059,0.01841215416789055,-0.06984215974807739,0.05311295762658119,-0.004532820079475641,-0.02303025871515274,0.019555052742362022,-0.03585847467184067,0.07530904561281204,-0.008325283415615559,0.041825614869594574,0.030175264924764633,0.007028359919786453,0.00851404294371605,0.10604514181613922,-0.060139160603284836,-0.005166351329535246,-0.03731730580329895,-0.09274964779615402,0.04081260412931442,-0.023082150146365166,-0.045265499502420425,-0.04921218380331993,0.04359428212046623,0.022133802995085716,0.04064227640628815,-0.006846722215414047,0.022510092705488205,0.06443146616220474,-0.030108503997325897,-0.01741104945540428,0.046609967947006226,0.020781291648745537,0.039824228733778,0.0006262381793931127,0.03206687420606613,-0.05524396151304245,-0.03254856914281845,-1.6464319179082513e-33,0.1032729297876358,0.038817618042230606,-0.025274625048041344,0.017847442999482155,0.004520004149526358,0.07757404446601868,0.01034856028854847,-0.060333311557769775,-0.0030156797729432583,0.01585633121430874,-0.12207005172967911,0.07787308841943741,-0.021908866241574287,0.00383937475271523,-0.08816231787204742,0.03610678017139435,-0.009265203960239887,-0.02332594059407711,0.024146532639861107,0.05022584646940231,-0.048490993678569794,0.08754663169384003,-0.0625937208533287,-0.0780949592590332,0.07518048584461212,0.03969487547874451,0.043584033846855164,0.021464085206389427,0.0031477699521929026,0.02900700829923153,-0.015534801408648491,0.11321070790290833,-0.08079437911510468,0.10449598729610443,0.031027555465698242,-0.017745552584528923,0.019529318436980247,-0.07016995549201965,0.04936715215444565,-0.07819876074790955,0.04655462130904198,0.0512145534157753,0.07418150454759598,-0.005523113068193197,0.03019092045724392,-0.02585408091545105,0.004719424527138472,-0.02932298742234707,0.01451669167727232,-0.04215667396783829,-0.060173679143190384,-0.004182600881904364,0.029923008754849434,-0.06100909784436226,0.022837454453110695,-0.03783084824681282,-0.07866421341896057,0.0987572893500328,0.02777114510536194,0.019742831587791443,0.03785128518939018,-0.046109944581985474,-0.03206973522901535,0.015076542273163795,0.01823923923075199,0.012556015513837337,-0.07859379798173904,-0.03275211527943611,0.0017438766080886126,0.018327301368117332,-0.0669422522187233,-0.04568660631775856,-0.11249008029699326,-0.04252094775438309,-0.019997412338852882,-0.04161282256245613,-0.0657520443201065,-0.03712797909975052,-0.07663967460393906,-0.0227543655782938,-0.1135852262377739,-0.04094212129712105,0.02340710163116455,0.017775919288396835,-0.005986439995467663,0.09671313315629959,0.02881588600575924,-0.06549641489982605,0.040560826659202576,0.0713484063744545,-0.03186435252428055,0.05695236101746559,0.042059335857629776,-0.041937049478292465,-0.0807349681854248,-1.8013921953893686e-33,0.0094104940071702,-0.0600135363638401,0.006185641046613455,-0.0026951078325510025,-0.02961828000843525,0.011324559338390827,-0.07835636287927628,-0.006269058678299189,-0.01251283474266529,-0.0682218000292778,0.05051380768418312,0.10006236284971237,0.0020577944815158844,-0.084483802318573,-0.025700589641928673,-0.07090583443641663,0.07697035372257233,0.06946729123592377,-0.038441162556409836,-0.029935820028185844,0.011178435757756233,0.025207722559571266,-0.0992434099316597,-0.0492815263569355,0.035434920340776443,0.006195369642227888,-0.007615105248987675,-0.0020759436301887035,-0.06759703904390335,0.030515490099787712,0.025735700502991676,0.012366575188934803,0.006534117739647627,0.043810490518808365,0.09946956485509872,0.1094353124499321,-0.02618110366165638,-0.013315530493855476,0.01630370132625103,-0.0026162266731262207,-0.01176315639168024,-0.030758744105696678,0.11646318435668945,-0.027685681357979774,-0.04462215676903725,-0.009792434051632881,-0.07019274681806564,0.019918156787753105,-0.13190601766109467,0.03417864814400673,-0.08519910275936127,0.030368363484740257,0.011242378503084183,-0.049764566123485565,0.03911232203245163,-0.023055747151374817,0.048608940094709396,-0.03296111524105072,0.008520811796188354,0.02018102817237377,0.0711875632405281,0.025541795417666435,-0.0032207095064222813,-0.04287111759185791,-0.020869022235274315,-0.01481839083135128,-0.15960165858268738,0.047910451889038086,0.01697833091020584,0.05145877227187157,-0.08805324882268906,-0.014056776650249958,-0.051708243787288666,0.016654647886753082,-0.0006296084611676633,-0.018450932577252388,-0.07814543694257736,-0.10422787070274353,0.05068230628967285,-0.10732226818799973,-0.005484384018927813,0.012170498259365559,-0.025810696184635162,0.03488273173570633,-0.0540427640080452,0.03495947644114494,-0.011782415211200714,-0.02352217026054859,0.04774519428610802,-0.020242201164364815,0.09115935862064362,-0.08513113856315613,0.01971290074288845,-0.038195956498384476,-0.05704384669661522,-2.9519870992089636e-8,0.016405101865530014,0.032224781811237335,-0.009793655015528202,-0.012147093191742897,-0.02214863710105419,0.02108868770301342,-0.02752741053700447,-0.02227574586868286,-0.0656876415014267,0.039807967841625214,-0.03629481419920921,0.08678020536899567,0.030935365706682205,-0.023872677236795425,0.07159620523452759,-0.07549639046192169,0.05150531977415085,-0.042495016008615494,-0.06032209098339081,0.02172757126390934,0.13038933277130127,0.09491561353206635,-0.026456613093614578,-0.09526948630809784,-0.000683297635987401,-0.016901405528187752,-0.03311358392238617,-0.014070205390453339,0.052719518542289734,0.02330755814909935,0.033097438514232635,0.0008570531499572098,-0.08284362405538559,0.007440847344696522,0.1158551573753357,0.08966878801584244,-0.06603480130434036,-0.0025230913888663054,0.053670600056648254,-0.023483339697122574,0.056389469653367996,-0.009865855798125267,-0.01420631818473339,0.06736242771148682,-0.0032566695008426905,-0.06325575709342957,0.07161901891231537,0.023983485996723175,0.04497339949011803,0.06418183445930481,0.014408983290195465,0.134319007396698,0.044384874403476715,-0.0049027553759515285,0.03598155453801155,-0.08397958427667618,-0.014012482948601246,0.04872127249836922,-0.10787172615528107,0.00977039523422718,0.059829313308000565,-0.005105892196297646,-0.02146606706082821,-0.07961682230234146]},{"text":"Wealth was an inferior object, but what glory would attend the discovery if I could banish disease from the human frame and render man invulnerable to any but a violent death!","book":"1984","chapter":18,"embedding":[-0.006616957951337099,0.1190924197435379,-0.02454557828605175,-0.022826459258794785,0.0200749933719635,-0.000693314359523356,0.06595344096422195,-0.0053309788927435875,-0.03994305804371834,0.07942970842123032,0.023262428119778633,-0.009218153543770313,0.040109775960445404,-0.016805989667773247,-0.05659620091319084,-0.0425398088991642,0.013225816190242767,0.023094218224287033,-0.024288106709718704,0.16166679561138153,0.047632765024900436,0.08875053375959396,0.018121423199772835,-0.0006017251871526241,-0.11507629603147507,0.04943174868822098,0.012139913626015186,-0.011290410533547401,0.027205124497413635,0.01757074147462845,-0.009260594844818115,-0.0683981329202652,0.024004386737942696,0.0032140074763447046,-0.030395839363336563,-0.050563812255859375,0.07290839403867722,-0.05239240080118179,-0.02754921466112137,-0.07023177295923233,0.033919282257556915,-0.029812300577759743,-0.02734050340950489,0.0650392472743988,-0.013502108864486217,-0.05011753737926483,-0.029615502804517746,-0.005749104078859091,0.0254407599568367,-0.042474206537008286,0.014877092093229294,-0.003753203433007002,-0.05696150287985802,-0.018405219539999962,-0.023731518536806107,-0.031005479395389557,-0.014905858784914017,-0.04474145174026489,-0.05411123111844063,-0.008331764489412308,-0.04594799876213074,0.043788254261016846,0.06746923923492432,-0.002119888085871935,0.12467925250530243,-0.033454738557338715,-0.006771592423319817,0.0643080323934555,-0.093782439827919,0.04653352126479149,0.039123013615608215,-0.03720209747552872,0.002005035523325205,-0.00314311683177948,-0.02283184975385666,-0.0399138443171978,-0.03791401535272598,-0.08065781742334366,0.019904397428035736,0.018544580787420273,0.07117415219545364,0.008799961768090725,0.029467100277543068,0.07903541624546051,-0.006501219235360622,0.06335315108299255,-0.014084192924201488,-0.017169183120131493,0.06255847960710526,0.022737005725502968,-0.05031988397240639,-0.0656457245349884,0.03865313529968262,0.07870571315288544,-0.06004468351602554,0.06063910946249962,-0.024411465972661972,-0.03730814903974533,-0.023228755220770836,0.043055158108472824,-0.05653082951903343,-0.0704355239868164,-0.0024055782705545425,-0.018116919323801994,-0.009642292745411396,-0.03850562870502472,-0.11121707409620285,-0.011376522481441498,-0.033865660429000854,-0.02727271057665348,-0.08181387931108475,0.0035629901103675365,0.045397162437438965,0.043101824820041656,0.06335072219371796,0.07064594328403473,-0.012077676132321358,-0.03243235871195793,-0.059113677591085434,-0.04350709170103073,0.0672784224152565,-0.015856977552175522,-0.039705488830804825,0.039675112813711166,0.0120612857863307,-0.031327180564403534,-0.029346918687224388,-1.62127728011449e-34,-0.017701106145977974,-0.08789679408073425,0.10008640587329865,-0.020976150408387184,0.029418228194117546,0.017590245231986046,-0.02617844194173813,-0.06870760023593903,0.029838699847459793,-0.016073428094387054,0.008974507451057434,-0.07583345472812653,0.007805385161191225,0.09272127598524094,-0.025520188733935356,0.00781724788248539,-0.0016992304008454084,-0.006960184779018164,0.06619308143854141,-0.062105219811201096,0.00847941730171442,-0.024088434875011444,0.025507843121886253,-0.001019409392029047,-0.02902609296143055,0.006779450923204422,-0.052484482526779175,-0.0527462512254715,0.09457295387983322,0.017369871959090233,-0.007766593247652054,0.045843955129384995,0.015521854162216187,-0.022244224324822426,-0.010705995373427868,0.021316802129149437,-0.040769074112176895,-0.07099445164203644,-0.0032224291935563087,-0.03110106661915779,0.010425359942018986,0.04799098148941994,0.018632404506206512,-0.03157266229391098,0.036405134946107864,0.017442893236875534,0.07763918489217758,0.06551407277584076,-0.1264847368001938,0.02735832892358303,-0.015778793022036552,0.018947284668684006,0.012567970901727676,-0.09093333780765533,-0.0021472861990332603,-0.05519367754459381,-0.02547767572104931,0.10493892431259155,-0.0497111901640892,-0.026454485952854156,0.012503095902502537,-0.011803826317191124,0.06986279040575027,0.06835336238145828,-0.055604856461286545,-0.04047811031341553,0.04944085329771042,-0.07577390968799591,-0.06367519497871399,0.020367005839943886,0.016520896926522255,0.015155402943491936,-0.08074555546045303,-0.020626887679100037,-0.010099084116518497,-0.01451170351356268,0.07412958890199661,-0.014684733003377914,-0.07007630914449692,-0.03551873564720154,-0.04254056140780449,0.0055643790401518345,-0.049289897084236145,0.05892756208777428,0.09102991223335266,0.08092010766267776,0.05408672243356705,-0.03176151216030121,-0.005943431984633207,-0.06377659738063812,-0.013764823786914349,0.011962763965129852,-0.010260885581374168,0.0069611286744475365,-0.08191149681806564,-1.8980659528269474e-33,0.019581299275159836,-0.04707516357302666,0.02492043562233448,0.044161662459373474,0.04446756839752197,-0.011741291731595993,-0.03418649733066559,-0.057917483150959015,-0.05774311348795891,0.033243391662836075,0.03505516052246094,0.01971573941409588,0.03003590926527977,-0.003051679115742445,-0.0178927443921566,-0.04629453644156456,0.0013940581120550632,-0.016616756096482277,-0.023304365575313568,0.06952856481075287,-0.059091467410326004,0.06484817713499069,-0.036931611597537994,0.016159826889634132,-0.08165980875492096,0.06911875307559967,-0.019723452627658844,0.0015104252379387617,-0.03929449990391731,-0.013544552959501743,0.026783203706145287,0.09274985641241074,-0.08502916991710663,-0.0348631925880909,0.002659889403730631,0.036658771336078644,0.11432862281799316,-0.08772673457860947,0.015968995168805122,-0.07312912493944168,-0.022418450564146042,0.04464026913046837,-0.012474993243813515,0.08448373526334763,0.05252103880047798,0.004996404051780701,0.0011157862609252334,-0.00013080457574687898,0.1361573189496994,0.019919976592063904,0.0022526374086737633,0.01206026878207922,0.04106076806783676,0.018857067450881004,-0.05463765934109688,-0.06394582241773605,0.10705241560935974,-0.14255064725875854,0.04501745477318764,-0.003971154801547527,-0.08720225840806961,0.005777623504400253,-0.08119671791791916,0.1275855004787445,-0.027839023619890213,-0.03188157454133034,0.08059835433959961,0.0837792307138443,-0.035871367901563644,-0.06620197743177414,0.039535582065582275,-0.01048318576067686,0.01916884258389473,0.04098963737487793,0.009157245047390461,0.009649110957980156,0.025375133380293846,0.06952857971191406,0.021749751642346382,0.022487789392471313,-0.026695940643548965,-0.06672628968954086,0.06922325491905212,-0.0471879206597805,0.01934305764734745,0.027538295835256577,-0.060366190969944,-0.04938829690217972,0.023729193955659866,-0.05532446131110191,-0.089875727891922,-0.10143505781888962,-0.002056572586297989,-0.02899521216750145,-0.02558567374944687,-3.201979836831015e-8,0.03553350642323494,-0.006745853926986456,0.053750235587358475,-0.04090835899114609,-0.008674443699419498,-0.003508248133584857,-0.022174598649144173,0.044782668352127075,0.04979018121957779,0.08124856650829315,-0.09303348511457443,0.05610649660229683,0.05840343236923218,0.0800129696726799,0.0020598394330590963,0.07746658474206924,-0.03393498435616493,-0.07621461153030396,-0.06210809573531151,0.00004585704664350487,0.03048703819513321,-0.003455516416579485,0.039171960204839706,-0.053043659776449203,-0.008697359822690487,-0.023613503202795982,-0.03912108391523361,-0.10157594829797745,0.01608378253877163,0.015676647424697876,-0.003597602713853121,-0.027374468743801117,-0.08698289841413498,0.05600801482796669,-0.020442111417651176,0.005697487387806177,-0.06233907863497734,-0.004087834618985653,0.005110975354909897,0.0038642024155706167,0.0344686284661293,0.021673860028386116,0.07142484188079834,0.03052688203752041,0.04015720263123512,-0.06423258781433105,-0.038083843886852264,0.010973997414112091,0.03435162827372551,-0.10288558155298233,0.07267708331346512,0.025665869936347008,0.08903118968009949,-0.028756560757756233,0.0353996604681015,-0.027969278395175934,0.03213787078857422,0.08453860878944397,-0.09184824675321579,0.010379575192928314,0.17977039515972137,-0.12204523384571075,-0.08040811866521835,-0.025669917464256287]},{"text":"Before this I was not unacquainted with the more obvious laws of electricity.","book":"1984","chapter":18,"embedding":[-0.0530436709523201,0.0283921230584383,0.06427799165248871,0.08517914265394211,0.03917984664440155,-0.10021606832742691,-0.05103956535458565,-0.009793882258236408,-0.014826430007815361,0.07289888709783554,0.08976802229881287,0.026928354054689407,0.01724613830447197,0.040124356746673584,0.018509214743971825,-0.052599046379327774,0.002934581134468317,-0.04681764543056488,-0.10096266120672226,0.08010856062173843,0.040880922228097916,-0.00038828252581879497,0.019829189404845238,-0.020238133147358894,0.05454428866505623,0.05428020656108856,0.0031620757654309273,0.036484282463788986,0.011825134977698326,0.003008440835401416,-0.0526726059615612,-0.023424429818987846,-0.05068119242787361,-0.0016473694704473019,-0.03150521218776703,0.002718498231843114,0.06587202101945877,-0.014731168746948242,0.022010525688529015,0.05667116865515709,0.026485847309231758,-0.10177479684352875,-0.00041869195410981774,0.007046581245958805,-0.04954349249601364,0.06091764196753502,0.030473053455352783,-0.048867397010326385,-0.03754696249961853,-0.08230609446763992,-0.011048364453017712,0.034573033452034,-0.06349799782037735,0.051193561404943466,0.06948850303888321,-0.051921043545007706,0.060651928186416626,0.05955231189727783,0.0010594992199912667,0.01120147667825222,0.038181014358997345,-0.011976106092333794,-0.0431881919503212,-0.006737659219652414,-0.011895381845533848,0.004519250243902206,-0.007878239266574383,0.0365263894200325,0.022605357691645622,0.03309125453233719,0.029445551335811615,0.008579356595873833,-0.0020033963955938816,0.004053894896060228,-0.020426759496331215,-0.09225396811962128,0.033511169254779816,0.06652525812387466,0.0190068818628788,0.035452570766210556,-0.12244746088981628,-0.05310389772057533,-0.07505100965499878,0.0003821552381850779,0.03336580470204353,0.002365886466577649,-0.001102160313166678,-0.04681599512696266,-0.04295714572072029,-0.020359911024570465,-0.010117712430655956,0.021161401644349098,0.05733692646026611,0.005001091863960028,0.07195425033569336,-0.019950609654188156,-0.01831088215112686,0.015151916071772575,-0.057763878256082535,0.03239396587014198,0.020764276385307312,-0.02222130075097084,-0.037238359451293945,0.057183120399713516,0.08191308379173279,0.00890829786658287,-0.012771625071763992,-0.013501228764653206,0.011172052472829819,-0.008441981859505177,0.046666450798511505,0.013104070909321308,0.00006079663580749184,0.06991551071405411,-0.0349833108484745,0.030902819707989693,0.025104843080043793,0.04267282038927078,0.02358013018965721,0.02092500776052475,0.04583575576543808,0.0015831926139071584,0.01447730790823698,0.04994090646505356,0.03601130098104477,-0.03221214935183525,0.06673929840326309,-3.0747190839397565e-33,-0.11550839990377426,-0.025925755500793457,0.11719848960638046,-0.010299834422767162,0.06016382575035095,-0.04841882735490799,-0.06256118416786194,0.037056632339954376,0.12692275643348694,0.053700316697359085,0.08082816749811172,0.07218790054321289,0.05031122639775276,0.007941278629004955,-0.037439946085214615,-0.014779886230826378,-0.08116688579320908,-0.020829476416110992,0.11220701038837433,0.002748666564002633,0.05394839867949486,-0.0692606270313263,0.057460617274045944,-0.009689406491816044,-0.05534648150205612,-0.020625993609428406,0.026856184005737305,-0.05290449783205986,0.0671190544962883,0.007897274568676949,0.05154379829764366,0.07845357060432434,0.053942352533340454,0.012178212404251099,-0.07951193302869797,0.07079482078552246,0.09463996440172195,-0.07366672158241272,0.005721079185605049,-0.04947150498628616,-0.025477657094597816,-0.045017533004283905,0.014819411560893059,-0.04110615700483322,0.040201056748628616,0.01031411625444889,0.004340277519077063,-0.09900281578302383,-0.060800958424806595,-0.0007411518017761409,-0.03454314172267914,-0.00015299834194593132,0.07650455832481384,-0.02472510188817978,0.06552204489707947,-0.005342458374798298,-0.0828332006931305,0.07688873261213303,-0.04084572568535805,0.060245074331760406,-0.08902639150619507,0.09249641001224518,0.0031344660092145205,0.00731864757835865,-0.11389786750078201,-0.04213770478963852,-0.013893377967178822,0.03116408921778202,-0.045416053384542465,-0.08590174466371536,-0.03626028075814247,-0.011562490835785866,-0.0667150691151619,0.03746356815099716,0.028931312263011932,-0.015599202364683151,-0.05597270280122757,0.01790612004697323,0.03862985596060753,-0.11404989659786224,-0.03574835881590843,-0.05895860865712166,0.030605804175138474,-0.03465491533279419,0.0555955208837986,-0.09265732765197754,0.034118037670850754,0.06341946125030518,-0.03992854058742523,-0.016209004446864128,0.03853331133723259,0.01786181703209877,0.08151352405548096,-0.07243821769952774,-0.017955224961042404,6.117931062186637e-34,-0.03884575888514519,-0.0002650348760653287,-0.04673046991229057,0.0517457015812397,-0.008196545764803886,-0.004776620771735907,-0.00461265305057168,-0.09524112194776535,0.00958401057869196,0.018066341057419777,0.018124349415302277,-0.04823938384652138,-0.0628441572189331,-0.05493486300110817,0.06536311656236649,0.024578778073191643,-0.03365034982562065,0.02076677419245243,-0.00021817637025378644,0.037015918642282486,0.002614186843857169,0.012400775216519833,-0.008101326413452625,-0.02555633708834648,-0.033103976398706436,0.02707785554230213,-0.04234260693192482,-0.013230741955339909,-0.02876628004014492,0.0071382708847522736,-0.06506948173046112,0.04959674924612045,-0.08646461367607117,-0.0018746629357337952,-0.08079855889081955,-0.010391242802143097,0.03192873299121857,0.002582092070952058,-0.03489065542817116,-0.08183203637599945,-0.0037879955489188433,0.027127468958497047,0.05328124761581421,0.026237240061163902,-0.05906562879681587,-0.14043454825878143,-0.0033210371620953083,0.04837486520409584,-0.04830477759242058,0.00020876120834145695,-0.034508444368839264,-0.07477474212646484,0.02091631479561329,-0.05797036737203598,-0.02270008809864521,-0.019206732511520386,0.11381717026233673,0.0038244507741183043,0.008539615198969841,0.029335491359233856,0.03379314765334129,-0.04612259939312935,0.0007950428407639265,0.02111855521798134,-0.002259389264509082,-0.018031908199191093,-0.05450555682182312,0.057539887726306915,0.07525934278964996,-0.0994870662689209,0.04785002022981644,0.015347383916378021,-0.15598124265670776,-0.09543492645025253,-0.05634819343686104,0.02406160533428192,0.061720144003629684,0.05905309319496155,-0.08139786869287491,-0.12268352508544922,0.022570587694644928,0.06866614520549774,0.004182181786745787,-0.08759652078151703,-0.016534006223082542,-0.015004240907728672,0.03717254847288132,-0.08071433007717133,0.05166617035865784,0.04232483729720116,-0.08851560205221176,0.057974398136138916,0.00912829115986824,0.023547803983092308,-0.007276742719113827,-2.504829765825889e-8,0.010170591995120049,0.08456863462924957,0.04870917275547981,-0.03870376944541931,0.023521333932876587,0.010880596935749054,0.026386987417936325,-0.014141587540507317,-0.07718142122030258,-0.041222888976335526,0.04442119225859642,0.06654069572687149,0.10948469489812851,0.03463055565953255,0.012946806848049164,0.03856758028268814,-0.004196693189442158,-0.05436759069561958,-0.0433657243847847,0.16747595369815826,-0.03429489955306053,0.031035223975777626,-0.02048511803150177,0.044990554451942444,0.09435146301984787,0.08609329164028168,0.01877400279045105,0.004051994066685438,0.007319671101868153,0.05081341043114662,-0.03929691016674042,-0.008799178525805473,-0.04259371757507324,-0.03056388534605503,-0.01564074493944645,-0.03565291687846184,-0.002623723354190588,-0.03700472041964531,-0.06649336963891983,-0.10784589499235153,-0.0714300125837326,-0.03695055842399597,0.003536361502483487,0.04278748854994774,0.03420407325029373,0.02546260692179203,-0.04283756762742996,-0.0005303611978888512,-0.018703501671552658,0.074042908847332,-0.0007190896430984139,0.0229550339281559,0.047258179634809494,-0.03533780574798584,0.07784831523895264,0.029007267206907272,-0.07186730206012726,0.02938602678477764,-0.09247222542762756,-0.009550199843943119,0.10033170878887177,0.05813106521964073,-0.01265172939747572,0.007719077169895172]},{"text":"It was a strong effort of the spirit of good, but it was ineffectual.","book":"1984","chapter":19,"embedding":[-0.007416929118335247,0.10639229416847229,0.03300295025110245,0.0019312038784846663,-0.0011443200055509806,0.031235186383128166,-0.034365586936473846,-0.016920803114771843,-0.061780788004398346,-0.014281581155955791,0.02523317001760006,0.05756605416536331,0.04340316727757454,-0.023351741954684258,0.009418511763215065,-0.008979672566056252,0.07260863482952118,-0.007037353236228228,-0.034042079001665115,0.03836186230182648,0.0667392760515213,0.04682226851582527,0.03568007051944733,0.017076700925827026,-0.020913340151309967,0.005561160854995251,-0.040986884385347366,0.010226805694401264,0.07114827632904053,-0.05374494940042496,-0.07124139368534088,0.04432370513677597,0.012791060842573643,-0.017097225412726402,-0.06971684843301773,0.10270233452320099,0.017704417929053307,0.0098202433437109,-0.013730230741202831,-0.05958240479230881,0.017613142728805542,0.06896697729825974,-0.015339214354753494,-0.026774462312459946,-0.008444622159004211,-0.07271502912044525,0.08210146427154541,-0.07048571109771729,0.03556881099939346,-0.040245261043310165,-0.000782789837103337,0.0006180439959280193,0.02622400037944317,-0.09076514840126038,-0.05595201998949051,0.03207443282008171,-0.002641621744260192,-0.024734629318118095,-0.018928226083517075,-0.048839326947927475,0.00453161122277379,0.026201624423265457,0.048738278448581696,-0.01747751235961914,0.1181914284825325,-0.08324134349822998,-0.04523007944226265,0.004067570902407169,0.009111707098782063,-0.029805302619934082,-0.01584630273282528,-0.043098751455545425,0.08347592502832413,-0.08404667675495148,-0.025180188938975334,0.008294519037008286,-0.03725794702768326,-0.0854262188076973,-0.04759975150227547,0.03199343755841255,0.07048320770263672,-0.0654451847076416,-0.025232477113604546,0.042317550629377365,-0.03400454297661781,-0.06284859031438828,0.06641826033592224,-0.08894748240709305,0.042189378291368484,0.06225808709859848,-0.025931360200047493,0.03302972763776779,-0.008371560834348202,-0.03021105006337166,0.03661474213004112,-0.06645757704973221,-0.04608648642897606,0.041101641952991486,-0.00928808469325304,0.11307123303413391,0.002889913273975253,0.060403142124414444,-0.04544512927532196,-0.04350005090236664,-0.008111897855997086,-0.051879528909921646,-0.037829264998435974,-0.04356154426932335,-0.04610597342252731,0.012581310234963894,-0.01657763682305813,0.022922025993466377,0.08155307918787003,0.011239766143262386,0.06533388793468475,0.07368960976600647,-0.02532115951180458,-0.026575833559036255,-0.05648021772503853,0.008355380967259407,0.13953861594200134,-0.008050469681620598,0.027241971343755722,0.0729423388838768,-0.07742306590080261,-0.06507432460784912,0.08788437396287918,-4.9930386207603796e-33,-0.0015365219442173839,0.036263126879930496,0.06640385836362839,0.04907980188727379,0.05364682525396347,0.021173374727368355,-0.05173606425523758,-0.02741546370089054,-0.024550678208470345,-0.04397574067115784,0.011411597952246666,0.029337015002965927,0.0005250743706710637,0.0047808061353862286,-0.03820732235908508,-0.03738017380237579,-0.17900918424129486,-0.0042205392383039,0.050606124103069305,0.027230791747570038,-0.05828632786870003,0.03387073054909706,-0.03262661397457123,-0.11501067131757736,-0.03325958177447319,0.011188801378011703,-0.008551419712603092,0.04914778470993042,0.02850010059773922,-0.007659112103283405,0.0724608525633812,0.02932358719408512,-0.020885083824396133,0.012882254086434841,0.03751097247004509,-0.01252164039760828,-0.006546389777213335,-0.07897109538316727,0.033101920038461685,0.0031948983669281006,-0.018431859090924263,0.07922773063182831,0.052475642412900925,0.03534134849905968,0.025377823039889336,0.04864386469125748,-0.06234221160411835,-0.03585641086101532,-0.059947676956653595,0.03386254981160164,0.0053748697973787785,-0.00011309275578241795,0.088795505464077,-0.03402133658528328,-0.04777982085943222,0.08320284634828568,0.0691090077161789,0.10970953106880188,0.02017737738788128,-0.03217018395662308,-0.06795002520084381,0.020510632544755936,0.05076734721660614,-0.12371473759412766,-0.036287061870098114,-0.02479713410139084,0.032093215733766556,0.05190516635775566,-0.06244268640875816,0.0018837838433682919,-0.0934441089630127,-0.0069007063284516335,-0.11030831933021545,-0.0885205939412117,-0.05802688002586365,-0.02429882436990738,-0.08934839814901352,-0.058579184114933014,0.04175226762890816,0.05649297684431076,-0.02253679186105728,-0.042978592216968536,0.003279539756476879,0.014310828410089016,0.03513180464506149,-0.03516313433647156,0.01036836113780737,-0.12289118021726608,0.049901120364665985,0.015405585058033466,0.012596193701028824,0.07957412302494049,0.08004133403301239,-0.0593244768679142,0.014043772593140602,2.3640895861844894e-33,0.059222303330898285,-0.0287766270339489,0.05313540995121002,0.13571685552597046,0.004459056071937084,-0.029762020334601402,-0.11064018309116364,0.007675758562982082,0.00682465685531497,0.0616118460893631,0.027629990130662918,0.0010023323120549321,0.0444464311003685,-0.03502742573618889,-0.012915745377540588,0.00003806615131907165,0.027607915922999382,0.09462122619152069,0.017941638827323914,0.007757230661809444,0.032204508781433105,0.10050176084041595,-0.03422197327017784,-0.02413848228752613,-0.026978524401783943,0.10466654598712921,-0.021961282938718796,-0.035937316715717316,-0.07355177402496338,-0.038512349128723145,0.09973756223917007,0.04254024475812912,-0.06814978271722794,0.023031869903206825,0.05591890588402748,0.12460226565599442,0.066259004175663,0.06705795228481293,-0.07617710530757904,-0.08100708574056625,-0.04630272462964058,0.02847081609070301,-0.034313976764678955,0.059303782880306244,-0.014724010601639748,-0.00034047229564748704,0.01681802235543728,-0.009976962581276894,0.03405988588929176,0.02425108663737774,-0.0194872859865427,-0.008397971279919147,-0.06313985586166382,0.017166491597890854,-0.02080260030925274,-0.07865341007709503,0.012230824679136276,-0.033684343099594116,0.028810452669858932,-0.029297612607479095,-0.14772634208202362,-0.06776119023561478,-0.030830340459942818,-0.07992995530366898,0.014694344252347946,0.0009661538060754538,-0.053946420550346375,0.03901800885796547,0.020745432004332542,-0.0502510666847229,-0.032531093806028366,0.027017725631594658,-0.027663579210639,0.10897702723741531,0.022207703441381454,-0.022467603906989098,0.010874916799366474,-0.087513767182827,-0.014436602592468262,-0.012820618227124214,-0.07455383986234665,-0.0023705672938376665,-0.04631507396697998,-0.0027821012772619724,0.015341872349381447,0.04039902985095978,-0.049175359308719635,-0.02863730490207672,-0.031173938885331154,0.06945527344942093,-0.008004977367818356,0.02701030857861042,0.00025513771106489,0.044028040021657944,0.06330391019582748,-2.732700998819837e-8,-0.0007460328051820397,0.019791455939412117,0.034040048718452454,0.01758596859872341,-0.0022035883739590645,-0.022553859278559685,-0.0036250592675060034,0.04531661048531532,-0.034238871186971664,0.06034784018993378,-0.05929262191057205,0.05386616662144661,0.03989080339670181,0.05174209550023079,0.03773234039545059,0.00837269239127636,-0.025866322219371796,-0.0064105745404958725,-0.04606769233942032,-0.00816180557012558,0.04406888037919998,0.06743327528238297,-0.016256215050816536,-0.01364051178097725,-0.027581948786973953,0.0012138113379478455,-0.0633988156914711,-0.08201754093170166,-0.01772039569914341,0.008090904913842678,0.06684012711048126,0.03760555014014244,-0.1206427663564682,0.03266486898064613,-0.03448107838630676,0.02252507396042347,-0.06846321374177933,-0.06558366119861603,0.04421302303671837,-0.10158683359622955,0.05642468482255936,0.10630463063716888,0.0023342110216617584,-0.01097084116190672,0.021012747660279274,-0.0317484475672245,0.01233927346765995,-0.0005729522672481835,-0.009372103959321976,0.017408132553100586,0.06839703023433685,0.08349581062793732,-0.0421978235244751,0.06824786216020584,0.04350423067808151,-0.08630521595478058,-0.007718146312981844,-0.01009172759950161,-0.039688047021627426,-0.0228870939463377,0.05145471170544624,-0.059925440698862076,0.019284941256046295,-0.04590170830488205]},{"text":"She joined the hands of Elizabeth and myself. “My children,” she said, “my firmest hopes of future happiness were placed on the prospect of your union.","book":"1984","chapter":19,"embedding":[-0.05092870444059372,0.043824851512908936,0.07744123786687851,0.08151765912771225,-0.03538518771529198,0.0602286197245121,0.1241910308599472,-0.004252330865710974,0.01729823276400566,-0.03396078944206238,-0.07992018014192581,0.0012795450165867805,0.014612323604524136,-0.07621198147535324,-0.0011931781191378832,0.09035471826791763,-0.016185984015464783,-0.006703504826873541,-0.03778102248907089,0.0017273053526878357,-0.07828342169523239,-0.0058278110809624195,-0.02609580010175705,0.06433286517858505,0.04461298882961273,0.047646377235651016,-0.0485961027443409,0.009393407963216305,-0.012221753597259521,-0.021853893995285034,-0.04344991222023964,-0.06561953574419022,0.008912057615816593,0.083406001329422,0.01589919812977314,-0.008383922278881073,0.024359755218029022,0.02068411372601986,0.008076755329966545,-0.012033791281282902,-0.0068052164278924465,-0.07134166359901428,0.021265586838126183,-0.015257671475410461,-0.015086974948644638,0.016672033816576004,0.04924469068646431,-0.0033462606370449066,-0.014711994677782059,-0.017106259241700172,0.0012425131862983108,-0.00815997552126646,0.002350444672629237,-0.10124189406633377,0.01096198707818985,0.12630484998226166,0.04482483118772507,-0.04635396972298622,0.05583186820149422,0.04483497142791748,-0.0061241029761731625,0.06275184452533722,-0.0231041107326746,0.04907795041799545,-0.012870140373706818,-0.07123959809541702,0.06456902623176575,0.06982383131980896,-0.05887989327311516,-0.004600172396749258,-0.019083749502897263,-0.019884860143065453,0.02756047062575817,-0.014455643482506275,-0.0004350700764916837,0.05303714796900749,0.0873098224401474,0.0070363497361540794,-0.010925800539553165,-0.0393480584025383,-0.13780364394187927,-0.005110864993184805,-0.031506046652793884,0.02811906673014164,-0.010235353372991085,-0.004604771733283997,0.02806549333035946,-0.06921220570802689,0.03228180110454559,-0.05780661106109619,-0.09645156562328339,-0.10175212472677231,0.061594411730766296,0.04515121877193451,0.04073294997215271,0.013066643849015236,-0.06816159188747406,-0.028697697445750237,-0.05879165977239609,0.017453400418162346,-0.033782318234443665,0.07260901480913162,-0.04322551563382149,0.08195769041776657,-0.12327253818511963,-0.035786207765340805,-0.05484137311577797,-0.04464581236243248,0.012060243636369705,-0.05326389521360397,-0.013285874389111996,-0.04746314510703087,-0.03175473213195801,0.008277978748083115,-0.013234199956059456,0.0017657720018178225,-0.021754160523414612,-0.010852177627384663,0.028906889259815216,-0.05956222489476204,-0.009903647936880589,0.02502363547682762,-0.07016754150390625,-0.008131936192512512,-0.10241668671369553,-0.04659534618258476,-0.0007525131804868579,-3.29248694294027e-33,-0.04753701388835907,0.005333859007805586,0.04148612171411514,0.09668537974357605,0.004269192926585674,0.06332869827747345,-0.0005410186131484807,-0.00785617996007204,-0.011746375821530819,-0.02884768880903721,-0.04655908793210983,0.008274814113974571,0.023887963965535164,-0.12477359175682068,-0.12137917429208755,0.045169949531555176,-0.052435070276260376,0.00991140492260456,0.035804130136966705,0.1373259723186493,0.016646666452288628,0.1140933558344841,-0.03594207391142845,0.0017949200700968504,-0.04482920095324516,-0.01045664120465517,0.059269409626722336,0.012520895339548588,0.034407828003168106,0.04795757308602333,0.008278044871985912,0.04888750612735748,0.03375549614429474,-0.10516556352376938,0.04434681683778763,-0.006102482322603464,-0.024141376838088036,-0.05269595608115196,-0.03359253704547882,0.05577264353632927,-0.03832607343792915,-0.07555903494358063,0.1273117959499359,-0.014189516194164753,-0.0958491712808609,0.03427044674754143,0.015604443848133087,0.04765813425183296,0.024316782131791115,0.006148758344352245,-0.008666850626468658,-0.05682431533932686,-0.051595769822597504,0.0058294059708714485,-0.015622028149664402,0.014829125255346298,-0.038855500519275665,0.10060448199510574,0.0439150370657444,-0.03223429247736931,-0.00913004670292139,-0.06850297749042511,-0.02863096445798874,0.00993331428617239,-0.0511394664645195,0.09136329591274261,0.030637230724096298,-0.0045425728894770145,0.05907222256064415,-0.020052604377269745,-0.0397370383143425,0.060565393418073654,-0.030962705612182617,0.0055505698546767235,-0.04087241739034653,0.06838467717170715,0.003639962524175644,0.020124638453125954,0.003866491373628378,-0.029148174449801445,0.0003217083867639303,0.020029114559292793,-0.0326789915561676,0.037065502256155014,0.1396172195672989,-0.0763186663389206,-0.020585451275110245,-0.10006602108478546,-0.03864073008298874,0.10666582733392715,0.007485155947506428,0.02178005315363407,0.13302582502365112,-0.030344584956765175,-0.08018022030591965,9.249579337536717e-34,0.029447104781866074,-0.042105093598365784,0.026972845196723938,0.006120666861534119,0.03440095856785774,-0.09254036098718643,0.01872929371893406,-0.03356899321079254,0.03297923505306244,0.07260902971029282,0.05693107098340988,-0.033134106546640396,0.04168325290083885,0.02920508198440075,-0.14204011857509613,-0.05029584839940071,0.04634612053632736,-0.08697062730789185,0.07181050628423691,-0.047227516770362854,-0.046831127256155014,0.016551613807678223,0.053855761885643005,-0.010336092673242092,0.07311045378446579,0.03348444774746895,-0.02290288172662258,-0.036762550473213196,-0.033303141593933105,-0.03455771133303642,0.01285636331886053,0.034697286784648895,-0.07575032860040665,0.02698974870145321,0.06137695908546448,-0.03998618200421333,-0.027280015870928764,-0.06805840134620667,0.07205680012702942,-0.07569455355405807,-0.020640205591917038,-0.06488358974456787,0.030984720215201378,0.09313464909791946,0.04958876222372055,0.04074640944600105,-0.04294121637940407,0.003437971230596304,0.05522877350449562,0.1013784408569336,-0.052940428256988525,0.06126154214143753,0.02039116993546486,0.008126046508550644,0.0241796113550663,-0.030091330409049988,0.04927010461688042,-0.07000458985567093,0.13532282412052155,0.004887115675956011,-0.03317750245332718,-0.009409432299435139,-0.018884774297475815,-0.004880665801465511,0.011221176944673061,-0.016861723735928535,-0.02482772246003151,0.0192806888371706,-0.03055349923670292,0.0544426403939724,-0.014825142920017242,-0.043623387813568115,0.037182897329330444,0.06397648900747299,-0.028473615646362305,-0.02535051666200161,0.017180822789669037,-0.0751158595085144,-0.007420687470585108,0.06453553587198257,-0.050586774945259094,-0.03137791529297829,0.0012517732102423906,-0.07784057408571243,0.037639718502759933,-0.08063644170761108,0.06127982959151268,0.046548206359148026,0.017411362379789352,-0.04344096779823303,0.02723837085068226,-0.05050425976514816,0.08120963722467422,-0.1089048832654953,0.03779212012887001,-2.9208793606017025e-8,0.023486066609621048,-0.010761198587715626,-0.008405744098126888,-0.0752129852771759,0.02732258476316929,-0.011812146753072739,-0.013090268708765507,0.04810895025730133,0.013597927056252956,0.04844124987721443,-0.06266022473573685,0.026942798867821693,0.0125964330509305,-0.016767343506217003,0.09808061271905899,0.03837922587990761,0.050347354263067245,-0.09966625273227692,0.03184432536363602,-0.012267502956092358,0.10299364477396011,0.022051334381103516,0.0456559918820858,-0.027255307883024216,-0.08102303743362427,-0.013576281256973743,0.06438439339399338,0.017240874469280243,-0.12248575687408447,0.010220157913863659,0.03000645339488983,0.03910946846008301,-0.06023585423827171,-0.0004573235637508333,-0.08812008798122406,0.0293104350566864,-0.006699312478303909,0.051724404096603394,0.025492731481790543,-0.02297324873507023,-0.0008997353143058717,0.11126139760017395,-0.016993947327136993,0.022115245461463928,0.03496384620666504,-0.03818740323185921,0.03453022614121437,0.05708831548690796,0.0005885374266654253,-0.03164435923099518,-0.023258469998836517,0.01381663978099823,0.00979052484035492,-0.00011143195297336206,-0.024044150486588478,-0.046489689499139786,-0.013210502453148365,-0.060267575085163116,-0.017840340733528137,0.06717660278081894,-0.002936595818027854,-0.0007600622484460473,-0.04361400753259659,-0.02505100890994072]},{"text":"My mother was dead, but we had still duties which we ought to perform; we must continue our course with the rest and learn to think ourselves fortunate whilst one remains whom the spoiler has not seized.","book":"1984","chapter":20,"embedding":[-0.026484256610274315,0.01154299359768629,-0.005494978744536638,-0.040636371821165085,0.011389032006263733,0.038603901863098145,-0.013839367777109146,-0.00012032457016175613,-0.029960893094539642,0.003725513117387891,0.01750808209180832,0.01799614354968071,0.0031102129723876715,-0.009585309773683548,-0.018138881772756577,-0.022661259397864342,-0.012207889929413795,-0.059527818113565445,-0.045641399919986725,0.07721752673387527,-0.06514669209718704,0.04179945960640907,0.052102331072092056,-0.003765690140426159,-0.027243703603744507,-0.016817711293697357,-0.05293726921081543,-0.049597498029470444,0.01287516113370657,-0.03925517946481705,-0.01795225590467453,-0.008146305568516254,-0.037590254098176956,-0.003098683897405863,0.006259973160922527,0.10515787452459335,0.009794050827622414,-0.06241566687822342,-0.02128737047314644,0.002460415242239833,-0.0023504963610321283,0.06953196972608566,-0.045163244009017944,-0.005585874896496534,0.09584952145814896,-0.038507673889398575,0.018886014819145203,-0.03320618346333504,0.014977063052356243,0.016455333679914474,0.0014590509235858917,0.013207200914621353,0.0171648021787405,-0.01823233626782894,0.00017676415154710412,0.014830230735242367,0.08762115240097046,-0.04907785356044769,-0.013596155680716038,-0.04411043971776962,-0.08890046179294586,0.024592462927103043,0.02427811548113823,-0.04795299842953682,0.012904238887131214,-0.08666404336690903,0.09838209301233292,-0.06166412681341171,-0.0024912492372095585,0.04041769728064537,-0.06550547480583191,0.010822302661836147,0.0293999295681715,0.05183512344956398,-0.07045693695545197,0.00024404795840382576,0.07377476245164871,-0.07563036680221558,-0.023166833445429802,-0.015172557905316353,-0.040997497737407684,-0.0260050930082798,0.004392270464450121,0.06318758428096771,0.010942927561700344,-0.06767509877681732,-0.020844394341111183,-0.058755677193403244,0.11323767155408859,0.04739250987768173,-0.03934532776474953,-0.02398153394460678,0.023770801723003387,0.07904970645904541,0.0005428450531326234,0.004773247521370649,-0.009579519741237164,0.10133758187294006,-0.04630827531218529,0.01738237775862217,-0.07757742702960968,-0.006331565324217081,0.00011119416740257293,0.041983138769865036,0.014176467433571815,0.08124494552612305,-0.061173781752586365,-0.03249964863061905,0.014739982783794403,0.017234263941645622,-0.04548514261841774,-0.0006588345859199762,0.005573639180511236,0.026862766593694687,0.056150976568460464,0.08275512605905533,-0.025312788784503937,-0.045236192643642426,-0.08350260555744171,-0.029364151880145073,0.051352810114622116,0.09287089854478836,0.0005599787691608071,0.025241367518901825,0.013344874605536461,-0.008525501005351543,0.058112774044275284,-4.3472234937865534e-33,0.041868191212415695,-0.03253542631864548,0.032306816428899765,0.04997040703892708,0.056406255811452866,0.04398541525006294,-0.035583749413490295,0.046001534909009933,0.03175894916057587,-0.023183930665254593,0.10424922406673431,-0.0801115334033966,-0.04198862239718437,-0.16539083421230316,-0.10225994139909744,0.0812508761882782,-0.07015931606292725,-0.001687298878096044,0.09652170538902283,-0.015554893761873245,-0.010820822790265083,0.04791613668203354,-0.037574782967567444,-0.061433203518390656,0.002352967392653227,0.02969876490533352,0.06708987057209015,0.06715144217014313,-0.00598570704460144,-0.00831899605691433,0.02040337212383747,0.005670756101608276,0.04382992535829544,-0.1063670963048935,-0.01526123657822609,-0.016726763918995857,-0.05998044088482857,-0.024694522842764854,0.0034578917548060417,0.0005792973679490387,-0.03674992918968201,-0.04362861067056656,0.07413014769554138,-0.09683817625045776,-0.08148843795061111,-0.09080252051353455,0.09606818109750748,0.002208881778642535,-0.04780535772442818,0.07432062178850174,-0.001907329191453755,-0.07207758724689484,0.003142718691378832,-0.028804713860154152,0.013192709535360336,0.06064703315496445,0.00026679373695515096,-0.03450880944728851,-0.054530635476112366,-0.0206490159034729,0.03059236891567707,-0.054452814161777496,0.039020560681819916,0.07755352556705475,-0.012658997438848019,-0.02779410593211651,-0.013446571305394173,-0.026248019188642502,0.006434260867536068,-0.041002288460731506,-0.09355223923921585,-0.05357326194643974,-0.07204987853765488,-0.0074262176640331745,-0.03735049068927765,0.027924148365855217,-0.01013239100575447,-0.04353674501180649,-0.01909026876091957,-0.020134977996349335,0.1251850724220276,-0.010826963931322098,-0.0034542311914265156,0.09793763607740402,0.12801627814769745,0.0013883751817047596,0.02768450416624546,-0.08205179125070572,-0.0049917688593268394,0.06392325460910797,-0.0032923005055636168,-0.0345514751970768,0.04181423410773277,-0.053017403930425644,-0.011576691642403603,2.2398311605879052e-35,0.01599743962287903,0.04040393605828285,-0.040519412606954575,0.033259253948926926,0.062324125319719315,-0.13814015686511993,-0.03941904380917549,-0.04073595255613327,-0.027070268988609314,-0.00982593558728695,-0.057415008544921875,-0.009438709355890751,0.019694479182362556,0.024943621829152107,-0.02971796691417694,-0.001990673830732703,-0.01751532405614853,0.02568695694208145,-0.023774446919560432,0.01585574634373188,-0.0451296903192997,-0.01750539429485798,-0.06623855233192444,0.011128981597721577,-0.01309618167579174,0.01632578857243061,0.027985796332359314,0.04802270978689194,0.004128778353333473,-0.04352695494890213,0.07874000072479248,0.02180488221347332,0.006256589666008949,-0.03445323184132576,0.018496694043278694,0.05651487782597542,0.02295783720910549,-0.05393609032034874,0.004375639371573925,-0.002691603032872081,0.042981892824172974,0.0046340664848685265,0.013172756880521774,0.0788067951798439,-0.064705029129982,-0.016609473153948784,0.048619769513607025,0.016220640391111374,0.0026733099948614836,-0.0015983645571395755,-0.07782124727964401,-0.05686897039413452,0.02447069063782692,0.02072462998330593,0.03424994647502899,0.04456273466348648,-0.03743170201778412,-0.13701562583446503,0.11972398310899734,-0.0718226209282875,0.05028148740530014,0.05704358220100403,-0.1329788714647293,-0.0391152948141098,-0.04871218651533127,-0.029990559443831444,0.012218903750181198,0.04928688704967499,-0.1131005585193634,0.044025104492902756,0.09207382798194885,-0.030109426006674767,-0.06866592168807983,-0.005305244121700525,0.049492448568344116,0.06109903007745743,-0.0785684809088707,0.041829630732536316,-0.005100310780107975,0.011461814865469933,0.051995228976011276,-0.05968817323446274,0.006680427584797144,-0.04128475487232208,0.06734011322259903,-0.006382032763212919,0.07564451545476913,0.07231926172971725,0.06743213534355164,-0.07342393696308136,0.015089270658791065,-0.05900963395833969,0.1295715719461441,-0.0875280424952507,-0.073692686855793,-3.634560030718603e-8,0.03222355619072914,0.036874666810035706,0.010893930681049824,-0.0642317533493042,-0.030674677342176437,-0.09084881097078323,0.08947698771953583,0.06241850182414055,-0.0431673526763916,0.1347658485174179,-0.08005069941282272,0.053066231310367584,0.036466337740421295,-0.03930550441145897,0.12157952040433884,0.001361439353786409,0.019686417654156685,0.011757995933294296,-0.05147446319460869,-0.04988287761807442,0.0019849364180117846,-0.016089824959635735,0.053225334733724594,-0.035493455827236176,0.004467861261218786,0.07363682240247726,0.010033641941845417,-0.03836307302117348,-0.015184296295046806,0.10183322429656982,0.0026582987047731876,0.0417957566678524,-0.004047449212521315,-0.001275804010219872,-0.03818124160170555,-0.054746292531490326,0.09289136528968811,-0.02026371844112873,-0.039943765848875046,-0.02996884472668171,0.02215840108692646,0.06810875236988068,0.017193786799907684,0.05338800698518753,0.06371438503265381,0.012892978265881538,-0.033915311098098755,0.010292916558682919,0.005227282177656889,-0.06921155005693436,0.049085959792137146,-0.06301211565732956,-0.016230834648013115,0.04669306054711342,0.04810834676027298,-0.03699193894863129,-0.006945993285626173,0.06483899801969528,-0.08294399827718735,0.01151280477643013,0.08981825411319733,-0.0059358649887144566,-0.04580551013350487,-0.0772009938955307]},{"text":"The day of my departure at length arrived.","book":"1984","chapter":20,"embedding":[0.05977891385555267,0.0964612066745758,0.06865549832582474,0.06205373629927635,0.05556882545351982,-0.0409868098795414,0.0327535979449749,-0.0289410762488842,-0.0035268347710371017,-0.049430958926677704,0.03500506654381752,0.04239815101027489,-0.03344835713505745,-0.005913582164794207,0.0027008666656911373,-0.0591803714632988,-0.011263387277722359,-0.10219015181064606,-0.061459723860025406,0.004568091593682766,-0.04149997979402542,0.041841715574264526,-0.05624181777238846,0.10074184089899063,0.013742218725383282,0.07436934113502502,-0.0044182115234434605,0.0010523725068196654,0.049720875918865204,-0.09405721724033356,-0.08472585678100586,-0.02824275568127632,-0.005717016290873289,0.03832541033625603,0.009133369661867619,-0.01917715184390545,0.051209598779678345,-0.10348369926214218,0.09288032352924347,-0.03379330784082413,0.023152027279138565,-0.062400247901678085,0.09158255904912949,0.11134154349565506,0.012220118194818497,-0.017845069989562035,0.038303814828395844,0.021738385781645775,0.017529889941215515,0.09241954237222672,0.0018509260844439268,0.004798439797013998,-0.025145698338747025,0.01371009647846222,-0.03307420387864113,0.0812147855758667,0.03839270398020744,-0.07043052464723587,-0.009493038058280945,0.021121475845575333,-0.11827611923217773,0.022376615554094315,-0.06222017854452133,0.043357692658901215,-0.08487532287836075,-0.022483794018626213,-0.026430658996105194,-0.07315017282962799,0.06084519252181053,0.007194606587290764,-0.05190898850560188,-0.0260520838201046,-0.03399847075343132,0.12159908562898636,0.014627725817263126,-0.06467128545045853,0.060321204364299774,0.0327485054731369,0.00018302330863662064,-0.0203000009059906,-0.0027485336177051067,0.03933531045913696,-0.00473045464605093,0.09326542168855667,0.053518373519182205,-0.0492292083799839,0.04018672928214073,0.1151750460267067,0.037323419004678726,-0.026235371828079224,0.03383331373333931,-0.03952507674694061,-0.05666223540902138,0.03199317306280136,-0.07951541244983673,-0.12418574094772339,-0.029352623969316483,0.04181412607431412,0.08113310486078262,0.057014547288417816,0.07103729248046875,0.06638707220554352,-0.0750601515173912,0.017636414617300034,0.016398167237639427,-0.03130343556404114,-0.07977037131786346,-0.033887747675180435,-0.02162814326584339,-0.05725976824760437,-0.011792164295911789,0.03284972533583641,0.05203723907470703,0.006074376869946718,0.020511973649263382,0.07230985164642334,-0.10533777624368668,0.08714807778596878,0.05056695267558098,0.010132079012691975,-0.004384876694530249,0.03829751908779144,-0.004235283005982637,-0.006757804192602634,-0.11574551463127136,0.02009579725563526,0.14464622735977173,-4.887590165335897e-33,-0.054719846695661545,0.003862921614199877,0.007821459323167801,0.04064673185348511,0.06650608032941818,-0.04444687440991402,-0.1333344578742981,-0.014484106563031673,-0.011698135174810886,-0.04772728309035301,-0.039447128772735596,-0.03871007636189461,0.025967411696910858,-0.0945344790816307,-0.07540809363126755,0.016560396179556847,0.02541438490152359,0.05911775678396225,0.020681770518422127,0.05967070907354355,0.029489340260624886,-0.08856972306966782,-0.021054433658719063,0.038610875606536865,0.05661341920495033,-0.03680664300918579,-0.0769459456205368,0.006676483899354935,-0.04075660556554794,0.017886560410261154,0.03551863506436348,0.003221135353669524,0.06702563166618347,0.011318354867398739,0.027620820328593254,0.0004419009492266923,0.026386436074972153,-0.0880429670214653,-0.03128140792250633,-0.0077504380606114864,0.0034698417875915766,-0.05724446102976799,-0.0008083365391939878,-0.004222256131470203,-0.026011426001787186,0.025476429611444473,0.0034263664856553078,0.0009863593149930239,0.04125528410077095,0.021701514720916748,-0.08834318071603775,-0.02464318834245205,0.0956573411822319,-0.03450856730341911,-0.047267843037843704,-0.006451265420764685,0.013033249415457249,-0.01627458818256855,-0.011653848923742771,0.029949607327580452,0.002338073216378689,0.03957877308130264,0.020828574895858765,-0.012679623439908028,0.012332997284829617,-0.11035723984241486,-0.0440128892660141,-0.04996727779507637,0.053957197815179825,-0.03955736383795738,0.02173698879778385,0.0022895964793860912,0.045791033655405045,-0.029683075845241547,-0.0038154982030391693,-0.04006033018231392,-0.028378456830978394,-0.02898442931473255,0.009927676059305668,-0.022825801745057106,0.026063993573188782,0.09744692593812943,-0.03493811562657356,-0.02903279848396778,0.13594384491443634,0.05673844739794731,0.02906063199043274,-0.10765533149242401,-0.04739004001021385,0.002671221736818552,-0.08385397493839264,0.01070395763963461,0.060497090220451355,-0.027929315343499184,-0.007713679689913988,2.454721486329834e-33,0.07604262232780457,-0.03550530970096588,-0.03456011041998863,0.039510782808065414,0.03491894528269768,-0.019540410488843918,0.022647719830274582,0.1523464173078537,-0.07911106944084167,0.07541755586862564,0.0010701698483899236,0.043335940688848495,0.008372343145310879,-0.026872694492340088,-0.006788416299968958,-0.029911698773503304,0.08720667660236359,-0.036620959639549255,0.044033799320459366,0.07495559751987457,-0.00481431046500802,-0.04654909670352936,-0.012025942094624043,-0.057264164090156555,0.042180124670267105,0.05747390538454056,0.09341942518949509,-0.009688111953437328,-0.12559185922145844,-0.04216468334197998,-0.01907583512365818,0.040755078196525574,-0.0708424299955368,0.01670343428850174,-0.01486381608992815,0.057561010122299194,0.031726766377687454,0.008541053161025047,0.027923306450247765,0.04825706407427788,-0.08989890664815903,0.004821082577109337,0.07990597933530807,0.04851977527141571,-0.011447779834270477,0.013100027106702328,-0.053345438092947006,0.022907525300979614,-0.007184284273535013,0.04055055230855942,-0.01589267887175083,0.046513862907886505,0.00913098081946373,0.047677215188741684,0.025844266638159752,-0.006521826609969139,-0.02635580487549305,-0.07504548877477646,0.049368392676115036,-0.011715688742697239,-0.08878803998231888,-0.04228915646672249,-0.021552640944719315,-0.02952345833182335,0.04251947999000549,-0.1119418665766716,0.05165592208504677,0.07936430722475052,0.014634216204285622,0.01528352964669466,-0.04785730317234993,-0.015903934836387634,-0.10755221545696259,0.07953441143035889,-0.049008049070835114,-0.04404114931821823,0.009009836241602898,0.011673660948872566,-0.052418023347854614,0.044815585017204285,-0.01830984465777874,-0.04287666827440262,-0.02644718810915947,-0.009737835265696049,-0.010827990248799324,-0.08493147790431976,0.030841032043099403,0.009317063726484776,0.042322684079408646,0.010574156418442726,0.08811044692993164,0.012133478187024593,-0.010786539874970913,0.005310354754328728,-0.04536735266447067,-1.680039929397026e-8,0.02089463546872139,0.015239166095852852,0.013822992332279682,-0.010223804973065853,0.1019093245267868,-0.03965152055025101,0.03076694905757904,0.01751174032688141,-0.042092252522706985,0.000716725888196379,0.01831803098320961,-0.0015566778602078557,-0.000029988965252414346,0.04052712023258209,0.03653819486498833,-0.004915556870400906,-0.015531724318861961,-0.06031191349029541,0.007172467652708292,-0.06551047414541245,-0.03156233951449394,0.048371076583862305,-0.0023404282983392477,-0.07899056375026703,0.011748661287128925,0.03607303276658058,-0.019891837611794472,0.06836150586605072,0.02261068858206272,-0.02944621630012989,-0.009274471551179886,0.07758418470621109,-0.08227497339248657,-0.07046902179718018,-0.08837749063968658,0.018092580139636993,0.0017049075104296207,-0.05397960543632507,0.08845386654138565,-0.0031276734080165625,0.024846117943525314,0.053194593638181686,0.031683262437582016,0.03404100984334946,0.0016898497706279159,-0.0008652505930513144,-0.023586168885231018,0.021069958806037903,-0.047715961933135986,-0.023745493963360786,-0.0007560476078651845,-0.032830823212862015,0.01108884159475565,0.09050419181585312,0.014362922869622707,0.014855137094855309,-0.02432786300778389,-0.05521460250020027,0.0011958387913182378,0.03559266775846481,-0.03328899294137955,0.047199591994285583,-0.14373266696929932,-0.03977050259709358]},{"text":"Such were my reflections as I commenced my journey; but as I proceeded, my spirits and hopes rose.","book":"1984","chapter":21,"embedding":[0.017458535730838776,0.030785107985138893,0.07905430346727371,0.014062541536986828,0.01576092839241028,0.012580732814967632,0.04222392290830612,-0.05464308336377144,0.015332707203924656,-0.07318445295095444,-0.02549377642571926,0.06680061668157578,-0.0008197488496080041,-0.025529418140649796,0.02292924001812935,0.06709996610879898,-0.02693616971373558,-0.030112359672784805,-0.02811124175786972,0.04973999038338661,0.009602190926671028,0.03313947096467018,-0.058333612978458405,0.01342073269188404,-0.01790907047688961,-0.014003646560013294,-0.01873544231057167,-0.010455816052854061,0.0708584114909172,0.003755640471354127,-0.04271896556019783,0.006563139148056507,-0.030957547947764397,0.00787687860429287,0.05094581097364426,0.10159952938556671,-0.06232508644461632,-0.04364043101668358,0.040834516286849976,-0.03418772667646408,0.04955442249774933,-0.031970225274562836,0.021379658952355385,0.07545796036720276,0.023311298340559006,-0.09419593214988708,0.0412595272064209,-0.0131168682128191,0.03578130155801773,-0.043528709560632706,-0.06842674314975739,-0.06586737185716629,-0.027999544516205788,-0.05988220497965813,-0.02989528328180313,0.04576770216226578,-0.012772451154887676,-0.0006044236361049116,0.045021042227745056,-0.04472564533352852,-0.05505320802330971,-0.012331703677773476,0.01554601825773716,-0.011009830981492996,0.02879546768963337,-0.009371373802423477,-0.013323944061994553,0.03344791382551193,0.0019362856401130557,0.06069709733128548,-0.056029800325632095,0.02586553990840912,0.07146140187978745,0.06519658863544464,-0.011583452112972736,-0.006308689247816801,-0.0072733741253614426,-0.06557752937078476,-0.0648527443408966,0.01595720276236534,-0.03181968629360199,-0.007419045548886061,0.0005441909888759255,0.013452271930873394,-0.07184790074825287,-0.05180133506655693,0.011477882973849773,0.005336681846529245,0.09714748710393906,0.05543914809823036,-0.007364664692431688,-0.08114725351333618,-0.08574720472097397,0.03464938700199127,-0.019983800128102303,-0.033440303057432175,-0.01003629993647337,-0.03774973005056381,0.0572299100458622,0.048262421041727066,0.04800177365541458,0.027288174256682396,0.0024476468097418547,-0.0003892583481501788,-0.03194812312722206,-0.035906437784433365,-0.0857262909412384,0.003414181061089039,-0.025074871256947517,-0.010776433162391186,0.007005889900028706,-0.040831297636032104,-0.0012429788475856185,0.02634081244468689,0.026812734082341194,0.07898148894309998,-0.07815351337194443,-0.029657967388629913,-0.05539952963590622,0.06775207817554474,0.05788310244679451,0.08126888424158096,0.08515910804271698,0.010752509348094463,-0.031465694308280945,-0.10032209008932114,0.050587140023708344,-6.373753714085099e-33,0.028495682403445244,0.03264232724905014,0.026508493348956108,0.09006193280220032,0.05204770341515541,-0.029769904911518097,-0.06760966777801514,-0.0010482233483344316,-0.022669591009616852,-0.13618524372577667,-0.026377130299806595,0.11842475831508636,0.044930752366781235,-0.023008428514003754,-0.08345071226358414,-0.03898720070719719,-0.043914925307035446,0.03113739565014839,0.05984701216220856,-0.00509949866682291,-0.047170452773571014,-0.02668842300772667,-0.02671886421740055,-0.05075594410300255,-0.0004631334450095892,-0.06230803579092026,-0.043217942118644714,-0.0032652211375534534,0.015889378264546394,0.04383464157581329,0.015677466988563538,0.039838992059230804,0.026065213605761528,-0.02862498164176941,0.00869901292026043,0.10882479697465897,-0.04499533772468567,-0.027294041588902473,0.0022825205232948065,-0.03262589871883392,-0.022702636197209358,-0.008463100530207157,0.0680827647447586,-0.03303476795554161,-0.026111332699656487,-0.017191557213664055,-0.05447523295879364,0.05550960451364517,-0.046497996896505356,0.027944840490818024,-0.07053466141223907,-0.048319704830646515,0.05173758417367935,-0.04873575270175934,-0.013754055835306644,-0.013790413737297058,-0.020694449543952942,0.09934848546981812,0.02541964128613472,-0.06121169775724411,0.00020481081446632743,-0.0450747050344944,0.014602643437683582,-0.04555860534310341,-0.007107039913535118,-0.00035131184267811477,-0.020549986511468887,-0.06914065033197403,-0.014423532411456108,0.03873260319232941,-0.07935484498739243,-0.010903277434408665,-0.02427324280142784,-0.03237871453166008,0.009114031679928303,-0.0017538887914270163,-0.08541825413703918,-0.03484703600406647,0.019483236595988274,0.037732888013124466,-0.027371982112526894,0.008518887683749199,-0.13566797971725464,0.0013635692885145545,0.18437473475933075,-0.02131284400820732,0.060530927032232285,-0.1841420978307724,-0.08470071107149124,0.033394359052181244,-0.011660626158118248,0.09675588458776474,0.08145823329687119,-0.07913503795862198,-0.04894692450761795,2.949704525045837e-33,0.12557050585746765,-0.0008423554245382547,0.0720798671245575,0.09236583113670349,0.0098875118419528,-0.07210711389780045,0.030414938926696777,0.05316993221640587,-0.011932828463613987,0.0958816409111023,-0.0007474281010217965,0.014677098020911217,0.013645440340042114,0.022909780964255333,-0.14265894889831543,-0.04984205216169357,0.10539547353982925,0.059791795909404755,0.028514482080936432,-0.013598927296698093,-0.029139744117856026,0.0920000746846199,-0.03304286673665047,-0.026916200295090675,-0.0383111909031868,0.048506125807762146,0.1488509625196457,-0.03580491989850998,-0.05073147267103195,-0.004301415290683508,0.09322268515825272,0.009282311424612999,-0.09407094120979309,0.028173508122563362,0.009759205393493176,0.1015959084033966,0.032711803913116455,0.0026812879368662834,-0.045789219439029694,-0.05369533225893974,-0.04165228456258774,-0.041596874594688416,0.05959418788552284,-0.007192107383161783,-0.01866891421377659,-0.05457816645503044,0.02799963392317295,0.05806432291865349,-0.013034464791417122,-0.022578639909625053,-0.015437988564372063,-0.0030967488419264555,0.016392230987548828,-0.005143464542925358,-0.003866280196234584,-0.021459879353642464,0.03314659371972084,-0.03093980997800827,0.05510830506682396,-0.02530936896800995,-0.05578562617301941,0.00841783918440342,-0.06944644451141357,-0.029930604621767998,0.022909052670001984,-0.1022261306643486,-0.012883833609521389,0.037182506173849106,-0.08005807548761368,0.011369901709258556,-0.023353025317192078,-0.02703586407005787,-0.06002897024154663,0.0760590136051178,0.020327605307102203,-0.07288458943367004,0.03902105614542961,-0.00785598810762167,-0.007935789413750172,-0.01887192577123642,-0.02469509094953537,-0.005072419531643391,0.019373822957277298,0.06342139840126038,0.04265734553337097,-0.030622176826000214,-0.06343233585357666,0.004315282683819532,0.02765190601348877,0.0321037583053112,0.039631545543670654,0.01690639555454254,0.07047048211097717,-0.041923414915800095,-0.024686075747013092,-2.3492603418162616e-8,-0.05075111985206604,-0.02297743782401085,0.040681611746549606,0.06618230789899826,0.04851621016860008,0.05590325593948364,0.08424896001815796,-0.01192533876746893,-0.11565691977739334,0.008153848350048065,-0.016334371641278267,0.059146635234355927,0.026333564892411232,0.03881838172674179,0.12171825021505356,-0.03112179785966873,0.013205151073634624,-0.048451609909534454,-0.012211023829877377,-0.0392606183886528,0.022442642599344254,0.015119564719498158,-0.008337578736245632,-0.09305784851312637,0.015081774443387985,0.029218297451734543,-0.07290399819612503,-0.06174139678478241,-0.048527710139751434,0.037750400602817535,0.05644185468554497,0.050117019563913345,-0.037605609744787216,-0.010486561805009842,-0.07621310651302338,0.013574830256402493,0.011035696603357792,-0.014661885797977448,0.08377892524003983,-0.04106750711798668,0.012951605953276157,0.04860446974635124,0.07743498682975769,0.0023595793172717094,-0.013737599365413189,-0.030048171058297157,0.05952218919992447,0.07797417789697647,-0.03227434307336807,-0.04294739291071892,0.036139536648988724,-0.015801796689629555,0.06351765990257263,0.05005430057644844,0.04131079092621803,-0.023533210158348083,-0.021356917917728424,0.016751829534769058,-0.05578654259443283,0.01897890865802765,0.17866480350494385,-0.006813381798565388,-0.0619259811937809,-0.07278206199407578]},{"text":"He asked me several questions concerning my progress in the different branches of science appertaining to natural philosophy.","book":"1984","chapter":21,"embedding":[0.06800013780593872,0.04917095601558685,-0.006033136043697596,-0.012108353897929192,0.01441767904907465,-0.03725903108716011,0.015990138053894043,0.03908057138323784,-0.08706797659397125,-0.012209597043693066,-0.07500914484262466,-0.02441011182963848,-0.0914788767695427,-0.00288755283690989,-0.023630522191524506,0.05393914133310318,-0.06723963469266891,-0.06017957627773285,-0.08357012271881104,-0.0036865375004708767,-0.03891879692673683,0.09598512947559357,0.06909133493900299,-0.011489029042422771,-0.02263282611966133,-0.041564811021089554,-0.0017815324245020747,-0.024208808317780495,0.07837637513875961,0.0027362308464944363,0.01587621122598648,0.05434765666723251,-0.017316920682787895,-0.005537610035389662,0.013642172329127789,-0.01992107555270195,-0.030474578961730003,0.09268829971551895,0.011146850883960724,0.029654836282134056,-0.010536366142332554,-0.019813308492302895,0.0329461507499218,-0.005371056031435728,-0.014245827682316303,-0.05022350698709488,-0.027403440326452255,-0.06637485325336456,0.05075556039810181,-0.04429369419813156,-0.07125184684991837,-0.0863727256655693,-0.11050958186388016,0.022841017693281174,-0.010254595428705215,0.11962100118398666,0.028741493821144104,0.034286584705114365,-0.03292283043265343,-0.04151751473546028,0.03187532350420952,-0.04876028746366501,-0.10104329884052277,0.1091298907995224,0.04186231642961502,0.015503304079174995,-0.04880474880337715,0.019035333767533302,0.03787846490740776,-0.014618143439292908,-0.026593217626214027,0.008389693684875965,0.01948464661836624,0.030721306800842285,-0.010869670659303665,-0.0344465896487236,0.00999170821160078,0.043575599789619446,0.008894945494830608,-0.057594384998083115,-0.05687964707612991,0.008457951247692108,-0.05712981894612312,-0.03733861446380615,0.004750590305775404,-0.004847926087677479,0.0367773063480854,0.0009547007502987981,-0.06796517968177795,0.07869255542755127,0.1094077005982399,-0.0054468573071062565,0.00253296154551208,0.023547573015093803,-0.04969446733593941,0.11221899837255478,-0.0572945699095726,0.005814627278596163,0.01621375046670437,0.009290243498980999,0.042711708694696426,0.030727839097380638,-0.00009060987213160843,0.04795519635081291,-0.034326449036598206,0.04245319589972496,-0.00922129675745964,-0.02025991678237915,0.0508783720433712,0.03948548063635826,-0.035515155643224716,0.00045442007831297815,-0.007136689033359289,0.012446518987417221,0.032888490706682205,0.03653538599610329,0.09450027346611023,0.07109928131103516,-0.038376644253730774,-0.07167229801416397,-0.047005269676446915,0.05899820849299431,-0.00827531423419714,-0.01580614224076271,-0.012113356031477451,-0.08450224995613098,0.014866281300783157,-1.5377986993125057e-33,0.0613245889544487,-0.02766147442162037,0.06757038831710815,0.060356222093105316,-0.04013143107295036,0.09180863946676254,-0.051841042935848236,-0.025528449565172195,0.03182235732674599,-0.04696941748261452,0.08517605811357498,0.08924500644207001,0.04733544960618019,0.0028724202420562506,-0.0631733238697052,0.03387551009654999,0.024809472262859344,-0.05020252987742424,0.011202739551663399,-0.04347383603453636,-0.0027740015648305416,-0.08292416483163834,-0.034277740865945816,-0.017302140593528748,0.1162535771727562,-0.0009777219966053963,0.07268977910280228,-0.012245578691363335,0.03341800346970558,0.012391817755997181,-0.0702785775065422,0.061367012560367584,-0.1678803563117981,0.02567804791033268,0.06460695713758469,0.042983729392290115,0.02671632170677185,-0.03783264756202698,-0.01636430248618126,-0.059304412454366684,0.05482817813754082,0.004110525827854872,0.034245334565639496,-0.030006544664502144,-0.01599225588142872,0.0018625218654051423,0.0360790379345417,-0.0051133893430233,-0.008669795468449593,0.05530685931444168,-0.029384560883045197,-0.08176688849925995,0.031784459948539734,-0.044614728540182114,0.06520451605319977,-0.010865787044167519,-0.05582160875201225,0.022653477266430855,-0.007758426479995251,0.013101357035338879,-0.0330197848379612,0.03115643747150898,-0.015902312472462654,0.030407344922423363,-0.05667045712471008,-0.02570721134543419,-0.1466204971075058,-0.03142976015806198,0.08160725235939026,0.0036931922659277916,-0.06468343734741211,0.009010390378534794,-0.03183817118406296,-0.04503142088651657,-0.00662384694442153,-0.02983393520116806,-0.1590481698513031,0.0015270038275048137,-0.03921059891581535,0.029241858050227165,-0.04487784206867218,-0.010765889659523964,-0.085161492228508,-0.018897609785199165,0.023824002593755722,0.04941705986857414,0.03736529126763344,0.03089217096567154,0.10228520631790161,-0.054503656923770905,-0.020791156217455864,0.042215339839458466,0.03573455661535263,-0.02688203565776348,-0.06026299670338631,-1.1703975726210152e-33,-0.01624498888850212,-0.0477108359336853,-0.017772149294614792,0.08806132525205612,0.06247425079345703,-0.036961425095796585,-0.1576944887638092,0.055094845592975616,0.014963947236537933,-0.0769430622458458,0.05837377905845642,0.13502532243728638,-0.005336703732609749,-0.03240649774670601,-0.03346044942736626,-0.009899899363517761,-0.06955434381961823,-0.031710732728242874,-0.01689026691019535,-0.030960064381361008,-0.06371251493692398,0.1359046846628189,-0.08619621396064758,-0.07237228006124496,-0.023791931569576263,0.042940426617860794,0.06752661615610123,0.00838196650147438,0.04674610495567322,-0.0123347919434309,0.002439293544739485,0.011052006855607033,-0.10197491943836212,0.007318120449781418,-0.021829882636666298,0.05785570293664932,0.05453456938266754,-0.009590907953679562,0.0328858308494091,0.01387204322963953,0.021283240988850594,0.08381885290145874,0.009928476065397263,-0.029161540791392326,-0.0038466649129986763,-0.04820501059293747,0.024506162852048874,0.03332629054784775,-0.09955429285764694,0.05477648973464966,0.019044624641537666,-0.0060393172316253185,0.057682380080223083,-0.06374069303274155,0.055174246430397034,0.029405396431684494,0.030149439349770546,0.018033858388662338,0.001833082758821547,-0.02935951203107834,0.037668343633413315,0.07075934112071991,0.06496472656726837,-0.011998243629932404,-0.002301182132214308,0.017323190346360207,-0.06752196699380875,0.038455694913864136,0.0020443855319172144,0.011854843236505985,-0.04145708680152893,0.04363482818007469,0.027593107894062996,0.005333843640983105,0.05644914507865906,0.01683926396071911,0.032112006098032,-0.07655611634254456,0.01847037859261036,-0.0045250472612679005,0.008615312166512012,-0.06932984292507172,0.027904747053980827,0.04910256341099739,-0.027276331558823586,-0.08803301304578781,-0.08025867491960526,-0.03680882602930069,0.06977492570877075,-0.029398653656244278,0.02648121677339077,-0.03466687723994255,-0.04043864458799362,0.032582685351371765,0.007560925558209419,-2.348062722035138e-8,0.030797017738223076,0.0059394193813204765,-0.010111721232533455,0.053481921553611755,0.05854891985654831,0.06031280755996704,-0.06603344529867172,-0.009231587871909142,-0.08487126976251602,-0.03149325028061867,-0.028433438390493393,0.045989084988832474,-0.02156541496515274,0.08540652692317963,0.06163812056183815,-0.07215988636016846,0.11173927038908005,-0.018751611933112144,-0.03764519840478897,-0.045399751514196396,0.08462368696928024,0.0663834735751152,-0.015502762980759144,0.04437169432640076,0.0011125544551759958,0.047687578946352005,0.08284846693277359,0.03946954011917114,-0.029765021055936813,-0.02710905484855175,0.03564689680933952,0.06588980555534363,-0.06364463269710541,0.0017458876827731729,0.0497906431555748,-0.03801669180393219,-0.039817288517951965,-0.04375616833567619,0.04990418255329132,-0.04568354785442352,-0.0027992366813123226,0.014856568537652493,0.053247544914484024,0.08015984296798706,-0.045443158596754074,-0.08670058846473694,0.04732051119208336,0.02000192366540432,-0.040770433843135834,0.015165573917329311,-0.08661425858736038,0.05646345019340515,0.027171330526471138,-0.06542318314313889,-0.003107947064563632,0.006126180291175842,-0.001710229436866939,-0.004490202758461237,-0.15734225511550903,-0.057085324078798294,0.05826569348573685,-0.02073821611702442,-0.06363247334957123,-0.04649446904659271]},{"text":"In rather a too philosophical and connected a strain, perhaps, I have given an account of the conclusions I had come to concerning them in my early years.","book":"1984","chapter":22,"embedding":[-0.05630356818437576,0.002873210934922099,-0.043331824243068695,0.07171841710805893,0.025691058486700058,0.01332426629960537,-0.054802291095256805,0.06923969835042953,0.04301568493247032,0.0026951259933412075,0.007147579453885555,0.027391599491238594,-0.03675707429647446,0.017987875267863274,-0.0127197140827775,0.022698363289237022,-0.05555000156164169,-0.07748259603977203,0.016762712970376015,0.05193296819925308,-0.06469914317131042,0.0011449727462604642,-0.020153632387518883,0.03566170483827591,-0.009751711040735245,0.028455927968025208,0.021286170929670334,0.02698812261223793,-0.035079196095466614,-0.03207707777619362,-0.045009635388851166,0.05247765779495239,-0.06376822292804718,-0.06472291052341461,0.029174555093050003,0.06676674634218216,0.04386332258582115,0.041483793407678604,0.044538263231515884,-0.04084404930472374,0.04923706874251366,0.03728543594479561,0.05061764642596245,0.001981420675292611,-0.04306495189666748,-0.06958631426095963,0.018308773636817932,-0.003874642075970769,-0.0633225068449974,-0.04963376373052597,-0.000281717861071229,-0.006240324582904577,0.015317044220864773,0.0019016716396436095,-0.04297976568341255,-0.0018629309488460422,-0.030344072729349136,0.039219219237565994,-0.023120904341340065,0.0067683677189052105,0.01870289258658886,-0.04251984506845474,-0.05564500391483307,0.0401594378054142,0.014662416651844978,0.09724977612495422,-0.03219231218099594,0.04374360665678978,-0.061690669506788254,0.04258079454302788,-0.05915318429470062,0.027082551270723343,-0.012038019485771656,0.018636180087924004,0.011996107175946236,-0.03054271824657917,0.03742878884077072,-0.00475597009062767,-0.007760168053209782,-0.07796328514814377,-0.031705692410469055,0.10410923510789871,0.021834632381796837,-0.04590532183647156,-0.0009407055331394076,-0.02947850152850151,0.03279786929488182,-0.01467430405318737,0.0031825299374759197,0.06060316041111946,0.04479410871863365,-0.0527816079556942,0.03001188300549984,0.04259255528450012,0.10603863000869751,0.036032285541296005,-0.06060469150543213,0.04873909056186676,0.09399022161960602,0.025023972615599632,0.02863660641014576,0.023001357913017273,-0.016448281705379486,0.065604068338871,0.08118521422147751,-0.05386078357696533,-0.07603292167186737,-0.06309658288955688,0.003537660464644432,-0.04254433885216713,-0.02314327470958233,-0.00701558031141758,0.04391220584511757,-0.0009318163502030075,0.038795847445726395,-0.05148458853363991,0.018640903756022453,0.08947940915822983,-0.027841370552778244,-0.0058184340596199036,-0.011545146815478802,0.033805109560489655,-0.006375084165483713,0.03860054537653923,-0.00627765990793705,-0.01385845709592104,-0.15481866896152496,-4.691633787685883e-33,0.009632461704313755,-0.014171860180795193,-0.04067893326282501,0.10985210537910461,-0.030985314399003983,0.02159527875483036,-0.09317399561405182,0.026075895875692368,0.08885374665260315,-0.03297439590096474,0.03235233947634697,0.06310566514730453,0.03172718733549118,-0.08692993223667145,-0.020306821912527084,0.05579804256558418,-0.09508277475833893,0.0396420955657959,0.048100944608449936,-0.02912726067006588,-0.03881463035941124,0.016590511426329613,0.017500925809144974,-0.050352793186903,0.026348216459155083,-0.01835564710199833,0.0364416278898716,0.006327348295599222,-0.05320604518055916,0.010633186437189579,0.012095261365175247,0.05911880359053612,-0.023511067032814026,0.03476710617542267,-0.027483323588967323,0.10996474325656891,0.005934746935963631,-0.08545909076929092,-0.0025407366920262575,-0.03447515517473221,0.0033425460569560528,0.01760726422071457,0.005758342333137989,0.005773300305008888,0.06582432240247726,0.015005051158368587,-0.015076776035130024,-0.020354656502604485,-0.13685943186283112,-0.01852826401591301,-0.06583523005247116,0.011228777468204498,0.014009576290845871,-0.0522012896835804,0.010893713682889938,-0.03269730508327484,-0.07688091695308685,0.06108517944812775,0.0037220201920717955,-0.034671057015657425,0.015282178297638893,0.05639854446053505,-0.06563989073038101,-0.07243486493825912,-0.01989925093948841,0.06806162744760513,-0.0682467669248581,0.00345377204939723,-0.026670994237065315,0.036271125078201294,-0.0701054185628891,-0.002751581370830536,-0.037653639912605286,0.02496262639760971,-0.019300231710076332,-0.03453274816274643,-0.11592265218496323,-0.03142281621694565,-0.03919805958867073,0.007520074490457773,0.04777383431792259,-0.05530708283185959,-0.026576880365610123,0.043901510536670685,-0.035440389066934586,0.024724576622247696,0.07800756394863129,-0.025586463510990143,0.07781992107629776,-0.040135543793439865,-0.03427601233124733,0.025694098323583603,0.07585318386554718,-0.07495930790901184,-0.09835200756788254,1.8390555854026916e-33,-0.03187013417482376,-0.03582768887281418,-0.038534656167030334,0.03457295894622803,0.007024678867310286,-0.002624146407470107,-0.06297697871923447,0.029739810153841972,-0.04222407937049866,-0.030493389815092087,0.030220841988921165,0.011021479032933712,-0.04906543344259262,-0.010489682666957378,-0.002397810807451606,-0.08835595846176147,-0.04072539880871773,-0.05222741886973381,0.0074554202146828175,-0.0786740779876709,-0.011556435376405716,0.06661820411682129,-0.07910910993814468,-0.09821583330631256,0.05382699519395828,0.04806221276521683,0.12693479657173157,-0.09873484820127487,-0.08041968941688538,-0.020791014656424522,0.009625857695937157,0.04069714993238449,-0.06329065561294556,-0.06594718247652054,0.03359951078891754,0.1044163629412651,0.034382130950689316,-0.015452542342245579,0.005941658280789852,-0.118893101811409,-0.06682238727807999,0.03443979471921921,0.023871442303061485,0.008215193636715412,-0.043436627835035324,-0.07143551111221313,0.009382764808833599,0.07442884892225266,-0.0037482897751033306,0.02252635546028614,-0.04718589037656784,0.06514598429203033,-0.0046892850659787655,-0.08414121717214584,-0.05801716074347496,-0.02589762955904007,0.09303632378578186,-0.05038456246256828,0.04274725914001465,0.01517048291862011,-0.050600744783878326,0.043379079550504684,-0.047171637415885925,-0.01430585142225027,0.026246627792716026,-0.022775083780288696,-0.053864747285842896,-0.02219834364950657,0.022330431267619133,0.005749993957579136,0.020756112411618233,-0.07679395377635956,-0.04570086672902107,0.03391402214765549,0.0639750063419342,0.05724485218524933,-0.01095890998840332,-0.031712550669908524,-0.055567417293787,0.039963498711586,0.03334268182516098,-0.03424665331840515,0.12972348928451538,0.03193923085927963,0.04207267612218857,-0.02021809294819832,-0.06191526725888252,-0.04490678757429123,0.051049694418907166,0.004319753032177687,-0.02932501956820488,-0.08200180530548096,-0.017341244965791702,-0.024996863678097725,-0.01217162050306797,-3.261514436303514e-8,0.08835484832525253,0.00508037069812417,0.08943159878253937,0.08625953644514084,0.015405354090034962,0.003210032358765602,0.004059782717376947,0.07668906450271606,-0.11224441975355148,0.036580316722393036,-0.016398265957832336,0.05246623605489731,-0.041071321815252304,0.07213467359542847,0.11572094261646271,-0.010127328336238861,0.07471517473459244,-0.05416582524776459,-0.04868597909808159,-0.00485318573191762,0.06229633092880249,0.1106787770986557,0.011081886477768421,-0.019693316891789436,-0.004080058075487614,-0.009232298471033573,-0.044952355325222015,-0.032264888286590576,-0.06865859776735306,-0.01757962629199028,0.028562266379594803,0.1137881875038147,-0.08207397162914276,-0.033019375056028366,0.004539085552096367,0.06359654664993286,-0.003973362036049366,0.022835617884993553,0.06930547207593918,-0.020733842626214027,-0.002712999703362584,0.004308472853153944,0.05362171307206154,0.12827175855636597,0.0814020186662674,-0.020689161494374275,0.02344553731381893,0.06926257163286209,-0.04793478921055794,0.010534252971410751,-0.009293228387832642,0.09792330116033554,0.10372887551784515,0.03525114431977272,0.016316702589392662,-0.03620767220854759,-0.013537359423935413,0.03278787061572075,-0.1777411848306656,0.012436999939382076,0.11531807482242584,0.02012777142226696,0.020822182297706604,-0.058311138302087784]},{"text":"Waldman, whom I had never seen, as he had hitherto been out of town.","book":"1984","chapter":23,"embedding":[0.03637842833995819,0.030423184856772423,-0.1160968467593193,0.009377097710967064,0.045582033693790436,0.08465320616960526,0.050239939242601395,0.06854123622179031,-0.025211775675415993,-0.004093151073902845,-0.0024566310457885265,-0.06821988523006439,0.06005461513996124,-0.02122773975133896,0.038486041128635406,0.0014444715343415737,0.01105295680463314,-0.0374532975256443,0.0648782029747963,-0.06654219329357147,-0.06282608211040497,0.09183726459741592,0.014848408289253712,0.041128188371658325,0.0011525021400302649,-0.044286273419857025,0.0722166895866394,-0.021957822144031525,-0.002161914948374033,0.023944459855556488,-0.0032267235219478607,-0.012429413385689259,-0.021494930610060692,0.0090018380433321,-0.016743304207921028,0.06960426270961761,-0.029394282028079033,0.015688922256231308,0.011905618011951447,-0.04481665417551994,0.06024017184972763,0.03566716983914375,0.0015644383383914828,-0.15285378694534302,-0.002726677106693387,-0.12988272309303284,0.05327342078089714,-0.005585749167948961,-0.021734466776251793,0.007216652389615774,-0.006725906860083342,-0.014222892932593822,0.019111385568976402,0.0010156910866498947,0.02265339344739914,0.03340588137507439,-0.017728816717863083,-0.06578099727630615,0.014171562157571316,0.01897621713578701,-0.022325605154037476,-0.013169224373996258,-0.021505441516637802,-0.02273349091410637,-0.0404791459441185,-0.033785440027713776,-0.08963995426893234,-0.026378829032182693,0.1107514351606369,0.040959011763334274,0.03939083218574524,0.008453032933175564,0.015862228348851204,-0.08281942456960678,-0.0670139417052269,-0.04492293298244476,0.0313778817653656,0.05995606631040573,0.037115469574928284,-0.0217333622276783,-0.020143942907452583,-0.028818335384130478,-0.01155032403767109,-0.0053328583016991615,0.022648142650723457,0.05629555508494377,0.09077227860689163,-0.02052190527319908,-0.02719561755657196,-0.022412331774830818,0.01070559024810791,0.065834641456604,-0.00981159508228302,0.025629853829741478,-0.05565991625189781,-0.13439561426639557,0.08088668435811996,0.05130842328071594,-0.05538633465766907,0.061714909970760345,-0.05130136385560036,-0.013167128898203373,0.05202513560652733,-0.04005063325166702,-0.019245442003011703,0.012585010379552841,-0.01162487268447876,-0.03827611356973648,-0.03796952962875366,-0.0016949254786595702,0.013555788435041904,0.0455746129155159,-0.042086489498615265,0.06193685531616211,0.008409279398620129,0.0016071721911430359,-0.02861967124044895,-0.05981798842549324,-0.07738962769508362,-0.002835454186424613,0.0015541580505669117,0.033677175641059875,0.001103403395973146,0.047991976141929626,0.025946296751499176,0.014031249098479748,0.07220891118049622,-1.9515248645084526e-33,0.005456702783703804,-0.05267125368118286,0.04188167303800583,-0.03314848616719246,0.03153868019580841,0.05557722598314285,-0.050974249839782715,-0.03802382946014404,0.0855480283498764,-0.019541669636964798,0.06486248224973679,-0.038589250296354294,0.01758654974400997,-0.06260209530591965,-0.023386450484395027,0.0525861494243145,0.019807539880275726,0.008817192167043686,0.0034227631986141205,-0.010357259772717953,-0.020867712795734406,0.109665147960186,-0.10112300515174866,-0.02808024175465107,-0.027090968564152718,0.09162077307701111,0.10748924314975739,-0.10678297281265259,0.019131632521748543,0.05303061380982399,-0.04019152745604515,0.01853407546877861,0.05351502448320389,0.04934533312916756,0.04684993624687195,-0.008533598855137825,-0.07497352361679077,-0.08454936742782593,-0.08483443409204483,-0.06446689367294312,-0.046370670199394226,-0.026314018294215202,-0.04255220293998718,-0.073683962225914,-0.08234032243490219,-0.018796391785144806,0.0027860139962285757,0.04320112615823746,-0.017336638644337654,-0.0322347953915596,-0.005069216247648001,0.03231345862150192,0.024626458063721657,0.04691439867019653,-0.09973479062318802,-0.044713158160448074,0.04582471027970314,0.009990623220801353,0.12658005952835083,0.06576209515333176,0.038404982537031174,0.02677767165005207,0.048202890902757645,0.031215256080031395,0.01683817245066166,-0.020960001274943352,-0.04510888457298279,-0.05961453914642334,-0.060083549469709396,0.031544920057058334,0.01808927394449711,0.01108858548104763,0.04676556587219238,0.021756509318947792,-0.038521118462085724,-0.0731041207909584,-0.003492177464067936,0.1107032299041748,-0.017914580181241035,0.05365091189742088,-0.03200339525938034,0.009061542339622974,0.025302935391664505,-0.02076815813779831,-0.03584382310509682,-0.035982903093099594,0.03354581445455551,-0.060482870787382126,-0.09578032046556473,0.08694345504045486,0.027521973475813866,-0.022264478728175163,-0.031798724085092545,-0.045728448778390884,-0.04009062424302101,-1.3979026574436645e-33,-0.07883922755718231,-0.0521833635866642,0.04440191760659218,-0.05418635904788971,0.07329129427671432,-0.031630657613277435,-0.0286369938403368,0.07089491188526154,0.012753799557685852,-0.09040287882089615,0.039068881422281265,-0.007058426272124052,-0.038675688207149506,0.03459619730710983,0.06720821559429169,0.04496712237596512,0.05361974239349365,-0.04648995026946068,-0.07776226103305817,-0.01918814890086651,0.1332942396402359,-0.11577509343624115,-0.06013871356844902,0.0005819473299197853,-0.038183171302080154,-0.005878938362002373,0.02880232036113739,0.01131120603531599,-0.16089580953121185,0.035397209227085114,-0.04667521268129349,-0.03532969951629639,-0.019443577155470848,-0.008329221978783607,-0.043513223528862,0.12222956866025925,0.015619883313775063,0.10371627658605576,-0.04051884636282921,0.00964298564940691,0.012734746560454369,-0.013968169689178467,-0.006856023799628019,0.05601057410240173,-0.014225172810256481,-0.029785340651869774,-0.0853601023554802,0.04213029891252518,-0.029544902965426445,0.04175194352865219,-0.06376512348651886,0.07100886106491089,-0.05825081840157509,-0.022279124706983566,-0.010691046714782715,0.03910621255636215,0.021997977048158646,-0.07478216290473938,0.012829888612031937,-0.020273208618164062,-0.07751303166151047,-0.017063045874238014,-0.023450735956430435,0.09677201509475708,0.010120673105120659,-0.01510579138994217,-0.019291149452328682,-0.0066505372524261475,-0.012842182070016861,-0.03390103951096535,-0.0014946337323635817,0.007822339423000813,0.0026878260541707277,0.020398661494255066,0.010807504877448082,0.0918334499001503,-0.013918517157435417,0.016925325617194176,-0.00046606099931523204,-0.05758771300315857,0.0681997761130333,-0.04702478647232056,-0.01357501931488514,0.08204289525747299,0.027271144092082977,0.025013979524374008,0.04343107342720032,-0.07097205519676208,0.0840543806552887,-0.019439322873950005,0.04970834404230118,0.03263179957866669,-0.0530606172978878,-0.034024063497781754,-0.05126892402768135,-2.4803686216046117e-8,-0.09620258957147598,0.03762166202068329,-0.031639862805604935,-0.012872147373855114,0.03757980465888977,0.06089145317673683,0.002699602162465453,-0.01961066573858261,-0.03592037782073021,0.06741078197956085,0.004033645614981651,0.044805996119976044,-0.012882821261882782,-0.1028546392917633,0.03276008740067482,-0.02758599817752838,-0.04558437690138817,-0.06157635152339935,-0.04710846021771431,0.03572668880224228,-0.10629957169294357,-0.02866550348699093,0.03183475881814957,0.0075835855677723885,0.07236087322235107,0.07414695620536804,-0.0785045251250267,-0.029389752075076103,0.04106087610125542,0.0259210467338562,0.07523944973945618,0.10725560039281845,-0.09795031696557999,0.05722450837492943,0.07978390157222748,0.030824515968561172,0.04890185222029686,0.02711336873471737,-0.062193937599658966,0.04090148210525513,-0.006295567378401756,0.031965382397174835,0.05499006435275078,0.018269164487719536,0.025361444801092148,0.042018428444862366,0.02372610569000244,-0.04916037246584892,0.07642537355422974,-0.056907013058662415,-0.05912313610315323,-0.008443029597401619,0.01979251764714718,0.028736868873238564,-0.014159630052745342,-0.049252692610025406,-0.03864538297057152,-0.07123264670372009,-0.04990541189908981,-0.030052728950977325,0.057666320353746414,-0.04041396081447601,0.03165882080793381,0.1492689996957779]},{"text":"They have acquired new and almost unlimited powers; they can command the thunders of heaven, mimic the earthquake, and even mock the invisible world with its own shadows.” Such were the professor’s words—rather let me say such the words of the fate—enounced to destroy me.","book":"1984","chapter":23,"embedding":[-0.02281952276825905,0.10313788056373596,0.04979480430483818,0.020732227712869644,0.016566406935453415,-0.02613121084868908,0.047358185052871704,-0.09413819760084152,0.050243478268384933,-0.035481490194797516,-0.007694017142057419,0.0728159174323082,0.015433177351951599,-0.07653296738862991,-0.04701913148164749,0.03977316617965698,0.007498646154999733,-0.05483474209904671,-0.06649493426084518,0.02934785932302475,0.06559043377637863,0.10247828811407089,-0.0013800786109641194,0.01985783688724041,-0.01967979408800602,0.08972329646348953,-0.07496347278356552,-0.09019322693347931,-0.010493735782802105,-0.004075730685144663,-0.044400595128536224,0.0006660696817561984,-0.04070597514510155,0.03234352543950081,0.0021037166006863117,0.02906304970383644,0.07988809049129486,0.04792647808790207,0.04004543647170067,-0.09213068336248398,-0.02818741276860237,0.028338320553302765,0.0003756941296160221,0.013903755694627762,-0.05481910705566406,-0.061503082513809204,-0.029600150883197784,-0.06523741781711578,0.02842624858021736,0.002305250382050872,0.01617284119129181,-0.06459865719079971,0.030062975361943245,-0.030909230932593346,-0.01758209988474846,0.018989035859704018,0.0385308712720871,-0.008345449343323708,0.0067787980660796165,-0.03524960204958916,-0.04583948478102684,-0.0038718825671821833,0.005186424124985933,0.033657874912023544,0.0727427676320076,-0.08790870010852814,0.03582805022597313,0.04681086912751198,-0.10700623691082001,0.08445926010608673,0.0008109950576908886,0.011928820982575417,0.10317394882440567,-0.041208263486623764,0.023379916325211525,0.021662866696715355,0.007002206984907389,-0.04859808832406998,0.044379059225320816,0.023205062374472618,0.030367888510227203,-0.0681687518954277,0.009999231435358524,0.01824634149670601,0.0031132178846746683,0.03196040540933609,0.049602437764406204,-0.06907977908849716,0.0483703576028347,0.02622252330183983,0.018393361940979958,-0.11527086049318314,0.041345566511154175,0.07121635228395462,-0.0021409110631793737,0.021766554564237595,-0.0811186283826828,-0.06343846023082733,-0.01471388153731823,0.05171884968876839,-0.004058475140482187,-0.016604097560048103,0.03824983537197113,-0.05305037647485733,-0.022541634738445282,-0.0043921638280153275,-0.12052750587463379,-0.05638814717531204,0.014445831067860126,0.03598535433411598,0.028914637863636017,-0.10006015747785568,0.039573606103658676,-0.03973047062754631,0.055276237428188324,0.0427364781498909,-0.019397201016545296,0.0075207725167274475,-0.11547791212797165,0.023802103474736214,0.06736142933368683,0.05995194613933563,0.02092805877327919,0.09110581129789352,-0.05089107155799866,-0.01746053248643875,-0.030738409608602524,-6.0238185967369045e-33,0.06758160889148712,0.06441812962293625,-0.012828445062041283,-0.029128218069672585,0.06961924582719803,-0.007795102894306183,-0.010791737586259842,0.052598919719457626,0.01974455825984478,-0.005603128578513861,-0.034415360540151596,0.057999566197395325,0.02307303249835968,0.02410946413874626,-0.03776996210217476,-0.015429415740072727,0.02996530942618847,-0.03112117014825344,0.0644042044878006,-0.02498762309551239,0.022629201412200928,0.08594784140586853,0.03168794512748718,-0.028523337095975876,0.02575966715812683,0.0339219756424427,-0.01887424848973751,0.09883112460374832,0.055841341614723206,0.04039208963513374,-0.04151370748877525,0.0500258207321167,-0.001947160460986197,-0.018276184797286987,0.05595230683684349,0.04652351513504982,-0.02813429944217205,0.009536859579384327,0.028844332322478294,-0.02332201972603798,0.0027806691359728575,0.019958794116973877,-0.08380279690027237,-0.03416002169251442,0.017677318304777145,-0.01726885512471199,0.0794111117720604,0.02426248788833618,-0.07886441797018051,0.023445693776011467,-0.0547143779695034,-0.03306654468178749,-0.05198049545288086,-0.06102572754025459,0.12882164120674133,-0.00406002439558506,0.04066840186715126,0.05893249437212944,0.0940750390291214,-0.03694402426481247,-0.01858445815742016,-0.02351848967373371,0.051876459270715714,0.08358996361494064,0.03666490688920021,-0.09918740391731262,-0.08732900768518448,0.013275601901113987,0.010240074247121811,-0.01775718294084072,-0.056378073990345,-0.002110430970788002,-0.03603450581431389,-0.006008062046021223,-0.012151626870036125,-0.09479562193155289,-0.023128775879740715,-0.031097620725631714,-0.02674611285328865,0.023647958412766457,0.03614899143576622,-0.07388170063495636,-0.015105043537914753,0.027789406478405,0.025762801989912987,-0.007904400117695332,-0.010981068946421146,-0.06327474862337112,0.015476420521736145,-0.03240969032049179,0.0009460781584493816,-0.004532664082944393,0.11099386215209961,-0.06608080863952637,-0.12680554389953613,1.5337044892227902e-33,-0.018984036520123482,-0.013020937331020832,-0.14220821857452393,0.07046682387590408,-0.012671438977122307,0.0633445531129837,-0.12391361594200134,0.09996122866868973,-0.06698768585920334,-0.049855198711156845,-0.02466597408056259,0.06011702120304108,-0.046412475407123566,0.021710317581892014,0.050677891820669174,-0.08030366897583008,0.07169460505247116,0.00006301980465650558,-0.06672284752130508,-0.028155284002423286,0.03678785264492035,-0.01963818073272705,-0.055606428533792496,-0.008739043027162552,-0.010621652938425541,0.027182335034012794,0.06797409057617188,-0.10308621823787689,-0.04312996566295624,0.06321177631616592,0.035978153347969055,0.02725367806851864,-0.11578807234764099,0.08445172011852264,-0.0018958583241328597,0.03161846473813057,0.021302906796336174,0.01861368492245674,-0.025639869272708893,-0.04209352657198906,-0.01939023658633232,0.03229314088821411,0.05712004750967026,0.007549084722995758,-0.013052917085587978,0.014150088652968407,-0.020647844299674034,0.07517103850841522,0.006261441390961409,-0.017143262550234795,0.0017642019083723426,-0.053098250180482864,0.00960517581552267,-0.019534170627593994,-0.015831712633371353,-0.11851481348276138,0.042130179703235626,-0.07005837559700012,0.06214316561818123,-0.022790053859353065,-0.037688471376895905,-0.06585876643657684,-0.01937599666416645,0.06358713656663895,-0.0039025647565722466,0.01873050071299076,-0.08505544811487198,0.07229813933372498,0.024105822667479515,0.009592583402991295,0.07128454744815826,-0.026603680104017258,-0.10468278080224991,-0.02578086405992508,0.0010044948430731893,0.09357137233018875,-0.02055222913622856,-0.09096863120794296,-0.1087246760725975,-0.0037413176614791155,0.01236854400485754,-0.08036486059427261,0.006759351585060358,0.00801786594092846,0.006048156879842281,-0.059959929436445236,-0.016814500093460083,0.0038182814605534077,0.03158292546868324,0.02487252838909626,0.016459612175822258,-0.032762836664915085,0.040886588394641876,-0.029102535918354988,-0.04215158149600029,-4.061783442921296e-8,-0.03365873917937279,-0.0022555748000741005,-0.03170482814311981,-0.008872230537235737,-0.007571499794721603,-0.0028483367059379816,0.04977398365736008,-0.000908517453353852,0.025096703320741653,0.014712161384522915,0.05927359685301781,0.0012232386507093906,0.022029122337698936,0.05164506286382675,0.12845489382743835,0.08029024302959442,0.024765297770500183,-0.07840310037136078,-0.03861825168132782,-0.03331954777240753,-0.061280328780412674,0.006726314779371023,0.044307202100753784,-0.06450629234313965,0.01680879481136799,0.048936959356069565,-0.004562431015074253,-0.049508240073919296,-0.04680816829204559,0.12539109587669373,-0.032506778836250305,-0.010024476796388626,-0.09056006371974945,-0.051749926060438156,-0.10114610940217972,0.026991233229637146,-0.0266428105533123,-0.04758796468377113,0.07234533131122589,-0.016639096662402153,-0.04048296436667442,0.024383630603551865,-0.02895749732851982,0.01756979711353779,-0.021248014643788338,-0.002879346953704953,0.056334611028432846,-0.0467955619096756,-0.010280301794409752,0.031454361975193024,-0.03584349527955055,0.0858960822224617,-0.010627648793160915,-0.044379089027643204,0.07564761489629745,0.04211379960179329,0.03383587673306465,0.035428158938884735,-0.1328374147415161,-0.03680768236517906,0.1189291775226593,-0.025513645261526108,0.009217732585966587,-0.0181773342192173]},{"text":"He heard with attention the little narration concerning my studies and smiled at the names of Cornelius Agrippa and Paracelsus, but without the contempt that M.","book":"1984","chapter":24,"embedding":[0.03309660032391548,0.06883388757705688,-0.00104389654006809,0.012256361544132233,-0.06547112762928009,-0.03912338986992836,0.04745208099484444,0.09562156349420547,-0.016360634937882423,-0.09135717153549194,0.0324639156460762,-0.06242242082953453,0.022004444152116776,-0.07525850832462311,-0.0364067405462265,-0.0022396722342818975,0.033242929726839066,0.05948011577129364,0.0521036721765995,0.0004779387090820819,-0.04138713330030441,0.05966277793049812,0.021438101306557655,-0.04073742777109146,0.04125691205263138,0.027272475883364677,0.03395058214664459,0.03704724833369255,0.05543207377195358,0.0396435372531414,0.015159758739173412,0.03800732642412186,0.02931576780974865,0.03534571826457977,-0.0237465500831604,-0.0014434828190132976,-0.0014445531414821744,0.08315582573413849,0.07035136967897415,-0.12728352844715118,-0.0032525984570384026,0.0886361375451088,0.09080594778060913,-0.0010776304407045245,-0.020954616367816925,-0.05767844244837761,0.005052479449659586,-0.016571199521422386,-0.03208794817328453,0.050505705177783966,-0.07349719852209091,-0.0628078356385231,-0.055917635560035706,-0.029111241921782494,-0.05691380426287651,0.022587543353438377,0.04277700185775757,0.010778754949569702,0.034917935729026794,0.008333304896950722,-0.12310509383678436,-0.024504156783223152,-0.054138872772455215,0.03627448156476021,-0.011729033663868904,-0.03594737872481346,-0.010896299965679646,-0.014552685432136059,-0.01821204647421837,0.13156691193580627,0.0343826524913311,-0.05551944300532341,0.08587491512298584,0.032362326979637146,-0.06097426638007164,-0.016087595373392105,0.013636123389005661,-0.04939649626612663,0.0704023465514183,-0.04807012900710106,-0.01699107140302658,0.060244135558605194,-0.048753008246421814,-0.028645602986216545,-0.0809955820441246,-0.03191209211945534,0.07569334656000137,-0.04921511188149452,-0.01925400272011757,0.025450628250837326,0.028891822323203087,-0.07780469208955765,-0.07159502059221268,0.05265810340642929,-0.023495394736528397,0.004106721840798855,-0.05835653468966484,0.12285396456718445,-0.03489399328827858,-0.015733927488327026,0.0413210429251194,0.05632532387971878,-0.008988912217319012,0.0838187038898468,-0.0006600266206078231,0.012415151111781597,-0.014423128217458725,-0.0617695227265358,-0.0008068052702583373,0.011494526639580727,-0.048008326441049576,-0.03932560235261917,-0.017885614186525345,-0.033735569566488266,0.026997415348887444,0.019923940300941467,0.06389546394348145,-0.07494107633829117,-0.08807523548603058,-0.0152902165427804,-0.013314909301698208,0.06532315909862518,-0.05013587325811386,0.0659647211432457,0.0050999997183680534,-0.01628485880792141,0.016011303290724754,-1.0564344054992521e-33,0.0019649378955364227,-0.020760340616106987,-0.04218384250998497,0.052150629460811615,0.09633077681064606,0.029279302805662155,0.0348028689622879,-0.008726980537176132,-0.023331675678491592,-0.004909248556941748,-0.0218461025506258,0.015980785712599754,0.001298193703405559,-0.05664824694395065,-0.14496088027954102,0.08491582423448563,-0.06171346828341484,-0.022254176437854767,0.06789430975914001,-0.02481307089328766,-0.032356634736061096,0.023959258571267128,0.04517278075218201,-0.017771005630493164,0.04959436506032944,0.006312818732112646,0.012838407419621944,-0.0363762192428112,0.0770404264330864,0.05530589446425438,-0.024088285863399506,0.07852476835250854,-0.03201998025178909,-0.07492848485708237,0.08762796223163605,0.05631597712635994,-0.04612962529063225,-0.1004476398229599,-0.03528260067105293,0.06884987652301788,-0.04230343922972679,0.050565484911203384,0.023544181138277054,-0.01143711619079113,-0.09415213018655777,0.0066177742555737495,0.0030502385925501585,0.04124539718031883,0.011090293526649475,-0.0743030458688736,-0.014913917519152164,-0.04940161108970642,0.042683739215135574,-0.051571689546108246,0.035002462565898895,0.03955010324716568,0.0056449491530656815,0.06486278772354126,0.02317703329026699,0.003941622097045183,0.0056333886459469795,-0.0002756852190941572,0.00386129692196846,0.02089298702776432,0.024891847744584084,0.013046217150986195,-0.14488306641578674,0.021850114688277245,0.0011491620680317283,-0.0373808778822422,0.013047151267528534,-0.04900083690881729,-0.09011390060186386,-0.06567415595054626,-0.027624070644378662,0.0020706234499812126,0.01427551545202732,0.04725444316864014,-0.0661817342042923,-0.10600470006465912,0.07065713405609131,-0.028474122285842896,-0.04476671293377876,-0.007365538738667965,0.01279989629983902,-0.031643275171518326,0.027274109423160553,-0.06266213953495026,-0.037725403904914856,0.04863465577363968,0.04385818541049957,0.042085375636816025,-0.04401949420571327,-0.027883833274245262,-0.13529092073440552,-5.20975147358103e-34,-0.016755282878875732,0.08512990921735764,0.03298494219779968,0.019174281507730484,-0.07215727120637894,-0.060975100845098495,-0.042361270636320114,0.07515639811754227,0.003978042397648096,-0.03400445729494095,0.06369059532880783,0.029646197333931923,0.07411698997020721,-0.050196532160043716,-0.06033187732100487,-0.07332883775234222,0.039842844009399414,-0.01063431054353714,-0.027069110423326492,0.012780144810676575,-0.04190198704600334,0.06795243918895721,-0.03898642957210541,-0.05970119684934616,-0.0741012841463089,0.021989457309246063,0.03983365371823311,-0.06322620064020157,-0.043782010674476624,0.011821191757917404,0.040402598679065704,0.10181575268507004,-0.07480929046869278,-0.040177177637815475,0.025925729423761368,0.09096559882164001,0.03528829291462898,0.044978849589824677,-0.03541632741689682,-0.06342623382806778,0.008142626844346523,0.02113465964794159,0.005537851247936487,0.015468483790755272,0.04757366701960564,-0.03540309518575668,0.030950156971812248,0.06517873704433441,-0.05288545787334442,-0.019747506827116013,-0.12659238278865814,-0.022366100922226906,0.016893554478883743,0.03631698340177536,0.023828871548175812,-0.016430988907814026,0.08841514587402344,-0.01081705279648304,0.03736463189125061,-0.0726756677031517,-0.002966981614008546,-0.03432917222380638,-0.05119037628173828,-0.03745275363326073,0.04985761642456055,0.07118260115385056,-0.04719758406281471,0.04826892167329788,0.003507292829453945,-0.0004496236506383866,0.05239080637693405,-0.01951330341398716,-0.04799139127135277,-0.08664559572935104,-0.025297097861766815,0.0991721972823143,-0.026896607130765915,-0.05397550389170647,0.012501931749284267,-0.02356041967868805,0.061484239995479584,-0.0121557442471385,0.019507979974150658,0.03579854965209961,-0.015965985134243965,0.025129955261945724,-0.05807264894247055,-0.006001567933708429,-0.03310053423047066,-0.001091085490770638,0.05769781768321991,-0.008161699399352074,0.062045663595199585,-0.04049732908606529,0.06708143651485443,-2.7397218715918825e-8,-0.07433188706636429,-0.04749732464551926,-0.013623453676700592,-0.024294449016451836,0.02841307781636715,-0.001299601630307734,-0.10211730003356934,0.0427151583135128,-0.03738512843847275,0.08899594098329544,-0.044801585376262665,-0.006822220981121063,0.0018179150065407157,-0.024830063804984093,0.1017979308962822,-0.03678710386157036,0.07244190573692322,-0.033139556646347046,-0.05685172602534294,0.011509460397064686,-0.04380615055561066,0.07348652184009552,0.023884182795882225,0.05104731768369675,0.00803984235972166,0.04074626788496971,0.051215264946222305,-0.05797533690929413,0.023361515253782272,0.03966936096549034,0.012764405459165573,0.07361959666013718,-0.06487199664115906,-0.07425007224082947,0.003238334786146879,0.023190245032310486,-0.016789866611361504,-0.018688244745135307,0.12900996208190918,-0.023232610896229744,0.03942720219492912,-0.04427400976419449,0.05915456637740135,0.07549639046192169,-0.017135152593255043,0.11014269292354584,0.14198987185955048,-0.03102082759141922,0.005206255707889795,0.05660712346434593,-0.008527797646820545,0.04859135299921036,0.04289793223142624,-0.03631923347711563,0.006580077577382326,-0.09113053977489471,-0.03451675921678543,0.04162338376045227,-0.06915146857500076,-0.045974764972925186,0.09186425805091858,-0.009761972352862358,-0.06035030260682106,-0.015245302580296993]},{"text":"I read with ardour those works, so full of genius and discrimination, which modern inquirers have written on these subjects.","book":"1984","chapter":24,"embedding":[-0.05221811309456825,-0.011391671374440193,-0.04059043154120445,0.03878863900899887,-0.011344044469296932,0.024042874574661255,0.07089759409427643,-0.05608118325471878,-0.08009077608585358,0.0581064373254776,-0.004821961745619774,0.07097669690847397,-0.02912394516170025,0.0055580441839993,-0.062257442623376846,0.07709920406341553,0.017217278480529785,-0.013376105576753616,0.021262971684336662,-0.07229708880186081,0.004243389703333378,-0.015725137665867805,0.012834788300096989,-0.006683364510536194,-0.022975189611315727,-0.052125152200460434,0.029890308156609535,-0.07453091442584991,0.002171894069761038,-0.005275905132293701,-0.047802265733480453,0.07210366427898407,0.05584396794438362,0.0025241468101739883,-0.060768917202949524,0.03249533474445343,0.05530383810400963,0.060433436185121536,0.058658748865127563,-0.028268033638596535,0.014633788727223873,-0.050428230315446854,-0.04823058098554611,0.0056414175778627396,0.056127920746803284,0.008283351548016071,-0.010357432067394257,0.00909303780645132,-0.1262182742357254,-0.07517776638269424,-0.07778970897197723,0.01507104467600584,0.012664427980780602,0.04023721069097519,-0.00811433419585228,-0.049415163695812225,-0.01644504815340042,0.014606498181819916,-0.017781587317585945,0.005009186454117298,-0.006581888999789953,-0.04072384536266327,-0.04719511419534683,0.026962561532855034,0.022438403218984604,0.00007797673606546596,-0.04114846512675285,0.06924895942211151,-0.08325670659542084,-0.007873197086155415,-0.03528819605708122,0.035300783812999725,-0.015479810535907745,0.11129047721624374,0.0915721133351326,-0.047342292964458466,-0.03730262815952301,-0.07215069979429245,-0.015266304835677147,-0.06937997788190842,-0.015813704580068588,0.005623091012239456,-0.02205931581556797,-0.015042348764836788,0.036060404032468796,-0.045167770236730576,-0.07134461402893066,-0.03340484946966171,0.00662178173661232,-0.00204655178822577,0.05252887308597565,-0.11851774156093597,0.012092647142708302,-0.016685903072357178,0.039079759269952774,-0.0418643057346344,0.002577289007604122,0.030621614307165146,0.044438812881708145,0.0023472809698432684,-0.013481358997523785,-0.0020746588706970215,-0.0410013422369957,-0.007063601166009903,0.02661568485200405,-0.08901646733283997,-0.036400943994522095,-0.05680995061993599,-0.042450688779354095,-0.015103466808795929,-0.05667615681886673,-0.02748248539865017,0.0033330528531223536,0.03384700417518616,0.06117461994290352,0.014564341865479946,0.06631670892238617,0.010223533026874065,0.06111419200897217,0.02596534788608551,-0.0024860238190740347,0.026417436078190804,-0.03609941527247429,0.06301252543926239,0.015551667660474777,-0.06571073830127716,-0.05701342970132828,5.085798349351705e-34,0.0005275473231449723,-0.014614670537412167,-0.004459530580788851,0.04816451668739319,0.020694222301244736,-0.04135722294449806,0.008613049983978271,0.008184073492884636,0.09493273496627808,0.025211725383996964,-0.014125742018222809,0.045032378286123276,0.04706006124615669,0.090676449239254,-0.04170999675989151,0.007951201871037483,-0.05564551427960396,-0.024267978966236115,-0.0034866537898778915,-0.0025309291668236256,0.04615293815732002,0.11360589414834976,-0.05946371704339981,0.015763280913233757,-0.042870309203863144,-0.0019874845165759325,0.02203003503382206,-0.03587983921170235,0.05120548605918884,0.046776652336120605,-0.02425076812505722,0.08405229449272156,-0.038076967000961304,0.009849646128714085,-0.034633465111255646,0.0895087793469429,0.03051081672310829,-0.004319401923567057,0.053643353283405304,-0.004832948092371225,0.005523381754755974,0.0003699313092511147,0.04195866733789444,-0.07257749885320663,0.02143940143287182,0.04353759065270424,-0.010717421770095825,-0.03908640891313553,0.029754415154457092,0.12439177185297012,-0.06253892183303833,0.05977531149983406,0.016440801322460175,-0.03989136964082718,0.11378391832113266,0.008242139592766762,-0.09247888624668121,0.0946427583694458,0.07000225782394409,-0.05176719278097153,-0.02934514544904232,0.09102299809455872,-0.023197505623102188,-0.04987771809101105,0.016341209411621094,0.003999529872089624,-0.0467853806912899,-0.04078889265656471,-0.026751065626740456,0.033190518617630005,-0.001405055751092732,0.05099721997976303,-0.013319825753569603,-0.018902694806456566,-0.08882220089435577,0.040313296020030975,-0.011019079014658928,-0.010904140770435333,-0.03924275189638138,-0.06541410088539124,0.015765689313411713,0.06433039158582687,0.011118538677692413,-0.043349530547857285,-0.04392319917678833,-0.04262301325798035,0.08581285923719406,-0.0332905650138855,0.061343200504779816,-0.013968491926789284,0.05293973907828331,-0.04630787670612335,0.04417480528354645,-0.08858821541070938,-0.069000244140625,-2.5753521859791557e-33,-0.04199834540486336,-0.011791732162237167,-0.098067507147789,0.07688779383897781,-0.03354935720562935,0.023262709379196167,-0.033379927277565,0.005201988387852907,0.005528798792511225,0.03327364847064018,-0.037623144686222076,-0.0606086403131485,0.020758289843797684,0.02227110043168068,0.01186106726527214,-0.148171529173851,-0.023480676114559174,0.009384417906403542,-0.05427424982190132,0.03667447343468666,0.0001997549697989598,0.08623965829610825,-0.02923683077096939,-0.02841346524655819,-0.005339082796126604,0.04430641978979111,0.005105749238282442,-0.016121165826916695,-0.08663792908191681,0.043441880494356155,-0.06468215584754944,0.03216385841369629,-0.053156446665525436,-0.009903142228722572,-0.03920144960284233,-0.020631087943911552,0.054556526243686676,0.07069021463394165,-0.017740603536367416,-0.08450630307197571,0.019437093287706375,-0.039477139711380005,-0.009725425392389297,-0.08034560084342957,-0.0082041434943676,-0.015595747157931328,-0.048422664403915405,-0.04269775003194809,-0.0176305640488863,-0.05956394597887993,0.026107478886842728,0.03369487449526787,-0.028004873543977737,-0.02982131764292717,0.006204024888575077,-0.08024571090936661,0.05181613564491272,-0.10507417470216751,-0.038197699934244156,0.09351999312639236,-0.024732766672968864,0.028350748121738434,-0.024638544768095016,0.0035597411915659904,-0.014061425812542439,-0.117580346763134,-0.018519682809710503,0.07852693647146225,0.0491432324051857,-0.0164926890283823,0.04634873569011688,-0.07538118958473206,0.02361047826707363,-0.05406123027205467,0.011428152211010456,0.034169699996709824,0.05093775689601898,0.03198644891381264,-0.05668800696730614,-0.00837534386664629,0.0736820250749588,-0.12590062618255615,0.021691078320145607,0.11712607741355896,0.0072075421921908855,0.10034225881099701,-0.09076804667711258,-0.013123078271746635,0.013258450664579868,-0.0014703312190249562,-0.05306033790111542,-0.024335887283086777,0.016709815710783005,-0.03359328955411911,0.011242426931858063,-3.145808946669604e-8,-0.00878873374313116,-0.0021032404620200396,0.02219998836517334,0.012122290208935738,-0.022656327113509178,0.034208208322525024,-0.02063625492155552,-0.012019366025924683,-0.11954689025878906,0.06722494214773178,-0.013207759708166122,0.0033033653162419796,0.053706616163253784,0.020222540944814682,0.09844811260700226,0.01884619891643524,0.13094960153102875,-0.04852253198623657,-0.01647782512009144,0.011901021003723145,0.10183113068342209,0.09198933094739914,-0.010864329524338245,-0.06277056038379669,-0.0534350648522377,0.11488387733697891,-0.041219983249902725,-0.06920350342988968,-0.06664404273033142,0.06234828382730484,-0.08909370750188828,0.11621546000242233,-0.004017735365778208,-0.07257235050201416,0.10639781504869461,-0.008087550289928913,0.001700323773548007,0.0026862570084631443,-0.015620198100805283,0.004236123058944941,0.007571795489639044,-0.027897780761122704,0.0033257438335567713,0.0213230662047863,0.11102286726236343,-0.04445332661271095,-0.016367677599191666,0.06890486925840378,-0.043173760175704956,0.10757362097501755,-0.005647341720759869,0.03709375858306885,0.09930723905563354,-0.010616617277264595,0.020241983234882355,-0.022336769849061966,0.006944618187844753,-0.03712541610002518,-0.10225646197795868,-0.0010620614048093557,0.16461803019046783,0.10924005508422852,0.011190386489033699,0.020297087728977203]},{"text":"Two years passed in this manner, during which I paid no visit to Geneva, but was engaged, heart and soul, in the pursuit of some discoveries which I hoped to make.","book":"1984","chapter":25,"embedding":[-0.03051873669028282,0.1532948762178421,0.04823613911867142,0.0386439748108387,0.02835756354033947,-0.012548527680337429,-0.03213903680443764,-0.07892958074808121,0.033331286162137985,0.0015128777595236897,0.04826333001255989,-0.051050275564193726,0.011838430538773537,-0.0005982501897960901,-0.01151292771100998,0.017998646944761276,-0.12159831076860428,-0.04834061861038208,-0.03775723651051521,-0.020925190299749374,-0.008803227916359901,0.027609435841441154,0.036808405071496964,0.04122789949178696,-0.031185990199446678,0.060143280774354935,-0.008698177523911,-0.06464840471744537,0.053242284804582596,0.02391037344932556,0.019846007227897644,0.06484298408031464,-0.07729955017566681,-0.0008999661076813936,0.049085069447755814,0.08931705355644226,0.016856523230671883,-0.005786234047263861,0.0017704411875456572,-0.026474978774785995,0.019406409934163094,0.04275470972061157,0.033455848693847656,0.012907673604786396,0.03002440370619297,-0.05976788327097893,0.06615952402353287,-0.0045646242797374725,0.0016777204582467675,-0.025027060881257057,-0.043749045580625534,-0.029504839330911636,-0.06021582707762718,-0.02747422643005848,-0.052390165627002716,0.021182389929890633,-0.009567175060510635,0.012283723801374435,-0.09948638826608658,-0.0183723047375679,-0.04341702163219452,0.006549560930579901,-0.015205672942101955,-0.05253046378493309,-0.06269600987434387,-0.01225284207612276,0.048605725169181824,-0.05242089554667473,0.029829826205968857,0.05768973380327225,0.02047782391309738,-0.017848573625087738,0.007788450922816992,-0.013066100887954235,-0.03011275641620159,-0.1328054964542389,0.051767729222774506,-0.023961467668414116,0.0566558875143528,-0.006351882591843605,0.007007821928709745,-0.03172378987073898,0.004151533357799053,0.028738638386130333,-0.04572349414229393,-0.0176674984395504,0.006162754725664854,0.01681419275701046,0.08551468700170517,-0.006577621679753065,0.02114597149193287,-0.1079445481300354,-0.06915052235126495,-0.007346991449594498,-0.024816447868943214,-0.008196581155061722,0.05349024757742882,0.11783668398857117,-0.03948647901415825,0.08023005723953247,0.04904504492878914,-0.06837031990289688,-0.059920892119407654,0.010572475381195545,0.038271594792604446,0.08257531374692917,-0.046674974262714386,0.03958068788051605,-0.03031645156443119,-0.002505482407286763,-0.029116757214069366,0.021115561947226524,0.0870591253042221,-0.018268341198563576,0.011755449697375298,0.1680472046136856,-0.05467873811721802,-0.045203085988759995,0.04424748569726944,0.055703647434711456,0.06025591120123863,0.04223030060529709,0.011677546426653862,0.018963471055030823,-0.16116732358932495,-0.05310005694627762,0.08978971093893051,-4.774542506275333e-33,0.0266998503357172,0.012212744913995266,0.02740689553320408,0.1176808699965477,-0.015101473778486252,-0.00002884685636672657,-0.01721552200615406,-0.009490735828876495,-0.02695910446345806,-0.050554368644952774,0.031040247529745102,-0.032425928860902786,0.001733942306600511,0.0023248845245689154,-0.06634638458490372,-0.0006105041829869151,-0.0019478321773931384,0.01465839147567749,0.12646640837192535,-0.031219035387039185,0.007515869569033384,-0.07493995875120163,0.024418257176876068,0.019890621304512024,0.042020540684461594,-0.004931108560413122,0.03229392692446709,-0.03567737713456154,-0.030088499188423157,-0.0016992839518934488,0.07519429177045822,0.11853279918432236,0.062135789543390274,-0.05952741205692291,0.06543421745300293,0.04325760155916214,-0.004458636976778507,0.012676488608121872,0.007817442528903484,0.02736116386950016,0.041734419763088226,0.0029883389361202717,0.024464907124638557,-0.057736773043870926,0.05432387813925743,-0.06156640872359276,0.06723228096961975,0.014591020531952381,0.032052427530288696,0.02973185107111931,-0.04385608062148094,0.034687768667936325,-0.014883688651025295,-0.03536396101117134,-0.0009035290568135679,0.07025133818387985,0.035762663930654526,0.022188957780599594,-0.02396654151380062,-0.013492890633642673,-0.0150840412825346,-0.03161425143480301,-0.03427628427743912,0.06081413850188255,-0.04337390884757042,0.03348196670413017,-0.09534930437803268,-0.039897143840789795,0.0008273020503111184,-0.009319883771240711,-0.048728954046964645,0.027270928025245667,-0.05130791664123535,-0.03931841254234314,0.014479256235063076,-0.026289192959666252,-0.020398633554577827,-0.04033563286066055,0.09976126998662949,-0.019346822053194046,-0.005067214835435152,0.012533255852758884,-0.05250382050871849,0.13278748095035553,0.05122818425297737,-0.04350240156054497,0.06913893669843674,-0.1260005384683609,-0.06337737292051315,0.03664468601346016,-0.009924271143972874,0.05190752446651459,-0.03508267179131508,-0.13560833036899567,0.04361218214035034,8.70472852238097e-34,0.02833922579884529,-0.057089414447546005,0.049063436686992645,0.0365426167845726,0.011695770546793938,-0.07551546394824982,-0.07209952175617218,0.04867821931838989,0.05625490844249725,0.10961049795150757,0.09034120291471481,0.012899789959192276,0.017340870574116707,0.019380386918783188,-0.014339041896164417,-0.008587140589952469,0.05815240368247032,-0.04772874340415001,-0.0413832850754261,0.025017356500029564,0.003979964181780815,0.05340011045336723,-0.07874788343906403,-0.07046990096569061,-0.05736800655722618,0.014224739745259285,0.04807049781084061,-0.08025196194648743,-0.03333550691604614,-0.04252420738339424,0.014541806653141975,-0.021637726575136185,-0.12192258983850479,-0.022183310240507126,0.08708743751049042,0.07369481772184372,0.06939593702554703,0.0329604297876358,-0.0983094796538353,-0.08010444790124893,0.005087405908852816,0.013652586378157139,-0.024943161755800247,0.09491902589797974,-0.009260227903723717,-0.06710036098957062,-0.05359426885843277,0.02311968058347702,0.03264030069112778,-0.04814372584223747,-0.05975169688463211,-0.02212374471127987,0.007618711795657873,-0.08289588242769241,0.004616022575646639,-0.0037809819914400578,-0.09009353816509247,0.011132587678730488,0.09909135848283768,0.010482268407940865,0.0022042146883904934,0.019447000697255135,-0.0796201303601265,0.007391898427158594,0.05325636640191078,-0.06544483453035355,-0.02377653494477272,0.045875947922468185,-0.08649230748414993,0.016308240592479706,0.04299737513065338,0.04200733080506325,-0.08494269102811813,-0.03519390523433685,0.04234100878238678,-0.07795405387878418,-0.051351215690374374,-0.04789827764034271,-0.0014641666784882545,-0.06791437417268753,0.05735121667385101,-0.03690680116415024,-0.002745872363448143,-0.07244975864887238,0.04278210923075676,0.011730228550732136,-0.028227435424923897,-0.008819902315735817,-0.026180943474173546,-0.02836228348314762,0.014236599206924438,-0.040599532425403595,-0.06250900030136108,-0.030856924131512642,-0.010738911107182503,-3.166060835724238e-8,0.02098383754491806,0.04489531368017197,-0.04909761995077133,0.013385772705078125,-0.037568747997283936,-0.033406972885131836,0.027733372524380684,0.041753411293029785,-0.037561334669589996,0.02421833947300911,-0.0784376934170723,0.057114582508802414,0.06137583777308464,0.05584791302680969,0.027651958167552948,-0.019552655518054962,-0.030273662880063057,-0.0755847916007042,-0.04293149337172508,-0.05377035215497017,0.0004644771106541157,0.04579790681600571,-0.037554968148469925,-0.08438004553318024,-0.07888510823249817,0.009674856439232826,0.04383990168571472,0.0170757994055748,0.017211031168699265,-0.04034695774316788,0.003303809091448784,0.022565292194485664,-0.015747666358947754,0.015253658406436443,-0.01802036724984646,-0.05281265452504158,-0.0035773899871855974,-0.04060288518667221,0.0021280052606016397,-0.04974555969238281,0.020908541977405548,0.1338118314743042,0.08372705429792404,0.05988052859902382,0.049921371042728424,-0.013627646490931511,0.06081541255116463,-0.013561195693910122,0.032654743641614914,-0.0038962559774518013,0.03177735209465027,0.05008498951792717,0.03893646225333214,0.030824990943074226,-0.01697523333132267,0.0018315460765734315,0.010313582606613636,0.03644900396466255,-0.09805914014577866,0.03029550053179264,0.09409501403570175,-0.10767139494419098,-0.09941479563713074,-0.05102675408124924]},{"text":"I became acquainted with the science of anatomy, but this was not sufficient; I must also observe the natural decay and corruption of the human body.","book":"1984","chapter":25,"embedding":[-0.0040916199795901775,-0.03453562781214714,0.022335313260555267,0.02667847089469433,-0.03741423785686493,-0.0752587616443634,-0.06892582774162292,0.02685735374689102,0.01345096156001091,0.12068966031074524,-0.0022755165118724108,0.012208146043121815,-0.05707727372646332,0.058468833565711975,-0.11896363645792007,-0.07439491152763367,-0.020457351580262184,0.047211188822984695,-0.01018907967954874,0.09687930345535278,-0.04122665151953697,0.03905843570828438,0.039862312376499176,-0.02936839498579502,-0.04790142551064491,-0.0559273287653923,-0.011591634713113308,-0.10187516361474991,0.04618605971336365,-0.057446982711553574,-0.0056154923513531685,-0.0005326723912730813,0.02652406319975853,-0.04552621394395828,0.014789686538279057,0.05079412832856178,0.08617664873600006,-0.01915642060339451,-0.004110105335712433,0.046673573553562164,-0.03461822122335434,0.007285171654075384,-0.006529643665999174,-0.007996423169970512,0.07320085167884827,0.025173280388116837,-0.017159974202513695,-0.059429287910461426,0.005680113099515438,0.00322835729457438,-0.06816300749778748,-0.05712617561221123,-0.04215259850025177,0.06920138001441956,-0.0018470032373443246,0.01322953961789608,-0.017237622290849686,-0.00987101998180151,-0.08723784983158112,-0.07836072146892548,0.08675554394721985,-0.002315117046236992,-0.03955862671136856,0.04826206713914871,0.043041128665208817,0.030739616602659225,0.047957707196474075,-0.00906849279999733,0.01535398606210947,0.07456755638122559,-0.015193789266049862,-0.01380083803087473,-0.04652770981192589,0.06444418430328369,0.0013957396149635315,-0.01432403177022934,-0.050296418368816376,-0.06021948158740997,0.006410854868590832,-0.050387706607580185,0.01583773083984852,0.06884455680847168,-0.011262808926403522,-0.04130129888653755,-0.05599607527256012,0.021557170897722244,-0.006429895292967558,0.026886921375989914,-0.13238723576068878,0.021646708250045776,0.05511730536818504,0.002395686926320195,-0.05390437692403793,-0.04795718193054199,0.03381318226456642,0.07023733854293823,0.00763707747682929,0.027518954128026962,0.10126757621765137,0.004776677582412958,-0.0876019150018692,-0.021569935604929924,-0.008143830113112926,0.11232446879148483,0.0223903376609087,-0.035906482487916946,-0.028211118653416634,-0.06798067688941956,0.08195868134498596,0.038358282297849655,0.0230390727519989,0.04091952368617058,-0.08639933168888092,0.07301685214042664,0.07729924470186234,0.03358830511569977,0.02099188230931759,0.05654912441968918,0.040341366082429886,-0.03150239959359169,0.005142844747751951,-0.058144357055425644,-0.03238474205136299,-0.038102779537439346,0.03225373104214668,-0.049865495413541794,0.022956667467951775,-4.295675127767119e-33,-0.012049778364598751,-0.05669528245925903,0.09211956709623337,0.052299536764621735,-0.040378276258707047,0.026283374056220055,-0.035115547478199005,-0.06386411190032959,0.13903000950813293,0.012879220768809319,0.05914337933063507,0.03469954803586006,-0.0003053650725632906,-0.044266823679208755,-0.06937718391418457,0.04222888499498367,-0.09767981618642807,0.03276510164141655,0.009477646090090275,-0.024589790031313896,-0.027544071897864342,-0.03362401947379112,0.04334566369652748,-0.04670986905694008,-0.024451537057757378,0.052581604570150375,-0.03281129524111748,-0.07403296232223511,-0.013548288494348526,0.007491504307836294,0.04611869156360626,0.027321696281433105,-0.08949732780456543,0.0085859140381217,-0.03901040926575661,-0.01432058122009039,0.05264170095324516,-0.0015880822902545333,-0.01954098977148533,-0.012488719075918198,0.03593989834189415,-0.010809153318405151,0.056437768042087555,-0.09385514259338379,0.021339932456612587,0.04341750964522362,0.05896132439374924,-0.001984424889087677,-0.043618325144052505,-0.029310889542102814,-0.019428173080086708,-0.00010353399557061493,0.04102564975619316,-0.07063345611095428,-0.004981092642992735,0.06196450814604759,-0.025586463510990143,-0.03868881240487099,-0.08401671797037125,0.07379654049873352,0.060723625123500824,0.05110030621290207,0.0393919013440609,0.019362732768058777,-0.05421812832355499,0.02302154339849949,-0.12456781417131424,-0.031763654202222824,0.013990120030939579,-0.02573978342115879,-0.12158510088920593,-0.013394194655120373,-0.04913875088095665,-0.011589820496737957,-0.03386745601892471,0.000463389849755913,-0.014406868256628513,0.0035609048791229725,-0.0749019980430603,-0.04327601566910744,-0.019637051969766617,-0.06541484594345093,0.012653595767915249,-0.00838734395802021,0.031229820102453232,0.07252778857946396,0.06015990301966667,-0.025823399424552917,0.04312526434659958,0.054420024156570435,-0.011049841530621052,-0.01148323342204094,-0.0045645651407539845,-0.0011077035451307893,-0.046864625066518784,8.321768074917416e-34,-0.021881988272070885,-0.06360722333192825,-0.039442215114831924,0.08456346392631531,0.052827153354883194,-0.006737449672073126,-0.09137997776269913,0.0742674320936203,-0.03867107257246971,-0.047681067138910294,0.05834949016571045,0.021345961838960648,-0.0291474349796772,0.005790731869637966,0.041261784732341766,-0.0014347500400617719,-0.04528799653053284,-0.02881479635834694,-0.025344708934426308,-0.005236354656517506,-0.07131289690732956,0.09445434808731079,-0.06066141277551651,-0.09757144749164581,-0.02514786273241043,0.09878307580947876,-0.02941812202334404,-0.03499040752649307,-0.043184854090213776,0.018632156774401665,-0.030792836099863052,0.044828761368989944,-0.038890477269887924,-0.051115214824676514,-0.014674334786832333,0.00903051532804966,0.05857347324490547,-0.01184130646288395,0.017461713403463364,-0.0587221123278141,0.0811120942234993,0.07350645214319229,0.0865485742688179,-0.019164344295859337,0.005353404674679041,-0.08665604144334793,-0.02341366745531559,0.05782167240977287,-0.04825759306550026,0.0573752336204052,0.0779666155576706,0.049782294780015945,-0.00796605460345745,-0.07794208824634552,0.03156568109989166,0.06881900131702423,0.03672846406698227,-0.027627047151327133,0.0784466564655304,0.046503134071826935,-0.050801344215869904,-0.0021931801456958055,-0.07181604951620102,0.10412949323654175,0.03497619926929474,0.0397457480430603,-0.04482278972864151,0.04859225079417229,-0.05014098435640335,0.016389749944210052,0.04534991458058357,-0.0032175900414586067,-0.0711287409067154,0.011970610357820988,0.01692175678908825,0.05177425965666771,-0.03229806572198868,-0.03775779530405998,0.0007545931148342788,-0.010304596275091171,-0.031954944133758545,-0.053784895688295364,0.01603129133582115,0.004381360486149788,0.017934748902916908,0.034914351999759674,-0.08768001943826675,-0.028736332431435585,-0.03157447651028633,-0.09572329372167587,-0.11866841465234756,-0.08473111689090729,-0.08309795707464218,-0.08875428885221481,0.014012455940246582,-2.736607385145362e-8,-0.033417366445064545,-0.024917440488934517,0.10636209696531296,0.005541145335882902,0.018616264685988426,-0.007377494592219591,0.0035310599487274885,0.1342463344335556,-0.07600027322769165,0.027760161086916924,-0.07915827631950378,0.057924505323171616,0.059275418519973755,0.049413613975048065,0.04640711471438408,0.01771104335784912,0.00400220463052392,-0.020574307069182396,-0.10255953669548035,-0.05813708156347275,0.02894202619791031,-0.02972741425037384,0.038686204701662064,0.04772612452507019,0.0018998472951352596,-0.0028189513832330704,0.009549589827656746,0.020424244925379753,-0.04889245703816414,-0.019848452880978584,0.07990329712629318,0.06870080530643463,0.04417448118329048,-0.044964488595724106,0.04647192731499672,0.00991690531373024,0.03960075601935387,-0.10149829834699631,-0.03851766139268875,0.00023457128554582596,-0.04692075029015541,-0.002376880729570985,0.04779469594359398,0.05713362991809845,-0.005745402071624994,-0.036724042147397995,0.08968045562505722,0.04943717271089554,0.007017944008111954,0.05207287147641182,0.031341150403022766,-0.02801879122853279,0.011011364869773388,-0.04011343792080879,-0.055233877152204514,0.00653268164023757,0.07315827906131744,0.05768043175339699,-0.03624914586544037,0.06910551339387894,0.1736130714416504,0.05578268691897392,0.00042031906195916235,-0.026109199970960617]},{"text":"The astonishment which I had at first experienced on this discovery soon gave place to delight and rapture.","book":"1984","chapter":26,"embedding":[-0.040684591978788376,0.07933033257722855,0.02269463799893856,0.0815960094332695,0.017414003610610962,-0.03939470276236534,0.03799228370189667,0.018243534490466118,0.06960741430521011,-0.0241567213088274,0.02327309176325798,0.013862289488315582,-0.008128466084599495,-0.03930382803082466,-0.04329207167029381,-0.04994167387485504,-0.020797377452254295,-0.11879367381334305,0.0225609689950943,-0.0248146653175354,0.011065230704843998,0.044077176600694656,0.046178512275218964,0.016333196312189102,0.013356074690818787,0.02061336115002632,0.05759219080209732,0.031648967415094376,0.09885364770889282,-0.05615317448973656,0.014171915128827095,-0.01235394086688757,0.03301042318344116,0.00042399586527608335,-0.05014881119132042,0.05727900192141533,0.05986670032143593,-0.029043080285191536,0.05657411739230156,-0.06403841823339462,0.07764338701963425,-0.017161782830953598,0.042962051928043365,0.022590063512325287,0.03076193481683731,0.004790913313627243,-0.003058079397305846,0.030753102153539658,0.024937385693192482,-0.02338162250816822,-0.027060139924287796,-0.06939519941806793,0.000288581068161875,-0.07604441046714783,-0.022129695862531662,-0.001624379656277597,-0.038135938346385956,-0.0669827088713646,-0.004379116930067539,-0.021806474775075912,-0.05421677976846695,0.04214964434504509,0.05792820826172829,0.021453384310007095,0.020123133435845375,-0.05320864915847778,0.04915767163038254,0.054101862013339996,0.0115779684856534,0.025154320523142815,0.04977405071258545,0.05192568153142929,0.0755462646484375,0.018244076520204544,0.00297066499479115,-0.012252001091837883,0.015052814967930317,0.04496854916214943,-0.0339721217751503,-0.005777725949883461,-0.001005033147521317,0.0017190981889143586,-0.014613104984164238,-0.03553948923945427,-0.08763541281223297,-0.015481318347156048,0.013958010822534561,0.04964692145586014,0.020011167973279953,0.03313923999667168,-0.028985152021050453,-0.08664896339178085,-0.10289530456066132,0.015349996276199818,-0.007846363820135593,-0.025404907763004303,-0.014094317331910133,-0.09226914495229721,0.03592755272984505,0.022530317306518555,-0.0016591927269473672,-0.00524536520242691,-0.013732385821640491,0.06040368601679802,0.004639991093426943,-0.023534543812274933,-0.12362290918827057,-0.06137354299426079,0.07932407408952713,-0.0267208069562912,0.004876268096268177,-0.028064822778105736,0.046679940074682236,0.008313729427754879,-0.040964920073747635,0.05164863169193268,-0.06615567207336426,0.06369613111019135,-0.028736574575304985,-0.0017959802644327283,0.040397319942712784,0.03857617452740669,0.03510516509413719,0.007241062354296446,-0.028982732445001602,0.04633951932191849,0.006470726802945137,-4.298914716729588e-33,0.07469762116670609,-0.04047125577926636,0.03307124599814415,0.08690039813518524,0.039067212492227554,0.0021437096875160933,-0.07498115301132202,-0.02785305492579937,-0.035282671451568604,-0.05341999977827072,-0.034041259437799454,-0.018945088610053062,0.0382615402340889,0.01045570895075798,-0.1345178782939911,0.0029819023329764605,-0.011697486974298954,0.02593633159995079,0.010998682118952274,-0.0219848845154047,-0.06767338514328003,-0.004129186272621155,-0.014609256759285927,-0.08500182628631592,0.01182754896581173,0.0942787304520607,0.06590212881565094,0.02372860722243786,0.03517015278339386,-0.0066785067319869995,0.01475814264267683,0.07567871361970901,-0.015262646600604057,0.034234851598739624,-0.01240976806730032,0.07228503376245499,-0.022556379437446594,-0.05813460052013397,0.020820457488298416,0.045934904366731644,0.05700213834643364,-0.010708499699831009,-0.04711265489459038,-0.05749595910310745,0.0029698412399739027,-0.024188823997974396,0.02614818513393402,-0.020583242177963257,0.009231368079781532,0.05558253079652786,-0.08991201221942902,0.023947840556502342,0.09641317278146744,-0.00978495180606842,0.01603355072438717,0.026042496785521507,0.009917950257658958,0.0005388845456764102,0.033594559878110886,0.009111780673265457,-0.03197285532951355,0.0012656180188059807,0.008246402256190777,-0.013750250451266766,-0.05235215649008751,0.018633250147104263,0.01225077174603939,-0.07710128277540207,-0.00862427894026041,0.11113700270652771,-0.043071892112493515,0.01083238422870636,-0.02488676831126213,-0.06154807284474373,0.01782260276377201,-0.0217058714479208,-0.04119768738746643,-0.05628415569663048,0.0324823334813118,-0.014916976913809776,0.030588563531637192,-0.09108519554138184,0.025470105931162834,-0.002810040256008506,-0.008919214829802513,-0.010590333491563797,0.025176679715514183,-0.029614126309752464,-0.06103438511490822,-0.02776416763663292,0.06095103174448013,0.09073548018932343,0.09706166386604309,-0.05911891907453537,-0.029862385243177414,8.625898769188874e-34,0.016031978651881218,-0.057067688554525375,-0.0729755088686943,0.07410281896591187,-0.00793521199375391,-0.049916110932826996,-0.02845129929482937,-0.0001768537622410804,-0.1278618574142456,-0.02804909087717533,0.06988782435655594,0.052358485758304596,0.024732308462262154,-0.04220917448401451,0.029040254652500153,0.0038287783972918987,0.01364512275904417,0.05273277685046196,0.02675107680261135,0.056007787585258484,0.004102799575775862,0.014672039076685905,-0.105987548828125,-0.10402271151542664,0.05366874858736992,0.053525641560554504,0.1080763041973114,-0.03766844421625137,-0.04319308325648308,-0.05367529019713402,-0.021706096827983856,0.06129806861281395,-0.10998336970806122,-0.03628355637192726,0.04194897413253784,0.12293980270624161,0.11435885727405548,-0.01603950373828411,-0.020640643313527107,-0.09729955345392227,-0.07166200131177902,0.09188482910394669,0.016975486651062965,0.09540209174156189,0.0021096437703818083,0.029195453971624374,0.04071919992566109,0.13441939651966095,0.05267428979277611,0.08073293417692184,-0.044959377497434616,-0.0043469821102917194,-0.005179069936275482,-0.10389331728219986,-0.03213377669453621,-0.040983665734529495,-0.04440821707248688,-0.0980977937579155,0.01195763424038887,-0.006709919776767492,-0.06501094251871109,-0.049255989491939545,-0.03094974346458912,0.008764288388192654,-0.021488239988684654,-0.053791750222444534,0.02835472859442234,0.07757920771837234,-0.05262824520468712,0.05660909041762352,0.007776162587106228,0.011795875616371632,-0.06620000302791595,-0.03776451200246811,0.008141450583934784,0.06846097856760025,0.019834427163004875,-0.033981215208768845,-0.024338431656360626,-0.0287264846265316,6.047910119377775e-7,0.050583574920892715,0.016139978542923927,-0.02873983420431614,-0.021056171506643295,-0.010975565761327744,0.0014158381382003427,-0.012844385579228401,-0.035228464752435684,0.042625244706869125,-0.12117412686347961,-0.021843260154128075,-0.08621278405189514,0.006946803070604801,0.035741787403821945,-2.2772576713236958e-8,0.005768734496086836,0.02119714580476284,-0.05661623179912567,-0.02642674557864666,0.07642067968845367,-0.007771111559122801,0.031344689428806305,0.09747610241174698,-0.06278768181800842,-0.08615563064813614,-0.09789418429136276,0.07205546647310257,0.06769134849309921,0.011906251311302185,0.11527217924594879,0.0399995855987072,-0.00952755194157362,-0.043817050755023956,-0.0613095760345459,0.006446453742682934,0.07089591771364212,0.058929841965436935,0.05898086726665497,-0.14405092597007751,-0.07026313990354538,-0.012479965575039387,-0.016078457236289978,0.041781116276979446,-0.0860985666513443,-0.11995258182287216,-0.020843371748924255,-0.02619069442152977,-0.0425918772816658,0.006113470997661352,-0.042305752635002136,0.02427128329873085,-0.0423579066991806,0.008369255810976028,0.12050816416740417,-0.1029287725687027,0.03505447879433632,0.05519076809287071,0.028791943565011024,0.012097337283194065,-0.11196078360080719,-0.0268507432192564,0.057629987597465515,-0.01516725029796362,-0.015035299584269524,0.032464589923620224,-0.027592625468969345,0.07693296670913696,0.038341693580150604,-0.00896628387272358,0.12108242511749268,0.013120814226567745,-0.053746405988931656,-0.059304624795913696,-0.01705223135650158,0.08053978532552719,0.058347951620817184,-0.053739748895168304,-0.056601330637931824,-0.03513876348733902]},{"text":"I doubted at first whether I should attempt the creation of a being like myself, or one of simpler organization; but my imagination was too much exalted by my first success to permit me to doubt of my ability to give life to an animal as complex and wonderful as man.","book":"1984","chapter":26,"embedding":[-0.02718835510313511,0.01963184028863907,0.013242793269455433,0.06126562878489494,-0.024189947172999382,-0.13453409075737,0.03296513110399246,-0.022376008331775665,0.05075174570083618,0.027986664324998856,-0.006720198784023523,-0.05973324552178383,0.007931811735033989,0.03488440811634064,0.03367805480957031,-0.025939708575606346,-0.01590268313884735,0.012381111271679401,-0.04256898909807205,0.07614976167678833,-0.033436983823776245,-0.03426659107208252,-0.02756119705736637,-0.039607103914022446,-0.10328075289726257,-0.03955639898777008,-0.016540996730327606,0.04192221909761429,0.02056022919714451,-0.0694640576839447,0.05538174510002136,-0.03041483461856842,0.0088900001719594,-0.05672915652394295,0.08398250490427017,0.002445782767608762,0.03502052277326584,-0.0157173965126276,0.07962709665298462,-0.035821348428726196,-0.019214803352952003,-0.046415627002716064,0.02400544472038746,-0.022294150665402412,-0.04306134209036827,-0.07794392853975296,-0.0032448789570480585,-0.03465932607650757,0.03664616495370865,-0.04736418277025223,-0.09332115203142166,-0.0715571790933609,-0.03150969371199608,-0.11329594999551773,-0.060428496450185776,0.062269426882267,-0.011450042948126793,0.07168186455965042,-0.029420999810099602,-0.07634557038545609,-0.021616796031594276,-0.011852089315652847,0.09945057332515717,0.0418972373008728,0.14591993391513824,0.050707124173641205,-0.03336507827043533,-0.00450578797608614,0.008623040281236172,-0.03491111844778061,0.05134952440857887,0.008847380988299847,-0.04459381848573685,0.05387979373335838,0.025348417460918427,-0.03417390212416649,-0.043316956609487534,-0.0657319724559784,0.0649901032447815,0.06463997066020966,0.03854571282863617,0.05639426410198212,-0.033472690731287,0.061773769557476044,-0.04470204934477806,0.025203822180628777,0.08341019600629807,-0.003554039401933551,-0.06972387433052063,0.04415102303028107,-0.03683210536837578,-0.03242683783173561,-0.06444460153579712,0.02761870063841343,0.05760738253593445,0.0895576924085617,-0.04700520262122154,-0.030934657901525497,-0.013822318986058235,0.045285265892744064,0.0005916751106269658,-0.04398736730217934,0.006075539626181126,-0.022242430597543716,0.09470720589160919,-0.04403921589255333,-0.033012505620718,-0.04694437235593796,0.015300516970455647,0.027844568714499474,-0.08262395858764648,0.0012297186767682433,0.0012643628288060427,0.06686382740736008,0.05550849065184593,0.06830861419439316,-0.025120513513684273,0.03571111708879471,-0.013101762160658836,-0.021940262988209724,0.05657132714986801,0.023789729923009872,0.07201413065195084,0.036825112998485565,-0.04282976686954498,-0.04814322665333748,0.016270384192466736,-9.222606333960153e-34,-0.012811514548957348,0.018925342708826065,0.0536297969520092,0.048156410455703735,0.010205212980508804,0.009667723439633846,-0.00833482388406992,0.0393076092004776,-0.005565706640481949,-0.065992571413517,0.008990563452243805,0.0085977204144001,0.015056638978421688,0.0043987613171339035,0.0007356517016887665,-0.00509741622954607,-0.06624317169189453,-0.037291742861270905,0.05446265637874603,0.0023675800766795874,0.003655217820778489,-0.0020838172640651464,0.004976158030331135,-0.08338002860546112,-0.016911476850509644,-0.011853975243866444,0.01806928962469101,-0.05533786490559578,0.00021181184274610132,0.0028777001425623894,-0.04762111231684685,0.027652930468320847,-0.0666896402835846,0.001047681667841971,-0.004566832445561886,-0.04832635074853897,0.05933983251452446,-0.06078776344656944,0.013296603225171566,-0.06315535306930542,0.06729602813720703,0.004295602440834045,0.05129588767886162,0.030430113896727562,0.015023823827505112,0.027694400399923325,0.07888539135456085,-0.010715913958847523,-0.04189716652035713,0.03875499591231346,-0.05891328305006027,0.058486372232437134,0.1114872395992279,-0.075877346098423,0.02745630405843258,-0.08067847788333893,0.020689086988568306,0.012629522010684013,0.008111572824418545,-0.0020442630629986525,-0.03720035031437874,-0.010405365377664566,-0.03857233375310898,0.04548536613583565,-0.013226022012531757,-0.07018996775150299,-0.02852361463010311,-0.051501791924238205,0.010724111460149288,-0.01618320494890213,-0.02592206560075283,-0.08164463937282562,-0.10694895684719086,-0.08883532136678696,0.03345007449388504,-0.042961470782756805,0.006465209648013115,0.0195995531976223,-0.08729114383459091,-0.08156165480613708,0.04226071760058403,0.06060536205768585,-0.08891699463129044,0.002667635679244995,0.07637098431587219,-0.02513698861002922,0.12600643932819366,-0.0005862869438715279,0.03193245828151703,0.018904931843280792,0.043298184871673584,-0.0012816038215532899,0.016254300251603127,-0.06359685957431793,-0.0803791955113411,-1.4583748852546372e-34,-0.02330031618475914,-0.06454205513000488,0.05410058796405792,0.0438443161547184,0.028249358758330345,-0.06887032091617584,-0.030877357348799706,-0.07097063958644867,-0.0003290789027232677,0.07476779818534851,0.061423446983098984,0.054509736597537994,0.06929566711187363,-0.05369269475340843,-0.08243162930011749,-0.08329615741968155,-0.0573161318898201,-0.042150143533945084,0.019711514934897423,-0.08548372238874435,-0.00021289360302034765,0.07351245731115341,-0.01567123271524906,-0.022404568269848824,0.011302901431918144,0.11350987106561661,0.026847850531339645,-0.02383851446211338,0.02896910160779953,-0.022145740687847137,0.00596883799880743,0.023277735337615013,-0.024246666580438614,0.018527237698435783,0.09833648800849915,-0.0011401844676584005,0.01800788938999176,0.01719440147280693,0.054861124604940414,-0.06099040433764458,-0.06463957577943802,0.018486203625798225,-0.09794530272483826,-0.02842465415596962,0.02575821429491043,0.0031943912617862225,0.07001979649066925,-0.020017435774207115,0.022483009845018387,0.03030446730554104,-0.03867216408252716,0.043791934847831726,-0.04295370727777481,-0.10814794898033142,0.033348798751831055,-0.01159839890897274,0.04923763871192932,-0.06930559873580933,0.12067091464996338,0.0300050787627697,-0.05887797474861145,0.01784542016685009,-0.01716073602437973,-0.025313030928373337,-0.020663464441895485,-0.003284287406131625,-0.0012438478879630566,0.06685579568147659,-0.037341535091400146,-0.03651786223053932,0.0031415254343301058,0.01244987640529871,-0.01899271085858345,0.04997904226183891,0.006401449907571077,-0.011950824409723282,0.04422374814748764,-0.013640889897942543,-0.003581148572266102,-0.04395927116274834,-0.034271489828825,-0.08043718338012695,0.03272796794772148,-0.007408772595226765,0.057261280715465546,-0.004193875938653946,-0.08500979840755463,0.03312225267291069,0.06980638206005096,0.08917121589183807,-0.015105407685041428,0.0008351787691935897,0.0343657061457634,0.051165394484996796,0.00555261317640543,-3.953692484515159e-8,-0.027968700975179672,0.0029422114603221416,0.07014290988445282,0.08233431726694107,0.0739041194319725,0.03149360790848732,-0.025403864681720734,-0.1290028989315033,-0.10272432118654251,-0.016592668369412422,-0.0344977006316185,-0.01323681976646185,0.0030102338641881943,0.13006404042243958,0.10047938674688339,-0.021950192749500275,0.021167153492569923,-0.024114761501550674,-0.010894253849983215,0.03764873370528221,0.04416830837726593,0.07733915746212006,-0.13252319395542145,-0.05360350012779236,-0.05337383225560188,0.02399451658129692,-0.011217284947633743,-0.10010883957147598,-0.08682657778263092,0.004356446210294962,0.004764712881296873,0.053898319602012634,-0.026622949168086052,0.05118383467197418,-0.09440673887729645,0.009934217669069767,-0.05231005698442459,0.03682251274585724,0.025893179699778557,-0.12748754024505615,0.0248402189463377,0.05796445906162262,0.023601146414875984,0.053520314395427704,0.007636577356606722,-0.0003688779252115637,0.050392575562000275,-0.0468909852206707,-0.024982303380966187,-0.011659538373351097,0.020545480772852898,0.02807186171412468,0.011029846034944057,0.001913995249196887,0.06381227821111679,0.05105464160442352,-0.0072374651208519936,0.07032956928014755,-0.11439187824726105,-0.01785098947584629,0.1792154610157013,0.010986655950546265,-0.00042681634658947587,-0.04548507556319237]},{"text":"Pursuing these reflections, I thought that if I could bestow animation upon lifeless matter, I might in process of time (although I now found it impossible) renew life where death had apparently devoted the body to corruption.","book":"1984","chapter":27,"embedding":[-0.05920719727873802,0.03383491188287735,0.003970424644649029,-0.02847360260784626,0.02512243203818798,-0.016699042171239853,-0.004561800975352526,-0.057306598871946335,0.0071812281385064125,-0.007092735730111599,-0.004194505047053099,0.045550160109996796,-0.02216990478336811,0.029075661674141884,-0.03475548326969147,-0.01715688966214657,-0.03455572575330734,0.0552445724606514,0.002979234093800187,0.11580786108970642,0.03927358612418175,0.026849709451198578,0.015447127632796764,-0.0618622750043869,-0.017618980258703232,0.017804648727178574,-0.03025922179222107,-0.058613017201423645,0.044361624866724014,-0.03954869881272316,-0.0024809991009533405,0.015595643781125546,-0.0556042343378067,-0.09276719391345978,0.04593367129564285,0.07813479006290436,0.04894082248210907,0.025609955191612244,-0.018479105085134506,-0.010627200827002525,0.02227369137108326,0.011789687909185886,-0.056006185710430145,-0.00882552471011877,0.03554801270365715,-0.06586035341024399,-0.013219639658927917,-0.07452840358018875,-0.016551682725548744,-0.07587031275033951,-0.08406798541545868,-0.06130699813365936,-0.034873295575380325,-0.01146773062646389,0.008701199665665627,-0.02211790159344673,0.06534764170646667,0.06459357589483261,-0.008003662340342999,-0.10661374032497406,0.008476910181343555,0.055982280522584915,0.08167224377393723,0.03547440096735954,0.06435072422027588,0.02110854722559452,0.07921595871448517,0.016310224309563637,-0.024640057235956192,0.06093352660536766,-0.036981742829084396,-0.035444121807813644,0.010583896189928055,-0.019311532378196716,-0.05118444189429283,0.02904636599123478,-0.026487912982702255,-0.08428318053483963,-0.05954252928495407,-0.011414753273129463,0.074710413813591,0.005051948130130768,-0.017815662547945976,-0.00851109903305769,-0.054302774369716644,0.04324839636683464,-0.009236680343747139,-0.017510855570435524,0.018083635717630386,0.08289065212011337,-0.032757073640823364,0.0724954903125763,0.01845542900264263,0.026107635349035263,-0.047690294682979584,0.032422296702861786,-0.003143671900033951,0.0284713301807642,0.050021443516016006,0.04902845248579979,-0.06046520173549652,-0.045997750014066696,-0.0018028520280495286,0.011641046032309532,0.059455033391714096,-0.03198076784610748,-0.05911305919289589,0.015476497821509838,-0.014866815879940987,0.04706597328186035,-0.0017157165566459298,-0.04577849805355072,0.010642584413290024,0.06763041019439697,0.09657484292984009,0.0760635957121849,-0.07589629292488098,-0.018760545179247856,-0.0015569378156214952,0.015972677618265152,0.11515330523252487,0.018641533330082893,0.02117621898651123,0.009504582732915878,0.05005208030343056,-0.055969011038541794,0.010002569295465946,-1.2361139516457198e-33,0.02662508934736252,-0.007012811955064535,0.057866208255290985,0.03770197927951813,0.04081333056092262,-0.05381350591778755,-0.05502504110336304,-0.025799298658967018,0.09188966453075409,-0.006416955962777138,0.029236458241939545,-0.012609036639332771,0.00563834048807621,-0.04033370688557625,-0.09939319640398026,-0.03172575309872627,-0.08703744411468506,0.020796170458197594,0.0599651038646698,-0.05227358266711235,0.0056718746200203896,0.007223437074571848,0.0009046814520843327,-0.0888260006904602,0.013843977823853493,0.007712197490036488,0.03584232181310654,-0.01720619387924671,-0.027786314487457275,-0.004542946349829435,-0.01197817362844944,0.1111525297164917,0.00948741752654314,-0.054115936160087585,0.005949004087597132,0.02064504288136959,0.0034172397572547197,-0.016541194170713425,-0.0756157785654068,0.027916498482227325,-0.0006026447517797351,0.0279680322855711,0.06358829885721207,-0.037867337465286255,0.05453505739569664,0.031216982752084732,0.1564655900001526,0.050966281443834305,-0.05526601895689964,0.044605448842048645,0.05427484214305878,0.013462407514452934,-0.004954516887664795,-0.05940312519669533,-0.019249746575951576,0.005639566574245691,-0.038152530789375305,-0.035840295255184174,-0.013667902909219265,0.012791869230568409,0.05217190831899643,-0.07055667042732239,-0.0010221656411886215,0.004527279641479254,-0.030782105401158333,-0.003912251442670822,-0.054187800735235214,-0.06999573856592178,0.02042527124285698,-0.03661377355456352,-0.04749187082052231,-0.07316692173480988,-0.04732149839401245,-0.005149108357727528,-0.05528847500681877,-0.031117526814341545,-0.005198322702199221,-0.036570895463228226,-0.13704319298267365,-0.0018237734911963344,0.05548868700861931,-0.09590283036231995,-0.0864638239145279,-0.03345417603850365,0.13044588267803192,0.012541750445961952,0.07773195207118988,-0.06409543007612228,-0.06825455278158188,0.011227789334952831,-0.07997903227806091,-0.009674462489783764,0.07065291702747345,-0.04667976498603821,-0.09225281327962875,-9.66064879366431e-34,0.05855564773082733,-0.11630818992853165,-0.030378196388483047,0.12350236624479294,0.030970264226198196,-0.028187979012727737,-0.12722250819206238,0.014667647890746593,0.00598082086071372,-0.0020820742938667536,0.009138778783380985,-0.0005947738536633551,0.06742411106824875,0.04706259071826935,-0.03388727828860283,-0.050419773906469345,0.00215776264667511,-0.0706966444849968,-0.055165983736515045,0.08036704361438751,-0.04628251492977142,0.021730203181505203,-0.06859736144542694,-0.059761323034763336,0.017069511115550995,0.15016457438468933,0.06914685666561127,0.03912075608968735,0.024109764024615288,0.04644876718521118,-0.011970560066401958,-0.01263386569917202,-0.012320942245423794,-0.00282206735573709,0.010096527636051178,0.04424896463751793,0.09981028735637665,-0.11256173253059387,-0.015611324459314346,-0.1332222819328308,-0.005000902805477381,0.06106971949338913,0.0038939835503697395,0.04279761761426926,-0.02114708349108696,-0.034118298441171646,-0.01363168004900217,0.08232472091913223,0.0009391103521920741,-0.012388731352984905,0.03426654636859894,0.0071897003799676895,-0.016720006242394447,-0.031350474804639816,-0.029696699231863022,0.01574370078742504,0.048126332461833954,-0.0404910184442997,0.08977632224559784,-0.006794178392738104,-0.037013035267591476,0.007643536198884249,-0.047582801431417465,-0.03951898217201233,0.03737815469503403,0.00029055328923277557,0.03725063428282738,-0.004677582066506147,-0.09137124568223953,-0.00453783106058836,0.07833639532327652,-0.023479077965021133,-0.16291572153568268,0.044778190553188324,-0.014281424693763256,0.04876897484064102,0.05781698599457741,0.03020184114575386,-0.003573507769033313,-0.02198401838541031,-0.029386436566710472,-0.05014277249574661,0.0345868282020092,0.030062492936849594,0.023548517376184464,0.06732386350631714,-0.11571583896875381,-0.0076985745690763,0.06018314138054848,-0.017132259905338287,-0.10114318877458572,-0.027531176805496216,0.06662185490131378,-0.03556818142533302,-0.019613279029726982,-3.6479555376445205e-8,0.002371934475377202,0.019031794741749763,0.05428367108106613,0.041260477155447006,0.001954596722498536,-0.031938083469867706,0.07070480287075043,0.00875430554151535,-0.024747880175709724,-0.02875644527375698,0.0322752445936203,0.04860890656709671,0.08442550897598267,0.06386610120534897,0.08985745906829834,0.015407235361635685,-0.055479083210229874,-0.0760829895734787,-0.09537293761968613,-0.02579898200929165,-0.0145263085141778,-0.02131015993654728,-0.01179435383528471,-0.07798780500888824,-0.03661536052823067,-0.0022125872783362865,0.0015012036310508847,-0.041356410831213,-0.01709630899131298,0.012743599712848663,-0.03001621551811695,0.037546366453170776,-0.007159926928579807,0.03203973174095154,-0.04877159371972084,-0.05905795097351074,0.004096224904060364,-0.026917992159724236,-0.053649693727493286,-0.01706521585583687,0.02455141767859459,0.005771162919700146,0.03481156378984451,-0.0029220005962997675,0.014679145999252796,-0.0720931887626648,0.0018729247385635972,-0.012686559930443764,-0.022648606449365616,0.04172345995903015,0.038591109216213226,-0.004542130511254072,-0.02993835136294365,0.018911251798272133,0.09594930708408356,0.00334284664131701,0.06412535905838013,0.12158366292715073,-0.08728788048028946,0.08269786089658737,0.18167245388031006,-0.022987741976976395,0.024532683193683624,-0.06632938235998154]},{"text":"The summer months passed while I was thus engaged, heart and soul, in one pursuit.","book":"1984","chapter":27,"embedding":[0.021443206816911697,0.03275025635957718,0.07737014442682266,0.0941380187869072,0.1025301143527031,-0.02914271503686905,-0.008888489566743374,-0.07590622454881668,0.05921989306807518,-0.025743814185261726,0.029857950285077095,0.0059800404123961926,0.022826211526989937,0.005992744583636522,0.11730309575796127,0.012537531554698944,-0.0295634176582098,-0.0499059297144413,-0.02559618465602398,0.015622701495885849,-0.06889009475708008,-0.023009784519672394,-0.0806364193558693,0.05369685962796211,-0.012117503210902214,0.05674092099070549,0.028261277824640274,0.03737914562225342,-0.014320521615445614,-0.004383716266602278,0.037313882261514664,0.11464966833591461,-0.0839063972234726,0.008201081305742264,0.029354693368077278,0.0668906420469284,-0.04840021952986717,-0.07258264720439911,0.012055597268044949,-0.006543570663779974,-0.0396755114197731,0.030832931399345398,0.0299274493008852,0.044679924845695496,0.039122190326452255,-0.05422576889395714,-0.0007557282806374133,0.006381581537425518,-0.017155112698674202,0.014380139298737049,0.0078817717730999,0.043496210128068924,-0.12189625948667526,0.006604774389415979,-0.06718531996011734,0.04605596885085106,-0.001052937121130526,0.058062128722667694,0.012324639596045017,0.001696355757303536,-0.10055307298898697,0.005214670207351446,0.010110769420862198,-0.0152385039255023,-0.061011482030153275,-0.038084834814071655,-0.015364931896328926,-0.03738762438297272,0.029571687802672386,0.02577608823776245,0.02568858489394188,-0.029599759727716446,-0.0347176268696785,0.021579407155513763,-0.05730941519141197,0.018257491290569305,0.0009439825662411749,-0.05124472826719284,0.12213905155658722,-0.015857312828302383,0.029377905651926994,-0.007117648143321276,-0.056588687002658844,-0.010464468970894814,-0.019410811364650726,-0.03630395978689194,0.013232497498393059,-0.02134321816265583,0.020049452781677246,0.00826655700802803,-0.004147251136600971,-0.06317799538373947,-0.019084524363279343,0.05895094946026802,-0.09344116598367691,-0.05272075906395912,-0.015322897583246231,0.026283569633960724,-0.015026330016553402,0.06635706126689911,-0.034430842846632004,-0.0021268785931169987,-0.06373301148414612,0.02871767058968544,-0.014840861782431602,-0.05562204867601395,-0.06714973598718643,-0.03108231909573078,-0.008815121836960316,-0.013675017282366753,-0.03340868279337883,-0.032211899757385254,0.0786668136715889,0.022201169282197952,0.050194863229990005,0.028122613206505775,-0.02087702788412571,0.003393010701984167,0.06143723800778389,0.1725998967885971,-0.0022311729844659567,0.06296168267726898,-0.03543264791369438,0.04464345425367355,-0.09578599780797958,-0.1038234680891037,0.09324225783348083,-2.2634009645258755e-33,0.011941649951040745,-0.03952475264668465,0.036023788154125214,0.13433320820331573,-0.013005866669118404,-0.027849555015563965,0.027481339871883392,-0.00539149297401309,0.01688743382692337,-0.04495304450392723,0.008547878824174404,0.03767383098602295,-0.0391724556684494,-0.020609134808182716,-0.07898509502410889,-0.06900890171527863,-0.11229943484067917,0.036272961646318436,0.06301375478506088,0.11831123381853104,-0.10353478044271469,-0.03766728565096855,-0.010990562848746777,-0.05844946205615997,0.010413754731416702,0.015551416203379631,0.013606802560389042,-0.007071026600897312,0.011290901340544224,0.038075290620326996,0.06384839117527008,0.08509799093008041,0.0326080322265625,0.0024767827708274126,-0.008292490616440773,0.01733475551009178,0.06106344982981682,-0.07815898954868317,0.00394177483394742,0.036500003188848495,-0.05972275882959366,0.010123136453330517,0.045991938561201096,-0.06746691465377808,0.03502478823065758,0.0200363639742136,0.006952717434614897,0.09540757536888123,-0.028544919565320015,-0.018793432042002678,-0.07843045145273209,0.0038755203131586313,0.06808121502399445,-0.06625562906265259,-0.01770973764359951,0.031101657077670097,-0.03491799160838127,-0.008487464860081673,-0.023803550750017166,-0.06885460764169693,0.017381826415657997,-0.038373224437236786,-0.027840852737426758,-0.08456718921661377,-0.05780326947569847,-0.049685318022966385,-0.01784455217421055,-0.019276194274425507,-0.024453014135360718,0.003514545504003763,-0.03983190283179283,0.038838379085063934,-0.04160459712147713,-0.0861726701259613,0.03778017312288284,-0.062483493238687515,0.08438927680253983,-0.029850106686353683,-0.04362807795405388,-0.0035976413637399673,0.035676728934049606,0.05479807034134865,0.01602090708911419,0.0383685901761055,0.0717981681227684,-0.061914313584566116,0.09753727167844772,-0.13844752311706543,-0.058366112411022186,0.06903830915689468,-0.028271585702896118,0.06262866407632828,0.050909996032714844,-0.08363290876150131,0.010381944477558136,-2.5368017569084426e-34,0.08893616497516632,-0.047537609934806824,0.07001693546772003,0.015982583165168762,0.03351721540093422,-0.09358876198530197,-0.10099241137504578,0.007077399641275406,-0.004903377965092659,0.08535304665565491,0.044602151960134506,-0.031292419880628586,0.06657274812459946,0.006565398070961237,-0.07838451117277145,-0.02923598140478134,0.013152699917554855,0.04804549738764763,-0.02540951780974865,0.03853354603052139,-0.08015849441289902,0.029202528297901154,-0.009998554363846779,-0.017717065289616585,-0.013035424053668976,0.013241766020655632,0.051795948296785355,-0.004571027588099241,-0.01707245595753193,-0.007813039235770702,0.05025225505232811,0.004345592111349106,-0.03683653473854065,-0.049787234514951706,0.03853427991271019,0.09290067106485367,-0.011507832445204258,-0.02774045057594776,-0.10795174539089203,-0.06573013961315155,-0.00992271862924099,-0.06381035596132278,0.06643374264240265,0.06847920268774033,0.029337381944060326,-0.05312788859009743,0.07501406222581863,0.04939744994044304,0.020979924127459526,0.00006952152762096375,-0.03978632390499115,-0.03394271805882454,-0.06053851172327995,-0.031010504812002182,0.028806382790207863,-0.03833488002419472,0.0571318082511425,-0.004054917022585869,-0.006704652216285467,-0.022785555571317673,-0.060719650238752365,0.02236105129122734,0.018183955922722816,-0.011796471662819386,0.06434067338705063,-0.00407275278121233,0.041976287961006165,-0.07886125147342682,-0.12070608139038086,0.035664152354002,-0.028185566887259483,0.011524029076099396,-0.09938547760248184,0.06006120145320892,0.024231890216469765,-0.0509183295071125,-0.08789913356304169,-0.05864616483449936,-0.048635564744472504,-0.026294222101569176,-0.06000480800867081,0.050503820180892944,-0.06529414653778076,0.0027513543609529734,-0.06582250446081161,0.007457340136170387,-0.09415575861930847,-0.03190523386001587,-0.013674556277692318,-0.06906656920909882,-0.013166860677301884,0.003676443360745907,-0.018724169582128525,-0.01742914505302906,-0.01849745213985443,-2.3919488612023088e-8,0.039959948509931564,0.06713876873254776,-0.07914157211780548,-0.04675574228167534,0.03550272807478905,0.0078036608174443245,0.12108682841062546,-0.05301236733794212,0.048970457166433334,0.024041518568992615,0.010697675868868828,0.014950079843401909,0.07500458508729935,0.07656659185886383,0.10259458422660828,-0.04566633701324463,0.07843521982431412,-0.03500806912779808,-0.009328612126410007,0.009413588792085648,0.03960800915956497,0.08784911781549454,0.040750328451395035,-0.061085108667612076,-0.011123152449727058,0.011158911511301994,-0.020102227106690407,0.04604379087686539,0.0410490408539772,0.014954844489693642,0.00006915540870977566,0.005650966893881559,0.008436597883701324,-0.006806420627981424,-0.06397178024053574,-0.018975496292114258,0.04024483263492584,0.07405763119459152,-0.03165368735790253,0.015339476987719536,0.016020799055695534,0.08217412233352661,0.006451049353927374,0.018890123814344406,0.04660472646355629,0.020155103877186775,0.10875370353460312,-0.06539858132600784,-0.03078114427626133,-0.025981169193983078,-0.019973009824752808,0.02263539470732212,0.058621812611818314,0.023915939033031464,0.01643133908510208,-0.005301155149936676,-0.09849457442760468,0.05454058200120926,-0.05402307212352753,0.004316974896937609,0.004724504891782999,-0.03374094516038895,-0.12906990945339203,-0.02655860036611557]},{"text":"But I forget that I am moralizing in the most interesting part of my tale, and your looks remind me to proceed.","book":"1984","chapter":28,"embedding":[0.05736183002591133,0.009243126958608627,0.030161095783114433,0.011782265268266201,-0.019731419160962105,-0.02575519122183323,-0.04584575444459915,-0.0037238188087940216,-0.006908465642482042,0.04663870111107826,0.0017520688707008958,0.005597891751676798,-0.009080246090888977,0.0415523387491703,0.03144275024533272,-0.0013911518035456538,0.030852651223540306,-0.00555352633818984,-0.004009838681668043,0.0857439711689949,0.01697288267314434,0.020088504999876022,0.10219811648130417,-0.06883952021598816,-0.03646758571267128,-0.06741123646497726,0.09358460456132889,0.05150061100721359,-0.03888438642024994,-0.05629628896713257,-0.0873388797044754,0.04205608367919922,-0.030559899285435677,-0.029918396845459938,-0.034315358847379684,0.03730976581573486,0.006212696898728609,-0.03143453970551491,0.10901899635791779,0.017046241089701653,0.031482819467782974,0.010900123976171017,0.010890748351812363,0.04777592048048973,0.047269951552152634,-0.04939330741763115,-0.019936280325055122,-0.005785427056252956,-0.024424292147159576,-0.10085757821798325,-0.06343695521354675,0.03652796521782875,-0.053581930696964264,0.03211463242769241,-0.03170597180724144,0.06776639819145203,0.02765647880733013,0.0007427532109431922,0.06439092010259628,-0.013116590678691864,0.038670580834150314,0.04497045278549194,-0.004901523236185312,0.034916892647743225,-0.07002463191747665,0.0622410774230957,0.08167243003845215,0.02648257091641426,-0.07951226830482483,-0.007025397848337889,-0.011477354913949966,-0.04221868887543678,-0.05514989048242569,-0.020044591277837753,-0.04993690550327301,-0.009018134325742722,-0.0006236657500267029,-0.09662196040153503,0.03244335204362869,-0.036653753370046616,-0.09246303886175156,-0.03909909352660179,-0.057790689170360565,0.04348078742623329,-0.0805128663778305,-0.034282781183719635,0.021600695326924324,-0.07489894330501556,0.05749654769897461,0.028963370248675346,0.002476442139595747,-0.0620877742767334,-0.0056009357795119286,-0.05576678365468979,0.028350960463285446,0.028708530589938164,-0.07316118478775024,0.022689489647746086,-0.07911676168441772,0.01256383117288351,0.030823366716504097,-0.03079441748559475,0.0156259723007679,-0.011357150040566921,0.10548871010541916,0.027845598757267,-0.04887740686535835,-0.054949771612882614,-0.0022849326487630606,-0.048503898084163666,0.024304501712322235,0.06242669001221657,-0.01922231912612915,0.05274329334497452,0.1269989013671875,0.019594399258494377,0.05635523796081543,-0.004001610446721315,-0.019356518983840942,0.055530887097120285,0.05995221808552742,0.021705470979213715,-0.042454544454813004,0.13464611768722534,-0.03822309523820877,-0.15498240292072296,0.06482122093439102,-6.584520585871505e-33,-0.037982963025569916,-0.016559237614274025,-0.012214520946145058,0.001163396635092795,0.040187980979681015,-0.002241695998236537,-0.08974730223417282,0.02970786765217781,-0.07845793664455414,0.04864456504583359,0.017190169543027878,-0.0045837294310331345,-0.05151764675974846,0.04504239186644554,-0.14968997240066528,0.034786466509103775,0.0035164665896445513,-0.0033850548788905144,-0.006833808962255716,0.0040000081062316895,-0.048366304486989975,-0.05026440694928169,-0.00705553125590086,-0.022249622270464897,-0.10193842649459839,-0.09276415407657623,0.09558220207691193,-0.05976877734065056,0.02082180045545101,-0.000994209316559136,0.02981814555823803,0.07663700729608536,0.035134926438331604,-0.05077634006738663,-0.03309379890561104,0.07739679515361786,-0.0030888302717357874,-0.0781501904129982,0.02266758866608143,0.07079470157623291,-0.0165081936866045,0.056057337671518326,-0.03638002648949623,-0.01154639944434166,-0.007300843019038439,-0.00620129844173789,0.08650082349777222,-0.026912225410342216,-0.09396184980869293,-0.001057355315424502,-0.03154030442237854,0.013277346268296242,0.05984669178724289,-0.024217678233981133,-0.03389989212155342,-0.051688022911548615,0.019354822114109993,-0.019828060641884804,-0.02334139496088028,-0.0227899681776762,-0.03169863671064377,-0.07661351561546326,-0.04209483787417412,-0.020167862996459007,-0.05168682709336281,0.026011474430561066,0.007896526716649532,0.01685132458806038,-0.03058459237217903,-0.04586260765790939,-0.03245287761092186,0.017366966232657433,-0.027738234028220177,0.0853155180811882,-0.020334353670477867,0.05048496648669243,-0.0009419318521395326,-0.0347006618976593,0.05721336230635643,-0.0038634617812931538,0.10112924873828888,0.0716087743639946,-0.1270715743303299,0.03428308293223381,0.050477899610996246,-0.05699874833226204,0.09491629153490067,-0.11131447553634644,0.03430737927556038,0.026505662128329277,0.020433420315384865,0.026448741555213928,-0.01156856119632721,-0.051932040601968765,-0.03496997430920601,2.4055771899288235e-33,-0.0077657997608184814,-0.010100345127284527,0.015113129280507565,-0.04825916886329651,-0.0025043480563908815,-0.04009218513965607,-0.09979315102100372,0.009681585244834423,0.04603433609008789,-0.010613739490509033,-0.007982796058058739,-0.03284289687871933,-0.020172862336039543,-0.07861530780792236,0.1014280766248703,-0.04827478528022766,-0.027189500629901886,0.008198415860533714,-0.09444914013147354,0.042468711733818054,-0.08177308738231659,0.0699995905160904,0.0057342881336808205,-0.06469631940126419,0.05063468962907791,0.06592468172311783,0.07342370599508286,0.0531977154314518,0.06811398267745972,-0.020757513120770454,0.03302359953522682,-0.03382695093750954,-0.04103635251522064,-0.07545647025108337,0.010507991537451744,0.025837883353233337,0.030896374955773354,-0.08273204416036606,0.019987525418400764,-0.027928432449698448,-0.03182258456945419,-0.06305769085884094,-0.0049892510287463665,0.00011550603085197508,-0.055251408368349075,-0.11763390153646469,0.088848777115345,0.10313905030488968,0.00924565177410841,-0.008613995276391506,-0.02074326016008854,0.06274882704019547,0.0076003423891961575,-0.02851126156747341,0.0011447952128946781,-0.028488721698522568,0.0636138916015625,-0.0029402589425444603,0.035811878740787506,0.016652341932058334,-0.011209980584681034,0.09584271162748337,-0.016123859211802483,-0.00286360876634717,0.022501256316900253,-0.05275847762823105,-0.014989678747951984,-0.002190351253375411,-0.08954323083162308,-0.019934281706809998,0.02627835050225258,0.0325491838157177,-0.025451311841607094,-0.028008952736854553,0.08657560497522354,-0.05927344411611557,0.012188911437988281,0.00818367674946785,-0.012077364139258862,-0.08553864806890488,0.014227891340851784,-0.044782016426324844,0.07448434829711914,0.0062932465225458145,0.018706409260630608,-0.03251637890934944,-0.02691386453807354,0.04062165319919586,0.014752215705811977,-0.025789838284254074,-0.07058165222406387,0.02003796212375164,0.05618566647171974,0.017923571169376373,0.06357593089342117,-2.6488526927437306e-8,0.008958782069385052,-0.030344747006893158,0.07718025147914886,-0.004806086886674166,-0.011818023398518562,0.07719452679157257,-0.09050317108631134,0.02756319008767605,-0.10451938211917877,-0.02116340398788452,-0.016041528433561325,0.04893409088253975,0.03733709082007408,0.08281049132347107,-0.008290286175906658,0.06003202870488167,0.029612844809889793,-0.09082301706075668,-0.00143964565359056,0.02403387241065502,0.03259340301156044,0.006622491870075464,0.014871765859425068,-0.09731678664684296,-0.043433092534542084,0.08340362459421158,-0.014164600521326065,0.029964279383420944,-0.005910450592637062,0.06761276721954346,0.0502438060939312,-0.008787042461335659,-0.043120790272951126,-0.0019713002257049084,-0.039645399898290634,-0.05632704868912697,-0.009825064800679684,0.0351841039955616,0.09104802459478378,0.018603209406137466,0.047639358788728714,-0.050067633390426636,0.04798496142029762,0.14825643599033356,0.028797706589102745,-0.045210737735033035,0.10311006754636765,0.0008893032209016383,0.031947918236255646,0.0351174920797348,-0.05244257301092148,-0.011107712052762508,0.06896038353443146,0.043426528573036194,-0.02007494494318962,-0.05055263265967369,0.030498068779706955,0.0922793596982956,-0.015339415520429611,0.014487559907138348,0.06462524086236954,-0.07005085051059723,-0.10625196993350983,-0.06042768433690071]},{"text":"His limbs were in proportion, and I had selected his features as beautiful.","book":"1984","chapter":29,"embedding":[0.06627557426691055,0.08943217992782593,0.06487433612346649,0.01663544774055481,-0.007612648885697126,-0.024280959740281105,0.094566211104393,0.051634348928928375,-0.058175764977931976,0.013320536352694035,0.015396207571029663,-0.008723611012101173,-0.0022938780020922422,0.05043019354343414,0.03165430948138237,-0.0012015298707410693,0.02001975290477276,0.04360489174723625,-0.02718197926878929,0.07764384895563126,-0.06471043825149536,0.11006307601928711,0.05512246862053871,-0.0013144047698006034,-0.04056708887219429,-0.02570677362382412,0.01370070781558752,0.04562027379870415,0.07588343322277069,-0.09132671356201172,-0.05331260338425636,0.05507915839552879,-0.023065097630023956,-0.08254928886890411,-0.08557227998971939,-0.04210164397954941,-0.03266128525137901,-0.006044585723429918,-0.003398218424990773,0.013572010211646557,0.03510446846485138,0.029792632907629013,-0.03171152621507645,0.08516526222229004,-0.005057804752141237,-0.03105662763118744,-0.018132174387574196,-0.009130829945206642,0.013763592578470707,0.01988929510116577,-0.057317622005939484,-0.047365278005599976,-0.009487043134868145,-0.08018610626459122,-0.02952713519334793,0.004351312294602394,0.011103685945272446,-0.04497741162776947,0.03485659137368202,-0.03674233704805374,0.05295257270336151,0.08471903204917908,-0.006942859850823879,0.014741642400622368,0.020617695525288582,-0.0654391199350357,0.009707575663924217,-0.11212968081235886,0.04193862900137901,0.06764497607946396,0.07355130463838577,-0.017299989238381386,0.04557273909449577,-0.013118772767484188,-0.062034573405981064,-0.07889559864997864,-0.008632330223917961,0.004136063624173403,0.024229157716035843,-0.0099271135404706,-0.09007471054792404,0.023468999192118645,-0.018569016829133034,0.03840995579957962,0.002971916925162077,0.05178798362612724,-0.025207651779055595,-0.10467667877674103,-0.13948021829128265,0.03467278927564621,0.06324874609708786,-0.004484280478209257,-0.04502066969871521,-0.04768548905849457,0.002519296482205391,0.013872342184185982,-0.012161998078227043,0.01837082952260971,0.023616990074515343,0.007661136332899332,0.06301611661911011,-0.05322830379009247,0.07699239253997803,0.11659673601388931,0.002568420022726059,-0.0667746365070343,-0.004694515839219093,-0.023870915174484253,0.027289487421512604,-0.009724549017846584,-0.0013428999809548259,-0.055007439106702805,0.024540003389120102,0.03475670889019966,-0.006331231910735369,-0.025865670293569565,-0.13252614438533783,0.018448451533913612,-0.020179301500320435,0.04423936456441879,0.028056956827640533,0.0647619217634201,-0.010867951437830925,0.02569030411541462,-0.04454671964049339,-0.049837660044431686,0.025963284075260162,-4.142710986630492e-33,0.0005055551882833242,-0.018485751003026962,0.04363295063376427,-0.002677448093891144,0.04088064655661583,0.017961297184228897,-0.053757037967443466,-0.016885483637452126,-0.06922049820423126,-0.022872263565659523,-0.037785328924655914,0.010409645736217499,-0.012282295152544975,0.07456252723932266,-0.10452637821435928,0.051045335829257965,-0.016250047832727432,0.04491100832819939,0.027798915281891823,0.026096854358911514,-0.02109450101852417,0.01408200804144144,0.02099779061973095,-0.03361104056239128,-0.04464048519730568,0.02666887827217579,-0.02433486096560955,-0.028818732127547264,-0.05108975991606712,0.0233268141746521,-0.007363507058471441,0.09479458630084991,0.036365579813718796,0.004642036277800798,-0.01997530087828636,-0.044283684343099594,-0.02001255378127098,-0.09921610355377197,-0.026159916073083878,0.09899876266717911,0.1230013370513916,-0.006090989802032709,0.020033376291394234,0.009593107737600803,-0.07506761699914932,0.04975514113903046,0.02896101213991642,0.059595737606287,-0.07963765412569046,-0.022253161296248436,0.024142421782016754,0.06728481501340866,0.12110607326030731,-0.02933945320546627,-0.02467692643404007,0.033798687160015106,-0.03340955451130867,0.02707574889063835,-0.03600721433758736,0.07847697287797928,0.000618938822299242,0.028243765234947205,0.048158083111047745,-0.058129824697971344,-0.03096386045217514,-0.07209663838148117,-0.05158622935414314,0.027529573068022728,-0.03965955227613449,0.0014186479384079576,-0.0683678388595581,0.0173149723559618,0.021796273067593575,-0.039978865534067154,-0.023000670596957207,-0.04764644801616669,-0.031097054481506348,0.05715559795498848,-0.06400880962610245,-0.03264690190553665,-0.038910605013370514,0.10996812582015991,-0.05905541405081749,-0.018920712172985077,0.009946328587830067,-0.03899103030562401,0.07636833190917969,-0.100086510181427,-0.044391561299562454,0.0389406755566597,-0.0031782956793904305,-0.026596669107675552,0.026606224477291107,-0.085205078125,-0.04345580190420151,1.061792455687094e-33,-0.04716329649090767,0.028949221596121788,0.05784439668059349,0.014417498372495174,-0.032469041645526886,-0.005766963120549917,-0.05062926560640335,0.08344250172376633,0.011005891487002373,0.004373277071863413,0.09395871311426163,0.0643404945731163,-0.021344929933547974,-0.1588238924741745,-0.024162806570529938,0.036248963326215744,-0.08983873575925827,-0.0153344189748168,0.004400738049298525,0.055899929255247116,0.09104372560977936,0.04005856066942215,0.06132863461971283,-0.05722743272781372,-0.12470541149377823,0.0519808754324913,-0.007418231572955847,-0.05826336890459061,-0.04145035147666931,-0.010789693333208561,0.030345415696501732,-0.07388652116060257,-0.08027134090662003,-0.04382677376270294,-0.0019246769370511174,0.0012039487482979894,-0.09721814095973969,0.01646961085498333,0.049559980630874634,0.08175913244485855,0.005176707170903683,-0.06433701515197754,0.06421469897031784,0.06561426818370819,0.09845207631587982,-0.12867790460586548,-0.00399105716496706,0.005005628801882267,0.014043412171304226,0.0009176420280709863,-0.11192439496517181,0.09062331914901733,0.011019514873623848,0.012241040356457233,-0.0262333694845438,-0.01785960979759693,0.046271078288555145,-0.025323186069726944,0.11943566799163818,0.07512731105089188,-0.12197946012020111,-0.029968582093715668,-0.030144652351737022,-0.037055253982543945,0.004266354721039534,0.02277173288166523,0.008988953195512295,-0.026473646983504295,-0.07980500161647797,-0.03922199085354805,-0.035925306379795074,-0.01473204419016838,0.03246932104229927,0.08419094979763031,0.015260151587426662,-0.036663636565208435,0.005779692437499762,0.02706214413046837,0.05463710054755211,0.011206857860088348,-0.033117614686489105,-0.06810103356838226,0.000731718260794878,0.035031240433454514,0.008135419338941574,0.09807685017585754,-0.05751510709524155,-0.06907112896442413,0.004703951999545097,-0.01829078420996666,-0.0009865877218544483,-0.017100460827350616,0.01815136894583702,0.005109440069645643,0.054124221205711365,-2.038696855777289e-8,-0.08228904008865356,-0.0029808117542415857,0.015083370730280876,0.026861578226089478,0.008827817626297474,0.06417939066886902,-0.07447430491447449,0.02681882306933403,-0.08395492285490036,0.08687266707420349,-0.030140595510601997,0.032345034182071686,0.015226010233163834,0.08517497032880783,0.08459097146987915,-0.055636148899793625,0.017000507563352585,0.00850497093051672,-0.02899971231818199,0.014225362800061703,0.016374852508306503,0.013363479636609554,0.05239756777882576,-0.008416340686380863,0.0016520223580300808,-0.04545658826828003,-0.09510316699743271,-0.023165589198470116,-0.07998395711183548,0.06438587605953217,0.07976564019918442,0.03407102823257446,-0.020558277145028114,-0.033076610416173935,0.013564305379986763,-0.011599510908126831,-0.0530666708946228,-0.030030423775315285,0.021267162635922432,-0.01391281932592392,0.03575644642114639,0.04201379045844078,0.023240292444825172,0.03299722075462341,0.04090776666998863,0.004308936186134815,0.10634266585111618,0.009411083534359932,0.029087388888001442,0.03594038635492325,-0.033078476786613464,0.002919204067438841,0.05061986297369003,0.052508991211652756,0.004497235640883446,-0.09891098737716675,-0.006444083992391825,0.018501587212085724,-0.04801148176193237,0.07722941786050797,0.06572722643613815,0.0075721293687820435,-0.09792458266019821,-0.05559094250202179]},{"text":"I started from my sleep with horror; a cold dew covered my forehead, my teeth chattered, and every limb became convulsed; when, by the dim and yellow light of the moon, as it forced its way through the window shutters, I beheld the wretch—the miserable monster whom I had created.","book":"1984","chapter":29,"embedding":[-0.016104143112897873,0.02674293890595436,0.043604373931884766,0.12410859763622284,0.029643012210726738,-0.039864324033260345,0.07240281999111176,0.02429785765707493,0.031069248914718628,-0.029422836378216743,-0.04418470337986946,-0.051274653524160385,-0.01197422668337822,0.014480245299637318,-0.060140322893857956,0.03336241468787193,-0.017244404181838036,0.0489160381257534,-0.010282007977366447,0.014003080315887928,0.00276511674746871,0.06881818920373917,0.030303239822387695,0.006743848789483309,-0.0451117679476738,0.05324830859899521,0.045090481638908386,-0.029366301372647285,0.0011909414315596223,-0.05663934350013733,-0.05702916905283928,-0.00935953576117754,-0.13886848092079163,-0.03330894187092781,0.05708564817905426,-0.0008003541734069586,0.02833743579685688,-0.07474319636821747,0.008031985722482204,0.008774567395448685,0.029935715720057487,0.027770977467298508,-0.02648027241230011,-0.02812746912240982,-0.06113450229167938,-0.01435259822756052,-0.05504453927278519,0.009659117087721825,0.012757190503180027,-0.06698894500732422,-0.0030554616823792458,-0.03185219317674637,0.011746824719011784,0.040401801466941833,-0.029351646080613136,-0.021067321300506592,-0.005097531247884035,0.015919474884867668,0.027608241885900497,0.026312243193387985,-0.05564793944358826,0.07082073390483856,0.056058403104543686,0.03771659731864929,0.035005416721105576,0.00008806920232018456,-0.07856547087430954,-0.07694661617279053,0.04337942227721214,0.04335254430770874,-0.07600724697113037,-0.06534764170646667,-0.017346113920211792,-0.03894009441137314,-0.02934667095541954,-0.04691872373223305,0.089016854763031,-0.07378370314836502,0.05433925241231918,0.03830297663807869,0.035052698105573654,0.04506348446011543,0.07985039055347443,0.026143575087189674,0.04382077232003212,-0.027352606877684593,0.07200899720191956,0.061250485479831696,-0.031727612018585205,0.1187988668680191,-0.04342024028301239,-0.05746408924460411,-0.0605061799287796,0.048867061734199524,0.022409602999687195,-0.016630668193101883,-0.040790919214487076,0.04264974594116211,-0.06776650249958038,0.058552008122205734,-0.03825553506612778,-0.06064758077263832,0.021870620548725128,0.055965568870306015,0.0499894954264164,-0.016322534531354904,-0.05903181433677673,-0.007201692089438438,-0.00457235099747777,-0.04228971153497696,-0.06070157140493393,-0.019551729783415794,0.06962989270687103,0.03919311612844467,0.049546074122190475,-0.07400571554899216,-0.0997694805264473,0.061798106878995895,-0.008542141877114773,0.052940670400857925,0.12979376316070557,0.010163119062781334,-0.06526784598827362,-0.03038928285241127,-0.01653546653687954,-0.02345910668373108,-0.05561494827270508,-2.3133574540549073e-33,0.10819835215806961,-0.023108210414648056,-0.003301117103546858,-0.014972776174545288,0.07950600236654282,-0.03588460758328438,-0.11334613710641861,0.11365381628274918,-0.02950560487806797,0.022439811378717422,-0.0031576177570968866,-0.06792858988046646,-0.041519951075315475,0.012621683068573475,0.014723213389515877,0.024013986811041832,-0.04815210774540901,0.007090529892593622,-0.009900055825710297,0.04629844054579735,-0.11724366247653961,0.01219409704208374,-0.001231083762831986,-0.004619927611202002,-0.038400158286094666,0.031120700761675835,-0.07516875863075256,-0.028958316892385483,0.015528564341366291,0.054727163165807724,0.0042566945776343346,0.006147103384137154,0.0607244037091732,-0.015159884467720985,-0.01163573283702135,0.06142837554216385,0.011913269758224487,-0.043427854776382446,-0.07869113981723785,-0.029893802478909492,0.006056699901819229,0.04008960723876953,-0.02719206176698208,-0.008186510764062405,0.02373984083533287,0.03618709370493889,0.03047262877225876,0.08196667581796646,-0.06343294680118561,0.028658539056777954,0.015992287546396255,0.04538987949490547,0.026579217985272408,0.01705431565642357,0.009347466751933098,0.04576241970062256,-0.0033932961523532867,-0.0810297355055809,0.028429945930838585,0.08570707589387894,-0.05897311866283417,0.012298095040023327,0.07412023842334747,-0.05319654196500778,0.031090959906578064,-0.10738073289394379,-0.013858339749276638,-0.014676716178655624,-0.1489143669605255,-0.10331958532333374,-0.07153146713972092,-0.011646646074950695,-0.018674928694963455,-0.019072648137807846,-0.028841117396950722,-0.06182702258229256,0.08420992642641068,-0.00606491370126605,-0.15770624577999115,-0.04187528043985367,0.10836300253868103,0.0014054510975256562,0.03882583603262901,-0.06990959495306015,0.005051895510405302,0.004646885674446821,-0.008573452942073345,-0.06557609140872955,-0.060783982276916504,0.0497514009475708,-0.010150603950023651,-0.04161735996603966,0.053300052881240845,-0.0579809732735157,-0.10388567298650742,9.045202195901992e-34,-0.013982132077217102,-0.07709961384534836,-0.04589579999446869,-0.05769376829266548,-0.02997705526649952,0.02388763427734375,-0.08035939186811447,0.05898541957139969,-0.09024906903505325,0.051174767315387726,0.05470110848546028,0.01826968975365162,0.0014421935193240643,-0.044517770409584045,0.042168375104665756,-0.0886102020740509,0.01317691896110773,0.029712537303566933,-0.02740447223186493,0.043396126478910446,0.05052618309855461,0.059565164148807526,-0.03381137177348137,-0.10938577353954315,0.031581807881593704,0.060616105794906616,0.07059095054864883,0.06292672455310822,-0.03836677595973015,-0.008670777082443237,0.0037797049153596163,0.03043064847588539,-0.03783613443374634,-0.0833200141787529,0.022552331909537315,0.10436376929283142,0.013806033879518509,-0.08939076960086823,-0.048521123826503754,-0.11084946990013123,0.013337654061615467,-0.0058102416805922985,0.0678839161992073,0.020462533459067345,0.05513349547982216,0.03193962574005127,-0.03560508042573929,0.0013217160012573004,-0.018631519749760628,0.07280178368091583,-0.03915037214756012,0.04607923701405525,-0.018645668402314186,0.0011700877221301198,-0.07869870960712433,-0.016902608796954155,-0.06575033068656921,-0.08619752526283264,0.0642152950167656,0.00476502813398838,-0.011702517978847027,0.02449633739888668,-0.08461952954530716,0.05395190790295601,0.07099846005439758,-0.018187131732702255,-0.03740977868437767,0.062082674354314804,0.01953445002436638,-0.012604106217622757,0.02196444571018219,-0.00023515115026384592,-0.02871207520365715,0.09688936173915863,0.028634676709771156,-0.010130232200026512,-0.0015925384359434247,-0.014567926526069641,-0.040759164839982986,0.045955732464790344,-0.032960545271635056,0.03597240522503853,0.08960366249084473,0.023838980123400688,0.037958934903144836,-0.05431224778294563,-0.04208950698375702,0.026801584288477898,-0.07059433311223984,0.005919442046433687,-0.05140652507543564,0.006543813738971949,-0.011967947706580162,0.018504347652196884,0.03992285206913948,-4.022328781161377e-8,-0.01324721984565258,-0.06300584226846695,0.025332169607281685,0.023768942803144455,0.058272819966077805,-0.0356791727244854,0.051366809755563736,0.04560503363609314,-0.1306961327791214,-0.021346427500247955,-0.07066919654607773,0.0206284299492836,0.07165783643722534,0.04048164188861847,0.058772336691617966,0.05820189788937569,0.022820401936769485,-0.017142754048109055,-0.012901672162115574,-0.06239276006817818,0.029813239350914955,0.031942881643772125,0.06539494544267654,0.006213290151208639,0.023384228348731995,0.0334525927901268,0.004479121416807175,0.022759631276130676,-0.06406649202108383,0.07402795553207397,0.019825654104351997,0.07774364203214645,0.012145559303462505,-0.03185718134045601,-0.09658820182085037,-0.01153613068163395,-0.017874082550406456,-0.007161595392972231,0.021590331569314003,-0.01829649694263935,0.06800494343042374,0.05969696864485741,0.03575591742992401,0.05248827487230301,-0.023652752861380577,-0.031041642650961876,0.10385182499885559,-0.0432034507393837,0.049249496310949326,0.055277206003665924,0.022285567596554756,0.059115566313266754,0.04169093817472458,0.06081480160355568,0.0025184692349284887,-0.07570988684892654,0.052519623190164566,0.02495892159640789,-0.1010974794626236,-0.030513541772961617,0.06378471851348877,-0.01747952774167061,-0.020502787083387375,0.03509047254920006]},{"text":"Morning, dismal and wet, at length dawned and discovered to my sleepless and aching eyes the church of Ingolstadt, its white steeple and clock, which indicated the sixth hour.","book":"1984","chapter":30,"embedding":[-0.022357672452926636,0.09262902289628983,0.0592045895755291,0.11941235512495041,-0.02668358013033867,0.022372495383024216,-0.01623886451125145,0.02346760593354702,0.05007277801632881,-0.12671591341495514,-0.1606120616197586,-0.039420295506715775,-0.03633048012852669,-0.0553659163415432,-0.07487307488918304,0.025274325162172318,-0.06797046214342117,0.024699712172150612,-0.015465677715837955,0.0046947309747338295,-0.025290587916970253,-0.03308975324034691,0.007995005697011948,0.054176777601242065,0.07651294022798538,0.06039688363671303,0.07268638908863068,-0.01701071485877037,0.039268556982278824,-0.057974204421043396,-0.018438957631587982,0.020577849820256233,0.03260248526930809,0.009488045237958431,0.004459159914404154,0.055101845413446426,0.13303223252296448,-0.01215842179954052,0.0038693067617714405,0.022707628086209297,0.0935678705573082,0.029427284374833107,-0.0006791091291233897,0.04624122753739357,-0.003378409193828702,0.10491147637367249,0.004385931883007288,0.0075027053244411945,-0.014658407308161259,0.044046662747859955,-0.03847167640924454,-0.026700826361775398,-0.03868246078491211,-0.0032472601160407066,-0.03905091807246208,0.0975818857550621,-0.037463705986738205,-0.03150596469640732,0.08786673843860626,0.04500747472047806,-0.05832594633102417,0.02611587382853031,-0.028043515980243683,0.07164929062128067,0.05378803238272667,0.06869202107191086,-0.0973794087767601,-0.030626947060227394,0.013626597821712494,0.025771141052246094,-0.004901409614831209,0.02638678252696991,0.04928816482424736,-0.06779858469963074,-0.09456636011600494,-0.08646713942289352,-0.005163633730262518,0.006402391009032726,0.029671648517251015,-0.07106789946556091,-0.016864171251654625,0.0020307591184973717,0.0008887231815606356,0.02338097244501114,-0.03601815924048424,0.02104037068784237,0.08969039469957352,0.051862362772226334,0.01984667032957077,-0.06160169839859009,0.03661740571260452,-0.05869487300515175,-0.1732531487941742,-0.0619015172123909,0.02454661764204502,0.019990675151348114,-0.011306917294859886,0.02845698408782482,-0.004538970533758402,0.06286074966192245,0.030389094725251198,0.033489931374788284,-0.01807977631688118,0.07897532731294632,0.07848957926034927,-0.0769565999507904,-0.03685178980231285,0.07762262225151062,-0.05968046933412552,-0.07128864526748657,0.05526336282491684,-0.05611105635762215,0.10188309848308563,0.0018888204358518124,0.020015714690089226,0.009465867653489113,-0.009186963550746441,0.009973064996302128,0.008387408219277859,0.05431485176086426,0.03637102618813515,0.045270610600709915,0.07308068871498108,-0.00565685611218214,-0.023813936859369278,0.045630842447280884,0.06557614356279373,-2.7545919319345227e-33,-0.012674015946686268,-0.06507158279418945,0.021522685885429382,-0.0032086498104035854,0.07794536650180817,-0.030558576807379723,-0.07745660096406937,0.0011848731664940715,-0.04712114855647087,-0.02745175175368786,0.017696524038910866,-0.0258173868060112,-0.028027862310409546,-0.023674461990594864,-0.05488583445549011,-0.03606070950627327,0.0467875674366951,0.02611462213099003,-0.008436820469796658,-0.03490760922431946,-0.011243564076721668,-0.039501920342445374,-0.03019864857196808,-0.003956152126193047,-0.06490693241357803,-0.024449387565255165,0.04622923955321312,0.008653901517391205,0.008372469805181026,0.012599760666489601,0.05951555073261261,0.026459984481334686,0.043762147426605225,0.023642336949706078,0.013527938164770603,0.05602649226784706,0.01837978884577751,-0.03354658931493759,0.002694032620638609,0.03574027493596077,0.005118039436638355,-0.010539179667830467,0.03252137079834938,-0.014945203438401222,0.03509354218840599,0.021995553746819496,0.01484706811606884,-0.014933177269995213,0.0339239276945591,-0.0752890333533287,-0.056585147976875305,0.026522662490606308,0.09391477704048157,-0.09215539693832397,0.023304317146539688,0.05895692855119705,0.034049127250909805,0.08208432048559189,-0.0000018242947135149734,0.10541032254695892,-0.021245716139674187,0.07401822507381439,-0.006961210630834103,0.0016088025877252221,-0.06211237236857414,-0.06345655769109726,-0.05140552297234535,0.02759629860520363,0.02700008824467659,-0.008959528058767319,-0.03700362145900726,-0.057042788714170456,0.05363636091351509,0.07182002067565918,-0.037350285798311234,-0.043494537472724915,0.08849293738603592,-0.04869992285966873,-0.0387459434568882,-0.008727115578949451,0.06420193612575531,-0.06573565304279327,-0.0007638216484338045,0.020417673513293266,0.01491009071469307,0.002710697241127491,0.03792297840118408,-0.07095661759376526,-0.09833092987537384,0.00018428824841976166,-0.07461608946323395,0.06422127783298492,0.0574832409620285,-0.050418343394994736,-0.04278411343693733,6.139405874608222e-34,0.10119577497243881,-0.11686168611049652,-0.03196460381150246,0.061004914343357086,-0.01549849845468998,0.016376709565520287,0.0012734511401504278,0.06736361980438232,0.0034769249614328146,0.03218989074230194,0.04565249755978584,0.039488472044467926,-0.02168940007686615,-0.06067120283842087,0.043441761285066605,-0.03773649409413338,0.06917478144168854,0.0086760139092803,0.03170132264494896,0.036602653563022614,-0.02615400031208992,-0.021545806899666786,-0.10437599569559097,-0.111835777759552,0.06618450582027435,0.07436007261276245,0.12764011323451996,-0.024153225123882294,-0.07064500451087952,-0.04172177240252495,-0.1058351993560791,-0.023529982194304466,-0.028786350041627884,-0.01738605462014675,-0.04112238436937332,0.059651970863342285,0.0722399652004242,-0.06293831020593643,-0.041651029139757156,-0.05680299550294876,-0.09318774938583374,0.012628061696887016,0.008980341255664825,0.0016956651816144586,0.05032302811741829,0.027633415535092354,-0.0717499852180481,0.09827979654073715,-0.06013704836368561,0.05307600647211075,0.018142059445381165,-0.09629830718040466,0.011341295205056667,0.0370379276573658,-0.04201933369040489,-0.06574641913175583,-0.03291264921426773,-0.11831457912921906,-0.0008173140813596547,0.05072641000151634,-0.008538641035556793,-0.009550066664814949,0.001806482789106667,-0.03290010243654251,0.010734155774116516,-0.02635965496301651,-0.01466020755469799,0.08605848997831345,-0.060297105461359024,-0.03171640634536743,0.014946617186069489,-0.012281965464353561,-0.0875491350889206,0.003516393480822444,0.010743701830506325,0.06591790169477463,0.029308250173926353,0.08708920329809189,-0.050836753100156784,-0.043743688613176346,-0.015827957540750504,0.05002645403146744,-0.05034472048282623,0.005264163948595524,-0.05108662322163582,-0.06384344398975372,0.0691656768321991,0.00048325382522307336,0.013881826773285866,-0.02333158068358898,-0.02964727394282818,-0.018247956410050392,-0.050641272217035294,0.045277904719114304,0.004519337322562933,-2.8188479106461273e-8,0.018949316814541817,-0.026869647204875946,-0.039463452994823456,-0.045693378895521164,0.06182431802153587,-0.08295049518346786,0.08661998808383942,0.03750390186905861,-0.11162036657333374,-0.021388433873653412,-0.04027050733566284,0.02447434701025486,-0.000025244358766940422,0.008456027135252953,0.004918788094073534,-0.012890513986349106,0.01108818780630827,-0.11922567337751389,-0.055549293756484985,-0.0226336270570755,0.06438200920820236,0.011708538047969341,0.0836959257721901,-0.05255335569381714,-0.024111652746796608,0.02098214067518711,-0.02604944258928299,0.03103286400437355,-0.00409473292529583,0.014361192472279072,0.04935307055711746,0.055920056998729706,-0.06916109472513199,-0.020559625700116158,-0.0031691889744251966,0.016765274107456207,-0.061727095395326614,0.022965095937252045,-0.019540103152394295,0.017669854685664177,-0.005344698205590248,-0.02168196812272072,0.035513702780008316,-0.04122908040881157,-0.030548952519893646,-0.04814951866865158,-0.0038539490196853876,0.02618134766817093,-0.008273069746792316,0.07265811413526535,0.00079488439951092,0.06688842177391052,0.07531004399061203,0.036967933177948,0.028329918161034584,-0.02260739356279373,0.012485218234360218,-0.10938143730163574,-0.10159501433372498,0.02107914350926876,0.04677847772836685,0.022617103531956673,-0.009358647279441357,-0.034471988677978516]},{"text":"By the by, I mean to lecture you a little upon their account myself.","book":"1984","chapter":30,"embedding":[-0.022093098610639572,0.019158998504281044,0.0026730792596936226,-0.0004660883278120309,-0.03234326094388962,-0.027201365679502487,0.05235646665096283,-0.03829693794250488,0.024098318070173264,0.023416858166456223,0.01932419091463089,0.0969468206167221,0.0417553149163723,-0.11001088470220566,-0.03590741381049156,-0.034097928553819656,-0.07717259228229523,-0.017938809469342232,0.06146187707781792,-0.00940106064081192,0.018945762887597084,0.036887288093566895,0.008593522012233734,0.04490853473544121,0.061333440244197845,-0.04885233938694,-0.03895214572548866,-0.004187350161373615,0.05644671618938446,0.0008607157506048679,-0.06712879985570908,0.07719365507364273,0.024183006957173347,0.03404409438371658,-0.13223542273044586,0.0051390640437603,0.05790666490793228,0.012447805143892765,0.06520367413759232,-0.0014000886585563421,0.013514670543372631,0.053421732038259506,0.06805212795734406,-0.000037790861824760213,-0.012381784617900848,0.002598665887489915,-0.029711373150348663,0.01745026372373104,-0.05144571140408516,0.015890154987573624,-0.08311081677675247,0.012499287724494934,0.01119927316904068,-0.0026136431843042374,-0.03999512270092964,-0.009699627757072449,-0.045229099690914154,-0.00927948858588934,-0.027523618191480637,0.0046830251812934875,-0.040326982736587524,-0.02104087732732296,-0.08701864629983902,0.1272260844707489,0.020822517573833466,0.004517949651926756,-0.00430024741217494,0.09284665435552597,-0.0655287355184555,-0.01565048284828663,-0.02829885110259056,-0.05703720822930336,-0.009392082691192627,0.02358992211520672,0.05163860693573952,-0.04453032463788986,-0.011273197829723358,0.06224185973405838,0.05354301258921623,-0.02766890823841095,-0.013985168188810349,0.09992224723100662,-0.021595966070890427,-0.05012001097202301,0.05037913843989372,-0.07437986880540848,0.06612412631511688,-0.008489662781357765,0.07404858618974686,-0.0031645202543586493,0.02537817694246769,-0.023900628089904785,-0.026646729558706284,-0.04941970854997635,-0.024424172937870026,-0.024295154958963394,-0.000909886381123215,0.04145115241408348,0.026683853939175606,0.08275987207889557,-0.0079422015696764,0.02490505762398243,-0.11796072870492935,-0.03538401424884796,-0.008779716677963734,-0.008742707781493664,-0.07880590111017227,-0.009011885151267052,0.036314837634563446,-0.0478498637676239,-0.0034009695518761873,-0.0011114096269011497,0.014283902943134308,0.04480360820889473,0.11722049862146378,-0.011134985834360123,0.053666852414608,0.07141329348087311,0.0805877298116684,-0.06914468854665756,0.01628602296113968,0.05368261784315109,0.004783863201737404,0.08327023684978485,-0.050910886377096176,0.03329369053244591,-0.08305107057094574,-7.057651184605721e-33,0.03156352788209915,0.053490884602069855,0.03862958773970604,-0.003538632532581687,-0.023122049868106842,-0.030811598524451256,-0.08788292109966278,-0.0006125393556430936,0.01832483895123005,0.0527908131480217,0.11531161516904831,0.04691801220178604,0.10211537778377533,-0.0219588503241539,-0.03435120731592178,-0.042456358671188354,-0.05595501512289047,0.01792731136083603,0.0027126134373247623,-0.035475488752126694,0.004485259298235178,0.018970318138599396,0.015987519174814224,0.02142312563955784,0.049751222133636475,-0.05130062624812126,-0.07354875653982162,0.011631572619080544,0.06897459179162979,0.07280901819467545,0.028905481100082397,-0.06592801213264465,-0.0650135725736618,-0.03757753223180771,0.0054255020804703236,0.02596254087984562,0.017679652199149132,0.02336650714278221,-0.012755979783833027,0.01191876269876957,0.035310544073581696,0.01921117678284645,0.04180367663502693,-0.03558271750807762,-0.07127483934164047,0.08863221853971481,0.025984201580286026,0.0076920269057154655,0.019846828654408455,0.044407837092876434,-0.09209459275007248,-0.05431675910949707,-0.08417581766843796,0.016260547563433647,0.04117337986826897,0.021838927641510963,-0.054174426943063736,0.04969025030732155,-0.013952475041151047,-0.014131559059023857,-0.00980413518846035,0.07118740677833557,-0.004293560981750488,0.07252981513738632,-0.04557768255472183,-0.014253820292651653,-0.018161632120609283,0.020177390426397324,0.006275394931435585,0.01055443100631237,-0.0145961232483387,0.015488801524043083,-0.07942508906126022,0.02659274823963642,-0.031111085787415504,-0.005058664828538895,0.00995605904608965,-0.007602064870297909,0.05454213544726372,0.014418374747037888,0.08872655779123306,0.005894974339753389,-0.012922906316816807,0.026165690273046494,-0.048695240169763565,-0.012134958989918232,0.09166750311851501,-0.0031086914241313934,0.04885658994317055,-0.039884790778160095,-0.06146513670682907,0.053431134670972824,0.07665666192770004,-0.05770968645811081,-0.05211516469717026,3.168793713165072e-33,-0.020314672961831093,-0.013157259672880173,0.054751504212617874,0.008252336643636227,-0.040264442563056946,-0.045290593057870865,-0.004694228060543537,-0.019521215930581093,0.016624152660369873,-0.03158953785896301,-0.05815232917666435,-0.007635975256562233,-0.13947944343090057,0.00941094197332859,0.07419179379940033,-0.10684046149253845,0.08982563018798828,-0.09341840445995331,-0.11021539568901062,-0.07552552968263626,-0.05616888403892517,0.12305984646081924,0.03321104869246483,-0.031712062656879425,-0.01677071675658226,0.05652739107608795,0.07887770235538483,0.05586301162838936,0.008879739791154861,-0.06661231815814972,0.040995560586452484,0.0023208544589579105,-0.11903054267168045,-0.04059024527668953,-0.06118685379624367,-0.03704814612865448,-0.05058496445417404,0.03604012355208397,-0.0789005309343338,0.0018142086919397116,0.004820817615836859,0.001967386808246374,-0.07703816145658493,-0.017730791121721268,0.049347300082445145,-0.09489744156599045,0.06743796169757843,-0.023702802136540413,0.041861265897750854,0.0720924362540245,-0.05235566571354866,-0.04297000914812088,0.00997100118547678,-0.017669981345534325,-0.06263237446546555,-0.0459228940308094,0.1150766983628273,0.009382953867316246,0.040495309978723526,-0.0955599918961525,0.002235074993222952,0.029142562299966812,0.028533510863780975,-0.003804357023909688,-0.013224443420767784,-0.06118268147110939,-0.07230676710605621,0.026693012565374374,0.10215472429990768,-0.032101109623909,-0.02147958241403103,-0.03504907339811325,-0.08290896564722061,-0.1021391823887825,-0.013212038204073906,0.07632134109735489,-0.010780038312077522,-0.031153010204434395,-0.03905169293284416,-0.15360711514949799,-0.008441534824669361,-0.014545172452926636,0.04022492468357086,0.07621044665575027,0.0027360536623746157,0.008436501026153564,0.06237836927175522,-0.02709919773042202,0.031967900693416595,0.009442554786801338,0.0011971802450716496,-0.04200994595885277,0.019457615911960602,-0.03197585791349411,-0.04252803698182106,-2.810375399064924e-8,0.0030844726134091616,-0.023884626105427742,0.08186221867799759,0.05717279016971588,0.03493698686361313,0.0581790991127491,0.004676843993365765,0.01699197106063366,-0.03240393474698067,0.06173476204276085,0.03566362336277962,0.015493770129978657,0.03433120623230934,0.0035726565402001143,0.06431980431079865,-0.006191350053995848,-0.00020077482622582465,-0.08480004966259003,-0.11109078675508499,-0.12460514158010483,-0.014356297440826893,0.01379174180328846,0.04575265571475029,-0.019299950450658798,-0.04536144435405731,0.08643082529306412,0.040647950023412704,0.01906147226691246,0.027152685448527336,-0.00956021249294281,-0.0014475060161203146,0.004847328178584576,-0.08237535506486893,-0.00975592527538538,0.10206682980060577,-0.07224694639444351,-0.044610314071178436,0.004128266591578722,0.08292588591575623,-0.006785433739423752,-0.1159844696521759,-0.01634358800947666,0.0618143267929554,0.15018686652183533,0.02597724087536335,-0.028365960344672203,0.009911020286381245,-0.026626579463481903,0.038506947457790375,-0.02405565418303013,0.004009181167930365,0.0457075759768486,0.014414433389902115,0.03342071548104286,-0.00563329691067338,0.03101056069135666,0.027250397950410843,0.0272302757948637,-0.13562774658203125,-0.03543877229094505,0.028391284868121147,0.0020462481770664454,-0.05199847370386124,-0.00866849534213543]},{"text":"It was not joy only that possessed me; I felt my flesh tingle with excess of sensitiveness, and my pulse beat rapidly.","book":"1984","chapter":31,"embedding":[0.030935138463974,0.06354150176048279,0.021595120429992676,0.02707420475780964,0.039937686175107956,-0.03989848867058754,0.08234556764364243,0.05944935977458954,-0.0015145923243835568,-0.04951245337724686,0.040688227862119675,-0.047637104988098145,0.07619503140449524,-0.03004506230354309,0.05217549949884415,-0.014942730776965618,0.06419550627470016,-0.050789397209882736,-0.017544452100992203,0.08450642973184586,-0.011666158214211464,0.06720628589391708,-0.033597853034734726,-0.018552549183368683,-0.06557940691709518,0.049884237349033356,0.027754735201597214,0.009262437000870705,-0.010702799074351788,-0.04056034982204437,-0.03805653005838394,-0.03307482972741127,0.02054602839052677,0.02817618101835251,-0.009194320999085903,-0.010346617549657822,-0.06738756597042084,-0.060880232602357864,0.009025635197758675,-0.010212497785687447,0.04716286063194275,-0.03401016816496849,0.041046131402254105,0.01814764365553856,0.06679309904575348,-0.0009388296748511493,0.025956720113754272,-0.009125541895627975,0.021058740094304085,0.016806865110993385,-0.008940914645791054,0.009176969528198242,0.001377498498186469,-0.012784287333488464,-0.047995202243328094,-0.024456968531012535,-0.020923569798469543,-0.016159478574991226,-0.03695456683635712,-0.019237514585256577,-0.0916983112692833,0.07882122695446014,0.09003730863332748,-0.038457706570625305,0.02470286749303341,-0.07121314853429794,0.03339958190917969,-0.01825641840696335,0.02955300360918045,0.031161095947027206,0.0972689688205719,-0.0342482291162014,0.022539673373103142,-0.02565721608698368,-0.04023389145731926,-0.007147100754082203,-0.05693705007433891,-0.05336899682879448,0.0014870183076709509,0.04000076651573181,0.02215692587196827,-0.03793371841311455,-0.09768854826688766,-0.010538224130868912,-0.06355533748865128,-0.004028880037367344,0.06401803344488144,0.01049642451107502,-0.01553313247859478,0.07691258192062378,-0.044853780418634415,-0.08188521862030029,-0.04420267045497894,-0.004498754162341356,-0.05400273576378822,-0.11069457978010178,-0.05467959865927696,-0.010545356199145317,-0.026751911267638206,0.04626917093992233,-0.009132055565714836,-0.009687155485153198,-0.06688956171274185,0.04051173850893974,-0.015309641137719154,0.01918361708521843,-0.0903836265206337,0.04049159213900566,0.019254663959145546,-0.06897861510515213,-0.02197936177253723,0.013776915147900581,0.03472409024834633,-0.01755625754594803,0.06479386985301971,0.05527700111269951,-0.09510844200849533,0.013896332122385502,0.03672036528587341,0.033389072865247726,0.10343930870294571,-0.050561364740133286,0.03657245263457298,-0.006228101439774036,-0.026545701548457146,-0.050335489213466644,0.01501211617141962,-2.8818571951682823e-33,0.056670982390642166,-0.02283584512770176,0.07360011339187622,-0.0031411428935825825,0.05858537182211876,-0.004496381152421236,0.008085844106972218,-0.035158682614564896,-0.059266965836286545,-0.02547670528292656,-0.05419458821415901,0.01922796107828617,0.026748865842819214,0.0012386724120005965,-0.08485318720340729,-0.05312458798289299,-0.053905438631772995,-0.019817302003502846,0.04781823605298996,0.015767758712172508,-0.038895342499017715,0.04104752466082573,0.0036501847207546234,-0.0005289990222081542,-0.10681769251823425,0.07529495656490326,-0.04540665075182915,0.02371075749397278,0.046464256942272186,-0.012858136557042599,-0.019928617402911186,0.02930348739027977,0.02531847357749939,-0.06199939176440239,0.019159607589244843,0.09946035593748093,0.012919889762997627,-0.03956224396824837,0.0026453856844455004,0.025821052491664886,0.008666173554956913,-0.021720753982663155,0.027343863621354103,-0.017073625698685646,-0.04046442732214928,0.05708202347159386,-0.035320017486810684,-0.011965061537921429,-0.040696900337934494,-0.028304923325777054,-0.06255268305540085,0.023862307891249657,0.1770726591348648,0.035156551748514175,0.048666827380657196,0.06927172839641571,0.06889573484659195,0.041792020201683044,0.01027274876832962,0.03344263508915901,-0.058062270283699036,-0.028819818049669266,0.020405849441885948,-0.08942941576242447,-0.04763798415660858,-0.04059434309601784,-0.012310163117945194,-0.08758483827114105,0.018373852595686913,0.008583202958106995,-0.01502937637269497,0.031648460775613785,-0.04488203674554825,-0.1092107966542244,-0.04184427484869957,-0.04339635744690895,-0.06650058180093765,-0.007983527146279812,-0.027787620201706886,-0.08983618766069412,0.006742679513990879,-0.043282389640808105,-0.007412463892251253,0.0684027373790741,0.12116815149784088,-0.031372178345918655,0.0026126534212380648,-0.10544503480195999,-0.13513797521591187,0.01827835477888584,0.042673226445913315,0.03150181844830513,0.13076265156269073,-0.09380713105201721,-0.029851356521248817,1.3326492211550923e-33,0.04073154181241989,-0.00422753905877471,-0.013410544954240322,0.08096044510602951,-0.0001559570519020781,-0.011916597373783588,0.019185462966561317,0.046508703380823135,-0.14476680755615234,-0.0020499583333730698,0.09997881203889847,0.013827621936798096,0.020252129063010216,0.013907310552895069,-0.08801935613155365,0.027360323816537857,0.0005228068912401795,0.05222833901643753,0.03520232439041138,0.010540422983467579,-0.10321076214313507,0.08584632724523544,0.06631995737552643,0.028211718425154686,-0.027120687067508698,0.01592528261244297,0.05299251899123192,-0.03537715971469879,0.00039865210419520736,-0.034044090658426285,0.09492511302232742,0.09512879699468613,-0.07850262522697449,-0.030396142974495888,0.04197016358375549,0.03279734030365944,0.06489831954240799,0.0615113228559494,-0.027225743979215622,-0.09358503669500351,-0.025815702974796295,0.05244557559490204,0.056453097611665726,0.12877629697322845,-0.017902836203575134,0.03319443017244339,0.013307473622262478,-0.029351258650422096,0.034582484513521194,0.12983918190002441,-0.06390594691038132,-0.0012457980774343014,-0.050870995968580246,-0.05408437177538872,-0.053457606583833694,-0.06382574141025543,-0.023351600393652916,-0.0620892271399498,0.044029977172613144,-0.0710517019033432,-0.10844331979751587,-0.03331252932548523,-0.07822969555854797,-0.011228754185140133,0.048536140471696854,-0.02698461525142193,0.027690187096595764,0.054948221892118454,-0.010344238951802254,0.03496219590306282,-0.016514237970113754,0.08183308690786362,-0.02367166243493557,0.07350438833236694,-0.027090711519122124,-0.037333570420742035,-0.05823470279574394,0.005930759944021702,-0.01679396815598011,-0.05461514741182327,-0.00941475946456194,0.0060920920222997665,0.009892964735627174,0.010206980630755424,-0.10823178291320801,0.04660603404045105,0.03771300986409187,-0.0023724788334220648,-0.04384026676416397,0.02577011100947857,-0.023950276896357536,0.045364126563072205,-0.012557591311633587,-0.008981398306787014,0.07988620549440384,-2.5947406001591844e-8,-0.046410903334617615,0.01839701645076275,-0.07279130071401596,-0.04858650267124176,0.08813223242759705,0.04365937039256096,0.09512508660554886,-0.005623241420835257,-0.05377554893493652,-0.015985388308763504,-0.07907996326684952,0.03997436538338661,0.04000762850046158,0.005048016086220741,0.08557187765836716,-0.009649218060076237,0.04808636009693146,0.02031840570271015,0.011774376034736633,-0.0035805704537779093,0.08320906013250351,0.07843175530433655,-0.001598952803760767,-0.07851312309503555,-0.05900503322482109,0.02184351533651352,-0.0039237854070961475,-0.06551052629947662,-0.03663632273674011,-0.07084088772535324,0.04370906949043274,-0.049391619861125946,-0.024207422509789467,0.03141700476408005,-0.012371184304356575,0.014256080612540245,-0.00956603791564703,-0.017259646207094193,0.005102838855236769,-0.02630661427974701,0.007177896797657013,0.0589335560798645,-0.022456998005509377,-0.015188013203442097,-0.04257914796471596,-0.04122329503297806,0.10077675431966782,-0.04378041252493858,0.06064590811729431,0.07180802524089813,0.03547712042927742,0.0663173720240593,-0.020314287394285202,0.06365402787923813,0.06353271752595901,-0.02951951138675213,-0.02605360932648182,0.06303109228610992,-0.04994301497936249,-0.003208879614248872,0.13236549496650696,-0.05698222294449806,-0.07935797423124313,0.006717367563396692]},{"text":"I afterwards learned that, knowing my father’s advanced age and unfitness for so long a journey, and how wretched my sickness would make Elizabeth, he spared them this grief by concealing the extent of my disorder.","book":"1984","chapter":31,"embedding":[0.031416960060596466,0.10051047801971436,0.060881227254867554,0.048934243619441986,0.0618954598903656,0.06544142216444016,0.08717477321624756,-0.021451568230986595,-0.043023038655519485,-0.04855028912425041,-0.00686912564560771,0.05011386424303055,0.03113749623298645,-0.02644330821931362,-0.026316769421100616,0.0527157187461853,-0.052092745900154114,0.04980342835187912,-0.06944028288125992,0.045953672379255295,-0.019836783409118652,0.06903059035539627,0.06700311601161957,0.048915743827819824,-0.0039024576544761658,0.04419002681970596,0.000596702448092401,0.03271394595503807,0.014002975076436996,-0.03938956558704376,-0.03678778558969498,-0.052169185131788254,0.042787835001945496,0.029304509982466698,-0.03541797026991844,-0.004747672937810421,-0.020737895742058754,0.03538968041539192,0.0022691539488732815,-0.04815632104873657,0.020939813926815987,0.059513915330171585,0.05863834545016289,0.007945050485432148,0.020078111439943314,-0.06675625592470169,-0.02958846464753151,0.04212329909205437,0.08325238525867462,-0.036647964268922806,-0.030834751203656197,-0.035263899713754654,-0.027923371642827988,-0.09537351131439209,-0.06136993318796158,0.03814567252993584,0.008456445299088955,0.010820205323398113,-0.06769643723964691,0.00969800353050232,-0.05352422967553139,-0.005556292831897736,-0.005455409176647663,0.04238998144865036,0.016828952357172966,0.024199701845645905,0.01793387532234192,0.010605007410049438,0.01904308795928955,0.0786188542842865,-0.06023816764354706,-0.040439363569021225,0.046723682433366776,-0.03159506246447563,-0.06313246488571167,0.024951135739684105,-0.008521520532667637,-0.06986453384160995,-0.055705245584249496,0.0025551654398441315,-0.060325805097818375,0.042547836899757385,0.008678375743329525,0.04947614297270775,0.03921397775411606,-0.07367874681949615,0.10336297750473022,-0.12189839035272598,-0.002009905641898513,-0.0038603227585554123,-0.030240794643759727,-0.1619044691324234,0.013946881517767906,0.09160773456096649,-0.007203548215329647,-0.03223257139325142,-0.015428029000759125,-0.026362696662545204,-0.03949395939707756,0.03986312448978424,-0.05544718727469444,0.023172196000814438,-0.026115037500858307,0.06807688623666763,0.007235006429255009,-0.020376056432724,-0.05243309587240219,-0.01584353856742382,0.04459612816572189,-0.03896315023303032,-0.00015544767666142434,-0.014765630476176739,0.02910141460597515,-0.00046219254727475345,0.05060834065079689,0.04666808620095253,0.022782187908887863,-0.0027852740604430437,-0.00500178849324584,0.03481743857264519,0.07582337409257889,0.08788725733757019,0.016599075868725777,0.05358318239450455,-0.09121538698673248,-0.014390322379767895,-0.013973030261695385,-1.6279696771026334e-33,0.015825124457478523,0.017426710575819016,0.010784367099404335,0.09356486797332764,0.06506224721670151,0.05681944265961647,-0.058416321873664856,0.03960942476987839,0.0286804661154747,-0.05109352618455887,0.011104485020041466,-0.03519003093242645,0.03572288528084755,-0.1086374893784523,-0.13064882159233093,0.1029195636510849,-0.07401440292596817,0.01949920505285263,0.1010555773973465,0.032390717417001724,-0.018098777160048485,0.035909295082092285,0.019052600488066673,-0.04835096374154091,-0.03589595481753349,0.009000330232083797,0.05881958827376366,0.02015187405049801,0.052407387644052505,0.04070204123854637,0.029632102698087692,0.07778426259756088,0.025421926751732826,-0.05704673379659653,0.00581485265865922,0.02916194126009941,-0.022721894085407257,-0.06920713931322098,0.04900725558400154,0.05797721445560455,-0.005884128622710705,-0.048876889050006866,0.06564385443925858,-0.049928970634937286,-0.05256403237581253,-0.049249645322561264,0.021921105682849884,0.0015851161442697048,-0.06043456867337227,-0.009747952222824097,0.0005703025381080806,-0.04158644750714302,-0.025390872731804848,-0.0805988684296608,-0.005996553227305412,0.03523707762360573,-0.010725980624556541,0.03748276084661484,0.03636946529150009,0.03201498091220856,0.06399810314178467,-0.008558614179491997,0.07294175028800964,0.04078415781259537,-0.07741465419530869,-0.05693342909216881,0.004547359421849251,-0.10896079987287521,-0.012860151007771492,-0.08059956133365631,-0.12593168020248413,0.0011674062116071582,-0.05667587369680405,0.009576921351253986,-0.027216535061597824,-0.024591268971562386,-0.034368544816970825,-0.07822716981172562,0.008285009302198887,-0.10616112500429153,0.02958649955689907,-0.046568673104047775,-0.05511141195893288,0.04867372289299965,0.01646684668958187,-0.062407009303569794,-0.002978286473080516,-0.12378834187984467,-0.02936161495745182,0.00043322696001268923,0.043706510215997696,-0.03171626850962639,0.07025966048240662,-0.06431876868009567,-0.04966798424720764,-9.048636843458301e-34,0.06365154683589935,-0.03814370185136795,0.07652194052934647,0.0044418820179998875,0.0176102127879858,-0.12586337327957153,-0.0625322088599205,0.024758312851190567,0.046284019947052,0.01847381517291069,0.04300766438245773,-0.0017306507797911763,0.03972852602601051,0.01757114753127098,-0.10557162761688232,0.007266858592629433,-0.005524002946913242,-0.031933341175317764,-0.025478649884462357,-0.05985493212938309,-0.05551563948392868,0.009785373695194721,-0.006510279141366482,-0.009342229925096035,0.041423190385103226,0.05283772572875023,0.03841909021139145,-0.0008157414849847555,-0.001514306291937828,-0.03124651499092579,0.05013282597064972,0.058879539370536804,-0.03516104072332382,-0.060406606644392014,-0.007754713762551546,0.08620674908161163,0.05001723766326904,-0.047710008919239044,-0.0014105059672147036,-0.050270698964595795,-0.010491350665688515,-0.05673585832118988,0.010647333227097988,0.07294216006994247,0.09145569056272507,0.0011861191596835852,0.043682683259248734,0.018946798518300056,0.10283943265676498,0.06810890883207321,-0.02460152842104435,-0.03034656122326851,0.0213521346449852,-0.010073342360556126,-0.007036793977022171,-0.04756823554635048,0.09269635379314423,-0.11817749589681625,-0.0014608330093324184,-0.030392376706004143,-0.08111388236284256,-0.009437588974833488,-0.11522674560546875,-0.015072804875671864,-0.028570229187607765,0.022630145773291588,-0.0017665046034380794,0.06863166391849518,-0.04382115229964256,-0.006967943627387285,0.0005830868030898273,-0.019800612702965736,-0.06740007549524307,-0.019394969567656517,0.016812600195407867,0.01893494464457035,-0.04607199504971504,0.0021227188408374786,-0.07814586907625198,-0.02926480770111084,0.0012763288104906678,-0.06670690327882767,0.019980063661932945,-0.02833665907382965,0.0315324142575264,-0.018372399732470512,0.05872901901602745,-0.01358803454786539,-0.028606878593564034,-0.03910605236887932,0.04267007112503052,-0.05202065408229828,0.04332784563302994,-0.1501488834619522,0.007215302437543869,-3.179961183263913e-8,0.0436820313334465,-0.0002314510493306443,-0.035390302538871765,-0.06487511098384857,0.07651010900735855,0.013944920152425766,-0.03740759938955307,0.13524256646633148,-0.04850081726908684,0.06116359680891037,-0.08464960753917694,0.07587061822414398,0.03500421345233917,0.006193743087351322,0.10650653392076492,0.029520267620682716,0.05352625623345375,-0.04702196270227432,-0.013832977041602135,-0.005898044444620609,0.07416281849145889,0.02103058621287346,0.04642067104578018,-0.04555191099643707,-0.02636374719440937,-0.04955824464559555,0.04654157906770706,-0.023324457928538322,-0.05703498423099518,0.04194362089037895,0.0638984888792038,0.02088761143386364,-0.05189496651291847,0.06759191304445267,-0.0877833440899849,-0.02029998041689396,0.07424554228782654,-0.013861525803804398,0.03829433396458626,-0.034347061067819595,0.001040225732140243,0.045713286846876144,0.01953677460551262,0.000025101218852796592,0.030619416385889053,-0.03944220766425133,-0.009099675342440605,0.06527385860681534,-0.05122865363955498,-0.036982957273721695,0.030382586643099785,0.0760735422372818,0.05369652807712555,0.09621782600879669,0.10158530622720718,-0.039231184870004654,-0.0025803595781326294,0.016749225556850433,-0.12929272651672363,0.012502494268119335,0.05507437512278557,0.03437194973230362,-0.049330394715070724,-0.05233210697770119]},{"text":"I feel the greatest remorse for the disappointment of which I have been the occasion, but you will forgive me.” “You will repay me entirely if you do not discompose yourself, but get well as fast as you can; and since you appear in such good spirits, I may speak to you on one subject, may I not?” I trembled.","book":"1984","chapter":32,"embedding":[-0.05197392404079437,0.07294001430273056,0.09278994053602219,-0.02494705840945244,0.07276397943496704,-0.009831245057284832,0.09833401441574097,-0.03738151863217354,0.08064448833465576,-0.10884560644626617,-0.00343484990298748,-0.007825659587979317,0.0007633042405359447,-0.057272739708423615,-0.03296882286667824,-0.005476458929479122,-0.0341404527425766,0.09019235521554947,-0.021751724183559418,0.035415057092905045,-0.041867002844810486,0.0278633926063776,-0.00849953480064869,0.02592964470386505,-0.0020088921301066875,-0.006918721366673708,-0.014310136437416077,0.05902141332626343,-0.037472955882549286,-0.04153864458203316,-0.029434897005558014,-0.046219512820243835,0.022847965359687805,0.04803156852722168,-0.02123529464006424,0.06432623416185379,-0.07530491799116135,-0.03952614590525627,0.014213155955076218,-0.009525788947939873,-0.008409884758293629,0.024605408310890198,0.005065564531832933,0.0012574909487739205,0.04712757468223572,-0.08100137114524841,-0.03027188405394554,-0.03146298602223396,-0.0068954722955822945,-0.03337760642170906,0.005137550178915262,0.024609992280602455,-0.10687710344791412,0.013086149469017982,-0.03338861092925072,0.05076950415968895,0.03913924843072891,0.0757569819688797,-0.06259693950414658,-0.004323969595134258,0.012326369062066078,-0.0731813907623291,-0.004211428575217724,0.027676839381456375,0.09749072045087814,0.06986724585294724,0.054101329296827316,-0.00519813084974885,-0.07272806763648987,0.08800037950277328,-0.048234954476356506,-0.060867372900247574,0.03257222846150398,-0.037590108811855316,-0.11749302595853806,-0.006616970524191856,-0.003831286681815982,0.0051611545495688915,0.008386795409023762,0.08761537075042725,-0.039487529546022415,0.004773696884512901,-0.008501826785504818,-0.05443539097905159,-0.11668766289949417,-0.08084484189748764,0.062103621661663055,-0.020365437492728233,0.06933806836605072,0.0011220300802960992,-0.023881902918219566,0.013548566028475761,-0.010390770621597767,0.009968405589461327,-0.044549934566020966,-0.007760378532111645,-0.09486261755228043,0.02400277554988861,-0.09655570983886719,0.06050197407603264,0.0884992852807045,0.03451338782906532,-0.038163963705301285,-0.043352339416742325,0.013799724169075489,0.019260574132204056,-0.09828625619411469,-0.036655399948358536,-0.03200378268957138,-0.045236699283123016,-0.06239733844995499,-0.0059883068315684795,0.022456984966993332,-0.01938614435493946,0.04518267884850502,0.09337607771158218,-0.0063310423865914345,-0.021920323371887207,0.05855002999305725,0.04957423359155655,0.021640192717313766,0.03626834228634834,-0.0015788497403264046,0.06409609317779541,-0.09405569732189178,-0.06873830407857895,0.03510377183556557,-2.6296227397757052e-33,0.0471985824406147,-0.017524071037769318,0.05286974459886551,-0.032484278082847595,0.06339205056428909,-0.009287169203162193,-0.026599455624818802,0.0317007452249527,-0.04005990922451019,-0.031537171453237534,0.004289735574275255,-0.003919234964996576,-0.013238303363323212,-0.06802889704704285,-0.06591964513063431,0.07310979813337326,-0.03529225289821625,-0.008736594580113888,0.14720381796360016,0.011040040291845798,0.01551271602511406,0.00015696848277002573,0.01426604576408863,-0.06014697626233101,-0.044359154999256134,-0.08011005818843842,0.01707444339990616,0.017492622137069702,0.034509338438510895,0.02035229280591011,-0.023993531242012978,0.011281981132924557,0.07813894748687744,-0.04597092047333717,0.00952880084514618,0.028923574835062027,-0.003232064424082637,0.027462860569357872,-0.0017177207628265023,-0.033748406916856766,0.0007599746459163725,0.023032139986753464,0.00986554380506277,-0.010507406666874886,0.0018808115273714066,-0.0556287057697773,-0.0013404539786279202,0.04771118611097336,0.012709410861134529,0.01841675490140915,-0.02252165973186493,-0.013919875957071781,0.044654522091150284,-0.02797217108309269,0.009618646465241909,-0.01670665293931961,0.01308115292340517,0.04402248188853264,0.014577208086848259,-0.06925111263990402,-0.0360066294670105,-0.10300056636333466,-0.04819536209106445,-0.039145395159721375,-0.07623589038848877,0.0034046343062072992,-0.041154034435749054,-0.04325937479734421,-0.09471268951892853,-0.028238948434591293,-0.1465575248003006,-0.0007944501121528447,-0.001790446462109685,-0.06709001958370209,-0.026065343990921974,0.012638380751013756,-0.025811374187469482,-0.03115968406200409,0.05452665686607361,-0.006866374518722296,-0.08324699848890305,-0.07640676945447922,-0.09134930372238159,0.047986388206481934,0.09046227484941483,0.03334936127066612,0.06350981444120407,-0.09980330616235733,0.014634351246058941,0.06476104259490967,-0.034565698355436325,0.006501816213130951,0.12430290132761002,-0.002802993403747678,-0.004693377297371626,-9.000641776456212e-34,0.13593441247940063,-0.020201725885272026,0.00518945325165987,0.1244373470544815,0.025822049006819725,-0.04219190031290054,-0.032543715089559555,0.08499343693256378,-0.03438470512628555,0.022287491708993912,-0.03458521515130997,-0.009973783046007156,0.09808532148599625,0.09763921797275543,-0.021651247516274452,-0.004475761204957962,0.07120202481746674,-0.04767613857984543,-0.0679897665977478,-0.08384677767753601,0.004790865816175938,0.10595295578241348,0.05451710894703865,-0.005822029430419207,-0.05866607278585434,0.0017853700555860996,0.10914502292871475,-0.08061868697404861,-0.09178020060062408,-0.016431905329227448,0.0761016309261322,0.008022014982998371,-0.03282717987895012,0.021807638928294182,0.08887439966201782,0.06570401787757874,0.039671383798122406,-0.03436872363090515,-0.14029966294765472,-0.005064554512500763,0.037450216710567474,-0.01325240358710289,-0.05265393853187561,-0.0328880250453949,0.03381192684173584,-0.1144305169582367,0.02874327264726162,-0.030202360823750496,0.027591055259108543,0.07656728476285934,-0.010843522846698761,-0.019205398857593536,-0.017845317721366882,0.023751234635710716,0.07572273910045624,-0.005904553458094597,0.06571435928344727,-0.029889477416872978,0.02414187602698803,-0.006300217006355524,-0.08754388988018036,-0.06769604235887527,-0.04786600172519684,0.020072346553206444,0.10565026104450226,-0.012516332790255547,-0.01580575481057167,0.022574428468942642,0.009256386198103428,0.0640631765127182,0.020734045654535294,0.05671199783682823,-0.07526353746652603,-0.007402409799396992,-0.02683797851204872,0.014161738567054272,0.018276503309607506,0.008049748837947845,-0.04603162035346031,-0.028345655649900436,0.02984408102929592,0.049530524760484695,0.04661574959754944,0.06425561010837555,-0.04570247232913971,-0.041518714278936386,-0.03421992436051369,0.013821911998093128,-0.019456909969449043,0.017281677573919296,0.02578459493815899,-0.012458134442567825,0.11097361147403717,-0.12181024998426437,0.04028722271323204,-4.603467473884848e-8,-0.02686401456594467,-0.0033632940612733364,-0.09066217392683029,0.012371092103421688,0.02665872313082218,-0.013185778632760048,-0.025018839165568352,-0.03626788780093193,-0.06479206681251526,0.024835146963596344,0.10005020350217819,0.05858274921774864,0.018226023763418198,0.028438732028007507,0.01992049440741539,0.04804845154285431,-0.004373249132186174,-0.057872552424669266,0.001753837219439447,0.003357573878020048,0.013114243745803833,0.02188095450401306,-0.035988979041576385,0.013680150732398033,0.017266368493437767,-0.0047362614423036575,-0.013842964544892311,0.015377226285636425,-0.05951996520161629,-0.023760570213198662,0.020503515377640724,-0.0033097299747169018,-0.04205702617764473,-0.018207073211669922,0.030358707532286644,0.031202025711536407,0.08341749012470245,-0.006588959135115147,0.035653624683618546,-0.01754814386367798,0.008679269813001156,0.01823018677532673,0.013786396943032742,0.022299978882074356,0.04771750792860985,-0.039853960275650024,0.0352993868291378,0.024263709783554077,-0.07403502613306046,0.012526875361800194,-0.03593272343277931,0.012133903801441193,-0.010981055907905102,0.034045927226543427,0.0010760931763797998,0.0014665458584204316,-0.04644075408577919,0.033638451248407364,-0.03788580745458603,-0.0168275348842144,0.14708124101161957,0.008864005096256733,-0.051360372453927994,-0.17788764834403992]},{"text":"You will find a happy, cheerful home and friends who love you dearly.","book":"1984","chapter":32,"embedding":[0.0394001267850399,0.015788476914167404,0.10763613134622574,0.005869442131370306,0.009858397766947746,0.004287984687834978,0.08160846680402756,-0.06731049716472626,-0.020445510745048523,-0.009124930948019028,0.002010573400184512,-0.024308858439326286,0.07024528086185455,-0.019194940105080605,0.0707833543419838,0.0018961954629048705,-0.05136620253324509,-0.07451118528842926,-0.019820457324385643,0.022495025768876076,-0.007373390253633261,-0.00893784873187542,-0.002378616714850068,0.029765592887997627,-0.02882309816777706,0.06382770091295242,0.0379960760474205,-0.02260674722492695,-0.009629330597817898,0.015555053949356079,0.07623624056577682,0.003722188761457801,0.08127294480800629,0.012156692333519459,0.030832409858703613,0.030862584710121155,-0.03505297750234604,-0.0804884284734726,0.04714160040020943,0.02546256221830845,0.02369101159274578,-0.051808834075927734,0.0673837810754776,-0.004327906295657158,-0.024839289486408234,-0.01265858393162489,0.017951615154743195,-0.023914815858006477,0.08439798653125763,0.05273814871907234,-0.03918595239520073,0.08243045210838318,-0.0890016108751297,0.0021670020651072264,0.033339470624923706,0.10138753801584244,0.012129243463277817,-0.05898185819387436,0.010229591280221939,-0.022822238504886627,0.07064179331064224,0.06740317493677139,0.015384853817522526,0.023833129554986954,0.026266049593687057,-0.06296059489250183,0.0067885564640164375,0.020859302952885628,-0.023170165717601776,-0.052707649767398834,-0.02866465598344803,0.04871062561869621,0.07332933694124222,-0.007673617452383041,-0.026351433247327805,-0.03236242011189461,0.009285849519073963,-0.03500004857778549,0.049984052777290344,0.03277983143925667,-0.00835488922894001,0.018281912431120872,-0.041836272925138474,-0.036943089216947556,-0.13324862718582153,-0.032249629497528076,0.03618522360920906,-0.048421986401081085,0.01710113324224949,0.03498431667685509,-0.028840476647019386,-0.04689590260386467,-0.07075002044439316,-0.014967259019613266,-0.042798545211553574,-0.061360035091638565,-0.046020470559597015,-0.009892629459500313,-0.05525674298405647,0.08201070129871368,-0.03249434754252434,0.0019802453462034464,0.04481176659464836,0.10069909691810608,-0.027906835079193115,0.07946983724832535,-0.13533879816532135,0.06159908324480057,0.004576503299176693,-0.04758496582508087,-0.047751110047101974,-0.026070380583405495,0.06249357759952545,0.008852692320942879,0.0574316680431366,-0.023738978430628777,-0.015905823558568954,-0.01308363676071167,0.05188480764627457,0.04987438768148422,0.029186783358454704,0.011231734417378902,0.06931503862142563,-0.0023952166084200144,-0.01583908684551716,-0.008078069426119328,0.017652662470936775,-1.6705065932260687e-33,0.007021020632237196,0.00971521157771349,0.04671623185276985,0.07430244237184525,-0.034422438591718674,-0.017307816073298454,-0.07635805010795593,0.022541014477610588,-0.045684922486543655,-0.02743394486606121,-0.06334733217954636,0.02110917679965496,-0.032624706625938416,0.04210102558135986,-0.06607513129711151,-0.02815934084355831,0.0044863554649055,-0.02337750419974327,-0.025078902021050453,0.02663995698094368,-0.058253008872270584,-0.07058706879615784,0.028771426528692245,-0.0378807857632637,-0.011927329935133457,-0.1465611308813095,0.05269574001431465,-0.029005493968725204,0.0017809538403525949,0.00011610737419687212,-0.008128947578370571,0.027782851830124855,0.020459262654185295,-0.07827738672494888,-0.033320896327495575,0.03745632991194725,-0.05833917856216431,-0.016071990132331848,-0.009577218443155289,-0.02784312143921852,0.025144940242171288,0.01013343594968319,0.0004896423779428005,0.04966450482606888,0.04558133706450462,0.10117162019014359,0.029365839436650276,0.06886284798383713,0.008833798579871655,-0.0014961303677409887,-0.05414148420095444,-0.06760595738887787,-0.0608842559158802,0.09567957371473312,-0.061520595103502274,-0.009986613877117634,0.0017216482665389776,0.04475349560379982,0.10258393734693527,-0.02216479741036892,0.011625299230217934,-0.06473508477210999,-0.03297382593154907,-0.07313115894794464,0.0018918669084087014,-0.006649068556725979,0.052741531282663345,0.0004143732658121735,0.01409716997295618,0.06255990266799927,0.043388597667217255,0.0729454904794693,0.020064018666744232,-0.012818329967558384,0.01017826795578003,0.028445996344089508,-0.011301209218800068,-0.07468745857477188,0.02803080528974533,0.0020487147849053144,0.05343741178512573,0.04341577738523483,-0.09157901257276535,0.08740320056676865,0.1719616949558258,-0.028950968757271767,0.04327670857310295,-0.10709641873836517,-0.05630467087030411,0.08289787173271179,0.03626992926001549,0.005490533541887999,0.08690439909696579,-0.03773939609527588,-0.04438794031739235,8.813091652782516e-34,0.06174959987401962,-0.022641194984316826,-0.07047764211893082,0.020960407331585884,-0.08102577924728394,-0.049484655261039734,-0.10878374427556992,0.02212410792708397,0.012272142805159092,0.128426194190979,0.014959868043661118,-0.039214592427015305,0.10263732075691223,0.04606364294886589,-0.06037367135286331,-0.0007198710809461772,0.05542020499706268,0.007673603482544422,-0.03227244317531586,0.08648782223463058,-0.05628045275807381,0.07473859190940857,-0.014267000369727612,0.035152364522218704,0.009181974455714226,-0.008112956769764423,0.0337081216275692,-0.03864695876836777,-0.07627467811107635,-0.020736517384648323,0.010681282728910446,-0.05404801294207573,-0.11252178251743317,0.01590639539062977,0.052841100841760635,-0.0029474576003849506,0.0010377736762166023,-0.08363251388072968,-0.08787468820810318,-0.0028339254204183817,0.004839447792619467,-0.003094317624345422,0.07100743055343628,-0.041553426533937454,0.02455863542854786,-0.01768392138183117,0.023813871666789055,-0.00858279224485159,-0.03861171379685402,0.09586554765701294,0.029247013852000237,0.023585064336657524,0.016980573534965515,-0.0027236598543822765,0.018327856436371803,-0.035026222467422485,0.04553159326314926,-0.03415186330676079,-0.01684686169028282,0.015070081688463688,-0.12995503842830658,0.052830442786216736,-0.048808224499225616,0.06460390985012054,0.06705676019191742,-0.021565817296504974,-0.04023325815796852,-0.05416160449385643,-0.0169810950756073,0.06784430891275406,-0.056634705513715744,-0.0021018069237470627,-0.02123306691646576,-0.019261598587036133,0.01746009662747383,0.02656317688524723,0.055937618017196655,0.01920711249113083,0.028675174340605736,-0.002433486981317401,0.029477715492248535,0.08454117178916931,0.027894800528883934,-0.029691236093640327,-0.08965177088975906,-0.11889681220054626,0.015643009915947914,-0.015925968065857887,-0.03225170075893402,0.015697039663791656,-0.04517310485243797,0.10880233347415924,-0.04208514094352722,-0.09703329205513,0.05440134555101395,-2.3188043485333765e-8,-0.01747426576912403,-0.17777909338474274,-0.042697224766016006,-0.02873736247420311,0.015044381842017174,-0.005541141144931316,0.0848950743675232,-0.03799005225300789,-0.017070626839995384,-0.02067568153142929,0.00522743072360754,0.0130453547462821,0.026444638147950172,-0.026880329474806786,0.025785990059375763,0.03960753604769707,0.14729894697666168,0.0036345175467431545,-0.031940072774887085,-0.02196086198091507,0.036890286952257156,-0.006082525011152029,-0.005947357974946499,0.0962350070476532,-0.06748557090759277,-0.011732860468327999,-0.018267113715410233,-0.09865105152130127,-0.09517911821603775,0.07547719776630402,0.018893105909228325,-0.010234223678708076,-0.02986239641904831,0.0006450786022469401,0.039648689329624176,0.013425944373011589,-0.039897166192531586,-0.02346363104879856,0.019534489139914513,0.05734435096383095,-0.06265390664339066,-0.01805977150797844,-0.05956432223320007,-0.07762587070465088,-0.06609973311424255,-0.03960099071264267,0.10217298567295074,-0.03751809149980545,-0.026722019538283348,-0.014052108861505985,0.0070339953526854515,0.02404058538377285,0.0011384786339476705,0.0324968546628952,-0.03895668312907219,-0.01655631698668003,-0.05999649316072464,0.048204455524683,0.10499056428670883,0.03422949090600014,0.060558781027793884,0.06771605461835861,-0.016895495355129242,-0.05511217564344406]},{"text":"Do you remember on what occasion Justine Moritz entered our family?","book":"1984","chapter":33,"embedding":[-0.03613604977726936,0.1371641606092453,0.04012542590498924,-0.02406946010887623,-0.06412143260240555,0.07330265641212463,0.02835640124976635,0.005368651822209358,-0.04973771050572395,-0.02972966991364956,0.03173203021287918,0.003250796813517809,0.04792408272624016,0.0410546138882637,0.0295884907245636,0.010289364494383335,-0.012083664536476135,0.06177675351500511,-0.01681259647011757,0.043197859078645706,-0.01770094409584999,-0.03902505710721016,0.059611726552248,0.04266657307744026,0.023494958877563477,0.02161073312163353,0.02540704607963562,0.005641730967909098,0.03577958792448044,-0.0038166060112416744,-0.056275397539138794,-0.009621292352676392,0.01255354005843401,0.01347983069717884,0.003035567468032241,0.06878762692213058,0.047511763870716095,0.02603645622730255,-0.05063219368457794,0.0216697845607996,0.024431806057691574,-0.05193989723920822,0.015261310152709484,-0.0070274705067276955,0.027035050094127655,-0.04529198631644249,0.06375938653945923,0.011421207338571548,0.05202517285943031,0.08637067675590515,-0.041913896799087524,0.0029811274725943804,0.06934308260679245,-0.1443445086479187,0.0011653518304228783,0.11254926770925522,0.03597529977560043,-0.006226332392543554,0.004683311562985182,0.01748894527554512,-0.0710972473025322,0.009174863807857037,-0.14137674868106842,0.05532858893275261,-0.04808177798986435,-0.08530362695455551,-0.023119181394577026,-0.017066344618797302,0.07860895246267319,-0.0015318485675379634,0.03829516842961311,0.0055198026821017265,-0.00626937672495842,-0.05818718299269676,-0.018282491713762283,0.01460794173181057,0.00925750844180584,0.008155926130712032,-0.08353545516729355,-0.021485917270183563,0.006523356307297945,-0.09069844335317612,0.026392970234155655,0.0005974314990453422,0.022181900218129158,-0.07907083630561829,0.017725013196468353,0.009857227094471455,-0.005931998137384653,0.007800298742949963,-0.06792939454317093,-0.06761452555656433,0.036134023219347,0.019385166466236115,-0.07561548054218292,0.00912456400692463,-0.07207617163658142,0.08276781439781189,0.007832546718418598,0.09174703061580658,0.053273241966962814,0.012894166633486748,0.05992209166288376,0.13211357593536377,0.046928636729717255,0.01282173115760088,0.0029968307353556156,0.05183842405676842,0.008386359550058842,-0.04724399372935295,-0.05045803263783455,-0.000028970105631742626,0.035110875964164734,-0.00907398946583271,-0.007304251194000244,-0.02200060524046421,0.018360154703259468,-0.008813032880425453,-0.03518497943878174,-0.05691211298108101,0.038338035345077515,0.08793823421001434,-0.010797807015478611,0.0035101957619190216,-0.10213425010442734,-0.005833745468407869,0.09434378147125244,-4.767210360262079e-33,-0.023235958069562912,-0.06423291563987732,0.0337790921330452,0.08321543037891388,-0.00658820103853941,0.05721414461731911,-0.058050524443387985,0.03626517951488495,-0.06543639302253723,-0.09274905174970627,0.021043336018919945,-0.02206636779010296,0.06423408538103104,-0.04693399369716644,-0.057703956961631775,0.0694546326994896,-0.04354238510131836,0.012460814788937569,0.10842485725879669,0.004576884675770998,0.04184460639953613,0.06170622631907463,0.017033910378813744,-0.00703456113114953,-0.000912629475351423,0.113185353577137,0.11897312104701996,-0.03402402624487877,-0.06655661016702652,0.055172644555568695,-0.026210326701402664,0.005242509767413139,-0.009303908795118332,-0.020487748086452484,0.05476333945989609,0.0920056626200676,0.028683459386229515,-0.08374407142400742,-0.020271027460694313,-0.045327622443437576,-0.012352894060313702,-0.06459769606590271,-0.007146704476326704,-0.02466103434562683,-0.1199321448802948,0.006253017112612724,0.033188920468091965,-0.0015174567233771086,0.12022078782320023,0.007996659725904465,0.01547629851847887,0.038627371191978455,-0.04616232216358185,0.0065835206769406796,-0.012464853003621101,0.0535120852291584,0.02821548655629158,0.02485787868499756,0.0028978942427784204,0.024494780227541924,-0.011643771082162857,0.0016089777927845716,0.004359243903309107,0.07858486473560333,-0.0021804114803671837,-0.05781583487987518,-0.0010068499250337481,-0.040763869881629944,-0.012789090164005756,-0.05619814619421959,-0.06431961059570312,0.057105254381895065,-0.06731902062892914,-0.09302984178066254,0.0004297256818972528,0.035909976810216904,0.009364834055304527,-0.045632343739271164,-0.07242385298013687,-0.013527937233448029,0.012146259658038616,-0.010890857316553593,0.07298918813467026,0.04383096843957901,-0.05669799819588661,-0.03995729237794876,0.13157232105731964,0.013807839713990688,-0.07613813877105713,-0.000938382581807673,-0.05425724387168884,0.0005843121325597167,0.08828716725111008,-0.04318416863679886,-0.10318491607904434,1.5137002386011834e-33,-0.01710556633770466,0.018875867128372192,0.0711781233549118,-0.044038236141204834,0.048076946288347244,-0.07239136844873428,0.04366122931241989,0.1037515252828598,-0.014608846977353096,-0.0051078288815915585,0.024243341758847237,-0.0648442879319191,0.09658057987689972,-0.06197197735309601,-0.09412088990211487,0.011870532296597958,-0.0026743165217339993,-0.006215785630047321,-0.012181907892227173,-0.01269593182951212,-0.022401873022317886,-0.012422841042280197,-0.008265377022325993,0.0013292862568050623,-0.05714530125260353,-0.0028278667014092207,0.10086783021688461,0.006881626322865486,-0.1391308605670929,0.005347780883312225,-0.07331511378288269,0.0993405431509018,-0.01976899802684784,-0.00363016314804554,0.03532961383461952,0.12676481902599335,-0.014489957131445408,0.01822986826300621,-0.042986318469047546,0.015834683552384377,-0.0033006996382027864,0.0030571185052394867,-0.02142675220966339,0.10671577602624893,0.06533341109752655,0.08819753676652908,-0.05113966017961502,0.03729862719774246,0.0387861542403698,-0.020180953666567802,-0.060840439051389694,0.054529160261154175,-0.06941365450620651,0.002006249502301216,0.031170036643743515,-0.05836767703294754,0.004281789064407349,-0.0760352611541748,0.08581489324569702,-0.014960204251110554,-0.07148754596710205,-0.006519604474306107,-0.07406079769134521,-0.019653113558888435,0.029392695054411888,-0.02329540252685547,-0.034589167684316635,-0.012497917748987675,-0.09885961562395096,0.03836607187986374,0.03702141344547272,-0.04316618666052818,-0.08045104891061783,0.04213760793209076,0.011872033588588238,0.012936010956764221,-0.03219108656048775,-0.008220546878874302,-0.05977236479520798,-0.030802074819803238,0.04909192770719528,-0.027125349268317223,-0.013181125745177269,0.00513269891962409,0.03449205681681633,-0.0884905681014061,-0.018563242629170418,-0.05300689488649368,0.003904671873897314,0.06428582221269608,-0.006875396706163883,0.008335109800100327,0.0032754649873822927,-0.07693686336278915,0.01664927415549755,-1.6683419090668394e-8,0.0135009391233325,0.12685318291187286,0.0032464175019413233,-0.06021088361740112,-0.021715151146054268,0.02868347056210041,-0.00845300778746605,0.059742480516433716,-0.02481766976416111,0.09703799337148666,-0.06678472459316254,0.08207596093416214,0.0033756778575479984,0.06416469067335129,-0.00796513445675373,0.012003927491605282,0.05057831481099129,-0.025475192815065384,-0.015321324579417706,0.010462545789778233,0.030831152573227882,0.04155723378062248,0.08075005561113358,-0.011764229275286198,0.013715585693717003,-0.021320803090929985,-0.03827543556690216,0.02465403825044632,0.031746067106723785,-0.06249460205435753,-0.03879788517951965,0.03411843627691269,-0.07943738996982574,-0.06833256781101227,-0.07135520875453949,0.017820440232753754,-0.021648244932293892,0.018003305420279503,0.07811333239078522,-0.07457441836595535,-0.07409466058015823,0.04089954495429993,0.006098949816077948,0.038787052035331726,0.03159893676638603,0.01248966995626688,0.03607640787959099,-0.0017607415793463588,0.002291420940309763,-0.028183888643980026,-0.10142556577920914,0.01836412213742733,-0.01825934462249279,-0.05102144926786423,0.037378162145614624,-0.03910344839096069,-0.05921575799584389,-0.06216515228152275,-0.0004189132305327803,-0.053817667067050934,0.049077700823545456,0.013013865798711777,-0.07625917345285416,-0.09074597805738449]},{"text":"This benefit was fully repaid; Justine was the most grateful little creature in the world: I do not mean that she made any professions I never heard one pass her lips, but you could see by her eyes that she almost adored her protectress.","book":"1984","chapter":34,"embedding":[-0.03402681648731232,0.09163355082273483,0.11539721488952637,-0.041398126631975174,-0.06330889463424683,0.07362326234579086,0.13747641444206238,-0.01862001232802868,-0.06485389918088913,0.010277189314365387,0.06128961592912674,-0.06414640694856644,0.024576179683208466,0.014204081147909164,-0.014615134336054325,0.0012864856980741024,0.10197632759809494,0.04507002606987953,-0.0838647186756134,0.018176959827542305,-0.03238360583782196,0.05461076274514198,0.10634695738554001,0.0403914637863636,-0.10833252221345901,0.019529711455106735,-0.030770666897296906,-0.0664471909403801,0.07270760834217072,-0.04674913361668587,-0.10992826521396637,0.01618119701743126,0.044635117053985596,0.006447623949497938,-0.08761521428823471,0.07890647649765015,0.09892624616622925,0.05579211190342903,-0.04377127066254616,0.012488756328821182,0.002640192164108157,-0.10291112959384918,-0.025277720764279366,0.0491986945271492,-0.012078390456736088,-0.138302743434906,0.059776242822408676,-0.02435748092830181,0.008814956061542034,-0.07660134881734848,0.0464760959148407,-0.06921941041946411,0.0693124383687973,-0.07113827764987946,-0.07295926660299301,-0.011951623484492302,-0.005437204148620367,0.006902317516505718,-0.010439179837703705,0.033985450863838196,-0.04767344519495964,0.019401628524065018,0.011881148442626,0.04503041133284569,-0.046745773404836655,-0.14325302839279175,0.036289509385824203,0.034300610423088074,-0.01746545359492302,0.0077829970978200436,0.02217686176300049,-0.019989226013422012,0.032836832106113434,-0.03973573446273804,0.053318146616220474,0.029876383021473885,0.0499907061457634,-0.05231421813368797,-0.009187332354485989,-0.0036458917893469334,0.05931180343031883,-0.04134665057063103,0.016400381922721863,0.07864855229854584,-0.016252152621746063,-0.07174016535282135,0.0010347035713493824,-0.07244931906461716,-0.004658963531255722,0.009457645006477833,0.017926866188645363,-0.009124835021793842,-0.02956603839993477,-0.020913084968924522,-0.08162800967693329,-0.013449644669890404,-0.09241470694541931,0.008141047321259975,-0.08402074873447418,0.038880158215761185,0.0020245867781341076,0.02282388135790825,0.02112390846014023,0.06412044912576675,0.06760870665311813,-0.06936293095350266,-0.034810394048690796,-0.03956412523984909,0.013310946524143219,-0.036155033856630325,-0.03267351910471916,-0.01793578267097473,0.015363791026175022,0.044228069484233856,-0.009499496780335903,0.02221863344311714,-0.09609799832105637,-0.059604208916425705,0.030346758663654327,-0.09411117434501648,0.01592021994292736,0.0002864379493985325,-0.03521597385406494,-0.027778197079896927,-0.04173143953084946,-0.01861310377717018,-0.03364413604140282,3.292438683387039e-34,-0.025931544601917267,0.03427201509475708,0.05426490679383278,0.0061476160772144794,-0.00313166924752295,0.017220377922058105,-0.04069749265909195,0.014567532576620579,-0.0514645092189312,-0.0682133212685585,-0.047438956797122955,-0.04848833382129669,-0.00395984249189496,0.047883883118629456,-0.025542126968503,0.06543749570846558,-0.07076059281826019,0.014144484885036945,0.0890418067574501,0.009020010009407997,-0.01252077054232359,0.03356047347187996,0.04803482070565224,-0.02503982186317444,-0.03821665421128273,0.04903938248753548,0.0998784527182579,-0.0538853257894516,-0.018172599375247955,0.04882039874792099,-0.021939992904663086,-0.0009410761413164437,0.08006895333528519,-0.03689843788743019,-0.04539933055639267,0.07268641144037247,0.052274852991104126,-0.1050080880522728,-0.005167592782527208,-0.04582478851079941,-0.08656270802021027,0.012339470908045769,0.06404513120651245,-0.04516949504613876,-0.10308372974395752,-0.000930758542381227,-0.09107334166765213,-0.03181404992938042,0.04012984037399292,0.010158355347812176,0.09639154374599457,0.04458628594875336,-0.0015145079232752323,-0.0020287209190428257,-0.057033881545066833,0.05355745181441307,-0.0229699295014143,0.0687975212931633,-0.05813699960708618,-0.014452071860432625,-0.04869861155748367,-0.029431166127324104,0.004752609878778458,-0.007245732471346855,0.045036181807518005,0.03361891582608223,0.016692565754055977,-0.0524195060133934,-0.07104501873254776,-0.0008691237890161574,-0.12167118489742279,0.09657283127307892,-0.021643757820129395,-0.09703106433153152,-0.024857180193066597,0.018406929448246956,0.07051558047533035,-0.05345397815108299,0.04125372692942619,0.008815325796604156,0.06882812082767487,0.00982965249568224,0.07986225932836533,0.03677668794989586,0.024000754579901695,-0.030062558129429817,0.06067001447081566,-0.04059796407818794,0.07180339843034744,0.006387842819094658,0.014737059362232685,-0.017994243651628494,0.04156142473220825,-0.027400968596339226,-0.09663841873407364,-3.994934816342822e-33,-0.013108871877193451,0.0077759637497365475,0.03119177743792534,0.022003741934895515,0.03454390913248062,0.022938169538974762,-0.05200420320034027,0.047212738543748856,-0.027695389464497566,0.052170999348163605,-0.004641152452677488,-0.002769462764263153,0.04794813692569733,-0.042079854756593704,-0.008648755960166454,-0.008121970109641552,-0.038499992340803146,-0.07480418682098389,-0.0512971468269825,-0.02951975353062153,0.03345152363181114,0.036173004657030106,0.014277132228016853,0.025144098326563835,-0.08593171089887619,0.02314472571015358,-0.0626530796289444,0.036712512373924255,-0.04955807328224182,0.03487258777022362,0.07003968954086304,0.05446594953536987,-0.08881589025259018,-0.07104207575321198,0.0011386105325073004,0.05578817427158356,-0.045735158026218414,-0.008915919810533524,-0.049027394503355026,0.02065344713628292,0.01661689020693302,-0.07121065258979797,0.016746239736676216,-0.009067203849554062,0.04372681304812431,0.037582848221063614,0.024479415267705917,-0.0206669420003891,0.04443646967411041,-0.04120690003037453,-0.010250764898955822,-0.004018205683678389,-0.00622945511713624,0.10373759269714355,0.0057534766383469105,0.03008042648434639,0.015563366003334522,-0.03709036484360695,0.059570636600255966,-0.06814886629581451,-0.10031384974718094,-0.013181759975850582,-0.10576805472373962,0.01074832584708929,0.004145294893532991,0.02196311019361019,0.03634965792298317,0.020205268636345863,-0.059687718749046326,-0.06374991685152054,0.05902132764458656,0.05409291759133339,-0.046442870050668716,0.025851532816886902,-0.016391023993492126,0.0660528764128685,-0.1045127883553505,-0.0955200269818306,-0.08022664487361908,0.10593760758638382,0.05270352214574814,-0.0290971789509058,-0.0030988275539129972,-0.04615800827741623,0.1146920844912529,-0.03354476019740105,-0.011665361002087593,-0.024430863559246063,-0.04973600059747696,0.013703744858503342,-0.040476344525814056,0.0039121671579778194,-0.09448523819446564,-0.06684956699609756,0.11447276920080185,-3.6385401358529634e-8,0.01853840984404087,0.03201199322938919,-0.02327699027955532,-0.05618596449494362,-0.04347510635852814,-0.050428569316864014,-0.04081724211573601,0.0403476282954216,-0.0027194852009415627,0.10622548311948776,-0.020432699471712112,0.03293474391102791,0.024336621165275574,0.06286387145519257,0.035747237503528595,0.005164869129657745,0.01408920343965292,-0.02065999247133732,-0.033553265035152435,-0.08629060536623001,0.022784864529967308,0.010597223415970802,0.036186039447784424,-0.04996226727962494,-0.08096598833799362,-0.05334143713116646,-0.03182683885097504,0.03163253143429756,-0.08400730788707733,-0.01308844331651926,0.015161801129579544,0.00395415723323822,-0.047995567321777344,-0.02107914723455906,0.036526501178741455,0.04978172108530998,0.04503713548183441,-0.049131788313388824,0.04921723157167435,0.07632853835821152,-0.006977062672376633,0.019163519144058228,0.00528888450935483,0.059877846390008926,0.06568491458892822,0.03223060816526413,0.04562491923570633,-0.010736655443906784,-0.011016531847417355,0.057130225002765656,0.02420802041888237,0.049770936369895935,0.050324708223342896,0.005757756996899843,-0.024957740679383278,-0.07795760780572891,-0.0033806394785642624,0.027395663782954216,-0.028377952054142952,0.047176945954561234,-0.0035342839546501637,-0.021281490102410316,0.0718262791633606,-0.04361976683139801]},{"text":"Perpetual fretting at length threw Madame Moritz into a decline, which at first increased her irritability, but she is now at peace for ever.","book":"1984","chapter":34,"embedding":[0.002725546946749091,0.10617370158433914,0.05720283091068268,0.12139178812503815,0.00948217511177063,0.0887567400932312,0.0243684072047472,0.05723508447408676,-0.06037367880344391,0.017289282754063606,-0.05197371169924736,0.019311528652906418,0.034160714596509933,-0.025601213797926903,-0.04985153302550316,-0.011155183427035809,-0.006956730969250202,0.038481757044792175,-0.041791994124650955,0.08665137737989426,0.033472172915935516,-0.005475618876516819,0.0715223103761673,0.04215605929493904,-0.07085777074098587,0.013133073225617409,-0.04584601894021034,-0.06711360812187195,0.062405310571193695,-0.028549203649163246,-0.12708516418933868,0.06660071015357971,-0.028507309034466743,-0.0061442069709300995,-0.07101019471883774,0.014096098951995373,0.055392198264598846,0.024705110117793083,-0.08710093051195145,0.017842972651124,-0.03426668792963028,-0.015991399064660072,-0.056388359516859055,-0.06818807870149612,-0.0016451365081593394,-0.05039301514625549,0.06445257365703583,0.021803822368383408,-0.008555034175515175,-0.03359327092766762,0.013307420536875725,-0.017210571095347404,-0.002647332614287734,-0.052690599113702774,-0.03314577788114548,0.0005376556655392051,0.07727579772472382,0.028731374070048332,-0.0041933488100767136,0.09543929249048233,-0.025001225993037224,0.010958977043628693,-0.016064563766121864,0.008583149872720242,0.04295126721262932,-0.06371831893920898,-0.013831361196935177,0.042638592422008514,-0.05705743283033371,0.11672627180814743,0.00946478545665741,-0.01570015773177147,0.00521180359646678,-0.031219519674777985,0.023290803655982018,-0.029500672593712807,0.020818037912249565,-0.015082212164998055,0.048386719077825546,0.09044980257749557,0.010591575875878334,-0.06285616755485535,0.07930780202150345,0.007122663781046867,-0.009465441107749939,-0.09577173739671707,0.08817154169082642,-0.10801247507333755,0.05604660138487816,-0.03942674770951271,-0.038792263716459274,0.011440185829997063,-0.00942124705761671,0.07597332447767258,-0.0296783410012722,0.024696337059140205,-0.11451491713523865,0.0454397015273571,-0.10369712114334106,0.013608613982796669,-0.03082682006061077,-0.015415290370583534,0.005846611224114895,0.02391069568693638,-0.0018390598706901073,-0.030746329575777054,0.023686494678258896,-0.01190913375467062,-0.023019051179289818,0.006429956294596195,-0.002548836637288332,-0.06973013281822205,0.02750282920897007,-0.07643990963697433,-0.022543329745531082,0.06482823938131332,-0.08985766023397446,-0.05427834019064903,-0.02617160603404045,0.0024029677733778954,0.07735388725996017,0.043115805834531784,-0.047566045075654984,-0.004591016564518213,-0.04973672330379486,0.01136800367385149,0.01161428727209568,1.903891721196722e-34,0.0056091416627168655,0.0018564981874078512,0.013073830865323544,0.024723798036575317,0.037374913692474365,0.1130383238196373,-0.041854940354824066,0.045265790075063705,0.013486452400684357,-0.020346833392977715,0.057617444545030594,0.02303030714392662,-0.04442911222577095,-0.028176793828606606,0.001273635309189558,-0.04073753207921982,0.03667252138257027,0.02491724118590355,0.07186940312385559,0.0013668355531990528,0.08827658742666245,0.07270054519176483,-0.014786241576075554,-0.0006124894134700298,-0.062172237783670425,0.08405634015798569,0.03719639778137207,0.053075049072504044,-0.08742701262235641,0.023669956251978874,0.057977769523859024,-0.01991378702223301,-0.0612061470746994,-0.03748175874352455,-0.015899471938610077,-0.0057932245545089245,-0.00402324553579092,0.0609203465282917,-0.07407625764608383,-0.046808212995529175,-0.03155944496393204,0.006861148867756128,0.025291645899415016,0.03693872690200806,-0.06555576622486115,0.018478335812687874,0.054978128522634506,0.039748165756464005,-0.009872930124402046,0.023584209382534027,0.02159254439175129,0.03851510211825371,-0.020446818321943283,0.13658134639263153,-0.014327356591820717,0.01649406924843788,-0.004020137712359428,-0.03132280334830284,-0.001097090425901115,-0.04380565136671066,-0.0008133076480589807,-0.03523433580994606,-0.029948055744171143,0.045059528201818466,0.045285385102033615,-0.018412496894598007,0.014715426601469517,-0.0010270742932334542,-0.07215730845928192,0.007095338776707649,-0.09591006487607956,0.05375564470887184,-0.020054921507835388,-0.014369996264576912,-0.014196066185832024,-0.051882658153772354,0.04317333549261093,-0.04676297679543495,-0.054677564650774,-0.060586269944906235,0.035693369805812836,-0.013862012885510921,-0.025384539738297462,0.0644044354557991,-0.02056128904223442,-0.07563415169715881,0.05085819587111473,-0.016644248738884926,-0.011398947797715664,0.032338567078113556,0.01846926100552082,0.0032834652811288834,0.1319037824869156,0.03197511285543442,-0.0668019950389862,-2.291639277568504e-33,0.019281234592199326,-0.05046943575143814,-0.030243705958127975,0.0930231362581253,0.08082237839698792,0.02243899740278721,-0.08187296986579895,0.10224826633930206,-0.07977255433797836,-0.09420782327651978,0.03661684691905975,-0.08798534423112869,0.01356293261051178,0.02404944598674774,-0.017901739105582237,-0.030404096469283104,0.03439110144972801,-0.004932086914777756,-0.06228194013237953,-0.008298506960272789,-0.013843977823853493,-0.01605077087879181,-0.041476570069789886,-0.07165110111236572,0.0010970012517645955,0.09801612049341202,0.08504538238048553,-0.07830983400344849,-0.08237132430076599,0.08862494677305222,-0.048704273998737335,0.0560416541993618,-0.08121678978204727,0.019437680020928383,0.02987128123641014,0.0441722497344017,-0.05794404819607735,-0.023192429915070534,-0.013052884489297867,-0.05244089663028717,0.009918317198753357,0.0005470612086355686,0.09180949628353119,0.08671791851520538,0.134111687541008,-0.033296145498752594,-0.06797823309898376,-0.06161484867334366,0.041128773242235184,0.0314517468214035,0.009653954766690731,-0.037818945944309235,-0.03345626965165138,0.0251921396702528,-0.02654256299138069,-0.09552452713251114,-0.07095705717802048,-0.09836265444755554,0.05092751979827881,0.010065268725156784,0.007204230409115553,-0.07464604824781418,-0.07244782894849777,0.019528277218341827,0.021915320307016373,0.04271825775504112,0.00034129447885788977,-0.012052507139742374,0.016796911135315895,0.056702155619859695,0.07842037826776505,0.11338955163955688,-0.049809228628873825,0.035567205399274826,0.007964516058564186,0.05022811517119408,0.02221832051873207,-0.03552340343594551,-0.07601083815097809,0.005338837392628193,0.004536076914519072,-0.039872534573078156,-0.0019487704848870635,-0.06392452120780945,-0.01807398721575737,-0.025154348462820053,-0.07956312596797943,0.03103041835129261,-0.0071973176673054695,0.08104173839092255,-0.024241456761956215,-0.04371640831232071,0.003132876241579652,-0.05042640119791031,0.060167234390974045,-2.7225782517348307e-8,-0.04863644763827324,0.007180823478847742,-0.016254164278507233,-0.010796427726745605,0.04598551616072655,0.030916081741452217,0.0029480832163244486,-0.006752654444426298,-0.0594291053712368,0.04570373520255089,-0.04489156976342201,0.13773804903030396,0.14667247235774994,0.06571999937295914,0.04873771592974663,0.0015820739790797234,0.052414122968912125,-0.04868944361805916,-0.03750021010637283,0.01940046437084675,-0.02881881408393383,-0.030822258442640305,0.030546125024557114,-0.07390706986188889,-0.07627648115158081,-0.02722259797155857,-0.045117899775505066,0.0019491889979690313,-0.020889760926365852,0.019472254440188408,0.033732008188962936,0.040276169776916504,-0.015558050014078617,-0.005784662906080484,-0.1346542090177536,-0.009160655550658703,0.061075933277606964,0.0013992341700941324,-0.02324780821800232,-0.014758828096091747,-0.05669321119785309,0.011657633818686008,0.012542268261313438,0.024647153913974762,0.02127617411315441,-0.1125301867723465,0.08568760007619858,-0.03189459815621376,-0.005680754315108061,0.035368241369724274,0.020582690834999084,0.04534902423620224,0.012823610566556454,0.03924111649394035,-0.0527026429772377,-0.011699914000928402,-0.012308405712246895,0.040102530270814896,-0.1409788429737091,0.0301220640540123,-0.017536791041493416,-0.0760936364531517,-0.008578227832913399,0.006627771072089672]},{"text":"But he has already recovered his spirits, and is reported to be on the point of marrying a lively pretty Frenchwoman, Madame Tavernier.","book":"1984","chapter":35,"embedding":[0.01241158414632082,0.002002565423026681,0.09823304414749146,0.052393462508916855,-0.04915936663746834,0.08258683234453201,0.03319719806313515,-0.04302588477730751,-0.008935936726629734,-0.034578077495098114,-0.050430335104465485,0.03407030180096626,-0.028102776035666466,-0.020770329982042313,0.010223333723843098,-0.023036416620016098,0.024550331756472588,0.03165564686059952,-0.010283462703227997,0.11604171991348267,0.029759323224425316,-0.039505090564489365,0.016806144267320633,-0.03445211052894592,0.03376935049891472,-0.14752088487148285,-0.00012408284237608314,0.006516886409372091,0.04607586935162544,-0.0014967878814786673,0.0318874791264534,0.06704060733318329,-0.11285921186208725,0.007538340985774994,-0.05919290706515312,-0.0040423148311674595,0.0398688018321991,0.07482551038265228,0.03357933089137077,0.02763364277780056,0.02268882282078266,-0.09404505044221878,-0.03667203709483147,-0.03447001799941063,-0.02284914255142212,-0.062020037323236465,-0.03760649636387825,-0.025274738669395447,-0.016965728253126144,-0.05810430273413658,-0.0868767574429512,0.058340348303318024,0.022762268781661987,-0.013206848874688148,-0.013426692225039005,0.04454357549548149,0.056416332721710205,-0.01585693098604679,0.08261679857969284,0.053912729024887085,-0.015729641541838646,0.08348409831523895,0.008543675765395164,-0.0018308039288967848,0.07366666942834854,-0.05000046640634537,-0.031404413282871246,0.05910201743245125,-0.06148551031947136,0.08949063718318939,-0.02478618547320366,-0.05656566098332405,0.01248159073293209,-0.0790690928697586,-0.05438685789704323,-0.041860051453113556,-0.04267148673534393,-0.019045619294047356,0.011576324701309204,0.030612081289291382,-0.06679081171751022,-0.05343962833285332,0.031934428960084915,0.0255434513092041,-0.0303827915340662,-0.02618909813463688,0.028381889685988426,-0.05409499257802963,-0.018639255315065384,0.04933199658989906,-0.13725928962230682,-0.043439775705337524,-0.030145777389407158,0.034418735653162,-0.011669985018670559,0.03926970809698105,-0.009806493297219276,0.09178000688552856,-0.06571587175130844,0.02755942940711975,-0.0626063197851181,0.07591316103935242,0.10736607015132904,-0.042666222900152206,-0.01974189281463623,0.010118317790329456,0.04777595400810242,-0.0011489653261378407,0.029283741489052773,-0.09219726175069809,0.031161975115537643,-0.03141552582383156,0.02342383563518524,-0.018153274431824684,0.05002607777714729,0.1492261439561844,-0.05106418579816818,-0.11168842762708664,-0.07073602080345154,-0.00845907349139452,0.0847749263048172,0.03124600648880005,0.026059642434120178,0.03601743280887604,0.01578355021774769,-0.023239539936184883,0.03985131159424782,-3.858497758436771e-33,-0.024649161845445633,0.060400161892175674,0.023951347917318344,0.05382680520415306,0.07303187996149063,0.08999403566122055,-0.06275291740894318,-0.018806448206305504,0.04070629924535751,-0.058361221104860306,0.007302329409867525,-0.010930000804364681,-0.1437247097492218,-0.020045030862092972,-0.148128479719162,0.06483051925897598,0.03344324603676796,0.06373955309391022,0.009825728833675385,-0.03615601360797882,0.058934252709150314,-0.004080252721905708,-0.019176702946424484,0.05713490769267082,0.007392217870801687,0.013508545234799385,0.10497009009122849,0.03498923406004906,-0.03783029317855835,0.013339334167540073,-0.025505468249320984,0.09657520055770874,0.04745003208518028,-0.05110678821802139,0.008793115615844727,0.03338699787855148,-0.07506247609853745,-0.009802881628274918,-0.010612670332193375,0.03178976848721504,-0.05379891023039818,0.013312935829162598,-0.03730928152799606,0.027296973392367363,-0.13593845069408417,-0.05179035663604736,-0.035614363849163055,-0.0027695270255208015,0.025365054607391357,0.04038581997156143,0.0018880078569054604,-0.00526460213586688,-0.0674947053194046,0.05074465274810791,-0.02719961293041706,0.04459754750132561,-0.04050850868225098,-0.046103961765766144,0.07778313010931015,-0.035416603088378906,0.06316050887107849,-0.03057439625263214,-0.012094453908503056,0.015759769827127457,0.029179062694311142,-0.0011855058837682009,0.07070096582174301,0.0042466334998607635,-0.10489844530820847,-0.10006529092788696,-0.04961710050702095,0.06551536172628403,0.003463504835963249,-0.03334421664476395,0.026513926684856415,-0.002862131455913186,0.003813812043517828,-0.030067212879657745,-0.008689315058290958,0.01053402479737997,0.0032797956373542547,0.025679348036646843,-0.029120612889528275,0.03612247481942177,-0.05136779323220253,-0.06786316633224487,0.07483045756816864,-0.03483168035745621,-0.03561508283019066,0.041626136749982834,0.05202747881412506,-0.05959482863545418,0.032068971544504166,-0.02191906049847603,-0.03669285029172897,1.6042947157818436e-34,-0.021344752982258797,-0.07929502427577972,-0.033943988382816315,0.05949964374303818,0.05203518271446228,-0.009200938045978546,-0.07649709284305573,0.03856758028268814,-0.004646833520382643,-0.08777772635221481,-0.025649109855294228,-0.012580056674778461,0.05269768834114075,0.03992786258459091,-0.017655346542596817,0.010092217475175858,0.0288984477519989,-0.033883508294820786,-0.03238780051469803,0.04203628748655319,-0.008889513090252876,0.00979130994528532,0.004555797670036554,-0.030190911144018173,-0.08994215726852417,0.08932676166296005,0.047766923904418945,-0.058245107531547546,-0.13449202477931976,0.01808474399149418,-0.012620095163583755,0.013887121342122555,-0.05903369560837746,-0.01635763794183731,0.101120725274086,0.05015793815255165,0.0004163994744885713,-0.06282874941825867,0.004855622071772814,0.05291954427957535,0.03586921840906143,-0.06667734682559967,-0.016327757388353348,-0.010306250303983688,0.10028652101755142,-0.027493486180901527,0.04844614863395691,-0.05631865933537483,0.07685896009206772,0.04343594238162041,0.07873861491680145,0.024944838136434555,-0.08152877539396286,0.004027546849101782,-0.038451991975307465,-0.030188241973519325,-0.01765669882297516,-0.08030726760625839,-0.057486750185489655,-0.0013040759367868304,-0.07461882382631302,0.03206053376197815,-0.009457963518798351,0.04836191609501839,-0.004852787125855684,-0.03799327462911606,-0.04405609890818596,0.053108613938093185,0.012996313162147999,-0.0022812518291175365,0.0806918665766716,-0.03211677074432373,-0.05603682994842529,0.08620492368936539,0.02003706432878971,0.03546931594610214,0.008406461216509342,-0.06979791820049286,0.04209134727716446,-0.07394184917211533,-0.04968377947807312,-0.09168033301830292,0.07285536080598831,-0.10646584630012512,-0.015006684698164463,-0.03224863484501839,-0.030570143833756447,-0.04214859753847122,0.054925836622714996,-0.030467182397842407,-0.002790651749819517,-0.03971698880195618,-0.03149660304188728,-0.07748866081237793,0.048627905547618866,-2.6788022466917027e-8,-0.03914649039506912,-0.06061806157231331,-0.022241031751036644,-0.04641157016158104,-0.017804773524403572,-0.02977333962917328,0.03086841106414795,-0.004790211096405983,-0.03386079892516136,0.06804464012384415,-0.0627840980887413,0.055084701627492905,0.08083996176719666,-0.05802571773529053,0.07053028792142868,-0.024154026061296463,0.09480465203523636,-0.04565252363681793,-0.055076964199543,0.04784801974892616,-0.01847134158015251,-0.02178799919784069,0.09866385161876678,-0.010838545858860016,-0.041734304279088974,-0.015771668404340744,0.007522148080170155,-0.010073636658489704,-0.016033099964261055,0.06967641413211823,0.08678584545850754,0.10897324234247208,-0.028402525931596756,0.0018954277038574219,-0.017917433753609657,0.00972332525998354,0.013866215944290161,0.04080238938331604,0.03904564678668976,0.01706073060631752,0.017973635345697403,-0.017403872683644295,-0.04976892098784447,0.0006261881208047271,0.08424986898899078,-0.0499306283891201,0.03940616175532341,-0.019511442631483078,-0.0013032949063926935,0.024694230407476425,-0.0030442748684436083,0.08525660634040833,0.06643274426460266,-0.0424395427107811,-0.004139176569879055,-0.028173549100756645,-0.011027948930859566,0.07581374794244766,-0.00047596110380254686,-0.04889305308461189,0.030806580558419228,-0.02304146997630596,0.04805709049105644,-0.0271727554500103]},{"text":"He had also changed my apartment; for he perceived that I had acquired a dislike for the room which had previously been my laboratory.","book":"1984","chapter":35,"embedding":[0.05651634559035301,0.09089566022157669,0.08006443083286285,-0.0008591195801272988,0.038586754351854324,-0.053787801414728165,-0.014250427484512329,0.01655121147632599,0.019960656762123108,-0.0670870766043663,0.061161190271377563,0.014624372124671936,0.0054803164675831795,0.03608264774084091,0.037144068628549576,-0.04393947869539261,0.03851529210805893,0.011813865043222904,-0.02279520593583584,0.008606254123151302,-0.025003232061862946,0.03518834337592125,-0.009079096838831902,-0.08352123200893402,0.062452755868434906,0.05676501989364624,-0.014557643793523312,0.12313269823789597,0.03003658354282379,-0.03941449150443077,0.003670560196042061,0.02022799476981163,0.016037127003073692,-0.09242860227823257,0.07524837553501129,-0.041557714343070984,-0.027940327301621437,0.05226454883813858,0.045163094997406006,-0.01620413549244404,-0.02240937575697899,0.007909422740340233,0.08774775266647339,0.04438347369432449,-0.0966942086815834,0.02301139570772648,0.023294897750020027,-0.08569430559873581,0.057426221668720245,0.0009799720719456673,-0.033912383019924164,0.07742906361818314,-0.00005280374170979485,-0.0025541153736412525,0.013580141589045525,0.06777709722518921,0.10682225972414017,0.11334611475467682,0.006363719701766968,-0.016966944560408592,-0.031760044395923615,0.020183341577649117,0.02999737858772278,0.042806945741176605,-0.03374898433685303,0.022415360435843468,-0.05658416077494621,-0.015902213752269745,0.11785837262868881,0.041322045028209686,0.0060204933397471905,0.03182920441031456,0.06785636395215988,-0.007509634830057621,0.004949522670358419,0.003966080490499735,-0.035906266421079636,-0.01399048138409853,0.10486645251512527,-0.00503203272819519,-0.03608423098921776,0.07663537561893463,-0.09838329255580902,-0.003708048490807414,-0.06941799074411392,-0.07078341394662857,0.02305896021425724,-0.029740137979388237,-0.015635699033737183,-0.02964281104505062,0.07332846522331238,-0.044158101081848145,0.02672373689711094,-0.03996235132217407,0.0073836976662278175,-0.0014823857927694917,-0.09944156557321548,0.06304531544446945,-0.01329630147665739,0.06159816309809685,-0.02641287073493004,0.008449414744973183,-0.03411294147372246,0.08627428859472275,0.02031049132347107,-0.05815815553069115,0.014422536827623844,-0.04813959077000618,-0.07688219845294952,-0.014887040480971336,-0.050827860832214355,-0.057624418288469315,0.019976960495114326,0.0012360939290374517,0.10033784061670303,0.042271677404642105,0.06650688499212265,0.011303032748401165,-0.06849668174982071,0.03424033895134926,0.053744539618492126,-0.02583666332066059,-0.036365851759910583,0.039570875465869904,-0.07076018303632736,-0.02329578995704651,0.038162074983119965,-4.180648230093358e-33,0.017173700034618378,-0.024277281016111374,-0.07444567233324051,0.024933194741606712,0.13156725466251373,0.02591886930167675,-0.0070606861263513565,0.09322211146354675,0.0276857428252697,0.0019102266523987055,0.13191340863704681,0.1261625736951828,-0.012010452337563038,0.001336707384325564,-0.03141765668988228,0.10713401436805725,0.01584712043404579,0.029123859480023384,0.05474163591861725,0.02453446201980114,-0.05102447792887688,0.011230108328163624,0.007552369497716427,0.005710960365831852,0.0017811276484280825,-0.03287846967577934,-0.023997096344828606,0.028788506984710693,-0.026401083916425705,-0.01254260167479515,0.0062924898229539394,0.059971727430820465,0.006555943284183741,0.0017804291564971209,-0.017154457047581673,0.02048768661916256,-0.017475878819823265,-0.02069542184472084,-0.06865473091602325,0.011559012345969677,0.024369925260543823,0.021976886317133904,-0.003480825573205948,-0.0032371128909289837,0.07297871261835098,0.03775757923722267,-0.007999569177627563,-0.0270924661308527,-0.03426574170589447,-0.06016873940825462,0.0001238873810507357,0.005521726328879595,-0.02151995338499546,0.029131632298231125,-0.03791942447423935,-0.05036323890089989,0.029997151345014572,0.017857147380709648,0.07174593955278397,0.02703029103577137,-0.0030337863136082888,0.09648435562849045,0.010949961841106415,0.07480106502771378,0.0032269468065351248,-0.17815807461738586,-0.019582221284508705,-0.04167066514492035,-0.0460435152053833,-0.029396530240774155,-0.08696950227022171,-0.012022246606647968,-0.12985453009605408,-0.0326036773622036,-0.0427994579076767,-0.08580311387777328,-0.19787932932376862,0.059649258852005005,-0.048096612095832825,-0.18799476325511932,0.00947765726596117,-0.07983347773551941,-0.05749835819005966,0.03802460804581642,-0.08701144903898239,0.0136789595708251,0.01067338790744543,-0.01940564624965191,-0.020384782925248146,0.04154634103178978,0.041846439242362976,-0.015107088722288609,-0.007005627732723951,0.028227364644408226,-0.046200379729270935,1.017136435489813e-33,-0.07775826752185822,-0.03292867913842201,-0.029541388154029846,-0.038039885461330414,0.00106158503331244,-0.005630896892398596,-0.033460233360528946,0.015625949949026108,0.009688948281109333,0.050210390239953995,0.09028281271457672,0.041449591517448425,0.06243344023823738,-0.002229358535259962,-0.04549606516957283,0.039244748651981354,0.012203486636281013,-0.09023725241422653,-0.05380365997552872,-0.015521012246608734,-0.008987121284008026,0.1300484538078308,0.048760831356048584,0.004462297540158033,-0.04577362909913063,0.03191114589571953,0.025187648832798004,-0.03183777630329132,-0.00534807937219739,-0.050507787615060806,-0.09392066299915314,0.05288567766547203,-0.09153860807418823,0.028409112244844437,0.07760855555534363,-0.030400484800338745,-0.051929935812950134,-0.04868752136826515,-0.08095096796751022,-0.023824414238333702,-0.01883523166179657,0.021390609443187714,0.010320132598280907,-0.008400189690291882,0.08412086963653564,0.035526618361473083,-0.005456780083477497,-0.0961407944560051,0.025523953139781952,-0.026252789422869682,-0.041047777980566025,0.0413760282099247,-0.035117171704769135,-0.04563876986503601,-0.05681793764233589,0.04378147050738335,0.05850651115179062,-0.013893701136112213,0.01564856432378292,0.059241075068712234,0.024097738787531853,-0.046888191252946854,0.0064063770696520805,0.031135883182287216,-0.06376050412654877,0.06180649623274803,-0.02542647160589695,-0.00958153884857893,0.07027352601289749,0.014889351092278957,0.0396755188703537,0.009313879534602165,0.02106459066271782,0.006986402906477451,-0.007913555018603802,-0.05789010599255562,-0.06176057457923889,-0.0525892935693264,-0.028699470683932304,-0.03646553307771683,-0.050929032266139984,-0.024593066424131393,-0.0015607414534315467,-0.07272489368915558,-0.000664396327920258,-0.04511214792728424,-0.04468703642487526,0.04024232178926468,-0.011197353713214397,0.0002607318165246397,0.05421212688088417,-0.004255666863173246,-0.04670659825205803,-0.05299753323197365,0.041518162935972214,-2.3486036226927354e-8,-0.050820186734199524,-0.05701364204287529,0.05996892228722572,0.056767579168081284,0.04525396600365639,-0.05544766038656235,-0.005299493204802275,0.049500998109579086,-0.013618675991892815,0.08085889369249344,-0.008283642120659351,0.04384198784828186,0.04339408874511719,0.040741171687841415,0.038039956241846085,0.053884465247392654,0.02430945634841919,-0.08807162940502167,-0.005578157491981983,0.04044821113348007,-0.007260213606059551,0.07476669549942017,-0.046952858567237854,0.0035320965107530355,-0.025114918127655983,-0.04246564209461212,0.007553872652351856,-0.009393960237503052,0.026853207498788834,0.025742167606949806,0.03735048323869705,0.021419135853648186,-0.02451442740857601,-0.024579744786024094,-0.03755586966872215,0.031842190772295,0.05156709998846054,-0.07387124001979828,0.0877910852432251,-0.012323398143053055,-0.08427631109952927,-0.0732112005352974,-0.07644326984882355,0.006085484754294157,-0.006826640572398901,-0.04846528172492981,0.06174246594309807,-0.04343292862176895,-0.009649786166846752,-0.04571611434221268,0.0025312439538538456,0.05373907461762428,-0.03083048015832901,-0.02311347797513008,0.07320451736450195,-0.07741142064332962,-0.024044932797551155,0.002528382232412696,-0.08904053270816803,-0.008482884615659714,0.03777393326163292,0.04847955331206322,-0.09966234862804413,-0.04673667997121811]},{"text":"Waldman. “D—n the fellow!” cried he; “why, M.","book":"1984","chapter":36,"embedding":[-0.04127127304673195,0.08624719083309174,-0.0029960894025862217,0.0028129485435783863,0.029926180839538574,0.06927403062582016,0.11954523622989655,0.05074596777558327,-0.026401324197649956,0.014690830372273922,-0.017255138605833054,-0.04163753613829613,0.007769460789859295,-0.045251842588186264,0.02077137492597103,0.02925490401685238,0.004992851056158543,0.007758914493024349,0.027323530986905098,0.024054352194070816,0.009653734974563122,0.07816360145807266,0.03121892362833023,0.04074053838849068,0.037039440125226974,0.06920235604047775,0.111963652074337,-0.012071660719811916,0.05653207749128342,0.06042076647281647,-0.05043916031718254,-0.029685523360967636,0.049025654792785645,0.03940683975815773,-0.005157772917300463,-0.008013727143406868,-0.01645839773118496,-0.04314427822828293,0.014033989980816841,-0.014512057416141033,-0.018418338149785995,0.037393223494291306,0.05189665034413338,-0.0495779886841774,0.004626883193850517,-0.06733014434576035,0.02720762975513935,0.021606046706438065,0.03005002997815609,0.05688205361366272,-0.007050979882478714,0.003584156511351466,-0.06316754966974258,-0.03111719712615013,0.057700008153915405,0.030856039375066757,0.07164955884218216,-0.09989523142576218,0.004074139054864645,0.04601632431149483,-0.050977110862731934,0.001849491149187088,-0.002821580972522497,0.11374258995056152,0.03248809650540352,-0.04847785085439682,-0.025751883164048195,0.0028545905370265245,-0.017661238089203835,0.08121482282876968,0.03475789725780487,-0.05573349446058273,-0.005878252908587456,-0.07065300643444061,-0.14300638437271118,-0.06384050846099854,0.05870069935917854,-0.020037498325109482,0.07767277210950851,0.029741251841187477,0.01701330952346325,-0.029892630875110626,-0.018635306507349014,0.003547634929418564,-0.010730388574302197,0.014520667493343353,0.06167822331190109,-0.07041573524475098,-0.06245177239179611,0.0039953491650521755,-0.016099311411380768,-0.03776667267084122,-0.07923232018947601,0.08923240005970001,-0.08246289938688278,-0.054530657827854156,0.0030374315101653337,0.0656186044216156,-0.0785294696688652,0.010306339710950851,0.007212708238512278,0.10000491887331009,-0.015748407691717148,-0.002287893323227763,-0.04926325008273125,-0.05242031440138817,-0.018880382180213928,-0.02970236912369728,-0.02793717570602894,0.007748452015221119,-0.028734315186738968,-0.035362206399440765,-0.02409355901181698,-0.011460414156317711,0.045726459473371506,-0.028880108147859573,0.011813937686383724,-0.12439490109682083,-0.04930596798658371,0.09523920714855194,-0.050142813473939896,0.024300165474414825,-0.08933359384536743,0.06552598625421524,0.0474269762635231,0.0105933528393507,0.0427996963262558,-3.201032013078358e-33,0.05938180908560753,0.001982873072847724,0.0372738353908062,0.035872139036655426,0.01978966034948826,0.06296056509017944,-0.05249018967151642,-0.05930441990494728,0.09022395312786102,-0.05510857701301575,-0.05718531459569931,-0.004115923773497343,-0.011840114369988441,-0.056996382772922516,-0.09423625469207764,0.03530145436525345,-0.05795237421989441,-0.0626363754272461,0.04407760500907898,-0.035751231014728546,-0.0025437558069825172,0.10394416004419327,-0.05969856306910515,-0.039260394871234894,-0.016302498057484627,-0.004266658332198858,0.07090949267148972,-0.04586834833025932,0.10406046360731125,0.033140189945697784,-0.06935979425907135,-0.07196967303752899,0.030888628214597702,0.015326500870287418,0.05618833377957344,-0.006767484825104475,-0.06959027796983719,0.021089661866426468,-0.08129505068063736,-0.08935157209634781,-0.05457691848278046,-0.02699531614780426,-0.01777033694088459,-0.04222255200147629,-0.08175575733184814,0.03398529067635536,-0.03802292421460152,0.07542727142572403,-0.008797548711299896,-0.05679565295577049,0.055842965841293335,0.08614041656255722,0.028997614979743958,0.023757953196763992,-0.000408822757890448,-0.03524164855480194,0.07983442395925522,-0.02601930871605873,0.06546059995889664,-0.0034440038725733757,0.013045570813119411,0.005309517029672861,0.06258464604616165,0.059867169708013535,0.012307442724704742,-0.057401686906814575,-0.05699377506971359,-0.04807964712381363,0.05020944029092789,-0.0075968480668962,-0.0364069826900959,-0.055468861013650894,0.04495706409215927,0.007853114977478981,-0.09625663608312607,-0.04322035610675812,-0.009624243713915348,0.07047121971845627,-0.048547036945819855,-0.10793144255876541,-0.08475886285305023,0.04243042320013046,-0.08943045139312744,-0.014001808129251003,-0.00796571932733059,-0.04759611934423447,-0.04511788859963417,-0.16757570207118988,-0.05876081809401512,0.04788197949528694,-0.03261370584368706,-0.015775885432958603,-0.012541508302092552,0.040184520184993744,-0.033269546926021576,-4.497333938715567e-34,-0.06990479677915573,0.015829801559448242,-0.03313935548067093,0.014729753136634827,0.02999195083975792,-0.06739362329244614,-0.0323319248855114,0.03294604271650314,0.005793184041976929,-0.06495605409145355,-0.012096360325813293,-0.007632103282958269,0.005479003302752972,0.06784696877002716,-0.0020180214196443558,-0.06024279072880745,0.05183275789022446,-0.043958328664302826,-0.033817898482084274,-0.043353889137506485,0.04486213997006416,0.015504064038395882,-0.03327614814043045,-0.028499621897935867,-0.02630588412284851,0.0249568410217762,0.05812845751643181,-0.0326882004737854,-0.020033229142427444,0.05571034923195839,0.011525020003318787,-0.0013392771361395717,-0.10548688471317291,0.11260293424129486,0.028175169602036476,0.12873172760009766,0.032138366252183914,0.004159372299909592,-0.06784819066524506,0.000087725420598872,0.03656981140375137,0.018386317417025566,0.036486219614744186,0.12342281639575958,0.06112860515713692,-0.05299099534749985,-0.042130764573812485,-0.03381191939115524,-0.024972617626190186,0.06080017238855362,-0.09606041759252548,-0.009118386544287205,-0.015801234170794487,-0.021923528984189034,-0.018993305042386055,0.040039196610450745,0.02537839487195015,-0.01911441795527935,0.02172008529305458,-0.005968005396425724,-0.043897416442632675,-0.02122100628912449,-0.0033411041367799044,0.06076563894748688,-0.02588854730129242,-0.07095605880022049,0.05589742586016655,0.013853141106665134,0.0007865445222705603,-0.019052764400839806,0.06256502866744995,0.06635591387748718,-0.03567776829004288,0.004227820318192244,-0.015166867524385452,0.007167637348175049,-0.01247189100831747,0.0025836473796516657,-0.003997867926955223,-0.04865242540836334,0.031039386987686157,-0.027674073353409767,-0.0047232117503881454,0.14654384553432465,-0.04259759560227394,0.005189103074371815,0.07348233461380005,-0.0009403394069522619,0.005653620697557926,-0.008300961926579475,0.057159215211868286,0.020677268505096436,-0.024148929864168167,-0.04878561198711395,-0.018581487238407135,-2.3892130940339484e-8,-0.10165686905384064,-0.01531601045280695,-0.09668334573507309,-0.003795340657234192,0.07934398204088211,0.03404884412884712,-0.1327628642320633,-0.01149845216423273,-0.026760444045066833,0.05200813338160515,0.07900652289390564,0.05530919134616852,-0.12653091549873352,0.0010190618922933936,0.03315072879195213,0.01467732060700655,-0.028098158538341522,-0.024238603189587593,0.006790547166019678,-0.0169991385191679,-0.02747977152466774,0.0016015211585909128,-0.03327842056751251,0.0591161884367466,-0.0022295997478067875,0.07881072908639908,-0.03163159638643265,-0.03614042326807976,-0.03965042531490326,0.0719611868262291,0.11602165549993515,0.06182164326310158,-0.11679409444332123,0.05741750821471214,-0.00046452871174551547,0.04528989642858505,0.06755820661783218,0.04564614221453667,0.07085701823234558,0.00760469539090991,-0.02013428881764412,0.013270157389342785,0.053347423672676086,-0.005682101007550955,-0.04551566019654274,0.06822317838668823,0.04483639821410179,-0.020975150167942047,0.030815474689006805,0.05131212994456291,-0.06558483093976974,-0.07961606979370117,0.005256404634565115,-0.02750341035425663,0.01254931278526783,-0.02120663784444332,0.0005703498027287424,0.0032985678408294916,-0.05046844482421875,-0.032185278832912445,0.06047964468598366,0.03957827761769295,-0.02297985553741455,0.05261317640542984]},{"text":"The Persian, Arabic, and Sanskrit languages engaged his attention, and I was easily induced to enter on the same studies.","book":"1984","chapter":36,"embedding":[0.06501444429159164,0.03456120938062668,-0.034513186663389206,0.008866021409630775,-0.033999551087617874,-0.02223772555589676,0.00477313669398427,-0.016329325735569,0.014269924722611904,-0.004431472159922123,0.012240859679877758,-0.006244842428714037,0.006262490060180426,0.04597951099276543,0.046113140881061554,-0.04078206047415733,-0.07344725728034973,-0.01192173920571804,-0.01751156896352768,-0.10972156375646591,-0.0644872710108757,0.038331203162670135,0.11960268765687943,-0.0524396188557148,0.05681329965591431,0.006985227577388287,0.05380954593420029,-0.056256189942359924,0.0897505059838295,0.024049673229455948,-0.0042219338938593864,0.04257338121533394,-0.004405885934829712,0.039712220430374146,-0.09849242120981216,0.07159147411584854,-0.02768281288444996,0.04519527405500412,0.03424840793013573,-0.01632194221019745,-0.0128737548366189,0.02872593142092228,0.09268361330032349,0.015509498305618763,-0.00797233171761036,-0.09540446102619171,-0.005945442710071802,0.017120400443673134,-0.030196458101272583,0.013315130025148392,-0.09330268949270248,-0.032767403870821,0.016073793172836304,-0.04963788762688637,-0.041618168354034424,-0.01079078484326601,0.054200679063797,0.10374153405427933,-0.06074147671461105,-0.01850263588130474,-0.10562317818403244,-0.03112778067588806,0.015007796697318554,0.029817448928952217,-0.06770239025354385,-0.018026987090706825,0.01839163899421692,-0.012851038947701454,-0.028195658698678017,0.04527550935745239,0.019634973257780075,0.01809137687087059,0.06155909597873688,0.025432972237467766,-0.016997963190078735,-0.07612138986587524,-0.022139795124530792,-0.06014123186469078,-0.04986497014760971,-0.07743173837661743,0.04052169620990753,0.04510179162025452,-0.054385483264923096,-0.04552164673805237,-0.010439240373671055,0.015324865467846394,-0.0014984330628067255,-0.01650552824139595,-0.0053900061175227165,-0.00843772105872631,0.10615957528352737,-0.06927518546581268,-0.02755291946232319,0.02217833884060383,-0.026107143610715866,-0.01081005297601223,0.01944994181394577,0.0374624989926815,-0.014129070565104485,0.05376897752285004,0.03611762821674347,-0.014109431765973568,-0.03935147076845169,0.0910385325551033,-0.08816402405500412,-0.05338747426867485,-0.08084288239479065,-0.055300273001194,-0.08440379053354263,-0.061869680881500244,-0.04507625475525856,0.027398990467190742,0.010293010622262955,0.07942947745323181,0.0315229557454586,0.05742752179503441,0.014050799421966076,0.003826854517683387,0.030270565301179886,0.03419513627886772,-0.07907984405755997,0.03331621736288071,0.016271468251943588,0.017147036269307137,-0.03774420544505119,-0.04811916872859001,-0.02173200249671936,-4.893606859702184e-33,0.06768110394477844,0.0223297830671072,-0.05951589345932007,0.08026596158742905,-0.07722403854131699,-0.024622531607747078,0.002980058779940009,0.026036005467176437,0.03880256041884422,-0.09225770831108093,0.11139894276857376,0.07806462049484253,0.026616571471095085,0.066217802464962,-0.055512797087430954,0.07602167129516602,-0.046221062541007996,0.03995804861187935,-0.014205834828317165,-0.016936270520091057,0.012485279701650143,0.05478546768426895,0.040706485509872437,-0.06896704435348511,0.016117312014102936,0.028172265738248825,0.04280946031212807,-0.07847228646278381,0.045945893973112106,0.02932414785027504,-0.009195368736982346,0.02026990056037903,-0.11301196366548538,-0.009557034820318222,0.05799524486064911,0.006003974471241236,-0.0021579887252300978,-0.08999446034431458,0.01116342842578888,-0.010661895386874676,0.043731387704610825,0.06799867749214172,0.09988466650247574,-0.05234554782509804,0.022651098668575287,0.07723129540681839,-0.035030752420425415,0.01555114146322012,-0.030616363510489464,0.023503003641963005,-0.09519600868225098,0.0070371623151004314,0.006546866148710251,-0.09588585048913956,-0.006665765307843685,0.04316966235637665,0.027646204456686974,0.03812607750296593,-0.035704515874385834,0.06732204556465149,-0.050940025597810745,-0.0028305165469646454,-0.015847230330109596,0.043269019573926926,0.014581124298274517,-0.01902160607278347,-0.08777216821908951,-0.052517712116241455,0.05359383299946785,-0.022640474140644073,-0.08484657853841782,-0.03203633055090904,-0.06255034357309341,0.004908584523946047,-0.05265558138489723,-0.04966624826192856,-0.03529629483819008,-0.11210683733224869,-0.030597267672419548,0.005933661945164204,0.060492563992738724,-0.01591828279197216,0.014849428087472916,0.014672069810330868,-0.04353387653827667,0.0718107521533966,0.030003458261489868,-0.12166037410497665,0.016367178410291672,0.020499305799603462,0.05341239273548126,-0.013181151822209358,0.06642021238803864,-0.1008160188794136,-0.0006549341487698257,1.555326513944716e-33,-0.004765258636325598,0.02678004279732704,-0.01040974073112011,-0.025947658345103264,0.05761607736349106,-0.030246274545788765,-0.005486199166625738,0.05928440019488335,0.027403028681874275,0.038724709302186966,0.07903274148702621,0.03531685844063759,0.06329751014709473,-0.029554739594459534,-0.03309793025255203,-0.07707526534795761,0.04762375354766846,0.061193063855171204,0.00009450477955397218,0.07171393185853958,-0.004238178953528404,0.05283982306718826,0.019592929631471634,-0.056041818112134933,0.012948538176715374,-0.008535956963896751,0.007630839943885803,0.009316726587712765,-0.10332085937261581,0.03870496526360512,0.07981142401695251,0.03788411244750023,-0.07765717804431915,-0.008162661455571651,0.009485653601586819,0.05117238312959671,-0.0017561332788318396,0.01977980136871338,-0.04577908664941788,0.04900357499718666,-0.010567671619355679,0.0491020493209362,0.08486685156822205,0.023683693259954453,-0.004596766084432602,0.03540436923503876,-0.09722713381052017,0.06767474114894867,-0.03970850631594658,-0.05879020318388939,-0.10529705882072449,0.028754713013768196,0.024476902559399605,-0.1354137510061264,0.09235062450170517,-0.0009231537114828825,0.07762271910905838,-0.027962543070316315,-0.03535850718617439,-0.025238242000341415,-0.030672138556838036,0.04751778766512871,0.03730284795165062,-0.04889087751507759,-0.04123084619641304,-0.055123403668403625,0.04093435779213905,0.02960314229130745,0.04625476896762848,-0.08497459441423416,0.09415516257286072,-0.004308213014155626,-0.019816452637314796,0.031969908624887466,-0.04113275185227394,-0.005264229141175747,-0.06849411875009537,-0.05756131187081337,-0.011786093935370445,-0.05241377651691437,0.0025880986358970404,0.01075050700455904,-0.04294523596763611,-0.0636439174413681,0.06304451823234558,0.09332611411809921,-0.06769207119941711,-0.03502274677157402,0.068117655813694,-0.08348124474287033,0.017669983208179474,0.00549333356320858,0.0036550459917634726,-0.03894417732954025,0.019934117794036865,-2.3226791157071602e-8,-0.08260012418031693,-0.052494343370199203,-0.005781529471278191,0.04210534691810608,0.015799270942807198,-0.0341535285115242,-0.06580747663974762,0.03881196677684784,-0.11247854679822922,0.0008964273147284985,-0.051735151559114456,0.07225634157657623,0.011463724076747894,0.06634679436683655,0.05264895409345627,-0.04017731919884682,0.11716589331626892,-0.002134236739948392,-0.0263955257833004,0.012162547558546066,0.07039200514554977,0.023972734808921814,0.021377207711338997,-0.04097919538617134,-0.07201431691646576,0.07158122211694717,-0.022048883140087128,0.0009035628172568977,0.05812748149037361,-0.019370298832654953,-0.00224275141954422,-0.02124696597456932,-0.04344275966286659,-0.08101104944944382,-0.028360916301608086,0.036903247237205505,-0.013917512260377407,-0.03740807622671127,0.04989464581012726,0.04622497037053108,0.1135629341006279,0.009288329631090164,0.05948350206017494,0.07171723246574402,0.04356107860803604,0.06148697808384895,0.01294527668505907,-0.03436344116926193,0.04799120873212814,-0.015077855437994003,-0.017037246376276016,0.02931913174688816,0.04347369819879532,-0.010819966904819012,0.06637067347764969,-0.02676168829202652,-0.08590350300073624,-0.03811822086572647,-0.11368834972381592,0.019976114854216576,0.12091422080993652,0.06783780455589294,-0.06347030401229858,-0.02613486722111702]},{"text":"The month of May had already commenced, and I expected the letter daily which was to fix the date of my departure, when Henry proposed a pedestrian tour in the environs of Ingolstadt, that I might bid a personal farewell to the country I had so long inhabited.","book":"1984","chapter":37,"embedding":[0.06725203990936279,0.0705098807811737,0.1159587949514389,0.060837313532829285,0.04859768971800804,0.0257280133664608,0.03736627846956253,-0.05533770099282265,-0.08776548504829407,-0.0786011815071106,-0.00935323815792799,0.02809646911919117,-0.016465209424495697,-0.05759427323937416,-0.06024439260363579,0.06305865943431854,-0.0046354192309081554,-0.004322707653045654,-0.01643768884241581,0.053215496242046356,-0.09902267158031464,-0.0032606555614620447,-0.033464182168245316,0.03861634433269501,-0.02246912382543087,0.057393983006477356,0.027715913951396942,-0.033439990133047104,0.0023808255791664124,-0.0031694406643509865,-0.04411597177386284,0.040837064385414124,-0.04928436875343323,-0.03888750821352005,0.07804825901985168,0.016343820840120316,-0.0058105806820094585,-0.0844951793551445,0.0139059042558074,-0.061323702335357666,0.00568012148141861,-0.024448145180940628,0.030768606811761856,0.06667066365480423,-0.02939576841890812,0.02011794038116932,0.01874067448079586,-0.009673027321696281,-0.017950596287846565,0.12205527722835541,0.04211890324950218,-0.0015923628816381097,-0.01746373251080513,-0.11743473261594772,-0.007658828981220722,0.004556891042739153,0.021175600588321686,0.002135684946551919,-0.06044714152812958,0.03380867466330528,-0.06013720482587814,-0.07425417751073837,-0.09544763714075089,-0.014051467180252075,-0.0042284210212528706,-0.02989034913480282,-0.024575907737016678,-0.06590668857097626,0.0016658279346302152,-0.0018689180724322796,-0.026741504669189453,-0.024434642866253853,0.00778964115306735,0.04964656010270119,-0.030295584350824356,-0.01764407567679882,-0.05485381558537483,0.0507749542593956,0.04626820236444473,0.005447820760309696,-0.07504726201295853,0.0069711157120764256,0.00810389593243599,0.05610286444425583,-0.02606605365872383,0.013692422769963741,0.01676378771662712,-0.06492480635643005,0.048035841435194016,-0.027783015742897987,0.0508115254342556,-0.10414823889732361,-0.005329180043190718,0.03932403400540352,-0.11822237819433212,-0.0525878369808197,-0.06593479961156845,0.04994765296578407,0.007588920183479786,0.07413811981678009,0.031781721860170364,0.08712058514356613,-0.03599066659808159,0.013598241843283176,-0.06721977889537811,-0.03768984600901604,-0.0814066231250763,-0.07365799695253372,-0.06272127479314804,-0.0018980215536430478,-0.018260754644870758,0.0019351713126525283,0.09308893978595734,-0.010543831624090672,0.04982467368245125,-0.006621402222663164,-0.04279012233018875,0.00014926452422514558,0.09314993023872375,0.057629384100437164,0.022094670683145523,0.020441045984625816,-0.06732367724180222,0.03527863696217537,-0.13880431652069092,-0.015892114490270615,0.12434983253479004,-3.7446911708359576e-33,-0.02435503900051117,-0.021863708272576332,0.033519916236400604,0.10880544036626816,0.06437915563583374,-0.03491758182644844,-0.03050241991877556,-0.02539331465959549,0.01781906746327877,-0.14086616039276123,0.1266537606716156,-0.025165965780615807,0.06343884766101837,-0.07661449164152145,-0.10035651177167892,0.017382754012942314,0.007808168884366751,0.0109349824488163,0.01776094362139702,0.011361610144376755,0.1379106491804123,-0.0197118129581213,0.006528554949909449,-0.0227979589253664,-0.01580578088760376,0.03575842082500458,0.005843809340149164,0.00922034028917551,0.011526238173246384,0.03214522451162338,0.05769414082169533,0.09691987186670303,0.04529957100749016,-0.015317331999540329,0.011721164919435978,-0.0018092268146574497,0.021144434809684753,-0.07075832784175873,-0.0011637561256065965,-0.068304643034935,0.028473857790231705,0.01871764287352562,-0.025273161008954048,-0.06612624228000641,0.027490515261888504,-0.013184893876314163,0.09290648251771927,0.06068592146039009,0.07577163726091385,-0.10274072736501694,-0.020568963140249252,-0.07438672333955765,0.007622335106134415,0.008821800351142883,0.010040991008281708,0.025334889069199562,-0.03206045180559158,0.0015178039902821183,-0.010234270244836807,-0.06492675095796585,0.040180254727602005,0.08317932486534119,0.05683397129178047,0.06960070133209229,-0.04347199574112892,-0.08547250926494598,-0.03752032667398453,-0.016836846247315407,-0.03897520899772644,0.009692870080471039,0.038317255675792694,-0.000126074199215509,0.014443634077906609,-0.03576432168483734,-0.05641518160700798,-0.036435190588235855,0.05614315718412399,0.013355514034628868,0.011432239785790443,-0.0042217024601995945,0.04780280962586403,0.04501733183860779,-0.06872671097517014,-0.01741762086749077,0.1354716420173645,-0.01149241253733635,0.022591792047023773,-0.14073486626148224,-0.06285383552312851,0.07053472846746445,-0.04776807874441147,0.02954927273094654,-0.003782125888392329,0.040489811450242996,-0.06314066052436829,2.89360102658147e-34,0.088650643825531,-0.038951948285102844,0.040100302547216415,0.03241405263543129,-0.0397065132856369,-0.02994745410978794,0.013457152992486954,0.0832497626543045,0.0036690388806164265,0.08206012845039368,-0.01190344151109457,0.05102986469864845,0.06443143635988235,0.042354702949523926,-0.04415973648428917,-0.01583508960902691,0.1311711221933365,-0.04320002719759941,-0.02742023766040802,0.01516641490161419,-0.12306328117847443,-0.0005718941683880985,-0.10157669335603714,-0.08574743568897247,0.0007182435365393758,0.047959547489881516,0.05340191349387169,-0.05230095237493515,-0.11329050362110138,-0.043104298412799835,-0.04825010895729065,-0.04785626009106636,-0.041237130761146545,0.024746736511588097,0.019573308527469635,0.0743604376912117,0.07030375301837921,-0.019404783844947815,0.018315736204385757,0.06658019125461578,-0.07786587625741959,0.003120005363598466,0.11965786665678024,0.0231084693223238,0.04807569459080696,-0.01897423155605793,-0.07528438419103622,-0.033983536064624786,0.044534359127283096,0.01874542608857155,-0.019469931721687317,0.01765381544828415,-0.04028107598423958,0.03405098617076874,-0.038068462163209915,0.027641963213682175,-0.020663728937506676,-0.04979906231164932,0.003898970317095518,0.013708674348890781,-0.08272460848093033,-0.01958213932812214,0.0470394492149353,-0.05489477142691612,-0.007746809162199497,-0.08733586221933365,-0.07420749962329865,0.01817343570291996,-0.016907040029764175,-0.01929468847811222,-0.051483023911714554,0.036557916551828384,-0.0598851703107357,0.026717698201537132,0.0075658224523067474,0.02913583442568779,0.07087598741054535,0.02200285531580448,-0.08034177124500275,-0.010818369686603546,-0.06272928416728973,0.026582764461636543,-0.1085728332400322,0.007032835856080055,0.02281998284161091,-0.04865150898694992,-0.08046351373195648,-0.01695886068046093,0.04973743483424187,0.02002730593085289,0.033983565866947174,-0.0438789427280426,0.023494400084018707,-0.006848116870969534,-0.021260105073451996,-3.6216604826222465e-8,-0.036070097237825394,-0.007145772222429514,-0.01894337125122547,-0.0007742942543700337,-0.003842128673568368,-0.10187235474586487,0.052518416196107864,0.0012998144375160336,-0.00916097778826952,0.048144519329071045,0.04481809213757515,0.05293738842010498,-0.04269750788807869,0.03060704469680786,0.02047458477318287,-0.0007544137188233435,-0.036884114146232605,-0.10466872900724411,-0.025274552404880524,0.0718156173825264,-0.004515424370765686,-0.015984565019607544,0.02685484290122986,-0.006727396510541439,-0.003819323144853115,0.032171305269002914,0.00791074801236391,-0.02946661226451397,-0.039711177349090576,0.03090982511639595,0.008065136149525642,0.025736641138792038,0.017747893929481506,-0.045218974351882935,-0.061868518590927124,0.025152914226055145,0.0029677534475922585,0.011005031876266003,0.06938523054122925,-0.007080144248902798,0.06658916175365448,0.07079137861728668,-0.0032369864638894796,0.06117510050535202,0.060469940304756165,0.004150626715272665,0.00391381187364459,-0.023321088403463364,-0.014823611825704575,-0.02638893388211727,-0.04052203148603439,0.029341718181967735,0.052706725895404816,0.054745353758335114,0.08874363452196121,0.046603791415691376,0.0013594928896054626,-0.03555869311094284,-0.0070762066170573235,0.01576969213783741,0.03272835165262222,0.06476164609193802,-0.07555446028709412,-0.015106192789971828]},{"text":"The resources of his mind on this occasion were truly astonishing: his conversation was full of imagination; and very often, in imitation of the Persian and Arabic writers, he invented tales of wonderful fancy and passion.","book":"1984","chapter":37,"embedding":[0.04864836856722832,0.06475342810153961,0.01030815951526165,0.012222724966704845,-0.06670069694519043,-0.05807089805603027,0.10779093205928802,0.02974153496325016,-0.001983955269679427,-0.0039659952744841576,-0.06313516199588776,0.07492067664861679,0.05299156531691551,0.01744477078318596,0.018504619598388672,-0.032295916229486465,0.025535792112350464,-0.029864242300391197,-0.02041010931134224,-0.054599251598119736,0.0647737979888916,0.026590067893266678,0.11300426721572876,-0.06266001611948013,0.038811348378658295,-0.015122318640351295,0.044356752187013626,-0.031259000301361084,0.07226883620023727,-0.005258236546069384,0.021931350231170654,0.05601213872432709,0.030482079833745956,-0.06369204819202423,-0.057642269879579544,0.04331807792186737,0.0013339553261175752,0.046548936516046524,0.028258558362722397,-0.035515859723091125,-0.028526702895760536,-0.00036302345688454807,0.007292814087122679,0.07291748374700546,-0.036942679435014725,-0.018362246453762054,-0.013975156471133232,0.03555668145418167,-0.029933089390397072,0.04983110353350639,-0.12908239662647247,0.01933993399143219,0.020136186853051186,-0.12198696285486221,0.014011751860380173,0.010804220102727413,0.013657329604029655,0.009252454154193401,-0.017582328990101814,-0.010539292357861996,-0.04396166279911995,0.0368458591401577,0.01683346927165985,-0.006741239223629236,-0.04032670333981514,-0.11634413152933121,0.017994938418269157,0.07098235934972763,-0.018044009804725647,0.033591169863939285,-0.008237079717218876,0.014942235313355923,0.031321387737989426,-0.04166826605796814,-0.004749128594994545,-0.0618116557598114,-0.06673546135425568,-0.11249273270368576,-0.08623002469539642,-0.05729157477617264,-0.015387394465506077,0.009148658253252506,-0.01039496436715126,-0.0008372746524401009,-0.04076552018523216,-0.02770901843905449,0.019669199362397194,-0.006466689985245466,-0.020418008789420128,0.006054703611880541,0.05289629474282265,-0.12365347892045975,-0.09190276265144348,-0.056148722767829895,0.050286099314689636,0.03477910906076431,-0.028632167726755142,-0.021227944642305374,-0.10261773318052292,-0.010830799117684364,0.12053949385881424,-0.033013589680194855,0.0035744074266403913,0.02154526859521866,-0.025888592004776,0.002414124086499214,-0.029388880357146263,0.033331748098134995,-0.08309976011514664,-0.024765875190496445,-0.05978503078222275,-0.004251040983945131,-0.03269030153751373,-0.02665826678276062,0.08567995578050613,0.06976591795682907,-0.04238199442625046,-0.053831830620765686,-0.015081258490681648,-0.042129240930080414,0.06692267209291458,0.06957263499498367,-0.0003865770122501999,0.07039263844490051,-0.037241630256175995,-0.059397559612989426,0.05063996464014053,-2.922974885534092e-33,0.05686080455780029,0.07473798841238022,-0.011983050964772701,0.06256254762411118,0.010864046402275562,-0.0015748541336506605,0.00790016632527113,-0.009252331219613552,-0.026467878371477127,-0.00540461391210556,0.049067605286836624,0.0704505443572998,0.025497084483504295,0.09739023447036743,-0.08000107109546661,0.03026762790977955,-0.04510853439569473,-0.03762352466583252,0.07391752302646637,-0.04798373207449913,-0.01552366092801094,0.06196599453687668,0.040801964700222015,-0.06171054393053055,-0.022190740332007408,0.07208263128995895,0.08592473715543747,-0.09407054632902145,0.013674264773726463,0.032725151628255844,-0.032208189368247986,0.022217988967895508,-0.09106168150901794,0.0006459574797190726,0.0037293178029358387,-0.026373956352472305,-0.09174046665430069,-0.08722224086523056,0.07781527191400528,0.11212142556905746,0.06934055685997009,0.009573670104146004,0.006631236989051104,-0.029287215322256088,-0.024102548137307167,0.12457384169101715,0.011546162888407707,0.06477145105600357,-0.020441455766558647,0.00469446973875165,-0.01808900758624077,0.0211267601698637,0.04919799044728279,-0.02413817308843136,0.012899729423224926,0.015667501837015152,0.0037362289149314165,-0.011068983934819698,0.07034283876419067,0.03201458975672722,0.028361445292830467,-0.01069021224975586,0.0026286665815860033,0.006533212494105101,-0.008872748352587223,-0.0001953327446244657,-0.015507718548178673,0.026948263868689537,-0.053385406732559204,0.0234540943056345,-0.028296716511249542,-0.006799713242799044,-0.024728192016482353,-0.07345033437013626,-0.09547121077775955,-0.012317893095314503,0.012712844647467136,-0.06716042011976242,-0.057681627571582794,0.055529411882162094,-0.018198851495981216,0.04947676882147789,-0.008442620746791363,-0.04976610466837883,-0.052422896027565,0.024002492427825928,0.014313326217234135,-0.0764123946428299,-0.04627083241939545,0.012107347138226032,0.0317336767911911,-0.07777784764766693,0.07747127115726471,-0.11192711442708969,-0.06111695244908333,-2.3072949796937856e-34,-0.011818946339190006,-0.007881627418100834,0.03273884579539299,0.0929272472858429,-0.016914067789912224,-0.05913938581943512,-0.07096739858388901,0.0333300344645977,-0.008325791917741299,-0.004584924317896366,-0.03386226296424866,0.01891595870256424,0.03836508467793465,-0.0902157723903656,0.018887531012296677,-0.06006328761577606,0.03620714321732521,0.016370169818401337,-0.029912589117884636,0.032476674765348434,0.037044256925582886,0.024889802560210228,-0.009440903551876545,-0.10264702141284943,0.00825174618512392,-0.023087963461875916,-0.025036022067070007,-0.0376981683075428,-0.06872989982366562,0.06556938588619232,0.05802270397543907,-0.012621469795703888,-0.07035593688488007,0.040981631726026535,-0.0023876172490417957,0.06030967831611633,0.012645796872675419,0.06580551713705063,-0.04224144667387009,0.013771316967904568,0.0004625777655746788,-0.021436743438243866,0.1259126216173172,0.012050438672304153,0.010012172162532806,0.015681760385632515,-0.12637211382389069,0.011210782453417778,-0.003996242769062519,-0.008785237558186054,-0.035815827548503876,0.03346993401646614,-0.003276239847764373,-0.1258898377418518,0.012084558606147766,-0.027128418907523155,-0.03644607961177826,-0.0034945185761898756,0.056895703077316284,-0.030182089656591415,-0.05186595395207405,-0.018266884610056877,0.013042391277849674,-0.06924620270729065,-0.007393479347229004,-0.009324995800852776,0.0019602198153734207,0.03532429039478302,-0.011829359456896782,-0.027118759229779243,0.008885057643055916,0.012823298573493958,-0.056326061487197876,0.051274582743644714,0.017930155619978905,0.12041792273521423,-0.014563396573066711,-0.07031752914190292,-0.016213081777095795,-0.004165096674114466,-0.0030019471887499094,-0.04646247997879982,-0.05202128365635872,-0.040607333183288574,0.046341340988874435,0.07882170379161835,-0.09462621062994003,0.03555639833211899,-0.02399744838476181,-0.027480214834213257,-0.0073283882811665535,0.0030683143995702267,0.02631494030356407,0.04943467304110527,0.01858891360461712,-2.8783389893760614e-8,-0.1353035569190979,-0.03762118145823479,0.00978870689868927,0.00184057024307549,0.04545667767524719,0.04112793132662773,0.030104849487543106,0.04196631535887718,-0.08527115732431412,0.024557804688811302,-0.015194382518529892,0.03260615095496178,-0.009598605334758759,0.09053850919008255,0.03817039728164673,-0.01719754748046398,0.08331049233675003,-0.010919264517724514,0.004813435487449169,-0.003039733739569783,0.1555604785680771,0.05141642689704895,-0.01808595098555088,-0.04408556967973709,-0.11166277527809143,0.11910681426525116,-0.00798124261200428,-0.08046816289424896,0.02483447827398777,0.02204144187271595,0.01419733464717865,0.025661852210760117,-0.00979920569807291,-0.05136343464255333,0.023812508210539818,-0.025963932275772095,-0.06716243922710419,0.012167173437774181,-0.02183476835489273,-0.1070881262421608,0.0999823808670044,-0.002232432132586837,0.08510173857212067,0.03459430858492851,0.0695788562297821,-0.0050923023372888565,0.013010179623961449,-0.06348560750484467,0.013338581658899784,0.08566156029701233,-0.008929159492254257,0.05222766846418381,0.09962678700685501,0.04312771186232567,0.07913941144943237,-0.09488173574209213,-0.04291996359825134,-0.03285140171647072,-0.06126939505338669,0.03298075869679451,0.05779070034623146,0.09548070281744003,-0.042964693158864975,-0.03483239933848381]},{"text":"The evening was warm and serene, and we prolonged our walk farther than usual.","book":"1984","chapter":38,"embedding":[0.052938614040613174,0.08608479797840118,0.11366643756628036,0.11883196234703064,0.07919440418481827,-0.06640172749757767,0.037274010479450226,-0.08054753392934799,0.0027021525893360376,-0.047969065606594086,-0.00250400067307055,0.0721060186624527,-0.016235269606113434,0.0014338719192892313,0.10108865797519684,-0.001177782192826271,0.06961388140916824,0.014749524183571339,-0.03102925606071949,0.04757404327392578,-0.03741146996617317,0.01460978016257286,0.04341429844498634,0.09460700303316116,0.010940398089587688,0.01984703354537487,0.07376164942979813,-0.02886013127863407,0.08116424828767776,-0.0007508880808018148,-0.02112782746553421,0.09425994008779526,0.07049696147441864,0.0005857867654412985,-0.037820003926754,0.028946058824658394,0.04596161097288132,-0.09102741628885269,0.0023709964007139206,-0.01252751238644123,0.033980268985033035,-0.02132355235517025,0.06593140214681625,0.04762481153011322,-0.05618586763739586,-0.003200134029611945,-0.014798009768128395,-0.06674756109714508,0.004814843647181988,0.06689739972352982,-0.007899947464466095,0.048247575759887695,-0.07232566922903061,-0.024590883404016495,-0.062205541878938675,0.028299622237682343,0.014510784298181534,0.009104001335799694,0.0626823753118515,0.006295680068433285,-0.04516087844967842,0.06499121338129044,-0.0023378198966383934,0.03331320732831955,-0.045352719724178314,-0.11717096716165543,-0.12720105051994324,-0.06494913250207901,0.0683637484908104,0.01722748950123787,-0.04875309392809868,0.004697110038250685,0.039786119014024734,-0.02906050905585289,-0.10832555592060089,-0.05061706155538559,-0.0002201460301876068,-0.039567966014146805,0.015682872384786606,-0.05745168775320053,0.018998324871063232,-0.04498264566063881,0.012064889073371887,0.0779721736907959,-0.002069097477942705,0.011301095597445965,0.018136104568839073,0.07244995981454849,-0.0005861466634087265,-0.029704416170716286,0.021550191566348076,-0.05926842242479324,-0.11913393437862396,-0.017253777012228966,-0.04511924460530281,-0.06363780051469803,-0.0480743907392025,0.017816631123423576,0.03895403817296028,0.03916863352060318,0.04187342897057533,0.07472693175077438,-0.012771003879606724,0.05391312763094902,-0.02999446913599968,-0.012075605802237988,-0.04375253617763519,-0.04505031183362007,0.018956640735268593,0.00975726917386055,-0.0016372842947021127,0.015081309713423252,0.02919290028512478,0.031595177948474884,0.009676380082964897,-0.013783629983663559,-0.08305828273296356,0.052840255200862885,0.00768423592671752,0.09335148334503174,0.03398096188902855,0.06722923368215561,0.032185956835746765,-0.011884858831763268,-0.027239259332418442,-0.02299228496849537,0.13027870655059814,-4.703991539390887e-33,0.023761043325066566,0.0035834861919283867,0.029208652675151825,0.0476890467107296,0.08879325538873672,-0.034161683171987534,-0.03904107213020325,-0.04557248204946518,-0.06493858247995377,-0.056489646434783936,0.05159114673733711,0.006865383591502905,0.0795091986656189,0.019597453996539116,-0.05278921499848366,-0.007520009763538837,-0.007539552170783281,0.06223514303565025,0.046006470918655396,0.025052987039089203,-0.018222488462924957,-0.06870890408754349,0.03682418540120125,-0.007410292513668537,0.022859808057546616,-0.0736498162150383,-0.02758907712996006,0.0264373030513525,0.0176671352237463,0.02448851242661476,0.004825718700885773,0.007327645551413298,0.009665016084909439,0.041089948266744614,0.05707830563187599,0.037154048681259155,0.040162794291973114,-0.03393375873565674,-0.002194521948695183,-0.008227343671023846,-0.006654661614447832,0.018366649746894836,0.08194868266582489,-0.04064049944281578,-0.006432047579437494,0.03648388013243675,0.0015916504198685288,0.05426912382245064,-0.10169700533151627,0.0167281161993742,-0.0978960320353508,0.004981899168342352,0.051462166011333466,-0.08928254246711731,-0.053067896515131,-0.01382659375667572,0.025114232674241066,0.05856749415397644,-0.0523240864276886,0.024765120819211006,-0.020118307322263718,-0.04024612531065941,0.018102753907442093,-0.13180342316627502,0.01250893622636795,-0.014094013720750809,-0.06515377014875412,0.0020873763132840395,-0.007612064480781555,0.01219114288687706,0.040195196866989136,0.04955032095313072,0.06203748658299446,0.010759128257632256,0.01811322756111622,-0.03986022248864174,0.03423359617590904,0.0010220649419352412,0.0018053400563076138,-0.08421728014945984,-0.0810340940952301,0.06420976668596268,-0.04558611288666725,0.006427989806979895,0.07729806005954742,-0.02142948843538761,0.02316654846072197,-0.004144031088799238,-0.1512024700641632,0.04823144152760506,-0.037246040999889374,-0.019551698118448257,0.029325757175683975,0.009948698803782463,-0.03912387043237686,1.0285638936187365e-33,0.0963342934846878,0.08419657498598099,-0.005987136624753475,-0.02043731138110161,-0.06708742678165436,-0.03240126371383667,-0.06921400129795074,0.023310812190175056,-0.09342046827077866,0.06752308458089828,0.024130357429385185,-0.027847977355122566,0.017278051003813744,-0.033696189522743225,-0.014428757131099701,-0.03565008193254471,0.10977586358785629,0.03865958750247955,-0.01647115871310234,0.06373754143714905,-0.053941186517477036,0.03167957067489624,-0.013696136884391308,-0.06674493849277496,-0.013804894872009754,0.022996611893177032,0.043745845556259155,0.019647303968667984,-0.08027087897062302,-0.025008268654346466,0.04904549568891525,0.001922212541103363,-0.09358702600002289,-0.016261205077171326,-0.005543963517993689,0.15377190709114075,-0.04977899789810181,-0.03855159506201744,0.0010888478718698025,-0.051226403564214706,-0.007460125256329775,-0.08259380608797073,0.10833217948675156,0.0026641604490578175,0.0054923370480537415,-0.039171796292066574,-0.08719752728939056,0.07527090609073639,-0.1288941353559494,-0.0016672610072419047,0.05118636041879654,-0.01606663502752781,-0.07005583494901657,0.012344088405370712,0.009208821691572666,-0.023703208193182945,-0.0196146871894598,-0.04184757545590401,-0.02616664208471775,-0.0919482409954071,-0.02588636241853237,0.02691008150577545,-0.04074787721037865,-0.01664149947464466,0.015197481960058212,0.017645729705691338,-0.04367214813828468,0.003673690604045987,-0.026665210723876953,0.0465833842754364,-0.008964600041508675,0.02215239778161049,-0.059786610305309296,0.12493935972452164,0.05488000065088272,-0.0018415595404803753,0.037810198962688446,-0.05133124813437462,0.02590125985443592,0.002344218548387289,-0.11301931738853455,-0.05146361514925957,-0.034413084387779236,-0.0606248639523983,-0.09644852578639984,-0.00224727438762784,-0.06809256970882416,-0.04531233757734299,-0.00926976092159748,0.02483821101486683,-0.00891021266579628,0.004008074291050434,-0.05261841416358948,-0.04579819738864899,0.012694296427071095,-1.9695308495215613e-8,-0.08350670337677002,-0.029230501502752304,-0.04389844089746475,-0.015985364094376564,0.06701856851577759,-0.025764884427189827,0.12074512243270874,0.06589734554290771,-0.04952011629939079,0.03757466748356819,-0.021935883909463882,0.01966576650738716,0.1260443478822708,0.05503375828266144,0.03140992298722267,-0.004823111463338137,0.0732390508055687,0.004710344597697258,-0.018693313002586365,0.015073862858116627,0.04204026609659195,0.014388855546712875,-0.0725964903831482,0.02167319692671299,0.03323403000831604,0.02421814389526844,-0.06945565342903137,-0.005304087419062853,-0.02203809842467308,0.02705594152212143,0.049016714096069336,0.011113914661109447,-0.058356888592243195,-0.0535028800368309,-0.05173013359308243,-0.04216361045837402,0.039683032780885696,-0.005095623899251223,0.07405353337526321,0.038393136113882065,-0.02231823094189167,0.03850772976875305,-0.06101891025900841,0.0043899971060454845,-0.005320765543729067,-0.03211689740419388,0.03580983355641365,0.008126241154968739,-0.06315676867961884,0.04186347499489784,-0.006822375115007162,-0.05249601602554321,0.03293852508068085,0.027470124885439873,-0.04491310194134712,-0.09200690686702728,-0.08031443506479263,-0.03286745399236679,0.03387734293937683,0.000007846267180866562,0.006376456003636122,-0.009111774154007435,-0.1493055820465088,-0.01728161983191967]},{"text":"This picture is gone, and was doubtless the temptation which urged the murderer to the deed.","book":"1984","chapter":38,"embedding":[-0.010913819074630737,0.14263948798179626,-0.049617692828178406,0.04992040991783142,0.08369937539100647,0.014172978699207306,-0.00047940268996171653,-0.03788365051150322,0.03880563750863075,0.006426781415939331,0.09434229880571365,0.0384041890501976,0.045633357018232346,0.00398295558989048,0.031936418265104294,-0.006014460232108831,-0.05942557752132416,-0.023314351215958595,-0.05229063332080841,0.060117729008197784,-0.05616825073957443,0.00713264849036932,0.07747999578714371,-0.056572239845991135,0.03476333245635033,0.04156259819865227,0.03972402960062027,0.028987351804971695,0.013609603978693485,-0.05638056993484497,-0.03606054186820984,-0.0008898631785996258,-0.05084560811519623,-0.008854188956320286,0.017018241807818413,0.007577906828373671,0.017076585441827774,-0.004703107289969921,0.07699088007211685,0.05357958376407623,0.02465764805674553,0.03102830797433853,-0.054252177476882935,0.06747467070817947,-0.03506208211183548,0.040787987411022186,-0.12602433562278748,-0.02631209045648575,0.045581936836242676,-0.03944683074951172,-0.04532422497868538,-0.026844246312975883,-0.018706999719142914,-0.06367713212966919,-0.01190371997654438,-0.010558419860899448,0.024635883048176765,0.057232532650232315,0.041054967790842056,0.03640864044427872,0.05147957429289818,0.08760574460029602,-0.02896825782954693,0.0411529466509819,0.03991536796092987,0.009027817286550999,0.024673400446772575,-0.11046525835990906,0.041599974036216736,0.018451528623700142,0.06228012591600418,-0.06782916188240051,0.044050320982933044,-0.09917006641626358,-0.09624049067497253,-0.07909821718931198,0.04564309120178223,-0.04178865626454353,-0.04751313477754593,-0.08297362178564072,-0.046398911625146866,-0.025346962735056877,-0.008685589767992496,0.025214096531271935,-0.08587364107370377,0.02076779678463936,-0.046307649463415146,-0.05713479220867157,0.019879017025232315,-0.022056857123970985,-0.05912027135491371,-0.04898151755332947,-0.12758614122867584,0.010914202779531479,-0.00512462854385376,-0.0031239627860486507,-0.06930295377969742,0.025360723957419395,-0.11240204423666,0.05799977108836174,0.021433338522911072,0.05087003484368324,-0.03387860581278801,-0.008947276510298252,0.06168462336063385,0.010062186047434807,-0.026893265545368195,0.008351213298738003,0.010134737007319927,-0.001183527521789074,-0.031863562762737274,0.038524191826581955,0.01947808638215065,0.04516740143299103,0.0510140024125576,0.0014929642202332616,-0.030100584030151367,-0.038858480751514435,-0.014525161124765873,-0.024191008880734444,0.05896396562457085,-0.016127781942486763,0.019351117312908173,0.06756497174501419,-0.0728607252240181,-0.10210081189870834,-0.015790509060025215,-6.932142183400487e-33,0.032898642122745514,-0.02052585408091545,0.1114126518368721,-0.09511585533618927,0.07914073765277863,-0.014122731052339077,-0.03119124285876751,-0.016078872606158257,-0.027651017531752586,0.01944282464683056,0.022827882319688797,-0.14363020658493042,-0.09880296140909195,0.07948201894760132,-0.07654914259910583,-0.023845337331295013,0.04270943999290466,0.020015832036733627,0.031408436596393585,0.050761375576257706,-0.019782651215791702,0.1011989489197731,-0.0018755818018689752,-0.0062643238343298435,-0.09737841784954071,0.020388763397932053,0.05543011054396629,0.1077311784029007,0.009035279043018818,0.000800587295088917,-0.026094364002346992,0.07231973111629486,0.006431840360164642,-0.02704770304262638,0.03961651399731636,-0.04549776762723923,-0.00618778495118022,-0.06549099832773209,-0.05097860097885132,0.022566379979252815,0.07196810096502304,0.023254340514540672,-0.03589034080505371,0.03702932223677635,-0.03128610923886299,-0.0004315355618018657,0.05211196467280388,0.005026915110647678,-0.0525764636695385,0.06502599269151688,0.07112409919500351,-0.02029740996658802,0.11172264814376831,0.00291864643804729,-0.06940360367298126,0.06919858604669571,-0.035357240587472916,0.011808418668806553,-0.02497045509517193,-0.051758430898189545,0.07036928832530975,0.03820915147662163,-0.032873544842004776,0.04444953799247742,-0.08547937870025635,0.022774867713451385,-0.02798190712928772,-0.05388837680220604,-0.11528219282627106,-0.0020884117111563683,-0.0997362956404686,0.07737793028354645,-0.06525081396102905,-0.019662776961922646,-0.00564176868647337,0.005790570750832558,-0.02310786023736,0.0002693411079235375,-0.0031803036108613014,0.012652105651795864,0.013176758773624897,0.01143152080476284,-0.013838475570082664,-0.05930473655462265,-0.014200796373188496,-0.043833643198013306,0.06144927814602852,-0.1043209359049797,-0.0252575371414423,0.089357390999794,-0.004042238462716341,0.06329484283924103,-0.0038481946103274822,-0.029666751623153687,-0.0062788790091872215,2.6318835460201226e-33,0.009541555307805538,-0.007756298407912254,0.03372131660580635,0.07582713663578033,-0.018039695918560028,-0.03989355266094208,-0.012454909272491932,-0.021088767796754837,0.013110197149217129,-0.006541747134178877,0.023575279861688614,-0.016460353508591652,0.08534368127584457,0.037624262273311615,-0.0027034839149564505,0.0071816230192780495,-0.050389621406793594,0.026506157591938972,-0.12205187976360321,-0.011976644396781921,-0.05263310670852661,0.021937359124422073,0.04108778014779091,-0.027727678418159485,-0.04475007206201553,0.0886082872748375,0.10759098827838898,0.0321175754070282,-0.029595162719488144,-0.05665365234017372,0.046011943370103836,0.001169055001810193,-0.01802060939371586,-0.01367487758398056,0.02812638320028782,0.08634711802005768,0.08051593601703644,0.04203469678759575,-0.06974579393863678,-0.013405226171016693,-0.02486737258732319,0.015165789052844048,0.0002857027866411954,0.051455058157444,-0.045992471277713776,-0.018271535634994507,0.04863549396395683,0.057842787355184555,0.08289848268032074,0.062184590846300125,-0.02211662381887436,-0.01652919128537178,-0.019532030448317528,-0.006100496742874384,-0.041291479021310806,-0.06543884426355362,-0.06399331241846085,-0.030802037566900253,0.1408834308385849,0.016537927091121674,0.006873953156173229,-0.03180796653032303,-0.1119326576590538,0.032647229731082916,0.03544768691062927,0.056797876954078674,-0.0021175325382500887,0.05919915437698364,-0.013224614784121513,0.03678779676556587,-0.017594901844859123,0.011209642514586449,0.0005896006477996707,0.006388876587152481,0.0559844970703125,-0.01787431351840496,-0.029926586896181107,0.01339798979461193,-0.019599763676524162,-0.09115678817033768,0.12854892015457153,-0.1110265776515007,-0.0163129810243845,0.05852769687771797,0.059470225125551224,-0.03675234317779541,-0.05396261066198349,-0.051621586084365845,-0.010485460050404072,-0.01701853983104229,-0.024421121925115585,-0.08453886210918427,0.056002434343099594,0.007864260114729404,0.03299655392765999,-2.360215489716211e-8,-0.02111152932047844,0.006317981518805027,0.022243300452828407,-0.036606330424547195,0.10394705086946487,-0.06396788358688354,0.0595272034406662,-0.058795154094696045,-0.024722186848521233,0.014250235632061958,-0.058565620332956314,0.031117014586925507,-0.056289125233888626,0.0022398545406758785,0.0029255831614136696,-0.025118669494986534,-0.041379138827323914,-0.05505955219268799,0.03390757367014885,0.02552693709731102,-0.04505011811852455,-0.1045987457036972,0.005878740921616554,-0.02945978008210659,0.05680534616112709,0.05864661931991577,-0.03238823637366295,0.02024734765291214,-0.035402361303567886,-0.004208663012832403,0.10384203493595123,-0.018053868785500526,0.02520434930920601,0.0007784893386997283,-0.04600391909480095,-0.012490310706198215,-0.026190899312496185,0.06613468378782272,-0.003723203670233488,-0.022915346547961235,-0.013087968342006207,0.013657789677381516,-0.05642126128077507,0.031674232333898544,0.017766838893294334,-0.03891713544726372,0.11609527468681335,0.023595472797751427,-0.026705916970968246,-0.017208881676197052,-0.043803516775369644,-0.03171224519610405,0.01886202022433281,0.10262428224086761,0.03402162343263626,-0.13382840156555176,0.05424106493592262,0.022332804277539253,0.02335452102124691,0.08075353503227234,0.06655512005090714,-0.06237322464585304,-0.02947070077061653,-0.030457429587841034]},{"text":"To die so miserably; to feel the murderer’s grasp!","book":"1984","chapter":39,"embedding":[-0.03225075826048851,0.05821884423494339,-0.035905372351408005,0.04228394106030464,0.015156337060034275,0.007722664158791304,0.08976920694112778,0.0040434859693050385,0.10729873925447464,0.01430338341742754,0.042973317205905914,0.013039813376963139,0.012265116907656193,0.0017365696839988232,-0.04994247108697891,-0.058812499046325684,0.00599257554858923,0.01666358672082424,-0.032398246228694916,0.13448671996593475,0.03592716157436371,0.04807661473751068,0.053106341511011124,-0.005312229041010141,-0.1108783558011055,0.04563426226377487,-0.0423857681453228,0.010914618149399757,-0.0009243250824511051,-0.03751212731003761,-0.0024856855161488056,-0.053493257611989975,-0.05722830072045326,0.021279161795973778,-0.01993398554623127,0.0371246375143528,0.02944193407893181,-0.0666557177901268,0.0163781326264143,0.03982360661029816,-0.0024819441605359316,0.08695923537015915,-0.026370400562882423,0.04778572916984558,0.021029379218816757,-0.019579485058784485,-0.08216547966003418,0.08271799236536026,0.10254612565040588,-0.03841424733400345,-0.07201166450977325,0.01339607685804367,-0.048008993268013,-0.003336532274261117,-0.026801181957125664,0.0039510345086455345,0.013917294330894947,0.03516789898276329,-0.049773916602134705,0.015616623684763908,-0.017971403896808624,0.046705301851034164,0.02798602357506752,0.023786593228578568,0.0682363361120224,-0.09986365586519241,0.11554211378097534,-0.0762222483754158,-0.0649280697107315,0.13134458661079407,-0.028854452073574066,-0.04317661374807358,-0.016166647896170616,-0.058591000735759735,-0.10584329813718796,-0.06602756679058075,0.0007905765087343752,-0.06946510076522827,-0.03795986622571945,-0.022891564294695854,0.0014717441517859697,0.03074386715888977,-0.02121410146355629,0.03714601323008537,-0.042876798659563065,-0.037922319024801254,-0.03499449044466019,-0.05541359633207321,0.04491659998893738,0.03503013774752617,-0.07056546211242676,-0.09303025156259537,-0.06707824766635895,0.06000532954931259,-0.04537641629576683,0.11459796130657196,-0.05960213765501976,0.019159693270921707,-0.16529756784439087,0.007230603136122227,0.01941004768013954,0.0007535146432928741,-0.06720537692308426,0.002039769198745489,-0.012428108602762222,-0.04497988894581795,-0.0837044045329094,-0.03524363040924072,-0.02239634469151497,-0.05062360689043999,-0.009595821611583233,-0.05175968259572983,0.04651692882180214,0.031927455216646194,0.022571615874767303,0.06372817605733871,-0.049491412937641144,0.025610368698835373,0.07535462081432343,0.08502534031867981,0.027716293931007385,-0.01726287044584751,-0.09098001569509506,0.050485894083976746,-0.02325274795293808,-0.0598171167075634,-0.05622514709830284,-4.177818227443753e-33,0.07232993841171265,-0.05735645070672035,0.030264366418123245,0.022630630061030388,-0.046647582203149796,-0.041382141411304474,-0.05631312355399132,-0.030994731932878494,-0.01072800625115633,0.07878082245588303,0.016269495710730553,-0.11293388903141022,-0.02094223164021969,0.05776660889387131,-0.06644166260957718,0.0342472568154335,-0.09284639358520508,0.03958350047469139,0.016493115574121475,-0.009356451220810413,-0.023764116689562798,0.014010963961482048,0.017420602962374687,0.01978686824440956,-0.03330837935209274,0.0043924422934651375,-0.06879286468029022,0.06247703358530998,0.044458549469709396,-0.010301269590854645,-0.051617179065942764,0.04819662123918533,0.0007308466010726988,-0.02619428187608719,-0.02830824814736843,0.038874391466379166,-0.018521901220083237,-0.028581781312823296,-0.03606143966317177,-0.02292165532708168,0.058631133288145065,0.0294505525380373,0.00472779618576169,0.01723192073404789,0.006518039386719465,-0.011427188292145729,0.010567220859229565,0.01281846035271883,0.008005015552043915,0.05012409761548042,0.03811391070485115,-0.05428009480237961,0.1303856521844864,0.029175786301493645,0.02114751935005188,0.1031016856431961,0.020785218104720116,-0.0021894522942602634,0.05307400971651077,-0.00040621357038617134,-0.004948505666106939,-0.0478290356695652,0.020698748528957367,0.04978765547275543,0.024583609774708748,-0.022072821855545044,-0.01341127697378397,-0.06874546408653259,-0.0003210818103980273,-0.029558951035141945,-0.1261458396911621,0.021679576486349106,0.00357814715243876,-0.03940682113170624,-0.08169779181480408,0.012096797116100788,0.011436224915087223,-0.07824220508337021,-0.002400667406618595,-0.08451120555400848,0.0033591235987842083,0.029269283637404442,0.003090459853410721,0.03865237906575203,0.04644712060689926,0.01219634898006916,-0.013922123238444328,-0.14151108264923096,-0.07674510031938553,0.05910485237836838,0.0027370599564164877,-0.04845214635133743,0.012222225777804852,-0.04677864536643028,-0.03230554983019829,5.473267001321655e-34,-0.004755914676934481,-0.09445931017398834,-0.022117162123322487,0.04649035632610321,-0.018357520923018456,-0.06880852580070496,-0.09252777695655823,-0.06800919771194458,-0.06290367990732193,-0.029910773038864136,-0.11946040391921997,0.00712423725053668,0.03579919785261154,0.1457163393497467,-0.0053952476009726524,0.015381650999188423,0.0555405430495739,0.000807033502496779,-0.018159592524170876,-0.011903059668838978,-0.0031099815387278795,-0.006549577694386244,-0.001935821957886219,0.05516732856631279,-0.03079913929104805,0.052252598106861115,0.03608990088105202,-0.06510528177022934,-0.0998423770070076,-0.062091149389743805,0.00735994428396225,-0.026930807158350945,-0.0456097275018692,0.017876315861940384,-0.010825677774846554,0.06779221445322037,0.06522565335035324,0.0469093918800354,-0.0442332960665226,0.019520048052072525,-0.033125221729278564,0.02039477415382862,0.022902531549334526,0.09243219345808029,0.007147009018808603,-0.01576017588376999,0.04517996311187744,0.051475826650857925,0.025128135457634926,0.019085558131337166,-0.023522479459643364,0.02305605262517929,0.014847621321678162,0.03196293115615845,0.0012503585312515497,-0.040182456374168396,-0.026735886931419373,-0.1050383523106575,0.10158156603574753,-0.023424586281180382,0.03032597154378891,0.014504269696772099,-0.06365878134965897,0.1023617535829544,0.008621309883892536,0.07999841868877411,0.01121966540813446,0.019429612904787064,-0.05060530826449394,0.07011348009109497,0.01598844863474369,-0.02697860263288021,-0.08733353763818741,0.02068210393190384,-0.021067684516310692,0.026934348046779633,-0.0008850085432641208,-0.004047945607453585,-0.06256039440631866,0.020050955936312675,-0.04047318175435066,-0.06745743006467819,0.03638456389307976,0.06651762127876282,-0.03473878279328346,-0.0362236313521862,0.030949551612138748,0.029736502096056938,0.029214665293693542,-0.04636940360069275,-0.021269725635647774,-0.08036807924509048,0.1030694916844368,-0.03903282433748245,-0.0219138003885746,-2.315853109280397e-8,-0.05855656787753105,0.055089205503463745,-0.03936741128563881,-0.12006402015686035,-0.03255247324705124,0.007105150725692511,0.01171033177524805,-0.060902345925569534,-0.017350710928440094,0.01377958431839943,0.0076873889192938805,0.017176970839500427,0.024687781929969788,0.12283479422330856,0.08362399786710739,0.05960807949304581,-0.031868163496255875,0.0031793604139238596,-0.03592340275645256,0.017280900850892067,-0.0038769282400608063,-0.02395416796207428,0.01592518575489521,-0.040099918842315674,0.06733877211809158,-0.0015009192284196615,0.001094183186069131,0.0686909407377243,-0.00785114336758852,0.08498545736074448,-0.009764529764652252,-0.0025279943365603685,0.0282371174544096,0.04380562901496887,-0.051413096487522125,-0.018761025741696358,0.026569442823529243,0.06359954178333282,0.0367891788482666,-0.050933029502630234,-0.00040256985812447965,0.013061880134046078,0.008278733119368553,0.03192674368619919,0.03309503570199013,-0.034419748932123184,0.020977884531021118,0.08438996225595474,0.0018140999600291252,0.02377348579466343,0.021698014810681343,0.031755220144987106,-0.019525060430169106,0.08560912311077118,0.10415428131818771,-0.0030438918620347977,-0.00825651828199625,0.0050438037142157555,-0.07109254598617554,0.08465594053268433,0.13524575531482697,0.08920390158891678,-0.007308199070394039,-0.010887601412832737]},{"text":"How altered every thing might be during that time!","book":"1984","chapter":40,"embedding":[-0.03657953068614006,0.08359415829181671,0.08773179352283478,0.06447182595729828,0.01613580994307995,-0.05125191807746887,-0.06885907799005508,-0.035331983119249344,0.03655374050140381,0.02883453667163849,0.010194582864642143,0.061971429735422134,-0.0021416477393358946,-0.03171395882964134,-0.03541041538119316,-0.053866464644670486,-0.060266442596912384,0.035724762827157974,-0.07114327698945999,0.017777040600776672,0.026017826050519943,-0.009521876461803913,-0.021463168784976006,-0.01099761389195919,0.00042122244485653937,0.0839388445019722,-0.031239939853549004,0.023601572960615158,0.02847295254468918,-0.11932999640703201,-0.041217997670173645,0.09456347674131393,-0.05425020307302475,0.029943915084004402,-0.06267906725406647,0.014576608315110207,0.06631264835596085,-0.0014829238643869758,0.05706857889890671,-0.06408451497554779,-0.017286712303757668,-0.05422095209360123,-0.03907597437500954,0.00898136105388403,-0.02319273166358471,0.011298908852040768,0.03081710822880268,-0.07346392422914505,-0.05267108604311943,0.06454677879810333,0.009253316558897495,-0.022253157570958138,-0.039382364600896835,-0.07725708186626434,-0.027574514970183372,0.014022867195308208,-0.022574622184038162,0.01861344277858734,0.07902470976114273,-0.05531303212046623,-0.07350930571556091,0.0483531579375267,-0.005849702283740044,0.02161264233291149,0.02916933037340641,-0.031927041709423065,0.02858550474047661,-0.04304024204611778,-0.007021566387265921,-0.02317248098552227,0.026445666328072548,0.04953612759709358,0.019039949402213097,-0.05833294615149498,-0.05339489132165909,-0.025916390120983124,0.006501935888081789,-0.018174471333622932,0.014457780867815018,0.02038390003144741,0.031029298901557922,0.005114177707582712,-0.024543700739741325,0.05895666033029556,-0.012926979921758175,0.0022880902979522943,0.015379732474684715,-0.03568578511476517,-0.0349702313542366,0.060467679053545,0.008384677581489086,-0.004755876027047634,-0.00934768095612526,0.008672578260302544,-0.050882838666439056,0.012801053002476692,-0.03728941082954407,-0.02592654712498188,0.11566814035177231,0.0815482884645462,-0.052888769656419754,0.02043771743774414,-0.02503056637942791,0.02080865576863289,0.028286242857575417,-0.08335401862859726,0.0037186534609645605,-0.00023116747615858912,-0.07379160076379776,0.006797211244702339,0.0060535394586622715,-0.02707081288099289,0.07244168967008591,-0.010068703442811966,0.057481635361909866,-0.04390526935458183,-0.02967909164726734,0.019103869795799255,-0.10136875510215759,0.10173271596431732,0.028338490054011345,0.02191814035177231,0.003355533815920353,0.04591671749949455,-0.04865723103284836,0.052459701895713806,0.025302913039922714,-3.1151162330027106e-33,0.0541057214140892,-0.04967446252703667,0.03364520147442818,0.02481445111334324,0.03973832726478577,0.03598104044795036,-0.07121773809194565,-0.047693025320768356,0.04821512848138809,-0.03669312968850136,0.03683905303478241,-0.027507392689585686,-0.06528731435537338,0.036224786192178726,0.023967433720827103,0.04898414388298988,-0.08866489678621292,-0.06211596727371216,0.09486915916204453,-0.02499409019947052,-0.08951114863157272,-0.0016005414072424173,-0.03616143763065338,-0.028606757521629333,-0.03603854402899742,0.10368665307760239,0.03981465846300125,0.0390419103205204,0.010422022081911564,-0.0045664613135159016,0.002035094192251563,0.07092686742544174,-0.04852690547704697,0.041773825883865356,-0.03471440449357033,0.031173748895525932,0.06990209221839905,-0.08804173022508621,-0.03152669966220856,-0.0047578029334545135,0.04831968992948532,0.006555600557476282,-0.028279487043619156,-0.07948146015405655,-0.007563212886452675,0.03931150957942009,0.08559171855449677,0.053307875990867615,-0.08677744120359421,0.005009124521166086,-0.06763379275798798,0.08508719503879547,0.045598000288009644,-0.0464969240128994,0.015352260321378708,0.014937972649931908,0.02884957194328308,-0.09730945527553558,-0.03079277276992798,0.06003474071621895,0.08324174582958221,0.027606267482042313,0.06740455329418182,-0.0905594527721405,-0.07016932964324951,0.013989032246172428,0.06169840320944786,-0.04925601929426193,-0.05324818193912506,0.07635869085788727,-0.09726601839065552,-0.03496486321091652,-0.05500420928001404,-0.04080723598599434,-0.03125292807817459,-0.08012710511684418,0.025550171732902527,-0.009979456663131714,-0.047768909484148026,0.016299789771437645,-0.0020196549594402313,0.011938262730836868,-0.01043618656694889,-0.008620348758995533,0.05337165296077728,-0.07857868820428848,0.06415585428476334,0.0005963973235338926,-0.024031328037381172,-0.08067365735769272,0.05273427441716194,-0.09728548675775528,0.11544249951839447,-0.0880366712808609,-0.06850414723157883,-1.3006282040257163e-33,-0.03654173016548157,-0.025113845244050026,-0.007163107395172119,0.10614781081676483,0.004962186794728041,-0.06748155504465103,-0.08446664363145828,0.08855048567056656,-0.03701603040099144,-0.007088879123330116,0.0906357690691948,-0.0034363092854619026,0.03441818803548813,-0.10065384954214096,-0.09472429752349854,0.01828811690211296,0.049370136111974716,0.02285204827785492,-0.019070656970143318,0.00565839558839798,-0.002278718864545226,0.02473791129887104,-0.009072463028132915,0.014505775645375252,-0.0006718025542795658,0.08008455485105515,0.007444348651915789,-0.019745443016290665,-0.0170875396579504,0.009529736824333668,-0.07585256546735764,0.03288372606039047,-0.02026185393333435,0.016336265951395035,0.015660876408219337,-0.002496415516361594,0.03242030367255211,-0.010171172209084034,-0.054850757122039795,-0.11588522046804428,-0.04515282064676285,0.036458685994148254,0.011887114495038986,0.11548460274934769,-0.012859546579420567,0.03417443856596947,-0.017075583338737488,0.07842925190925598,0.04417955130338669,0.01509794034063816,-0.02017413266003132,-0.052585456520318985,0.02009785920381546,-0.07926104962825775,-0.03148708865046501,-0.008344955742359161,0.1286184936761856,-0.09067104011774063,0.09287421405315399,0.09470979124307632,-0.06333668529987335,-0.01337948627769947,0.0007695025997236371,0.010512377135455608,-0.0069218967109918594,-0.017029840499162674,0.013038992881774902,-0.012419207021594048,-0.02464395947754383,-0.021076451987028122,0.12154658883810043,-0.030406730249524117,-0.09306322783231735,0.018278295174241066,-0.020633995532989502,-0.08880438655614853,0.008146928623318672,-0.014596548862755299,-0.02031398005783558,-0.0013857651501893997,-0.05283763259649277,-0.005897627677768469,0.011731346137821674,0.022362137213349342,-0.04555955156683922,0.04134379327297211,-0.05599289387464523,0.009892180562019348,0.009983783587813377,-0.013419521041214466,-0.08856473863124847,0.004557372536510229,-0.05023797228932381,0.035578176379203796,-0.053634680807590485,-2.1127792848574245e-8,0.004975432995706797,0.017787929624319077,0.044016774743795395,0.08501088619232178,0.05063243955373764,-0.03482377529144287,0.07393723726272583,0.06756258755922318,-0.0026020498480647802,0.015980910509824753,0.01630258560180664,0.11672136187553406,0.08897014707326889,0.01198396272957325,0.08883051574230194,0.07010484486818314,-0.0445609986782074,-0.049239303916692734,-0.05930623039603233,-0.02202373556792736,-0.009885551407933235,0.040089309215545654,0.02173859067261219,-0.06439008563756943,0.03414474427700043,0.010140304453670979,-0.022078197449445724,0.0520898699760437,-0.002837920794263482,0.061797771602869034,0.07885359972715378,-0.08247613906860352,-0.03302239999175072,0.030502956360578537,-0.1274656057357788,-0.053567469120025635,-0.05531192198395729,0.01902862638235092,0.024398740381002426,-0.07277713716030121,-0.03608660027384758,-0.07860000431537628,-0.07576075196266174,0.07958429306745529,-0.027428915724158287,-0.09733133763074875,0.03892209380865097,-0.006235759239643812,-0.024442169815301895,-0.0034099724143743515,0.02938065677881241,0.11495551466941833,-0.0025185314007103443,-0.03586452826857567,0.09795084595680237,0.004696797113865614,0.05842726305127144,0.05209602415561676,-0.03774374723434448,0.026652028784155846,0.0900263711810112,-0.036777663975954056,-0.023170538246631622,-0.027377471327781677]},{"text":"My country, my beloved country! who but a native can tell the delight I took in again beholding thy streams, thy mountains, and, more than all, thy lovely lake!","book":"1984","chapter":40,"embedding":[0.028011636808514595,0.11521541327238083,0.03151268884539604,-0.046148162335157394,0.05171995609998703,-0.05497697740793228,0.10363492369651794,-0.049256786704063416,0.013605617918074131,0.05703240633010864,-0.009012559428811073,-0.0701751708984375,0.07354497164487839,-0.04589668661355972,-0.05167662352323532,0.024369515478610992,-0.06522317230701447,-0.04086769372224808,0.011505232192575932,-0.038944244384765625,-0.033802781254053116,0.08044981956481934,0.023229846730828285,0.0525834895670414,-0.014973132871091366,0.0540306456387043,0.07268457114696503,0.08755704015493393,-0.014731881208717823,-0.02941570058465004,-0.0534561462700367,-0.0403224341571331,-0.02648776024580002,0.06061656400561333,0.0010947487317025661,0.025373613461852074,-0.04642296954989433,-0.13209977746009827,-0.0073496149852871895,-0.06539025157690048,0.04794232174754143,-0.032169751822948456,0.06655065715312958,0.033875904977321625,-0.006551537197083235,0.0492638424038887,0.019924337044358253,0.035513609647750854,0.02914428897202015,0.054548174142837524,0.007653624750673771,-0.01876743882894516,-0.035791900008916855,-0.052760157734155655,0.0038626177702099085,0.00007591782923555002,-0.01952032744884491,-0.011746767908334732,-0.042299386113882065,0.07243978977203369,-0.036442823708057404,0.035437069833278656,0.006997769698500633,0.02538526989519596,0.04036368057131767,-0.015054959803819656,-0.10881352424621582,0.048239391297101974,-0.04914218932390213,-0.03487732261419296,0.023756392300128937,0.06750812381505966,0.07858987152576447,0.01315607875585556,-0.12658436596393585,-0.10703857243061066,-0.04241021350026131,0.0372486412525177,-0.02938009798526764,0.04316315799951553,0.0174297746270895,0.005854498594999313,0.042294710874557495,-0.02317138947546482,-0.0028391387313604355,-0.09417299181222916,-0.020409084856510162,-0.04076313599944115,0.06828802078962326,-0.08336277306079865,-0.020383276045322418,-0.05329574644565582,-0.011552337557077408,0.03529566153883934,-0.06915798038244247,-0.03784870356321335,0.07521776854991913,-0.05269869044423103,-0.05018467456102371,0.0593114048242569,0.07394645363092422,0.018322259187698364,-0.027102138847112656,0.023081567138433456,-0.050816718488931656,-0.02308388240635395,-0.14988622069358826,0.08195550739765167,0.005428958684206009,-0.05873507261276245,0.03581322357058525,0.01476345956325531,-0.021396487951278687,0.06442560255527496,0.058124568313360214,-0.030666425824165344,-0.014990835450589657,-0.05449141934514046,-0.008963250555098057,0.046531349420547485,-0.06972534954547882,0.022054914385080338,-0.06879950314760208,-0.0033826909493654966,0.02321799285709858,0.022612517699599266,-0.01127148512750864,-9.020042943374549e-34,0.006704031024128199,0.007915246300399303,0.062118493020534515,0.0756819024682045,-0.009136677719652653,-0.019726429134607315,-0.002379609504714608,-0.010491938330233097,-0.0975618064403534,-0.06574063003063202,-0.03702978044748306,0.03271813318133354,-0.02626865543425083,0.054685190320014954,-0.05836717039346695,0.0011513837380334735,-0.04171083867549896,-0.04052460193634033,-0.027460748329758644,0.04395192116498947,-0.06468553096055984,0.0414658859372139,0.032519664615392685,0.01652095839381218,-0.07814568281173706,-0.03362133353948593,0.021246803924441338,-0.017759347334504128,-0.0610310398042202,0.021540628746151924,0.06383370608091354,-0.003781721228733659,0.0441247895359993,-0.0839071050286293,0.016099251806735992,-0.09647919982671738,-0.054561346769332886,-0.042537543922662735,0.002620354061946273,0.1013367623090744,0.01499938778579235,-0.025322966277599335,0.011519419960677624,0.07181409001350403,0.0017483787378296256,0.029123295098543167,0.04869559779763222,0.08217984437942505,-0.07356174290180206,-0.0285837110131979,-0.06026732921600342,0.005124605260789394,0.05869186669588089,0.005157339386641979,0.053912751376628876,-0.002280615968629718,0.03396300971508026,0.05859087407588959,0.053568750619888306,0.008050859905779362,-0.05503636598587036,-0.011388203129172325,0.0719132348895073,-0.05258366838097572,0.050086669623851776,-0.02970355562865734,0.04119650647044182,0.008130716159939766,0.003094767453148961,-0.02709062211215496,0.0023277171421796083,0.00013261476124171168,-0.010814409703016281,0.03302214667201042,0.0253018606454134,0.013057439588010311,0.0673171877861023,-0.030271733179688454,0.024445725604891777,-0.03396741300821304,-0.01985681988298893,0.0231669619679451,-0.03502916917204857,0.01619938760995865,0.03614656999707222,0.005483874585479498,-0.00873359851539135,-0.15911102294921875,0.02398911491036415,0.028460118919610977,-0.04043756425380707,0.05613468959927559,0.05234912037849426,-0.12972985208034515,-0.05170951411128044,1.1151842585797817e-34,0.11291229724884033,-0.065775066614151,0.03308604657649994,0.02240551821887493,0.0064002033323049545,-0.09650662541389465,0.0396990031003952,0.09738011658191681,0.020328816026449203,0.08305720239877701,0.00553943682461977,0.010186916217207909,0.07742492109537125,0.04894665256142616,-0.03200390934944153,0.0419878326356411,0.046871986240148544,0.05828694999217987,-0.02282041870057583,-0.0031076010782271624,-0.0661519393324852,0.012450148351490498,-0.015214641578495502,0.02021358720958233,-0.038185965269804,0.02062896080315113,-0.07615642249584198,-0.037873174995183945,0.0307998675853014,-0.05790300667285919,-0.010822620242834091,-0.023356081917881966,-0.053667180240154266,-0.0468912348151207,-0.003830799600109458,0.008332603611052036,0.07803799957036972,-0.019153181463479996,0.017072448506951332,0.05155020207166672,-0.07029860466718674,-0.0019136504270136356,0.10147029906511307,0.07641004770994186,-0.0735531747341156,-0.030594414100050926,0.009209347888827324,0.01414237916469574,-0.11515642702579498,-0.05720227584242821,-0.05622914433479309,-0.025681568309664726,0.041470304131507874,-0.012654494494199753,0.0030938610434532166,-0.05028894916176796,0.0641290619969368,0.0012873421655967832,0.04455726966261864,-0.07875020802021027,-0.07770632952451706,0.020907839760184288,-0.02939579449594021,-0.010701579973101616,0.06028089299798012,-0.0008323360816575587,0.007787611335515976,0.11694981902837753,0.041972436010837555,0.01759881153702736,-0.07023761421442032,-0.09709096699953079,-0.081947922706604,0.005811959970742464,0.09704512357711792,0.04116658866405487,0.036737143993377686,0.01148595567792654,-0.008652959018945694,-0.021958492696285248,0.036750588566064835,-0.00043815679964609444,-0.025036584585905075,-0.03074812889099121,0.061718881130218506,-0.0042966147884726524,0.014376331120729446,-0.0794471874833107,0.04518565908074379,0.023565148934721947,-0.019963011145591736,0.06779628992080688,-0.1742957979440689,-0.004878470208495855,0.041850876063108444,-2.671485610505897e-8,-0.03450904041528702,0.028869688510894775,-0.05050237849354744,0.04087067395448685,0.005373465362936258,-0.07206948846578598,0.099887415766716,0.04492225870490074,-0.005597722716629505,-0.045324765145778656,-0.013938399031758308,0.01625811867415905,0.02808029018342495,-0.030906468629837036,0.07516469806432724,0.020646128803491592,0.023973317816853523,0.05395717918872833,-0.010738025419414043,0.014945986680686474,-0.02688601054251194,0.06302323192358017,0.05403190106153488,-0.09375704824924469,-0.001100690453313291,-0.03259634971618652,-0.022598303854465485,-0.011206825263798237,0.028993673622608185,-0.027135049924254417,0.015237236395478249,0.03414260223507881,-0.07566379755735397,0.05103283375501633,-0.006743268575519323,-0.027054229751229286,-0.033634886145591736,-0.005753551609814167,0.03216104581952095,-0.08686120808124542,-0.025545109063386917,0.12745966017246246,0.0320650190114975,0.007896662689745426,-0.03628184646368027,-0.04856671765446663,0.07045190036296844,0.06430874764919281,-0.01687908172607422,0.018086150288581848,-0.10196582227945328,-0.0031572298612445593,0.014798994176089764,0.11297960579395294,0.06357645243406296,-0.013694996945559978,0.008218424394726753,-0.04718151316046715,-0.06933664530515671,0.07292867451906204,0.08354296535253525,0.01932746358215809,-0.04124780371785164,-0.05616620555520058]},{"text":"I quitted my seat, and walked on, although the darkness and storm increased every minute, and the thunder burst with a terrific crash over my head.","book":"1984","chapter":41,"embedding":[0.07783962786197662,0.04173625260591507,0.1051221713423729,0.07498235255479813,0.09901103377342224,-0.0007065552636049688,0.053809378296136856,0.010910998098552227,0.0700325146317482,-0.06496262550354004,-0.04191139340400696,0.06516832113265991,0.08083804696798325,0.0260026678442955,-0.08460259437561035,0.006717856973409653,0.045950986444950104,0.03119848296046257,-0.009732655249536037,0.09327559918165207,-0.0386178158223629,0.08392007648944855,-0.040507569909095764,0.0768899992108345,-0.04709494486451149,0.07767225056886673,-0.029254719614982605,0.04350540041923523,-0.03829672560095787,-0.04483618959784508,-0.013347913511097431,-0.06332625448703766,-0.03605959564447403,-0.005351051688194275,-0.012393705546855927,-0.05256142094731331,0.0437522828578949,-0.018119890242815018,0.06428391486406326,-0.0326111800968647,-0.00725574279204011,0.0020012520253658295,-0.026587488129734993,-0.038695912808179855,0.10141206532716751,0.015005217865109444,0.015595809556543827,-0.06723644584417343,0.02089102752506733,0.012931665405631065,0.039253827184438705,0.02612512931227684,0.013895269483327866,0.012075108475983143,0.026797868311405182,0.01309799961745739,-0.01599300280213356,0.028882697224617004,0.0038398937322199345,-0.0008628094219602644,-0.03476912900805473,0.014602096751332283,-0.06269880384206772,0.02438398264348507,0.024612586945295334,0.07337523251771927,-0.073995441198349,-0.08256659656763077,0.08989640325307846,0.06321560591459274,-0.041391488164663315,0.064369335770607,-0.0038574165664613247,-0.08492489904165268,-0.10110318660736084,0.01538028847426176,0.061020541936159134,-0.11393366008996964,0.049518000334501266,0.04157693684101105,-0.0053986795246601105,-0.031034184619784355,-0.0007977733621373773,0.05728287622332573,0.05848709121346474,-0.0237265657633543,0.06289219856262207,0.08795157074928284,-0.014148707501590252,0.00853858795017004,-0.010129156522452831,0.055428460240364075,-0.013093117624521255,0.02387510985136032,-0.0056668855249881744,-0.023420050740242004,-0.0534578375518322,-0.07739586383104324,0.03589104115962982,0.058659877628088,-0.0013135374756529927,-0.030973659828305244,0.011637955904006958,-0.03156169876456261,0.0177328921854496,0.013392755761742592,-0.05964598432183266,-0.051774460822343826,-0.03389609977602959,-0.036913108080625534,0.05736027657985687,-0.0083799222484231,0.015125304460525513,0.010175924748182297,0.014329081401228905,0.06540386378765106,-0.10443659126758575,0.05908931419253349,0.01978808082640171,0.0875171646475792,0.01744377613067627,0.024438397958874702,0.010469989851117134,0.005605601705610752,-0.011907014064490795,-0.01965632662177086,0.06257961690425873,-3.83712469974493e-33,0.021720536053180695,-0.06562089920043945,-0.007478032261133194,0.10337326675653458,0.13133008778095245,-0.02704181894659996,-0.10682783275842667,0.033863458782434464,-0.015070496127009392,0.007364240474998951,0.017385346814990044,-0.016692841425538063,0.05012338608503342,-0.06209295615553856,0.05933459475636482,-0.021821660920977592,-0.03483850508928299,0.0012016777181997895,-0.07375235110521317,-0.017079543322324753,0.022859595715999603,-0.025108730420470238,-0.004278167616575956,0.07984660565853119,0.008263477124273777,0.0676749050617218,0.004419087897986174,-0.016071490943431854,0.0334569588303566,0.0595584399998188,-0.05624078959226608,0.05015145242214203,0.054310429841279984,0.02523484267294407,-0.03469904884696007,0.036912526935338974,-0.04911532625555992,0.0004737343988381326,-0.008162220939993858,-0.0023332717828452587,-0.044484492391347885,0.0032805725932121277,-0.08061917126178741,0.02951647713780403,0.00856606662273407,-0.06124963238835335,0.04574483260512352,0.024588946253061295,-0.09075424820184708,-0.025501281023025513,-0.09157035499811172,0.024824151769280434,0.06703624129295349,-0.04377969354391098,0.008755301125347614,0.05044388771057129,0.04702658951282501,-0.02647421695291996,-0.010595161467790604,0.0398726724088192,-0.03750453144311905,0.029147272929549217,0.07088474184274673,-0.10683655738830566,-0.00882238894701004,-0.05223667621612549,-0.026631714776158333,-0.05350375920534134,-0.007112950086593628,-0.051033660769462585,0.039219263941049576,-0.014074509032070637,0.01491765771061182,-0.0182222668081522,0.015775995329022408,-0.046873945742845535,-0.035071272403001785,-0.004730382468551397,-0.06163731962442398,-0.002456690650433302,0.10201267898082733,-0.004421895835548639,0.019948115572333336,-0.023817919194698334,0.11461704224348068,0.003469854826107621,-0.03210164234042168,-0.07451353967189789,-0.12993383407592773,-0.023843538016080856,0.014282379299402237,-0.0012576072476804256,0.12959252297878265,-0.0779067873954773,-0.007679206784814596,2.3952416558492186e-33,0.008589928969740868,-0.025269433856010437,-0.03127283975481987,-0.0032201851718127728,-0.003613094799220562,-0.003375704400241375,-0.058824341744184494,0.017865119501948357,-0.11899812519550323,0.04110291600227356,0.017362374812364578,0.06705658882856369,0.0003792550414800644,0.06353110820055008,0.005868855398148298,-0.08386807143688202,0.045525480061769485,0.03288658335804939,-0.06329269707202911,0.030343661084771156,0.009253269992768764,-0.05160417780280113,0.003056812798604369,-0.0033630505204200745,-0.029965033754706383,0.04618078097701073,0.07335864007472992,0.048175230622291565,-0.004736246541142464,-0.08173995465040207,-0.007596659939736128,0.0031249970197677612,-0.02356686443090439,0.015169533900916576,-0.01682005450129509,0.11554189026355743,-0.04000465199351311,-0.03708835318684578,-0.04752332717180252,-0.06349101662635803,0.01839723065495491,-0.012904845178127289,0.14085467159748077,0.0502873957157135,0.05141346529126167,-0.016791654750704765,0.008305621333420277,-0.04621657729148865,-0.07211610674858093,-0.04084610193967819,-0.05529284104704857,-0.024818623438477516,-0.03614664450287819,0.045014288276433945,0.03376823663711548,-0.017513122409582138,0.08568578213453293,-0.08443421870470047,-0.023820940405130386,-0.07745372503995895,-0.05733238160610199,-0.001561279408633709,0.0006490600644610822,0.04004582762718201,0.05385369434952736,-0.1145283654332161,-0.07696262001991272,0.0164454635232687,-0.032253723591566086,-0.05491335317492485,-0.027270697057247162,-0.02194245345890522,-0.02722332626581192,0.07991964370012283,0.0273537989705801,-0.009902224875986576,-0.009455791674554348,0.019039055332541466,-0.030353033915162086,0.0011376134352758527,-0.05870632082223892,0.048703551292419434,0.030982794240117073,-0.008198445662856102,-0.03772735223174095,-0.0242225993424654,-0.04366185888648033,-0.048818252980709076,-0.03129996731877327,0.03595081344246864,-0.0029995106160640717,0.09601721167564392,0.0385015532374382,0.0022813761606812477,-0.023795556277036667,-2.5106754009129872e-8,-0.06298993527889252,0.054290760308504105,0.013737490400671959,-0.06805384159088135,0.02086796797811985,-0.032944172620773315,0.06770447641611099,0.11193980276584625,-0.11009719222784042,-0.015864981338381767,0.032554879784584045,-0.010418633930385113,0.03430669754743576,0.09884390234947205,0.008020465262234211,0.03212874382734299,0.06369127333164215,-0.005217619240283966,-0.0082591837272048,-0.0007285468163900077,-0.0012787209125235677,0.07713223993778229,-0.024627890437841415,-0.048052046447992325,0.07523330301046371,0.0250686202198267,0.012118509039282799,-0.004909185227006674,-0.032234661281108856,-0.0614345483481884,-0.043984539806842804,0.0018585675861686468,-0.11698627471923828,-0.046660780906677246,-0.15481750667095184,0.010827994905412197,0.09461824595928192,-0.013666395097970963,0.08173827081918716,-0.04277428612112999,0.025593092665076256,0.05958297476172447,-0.015827741473913193,0.04250417649745941,-0.004637204576283693,0.06449853628873825,0.028780274093151093,0.015120437368750572,-0.022721542045474052,0.023223787546157837,-0.02699507214128971,-0.034635886549949646,-0.005484685767441988,0.04380711540579796,-0.0010138947982341051,-0.046020567417144775,-0.025561034679412842,-0.031298745423555374,-0.04816349968314171,-0.08862185478210449,0.02872553840279579,-0.010905122384428978,-0.1980266273021698,0.0308613870292902]},{"text":"Nothing in human shape could have destroyed the fair child. _He_ was the murderer!","book":"1984","chapter":41,"embedding":[-0.06305498629808426,0.12095419317483902,0.010375277139246464,0.022619828581809998,0.09517422318458557,-0.01498260535299778,0.034954044967889786,0.01723533682525158,-0.0271200742572546,0.16438345611095428,0.03711004927754402,-0.0008633497636765242,-0.02773376926779747,0.03442347049713135,-0.010831557214260101,0.014795202761888504,-0.006933295633643866,0.06486894935369492,-0.05281516909599304,0.10266675800085068,0.0250141192227602,0.05602706968784332,0.0736834853887558,0.028119944036006927,-0.041550327092409134,0.026081273332238197,0.053541868925094604,0.0674750804901123,-0.03455524146556854,-0.031664662063121796,0.06555568426847458,-0.06461656093597412,0.048858772963285446,-0.02558305487036705,-0.023410700261592865,-0.049401380121707916,0.08973816782236099,-0.016588764265179634,0.027806375175714493,-0.035438794642686844,-0.009520282037556171,0.037424784153699875,-0.1255510002374649,0.005558148957788944,-0.019495779648423195,-0.060205914080142975,-0.05531863495707512,-0.0691540539264679,-0.005359293892979622,-0.0293125007301569,-0.02804047428071499,0.01755550689995289,-0.030300822108983994,0.036405693739652634,-0.09524369239807129,-0.03502928093075752,-0.02191346324980259,-0.05646663159132004,0.011154388077557087,-0.018449274823069572,-0.06771142780780792,0.06576311588287354,0.008974680677056313,-0.007123983930796385,0.06584227830171585,-0.051500555127859116,0.00022898487804923207,-0.06482728570699692,0.020077889785170555,0.14354632794857025,0.14232514798641205,0.05414048209786415,0.07591138780117035,-0.026183245703577995,-0.046186480671167374,-0.02935015968978405,-0.01483857911080122,-0.030396202579140663,0.06886681169271469,0.07470083981752396,-0.0771540179848671,-0.04712554067373276,0.02744022198021412,0.017126979306340218,0.006903322413563728,0.014380628243088722,0.028664954006671906,-0.08722566813230515,-0.0673603042960167,0.05458660423755646,-0.05434910207986832,0.059453390538692474,0.06808751821517944,0.06356510519981384,0.004154320806264877,0.058014336973428726,-0.07502076774835587,0.033411119133234024,-0.034054942429065704,-0.0021803523413836956,-0.019701633602380753,0.04069717973470688,-0.043521031737327576,-0.0159166157245636,0.08390063047409058,-0.03192742541432381,-0.00031797148403711617,-0.005717321764677763,0.02433888614177704,0.006738550495356321,-0.023954514414072037,-0.055801331996917725,0.08012201637029648,0.06997913867235184,0.028087301179766655,-0.001046651159413159,0.024546509608626366,-0.0035495285410434008,-0.07119933515787125,-0.005279737524688244,0.06571358442306519,0.044446248561143875,-0.0995507538318634,0.09696527570486069,-0.018049124628305435,-0.1157824918627739,-0.012774997390806675,-3.570532131870035e-33,-0.004296567291021347,-0.024197369813919067,0.04987243935465813,-0.08049182593822479,0.006971524562686682,0.07236333936452866,-0.006478863302618265,0.01487665344029665,0.04985729977488518,0.04260202869772911,-0.0691809356212616,-0.13609181344509125,-0.10129182785749435,0.034820374101400375,-0.08938831835985184,0.06955581903457642,-0.05566675588488579,0.012473015114665031,-0.009207414463162422,0.009219792671501637,-0.04551959037780762,0.03426457941532135,-0.010321700014173985,0.01975659839808941,-0.06979741901159286,0.06442365795373917,0.04430634155869484,0.034919753670692444,0.010116573423147202,-0.006081050727516413,-0.07700885087251663,0.015486100688576698,0.021332740783691406,0.06832919269800186,-0.06805223971605301,0.03945458307862282,-0.05251164361834526,0.007044176105409861,-0.07840432226657867,0.05109654739499092,-0.0543542243540287,0.006593968719244003,0.029949845746159554,-0.006176600232720375,-0.033804263919591904,-0.041563764214515686,-0.029353633522987366,0.02659560553729534,-0.03286676108837128,0.0005887839361093938,0.019885346293449402,0.013982569798827171,0.0713164359331131,-0.04830282926559448,0.02436213009059429,0.06318680942058563,0.00490330858156085,0.08823184669017792,-0.02662629447877407,0.07341301441192627,0.0719781219959259,-0.04339168220758438,-0.014904565177857876,-0.017601536586880684,-0.046610649675130844,-0.1006409078836441,0.02255384251475334,-0.029033882543444633,-0.005808814894407988,-0.01606591045856476,-0.018417028710246086,0.039945993572473526,-0.05037308111786842,-0.032742325216531754,-0.08889777213335037,-0.012086620554327965,0.0177058894187212,0.008573455736041069,-0.09811144322156906,-0.02411603182554245,-0.033674318343400955,0.09226007759571075,-0.006136658601462841,-0.0860137864947319,-0.07851728051900864,-0.03510357812047005,0.024274524301290512,-0.05952608957886696,-0.01995021663606167,-0.0034202688839286566,0.037211958318948746,-0.0859752967953682,-0.013502178713679314,-0.01679098792374134,-0.03141827881336212,3.992482073911434e-34,-0.06054367497563362,-0.0477774403989315,-0.012790858745574951,0.03948870301246643,-0.03364691510796547,-0.0385977141559124,-0.057778552174568176,-0.008196412585675716,-0.011160208843648434,-0.03690823167562485,-0.0034189436119049788,-0.0530717559158802,0.07505094259977341,-0.04992939531803131,0.039637185633182526,0.019444020465016365,-0.01919163204729557,0.0019246815936639905,0.023542042821645737,0.06574694067239761,0.02986999787390232,0.02197551354765892,-0.08433891087770462,0.016248274594545364,0.037127599120140076,0.009492212906479836,0.007165590766817331,-0.015506548807024956,-0.01986064203083515,0.032510753720998764,-0.007007223088294268,0.02322670817375183,0.015451922081410885,0.05768784508109093,0.08048077672719955,-0.039289504289627075,0.02375887520611286,-0.0014782727230340242,0.016482360661029816,-0.04186484217643738,0.020047767087817192,-0.0020191289950162172,-0.0018641612259671092,0.07525263726711273,0.008643334731459618,-0.006833387538790703,-0.0019179225200787187,0.048525650054216385,0.057067856192588806,0.004384945146739483,-0.0710301324725151,-0.03204982355237007,-0.03253113850951195,0.007071470841765404,0.004772134590893984,0.05140960216522217,0.07431259006261826,-0.08455337584018707,0.09683887660503387,0.004304158501327038,-0.08067958801984787,-0.056078266352415085,-0.07465298473834991,0.0829235091805458,-0.05229141563177109,0.021269477903842926,-0.049006205052137375,-0.02522253803908825,-0.04809979721903801,0.010514835827052593,0.06679785251617432,0.031468916684389114,-0.01697082817554474,-0.03020251914858818,0.009279993362724781,0.014693768694996834,0.012603727169334888,0.07035543769598007,-0.07524579018354416,-0.0025811996310949326,-0.0020388627890497446,-0.09066367149353027,0.05590515956282616,-0.053927432745695114,0.03775272145867348,0.015704911202192307,-0.0430782288312912,-0.054941438138484955,-0.0006589367403648794,0.009647681377828121,-0.024758486077189445,-0.05700843781232834,0.07121182978153229,0.04692962393164635,-0.032657723873853683,-2.4190654812628054e-8,-0.013922845013439655,0.029069500043988228,-0.0036334549076855183,0.02480735257267952,-0.02840539440512657,-0.03431202843785286,-0.010395537130534649,-0.016759756952524185,-0.03846690431237221,0.06367108225822449,-0.11926930397748947,0.052934300154447556,0.03386488929390907,0.09018658846616745,0.04972716420888901,-0.014667825773358345,-0.01443682424724102,-0.00883122906088829,-0.004097375553101301,0.028336526826024055,-0.04839449003338814,0.04399661719799042,-0.04114694893360138,0.023572146892547607,-0.01660945825278759,-0.009406310506165028,-0.023992963135242462,-0.010517538525164127,-0.021449800580739975,0.06287115812301636,0.04385489970445633,-0.0065989200957119465,-0.07248735427856445,0.014908598735928535,-0.0648765042424202,-0.027340471744537354,-0.04392441734671593,0.10850909352302551,-0.024832623079419136,-0.0058673107996582985,0.03380842134356499,0.0812821164727211,0.008555631153285503,-0.02885998971760273,0.12199325114488602,-0.06102421134710312,-0.017119934782385826,0.05457734316587448,0.008978882804512978,0.03840664029121399,-0.02589707262814045,-0.03556264936923981,-0.03094210848212242,-0.10616154968738556,0.13169822096824646,-0.07301600277423859,0.03822148218750954,0.04953739047050476,-0.11175093799829483,0.0727597177028656,0.13600000739097595,-0.006275743246078491,0.07513028383255005,-0.0044119833037257195]},{"text":"I considered the being whom I had cast among mankind, and endowed with the will and power to effect purposes of horror, such as the deed which he had now done, nearly in the light of my own vampire, my own spirit let loose from the grave, and forced to destroy all that was dear to me.","book":"1984","chapter":42,"embedding":[-0.03449374809861183,0.11656679958105087,0.002007331233471632,0.019734077155590057,-0.04912727698683739,-0.014050470665097237,0.04118962213397026,-0.015283036045730114,0.07220572233200073,0.0050514754839241505,-0.0015519843436777592,-0.053979337215423584,-0.04611166566610336,-0.010413521900773048,0.007179902866482735,-0.012177976779639721,0.025994926691055298,0.0522335059940815,-0.03566964715719223,0.07680003345012665,0.07305773347616196,0.06919921189546585,-0.016302412375807762,-0.04928646981716156,-0.019355982542037964,-0.054147057235240936,0.04719904437661171,0.019585544243454933,0.05719562619924545,-0.06698477268218994,-0.05388309061527252,-0.058900587260723114,-0.02637169323861599,0.010896212421357632,0.00407326128333807,0.017921006307005882,0.020142143592238426,-0.017622005194425583,-0.0032099145464599133,-0.05824609473347664,0.020618602633476257,0.11466889083385468,0.017537033185362816,0.06510701775550842,-0.026433531194925308,-0.10286129266023636,-0.005023941397666931,-0.005674703512340784,-0.053282734006643295,-0.07142163068056107,0.00156514928676188,0.024099288508296013,0.02523084729909897,-0.006609768141061068,-0.060143958777189255,-0.009476656094193459,0.02262759581208229,-0.012772166170179844,0.03281787782907486,-0.08544149994850159,-0.008897689171135426,0.003039474133402109,-0.004453442059457302,-0.01947389915585518,-0.0033453512005507946,-0.025104375556111336,0.0428917221724987,-0.03686210513114929,-0.08580036461353302,0.042590849101543427,-0.0470186248421669,-0.05710629001259804,0.06147915497422218,-0.03181396424770355,-0.05506853386759758,-0.07522571831941605,0.0643891915678978,-0.045622602105140686,-0.05409535765647888,0.048372942954301834,0.04309193044900894,0.026253540068864822,0.003539711469784379,0.022800765931606293,0.0031616701744496822,-0.001253318740054965,0.06068286672234535,0.022065693512558937,0.030804257839918137,0.12085626274347305,-0.029850782826542854,-0.03328055143356323,0.0245344415307045,0.009185712784528732,0.0709347054362297,0.01931103691458702,-0.046462029218673706,0.0280828345566988,-0.04024301469326019,0.022466355934739113,-0.04703287407755852,0.008516971953213215,-0.08652195334434509,0.05992785096168518,0.0028702442068606615,-0.01596437208354473,-0.09458491951227188,-0.027637068182229996,0.02143060229718685,-0.03818860277533531,-0.034775447100400925,-0.012876921333372593,-0.07694856077432632,0.009696150198578835,0.07513616234064102,0.05468391254544258,-0.04544875770807266,0.01181988324970007,-0.020638441666960716,0.016477415338158607,0.04833448305726051,0.11294682323932648,0.028665024787187576,0.08365237712860107,-0.03567032888531685,-0.040824610739946365,0.027966156601905823,-3.4724830460419944e-33,-0.01840386353433132,-0.003643790725618601,-0.06663128733634949,-0.018710047006607056,-0.00726994639262557,0.01321803405880928,-0.03089626505970955,0.06775054335594177,-0.006189622916281223,-0.05124181881546974,0.057153258472681046,-0.03384058177471161,0.01916833221912384,0.05718011036515236,-0.11862009763717651,0.07533734291791916,-0.011537214741110802,-0.0013231791090220213,0.0570821575820446,-0.021681347861886024,-0.05076216533780098,0.15912169218063354,-0.013898059725761414,-0.04262074455618858,-0.04134581238031387,-0.008841585367918015,-0.026881251484155655,0.002688765525817871,-0.01502509880810976,0.032869622111320496,0.04285947233438492,0.02896793745458126,0.05772929638624191,-0.018102509900927544,0.04702369496226311,0.0496845468878746,-0.061468176543712616,-0.01688258908689022,0.014751523733139038,-0.02135005034506321,0.019078001379966736,0.03305025398731232,-0.015836389735341072,-0.06969814747571945,-0.050738535821437836,-0.057275716215372086,0.0010554767213761806,0.04907522723078728,-0.1410531997680664,0.09757526963949203,-0.06283330172300339,-0.00868545938283205,0.04181728884577751,-0.011875121854245663,-0.02975892275571823,-0.03798561915755272,-0.001706634764559567,0.02506243623793125,0.025606390088796616,-0.03352119401097298,-0.07517731934785843,0.010473290458321571,0.04750240966677666,0.07427443563938141,-0.05811377614736557,-0.11011773347854614,0.017205828800797462,-0.06642715632915497,-0.009673655964434147,-0.07526993751525879,-0.13923850655555725,-0.027387067675590515,-0.025860173627734184,0.022225966677069664,-0.04595625028014183,-0.05055239424109459,-0.028287401422858238,-0.013378534466028214,-0.12257132679224014,0.026734143495559692,-0.01831873133778572,0.04779115319252014,0.02085791528224945,-0.0352572537958622,0.061064284294843674,-0.020357707515358925,-0.022456493228673935,-0.0925796702504158,-0.023363620042800903,0.007513222750276327,0.024530131369829178,0.00008580581197747961,0.02825765497982502,-0.07709039747714996,-0.060737114399671555,-5.26824425614894e-34,0.03851919248700142,-0.0808904841542244,0.01896970346570015,-0.0037558984477072954,0.06416618078947067,-0.10595367103815079,-0.10625913739204407,-0.043304089456796646,-0.008090685121715069,-0.008288895711302757,-0.00005038306335336529,0.043891288340091705,0.02475149743258953,0.01138644851744175,0.029986124485731125,-0.02568553201854229,-0.09874259680509567,-0.059553809463977814,0.036853741854429245,-0.007053120993077755,-0.03176795318722725,0.12859822809696198,-0.005661826115101576,-0.03476329520344734,0.03771466761827469,0.03129896894097328,0.059436723589897156,0.033765312284231186,0.04317310079932213,-0.06730414927005768,0.04411451518535614,0.02195894345641136,-0.03783712536096573,-0.06785593926906586,0.026458991691470146,0.08205096423625946,0.07325220108032227,0.03571813553571701,0.0353698767721653,-0.06505019962787628,-0.012116914615035057,0.055546171963214874,0.027254654094576836,0.03880723565816879,-0.014413072727620602,-0.03837588056921959,0.03043369948863983,-0.003960139118134975,0.07563968747854233,0.05088840797543526,-0.10773573815822601,-0.012593220919370651,0.06645572185516357,0.013931529596447945,0.018786076456308365,-0.03624604642391205,0.09400007873773575,-0.07691025733947754,0.11856921762228012,-0.0026131500490009785,-0.0003259419754613191,0.022152259945869446,0.04115943983197212,0.04741358757019043,0.001448725233785808,0.03034631721675396,-0.012349526397883892,0.0967685878276825,-0.07948605716228485,-0.01011119969189167,-0.022606201469898224,-0.05734739825129509,-0.06957335025072098,0.10108378529548645,0.0036814699415117502,0.002172855893149972,0.015605183318257332,-0.014919545501470566,0.01648721843957901,-0.018122918903827667,-0.006701880134642124,-0.03685113787651062,-0.012027806602418423,0.02314196154475212,0.048512887209653854,-0.08540581911802292,0.015507941134274006,-0.027970196679234505,0.028454894199967384,-0.053281012922525406,-0.025778260082006454,-0.009236528538167477,0.02838345617055893,-0.04611128568649292,-0.012432711198925972,-3.7666158192450894e-8,0.001572449691593647,-0.0013635879149660468,0.053778551518917084,0.038978707045316696,0.02939729392528534,-0.027569258585572243,0.08064007014036179,0.016830477863550186,-0.0908079743385315,0.04715060815215111,-0.008968538604676723,0.042625728994607925,0.08937337249517441,-0.010626306757330894,0.09983613342046738,-0.10800052434206009,-0.04757538437843323,-0.04139365628361702,-0.03874322399497032,-0.018434317782521248,-0.010135377757251263,0.05340097099542618,0.016009587794542313,-0.1151186004281044,0.01889103092253208,0.0010587979340925813,-0.0009679773356765509,-0.08961756527423859,-0.023881861940026283,0.08590198308229446,0.05126231908798218,0.09691372513771057,-0.009717810899019241,0.03682967275381088,-0.15224666893482208,0.024147700518369675,-0.06874590367078781,-0.014921317808330059,0.07486460357904434,0.004800011403858662,0.06843630224466324,0.0802021250128746,0.020632095634937286,0.0573250986635685,-0.010189088992774487,-0.057279691100120544,0.07918085157871246,-0.060195956379175186,0.0062779770232737064,0.03969544172286987,0.0133332135155797,0.07881329953670502,0.01020980067551136,0.06312060356140137,0.05163140222430229,-0.0236344151198864,0.00934423878788948,0.06523369997739792,-0.09972964972257614,-0.04970753565430641,0.0943605974316597,-0.038824230432510376,-0.06383902579545975,-0.028879502788186073]},{"text":"These reflections determined me, and I resolved to remain silent.","book":"1984","chapter":42,"embedding":[-0.0021331808529794216,0.022188369184732437,0.10165783762931824,0.07416024059057236,0.03982239216566086,-0.06431330740451813,0.043584078550338745,-0.06497136503458023,-0.0004860478511545807,-0.08838529139757156,0.010735753923654556,-0.0010201631812378764,-0.027205057442188263,-0.07920103520154953,-0.05711328610777855,0.07381335645914078,-0.004567631054669619,0.017615029588341713,0.00016172263713087887,0.046917546540498734,-0.03548876568675041,0.03679271787405014,0.02218177542090416,-0.02264455147087574,0.047745972871780396,0.044906675815582275,0.010675572790205479,-0.019403202459216118,0.07411518692970276,-0.012556911446154118,0.010091851465404034,0.07146291434764862,-0.0740794688463211,-0.02811870165169239,-0.008380952291190624,-0.0007070166175253689,0.05693671479821205,0.03649920970201492,0.1019289419054985,-0.10015328228473663,0.020216787233948708,0.013692909851670265,0.05569839105010033,-0.0691390410065651,-0.01926332525908947,-0.0590369738638401,0.03158712014555931,0.0021364791318774223,0.018676074221730232,-0.12729129195213318,0.01541295275092125,-0.023395899683237076,-0.10132385045289993,-0.004554222337901592,-0.0044593350030481815,0.026477685198187828,0.04797026142477989,0.017517324537038803,0.017899058759212494,0.003993113525211811,-0.022258255630731583,-0.01762755587697029,0.002462098840624094,0.006041793152689934,0.02861635759472847,0.12211869657039642,0.015493450686335564,-0.08800636976957321,0.051906049251556396,0.09417456388473511,-0.03775835037231445,0.08078097552061081,0.06708720326423645,0.017112821340560913,-0.0192291010171175,-0.01777070015668869,0.013028989546000957,-0.10291679203510284,0.014780273661017418,0.00040089915273711085,-0.03653978183865547,0.021743059158325195,-0.048837706446647644,0.03315603733062744,0.03230595961213112,-0.0694773867726326,0.02266787737607956,-0.013589906506240368,-0.005523230414837599,0.0668305829167366,0.04947074130177498,-0.048795461654663086,-0.028293052688241005,0.04445516690611839,-0.0266673993319273,-0.07610663771629333,-0.04914628341794014,0.05219808220863342,-0.02966734580695629,0.056327417492866516,-0.02507314644753933,-0.015912028029561043,0.008078176528215408,0.010178407654166222,-0.051421210169792175,0.005627679638564587,-0.07253333181142807,0.011299334466457367,-0.06500310450792313,0.01602797396481037,-0.016885200515389442,-0.015169186517596245,-0.017711808905005455,0.045806899666786194,-0.03935454785823822,0.07406996190547943,0.00942426361143589,0.017886655405163765,0.041783325374126434,0.02456790953874588,0.046892207115888596,0.0809006318449974,0.020741701126098633,0.01246565580368042,0.01629914902150631,-0.015699241310358047,-0.0327770970761776,-6.838053411508763e-33,0.03369291126728058,0.04254572093486786,-0.023931510746479034,0.008753810077905655,0.02761237323284149,-0.01316294725984335,0.005259603727608919,0.037796977907419205,0.06519915163516998,-0.03125692158937454,0.057744257152080536,0.03532096743583679,0.06284007430076599,-0.0911136120557785,-0.04894466698169708,0.010067266412079334,0.018934322521090508,0.09381387382745743,-0.04432349279522896,-0.025871580466628075,0.021705590188503265,0.06661980599164963,0.004853683523833752,-0.040015868842601776,0.03771861270070076,-0.05530984699726105,-0.015433032996952534,-0.03566925227642059,-0.04539349675178528,0.04727078601717949,-0.06213625892996788,0.07149810343980789,0.07812003046274185,0.021149516105651855,-0.004062060732394457,0.056095853447914124,-0.019931407645344734,-0.017327215522527695,-0.04654466360807419,-0.08728661388158798,0.0020671342499554157,0.008556995540857315,0.03277597948908806,-0.047176115214824677,0.07797989249229431,0.021647095680236816,-0.04993753880262375,0.08240093290805817,-0.0496424064040184,0.049813125282526016,-0.004360994324088097,0.025781406089663506,-0.0019063559593632817,-0.0566781610250473,-0.020522532984614372,-0.011505899019539356,0.024524250999093056,-0.024247849360108376,-0.05499451607465744,-0.040863681584596634,0.03270641714334488,-0.01765589229762554,-0.007468726485967636,-0.025827011093497276,-0.056169502437114716,0.014014090411365032,-0.13970237970352173,-0.06664088368415833,-0.030938250944018364,-0.014926046133041382,-0.044318221509456635,0.0076314546167850494,0.06747619062662125,0.031673721969127655,0.03276737034320831,-0.05160463973879814,-0.07806816697120667,0.0008587604388594627,0.028323618695139885,-0.0427577942609787,0.01930011622607708,0.029442794620990753,-0.1583210825920105,-0.020912330597639084,0.05630259960889816,-0.03813721612095833,0.06760919094085693,-0.07193464785814285,-0.04599764570593834,-0.04565941542387009,-0.07159293442964554,0.09508717805147171,-0.05255095288157463,-0.08971457928419113,-0.12116502225399017,3.818606255615663e-33,0.00839785672724247,0.019382484257221222,0.017987819388508797,0.053958624601364136,-0.06071121245622635,-0.04233945906162262,-0.0380704440176487,0.034941166639328,0.016409369185566902,0.057997092604637146,0.07231017202138901,0.03716786578297615,-0.0814533680677414,0.015041043981909752,-0.07867082208395004,-0.016695700585842133,0.08193474262952805,-0.02711007371544838,-0.007650976534932852,0.0172970462590456,-0.02535375952720642,0.040431953966617584,0.004980683326721191,0.06567151844501495,-0.01152081973850727,0.0065428707748651505,0.17963527143001556,-0.08917788416147232,0.061966314911842346,-0.03756537288427353,0.012559140101075172,-0.01415611058473587,-0.033852458000183105,-0.07010284066200256,0.0448053814470768,0.11484365910291672,-0.012404819950461388,-0.019497141242027283,-0.03831586241722107,-0.0632898285984993,-0.0392148531973362,0.04680546745657921,-0.04940264672040939,0.05558095872402191,-0.04830826818943024,-0.06292268633842468,0.08385279029607773,0.06037380173802376,-0.05501490831375122,-0.05007747933268547,0.023199157789349556,0.016190584748983383,0.06668262183666229,-0.03208942711353302,-0.020645568147301674,0.01552645955234766,0.08185518532991409,-0.004378174431622028,0.11483895033597946,-0.00607654731720686,-0.03888357803225517,0.0495283268392086,-0.021722543984651566,-0.03493644669651985,0.08838842809200287,0.024579862132668495,-0.016895363107323647,0.015951333567500114,0.00849612895399332,-0.01578315906226635,-0.01157387811690569,-0.01580960676074028,-0.07249504327774048,-0.03247971087694168,0.04133957624435425,-0.055639494210481644,-0.0509367436170578,-0.06361353397369385,-0.1073659285902977,0.024251606315374374,0.003055146662518382,-0.02545890212059021,0.021998880431056023,0.049397725611925125,0.04376613348722458,-0.0004699315468315035,-0.06693185865879059,-0.017577841877937317,0.04129387438297272,0.053482554852962494,0.026587992906570435,0.03901015967130661,0.007662354968488216,-0.06908775866031647,-0.04171150177717209,-1.747009115149467e-8,-0.02869979478418827,-0.04128919914364815,-0.008828466758131981,0.029309963807463646,0.04629278555512428,0.0018302620155736804,0.008355294354259968,0.03148700296878815,-0.11590918898582458,0.00033261009957641363,-0.010117058642208576,-0.007611186243593693,0.028769124299287796,0.06495239585638046,0.10562323778867722,-0.018048088997602463,0.053012412041425705,-0.06972163170576096,-0.10520245134830475,-0.025485191494226456,-0.015957526862621307,-0.001616519526578486,-0.09888502955436707,-0.022615568712353706,0.017802437767386436,0.02968757040798664,-0.017501311376690865,-0.09396200627088547,-0.053243786096572876,0.05444633960723877,0.06550892442464828,0.041309867054224014,-0.05200415849685669,-0.03869650885462761,-0.058524347841739655,0.06251510977745056,0.025950826704502106,-0.04007044434547424,0.05331586301326752,0.03739740699529648,-0.035045325756073,-0.011479012668132782,-0.009641201235353947,0.09953633695840836,0.11029890179634094,0.011953550390899181,0.05169001966714859,-0.012881859205663204,-0.07623860239982605,0.014164496213197708,0.02193387597799301,0.04523273929953575,0.03378187492489815,0.06193872541189194,0.028225023299455643,0.023342136293649673,0.06170562282204628,0.026443231850862503,-0.06447440385818481,-0.010601899586617947,0.17991220951080322,0.01865679770708084,-0.11904728412628174,0.003257965901866555]},{"text":"You come to us now to share a misery which nothing can alleviate; yet your presence will, I hope, revive our father, who seems sinking under his misfortune; and your persuasions will induce poor Elizabeth to cease her vain and tormenting self-accusations.—Poor William! he was our darling and our pride!” Tears, unrestrained, fell from my brother’s eyes; a sense of mortal agony crept over my frame.","book":"1984","chapter":43,"embedding":[0.01208000723272562,0.0445331335067749,0.05768124386668205,0.02102913148701191,0.029669243842363358,0.058688677847385406,0.05269903317093849,-0.05597064271569252,-0.041413839906454086,-0.07797718793153763,-0.05447157099843025,0.0034217832144349813,-0.00972866639494896,-0.03495292365550995,0.011848277412354946,0.06354635208845139,-0.03801830857992172,0.001189551898278296,-0.09938623756170273,0.08451765775680542,-0.02421160414814949,0.0859786868095398,-0.04015910252928734,0.035087715834379196,-0.06383290886878967,0.0023104865103960037,0.012904052622616291,0.025679118931293488,0.04990337789058685,-0.05759882181882858,-0.06416074931621552,-0.06398861110210419,0.01507975347340107,0.026916086673736572,0.08217192441225052,0.015622958540916443,0.024430960416793823,-0.05473465099930763,-0.015442945063114166,-0.013883324339985847,0.023572660982608795,0.024973785504698753,0.00023475504713132977,0.059212084859609604,-0.012515438720583916,0.016219541430473328,-0.036251556128263474,0.004800180438905954,0.10244534909725189,-0.018941611051559448,-0.0515131913125515,0.04738667234778404,0.027822596952319145,-0.06757213920354843,-0.026736920699477196,0.04930726811289787,0.04203460365533829,-0.03541424870491028,-0.021813994273543358,0.020270567387342453,-0.05406678467988968,0.04096509516239166,0.028084656223654747,0.047318629920482635,-0.007022541482001543,-0.04311962053179741,0.04065097123384476,0.026825767010450363,-0.05577189847826958,0.09763539582490921,-0.11698770523071289,-0.02785586379468441,0.06181006506085396,0.006132068578153849,-0.087132528424263,-0.0007052690489217639,0.006190803833305836,-0.05160853639245033,-0.0054167588241398335,-0.0068015530705451965,-0.005074815824627876,0.021963024511933327,-0.027584195137023926,-0.020981624722480774,-0.0637519583106041,-0.07012272626161575,0.06218713894486427,-0.10880643129348755,0.03428855538368225,0.027366019785404205,-0.036554884165525436,-0.12113059312105179,-0.015305647626519203,0.14955660700798035,-0.01209971308708191,0.008654411882162094,-0.0096740135923028,-0.02372257225215435,-0.10623329877853394,0.04560772702097893,-0.005613291170448065,0.09196264296770096,-0.036907318979501724,0.04849255830049515,-0.02986060455441475,-0.02708679996430874,-0.08944189548492432,-0.006348938215523958,0.017997048795223236,0.03255481645464897,0.031641632318496704,-0.07573826611042023,-0.010195901617407799,-0.06935915350914001,0.02551073394715786,-0.04361531138420105,-0.05136384442448616,-0.038222700357437134,-0.004717140458524227,-0.002960473531857133,0.08166392892599106,0.06451115012168884,-0.02634221315383911,0.03257487341761589,-0.01885383017361164,-0.07996738702058792,-0.058495957404375076,-2.343008931712415e-33,0.04596783593297005,0.06406666338443756,-0.003736203769221902,0.099103644490242,-0.003847063984721899,0.024603739380836487,-0.06010281294584274,0.05345818027853966,-0.05247993394732475,-0.09065121412277222,-0.07772905379533768,-0.058297913521528244,0.04046935215592384,-0.06573343276977539,-0.13279938697814941,0.04931473731994629,-0.0064717065542936325,-0.03266311064362526,0.0785580426454544,0.0220355037599802,-0.06032218784093857,0.048591312021017075,0.026043811812996864,-0.030438117682933807,-0.10206788033246994,-0.018247148022055626,0.021877996623516083,-0.01997501030564308,0.0070096347481012344,0.03377857059240341,0.0028113527223467827,0.07215555757284164,0.041796863079071045,-0.04797377809882164,0.016097672283649445,-0.026134852319955826,-0.06962893158197403,-0.016201714053750038,0.01635393686592579,0.049358345568180084,-0.08402100950479507,0.012234962545335293,0.032243892550468445,0.004002609755843878,-0.052700914442539215,-0.032999105751514435,0.021463964134454727,0.060257043689489365,0.01967298611998558,-0.051953449845314026,-0.011157795786857605,-0.04477643594145775,-0.00193397409748286,-0.014991706237196922,-0.007661233190447092,-0.0032222620211541653,-0.043461624532938004,0.0692949891090393,0.03544310852885246,-0.05862220749258995,0.019806161522865295,-0.0912938043475151,0.06489662826061249,0.031663551926612854,0.009835285134613514,-0.0943135991692543,-0.06682148575782776,-0.037168875336647034,-0.09187125414609909,-0.020165055990219116,-0.08985602110624313,0.05216032266616821,-0.03929239138960838,-0.021607449278235435,-0.004055442754179239,0.03847212344408035,0.03734041005373001,-0.0367029644548893,0.027510710060596466,-0.05746305361390114,-0.05135081708431244,-0.03320014476776123,-0.05791238695383072,0.014613477513194084,0.0763280913233757,-0.02715916372835636,-0.03310546651482582,-0.10348860919475555,-0.016027044504880905,0.11591728031635284,0.029210157692432404,-0.0015707123093307018,0.052673935890197754,-0.059968914836645126,-0.03882719203829765,-1.4630074120639569e-33,0.09046781063079834,0.022073352709412575,0.0047972481697797775,0.06723104417324066,0.018185535445809364,-0.09834323823451996,0.001634545042179525,0.07470956444740295,0.02847723662853241,0.07941453903913498,-0.07901756465435028,-0.013564477674663067,0.05841376632452011,0.010160163976252079,-0.012021922506392002,-0.0071006775833666325,0.08199743181467056,-0.012337635271251202,0.01661071553826332,-0.025956077501177788,-0.024943871423602104,0.055318962782621384,-0.05391116067767143,-0.09825128316879272,0.00796485971659422,0.04333324357867241,0.08444756269454956,-0.04658864066004753,-0.01818961463868618,-0.05720887333154678,0.05281207337975502,0.02147016115486622,-0.095045305788517,0.026770124211907387,0.042838893830776215,0.09000929445028305,0.07235919684171677,-0.05204661190509796,0.012373520992696285,0.010599937289953232,0.01634105108678341,-0.03938601538538933,0.01730145514011383,0.04015779495239258,0.07461334019899368,-0.014105106703937054,0.01647951267659664,-0.013732739724218845,0.050141721963882446,0.07802826166152954,0.0025437530130147934,-0.02730349637567997,0.06019623577594757,0.04940719157457352,-0.0007264872547239065,-0.05526209622621536,-0.0009144311770796776,-0.10011798143386841,-0.015290901996195316,0.012407505884766579,-0.05679570883512497,-0.03708603233098984,-0.10748341679573059,0.010551577433943748,-0.039651691913604736,0.05660068616271019,-0.0020096732769161463,0.0349026694893837,-0.03363454341888428,0.044279225170612335,-0.002979828277602792,-0.06022441387176514,-0.05399662256240845,-0.031633105129003525,0.029671592637896538,0.03249053284525871,0.028278781101107597,-0.015897445380687714,-0.08345943689346313,-0.015222808346152306,0.06158917769789696,-0.051279403269290924,-0.014317503198981285,-0.049270715564489365,0.03941328823566437,-0.11108275502920151,0.08582702279090881,0.08757062256336212,-0.03931106626987457,-0.0056496490724384785,-0.013743191957473755,-0.005463441833853722,0.08131083846092224,-0.10639148950576782,0.04118771478533745,-4.846861045848527e-8,-0.004524565301835537,-0.07882342487573624,-0.03557261824607849,-0.05758203938603401,0.007764717098325491,0.03175700083374977,-0.00032502011163160205,0.05049318075180054,-0.056414227932691574,0.048942144960165024,-0.03207700327038765,0.025890236720442772,0.034185055643320084,0.02596152015030384,0.09493976086378098,0.07402285933494568,-0.0009218709892593324,-0.09805355221033096,-0.01866082288324833,-0.038544949144124985,0.0006594797014258802,-0.0108168451115489,0.04726772755384445,-0.007752448786050081,-0.03557491675019264,-0.009619882330298424,0.027660712599754333,-0.020580267533659935,-0.07248455286026001,-0.03886300325393677,0.0633062869310379,0.1032523438334465,-0.04213520884513855,-0.000490097445435822,-0.06228669360280037,-0.010374634526669979,0.023889951407909393,0.015569621697068214,0.037387240678071976,-0.017865879461169243,0.0010467515094205737,0.09633008390665054,-0.006666289642453194,0.018407896161079407,0.039103392511606216,-0.04218911752104759,0.004837139043956995,0.12205073237419128,-0.04244080185890198,-0.0170304998755455,-0.02887524664402008,0.0008611441589891911,0.018368713557720184,0.09451254457235336,0.07786770910024643,-0.041061293333768845,-0.013445508666336536,0.056239817291498184,-0.03445399925112724,0.05758696794509888,0.08586595207452774,0.027258262038230896,0.03160954639315605,-0.10898145288228989]},{"text":"But she will be tried today, and you will then hear all.” He then related that, the morning on which the murder of poor William had been discovered, Justine had been taken ill, and confined to her bed for several days.","book":"1984","chapter":43,"embedding":[0.029199451208114624,0.052996836602687836,0.13200557231903076,-0.0471748486161232,0.015079102478921413,0.05391906201839447,0.056195829063653946,-0.008584611117839813,-0.03578369319438934,-0.046263471245765686,0.037193089723587036,0.058937638998031616,0.004646289627999067,-0.054138652980327606,-0.029825787991285324,-0.009082064963877201,0.01955345831811428,0.01321053970605135,-0.09918030351400375,0.11371708661317825,0.011020025238394737,0.031347163021564484,0.07602597773075104,0.01996907778084278,-0.08645953983068466,0.014970371499657631,0.04317354038357735,-0.04731070250272751,0.036084726452827454,0.02372344769537449,-0.057094380259513855,0.019201433286070824,-0.028117919340729713,0.02636476419866085,0.00869473535567522,-0.038748160004615784,0.034535784274339676,0.02891373448073864,0.012127031572163105,0.023765603080391884,-0.02761915698647499,-0.09063205122947693,-0.011014334857463837,0.10921695828437805,-0.05372577905654907,-0.08091206848621368,-0.02523411437869072,-0.032168008387088776,0.07506800442934036,-0.019454708322882652,-0.07438218593597412,0.012318484485149384,0.020187456160783768,-0.1289965808391571,-0.0225936621427536,0.004898391664028168,0.02583271637558937,0.041705500334501266,0.07314778119325638,0.034438181668519974,-0.01943928189575672,0.08818603307008743,-0.03829117864370346,0.016178598627448082,0.06269296258687973,-0.042229168117046356,0.04675213247537613,-0.011709307320415974,0.04089801385998726,0.07186383754014969,-0.004983832594007254,-0.0012793726054951549,0.005175300873816013,-0.0407293438911438,-0.02327033132314682,0.023463167250156403,0.106651671230793,-0.048397187143564224,0.04316547140479088,-0.018822096288204193,-0.058715492486953735,-0.05414176732301712,0.0024886159226298332,0.026165444403886795,0.0010139149380847812,-0.10356201231479645,-0.020371947437524796,0.010909662581980228,0.036982230842113495,-0.012546046636998653,-0.0002712687710300088,-0.11381224542856216,-0.058704923838377,0.06389597803354263,0.04662822186946869,0.0714864656329155,-0.07033050060272217,0.034082621335983276,-0.08677581697702408,0.032588761299848557,-0.01038961298763752,0.10851164907217026,-0.0015159364556893706,0.06511270999908447,0.043968431651592255,-0.05212051421403885,-0.07558830827474594,-0.013661077246069908,-0.02824266627430916,-0.1275637298822403,-0.007959330454468727,-0.0532158762216568,0.10120004415512085,0.019010309129953384,0.050944551825523376,0.03402796387672424,0.04280982166528702,-0.03147941455245018,-0.050658028572797775,-0.0781412348151207,0.03956086188554764,-0.008479781448841095,-0.06713809072971344,-0.027742059901356697,-0.05601145327091217,0.008663489483296871,-0.010045078583061695,-2.9965283221299273e-33,0.027332056313753128,-0.046307601034641266,0.03381935507059097,0.007740158587694168,0.015947503969073296,-0.04667968675494194,-0.06253305077552795,0.04176392778754234,0.00988924503326416,-0.06863890588283539,-0.06303161382675171,-0.16739195585250854,-0.02799149602651596,-0.045595161616802216,-0.0673600286245346,0.0888741984963417,0.07223948836326599,0.00521101662889123,0.021083395928144455,-0.004563963506370783,0.010564067400991917,0.01624523289501667,0.03712453693151474,-0.02803964726626873,-0.05006173998117447,0.01432186271995306,0.07995684444904327,0.030938494950532913,-0.027758413925766945,0.018752478063106537,-0.08384200185537338,0.03365937992930412,0.0504799447953701,0.03719021752476692,0.023166870698332787,0.07838573306798935,-0.005939153488725424,-0.0034272612538188696,-0.0028820959851145744,-0.03235151246190071,-0.08680688589811325,0.03955911844968796,0.06054135411977768,-0.09897593408823013,-0.06749707460403442,-0.028555765748023987,-0.11088307946920395,-0.031362440437078476,0.048585038632154465,0.01851647160947323,0.08159603178501129,0.008669478818774223,-0.051573678851127625,-0.005372851155698299,-0.0022083530202507973,0.07810474932193756,-0.017784930765628815,0.07741383463144302,0.12272744625806808,0.07380347698926926,0.09254947304725647,-0.06771588325500488,0.03210488334298134,0.0975143238902092,0.018137704581022263,-0.003171665361151099,0.021827135235071182,-0.09668417274951935,-0.04290613532066345,-0.03441842272877693,-0.09281978756189346,0.1333935260772705,-0.0036246420349925756,-0.009419423528015614,-0.045086514204740524,0.0322226844727993,0.022150428965687752,-0.07433770596981049,-0.04278793931007385,0.02781904861330986,0.08760195225477219,-0.0292759221047163,0.030245816335082054,0.05312980338931084,-0.0322638675570488,-0.0007256182143464684,0.03971400484442711,0.011508007533848286,-0.03726339712738991,0.005351732484996319,-0.026079997420310974,-0.005228349007666111,0.0048784432001411915,-0.025406910106539726,-0.006452799309045076,-1.4003866239437459e-33,0.008273599669337273,-0.028374461457133293,0.012591050006449223,-0.03243342414498329,0.0063068317249417305,-0.07086315006017685,-0.02590618096292019,0.0022978370543569326,-0.011847961694002151,0.016731899231672287,-0.014330944046378136,-0.10846040397882462,0.047829318791627884,-0.016050122678279877,0.017798103392124176,-0.012836500070989132,0.026931634172797203,-0.06161315739154816,-0.06350994855165482,0.11196592450141907,-0.07945815473794937,-0.026517655700445175,-0.03634212911128998,-0.006754303351044655,0.0067958408035337925,0.000640113081317395,0.07909486442804337,0.017722275108098984,-0.14864006638526917,-0.03465145826339722,0.0024444046430289745,-0.0016251178458333015,-0.037548236548900604,-0.013993854634463787,0.0027389642782509327,0.08117236196994781,0.048281069844961166,-0.048726122826337814,0.01483927108347416,-0.0254516564309597,0.04652142897248268,-0.019834524020552635,0.016656605526804924,-0.0397966168820858,0.023241382092237473,0.07708495855331421,0.04975308105349541,0.05683233216404915,0.09298168867826462,-0.037573233246803284,0.03919963166117668,0.017137905582785606,0.03124856948852539,0.06274773925542831,0.003127253381535411,-0.0725686103105545,-0.013555302284657955,-0.13399751484394073,-0.003818754106760025,-0.0194130539894104,-0.073040671646595,-0.014127681031823158,-0.09618471562862396,0.019566083326935768,-0.03345979005098343,-0.0021532834507524967,-0.06492415070533752,-0.0026340128388255835,0.00603727251291275,-0.028923287987709045,0.05174200236797333,-0.034462425857782364,-0.07306674122810364,0.0037914752028882504,0.005787406116724014,0.0013481919886544347,-0.09363731741905212,-0.04925036057829857,-0.05522085726261139,-0.013491244055330753,0.08554220199584961,-0.09436218440532684,0.02633531019091606,-0.04198914021253586,0.03161262720823288,-0.08007408678531647,0.038971852511167526,0.05048360303044319,-0.047281477600336075,-0.04029081389307976,-0.008670027367770672,-0.0863494724035263,0.011276564560830593,0.023583486676216125,0.024534473195672035,-3.53235733996371e-8,0.013021271675825119,-0.006783571094274521,-0.007375878747552633,-0.08437419682741165,-0.043554600328207016,-0.002080583479255438,-0.00390813872218132,0.04262586683034897,0.007438381668180227,0.11479170620441437,0.015314482152462006,0.02291622757911682,0.0020264110062271357,-0.018460405990481377,-0.048739705234766006,0.03144000098109245,0.0022392256651073694,-0.05737382918596268,-0.014041452668607235,0.014888733625411987,-0.0032360560726374388,-0.0061464933678507805,0.07479755580425262,-0.006919775158166885,0.021490786224603653,0.04735036939382553,0.001470739021897316,0.043101999908685684,-0.003777848556637764,0.03474864736199379,-0.0353512316942215,0.027301227673888206,-0.07575354725122452,-0.039159540086984634,-0.10169579833745956,-0.016441471874713898,0.09251978248357773,0.00029002217343077064,0.028745202347636223,-0.03962584584951401,-0.015057532116770744,-0.0105955321341753,-0.07052191346883774,0.016515392810106277,0.08032910525798798,-0.049478694796562195,0.0260805394500494,-0.012050891295075417,0.006645943969488144,0.011759011074900627,0.012669380754232407,0.04701126366853714,0.11535682529211044,-0.009777742438018322,0.06728533655405045,0.019003847613930702,-0.016887661069631577,0.006696867756545544,-0.07525471597909927,-0.004751641768962145,0.017662473022937775,0.016892975196242332,0.04147495701909065,-0.043202582746744156]},{"text":"My tale was not one to announce publicly; its astounding horror would be looked upon as madness by the vulgar.","book":"1984","chapter":44,"embedding":[0.0371834933757782,0.028567858040332794,0.0045448048040270805,0.0384792722761631,0.023822301998734474,0.027454407885670662,0.03984484821557999,-0.028409037739038467,0.045829981565475464,-0.0012340907705947757,-0.04733322933316231,0.03672318905591965,0.0765017718076706,-0.019208094105124474,-0.05139658972620964,-0.06342330574989319,0.07678119093179703,-0.04139794036746025,0.05964035913348198,-0.0009943878976628184,0.10699717700481415,0.13136130571365356,0.06877763569355011,-0.019664380699396133,-0.011639773845672607,-0.0814613401889801,0.05487692728638649,0.037255093455314636,-0.09634427726268768,-0.03292350843548775,-0.08308687806129456,-0.000027899161068489775,0.034731727093458176,-0.07664495706558228,-0.011560271494090557,-0.09581080824136734,0.010656533762812614,-0.04688890278339386,0.03061511740088463,-0.01652085781097412,0.05133536458015442,-0.006295320112258196,0.04877901077270508,0.01282297633588314,-0.08006063103675842,-0.04734060913324356,-0.0007848299574106932,0.018863530829548836,-0.08405884355306625,-0.09241858869791031,0.00890822522342205,0.011310513131320477,0.0803779661655426,-0.030221665278077126,-0.014803174883127213,-0.0845237672328949,-0.025707220658659935,-0.07834771275520325,-0.014089373871684074,0.0428483746945858,-0.04816492274403572,0.009033300913870335,-0.000011256483048782684,0.0013891990529373288,0.06780240684747696,-0.010621125809848309,0.05037551745772362,0.0795011967420578,0.018749425187706947,0.005689665675163269,-0.031526386737823486,0.017908461391925812,0.09973633289337158,-0.021596917882561684,-0.04567508399486542,-0.008203372359275818,0.040146004408597946,-0.004613833501935005,-0.001135080005042255,-0.02381780929863453,-0.053030069917440414,-0.04751232638955116,0.08097662776708603,-0.0727614089846611,-0.038318049162626266,-0.0540725477039814,0.06809549033641815,-0.034130364656448364,-0.018451189622282982,0.045943573117256165,-0.011403008364140987,-0.09834872931241989,0.03527313098311424,0.00034693186171352863,-0.023022586479783058,-0.013571834191679955,-0.06658565998077393,-0.029260506853461266,-0.055364593863487244,0.04162830486893654,-0.08646754920482635,-0.012486979365348816,-0.031966682523489,0.0038819112814962864,0.03469782695174217,-0.029494524002075195,-0.0536344051361084,-0.04824266955256462,-0.012321144342422485,0.00489726522937417,-0.03839118778705597,0.023191411048173904,-0.0034679246600717306,-0.033791638910770416,0.07393599301576614,0.058277714997529984,0.018178844824433327,-0.010348020121455193,0.04180807247757912,-0.02533668279647827,0.07382596284151077,0.04961326718330383,-0.06285839527845383,0.08392132073640823,-0.03164547681808472,0.049730055034160614,-0.05624933913350105,-1.3459286338995379e-33,-0.0321800597012043,0.023265868425369263,-0.012742197141051292,0.03779534623026848,0.07749033719301224,0.0034010556992143393,-0.061008378863334656,-0.06514079123735428,0.06221815198659897,-0.013162157498300076,0.03760256990790367,0.013047724030911922,0.01141304150223732,0.0014819717034697533,-0.1411331593990326,0.06300508230924606,0.002526146825402975,0.1004561334848404,0.05930463969707489,-0.05327016860246658,0.019045893102884293,0.06645193696022034,-0.02118012122809887,-0.016264578327536583,-0.04810851812362671,0.024869317188858986,-0.008293244056403637,-0.03105751797556877,0.0542968325316906,0.0464610680937767,0.0177930798381567,0.03332509100437164,0.08817162364721298,-0.09368036687374115,0.10217836499214172,-0.009006408043205738,-0.072842538356781,-0.0719156265258789,0.053959619253873825,0.07083845883607864,0.045366499572992325,-0.028445646166801453,-0.14459560811519623,0.006031396333128214,0.03875930979847908,0.13380375504493713,-0.0737299844622612,0.03116779588162899,-0.08108477294445038,-0.01608487032353878,0.03505190461874008,0.05791253596544266,0.01236557587981224,0.01308862678706646,0.035706933587789536,0.020264502614736557,0.027227036654949188,-0.12970873713493347,0.09787635505199432,-0.03737986832857132,-0.0025943962391465902,0.07320138067007065,0.011998702771961689,-0.07379104197025299,-0.025146864354610443,-0.03306010365486145,0.03622426092624664,-0.0022663441486656666,-0.022007476538419724,-0.03909144178032875,-0.03374561294913292,-0.02878480590879917,-0.022845927625894547,-0.02743390016257763,0.0018345533171668649,-0.06452899426221848,-0.0000979470059974119,-0.008794822730123997,-0.01667746528983116,-0.010393692180514336,0.1164664775133133,-0.0014671101234853268,-0.04806540161371231,0.02236243337392807,0.03128976747393608,-0.019855748862028122,0.011530357412993908,0.007899682968854904,-0.03445334732532501,0.037336565554142,0.015673208981752396,0.010162743739783764,0.03864899277687073,-0.01964607834815979,-0.0618908554315567,-1.3855285590203445e-33,-0.010930531658232212,-0.03207585960626602,-0.03158062696456909,0.006683776155114174,-0.0049327462911605835,-0.060158438980579376,-0.08274684101343155,0.07368631660938263,0.053109411150217056,0.020155062898993492,-0.005266865249723196,0.005776408594101667,-0.06609900295734406,-0.034261733293533325,0.0401916541159153,0.019818531349301338,0.01718786172568798,-0.007769221905618906,-0.05562959238886833,0.10467975586652756,-0.08875809609889984,0.020688442513346672,-0.05921004340052605,-0.010817836970090866,0.03863381966948509,-0.0500643216073513,0.07021435350179672,0.04925687611103058,0.01257541123777628,-0.06617503613233566,0.03109041228890419,0.0425509437918663,-0.0806255042552948,0.007461788132786751,0.030548369511961937,0.01623193360865116,0.04277590662240982,-0.02133798412978649,0.005734373349696398,-0.032486092299222946,-0.026708392426371574,0.0036176329012960196,-0.014347359538078308,0.015449263155460358,-0.034010693430900574,-0.022438595071434975,0.071501724421978,0.013058600015938282,0.04237241670489311,0.09009449183940887,-0.09747965633869171,-0.03811340034008026,0.05001595988869667,-0.04344719648361206,-0.06729263812303543,-0.04619438573718071,-0.05627201870083809,-0.06752990931272507,0.0025178364012390375,0.06013978272676468,-0.02473439648747444,0.11017042398452759,-0.10114815831184387,-0.004728367552161217,0.0268892552703619,-0.1013106182217598,-0.04053322970867157,0.04600365459918976,-0.02108321152627468,0.0021839092951267958,-0.025023823603987694,-0.03423847258090973,-0.02147531881928444,0.06720320880413055,0.043301310390233994,0.053211018443107605,-0.023653142154216766,-0.06046348437666893,-0.04525517672300339,0.04722030460834503,0.03190760686993599,0.057188138365745544,0.019957374781370163,-0.010000724345445633,0.058128729462623596,0.003871694440022111,0.06886783242225647,0.05680275708436966,-0.029033584520220757,0.04278600960969925,-0.032762058079242706,-0.023303980007767677,0.013763882219791412,-0.010287320241332054,0.07204801589250565,-2.9007280133441782e-8,-0.014367638155817986,-0.03450096771121025,0.05815263092517853,-0.062191110104322433,0.13150152564048767,0.02568330243229866,0.009916055016219616,-0.025134723633527756,-0.022098347544670105,0.019976694136857986,-0.09040968865156174,0.035956695675849915,0.015011973679065704,0.04242447018623352,0.019318638369441032,0.00999393966048956,-0.012986253947019577,-0.06624099612236023,-0.04246113449335098,-0.016045233234763145,-0.03898332640528679,0.05711066722869873,0.06440490484237671,-0.08112439513206482,-0.03158801048994064,-0.01175456028431654,-0.030138354748487473,-0.0793314278125763,0.009574878960847855,0.09319578856229782,0.05036775395274162,-0.0075597576797008514,-0.03878472000360489,0.10212725400924683,-0.08474650979042053,-0.024698445573449135,0.00039603107143193483,0.08355897665023804,0.08191647380590439,-0.04867585375905037,0.03999321162700653,0.0035371698904782534,0.10412434488534927,0.05487813055515289,-0.01107036042958498,-0.008340086787939072,-0.03274160623550415,-0.10688813775777817,-0.029199952259659767,0.021936796605587006,-0.03749873861670494,-0.02619743160903454,0.05366256460547447,0.13953718543052673,0.04210346192121506,-0.029239002615213394,-0.0579519160091877,0.06751962006092072,-0.05951210483908653,-0.03868262097239494,0.04257163777947426,-0.08223601430654526,-0.04985644295811653,0.030719809234142303]},{"text":"If she is, as you believe, innocent, rely on the justice of our laws, and the activity with which I shall prevent the slightest shadow of partiality.” Chapter 8 We passed a few sad hours until eleven o’clock, when the trial was to commence.","book":"1984","chapter":45,"embedding":[-0.02633635886013508,0.07606633752584457,0.04419536888599396,-0.0018078030552715063,0.04330125451087952,0.05898064374923706,-0.013347000814974308,0.04833722859621048,-0.009930266998708248,0.039742112159729004,0.04179016873240471,0.06974511593580246,-0.039646461606025696,-0.078267402946949,0.031159089878201485,0.02336016856133938,0.02073814906179905,-0.04723292216658592,-0.06869995594024658,0.08295375108718872,-0.023968201130628586,-0.0289570651948452,0.07885930687189102,0.0374533049762249,-0.04320570081472397,-0.010691591538488865,0.05741942673921585,-0.024029305204749107,0.0130435386672616,-0.03345498442649841,-0.06451941281557083,-0.029682690277695656,-0.030463576316833496,0.05110243707895279,0.07133696973323822,0.02830182947218418,0.1180112436413765,-0.030625348910689354,0.033197756856679916,0.01689206250011921,-0.010477782227098942,-0.05225028097629547,-0.07350084185600281,0.07425954937934875,-0.04148075357079506,-0.02266095206141472,-0.002641698345541954,0.05620738863945007,-0.04238981753587723,-0.11192815750837326,-0.027513690292835236,0.05266506224870682,-0.01284123957157135,-0.030872847884893417,-0.08755654096603394,-0.015581799671053886,0.027250686660408974,-0.01021171547472477,0.05571197718381882,-0.0029238788411021233,-0.056353501975536346,0.04853960871696472,0.01378594245761633,0.036032214760780334,-0.02324148267507553,-0.05623919889330864,0.02054254338145256,-0.04862119257450104,0.04323679208755493,0.055110715329647064,0.06676819175481796,0.06965935975313187,0.03225468471646309,0.03067544475197792,-0.12989729642868042,0.0006533180712722242,0.1305067092180252,-0.016099680215120316,0.027608415111899376,-0.013457943685352802,-0.07107555121183395,-0.07407207041978836,0.07249387353658676,0.009146112017333508,-0.009161696769297123,-0.09005004167556763,-0.0420006662607193,-0.009878100827336311,0.011321088299155235,-0.055348869413137436,0.02489648200571537,-0.002003343775868416,0.06475535035133362,-0.024482788518071175,0.08230693638324738,0.0367896743118763,0.0028376339469105005,0.005840880796313286,-0.05533849447965622,0.05942501500248909,-0.04979301616549492,0.02796614170074463,-0.06535495817661285,-0.013221349567174911,0.033541686832904816,-0.013058728538453579,0.024568386375904083,-0.0650949478149414,-0.023868927732110023,-0.07695793360471725,0.06530439853668213,-0.07428881525993347,0.06902238726615906,-0.014216835610568523,0.07646720856428146,0.06562497466802597,0.01343816239386797,-0.016040580347180367,-0.028612511232495308,-0.05149717256426811,0.04806797206401825,0.05183706432580948,-0.03247537836432457,0.039509117603302,0.008206048049032688,-0.02783779613673687,0.008850524201989174,-3.354131703407314e-33,0.016713235527276993,-0.04192959517240524,-0.07115654647350311,-0.03336748853325844,-0.01858978159725666,0.01560944877564907,-0.026041029021143913,-0.03486840799450874,0.01889868453145027,0.03690823167562485,-0.0223805233836174,-0.12085219472646713,-0.08766616135835648,-0.094509556889534,-0.08791189640760422,0.02659010700881481,0.00543716037645936,0.024674296379089355,0.00021607101371046156,0.06004347652196884,0.07070942223072052,-0.10869468003511429,0.04932757094502449,0.004915059544146061,-0.10392166674137115,-0.047095078974962234,0.0791260227560997,0.05754859372973442,-0.0697767585515976,0.022807840257883072,-0.05706779658794403,0.024788297712802887,0.05493035539984703,0.04495388641953468,0.008689884096384048,0.048812054097652435,-0.03331757336854935,0.05865895748138428,0.06820312142372131,0.01175118051469326,-0.027201108634471893,-0.017357653006911278,0.0984187051653862,-0.11628225445747375,-0.04735802859067917,-0.05596809834241867,-0.0431722030043602,-0.08619903773069382,0.048267580568790436,0.04880739003419876,0.033314336091279984,-0.028071466833353043,0.02248307690024376,-0.00846340786665678,-0.030657624825835228,0.09597384929656982,-0.007804310880601406,0.03280488774180412,0.06147738918662071,0.07664665579795837,0.058296941220760345,-0.05030059441924095,-0.08985666930675507,-0.03682466596364975,-0.05859445035457611,-0.01770211197435856,0.012874712236225605,-0.08195863664150238,-0.02342987060546875,-0.13345001637935638,-0.05044877529144287,0.08148755133152008,-0.003706795396283269,0.06984937936067581,-0.05797180160880089,0.027714598923921585,0.07965317368507385,-0.011694012209773064,0.07273228466510773,-0.0055813901126384735,0.019092025235295296,-0.004967998713254929,0.009485521353781223,0.05080775171518326,-0.036314330995082855,-0.05959898605942726,0.019766487181186676,-0.08190156519412994,-0.0729798674583435,0.00009257501369575039,0.10487648099660873,-0.012652612291276455,0.09293461591005325,-0.037534136325120926,-0.012136257253587246,-1.4027016131308965e-33,0.019406858831644058,-0.08445775508880615,-0.029985349625349045,0.006864950992166996,-0.013653265312314034,-0.03561847284436226,-0.03459034860134125,0.005776106845587492,-0.06920842081308365,0.028991349041461945,-0.038096845149993896,-0.022655824199318886,0.03240383416414261,0.038262881338596344,0.011964865028858185,0.00574984448030591,0.04376782849431038,-0.017594849690794945,0.06303945183753967,-0.04562005028128624,-0.02374432235956192,-0.0013597566867247224,0.029808418825268745,-0.04468918591737747,0.10070443898439407,-0.03853680565953255,0.06456328183412552,-0.050788380205631256,-0.03107192926108837,-0.009147326461970806,0.003327064448967576,0.005818227306008339,-0.059763144701719284,0.023875463753938675,0.010011594742536545,-0.04349968582391739,0.13854274153709412,-0.10186581313610077,0.028764422982931137,-0.03142330050468445,-0.0016753134550526738,-0.018311193212866783,-0.04071878269314766,0.021317027509212494,-0.019198903813958168,0.02577446959912777,0.07422738522291183,0.09696439653635025,0.020767390727996826,-0.022919801995158195,-0.06404651701450348,0.01731097139418125,0.04544169455766678,0.034253571182489395,0.041709039360284805,-0.04353780299425125,-0.029873032122850418,-0.040570322424173355,0.09060785174369812,-0.012542718090116978,0.035589125007390976,0.004211849998682737,-0.13427746295928955,-0.01769082620739937,0.016919706016778946,0.04169920086860657,-0.0617733933031559,-0.03410454839468002,-0.023821009323000908,0.021200815215706825,-0.011066501960158348,-0.03910151124000549,-0.17808915674686432,-0.04971136525273323,0.04341423511505127,0.011721963062882423,0.027336591854691505,-0.005750797223299742,-0.02913271076977253,-0.05933421850204468,0.05698147043585777,-0.0876007080078125,-0.035812653601169586,-0.04052373021841049,0.012228292413055897,0.012316429987549782,0.03805684298276901,-0.015783490613102913,0.04745863005518913,0.09190978854894638,-0.010681884363293648,-0.07469087839126587,0.09276016801595688,0.022682346403598785,-0.03245798125863075,-4.008183651649233e-8,0.016703946515917778,-0.0051554348319768906,0.019847212359309196,-0.05037341266870499,-0.04194822534918785,-0.004511171951889992,0.02469536103308201,-0.04244118556380272,-0.02770216204226017,0.004862293601036072,0.05273241922259331,-0.01778515987098217,0.027351507917046547,-0.025523461401462555,0.04272739589214325,-0.015696754679083824,0.04454119876027107,0.01348935253918171,-0.017992014065384865,0.02294246107339859,-0.009271218441426754,0.0010465121595188975,0.022823885083198547,-0.046124789863824844,0.015265406109392643,0.0047810133546590805,-0.04825657233595848,0.0008885340066626668,-0.01679748296737671,0.031378231942653656,-0.011292892508208752,0.11207298934459686,-0.07824806123971939,-0.05876253545284271,-0.1164836436510086,-0.0227377749979496,0.025053298100829124,0.07378897815942764,-0.07092951983213425,-0.00525178387761116,0.004090779926627874,0.008198902010917664,-0.008943784050643444,-0.018258551135659218,0.034475136548280716,-0.052962422370910645,-0.013412198051810265,0.01404202077537775,0.0353766605257988,-0.004405278712511063,-0.0653722807765007,0.0014438153011724353,0.06195024028420448,-0.006670653820037842,0.07872193306684494,-0.002500848611816764,0.07319792360067368,-0.009018655866384506,-0.11339392513036728,-0.011256488040089607,0.07512885332107544,0.01406580675393343,0.03404467552900314,-0.11309931427240372]},{"text":"A tear seemed to dim her eye when she saw us, but she quickly recovered herself, and a look of sorrowful affection seemed to attest her utter guiltlessness.","book":"1984","chapter":45,"embedding":[0.0063985856249928474,0.019224977120757103,0.0877821072936058,0.10479109734296799,0.055216796696186066,0.024596214294433594,0.032479435205459595,0.0017641944577917457,0.03600456938147545,-0.04928743466734886,-0.018095893785357475,-0.05102143436670303,-0.04699330776929855,-0.054615821689367294,0.01641158014535904,-0.0024479732383042574,-0.010876769199967384,0.023129800334572792,-0.03993630409240723,0.06746190786361694,0.04529355838894844,0.009357506409287453,-0.005140869412571192,0.0006153201102279127,0.013029352761805058,0.015272360295057297,0.02886050008237362,-0.007627573795616627,0.013946440070867538,0.010149926878511906,-0.061247698962688446,-0.02711126208305359,0.020080003887414932,0.0751640573143959,0.0415274053812027,0.09490916877985,-0.02379884012043476,-0.019294805824756622,-0.030046017840504646,-0.046261340379714966,-0.04114319756627083,0.012574291788041592,-0.0794205293059349,0.016958435997366905,-0.04494886100292206,-0.04321420192718506,0.002166673308238387,0.04633048176765442,0.008711767382919788,-0.0818597823381424,-0.05810517445206642,0.04670478776097298,-0.09437089413404465,-0.07060856372117996,-0.026218459010124207,0.017654119059443474,0.03991664573550224,0.017778929322957993,0.020644886419177055,-0.0030760413501411676,0.026661189272999763,0.04251629486680031,0.08217326551675797,0.025961101055145264,0.006004502065479755,0.0020118614193052053,0.030155839398503304,-0.04624393954873085,0.08351318538188934,0.05068611353635788,-0.028871888294816017,0.0007248760666698217,-0.00031289286562241614,-0.007688773330301046,-0.13003596663475037,-0.014031091704964638,0.12156596779823303,-0.06678404659032822,0.054780468344688416,0.02020837739109993,-0.046154364943504333,0.012688292190432549,0.00643668370321393,0.0019154001493006945,-0.06206882745027542,-0.05142216011881828,0.005282590165734291,-0.11791153252124786,-0.04508267343044281,0.0617191344499588,0.018291763961315155,-0.037038616836071014,-0.07296563684940338,0.013551143929362297,-0.00020776902965735644,-0.03768803924322128,-0.07230024039745331,0.02894112467765808,-0.05599728226661682,0.03414288908243179,-0.024232523515820503,0.12847308814525604,-0.03214908391237259,-0.04302821680903435,-0.04323643445968628,0.01879759319126606,-0.02521239034831524,-0.04464391991496086,-0.03090943954885006,0.055756185203790665,-0.0018498800927773118,-0.03261733427643776,-0.07806428521871567,-0.06692039221525192,0.05612695962190628,0.008900762535631657,-0.06532109528779984,-0.10006054490804672,0.07776432484388351,0.008649042807519436,0.05137394741177559,0.016240118071436882,0.02271351031959057,0.026071492582559586,0.02181868441402912,-0.06395826488733292,0.022380545735359192,-1.5144438306135747e-33,0.08136163651943207,-0.010602216236293316,0.008546027354896069,-0.049405958503484726,-0.003908907994627953,0.03382306545972824,0.0681162104010582,-0.019246235489845276,-0.0470680333673954,-0.015634069219231606,-0.03776974976062775,-0.00948184635490179,0.0011203421745449305,-0.028562040999531746,-0.05639609321951866,0.04544248804450035,-0.009874794632196426,0.00908109825104475,0.07256618142127991,0.05312614142894745,-0.07302533835172653,0.01884949579834938,0.07495073974132538,-0.029409486800432205,-0.07929615676403046,-0.06343218684196472,-0.02044871635735035,0.004349117167294025,-0.0587448924779892,0.02880607172846794,-0.023729171603918076,0.05768536031246185,0.06320130825042725,-0.00887574814260006,0.02720547281205654,0.00013065569510217756,-0.005226077977567911,0.03414127603173256,-0.007767070084810257,0.027682272717356682,-0.07540211826562881,0.013144537806510925,0.03329610824584961,-0.09118013083934784,-0.06184498220682144,-0.018299628049135208,-0.023751340806484222,0.06577753275632858,-0.05060245469212532,-0.012987096793949604,0.03883751109242439,-0.0014964896254241467,0.0698656290769577,-0.013329381123185158,-0.07050983607769012,0.10855765640735626,0.08422255516052246,0.0035337957087904215,0.01467964518815279,0.0202602781355381,0.014818279072642326,-0.07777611166238785,0.006408482789993286,-0.0926213264465332,-0.0012262951349839568,-0.05289138853549957,-0.029790230095386505,-0.05715188756585121,-0.06303837895393372,-0.062448650598526,-0.15480944514274597,0.054374344646930695,0.011683130636811256,0.009544639848172665,-0.050921980291604996,0.00910201482474804,0.07843075692653656,-0.014151952229440212,0.068240687251091,-0.08569587022066116,-0.03745914623141289,0.0026686713099479675,-0.05117831751704216,0.04903104901313782,0.007911025546491146,-0.013896471820771694,-0.028851447626948357,-0.12531030178070068,-0.11429096013307571,0.037927281111478806,0.08088365197181702,0.06867759674787521,0.09319612383842468,-0.1290844827890396,-0.025663280859589577,-2.4539412519544757e-33,0.07384543865919113,-0.0016201816033571959,-0.02080119401216507,0.045191384851932526,-0.001033924869261682,-0.03936569020152092,-0.03626369684934616,0.10147541761398315,0.012574771419167519,0.024082684889435768,0.04649915173649788,-0.07507655769586563,0.05148009955883026,0.06529561430215836,-0.10198768228292465,-0.0023584365844726562,0.10349715501070023,-0.06442606449127197,0.026486776769161224,-0.040984854102134705,-0.022403409704566002,0.1030910387635231,0.06039706990122795,-0.04900152236223221,0.01574050635099411,0.0006980540347285569,0.07369733601808548,-0.11446373909711838,-0.0033999031875282526,-0.07077692449092865,0.11524557322263718,-0.00863271951675415,-0.029317228123545647,0.10942499339580536,0.06423405557870865,0.07320413738489151,-0.005971765145659447,-0.020710382610559464,-0.051938217133283615,-0.07117199152708054,0.0054827178828418255,-0.015017800033092499,0.0014384591486304998,0.03098243847489357,0.0606839582324028,-0.015437762252986431,0.030021291226148605,0.030339159071445465,-0.00023512757616117597,0.06106888875365257,-0.05235857143998146,-0.015248458832502365,-0.028861142694950104,0.045190222561359406,-0.036630984395742416,-0.038294192403554916,0.018685953691601753,0.020004896447062492,0.06870626658201218,-0.04700703173875809,-0.021983927115797997,-0.09990178793668747,-0.06421264261007309,0.0522582046687603,0.007207802031189203,-0.013549316674470901,0.029443401843309402,-0.017376871779561043,-0.030587298795580864,0.01499812863767147,0.03924260661005974,0.03596801310777664,-0.04043577238917351,0.005699764005839825,0.04178573936223984,0.027076877653598785,-0.08619922399520874,-0.04851735755801201,-0.023015378043055534,0.015040489844977856,0.03745635971426964,0.01236147154122591,0.01753942482173443,0.0027070899959653616,-0.05993952974677086,-0.020835768431425095,0.007382330950349569,0.07200023531913757,-0.044305551797151566,-0.003744423622265458,-0.09053743630647659,-0.04459543526172638,0.027547670528292656,-0.06328532099723816,-0.022105831652879715,-3.108447188537866e-8,-0.05091821402311325,0.004591530188918114,-0.06813905388116837,-0.07378164678812027,0.049817610532045364,-0.006169057451188564,0.06345496326684952,0.031215721741318703,-0.12451119720935822,-0.030189326032996178,-0.07039923965930939,0.03437381610274315,-0.026039520278573036,0.05760617181658745,0.011326827108860016,-0.011307185515761375,0.07683923840522766,0.03733452782034874,0.012727427296340466,0.04009709879755974,-0.03656008839607239,0.0020615453831851482,-0.07322940975427628,0.01694375090301037,0.019444836303591728,0.02126920036971569,-0.11448488384485245,-0.011378465220332146,-0.1001473069190979,0.00015832894132472575,0.1275773048400879,0.07207563519477844,0.05577738583087921,0.0012482925085350871,-0.022139200940728188,0.031331755220890045,-0.016917141154408455,0.004691112786531448,0.033693596720695496,0.01989644579589367,0.017696168273687363,0.06334053725004196,0.016242044046521187,0.004550193436443806,0.10357261449098587,-0.025895139202475548,0.1011027991771698,-0.03431403264403343,-0.034055907279253006,0.025722339749336243,-0.027861224487423897,0.05639828369021416,-0.08329865336418152,0.030564026907086372,0.012166239321231842,-0.04903481528162956,0.0229328740388155,0.03372066468000412,-0.06836342066526413,-0.038332581520080566,0.05305993929505348,0.013924205675721169,-0.025754574686288834,-0.07190809398889542]},{"text":"Sometimes she struggled with her tears, but when she was desired to plead, she collected her powers and spoke in an audible although variable voice. “God knows,” she said, “how entirely I am innocent.","book":"1984","chapter":46,"embedding":[-0.00730509776622057,0.06759873777627945,0.06317472457885742,0.06903249025344849,0.003591310465708375,0.02326691895723343,0.13223567605018616,-0.0029039504006505013,-0.022751105949282646,-0.02958185411989689,-0.044418975710868835,-0.06212422996759415,-0.025396935641765594,-0.05879869684576988,0.04527658969163895,0.037890657782554626,-0.02140081860125065,0.06932351738214493,-0.07097414135932922,0.0504101887345314,0.05922902375459671,0.052001774311065674,0.05117002874612808,0.008800432085990906,-0.017591632902622223,0.04085191711783409,-0.0015449451748281717,-0.05278955027461052,0.0863882452249527,-0.007820089347660542,-0.05341983586549759,-0.03113463893532753,0.05519193410873413,0.08345431089401245,-0.02365737035870552,0.0789586678147316,0.04347826912999153,0.05458433926105499,0.0385814867913723,-0.04338696226477623,-0.014864417724311352,-0.04148063063621521,-0.07950282096862793,-0.015382722951471806,-0.03802737593650818,-0.05207426846027374,-0.03651343658566475,0.07612109929323196,0.003440302098169923,-0.15352848172187805,-0.027671514078974724,-0.016708873212337494,-0.04807135462760925,-0.040263500064611435,-0.043749693781137466,0.03406449779868126,0.028510475531220436,0.05525197833776474,0.03388647362589836,0.00971867423504591,0.021166589111089706,-0.03996725752949715,0.04504609480500221,0.06183972582221031,0.012842166237533092,0.024224989116191864,0.04484407603740692,0.012613635510206223,-0.037468209862709045,0.03528847545385361,0.012169108726084232,0.05267488583922386,0.01417957991361618,-0.033577095717191696,-0.06772147119045258,-0.03991609066724777,0.09915473312139511,-0.07002443820238113,0.06127699464559555,0.12579505145549774,-0.06085089594125748,-0.07636629790067673,-0.004074764437973499,0.04794856905937195,-0.015006977133452892,-0.09667763859033585,0.00770879490301013,-0.07388315349817276,0.0031746558379381895,-0.012607569806277752,0.005091903731226921,-0.03338193893432617,-0.027245324105024338,0.03201011195778847,0.1209048479795456,-0.005882809869945049,-0.0671931579709053,-0.07211481034755707,-0.03126732259988785,0.010164191015064716,-0.029814064502716064,0.05989520996809006,0.0030014028307050467,-0.08428633958101273,-0.02255997806787491,-0.046685926616191864,-0.03622361645102501,-0.02803152985870838,-0.03564557805657387,0.03562968224287033,0.020882856100797653,-0.04043038189411163,0.02566707134246826,-0.04014907404780388,0.07806385308504105,0.028541969135403633,-0.025553647428750992,-0.045121341943740845,-0.07269646972417831,0.029189210385084152,0.031149847432971,0.055617962032556534,-0.011531642638146877,0.15601231157779694,-0.007475414779037237,-0.022539950907230377,-0.015574327670037746,-2.6363388532807314e-33,0.037191104143857956,0.024448903277516365,0.03269035741686821,0.007471584714949131,0.009027550928294659,0.037898384034633636,-0.0012617921456694603,-0.07485871762037277,0.041026584804058075,0.05406481772661209,-0.05502251535654068,-0.04026087000966072,-0.0515705943107605,-0.09433017671108246,-0.053692422807216644,0.05645350366830826,-0.08588353544473648,-0.01572509855031967,0.01868046261370182,0.09475372731685638,0.09039756655693054,0.061726152896881104,0.03847181797027588,-0.016950657591223717,-0.02882283367216587,-0.045520830899477005,0.056698769330978394,0.005305927246809006,0.010896357707679272,0.028831953182816505,-0.08297337591648102,-0.0028436840511858463,0.09362300485372543,0.02314225398004055,0.03659586235880852,0.025583846494555473,-0.045179761946201324,0.01828928291797638,0.03483831137418747,0.007536779157817364,-0.05628759041428566,-0.006063522771000862,0.0948895663022995,-0.1272687315940857,-0.09765414148569107,-0.06268028169870377,-0.0594194158911705,-0.03551042824983597,0.019266363233327866,0.06812914460897446,-0.0225206445902586,0.02420378103852272,-0.015577510930597782,-0.013728083111345768,0.06446503102779388,0.06601069122552872,0.04055019095540047,-0.01131158322095871,0.047654807567596436,0.09881636500358582,-0.04686940088868141,-0.05297261103987694,-0.020566752180457115,-0.08132161945104599,0.00558270001783967,-0.057896558195352554,-0.045662280172109604,-0.04907044395804405,-0.022222723811864853,-0.14155088365077972,-0.08826713263988495,-0.003969619981944561,-0.023490941151976585,-0.0033059557899832726,-0.09920842200517654,-0.003226954722777009,0.05811942741274834,0.005782265681773424,0.020558614283800125,-0.03855160251259804,-0.005396551918238401,0.0027400923427194357,0.021111031994223595,0.10453043133020401,0.04922007769346237,-0.061075109988451004,-0.02968083694577217,-0.10297476500272751,-0.08374781906604767,0.024390019476413727,0.08842909336090088,0.004310273565351963,0.035528142005205154,-0.13531732559204102,-0.09639299660921097,-2.022656231728617e-33,0.025584785267710686,0.01872863993048668,-0.03282812982797623,0.1313921958208084,0.01875368505716324,-0.008097229525446892,-0.06078816577792168,0.07387246191501617,0.05485779419541359,-0.03619531914591789,0.01067280862480402,-0.017383050173521042,0.01890427991747856,-0.029590487480163574,-0.005944850388914347,0.03919461742043495,0.044515080749988556,0.03772275149822235,0.03653949499130249,-0.02217152714729309,-0.08625025302171707,0.030644100159406662,0.05900615453720093,-0.03248335048556328,0.025980409234762192,-0.04399731755256653,0.01094509195536375,-0.07196670770645142,0.02922028675675392,0.016561118885874748,0.03997425362467766,-0.009752807207405567,-0.07910416275262833,0.055337078869342804,-0.006344170775264502,-0.008635283447802067,0.08101064711809158,-0.06283729523420334,0.007796230725944042,-0.0688006579875946,0.0010919573251158,-0.017260495573282242,-0.0313919261097908,-0.031412698328495026,-0.01897541806101799,-0.051162008196115494,0.04125930741429329,0.06784618645906448,0.052209559828042984,-0.043333493173122406,-0.07648230344057083,-0.03505287319421768,0.045186690986156464,0.06680583208799362,-0.021494679152965546,-0.09764187037944794,0.01969894766807556,0.03486362472176552,0.06259237229824066,-0.06834742426872253,0.03363434597849846,-0.020134596154093742,-0.11257196962833405,-0.00893518514931202,-0.029798252508044243,0.019092658534646034,-0.018896009773015976,-0.04629676789045334,-0.04374885559082031,0.019186900928616524,-0.0115465447306633,0.00005122406219015829,-0.07710674405097961,-0.017468461766839027,0.008744063787162304,0.0050033340230584145,-0.05484367534518242,-0.11563020199537277,-0.09750233590602875,-0.07931322604417801,0.09286721050739288,-0.012450889684259892,-0.01921536959707737,-0.010522537864744663,-0.0015035861870273948,0.018245050683617592,-0.008340936154127121,-0.011010990478098392,-0.014990870840847492,0.06082328408956528,-0.04999292269349098,-0.01961091347038746,0.055749282240867615,-0.023567773401737213,-0.000915643060579896,-3.628388967058527e-8,-0.055298857390880585,0.03600336238741875,0.0037648077122867107,-0.10793764144182205,0.05701490119099617,0.05334605649113655,-0.0030980436131358147,-0.024455007165670395,-0.028009213507175446,-0.051094263792037964,-0.017447076737880707,-0.033829640597105026,0.006300352979451418,-0.02497568354010582,0.035864681005477905,0.04027769714593887,0.010511509142816067,0.010653763078153133,0.03849877789616585,-0.013584225438535213,-0.0034576577600091696,-0.022704485803842545,0.01647593080997467,-0.03514389321208,0.015770362690091133,0.01924799755215645,-0.05198000371456146,-0.014130706898868084,-0.07435902208089828,0.01661401055753231,0.03496420010924339,0.04791984334588051,-0.014588253572583199,-0.032966356724500656,-0.08138018846511841,0.08406005054712296,0.031286027282476425,0.005782333202660084,-0.01770475134253502,-0.005587474908679724,0.01924595795571804,0.07172516733407974,0.03736747428774834,0.012684441171586514,0.004191538784652948,0.01258917711675167,0.06889807432889938,-0.06766252964735031,0.04461810365319252,0.07303554564714432,-0.005586720071732998,0.10697987675666809,0.015735454857349396,0.005255091469734907,0.05331137776374817,0.07077168673276901,0.03504684567451477,0.0275528933852911,-0.022453686222434044,-0.002197335474193096,0.013623503968119621,0.05612621456384659,-0.010691238567233086,-0.098751962184906]},{"text":"I know of no opportunity afforded him for so doing; or, if I had, why should he have stolen the jewel, to part with it again so soon? “I commit my cause to the justice of my judges, yet I see no room for hope.","book":"1984","chapter":46,"embedding":[0.019398685544729233,0.15006142854690552,0.019687246531248093,-0.043728653341531754,-0.04323122650384903,-0.005467345006763935,0.08764225989580154,0.06603239476680756,0.04588732123374939,-0.026706824079155922,0.015587711706757545,0.0858762338757515,0.02502382919192314,-0.09299490600824356,0.00016122371016535908,0.020309317857027054,0.026838814839720726,0.012647392228245735,-0.07713360339403152,0.013013559393584728,0.017734050750732422,0.011876040138304234,0.037304289638996124,-0.03158442676067352,0.0048617166467010975,-0.00593557907268405,-0.05889025330543518,0.054375458508729935,-0.02171310968697071,-0.021393345668911934,0.014212450943887234,-0.008101281709969044,0.013379203155636787,0.0674138069152832,-0.032059196382761,-0.056695081293582916,-0.03437751159071922,0.03437173739075661,-0.040888987481594086,-0.045761603862047195,0.022700529545545578,-0.011627478525042534,-0.00613628514111042,0.08968604356050491,-0.03439741209149361,-0.06673043221235275,0.04281913861632347,-0.06883665174245834,0.00047841781633906066,-0.0413392148911953,-0.013689965941011906,0.037671223282814026,0.024588841944932938,-0.0796404704451561,-0.018496904522180557,0.10083679854869843,0.07284906506538391,0.040346212685108185,0.04928862303495407,0.018889162689447403,0.024502282962203026,0.016107089817523956,0.018198201432824135,0.01270186435431242,0.0066312989220023155,-0.025470344349741936,0.041531361639499664,-0.04048104211688042,0.04397227615118027,0.0668095126748085,0.14429810643196106,-0.004360484424978495,-0.0025926344096660614,-0.04612187668681145,-0.09386274963617325,-0.012649142183363438,0.03716953098773956,0.01602534018456936,0.015773991122841835,0.008497681468725204,-0.05064275860786438,-0.01744445040822029,-0.02903294749557972,0.010722685605287552,-0.023982254788279533,-0.047093700617551804,-0.0257679745554924,-0.06445351243019104,0.03534339368343353,-0.04178980365395546,0.021068092435598373,-0.04309076815843582,-0.0006262289825826883,-0.0745716467499733,-0.07157458364963531,0.013177702203392982,0.01604466140270233,0.03039921075105667,-0.03974657133221626,0.034866008907556534,0.05880584940314293,0.008283584378659725,0.005058618262410164,-0.0370919331908226,0.04115119203925133,-0.022608410567045212,0.0111985569819808,0.031955473124980927,0.006179982330650091,-0.05099373310804367,0.027600746601819992,-0.002845725743100047,0.1106029748916626,0.025501782074570656,-0.010385172441601753,0.10443586111068726,-0.09093314409255981,0.06179659441113472,-0.02667156606912613,0.07310419529676437,-0.036679886281490326,0.08368202298879623,-0.06511679291725159,0.13306210935115814,-0.12436015158891678,-0.02567376382648945,-0.01854465901851654,-1.966942023932464e-33,0.026244202628731728,-0.03177763149142265,-0.0018089218065142632,-0.11403142660856247,-0.009173654019832611,-0.011735890060663223,-0.01824062690138817,-0.07266081124544144,0.020064277574419975,-0.023594148457050323,0.0898037701845169,-0.026100071147084236,-0.027022648602724075,-0.06469906121492386,-0.06621700525283813,0.05217723920941353,-0.02107713371515274,-0.06554616987705231,0.07374433428049088,0.023321179673075676,-0.014130010269582272,-0.052568379789590836,0.018709821626544,0.07245528697967529,-0.10683992505073547,0.043457113206386566,0.03645741567015648,-0.043545447289943695,0.05812998116016388,0.019215021282434464,-0.010846750810742378,0.08284200727939606,0.12991532683372498,0.06479199230670929,0.056619226932525635,0.018168732523918152,-0.01988871954381466,0.02387714385986328,-0.004491983912885189,-0.04729606211185455,0.0067227426916360855,-0.007989615201950073,0.03973669558763504,-0.0048784962855279446,-0.02362021990120411,-0.09089948982000351,-0.07238438725471497,0.03482924401760101,-0.009818957187235355,0.030347159132361412,0.06420747935771942,-0.0015998235903680325,0.11446388065814972,0.016011351719498634,-0.05107487365603447,0.04587422311306,-0.025743255391716957,0.011231758631765842,0.1053871288895607,0.022272294387221336,-0.051096707582473755,-0.0028431278187781572,-0.013629473745822906,0.06464127451181412,-0.04741722717881203,0.027765091508626938,-0.017197415232658386,-0.0166301392018795,-0.08516910672187805,-0.023467818275094032,-0.04262138903141022,0.03575267270207405,-0.12294641137123108,-0.017349276691675186,-0.046365924179553986,-0.027529524639248848,0.00956618320196867,-0.0048659564927220345,-0.022292660549283028,-0.10041584819555283,-0.027535175904631615,0.01624314673244953,-0.013838332146406174,-0.02124667726457119,0.020833484828472137,-0.06735566258430481,0.03271055966615677,-0.11295811086893082,0.03284797444939613,0.05457943305373192,0.06622405350208282,-0.053426072001457214,-0.07771860063076019,-0.043271902948617935,0.017603205516934395,6.475521150275955e-35,0.03593948483467102,-0.08848725259304047,0.08319400995969772,0.010905241593718529,0.1170465424656868,-0.053631775081157684,-0.16783097386360168,-0.0742364451289177,-0.05560818687081337,-0.005910838022828102,-0.06073855981230736,0.023600585758686066,0.05893199145793915,-0.014508407562971115,-0.035777270793914795,-0.019001252949237823,0.032304465770721436,0.008189147338271141,-0.014824092388153076,0.03311587870121002,0.058919623494148254,0.05896172672510147,0.014458117075264454,0.02748738043010235,-0.1626436710357666,-0.0028555532917380333,0.0023646175395697355,-0.07514318823814392,-0.059312909841537476,-0.044208526611328125,-0.03742816299200058,-0.028470132499933243,-0.048605531454086304,0.035862479358911514,0.04946760833263397,-0.029340380802750587,0.09520440548658371,-0.014337689615786076,-0.01351953949779272,0.030769284814596176,-0.10374017059803009,-0.04911079257726669,0.0006426790496334434,-0.00376208801753819,0.02638067491352558,-0.0007808691589161754,0.04639652743935585,0.08737140893936157,0.07838266342878342,-0.02273447997868061,-0.018408574163913727,0.03742684796452522,0.046363186091184616,0.02852947637438774,-0.0001421206397935748,-0.0038733230903744698,0.022002413868904114,-0.012506132945418358,0.05077190324664116,0.02301488071680069,-0.016755830496549606,0.0008157533593475819,0.03160726651549339,-0.02585526555776596,0.04157811403274536,0.04952993616461754,0.033395394682884216,-0.023320412263274193,-0.09677864611148834,0.021232586354017258,0.015867870301008224,-0.0051158941350877285,0.01897737756371498,0.030671212822198868,0.07520905882120132,0.04919849708676338,-0.08532711863517761,0.05514589324593544,-0.09145334362983704,-0.02874082326889038,0.04353548213839531,-0.08830039203166962,0.038473356515169144,-0.044184163212776184,0.04401536285877228,0.01476206723600626,0.00857638381421566,-0.05372142791748047,-0.026467284187674522,-0.008450709283351898,0.005217520520091057,-0.043299563229084015,0.07615014910697937,0.009424776770174503,0.07043750584125519,-3.3424043976992834e-8,-0.010398657992482185,0.08944393694400787,-0.08158335089683533,-0.010442081838846207,0.028254227712750435,0.024177294224500656,-0.021827107295393944,-0.048056114464998245,-0.029678748920559883,-0.011827191337943077,0.07735033333301544,-0.021380411460995674,-0.049982767552137375,-0.013454340398311615,-0.02030951902270317,-0.0781705379486084,0.04751976579427719,-0.09381015598773956,-0.009167532436549664,-0.011990963481366634,0.010876689106225967,0.012272821739315987,0.0005149401258677244,-0.09753360599279404,-0.04941694810986519,-0.030217356979846954,0.0027645982336252928,0.012217720970511436,-0.023278627544641495,0.04067399725317955,0.02265850640833378,-0.04309585317969322,0.0028170370496809483,0.026902632787823677,-0.03571181744337082,-0.020632928237318993,-0.018143678084015846,0.032934051007032394,0.08991079777479172,-0.05742054432630539,0.05858049541711807,0.05730603262782097,-0.03833384811878204,0.03130469471216202,-0.007715548854321241,0.021226368844509125,0.06019752472639084,0.11167151480913162,0.009298188611865044,0.04980924353003502,-0.03475182130932808,-0.04885031655430794,-0.00694275414571166,-0.05381133779883385,0.054456908255815506,0.052795443683862686,0.12024027109146118,0.032282695174217224,-0.09357291460037231,-0.036893557757139206,0.016038214787840843,-0.06042073667049408,-0.06217252463102341,-0.03409469127655029]},{"text":"She herself wept as Elizabeth spoke, but she did not answer.","book":"1984","chapter":47,"embedding":[0.029060836881399155,0.0571010485291481,0.0841679722070694,0.06303849071264267,0.018357964232563972,0.005791414994746447,0.033137694001197815,-0.03224389627575874,-0.01624036394059658,-0.07888501137495041,-0.0868280827999115,-0.05627622827887535,-0.011097163893282413,-0.09381017833948135,-0.032471999526023865,0.04180029779672623,-0.042070645838975906,0.01703459955751896,-0.04750603064894676,0.05690044164657593,0.06794822961091995,0.06723254173994064,0.052654821425676346,0.06973614543676376,0.06456533819437027,-0.042978812009096146,-0.04433055594563484,-0.025596212595701218,0.03505626693367958,0.03282204270362854,-0.03729066252708435,-0.00688945222645998,0.03262094780802727,0.05041487142443657,0.10276417434215546,0.015104563906788826,0.04372869059443474,0.045012783259153366,-0.006899344734847546,-0.03742367774248123,-0.04413525015115738,-0.012988545000553131,-0.07378380745649338,-0.00813773088157177,-0.01742912270128727,-0.04165121167898178,-0.06248291954398155,0.029632078483700752,-0.006564234383404255,-0.07881228625774384,-0.06493628770112991,-0.016331294551491737,-0.09438163787126541,-0.14106908440589905,-0.04836034029722214,0.0196174718439579,0.017894698306918144,0.017412405461072922,0.08997520804405212,-0.051557768136262894,0.05158901587128639,0.02613266184926033,0.028491800650954247,0.08719819039106369,0.02583385445177555,0.026106921955943108,0.05114509537816048,-0.0596124641597271,-0.04165535420179367,0.05203395336866379,-0.05272413045167923,-0.022465214133262634,0.08685224503278732,-0.04380373656749725,-0.03462984412908554,0.017366766929626465,0.07188154011964798,-0.04058551415801048,0.0007828138186596334,0.09727732092142105,-0.11274178326129913,-0.029617510735988617,0.00624279398471117,0.07691806554794312,-0.016441842541098595,-0.07660330086946487,0.014823263511061668,-0.05643380433320999,-0.039451465010643005,-0.01922638528048992,-0.07478227466344833,-0.1332627832889557,-0.008877941407263279,0.10863759368658066,0.08283400535583496,0.0468699187040329,-0.025933021679520607,-0.01208886131644249,-0.06487995386123657,-0.014609355479478836,-0.0252844151109457,0.08133948594331741,-0.024157892912626266,0.015723271295428276,-0.10783234238624573,0.004992816597223282,-0.04301983118057251,-0.06706330180168152,-0.03301716223359108,0.002830005018040538,-0.023616040125489235,-0.035890065133571625,0.008742808364331722,-0.02991492673754692,0.018036803230643272,-0.015024679712951183,0.04104689881205559,-0.005118383560329676,-0.0088591817766428,0.08314938098192215,0.006440847646445036,0.05599264055490494,0.04867560788989067,0.014478981494903564,-0.008043769747018814,0.0076841190457344055,0.02236052043735981,-1.7047897022968084e-33,0.04286884516477585,0.01069611869752407,0.035805594176054,-0.027404021471738815,0.024011187255382538,0.07813941687345505,0.02301737666130066,0.0010946501279249787,0.11689930409193039,-0.0007120713707990944,-0.08532612025737762,-0.0717177614569664,0.0436197929084301,-0.19325391948223114,-0.014553993009030819,0.0886775478720665,0.02097102254629135,0.03955908492207527,0.0003279788652434945,0.023493194952607155,0.05531791225075722,0.05952538922429085,0.04250103235244751,0.0537320040166378,-0.03854089975357056,-0.04072786495089531,0.06384481489658356,-0.035375505685806274,0.012628554366528988,0.03297442942857742,-0.03575711324810982,-0.04139849543571472,0.1041966900229454,-0.02171149104833603,0.07627160102128983,0.010190518572926521,-0.0037323914002627134,-0.01794695109128952,-0.03975494205951691,0.028322411701083183,-0.0752798318862915,-0.025762533769011497,0.09513653814792633,-0.05773446708917618,-0.11765676736831665,-0.09246953576803207,0.04241480678319931,0.004629363305866718,-0.012797191739082336,0.002981810597702861,0.03453458845615387,0.03478679060935974,-0.010863767936825752,-0.0012681097723543644,0.08530019968748093,0.0053578526712954044,0.04747600480914116,-0.02104361727833748,-0.0038174940273165703,0.020248698070645332,0.03329526260495186,-0.07507748901844025,0.042380526661872864,-0.024655107408761978,-0.02588685043156147,0.0437014102935791,-0.0770077034831047,-0.05914408341050148,-0.0241362527012825,-0.06862493604421616,-0.06649594753980637,0.029859505593776703,0.019628090783953667,0.03636394068598747,-0.014097251929342747,0.049967020750045776,-0.017410555854439735,-0.0273884367197752,0.054650239646434784,-0.07290194183588028,-0.011395571753382683,-0.056270305067300797,-0.07252135127782822,0.050878386944532394,0.06704168766736984,-0.07277322560548782,-0.021122150123119354,0.031520865857601166,0.0020431955344974995,-0.04370007663965225,0.04515528678894043,-0.03695715218782425,-0.0012285822303965688,-0.12751543521881104,-0.033539190888404846,-1.4262144388832193e-33,0.011906112544238567,0.04102270305156708,-0.0536511167883873,0.02158149890601635,-0.01171812228858471,0.015114787966012955,-0.02885483205318451,0.02932574972510338,0.09855330735445023,-0.038543425500392914,0.06158900260925293,-0.06502792984247208,0.019480055198073387,0.04519215598702431,-0.09126545488834381,0.07694713771343231,0.055748529732227325,-0.0405876487493515,-0.0013986064586788416,-0.006200697273015976,-0.08991020172834396,-0.029302382841706276,-0.031089017167687416,-0.06337961554527283,0.022129351273179054,0.010688161477446556,-0.0019359198631718755,-0.03961353003978729,0.04803144186735153,-0.04850045591592789,0.06070568040013313,0.05984782055020332,-0.10102345049381256,0.0009367718012072146,-0.001045762561261654,0.09456096589565277,-0.009405779652297497,-0.05314779654145241,0.007720110937952995,-0.025125857442617416,0.06496287882328033,-0.027720551937818527,0.004573069978505373,0.024284392595291138,0.030552050098776817,0.01231150608509779,-0.01072445698082447,-0.009339269250631332,0.09408381581306458,0.02432522177696228,-0.06283003836870193,-0.04492207616567612,0.08063552528619766,0.07619373500347137,-0.012200228869915009,-0.022160576656460762,-0.00324492366053164,0.0394873209297657,-0.0010431803530082107,-0.07154116034507751,0.048550255596637726,-0.01983768679201603,-0.03801398351788521,-0.02057669125497341,0.021817002445459366,0.06523775309324265,0.00756455585360527,0.04116186499595642,0.042010027915239334,-0.014247613959014416,0.04606672376394272,-0.023032737895846367,0.061882831156253815,0.008856392465531826,0.026189180091023445,0.0616917759180069,-0.09425278753042221,-0.07354883849620819,-0.041343674063682556,-0.08016452938318253,0.05264802277088165,0.030735863372683525,-0.04564904794096947,0.02802346460521221,0.015404622070491314,-0.04848245531320572,0.03819972276687622,0.03496691584587097,-0.06058090925216675,0.013773748651146889,0.018242264166474342,-0.027276355773210526,0.09133952111005783,-0.012396685779094696,0.10109099000692368,-1.8693558700988433e-8,-0.014336500316858292,0.06840324401855469,-0.007907133549451828,-0.08252855390310287,0.06514669209718704,0.009825928136706352,-0.003104583127424121,0.028240300714969635,0.002554480452090502,0.003542802296578884,-0.06879335641860962,-0.049313049763441086,-0.01590205915272236,0.005273196846246719,0.04609127715229988,0.028625018894672394,0.03901608660817146,-0.07811527699232101,0.06604380160570145,-0.06575395166873932,0.006702212151139975,-0.03732922673225403,-0.04600426182150841,0.019651761278510094,0.00790290255099535,-0.0059174648486077785,-0.03312046080827713,-0.023809026926755905,-0.10090018063783646,-0.0034233899787068367,0.08203008770942688,0.05248020961880684,0.00671960087493062,-0.034064315259456635,-0.15499247610569,0.04556337371468544,0.10993707180023193,0.04616439342498779,-0.027038903906941414,-0.015529121272265911,-0.007294731214642525,0.08367256820201874,0.011996733024716377,-0.023128457367420197,0.07034505158662796,-0.017784833908081055,0.011709933169186115,-0.041571587324142456,-0.07503321766853333,-0.03955608978867531,-0.0013343550963327289,0.029015444219112396,-0.02372460998594761,0.06117613986134529,0.0032222100999206305,-0.007615406531840563,0.055105675011873245,0.03385043144226074,-0.01654409058392048,0.02546212077140808,-0.009689087979495525,-0.03910793736577034,-0.03464338555932045,-0.034880273044109344]},{"text":"I had before experienced sensations of horror, and I have endeavoured to bestow upon them adequate expressions, but words cannot convey an idea of the heart-sickening despair that I then endured.","book":"1984","chapter":47,"embedding":[0.04002869129180908,0.045869164168834686,0.03762490302324295,0.09782633930444717,0.021064458414912224,0.00014806784747634083,0.006203955505043268,0.024935448542237282,0.04062972962856293,-0.14811347424983978,-0.020300939679145813,-0.022415926679968834,0.08023548871278763,-0.008703653700649738,-0.006834349595010281,0.04186650738120079,0.023232920095324516,0.04109877720475197,0.02014205977320671,0.0918935090303421,0.009107326157391071,0.05797538906335831,-0.03196142613887787,-0.030102059245109558,-0.002774153370410204,0.05641460046172142,-0.0002575631660874933,-0.004568028729408979,-0.04045506566762924,0.03492172434926033,-0.027511954307556152,-0.07032670080661774,0.017732324078679085,0.06384844332933426,0.047859422862529755,0.06474568694829941,-0.021432803943753242,-0.007578765507787466,-0.035438172519207,-0.032258886843919754,-0.028288589790463448,0.05875558406114578,0.03217368200421333,-0.008290555328130722,0.0044376845471560955,-0.09103169292211533,-0.05413733795285225,-0.004636556841433048,0.022880058735609055,-0.0692577064037323,-0.050837114453315735,-0.045213717967271805,-0.03362114727497101,-0.017132757231593132,-0.07711161673069,-0.014606841839849949,-0.014184826985001564,-0.04769425466656685,-0.06369126588106155,-0.016295386478304863,0.009430913254618645,0.0031853497494012117,0.026944605633616447,0.027185942977666855,-0.03145330771803856,0.005199353210628033,0.05240979045629501,-0.01457680482417345,0.04485064372420311,0.11510683596134186,-0.04056466370820999,-0.046337276697158813,0.043251391500234604,-0.01375209353864193,-0.07703535258769989,0.05943579599261284,0.04047698900103569,-0.11937128007411957,-0.030191695317626,0.007492766249924898,-0.007774107623845339,0.06826893240213394,0.013601169921457767,-0.0322008915245533,-0.034001853317022324,-0.00440193573012948,0.03466314449906349,-0.04060813784599304,-0.02096470445394516,0.06331485509872437,-0.007765054237097502,-0.1467825472354889,-0.07586423307657242,0.041873883455991745,0.07501471787691116,-0.05757531896233559,-0.06834302842617035,0.033927638083696365,-0.05250639095902443,0.018857935443520546,-0.02048509754240513,-0.029430657625198364,-0.06900956481695175,-0.0329454243183136,0.011793860234320164,-0.013609659858047962,-0.11483842879533768,-0.008988196961581707,-0.028016449883580208,-0.04520811885595322,-0.05983740836381912,-0.02869967184960842,-0.006476003210991621,-0.061501339077949524,0.015500462613999844,0.07191735506057739,-0.06841428577899933,-0.07046093791723251,0.05112991854548454,0.1202261745929718,0.08763361722230911,0.008527224883437157,0.04867933318018913,-0.010983971878886223,-0.02813885547220707,0.058615557849407196,-0.023721348494291306,-3.6478386096873592e-34,0.06321112811565399,0.031190935522317886,0.0354364849627018,0.009928948245942593,0.03901407867670059,-0.06652995944023132,-0.06707809865474701,-0.05535627529025078,0.04466917738318443,0.020764010027050972,0.014166535809636116,0.046289991587400436,0.053363386541604996,-0.06352578103542328,-0.12986059486865997,-0.05068651959300041,-0.0752391666173935,0.03446631133556366,0.0715257078409195,-0.01400519534945488,-0.10172376036643982,0.04190240427851677,0.04280117154121399,-0.06211455911397934,-0.05155248939990997,-0.018878359347581863,-0.03528910502791405,0.021490825340151787,0.044020261615514755,0.01711658574640751,-0.003298010677099228,0.020768215879797935,0.017781592905521393,-0.04787656292319298,-0.01264869887381792,0.05574190989136696,-0.015344767831265926,0.0533200241625309,0.04204503074288368,-0.018339106813073158,-0.005276559852063656,0.009161560796201229,-0.0558440126478672,-0.08331626653671265,0.03748305141925812,0.08242640644311905,0.03208636865019798,0.013389404863119125,-0.13026148080825806,-0.0018859384581446648,0.005172707140445709,-0.012916741892695427,0.013708636164665222,0.049266211688518524,-0.001193810487166047,0.009583831764757633,0.06679454445838928,-0.010706783272325993,0.08264146000146866,-0.08598814159631729,-0.00012371284537948668,0.011948542669415474,0.041817277669906616,-0.08977553248405457,-0.017269408330321312,-0.08794569969177246,-0.02303779311478138,-0.08948986232280731,-0.018504323437809944,-0.04838582128286362,-0.1026848629117012,-0.009495836682617664,0.0047590164467692375,-0.03578275442123413,-0.009802316315472126,-0.06051396578550339,-0.0069905174896121025,-0.014395463280379772,-0.03203021362423897,-0.028099611401557922,-0.052874911576509476,-0.04299355670809746,0.030326372012495995,0.04707154259085655,0.07110950350761414,0.028459375724196434,-0.005536076612770557,-0.07622311264276505,-0.08381588757038116,0.038763176649808884,0.000036099118005950004,0.038435664027929306,0.08019901812076569,-0.10387986153364182,-0.03498103469610214,-1.3910988410398074e-33,0.00875603687018156,-0.04003910720348358,-0.032197609543800354,0.05551329627633095,-0.038554597645998,-0.08925739675760269,-0.0361662283539772,0.05522531270980835,0.027291979640722275,0.008177063427865505,0.043071821331977844,0.0644039437174797,0.04607547074556351,0.05020442232489586,-0.04166559502482414,-0.03511666879057884,0.016591321676969528,0.029053309932351112,0.0409199558198452,-0.009318203665316105,-0.05812649428844452,0.05987114459276199,-0.015228703618049622,-0.037857536226511,0.017346234992146492,0.05539873242378235,0.1462724804878235,-0.040688980370759964,-0.02638634480535984,-0.13063594698905945,0.12119976431131363,0.04068070650100708,0.0027531012892723083,0.03840978816151619,-0.0001196291486849077,0.08139795809984207,0.03442467376589775,0.00031094218138605356,-0.0762956291437149,-0.05602926388382912,-0.011466827243566513,0.03198807314038277,0.03519202768802643,0.058541182428598404,-0.015169120393693447,-0.032913606613874435,0.08068171888589859,-0.04953429847955704,0.009851455688476562,0.04254123196005821,-0.0730196014046669,0.03274410963058472,-0.03089415840804577,-0.0073347389698028564,-0.0430576466023922,-0.05122450739145279,0.023578202351927757,-0.0887271985411644,-0.011360459960997105,-0.0015131356194615364,-0.021001949906349182,-0.017008701339364052,-0.05462130904197693,0.007718130946159363,0.06475518643856049,0.025247538462281227,-0.01173324603587389,0.009884475730359554,-0.06868325173854828,0.06439651548862457,0.030929559841752052,0.0679386630654335,-0.09863052517175674,0.05726497247815132,0.04185080528259277,0.00277530774474144,-0.04303478077054024,0.019034797325730324,-0.050008922815322876,-0.0012945809867233038,0.02730552852153778,-0.023767007514834404,0.041086915880441666,0.02819131128489971,-0.00964372232556343,0.036283496767282486,-0.011917158961296082,0.05951754376292229,-0.05035771057009697,-0.013735204003751278,-0.11326027661561966,0.006275459658354521,0.006880712695419788,-0.06665290147066116,0.020394615828990936,-3.4457219300065844e-8,-0.06022018939256668,-0.057213734835386276,-0.015263198874890804,-0.06663213670253754,0.027202356606721878,-0.05230443924665451,0.05378568917512894,0.027872541919350624,-0.08443783223628998,-0.013403953053057194,-0.04148438200354576,0.05865403637290001,-0.029852090403437614,0.016138533130288124,0.05719343200325966,-0.04091011360287666,0.046058740466833115,0.02670435421168804,-0.00239479704760015,-0.051434557884931564,0.04547884687781334,0.09135548770427704,0.022390402853488922,-0.05947320908308029,0.06368446350097656,0.0032375094015151262,-0.0063153537921607494,-0.11724772304296494,-0.06513156741857529,-0.00472708186134696,0.03852176293730736,0.09058372676372528,0.0595984123647213,0.02005775459110737,-0.011259016580879688,0.03152566775679588,0.060227081179618835,-0.032704733312129974,0.03529313951730728,0.023911472409963608,0.0703231543302536,0.0070689646527171135,0.0333826057612896,-0.0341423898935318,-0.011005017906427383,-0.06377345323562622,0.07955316454172134,-0.03326547145843506,0.030622394755482674,0.04897729307413101,0.04737722873687744,0.11297450214624405,-0.012259646318852901,0.13000698387622833,0.057553280144929886,-0.0453893207013607,-0.0004953080206178129,0.09026898443698883,-0.056384507566690445,0.036715004593133926,0.1079993024468422,0.04336664453148842,-0.03521617129445076,0.0064467936754226685]},{"text":"My cousin wept also. “Oh, Justine!” said she. “Why did you rob me of my last consolation?","book":"1984","chapter":48,"embedding":[-0.04653344675898552,0.10029716044664383,0.11739915609359741,-0.04030165821313858,0.01907649077475071,0.03130955249071121,0.08387310802936554,0.003213705727830529,0.01776127889752388,-0.11369156092405319,0.01927422732114792,-0.021557055413722992,0.08158055692911148,-0.026013853028416634,-0.028567688539624214,-0.02467428520321846,-0.01018973346799612,0.06726065278053284,-0.04341217502951622,0.060154709964990616,0.040870316326618195,0.08767583221197128,0.006019514054059982,0.02380181849002838,0.03710223734378815,0.021589089184999466,-0.04728758707642555,-0.01513168215751648,0.001346795354038477,0.04344358295202255,-0.08885998278856277,-0.026023365557193756,0.005326844751834869,0.034471191465854645,0.040580540895462036,0.003340828698128462,-0.031269948929548264,0.009172830730676651,0.014254308305680752,-0.028636490926146507,-0.016507234424352646,-0.0437793955206871,0.030293570831418037,0.05271231010556221,0.02153461053967476,-0.0937289223074913,0.05097436532378197,0.023438576608896255,0.05344856157898903,-0.0016472985735163093,-0.05181405320763588,0.023518577218055725,-0.002795757260173559,-0.10316918045282364,-0.02954339236021042,-0.011550669558346272,0.06935606151819229,0.07591404020786285,0.03453492373228073,0.04196050018072128,-0.02501516416668892,0.05855946987867355,-0.04714992269873619,0.09715607017278671,-0.009737388230860233,-0.07079371064901352,0.07825127989053726,0.01650802604854107,-0.027717318385839462,0.10885155946016312,0.024416880682110786,-0.012681776657700539,0.0035916941706091166,0.004910532850772142,-0.03515932708978653,0.0477265827357769,0.09336121380329132,-0.047704558819532394,0.010643207468092442,0.038312193006277084,-0.03772801160812378,-0.09059091657400131,-0.021924685686826706,0.00048314896412193775,-0.027015049010515213,-0.14751264452934265,0.014153562486171722,-0.04131525009870529,-0.03567180037498474,0.01196786854416132,-0.005323172081261873,-0.08264371752738953,0.0009562956402078271,0.0833079069852829,0.0043237763457000256,0.04380563274025917,-0.0976274311542511,0.026599735021591187,-0.07754609733819962,0.03957110270857811,-0.007706350181251764,0.1045304462313652,0.05523397773504257,0.07208297401666641,0.04298187419772148,-0.038312118500471115,-0.08098053932189941,-0.06323886662721634,-0.02952239103615284,-0.060289669781923294,-0.07152815908193588,-0.049938347190618515,0.03224729746580124,-0.0027255138847976923,0.021517949178814888,-0.01498539000749588,0.002990955952554941,-0.04714114964008331,-0.035878948867321014,0.021765340119600296,-0.02174907550215721,0.04286787286400795,-0.09155623614788055,0.03802045062184334,-0.035103343427181244,0.004160702228546143,0.002169783925637603,-4.063479361307208e-33,0.06728251278400421,0.01657497137784958,0.059431642293930054,-0.005520688369870186,0.00952738057821989,-0.012039550580084324,-0.0415446013212204,0.04578334465622902,-0.04872554540634155,-0.06907785683870316,-0.08231911063194275,-0.04727698490023613,0.02059401385486126,-0.09905007481575012,-0.043997909873723984,0.0887204185128212,-0.0639030933380127,0.024466177448630333,0.09254366904497147,0.027772581204771996,-0.04294462874531746,0.08093525469303131,0.05408896505832672,0.017329582944512367,-0.06005697697401047,-0.0023202477023005486,0.0810183733701706,0.007361738011240959,0.052832745015621185,0.04083513841032982,-0.03743155673146248,-0.02208460122346878,0.09134132415056229,-0.0011864153202623129,0.011481278575956821,0.04561519995331764,0.04247181862592697,-0.0403628833591938,-0.018748102709650993,-0.04456770047545433,-0.13085441291332245,-0.0057573094964027405,0.04809894412755966,-0.04188494756817818,-0.13338617980480194,-0.007884186692535877,-0.061675652861595154,0.01345452293753624,-0.08975769579410553,-0.011476256884634495,0.016842300072312355,0.03680214285850525,-0.0013715940294787288,0.002717202063649893,0.01807243376970291,-0.018490713089704514,0.08440445363521576,-0.03310322016477585,0.017040861770510674,-0.016195138916373253,0.0046250540763139725,-0.06746169179677963,0.08184949308633804,0.07947363704442978,0.0008163033053278923,-0.04326242208480835,-0.015098519623279572,-0.07807011902332306,0.02241665869951248,-0.04650258272886276,-0.07259150594472885,0.05953192710876465,-0.03436029702425003,-0.06555573642253876,0.0043993680737912655,0.04120427370071411,0.014462491497397423,-0.015944186598062515,-0.015196838416159153,-0.11132960766553879,-0.026979485526680946,-0.038461603224277496,-0.06847682595252991,0.03865642845630646,0.015863021835684776,0.018454747274518013,-0.030182385817170143,-0.08977466821670532,-0.07951153814792633,0.02953193709254265,-0.018394920974969864,-0.009242384694516659,0.07562346011400223,-0.06909274309873581,-0.038285430520772934,2.2354424283222924e-34,0.05555638298392296,0.03032524883747101,0.003324190154671669,-0.011869745329022408,0.05749841406941414,-0.04745049774646759,-0.03704685717821121,0.03471577167510986,0.004683966748416424,-0.03770248964428902,0.03518182411789894,-0.14004668593406677,0.060803063213825226,-0.05800994113087654,-0.04905804619193077,0.0003612064756453037,0.00329209235496819,-0.027883319184184074,-0.03828493878245354,-0.014594243839383125,-0.02753199264407158,0.045292988419532776,0.046284228563308716,-0.008564313873648643,-0.05845755711197853,-0.05473531782627106,0.027771061286330223,-0.01168224960565567,-0.060066983103752136,-0.024232646450400352,0.024848617613315582,0.01788347400724888,-0.06457935273647308,0.03756946325302124,0.05558004975318909,0.12662440538406372,-0.05067262426018715,-0.09467675536870956,-0.032511498779058456,-0.08328954875469208,0.07030928879976273,-0.0046245441772043705,0.013994707725942135,0.04200804606080055,0.07306858897209167,0.011443261057138443,0.027535131201148033,-0.007517616264522076,0.06105983257293701,-0.01881774328649044,-0.02763110026717186,0.008790751919150352,0.015247106552124023,0.08700571209192276,0.006387449335306883,-0.008130301721394062,0.01684877648949623,0.005001611076295376,-0.02233889512717724,-0.040707655251026154,-0.08893411606550217,0.01845148578286171,-0.07853171974420547,0.08077040314674377,-0.008411096408963203,-0.019901970401406288,-0.020124385133385658,0.04558039456605911,-0.10439817607402802,0.04104471579194069,0.0707041397690773,0.017755230888724327,-0.03394823893904686,0.0948927029967308,-0.006290715653449297,0.018154943361878395,-0.08493846654891968,-0.07810646295547485,-0.07975646108388901,-0.015442035160958767,0.0807800441980362,0.006145830266177654,0.00835132785141468,0.06550997495651245,0.03430669754743576,-0.04277946427464485,0.029498999938368797,0.0746646523475647,0.004729312378913164,0.013921809382736683,-0.025765830650925636,-0.05797814577817917,0.03221554681658745,-0.037086352705955505,0.06884598731994629,-2.530651066479095e-8,-0.010235512629151344,0.11677228659391403,-0.055357787758111954,-0.03699646517634392,0.025728579610586166,0.03838267922401428,0.023508358746767044,0.09846567362546921,-0.06868074834346771,0.026325257495045662,0.04063751921057701,0.01697346195578575,0.0005894172936677933,0.03079555556178093,-0.05579447001218796,0.030031966045498848,0.04412642493844032,-0.05346641689538956,0.061431560665369034,-0.0148748978972435,-0.020767569541931152,0.013884298503398895,0.06805881857872009,0.03748873248696327,-0.02496418170630932,0.0036671189591288567,-0.017563654109835625,-0.01302469614893198,-0.021744998171925545,-0.06460484862327576,0.052417296916246414,-0.0093793123960495,-0.04831913858652115,-0.027545563876628876,-0.10906846076250076,0.037126850336790085,0.047816529870033264,-0.024039816111326218,0.11505077034235,0.045140158385038376,-0.05488091707229614,-0.017576362937688828,-0.01691213622689247,-0.0014974628575146198,0.0622272789478302,0.03684994578361511,0.10273776948451996,-0.054316721856594086,-0.040726784616708755,0.03603691607713699,-0.051995448768138885,0.011816206388175488,-0.026138870045542717,-0.014282245188951492,0.0567384772002697,-0.043893057852983475,-0.04801895096898079,0.05729987844824791,-0.01464221253991127,0.0656118392944336,0.056908924132585526,0.04509802907705307,-0.038237109780311584,-0.05867038667201996]},{"text":"Dear William! dearest blessed child!","book":"1984","chapter":48,"embedding":[0.021798603236675262,0.09500110149383545,0.09548826515674591,-0.011556354351341724,-0.04438997060060501,0.002307611284777522,-0.006739540491253138,-0.04834114760160446,0.001044454169459641,-0.003573690541088581,-0.02743844874203205,0.039923783391714096,-0.03805749863386154,-0.0695115402340889,-0.034867364913225174,0.08979976922273636,-0.061959005892276764,-0.007199378684163094,-0.02240411378443241,0.022341778501868248,-0.033159855753183365,0.07958737760782242,0.02958115004003048,0.05295158550143242,-0.025417834520339966,0.06908035278320312,0.019904538989067078,-0.0038148616440594196,-0.006459588650614023,-0.05714034289121628,-0.008894211612641811,-0.03694465756416321,0.07347463071346283,-0.0015226051909849048,0.02463599108159542,-0.027480583637952805,0.031940072774887085,0.012423253618180752,-0.009560762904584408,-0.03517650440335274,-0.02301269769668579,-0.057896628975868225,-0.04138430953025818,-0.012867597863078117,-0.038635093718767166,-0.029803644865751266,-0.029907839372754097,-0.09057553112506866,0.07905003428459167,0.009771219454705715,-0.10559780150651932,-0.012390464544296265,0.05867914482951164,-0.05293390154838562,-0.10529183596372604,-0.0237668938934803,0.061164483428001404,-0.03512108325958252,0.0033707485999912024,0.008167068473994732,-0.06644508987665176,0.10569494217634201,-0.07895531505346298,0.03350606933236122,-0.018382471054792404,-0.06473302096128464,0.04267498105764389,0.031010618433356285,-0.07922206819057465,-0.029045866802334785,-0.05178176611661911,0.03613256290555,0.05496891960501671,0.02429983951151371,-0.06389839202165604,-0.020943377166986465,0.06986178457736969,-0.05610300973057747,0.009756650775671005,0.04086337611079216,-0.051679596304893494,-0.017255308106541634,-0.06993347406387329,-0.03372218832373619,-0.009020725265145302,-0.049636904150247574,-0.00003945536082028411,-0.06690143793821335,-0.0026867405977100134,-0.009155835025012493,-0.050872888416051865,-0.09358163177967072,0.023427972570061684,0.09579061716794968,0.014821382239460945,0.02025431953370571,0.03557923436164856,-0.11694394797086716,-0.16413970291614532,0.023697610944509506,0.02252081409096718,0.07551078498363495,-0.039200589060783386,0.07992123067378998,0.031719356775283813,0.004887341987341642,-0.09589490294456482,-0.017339171841740608,0.03300671651959419,-0.05929195508360863,0.11858319491147995,-0.04492712765932083,0.0580977238714695,-0.04010695964097977,0.015864882618188858,-0.05657089501619339,-0.009426177479326725,-0.021294618025422096,-0.007922360673546791,-0.04062902182340622,0.07169090956449509,0.018278654664754868,-0.053269632160663605,0.006083844695240259,-0.028743427246809006,-0.15186657011508942,0.033641405403614044,-2.5506421926989173e-33,0.02153126522898674,0.04230967536568642,0.07037907838821411,0.06933936476707458,-0.06058314070105553,0.05129650607705116,-0.03809550032019615,0.009697413071990013,-0.0824681967496872,-0.05885329097509384,-0.007623478304594755,-0.04755426570773125,0.010428403504192829,-0.0413057915866375,-0.1859356164932251,0.016103841364383698,-0.019657816737890244,-0.04150783643126488,0.030529364943504333,0.05449653044342995,-0.06417715549468994,0.06938834488391876,0.030157452449202538,0.01299539115279913,0.007480383384972811,-0.014784600585699081,0.07810945808887482,0.02076982520520687,0.03739093616604805,0.02707769349217415,0.060794614255428314,0.05832024663686752,0.04936981573700905,0.013890891335904598,0.03411249443888664,-0.01667487435042858,-0.035722896456718445,-0.05508841946721077,0.03269873186945915,-0.027459222823381424,0.06498686969280243,-0.0042049637995660305,0.006422410719096661,0.04727655649185181,-0.07816322892904282,0.0027920438442379236,-0.027589604258537292,-0.002100283047184348,0.07213366776704788,-0.02199370041489601,-0.026907313615083694,-0.023284373804926872,-0.07539698481559753,0.00039396423380821943,-0.05483734607696533,-0.0008911930490285158,0.006717152427881956,0.0998612642288208,-0.04578464478254318,-0.030067766085267067,-0.02136675827205181,-0.017194056883454323,0.0909416601061821,0.04663972556591034,-0.017392102628946304,-0.14786121249198914,0.02301393635571003,0.04495884105563164,0.000965287908911705,0.023184647783637047,-0.01788906380534172,0.09274043142795563,0.007487814873456955,-0.10979732871055603,-0.04231293126940727,-0.016524482518434525,0.04075729101896286,-0.02472994104027748,0.06916739791631699,0.02794337086379528,-0.015682419762015343,0.05500423163175583,-0.03296765312552452,0.011960002593696117,0.056539472192525864,-0.058415960520505905,-0.03354525566101074,-0.004359366372227669,0.025251908227801323,0.09277369827032089,-0.029504625126719475,0.029515838250517845,0.03909040614962578,-0.08023630082607269,-0.05277307331562042,-1.280203989680179e-33,0.13619713485240936,-0.023962849751114845,0.06608887016773224,0.04901980236172676,-0.06457430124282837,-0.06263793259859085,0.00981985218822956,0.10306891053915024,-0.06405225396156311,0.04076094180345535,0.036063119769096375,0.03603130578994751,0.017538592219352722,-0.05827534571290016,0.030513053759932518,0.02028360776603222,0.10701912641525269,0.06181010231375694,-0.009765627793967724,-0.017443858087062836,-0.03905877843499184,0.04140748828649521,-0.08020597696304321,-0.027903029695153236,-0.0048518311232328415,-0.04516474902629852,0.016092833131551743,-0.03457420691847801,-0.049660440534353256,-0.0784803107380867,0.06600919365882874,0.09830845892429352,-0.09412206709384918,0.020199306309223175,-0.025728585198521614,-0.009443524293601513,0.10506484657526016,-0.04396653547883034,0.017539741471409798,0.06254306435585022,0.0410848893225193,0.02424720488488674,0.02023736946284771,0.08296549320220947,0.004951507318764925,-0.06952585279941559,0.0012598991161212325,-0.036254577338695526,0.03307592123746872,0.07194195687770844,-0.059054456651210785,-0.08931959420442581,0.059568338096141815,-0.018670279532670975,0.02973216027021408,-0.011540022678673267,0.03444938734173775,-0.03253461793065071,0.004646223969757557,-0.02409842051565647,-0.008271053433418274,0.011670263484120369,-0.03909042477607727,0.04957672953605652,-0.007999005727469921,0.04194304347038269,-0.02778134122490883,0.04994499683380127,-0.018941378220915794,-0.06131287291646004,0.0063557750545442104,0.0031412672251462936,0.050793349742889404,-0.032130490988492966,0.01666962169110775,0.028235837817192078,0.02667858824133873,0.018408022820949554,-0.028281958773732185,0.035324398428201675,0.06734861433506012,-0.047235600650310516,-0.022142494097352028,-0.0562216192483902,-0.033616356551647186,-0.036033518612384796,0.07584705948829651,-0.04818976670503616,-0.020963246002793312,0.025661667808890343,-0.029855668544769287,-0.03045801818370819,0.039823390543460846,-0.06267303228378296,0.08872716128826141,-1.842229302440046e-8,0.008386297151446342,-0.08686427026987076,-0.029987193644046783,-0.0226654801517725,0.011574751697480679,0.002686558524146676,-0.007836859673261642,0.0018616174347698689,-0.06147288903594017,0.060539327561855316,-0.04026036337018013,0.06362341344356537,-0.018163906410336494,-0.009446765296161175,0.12687017023563385,-0.01597215235233307,-0.019032642245292664,-0.056665707379579544,-0.005794959608465433,0.023700736463069916,0.03711697831749916,0.0014412059681490064,0.027578040957450867,0.03228459134697914,-0.008976001292467117,0.021597692742943764,-0.007024599239230156,-0.08938413858413696,-0.0350605808198452,-0.022266510874032974,0.07921621203422546,0.057976134121418,-0.08625824749469757,-0.04313046112656593,-0.024443622678518295,-0.0003570493427105248,-0.00513701094314456,0.03407661244273186,0.07237321138381958,0.06544304639101028,-0.041152533143758774,0.052384186536073685,-0.021140843629837036,-0.022731952369213104,0.026794258505105972,-0.005702356342226267,-0.009560056030750275,0.1049884781241417,0.031833305954933167,-0.03767678514122963,-0.05789318308234215,0.013006235472857952,0.08631322532892227,0.03549286723136902,0.038632582873106,-0.01348054874688387,0.057121459394693375,0.06264793127775192,-0.01026603952050209,-0.011351292952895164,0.11086300015449524,0.015303319320082664,0.014323473908007145,-0.05866944417357445]},{"text":"Who dared talk of that?","book":"1984","chapter":49,"embedding":[-0.062439028173685074,0.0762021467089653,-0.08088434487581253,0.047012921422719955,-0.0042670476250350475,-0.02360503003001213,0.08788541704416275,-0.0067513915710151196,-0.05436478182673454,0.009749716147780418,-0.035785578191280365,-0.017210185527801514,0.01624588668346405,-0.023188212886452675,-0.017873335629701614,-0.01374334841966629,-0.01930486597120762,0.050698421895504,0.0064270952716469765,0.05957772955298424,-0.0014315982116386294,0.09772560745477676,0.04210128262639046,0.04135076329112053,0.03259941563010216,0.02659645676612854,0.008515524677932262,0.013444311916828156,-0.020970333367586136,0.04071151465177536,-0.008434468880295753,0.032713260501623154,0.021948255598545074,0.02759702317416668,-0.04670724272727966,-0.021973643451929092,0.05329263582825661,-0.01893535442650318,0.02803543396294117,-0.049730002880096436,-0.03134029731154442,-0.033437132835388184,0.010938902385532856,0.06258759647607803,0.02062365412712097,-0.08948124945163727,0.01933538354933262,-0.027789054438471794,0.04020516946911812,-0.002752634696662426,0.09269069880247116,-0.030015919357538223,0.04050406813621521,-0.05512670427560806,0.031012868508696556,-0.06328821182250977,-0.04856567457318306,-0.011139051988720894,0.04885239899158478,0.028113212436437607,0.02285831980407238,-0.017753049731254578,-0.002596423029899597,0.05870874598622322,-0.009236394427716732,0.01574893295764923,0.05878669023513794,0.08835719525814056,-0.06999107450246811,-0.009707984514534473,-0.01591542363166809,-0.033821411430835724,0.00008225450437748805,-0.06100793927907944,-0.013645448721945286,-0.055123187601566315,0.01719593070447445,0.0012303782859817147,0.027724958956241608,-0.05261065065860748,0.04611911252140999,-0.12656576931476593,-0.06789889931678772,0.03142078220844269,-0.023626167327165604,-0.009557140991091728,-0.06224384531378746,-0.08364004641771317,0.025397546589374542,0.003518375800922513,-0.06938376277685165,-0.06572216004133224,-0.00896445382386446,0.05172700062394142,-0.04923081025481224,0.03887377679347992,-0.07930474728345871,-0.09010914713144302,-0.08086327463388443,0.12625916302204132,-0.01781715452671051,0.031935155391693115,-0.07138130068778992,-0.061702627688646317,0.01361036952584982,-0.02762218378484249,-0.02369975671172142,-0.034779246896505356,-0.06030045449733734,-0.034961115568876266,0.007664545439183712,0.009973053820431232,0.05846412107348442,0.05704135075211525,0.03148587793111801,-0.05901668220758438,0.019789403304457664,-0.0400349386036396,-0.05329732969403267,-0.07644858211278915,-0.018217433243989944,0.05664884299039841,-0.032388657331466675,0.027025507763028145,-0.018886668607592583,0.07002891600131989,-0.03247024118900299,-7.020235199419048e-33,0.05689627304673195,0.017198890447616577,0.023089535534381866,0.04995711147785187,0.09926274418830872,0.0030575734563171864,-0.03149639442563057,-0.03596755117177963,0.03274516388773918,-0.0007205826696008444,0.03975764662027359,-0.04647521674633026,-0.06016211584210396,-0.11381786316633224,-0.03361772745847702,0.05448409914970398,-0.038448479026556015,-0.015350800938904285,0.005959760397672653,-0.020885495468974113,0.005637872964143753,0.1397838443517685,-0.022868582978844643,0.018228696659207344,-0.03927640989422798,0.055110715329647064,-0.002756008179858327,-0.0908898338675499,0.1606687307357788,0.10262541472911835,0.0025798857677727938,0.006766344886273146,0.042851317673921585,-0.005621729418635368,0.07187484204769135,-0.0007589039742015302,0.02491903491318226,-0.0704880952835083,-0.07717762887477875,0.028643732890486717,0.02429121732711792,-0.023788660764694214,0.010024878196418285,-0.06906908750534058,-0.10760651528835297,-0.031060533598065376,-0.009570891968905926,-0.004532621242105961,-0.009328941814601421,-0.012058662250638008,-0.03424272686243057,0.055138010531663895,-0.03087620809674263,-0.033855877816677094,0.12253586202859879,-0.04009763523936272,0.0028154689352959394,-0.04437780752778053,0.016501588746905327,0.03636428341269493,-0.006044650916010141,0.03147819638252258,-0.046406231820583344,0.04021260514855385,-0.05403842777013779,-0.05744414031505585,-0.03738828003406525,-0.006827088072896004,-0.02848595753312111,0.01030983217060566,-0.016833486035466194,-0.007548678200691938,-0.04546231031417847,-0.043569110333919525,-0.06904831528663635,0.04168061167001724,0.04778479039669037,0.060981668531894684,-0.11845265328884125,-0.03304136171936989,0.0033945750910788774,0.005012499634176493,0.02846064232289791,0.03293842077255249,0.00555135915055871,-0.013769114390015602,-0.05126550793647766,0.013472843915224075,0.059262730181217194,-0.06761039048433304,-0.02182662859559059,-0.01374098565429449,0.06510362774133682,-0.10839781165122986,-0.07960954308509827,1.8833015601096272e-33,-0.0695767030119896,0.0011133988155052066,0.009532993659377098,0.016535280272364616,0.06546486169099808,0.016405005007982254,-0.09362021088600159,-0.037696462124586105,0.043273262679576874,-0.08692994713783264,0.03788752853870392,-0.07981602847576141,0.03338684141635895,0.005241118837147951,0.14017483592033386,-0.06085272878408432,0.05667001008987427,-0.06353280693292618,0.026721302419900894,0.045477502048015594,-0.015014839358627796,-0.04353128746151924,-0.07221732288599014,-0.022678088396787643,-0.06682692468166351,0.016009114682674408,0.11010086536407471,-0.025350432842969894,-0.07505038380622864,0.05094417557120323,0.043555207550525665,0.05390215292572975,-0.006068232469260693,-0.01795729249715805,0.023906487971544266,0.08770252019166946,0.04815797507762909,0.009963495656847954,0.008361106738448143,-0.04392917826771736,0.010542971082031727,-0.0017817812040448189,-0.0764937698841095,0.07100540399551392,0.006593178957700729,-0.016578372567892075,-0.026774000376462936,-0.046626120805740356,0.01636498048901558,-0.018249990418553352,-0.07945772260427475,0.0710674524307251,0.029541751369833946,-0.04368877038359642,-0.011381709016859531,-0.07793472707271576,0.10209820419549942,-0.02896721474826336,0.05507397651672363,-0.024593641981482506,-0.03914915397763252,0.04107692092657089,-0.043719831854104996,-0.045257918536663055,0.015478575602173805,0.019948597997426987,-0.08195129781961441,-0.008088210597634315,0.002129228552803397,-0.00016569116269238293,0.2101445198059082,-0.009701522998511791,-0.01088311243802309,0.033892396837472916,-0.01682528480887413,0.06737048178911209,-0.019048811867833138,0.030019251629710197,-0.06368036568164825,0.03453527018427849,0.10296408832073212,-0.024446571245789528,-0.01308811828494072,0.10793732851743698,0.037843991070985794,0.019546929746866226,0.017332162708044052,-0.03512266278266907,-0.04766499623656273,-0.020090799778699875,0.049983181059360504,-0.07013242691755295,0.026455678045749664,-0.07083777338266373,0.02841353602707386,-1.991162257297674e-8,-0.05733224377036095,-0.012201582081615925,-0.04179712012410164,-0.04956892132759094,0.07709648460149765,0.05312749370932579,-0.027589157223701477,-0.013089480809867382,-0.01599334180355072,0.07758248597383499,-0.017082637175917625,0.044596001505851746,0.0484333373606205,0.06833070516586304,0.005771915894001722,0.09958021342754364,0.023769624531269073,-0.1320580542087555,-0.0509171187877655,-0.018054388463497162,0.01663852669298649,0.046407878398895264,0.07876734435558319,-0.01713629812002182,-0.033462006598711014,0.08625045418739319,-0.01653943583369255,-0.025813808664679527,-0.0020408781711012125,0.08759737014770508,0.006498466245830059,0.046080704778432846,-0.15150952339172363,0.014496030285954475,-0.05056507885456085,0.014000344090163708,-0.042718082666397095,-0.02868724800646305,0.0405062735080719,0.018399324268102646,-0.03468001261353493,0.1046488881111145,0.041652992367744446,0.049701955169439316,0.051855042576789856,-0.002015242585912347,0.027677586302161217,-0.04539536312222481,0.04293210431933403,0.037048570811748505,-0.04425693303346634,0.03882351517677307,0.01423441618680954,0.06147418171167374,0.015184514224529266,0.019523322582244873,-0.012651781551539898,-0.012377869337797165,-0.07636331766843796,-0.037919994443655014,0.024433312937617302,-0.049573056399822235,-0.023344118148088455,0.002159763826057315]},{"text":"We stayed several hours with Justine, and it was with great difficulty that Elizabeth could tear herself away. “I wish,” cried she, “that I were to die with you; I cannot live in this world of misery.” Justine assumed an air of cheerfulness, while she with difficulty repressed her bitter tears.","book":"1984","chapter":49,"embedding":[0.025637080892920494,0.060190349817276,0.16985130310058594,0.0005683948984369636,0.010074741207063198,0.03435284644365311,0.07866427302360535,-0.030765140429139137,-0.012118922546505928,-0.05773182213306427,-0.07580574601888657,0.023076001554727554,0.002556523075327277,-0.028628796339035034,-0.01788998581469059,0.056783948093652725,0.010051517747342587,0.04400406405329704,-0.12781739234924316,0.11166689544916153,0.049782633781433105,0.058416180312633514,-0.006431408226490021,0.08888007700443268,-0.010998732410371304,0.017776569351553917,0.01893027126789093,0.04454883560538292,0.055030081421136856,0.008780970238149166,-0.05091913044452667,-0.05586417764425278,-0.028481988236308098,0.020724637433886528,0.04667602851986885,0.06343395262956619,-0.009564293548464775,-0.0019967067055404186,-0.015144726261496544,-0.047199808061122894,-0.013917932286858559,-0.06017477810382843,-0.008629050105810165,0.030831750482320786,-0.02846747450530529,-0.057813506573438644,0.01781540922820568,-0.022079991176724434,0.04764179512858391,-0.03356402367353439,-0.028517011553049088,0.034390609711408615,0.004597850143909454,-0.10288996249437332,-0.021540770307183266,0.04116261377930641,0.041092049330472946,0.03417893499135971,0.08665052056312561,0.01571710780262947,-0.033077172935009,0.051030099391937256,0.018155040219426155,0.05625220760703087,0.004740752279758453,-0.02898498624563217,0.06722608208656311,0.02459162101149559,0.02743603102862835,0.06847169995307922,-0.06819229573011398,-0.05369709059596062,0.031066907569766045,-0.020106811076402664,-0.030685054138302803,0.06201441213488579,0.10017924755811691,-0.07754886150360107,0.005978937726467848,0.034487612545490265,0.013750383630394936,-0.04512413963675499,0.0250154547393322,0.04792280122637749,-0.011293850839138031,-0.12084130197763443,0.04189961031079292,0.0003328454331494868,-0.00019791377417277545,0.023407427594065666,-0.011120964772999287,-0.027188019827008247,0.04445308446884155,0.050249647349119186,0.042617108672857285,0.00777817377820611,-0.07090268284082413,0.02231980673968792,-0.051896922290325165,0.06962266564369202,-0.016847649589180946,0.08928128331899643,0.015610643662512302,0.07825423777103424,-0.018207157030701637,-0.05430672690272331,-0.07283631712198257,-0.01610194891691208,-0.004399827215820551,-0.04133641719818115,-0.08424247801303864,-0.051476091146469116,-0.018286757171154022,-0.04166591167449951,0.01959117501974106,-0.014998887665569782,0.008020523935556412,-0.03709597885608673,0.039897315204143524,-0.03223787620663643,0.01039694994688034,0.011597378179430962,-0.058299269527196884,-0.04394456371665001,-0.00466983113437891,0.04102795571088791,0.010494770482182503,-1.008442369068536e-33,0.057430922985076904,-0.024454178288578987,0.03977629542350769,0.06982018798589706,-0.010159472934901714,0.04684481397271156,-0.05701621621847153,0.07235804200172424,-0.014026649296283722,-0.08371683210134506,-0.05372938886284828,-0.05495770648121834,0.017410781234502792,-0.11804016679525375,0.004107244312763214,0.057220153510570526,0.050788626074790955,0.02383456751704216,0.08056183159351349,0.0012107780203223228,-0.06225232779979706,0.02322680689394474,0.05919826030731201,-0.01461680606007576,-0.0926484614610672,0.035830918699502945,0.11646952480077744,-0.01413709856569767,0.006711426191031933,0.02903800643980503,-0.07291853427886963,-0.015524362213909626,0.05567235127091408,-0.04645751044154167,0.026428306475281715,0.02561955712735653,-0.01166518498212099,0.031593915075063705,0.0034517457243055105,-0.035542476922273636,-0.14611144363880157,0.05392206087708473,0.09303451329469681,-0.026878898963332176,-0.07227078080177307,-0.005574949085712433,-0.007060911972075701,0.031064914539456367,0.023195186629891396,0.0062268879264593124,0.09501741826534271,-0.014638334512710571,-0.027682652696967125,-0.005659203045070171,-0.021362178027629852,0.0669761374592781,0.009782657958567142,-0.0043214429169893265,0.03792211040854454,-0.027718575671315193,0.01576746627688408,-0.06759516149759293,0.03193551301956177,-0.005250151269137859,0.0858716294169426,0.03834652155637741,-0.06866837292909622,-0.09572361409664154,-0.04387317970395088,-0.10176808387041092,-0.1346459835767746,0.09221699088811874,0.008904273621737957,-0.045700620859861374,-0.038185905665159225,0.013764223083853722,0.031804490834474564,-0.0897417888045311,-0.035367466509342194,-0.0344095304608345,0.0003930215898435563,-0.0761687383055687,-0.03149000555276871,0.040071092545986176,0.00573310861364007,-0.043435271829366684,-0.011829739436507225,-0.08199381828308105,-0.07585342228412628,0.08061587810516357,-0.0059360298328101635,-0.00911808107048273,0.07452459633350372,-0.06504971534013748,-0.049360379576683044,-1.5334575435736213e-33,0.025419240817427635,0.0023236318957060575,-0.00422864593565464,0.019726837053894997,0.03430303931236267,-0.06986968964338303,-0.045656345784664154,0.0536855049431324,0.0032994647044688463,0.043392281979322433,0.0151518564671278,-0.1135246679186821,0.06684008240699768,0.022129284217953682,-0.09615767002105713,-0.005356200505048037,0.04844772815704346,-0.09201892465353012,-0.018541138619184494,-0.013505254872143269,-0.037692759186029434,0.01834426447749138,-0.0074625625275075436,-0.021045662462711334,-0.007066032383590937,0.01840968057513237,0.013770019635558128,-0.03834754228591919,-0.05226686969399452,-0.03705153614282608,0.049852047115564346,0.035041242837905884,-0.06725603342056274,0.02053883858025074,0.042761821299791336,0.09390376508235931,-0.10336512327194214,-0.055108051747083664,-0.027029886841773987,-0.03199077770113945,0.01518103014677763,-0.031183326616883278,0.009900199249386787,0.014190953224897385,0.11649961024522781,0.06736543029546738,0.05729022994637489,-0.06957319378852844,0.03294524922966957,0.017339326441287994,-0.010516348294913769,0.014106483198702335,-0.09424178302288055,0.10274594277143478,0.03934855759143829,-0.0815834105014801,-0.03940844535827637,-0.03577748313546181,-0.023581089451909065,-0.0768125057220459,-0.04758905991911888,-0.05216370150446892,-0.058422721922397614,0.02305310219526291,-0.008846627548336983,0.027425870299339294,0.031096631661057472,-0.009723407216370106,-0.10187534242868423,0.019841216504573822,0.015579980798065662,-0.03307487070560455,-0.06776878237724304,0.08467549830675125,0.037856608629226685,-0.013590202666819096,-0.0924212634563446,-0.049164801836013794,-0.05329245701432228,0.017718177288770676,0.06585279852151871,0.01245371624827385,-0.005330915562808514,-0.029377613216638565,-0.01115222554653883,-0.04578863084316254,0.02896186336874962,0.07839221507310867,-0.04568042978644371,0.0042742895893752575,0.0229097418487072,0.0024248824920505285,0.00985153578221798,-0.07825826853513718,0.06913363933563232,-4.116540353038545e-8,0.024088894948363304,0.004392613656818867,-0.04235847294330597,-0.10921144485473633,-0.05182914808392525,0.00651330454275012,0.05542673170566559,0.10549445450305939,-0.005733618512749672,0.1059279814362526,0.0056160567328333855,0.01403576135635376,-0.04897536337375641,0.06845618039369583,-0.06426633894443512,0.06493596732616425,0.005269297398626804,-0.07336738705635071,0.031056450679898262,0.02493256703019142,-0.06154753267765045,-0.03429084271192551,-0.003142301458865404,-0.006120660342276096,-0.015270069241523743,-0.060584817081689835,-0.011627406813204288,-0.02194848470389843,-0.08023430407047272,-0.0015347207663580775,0.06407824158668518,0.028719713911414146,-0.03395313024520874,-0.01272777933627367,-0.11986476927995682,0.018258262425661087,0.06056515872478485,0.03138446807861328,0.027551380917429924,0.06112780049443245,-0.045288778841495514,0.06469915807247162,-0.0753154531121254,0.0034120504278689623,0.10775738209486008,-0.01798490807414055,0.09064948558807373,-0.0015194159932434559,-0.07631386071443558,-0.004933591466397047,0.01544225960969925,0.002836983883753419,0.019869808107614517,-0.012144585140049458,0.05008891597390175,-0.03104516491293907,-0.033082265406847,0.04781510308384895,-0.05101310834288597,0.03197433054447174,0.008965715765953064,0.02213307097554207,-0.04375223070383072,-0.05943059176206589]},{"text":"Ye weep, unhappy ones, but these are not your last tears!","book":"1984","chapter":50,"embedding":[-0.004842777270823717,-0.0041345637291669846,0.10844951122999191,-0.019711129367351532,0.07527228444814682,-0.011977317743003368,0.01705867052078247,-0.034784071147441864,0.04491231217980385,-0.02589402347803116,-0.05156684294342995,0.02287001721560955,0.00976245105266571,0.05121879652142525,-0.03932947665452957,0.046842604875564575,-0.1239880621433258,0.003988925367593765,-0.033253975212574005,0.05697660893201828,-0.011323613114655018,0.09274372458457947,-0.12830850481987,0.022838009521365166,0.04334144666790962,0.03244117647409439,-0.019084153696894646,-0.014772104099392891,-0.02712075412273407,0.020827757194638252,-0.037287387996912,-0.05567925423383713,0.023717433214187622,0.059833187609910965,0.11552377790212631,-0.04154602810740471,-0.04332554712891579,-0.04587806761264801,-0.039983898401260376,-0.008583307266235352,0.03438470512628555,0.015130413696169853,0.0010000793263316154,-0.009251885116100311,0.05254608020186424,-0.03685743734240532,0.011712152510881424,-0.02395373396575451,0.014970384538173676,-0.01841810904443264,-0.014490850269794464,0.025528250262141228,-0.014468797482550144,-0.006826343946158886,0.052071306854486465,-0.03980518877506256,0.0535350926220417,-0.02671550214290619,0.05117364972829819,0.02871563285589218,0.06161569058895111,0.06642661988735199,-0.031189775094389915,-0.015045243315398693,-0.006966307759284973,-0.004725001752376556,0.06462369859218597,0.026613427326083183,-0.060520630329847336,0.14956261217594147,-0.12414850294589996,-0.009883646853268147,0.08070167899131775,0.05109699070453644,-0.0737907662987709,0.025057854130864143,0.03434711694717407,-0.05273517593741417,-0.018676862120628357,0.04877128452062607,-0.061758823692798615,-0.013935431838035583,-0.0033381725661456585,-0.04602248966693878,-0.0556468702852726,-0.06557153165340424,-0.07935045659542084,-0.03186974674463272,0.019987577572464943,-0.005287639331072569,-0.01532802265137434,-0.04056423529982567,0.05353071913123131,0.06842996180057526,0.030306046828627586,-0.05110988765954971,-0.03404923155903816,0.08720916509628296,-0.08192211389541626,0.030970308929681778,-0.038499947637319565,0.03512716293334961,0.044725000858306885,-0.020277533680200577,0.017738288268446922,-0.038981154561042786,-0.16132113337516785,0.027341386303305626,-0.02212786301970482,-0.01504315435886383,-0.08651306480169296,-0.038705602288246155,0.034121379256248474,-0.07087937742471695,0.0501958392560482,-0.0295900609344244,-0.022135816514492035,0.011679057031869888,0.00724427355453372,0.176646426320076,-0.04605568200349808,0.08120587468147278,-0.03953023999929428,0.03151469677686691,0.06628427654504776,-0.043002065271139145,-0.09291508793830872,-2.962920938639918e-33,0.08745221048593521,0.01716729998588562,0.035572994500398636,0.048977386206388474,-0.04385587200522423,0.04835095256567001,-0.02093958482146263,0.002199270064011216,-0.007137121632695198,-0.05268971994519234,-0.1047464907169342,0.08407803624868393,-0.0589287243783474,-0.06471540778875351,-0.08351512253284454,-0.02921963483095169,-0.07157087326049805,-0.0010449799010530114,-0.024849895387887955,0.061787012964487076,-0.10152198374271393,0.042363300919532776,0.04463467746973038,-0.00797354243695736,-0.040871717035770416,0.03198506310582161,0.017578652128577232,0.023188473656773567,-0.019575823098421097,0.017074095085263252,-0.05522414669394493,-0.0014857967616990209,0.14695799350738525,-0.021477749571204185,0.008680216036736965,-0.0025234909262508154,0.0060158842243254185,0.020410023629665375,-0.04156181216239929,-0.06280412524938583,-0.032192833721637726,0.015759026631712914,-0.010036461986601353,0.02013687789440155,-0.010337098501622677,0.02172333188354969,0.029708191752433777,0.061363335698843,0.023496193811297417,-0.01353568583726883,0.04370471462607384,-0.0011361300712451339,0.00615632813423872,-0.013803667388856411,0.06131436303257942,-0.060131534934043884,0.00725099490955472,0.02064415253698826,0.009165744297206402,-0.03506266698241234,-0.022694991901516914,-0.025900116190314293,0.010221453383564949,-0.14814545214176178,0.0023129344917833805,0.03767666220664978,-0.05395008623600006,-0.018062692135572433,-0.02592480555176735,-0.059889305382966995,-0.009763609617948532,0.002859631087630987,0.0394226498901844,-0.10837072879076004,0.06491803377866745,-0.03231937065720558,0.01429736614227295,0.010923962108790874,0.022421935573220253,-0.07378600537776947,-0.01715215854346752,-0.06586429476737976,-0.03725893422961235,0.004183013923466206,0.07029993087053299,0.01775546371936798,0.014035063795745373,-0.1182246282696724,-0.06216234341263771,0.040679946541786194,-0.044667553156614304,0.01216736901551485,0.06803978979587555,-0.03630659356713295,-0.0029937203507870436,1.3494940552023757e-33,-0.0024235860910266638,0.018200654536485672,-0.09318556636571884,0.023707274347543716,0.01948285847902298,-0.0006846722681075335,0.034621432423591614,0.05167124792933464,0.02592514641582966,0.10102035105228424,0.04469725862145424,-0.07723472267389297,-0.04415694624185562,0.03420906141400337,-0.09916406869888306,-0.021857475861907005,0.11800019443035126,0.0008700786856934428,-0.006611430551856756,-0.05988868325948715,-0.06835915893316269,0.12957917153835297,0.04383431002497673,-0.007799627259373665,-0.012985185720026493,0.03419969603419304,0.0727931410074234,-0.05678946152329445,0.007892400026321411,-0.08433225005865097,0.0478496290743351,-0.01072045136243105,-0.11269364506006241,0.007855831645429134,0.016462238505482674,-0.01471634116023779,-0.08134236186742783,0.03251166641712189,-0.06444898992776871,-0.016092123463749886,0.006497018970549107,-0.05144629627466202,0.027239011600613594,0.11194466054439545,-0.00020140122796874493,-0.035104118287563324,0.014627120457589626,-0.05263977497816086,-0.016444070264697075,0.012919135391712189,-0.061935778707265854,-0.0005077746463939548,0.023925313726067543,0.05714903399348259,-0.014744036830961704,-0.03181552141904831,-0.0319429375231266,0.013494497165083885,-0.044207099825143814,-0.007522705476731062,-0.10076820105314255,0.010355503298342228,-0.00716546131297946,0.06380366533994675,-0.024754535406827927,-0.08290138840675354,0.025060631334781647,0.03502853959798813,-0.03747953474521637,0.008595652878284454,0.010436320677399635,-0.013725624419748783,-0.10823345184326172,-0.03684206306934357,0.04075074940919876,0.0023518558591604233,-0.031682953238487244,0.045009054243564606,-0.03918003290891647,0.009924016892910004,0.02729984000325203,0.019122377038002014,0.053932033479213715,0.0794757530093193,-0.035367973148822784,-0.018220936879515648,0.04322050139307976,0.05704387277364731,0.021037433296442032,0.06704482436180115,-0.020510537549853325,0.03887574374675751,0.028397459536790848,0.04027806222438812,0.02177172340452671,-2.013236688469533e-8,-0.020574642345309258,0.020627832040190697,-0.06965041160583496,-0.030257292091846466,0.019928351044654846,-0.003525929292663932,0.051439154893159866,0.10600841790437698,-0.024160075932741165,0.05684174224734306,0.049996934831142426,0.02713802270591259,-0.005640874616801739,0.010215953923761845,0.023992620408535004,0.012037199921905994,0.13080120086669922,-0.045339278876781464,0.057560428977012634,-0.043416935950517654,-0.021999692544341087,0.013292650692164898,-0.014206396415829659,0.05934721976518631,0.004811827093362808,-0.0005808172863908112,-0.018419930711388588,-0.1064206138253212,-0.09974586963653564,0.07829225063323975,0.09484934061765671,-0.008673075586557388,-0.021945109590888023,-0.0058029587380588055,-0.030176693573594093,-0.0015722272219136357,0.03337080404162407,-0.00030827723094262183,-0.03751753270626068,0.04040394350886345,-0.04623599350452423,-0.043324243277311325,0.03832722455263138,0.017108682543039322,0.047513335943222046,-0.03511202707886696,0.09232867509126663,-0.009257751516997814,-0.019352344796061516,0.006573118735104799,0.044996023178100586,0.013087516650557518,-0.043847087770700455,0.02735571376979351,0.039773888885974884,-0.059989988803863525,0.07049006223678589,0.11352434009313583,-0.0422046072781086,0.06645257025957108,0.08242280036211014,-0.03425496816635132,0.014967427588999271,0.07606059312820435]},{"text":"This state of mind preyed upon my health, which had perhaps never entirely recovered from the first shock it had sustained.","book":"1984","chapter":51,"embedding":[0.007676682900637388,0.04591630771756172,0.07364422082901001,0.0958869606256485,0.11437611281871796,-0.03645102679729462,0.06995459645986557,0.04522862285375595,0.01333774346858263,-0.03630182519555092,0.03975530341267586,0.0032886958215385675,0.07215309143066406,0.02803145907819271,-0.049700040370225906,-0.025726648047566414,0.002468521473929286,-0.07432302087545395,-0.035493772476911545,0.13888169825077057,-0.0067395903170108795,0.13083286583423615,0.03869662806391716,0.007410580758005381,-0.06870845705270767,0.07660529017448425,-0.012085509486496449,0.011317730881273746,0.008765359409153461,-0.061093203723430634,0.0360012948513031,-0.0510934442281723,-0.09799028933048248,0.023223955184221268,-0.01199180819094181,0.03150743991136551,-0.033014751970767975,-0.003596947528421879,-0.013183612376451492,-0.04817776009440422,-0.050495829433202744,-0.011667264625430107,-0.021130502223968506,-0.04205278679728508,0.052278950810432434,0.02190534397959709,0.019911346957087517,0.021058108657598495,0.007617035880684853,-0.07756681740283966,-0.08787950873374939,0.028605759143829346,0.016519343480467796,0.020386552438139915,0.03556038439273834,0.004137592390179634,0.018192999064922333,0.03277987614274025,-0.12833501398563385,0.005350412800908089,-0.07593464106321335,0.003717393148690462,0.06506569683551788,-0.019117537885904312,0.05988096818327904,0.06830766052007675,-0.01310279406607151,0.004348843824118376,0.06399451196193695,0.02296784706413746,0.02097715623676777,-0.041210900992155075,0.04100416228175163,-0.015097865834832191,-0.008870371617376804,-0.00833454541862011,-0.018620934337377548,-0.08393453806638718,0.06605348736047745,0.10229626297950745,-0.0004935538163408637,0.0395064577460289,-0.022482318803668022,0.02597345970571041,-0.050114843994379044,-0.03714597970247269,0.08918678760528564,0.00144933070987463,0.012288138270378113,0.08082059770822525,-0.01747306063771248,-0.0826377272605896,0.027797091752290726,0.03428128361701965,0.07418634742498398,0.02419544942677021,-0.1102837398648262,-0.02010185830295086,-0.05974626913666725,0.030062509700655937,-0.025489365682005882,-0.038378410041332245,-0.06281019747257233,0.061740584671497345,-0.015200433321297169,-0.03231925517320633,-0.029613733291625977,-0.03622521087527275,-0.04971139132976532,0.04117324948310852,0.00032595134689472616,0.015476196072995663,0.027946937829256058,0.027873901650309563,-0.04301312565803528,0.05689557269215584,-0.08353441208600998,-0.0018671030411496758,0.010103513486683369,0.014417063444852829,0.08184504508972168,-0.004790707491338253,-0.0060512651689350605,0.01243381667882204,-0.028861578553915024,-0.04614764824509621,0.04070547595620155,-1.7320152534878065e-33,0.04819304868578911,-0.07241670042276382,0.025446046143770218,-0.009184282273054123,0.000624718377366662,-0.04350624233484268,-0.05831897258758545,-0.014851870946586132,0.06913848221302032,-0.025737730786204338,0.017134275287389755,-0.03195592388510704,0.06152810901403427,-0.0055659860372543335,-0.15647147595882416,0.030836012214422226,-0.0893000066280365,0.03783705458045006,0.047724224627017975,-0.05206666886806488,-0.01628303900361061,0.06871992349624634,-0.0016110067954286933,-0.03057079389691353,-0.04939650371670723,0.058282170444726944,-0.013770460151135921,0.017920132726430893,-0.01861046440899372,0.023471420630812645,-0.07714561372995377,0.08545264601707458,-0.029837263748049736,-0.05118440464138985,-0.016789745539426804,0.06863158196210861,0.0023533597122877836,-0.0563347190618515,-0.009528550319373608,-0.03682465851306915,0.032254163175821304,0.09432954341173172,0.08277572691440582,0.0022607825230807066,0.028140945360064507,-0.0760757327079773,-0.0837629958987236,0.02901674434542656,-0.17734849452972412,-0.0021406481973826885,0.04324524849653244,0.0014622941380366683,0.10298813134431839,0.0025974123273044825,-0.042678531259298325,-0.031210193410515785,0.04701758176088333,0.03377242758870125,-0.05803000554442406,0.02092859335243702,0.0355062261223793,-0.06000162661075592,-0.029338901862502098,-0.04954184964299202,-0.026266682893037796,-0.01822803169488907,-0.06946366280317307,-0.04371117055416107,-0.039619892835617065,-0.021526435390114784,-0.04130050912499428,-0.02231377176940441,0.018114227801561356,-0.05699646472930908,-0.03476173058152199,-0.07227039337158203,-0.010127222165465355,-0.010332172736525536,-0.07663145661354065,-0.06978040188550949,0.06491978466510773,-0.08071209490299225,-0.05693373829126358,0.14263541996479034,0.07799495756626129,0.028948742896318436,0.07920657098293304,-0.10432831943035126,-0.07070212811231613,-0.016981028020381927,0.02728889323771,0.014437812380492687,0.09475751221179962,-0.04678351432085037,-0.04407116398215294,5.3884647266369236e-34,0.03571746498346329,-0.013471495360136032,-0.014651218429207802,0.04629163816571236,0.020716337487101555,-0.03926510736346245,-0.05261635780334473,0.0751231461763382,-0.0702313631772995,0.01149790920317173,0.04449981451034546,-0.010220598429441452,0.012318827211856842,0.06917249411344528,0.007095807697623968,0.014383870176970959,0.022521138191223145,-0.023475302383303642,-0.04161054268479347,-0.01847362332046032,0.011461514048278332,0.05927324667572975,-0.003028389997780323,0.031083593145012856,-0.015012144111096859,0.08115134388208389,0.052284520119428635,0.03151443973183632,-0.01305914856493473,-0.021521029993891716,0.03706693649291992,0.017149634659290314,-0.0428820364177227,0.010062254033982754,0.03145869821310043,0.053170401602983475,-0.020847966894507408,-0.03804709389805794,-0.07103868573904037,-0.11769559979438782,-0.049085382372140884,0.04691968858242035,0.021876288577914238,0.07174890488386154,-0.023308061063289642,-0.048316098749637604,0.07272756099700928,-0.014601516537368298,-0.0007050173589959741,0.047918543219566345,-0.031805116683244705,0.028712322935461998,-0.03863183408975601,-0.05582500249147415,0.016402458772063255,-0.012608642689883709,0.09209999442100525,-0.07313977926969528,-0.014132920652627945,-0.035642847418785095,-0.060637444257736206,-0.037707652896642685,-0.06660322099924088,0.022779203951358795,0.030860526487231255,0.03732660785317421,-0.028918826952576637,0.05507899820804596,0.04267376288771629,-0.03732216730713844,0.04780774563550949,0.13116398453712463,-0.03163768723607063,-0.08273424208164215,-0.004028204828500748,0.05328673496842384,-0.07388503849506378,0.03539402037858963,-0.015281547792255878,-0.02071668952703476,-0.03442379832267761,-0.012180592864751816,-0.00040462592733092606,-0.06932272762060165,0.037955451756715775,0.014348779805004597,-0.011835768818855286,-0.024047933518886566,0.0008311177953146398,-0.0213763490319252,-0.060735419392585754,0.004704436287283897,0.019846167415380478,0.046728119254112244,-0.03404979035258293,-2.57726142649517e-8,-0.028282491490244865,0.041082702577114105,-0.015804704278707504,0.1320146918296814,0.0623357854783535,0.0299436766654253,0.036521729081869125,0.05452559515833855,-0.05943846330046654,-0.014421087689697742,-0.02554018422961235,0.01854623295366764,0.11176252365112305,0.04181846231222153,0.07835856080055237,0.0005376688204705715,0.005412279162555933,-0.03062237799167633,-0.07422205805778503,-0.03245310112833977,0.020834852010011673,0.028346030041575432,-0.017371267080307007,-0.024437466636300087,-0.052002452313899994,0.020357564091682434,0.031775008887052536,-0.04842676594853401,0.005205641966313124,-0.012760397978127003,-0.006669128779321909,0.030893268063664436,-0.04170688986778259,-0.01049269549548626,-0.10725116729736328,0.05672509968280792,0.05756880342960358,0.012726308777928352,0.01640697941184044,-0.09173846989870071,-0.016213970258831978,0.018466534093022346,0.043846793472766876,0.08378759771585464,-0.024366997182369232,-0.05247762054204941,0.0006375760422088206,0.03942641243338585,0.019743923097848892,-0.019652316346764565,0.056567151099443436,0.09647874534130096,-0.017717743292450905,0.10668104887008667,0.0459422804415226,0.017211714759469032,-0.05194300413131714,0.0029959501698613167,-0.07415572553873062,-0.006184595637023449,0.13502737879753113,-0.018514029681682587,-0.11946188658475876,0.0076049817726016045]},{"text":"I was often tempted, when all was at peace around me, and I the only unquiet thing that wandered restless in a scene so beautiful and heavenly—if I except some bat, or the frogs, whose harsh and interrupted croaking was heard only when I approached the shore—often, I say, I was tempted to plunge into the silent lake, that the waters might close over me and my calamities for ever.","book":"1984","chapter":51,"embedding":[0.04615553840994835,0.048557206988334656,0.05572708696126938,0.033033374696969986,0.0477580763399601,0.02009335719048977,0.12737880647182465,0.007175348699092865,0.008211789652705193,0.015523415058851242,0.010645016096532345,-0.06334884464740753,0.026539968326687813,0.005737879313528538,0.032978083938360214,-0.00140379776712507,0.03982473909854889,-0.016367962583899498,-0.004797717090696096,0.12562277913093567,-0.05804457142949104,0.09427250921726227,0.023056484758853912,0.00818853173404932,-0.0340653620660305,0.039178814738988876,0.033279672265052795,-0.02158098667860031,-0.0489749014377594,-0.027500072494149208,-0.03461170569062233,0.036197204142808914,-0.05313338339328766,-0.016820786520838737,0.03993089124560356,-0.027892310172319412,-0.08835519850254059,-0.024457721039652824,0.08176218718290329,-0.018168393522500992,0.0360969603061676,0.01485367026180029,-0.010883956216275692,0.02016201987862587,-0.027247214689850807,-0.06581457704305649,-0.04527635872364044,-0.028460603207349777,0.03691316023468971,0.02125103771686554,-0.025740336626768112,-0.0847872793674469,-0.019520437344908714,0.01742515154182911,-0.011126218363642693,-0.0009305460844188929,-0.03496982157230377,0.08048555999994278,0.05335598438978195,0.0015499884029850364,-0.02107294462621212,0.010682194493710995,0.024708880111575127,0.034477028995752335,0.030711818486452103,-0.011948407627642155,-0.06007971242070198,-0.030476441606879234,0.08742949366569519,0.03347298502922058,-0.00363745866343379,-0.003482818603515625,0.019171537831425667,-0.10892731696367264,-0.0723717212677002,-0.07978478074073792,0.026047075167298317,-0.0740942507982254,-0.024441121146082878,-0.02320668287575245,-0.0629991888999939,-0.07544302940368652,0.017964940518140793,-0.02658560872077942,-0.0012328842421993613,-0.018225310370326042,0.11691584438085556,-0.05007325857877731,0.11980094015598297,0.003389923833310604,-0.030730795115232468,-0.08032775670289993,-0.09342065453529358,-0.03384671360254288,-0.07807426154613495,-0.017113491892814636,-0.052398525178432465,-0.02133294753730297,-0.07080074399709702,0.07013128697872162,0.05690358206629753,0.02314426377415657,-0.00039762596134096384,-0.017052818089723587,0.0729600265622139,-0.008296252228319645,-0.09824629127979279,-0.030884958803653717,-0.018598739057779312,-0.059555720537900925,-0.05123501643538475,0.024629982188344002,0.10543711483478546,0.04906386882066727,-0.01811286248266697,-0.00048487127060070634,-0.02171844244003296,-0.07941707968711853,0.03874177485704422,0.04590928927063942,0.0674838051199913,-0.015309706330299377,0.03120937943458557,0.08316782861948013,-0.07599888741970062,-0.025615017861127853,-0.026972820982336998,-1.5751916337896435e-33,0.020113466307520866,-0.043867554515600204,0.029560202732682228,-0.04438032954931259,0.09144435077905655,-0.060065433382987976,-0.049431707710027695,-0.000004516476565186167,0.0062601519748568535,0.008840296417474747,-0.003892645938321948,0.014565916731953621,-0.03285742178559303,0.03524002432823181,-0.06034298986196518,0.025611547753214836,-0.013199586421251297,-0.024251926690340042,0.08103694021701813,-0.038513489067554474,-0.048240166157484055,0.02320045605301857,0.029578909277915955,-0.0554337240755558,-0.04860395938158035,-0.04052601009607315,-0.08569680899381638,-0.04699339345097542,0.043985698372125626,0.08279724419116974,0.0517406240105629,0.034164927899837494,0.0014906572178006172,-0.07455484569072723,0.0256365779787302,0.04419152811169624,-0.024256065487861633,-0.0500931553542614,-0.016424866393208504,-0.03238723799586296,-0.06787813454866409,0.008702574297785759,-0.01656705141067505,0.02143573760986328,-0.007856563664972782,0.016734126955270767,-0.02228204905986786,0.018869588151574135,-0.10387726873159409,0.006727412808686495,-0.04046202823519707,-0.029086284339427948,0.0983700379729271,0.04312420263886452,-0.006944290827959776,0.005252676084637642,0.08666756749153137,-0.020413052290678024,-0.024734292179346085,0.023544318974018097,-0.07274676114320755,-0.00025922595523297787,-0.029810955747961998,-0.09529139846563339,-0.027914632111787796,0.002300986787304282,0.010316023603081703,-0.04582958295941353,0.014672922901809216,-0.1047699972987175,-0.07868470251560211,0.005912623833864927,-0.07395114004611969,-0.06370476633310318,-0.014588570222258568,-0.08514738082885742,0.053221799433231354,-0.00443616695702076,0.05661483854055405,-0.02439310774207115,0.06484784930944443,0.0006243633106350899,-0.07270622253417969,0.09073375165462494,0.047377925366163254,-0.013797066174447536,0.0941280648112297,-0.15377137064933777,-0.006393761374056339,0.054968442767858505,0.01920522190630436,0.02547311596572399,0.08753212541341782,-0.09450467675924301,-0.021100709214806557,5.474173876846215e-34,0.027533413842320442,-0.03433796390891075,0.021566037088632584,0.10971802473068237,-0.02630031295120716,-0.031040668487548828,0.004582471679896116,-0.0243428535759449,-0.007198272738605738,0.024666979908943176,-0.05971416085958481,0.0855221301317215,0.06792502850294113,0.024482430890202522,0.03120591677725315,-0.03641596809029579,0.0923871397972107,0.03442789614200592,0.009557757526636124,-0.004561078734695911,-0.03849858045578003,-0.03329755738377571,0.059293232858181,-0.008457605727016926,-0.02122652716934681,0.07058210670948029,0.05200520157814026,-0.0330699160695076,-0.019131338223814964,-0.07913734763860703,0.019414249807596207,0.10639229416847229,0.014284218661487103,-0.07423160970211029,-0.01901903748512268,0.0542931854724884,0.053904492408037186,0.02588779106736183,-0.02039932832121849,-0.018396154046058655,0.004392871167510748,-0.03149314597249031,0.04820729047060013,-0.04054131358861923,-0.07479887455701828,0.028031708672642708,0.07422225922346115,0.0696626827120781,-0.07841052114963531,0.03230628743767738,0.01039273850619793,0.013101821765303612,-0.0201188363134861,-0.004081880208104849,0.016730183735489845,-0.06378696858882904,-0.007861731573939323,-0.03928758203983307,0.060762543231248856,-0.030764300376176834,-0.02758912369608879,0.03175996243953705,-0.10927340388298035,0.029603416100144386,-0.0034420376177877188,0.03503132984042168,-0.04243879020214081,-0.025131722912192345,-0.01564953848719597,-0.004899054300040007,-0.017475027590990067,-0.027104882523417473,-0.0268687903881073,0.03745780885219574,0.04696125164628029,-0.04450210556387901,-0.05015460401773453,-0.07301651686429977,-0.017757413908839226,-0.0496017262339592,-0.028793565928936005,0.025930460542440414,0.018525274470448494,0.015790900215506554,-0.029624532908201218,0.0066597480326890945,-0.06008322164416313,-0.04211549833416939,-0.04269615560770035,0.017151527106761932,-0.020990071818232536,-0.03157501295208931,0.03117169439792633,0.0361112616956234,0.053365856409072876,-4.7009898196392896e-8,0.006972471717745066,0.029372815042734146,0.05304959416389465,0.041729990392923355,0.13796661794185638,-0.032198067754507065,0.08093655854463577,0.016430489718914032,-0.08850346505641937,-0.006243487354367971,0.042333345860242844,0.05062272399663925,0.14038978517055511,0.10143418610095978,0.031964145600795746,0.08415036648511887,0.08736709505319595,-0.11582581698894501,-0.053549401462078094,0.01478062104433775,0.018451735377311707,0.06859377771615982,-0.013105449266731739,-0.05207657068967819,0.02345479279756546,0.025560135021805763,-0.01890244521200657,-0.05548793077468872,-0.018860943615436554,-0.027064189314842224,0.04258127138018608,-0.005521981045603752,-0.09099118411540985,0.04089183360338211,-0.031394604593515396,0.03375919535756111,0.045691292732954025,-0.07508207112550735,0.0057350764982402325,-0.04246683046221733,-0.010093558579683304,0.06028288975358009,0.023264452815055847,0.049908608198165894,-0.022745734080672264,0.034330882132053375,0.14396880567073822,-0.04618454724550247,-0.016196606680750847,0.04671081155538559,-0.05163121223449707,0.04034367576241493,0.0885760560631752,0.03001551702618599,-0.005463363602757454,-0.003505973145365715,-0.01702350564301014,0.010879087261855602,-0.1062498390674591,-0.013772432692348957,0.10053910315036774,-0.019888296723365784,-0.11756289750337601,-0.08961363881826401]},{"text":"I would have made a pilgrimage to the highest peak of the Andes, could I, when there, have precipitated him to their base.","book":"1984","chapter":52,"embedding":[0.039413683116436005,0.05818365886807442,-0.004899746272712946,0.015309685841202736,0.04627743735909462,-0.13507694005966187,0.006809068378061056,0.012472769245505333,-0.08898081630468369,0.03993503376841545,0.03585325554013252,-0.0245609600096941,0.045241355895996094,0.06604140251874924,0.07402865588665009,0.022288398817181587,-0.05506264045834541,-0.006774451583623886,0.024682817980647087,0.042985379695892334,-0.008896606042981148,0.06622406095266342,-0.052116770297288895,0.09166587144136429,-0.011343827471137047,0.00939563475549221,-0.03865456581115723,0.0767509862780571,0.01806880719959736,0.0037918954622000456,0.00023491712636314332,-0.05210277438163757,0.04308114945888519,-0.009599396958947182,-0.013672731816768646,0.06629656255245209,0.023228896781802177,0.014352686703205109,0.02183372713625431,-0.03758588433265686,0.05701113119721413,0.029733043164014816,0.07280978560447693,0.03685232251882553,-0.05199149623513222,-0.0830509141087532,0.014306443743407726,0.03601974621415138,0.007448548451066017,-0.004642144776880741,0.06108769029378891,-0.0300474651157856,-0.018728289753198624,-0.08331388235092163,-0.050956424325704575,0.027589846402406693,-0.020993653684854507,-0.10222355276346207,0.014934769831597805,0.055783070623874664,-0.11008100211620331,0.0534682497382164,-0.01310107484459877,-0.02370268851518631,0.08312632143497467,0.012870026752352715,-0.04567047581076622,-0.008094296790659428,0.032741691917181015,0.0825822576880455,0.08235327154397964,0.042179644107818604,0.010017971508204937,-0.020854206755757332,-0.11324208229780197,-0.045148782432079315,-0.0424295999109745,0.0023911066818982363,-0.09651702642440796,0.014729727059602737,0.03662511333823204,0.020757270976901054,0.01717231050133705,0.013020786456763744,-0.010279129259288311,0.03655378893017769,-0.017469078302383423,-0.05477292090654373,0.01738150604069233,-0.05009165778756142,0.05075224116444588,-0.009861151687800884,-0.0016059625195339322,0.025574717670679092,-0.07726198434829712,0.05439470335841179,-0.02599155716598034,0.006316203624010086,-0.07268208265304565,0.02780834399163723,0.06775867938995361,-0.01603190042078495,-0.09946613758802414,-0.02570178732275963,-0.04162858799099922,-0.004223535768687725,-0.08733346313238144,0.031155167147517204,-0.07211792469024658,-0.002563773188740015,-0.06539299339056015,-0.040168363600969315,0.052029214799404144,0.029547279700636864,-0.03928789496421814,0.019133206456899643,-0.00300736166536808,-0.019173461943864822,-0.14911985397338867,-0.06035614758729935,0.025229699909687042,0.036627478897571564,0.04727901890873909,0.03534621372818947,-0.01122637651860714,-0.1337529718875885,0.04395915940403938,-3.232424691743021e-33,0.09601012617349625,0.01842016540467739,-0.021298378705978394,0.026312652975320816,0.09934283047914505,0.011416756547987461,-0.09484799206256866,0.0036101113073527813,0.038239430636167526,-0.0984087660908699,0.029953917488455772,-0.01467143651098013,-0.02278829552233219,0.00836352538317442,-0.07303524017333984,0.07108179479837418,0.07577341794967651,-0.023920249193906784,0.06219309940934181,-0.04864009842276573,-0.003317951923236251,-0.08959757536649704,-0.040359385311603546,0.06534884124994278,0.012410569004714489,0.08816143125295639,-0.03331228345632553,-0.08889339119195938,-0.022013496607542038,0.01944749243557453,-0.03865823149681091,0.03854234516620636,-0.03214456886053085,-0.003826823318377137,0.027021730318665504,0.026408258825540543,0.03239777684211731,-0.013847523368895054,-0.056362174451351166,0.03124566189944744,0.09998422116041183,0.007130594924092293,0.0628405511379242,0.04212909936904907,0.0015693992609158158,-0.018365690484642982,0.04115553945302963,0.12813839316368103,-0.021870996803045273,0.0027481764554977417,-0.013903852552175522,0.0528155080974102,0.0027203361969441175,-0.10035953670740128,0.005064177792519331,0.00757634686306119,0.042696159332990646,0.05932534858584404,0.025830233469605446,0.06241520866751671,0.02712654508650303,-0.014910283498466015,0.005120506975799799,0.06991497427225113,-0.10566532611846924,-0.10295798629522324,-0.01918419636785984,-0.015234437771141529,-0.010929598473012447,0.028980961069464684,-0.01302243024110794,-0.038161829113960266,-0.0589868538081646,0.02276221476495266,-0.042431607842445374,-0.05656912922859192,-0.008881384506821632,0.08619684725999832,0.021245591342449188,-0.007998691871762276,-0.000849107454996556,0.00454299058765173,-0.01626812480390072,0.04661952331662178,0.05382277071475983,0.05768413841724396,0.111244797706604,-0.0026183025911450386,-0.1048939898610115,-0.016032887622714043,0.004428043495863676,0.08204004913568497,0.05516768619418144,-0.1293063908815384,-0.02657502144575119,9.570714292276788e-34,0.05723530054092407,0.017261136323213577,0.06780414283275604,0.0024091259110718966,-0.01368316076695919,-0.01639419235289097,-0.03891115263104439,0.009391255676746368,-0.013999265618622303,0.026337893679738045,-0.03269191086292267,0.05543117970228195,0.05579926073551178,-0.08304205536842346,0.009550390765070915,-0.005481997970491648,0.02068968676030636,0.016577379778027534,-0.049770720303058624,0.07289335131645203,-0.08243530243635178,-0.024272913113236427,-0.003360980888828635,-0.036574266850948334,0.004387788940221071,0.021049177274107933,0.048376843333244324,-0.055840812623500824,-0.04126773402094841,0.0028226319700479507,-0.0055687278509140015,0.06402387470006943,-0.10985221713781357,-0.018372289836406708,-0.008948439732193947,0.10686559230089188,-0.048632070422172546,-0.026499193161725998,-0.008296441286802292,-0.03487471491098404,0.011427504010498524,0.0564071349799633,0.07546854764223099,-0.0006353257340379059,0.011837401427328587,-0.01751203089952469,0.02827678807079792,0.03268589824438095,0.010601459071040154,-0.003681408241391182,-0.04833300784230232,-0.004844140261411667,-0.04803796112537384,0.03241189196705818,0.0027640643529593945,-0.0691659227013588,-0.010222320444881916,-0.06313370913267136,0.02510097436606884,-0.12970739603042603,-0.06609194725751877,-0.011698187328875065,-0.005451291799545288,-0.06132015958428383,-0.039085667580366135,-0.0663016065955162,-0.01252899318933487,0.08930374681949615,-0.026117509230971336,0.049684491008520126,0.021633507683873177,-0.025603318586945534,-0.029261885210871696,0.06295618414878845,0.022363709285855293,0.023508695885539055,-0.02865157648921013,0.03391660004854202,0.025571027770638466,-0.06671024858951569,-0.12679079174995422,0.021646378561854362,0.01218973658978939,-0.03309059143066406,0.0866430327296257,0.03561858832836151,-0.04605152830481529,-0.023025428876280785,0.1068432629108429,-0.010162788443267345,0.009300376288592815,-0.035659343004226685,0.05350050702691078,-0.07127515971660614,0.007351127918809652,-2.5436152739644058e-8,-0.028375115245580673,0.04851274937391281,-0.009217439219355583,0.04366140440106392,0.02040562964975834,0.0012454213574528694,0.040967199951410294,-0.0314597487449646,0.04190314933657646,0.09467491507530212,-0.07409895956516266,0.029435276985168457,0.04405321925878525,0.03394114598631859,-0.02957863360643387,0.07193093001842499,0.007052117958664894,-0.041370898485183716,-0.050712764263153076,0.0790877640247345,-0.04751997068524361,0.09483319520950317,-0.03652993589639664,-0.06336262077093124,0.002024356508627534,0.011167585849761963,-0.05051513388752937,-0.025548411533236504,0.022567547857761383,0.03001282922923565,-0.021871738135814667,-0.053103458136320114,-0.14023789763450623,-0.04929281771183014,0.05947677791118622,0.00433270214125514,-0.03550337627530098,-0.032932914793491364,-0.03254914656281471,-0.0893426313996315,0.03905077651143074,0.023621486499905586,-0.002040683524683118,0.09383656084537506,0.010347852483391762,-0.044215165078639984,-0.03931907191872597,0.04459185525774956,0.0036604308988898993,0.024455469101667404,-0.039968010038137436,0.03322991356253624,0.10185455530881882,0.01515889074653387,0.07161860913038254,-0.05934711918234825,0.022867554798722267,-0.057502541691064835,-0.09588190913200378,-0.0005979505949653685,0.07459019869565964,-0.060010842978954315,-0.0863705575466156,-0.05074869841337204]},{"text":"I could not consent to the death of any human being, but certainly I should have thought such a creature unfit to remain in the society of men.","book":"1984","chapter":52,"embedding":[0.026168910786509514,0.08518284559249878,-0.08549892902374268,0.04151808097958565,0.012937366962432861,-0.021806688979268074,0.015395954251289368,-0.030615685507655144,-0.050583768635988235,0.0856691226363182,-5.611034907815338e-7,0.01300320029258728,0.0040533049032092094,0.04271683469414711,0.020650386810302734,0.004565333481878042,0.03309059143066406,-0.056641630828380585,0.0006344526191242039,0.17989033460617065,-0.012086250819265842,0.10443580895662308,0.11436301469802856,-0.0468723364174366,-0.13280776143074036,-0.06556704640388489,0.001527471817098558,0.006666080094873905,0.014514464884996414,0.012097894214093685,-0.025674600154161453,-0.002104271436110139,0.01639895886182785,-0.007009716704487801,0.007053783163428307,-0.038228053599596024,0.02912396751344204,-0.043596502393484116,0.07196953892707825,0.05483315885066986,0.038532622158527374,0.026015732437372208,-0.01929176226258278,0.06981730461120605,-0.027636991813778877,-0.018903497606515884,-0.16652382910251617,-0.041493359953165054,0.009721764363348484,-0.08604269474744797,0.028635118156671524,-0.025662826374173164,0.03806207329034805,0.007214345503598452,-0.11129231750965118,-0.08267027139663696,-0.01701861061155796,-0.0670752301812172,-0.018014179542660713,-0.08310937136411667,-0.004207009915262461,0.017576269805431366,0.05076339468359947,-0.01960958167910576,0.007107570767402649,-0.004114853218197823,-0.047112055122852325,-0.061508093029260635,0.024765808135271072,0.08719798177480698,0.01922455243766308,-0.02294439636170864,-0.032906558364629745,0.007094628177583218,-0.09936590492725372,-0.06771335005760193,0.03547852486371994,-0.03475113585591316,0.024860892444849014,0.01874217391014099,-0.015356454066932201,0.04440504312515259,0.06511463224887848,0.004555904306471348,0.02403845451772213,-0.012299157679080963,0.006539914291352034,-0.03991391882300377,-0.0455128513276577,0.11804459989070892,-0.06738664954900742,0.026894886046648026,0.10488526523113251,-0.016127487644553185,0.006658609956502914,0.04173353686928749,-0.03785667568445206,0.05915990099310875,-0.06926001608371735,0.009319235570728779,-0.02203846536576748,-0.04606271907687187,-0.11467599868774414,0.012674904428422451,0.013916753232479095,0.020902840420603752,-0.02134195901453495,-0.003029138781130314,0.022229164838790894,0.028443897143006325,-0.02703317068517208,-0.03364914283156395,0.017773984000086784,0.07441756874322891,0.06673114746809006,0.017964135855436325,-0.09684944152832031,-0.04881197586655617,0.06358274817466736,-0.05240808427333832,0.030097149312496185,0.02186959609389305,-0.03832203894853592,0.02246924862265587,0.06822432577610016,-0.07512082904577255,-0.018009286373853683,-4.068495048765373e-33,-0.05223296210169792,-0.06899868696928024,0.01944698393344879,-0.09584716707468033,0.04406638815999031,0.06658466905355453,-0.054251398891210556,-0.005275215953588486,0.04477229341864586,-0.0007931069121696055,0.08363813906908035,-0.15260182321071625,-0.0539204478263855,-0.04312965273857117,-0.06966911256313324,0.05497084930539131,0.02705821953713894,0.04467010870575905,0.00423940597102046,-0.004125867038965225,0.025913497433066368,0.04564497247338295,-0.018142664805054665,0.0014411506708711386,-0.10389355570077896,0.02645660936832428,-0.0531732402741909,-0.012030978687107563,0.07544858008623123,0.043557312339544296,-0.024829348549246788,-0.060220927000045776,0.009863357059657574,0.004677027463912964,-0.03248792141675949,0.025584399700164795,-0.040459927171468735,0.0415663979947567,-0.0643947646021843,0.029315032064914703,0.023412292823195457,0.01369345560669899,0.011868621222674847,-0.014061806723475456,-0.010494712740182877,-0.02949463203549385,0.004371505230665207,-0.0011515292571857572,-0.07075747102499008,0.02065879851579666,-0.05433971807360649,0.04565643519163132,0.05155479162931442,-0.04068170487880707,0.02023581601679325,0.06639077514410019,0.015617785044014454,0.07933486253023148,-0.055557042360305786,-0.021921494975686073,0.022535838186740875,0.017651159316301346,0.007105475291609764,-0.0017837429186329246,0.019314544275403023,-0.1416175812482834,-0.007004817482084036,-0.050524964928627014,-0.0919775739312172,-0.0693090483546257,-0.04659528285264969,0.016624704003334045,-0.05335582047700882,0.007146642077714205,-0.09842343628406525,-0.08104264736175537,0.09562215954065323,0.016150932759046555,-0.043486542999744415,-0.11050534248352051,0.0556938610970974,0.07513024657964706,-0.06136234477162361,-0.05367550998926163,0.04454692453145981,0.01026082132011652,0.08281783759593964,-0.022906705737113953,0.021600991487503052,0.04755864664912224,0.06866024434566498,-0.06637295335531235,-0.024830568581819534,-0.04136445373296738,-0.08387172222137451,8.227275777855574e-34,0.019233373925089836,-0.06159668788313866,0.03647356107831001,0.01824023574590683,0.03599843382835388,-0.0030549762304872274,-0.048957932740449905,0.030853526666760445,0.000020835701434407383,-0.02158398926258087,0.038484614342451096,0.001969505799934268,0.0812394842505455,0.027548838406801224,0.10246989130973816,0.009378633461892605,-0.0700315460562706,-0.0675768181681633,0.01682291366159916,-0.014312048442661762,-0.08810847997665405,0.009528920985758305,0.013995598070323467,-0.005528577137738466,-0.02536768652498722,0.04249217361211777,0.002915045479312539,0.06269383430480957,-0.02367408014833927,-0.04335113242268562,0.041957635432481766,0.028464363887906075,-0.024936886504292488,-0.02611469477415085,0.06976450234651566,-0.06641187518835068,0.05424261838197708,0.058967217803001404,0.11029642820358276,-0.021016255021095276,0.008977821096777916,0.03625592589378357,-0.06559174507856369,0.0026076496578752995,0.04621841758489609,0.03379223495721817,0.02290145866572857,-0.015088007785379887,0.021721506491303444,-0.012302462011575699,-0.11231139302253723,0.019571468234062195,0.01222890056669712,-0.08461693674325943,-0.01982482708990574,-0.07159695774316788,0.04496711865067482,-0.03370252251625061,0.10103724896907806,-0.06393812596797943,-0.04875817894935608,0.02597937174141407,-0.04404153302311897,0.047004807740449905,-0.02457093819975853,0.02723139338195324,-0.06197018921375275,0.0260884128510952,-0.04187745973467827,-0.01133007649332285,0.09850101172924042,-0.022501332685351372,-0.06505288928747177,0.0822657123208046,0.057994093745946884,-0.052614662796258926,0.015406693331897259,-0.009077797643840313,0.04211261123418808,-0.07718345522880554,0.04637795686721802,-0.049091700464487076,0.01771056465804577,0.037683360278606415,0.03380502387881279,-0.03581659123301506,-0.02235599234700203,-0.015595326200127602,-0.014228163287043571,-0.03827601298689842,-0.06791400164365768,-0.06791086494922638,0.030090030282735825,-0.006591626442968845,-0.0005585873732343316,-2.9553904212775706e-8,-0.031236248090863228,0.018198465928435326,0.020581819117069244,0.009003015235066414,0.03771473839879036,0.01737128011882305,0.03394334018230438,-0.09847281128168106,-0.012189936824142933,0.0813184306025505,-0.03568209335207939,-0.00011204567272216082,0.05520186200737953,0.04673537611961365,0.04594604671001434,0.006552914623171091,0.039072100073099136,-0.0897926539182663,0.008130689151585102,0.03198758140206337,-0.03728781268000603,0.012456533499062061,-0.005428713746368885,-0.02319834753870964,-0.03856927528977394,0.05042601004242897,0.053107623010873795,-0.07771006226539612,-0.00919503066688776,0.06096991151571274,-0.011899730190634727,0.05598919838666916,-0.06079968437552452,0.060688890516757965,-0.026706166565418243,-0.025465959683060646,-0.030651269480586052,0.008203764446079731,0.061440929770469666,-0.038172390311956406,0.07786795496940613,0.03334973379969597,0.007362049538642168,0.041265204548835754,0.10197165608406067,-0.014729886315762997,0.07078584283590317,0.04410850256681442,-0.024735085666179657,0.03227420523762703,0.026174340397119522,0.027689160779118538,0.05182064697146416,0.06632056087255478,0.03419223427772522,-0.045914728194475174,-0.017185470089316368,0.03153851628303528,-0.13053129613399506,-0.0025846632197499275,0.10568636655807495,0.003735720179975033,0.02102360501885414,-0.024323008954524994]},{"text":"Remember the friends around you, who centre all their hopes in you.","book":"1984","chapter":53,"embedding":[0.023421790450811386,-0.006556459702551365,0.031181611120700836,-0.02109675295650959,0.05231298878788948,0.017876412719488144,0.05947988107800484,-0.0013196528889238834,0.05573922395706177,-0.09482008963823318,-0.03213658183813095,0.02544163540005684,0.033434536308050156,-0.030556410551071167,-0.04062586650252342,-0.018464891240000725,-0.09477841109037399,-0.07385265827178955,-0.10639272630214691,-0.07300169765949249,-0.05491146445274353,-0.025660667568445206,0.014771181158721447,-0.0007643182761967182,-0.042787015438079834,-0.027117229998111725,0.01107078418135643,-0.011102166026830673,-0.042673151940107346,0.06911764293909073,0.042425207793712616,-0.014350366778671741,-0.013618981465697289,0.028993435204029083,-0.025372110307216644,0.06899838894605637,-0.09367230534553528,-0.06839285045862198,0.01637214608490467,-0.00043487135553732514,0.006155830807983875,0.030087577179074287,0.07499445229768753,0.04356396943330765,-0.03476253151893616,-0.00953671894967556,0.044846873730421066,-0.03470544517040253,-0.01673617586493492,-0.06650346517562866,0.02491728775203228,-0.01589907705783844,-0.05647730454802513,0.01992088556289673,0.05411383882164955,0.07544577866792679,0.04564240202307701,0.019358476623892784,0.03736289218068123,-0.08538831770420074,-0.11559607833623886,-0.0903429388999939,0.001089485827833414,-0.00790836475789547,-0.06280621886253357,0.02999204583466053,0.047522831708192825,0.147506982088089,-0.06358041614294052,-0.0038740516174584627,-0.014323071576654911,0.03340666741132736,0.05888085067272186,0.033489424735307693,0.03110463172197342,0.06823988258838654,-0.009487949311733246,-0.10899826884269714,0.013527078554034233,0.09648459404706955,-0.019860239699482918,0.005580248311161995,0.001367296208627522,-0.019207153469324112,-0.006401540711522102,0.0022852534893900156,0.07604312896728516,-0.09646055847406387,0.08332086354494095,0.058508530259132385,-0.10327263921499252,-0.016586359590291977,-0.09351006895303726,-0.002933085197582841,-0.04210447147488594,0.022276652976870537,0.016742568463087082,-0.03653891757130623,-0.11249331384897232,0.08727746456861496,0.029148122295737267,-0.024724651128053665,0.057307109236717224,0.03309579938650131,0.04814932867884636,0.04869889095425606,-0.0711982473731041,-0.0016309998463839293,0.0005194448167458177,-0.0522070974111557,-0.05037260800600052,0.03507767990231514,0.031341422349214554,0.007252218667417765,-0.03510180860757828,-0.050031088292598724,-0.007756372448056936,-0.008958783000707626,-0.04587683081626892,0.013120383024215698,-0.04977985471487045,0.08274442702531815,0.04695957526564598,-0.015486311167478561,-0.04700678586959839,-0.018591174855828285,-0.007978832349181175,-5.1554151655692316e-33,0.031187526881694794,-0.009426749311387539,-0.015940947458148003,0.05080016329884529,0.021664177998900414,-0.019526273012161255,-0.06935244053602219,0.0575823150575161,-0.055194105952978134,-0.10908681899309158,-0.0025318795815110207,0.02846512943506241,-0.01228896714746952,-0.07767033576965332,-0.0472327284514904,-0.002148302737623453,-0.021081725135445595,0.029539279639720917,0.00044536733184941113,0.036223672330379486,-0.03584037348628044,-0.002345062093809247,0.021851874887943268,-0.038023464381694794,-0.023695912212133408,-0.012698250822722912,0.0194682814180851,0.020455878227949142,0.09328127652406693,0.01599225029349327,0.051585812121629715,0.106134794652462,-0.009201006963849068,-0.04366074502468109,-0.028850844129920006,0.1558525115251541,-0.017877185717225075,-0.0441436804831028,-0.019637392833828926,-0.019635222852230072,0.05010174959897995,0.042438142001628876,-0.02060946822166443,-0.062165528535842896,0.017944876104593277,0.01905711181461811,0.007394435349851847,-0.04280298203229904,-0.061388932168483734,-0.05735040828585625,0.0005645104101859033,-0.014613961800932884,-0.028458096086978912,0.01201795507222414,-0.03899305686354637,-0.040019672363996506,0.075176902115345,0.03309521824121475,0.09043306112289429,-0.041002340614795685,0.003860372817143798,-0.06313800066709518,-0.041693538427352905,-0.05657380819320679,0.0038352059200406075,0.11485446244478226,-0.011569220572710037,-0.004468892700970173,0.07585769891738892,0.014977479353547096,0.009285531006753445,0.09001745283603668,-0.024443481117486954,-0.012726034969091415,-0.0651201605796814,0.031089281663298607,-0.011014636605978012,-0.03168627247214317,0.038244809955358505,-0.03899009898304939,0.09149644523859024,-0.015883801504969597,-0.15656141936779022,0.026271333917975426,0.07410694658756256,-0.04670742154121399,0.06085065379738808,-0.11556132882833481,-0.06887461990118027,0.04312038794159889,-0.030059704557061195,0.010588940232992172,0.12147455662488937,0.009139194153249264,-0.11990896612405777,3.026526937962912e-33,0.09063952416181564,-0.00021860604465473443,0.06861796230077744,0.027126969769597054,0.06071173772215843,-0.04637938365340233,0.004952229559421539,-0.04755180701613426,-0.007440831046551466,0.08617185056209564,-0.019237320870161057,-0.029714573174715042,0.128655806183815,0.05074622109532356,-0.047312770038843155,-0.051295824348926544,0.0801968201994896,0.011595256626605988,0.010686234571039677,-0.0657161995768547,0.005377926863729954,0.027776693925261497,-0.006453532725572586,0.09490209817886353,-0.005832969211041927,0.02472999505698681,0.07359204441308975,-0.08662295341491699,-0.0458345040678978,-0.11097849160432816,0.03345232456922531,-0.016190536320209503,-0.12419864535331726,0.0030168176162987947,0.01849846914410591,0.03863011673092842,-0.05587516352534294,-0.026000164449214935,-0.05883453041315079,-0.056245528161525726,-0.03849532827734947,-0.04790794849395752,-0.06525959819555283,-0.027812529355287552,-0.05507677420973778,0.0011563613079488277,0.14915819466114044,0.021542713046073914,-0.02624683268368244,0.023803802207112312,-0.050396110862493515,0.05683264136314392,-0.0064432960934937,-0.028549736365675926,-0.007633637171238661,-0.03832177445292473,0.007265232037752867,-0.022731639444828033,0.08426712453365326,0.004464261699467897,-0.08188418298959732,-0.017458301037549973,-0.023931311443448067,0.11149462312459946,-0.009254016913473606,0.001891398336738348,-0.057277336716651917,-0.018426604568958282,0.006899035070091486,0.06422557681798935,0.025106092914938927,0.09846938401460648,-0.04544097185134888,-0.007288014050573111,-0.024509210139513016,-0.006496714428067207,-0.003051845822483301,0.002487968187779188,-0.019774634391069412,-0.021586144343018532,0.04078821837902069,0.02567342109978199,0.03795415908098221,0.006709553301334381,0.020381631329655647,0.031164437532424927,0.047738999128341675,0.05204610154032707,0.02555226907134056,0.019921109080314636,-0.04621019586920738,0.005958970170468092,0.03961990028619766,-0.03246007114648819,0.03010880947113037,-2.4662035968958662e-8,-0.04916245862841606,-0.0792560875415802,-0.006029801908880472,0.05449080094695091,0.023305879905819893,0.008818869479000568,0.006988405250012875,0.026241105049848557,-0.011574380099773407,0.018515346571803093,0.020099328830838203,0.013253270648419857,-0.006982560269534588,0.03670508414506912,0.04964369907975197,0.08783496916294098,0.06560805439949036,-0.01031629927456379,-0.019569743424654007,0.02259962260723114,-0.015121818520128727,-0.006864853668957949,-0.014030982740223408,-0.003910626284778118,0.002208191668614745,-0.03415233641862869,-0.02310383878648281,-0.015523060224950314,-0.08879700303077698,0.07462244480848312,-0.06600165367126465,-0.07750290632247925,-0.014571476727724075,-0.038228053599596024,0.01693691872060299,0.08104202151298523,0.04514100402593613,0.0017603805754333735,0.11297589540481567,0.06433273106813431,0.04728228598833084,0.0023839720524847507,0.05042766034603119,0.026726776733994484,-0.04231272637844086,0.09332744777202606,0.09487955272197723,-0.0036685254890471697,-0.010626081377267838,-0.07851718366146088,0.04394472390413284,0.014250225387513638,0.005285387393087149,0.02157800830900669,0.030699649825692177,-0.017947757616639137,-0.03321465104818344,0.07842659205198288,0.01864766888320446,-0.043272022157907486,0.03359585255384445,0.0061589996330440044,-0.10807386785745621,-0.014090822078287601]},{"text":"Six years had passed since then: _I_ was a wreck, but nought had changed in those savage and enduring scenes.","book":"1984","chapter":53,"embedding":[-0.022509219124913216,0.038296762853860855,0.10836467146873474,0.015856759622693062,0.04641688987612724,0.0849912017583847,-0.08370206505060196,0.004463336896151304,-0.020533721894025803,-0.06922309845685959,-0.014488441869616508,0.04671064391732216,-0.007831147871911526,-0.018323451280593872,-0.035986196249723434,0.039990030229091644,-0.06966984272003174,-0.05903472378849983,-0.05491691082715988,0.059474341571331024,-0.026696372777223587,0.15188196301460266,-0.00389549951069057,0.030589615926146507,0.02916237711906433,-0.03164167329668999,-0.018876833841204643,0.08281997591257095,0.00255469954572618,0.0025628043804317713,0.04311056807637215,0.1009213924407959,-0.04812080040574074,0.03635015711188316,0.010463419370353222,0.07426992803812027,-0.00615663779899478,0.0023978487588465214,-0.0588332936167717,-0.0678277462720871,-0.0635886862874031,-0.02205839194357395,-0.032737117260694504,-0.041641075164079666,0.03399581089615822,-0.07968717068433762,-0.033194731920957565,-0.05918063968420029,0.02550879679620266,-0.026696057990193367,-0.07026313245296478,-0.02119077928364277,0.009728803299367428,-0.03850847855210304,0.008517309091985226,-0.06739875674247742,-0.051138751208782196,-0.019063735380768776,0.0050879232585430145,-0.000038936861528782174,-0.02535524219274521,0.009453155100345612,0.047096848487854004,-0.00927640963345766,-0.004457392264157534,-0.020090876147150993,0.012598489411175251,-0.02450893633067608,-0.002983515150845051,0.14057661592960358,-0.07589858025312424,-0.009926825761795044,0.029452180489897728,-0.1048656776547432,-0.09707970917224884,-0.03849881887435913,0.0006768213352188468,-0.042111415416002274,0.030216265469789505,-0.06307557225227356,-0.033705588430166245,-0.05809797719120979,-0.05200564116239548,0.008677500300109386,-0.01391387265175581,-0.042550843209028244,0.020624229684472084,-0.03523779660463333,-0.08379708975553513,0.08377200365066528,-0.010868135839700699,-0.017488446086645126,0.07259967923164368,0.025990471243858337,0.01800580509006977,-0.04353193938732147,-0.05923597142100334,0.06745970994234085,0.09244578331708908,0.06812272220849991,-0.037396445870399475,-0.023939432576298714,-0.08455553650856018,0.011825867928564548,0.05746518820524216,0.02071552723646164,-0.004347860813140869,0.06194081902503967,-0.08031480014324188,0.005899724084883928,0.0022511756978929043,-0.02699746936559677,0.057995088398456573,-0.02658403478562832,0.04182964190840721,-0.017362168058753014,-0.061047665774822235,0.004392039962112904,0.025492819026112556,0.12345325946807861,0.09313850104808807,0.08460094779729843,-0.047141484916210175,0.04570780694484711,-0.08549195528030396,-0.03889748826622963,0.13648384809494019,-1.6971006835454844e-33,0.010065816342830658,-0.06616602838039398,-0.011874627321958542,0.08462049067020416,-0.004386130720376968,0.013695226982235909,-0.06632682681083679,0.00501187052577734,-0.01940126344561577,0.0295857023447752,0.049948785454034805,0.020911255851387978,-0.06649460643529892,-0.10013255476951599,0.046815503388643265,0.022177422419190407,-0.08541641384363174,-0.027598755434155464,0.023167336359620094,0.001566174440085888,-0.07663099467754364,0.03292114660143852,-0.029734773561358452,-0.04046042636036873,-0.008251345716416836,0.03653928264975548,0.039243318140506744,0.05690845847129822,-0.07528268545866013,-0.006978352554142475,-0.04386597499251366,0.07864486426115036,0.07686951756477356,-0.0321359746158123,0.0146050825715065,-0.005493470001965761,-0.05715310946106911,0.0015873723896220326,-0.017939575016498566,0.015163790434598923,-0.0453348234295845,0.015512307174503803,-0.11024955660104752,-0.012363864108920097,-0.0024278643541038036,0.0013399573508650064,0.04967473819851875,0.06185346469283104,-0.021247267723083496,0.03143896907567978,0.016092009842395782,0.006984848063439131,0.005059852730482817,-0.004637394566088915,0.008290370926260948,0.05511312186717987,0.004385111853480339,-0.007048893254250288,0.014851926825940609,-0.0388651005923748,0.11274633556604385,-0.007707847747951746,0.04684625566005707,-0.022183900699019432,0.02653796412050724,0.08165448158979416,0.03676486015319824,0.03846924751996994,-0.05023067444562912,0.011865674518048763,-0.10139534622430801,-0.021124454215168953,-0.07402800023555756,0.01553098764270544,-0.01779734157025814,-0.09906961023807526,-0.019344208762049675,-0.008172299712896347,-0.021392518654465675,-0.020749077200889587,0.019632957875728607,0.038795359432697296,-0.07574725896120071,0.007863236591219902,0.05492575094103813,-0.01516538206487894,0.059804026037454605,-0.12227386981248856,-0.009553469717502594,-0.033113785088062286,0.05929133668541908,-0.08789540082216263,-0.01093911100178957,-0.08336497098207474,0.021814629435539246,-1.8272760299814984e-33,0.054827578365802765,0.019441723823547363,0.01356699038296938,0.07676888257265091,0.016255764290690422,-0.07614193856716156,-0.05526384338736534,0.09703469276428223,0.008453607559204102,-0.04574848338961601,-0.006137165240943432,0.023370642215013504,-0.01851843111217022,-0.009374731220304966,-0.04727187380194664,0.03993246704339981,0.019728127866983414,-0.11851753294467926,-0.020959125831723213,0.01189978513866663,0.02967792935669422,0.005476746242493391,-0.10249927639961243,-0.055309370160102844,-0.024903137236833572,0.07305333763360977,0.014174280688166618,-0.008923321962356567,0.023008955642580986,-0.10198565572500229,0.0315762497484684,-0.02257176861166954,-0.007018627133220434,-0.011502864770591259,0.04645146429538727,0.014934869483113289,0.052739087492227554,-0.07825788110494614,-0.11503398418426514,-0.03182743489742279,0.00380629301071167,-0.007693757768720388,-0.0023545988369733095,0.09376777708530426,0.009462823159992695,-0.0643499493598938,-0.0013831164687871933,0.04199519380927086,0.03712878376245499,0.004033321049064398,-0.08416469395160675,0.007836745120584965,0.02633093297481537,-0.019662216305732727,-0.02602219022810459,-0.04036733880639076,0.09267576038837433,-0.09499206393957138,0.009493781253695488,-0.0012860988499596715,-0.039444442838430405,-0.0255337655544281,-0.03871627524495125,-0.017130311578512192,-0.0028252059128135443,0.002551040844991803,-0.00901133194565773,-0.0190530214458704,-0.14957553148269653,0.0031240731477737427,-0.007036317605525255,-0.045856740325689316,-0.13655416667461395,-0.02862642891705036,-0.021363452076911926,-0.055276788771152496,-0.0732603371143341,0.06148752570152283,-0.03379032388329506,-0.001375809428282082,-0.027226293459534645,-0.0346100814640522,-0.004419324919581413,0.059710659086704254,0.042185910046100616,0.13211318850517273,0.017150934785604477,-0.03747541084885597,0.05469517409801483,0.004398539196699858,0.03339318931102753,-0.013412297703325748,0.008062810637056828,-0.06518030911684036,-0.08640207350254059,-2.9574866999837468e-8,-0.007479540538042784,0.04520021378993988,-0.07891981303691864,-0.05722927674651146,0.05502989515662193,-0.019757259637117386,0.01300609577447176,0.08056198805570602,-0.04088861867785454,0.1017441675066948,0.02305818721652031,0.09261757880449295,0.06774682551622391,-0.012267675250768661,-0.03989098221063614,0.022587453946471214,0.013437675312161446,-0.04324708133935928,-0.00645581865683198,0.026761649176478386,-0.025346728041768074,0.01237421203404665,0.0182106364518404,-0.011727279052138329,-0.04048237204551697,0.03632078319787979,0.0011510668555274606,0.009768643416464329,-0.018200304359197617,0.000026779614927363582,0.07443733513355255,0.05035270377993584,-0.0350615456700325,-0.018147937953472137,-0.03340224549174309,-0.019757140427827835,0.08087897300720215,0.011623530648648739,-0.019284166395664215,0.014994712546467781,0.013673365116119385,0.09882761538028717,0.016274012625217438,0.05297381430864334,0.04408298432826996,0.054278817027807236,-0.007060025818645954,0.03488403186202049,-0.04154256358742714,-0.027967723086476326,0.07631096243858337,0.07808730006217957,-0.051081202924251556,0.1015578880906105,0.07770663499832153,-0.011132297106087208,0.022206658497452736,0.06818734109401703,-0.032394614070653915,0.04669702798128128,0.12699376046657562,-0.04068204388022423,0.028413666412234306,-0.014674567617475986]},{"text":"This valley is more wonderful and sublime, but not so beautiful and picturesque as that of Servox, through which I had just passed.","book":"1984","chapter":54,"embedding":[0.068509042263031,0.010552365332841873,0.08539348840713501,0.005093253217637539,-0.017272206023335457,-0.06993494182825089,-0.024323586374521255,-0.05649362877011299,-0.03638140484690666,-0.004759526811540127,-0.03600916266441345,0.016632381826639175,0.062211133539676666,-0.0007218291284516454,0.0536106675863266,-0.00545088155195117,0.015412134118378162,-0.09796382486820221,0.07241284102201462,0.07374987006187439,0.06460060924291611,0.004646180663257837,0.012860918417572975,0.03244928643107414,0.015054497867822647,0.09174223989248276,-0.05275688320398331,0.08615906536579132,0.026343416422605515,-0.07850813120603561,-0.05216624587774277,0.12797102332115173,-0.08384054154157639,-0.05826850235462189,0.025601856410503387,0.09979402273893356,0.06108415871858597,-0.03953050822019577,-0.05243775621056557,-0.018246063962578773,-0.024202439934015274,0.01099151000380516,0.020138777792453766,-0.044285502284765244,-0.00803475920110941,-0.028305064886808395,0.03986823931336403,-0.12560144066810608,0.09193531423807144,-0.00925990380346775,-0.08775662630796432,-0.07052955031394958,0.02041022479534149,-0.04979528486728668,-0.07474186271429062,0.042279262095689774,-0.0077843875624239445,-0.03944620490074158,0.022022835910320282,-0.0398440882563591,-0.09835540503263474,0.02156984619796276,-0.04750813543796539,-0.01144438050687313,0.09883016347885132,-0.06257236748933792,-0.06318273395299911,-0.07222537696361542,0.015894833952188492,-0.04708293080329895,-0.031062711030244827,0.03288140520453453,0.03511305898427963,0.020171046257019043,-0.06836365163326263,-0.05020105093717575,0.021963313221931458,-0.03483693674206734,-0.05808093026280403,-0.007622097618877888,0.06677941977977753,0.061972618103027344,0.008964958600699902,0.10172080993652344,-0.0028452833648771048,-0.010438812896609306,0.01569404825568199,-0.030826551839709282,0.13376489281654358,-0.0030163838528096676,0.0007160727982409298,-0.053600527346134186,-0.09660369902849197,0.008496426045894623,0.05258650332689285,-0.034249868243932724,-0.06059498339891434,0.00925368070602417,-0.017711611464619637,0.024498136714100838,0.040271271020174026,-0.03671293705701828,0.0029692905955016613,-0.04451146721839905,0.06420248746871948,0.014398026280105114,0.002273725811392069,0.0679876059293747,0.03229382634162903,-0.013012819923460484,-0.005744379013776779,-0.04555029422044754,0.02722979336977005,-0.019805781543254852,-0.007261662278324366,0.049517590552568436,-0.003320623654872179,0.037041075527668,-0.06711781769990921,0.045299872756004333,0.022576631978154182,-0.009581194259226322,0.004732439294457436,0.07689804583787918,0.08204512298107147,-0.0463334284722805,-0.0054698181338608265,-3.74093620106905e-33,0.00872090458869934,-0.00011679086310323328,0.028408803045749664,0.012911339290440083,0.08029398322105408,-0.046107158064842224,-0.014467982575297356,-0.05124618485569954,-0.1171472817659378,-0.03826920688152313,-0.037972066551446915,-0.02922043763101101,-0.0718761757016182,0.049401141703128815,0.04737561196088791,-0.06753123551607132,-0.012224828824400902,-0.04882846400141716,-0.016468919813632965,-0.018235038965940475,-0.021066097542643547,-0.0035100223030894995,-0.002726042876020074,-0.02599441632628441,-0.09525569528341293,-0.01641806587576866,-0.0018682095687836409,0.09950920194387436,-0.05733893811702728,0.049054570496082306,0.02783660776913166,0.01935589499771595,0.06761067360639572,-0.003232344053685665,0.009616519324481487,0.05631494149565697,-0.06615665555000305,-0.04723568260669708,-0.006463984027504921,0.07114337384700775,-0.01870524138212204,0.03508637845516205,-0.03367156162858009,0.05691132694482803,-0.032759010791778564,-0.04603831097483635,0.06497713178396225,-0.006003594491630793,-0.01293180137872696,0.03180428594350815,-0.01725955121219158,0.0819748193025589,-0.007284026127308607,0.04640832543373108,-0.03480936959385872,0.03379559889435768,0.03867034614086151,0.0060242475010454655,-0.002594078192487359,0.04590512812137604,0.02536603808403015,-0.01866442710161209,0.060445547103881836,-0.05572691932320595,0.03011791966855526,-0.023548582568764687,0.0696268156170845,0.09919315576553345,-0.001998558873310685,0.06855997443199158,-0.07994028180837631,0.00617492850869894,0.011458399705588818,0.010849394835531712,0.05096513032913208,-0.02066439762711525,-0.06933438777923584,-0.011936167255043983,0.14606846868991852,-0.005811780225485563,-0.04387500509619713,0.06154602766036987,-0.13424836099147797,0.0840572714805603,-0.0032276117708534002,0.003999113570898771,0.07582742720842361,-0.08749456703662872,-0.13869544863700867,-0.10458729416131973,-0.03591206297278404,-0.07404770702123642,0.09042449295520782,-0.06471424549818039,-0.04968550056219101,-1.1744212387003851e-35,0.037546027451753616,-0.0007899876218289137,0.00984515156596899,0.03935551643371582,-0.08685252070426941,0.012711552903056145,0.02454947866499424,0.029711507260799408,-0.03270702064037323,0.12199117988348007,-0.018803877755999565,0.05442238226532936,0.052208829671144485,0.007634197827428579,-0.03012906201183796,0.005765084642916918,0.10904432088136673,-0.02565286122262478,0.01928618922829628,-0.017856022343039513,0.022140856832265854,0.1069834977388382,-0.014797449111938477,-0.08839640021324158,-0.006242627277970314,0.03176726773381233,-0.038931041955947876,0.03332558646798134,-0.03121246211230755,-0.0406852588057518,-0.044409800320863724,0.006210379768162966,0.015119798481464386,-0.08020351082086563,0.010853794403374195,0.05921327322721481,0.037596844136714935,-0.05355951562523842,-0.05212059244513512,-0.009054371155798435,0.011920960620045662,-0.03151247277855873,0.10124832391738892,0.042306993156671524,0.02101803757250309,-0.06511370092630386,-0.01680460199713707,0.04190674051642418,-0.026260027661919594,0.05246496573090553,-0.04251202940940857,0.058416079729795456,-0.026080088689923286,-0.010782049968838692,0.023194551467895508,-0.034410491585731506,-0.04202232137322426,0.030156120657920837,-0.08966892957687378,-0.009271093644201756,-0.10588804632425308,0.029754769057035446,-0.09206332266330719,0.016764342784881592,0.08475799113512039,-0.015732821077108383,0.025106744840741158,-0.0444505549967289,-0.052953530102968216,0.00863820593804121,-0.07686978578567505,-0.036449581384658813,-0.0704340711236,-0.043297477066516876,0.034414201974868774,-0.05085638910531998,0.06869011372327805,0.024353889748454094,-0.0018431042553856969,-0.04261393845081329,0.06714385747909546,-0.05112669616937637,0.007890528067946434,0.021285979077219963,-0.01041320152580738,0.07703838497400284,-0.07029768824577332,-0.0636415034532547,0.014158069156110287,0.059024594724178314,0.00711088115349412,0.0026580258272588253,-0.02773812785744667,-0.06767033785581589,-0.0336063988506794,-2.795006359690433e-8,0.044464848935604095,-0.019219743087887764,-0.06456724554300308,0.01766142249107361,0.043574996292591095,-0.05725784972310066,-0.026465807110071182,0.06369729340076447,-0.08219106495380402,0.050670020282268524,0.054882992058992386,-0.010494413785636425,-0.02026846818625927,0.02113085240125656,0.024454131722450256,-0.0008597798296250403,0.04478353634476662,0.030697204172611237,-0.05213518440723419,-0.05393809825181961,-0.04044555500149727,-0.03651679679751396,0.031116371974349022,0.0009686577832326293,-0.051919229328632355,-0.007281374651938677,-0.08701653778553009,-0.07943058013916016,-0.015177099034190178,-0.018026450648903847,0.002183003118261695,0.006111178081482649,-0.060380879789590836,0.01220359280705452,-0.052277784794569016,-0.055117037147283554,-0.058967120945453644,-0.0032814685255289078,-0.014877882786095142,0.04026695340871811,0.0630904957652092,-0.01003047451376915,0.06534059345722198,0.0515420064330101,0.03580605983734131,0.06208539381623268,0.07554034143686295,-0.07914218306541443,-0.009618889540433884,0.016063956543803215,-0.003459583269432187,0.021747713908553123,0.06125305965542793,0.10702592134475708,0.026024838909506798,0.02482752874493599,-0.03378409892320633,-0.03613442927598953,0.011717713437974453,0.10948608815670013,0.06258123368024826,-0.029014388099312782,-0.0410320982336998,-0.03825455904006958]},{"text":"For a short space of time I remained at the window watching the pallid lightnings that played above Mont Blanc and listening to the rushing of the Arve, which pursued its noisy way beneath.","book":"1984","chapter":54,"embedding":[-0.0056485761888325214,0.023828649893403053,-0.009447063319385052,0.05766682326793671,0.05705016106367111,0.012674663215875626,0.059659603983163834,-0.07405746728181839,0.025681521743535995,-0.05286281555891037,-0.033114682883024216,-0.00276524992659688,-0.010276257060468197,-0.03964901342988014,-0.08909833431243896,0.0062875752337276936,0.02410190738737583,-0.04792242497205734,0.04703925922513008,0.037104032933712006,-0.0324949286878109,-0.01349515002220869,-0.06325721740722656,0.006560306530445814,0.051776185631752014,0.07167002558708191,-0.061188701540231705,0.005529353860765696,0.025027288123965263,-0.07127675414085388,0.03660028055310249,-0.021491311490535736,0.01731041818857193,-0.0031134681776165962,-0.03460731729865074,0.008815146051347256,0.023649368435144424,-0.039972882717847824,0.043795112520456314,0.02444475330412388,0.014131816104054451,0.05072697252035141,-0.004292829893529415,-0.03369847685098648,-0.02337106503546238,0.0578320287168026,0.009766397066414356,-0.029420459643006325,-0.01505751721560955,0.061503808945417404,-0.06342460215091705,-0.03731919080018997,0.0017531777266412973,-0.01494360901415348,-0.01690622605383396,0.0408409982919693,0.04716566205024719,-0.009983102791011333,0.10301943868398666,0.0018437686376273632,-0.0006965098436921835,-0.027663016691803932,-0.054942645132541656,0.06498602032661438,-0.0909951701760292,-0.04171750694513321,-0.05360783264040947,0.04706278815865517,0.017428357154130936,0.06874731183052063,0.08321504294872284,0.08224234730005264,-0.025914266705513,-0.06033821031451225,-0.023498697206377983,0.019647253677248955,0.005257944576442242,-0.14179520308971405,-0.04071517661213875,-0.004438989795744419,0.0974782258272171,-0.014851855114102364,-0.05382521077990532,0.04604029655456543,0.0496448390185833,0.03474738448858261,0.07561147212982178,-0.025716092437505722,-0.02115919068455696,0.0014761321945115924,0.0037773004733026028,-0.0726819857954979,-0.0822901725769043,0.07539556920528412,0.0724763423204422,-0.0029125569853931665,0.06058396399021149,0.00916806235909462,-0.007222756743431091,0.036741774529218674,0.0580231174826622,-0.05718183517456055,0.0131209222599864,0.0018734922632575035,0.007658860646188259,-0.004211726598441601,-0.06729211658239365,0.07101583480834961,-0.006573118269443512,0.026662509888410568,-0.07391856610774994,-0.014300478622317314,-0.013675455935299397,0.02701297029852867,0.0013947280822321773,0.02277851104736328,-0.03253929689526558,0.003089022357016802,-0.08219029009342194,0.04033366218209267,0.09486070275306702,0.04520248994231224,-0.02879602275788784,0.026534879580140114,0.044273316860198975,0.014968317933380604,0.04984321817755699,-1.4235941885068395e-33,0.0018542648758739233,-0.024477796629071236,-0.06641427427530289,-0.014642195776104927,0.14088670909404755,-0.020833032205700874,0.020543504506349564,0.056509632617235184,-0.024411385878920555,0.058154258877038956,-0.040390219539403915,0.026879677549004555,-0.04725201055407524,-0.0417780801653862,0.023324232548475266,-0.03770934045314789,-0.010035078972578049,0.014742916449904442,-0.0656534805893898,-0.0579817108809948,0.0011407423298805952,-0.04558392986655235,-0.051979806274175644,0.014362053945660591,-0.009216897189617157,0.04489360749721527,0.0257419366389513,-0.07645022869110107,-0.02763271890580654,0.047107044607400894,0.04187387600541115,0.032846495509147644,0.007503537926822901,0.02467627264559269,0.029471758753061295,0.04022708907723427,0.025181274861097336,-0.02331439219415188,0.0025503006763756275,-0.005880482029169798,0.02431350201368332,0.009182687848806381,-0.053822796791791916,0.013956887647509575,0.019476311281323433,-0.07360153645277023,-0.030557800084352493,0.027850715443491936,-0.09980778396129608,0.005116608925163746,0.01047231163829565,0.050176315009593964,-0.045079417526721954,0.002949898596853018,0.0557907335460186,0.07228861004114151,-0.0063604917377233505,0.01546394731849432,-0.03815986216068268,-0.07048764079809189,0.044913243502378464,-0.01650860160589218,0.07808012515306473,-0.05720057338476181,-0.029002737253904343,0.014309030957520008,-0.059596724808216095,-0.00910208746790886,-0.008286127820611,-0.06382303684949875,-0.019878318533301353,-0.038958437740802765,0.0009420200367458165,-0.005123589187860489,0.01743052341043949,-0.02515513077378273,-0.061280760914087296,0.06456438452005386,0.008779107592999935,-0.08189113438129425,-0.06630314141511917,-0.0033122648019343615,0.02040359377861023,0.09337610006332397,0.037855688482522964,-0.012222821824252605,0.05949452891945839,-0.09119630604982376,-0.10219008475542068,0.011385970748960972,-0.0759393647313118,0.06883251667022705,0.0528155118227005,-0.12046265602111816,-0.1303560584783554,4.350039445605246e-34,0.007667927071452141,-0.011732424609363079,-0.02201680839061737,-0.004925962537527084,-0.06723961234092712,0.0571211613714695,-0.043559156358242035,0.048836611211299896,-0.03842708468437195,0.032639019191265106,-0.05901779234409332,0.04603704810142517,0.007448963820934296,0.032573360949754715,-0.03280298784375191,-0.0044654360972344875,0.07888471335172653,-0.0013821390457451344,0.00889122299849987,0.011084076948463917,-0.020003078505396843,-0.09305566549301147,0.036066967993974686,-0.06169567629694939,-0.010803072713315487,0.07332263141870499,0.06944067776203156,-0.053230829536914825,0.005716508254408836,-0.0349251925945282,-0.011948700994253159,0.01771313138306141,-0.02350822649896145,-0.08378719538450241,0.006603500340133905,0.15070179104804993,0.0963292270898819,-0.02358657494187355,-0.09870202094316483,-0.06862597167491913,-0.027666065841913223,0.0003943023912142962,0.06665866076946259,-0.028590746223926544,0.0806916132569313,0.040223926305770874,-0.010165712796151638,0.01703239046037197,-0.10888786613941193,0.00032976260990835726,0.006795856636017561,-0.0008403627434745431,-0.034327659755945206,0.10701615363359451,-0.0489424504339695,-0.026961784809827805,-0.018240943551063538,-0.04379560798406601,-0.03855463117361069,-0.12633423507213593,0.02568240649998188,0.04872201755642891,-0.07085908949375153,-0.024115975946187973,0.05943041294813156,0.05660620704293251,-0.0724550113081932,0.0360659696161747,-0.04297333210706711,-0.01846732199192047,0.024489382281899452,0.029782678931951523,-0.11225153505802155,0.07951389998197556,-0.023850612342357635,-0.008604624308645725,-0.003032531589269638,-0.0584476962685585,0.007585401181131601,-0.029105182737112045,-0.0075793941505253315,0.045155394822359085,-0.029473718255758286,-0.007365238852798939,-0.03683235123753548,0.0008860307862050831,0.039720967411994934,-0.0796043872833252,-0.03368222713470459,0.03168967366218567,0.033988986164331436,0.07766326516866684,0.031873662024736404,-0.08758878707885742,0.08080614358186722,-3.1746164808055255e-8,0.0030614344868808985,0.14419347047805786,-0.028131218627095222,-0.02010512351989746,0.02440417930483818,-0.03292253240942955,0.03520704433321953,0.011107697151601315,-0.045058950781822205,-0.05609176680445671,-0.030477333813905716,-0.04338202252984047,0.13389794528484344,0.04655325785279274,0.07162914425134659,0.031024564057588577,0.04412031173706055,-0.1176283210515976,-0.034707535058259964,0.06154448539018631,0.046238791197538376,0.13208387792110443,-0.00577986566349864,0.012870945036411285,-0.012014967389404774,0.02136862836778164,0.006498814560472965,-0.11959868669509888,0.02487347647547722,-0.0177998598664999,-0.023407423868775368,0.0792272612452507,-0.029014090076088905,-0.08334038406610489,-0.02491149865090847,0.09735707193613052,-0.004987354390323162,-0.06102598458528519,0.020327884703874588,-0.0159161277115345,-0.05233807489275932,0.00474250502884388,0.002343580359593034,0.00941872876137495,0.0305229052901268,0.06336970627307892,0.06090576946735382,-0.12107279896736145,-0.013495364226400852,0.09899881482124329,-0.025072284042835236,0.04234356805682182,0.06694141775369644,0.009409980848431587,0.04779365286231041,0.011781398206949234,-0.001776085584424436,-0.05366892367601395,-0.07288236916065216,-0.04256909340620041,0.009950141422450542,0.058195989578962326,-0.1343289613723755,0.08765856921672821]},{"text":"The rain was pouring in torrents, and thick mists hid the summits of the mountains, so that I even saw not the faces of those mighty friends.","book":"1984","chapter":55,"embedding":[-0.03646618127822876,0.11656762659549713,0.14195135235786438,0.05354217439889908,0.12522584199905396,-0.05866969749331474,0.011892115697264671,-0.04488160088658333,-0.03814925253391266,-0.01896381564438343,-0.02249198406934738,-0.04972502589225769,0.06711061298847198,-0.04004673659801483,-0.060242414474487305,-0.008199446834623814,-0.08548222482204437,-0.06932000070810318,-0.029181551188230515,-0.03829373046755791,-0.029099253937602043,0.007013691123574972,-0.04953630268573761,0.09062977880239487,0.055691011250019073,0.08249503374099731,0.006008822005242109,0.013753538019955158,0.07421744614839554,-0.029842497780919075,0.02162821963429451,0.0582684651017189,-0.06423413008451462,-0.01368814054876566,-0.017870914191007614,0.08060002326965332,0.06066937744617462,0.024405229836702347,-0.04147997871041298,-0.039675597101449966,0.0012472679372876883,0.04882480949163437,0.03814127668738365,-0.01159079372882843,-0.03582358360290527,-0.02876545861363411,0.036335334181785583,0.02997513674199581,0.011776026338338852,-0.007150821387767792,0.05192195251584053,-0.0087428642436862,-0.06028890609741211,-0.09631496667861938,-0.0423102006316185,-0.04340251907706261,-0.022576672956347466,-0.10061829537153244,0.018561426550149918,0.027492331340909004,-0.07005457580089569,0.008646395057439804,-0.06680630147457123,-0.0002090867201332003,0.054124727845191956,0.032563481479883194,-0.08684512227773666,0.04480881989002228,0.06379008293151855,0.016724908724427223,0.07068730145692825,0.08338257670402527,0.009145457297563553,-0.07317397743463516,-0.05965457111597061,-0.03688592463731766,-0.04014526680111885,-0.025843288749456406,-0.11007500439882278,0.007722464390099049,-0.018952040001749992,0.008240864612162113,0.032868437469005585,0.02852618508040905,0.0018160769250243902,-0.007419164292514324,-0.009721615351736546,-0.09380608052015305,-0.028620105236768723,0.007807468995451927,-0.03961670771241188,-0.012766797095537186,-0.04641904681921005,0.08210503309965134,0.006348415743559599,-0.01793450489640236,0.039383258670568466,-0.026326265186071396,-0.007081900257617235,0.10023580491542816,0.0016193946357816458,0.019872616976499557,-0.022344619035720825,-0.034317851066589355,0.04463906213641167,0.004270853940397501,0.0006771318730898201,0.0012223281664773822,0.012157545424997807,0.011372934095561504,-0.04405144602060318,0.005071218591183424,0.03949499502778053,0.005031426437199116,-0.033314961940050125,-0.039218515157699585,-0.01757080852985382,-0.019877547398209572,-0.12120237946510315,0.004339600447565317,-0.0023650426883250475,0.07007288932800293,0.026162290945649147,0.03339926898479462,0.029362943023443222,-0.0020909481681883335,0.024323424324393272,-4.0552722066865606e-33,0.08596952259540558,-0.020649440586566925,-0.03536522760987282,0.07578515261411667,0.11193900555372238,-0.013582843355834484,0.004407800268381834,-0.01924458146095276,-0.029072413221001625,0.012677758932113647,-0.08614922314882278,0.006702653132379055,-0.022813566029071808,0.02158309705555439,0.014260487630963326,-0.06284584105014801,0.0007646636804565787,-0.00680731562897563,-0.03133361414074898,-0.04534322768449783,-0.047350406646728516,-0.012117444537580013,-0.0699707493185997,0.009238737635314465,-0.08851628750562668,0.0678795576095581,0.016507042571902275,0.019342659041285515,0.08227071911096573,0.06037959083914757,0.04352620616555214,0.06066121906042099,0.08810407668352127,-0.009030629880726337,0.0738905668258667,0.061586081981658936,0.019029604271054268,-0.09378597885370255,0.04014255106449127,-0.003534030169248581,0.0008011014433577657,-0.02227962203323841,-0.031100967898964882,-0.07431783527135849,-0.053157687187194824,0.050310999155044556,0.019306132569909096,-0.032192662358284,-0.09849219024181366,-0.05141961947083473,0.054925523698329926,0.06244145333766937,0.022547239437699318,0.021259386092424393,-0.019642068073153496,0.07740133255720139,0.041697148233652115,0.00606455048546195,0.033614784479141235,0.03804493695497513,0.050403013825416565,0.023282431066036224,0.06126117706298828,-0.023618727922439575,-0.030796917155385017,-0.03420868515968323,0.05699760466814041,0.04258091375231743,0.0014197187265381217,0.011138121597468853,-0.04375242069363594,0.0485151931643486,-0.02131197229027748,-0.010174333117902279,0.029961759224534035,-0.03300006315112114,0.007668276317417622,0.04098191484808922,0.03482494503259659,0.07694902271032333,0.0417662151157856,-0.03004956617951393,0.009094761684536934,-0.03151408210396767,-0.012643354944884777,-0.021852103993296623,0.10049906373023987,-0.03670239821076393,-0.054417409002780914,0.02843162976205349,-0.026659879833459854,0.06759899854660034,0.15503792464733124,-0.12922070920467377,-0.06621486693620682,1.4448348204132213e-33,-0.00874446239322424,0.016152581200003624,0.010769959539175034,-0.1079820990562439,0.0032635198440402746,-0.007969733327627182,0.05080849677324295,0.038422197103500366,-0.011065254919230938,0.04846770688891411,-0.025607328861951828,0.03616843372583389,0.0037186467088758945,-0.059242453426122665,-0.008493725210428238,0.0008113642106764019,0.11516481637954712,0.015380162745714188,0.013233136385679245,-0.01376425288617611,-0.030818693339824677,-0.05404002219438553,-0.03318118676543236,-0.035760268568992615,-0.0005424371338449419,0.045768462121486664,0.030991069972515106,-0.02819356694817543,-0.032809529453516006,-0.049703244119882584,0.06446032971143723,0.07990224659442902,-0.08800490945577621,-0.008691639639437199,-0.022081585600972176,0.10655038803815842,-0.02052478678524494,0.003859297139570117,-0.09801894426345825,-0.1705925017595291,-0.04700443521142006,-0.020320825278759003,0.04440337419509888,-0.006911313161253929,0.025072218850255013,0.057293135672807693,-0.023123372346162796,-0.033995166420936584,-0.051761481910943985,-0.04958412051200867,-0.038585029542446136,0.041274573653936386,-0.015667060390114784,0.0819140374660492,0.0156751349568367,-0.11226002871990204,0.02066214755177498,-0.03499127924442291,0.07287430763244629,-0.043870147317647934,-0.05627007037401199,-0.07022066414356232,-0.08505125343799591,-0.05185750126838684,-0.03489232063293457,-0.06259115040302277,-0.0364140048623085,0.041781723499298096,0.008279658854007721,0.030630460008978844,-0.01776934787631035,-0.07523056864738464,-0.006730866152793169,-0.0023988275788724422,0.03563965484499931,0.027018573135137558,-0.08279239386320114,0.06850039958953857,-0.04750630259513855,-0.038855381309986115,0.01738002896308899,0.03083483874797821,-0.059039097279310226,0.03350558876991272,0.03654775023460388,-0.015987155959010124,0.04615221172571182,-0.06274165213108063,-0.03014051355421543,0.10558085143566132,0.0001619274407858029,-0.0715201199054718,0.03876185044646263,0.0016409356612712145,-0.007900616154074669,-2.707797719381233e-8,0.020111331716179848,0.008139095269143581,-0.0073812417685985565,-0.042603302747011185,-0.042025115340948105,-0.020799916237592697,0.0333266481757164,0.14698526263237,-0.03481161221861839,0.013014554046094418,-0.0429631732404232,-0.04112555831670761,0.00661449646577239,0.09564685821533203,0.07542433589696884,0.005779771134257317,0.02177276834845543,-0.08173201978206635,-0.03613085672259331,-0.01522752270102501,-0.05561092495918274,0.06929372251033783,-0.06413297355175018,0.007771710865199566,0.03923295438289642,0.03631654754281044,-0.035830307751894,-0.08200058341026306,0.022649813443422318,0.019849222153425217,-0.00866228248924017,-0.015726417303085327,-0.09392750263214111,-0.014783067628741264,0.02999822422862053,0.09212460368871689,-0.036759596318006516,0.01705583743751049,0.024709036573767662,-0.00259460904635489,-0.00009101261821342632,0.04098512604832649,0.07179272174835205,0.042235273867845535,0.07901477813720703,0.07036871463060379,0.024824904277920723,0.03942818567156792,-0.0733848437666893,-0.010827504098415375,-0.013237626291811466,0.01726466603577137,0.002788529032841325,0.1048237532377243,0.09318213909864426,-0.08513100445270538,-0.05168492719531059,-0.028915734961628914,-0.012670282274484634,-0.07989314198493958,0.04014208912849426,-0.02933877892792225,-0.11215002089738846,0.04397525265812874]},{"text":"The path, as you ascend higher, is intersected by ravines of snow, down which stones continually roll from above; one of them is particularly dangerous, as the slightest sound, such as even speaking in a loud voice, produces a concussion of air sufficient to draw destruction upon the head of the speaker.","book":"1984","chapter":56,"embedding":[0.019989853724837303,-0.010026014409959316,0.026994716376066208,0.07438945770263672,-0.06949230283498764,-0.013014024123549461,0.03379776328802109,0.019198061898350716,0.07662753760814667,-0.029285838827490807,-0.01551822666078806,0.026998987421393394,0.02646810933947563,0.001609340775758028,-0.02527197264134884,0.02926788665354252,0.013175521977245808,0.041942939162254333,-0.07283759862184525,-0.027883730828762054,0.07994207739830017,0.10719091445207596,0.009507836773991585,0.06689140200614929,-0.05251437798142433,-0.018135499209165573,-0.0357215441763401,-0.027922963723540306,0.03826422989368439,-0.047683052718639374,0.0018486363114789128,-0.012905477546155453,0.001582337194122374,-0.02559756673872471,-0.021793490275740623,0.07560901343822479,0.031045926734805107,0.021450063213706017,0.004792557097971439,-0.011002549901604652,-0.03144443407654762,0.02424990013241768,0.046670299023389816,-0.02940000407397747,0.01616545207798481,0.0022862860932946205,-0.036050740629434586,-0.03449951112270355,0.01779041811823845,-0.007082718424499035,0.004392572678625584,-0.0024973966646939516,0.018952976912260056,0.018338486552238464,-0.07413162291049957,0.04692624881863594,-0.02445308305323124,-0.021758951246738434,-0.0056511396542191505,0.03348538652062416,-0.014417508617043495,-0.04604028910398483,-0.011040542274713516,-0.026000522077083588,0.02085547149181366,-0.02948128990828991,-0.02275354601442814,-0.04682828113436699,-0.013522451743483543,0.10772451758384705,0.026655852794647217,-0.00008150451321853325,-0.005970231723040342,-0.09247341006994247,-0.029060442000627518,-0.012949859723448753,-0.04655979573726654,-0.0746367797255516,-0.04689449816942215,0.037222716957330704,0.07815864682197571,-0.015830237418413162,0.018263177946209908,-0.01379179023206234,0.014774317853152752,0.0029310965910553932,0.00921082403510809,0.016706237569451332,-0.007214345503598452,0.10677160322666168,-0.015006612986326218,-0.061756134033203125,-0.09653805941343307,0.11194969713687897,0.037644658237695694,-0.005386486183851957,-0.017262635752558708,-0.049147605895996094,-0.03310951963067055,0.005034683272242546,-0.016118844971060753,-0.06917329132556915,0.02490224875509739,0.0009448113269172609,0.07839421182870865,0.03391580283641815,-0.0723794624209404,-0.0480307973921299,-0.04206173121929169,0.07140866667032242,-0.013056457042694092,-0.10124702751636505,0.04141590744256973,0.016500219702720642,-0.016353463754057884,0.0476887971162796,-0.09602419286966324,-0.016330139711499214,-0.12376122921705246,0.041151393204927444,-0.0017484716372564435,0.05275886878371239,-0.009490298107266426,0.043906208127737045,0.013008719310164452,-0.11117579787969589,-0.0628872811794281,-1.0483300147988056e-33,0.03138890489935875,0.05268985033035278,-0.0020479606464505196,-0.02566901594400406,0.10461308062076569,-0.1205555871129036,-0.11018122732639313,-0.020104043185710907,0.02674487791955471,0.062118880450725555,-0.011194504797458649,0.0073851835913956165,-0.0015206130919978023,-0.07607091218233109,0.02316867560148239,-0.058144014328718185,-0.01679728925228119,0.03143571317195892,-0.100658118724823,-0.012576712295413017,0.03833739459514618,-0.03509601578116417,-0.03869941830635071,0.03326581045985222,-0.033563703298568726,0.0029622898437082767,-0.01886044256389141,-0.03836245462298393,-0.007479814346879721,0.012442238628864288,-0.04196617007255554,-0.0018097059801220894,-0.024816524237394333,-0.038350701332092285,0.010301368311047554,0.12110769003629684,0.05390911549329758,0.04925882816314697,-0.03696358948945999,0.03211849555373192,-0.055784836411476135,-0.04111509397625923,-0.006293373182415962,0.01958582177758217,0.02272946387529373,0.010627489537000656,0.013996538706123829,-0.004356797784566879,-0.08342835307121277,0.012925728224217892,-0.04210788756608963,0.0263103898614645,0.03358471393585205,0.020444108173251152,0.09314469993114471,-0.004473527427762747,0.026867149397730827,-0.003047298640012741,0.011146366596221924,0.014747467823326588,0.0505811832845211,-0.030167266726493835,-0.044955380260944366,-0.02388549968600273,-0.01720070093870163,-0.12358950078487396,-0.051086779683828354,0.048951100558042526,0.0008219462470151484,-0.03453127294778824,0.035988762974739075,0.007963715121150017,0.014970710501074791,0.014365093782544136,-0.10129169374704361,0.00691974489018321,-0.0802057757973671,0.01968379318714142,0.09421803802251816,-0.03384031727910042,-0.05308108776807785,-0.009131934493780136,0.0018310283776372671,-0.020713910460472107,0.09877969324588776,0.049453116953372955,0.02719658426940441,-0.08458507806062698,-0.07076450437307358,-0.02275398187339306,-0.07579589635133743,0.01929723098874092,0.0611516535282135,-0.0582008883357048,0.011785045266151428,-1.5036257928371556e-33,0.010127848014235497,0.03119167871773243,0.0539541132748127,0.021020377054810524,-0.061952754855155945,0.08596409857273102,-0.005794769152998924,0.039401132613420486,-0.0859060063958168,-0.03397206962108612,-0.09591465443372726,0.0761772096157074,0.03743254765868187,0.013356450013816357,0.18212924897670746,-0.16967256367206573,0.07754973322153091,0.0763874426484108,0.006380547769367695,0.02376466989517212,-0.005807599984109402,0.036125410348176956,-0.10121001303195953,-0.04301390051841736,-0.01945534348487854,-0.008292126469314098,0.019267713651061058,-0.011700090020895004,0.03341512382030487,0.013469484634697437,-0.009665883146226406,0.010896025225520134,-0.02879691682755947,-0.09343872219324112,-0.06740981340408325,0.1339559406042099,0.0010154476622119546,-0.09786877036094666,-0.08540891110897064,-0.13172754645347595,0.05655056610703468,0.03650528937578201,0.11797510087490082,-0.03776814043521881,0.05029850825667381,-0.05289376154541969,-0.08480407297611237,0.1134348139166832,-0.0011354509042575955,-0.08393917232751846,0.010678607039153576,-0.00015168587560765445,0.051793769001960754,0.07871823012828827,-0.012815803289413452,-0.011713039129972458,-0.01836460269987583,-0.04872632399201393,0.00764866080135107,-0.11372119188308716,0.026303796097636223,0.02985430508852005,-0.06416153162717819,0.005946055520325899,0.015204200521111488,-0.007218549493700266,-0.08073731511831284,0.010961562395095825,-0.0054054115898907185,0.09601504355669022,-0.0765041634440422,0.021475523710250854,-0.061541613191366196,-0.037834834307432175,0.027770694345235825,-0.024507448077201843,0.005210708361119032,0.02439946122467518,0.0033864250872284174,-0.10021057724952698,-0.04416271299123764,0.05585068091750145,0.007271422538906336,0.04100020229816437,0.030974846333265305,-0.04157881438732147,-0.03451167792081833,-0.02174401842057705,0.004624716471880674,-0.004069854971021414,0.03477683290839195,-0.00144789123442024,-0.06722664088010788,-0.012793072499334812,-0.021889524534344673,-3.839705797759052e-8,-0.06431145966053009,0.07205691933631897,-0.02836008183658123,-0.05310110002756119,0.05353270471096039,0.02237616293132305,0.14691366255283356,0.0028270846232771873,0.02200155518949032,-0.039560068398714066,-0.04598742723464966,0.016543598845601082,0.09240663051605225,0.07985855638980865,-0.010763288475573063,0.0703645795583725,-0.07423918694257736,0.07594680041074753,-0.006039065774530172,-0.06983443349599838,-0.02404641918838024,-0.0033075856044888496,0.03703317046165466,0.04817286133766174,0.004550256300717592,0.03192991390824318,-0.008678251877427101,-0.03515937551856041,0.004967672284692526,0.05318447947502136,-0.027000578120350838,0.022938011214137077,-0.025555366650223732,0.0036294187884777784,0.024915946647524834,0.023087410256266594,0.04153618961572647,0.01602257788181305,0.02071271650493145,0.046833060681819916,0.004333833232522011,-0.03698879852890968,0.07786153256893158,0.07952680438756943,-0.014453268609941006,-0.00008384645479964092,0.04596138373017311,0.022299382835626602,-0.015779009088873863,0.06005195155739784,-0.0560004822909832,0.07654384523630142,0.05334477499127388,0.058104027062654495,-0.001353902742266655,0.07069011777639389,-0.00842128787189722,0.017483379691839218,-0.1355723887681961,0.03086327202618122,0.048890747129917145,-0.019415805116295815,-0.04526494815945625,-0.013186774216592312]},{"text":"A mist covered both that and the surrounding mountains.","book":"1984","chapter":56,"embedding":[-0.013879982754588127,0.15261134505271912,0.07764031738042831,0.06389573961496353,0.0900493934750557,-0.06156862899661064,0.04556189104914665,-0.033300112932920456,0.026319799944758415,-0.06147840991616249,-0.0204296987503767,-0.037575870752334595,0.005065769422799349,-0.0563046969473362,0.011441678740084171,0.009046345949172974,-0.10861263424158096,-0.04604187607765198,0.0069105662405490875,-0.02414058707654476,-0.0015526068164035678,0.07049651443958282,-0.03168030083179474,0.044312167912721634,-0.031052837148308754,0.08213947713375092,-0.03405171260237694,0.05598793551325798,0.08788350224494934,-0.028160767629742622,0.051993973553180695,0.04065627232193947,-0.11725904047489166,0.03163404017686844,-0.02892124094069004,0.028259864076972008,-0.0067770821042358875,0.09111370891332626,0.003138649510219693,-0.009080235846340656,-0.009738738648593426,0.027610547840595245,0.021473078057169914,0.01866150088608265,-0.05665384978055954,0.10056999325752258,0.02841675840318203,0.07375701516866684,0.05776231363415718,0.033538565039634705,0.003531218506395817,-0.06620647758245468,-0.10875944793224335,0.0009569142130203545,-0.0710107833147049,0.008820559829473495,-0.05746467411518097,-0.05449594184756279,-0.019754599779844284,0.02058207429945469,-0.07188763469457626,0.04324112832546234,-0.0876176655292511,0.0388469360768795,0.027556391432881355,-0.006569972261786461,-0.12102958559989929,-0.007633723318576813,0.07409442216157913,-0.07081550359725952,0.10343658924102783,0.07629510015249252,-0.0466339997947216,-0.04879235848784447,-0.015302881598472595,-0.04105838015675545,-0.044085223227739334,-0.023177215829491615,-0.06512553244829178,0.011417568661272526,0.02399599552154541,0.05241178721189499,0.0030275508761405945,0.045700132846832275,0.0007508123526349664,0.03436854109168053,0.00336579792201519,-0.04134322702884674,0.017117947340011597,-0.05348692834377289,0.08874671906232834,-0.108690045773983,-0.0767030268907547,0.039323434233665466,-0.016990669071674347,0.03730827942490578,0.0771174356341362,-0.025771889835596085,0.01049931813031435,0.027282601222395897,0.0257846899330616,-0.09081979840993881,-0.0663096234202385,0.003285967744886875,0.03799482807517052,-0.028308292850852013,0.011484300717711449,-0.041280124336481094,0.011782818473875523,-0.037832871079444885,-0.02369888499379158,-0.038064271211624146,-0.010613786056637764,-0.013430451974272728,-0.023531025275588036,-0.0013455438893288374,0.004178217612206936,-0.001891008811071515,-0.07943616807460785,-0.022400399670004845,-0.035962775349617004,0.037096019834280014,0.045389167964458466,0.05660602077841759,0.01996692456305027,-0.07369028031826019,0.013335942290723324,-6.872488049148164e-33,0.06255845725536346,-0.0609978623688221,0.031117785722017288,0.03398194909095764,0.06569588929414749,-0.025228185579180717,0.05894547328352928,-0.03134329617023468,-0.04543313384056091,0.07466011494398117,-0.05899230018258095,0.008214250206947327,-0.05499452352523804,0.05910656973719597,0.02045435458421707,-0.08203227818012238,-0.0193252544850111,-0.01786159910261631,-0.057122714817523956,-0.033758800476789474,-0.07053742557764053,0.04315444827079773,-0.04456178843975067,0.008575464598834515,-0.057374052703380585,0.004395399242639542,-0.003630229504778981,-0.006842498667538166,-0.022301580756902695,0.04062167927622795,0.045506712049245834,0.018581656739115715,0.01572207361459732,0.003956522326916456,0.040457408875226974,0.06691689789295197,-0.05688530206680298,-0.007008427754044533,0.041646361351013184,0.04523070901632309,-0.02135039120912552,-0.0008635850390419364,0.019901959225535393,-0.026478493586182594,0.027578603476285934,-0.036624956876039505,-0.04899450019001961,0.034587226808071136,-0.019681435078382492,-0.073771633207798,0.03099844790995121,0.029495814815163612,0.041337914764881134,0.0082231555134058,-0.056199267506599426,0.04356386512517929,0.03392287343740463,0.038876112550497055,-0.02132544293999672,0.04853292554616928,0.05289255827665329,0.018162976950407028,-0.008933646604418755,-0.0180093664675951,0.028374403715133667,-0.07174821197986603,-0.02179679274559021,-0.017298493534326553,0.010360926389694214,0.055839717388153076,-0.059302106499671936,0.014187430962920189,0.0694018006324768,0.07584362477064133,-0.02702413499355316,-0.0369672067463398,-0.0044299541041255,0.04908197373151779,0.06800086051225662,0.0679953321814537,-0.06197267398238182,-0.0569407120347023,-0.015611253678798676,0.06732790172100067,-0.06523561477661133,0.0015762241091579199,0.03147057071328163,0.02243134193122387,-0.08046017587184906,-0.0469447560608387,-0.05731044337153435,0.07262865453958511,0.13252286612987518,-0.15034674108028412,0.014547294937074184,2.794913041206658e-33,0.07346750795841217,-0.018815981224179268,0.06472698599100113,-0.00439131073653698,-0.025891974568367004,0.005353533662855625,0.0463823527097702,0.055404625833034515,-0.1178789809346199,0.0574728399515152,-0.05488882213830948,0.10477381944656372,0.043831370770931244,-0.029498852789402008,0.018254434689879417,0.03318038955330849,0.06169046461582184,0.04829821363091469,0.022383106872439384,0.06409573554992676,-0.1163579672574997,-0.03466955944895744,0.0246428269892931,-0.04205715283751488,-0.03734413534402847,0.014586708508431911,0.052617043256759644,-0.03598932921886444,-0.022602874785661697,-0.03337198495864868,-0.010524531826376915,-0.0161695908755064,-0.016254471614956856,-0.015059838071465492,-0.05782033130526543,-0.03480187803506851,0.097515769302845,-0.15831376612186432,-0.0556412972509861,-0.10204630345106125,0.04284238815307617,-0.0314224511384964,0.0943678766489029,0.0375002846121788,0.06567011773586273,0.06647571176290512,-0.034840408712625504,0.03352656587958336,-0.05596411973237991,-0.09255582094192505,0.021001461893320084,0.01959446631371975,-0.003830709494650364,0.13548260927200317,0.054438792169094086,-0.057882145047187805,-0.038828104734420776,-0.02872266247868538,0.03247971087694168,-0.004147135186940432,-0.0033489528577774763,-0.005545946769416332,-0.05465494096279144,-0.13176339864730835,-0.0095332320779562,0.03572310879826546,-0.005014180205762386,0.08457660675048828,-0.01298308651894331,0.01712595298886299,0.0180918388068676,0.010203230194747448,-0.010613447055220604,-0.10460400581359863,0.0006803182768635452,0.05342929810285568,0.005061225034296513,-0.03813038021326065,-0.00708353566005826,-0.019486121833324432,-0.045720383524894714,-0.04666157439351082,-0.0816938653588295,-0.029827360063791275,0.06867183744907379,-0.01599077321588993,-0.012170139700174332,-0.10869169980287552,-0.036055613309144974,0.027936739847064018,-0.028172943741083145,-0.010441293008625507,-0.010057098232209682,-0.007867204956710339,-0.005625133402645588,-1.9080019342254673e-8,0.029228363186120987,0.017642632126808167,-0.006561480462551117,-0.023741044104099274,-0.03646087273955345,-0.027493150904774666,0.07649567723274231,0.03884725645184517,-0.029273714870214462,0.0013765915064141154,-0.06362766772508621,0.005869227461516857,0.0577063113451004,0.053245943039655685,0.02967964857816696,0.008757321164011955,-0.03978327289223671,-0.05345959588885307,-0.056984543800354004,-0.005807851441204548,0.048104528337717056,0.06919156759977341,-0.055380694568157196,-0.04339923337101936,-0.00787403341382742,0.060506824404001236,-0.008206607773900032,-0.03555973246693611,0.04137973114848137,-0.005166773684322834,0.032469749450683594,-0.025462718680500984,-0.006504457909613848,-0.027146799489855766,0.035589173436164856,0.029038071632385254,-0.05853128805756569,-0.015037798322737217,0.009787159040570259,-0.10964536666870117,0.054467786103487015,0.05263498052954674,0.015227846801280975,0.050039272755384445,0.09561578184366226,-0.004731183871626854,0.025600478053092957,-0.021058684214949608,-0.06620584428310394,0.0665312185883522,0.022448282688856125,0.03828814625740051,0.09895533323287964,0.09342136234045029,0.029013818129897118,-0.0771530419588089,-0.007955849170684814,-0.07727622985839844,-0.03710493445396423,-0.009631537832319736,0.04544621706008911,-0.04111483320593834,-0.040925879031419754,0.09561416506767273]},{"text":"I was troubled; a mist came over my eyes, and I felt a faintness seize me, but I was quickly restored by the cold gale of the mountains.","book":"1984","chapter":57,"embedding":[0.003386869328096509,0.06827794760465622,0.0811799019575119,0.12840434908866882,0.0882851704955101,-0.01689397729933262,0.055223248898983,-0.001273355563171208,0.02737267129123211,-0.1123420000076294,-0.0007565112900920212,-0.013391431421041489,0.07815788686275482,-0.04793301969766617,0.04797643795609474,0.00811190064996481,-0.03867863491177559,0.029284903779625893,-0.07470956444740295,0.043052028864622116,-0.07541253417730331,0.08261549472808838,-0.12117408215999603,0.03340476006269455,-0.03654344752430916,0.057270511984825134,-0.022461090236902237,-0.0020936871878802776,0.017960872501134872,-0.03199976682662964,-0.05186942592263222,0.037511296570301056,-0.06866062432527542,0.013715015724301338,-0.02776249684393406,0.12578636407852173,-0.041168756783008575,-0.003920977469533682,-0.050064925104379654,-0.010267775505781174,0.02399495802819729,0.04839815944433212,0.02189878560602665,-0.01510703843086958,0.006038138642907143,-0.0026102405972778797,-0.012384782545268536,0.03073054365813732,0.02838563360273838,-0.018685508519411087,-0.028598926961421967,-0.002656967844814062,-0.06893317401409149,-0.0008646196220070124,-0.05608031153678894,0.035053059458732605,-0.0021814138162881136,0.001440911553800106,-0.01950475573539734,0.02514495886862278,-0.0696551501750946,0.014032753184437752,-0.01745757646858692,-0.0016346836928278208,0.08258766680955887,0.002186731668189168,-0.036801405251026154,-0.0516180582344532,0.0701836422085762,0.01203221920877695,0.03534339368343353,-0.006395293399691582,-0.01812942698597908,-0.05220278352499008,-0.046217337250709534,-0.014934987761080265,0.0022747190669178963,-0.09395526349544525,-0.00917208194732666,0.0470116063952446,0.05173828825354576,0.0472288653254509,-0.033340826630592346,-0.04390620067715645,-0.00935368798673153,-0.04016527161002159,0.03177017718553543,-0.02153291553258896,0.06081734225153923,0.029965875670313835,0.0568254254758358,-0.07108395546674728,-0.07339701056480408,0.05453076213598251,0.030282137915492058,-0.003156772581860423,0.017012376338243484,-0.024269454181194305,-0.06235746294260025,0.046349845826625824,0.06540607661008835,-0.05590394511818886,-0.005963376257568598,-0.004377447068691254,0.02885744534432888,-0.0188034325838089,0.011114217340946198,-0.05274064466357231,-0.0568251870572567,-0.04451737180352211,-0.03734961524605751,-0.025811800733208656,0.012477404437959194,-0.0539708212018013,0.00732477055862546,0.00408443808555603,-0.0576825775206089,-0.08148293197154999,-0.025024380534887314,0.07711056619882584,0.055090513080358505,0.038210541009902954,0.023045789450407028,0.050554901361465454,-0.024931427091360092,-0.00856771320104599,0.032852653414011,-4.7542512697282325e-33,0.07005218416452408,-0.049956586211919785,0.018760742619633675,0.06965198367834091,0.1069793850183487,-0.07773991674184799,-0.010466226376593113,-0.03324823081493378,-0.07719677686691284,-0.013030917383730412,0.0010166341671720147,0.029345529153943062,-0.0448966883122921,0.012352025136351585,-0.07287632673978806,-0.06437204778194427,-0.05747269466519356,0.013063594698905945,0.05371824651956558,0.06297431886196136,-0.0629846602678299,0.03781282156705856,-0.016702236607670784,0.022607112303376198,-0.05271390452980995,0.01570744998753071,-0.024733176454901695,0.013047520071268082,0.013981963507831097,0.033278413116931915,-0.006364426575601101,0.06934348493814468,0.04164430499076843,-0.04208787903189659,0.008796441368758678,0.09471295773983002,-0.02531539648771286,0.018981758505105972,0.033099640160799026,0.011102549731731415,-0.019647743552923203,0.06360671669244766,0.0066925049759447575,-0.017999494448304176,0.05525193735957146,0.024847323074936867,-0.06607072800397873,0.029807135462760925,-0.14804911613464355,-0.04045581445097923,-0.0592404343187809,0.034543752670288086,0.03864828497171402,-0.01765744388103485,-0.006212268490344286,0.04693494364619255,0.04752880707383156,0.07274876534938812,-0.03729008510708809,0.021542277187108994,-0.0008904787828214467,0.013316125608980656,-0.01940973289310932,-0.04908116161823273,0.022065188735723495,-0.11093270033597946,-0.023605018854141235,-0.03168907389044762,-0.037897784262895584,-0.07094176858663559,-0.06988243758678436,0.0015686536207795143,0.016538772732019424,0.07319939136505127,0.020928774029016495,-0.05933123826980591,0.0243101604282856,0.011292078532278538,-0.031084835529327393,-0.042834289371967316,-0.0227022934705019,-0.020003581419587135,0.0237562358379364,0.12216661125421524,0.03938291594386101,-0.02666601724922657,0.044219642877578735,-0.11318854987621307,-0.1262531578540802,-0.018682362511754036,0.03571878373622894,0.04080900549888611,0.15489697456359863,-0.14209389686584473,-0.03145221993327141,2.6442005227648324e-33,0.08874710649251938,-0.04860427975654602,0.02298082411289215,0.06215600669384003,-0.018708813935518265,-0.0448853000998497,-0.006313703488558531,0.0933312177658081,-0.09804876893758774,0.0006338015664368868,-0.019243687391281128,0.06481316685676575,0.043418511748313904,-0.04816198721528053,-0.01993667520582676,-0.018184784799814224,0.03359292820096016,0.055794600397348404,-0.015169847756624222,0.03555550053715706,-0.05783750116825104,0.01444855984300375,0.035195156931877136,-0.08309716731309891,-0.004967603366822004,0.020342128351330757,0.09873346984386444,-0.059116363525390625,-0.0515810064971447,-0.07186812907457352,0.05886920914053917,0.014004976488649845,-0.06405598670244217,0.026974335312843323,-0.030436336994171143,0.050039928406476974,0.04766615480184555,-0.13565830886363983,-0.09027407318353653,-0.08680133521556854,0.024119408801198006,-0.0098398607224226,0.10851366817951202,0.062462929636240005,0.05704578757286072,0.027843836694955826,0.022960077971220016,-0.011483749374747276,0.0004992664908058941,0.004881919827312231,-0.024837270379066467,0.017222309485077858,-0.019625037908554077,0.08990421891212463,0.009560338221490383,-0.10946674644947052,0.0078005101531744,-0.07946378737688065,0.01869114115834236,-0.028981242328882217,-0.1132638230919838,-0.044883958995342255,-0.08537708967924118,-0.06377410888671875,0.03459698706865311,-0.013690824620425701,-0.010991866700351238,0.05543449893593788,-0.029515117406845093,0.016996102407574654,0.06211736053228378,0.009899611584842205,-0.06626635789871216,0.022181229665875435,0.08030419796705246,-0.014971395954489708,-0.01915125548839569,0.04461973160505295,-0.07041666656732559,-0.02996690198779106,-0.00276906113140285,0.01371478009968996,-0.010196221992373466,0.0036801707465201616,0.050402943044900894,0.007283438462764025,0.01823124848306179,-0.033821746706962585,-0.038948267698287964,0.0015089584048837423,-0.04356221854686737,-0.059106308966875076,0.018068818375468254,0.007132486440241337,0.02237030304968357,-2.8271822216652254e-8,-0.019171277061104774,0.03762577846646309,-0.06298505514860153,0.0022294861264526844,0.027866486459970474,0.0017066027503460646,0.0009068351937457919,0.08051808923482895,-0.10472899675369263,0.000992586836218834,-0.10744906961917877,0.020702704787254333,0.06134016439318657,0.054582104086875916,0.047904495149850845,0.00029880678630433977,0.0640992820262909,-0.03479742258787155,-0.009214859455823898,-0.02125813625752926,-0.030000122264027596,0.09957011789083481,-0.0541214756667614,-0.006029370706528425,0.03131687268614769,0.05863484740257263,-0.01286021526902914,-0.030070416629314423,-0.017484033480286598,-0.021773317828774452,0.03613777086138725,0.04142008721828461,0.0009882199810817838,0.010636374354362488,0.017388910055160522,0.030636398121714592,0.027136409655213356,-0.005711313337087631,0.05222250148653984,-0.08338328450918198,0.031040122732520103,0.1435169130563736,0.03845667839050293,0.017599264159798622,0.011565773747861385,-0.03604838624596596,0.049944039434194565,0.001305876881815493,0.004846146795898676,0.014799891039729118,0.050721604377031326,0.07423818111419678,0.06546523422002792,0.09642468392848969,0.028805885463953018,-0.042956411838531494,-0.02372179552912712,0.012306361459195614,-0.06749297678470612,-0.05335667356848717,0.10900571942329407,-0.020765189081430435,-0.15491625666618347,0.001351233571767807]},{"text":"Do your duty towards me, and I will do mine towards you and the rest of mankind.","book":"1984","chapter":57,"embedding":[-0.06152693182229996,0.10450447350740433,-0.0007877098978497088,-0.10636875778436661,-0.014852159656584263,-0.052337970584630966,0.09835362434387207,-0.06961711496114731,-0.048194918781518936,0.028130611404776573,-0.0020015444606542587,-0.012747797183692455,0.04164328798651695,0.015129715204238892,0.008306658826768398,0.012010372243821621,-0.007354335859417915,0.0007640676340088248,-0.05846712365746498,0.08758120983839035,-0.027899574488401413,0.07435368746519089,0.06403692811727524,0.00933113507926464,-0.1158374771475792,0.024430377408862114,0.024958273395895958,-0.017320415005087852,-0.04504596069455147,-0.05500037968158722,-0.022838084027171135,-0.07830499857664108,0.011346145533025265,0.05277346074581146,-0.02290746197104454,0.09204155951738358,0.03679326921701431,-0.07732252031564713,0.05790041387081146,-0.01789330691099167,0.019661735743284225,-0.049424249678850174,0.0038566268049180508,0.0628296434879303,0.013332318514585495,0.01840924099087715,0.0031908457167446613,-0.007285750471055508,0.04618345573544502,-0.0002153601380996406,-0.057973891496658325,-0.007323814556002617,-0.06208008900284767,0.04999130219221115,0.04387887194752693,-0.002424274804070592,0.04071798920631409,-0.010486321523785591,0.08443190902471542,-0.034798383712768555,-0.0293293297290802,-0.02010624296963215,0.031529221683740616,0.05576396360993385,0.023056579753756523,-0.08643599599599838,0.04259733483195305,0.04473162814974785,-0.17249256372451782,0.059771765023469925,-0.01864081434905529,0.03739389777183533,0.016459044069051743,0.07142499834299088,-0.05853893235325813,-0.029046306386590004,0.034920815378427505,-0.059541910886764526,-0.0023187899496406317,-0.09458572417497635,-0.05316691845655441,0.034177470952272415,0.027530955150723457,0.005998312495648861,-0.07689626514911652,-0.04628743603825569,0.021532494574785233,0.016532868146896362,0.13757659494876862,0.02664867416024208,-0.05289943143725395,0.02075124718248844,0.011980146169662476,-0.0167215708643198,-0.06974495202302933,-0.004332878161221743,-0.02526804246008396,-0.012798315845429897,-0.10432389378547668,0.03137518838047981,0.07406295090913773,0.024089794605970383,-0.12539175152778625,-0.028388619422912598,0.013001997955143452,0.05240875855088234,-0.10785170644521713,0.029769832268357277,-0.08162299543619156,-0.04489389434456825,0.00896627176553011,-0.041149675846099854,-0.1024206355214119,-0.012528122402727604,0.07192195951938629,0.03147190064191818,-0.054671090096235275,-0.00961572676897049,-0.009859024547040462,-0.014554329216480255,-0.032064590603113174,0.01039066817611456,0.005447495263069868,0.0612453892827034,-0.021231742575764656,-0.09971415996551514,-0.04634512960910797,-6.334772852043894e-33,0.037418656051158905,-0.00042381708044558764,0.0002773643936961889,-0.008932981640100479,0.014768281951546669,-0.02278536558151245,-0.058049291372299194,0.07517675310373306,-0.035104576498270035,0.01890885829925537,-0.0013138847425580025,0.052384354174137115,0.037988606840372086,0.045898884534835815,-0.1212279424071312,-0.008847787976264954,0.0039411885663867,0.015077472664415836,0.01241876371204853,0.03210175782442093,-0.013787860050797462,-0.03221670538187027,-0.055869024246931076,0.0518152229487896,0.05250224843621254,-0.05305497348308563,-0.03783988207578659,-0.02955815941095352,0.019384853541851044,0.03723711147904396,0.02510446310043335,0.005291388835757971,0.008810802362859249,-0.016626469790935516,-0.0252552330493927,0.0459628589451313,-0.11616648733615875,0.003817230463027954,-0.09641388803720474,-0.036176394671201706,-0.015301680192351341,0.05082787573337555,0.031229885295033455,-0.021060369908809662,-0.0262331310659647,-0.03342105448246002,0.07661422342061996,0.04369472339749336,-0.05898746848106384,-0.020697664469480515,-0.0381636880338192,-0.005785292014479637,0.01696307212114334,0.00008261397306341678,-0.0017318895552307367,-0.037197526544332504,-0.04170077294111252,0.013564753346145153,-0.010375311598181725,-0.039157044142484665,-0.015435805544257164,-0.08433878421783447,-0.024154698476195335,0.09262748807668686,-0.0059015401639044285,-0.06742268055677414,-0.04473891109228134,-0.04624390974640846,0.026508130133152008,0.017767751589417458,-0.0014894905034452677,0.009769213385879993,-0.021976567804813385,0.02047727257013321,0.0539112463593483,-0.002061458071693778,0.05599795654416084,-0.057055339217185974,0.011196816340088844,-0.054266199469566345,-0.030740534886717796,0.09577194601297379,-0.03767882660031319,-0.01883365958929062,0.14182071387767792,-0.003858383512124419,0.01577162928879261,-0.07611855864524841,0.006486549973487854,0.05800426006317139,-0.09068000316619873,0.015430907718837261,0.04557455703616142,-0.060218870639801025,-0.13921496272087097,2.4096473391185457e-33,0.04004119709134102,0.06529568880796432,0.06725426018238068,0.035601913928985596,0.018895942717790604,-0.04803502559661865,-0.02579563483595848,0.01149692665785551,-0.01669188216328621,0.11406481266021729,-0.04156089946627617,-0.02991778403520584,-0.018332863226532936,0.012583483010530472,0.029340999200940132,-0.06711766868829727,0.03630932420492172,0.056487809866666794,-0.060598328709602356,-0.056579023599624634,-0.0474836528301239,0.10943779349327087,-0.016514673829078674,0.026676341891288757,-0.029020361602306366,0.03614843264222145,0.08058515936136246,-0.028345881029963493,0.062037743628025055,-0.003829706460237503,0.040981873869895935,-0.04384259134531021,-0.12306201457977295,-0.07390602678060532,0.041534554213285446,0.01850348524749279,-0.021220430731773376,0.04077868163585663,0.018893606960773468,-0.012730051763355732,-0.07005909830331802,0.0889216959476471,0.0020173632074147463,0.03226041793823242,-0.041240841150283813,-0.06400663405656815,-0.021119391545653343,0.0020015095360577106,-0.06892643868923187,-0.005371194798499346,-0.044451046735048294,-0.03610926494002342,0.040350548923015594,-0.05921513959765434,0.018504437059164047,-0.014410356059670448,0.06612931936979294,-0.02168707177042961,0.03723243996500969,-0.013179372064769268,0.052141223102808,0.03379082679748535,-0.00023715474526397884,0.05058591440320015,-0.04112430289387703,0.04503006115555763,0.006680429447442293,0.11319807171821594,0.014849497936666012,0.06638669967651367,-0.010733888484537601,-0.0041528865694999695,-0.04772799089550972,0.022458717226982117,0.03732502460479736,-0.04308130964636803,0.08541755378246307,-0.04706651717424393,-0.006525540258735418,-0.005857165902853012,0.08246423304080963,-0.035154543817043304,-0.013230579905211926,0.026833094656467438,0.033351752907037735,-0.12011288851499557,0.0906975045800209,0.09232804924249649,-0.0022672780323773623,-0.008622103370726109,-0.011121123097836971,0.022427920252084732,0.00019064040679950267,-0.06294041872024536,-0.017643392086029053,-2.6055843704853032e-8,-0.04130779579281807,0.04620206728577614,0.07238578796386719,0.05818028002977371,0.011679308488965034,0.04606719687581062,0.01977841928601265,-0.12717817723751068,0.0055557903833687305,-0.03529934957623482,0.042568638920784,0.03672662377357483,0.056037649512290955,0.02150227129459381,0.09412357211112976,0.039515793323516846,-0.011702769435942173,-0.10651914775371552,-0.041995588690042496,-0.0022957781329751015,-0.030816763639450073,0.028065430000424385,0.05207466334104538,-0.03368182107806206,0.021852582693099976,0.07252407819032669,-0.030382810160517693,0.025919724255800247,0.0023774714209139347,0.06973147392272949,0.06278890371322632,0.0038714532274752855,-0.0861680805683136,-0.01848495751619339,-0.015035133808851242,-0.06502106040716171,-0.07740176469087601,0.003725521732121706,0.06522732973098755,0.015157969668507576,0.015292180702090263,0.10214903950691223,0.06776616722345352,0.08929887413978577,-0.01932230032980442,-0.009820036590099335,0.010850065387785435,-0.05464388430118561,-0.06614766269922256,-0.021827686578035355,-0.039342351257801056,0.009569192305207253,0.02973918244242668,0.04183148592710495,0.028838474303483963,0.07069697231054306,-0.0005659463931806386,0.018403107300400734,-0.041310008615255356,0.028024552389979362,0.10758073627948761,-0.045307036489248276,-0.05624246969819069,-0.09486750513315201]},{"text":"Oh, Frankenstein, be not equitable to every other and trample upon me alone, to whom thy justice, and even thy clemency and affection, is most due.","book":"1984","chapter":58,"embedding":[-0.03654979169368744,0.08367802202701569,0.07438710331916809,-0.038310304284095764,0.008976043201982975,0.037214495241642,-0.001786158769391477,0.012955459766089916,-0.008188428357243538,-0.019033456221222878,-0.04599183052778244,0.016861090436577797,-0.0035839758347719908,-0.020321810618042946,-0.06829582899808884,0.02396542578935623,0.037311770021915436,0.016264844685792923,-0.06085040047764778,0.018749359995126724,-0.06892874836921692,0.04733902961015701,0.027290591970086098,0.027812374755740166,-0.07238196581602097,-0.020551089197397232,0.03462482616305351,-0.08399330824613571,-0.03213317319750786,-0.0443824827671051,-0.010906332172453403,-0.0815543457865715,-0.014657773077487946,0.029597168788313866,-0.023289073258638382,-0.037963222712278366,0.010578008368611336,-0.04628392681479454,-0.019296780228614807,-0.05607985332608223,-0.04873550683259964,0.05279656499624252,-0.05221061781048775,0.058391716331243515,-0.08589455485343933,-0.008061541244387627,-0.06088106706738472,0.038531847298145294,-0.06853480637073517,-0.07722201943397522,-0.07271401584148407,-0.042201802134513855,-0.018276747316122055,0.041139330714941025,-0.03596166521310806,0.05618152394890785,0.0527026504278183,0.029448458924889565,-0.007451542187482119,-0.011899976991117,-0.014566163532435894,0.01414893101900816,-0.004479727707803249,0.06312116980552673,0.0744643583893776,-0.0015896214172244072,0.1134718731045723,0.02437673881649971,-0.16819395124912262,0.10632263869047165,0.03480516001582146,0.043579503893852234,0.0909610390663147,-0.01088389940559864,0.03563203290104866,-0.033674899488687515,0.013863918371498585,-0.053244855254888535,-0.006365075241774321,0.06327936053276062,-0.10062213987112045,0.033333659172058105,-0.043446775525808334,-0.021379604935646057,0.036385685205459595,-0.06608251482248306,0.03647729009389877,-0.06920202076435089,0.07745835930109024,0.04584801569581032,-0.030610330402851105,-0.06656841933727264,0.07658380270004272,-0.02682693675160408,-0.03738649562001228,0.03572716936469078,-0.015387243591248989,0.029812036082148552,-0.033725980669260025,0.03283108025789261,-0.07503277063369751,-0.0059736440889537334,-0.010916095227003098,0.050741031765937805,0.08851618319749832,0.008653957396745682,-0.06788812577724457,-0.05646227300167084,-0.0861935093998909,-0.014086236245930195,0.031493376940488815,-0.05489750951528549,0.06301520764827728,0.02509152516722679,0.10173399746417999,-0.004110697191208601,0.016103271394968033,-0.011048007756471634,0.07713846862316132,0.06251267343759537,0.01731959357857704,0.08182257413864136,-0.14319811761379242,0.11953025311231613,-0.020195122808218002,-0.04584139212965965,-0.01684015616774559,6.420049640737273e-34,-0.009640832431614399,-0.02369808219373226,-0.025415340438485146,-0.03198917955160141,-0.025165976956486702,0.008540741167962551,-0.09856105595827103,0.05017302185297012,-0.006524933967739344,0.015089787542819977,-0.06129436939954758,-0.005519174970686436,0.007452085148543119,-0.037322673946619034,-0.15640123188495636,0.02193065918982029,-0.010732650756835938,0.05434226989746094,0.039635203778743744,0.02410217374563217,0.004024118185043335,-0.034678440541028976,-0.026654798537492752,0.029063716530799866,-0.12449753284454346,-0.03245795890688896,-0.003652227809652686,0.00307865790091455,0.035900842398405075,0.018716372549533844,0.047693803906440735,0.030163660645484924,0.08379928022623062,0.022008152678608894,0.04061451926827431,0.01007252186536789,-0.054098572582006454,-0.02139999531209469,-0.0129700331017375,0.023679710924625397,-0.008979828096926212,0.04280434176325798,0.011586803942918777,-0.049114346504211426,0.05885641649365425,-0.013535592705011368,-0.0035848526749759912,0.019834518432617188,-0.027198823168873787,0.01548006571829319,-0.05492443963885307,-0.0002878884261008352,0.07504811882972717,-0.012520259246230125,0.00004002599234809168,0.0008061532280407846,-0.054802656173706055,0.08761084824800491,0.07440388202667236,0.0037092554848641157,-0.057354845106601715,-0.010310113430023193,0.05468437448143959,-0.04048570990562439,0.042784299701452255,-0.026368383318185806,-0.00012873804371338338,0.017690682783722878,-0.007949041202664375,0.0007748857024125755,-0.034416500478982925,0.006188292987644672,0.009957551024854183,0.11516473442316055,-0.0012689176946878433,-0.0006473170942626894,0.08462589234113693,-0.07453947514295578,0.05411231517791748,-0.06773717701435089,-0.09839030355215073,0.01651044748723507,-0.02195850946009159,-0.030478937551379204,0.05602113530039787,-0.0333816297352314,0.01918165199458599,-0.04560883343219757,0.047372959554195404,0.09077780693769455,0.02810576558113098,-0.051977574825286865,0.04882848262786865,-0.07642935961484909,-0.08714158087968826,-2.1982102518811793e-33,0.01315882708877325,-0.08657161146402359,-0.01815539225935936,0.0585179477930069,-0.028972938656806946,-0.0086347796022892,-0.1084740087389946,0.010618788190186024,0.004198819864541292,0.07138477265834808,-0.06036943569779396,-0.033971164375543594,0.06318085640668869,0.006812716368585825,-0.005312650464475155,-0.003843408776447177,0.08388685435056686,-0.0628005638718605,0.013329405337572098,0.00632928591221571,-0.014143085107207298,0.011339967139065266,-0.0307446476072073,0.018118439242243767,-0.0455993190407753,0.03845469653606415,-0.004343523643910885,-0.06534511595964432,-0.02917082980275154,0.035242676734924316,-0.02285880036652088,-0.07156331837177277,-0.09897185862064362,-0.05855269357562065,0.025149937719106674,-0.023347316309809685,0.04475313425064087,0.04903479292988777,0.04617966338992119,0.037645913660526276,-0.08600271493196487,-0.027648625895380974,-0.09393628686666489,0.06993764638900757,0.07662256807088852,0.000056126904382836074,-0.011854151263833046,0.015914464369416237,0.03692914545536041,-0.03331976756453514,-0.06663885712623596,0.03775852546095848,0.07628986984491348,-0.002555297454819083,-0.03647628054022789,-0.06751018017530441,0.08463279902935028,-0.060306940227746964,0.02068272978067398,0.09610891342163086,0.01843542419373989,0.022203925997018814,-0.0387372262775898,0.03981880843639374,0.028678327798843384,0.02506972849369049,-0.08565280586481094,0.022886056452989578,-0.019187195226550102,0.06215611845254898,-0.06811409443616867,-0.06879352778196335,-0.015218585729598999,-0.04348491504788399,0.021427256986498833,0.03406340256333351,0.03789309784770012,-0.023590894415974617,-0.07455304265022278,0.04956955462694168,0.06386006623506546,-0.08720275014638901,0.03744907304644585,0.021937886252999306,-0.04508514329791069,-0.0864899531006813,0.03177882358431816,-0.039509959518909454,0.01374038029462099,0.042170315980911255,-0.06868308037519455,-0.013063216581940651,0.054887156933546066,-0.02142757549881935,0.030660053715109825,-3.5591924074651615e-8,0.05755418539047241,-0.02189047820866108,0.002544764196500182,0.020683705806732178,0.030383005738258362,-0.005858490243554115,0.007298590149730444,-0.003365438897162676,-0.07505442202091217,0.09424219280481339,0.002306833863258362,0.019028034061193466,0.020573502406477928,0.09718236327171326,0.08459530025720596,0.07003307342529297,0.009244529530405998,-0.12944567203521729,-0.07204464077949524,0.02342989854514599,-0.01596064493060112,0.06317979097366333,-0.006642170250415802,-0.1010991632938385,-0.02413458377122879,0.037580542266368866,-0.0000357076532964129,-0.04445531964302063,-0.0766327828168869,0.04352514073252678,-0.0178684089332819,0.019521690905094147,-0.02875799499452114,-0.05663565546274185,-0.01637752540409565,0.04351558908820152,-0.016376987099647522,0.04037776216864586,0.013521844521164894,0.007120840717107058,0.007343350909650326,0.11039382964372635,0.04705274477601051,0.04171443730592728,0.05967928469181061,-0.058315664529800415,0.022297358140349388,0.056362736970186234,-0.05484792962670326,-0.002954853931441903,0.00971657782793045,-0.005838881246745586,-0.002240300178527832,0.003817400662228465,0.062385305762290955,-0.032624270766973495,0.07134311646223068,-0.022765157744288445,-0.1063544899225235,-0.014199643395841122,0.12732337415218353,-0.026287993416190147,0.08503802865743637,-0.08361619710922241]},{"text":"They spurn and hate me.","book":"1984","chapter":58,"embedding":[0.008816379122436047,0.020543139427900314,0.10089407116174698,0.007025551050901413,0.07348766922950745,-0.05705296993255615,0.017332250252366066,-0.005470185074955225,0.04749715328216553,0.008900807239115238,-0.031633954495191574,-0.01116630993783474,0.04013756662607193,-0.025589115917682648,-0.03959931060671806,-0.022254711017012596,-0.02261318825185299,-0.06528906524181366,-0.004081472288817167,-0.03445173427462578,-0.13483844697475433,0.054468028247356415,-0.058298900723457336,0.029787661507725716,-0.03457748889923096,0.0564737506210804,-0.030511613935232162,0.038468364626169205,-0.008425101637840271,-0.011975379660725594,-0.016214024275541306,-0.06675717234611511,-0.04071464017033577,0.013475855812430382,0.007916356436908245,-0.009815441444516182,0.04980281740427017,-0.04909302666783333,0.06092097982764244,0.024386344477534294,0.10631262511014938,-0.03231258690357208,0.09842096269130707,-0.024644318968057632,0.0014213764807209373,0.008493713103234768,0.05052117630839348,0.06788288801908493,0.04835578799247742,0.007110632490366697,0.03563925251364708,-0.004919827450066805,0.013090142980217934,0.024315625429153442,0.04934937134385109,0.0662631168961525,-0.009675468318164349,0.14160588383674622,0.10691770911216736,0.03254014626145363,-0.02445422112941742,0.031135637313127518,-0.06466268002986908,0.0511992983520031,-0.0413643941283226,0.05251191183924675,0.0065363128669559956,0.09914302825927734,0.015901736915111542,0.03630302473902702,0.026292847469449043,-0.030547361820936203,0.009918268769979477,0.0574512742459774,-0.01717163249850273,0.016068346798419952,-0.032813917845487595,-0.03866243734955788,0.031797509640455246,-0.05847852677106857,-0.04547515884041786,-0.020736902952194214,-0.06757143139839172,0.024562479928135872,0.03677830845117569,-0.02114192210137844,0.12219292670488358,0.025972265750169754,0.04096534103155136,0.004102336708456278,-0.01931523159146309,0.006160689517855644,0.01568462885916233,-0.033863432705402374,0.045621491968631744,-0.026408568024635315,-0.00999422650784254,-0.03130008280277252,-0.03217633068561554,0.1196528896689415,-0.020906230434775352,-0.01090174913406372,-0.008158685639500618,0.05636291205883026,0.06524702161550522,-0.032465193420648575,-0.07044371217489243,0.018578089773654938,-0.009540834464132786,-0.0175742469727993,-0.018420755863189697,0.03189234808087349,0.011369438841938972,-0.04098743945360184,-0.021393267437815666,-0.041081853210926056,0.020898332819342613,0.04007189720869064,0.01435841154307127,-0.029861660674214363,-0.03536621481180191,0.09100586920976639,-0.07482333481311798,0.08179562538862228,-0.021452002227306366,-0.02650557830929756,-0.16573770344257355,-4.6371962769573184e-33,-0.011826466768980026,-0.013050883077085018,-0.005272033158689737,-0.042156726121902466,-0.016304634511470795,-0.05384090542793274,-0.04197486862540245,0.055810991674661636,0.0001081720256479457,-0.047615744173526764,0.01830597035586834,-0.021747902035713196,-0.0264422670006752,-0.04728315770626068,0.027632439509034157,-0.03546692430973053,0.00857732817530632,0.00910944677889347,0.0011554770171642303,0.05530845746397972,-0.05007501319050789,0.04277068376541138,-0.009957836009562016,0.03726271167397499,-0.05402859300374985,-0.04799068719148636,-0.08009714633226395,0.027952952310442924,-0.01592385768890381,-0.005777047947049141,0.03066803328692913,-0.04665306583046913,0.00974082387983799,0.0363190621137619,0.010509789921343327,-0.0455668680369854,0.046161968261003494,-0.019434651359915733,-0.03864457458257675,-0.03294684737920761,0.034891676157712936,-0.009128790348768234,-0.0501936674118042,-0.013348325155675411,0.05485231801867485,0.036169178783893585,0.06924733519554138,0.0038352194242179394,-0.03907797113060951,-0.0665174126625061,0.075476735830307,-0.002901059575378895,0.06853694468736649,0.0755988359451294,0.012184864841401577,-0.043687816709280014,-0.036182962357997894,0.002412928733974695,0.0067118327133357525,0.011881640180945396,0.046666231006383896,0.0036185248754918575,-0.0577571876347065,-0.014227024279534817,0.00397527776658535,-0.06536546349525452,0.07276134938001633,0.0835043340921402,0.08040380477905273,-0.007728082127869129,0.02857888489961624,0.019712457433342934,-0.028129911050200462,0.0006990035180933774,0.04789154604077339,-0.04752699285745621,0.036682866513729095,0.017187634482979774,-0.03366822376847267,-0.06666608899831772,0.08504628390073776,-0.03751303255558014,-0.025297218933701515,-0.05478397011756897,-0.01571585051715374,0.055899348109960556,0.02263437956571579,-0.04392553120851517,0.03560515493154526,-0.04882262647151947,-0.014414132572710514,0.042198631912469864,-0.008518988266587257,0.04508455470204353,-0.09278659522533417,4.0138375001880134e-33,0.012210644781589508,0.031205059960484505,0.017502155154943466,0.027713369578123093,-0.08164653927087784,-0.011144179850816727,-0.01609601452946663,0.08948025852441788,-0.0323316715657711,0.017941202968358994,-0.00875583104789257,-0.038404084742069244,0.0564635805785656,0.06543011218309402,0.031106406822800636,-0.08785075694322586,0.0704769566655159,-0.022519562393426895,-0.023020679131150246,-0.08249097317457199,-0.020673980936408043,0.10348109900951385,0.0035888520069420338,0.04819751903414726,0.006608956027776003,-0.016813384369015694,0.08726491034030914,-0.002196294255554676,-0.06186817213892937,-0.011290246620774269,0.10008983314037323,-0.007560735568404198,-0.13244815170764923,-0.054398391395807266,0.045758478343486786,0.019339680671691895,-0.1548839956521988,0.10653328895568848,-0.022452490404248238,-0.09964139014482498,-0.10304700583219528,-0.055357467383146286,0.040603138506412506,0.02083917148411274,0.014068812131881714,0.03705954551696777,0.1602587252855301,0.011851264163851738,-0.11014784127473831,0.05754411593079567,-0.06024991720914841,0.03832453861832619,0.05092203617095947,0.001931637991219759,-0.0951225683093071,-0.11521124839782715,0.11949963122606277,-0.007318215444684029,0.05438753962516785,-0.10343284904956818,-0.06176947057247162,0.012313679791986942,0.013299350626766682,0.02848171815276146,0.06480593979358673,-0.002498885616660118,-0.05584573745727539,-0.02188236080110073,0.05646533519029617,-0.004538046196103096,-0.06364522129297256,0.03787590563297272,0.006049125920981169,0.016387827694416046,-0.038167182356119156,-0.02507058158516884,-0.0396260991692543,-0.05545693263411522,0.01422558818012476,0.02981249988079071,0.001387830707244575,0.0177898071706295,0.03182404488325119,0.053883932530879974,-0.05784675478935242,0.11943875998258591,0.00046275564818643034,0.06436144560575485,0.022354695945978165,-0.03451869636774063,0.045143477618694305,-0.08299428224563599,0.02016601897776127,0.03586840257048607,-0.020480290055274963,-1.6554457360484776e-8,-0.007474320009350777,-0.06377474218606949,-0.023277228698134422,0.04406822845339775,-0.0010976530611515045,-0.040574293583631516,-0.06468106806278229,0.09879041463136673,-0.009909836575388908,-0.017074620351195335,0.013084543868899345,-0.07556687295436859,0.010568666271865368,-0.03888382390141487,0.10991036146879196,0.09337188303470612,0.11364930123090744,-0.01381771732121706,-0.04031496122479439,-0.047672245651483536,-0.09704294055700302,0.024874040856957436,-0.03802525997161865,0.011623911559581757,-0.039485808461904526,-0.09046516567468643,0.037947773933410645,-0.01979929953813553,0.0567735992372036,0.024617591872811317,-0.00019267703464720398,-0.002466946840286255,-0.021727925166487694,-0.01073471736162901,-0.049740981310606,0.0883701890707016,-0.06050305813550949,-0.033197835087776184,0.04450463503599167,-0.0039161802269518375,-0.03982868045568466,0.051455285400152206,-0.0035490498412400484,-0.05057496204972267,-0.1433267593383789,-0.012022744864225388,0.054269805550575256,-0.013286078348755836,0.014822633005678654,-0.08226825296878815,0.0991276353597641,0.0447266660630703,-0.01624857261776924,0.11857939511537552,-0.0012378371320664883,0.0025908397510647774,0.004693660419434309,-0.005945734214037657,-0.014701609499752522,0.03923765569925308,0.04285209998488426,-0.009947260841727257,0.01362574752420187,-0.0024742919486016035]},{"text":"The guilty are allowed, by human laws, bloody as they are, to speak in their own defence before they are condemned.","book":"1984","chapter":59,"embedding":[0.022023368626832962,0.09696350991725922,-0.0821799784898758,-0.05091579630970955,0.04223984479904175,0.07627827674150467,0.05800965055823326,-0.08038654923439026,0.031562287360429764,0.008416605181992054,0.05919085070490837,-0.016555406153202057,-0.04407934471964836,0.06071092188358307,0.03202533721923828,-0.053219009190797806,0.036653995513916016,-0.030883057042956352,-0.005207734182476997,0.04375437647104263,0.08532282710075378,0.045416221022605896,0.08875399082899094,0.0432131327688694,-0.07713262736797333,0.00484712328761816,0.020843051373958588,-0.00936043169349432,0.02109980583190918,0.04660840332508087,-0.04351947084069252,-0.07477312535047531,0.09036954492330551,0.049871984869241714,-0.08481114357709885,0.01039900816977024,0.006756737362593412,-0.062358323484659195,-0.03602232411503792,-0.032782383263111115,0.015993675217032433,-0.0031270962208509445,-0.037814851850271225,-0.0018810343462973833,0.04661419242620468,-0.01529526337981224,-0.05487401783466339,0.11083373427391052,-0.0023406757973134518,-0.11178727447986603,-0.005869205109775066,-0.010972633957862854,0.011817003600299358,0.022865692153573036,-0.0918697789311409,-0.12631756067276,-0.02315785363316536,0.02642415277659893,-0.016652032732963562,-0.023981140926480293,0.0014471630565822124,0.016093645244836807,-0.011403989978134632,0.002309208968654275,-0.0023738578893244267,0.005537760443985462,0.036935485899448395,0.05939704179763794,-0.025453390553593636,0.08358824998140335,-0.016837526112794876,0.03416305407881737,0.13123226165771484,-0.008971530944108963,-0.1306956559419632,-0.007467889226973057,0.029294755309820175,-0.054971154779195786,-0.02916635200381279,-0.05343732610344887,-0.050486188381910324,-0.046765509992837906,0.04364410787820816,-0.05006721615791321,0.0011350290151312947,-0.037761151790618896,-0.04897147789597511,-0.037790074944496155,0.04848252981901169,0.013361350633203983,0.04255444556474686,-0.07191553711891174,0.06655272096395493,0.015709059312939644,0.058942098170518875,-0.033174313604831696,-0.04760368540883064,0.0746726542711258,-0.010398205369710922,-0.026608524844050407,-0.026136597618460655,-0.01893119141459465,-0.07370772212743759,-0.033982109278440475,0.04393727704882622,-0.022504527121782303,-0.02018195204436779,-0.006903945002704859,-0.008815818466246128,-0.04594658315181732,-0.020759593695402145,0.013272873125970364,0.07905422896146774,-0.034001365303993225,0.09989764541387558,0.09474150091409683,-0.05660800263285637,-0.028848040848970413,-0.041078902781009674,0.0129756610840559,0.02590102329850197,0.07007206231355667,0.02473045140504837,0.04525529965758324,0.011523698456585407,-0.02494770660996437,-0.06843064725399017,-4.160782742906446e-33,0.056460410356521606,0.005306510720402002,-0.03740783780813217,-0.09914493560791016,-0.07563933730125427,-0.03670721873641014,-0.12153316289186478,-0.047342076897621155,0.07477185875177383,0.09540852159261703,0.028012124821543694,-0.14736589789390564,-0.016973348334431648,-0.05419587716460228,-0.03382658213376999,0.046249326318502426,-0.04659855365753174,0.022811435163021088,-0.05029409006237984,0.013863594271242619,0.05858870595693588,0.014319959096610546,0.028284549713134766,0.08253515511751175,-0.1158585399389267,-0.06726761162281036,0.03795287013053894,0.008410636335611343,0.000885755056515336,0.007798121776431799,-0.024909373372793198,-0.02629067748785019,0.05596567690372467,0.036602068692445755,0.03434203192591667,0.022102171555161476,-0.02207811363041401,0.033869531005620956,0.01535893976688385,0.030103512108325958,0.028046730905771255,-0.00006063419641577639,0.021451661363244057,-0.06098811328411102,0.013365176506340504,-0.04554005339741707,-0.11829017102718353,-0.09190692007541656,-0.041548117995262146,0.033227767795324326,0.06757482886314392,0.018988410010933876,-0.01536894217133522,-0.00796021893620491,0.029089266434311867,0.08594104647636414,-0.03985089063644409,0.10332980006933212,0.016062498092651367,0.028721872717142105,0.023166460916399956,0.0163118839263916,-0.025099925696849823,-0.0382089801132679,-0.03494776785373688,-0.04006403312087059,-0.00465459655970335,0.01743285357952118,-0.016148237511515617,-0.11117010563611984,-0.05229491740465164,0.06914535164833069,0.04463360086083412,0.02757498063147068,-0.04579039290547371,0.021627362817525864,0.042722322046756744,-0.04163912311196327,0.08577071130275726,-0.01145024411380291,-0.03357077017426491,0.039904020726680756,0.01005725096911192,0.03433063253760338,-0.008466590195894241,-0.011884334497153759,-0.02490430884063244,-0.03659969940781593,0.017069218680262566,0.011605520732700825,0.04287319257855415,-0.023390132933855057,0.050956450402736664,-0.09315337985754013,-0.05280615761876106,-7.085219190361892e-34,-0.011238206177949905,0.0029504827689379454,-0.06273192912340164,0.05044848099350929,-0.04800841584801674,0.04275020584464073,0.023770488798618317,0.015768185257911682,-0.005860753357410431,0.06347779929637909,-0.13089166581630707,-0.036440759897232056,0.026081210002303123,0.06517558544874191,0.038413383066654205,0.007424056064337492,0.011893085204064846,0.056046560406684875,0.024702230468392372,-0.021232128143310547,-0.00904600229114294,0.020144499838352203,0.0022745730821043253,-0.023210011422634125,-0.027606630697846413,-0.0374668687582016,0.03316400945186615,-0.04727780073881149,0.02675669454038143,-0.021132774651050568,0.010156894102692604,0.09865057468414307,-0.10143999755382538,-0.03125595673918724,0.007491573225706816,-0.06251522153615952,0.08554130047559738,0.006844158750027418,-0.012584145180881023,0.042991477996110916,-0.034511007368564606,0.013188489712774754,-0.0961155816912651,0.008001777343451977,-0.03554443269968033,-0.08190378546714783,-0.01086616050451994,0.008225996047258377,0.008353102952241898,-0.05296528711915016,-0.020266825333237648,0.003115664701908827,0.04699529707431793,-0.05087771639227867,-0.021705441176891327,-0.1035766527056694,-0.03753619268536568,-0.09825160354375839,0.08059553056955338,-0.058362651616334915,-0.0002992571971844882,-0.03194154053926468,-0.06376297771930695,0.0559113472700119,0.01927272230386734,0.09107682853937149,-0.10959924757480621,0.06487062573432922,0.057202957570552826,0.028429768979549408,0.05370163917541504,-0.049895029515028,-0.05566081404685974,-0.1024668738245964,0.009830096736550331,-0.0023832188453525305,-0.04318135604262352,0.010498079471290112,-0.06250704079866409,-0.05579604580998421,0.1009315773844719,-0.10715772956609726,-0.00825231708586216,0.10810792446136475,0.028346778824925423,-0.009710379876196384,0.04468146339058876,-0.018695801496505737,-0.01355905644595623,0.008145839907228947,-0.021169861778616905,-0.10257752984762192,0.04827849194407463,0.029083119705319405,-0.005862168036401272,-2.830305234624575e-8,-0.08395224809646606,0.005792762618511915,-0.008133701048791409,0.023496108129620552,0.02625023014843464,0.024858957156538963,0.022404788061976433,-0.0758558139204979,0.005589826498180628,0.009353349916636944,0.002033511409536004,-0.020541297271847725,0.009220791980624199,-0.04252682626247406,-0.015568259172141552,0.0639510229229927,-0.02133137546479702,-0.07210475206375122,0.0005079986876808107,-0.0005697598098777235,-0.01136466022580862,0.010560253635048866,0.01565447263419628,0.07503899186849594,0.0036230715923011303,-0.009404217824339867,-0.03015563264489174,-0.025479264557361603,-0.01552779320627451,0.07523278892040253,0.010955792851746082,0.06552524119615555,-0.04179801419377327,0.038419514894485474,0.021604368463158607,-0.03696450963616371,-0.04346538335084915,0.04102833569049835,0.0034927166998386383,0.016090290620923042,-0.02899961546063423,-0.055263567715883255,0.08510284125804901,0.01320097129791975,0.12228446453809738,0.003114773891866207,-0.042305245995521545,0.040324822068214417,-0.02002817578613758,-0.007688888348639011,-0.04514423385262489,0.022292407229542732,-0.002683083526790142,0.07736621052026749,0.08655960112810135,0.04805360734462738,0.10398097336292267,0.06187630072236061,-0.07824823260307312,0.011671680957078934,0.007496482692658901,0.05107047036290169,0.11501278728246689,-0.11037834733724594]},{"text":"Hear my tale; it is long and strange, and the temperature of this place is not fitting to your fine sensations; come to the hut upon the mountain.","book":"1984","chapter":59,"embedding":[0.04118078574538231,-0.0059220255352556705,0.07085047662258148,0.11035539954900742,0.01368816290050745,-0.1033148244023323,-0.00950752105563879,-0.04780026897788048,0.0015718616778030992,0.03367038816213608,-0.02206495590507984,-0.05285187065601349,0.037380848079919815,0.012554983608424664,0.052050087600946426,-0.07838702946901321,0.07222896814346313,-0.08751391619443893,0.029383497312664986,0.01750021055340767,0.03220321610569954,0.04219873622059822,-0.0032586718443781137,0.052804913371801376,-0.01314549520611763,-0.02053159475326538,-0.02948972024023533,0.028366737067699432,-0.025932706892490387,-0.022104911506175995,-0.037625912576913834,0.05137264356017113,-0.04345221817493439,-0.020395884290337563,0.07177607715129852,0.19173595309257507,-0.05144650861620903,-0.07741177082061768,-0.015523962676525116,-0.027209268882870674,0.03275985270738602,-0.017205260694026947,0.13276711106300354,-0.022381708025932312,0.013251805678009987,0.02913636714220047,-0.031403958797454834,-0.06489430367946625,0.06662323325872421,-0.019380684942007065,-0.06389586627483368,-0.017374414950609207,0.009901530109345913,0.02166341058909893,-0.09472349286079407,0.049742091447114944,-0.020216358825564384,-0.08223557472229004,0.024193882942199707,0.03232528269290924,0.028533006086945534,-0.003506007604300976,-0.07546566426753998,0.023734096437692642,0.11766339838504791,-0.07433643192052841,-0.0651983916759491,-0.0037538178730756044,-0.015965692698955536,-0.022833462804555893,0.01763509400188923,0.04429832845926285,-0.013433044776320457,0.004287606105208397,-0.006930497009307146,-0.07460270076990128,-0.02277008444070816,-0.052607469260692596,-0.025479085743427277,0.04431946948170662,0.012339282780885696,0.036834683269262314,0.07675015181303024,0.023985769599676132,-0.10144690424203873,-0.005364549346268177,0.09664472937583923,-0.009972965344786644,-0.021718354895710945,-0.039374202489852905,0.04352981224656105,-0.07993235439062119,-0.14221718907356262,0.03261518478393555,0.011825516819953918,0.010043677873909473,-0.03838387504220009,0.08262614160776138,-0.05189137160778046,-0.0050276899710297585,0.011250645853579044,-0.007508353795856237,-0.0755242332816124,0.04147797077894211,0.03890330344438553,-0.013249453157186508,-0.019024670124053955,0.0396340973675251,-0.009433450177311897,-0.03353012353181839,-0.09560094773769379,0.004237830638885498,0.01703280210494995,0.03290886804461479,-0.026120716705918312,-0.010594436898827553,0.01588551141321659,-0.02115871198475361,-0.02372136525809765,0.06683612614870071,-0.003617537673562765,0.01920916885137558,-0.0019239102257415652,0.06385670602321625,-0.05529748275876045,0.007201846688985825,0.04893874004483223,-4.925381574030864e-33,0.013982061296701431,0.011089419014751911,0.02885250560939312,-0.010901594534516335,0.17481103539466858,-0.01793377660214901,-0.10567022860050201,-0.045036666095256805,-0.01960158720612526,0.06774085015058517,0.01630338281393051,-0.0001236959215020761,-0.06482250988483429,0.05772283300757408,-0.021358007565140724,-0.016222285106778145,0.003882809542119503,-0.02292623557150364,-0.0542549267411232,-0.009479572996497154,-0.01196220237761736,0.027184410020709038,0.021264508366584778,0.04727037996053696,-0.05939873307943344,-0.04960939288139343,-0.0432087741792202,0.02767609991133213,-0.08461293578147888,0.031092340126633644,-0.01616262085735798,0.011856037192046642,0.015793245285749435,-0.09708522260189056,0.03283275291323662,-0.0053085810504853725,0.013198466040194035,0.0428931750357151,-0.03355448693037033,0.01899932138621807,0.03622041642665863,-0.03948817774653435,0.03353429213166237,0.06725776195526123,0.06157814711332321,0.09728831052780151,0.053054530173540115,0.04608866199851036,-0.11600682139396667,0.00882207415997982,-0.05737881734967232,0.08049186319112778,0.024934988468885422,-0.0052419546991586685,-0.0008014407940208912,-0.014554171822965145,0.04676332324743271,-0.06399716436862946,0.015752378851175308,0.06423654407262802,-0.0017467994475737214,0.04241897910833359,0.02445044182240963,-0.0651145800948143,-0.04080585017800331,-0.06333544850349426,-0.0097701046615839,-0.006220333278179169,0.00797528401017189,0.0065488051623106,0.021933268755674362,0.0036861691623926163,-0.013109387829899788,0.021453168243169785,-0.023764388635754585,-0.09118364006280899,-0.06734723597764969,0.004798495210707188,-0.027355320751667023,-0.08204910904169083,0.04380442947149277,0.009406907483935356,0.030186505988240242,0.08382003754377365,0.07696643471717834,-0.044629063457250595,0.014730413444340229,-0.12206432968378067,-0.04813910275697708,0.055614981800317764,-0.04614412412047386,-0.0127216512337327,0.08909698575735092,-0.04674946516752243,-0.06206951290369034,2.2494568464602385e-33,0.05858328938484192,-0.06164015457034111,0.028463497757911682,0.02695845626294613,-0.05246780067682266,-0.030765336006879807,-0.002374236471951008,0.11594934016466141,-0.06766504794359207,0.08715133368968964,-0.03251705318689346,-0.013568716123700142,0.05044393241405487,-0.0027110595256090164,0.07911387830972672,0.03599489480257034,0.03857886791229248,0.05292927473783493,-0.00141536770388484,0.004497735761106014,-0.04216567426919937,0.0278220996260643,-0.03194580227136612,-0.028788097202777863,0.003663340350612998,0.03341010585427284,0.007922464050352573,-0.03263958543539047,-0.08586610853672028,-0.01329424325376749,-0.1320033222436905,0.0441586934030056,-0.096598319709301,-0.04369276389479637,-0.03466219827532768,0.038270555436611176,0.0131293386220932,-0.05950632691383362,-0.04868277162313461,-0.06649521738290787,0.03939102962613106,-0.017295382916927338,0.040768034756183624,0.02666476182639599,0.02449682354927063,-0.04942510277032852,0.014545761980116367,0.0026558591052889824,-0.030858362093567848,0.04270907863974571,0.014695564284920692,-0.01992730051279068,0.017984358593821526,0.035296179354190826,0.023146482184529305,-0.033387962728738785,-0.10653780400753021,0.008476386778056622,0.04762052372097969,-0.09799345582723618,-0.005398361943662167,-0.010987640358507633,-0.057630740106105804,0.006090329494327307,0.11922770738601685,0.04463855177164078,-0.0342508926987648,-0.00019203065312467515,0.052184686064720154,0.08562025427818298,-0.026330040767788887,-0.057931821793317795,-0.07454422116279602,-0.08513855189085007,0.017511770129203796,0.012707561254501343,0.03677269443869591,-0.02595636062324047,-0.037907809019088745,-0.0627429410815239,-0.014537427574396133,-0.022328615188598633,0.0016632063779979944,-0.028185823932290077,0.07879902422428131,-0.06072995066642761,0.08479508012533188,0.005442546680569649,-0.0547931082546711,0.07125256210565567,-0.003656333079561591,0.020030204206705093,-0.048531424254179,-0.008802896365523338,-0.005094985943287611,-3.093949985100153e-8,-0.00968563836067915,0.0016196112846955657,-0.010629044845700264,0.04088428243994713,0.030169513076543808,-0.051147811114788055,0.05415162444114685,0.030436057597398758,-0.008189868181943893,0.1063467487692833,-0.06840059161186218,0.0888146162033081,0.09952908009290695,0.06642120331525803,0.008796322159469128,0.03433233126997948,-0.002455860609188676,0.03628137707710266,-0.05084480717778206,-0.00011676431313389912,-0.011271525174379349,0.049350012093782425,0.04624876752495766,0.03434677794575691,-0.021121308207511902,0.0566546656191349,0.0028437653090804815,0.023910213261842728,0.04208768531680107,-0.03226847946643829,-0.0456337034702301,-0.013267077505588531,-0.07803553342819214,0.0008680633618496358,0.0011799967614933848,-0.05451926216483116,-0.021533872932195663,0.00972338393330574,0.0249047689139843,-0.0969608724117279,-0.040431372821331024,-0.04035145789384842,0.041391849517822266,0.06668142229318619,-0.040042486041784286,-0.07626450061798096,0.045803677290678024,0.05317156761884689,0.0113106369972229,0.13394509255886078,0.008349576964974403,0.045287758111953735,0.06116637587547302,0.0848953127861023,0.03582582250237465,-0.0500466413795948,-0.04578021913766861,-0.0039458260871469975,-0.03091380186378956,0.06468543410301208,0.04139823839068413,-0.024916354566812515,-0.14870506525039673,-0.047446977347135544]},{"text":"Chapter 11 “It is with considerable difficulty that I remember the original era of my being; all the events of that period appear confused and indistinct.","book":"1984","chapter":60,"embedding":[-0.013734583742916584,0.05322691798210144,0.037420853972435,0.02263423055410385,0.030694512650370598,0.060965556651353836,0.004374166484922171,-0.016484642401337624,-0.0724562406539917,-0.033525947481393814,-0.003661761060357094,0.014882824383676052,-0.03380866348743439,-0.112464040517807,0.0016757668927311897,-0.05943100154399872,-0.06144164875149727,0.04007662460207939,-0.0185597762465477,0.021001333370804787,-0.005274337716400623,0.020669732242822647,0.04619443044066429,0.0025846546050161123,0.015779290348291397,0.06359462440013885,0.007123107090592384,0.0292417760938406,0.042891595512628555,-0.030970266088843346,0.0151212764903903,-0.008768681436777115,-0.02854536660015583,-0.019313668832182884,0.010785579681396484,0.009963304735720158,0.04299727454781532,-0.012973476201295853,0.06362207978963852,-0.03264308348298073,-0.017659740522503853,0.031356047838926315,-0.048794183880090714,-0.023858163505792618,0.024955060333013535,-0.023030076175928116,-0.040851663798093796,0.0012144927168264985,-0.029533658176660538,0.025288617238402367,0.004418337717652321,0.037134066224098206,-0.011756522580981255,-0.0370330885052681,-0.002536207437515259,0.07026270776987076,0.003156067105010152,0.0068050711415708065,0.026895053684711456,-0.04929707199335098,-0.05089934170246124,-0.052087876945734024,-0.015948230400681496,0.0724821388721466,-0.032738711684942245,-0.0030066773761063814,0.014907649718225002,-0.01687256619334221,-0.036220379173755646,-0.017294293269515038,-0.03854275122284889,-0.012598981149494648,-0.014543023891746998,-0.028824016451835632,0.007128822151571512,-0.039980698376894,-0.01728418841958046,-0.015859780833125114,-0.0034908533561974764,0.007395803462713957,-0.007441203109920025,0.03168855234980583,0.0016997471684589982,-0.011746319010853767,-0.0613277442753315,-0.02213280461728573,0.05481413006782532,-0.05986228585243225,-0.01662769727408886,0.027626538649201393,-0.02614486776292324,-0.09282571077346802,0.10417723655700684,-0.004336156882345676,0.08760365098714828,0.027195265516638756,-0.005173858720809221,0.053322359919548035,0.06275889277458191,0.05252435430884361,-0.01750781387090683,-0.0621003732085228,-0.004284239839762449,0.06524976342916489,-0.02921859733760357,-0.08831965178251266,-0.04509727656841278,-0.07610631734132767,-0.06928122043609619,-0.02556942030787468,-0.03957758843898773,-0.1322486847639084,-0.01542771328240633,0.00023839781351853162,0.05731763690710068,0.012949270196259022,0.07828764617443085,0.0022530953865498304,0.0179729126393795,0.09906458109617233,-0.023552043363451958,0.04549332335591316,-0.03685777261853218,0.12365678697824478,-0.06940262764692307,0.0030113488901406527,0.05576293542981148,-2.853156765908987e-33,0.02326345629990101,-0.09317664802074432,-0.07545642554759979,0.033561334013938904,-0.018855590373277664,0.07696511596441269,-0.08276722580194473,0.040452852845191956,0.037297021597623825,-0.03871297091245651,0.053274378180503845,-0.012446228414773941,-0.08124836534261703,-0.06316156685352325,-0.055407699197530746,-0.003532081376761198,-0.0844377651810646,-0.00513099879026413,0.1388503462076187,-0.025642985478043556,-0.05003981664776802,0.05341615155339241,-0.008904029615223408,-0.10691366344690323,-0.024650301784276962,0.028461944311857224,0.03832865133881569,0.06148231402039528,-0.025625241920351982,0.017923222854733467,0.028790021315217018,0.0336824432015419,-0.022279934957623482,-0.042469099164009094,0.002162232529371977,0.03520694002509117,0.0806991383433342,-0.007259078323841095,0.01771233044564724,-0.03821368142962456,-0.025932449847459793,-0.004678662866353989,-0.021992728114128113,-0.09071531891822815,0.012103842571377754,0.06115490198135376,0.09225999563932419,-0.021758997812867165,-0.05632228031754494,0.0976443961262703,-0.0860811322927475,0.005124146584421396,0.024633971974253654,-0.0687432736158371,-0.010737692005932331,-0.04888438805937767,-0.023105395957827568,0.03870285674929619,-0.04348186403512955,0.06695470958948135,0.11054093390703201,0.03849425166845322,0.042896099388599396,0.039592307060956955,-0.033851154148578644,0.02856350503861904,-0.05780313163995743,-0.026522783562541008,0.00837032776325941,0.010465479455888271,-0.0862707570195198,-0.029917577281594276,0.02067512832581997,0.0417560376226902,0.05706864967942238,-0.0010460132034495473,-0.008869156241416931,0.024959424510598183,-0.11793287843465805,-0.04426804929971695,0.010302913375198841,-0.016457056626677513,-0.08462035655975342,0.05863352492451668,0.0016733687371015549,-0.07144106179475784,0.08390984684228897,-0.04797077924013138,0.007808608002960682,0.013874578289687634,0.12632989883422852,-0.006864098832011223,0.07996401190757751,-0.004909884184598923,-0.08960580080747604,-1.3071685443910961e-33,0.030537692829966545,-0.030993206426501274,-0.02228401042521,0.017650699242949486,-0.02073020488023758,-0.059130407869815826,-0.05939153954386711,0.058367568999528885,-0.041297804564237595,-0.031299229711294174,-0.030441049486398697,0.02325020730495453,0.07128090411424637,-0.0019210521131753922,-0.09199802577495575,-0.07170293480157852,-0.02001694031059742,0.03514745831489563,-0.0111978929489851,0.02130143716931343,0.0002733778383117169,0.0015369330067187548,-0.04097098112106323,-0.1511651873588562,0.08090606331825256,0.06203153356909752,0.055498916655778885,-0.027785159647464752,-0.03173834830522537,-0.027286028489470482,-0.05297441408038139,0.04718974977731705,-0.021891776472330093,-0.02800106443464756,-0.03872251510620117,-0.027289776131510735,0.011604990810155869,-0.044328805059194565,-0.003720131702721119,-0.10309096425771713,-0.031046651303768158,-0.01501212827861309,-0.0496692880988121,0.026183895766735077,-0.011683827266097069,-0.012748456560075283,0.09905621409416199,0.10699830204248428,0.01679939590394497,0.06377869844436646,-0.08653554320335388,0.01802767813205719,0.0780443474650383,-0.04256991669535637,0.008487265557050705,0.005196788813918829,0.04392678290605545,-0.06890300661325455,0.003357768291607499,0.028659923002123833,-0.03049362078309059,0.05008644610643387,-0.07667183130979538,0.017160702496767044,0.0923830196261406,-0.05708710476756096,-0.03573812544345856,-0.0005923438002355397,-0.017103247344493866,0.06961800158023834,-0.0025232748594135046,-0.09123539179563522,-0.11532295495271683,0.012779607437551022,0.024251995608210564,-0.009562727063894272,-0.038270264863967896,-0.010670014657080173,-0.029343102127313614,-0.08062494546175003,-0.05818277597427368,-0.005095191765576601,-0.04560299962759018,0.02189970202744007,0.0042307511903345585,0.05299723148345947,-0.04568984732031822,-0.00006337452214211226,0.04422185570001602,0.00432400731369853,0.020677560940384865,-0.014980730600655079,-0.022484280169010162,0.04133709520101547,-0.01500837691128254,-3.2891005474766644e-8,0.029656443744897842,0.017434334382414818,0.029745060950517654,0.0138962771743536,0.08176340907812119,0.021937908604741096,0.019599420949816704,0.0015617817407473922,-0.04222630709409714,0.0408591628074646,-0.06087448447942734,0.07846394926309586,0.10496217757463455,0.010534381493926048,0.0638209655880928,0.07982439547777176,0.04481792077422142,-0.0772460475564003,-0.016971450299024582,0.011219956912100315,0.08082360029220581,-0.027188526466488838,0.03544348478317261,-0.11170100420713425,-0.07809687405824661,0.029117003083229065,-0.06476695090532303,0.05410083010792732,-0.011844448745250702,-0.0023243073374032974,0.0266896802932024,0.07655686885118484,-0.058020785450935364,-0.14018972218036652,-0.08808325976133347,0.01640167459845543,0.0008030218887142837,0.0520283542573452,0.007916150614619255,-0.11209018528461456,0.06250376254320145,-0.019181018695235252,0.04874996840953827,0.07962388545274734,-0.04267331212759018,0.01931144669651985,0.09541034698486328,0.03522363677620888,-0.017426809296011925,-0.012783301994204521,0.02860230952501297,0.12772579491138458,0.10008399188518524,-0.006129046902060509,0.002151449676603079,0.011926666833460331,0.03160568326711655,0.07654415816068649,-0.06565411388874054,-0.00554295489564538,0.13367079198360443,0.07341495901346207,-0.10328363627195358,-0.03143453225493431]},{"text":"I was a poor, helpless, miserable wretch; I knew, and could distinguish, nothing; but feeling pain invade me on all sides, I sat down and wept. “Soon a gentle light stole over the heavens and gave me a sensation of pleasure.","book":"1984","chapter":60,"embedding":[0.02102513052523136,0.08195838332176208,0.022900158539414406,0.10586685687303543,0.03171836584806442,0.017782174050807953,0.10091450065374374,0.03885148838162422,0.008661839179694653,0.008867806755006313,-0.0002650048118084669,-0.024927431717514992,0.035468026995658875,0.0349510982632637,-0.0004108140419702977,-0.008740809746086597,-0.0008401008672080934,0.013179183937609196,-0.015882186591625214,0.04246271029114723,-0.02575967274606228,0.05934496596455574,-0.01696966588497162,-0.018785929307341576,-0.05941004678606987,0.024979665875434875,-0.006447150371968746,0.006920989602804184,0.014945563860237598,-0.049171384423971176,-0.03309090435504913,-0.06058681011199951,0.03734709322452545,0.044261302798986435,0.06531009078025818,0.07729752361774445,-0.020408760756254196,-0.0656869038939476,0.02701500989496708,-0.01267310418188572,0.012025915086269379,-0.014691194519400597,-0.06431489437818527,0.010538939386606216,0.04318320378661156,-0.04183797910809517,-0.003533067414537072,0.018415288999676704,0.05464247986674309,-0.046725671738386154,0.04804026708006859,-0.023148084059357643,-0.04479185491800308,0.031236747279763222,-0.025408124551177025,0.03389686718583107,-0.010214164853096008,-0.021870963275432587,-0.027720831334590912,-0.03935050964355469,0.005688521545380354,0.012863773852586746,0.07868795096874237,0.055939994752407074,0.037695180624723434,0.010017875581979752,0.008841942064464092,-0.058533791452646255,-0.08523823320865631,0.032227523624897,-0.05207403749227524,-0.027568958699703217,0.03564438223838806,-0.048661619424819946,-0.07799976319074631,-0.07672356069087982,0.03244755417108536,-0.040076423436403275,-0.0380844809114933,0.011561835184693336,-0.003977871034294367,0.01905108243227005,-0.06986135244369507,0.06881535798311234,-0.06868644058704376,-0.054971762001514435,0.10176198184490204,-0.01868559420108795,0.02426525577902794,-0.0020546354353427887,-0.009273979812860489,-0.05261801555752754,-0.10048369318246841,0.04762694984674454,-0.0015474320389330387,-0.017919396981596947,-0.04065791144967079,-0.007074969355016947,-0.10694217681884766,0.06959182769060135,0.05343668907880783,0.004699323792010546,-0.023682480677962303,0.06674999743700027,0.02461518906056881,-0.03941591456532478,-0.12520241737365723,-0.008661874569952488,-0.02127801440656185,-0.040874164551496506,-0.045370910316705704,-0.02305055409669876,0.0091004129499197,-0.014426937326788902,0.005191334523260593,-0.018391745164990425,-0.013132551684975624,-0.04959123581647873,-0.01046549342572689,0.09751973301172256,0.033021166920661926,-0.003827933454886079,0.017272338271141052,0.06049381569027901,-0.04194970801472664,-0.03981495648622513,0.011068709194660187,-3.982382006043978e-33,0.04583971947431564,-0.0522233322262764,0.058128759264945984,-0.03489040210843086,0.04026754945516586,-0.030835334211587906,-0.008547174744307995,0.02603478729724884,-0.05758741497993469,-0.023330822587013245,-0.07438948005437851,0.029056113213300705,0.020188136026263237,-0.021378809586167336,-0.02632731758058071,-0.003854181617498398,-0.07240739464759827,-0.020696260035037994,0.066233329474926,0.0045074597001075745,-0.09554992616176605,0.06087208166718483,-0.0067370301112532616,-0.004646103363484144,-0.08868564665317535,-0.01352042518556118,-0.019963881000876427,-0.07675126194953918,0.06292998790740967,0.03553353622555733,-0.012482412159442902,0.04005090519785881,0.131972074508667,0.005875715054571629,0.03741049766540527,0.06166907399892807,-0.014998835511505604,0.01953393593430519,-0.019997375085949898,-0.04012225940823555,-0.04363648593425751,0.023681817576289177,0.059266347438097,-0.033655956387519836,0.015224632807075977,0.0628901943564415,-0.04118324816226959,0.015245702117681503,-0.0695204809308052,0.023830115795135498,-0.07299162447452545,0.019216887652873993,0.0766357034444809,-0.03673665225505829,0.026308827102184296,0.01572795957326889,-0.02186703309416771,0.07238475233316422,-0.0000476503701065667,-0.001694686128757894,-0.059010099619627,-0.04337926208972931,0.06823446601629257,-0.08606808632612228,-0.03415464609861374,-0.09139104187488556,-0.054665081202983856,-0.0930536612868309,-0.08947344124317169,-0.03696305677294731,-0.14193092286586761,0.05697784945368767,0.00886404886841774,0.02432827092707157,-0.02021779678761959,-0.03413742035627365,0.017040636390447617,-0.03409931808710098,-0.033293697983026505,-0.035729020833969116,0.004127185791730881,-0.07732245326042175,-0.0023200223222374916,0.0004644922446459532,0.0837436094880104,-0.030619919300079346,-0.0016734906239435077,-0.1355174481868744,-0.08697963505983353,-0.013200140558183193,0.021015476435422897,0.07133771479129791,0.06272631883621216,-0.16749417781829834,-0.05968557670712471,2.2759917947201284e-33,0.01947181299328804,-0.005270997527986765,-0.05206401273608208,0.12120389938354492,0.021472906693816185,-0.04241495952010155,-0.10862516611814499,0.01983582228422165,-0.06400103121995926,0.11684031039476395,0.0006535458378493786,-0.0009506149217486382,-0.0009052733075805008,-0.037521760910749435,-0.05347084999084473,0.007870540022850037,-0.006365956272929907,0.05828670412302017,-0.002189669758081436,-0.017609277740120888,-0.0453827790915966,0.11904241889715195,0.00039924459997564554,-0.06362557411193848,-0.0032440361101180315,0.08311328291893005,0.1415935754776001,0.006605838891118765,-0.04690976440906525,-0.013881239108741283,0.09341026097536087,0.04045667499303818,-0.1074729859828949,0.042050160467624664,0.005709427408874035,0.09517978876829147,0.10200494527816772,0.032857224345207214,-0.0766109973192215,-0.06816596537828445,-0.012250252068042755,0.03867800533771515,0.05650292709469795,0.06772521138191223,0.006046017166227102,-0.01925569958984852,-0.055483024567365646,-0.017778651788830757,0.013233284465968609,0.03832264244556427,-0.04100767895579338,0.017367511987686157,0.046693552285432816,0.0354936346411705,0.01782846450805664,-0.060041315853595734,-0.04443058744072914,-0.07159969955682755,0.01956624910235405,-0.02737990766763687,-0.04623597487807274,0.0038059744983911514,-0.06087872013449669,0.06988052278757095,0.01976517215371132,-0.036729104816913605,0.005889324005693197,0.0626130923628807,-0.06664111465215683,0.04143057018518448,-0.022751612588763237,-0.035124991089105606,-0.0660284087061882,0.0021848094183951616,0.053581517189741135,0.0272295530885458,-0.011149453930556774,0.0020265427883714437,-0.09919247776269913,-0.037824537605047226,0.0022458031307905912,-0.0057955519296228886,0.07910998910665512,0.019027192145586014,-0.045687753707170486,-0.04468081519007683,-0.01753160171210766,0.004797621164470911,-0.08014415949583054,0.022053303197026253,-0.0420854389667511,0.06769579648971558,0.004270923789590597,-0.059339962899684906,0.07195140421390533,-3.7765438776204974e-8,-0.02691098116338253,-0.016402143985033035,-0.06563428789377213,-0.04226735234260559,0.06341136246919632,0.01097622700035572,0.07119142264127731,0.03732890263199806,-0.08543027192354202,0.05768510326743126,-0.06890276074409485,0.055045198649168015,0.05258408933877945,0.08491427451372147,0.04315830022096634,0.08147148787975311,0.03846343979239464,-0.01912805251777172,0.004588475916534662,0.04696190357208252,0.013345516286790371,0.04231745004653931,0.009278876706957817,-0.06227542832493782,0.046758122742176056,0.0006747221923433244,-0.023818543180823326,-0.014654962345957756,-0.05764976888895035,-0.032552916556596756,0.11047729104757309,0.06990938633680344,-0.029872355982661247,-0.01320755947381258,-0.046464256942272186,0.04450537636876106,-0.002959469798952341,-0.033584192395210266,-0.024755584076046944,0.013643914833664894,0.006876006256788969,0.10030043125152588,0.02148294448852539,-0.0017992719076573849,0.035845108330249786,-0.047590501606464386,0.07577378302812576,0.00010648345050867647,0.01580354943871498,0.11014650762081146,0.052540235221385956,0.10286067426204681,0.037174444645643234,0.0248368252068758,0.01766439527273178,-0.062386102974414825,0.007856649346649647,0.06557740271091461,-0.05232448875904083,0.01788950525224209,0.14657650887966156,0.030689990147948265,-0.03744449466466904,0.0010645881993696094]},{"text":"My sensations had by this time become distinct, and my mind received every day additional ideas.","book":"1984","chapter":61,"embedding":[-0.04391774162650108,-0.044642768800258636,0.07852446287870407,0.06746455281972885,0.05167231336236,-0.03971939533948898,0.0703977718949318,0.043212320655584335,0.10729611665010452,-0.05071299523115158,-0.013894210569560528,0.06351298093795776,-0.011934804730117321,0.04238807410001755,0.10022741556167603,-0.00028285925509408116,0.014863895252346992,-0.02816556952893734,-0.04846576973795891,-0.0180232971906662,-0.022987455129623413,0.0017868204740807414,-0.0036825973074883223,0.007644230499863625,-0.034502290189266205,0.09432201087474823,0.02132781408727169,0.002184902550652623,0.028769636526703835,-0.08440479636192322,0.037515752017498016,0.07868192344903946,-0.06622883677482605,0.015647877007722855,0.013314205221831799,0.024409683421254158,-0.10356063395738602,0.020068220794200897,0.013859568163752556,-0.056778453290462494,-0.03831954300403595,-0.05054866150021553,0.05294104292988777,0.021321451291441917,0.0018959984881803393,-0.046190183609724045,0.04280100390315056,-0.03025348298251629,0.020631907507777214,-0.012517370283603668,-0.05356438085436821,-0.023026708513498306,-0.02424638718366623,-0.03890479728579521,0.0004850494733545929,-0.021838253363966942,-0.020244775339961052,0.055368706583976746,0.004980813711881638,-0.04054569825530052,-0.06713574379682541,0.02620810642838478,0.003154277103021741,-0.0024184805806726217,-0.0074841915629804134,0.04132560268044472,-0.026134870946407318,0.04093524441123009,0.027965499088168144,0.026027880609035492,0.03567788377404213,0.08221270143985748,0.008527853526175022,0.009557832963764668,0.056364335119724274,0.016095848754048347,-0.023445339873433113,-0.032198578119277954,-0.012728773057460785,0.012196365743875504,-0.05174901708960533,0.12121067196130753,-0.021042080596089363,-0.0030135444831103086,-0.005352839361876249,-0.008055772632360458,0.04104204475879669,0.09273100644350052,0.006795523222535849,0.010669833049178123,-0.028288232162594795,-0.08990608900785446,-0.1053408607840538,0.006253269966691732,0.041907645761966705,-0.05368014797568321,-0.09114176779985428,0.05079130828380585,0.008853575214743614,0.04173264279961586,-0.013233216479420662,0.04525148123502731,-0.06922715902328491,0.022931864485144615,0.08097109198570251,-0.0077723246067762375,-0.05286918580532074,-0.03583688288927078,-0.032730501145124435,-0.03636143356561661,-0.05002027750015259,0.0220121331512928,-0.011622810736298561,0.026399340480566025,-0.031032495200634003,0.02469594217836857,-0.0020950285252183676,0.022799968719482422,0.04788517951965332,0.06605862081050873,0.02589455060660839,-0.013912366703152657,0.0351015143096447,-0.08440365642309189,-0.05140020698308945,-0.037259407341480255,0.0035241739824414253,-2.419001335415214e-33,-0.013953998684883118,-0.011883433908224106,0.02652396820485592,0.0009575639269314706,0.1336946189403534,-0.03153647482395172,-0.06038232147693634,0.02461855486035347,-0.0008083666325546801,-0.07551294565200806,-0.028337139636278152,0.05022116377949715,0.031952403485774994,0.027628647163510323,-0.10754317045211792,-0.026418261229991913,-0.0757964700460434,0.04412350803613663,0.09518834203481674,-0.05583837628364563,-0.04942001774907112,0.09463823586702347,0.02155495621263981,-0.014019276946783066,-0.058708082884550095,0.00348319998010993,-0.018636202439665794,0.021683869883418083,-0.013409820385277271,-0.01026352122426033,0.02700890228152275,0.09597083926200867,-0.014295841567218304,-0.013123431243002415,-0.043014440685510635,0.088553287088871,0.07907643914222717,-0.06590662151575089,0.04229400306940079,-0.02060079388320446,0.014386571943759918,0.016898367553949356,-0.02802629955112934,-0.08160553127527237,0.015469986014068127,0.07585112005472183,0.013632101938128471,0.020141370594501495,-0.08127307891845703,-0.0019179737428203225,-0.06374338269233704,0.01599934510886669,0.05996949225664139,-0.04123860225081444,-0.04022998362779617,-0.010929585434496403,-0.03043830767273903,-0.00912476796656847,0.054904256016016006,0.01786729320883751,-0.008603718131780624,-0.0028945282101631165,0.03962981328368187,-0.07057778537273407,-0.07533036172389984,0.01514439657330513,0.018902774900197983,-0.07085941731929779,0.01979978382587433,0.053170349448919296,-0.02914191223680973,-0.01144732441753149,-0.034541092813014984,-0.07417842745780945,-0.01807168871164322,-0.11493449658155441,-0.006636837963014841,-0.012905250303447247,-0.04874346777796745,-0.013585668988525867,0.013441911898553371,-0.0821278765797615,0.05412160977721214,0.04162456840276718,0.10021109879016876,0.03599962592124939,0.038754358887672424,-0.08231171220541,-0.10204248130321503,-0.015099593438208103,-0.03890078142285347,-0.02854955568909645,0.08177993446588516,-0.08345282077789307,-0.07503163814544678,7.075525035387455e-34,-0.043582797050476074,-0.02546151913702488,-0.029247239232063293,0.05902570113539696,0.0054438477382063866,-0.09222383052110672,-0.06307927519083023,-0.007594796363264322,-0.08332230895757675,0.10343880206346512,0.08610590547323227,0.01706056483089924,0.013400052674114704,0.040202606469392776,-0.10306290537118912,-0.02735580876469612,-0.0025337059050798416,0.007558193523436785,0.03313864767551422,0.012490358203649521,-0.05858117714524269,0.130889430642128,-0.0061638690531253815,-0.01492726057767868,0.09833946079015732,0.06685281544923782,0.09019441157579422,0.03110574558377266,-0.06280586868524551,-0.00989539548754692,-0.03043864481151104,0.029784230515360832,-0.07182233035564423,-0.011187559925019741,0.023995891213417053,0.04169471189379692,0.03626454249024391,-0.0146244578063488,-0.054935142397880554,-0.013131857849657536,-0.11102323234081268,-0.0018112214747816324,0.05904938280582428,0.0955076739192009,-0.04514569044113159,0.003908237442374229,-0.050991255789995193,0.053904421627521515,-0.029351232573390007,0.06014026701450348,-0.01755499839782715,0.058873046189546585,-0.03578828647732735,-0.11817386001348495,-0.026428524404764175,0.05981597304344177,0.07540655136108398,-0.05228050425648689,0.06954939663410187,0.04419444873929024,-0.014384197071194649,-0.0405348539352417,-0.07658249139785767,-0.07379978895187378,0.08063939213752747,-0.015068750828504562,-0.004267489071935415,-0.011316081508994102,-0.049823518842458725,0.018719298765063286,-0.024676328524947166,0.047564417123794556,-0.10696186125278473,0.04649137705564499,0.009061863645911217,0.010673334822058678,-0.02648663893342018,0.0047537838108837605,-0.05669081211090088,-0.00032514313352294266,-0.10313080996274948,-0.024014772847294807,0.07702361047267914,0.02521861530840397,-0.06529074162244797,0.0016654317732900381,-0.07668647915124893,0.0024663072545081377,-0.0025108212139457464,-0.02643379382789135,-0.05361972376704216,0.008569925092160702,-0.06929992884397507,0.09763260185718536,0.0066312216222286224,-2.269352350481313e-8,0.0014271438121795654,-0.02137298323214054,0.006526230368763208,0.05579649284482002,0.09954595565795898,-0.027336059138178825,0.005790682043880224,0.05451326444745064,-0.0850176215171814,-0.011533403769135475,0.012158787809312344,0.0010730153881013393,-0.020919496193528175,0.07814174145460129,0.1322478950023651,-0.014814157038927078,0.04782431572675705,-0.04900898039340973,-0.015516545623540878,-0.03784745931625366,0.08558414876461029,0.09293901175260544,0.04403281211853027,-0.048009153455495834,-0.018541410565376282,0.05066809803247452,-0.03505710884928703,0.020701058208942413,-0.04340866208076477,0.014807037077844143,0.07136598229408264,0.006914820522069931,-0.07346759736537933,-0.026927214115858078,-0.055576249957084656,-0.03888831287622452,-0.02659016288816929,-0.010859808884561062,-0.014509852975606918,-0.039383623749017715,0.030384758487343788,0.024789944291114807,0.015073920600116253,0.0681413933634758,-0.00733748497441411,0.0013572756433859468,0.04575382173061371,-0.023294955492019653,0.01680343970656395,0.057706404477357864,0.0336688831448555,0.10552049428224564,0.10041063278913498,0.05330885574221611,0.0805378407239914,0.015488937497138977,-0.030337516218423843,0.027059471234679222,-0.07660076022148132,-0.0009276402997784317,0.12055604159832001,0.013029603287577629,-0.13141977787017822,0.003995182458311319]},{"text":"I covered it carefully with dry wood and leaves and placed wet branches upon it; and then, spreading my cloak, I lay on the ground and sank into sleep. “It was morning when I awoke, and my first care was to visit the fire.","book":"1984","chapter":62,"embedding":[0.03991099074482918,0.15710672736167908,0.07969632744789124,0.10610338300466537,0.10931729525327682,-0.024908851832151413,0.045067980885505676,0.003001719480380416,-0.042428839951753616,0.007840017788112164,-0.06060121953487396,-0.013698237016797066,-0.004956253804266453,0.08812292665243149,-0.01856912486255169,-0.019710827618837357,-0.09337780624628067,0.036764632910490036,-0.02148324064910412,0.025199895724654198,0.0554988831281662,0.06379292160272598,0.08220956474542618,-0.007605950813740492,0.020498884841799736,-0.006958120968192816,-0.012876525521278381,-0.03495270013809204,0.010613563470542431,-0.06898242235183716,0.014321898110210896,-0.029210997745394707,-0.03301876783370972,-0.005782639607787132,-0.04176943376660347,0.07149755209684372,0.014320465736091137,-0.021133914589881897,0.01092488318681717,0.028144970536231995,0.05424261465668678,0.011325904168188572,-0.01859872043132782,-0.020859098061919212,0.0012906462652608752,-0.005053089931607246,0.049253642559051514,0.0035078004002571106,0.07938764989376068,0.038409240543842316,-0.011805822141468525,0.04916125163435936,-0.0855240598320961,-0.010425630956888199,-0.053916990756988525,0.053481489419937134,0.05832463130354881,-0.0334346629679203,0.04289577528834343,-0.024764712899923325,0.015834879130125046,0.021873250603675842,-0.00812344066798687,0.032737839967012405,0.015754759311676025,-0.03287822753190994,-0.03663342073559761,-0.004181720782071352,0.08774473518133163,0.038586147129535675,-0.0179578997194767,0.034056004136800766,0.008918770588934422,-0.014251596294343472,-0.10069146007299423,-0.049275364726781845,0.05389702320098877,-0.06644060462713242,0.03105016238987446,0.04676610231399536,-0.028893429785966873,0.013058004900813103,0.02340301312506199,0.10273472964763641,-0.010242375545203686,0.0913601815700531,0.023663237690925598,0.023527326062321663,-0.017599228769540787,-0.030376531183719635,0.12131836265325546,-0.036918334662914276,-0.071891188621521,0.06432346999645233,-0.012260906398296356,-0.04072880744934082,-0.00350028439424932,0.010450858622789383,-0.03394660726189613,0.04897267371416092,0.054344795644283295,-0.07052308320999146,0.0190122090280056,-0.012994254007935524,-0.032038185745477676,-0.04054218903183937,-0.07926048338413239,-0.000936641707085073,-0.027780432254076004,-0.05680251121520996,-0.0026424380484968424,-0.0059457276947796345,-0.02073446474969387,0.03020372986793518,-0.006151515059173107,0.02201210893690586,0.04814409092068672,0.001573620829731226,-0.016574526205658913,0.06467735767364502,0.07418658584356308,0.06858617812395096,0.051330890506505966,0.012642957270145416,-0.02452762797474861,-0.04396027326583862,0.05002155527472496,-4.36457930053446e-33,0.05076855421066284,0.03293972834944725,-0.011333144269883633,0.049641408026218414,0.08371855318546295,-0.10329169780015945,-0.011223590932786465,0.03302202746272087,-0.09867601096630096,0.07426822930574417,0.04472098499536514,0.016094857826828957,-0.022127460688352585,-0.09333314001560211,-0.0847870409488678,0.0018851509084925056,-0.06363381445407867,-0.03253478556871414,0.03843776509165764,-0.02888539806008339,-0.027844836935400963,0.03435853496193886,0.05262065678834915,-0.07466789335012436,0.020264962688088417,0.005088635720312595,-0.03646383434534073,-0.052761323750019073,0.0101194242015481,0.050690874457359314,0.08769308030605316,-0.03971109166741371,0.004066440276801586,-0.0512101985514164,0.014033347368240356,0.01799154467880726,-0.01774870790541172,0.000019814688130281866,-0.03443264588713646,-0.042237941175699234,-0.056716594845056534,-0.008484442718327045,0.06317836791276932,-0.03286735340952873,-0.011138481087982655,-0.0065901512280106544,-0.022111594676971436,0.13251656293869019,0.0005577077972702682,-0.02454475313425064,0.07322640717029572,-0.00972049217671156,-0.016240261495113373,-0.05973988026380539,-0.010118506848812103,0.06647036224603653,0.058437786996364594,-0.022510534152388573,0.029648154973983765,0.014649704098701477,0.11127381771802902,-0.07505477219820023,0.010658477433025837,-0.026242973282933235,0.03154221922159195,-0.11209893971681595,-0.026849666610360146,-0.048872776329517365,0.05215024575591087,-0.1445147544145584,-0.09478876739740372,0.0017263558693230152,-0.04611402004957199,0.01863563433289528,-0.056868039071559906,-0.034240033477544785,0.00593165447935462,-0.0161997452378273,-0.075727678835392,-0.025496119633316994,0.10615887492895126,-0.009094149805605412,-0.06788840889930725,0.04025164619088173,0.008043279871344566,-0.03594333305954933,0.004775878041982651,0.029989810660481453,-0.1080508604645729,0.014252553693950176,-0.005413495935499668,-0.01859414204955101,0.14534275233745575,-0.16808967292308807,0.0034880037419497967,3.213273317374233e-33,0.03453448414802551,-0.05323847755789757,0.002201914554461837,0.05564328655600548,-0.04794861748814583,-0.07357984781265259,-0.04450032487511635,-0.01735159195959568,-0.0651501715183258,0.05232216790318489,-0.024683434516191483,0.025451535359025,0.06861770898103714,-0.021082766354084015,-0.018777282908558846,-0.0180593840777874,0.05312304198741913,0.0774640291929245,0.009749132208526134,-0.0064880806021392345,-0.041412703692913055,0.020171359181404114,-0.018243515864014626,0.01405036635696888,-0.06667919456958771,0.023514069616794586,0.15751081705093384,-0.020431173965334892,0.00040000147419050336,-0.09370838850736618,0.030190030112862587,-0.029226623475551605,-0.040700823068618774,-0.022067496553063393,-0.06222061812877655,0.023012926802039146,0.023871488869190216,-0.047647085040807724,-0.011949965730309486,-0.1091020330786705,0.05504410341382027,-0.022701146081089973,0.011043709702789783,0.017472535371780396,0.02291422337293625,-0.0684594064950943,-0.05533495917916298,0.03341773524880409,0.03061915934085846,0.06192563474178314,-0.015706731006503105,-0.0359053835272789,-0.05378413945436478,-0.06464461982250214,-0.012872446328401566,-0.0008406525594182312,-0.020642973482608795,-0.09141603112220764,0.04181274026632309,0.00815081037580967,-0.02735782228410244,0.002012701006606221,-0.10688257962465286,0.0065902844071388245,-0.058514125645160675,-0.021117111667990685,-0.08857438713312149,0.03300299122929573,-0.05450809746980667,0.010872197337448597,-0.039836518466472626,0.036519866436719894,-0.06158357486128807,0.00551064545288682,0.008971022441983223,-0.02075738087296486,0.05655571445822716,0.0077346377074718475,-0.0254709143191576,0.018948117271065712,0.05103256553411484,0.011355596594512463,-0.018749453127384186,-0.01798257790505886,0.06744661182165146,-0.08802676200866699,0.04595135524868965,-0.005671970080584288,-0.022339407354593277,-0.058955103158950806,-0.06427519023418427,0.02127557247877121,-0.0027078879065811634,0.015009798109531403,0.021039608865976334,-2.971638224380513e-8,-0.031350716948509216,0.0028166247066110373,0.08133947104215622,0.04222877323627472,-0.00007540823571616784,-0.026532957330346107,0.11044993996620178,-0.0034340405836701393,-0.09348300844430923,-0.0810389369726181,-0.12455473095178604,0.08935579657554626,0.04947368800640106,0.09158053994178772,0.10449491441249847,0.0011213277466595173,0.038883209228515625,0.04508151859045029,-0.03183978050947189,-0.028424954041838646,0.020555319264531136,0.0359509214758873,0.013951687142252922,-0.013321276754140854,0.07113324105739594,0.024379262700676918,-0.02626805752515793,0.003740310436114669,0.04709288850426674,0.05770793929696083,0.050092026591300964,0.03209666535258293,-0.06734650582075119,-0.003832411952316761,-0.09827622026205063,-0.008002161048352718,0.03921784460544586,-0.02664704993367195,0.03486249968409538,-0.05669092386960983,0.06869694590568542,0.06501712650060654,0.07115443050861359,-0.0015618749894201756,-0.043849650770425797,0.011579169891774654,0.01667032204568386,-0.02212672308087349,-0.04226592183113098,0.0974874421954155,0.021127941086888313,-0.0611005537211895,0.0576067790389061,0.0903802439570427,-0.010330728255212307,-0.04336394742131233,0.056948669254779816,-0.05410752817988396,0.011241513304412365,-0.023444555699825287,0.027309320867061615,0.010643182322382927,-0.09595457464456558,-0.005364980082958937]},{"text":"This was a new sight to me, and I examined the structure with great curiosity.","book":"1984","chapter":62,"embedding":[-0.023338906466960907,-0.030545158311724663,-0.03311601281166077,0.008206608705222607,0.019062312319874763,-0.0664915069937706,-0.06212346628308296,0.0033936023246496916,0.006957897450774908,0.0036354067269712687,0.030556144192814827,0.05981004610657692,-0.04561590030789375,0.0068947793915867805,-0.040261052548885345,-0.013380643911659718,-0.019632872194051743,0.005348088685423136,-0.011427233926951885,0.03302764892578125,0.00013507668336387724,0.009615371003746986,0.0808200016617775,-0.011921698227524757,-0.025351108983159065,0.040753841400146484,-0.04494728893041611,-0.0024356681387871504,0.07221528887748718,-0.07861339300870895,-0.019154557958245277,0.06240382045507431,0.06366890668869019,0.007281072903424501,0.05473969504237175,0.038949575275182724,0.0893954262137413,0.015272417105734348,0.021321238949894905,-0.054254550486803055,-0.04294019564986229,0.034593649208545685,0.0882386788725853,0.04654616117477417,-0.00911775417625904,0.0561305433511734,0.0027280503418296576,-0.08315517008304596,0.07029486447572708,-0.03031873144209385,-0.08586203306913376,-0.10135766118764877,-0.02303120866417885,-0.03008943609893322,-0.022375203669071198,0.08904798328876495,-0.0628211572766304,-0.06750040501356125,0.012189539149403572,-0.06037353351712227,0.11426839977502823,0.044341906905174255,-0.02712247706949711,0.03733433783054352,0.06768296658992767,0.014600452966988087,-0.03007431887090206,-0.033516477793455124,0.07774295657873154,-0.0866498351097107,0.06353393197059631,0.011198068037629128,0.037610989063978195,0.05653107166290283,0.033726636320352554,0.009814741089940071,0.008793412707746029,-0.0290807094424963,0.02890007756650448,-0.030233459547162056,-0.005966854281723499,0.07462484389543533,0.007587706204503775,0.026795577257871628,-0.03232455253601074,0.012032791040837765,-0.003506131935864687,-0.061007846146821976,-0.02368049882352352,-0.0258895605802536,0.0860600546002388,-0.02317933738231659,-0.13412503898143768,0.005118385888636112,-0.01935603842139244,-0.006694943644106388,-0.030702274292707443,0.031235823407769203,0.028130264952778816,0.035885706543922424,0.053793154656887054,0.015098150819540024,0.05785829573869705,-0.018506046384572983,-0.10052137821912766,-0.026622772216796875,-0.038143590092659,0.05717438831925392,0.005974135361611843,-0.023654155433177948,-0.0449821799993515,0.020735448226332664,-0.000860479602124542,-0.008483930490911007,-0.07521522045135498,-0.014566441997885704,-0.026373350992798805,0.03058239258825779,0.023122332990169525,0.009988167323172092,0.10800732672214508,-0.018945423886179924,0.0040937503799796104,0.010598371736705303,0.002936580451205373,-0.06528139859437943,-0.1546180248260498,-7.371162874809718e-33,0.06409149616956711,0.07245467603206635,0.03278789669275284,0.06812436878681183,0.026519112288951874,-0.02581900544464588,-0.0013069846900179982,0.06542383134365082,-0.06451359391212463,0.04120221361517906,0.00584239698946476,0.04822532460093498,-0.027365462854504585,0.0023487252183258533,-0.019670551642775536,-0.10759049654006958,-0.06087644025683403,0.05046111345291138,-0.05347965657711029,-0.017545778304338455,-0.029665084555745125,0.046278830617666245,0.04994908720254898,0.00018859152623917907,0.07248349487781525,0.04032806679606438,0.028157725930213928,-0.047519877552986145,-0.08110455423593521,0.043656304478645325,-0.08107759058475494,0.037234362214803696,-0.09553861618041992,0.03927193582057953,-0.003991618752479553,0.04040665552020073,0.003824061481282115,-0.04550734534859657,-0.041221316903829575,-0.057334158569574356,0.03155685216188431,-0.007657844107598066,0.0353725329041481,0.028224321082234383,-0.05769408866763115,0.003543633269146085,-0.03906892612576485,-0.028806865215301514,-0.05234925076365471,-0.027612164616584778,-0.007088442798703909,0.04298549145460129,-0.016552135348320007,0.04477446526288986,0.016159024089574814,0.07270518690347672,-0.02802348881959915,0.03544754534959793,0.007083512842655182,0.029608305543661118,0.013251438736915588,0.11349606513977051,-0.013665735721588135,0.027551013976335526,-0.0640634149312973,0.08083859086036682,-0.08155576139688492,-0.004367821849882603,0.06756865233182907,0.05142918601632118,-0.0717683881521225,-0.021747784689068794,0.036078061908483505,-0.024007318541407585,-0.05535031855106354,-0.010475851595401764,-0.08751329779624939,0.0069888923317193985,0.07047723978757858,-0.06874477118253708,-0.006754998117685318,-0.03543804585933685,0.0501120425760746,-0.0005983897135592997,-0.05562252178788185,-0.04535903036594391,0.1243332028388977,-0.09094511717557907,-0.045274768024683,0.009136106818914413,0.029354920610785484,-0.023789074271917343,0.02355385571718216,-0.10444963723421097,-0.02920832484960556,4.250022233259043e-33,-0.010704397223889828,-0.09505937248468399,0.04163254052400589,0.0013821402098983526,-0.07360149919986725,-0.04145050048828125,-0.03779800236225128,-0.019807783886790276,-0.01341209840029478,0.04782828688621521,0.06378800421953201,0.07474439591169357,0.008887659758329391,-0.035578858107328415,0.032814111560583115,0.05090925097465515,0.028621718287467957,-0.08416618406772614,0.003917113412171602,-0.004668674897402525,-0.01387640181928873,0.10211678594350815,-0.07227330654859543,-0.09679015725851059,0.018910180777311325,0.0583488866686821,0.05524960905313492,-0.13053765892982483,-0.009670766070485115,-0.009435389190912247,-0.0838608369231224,-0.06449054181575775,-0.0353480689227581,0.07035481184720993,-0.033940862864255905,0.06382325291633606,0.047056470066308975,-0.06662741303443909,0.009511493146419525,-0.07590103894472122,-0.0021814433857798576,0.08897493034601212,0.06351416558027267,0.03372209891676903,0.013546171598136425,-0.03197765350341797,0.019264262169599533,0.10707399994134903,-0.06092299148440361,-0.005803533364087343,-0.03475870564579964,-0.020404458045959473,0.014403071254491806,-0.150751993060112,-0.01761280931532383,0.03894412890076637,-0.011045585386455059,-0.017598340287804604,0.07334649562835693,0.025864334776997566,0.006987081374973059,-0.003909315448254347,-0.11716650426387787,0.03120097517967224,0.029984964057803154,-0.020391171798110008,-0.061337027698755264,-0.02677222155034542,-0.07412593066692352,0.009926218539476395,0.020716717466711998,-0.017510320991277695,0.011017237789928913,-0.01772562973201275,0.053783658891916275,-0.05762955918908119,0.058917336165905,0.006566189229488373,-0.045597050338983536,-0.018996380269527435,0.010223709046840668,-0.03679981455206871,-0.00685548922047019,0.05181712284684181,0.15321320295333862,0.04012635722756386,-0.07392407208681107,0.003914560656994581,0.01732248067855835,0.028877023607492447,-0.02597079426050186,-0.04122065752744675,-0.02609032765030861,0.0155734708532691,0.07944679260253906,-2.537900911647739e-8,-0.040027063339948654,0.050897032022476196,-0.04193323850631714,-0.01166144385933876,0.06958149373531342,-0.06209147348999977,0.004531431011855602,0.09259111434221268,-0.1065647304058075,-0.02292570471763611,0.008433656767010689,0.016361024230718613,-0.043843824416399,0.08933228254318237,0.11544817686080933,0.009038504213094711,0.020960582420229912,-0.03643830865621567,-0.08030511438846588,0.06209675967693329,0.049708373844623566,0.07203781604766846,0.023487603291869164,0.03489873185753822,-0.028861109167337418,0.0661698579788208,-0.07675925642251968,-0.09093312919139862,-0.00876535288989544,-0.0639076977968216,0.014468230307102203,0.0726882740855217,-0.0366005077958107,-0.0017031162278726697,0.03901500999927521,0.05209863558411598,-0.09303981810808182,0.011913689784705639,0.009228156879544258,-0.061241116374731064,0.009940152056515217,-0.07903438806533813,-0.024227000772953033,0.12077564746141434,-0.00795970018953085,0.04846064746379852,0.03460436314344406,-0.0036714898888021708,-0.04752708971500397,0.007376461755484343,0.0032342039048671722,0.020061535760760307,0.0704759731888771,-0.008753534406423569,-0.00952152255922556,-0.004374293144792318,0.030382560566067696,-0.00047007662942633033,-0.04174110293388367,0.031011518090963364,0.09576325118541718,0.011978864669799805,-0.04895078390836716,0.011656779795885086]},{"text":"One of the best of these I entered, but I had hardly placed my foot within the door before the children shrieked, and one of the women fainted.","book":"1984","chapter":63,"embedding":[0.03584986925125122,0.059990044683218,0.0303823072463274,0.07352502644062042,0.0630137175321579,-0.03913179785013199,-0.014019626192748547,0.01817413605749607,0.04494621977210045,-0.034279365092515945,0.03998568281531334,-0.0010306598851457238,0.08204715698957443,-0.017303509637713432,-0.010882060043513775,-0.029153941199183464,0.018167024478316307,-0.009835832752287388,-0.011599365621805191,0.04112629592418671,-0.005127257201820612,0.05633259192109108,0.019400984048843384,0.029559610411524773,-0.047692812979221344,0.03757137432694435,-0.03463129326701164,-0.0072075906209647655,-0.033156618475914,-0.021340789273381233,-0.09126275032758713,-0.03121359460055828,0.02732226811349392,-0.024663154035806656,0.03655628114938736,0.009084372781217098,0.1449631005525589,-0.03965600207448006,0.035507090389728546,-0.019761670380830765,0.0006624913075938821,0.026459965854883194,0.02436850033700466,-0.04277075082063675,0.014982621185481548,0.006175977643579245,-0.022780761122703552,-0.0229233056306839,0.04503506422042847,-0.019763903692364693,0.02226749248802662,0.031064262613654137,0.00648534344509244,0.01920039765536785,-0.07355498522520065,-0.052487269043922424,0.009952118620276451,-0.034050241112709045,-0.007752593606710434,0.01589863747358322,-0.037773411720991135,0.02854703553020954,-0.015505634248256683,0.01891602762043476,-0.04701126366853714,-0.030095214024186134,0.00012201158824609593,-0.047675665467977524,0.1315731406211853,0.062499288469552994,0.033705778419971466,-0.017130626365542412,0.032651305198669434,0.07215000689029694,-0.06858479231595993,-0.01273206528276205,0.0018190934788435698,-0.0917087122797966,0.014308716170489788,0.0025981105864048004,-0.06573732942342758,-0.06220246106386185,-0.05435773730278015,-0.01728716865181923,0.02716003730893135,0.008707372471690178,0.08934929221868515,0.03921407088637352,-0.04234655946493149,0.06108936294913292,-0.019636258482933044,-0.030248532071709633,0.05371563881635666,0.05701867491006851,0.06929148733615875,-0.07564716041088104,-0.07540325820446014,-0.027630984783172607,-0.0315578356385231,0.04342993348836899,-0.01295700017362833,0.04903817176818848,-0.02195936068892479,0.04356386139988899,0.05019195377826691,-0.029141338542103767,-0.004272036720067263,-0.05291687697172165,0.00018552254186943173,-0.05352902412414551,-0.005624418146908283,-0.028573546558618546,0.10352161526679993,0.06620362401008606,-0.09497576206922531,-0.054209593683481216,0.022724494338035583,0.016870876774191856,0.04340268298983574,0.06563518196344376,0.038019679486751556,0.038759052753448486,0.028602682054042816,-0.027956349775195122,-0.024208294227719307,-0.12194238603115082,-0.043258074671030045,-1.9547082501472732e-33,-0.019995657727122307,0.04281047731637955,-0.03504430502653122,0.017325999215245247,0.08667512983083725,0.01768440566956997,-0.06056514382362366,-0.02980840392410755,0.028689198195934296,0.006734828464686871,-0.014177301898598671,-0.106050044298172,0.014098756946623325,-0.12669692933559418,-0.06085127964615822,0.05715854838490486,-0.07307933270931244,0.057415708899497986,-0.06715357303619385,0.06697522848844528,0.041919540613889694,0.047761205583810806,-0.003968397155404091,0.06149847432971001,0.033628422766923904,0.04886629804968834,-0.016010921448469162,0.022089553996920586,0.07191039621829987,0.032089605927467346,0.02298169583082199,-0.0287338700145483,0.10486026853322983,-0.006927558686584234,-0.01636333204805851,0.037484582513570786,0.09121310710906982,-0.00787265319377184,-0.05647306889295578,-0.012109730392694473,-0.12831906974315643,-0.06582320481538773,0.08040934056043625,-0.015154961496591568,-0.0022674219217151403,0.04560859873890877,-0.04693262279033661,0.03928406536579132,-0.08558343350887299,0.021601224318146706,-0.08855980634689331,0.03165653347969055,0.02786961942911148,0.049847885966300964,-0.05974172428250313,0.00317415245808661,0.0734122097492218,-0.025886686518788338,-0.03524577617645264,-0.007544077932834625,-0.018446698784828186,0.03878483176231384,-0.020807389169931412,-0.07907833904027939,-0.021594373509287834,-0.16512255370616913,-0.009941734373569489,-0.031117647886276245,0.06649617105722427,-0.11466825753450394,-0.04234405234456062,0.004306327551603317,-0.0337834469974041,0.035873543471097946,-0.06086832657456398,-0.00947913434356451,0.04713975265622139,-0.01013018749654293,0.04200021177530289,-0.1349165141582489,0.07641695439815521,-0.04492988809943199,0.01074951607733965,0.023027583956718445,0.1085134893655777,-0.038301240652799606,-0.03306959196925163,-0.1066599190235138,-0.08024410903453827,-0.003060300135985017,-0.037077195942401886,0.023640485480427742,0.08983154594898224,-0.11876329034566879,-0.03469173610210419,8.298987246946095e-35,0.0046156845055520535,0.051746904850006104,-0.001508539542555809,0.023221315816044807,-0.017238197848200798,-0.007915516383945942,-0.05556786432862282,-0.022413915023207664,0.018683448433876038,0.029265906661748886,0.03325323015451431,0.06039624288678169,0.02363414689898491,-0.022401608526706696,-0.02945355512201786,-0.10583213716745377,0.0906452164053917,-0.013134368695318699,0.015968240797519684,-0.01164547074586153,-0.016253776848316193,0.003519834252074361,0.03144242987036705,-0.006129063665866852,-0.016093730926513672,0.02429485321044922,0.12901616096496582,-0.0018384848954156041,-0.0716828852891922,-0.05121476948261261,0.05221276730298996,-0.008015411905944347,-0.0027157538570463657,0.05776822194457054,0.05724082142114639,-0.014879411086440086,-0.02508396841585636,0.016240287572145462,-0.0760456994175911,-0.07351644337177277,0.002151519525796175,0.04042346030473709,0.008763326331973076,0.05045248568058014,-0.02282741479575634,0.058609455823898315,0.03402205929160118,-0.04637879133224487,0.018967555835843086,0.028242502361536026,-0.09094259887933731,0.04450659453868866,-0.06817100197076797,0.01426427811384201,-0.05118328332901001,-0.05069651082158089,0.06770497560501099,-0.042080435901880264,0.0763220489025116,-0.005281231831759214,-0.06887330114841461,0.040873728692531586,-0.04316604882478714,0.05213458836078644,0.038964513689279556,-0.07282952219247818,-0.05356120318174362,0.0974314734339714,-0.03301140293478966,-0.017047051340341568,0.07500708103179932,0.07196088135242462,0.024053562432527542,0.04253939539194107,0.005778980441391468,-0.0292067788541317,0.02008475922048092,0.0003740436804946512,-0.040691930800676346,-0.052254900336265564,0.037682101130485535,-0.05228404700756073,-0.02278987132012844,-0.04932417720556259,0.03817582130432129,0.023194046691060066,0.10651935636997223,0.020138919353485107,-0.06331729888916016,0.03688039258122444,-0.045879315584897995,0.09460794925689697,0.13031262159347534,-0.03632652014493942,0.009938379749655724,-3.032052475759883e-8,-0.010457010939717293,0.05290023609995842,-0.007426030468195677,-0.054234981536865234,0.04833168163895607,-0.09204567223787308,-0.03343649208545685,0.08800546079874039,-0.06142500415444374,-0.011772695928812027,-0.13043957948684692,0.03862271457910538,0.04891567304730415,0.025685038417577744,0.04463999345898628,0.038179174065589905,-0.0038305246271193027,-0.07027777284383774,-0.01449838187545538,-0.0239497609436512,-0.006495394743978977,0.08521352708339691,-0.019129646942019463,-0.04194606468081474,-0.0052520474418997765,0.00032688630744814873,-0.023140262812376022,-0.017432408407330513,-0.0899726077914238,0.021869098767638206,0.04594634473323822,0.026273217052221298,-0.015606625005602837,-0.003176884725689888,-0.133675679564476,0.05820448696613312,0.05508309230208397,0.03921690210700035,0.06294308602809906,-0.051085952669382095,-0.07868819683790207,-0.07105745375156403,0.04673921316862106,0.014501997269690037,0.02549787610769272,-0.015564657747745514,0.057379625737667084,0.029996301978826523,-0.010339486412703991,0.05665135756134987,-0.04384274035692215,0.02912108413875103,-0.024621060118079185,0.008220761083066463,0.08888395875692368,-0.03627529367804527,-0.007246699184179306,-0.03009730391204357,-0.012809897772967815,0.05212227627635002,0.06299792230129242,-0.005991616286337376,-0.06360870599746704,0.038084983825683594]},{"text":"I ate my breakfast with pleasure and was about to remove a plank to procure myself a little water when I heard a step, and looking through a small chink, I beheld a young creature, with a pail on her head, passing before my hovel.","book":"1984","chapter":63,"embedding":[-0.04496809467673302,0.08760764449834824,0.07853876799345016,0.06888726353645325,0.03428584337234497,-0.049054790288209915,0.10572817176580429,-0.028721315786242485,0.04601297527551651,-0.03411591798067093,0.007289417553693056,-0.12297109514474869,-0.025560718029737473,0.07759690284729004,-0.04192247986793518,0.005799875594675541,0.03153132647275925,0.030374836176633835,0.002836004365235567,0.04709963500499725,-0.04062466695904732,0.10423818230628967,-0.0026092070620507,-0.003022620687261224,-0.07501330226659775,-0.04366964101791382,-0.004373096860945225,-0.0495460145175457,0.014761526137590408,-0.059388332068920135,-0.00817263126373291,-0.026437940075993538,0.027359575033187866,-0.027937592938542366,0.01115934457629919,0.04860445111989975,0.028841983526945114,-0.07010533660650253,0.08639194071292877,-0.02504567801952362,0.046740613877773285,0.0013393718982115388,0.016039226204156876,-0.047618575394153595,0.0030744855757802725,0.03305060788989067,-0.04304412007331848,-0.005202895496040583,0.011461027897894382,-0.045125074684619904,-0.04733198508620262,-0.08579983562231064,-0.02342863753437996,0.024332905188202858,-0.06088220328092575,-0.0037163295783102512,0.015483679249882698,-0.04553673788905144,-0.006931645795702934,-0.023432711139321327,-0.04118230566382408,-0.0037546437233686447,0.0325876921415329,0.04010742902755737,0.01672930270433426,-0.04345808923244476,-0.05425054579973221,-0.0792749747633934,0.060925159603357315,0.04314050078392029,-0.024254094809293747,-0.011322664096951485,0.02296796254813671,0.01636503078043461,-0.04928441718220711,-0.04612652212381363,0.051432110369205475,-0.0630933865904808,0.03441032022237778,0.013036386109888554,-0.0769122913479805,0.026708299294114113,0.03666306287050247,-0.028734711930155754,-0.038201164454221725,-0.017318421974778175,0.05512078106403351,0.018658308312296867,-0.036681294441223145,-0.0018192923162132502,-0.021283328533172607,-0.03465648368000984,-0.06842822581529617,-0.0020346646197140217,0.06583526730537415,-0.07242776453495026,-0.06872987002134323,-0.061771031469106674,0.013759528286755085,0.08157016336917877,0.03963810205459595,0.008276814594864845,-0.015705443918704987,0.02328944019973278,0.07939331978559494,-0.013187633827328682,-0.07454937696456909,0.003966277465224266,0.04289988800883293,-0.018231181427836418,-0.0007608123705722392,0.02235894277691841,0.018573056906461716,0.04041735827922821,-0.022340189665555954,0.0004704799212049693,-0.051065362989902496,-0.05237977206707001,0.032662902027368546,-0.020704010501503944,0.030254369601607323,0.020489109680056572,-0.015834033489227295,-0.009536289609968662,-0.03445620834827423,-0.07247192412614822,0.013853550888597965,-2.2964883754366382e-33,0.04566589370369911,-0.0756944790482521,-0.005335141438990831,-0.040565408766269684,0.12695254385471344,-0.021386219188570976,-0.040459051728248596,-0.0016302200965583324,-0.017074212431907654,0.0184701606631279,-0.015225906856358051,-0.03197048604488373,-0.06610143929719925,0.04195648431777954,-0.07334434241056442,0.017632972449064255,-0.04684839025139809,0.05924846976995468,0.07239992171525955,0.009833225980401039,0.015634704381227493,-0.00609486224129796,0.011931248009204865,-0.03605208918452263,0.003846254898235202,0.05080093443393707,-0.09780845791101456,-0.13077972829341888,-0.041410643607378006,0.04583023861050606,0.045867253094911575,0.007277654483914375,0.003498105565086007,-0.04633104056119919,-0.0188086349517107,0.04139045625925064,0.0831364169716835,-0.05964290350675583,-0.059583261609077454,-0.027699584141373634,0.014697584323585033,-0.039287082850933075,0.05912565439939499,-0.0492384172976017,-0.07925289124250412,-0.007458576466888189,-0.03909093514084816,0.07425080239772797,-0.10799861699342728,0.004073494113981724,-0.043846480548381805,0.03704637289047241,0.060338567942380905,-0.05282825976610184,-0.042552005499601364,0.03318026661872864,0.07099522650241852,-0.05269140005111694,-0.0004877525207120925,0.021397674456238747,-0.04015953093767166,0.06056230142712593,-0.03231384977698326,-0.035485416650772095,-0.006814886350184679,-0.0854550376534462,-0.014889799058437347,-0.03387470543384552,0.053547896444797516,-0.10156061500310898,-0.0628572627902031,0.026333574205636978,0.008357897400856018,-0.048846688121557236,-0.008015593513846397,-0.04626578465104103,-0.015617847442626953,-0.10332466661930084,-0.03638876602053642,-0.013946847058832645,0.1329730749130249,0.010247187688946724,-0.032481055706739426,0.014906785450875759,-0.005623900797218084,0.0330008827149868,0.037100084125995636,-0.13151636719703674,0.026874138042330742,0.05740240588784218,-0.024134697392582893,0.006073641125112772,0.07388291507959366,-0.08810363709926605,-0.053543318063020706,5.797802624484457e-34,0.050664547830820084,-0.012670937925577164,-0.0012998125748708844,0.04360516741871834,-0.012196023017168045,-0.06476236879825592,0.04705126956105232,0.09362364560365677,-0.07618203014135361,-0.000697145820595324,0.01206272467970848,0.07312782853841782,0.06700350344181061,-0.014024198986589909,0.018815943971276283,0.007332578767091036,-0.01997959427535534,0.05538472160696983,0.05027449503540993,-0.0493432953953743,-0.05594897270202637,0.025304269045591354,0.04104660451412201,0.025279155001044273,-0.02741117775440216,0.09935366362333298,0.1482122838497162,-0.03191022202372551,-0.05618559196591377,-0.07473974674940109,-0.005605326034128666,0.04590268060564995,0.0489235557615757,-0.0802483931183815,0.03967287763953209,0.0009944230550900102,-0.015865832567214966,-0.02471495047211647,-0.03686099871993065,-0.11748506128787994,0.016001028940081596,-0.01917377859354019,0.07124732434749603,0.04366110637784004,-0.04437794163823128,-0.02390567772090435,-0.017806030809879303,0.027985157445073128,0.01642506942152977,0.05332154035568237,-0.05086319521069527,0.07064209878444672,0.03301817923784256,-0.0527779646217823,-0.021195128560066223,0.006149166729301214,-0.016259972006082535,-0.03547617793083191,0.1293986290693283,-0.03568042814731598,-0.057288456708192825,0.03579423949122429,-0.1265627145767212,0.08305125683546066,0.03708300366997719,0.008044934831559658,-0.0710267499089241,-0.014033951796591282,0.003984140697866678,-0.028682297095656395,-0.017393408343195915,0.03858114033937454,-0.008117538876831532,0.007934444583952427,0.04097135365009308,-0.01112829428166151,-0.039980120956897736,-0.049666330218315125,0.014904672279953957,0.04952669143676758,0.001710166921839118,0.041923750191926956,0.05049316585063934,-0.0022046298254281282,-0.00860280729830265,-0.06385838240385056,-0.039824698120355606,0.006214506458491087,-0.05396408587694168,-0.002723399782553315,-0.06599906831979752,0.04966951906681061,-0.041482627391815186,0.016080547124147415,0.09668149054050446,-3.741619636343785e-8,0.00021281414956320077,0.01910298690199852,0.03243003040552139,0.040691033005714417,0.06814678758382797,-0.03112604469060898,0.029966387897729874,0.04813994839787483,-0.06519903242588043,-0.09844940155744553,-0.07099691778421402,-0.0009742549736984074,0.05586257949471474,0.08687643706798553,0.10114205628633499,-0.03110692650079727,0.10740416496992111,-0.03306425362825394,-0.03189582750201225,-0.04526442289352417,-0.02240317314863205,0.11072717607021332,0.04548809677362442,-0.02898009680211544,-0.07293455302715302,0.028130920603871346,-0.017506618052721024,0.07462092489004135,-0.029901446774601936,0.021353229880332947,0.0651131123304367,0.13367463648319244,-0.08920595049858093,0.07272304594516754,0.009069861844182014,0.0364646278321743,-0.04541424661874771,-0.05794835835695267,0.0641903206706047,-0.010815323330461979,0.0069517469964921474,0.015376112423837185,0.05588851869106293,0.0316721610724926,-0.031625330448150635,0.01087567862123251,0.040418315678834915,-0.1125851422548294,0.05888742208480835,0.08841110020875931,0.026718612760305405,0.022078778594732285,0.018216004595160484,0.10227494686841965,0.04856908693909645,-0.018941055983304977,0.01121910847723484,-0.05942617729306221,-0.09877602756023407,0.05262662097811699,0.13550414144992828,0.0199536494910717,-0.04501542076468468,0.0007856520242057741]},{"text":"The young girl was occupied in arranging the cottage; but presently she took something out of a drawer, which employed her hands, and she sat down beside the old man, who, taking up an instrument, began to play and to produce sounds sweeter than the voice of the thrush or the nightingale.","book":"1984","chapter":64,"embedding":[0.01819510944187641,0.019769195467233658,0.015745405107736588,0.004412772133946419,-0.08680213242769241,0.029741888865828514,0.09196940809488297,-0.07466215640306473,-0.007480780128389597,0.03812003508210182,0.04681624472141266,0.02430867590010166,0.010903247632086277,-0.003369163256138563,0.006776795256882906,-0.023107673972845078,0.031050560995936394,-0.030584516003727913,0.016348768025636673,-0.01651899516582489,0.00670904666185379,0.03784555569291115,0.0018647074466571212,-0.020221037790179253,0.05007030442357063,-0.015492415055632591,-0.014286722056567669,-0.020169727504253387,0.058223746716976166,0.002253503305837512,0.033080317080020905,0.08318840712308884,0.001679337932728231,-0.017080282792448997,-0.05585823580622673,0.07833133637905121,0.011449871584773064,0.004491786472499371,0.04208891838788986,0.023190241307020187,-0.06084568798542023,-0.06920097023248672,-0.05079645290970802,-0.06303317099809647,-0.07584088295698166,0.011440244503319263,-0.05635052174329758,-0.07430636882781982,0.041502945125103,-0.05823807790875435,-0.07319185137748718,0.005839853081852198,-0.026405975222587585,0.005063157062977552,-0.0781516283750534,0.00833320152014494,0.0724371075630188,0.002581859938800335,0.026918925344944,0.0036232867278158665,-0.05854952707886696,-0.021978599950671196,0.0627872571349144,0.0030789258889853954,-0.01723478175699711,-0.12268534302711487,-0.0015848218463361263,-0.024393411353230476,-0.029335157945752144,0.03156382218003273,0.03486001864075661,-0.019041312858462334,0.01253319438546896,-0.06270626187324524,0.01314101368188858,-0.06806517392396927,0.02566390112042427,-0.09620899707078934,-0.018947133794426918,-0.03442896530032158,-0.01637059822678566,0.03510798513889313,-0.014928276650607586,0.05853937193751335,-0.09660118073225021,-0.05319485440850258,0.02977542020380497,-0.04183701053261757,-0.001224893843755126,-0.07152091711759567,-0.015968704596161842,-0.10822109133005142,-0.11223296821117401,0.08399384468793869,0.07811460644006729,-0.006094411481171846,-0.053058162331581116,0.0350920706987381,-0.006646862253546715,0.046537671238183975,-0.04524488374590874,0.05909941345453262,0.02704671584069729,0.033891815692186356,-0.04641374200582504,-0.006653204094618559,0.04182269051671028,-0.05570949241518974,0.013128780759871006,-0.07465110719203949,0.04575589299201965,0.012801148928701878,-0.021621204912662506,0.08836273849010468,0.007131763733923435,-0.05639667809009552,0.06162036210298538,-0.061425771564245224,-0.06627724319696426,0.012617929838597775,0.11361756920814514,0.013745726086199284,-0.07925832271575928,0.0759587362408638,-0.10251858085393906,0.013331674970686436,0.08661361038684845,-2.272609677067622e-33,-0.02930627577006817,-0.003094768850132823,-0.016481181606650352,0.030904319137334824,0.1812041997909546,0.03304949775338173,-0.007411433383822441,0.031664278358221054,0.018613947555422783,0.016134876757860184,0.024454595521092415,-0.0990026444196701,-0.13389858603477478,-0.041136372834444046,-0.010707583278417587,0.01524866372346878,-0.030703121796250343,0.02208881266415119,0.04126700386404991,0.009065014310181141,0.028978105634450912,0.11580333113670349,-0.01899394765496254,-0.03798317164182663,0.011380041018128395,0.03513716906309128,0.024082766845822334,-0.0143220704048872,-0.0038683179300278425,-0.00810161978006363,0.0550304614007473,-0.026822267100214958,0.025308189913630486,0.02128772623836994,-0.03051159344613552,-0.02109287865459919,-0.016278831288218498,-0.020618245005607605,-0.029173925518989563,-0.02835659310221672,-0.03369364142417908,0.0354304313659668,0.04094809666275978,0.0662180706858635,-0.1513599306344986,-0.03333882987499237,-0.07018466293811798,0.06825090199708939,0.012532617896795273,0.005215945187956095,-0.07005021721124649,0.04605530947446823,-0.019005168229341507,0.059022221714258194,-0.004108841065317392,0.04467237740755081,0.00678279809653759,-0.037000857293605804,0.06245783716440201,-0.0413382351398468,0.07186155021190643,-0.002299834508448839,0.07429730147123337,-0.02423536218702793,0.04957523196935654,-0.07493265718221664,0.047146428376436234,-0.057964932173490524,0.04502693936228752,-0.032667599618434906,-0.13937675952911377,0.01676124334335327,-0.03868637979030609,0.02653469145298004,-0.030633654445409775,-0.010904924012720585,0.034468747675418854,-0.039201658219099045,0.01730535738170147,-0.11638197302818298,0.04930606484413147,0.0013715102104470134,-0.0742403045296669,0.09972183406352997,-0.034215137362480164,-0.03345061466097832,0.021194923669099808,-0.10526540875434875,0.022486630827188492,0.08593389391899109,-0.04561043530702591,0.009131993167102337,0.021504204720258713,-0.05210935324430466,0.022059081122279167,-1.4363090884564019e-33,0.06646307557821274,0.015622694976627827,-0.0181500855833292,-0.03179880976676941,0.04229842126369476,-0.026038022711873055,0.005701882764697075,-0.07449409365653992,-0.01545356772840023,0.045762188732624054,-0.07419285923242569,-0.046391766518354416,0.09941500425338745,-0.05218791589140892,-0.00012835502275265753,0.02451428771018982,0.03363967314362526,0.038420118391513824,0.05087770149111748,0.009754578582942486,-0.015052509494125843,0.050790611654520035,0.03152025490999222,-0.03757305070757866,-0.04596354812383652,0.034516144543886185,0.08038464188575745,0.019252212718129158,-0.0721672773361206,-0.016520394012331963,0.06700127571821213,-0.12169530987739563,0.04915931820869446,-0.02046847529709339,-0.021275561302900314,0.008292068727314472,0.008760364726185799,-0.011139290407299995,-0.025427279993891716,-0.07751763612031937,0.07996910065412521,-0.007067518308758736,0.03121148608624935,0.04218972474336624,-0.00600358285009861,-0.01795235089957714,-0.04999440163373947,0.043091800063848495,0.05555161088705063,-0.023418454453349113,0.04227830842137337,0.02073957398533821,-0.006734553724527359,-0.06779837608337402,-0.03705991804599762,0.008520545437932014,0.006059200037270784,-0.06067571043968201,0.09815767407417297,0.024408306926488876,-0.006853052880614996,0.00891643576323986,-0.0550585500895977,-0.05136939510703087,0.028162628412246704,0.02819797210395336,-0.08575956523418427,-0.05485241487622261,0.021080084145069122,0.024627389386296272,-0.0006920491578057408,0.03362808749079704,0.0432865135371685,-0.009993710555136204,0.03241325169801712,0.023993341252207756,-0.08473658561706543,-0.09191498905420303,-0.0008740019984543324,-0.10384086519479752,-0.013976355083286762,-0.03505764901638031,-0.03559185191988945,-0.04951778054237366,-0.016842316836118698,-0.039891310036182404,0.09724575281143188,0.04186956584453583,-0.09037523716688156,-0.004017964471131563,0.020545989274978638,0.06367745995521545,0.07971862703561783,-0.06529523432254791,0.0879025012254715,-3.749914512241048e-8,-0.0039536659605801105,0.0017713364213705063,-0.002556922845542431,-0.06869426369667053,-0.013375434093177319,-0.09451766312122345,0.04504993185400963,-0.007694949861615896,-0.008530683815479279,0.042010676115751266,-0.06252666562795639,0.04677924886345863,0.1143389344215393,0.014490116387605667,0.017920611426234245,0.017703095450997353,0.03661489859223366,-0.01879827305674553,-0.019216084852814674,-0.008806375786662102,0.11780627071857452,0.024312250316143036,-0.01027772482484579,-0.006514938082545996,-0.06512774527072906,0.04493768513202667,0.010394378565251827,0.022531291469931602,-0.09508984535932541,0.008919518440961838,0.07596556842327118,0.08703280985355377,0.008830251172184944,0.0770481675863266,-0.06398195028305054,-0.020048299804329872,-0.08440680801868439,-0.007269680965691805,-0.012685809284448624,-0.05578452721238136,-0.007511100731790066,0.014090582728385925,-0.09793604165315628,-0.015612856484949589,0.04113877937197685,0.006283982656896114,0.05130888149142265,-0.05117660015821457,0.006460586562752724,0.12817713618278503,0.010141648352146149,0.06625209003686905,0.12011437863111496,0.0025637736544013023,0.018600666895508766,-0.06302475929260254,0.0032585817389190197,0.05141092464327812,0.014676505699753761,0.06058817729353905,-0.058895207941532135,0.04914271458983421,0.009142668917775154,-0.04510471597313881]},{"text":"Nothing could exceed in beauty the contrast between these two excellent creatures.","book":"1984","chapter":64,"embedding":[0.0448426827788353,0.019234690815210342,0.0063763936050236225,0.05584456026554108,-0.07085542380809784,-0.04577814042568207,-0.06170261278748512,-0.022715860977768898,-0.04603550210595131,-0.002767817582935095,-0.000622560444753617,-0.07890469580888748,-0.0007114414474926889,-0.01720719039440155,-0.021913258358836174,0.06766239553689957,0.12904472649097443,-0.07319018244743347,-0.025287874042987823,0.14948983490467072,0.05467374250292778,0.011990104801952839,0.00858670100569725,0.047966085374355316,-0.06892143934965134,-0.04348228871822357,-0.05172351002693176,0.016740838065743446,0.031484756618738174,-0.058604780584573746,-0.048205818980932236,0.007506522350013256,0.046597037464380264,-0.03326940909028053,0.00027913349913433194,0.021807311102747917,0.03232268989086151,-0.009984012693166733,0.034197207540273666,-0.031528621912002563,-0.04224633798003197,0.020199894905090332,-0.09428348392248154,0.023907911032438278,-0.09455659985542297,-0.07524414360523224,-0.10142285376787186,-0.04472292214632034,-0.014321154914796352,-0.03158515691757202,-0.07438091933727264,-0.07839392870664597,-0.09546128660440445,-0.07772748172283173,-0.010053207166492939,0.0352313295006752,-0.11484488844871521,-0.08050794154405594,0.04503763094544411,-0.054872144013643265,0.003462995635345578,0.11969953775405884,0.07571250945329666,0.023686805739998817,0.04617039114236832,-0.10328058153390884,-0.0881088599562645,0.030175916850566864,-0.06844417005777359,0.02419927529990673,0.05727918818593025,0.01660086214542389,-0.004681925754994154,-0.017796356230974197,-0.03201979398727417,0.023286910727620125,-0.06507233530282974,-0.04721491411328316,-0.04600955918431282,0.016894983127713203,-0.04935131222009659,-0.005399039480835199,0.004124460741877556,0.017906738445162773,0.04762604087591171,-0.014152614399790764,0.019312791526317596,-0.10644170641899109,-0.09603813290596008,0.05801098793745041,0.030458742752671242,0.0003818305558525026,-0.02751954086124897,0.011497574858367443,0.007651916705071926,-0.0029670328367501497,-0.04566614702343941,-0.011585412546992302,-0.0195483211427927,0.032895248383283615,0.001777286408469081,0.022793017327785492,-0.05617748200893402,0.004457124043256044,0.01691054180264473,-0.041913654655218124,0.028630968183279037,-0.049057070165872574,0.03662363812327385,-0.013205843977630138,0.030453359708189964,-0.028165915980935097,0.054879143834114075,0.05987847223877907,0.0040552616119384766,-0.008843855932354927,-0.08159729838371277,0.03413351997733116,0.010519696399569511,0.014096388593316078,0.07430315762758255,-0.04801691323518753,0.012829607352614403,-0.0051560914143919945,0.02357359230518341,-0.038533128798007965,-0.05705232173204422,-1.1479030188500922e-33,0.05090205743908882,0.04705803096294403,0.04208014905452728,-0.06092172488570213,0.06838446110486984,0.028068028390407562,-0.051509976387023926,-0.013798664323985577,-0.05757898464798927,0.016245393082499504,-0.12591329216957092,0.079159677028656,-0.02276657149195671,-0.03963438794016838,0.00694436626508832,-0.02061172015964985,0.003768583759665489,0.0233419518917799,0.03571351617574692,0.033978547900915146,-0.019868861883878708,0.029802003875374794,-0.04401257634162903,0.02737800031900406,-0.038951266556978226,-0.0012679770588874817,0.046237513422966,-0.009406142868101597,-0.08339246362447739,0.0201797466725111,-0.0290630254894495,-0.028593098744750023,0.06005608290433884,0.060443613678216934,-0.058501433581113815,0.018877195194363594,-0.026956595480442047,-0.08890778571367264,0.03534911945462227,0.012326834723353386,-0.02031601592898369,0.008482066914439201,0.014197110198438168,-0.01428520493209362,-0.02294698730111122,0.06969273090362549,0.014465473592281342,0.04479224979877472,-0.05326622352004051,-0.0008774107554927468,-0.019139369949698448,0.06322790682315826,0.033252716064453125,0.06564807146787643,0.0069880313239991665,0.07276134938001633,0.040894605219364166,0.06144734472036362,-0.0282871276140213,0.006424693390727043,-0.004898902028799057,0.035079408437013626,0.02111787721514702,-0.14417703449726105,0.09169842302799225,0.09134433418512344,-0.0044417232275009155,-0.007912714034318924,-0.023033924400806427,0.015409656800329685,-0.02620266005396843,-0.00987241044640541,0.017889881506562233,-0.05541278421878815,-0.00876833125948906,-0.11157236248254776,0.07915192097425461,-0.030368521809577942,0.06387197971343994,0.010555488057434559,-0.03650081157684326,0.07948566228151321,-0.00890166126191616,-0.05944349244236946,-0.03833279386162758,0.008368175476789474,0.03196578100323677,-0.01059629488736391,0.048385996371507645,0.014554519206285477,0.07118374854326248,-0.020161351189017296,0.02353556454181671,-0.15775200724601746,-0.0497785322368145,-9.300820674533621e-35,0.047651659697294235,-0.01767221838235855,0.019930321723222733,0.10876213759183884,-0.0035480770748108625,0.05694247782230377,-0.004553317558020353,0.09092295914888382,0.02718115970492363,0.04752318188548088,0.05447709187865257,0.0806848406791687,0.049394186586141586,-0.09526677429676056,0.025762666016817093,-0.01796107552945614,0.07450579106807709,-0.02561434730887413,0.03312867879867554,-0.016436045989394188,0.029025904834270477,0.07552333176136017,-0.06219622492790222,0.010809361934661865,-0.030454261228442192,0.09222310781478882,-0.0028138444758951664,0.021990710869431496,-0.05348695442080498,-0.04454569146037102,0.11330613493919373,-0.01734207570552826,-0.002915318589657545,-0.01179768517613411,0.039939314126968384,0.01988016813993454,0.010098076425492764,-0.04869363084435463,-0.05448904260993004,0.018753860145807266,0.021414516493678093,-0.02681080438196659,0.03466691076755524,0.01708371751010418,0.021300245076417923,-0.015732284635305405,0.005585894454270601,-0.0034486118238419294,0.019043738022446632,-0.04819634184241295,0.002978504868224263,-0.0209625493735075,-0.01976952701807022,0.0465925857424736,-0.044020380824804306,-0.09152350574731827,0.1093917116522789,-0.003511042334139347,0.06013347953557968,0.018015200272202492,-0.037495046854019165,0.015347534790635109,-0.07482258975505829,0.054754652082920074,-0.0655633807182312,0.07505013793706894,-0.03491831570863724,0.037654634565114975,0.0036318993661552668,-0.0388433039188385,-0.027355767786502838,-0.05818936228752136,-0.008416548371315002,-0.03339283540844917,0.012602096423506737,0.050809185951948166,-0.0002813163155224174,-0.014691954478621483,0.05067724362015724,-0.026325348764657974,-0.01958138309419155,0.02124723047018051,0.018694398924708366,0.02798214927315712,0.010688481852412224,0.08893462270498276,-0.10062733292579651,-0.03670928627252579,-0.004697182681411505,0.031923990696668625,-0.09143668413162231,-0.016439737752079964,0.048872582614421844,-0.08561282604932785,0.02297530509531498,-2.06174792793945e-8,0.01991019956767559,-0.0023100031539797783,0.05079353228211403,-0.025548042729496956,-0.006819931790232658,-0.059990838170051575,-0.03816678747534752,-0.028212714940309525,-0.035749245434999466,0.13590066134929657,0.05687270313501358,0.04063458740711212,-0.03489048779010773,0.04068899527192116,0.03766651824116707,0.08240261673927307,0.07527396082878113,-0.0804848000407219,-0.01801985129714012,0.05671415105462074,-0.08197052031755447,0.05023583024740219,-0.0036280385684221983,-0.08734454959630966,-0.04591653123497963,0.005650956649333239,-0.04969409480690956,-0.04927468299865723,0.0680290088057518,0.057222846895456314,0.07169322669506073,0.07432734221220016,0.0033087744377553463,0.010535112582147121,0.004589518066495657,-0.04046725854277611,-0.09885856509208679,0.01804858073592186,0.019306138157844543,-0.013727022334933281,0.025783201679587364,-0.01031265128403902,0.04134760797023773,0.01153638493269682,0.05497756600379944,-0.0713111087679863,0.06434168666601181,-0.0402340330183506,0.01785004325211048,0.04067132622003555,0.013132628053426743,0.05941270291805267,0.012635312043130398,0.02108747698366642,-0.028205564245581627,-0.07865328341722488,-0.04750514402985573,0.08336435258388519,-0.07784608751535416,0.10925160348415375,0.12321815639734268,-0.11113511770963669,0.09116742759943008,0.02389606647193432]},{"text":"Nothing could exceed the love and respect which the younger cottagers exhibited towards their venerable companion.","book":"1984","chapter":65,"embedding":[0.0018877225229516625,0.12542028725147247,-0.01250566728413105,-0.01300967950373888,-0.009756604209542274,-0.012025726027786732,-0.09443320333957672,-0.09709955006837845,-0.018262553960084915,0.045182324945926666,0.04406927898526192,0.029351867735385895,0.09338346868753433,-0.02043665386736393,-0.0334620475769043,0.03675965219736099,0.01850753277540207,0.028478985652327538,-0.03247003257274628,0.05229608342051506,-0.034109894186258316,0.02747420035302639,0.0196515079587698,0.05623854324221611,-0.03357844054698944,-0.03886003792285919,-0.01066152285784483,-0.11221644282341003,0.043088648468256,-0.012900485657155514,0.020109597593545914,0.013593345880508423,0.020572872832417488,0.03178691864013672,-0.017351137474179268,0.07605473697185516,0.04946499690413475,0.019145788624882698,0.021144388243556023,0.006150029134005308,-0.04848714917898178,-0.019203979521989822,-0.016345275565981865,-0.017949672415852547,-0.029332883656024933,-0.03898034617304802,-0.05903707072138786,-0.11711718142032623,-0.0019263043068349361,-0.01156873069703579,-0.022594120353460312,-0.011958179995417595,-0.04852985218167305,-0.07495608180761337,-0.01797635853290558,0.011641754768788815,-0.03792843595147133,-0.08768388628959656,0.016910254955291748,-0.031214678660035133,-0.03899559751152992,0.06111248955130577,0.08305966854095459,-0.008304399438202381,-0.0721445307135582,-0.0806346908211708,-0.04360704869031906,0.06485691666603088,-0.1262475848197937,0.06828580796718597,0.0023272268008440733,0.04344646632671356,0.028242820873856544,-0.046341050416231155,-0.04631258174777031,-0.0372905433177948,-0.10149357467889786,-0.0976245105266571,0.002296457765623927,-0.010073703713715076,-0.0682513415813446,-0.012384452857077122,0.029452582821249962,0.034626029431819916,-0.07722824066877365,0.015812981873750687,0.013414108194410801,-0.07313065230846405,-0.03883751109242439,0.03518708050251007,-0.07661624997854233,-0.025351393967866898,-0.13398264348506927,0.027430590242147446,-0.04609734192490578,-0.023851575329899788,-0.06687673926353455,-0.018415868282318115,-0.1036783903837204,0.08002050966024399,-0.027913467958569527,0.0783499926328659,0.03914834186434746,0.08107902109622955,-0.058351628482341766,0.007075465749949217,-0.012469272129237652,-0.03983927518129349,-0.029448598623275757,0.00129028782248497,0.018994547426700592,-0.01838921755552292,-0.04054896906018257,-0.006371453404426575,-0.04988103732466698,-0.054002560675144196,0.06466491520404816,-0.03453972935676575,-0.06808038055896759,0.060292311012744904,0.09686030447483063,0.03260165452957153,0.008900008164346218,0.07948741316795349,-0.06208028271794319,0.014412199147045612,-0.001268747029826045,-3.38340555350462e-33,0.0191630981862545,0.043903447687625885,-0.0026864514220505953,0.029584750533103943,0.06416315585374832,0.03707565367221832,0.01096340361982584,-0.02852870337665081,0.00048366899136453867,-0.045924875885248184,0.03887903317809105,0.06071951240301132,0.050049785524606705,-0.057436536997556686,0.0035602524876594543,0.030517684295773506,-0.01189191173762083,0.027175722643733025,0.0572332888841629,-0.0736982598900795,-0.03545622155070305,0.02853959985077381,-0.08263085782527924,0.000036614801501855254,-0.07107654958963394,-0.09352903813123703,0.006285094656050205,0.02872546762228012,-0.025013979524374008,-0.014541614800691605,0.026667265221476555,0.006693478673696518,0.06735292077064514,-0.04290374368429184,-0.04316549375653267,0.008256332948803902,-0.08214761316776276,-0.06386864185333252,-0.007922536693513393,0.0428331159055233,-0.05776556208729744,-0.03009200096130371,0.022583559155464172,-0.001957450993359089,-0.07284305989742279,0.10574974119663239,0.09692449122667313,0.026106759905815125,-0.12918035686016083,0.08720418065786362,-0.033829428255558014,0.05671317130327225,-0.07846668362617493,0.06254813075065613,-0.057734519243240356,0.0360197052359581,0.03829135373234749,0.06736330687999725,-0.0007380842580460012,-0.05879640579223633,0.03166797384619713,-0.02434648387134075,0.05069487541913986,-0.11367837339639664,0.033094704151153564,-0.023443222045898438,0.02972484566271305,-0.011761286295950413,-0.01251327246427536,0.04491588473320007,-0.045730043202638626,0.03693585470318794,-0.05127772316336632,-0.05734667181968689,-0.008392049930989742,-0.0830303207039833,0.05962445214390755,-0.054053228348493576,0.08355926722288132,-0.07334675639867783,-0.0031379368156194687,0.0017395189497619867,-0.007486192975193262,0.05884578824043274,-0.003670833306387067,-0.03190077468752861,0.032679032534360886,-0.001654879073612392,0.01351588498800993,0.01521396916359663,0.10127910226583481,-0.03913084417581558,0.005621182266622782,-0.115972138941288,-0.02520870417356491,5.089182946562608e-34,0.11172156035900116,-0.01543284859508276,0.021514296531677246,0.06537830829620361,0.06421572715044022,0.00030412551132030785,-0.07799205929040909,0.030742375180125237,0.014924334362149239,0.008797015994787216,0.04677841067314148,-0.039253342896699905,0.0781550258398056,-0.019736893475055695,0.0035470323637127876,-0.01118841115385294,0.023731118068099022,0.05348893254995346,0.015424591489136219,0.047834787517786026,-0.002659732010215521,0.09946680068969727,-0.024921640753746033,0.03299524635076523,-0.003095056163147092,0.05363917350769043,0.07935848832130432,0.017907267436385155,-0.016304710879921913,-0.013246598653495312,0.14273294806480408,-0.0478222519159317,-0.0000644279716652818,0.0064431605860590935,0.04375951364636421,0.0704733356833458,0.03788413479924202,0.06230363994836807,-0.012146824039518833,-0.02862062305212021,0.07936044782400131,-0.03313923627138138,-0.017349984496831894,0.04139309003949165,0.004768555983901024,-0.06266693025827408,-0.03441264480352402,-0.01946898363530636,0.049120623618364334,-0.013802791945636272,-0.0039484016597270966,-0.02849561907351017,0.0938037633895874,0.016905279830098152,-0.021558092907071114,-0.018354814499616623,0.015030295588076115,-0.03866821900010109,0.11694135516881943,-0.010003611445426941,0.0481281578540802,-0.009538461454212666,-0.06217905133962631,0.09951237589120865,-0.06097714230418205,0.041524846106767654,-0.044004376977682114,0.05811017379164696,-0.0416642427444458,0.0673375204205513,-0.034695304930210114,-0.0346902534365654,0.0010087037226185203,0.01542589906603098,0.07161908596754074,-0.010751775465905666,0.03235997259616852,-0.07008077204227448,-0.010346349328756332,-0.11941639333963394,-0.05803518742322922,0.0025134743191301823,-0.01103244535624981,-0.002239661058411002,0.05366368219256401,-0.03113303892314434,-0.035599276423454285,0.020845506340265274,-0.03949325159192085,-0.029639126732945442,0.03955213353037834,-0.003051712876185775,0.0007181364926509559,-0.048580244183540344,0.02015329897403717,-2.2839786950612506e-8,-0.019960584118962288,-0.04232530668377876,-0.07815300673246384,-0.049243006855249405,-0.021104877814650536,-0.0298658087849617,0.11362653970718384,-0.05066695436835289,-0.017116107046604156,0.1779036670923233,0.002137843519449234,0.07233475893735886,0.03791021928191185,0.016296759247779846,0.097005695104599,0.07399443536996841,0.006368257105350494,-0.11077985912561417,-0.04866446182131767,0.03383751958608627,-0.006554117426276207,0.003374783555045724,0.01828896254301071,-0.06287728250026703,-0.01455466914921999,-0.009166980162262917,0.015049063600599766,-0.013550275936722755,0.04326677694916725,-0.033405330032110214,0.05116549879312515,0.03245605155825615,-0.03834806755185127,0.021590502932667732,0.02877328172326088,0.00007002055644989014,-0.06969577074050903,-0.005906312260776758,-0.005694420542567968,0.05413133651018143,-0.0652196854352951,-0.012883732095360756,-0.023027343675494194,0.0032066586427390575,0.049308985471725464,-0.017603540793061256,0.038503535091876984,-0.013143984600901604,-0.04443931207060814,0.04387969896197319,0.004055784083902836,0.08988601714372635,0.053212348371744156,0.028351111337542534,-0.044630445539951324,-0.04195589944720268,0.026328472420573235,0.14660650491714478,0.01174700167030096,0.008065151050686836,0.06920034438371658,-0.019050875678658485,0.020025793462991714,-0.02921430766582489]},{"text":"They often, I believe, suffered the pangs of hunger very poignantly, especially the two younger cottagers, for several times they placed food before the old man when they reserved none for themselves. “This trait of kindness moved me sensibly.","book":"1984","chapter":65,"embedding":[0.017662186175584793,0.06981225311756134,0.027458829805254936,0.09334585815668106,0.007814510725438595,-0.0025202652905136347,0.03727509081363678,-0.07559607923030853,-0.06351540237665176,-0.017305763438344002,0.06864451617002487,0.005432192701846361,0.012504220008850098,-0.005487838294357061,0.012402043677866459,-0.07060868293046951,-0.025604331865906715,-0.05141327530145645,-0.01911909133195877,0.023388497531414032,-0.06080377474427223,-0.019687840715050697,0.05459681525826454,-0.007888603024184704,0.03626507893204689,-0.04156966134905815,0.007508180104196072,-0.05293476954102516,0.030107717961072922,0.044058337807655334,0.0003848207707051188,-0.014813793823122978,0.04734340310096741,0.015696417540311813,-0.026642000302672386,0.09124879539012909,0.06920143216848373,0.0044313897378742695,-0.03381628543138504,-0.05111609026789665,-0.013609329238533974,-0.06383033096790314,0.0011864994885399938,-0.0686536654829979,-0.04770386591553688,-0.02017808146774769,-0.030637091025710106,-0.05652588605880737,0.060083840042352676,-0.06643202155828476,-0.03859506919980049,-0.026170330122113228,0.0029698035214096308,-0.03840424492955208,0.0076053449884057045,0.0007445726078003645,0.05474282428622246,0.006934721954166889,-0.0018777226796373725,-0.005332294385880232,-0.027000265195965767,-0.0006740978569723666,0.0627472773194313,0.0034259490203112364,0.004244424402713776,-0.0574524812400341,-0.0028275707736611366,0.020104022696614265,-0.06498416513204575,0.022770468145608902,0.02175157703459263,-0.01683187298476696,-0.00456453301012516,-0.03732986003160477,-0.05700775608420372,-0.02869582362473011,-0.042226642370224,-0.10715867578983307,-0.04435525834560394,-0.04706569388508797,-0.05134698748588562,0.07445284724235535,-0.0015115884598344564,0.06408540904521942,-0.07193806022405624,-0.034426767379045486,0.042847439646720886,-0.09988769888877869,0.05630696192383766,0.009607022628188133,-0.016064319759607315,-0.033048372715711594,-0.08876799046993256,0.0461338572204113,-0.012121573090553284,-0.06255733221769333,-0.03910180181264877,-0.010346242226660252,-0.10058795660734177,0.06465724855661392,-0.032602421939373016,0.02700730413198471,0.017974916845560074,0.07826872915029526,0.05803733319044113,0.01880681701004505,-0.06650929152965546,-0.021044110879302025,-0.03915620595216751,0.0337328277528286,-0.05951056256890297,0.047387752681970596,-0.01923978328704834,0.049551356583833694,-0.06480161100625992,-0.056766241788864136,-0.04030919820070267,-0.12649324536323547,-0.01106850802898407,-0.00982606504112482,0.01725883036851883,0.0432702973484993,-0.019571997225284576,0.02327607199549675,-0.010233878158032894,0.03033306449651718,-0.0037475205026566982,1.3295780584925768e-33,-0.013401382602751255,-0.01362058985978365,-0.00047862983774393797,0.0635613203048706,0.061613716185092926,-0.007160144858062267,-0.0642601028084755,0.035882480442523956,0.062277164310216904,-0.05301927402615547,0.021140791475772858,-0.07694189995527267,-0.010400958359241486,-0.04623860493302345,-0.11206456273794174,-0.03259587660431862,-0.12803363800048828,-0.046107303351163864,0.100013367831707,0.03350666165351868,-0.03541668504476547,0.09228738397359848,0.01113718468695879,-0.01094873622059822,-0.013730138540267944,-0.04072851687669754,-0.01707325130701065,-0.021998204290866852,0.007375077810138464,-0.000274041696684435,0.0807051807641983,0.011120020411908627,0.059358902275562286,-0.0800897404551506,-0.009199745021760464,-0.01579696498811245,0.04112190380692482,0.004158633295446634,-0.07150201499462128,-0.03565666079521179,0.029821960255503654,0.0010979368817061186,0.10419916361570358,0.0041713775135576725,-0.024045651778578758,0.00950070470571518,0.0341307669878006,0.00033172531402669847,-0.08290911465883255,0.029438115656375885,0.015471472404897213,0.035113804042339325,0.0037214807234704494,0.003991743084043264,-0.06275231391191483,-0.03333735093474388,-0.002668949542567134,0.02246546559035778,-0.03292045742273331,-0.06627567857503891,0.07266431301832199,-0.06220444664359093,0.053320784121751785,-0.08448094129562378,0.01842416636645794,-0.06337131559848785,0.043460726737976074,-0.0315023735165596,-0.060889892280101776,0.05281674116849899,-0.01637282595038414,0.004959219601005316,-0.08847633004188538,-0.03828473016619682,-0.004604279063642025,-0.04246503487229347,0.01839754730463028,-0.0509784109890461,0.032827600836753845,-0.12166666239500046,0.1171317994594574,-0.05412653088569641,-0.013596585020422935,0.11318051069974899,-0.05849776789546013,0.023300310596823692,-0.027512673288583755,-0.10032062977552414,0.07591113448143005,0.08581278473138809,0.014137634076178074,-0.007632325403392315,0.017649980261921883,-0.06341474503278732,-0.06879872828722,-3.6454078159395534e-33,-0.010246985591948032,-0.012633130885660648,0.041500113904476166,0.06621426343917847,0.017561137676239014,-0.06347338855266571,-0.043826159089803696,-0.005650907754898071,0.050585970282554626,0.05190889537334442,-0.09542975574731827,-0.003940695896744728,0.11314064264297485,0.02120501734316349,-0.035404402762651443,0.02903144247829914,0.0637713372707367,0.02931823581457138,0.016934487968683243,-0.07679653912782669,-0.00792630109935999,0.06154155358672142,-0.002539906883612275,-0.03034491278231144,0.049565065652132034,0.08503521978855133,0.08885393291711807,0.04137999936938286,-0.1340295374393463,-0.10766707360744476,0.10158748924732208,0.01020119059830904,0.01857621595263481,-0.02977268025279045,0.05511032044887543,0.04460301250219345,-0.08742419630289078,0.03440576419234276,-0.0836014598608017,-0.0009015328832902014,0.023815741762518883,-0.03121054172515869,0.0277190450578928,0.06574292480945587,0.014062970876693726,-0.006151615176349878,0.05403725430369377,-0.062402207404375076,-0.027144620195031166,0.022327130660414696,0.025979429483413696,0.0048277187161147594,-0.0036459523253142834,0.045578647404909134,0.0016441388288512826,-0.017187878489494324,0.024128226563334465,-0.06568123400211334,0.08340630680322647,-0.028541579842567444,-0.042044296860694885,-0.03905334696173668,-0.03567046299576759,0.0513552762567997,0.021330788731575012,-0.02448303811252117,-0.023428097367286682,-0.08613067120313644,0.007005990482866764,0.01914667710661888,0.09785612672567368,-0.04967610165476799,0.0010070266434922814,-0.029375096783041954,-0.044784076511859894,0.006288731936365366,-0.023652149364352226,-0.00493032019585371,-0.05382296442985535,-0.09994880855083466,-0.03267117217183113,-0.08794005960226059,0.07684138417243958,-0.03366297110915184,-0.041240621358156204,0.039693187922239304,0.041222356259822845,0.05784326046705246,-0.06896650046110153,0.04455674812197685,-0.01312172133475542,-0.03524695709347725,0.06463809311389923,-0.02133304625749588,0.04295209050178528,-3.567285489225469e-8,0.10023710876703262,0.0010326615301892161,-0.07810081541538239,0.008034264668822289,0.005407675635069609,-0.07517757266759872,0.030872216448187828,0.062197767198085785,-0.02651403471827507,0.1278044432401657,-0.05711188539862633,0.11474978178739548,0.07110830396413803,0.020506544038653374,0.09612129628658295,0.03287508338689804,0.10431618988513947,-0.06146594509482384,-0.06588621437549591,0.02886235900223255,0.028052691370248795,0.013702604919672012,-0.02716214209794998,-0.03614186495542526,-0.03605050966143608,-0.04719089716672897,-0.018771454691886902,0.00040799390990287066,0.006166837178170681,-0.025717632845044136,0.040768761187791824,0.09085860848426819,-0.028078844770789146,-0.00834347028285265,0.09514735639095306,0.07043580710887909,-0.022780898958444595,-0.010979008860886097,0.06556376814842224,-0.04697015881538391,-0.052179910242557526,-0.01672763004899025,-0.029777897521853447,-0.001555655850097537,0.03918205946683884,0.05309212580323219,-0.03717527911067009,0.07826013118028641,0.005820542108267546,0.047781456261873245,0.026519622653722763,0.09352665394544601,0.04747992753982544,0.03748743236064911,0.0029329489916563034,-0.09490681439638138,0.013950629159808159,0.08406448364257812,0.08348850160837173,-0.0072965240105986595,0.050612736493349075,0.06367173790931702,-0.07650694996118546,-0.055739738047122955]},{"text":"The youth and his companion had each of them several names, but the old man had only one, which was _father._ The girl was called _sister_ or _Agatha,_ and the youth _Felix, brother,_ or _son_.","book":"1984","chapter":66,"embedding":[0.039012353867292404,0.1486426144838333,0.00788542814552784,0.040382202714681625,-0.02082492597401142,0.055754970759153366,0.02474096789956093,0.003096179338172078,-0.026112737134099007,-0.06229199096560478,0.10048533976078033,-0.033960066735744476,0.02346736006438732,-0.07215075194835663,-0.010873337276279926,0.06208985671401024,-0.06849360466003418,0.062227219343185425,0.0010366694768890738,-0.03679685667157173,-0.1000259667634964,-0.06643322110176086,-0.018546676263213158,-0.00843395758420229,0.028620215132832527,0.04588303342461586,-0.02865217998623848,0.013100194744765759,0.02027006633579731,0.020503133535385132,0.029835788533091545,0.0312906950712204,0.09141207486391068,0.05704587697982788,-0.011476187035441399,-0.02722497656941414,-0.0111424271017313,0.04007735848426819,0.03447568416595459,0.04879149794578552,-0.020294634625315666,-0.02311190403997898,-0.04064464196562767,-0.04286941513419151,-0.017613982781767845,-0.02767520770430565,-0.04046381264925003,0.02485942840576172,0.05508241802453995,0.05299390107393265,-0.01697934977710247,-0.07893720269203186,-0.057477887719869614,0.0541289746761322,0.0410572811961174,0.032844629138708115,0.0407288633286953,-0.04271659627556801,-0.04048100486397743,0.036384280771017075,-0.1042998805642128,-0.0566142238676548,-0.027479354292154312,-0.012081093154847622,-0.047175146639347076,-0.07465442270040512,-0.05061732232570648,-0.05888589844107628,-0.006934960372745991,0.07160092145204544,0.03428737819194794,0.04602755233645439,0.02840477041900158,-0.0004920238279737532,-0.07381599396467209,0.0035872270818799734,-0.030600396916270256,-0.0158575177192688,0.04152444005012512,-0.03574316203594208,-0.13184691965579987,-0.04972904175519943,-0.07029189169406891,0.024427039548754692,-0.025496693328022957,0.047797635197639465,-0.0029144492000341415,-0.10138285160064697,-0.07763358950614929,0.038093261420726776,-0.1295393705368042,-0.10215362161397934,0.057926081120967865,0.09061122685670853,0.03252507746219635,0.008332445286214352,0.00570426182821393,-0.014842730015516281,-0.09356626868247986,-0.008027670904994011,0.031260762363672256,0.041923344135284424,0.08693764358758926,0.06129303574562073,-0.06991944462060928,0.0096204848960042,0.0286423210054636,-0.02011071890592575,0.053782977163791656,0.009165230207145214,-0.011492544785141945,-0.06643025577068329,-0.004629148636013269,-0.01911063864827156,-0.03202227130532265,-0.02479490265250206,0.01247432455420494,0.016596367582678795,-0.04727206006646156,0.04325348511338234,0.06367025524377823,0.044176653027534485,-0.015867633745074272,0.05174092948436737,-0.01757660321891308,0.01007816195487976,0.04862850904464722,-5.8197755526372026e-33,-0.030809417366981506,-0.02847987599670887,0.0038613269571214914,0.05482906475663185,0.03510970622301102,0.00022047288075555116,0.017277954146265984,0.05579487979412079,-0.022922400385141373,-0.09848182648420334,-0.05838887766003609,-0.1333632469177246,-0.04442811757326126,-0.05874600633978844,-0.05026572197675705,0.10451777279376984,0.01509939506649971,-0.028139714151620865,0.0672009214758873,0.03734910115599632,0.06833837181329727,0.15634498000144958,-0.08391808718442917,-0.010313797742128372,-0.023954998701810837,0.010031147859990597,0.055765457451343536,-0.03353576362133026,0.0618276409804821,0.018320737406611443,0.0005820868536829948,0.04216528683900833,0.022362595424056053,0.0637451559305191,-0.00010266724711982533,-0.015464797616004944,0.07373225688934326,-0.012061716988682747,-0.03938949480652809,0.05462375655770302,-0.08562695235013962,0.0007290469948202372,0.044099997729063034,-0.04634597897529602,0.005423157941550016,-0.00655753631144762,0.043409209698438644,0.028174858540296555,0.01694592274725437,0.06736905872821808,-0.05544961243867874,0.0052557289600372314,-0.047041285783052444,0.015814825892448425,0.0012676267651841044,0.0577884279191494,-0.005548232700675726,0.1154753640294075,-0.08940020948648453,-0.022108489647507668,0.07921439409255981,-0.011471306905150414,0.11287027597427368,0.07073836028575897,0.04882245510816574,0.053518109023571014,0.04162606596946716,-0.013736682943999767,0.07460138946771622,0.03529218211770058,-0.08719998598098755,-0.011633360758423805,0.0036533214151859283,-0.011103447526693344,0.010847612284123898,-0.002037556143477559,-0.029311835765838623,-0.01485969964414835,-0.024370431900024414,-0.06274212896823883,-0.02477731741964817,0.023082692176103592,-0.08960229158401489,0.020852109417319298,-0.1519407033920288,-0.06216222792863846,0.01510616298764944,-0.03721029683947563,-0.04934128001332283,0.07088322192430496,-0.04276450350880623,0.031664539128541946,-0.012466770596802235,0.0009917811257764697,0.0008247336954809725,8.785209477793988e-34,0.008307810872793198,-0.032299384474754333,0.013863720931112766,-0.07293500751256943,0.01585017517209053,-0.022819625213742256,-0.030010156333446503,0.005186968017369509,-0.02381458505988121,0.015987709164619446,-0.06954926997423172,-0.10548646748065948,0.0011714556021615863,-0.031561478972435,-0.015962844714522362,0.05533696711063385,-0.03716854751110077,0.04874345660209656,-0.0002980847784783691,0.03731786459684372,-0.013736981898546219,0.038781411945819855,-0.0693482980132103,-0.010563170537352562,0.09633966535329819,-0.02133544534444809,0.0679563507437706,-0.013175971806049347,-0.04639604687690735,0.07486574351787567,0.023524481803178787,-0.029674751684069633,0.08787545561790466,-0.0007849587709642947,-0.03284222632646561,0.04926783964037895,-0.024359332397580147,-0.028479857370257378,-0.007047617807984352,-0.07830838859081268,0.031654998660087585,-0.036530449986457825,0.10135260969400406,-0.012070619501173496,-0.010386072099208832,-0.0037494897842407227,-0.05368229001760483,0.033946506679058075,0.012980212457478046,0.0027110178489238024,-0.05737656354904175,-0.06700226664543152,-0.09666256606578827,0.018830543383955956,-0.03081292100250721,0.0068916985765099525,-0.01110546663403511,-0.016727570444345474,0.027973270043730736,0.03392651677131653,-0.015603246167302132,-0.05716289207339287,-0.10079975426197052,0.05239463225007057,-0.07812868803739548,-0.0035619335249066353,-0.11087268590927124,-0.022988898679614067,-0.06082897260785103,0.03305913135409355,0.021570511162281036,-0.02596100978553295,0.04195776954293251,0.0008925878209993243,0.02939155139029026,0.03244851157069206,-0.08992789685726166,0.026400286704301834,-0.06047553941607475,-0.09983336180448532,-0.05589175969362259,-0.029742686077952385,-0.04019760712981224,0.05855856463313103,-0.060245733708143234,-0.039753787219524384,0.08584627509117126,0.027440670877695084,-0.0342874638736248,0.011485635302960873,0.06041808798909187,0.038614604622125626,0.11227758228778839,-0.08757820725440979,-0.05718589946627617,-3.121542135886557e-8,0.06599569320678711,0.00889615248888731,-0.030116476118564606,-0.020240183919668198,0.004853886552155018,-0.02750074677169323,0.024596307426691055,0.03506796807050705,-0.037286046892404556,0.14530086517333984,-0.05429423600435257,0.06936368346214294,0.02664569392800331,-0.03574144095182419,0.09910209476947784,-0.10241221636533737,-0.003880484728142619,-0.03244389221072197,0.009098772890865803,-0.0323476605117321,0.03748361021280289,-0.03017064370214939,0.019059866666793823,0.04495161771774292,-0.001779827056452632,0.022694654762744904,0.028240390121936798,-0.023889683187007904,-0.019417621195316315,0.04443071037530899,0.03550314903259277,0.03838930279016495,-0.02448595128953457,0.03469111770391464,-0.04476946219801903,0.0265903752297163,0.006800282746553421,0.007258750963956118,0.03442472964525223,-0.02466496266424656,0.021210409700870514,-0.08014896512031555,-0.08158446103334427,-0.04152030870318413,0.09169980883598328,0.005282144993543625,0.07624318450689316,-0.0611572228372097,0.023500284180045128,-0.00010817842849064618,-0.03442695364356041,-0.0012158544268459082,0.0622958280146122,-0.0001927871344378218,0.03604772686958313,-0.050819337368011475,0.015087366104125977,0.11640538275241852,-0.0015688857529312372,-0.028692567721009254,0.0848725214600563,0.057844679802656174,0.04400158300995827,0.013724485412240028]},{"text":"In the midst of poverty and want, Felix carried with pleasure to his sister the first little white flower that peeped out from beneath the snowy ground.","book":"1984","chapter":67,"embedding":[0.018181661143898964,0.09631291031837463,0.04907520115375519,0.09501835703849792,-0.013310834765434265,0.07001209259033203,0.0012747724540531635,0.03724072501063347,0.046781860291957855,-0.05681344494223595,-0.010354254394769669,0.009820920415222645,-0.043533094227313995,-0.0027763007674366236,0.02005421556532383,0.037065114825963974,0.020226316526532173,-0.007121068425476551,-0.10629158467054367,0.03712215647101402,0.054088838398456573,-0.038638971745967865,-0.02574942260980606,-0.04349173605442047,-0.011309739202260971,0.0707395076751709,-0.004754382185637951,-0.019533049315214157,0.057218462228775024,-0.02280276082456112,-0.03152584284543991,0.02823004126548767,0.12256581336259842,0.03803617134690285,-0.006714547518640757,0.056405872106552124,0.0260517168790102,-0.08576973527669907,0.071345254778862,0.033964719623327255,0.04062025621533394,-0.02879870869219303,-0.009977458044886589,-0.041665758937597275,-0.06365150958299637,0.0062217977829277515,0.04461406171321869,0.03145378455519676,0.07370457798242569,-0.01757277175784111,0.01409380603581667,-0.06041454151272774,0.0063048298470675945,0.043442077934741974,0.015665380284190178,0.04155683144927025,0.10086249560117722,-0.05970912054181099,-0.0009761074907146394,-0.044843342155218124,-0.05315900221467018,-0.017055297270417213,0.0246477909386158,0.027378037571907043,-0.00516125513240695,-0.09936875104904175,-0.07111561298370361,0.027272868901491165,-0.02630813978612423,-0.008030029013752937,0.031220126897096634,0.058905839920043945,0.0436684787273407,-0.04715510457754135,-0.06051717698574066,0.014280826784670353,-0.057313572615385056,0.018030989915132523,-0.005063354503363371,-0.015567762777209282,0.022666731849312782,-0.016193760558962822,-0.07585621625185013,0.07695290446281433,-0.08773298561573029,0.05201417952775955,0.03165755048394203,-0.06658011674880981,0.005865406710654497,-0.037695180624723434,-0.11942742019891739,-0.059957828372716904,-0.08062060177326202,0.04119192436337471,-0.07273734360933304,0.008000332862138748,0.06295650452375412,-0.0627722218632698,-0.09912347048521042,0.007140324916690588,0.04965775087475777,0.027723945677280426,0.08785219490528107,-0.0006593348225578666,0.06079615280032158,-0.0383700355887413,0.009712615981698036,0.0050786323845386505,-0.01881474256515503,0.010387244634330273,-0.05430877208709717,-0.1223597601056099,0.006667231675237417,-0.006788821425288916,-0.053343288600444794,-0.05612939968705177,-0.05702663213014603,-0.017083074897527695,-0.05351443216204643,0.03940759599208832,0.058887701481580734,-0.017519718036055565,-0.052738189697265625,0.07193578034639359,-0.0074995155446231365,-0.07001839578151703,0.022209027782082558,-2.7277673345197504e-33,0.02717401273548603,-0.04977213218808174,-0.014015082269906998,0.05385270342230797,0.0628509372472763,-0.013676473870873451,0.01193454023450613,0.026636185124516487,-0.05761302262544632,-0.08818484842777252,-0.07670661062002182,-0.04081256315112114,-0.08075764775276184,0.031661104410886765,-0.03384243696928024,-0.027630887925624847,-0.005662600044161081,-0.09931091964244843,0.05271788313984871,0.08728300034999847,0.0958726555109024,0.0487208291888237,-0.044722944498062134,0.03619684278964996,-0.08507440984249115,0.023526182398200035,0.013370930217206478,-0.09215307235717773,0.0020949284080415964,0.029467755928635597,0.04376143589615822,0.0438196025788784,0.0028343279846012592,-0.024265987798571587,-0.04238438606262207,-0.014066416770219803,0.003661584807559848,0.0035465997643768787,-0.05982283875346184,0.040271155536174774,-0.021499719470739365,-0.017879458144307137,0.06156907603144646,0.0008885242859832942,-0.03907688334584236,-0.005502935964614153,0.0834902748465538,-0.026754220947623253,0.01488935761153698,0.03901968523859978,-0.016427025198936462,0.0071830893866717815,0.10997702181339264,0.015193400904536247,0.019999656826257706,-0.05693904310464859,-0.010429208166897297,0.0050841448828577995,-0.06993964314460754,-0.011402049101889133,-0.021147027611732483,-0.02307034470140934,0.03843638673424721,0.016266630962491035,0.0004088948480784893,0.012823219411075115,0.005285912659019232,0.0461580865085125,-0.0710076093673706,0.06712700426578522,-0.038604509085416794,0.04314931854605675,-0.04098274186253548,-0.04525641351938248,-0.024524573236703873,-0.0041662901639938354,0.06434280425310135,-0.10334877669811249,0.0657518208026886,-0.0755038782954216,0.049877941608428955,-0.001395950559526682,0.014956868253648281,0.036946799606084824,-0.08243869245052338,-0.030449384823441505,0.03447376564145088,-0.007215474732220173,-0.10003963857889175,-0.016305042430758476,0.012631303630769253,0.07759277522563934,-0.039168719202280045,-0.037922997027635574,-0.017791297286748886,-8.227538427374586e-34,0.11145473271608353,-0.030147207900881767,0.10528269410133362,-0.004011380951851606,0.005785497836768627,0.1162322461605072,-0.06407297402620316,-0.008451837114989758,0.04261907562613487,0.1215752363204956,-0.12503927946090698,0.012906510382890701,0.10142634063959122,-0.05276602879166603,-0.0017230473458766937,-0.009626653045415878,-0.015327279455959797,0.07621826231479645,0.009460513480007648,-0.024078138172626495,-0.002775378990918398,0.09752465039491653,-0.051706913858652115,-0.10529356449842453,0.02172764204442501,0.02435326762497425,0.06371800601482391,0.026292545720934868,-0.10008995234966278,-0.010621200315654278,0.02731398493051529,-0.022730831056833267,-0.05679567903280258,-0.014560296200215816,0.023494353517889977,0.0777861624956131,-0.07951442152261734,0.010038916021585464,-0.05892718583345413,-0.05810017138719559,0.06394707411527634,-0.12686359882354736,0.037535183131694794,0.09395498037338257,0.049851562827825546,-0.07645609229803085,-0.07291506230831146,0.08781646937131882,0.12781642377376556,0.03761252760887146,-0.0011341851204633713,-0.03615270182490349,-0.025143781676888466,0.11820191144943237,0.030918335542082787,-0.05641956999897957,-0.06766054034233093,0.032677147537469864,-0.02311721444129944,-0.019178161397576332,-0.10266141593456268,-0.050583794713020325,-0.0684773176908493,0.05537300929427147,-0.06180989369750023,-0.01554375421255827,0.012643277645111084,-0.021538645029067993,-0.04939385876059532,0.08196987956762314,0.014638327993452549,-0.006262846291065216,0.0006394520751200616,-0.024767687544226646,0.06649359315633774,0.019788287580013275,-0.05925924330949783,-0.03912080079317093,-0.0835684984922409,0.023281801491975784,-0.015217408537864685,-0.0057802158407866955,-0.03165176510810852,0.006617197301238775,0.0597248449921608,-0.10783321410417557,0.03153419494628906,-0.013999056071043015,-0.05368157848715782,0.020497780293226242,-0.0056412965059280396,0.04465634748339653,0.07273848354816437,-0.023171888664364815,0.03875412046909332,-2.9079602725801124e-8,0.015037119388580322,0.034301985055208206,-0.019420882686972618,-0.016100551933050156,0.09086725860834122,0.026949400082230568,-0.03284823149442673,0.027389826253056526,-0.0677536278963089,0.09175999462604523,-0.09097248315811157,0.07268194854259491,0.07417599111795425,0.07307261973619461,0.03891389071941376,0.015271203592419624,0.03876124694943428,-0.0756785199046135,-0.005495727993547916,-0.02271052822470665,0.005019035190343857,-0.03838389739394188,0.016416581347584724,-0.024593092501163483,-0.0408916249871254,-0.012432219460606575,0.019102370366454124,-0.04313966631889343,0.024869577959179878,-0.018968941643834114,0.05975256487727165,0.013413943350315094,-0.03145350515842438,0.008008130826056004,-0.06671211868524551,0.023353882133960724,-0.008514059707522392,0.04220879077911377,-0.01823282428085804,-0.0761706605553627,0.06768714636564255,0.036088794469833374,-0.011395360343158245,-0.021221665665507317,-0.014836403541266918,0.023910488933324814,-0.006914664059877396,-0.02959730476140976,0.015901615843176842,0.07445449382066727,-0.060751017183065414,0.025966446846723557,-0.06318087875843048,0.05728486180305481,-0.033526770770549774,-0.033828504383563995,-0.0034659921657294035,0.030347883701324463,0.013023766689002514,0.04863277077674866,0.018423911184072495,0.015553250908851624,-0.015505104325711727,-0.006757345981895924]},{"text":"During the morning I attended the motions of the cottagers, and when they were dispersed in various occupations, I slept; the remainder of the day was spent in observing my friends.","book":"1984","chapter":67,"embedding":[0.02360839769244194,0.047347694635391235,0.07722315937280655,0.06260831654071808,0.0800318494439125,-0.040534716099500656,0.0076385061256587505,-0.11934787780046463,0.026761222630739212,-0.017765821889042854,0.06033475324511528,0.026092300191521645,0.03741602227091789,0.041045814752578735,-0.020398030057549477,-0.004388530272990465,-0.06894872337579727,0.00981881469488144,-0.017388585954904556,0.03435822203755379,-0.06816241890192032,-0.028541045263409615,0.036397308111190796,0.06887807697057724,0.06665942072868347,0.01776696927845478,0.06962088495492935,-0.08050090819597244,0.027725886553525925,-0.03382677957415581,-0.034962669014930725,0.07230256497859955,-0.031067634001374245,-0.00329999509267509,0.002992438618093729,0.11397961527109146,0.09529025852680206,-0.046368859708309174,0.039968620985746384,0.028599396347999573,0.03519560396671295,-0.09992755204439163,0.11532668024301529,-0.054632626473903656,-0.0745825469493866,0.01489334274083376,0.004667201545089483,-0.03014616295695305,0.012845844961702824,0.05109444260597229,0.026815375313162804,0.020105574280023575,-0.017448438331484795,-0.05568201094865799,0.017804596573114395,-0.004529412370175123,0.028467971831560135,-0.0000093813068815507,0.057996127754449844,0.001971541903913021,-0.04330608993768692,0.009004135616123676,0.01826980523765087,0.02376168593764305,-0.07434669137001038,-0.0036669133696705103,-0.07424483448266983,0.045665159821510315,0.03474372252821922,-0.026997560635209084,-0.05148192122578621,-0.03722095862030983,-0.012218568474054337,-0.046468544751405716,-0.0791330337524414,-0.055123113095760345,0.014389359392225742,-0.07627347111701965,0.00924577284604311,-0.053474098443984985,-0.021145334467291832,0.0024473308585584164,0.03250623866915703,0.00844188779592514,-0.05414418876171112,0.008039540611207485,0.0550849623978138,0.05087064206600189,0.09317366778850555,0.040986474603414536,0.01126245129853487,-0.019225938245654106,-0.09288721531629562,0.0011872034519910812,0.00038413036963902414,-0.07999937236309052,-0.05044941604137421,0.08608177304267883,0.013048815540969372,0.08377775549888611,0.027447419241070747,0.028055015951395035,0.04901685193181038,0.019832680001854897,-0.037225913256406784,-0.03295903280377388,-0.0676715224981308,-0.028188014402985573,-0.013378452509641647,-0.006083484273403883,-0.0191317368298769,0.061299122869968414,0.017282258719205856,0.05563678592443466,0.008573036640882492,0.004326170776039362,0.04692085087299347,0.06417470425367355,0.007107382174581289,0.0440678745508194,0.10488032549619675,0.09998510777950287,0.012600957415997982,-0.04000113904476166,-0.04393927752971649,0.00528499111533165,0.04666871950030327,-5.299099880832071e-33,0.0030651651322841644,-0.03459837660193443,-0.07029609382152557,0.111397884786129,0.0862019807100296,-0.03840599209070206,-0.09847966581583023,0.05937645956873894,0.033228687942028046,-0.09106583893299103,0.017432628199458122,0.014602484181523323,0.024937869980931282,-0.02944437600672245,-0.007955698296427727,0.005845099687576294,-0.004509805701673031,0.0445014052093029,0.05030939355492592,-0.001526150619611144,-0.020243728533387184,0.022058703005313873,-0.002989158034324646,0.01850389689207077,-0.09517163783311844,-0.05765214562416077,-0.006000932306051254,-0.052038077265024185,0.004889701493084431,0.013176807202398777,0.18884186446666718,-0.018924713134765625,0.034164588898420334,-0.005920471157878637,0.03423256427049637,0.07239020615816116,0.058231282979249954,-0.056064773350954056,-0.07733266055583954,-0.038005270063877106,-0.02591586671769619,-0.024229679256677628,0.058867618441581726,-0.026881033554673195,-0.028407759964466095,0.008102092891931534,0.0055757323279976845,0.059648606926202774,-0.08302219957113266,0.00973400380462408,-0.023729827255010605,0.004107485990971327,-0.055389199405908585,-0.07999380677938461,-0.014562541618943214,0.04193791747093201,0.013641085475683212,0.011172241531312466,-0.013270411640405655,0.043843165040016174,0.02432168461382389,0.004491394851356745,0.04001632705330849,-0.08744711428880692,-0.02174093760550022,-0.08900769054889679,-0.0036429106257855892,-0.00572020560503006,0.03972354903817177,-0.027319956570863724,0.004498280584812164,0.003423697082325816,-0.012986738234758377,-0.006696641445159912,0.032479848712682724,0.003531962400302291,-0.043048497289419174,-0.018614279106259346,-0.05844831094145775,-0.03728053346276283,0.12940940260887146,-0.023065386340022087,-0.07543948292732239,0.021873218938708305,0.0016983046662062407,0.01115043368190527,0.028355032205581665,-0.0637335479259491,-0.05739507079124451,0.05317230895161629,-0.0671001449227333,-0.013843277469277382,0.048149604350328445,-0.06583493202924728,-0.06967990100383759,1.4484096089366673e-33,0.03309611603617668,-0.04493522271513939,-0.022144658491015434,-0.019626792520284653,0.006929130293428898,-0.07743119448423386,-0.021851249039173126,-0.06956159323453903,-0.07000551372766495,0.04511537775397301,-0.03901094198226929,-0.010787633247673512,0.011066791601479053,0.0031595707405358553,0.013848134316504002,-0.07315108925104141,0.0886516198515892,0.02327980101108551,0.0005882340483367443,0.07950254529714584,-0.07246594876050949,-0.034294433891773224,0.03817346692085266,-0.04894551634788513,0.07160744816064835,0.05637146160006523,0.044521305710077286,0.023369180038571358,-0.02379230037331581,-0.03539421781897545,0.07309421896934509,-0.045854683965444565,-0.015995247289538383,-0.042813368141651154,-0.0007594734197482467,0.0973716750741005,-0.02210596390068531,-0.0033072279766201973,-0.014745118096470833,-0.1257346272468567,0.019595056772232056,-0.06725490093231201,-0.004393753595650196,0.052525073289871216,-0.036304671317338943,-0.011464104987680912,-0.08255364745855331,0.007710777223110199,-0.051730088889598846,0.015673426911234856,-0.04093119502067566,0.061988573521375656,-0.011597366072237492,-0.03330295905470848,-0.031014252454042435,-0.001599194947630167,0.011526747606694698,-0.06231768801808357,0.05308083817362785,0.020043745636940002,-0.048026613891124725,-0.005565634462982416,-0.07009197026491165,0.06760289520025253,0.023652279749512672,-0.0397760234773159,-0.08701977878808975,-0.061644989997148514,-0.03849814459681511,0.01968073472380638,0.043502699583768845,0.004211975261569023,-0.050824545323848724,0.05433748662471771,-0.0006234516622498631,-0.0288727805018425,0.03130798041820526,-0.05670124292373657,-0.05247315391898155,-0.04144436866044998,-0.09561651200056076,-0.11420044302940369,0.042228516191244125,-0.04747135937213898,-0.0853244811296463,-0.052002985030412674,0.09488781541585922,0.03797311708331108,0.020549818873405457,-0.030742421746253967,0.05990004166960716,0.008495539426803589,0.018287284299731255,-0.010440224781632423,0.053072743117809296,-3.116350555387726e-8,-0.00843089073896408,0.004488126840442419,0.006284055765718222,0.010962938889861107,-0.005764655768871307,-0.10083256661891937,0.08683785051107407,0.024285761639475822,-0.06917613744735718,0.09878077358007431,-0.04992732033133507,-0.012402001768350601,0.08447364717721939,-0.03308085352182388,0.1535007357597351,-0.04869880899786949,0.05655510723590851,-0.03455398231744766,-0.04053948447108269,0.004294892307370901,0.06694119423627853,-0.022990556433796883,-0.04469476640224457,0.005233986768871546,0.029318856075406075,0.03176387399435043,-0.025780191645026207,-0.012481899932026863,0.030433809384703636,0.017928846180438995,0.05290369689464569,0.08524618297815323,-0.046251051127910614,-0.034822575747966766,-0.06831029057502747,-0.016300197690725327,-0.027981143444776535,-0.08403830230236053,0.1054023951292038,0.04693824425339699,-0.05399628356099129,-0.03109559416770935,-0.0023732129484415054,0.0297154039144516,0.06868844479322433,0.03892487660050392,0.04733108729124069,-0.04714512079954147,-0.02332097664475441,0.039661042392253876,-0.0059043122455477715,0.010323095135390759,0.0795012041926384,0.06441112607717514,-0.024717073887586594,-0.048142071813344955,0.02646922692656517,0.003899940988048911,0.012017338536679745,-0.01839670166373253,-0.015910839661955833,0.04447762668132782,-0.21386072039604187,-0.06836056709289551]},{"text":"Men who before this change seemed to have been hid in caves dispersed themselves and were employed in various arts of cultivation.","book":"1984","chapter":68,"embedding":[0.052712783217430115,0.052515339106321335,0.0193619467318058,0.04511771351099014,-0.012562287971377373,-0.04027271643280983,-0.02974739484488964,-0.11393105238676071,-0.07950899749994278,0.08566736429929733,0.0200584027916193,-0.003063655924052,-0.007837316021323204,-0.008847393095493317,-0.009054956957697868,-0.009008325636386871,-0.0621076300740242,0.07391392439603806,-0.013964838348329067,-0.0385592058300972,-0.0019187306752428412,-0.010796145536005497,-0.03356604650616646,-0.065729521214962,0.05971488729119301,-0.020236749202013016,-0.05138394236564636,-0.0005435968632809818,0.10546138137578964,-0.024440763518214226,-0.03210197389125824,0.0934409573674202,0.06888358294963837,-0.027605578303337097,-0.011992404237389565,0.06395716220140457,0.013698088936507702,0.07602909207344055,0.003115658415481448,0.0037030139937996864,-0.024745233356952667,0.02257050946354866,0.014220555312931538,-0.014647767879068851,-0.09419189393520355,0.030601561069488525,-0.036707375198602676,-0.04066087305545807,-0.03450287878513336,-0.042755503207445145,0.03951813280582428,-0.036916013807058334,-0.0051046134904026985,0.014787225052714348,-0.035346619784832,-0.07400082051753998,0.04450082778930664,-0.02449086867272854,0.06545832008123398,0.008352131582796574,0.016231011599302292,0.012919432483613491,0.02736165188252926,0.004939461592584848,-0.0204614270478487,0.036289654672145844,-0.031073912978172302,-0.04277927801012993,0.0013631500769406557,-0.02488616853952408,0.039697058498859406,-0.022335492074489594,-0.05022568255662918,-0.0859965831041336,-0.029895007610321045,-0.041124988347291946,-0.09302361309528351,-0.04156934469938278,-0.07791052758693695,-0.054992713034152985,0.07928954064846039,0.07910365611314774,-0.056823089718818665,-0.012897461652755737,-0.03655471280217171,0.03297179937362671,-0.05871724709868431,-0.036119453608989716,0.058332737535238266,0.0036341333761811256,-0.03311511501669884,-0.038524605333805084,-0.04675215482711792,0.036580223590135574,0.03117513097822666,-0.06808581203222275,0.028690112754702568,0.12257815897464752,0.0435514859855175,0.021383080631494522,0.02453162521123886,-0.0739755928516388,-0.007422348950058222,-0.08470216393470764,0.019624514505267143,-0.08612602949142456,-0.016578715294599533,0.04229314625263214,0.03174804523587227,0.06510905176401138,-0.027908682823181152,0.012386552058160305,-0.024536950513720512,0.06692294031381607,-0.00749598303809762,-0.0025987806729972363,-0.012392600066959858,-0.03412741422653198,-0.08574850857257843,0.10695993900299072,0.02798919565975666,0.037850745022296906,0.014653624966740608,-0.05810635909438133,-0.028688671067357063,0.040989454835653305,-0.07947269082069397,-3.824925272435302e-33,0.02300010621547699,0.00048583614989183843,-0.037972256541252136,0.12272032350301743,0.09479288756847382,-0.003884261939674616,0.06603540480136871,-0.051497649401426315,0.06740820407867432,-0.04722653701901436,0.035251468420028687,0.043003808706998825,-0.07915548980236053,0.012894702143967152,-0.0393114872276783,-0.026994219049811363,-0.007780770305544138,-0.007040062453597784,0.02291025035083294,-0.07014403492212296,-0.04999576881527901,0.055756691843271255,-0.07980716973543167,0.00908097717911005,0.059666141867637634,0.08910640329122543,-0.03464115411043167,-0.03757687285542488,0.022900395095348358,0.024086695164442062,0.046668119728565216,0.04309452697634697,-0.03430682793259621,-0.025867989286780357,0.022445568814873695,0.07364863902330399,0.1142224594950676,-0.0507737472653389,-0.055111680179834366,0.006389365065842867,0.02847231738269329,0.000419329822761938,0.027694329619407654,-0.1003483459353447,0.020839529111981392,0.006269258912652731,-0.03867392987012863,0.04302894324064255,-0.04800938814878464,0.05634220689535141,-0.06935068219900131,0.1634168177843094,0.003892775159329176,-0.03370165079832077,0.09430158138275146,-0.0175890251994133,-0.0019847049843519926,0.027047304436564445,0.016706474125385284,-0.01477833092212677,0.049230389297008514,0.07284068316221237,-0.025358399376273155,0.1228388175368309,-0.0159507617354393,-0.04768012464046478,0.018003830686211586,0.008206108585000038,-0.03300763666629791,0.025892144069075584,-0.05047004297375679,-0.014298010617494583,-0.16357021033763885,0.028309034183621407,-0.054061856120824814,-0.024627279490232468,-0.027231670916080475,0.011527907103300095,-0.06291189044713974,-0.0477614626288414,0.03334784135222435,0.048086974769830704,-0.10487145930528641,-0.0116979805752635,-0.0129609489813447,-0.002604532055556774,0.06408919394016266,0.041637297719717026,0.015130777843296528,0.0024840824771672487,0.02463737316429615,-0.04008626192808151,0.006186738144606352,-0.007397300563752651,-0.06534996628761292,-7.538093427078674e-35,-0.050554655492305756,0.03416227176785469,-0.03447864577174187,0.014334753155708313,0.07732153683900833,-0.004177464172244072,-0.005830423440784216,-0.012253383174538612,0.04213760793209076,0.008207877166569233,-0.06936363875865936,0.02752869203686714,0.059024691581726074,-0.021257102489471436,-0.07870008051395416,-0.1062830463051796,0.05860041081905365,-0.01811063103377819,-0.001037723384797573,0.07388757914304733,-0.001070045749656856,0.07285992801189423,-0.0703861266374588,-0.05665586516261101,-0.017803683876991272,0.04187409579753876,0.0003196029574610293,0.08422456681728363,-0.07697634398937225,0.015963327139616013,-0.029011359438300133,0.05294181779026985,-0.02599206753075123,0.04749985411763191,-0.02626906707882881,-0.02706315368413925,-0.060385555028915405,0.019929569214582443,-0.017642680555582047,-0.0030689898412674665,-0.015895644202828407,0.0010910960845649242,0.014007765799760818,0.062044255435466766,-0.03816786780953407,0.033627577126026154,-0.021116111427545547,-0.036809977144002914,0.003757433034479618,-0.036333270370960236,0.032611627131700516,-0.005926533602178097,-0.022049570456147194,-0.1120777353644371,-0.05818697065114975,-0.029168710112571716,-0.0284469872713089,-0.014826972968876362,-0.006002441048622131,0.06006385385990143,-0.0032238452695310116,0.04180889204144478,-0.024758590385317802,0.0460563562810421,-0.08431589603424072,0.06749116629362106,-0.02553441934287548,0.06842927634716034,-0.05685611441731453,-0.00008155615068972111,0.1280057579278946,-0.11792627722024918,0.03199831768870354,0.05013606697320938,0.0036947294138371944,0.0037707253359258175,-0.022037532180547714,0.009910212829709053,0.0243295356631279,-0.07701066136360168,-0.033236414194107056,-0.09061411023139954,0.03611313924193382,0.0149714145809412,0.031504783779382706,0.05853358283638954,-0.06511737406253815,-0.010101848281919956,0.01146288588643074,-0.0005106952739879489,-0.0463569201529026,-0.06653743237257004,-0.0780828520655632,-0.02750261127948761,0.062237951904535294,-2.3195566356548625e-8,-0.01272168941795826,0.04169216752052307,0.057781461626291275,0.04848413169384003,0.020686117932200432,-0.09938593208789825,0.05852153152227402,0.0721563920378685,0.0026981246192008257,0.025079354643821716,-0.14916057884693146,0.07577891647815704,0.13664056360721588,0.048019081354141235,0.12495174258947372,0.036626528948545456,0.01108481828123331,-0.03567778691649437,-0.058402810245752335,-0.052472297102212906,0.004526706878095865,0.004132766276597977,0.03230849653482437,-0.023162605240941048,-0.0397789441049099,0.01163386832922697,-0.05001445859670639,-0.0774274468421936,-0.038884807378053665,0.09002972394227982,-0.00260909809730947,0.08583719283342361,-0.02558232471346855,0.029064953327178955,-0.01974363997578621,0.04038315638899803,-0.0522117018699646,-0.05058779940009117,0.014016666449606419,-0.024700285866856575,-0.06274344772100449,-0.061526354402303696,0.041823096573352814,-0.023933764547109604,-0.06869997084140778,0.02216021716594696,0.022778527811169624,0.09689323604106903,-0.015611821785569191,0.007710933219641447,0.050806403160095215,0.05519764497876167,0.06980465352535248,-0.0033399960957467556,0.09029868990182877,-0.05404314771294594,0.07287123799324036,0.061188384890556335,-0.012640802189707756,-0.017902642488479614,-0.051880743354558945,-0.022583063691854477,0.021363750100135803,-0.013903195038437843]},{"text":"On hearing this word, Felix came up hastily to the lady, who, when she saw him, threw up her veil, and I beheld a countenance of angelic beauty and expression.","book":"1984","chapter":68,"embedding":[0.018789486959576607,0.060626085847616196,0.052313994616270065,0.06495900452136993,-0.023342296481132507,0.07235981523990631,0.07118198275566101,-0.0013561997329816222,0.054491493850946426,-0.0919572040438652,0.027633661404252052,-0.039881106466054916,-0.0838066041469574,-0.07249457389116287,0.012585950084030628,0.037385813891887665,0.01842702552676201,0.07623538374900818,-0.009481553919613361,0.06297746300697327,0.05634414404630661,0.030201444402337074,-0.04352574050426483,-0.01291873212903738,0.07565171271562576,0.027307825163006783,-0.00042366483830846846,-0.04309768229722977,0.06434765458106995,-0.016683636233210564,-0.04707427695393562,0.00044564681593328714,0.1076078936457634,0.030160753056406975,-0.08421450108289719,0.09695380926132202,0.00805541593581438,-0.05671156197786331,0.09022747725248337,0.035215120762586594,-0.07861240953207016,0.046386342495679855,-0.06538404524326324,-0.029813390225172043,-0.0402575246989727,-0.0029528739396482706,0.01613527163863182,0.10089680552482605,0.03135155141353607,-0.02422718144953251,-0.07525937259197235,-0.0688045546412468,0.02182774990797043,-0.004240953829139471,-0.08044033497571945,0.017896082252264023,0.05946552753448486,-0.04709867388010025,0.011966622434556484,0.035834942013025284,-0.03118802420794964,-0.02869909442961216,0.08092238754034042,0.07822330296039581,-0.07893184572458267,-0.12368903309106827,0.0001365362259093672,-0.0073887999169528484,-0.006411274429410696,0.03693975508213043,0.02450326643884182,0.02211373671889305,-0.023457635194063187,-0.014966939575970173,-0.05507925525307655,-0.022418895736336708,0.02044062688946724,-0.10808353126049042,0.0460224375128746,0.04050023481249809,-0.04167972877621651,-0.009055441245436668,-0.0442725233733654,0.036426786333322525,-0.05357964336872101,-0.010227270424365997,-0.009696773253381252,-0.025139980018138885,-0.03754131868481636,0.027368342503905296,-0.09411371499300003,-0.11239007115364075,-0.07769238948822021,0.019372818991541862,0.036496538668870926,0.024910029023885727,-0.0071497708559036255,0.03562164679169655,0.03586578741669655,0.03128021955490112,0.043394919484853745,0.08365897089242935,-0.011929972097277641,0.056718043982982635,-0.014282363466918468,-0.025900203734636307,0.007817944511771202,-0.0029596183449029922,0.008411441929638386,-0.03470888361334801,0.02722301334142685,-0.11260480433702469,-0.004197113215923309,-0.045788709074258804,-0.001414432772435248,0.09641559422016144,0.047556810081005096,-0.009947179816663265,-0.039792709052562714,-0.0035440060310065746,0.07578621804714203,0.0007038858020678163,0.014134563505649567,0.04817696288228035,-0.01037620846182108,-0.01370817981660366,0.04248196631669998,-3.5909963864918975e-33,0.022985754534602165,-0.006223147269338369,-0.010381780564785004,0.016312560066580772,0.07596443593502045,-0.02524845488369465,-0.021440336480736732,0.03140546754002571,-0.016830414533615112,-0.023564405739307404,-0.02881276048719883,-0.04958629980683327,-0.06621558219194412,0.03427736833691597,-0.06968604773283005,0.024174295365810394,0.018526293337345123,0.007771767675876617,0.0443354994058609,0.03635811805725098,0.042071450501680374,-0.06031886860728264,-0.031510986387729645,-0.020389817655086517,-0.07509876042604446,0.04948951303958893,0.044607147574424744,-0.028104223310947418,0.007959168404340744,0.027920320630073547,0.032590579241514206,0.05545073375105858,0.07310748845338821,-0.01629556529223919,0.042786676436662674,0.03630905970931053,-0.02209479920566082,0.010945235379040241,-0.060876764357089996,0.022163724526762962,0.00510179391130805,0.00028967997059226036,0.013824605382978916,-0.07346386462450027,-0.10623887181282043,0.028586406260728836,-0.03632128983736038,-0.005008198320865631,0.00641591614112258,0.03208787739276886,-0.013910820707678795,0.039020709693431854,0.07177405804395676,0.05690785497426987,-0.004707789979875088,0.018393754959106445,-0.01785443164408207,0.10154610872268677,-0.015796421095728874,0.05670090392231941,-0.03185199946165085,0.03327091783285141,0.10075867176055908,0.06479572504758835,-0.017215659841895103,-0.0660831481218338,0.007079654838889837,0.03407999128103256,-0.014335420913994312,-0.0038954897318035364,-0.10964467376470566,0.09598606079816818,-0.042555563151836395,0.08517123758792877,-0.027560614049434662,-0.048139236867427826,0.009049483574926853,-0.056532397866249084,0.027451131492853165,-0.06832519918680191,0.004514122847467661,0.05618662387132645,0.013262644410133362,-0.03083682432770729,-0.032319243997335434,-0.036278724670410156,0.02828395739197731,-0.026436697691679,-0.10157407820224762,-0.024892279878258705,0.041272781789302826,0.11853328347206116,0.052882034331560135,-0.07297919690608978,-0.10452993214130402,-7.127792748848295e-34,0.003314778907224536,-0.060950979590415955,-0.004226467572152615,-0.04082980751991272,-0.01796472817659378,0.06061545014381409,-0.03394218534231186,0.09680701047182083,-0.02198774181306362,-0.0520586334168911,-0.06491897255182266,-0.007789543364197016,0.040173061192035675,-0.01625445857644081,0.03231612965464592,-0.09443505853414536,-0.005451352335512638,-0.011556248180568218,-0.011175970546901226,0.009058876894414425,-0.013140920549631119,-0.052870266139507294,0.017883537337183952,-0.16740912199020386,-0.03881274163722992,0.019597342237830162,0.08124701678752899,-0.021736163645982742,-0.009623454883694649,0.022684896364808083,0.07681248337030411,0.0066607557237148285,-0.08008068799972534,0.010621669702231884,0.05191886052489281,0.04454261437058449,0.010059379041194916,0.009044118225574493,-0.011802240274846554,-0.028024863451719284,0.010525345802307129,-0.04206825792789459,-0.026559682562947273,0.03201339393854141,0.008646362461149693,-0.04314356669783592,-0.007301309145987034,0.0394313782453537,0.06611456722021103,-0.016991393640637398,-0.07368021458387375,-0.013450702652335167,-0.0625578984618187,0.10764268040657043,-0.060542307794094086,-0.026420218870043755,-0.07891082018613815,0.023100808262825012,0.061348021030426025,-0.028886469081044197,-0.11442305892705917,-0.056418176740407944,-0.060345351696014404,0.041163597255945206,0.02682277001440525,0.015312446281313896,0.01058940403163433,0.010151098482310772,-0.08846274018287659,0.034243836998939514,0.05744367092847824,-0.030233722180128098,-0.1027909591794014,0.08128711581230164,0.024598022922873497,-0.03202689439058304,-0.049492817372083664,-0.1164853498339653,-0.07902175933122635,0.03352931886911392,0.024711888283491135,-0.046100035309791565,-0.08384489268064499,0.040949489921331406,0.0760880559682846,-0.12273582816123962,-0.01688506081700325,0.013909452594816685,-0.12523826956748962,0.013522941619157791,-0.04571252688765526,0.008508461527526379,0.03938748687505722,-0.04674633592367172,0.002466524252668023,-3.2853680664857166e-8,-0.01142254937440157,-0.018239319324493408,0.0314190499484539,-0.06737518310546875,0.10013280063867569,0.008527767844498158,-0.02472161501646042,0.009186340495944023,-0.14878788590431213,-0.07249797135591507,-0.06372682750225067,0.019252264872193336,0.04108835756778717,0.021770721301436424,0.06274168193340302,-0.029856104403734207,-0.014771527610719204,0.0076518007554113865,0.012813934125006199,-0.03250478208065033,-0.006607034709304571,0.027063418179750443,0.019907888025045395,-0.09144900739192963,-0.06094464659690857,0.05952649191021919,-0.02774295024573803,0.04363593831658363,-0.03475338593125343,0.0056774248369038105,0.06997670978307724,0.11290901899337769,-0.016646072268486023,-0.02580127865076065,-0.07362627983093262,0.04445423185825348,-0.057970479130744934,-0.07003060728311539,0.08178581297397614,0.0033804315607994795,0.06454341858625412,-0.012159174308180809,0.024008097127079964,0.028771402314305305,0.0725422129034996,0.0212964229285717,0.06870505958795547,-0.07239510118961334,0.027414189651608467,0.08419785648584366,0.009521589614450932,-0.018225837498903275,0.04188758507370949,0.06410109251737595,-0.006019988097250462,-0.0392359122633934,0.012512187473475933,0.02121291495859623,-0.03623359650373459,0.0376272089779377,0.020912205800414085,-0.01914423704147339,0.004930943250656128,-0.040299661457538605]},{"text":"When they separated Felix kissed the hand of the stranger and said, ‘Good night sweet Safie.’ He sat up much longer, conversing with his father, and by the frequent repetition of her name I conjectured that their lovely guest was the subject of their conversation.","book":"1984","chapter":69,"embedding":[-0.030581090599298477,-0.0007329073850996792,0.030637983232736588,0.08232254534959793,-0.01867983676493168,0.06401791423559189,0.02050253376364708,-0.017433464527130127,0.01856905221939087,-0.0903761088848114,-0.019627565518021584,-0.004140370525419712,-0.07920599728822708,-0.047095928341150284,0.004919928032904863,0.003112681908532977,0.0020029391162097454,-0.032825179398059845,-0.006159038748592138,0.061736322939395905,-0.0019121752120554447,-0.05944781377911568,-0.03908618539571762,-0.060301635414361954,0.10329744219779968,0.059399716556072235,0.07169735431671143,-0.05538836866617203,-0.0037585641257464886,0.029587028548121452,-0.029788626357913017,0.07083229720592499,0.09181167185306549,0.049045171588659286,-0.040512725710868835,0.08403327316045761,0.023409126326441765,-0.06141699478030205,0.0615205317735672,0.05419536307454109,-0.014556517824530602,-0.04867667704820633,0.03272399306297302,-0.04657277464866638,-0.09754269570112228,-0.005451683886349201,-0.014636140316724777,-0.010990506038069725,0.05479009449481964,0.05956726148724556,-0.06812195479869843,-0.07570318877696991,0.013654007576406002,-0.05255755037069321,0.04888993501663208,0.039856698364019394,0.06282022595405579,-0.0418061800301075,0.059181347489356995,0.004798004403710365,0.004065521527081728,-0.06863310933113098,0.04317881539463997,0.034916795790195465,-0.01618768833577633,-0.11992017924785614,-0.07646634429693222,-0.013767160475254059,-0.05408770218491554,0.026254259049892426,-0.03044828400015831,0.029249154031276703,-0.010699057020246983,-0.0058746496215462685,-0.015191695652902126,-0.0573989562690258,-0.018256938084959984,-0.013528342358767986,0.006837593391537666,-0.03302537277340889,-0.01976715214550495,-0.006932958960533142,-0.07245760411024094,0.00010857796587515622,-0.028465338051319122,-0.0027052711229771376,0.03507240489125252,-0.05929766967892647,-0.07548312842845917,0.04159654304385185,-0.1333187073469162,-0.08480380475521088,-0.06484923511743546,-0.013430358842015266,-0.0013695817906409502,0.014947350136935711,0.011195395141839981,0.0666506439447403,-0.025514213368296623,0.013889086432754993,0.05994385853409767,0.13488060235977173,0.0025518410839140415,-0.0014290432445704937,0.040684837847948074,0.05023423582315445,-0.022336391732096672,-0.022674091160297394,0.012587717734277248,-0.044352203607559204,-0.03638755902647972,-0.03250585123896599,0.042116858065128326,0.0025663706474006176,0.058509692549705505,0.008821221999824047,0.08931031078100204,0.051044970750808716,-0.06789886951446533,0.036132242530584335,0.1005997583270073,-0.003331696381792426,-0.01498958095908165,0.05718040093779564,-0.028574706986546516,-0.005496134050190449,0.01998218335211277,-2.0860393922201837e-34,0.02856529876589775,-0.03926871344447136,-0.02051563747227192,0.03009532205760479,0.07592117041349411,0.04098578169941902,-0.08450822532176971,0.08978915214538574,-0.028300698846578598,-0.04779987782239914,-0.034230899065732956,-0.07003150135278702,-0.002905401401221752,-0.04366888850927353,-0.04920998960733414,0.13202732801437378,-0.033492449671030045,-0.03753337636590004,0.036623675376176834,-0.0053080362267792225,0.02832644060254097,0.017634164541959763,-0.0038486947305500507,0.0690995305776596,-0.051756761968135834,-0.04544936493039131,0.09188468009233475,-0.046085212379693985,0.07525931298732758,-0.012222109362483025,-0.01741168648004532,0.023076796904206276,0.0564705953001976,0.00928996317088604,0.07535755634307861,0.01398144569247961,-0.002087059197947383,-0.025379182770848274,-0.11143257468938828,0.046983957290649414,0.055405836552381516,0.02769334986805916,0.010898634791374207,-0.08787255734205246,-0.07435106486082077,0.0012315353378653526,-0.04705629497766495,0.000667085696477443,0.06054097041487694,-0.016914445906877518,-0.06749272346496582,0.0065494501031935215,0.040216922760009766,0.08827231824398041,0.023013435304164886,-0.01647050306200981,-0.013736166059970856,0.08285412937402725,-0.08881065994501114,0.044610414654016495,0.001992358360439539,0.005651944316923618,0.06480806320905685,-0.07304830849170685,-0.04079010337591171,0.008630014955997467,0.038604721426963806,0.029095882549881935,-0.025002717971801758,-0.03165697306394577,-0.06446782499551773,0.0600590743124485,-0.08689464628696442,-0.013369833119213581,-0.0825449526309967,-0.05826510488986969,0.02691468596458435,0.006228719372302294,0.06794572621583939,-0.06352824717760086,0.04021385312080383,0.0714280903339386,0.014135266654193401,-0.04092734307050705,-0.1715465635061264,-0.08565175533294678,-0.030046526342630386,-0.023120084777474403,-0.11456204950809479,0.04464877396821976,-0.11168109625577927,0.022971998900175095,-0.0014234137488529086,-0.041836872696876526,-0.04399631544947624,-3.5635232468032574e-33,0.03812238946557045,-0.05035479739308357,-0.007937698625028133,0.00643784599378705,-0.026548180729150772,0.044551026076078415,-0.07276526838541031,0.0435999259352684,-0.03465573862195015,0.006929779425263405,-0.02879251539707184,-0.05187738314270973,0.0719168484210968,-0.03808760270476341,0.09068360179662704,-0.023663898929953575,-0.025638965889811516,-0.002948794746771455,-0.003783151740208268,-0.02268400229513645,0.06130475550889969,0.040202151983976364,0.031428348273038864,-0.06276410073041916,0.02174905315041542,-0.0114301647990942,0.04686016961932182,0.03874237835407257,-0.12823016941547394,0.05808662995696068,0.08268190175294876,-0.04289766028523445,-0.09332586079835892,-0.026934538036584854,0.030064107850193977,0.0735313817858696,-0.05410700663924217,0.002702249214053154,-0.03913479670882225,-0.01144430972635746,0.08204375207424164,-0.02619916945695877,-0.03632713109254837,0.010292209684848785,0.02188783511519432,-0.0042127398774027824,-0.08798526227474213,0.04464525356888771,0.0256450604647398,-0.012838117778301239,-0.03423462063074112,-0.09677261859178543,-0.08978593349456787,0.03558043763041496,-0.05185268074274063,-0.05199873074889183,0.019861450418829918,0.04401630908250809,0.05518718063831329,-0.04434306547045708,-0.06618277728557587,-0.012937536463141441,-0.016208702698349953,0.0010472263675183058,-0.005364768672734499,0.030423056334257126,-0.006366460584104061,0.03124551847577095,-0.002977641997858882,0.03384416922926903,0.038815271109342575,0.006965340580791235,-0.058675430715084076,0.09347239881753922,0.06786190718412399,0.027228478342294693,-0.07198265194892883,-0.09480877220630646,-0.07611313462257385,0.0018121523316949606,-0.00838050339370966,-0.03673447296023369,-0.05052501708269119,0.09791513532400131,0.06504599004983902,-0.04520249366760254,0.06931160390377045,0.007359691895544529,-0.039000481367111206,0.010051866061985493,0.009417235851287842,0.024944039061665535,0.04396472126245499,-0.10098452121019363,0.003672905033454299,-3.7329456858969934e-8,0.009881284087896347,-0.02229732647538185,-0.02730976603925228,-0.0135599160566926,0.034466758370399475,-0.005601549055427313,-0.02833557315170765,0.03306768089532852,-0.09822770953178406,0.11155063658952713,-0.05208221822977066,0.029257843270897865,0.035177066922187805,0.0000524748393218033,0.0850457176566124,0.007243918254971504,0.009736142121255398,-0.0000905182896531187,0.02967238239943981,0.021840855479240417,0.06866739690303802,-0.023153869435191154,0.05457895249128342,0.07702676951885223,-0.00047046656254678965,0.03115009143948555,0.08118336647748947,0.0368892177939415,0.007334963418543339,-0.0189213827252388,0.03733304515480995,0.027521008625626564,0.0007918866467662156,0.0024022667203098536,-0.012910217046737671,0.023042740300297737,-0.0773678869009018,-0.04059669375419617,0.09147530794143677,0.007777632214128971,0.007651886437088251,0.02613302320241928,-0.0852494165301323,-0.030870085582137108,0.03663473203778267,0.0797080546617508,0.07643382251262665,-0.03136574476957321,-0.025185706093907356,0.07060574740171432,-0.07256747782230377,-0.027055447921156883,0.007156214211136103,0.04996490478515625,-0.02762703038752079,-0.1037331223487854,-0.0006918850704096258,0.0605742409825325,0.05259259417653084,-0.009088889695703983,-0.010315853171050549,0.05615437403321266,-0.08957738429307938,-0.029431495815515518]},{"text":"He appeared at one time a mere scion of the evil principle and at another as all that can be conceived of noble and godlike.","book":"1984","chapter":69,"embedding":[0.007752405013889074,0.024841194972395897,-0.05474207550287247,0.030418185517191887,0.008142344653606415,0.0029216771945357323,0.029075445607304573,0.04178280010819435,0.0015570517862215638,-0.0001482100778957829,0.01589454896748066,-0.017536919564008713,0.0008392270538024604,-0.007805868983268738,0.018263770267367363,-0.08069833368062973,-0.04115315526723862,0.004780789837241173,-0.032255951315164566,0.11203188449144363,0.04738819599151611,0.011516500264406204,-0.035747889429330826,-0.01077011227607727,-0.003791552037000656,0.010658174753189087,0.09787076711654663,-0.0026034447364509106,0.0796891376376152,-0.01786830648779869,0.042273130267858505,-0.013263328932225704,-0.023838508874177933,0.043872151523828506,-0.07331264764070511,0.012089460156857967,0.065372034907341,0.059977613389492035,0.007074043620377779,-0.07995239645242691,0.017964327707886696,0.00419149873778224,-0.08352473378181458,-0.01059406902641058,-0.07363113760948181,-0.1113913282752037,-0.0026383409276604652,-0.06421507149934769,0.08754976838827133,-0.05283082649111748,-0.07453382015228271,0.0160164013504982,-0.003781536826863885,-0.02426130510866642,-0.05380227789282799,0.02185758389532566,0.025197602808475494,-0.017121944576501846,-0.0006085923523642123,-0.0973476767539978,0.01565958559513092,0.04235436022281647,0.02940654382109642,0.04531965032219887,0.04425254836678505,0.02037602849304676,0.015789695084095,-0.09305110573768616,-0.06426163762807846,0.05554484575986862,0.06659270077943802,-0.034262992441654205,0.02302771434187889,-0.04591041058301926,-0.04917557165026665,-0.06449026614427567,0.015186485834419727,-0.016981611028313637,0.06790725141763687,0.026651127263903618,-0.02964339405298233,0.057105161249637604,-0.05370291694998741,0.07645607739686966,0.0003334545181132853,0.04029842093586922,-0.014232287183403969,-0.04854155331850052,0.026549553498625755,0.09326758235692978,0.004712937865406275,-0.043274953961372375,-0.025240281596779823,-0.014389989897608757,0.05062822252511978,0.013201151974499226,0.02649454027414322,-0.01770642027258873,0.03934793174266815,0.034292541444301605,-0.04786302149295807,0.004979792982339859,0.03469673916697502,0.0802455022931099,0.047409601509571075,-0.03722270950675011,-0.02798709273338318,-0.12432588636875153,0.029708638787269592,-0.028508637100458145,0.004139835014939308,-0.08536789566278458,0.026272933930158615,-0.030697444453835487,0.06287449598312378,0.04765203222632408,-0.05155831575393677,0.01501152478158474,-0.1309335082769394,-0.00986076146364212,0.049754343926906586,0.08033536374568939,0.027313798666000366,0.11488471925258636,0.0033511926885694265,-0.04549821466207504,0.01784149371087551,-2.1572022130977822e-33,-0.058365147560834885,0.0025616721250116825,0.016342608258128166,-0.0724693015217781,-0.011462736874818802,0.03316747397184372,0.04061117395758629,-0.005825980566442013,0.020073790103197098,-0.04016391187906265,-0.013548572547733784,-0.029996123164892197,0.04591688886284828,0.09167320281267166,-0.14084766805171967,0.08431688696146011,0.026084205135703087,-0.08141522854566574,0.07344318926334381,-0.0368049256503582,-0.022541072219610214,0.03327396884560585,-0.0032355068251490593,-0.13554377853870392,0.01311853900551796,0.015283054672181606,0.030870607122778893,0.04067729040980339,-0.04411408305168152,0.021175315603613853,-0.006701446603983641,0.13984255492687225,-0.0541352741420269,0.08601970225572586,0.07253769040107727,-0.006413738708943129,-0.0709821879863739,-0.08944106101989746,0.04700100049376488,-0.014977865852415562,0.04627693444490433,0.04803420975804329,-0.040492765605449677,-0.052948836237192154,-0.013236165046691895,0.025506585836410522,-0.002922785934060812,0.028414109721779823,-0.05259719863533974,0.053821295499801636,-0.04199695214629173,0.052648015320301056,0.07815282046794891,-0.1048002541065216,-0.003765426343306899,-0.02539799176156521,-0.06170518696308136,0.058298565447330475,-0.010543287731707096,0.07485002279281616,-0.0013103472301736474,-0.02080165036022663,0.03311346098780632,0.056686803698539734,-0.09387808293104172,-0.10313847661018372,-0.08083116263151169,0.012090890668332577,0.005390837788581848,0.037622664123773575,0.006725803948938847,0.03705501928925514,-0.08000706136226654,-0.01852916181087494,-0.057107556611299515,-0.07419999688863754,0.06398535519838333,-0.01359834149479866,-0.10283058136701584,0.0860229954123497,-0.05778079852461815,-0.015694038942456245,0.02735365368425846,-0.01975700445473194,0.0011952228378504515,0.028612790629267693,0.03881286457180977,-0.0762312263250351,-0.0075600105337798595,-0.0476793609559536,0.06103546544909477,-0.04949667677283287,0.006227299105376005,-0.1278747022151947,-0.10206256806850433,-2.584203474769855e-33,-0.03621601685881615,-0.06358209997415543,-0.031089480966329575,0.08513800799846649,-0.04302417114377022,-0.023788349702954292,-0.1480434536933899,0.04161565378308296,-0.08717838674783707,-0.020857715979218483,0.003592895111069083,0.03347687050700188,0.038357965648174286,-0.12365111708641052,-0.004232357256114483,0.011158246546983719,0.035478413105010986,0.03484749421477318,0.02863156609237194,0.050310395658016205,0.04006921127438545,-0.015423170290887356,-0.02813158743083477,-0.09161698818206787,0.005216371733695269,0.012493249028921127,0.020610131323337555,-0.02107369154691696,-0.1311245560646057,0.03644196689128876,0.05126814544200897,0.07581955194473267,-0.030155139043927193,0.005643390119075775,0.05925258621573448,0.09147624671459198,0.08581863343715668,0.010672338306903839,0.06650755554437637,-0.061771780252456665,-0.04207010194659233,0.013356944546103477,0.09227463603019714,0.00845804251730442,0.02644113078713417,0.02761225961148739,0.0362667590379715,0.12226949632167816,-0.030945008620619774,0.014196173287928104,-0.051507093012332916,-0.005588291212916374,0.018719863146543503,-0.018049776554107666,-0.056815847754478455,-0.038196880370378494,0.019330697134137154,-0.01739799976348877,0.06181025877594948,0.01627701334655285,0.02316027320921421,-0.054501552134752274,-0.008934021927416325,0.03709658980369568,-0.04683176055550575,0.019837088882923126,-0.08079659938812256,0.11756382882595062,-0.012636409141123295,-0.07373446971178055,0.01391621958464384,-0.05237704887986183,-0.01161996927112341,-0.026046985760331154,-0.02205922082066536,0.02478072978556156,0.0504172183573246,-0.05864708498120308,0.004905960522592068,-0.01556587964296341,-0.015246530994772911,-0.04509522393345833,-0.02677023783326149,-0.05317521095275879,-0.039505913853645325,0.010715823620557785,-0.061543822288513184,0.027507711201906204,0.004019716754555702,-0.03535503149032593,-0.012242036871612072,0.008219458162784576,0.02068035863339901,0.03587130829691887,0.008848032914102077,-3.101854062492748e-8,0.021219154819846153,-0.03962578997015953,0.07034774124622345,-0.030591540038585663,0.03159813955426216,-0.026682395488023758,0.029738901183009148,-0.024350620806217194,-0.09960425645112991,0.03756401315331459,-0.07196283340454102,0.05713935196399689,-0.009175566025078297,-0.02307911403477192,0.10155735164880753,-0.00011947626626351848,-0.038107387721538544,-0.022213760763406754,-0.05140206217765808,0.053900621831417084,0.03632848709821701,-0.004404780454933643,0.02280532196164131,-0.05368315801024437,0.008164612576365471,0.0700349360704422,-0.03346710652112961,-0.07363951206207275,0.029540030285716057,0.01691422425210476,0.06759542971849442,0.0036542818415910006,-0.09308840334415436,-0.07723497599363327,0.010499631986021996,0.02207375504076481,-0.06287088245153427,0.016029996797442436,0.05003971606492996,-0.05298684909939766,0.03427285701036453,0.04447292909026146,0.048979826271533966,0.01601686142385006,0.02665703371167183,0.0011733825085684657,0.014685255475342274,-0.0455845408141613,0.0530947782099247,0.014226853847503662,0.020702267065644264,0.1045968160033226,0.05847551301121712,-0.06543774157762527,0.018686948344111443,-0.04791491478681564,0.006779043935239315,0.016745664179325104,-0.0647154375910759,0.014451457187533379,0.0592874251306057,-0.012070449069142342,0.0278082974255085,-0.004328915849328041]},{"text":"Was I, then, a monster, a blot upon the earth, from which all men fled and whom all men disowned? “I cannot describe to you the agony that these reflections inflicted upon me; I tried to dispel them, but sorrow only increased with knowledge.","book":"1984","chapter":70,"embedding":[0.022055581212043762,0.10229303687810898,0.046864524483680725,0.09141989797353745,0.008171053603291512,-0.007665038108825684,0.1157086044549942,-0.03237304463982582,-0.026179134845733643,-0.025438720360398293,-0.050362732261419296,-0.0043251425959169865,0.042482197284698486,-0.02838967554271221,-0.06075035408139229,0.06355098634958267,-0.08811993896961212,0.009696663357317448,0.004719512537121773,0.02535080350935459,-0.011700572445988655,0.10839581489562988,-0.08175880461931229,0.020240265876054764,-0.01865515112876892,0.04530666768550873,-0.0031347365584224463,0.005799605045467615,0.03515386953949928,-0.04129974544048309,-0.04320703074336052,-0.07082205265760422,0.06071264296770096,0.002649931935593486,0.06173775717616081,0.043298374861478806,0.016020536422729492,-0.007114551495760679,0.05241018906235695,-0.02753777615725994,-0.008694866672158241,0.10994419455528259,-0.04761984199285507,0.024283798411488533,-0.017401468008756638,-0.031357258558273315,-0.10396380722522736,0.03186917304992676,0.010052568279206753,-0.03324652090668678,0.020944269374012947,0.004942371975630522,-0.028542643412947655,0.03137849271297455,0.002568221418187022,-0.06439460813999176,0.05032828077673912,-0.016137437894940376,0.0046030147932469845,-0.022267399355769157,-0.024420524016022682,0.03614523261785507,0.07821929454803467,0.09558497369289398,0.014859159477055073,-0.021838819608092308,0.060718733817338943,-0.019952798262238503,-0.0550420880317688,0.10362663120031357,-0.0111687071621418,-0.014904416166245937,-0.01229354739189148,-0.07519547641277313,-0.034109119325876236,-0.06600017845630646,-0.016667956486344337,-0.07669499516487122,-0.024989772588014603,-0.015262080356478691,0.04256967082619667,0.02777842991054058,0.017788628116250038,0.021375754848122597,-0.015540048480033875,-0.052596524357795715,0.04210624471306801,-0.048545148223638535,0.03761211782693863,0.05862865969538689,-0.025805559009313583,-0.039222221821546555,-0.016066942363977432,0.08422745019197464,0.03893659636378288,0.0008021094254218042,-0.01054383534938097,0.025580212473869324,-0.04001118615269661,0.07602857798337936,0.005852918606251478,-0.0324258916079998,-0.08225823938846588,0.009801327250897884,-0.011710910126566887,-0.06845597922801971,-0.0836663469672203,-0.04495398700237274,-0.0199324581772089,0.043220777064561844,-0.01417576614767313,-0.051098160445690155,-0.009954145178198814,-0.009391126222908497,0.02288033999502659,-0.02749450132250786,-0.013725658878684044,-0.03397364914417267,-0.05004750192165375,0.08069567382335663,0.03258161619305611,0.060962777584791183,-0.02322370745241642,0.04860014468431473,-0.01808549091219902,-0.005270360503345728,-0.05293848738074303,-2.284320539537689e-33,0.06720619648694992,-0.02111128345131874,-0.012377151288092136,-0.014532319270074368,0.01089382916688919,0.007329675834625959,-0.09937743842601776,0.03407745808362961,0.05626619607210159,-0.07367296516895294,-0.06680420786142349,-0.028112811967730522,-0.011935030110180378,-0.03962249681353569,-0.047161784023046494,0.04443255439400673,0.035019196569919586,-0.019371744245290756,0.06386870890855789,-0.07441237568855286,-0.048891421407461166,-0.010017483495175838,-0.07629407197237015,-0.09910541027784348,-0.06827746331691742,0.007937943562865257,-0.05222781375050545,-0.018497852608561516,0.08004134893417358,0.05465153232216835,0.014451303519308567,0.00560233648866415,0.05576590448617935,-0.017475055530667305,0.06466148793697357,-0.020864928141236305,-0.044507481157779694,0.03596339002251625,-0.06509703397750854,0.006375474389642477,-0.03243040665984154,0.010111589916050434,-0.01676240935921669,-0.07252716273069382,0.06431234627962112,-0.004263540729880333,-0.024600032716989517,0.0637449398636818,-0.089601531624794,0.04533541947603226,-0.05892953649163246,-0.001725848880596459,0.08027353882789612,-0.05524611845612526,0.0656566247344017,0.014104470610618591,-0.006242179311811924,-0.0007387186633422971,0.01566874422132969,0.07617411017417908,0.00722441915422678,-0.026522301137447357,0.051101990044116974,0.011086360551416874,0.05646663159132004,-0.11358000338077545,-0.05450395122170448,-0.016340579837560654,-0.05872216075658798,-0.026630161330103874,-0.09967882931232452,-0.002138239797204733,0.031135570257902145,0.02879839390516281,-0.052657581865787506,-0.034808140248060226,0.02793404646217823,0.0010868392419070005,-0.10659173130989075,-0.02239396795630455,-0.02523968555033207,-0.04131994768977165,-0.10442838072776794,-0.0245631393045187,0.04214058816432953,0.008597185835242271,0.07353781908750534,-0.12587256729602814,0.007601160556077957,-0.011785570532083511,-0.010479805059731007,-0.001378324581310153,0.019183102995157242,-0.1520671248435974,-0.1354173719882965,-6.798078062879663e-34,-0.016892991960048676,0.026905186474323273,-0.010951206088066101,0.038801487535238266,-0.005093979183584452,-0.035544268786907196,0.022118015214800835,0.11320119351148605,-0.04425670951604843,0.09051702916622162,-0.08417835831642151,0.02185627818107605,0.04704873636364937,0.026302026584744453,-0.021819788962602615,-0.010318959131836891,0.0667666494846344,-0.05180899798870087,-0.0711841806769371,-0.03125745430588722,-0.061548665165901184,0.017017912119627,0.02217712253332138,-0.09773609787225723,0.017852064222097397,0.082296222448349,0.12011949717998505,0.001734789926558733,0.024920402094721794,0.05678615719079971,0.04968513548374176,0.04490404576063156,-0.01874455250799656,0.05172349512577057,-0.01095448900014162,0.05721262842416763,0.01421072706580162,0.02075965702533722,0.007393081672489643,-0.05258443206548691,-0.0781986191868782,0.059473760426044464,-0.049103572964668274,-0.007434616796672344,0.020438870415091515,0.023009516298770905,-0.000028393207685439847,0.0647207498550415,0.04863705486059189,0.006909896619617939,-0.05730647221207619,0.022816073149442673,0.05171943083405495,0.0049480777233839035,-0.005245670676231384,-0.09049109369516373,-0.04481605067849159,-0.03695998340845108,0.04255424439907074,0.045867856591939926,-0.06332233548164368,0.021214084699749947,-0.06670606136322021,0.06474180519580841,0.03951641917228699,-0.03295189142227173,-0.039840396493673325,0.051993291825056076,-0.06019856035709381,0.0011739832116290927,-0.019274206832051277,-0.03564400225877762,-0.046025365591049194,-0.01580662652850151,0.015001212246716022,0.021134575828909874,-0.06288369745016098,-0.019821718335151672,-0.10946525633335114,-0.01819595880806446,0.04799044877290726,-0.02321084775030613,0.06626026332378387,0.06073831766843796,-0.027778495103120804,-0.10281626880168915,-0.045132480561733246,0.038154713809490204,-0.015301565639674664,0.04528506472706795,-0.004320496693253517,-0.019720999523997307,0.08416032791137695,-0.022409383207559586,0.03491193801164627,-4.1268396699933874e-8,-0.013037439435720444,0.017968930304050446,0.06813162565231323,0.006415509153157473,0.08460120111703873,-0.021324915811419487,0.05272897705435753,0.003195438999682665,-0.05891454219818115,0.057571057230234146,-0.08642963320016861,0.01967395842075348,0.03906428813934326,0.0909917801618576,0.03742681071162224,0.07142382115125656,0.04327687248587608,-0.16060461103916168,-0.01478586345911026,-0.035660892724990845,0.039132822304964066,-0.002769263694062829,-0.06824292987585068,-0.06543555855751038,0.013556346297264099,0.010800889693200588,-0.05390547960996628,-0.10500146448612213,-0.03237851709127426,0.0037282875273376703,0.05560830235481262,0.10735767334699631,-0.04156079888343811,-0.02841430902481079,-0.082948237657547,0.04664677381515503,-0.07897308468818665,0.0010286998003721237,0.017744721844792366,-0.060293614864349365,0.024714307859539986,0.08002516627311707,0.08415800333023071,0.01868271268904209,0.03491803631186485,-0.028165487572550774,0.006949324160814285,0.04523784667253494,0.004627206362783909,0.04452677071094513,0.044820867478847504,0.04572175815701485,0.013196504674851894,0.05421200394630432,0.056557100266218185,-0.10200048238039017,0.0058153728023171425,0.06846826523542404,-0.06498980522155762,0.0073563712649047375,0.11939764022827148,-0.024452146142721176,0.01928253471851349,-0.06372810155153275]},{"text":"I had never yet seen a being resembling me or who claimed any intercourse with me.","book":"1984","chapter":70,"embedding":[-0.05583466589450836,0.03480466455221176,0.0053079756908118725,0.06341651827096939,0.0022576109040528536,-0.04940466210246086,0.028429249301552773,-0.02197175845503807,0.05022091791033745,-0.038367558270692825,0.03130399435758591,-0.14479194581508636,0.057639822363853455,-0.023565132170915604,-0.023923657834529877,0.01685616374015808,0.041297223418951035,-0.08229250460863113,-0.00019178316870238632,0.02017824538052082,-0.09406647086143494,0.025538338348269463,-0.0029613266233354807,-0.038680192083120346,0.006189392413944006,-0.006534549407660961,0.020189596340060234,0.04815717414021492,-0.005696842912584543,-0.00861593522131443,-0.02567247673869133,0.01755056157708168,-0.0969284176826477,0.012881399132311344,0.03747864067554474,0.03470659255981445,-0.00973255280405283,0.02002270519733429,0.09343262761831284,-0.05905583128333092,-0.028987672179937363,-0.04531942680478096,0.04392078518867493,0.00692934263497591,0.014649407006800175,0.01801890693604946,0.0031792728696018457,0.058086857199668884,-0.05975848808884621,-0.07121279835700989,-0.06211750954389572,-0.025196027010679245,0.04754897579550743,0.04525903984904289,-0.06634683161973953,-0.029377363622188568,-0.028794540092349052,0.03864363953471184,0.014709070324897766,0.03734501451253891,-0.04468230530619621,0.029865426942706108,0.0753634124994278,0.025311624631285667,-0.07866591215133667,0.13064514100551605,-0.06404191255569458,-0.0314403772354126,0.142102912068367,0.013447463512420654,0.061792563647031784,0.026197105646133423,-0.08938005566596985,0.07937397062778473,-0.06390111148357391,-0.0882343202829361,0.023532049730420113,-0.017925869673490524,0.046399135142564774,0.014101298525929451,-0.01332534197717905,0.08166181296110153,-0.018213748931884766,0.007948826067149639,-0.00777159770950675,0.008615384809672832,0.04956136271357536,-0.000252924975939095,-0.04349437728524208,0.02173791639506817,-0.08755633234977722,0.03565506264567375,-0.054309993982315063,-0.039444297552108765,0.057184092700481415,-0.055517829954624176,-0.021208832040429115,0.050377894192934036,0.0002895560464821756,0.09122507274150848,-0.06364113092422485,0.026051821187138557,0.06282040476799011,0.022576773539185524,0.02796298637986183,0.022262675687670708,-0.07663168013095856,-0.05057479813694954,-0.0038805080112069845,-0.030045129358768463,0.028638828545808792,-0.03799285739660263,-0.05728648975491524,0.025395236909389496,0.022429024800658226,-0.052376966923475266,0.06450370699167252,-0.015676314011216164,-0.00430187676101923,-0.004986641462892294,-0.016903959214687347,0.03722453489899635,-0.009883880615234375,0.07507956027984619,-0.03793203458189964,-0.08941234648227692,-0.010131077840924263,-4.1052608386392476e-33,-0.04070994630455971,0.0018766692373901606,0.08203065395355225,-0.006958443205803633,0.008751600980758667,0.03013041615486145,-0.004311704076826572,-0.0026179859414696693,0.025466613471508026,-0.024196356534957886,0.036637913435697556,0.02353619784116745,-0.008564320392906666,0.039568524807691574,-0.04592231661081314,0.11396525800228119,0.05649346113204956,0.005290689878165722,-0.050827473402023315,0.028055740520358086,0.0341382771730423,0.04733644425868988,-0.023361925035715103,-0.05847790464758873,-0.03874458000063896,-0.04428715631365776,0.03270572051405907,-0.07710301131010056,0.0566985085606575,0.0034095647279173136,0.014672934077680111,0.05582321435213089,0.005606191698461771,-0.02525814063847065,0.08467384427785873,0.05537634715437889,0.11418206989765167,-0.08170454204082489,-0.051338598132133484,0.008331170305609703,-0.0030698475893586874,-0.033836692571640015,-0.025806158781051636,-0.03984319418668747,-0.10036773234605789,0.011096893809735775,0.019910598173737526,0.0075668091885745525,-0.15383295714855194,-0.0010696371318772435,-0.044375915080308914,0.043840717524290085,0.016124624758958817,0.018872741609811783,-0.07116258144378662,-0.05563079193234444,0.03366803005337715,0.006019710563123226,-0.018847662955522537,0.0663800910115242,-0.012382765300571918,-0.027915775775909424,-0.09510590136051178,-0.03722068667411804,-0.10233614593744278,-0.14420434832572937,0.019251011312007904,-0.0587715245783329,0.003610192332416773,0.001583954319357872,0.03305186331272125,0.039459940046072006,-0.050871435552835464,-0.011686564423143864,-0.01156357116997242,-0.10961844772100449,-0.04194823279976845,0.012733208946883678,-0.017190594226121902,0.006209004204720259,-0.01427938137203455,0.04892139136791229,0.005765134934335947,-0.07938288897275925,0.008554911240935326,0.022026963531970978,0.0411263071000576,-0.03643147647380829,-0.0243383776396513,0.0022349306382238865,0.0958084687590599,0.019113142043352127,0.00396768981590867,-0.03632151708006859,-0.09378872811794281,1.0320653055807522e-33,0.001503250328823924,0.01687312312424183,0.06361693143844604,-0.009057298302650452,-0.054591104388237,-0.050190914422273636,0.037022460252046585,0.11578302085399628,-0.03712503984570503,-0.0027863248251378536,0.07964391261339188,-0.040374673902988434,0.09081988781690598,-0.01915481686592102,0.09825120866298676,0.04122282192111015,0.016406703740358353,-0.01462472788989544,0.027976686134934425,-0.015715282410383224,-0.030802277848124504,0.004421435296535492,0.024797793477773666,-0.028784168884158134,0.004770808387547731,0.051228106021881104,0.16849854588508606,-0.024579454213380814,-0.05047839134931564,-0.03344803303480148,0.08341013640165329,0.08770134299993515,-0.06582991778850555,-0.09388574212789536,0.05687868595123291,0.02709689922630787,0.030778542160987854,0.014899238012731075,0.0680302307009697,-0.14441534876823425,-0.06762278825044632,0.041863709688186646,-0.017349299043416977,0.02650425396859646,-0.04269064590334892,-0.06455746293067932,0.029465526342391968,0.016787322238087654,0.03781171143054962,0.02594362571835518,-0.05136643722653389,0.07364781945943832,-0.041525084525346756,-0.05471110716462135,-0.06672579050064087,-0.05765065550804138,-0.008901857770979404,0.019895300269126892,0.0678354948759079,-0.010057138279080391,0.010203688405454159,-0.0015780818648636341,-0.050485771149396896,0.008940942585468292,0.0617997832596302,-0.04908011481165886,-0.028965864330530167,0.05744010955095291,0.011313427239656448,-0.049078065901994705,0.026601484045386314,-0.06352033466100693,-0.04678364098072052,0.020353704690933228,0.01824239082634449,-0.09282293170690536,-0.07822299003601074,-0.020027676597237587,0.03155732527375221,0.04263721778988838,0.0027191871777176857,-0.04206623136997223,0.09251563996076584,0.04363191872835159,0.030068552121520042,-0.02388441562652588,-0.024352354928851128,0.005158154293894768,0.008677775040268898,0.05236569792032242,0.07350540906190872,-0.019702812656760216,-0.08138497173786163,0.018901679664850235,0.0023721177130937576,-2.2803011034966403e-8,-0.04533957317471504,-0.03086934983730316,0.0026051055174320936,-0.017040319740772247,0.0377303846180439,0.03876156359910965,-0.01858859695494175,-0.02593412436544895,-0.051138825714588165,-0.04518025740981102,-0.09142433851957321,-0.024209236726164818,0.024371154606342316,-0.09850689023733139,0.11165490746498108,0.006857854314148426,-0.01421511359512806,-0.06345443427562714,-0.022132989019155502,0.041970521211624146,-0.038998786360025406,0.07389149069786072,-0.11249543726444244,-0.03989788517355919,-0.015124034136533737,0.06788213551044464,0.07041655480861664,-0.012402744963765144,-0.01124733965843916,-0.0328872986137867,-0.022065067663788795,0.08955886960029602,-0.012725136242806911,-0.020666755735874176,-0.009389626793563366,0.06575598567724228,0.005155183840543032,-0.02416647970676422,0.05780164152383804,-0.04356333613395691,0.021267244592308998,-0.056376561522483826,0.04367777332663536,0.03901771828532219,0.026903610676527023,0.0605100654065609,0.08214162290096283,-0.09176825731992722,0.008766742423176765,-0.012073666788637638,0.004138728138059378,0.03331594169139862,0.010752830654382706,0.147887721657753,-0.05195687711238861,-0.013120188377797604,-0.01179992314428091,0.026792768388986588,0.04721198230981827,-0.027385704219341278,0.0964876264333725,-0.07237758487462997,-0.004131742753088474,-0.009285563603043556]},{"text":"After many fruitless attempts to gain admittance to the prison, he found a strongly grated window in an unguarded part of the building, which lighted the dungeon of the unfortunate Muhammadan, who, loaded with chains, waited in despair the execution of the barbarous sentence.","book":"1984","chapter":71,"embedding":[0.031647324562072754,0.1841336041688919,-0.0510723851621151,0.06383957713842392,0.012753688730299473,0.0256933756172657,0.04520171135663986,-0.027399498969316483,0.08814354240894318,-0.030322715640068054,0.05354109779000282,0.02471756935119629,0.09018851071596146,-0.04485701397061348,0.0051487041637301445,-0.009142756462097168,-0.052153363823890686,0.0066533200442790985,0.029734348878264427,-0.030684223398566246,-0.009938886389136314,0.020684150978922844,0.05111514776945114,-0.0792723000049591,-0.07805242389440536,0.014653741382062435,-0.034433986991643906,0.019766127690672874,0.06753048300743103,-0.04046659171581268,0.006115152034908533,-0.017858048900961876,0.003581940894946456,0.011530215851962566,0.019886953756213188,0.032250069081783295,0.09727973490953445,0.028129424899816513,0.07806255668401718,-0.007787439040839672,0.08548961579799652,0.09070511907339096,-0.05040581896901131,0.04804060980677605,-0.021092785522341728,-0.059754375368356705,-0.052127014845609665,-0.01755046471953392,0.0006187473190948367,-0.11333081126213074,-0.0038879606872797012,0.01773003675043583,0.050971996039152145,-0.05332280322909355,0.015353827737271786,-0.008170267567038536,0.025419116020202637,-0.0055437516421079636,0.02736186422407627,-0.01427143532782793,0.052900150418281555,0.07466311007738113,-0.018353546038269997,-0.00396681297570467,0.023973146453499794,-0.06266549974679947,0.04232044145464897,-0.03268612176179886,0.07284620404243469,0.06580293923616409,-0.019421592354774475,-0.08615195751190186,0.005929345730692148,-0.058369431644678116,-0.12410680949687958,-0.07036393880844116,-0.04613209888339043,-0.09249646961688995,-0.06548275053501129,0.013361957855522633,-0.017820844426751137,-0.02517032064497471,-0.05745026469230652,0.00487062893807888,-0.026440920308232307,-0.04063999652862549,0.06224024295806885,-0.03416985645890236,0.003752556862309575,0.012901514768600464,0.039366211742162704,-0.08172821998596191,-0.07375112175941467,0.02187788113951683,0.032300759106874466,-0.04566574841737747,0.015399756841361523,-0.016265686601400375,-0.06966537237167358,0.061028096824884415,0.08852791041135788,0.08088028430938721,0.09263471513986588,-0.05421409383416176,0.02017671801149845,0.010106930509209633,-0.038245789706707,0.03714948892593384,-0.015967288985848427,-0.0409039631485939,-0.06997567415237427,-0.07687564939260483,0.09329045563936234,-0.014413256198167801,0.01428705919533968,0.05921173095703125,-0.04930228739976883,-0.0016591326566413045,-0.0695037692785263,0.10659144073724747,0.10053261369466782,0.04642057791352272,-0.0004725851758848876,0.05237632617354393,-0.051956743001937866,-0.04936451464891434,0.028295524418354034,-9.721027877323304e-34,0.03197396919131279,-0.08166977763175964,-0.08459366858005524,-0.045928437262773514,0.11725802719593048,-0.007541556376963854,-0.05698683112859726,-0.025788025930523872,-0.009578299708664417,0.02199745737016201,-0.009944462217390537,-0.1434028446674347,-0.0926336944103241,0.030771981924772263,-0.014821097254753113,0.02086467854678631,-0.030398549512028694,0.015223804861307144,0.05078744888305664,-0.0021385240834206343,-0.026079725474119186,-0.02811775729060173,0.03599168360233307,-0.047764819115400314,-0.01836376078426838,0.0151829794049263,0.06632749736309052,0.002618934493511915,0.008637270890176296,0.026325900107622147,-0.06586361676454544,0.061340998858213425,0.04196461662650108,0.030384691432118416,-0.017665717750787735,0.03181137889623642,0.0033514408860355616,0.000973622256424278,-0.02336595207452774,-0.022065898403525352,-0.05021215230226517,0.017493590712547302,0.10544843226671219,0.03820239380002022,-0.04446610435843468,0.03255654126405716,-0.07761284708976746,0.05921676754951477,-0.009048090316355228,0.0858062133193016,0.02135084569454193,0.04283910617232323,0.007630080450326204,0.010544302873313427,-0.06784161180257797,-0.005373545456677675,-0.009257067926228046,0.07478299736976624,0.034593965858221054,0.034853771328926086,0.019745908677577972,0.015113490633666515,-0.05193718150258064,0.047390133142471313,-0.020030146464705467,-0.06998233497142792,-0.05797789245843887,-0.03407296538352966,-0.07249127328395844,-0.0301390178501606,-0.09893767535686493,0.03787761554121971,0.018863551318645477,0.0339701846241951,-0.029429849237203598,-0.020833970978856087,-0.03600921854376793,-0.06028563529253006,0.005592094734311104,0.0000720368479960598,0.02759478986263275,-0.041479162871837616,-0.07129219174385071,0.01510070450603962,-0.07429183274507523,0.031032728031277657,0.04663293436169624,-0.011667139828205109,-0.071602001786232,0.024386247619986534,0.010821214877068996,-0.0016766836633905768,0.059404511004686356,-0.06661403924226761,0.004490763880312443,-2.495060962701201e-33,0.026193751022219658,-0.05158473551273346,0.01456189900636673,-0.04305383935570717,0.03279244154691696,0.042976751923561096,-0.10025541484355927,-0.04416360706090927,-0.08123388886451721,-0.01901211030781269,-0.009106078185141087,0.0066807991825044155,0.03917918726801872,0.09189660847187042,0.04752913489937782,0.02362082153558731,0.05848759785294533,0.05428197234869003,-0.0965278223156929,0.06617976725101471,0.091331847012043,-0.044550035148859024,-0.07229679077863693,-0.00834426935762167,0.00972583144903183,0.059180762618780136,0.07957804203033447,-0.03374266251921654,-0.10228443890810013,0.03711946681141853,-0.007003081031143665,-0.01510673202574253,-0.09941200911998749,0.01873128116130829,-0.007838820107281208,0.03845958039164543,0.09414266049861908,0.01153779961168766,-0.11008139699697495,-0.027992531657218933,0.045051418244838715,0.060692768543958664,-0.019793052226305008,0.048838965594768524,0.0595780648291111,0.05815112218260765,-0.014284764416515827,-0.0316324345767498,0.05414493381977081,-0.026628432795405388,-0.05125536769628525,0.08618061989545822,0.014062103815376759,-0.009118168614804745,0.03956759721040726,-0.0692598968744278,-0.12018907070159912,-0.015099466778337955,0.0026418743655085564,-0.01773848757147789,-0.14146703481674194,-0.023246724158525467,-0.021532362326979637,-0.02975003980100155,0.02612401731312275,-0.046637631952762604,0.010998887941241264,0.02069821208715439,-0.013868131674826145,-0.02609253115952015,0.03130374848842621,0.031021006405353546,-0.03059540130198002,0.012548962607979774,0.0777815654873848,0.09363829344511032,-0.037666745483875275,-0.018887052312493324,-0.08125021308660507,-0.060188550502061844,0.066329725086689,-0.04503359645605087,-0.07692977786064148,-0.025899846106767654,0.030575938522815704,-0.04844384267926216,0.053396087139844894,-0.02052374929189682,-0.025147177278995514,-0.013054246082901955,0.03452296555042267,-0.0053337994031608105,0.00578348059207201,-0.02532559260725975,0.039996348321437836,-3.601383014029125e-8,-0.09172373265028,-0.0427030511200428,-0.018895361572504044,-0.036309219896793365,0.022167997434735298,0.05295509845018387,0.05026804283261299,0.035773467272520065,-0.06779127568006516,-0.031091708689928055,0.0029305925127118826,0.04549146443605423,-0.03820924833416939,0.08551784604787827,-0.023235924541950226,0.07276524603366852,-0.045172419399023056,-0.038519516587257385,0.0008179296273738146,-0.0486617237329483,0.007972706109285355,-0.011479603126645088,0.011515370570123196,-0.0062109557911753654,-0.05774828419089317,0.04490668699145317,-0.04644710198044777,-0.009851304814219475,-0.050747767090797424,0.09269354492425919,0.10277894139289856,0.06517920643091202,-0.08202312141656876,0.020578298717737198,-0.06989910453557968,0.03707296401262283,-0.0026919778902083635,0.019524695351719856,-0.019427815452218056,-0.0637151449918747,-0.013876780867576599,-0.04782940447330475,-0.05309930443763733,-0.00251566618680954,0.043239742517471313,-0.023291829973459244,-0.02671237476170063,0.07732220739126205,-0.03565923124551773,0.009659835137426853,0.07224281877279282,-0.01287512481212616,0.05891918018460274,-0.01843199133872986,0.07879772037267685,-0.06340346485376358,0.05652623996138573,-0.04422767087817192,-0.09259521216154099,0.021510358899831772,0.050216492265462875,0.005631585139781237,0.038653358817100525,-0.01906636171042919]},{"text":"They conversed with one another through the means of an interpreter, and sometimes with the interpretation of looks; and Safie sang to him the divine airs of her native country. “The Turk allowed this intimacy to take place and encouraged the hopes of the youthful lovers, while in his heart he had formed far other plans.","book":"1984","chapter":71,"embedding":[-0.0023446697741746902,-0.003283858997747302,-0.0036726875696331263,0.05706314742565155,0.041160330176353455,0.04566800221800804,0.07353207468986511,-0.04637115076184273,0.041205476969480515,-0.020739570260047913,-0.03557700663805008,-0.020181745290756226,0.006507714278995991,-0.08110371977090836,0.027849117293953896,0.006334159057587385,-0.04024432972073555,0.02158331125974655,-0.03355586901307106,-0.0672609806060791,-0.01436005812138319,-0.09997865557670593,-0.0009704937692731619,0.03346431627869606,0.060184866189956665,-0.017073364928364754,0.023168737068772316,-0.041526392102241516,-0.011573893949389458,0.05060720443725586,0.03054436482489109,0.024077020585536957,0.0008405676926486194,0.055733680725097656,-0.0531901940703392,0.11417078971862793,0.01995454914867878,0.025701427832245827,0.008697493933141232,0.004083240870386362,0.015408411622047424,-0.10154886543750763,0.01656428538262844,-0.0390055850148201,-0.03838154301047325,-0.055445246398448944,-0.069324791431427,-0.016981912776827812,0.0410006046295166,0.027913058176636696,-0.07558567076921463,-0.0661851167678833,-0.0606636106967926,-0.11654786020517349,-0.007003495469689369,0.07252568006515503,-0.0045704771764576435,0.014356052502989769,0.03820711001753807,-0.033875372260808945,-0.02875882387161255,-0.031677987426519394,0.02807498537003994,0.0270012728869915,0.0059266346506774426,-0.07096139341592789,0.02329699881374836,0.009831082075834274,-0.038049038499593735,0.042253077030181885,0.03868384286761284,-0.0073540392331779,-0.08646329492330551,-0.009881394915282726,-0.05534471571445465,-0.07826455682516098,-0.002133809495717287,-0.034392282366752625,-0.027042562142014503,-0.06385865062475204,0.06067565828561783,0.046400826424360275,0.0769820511341095,-0.08246099203824997,-0.045537322759628296,-0.03924858942627907,0.041459571570158005,-0.09560174494981766,-0.0006762911798432469,-0.016780275851488113,0.016698187217116356,-0.07507457584142685,-0.0657874271273613,-0.05033249408006668,0.05694124102592468,-0.054269082844257355,0.010705055668950081,0.029709763824939728,0.02548164874315262,0.09864535927772522,0.038807306438684464,0.06342136114835739,-0.03096376545727253,0.04711100831627846,0.0038064932450652122,0.016944315284490585,-0.08337677270174026,-0.03150172531604767,-0.039981208741664886,-0.030334481969475746,-0.018756547942757607,-0.014935084618628025,0.026260657235980034,0.028286166489124298,0.07070555537939072,0.06706154346466064,-0.03002117946743965,-0.01375554222613573,-0.059430357068777084,0.03209337592124939,0.01712631992995739,-0.0029117907397449017,0.023070823401212692,0.057104676961898804,-0.05777188390493393,-0.012349295429885387,0.04650156572461128,7.2608486074568e-34,0.027723386883735657,-0.06015380099415779,0.025640709325671196,0.00402487488463521,-0.02091764658689499,0.04313944652676582,-0.03499966859817505,0.03090222179889679,-0.04478876665234566,-0.03874451667070389,-0.054310280829668045,-0.005412088707089424,0.03236260265111923,-0.012378470972180367,-0.004420086275786161,0.038569968193769455,-0.03200313076376915,-0.08201742172241211,-0.024287700653076172,-0.01553861703723669,-0.042280398309230804,0.08013838529586792,0.016122333705425262,-0.014568040147423744,-0.01241635624319315,-0.050651922821998596,0.006929928436875343,0.007461389061063528,0.006331532262265682,0.026460206136107445,-0.07934542000293732,0.020913803949952126,0.003231154289096594,-0.005296740680932999,-0.04149797931313515,-0.006300113629549742,-0.05481574684381485,-0.08625093847513199,-0.06364765763282776,0.06691457331180573,0.05958057567477226,0.038065340369939804,0.006587814074009657,-0.03540366142988205,-0.0833214744925499,0.034582581371068954,-0.06821060180664062,0.017477979883551598,0.007463622838258743,0.027740104123950005,-0.09225159138441086,0.08004681020975113,-0.021204762160778046,0.03851298987865448,0.03186267614364624,0.013659527525305748,0.05904882401227951,0.005583880934864283,0.009597169235348701,-0.03540116548538208,0.0498996376991272,-0.07631247490644455,0.051629289984703064,-0.053435321897268295,0.03978694975376129,0.04431907460093498,-0.004188035149127245,0.02119089849293232,0.033966418355703354,0.0013471061829477549,-0.06008422002196312,0.08382020145654678,-0.08043337613344193,0.034830331802368164,-0.0774572566151619,0.0018775674980133772,0.010449232533574104,-0.025789698585867882,0.018419401720166206,0.011886429972946644,-0.03640706464648247,0.0768999457359314,-0.008650519885122776,0.03091314062476158,-0.049230024218559265,-0.030428918078541756,-0.016038130968809128,-0.08622762560844421,-0.04556788504123688,-0.0067078787833452225,-0.05362788215279579,0.0733272135257721,0.023259704932570457,-0.11268481612205505,-0.04704612120985985,-2.1463121762923753e-33,0.047219693660736084,0.047827236354351044,-0.03861284628510475,0.09577411413192749,-0.03173472732305527,0.010686218738555908,0.04577505216002464,0.07364785671234131,0.03498678281903267,0.09044815599918365,0.02097908779978752,-0.09046747535467148,0.09054055064916611,-0.06609281152486801,0.062251150608062744,-0.0474519319832325,0.01771075837314129,0.0877683013677597,0.08261609822511673,0.04811942204833031,0.022387923672795296,0.0325910709798336,0.04838251695036888,-0.030831599608063698,-0.011595564894378185,-0.02803434617817402,-0.0055273761972785,-0.017539391294121742,-0.12513069808483124,0.022692417725920677,0.09408207982778549,-0.032273177057504654,-0.0801699161529541,-0.005172842647880316,0.012550140731036663,0.013882342725992203,0.00774405850097537,0.1051446869969368,-0.022538507357239723,0.04607692360877991,0.005497264675796032,0.040726736187934875,0.08043988049030304,0.0773252621293068,-0.013731093145906925,0.0545923225581646,-0.039571091532707214,0.0916275903582573,-0.024996040388941765,-0.17453254759311676,-0.0003661343944258988,-0.05807368457317352,-0.029927369207143784,-0.06539531797170639,-0.01936429738998413,-0.042372968047857285,0.030155332759022713,-0.009438651613891125,-0.0005882965633645654,-0.033214304596185684,0.020147159695625305,0.02193528227508068,0.009348723106086254,-0.05918332189321518,0.03333042934536934,0.07391228526830673,-0.06240663304924965,0.04556332901120186,0.007978391833603382,0.03393204137682915,-0.02618573047220707,-0.13629470765590668,-0.05524755269289017,0.12684191763401031,0.05010933056473732,0.0011244998313486576,-0.07522500306367874,0.0075435945764184,0.06119164451956749,0.0016845491481944919,0.009844513610005379,-0.07859326153993607,-0.0003374553343746811,0.007875441573560238,0.04728509113192558,0.07788178324699402,-0.01814112812280655,-0.025497399270534515,0.06090604513883591,0.024993963539600372,-0.019821802154183388,0.029807671904563904,0.01662292517721653,-0.044414643198251724,0.039059191942214966,-3.8482788511373656e-8,-0.023830438032746315,-0.05025410279631615,0.01884445734322071,0.011459693312644958,-0.02658686600625515,0.007366998121142387,0.05808958783745766,-0.10688810050487518,-0.058836668729782104,0.0989166796207428,-0.17741963267326355,0.01587078720331192,0.010090434923768044,0.010517249815165997,-0.0068251523189246655,0.057210568338632584,0.058730702847242355,0.051318977028131485,-0.005656588822603226,0.03533492609858513,0.07372171431779861,0.0014616018161177635,0.03816097229719162,-0.0438016839325428,0.015675894916057587,0.017174310982227325,0.030266279354691505,0.09599350392818451,0.009472562000155449,-0.009068148210644722,-0.022831356152892113,-0.015916891396045685,-0.06416299194097519,0.00200063269585371,0.03560784086585045,0.05651899427175522,-0.08186041563749313,-0.04995305463671684,0.10422930866479874,-0.034551844000816345,0.03633127361536026,0.09009008854627609,0.056028783321380615,0.003943890333175659,0.08454099297523499,0.023951340466737747,0.1197468712925911,-0.049331918358802795,-0.08321049064397812,-0.00006513590778922662,-0.04782084748148918,-0.01661648228764534,0.0195394866168499,0.07481259107589722,-0.0033018537797033787,-0.15293452143669128,-0.032129496335983276,0.048455048352479935,0.08181189745664597,-0.017262345179915428,0.009989919140934944,0.03952520340681076,-0.02456267923116684,-0.09450200945138931]},{"text":"The arrival of the Arabian now infused new life into his soul. “When the news reached Leghorn that Felix was deprived of his wealth and rank, the merchant commanded his daughter to think no more of her lover, but to prepare to return to her native country.","book":"1984","chapter":72,"embedding":[0.029885852709412575,0.09110382199287415,0.04216097295284271,0.08123058080673218,-0.03982042893767357,0.05369224399328232,-0.0036245323717594147,-0.013010750524699688,0.0174747034907341,-0.0652182325720787,0.07162266969680786,-0.05785555765032768,-0.02061898075044155,-0.07325921952724457,0.05392979830503464,0.011550524272024632,0.017750905826687813,0.004275585990399122,-0.029077226296067238,-0.02546222321689129,-0.08579842001199722,-0.06416885554790497,-0.06076287478208542,-0.032256316393613815,0.04120372608304024,0.05061739310622215,0.012211358174681664,-0.02232390083372593,-0.0037147344555705786,-0.040627606213092804,-0.028728248551487923,0.036336347460746765,0.07491205632686615,0.011032478883862495,-0.047759559005498886,0.11418178677558899,0.05937199294567108,-0.03193417191505432,0.051038503646850586,0.0920834019780159,0.04233228415250778,-0.019882312044501305,-0.0013364722253754735,0.0054063559509813786,-0.04449964314699173,-0.07761533558368683,0.02965667098760605,0.023888662457466125,0.06200190633535385,0.08001041412353516,-0.09277700632810593,-0.026407059282064438,0.0381217896938324,-0.07799956202507019,0.031873442232608795,0.006501327734440565,0.08769726753234863,-0.04439539462327957,0.05170632526278496,-0.04847252741456032,-0.020508233457803726,0.024577736854553223,0.041738495230674744,0.011231242679059505,-0.07999756187200546,-0.11742253601551056,0.028285911306738853,-0.034820716828107834,-0.06473387032747269,0.03465145826339722,0.03839058801531792,0.021270211786031723,-0.02144787646830082,-0.015142460353672504,-0.07375925034284592,-0.06657370924949646,-0.055848222225904465,-0.04415981099009514,0.0004844243230763823,-0.004763220902532339,0.009448554366827011,0.02387334778904915,-0.09716688841581345,-0.011009988375008106,-0.056556444615125656,-0.016579387709498405,-0.007793085183948278,-0.02793019823729992,-0.0422317199409008,0.02232956513762474,-0.027396269142627716,-0.14075931906700134,-0.01535795908421278,0.07154354453086853,-0.004748651757836342,0.018390076234936714,0.01846744678914547,0.038960330188274384,-0.039472684264183044,-0.007070429623126984,0.060059621930122375,0.04121861606836319,0.034173958003520966,0.0130648547783494,0.016695313155651093,0.022059302777051926,-0.032437216490507126,0.07588061690330505,-0.05311441421508789,-0.010394138284027576,-0.08341540396213531,-0.10992929339408875,0.011136640794575214,-0.04538312554359436,0.02869979664683342,0.13213953375816345,-0.01670222356915474,-0.020059330388903618,-0.13442444801330566,0.039952896535396576,0.06650657951831818,-0.009709354490041733,0.018608292564749718,0.061345864087343216,-0.042783115059137344,-0.03914818540215492,-0.0068929605185985565,-6.40388246081614e-34,-0.02175496704876423,-0.09495893120765686,-0.0352741964161396,0.026385102421045303,-0.010222936980426311,0.06080047786235809,-0.029628872871398926,0.06827867776155472,-0.014769179746508598,-0.10217047482728958,-0.04619871452450752,-0.041543204337358475,-0.04114341735839844,-0.0095220310613513,-0.038635775446891785,0.06745722144842148,-0.07460980862379074,-0.06589183211326599,0.10252822190523148,-0.010905253700911999,0.04363149777054787,0.02982383593916893,-0.022043701261281967,0.057272884994745255,-0.060182780027389526,0.06401630491018295,0.09534452855587006,-0.10367204993963242,-0.03981732204556465,0.03465871885418892,-0.051048394292593,0.0028421503957360983,0.020193198695778847,-0.08193890005350113,-0.008586879819631577,0.03695271164178848,-0.0648593008518219,0.008335646241903305,-0.13320817053318024,0.04413076117634773,-0.026620393618941307,-0.0034866202622652054,0.01544104889035225,-0.049372557550668716,-0.028433196246623993,0.0248988326638937,-0.0019733768422156572,0.0011038110824301839,0.028495797887444496,0.01832921989262104,-0.017904240638017654,0.05871899053454399,0.08366455137729645,-0.003143638838082552,-0.01695537194609642,-0.00012002893345197663,-0.010555792599916458,0.08104699850082397,-0.10962418466806412,-0.014198314398527145,0.025143509730696678,-0.07080177217721939,0.07803346961736679,0.07492738962173462,-0.034272629767656326,0.021625904366374016,0.05797838792204857,-0.006612011697143316,-0.07175315916538239,0.00365641713142395,-0.040746282786130905,0.04317877069115639,-0.05875915661454201,0.04885362088680267,-0.07974418252706528,-0.0037563838995993137,0.025832943618297577,-0.10428836941719055,-0.011332385241985321,-0.0604177862405777,0.016858931630849838,0.059783708304166794,0.0403878279030323,0.013516079634428024,-0.017346659675240517,-0.037691716104745865,0.10243965685367584,-0.04690565541386604,-0.0565805546939373,0.06004948168992996,-0.024780090898275375,0.07296757400035858,-0.06350269168615341,-0.03642796352505684,0.04894338920712471,-3.427538386880289e-33,0.026160340756177902,-0.05646231770515442,0.007818273268640041,-0.05842193216085434,-0.05776882544159889,0.002772671403363347,-0.01314122136682272,0.14115697145462036,-0.014674369245767593,0.013552550226449966,-0.0555574856698513,-0.052449725568294525,0.07828530669212341,0.0015345412539318204,0.00803400482982397,-0.02851089835166931,-0.05550050735473633,0.009646469727158546,-0.03562847897410393,0.00290578231215477,0.02561156265437603,-0.0072621870785951614,0.0036248008254915476,-0.026950065046548843,0.043463751673698425,0.03557540848851204,0.0487297959625721,0.04691186174750328,-0.11948062479496002,0.03477446362376213,0.09332498908042908,-0.02756354957818985,-0.06350788474082947,0.04392170161008835,0.027436060830950737,0.06812745332717896,-0.0626465380191803,0.06653470546007156,0.02650625631213188,0.05001383274793625,-0.00004929954593535513,-0.038391176611185074,0.01911812089383602,0.040091972798109055,-0.0022919406183063984,0.057569921016693115,0.023883389309048653,0.07519197463989258,0.07346390932798386,-0.031154165044426918,-0.010039404965937138,0.008273081853985786,-0.013252346776425838,0.057490214705467224,0.029742442071437836,-0.02070756070315838,-0.06690359115600586,0.044459883123636246,0.052641116082668304,-0.05949905887246132,-0.11913497745990753,-0.03866153582930565,0.04145071655511856,-0.007329391781240702,-0.0384356714785099,0.003385937539860606,0.018354186788201332,0.037435293197631836,-0.038686711341142654,0.008438793011009693,0.061466507613658905,0.02842830866575241,-0.11479105800390244,0.033456768840551376,0.0760025754570961,0.06679094582796097,-0.1146278977394104,-0.03380126133561134,-0.09385411441326141,-0.05555920675396919,0.010901959612965584,-0.029802771285176277,-0.03804274648427963,-0.012486400082707405,0.061640605330467224,-0.057578712701797485,0.03375328704714775,0.016686614602804184,-0.0040091280825436115,-0.03837859258055687,-0.015553673729300499,0.013371548615396023,-0.04917183518409729,-0.0661974623799324,-0.056225381791591644,-3.8751455377905586e-8,-0.07368986308574677,0.021485047414898872,0.01729150302708149,0.0419425368309021,0.028288448229432106,0.06263020634651184,-0.03993652015924454,0.00948948785662651,-0.07136020064353943,0.11753693968057632,-0.062196142971515656,0.026942215859889984,0.01025797612965107,0.03277985751628876,0.07114789634943008,-0.00360372313298285,0.05018570274114609,-0.08395274728536606,0.012276834808290005,-0.06250614672899246,-0.0051442887634038925,-0.03136959299445152,0.08979661017656326,-0.01876233145594597,-0.07537925243377686,-0.0011762462090700865,0.03970929607748985,-0.028097182512283325,0.05876834690570831,0.01893974095582962,0.0933833122253418,0.014313400723040104,-0.05059085413813591,-0.004161247983574867,-0.020804503932595253,0.013104713521897793,-0.08106407523155212,0.015086484141647816,0.020966872572898865,-0.043715935200452805,-0.006617232691496611,0.039079319685697556,-0.06453835219144821,0.010714399628341198,0.0598074346780777,-0.013794568367302418,0.01242423988878727,0.004250701516866684,0.011096295900642872,0.01977040059864521,-0.02186737023293972,-0.04708588495850563,0.09455634653568268,-0.003689713077619672,0.04587376117706299,-0.0747009888291359,-0.004005745053291321,0.06681563705205917,0.019733509048819542,0.060322828590869904,-0.0038990862667560577,-0.03115360625088215,-0.002758215880021453,-0.02895502932369709]},{"text":"I eagerly seized the prize and returned with it to my hovel.","book":"1984","chapter":73,"embedding":[-0.03888785094022751,0.12957239151000977,0.035763632506132126,0.019844533875584602,-0.0006304210401140153,-0.034384407103061676,0.18349997699260712,-0.03270089626312256,0.018301870673894882,-0.02197452262043953,0.026929110288619995,0.021573446691036224,0.04951261356472969,-0.040182631462812424,-0.012782792560756207,-0.009532532654702663,0.011896164156496525,-0.0626649260520935,-0.02477925457060337,-0.014071137644350529,-0.03378619998693466,-0.018757950514554977,-0.005816312041133642,0.02274991199374199,-0.0626479983329773,-0.0355924591422081,-0.0402376726269722,0.047620393335819244,-0.007387225516140461,-0.067802295088768,-0.07409052550792694,0.011015482246875763,-0.0444650761783123,0.013419056311249733,-0.032683782279491425,0.023475635796785355,-0.03062727302312851,-0.09246573597192764,0.010750778950750828,-0.08188489079475403,0.041123684495687485,-0.058792341500520706,0.06448544561862946,0.05582203343510628,0.026711903512477875,0.04401683434844017,0.047478996217250824,0.00416312413290143,0.10629161447286606,0.03259575366973877,-0.007586230989545584,-0.05594627559185028,0.010236472822725773,-0.048190947622060776,-0.010661125183105469,0.11711664497852325,0.10448646545410156,-0.027527041733264923,-0.024396687746047974,-0.05036982148885727,-0.06768963485956192,-0.006267311051487923,-0.040557827800512314,0.03321167826652527,0.044316671788692474,-0.09884148836135864,-0.026112902909517288,-0.060752950608730316,-0.04052380099892616,0.0784214660525322,0.159254789352417,-0.010949387215077877,0.05474681034684181,0.0695926696062088,0.021245917305350304,-0.004039496183395386,-0.003108781995251775,-0.07122247666120529,0.07714303582906723,0.04993666708469391,-0.03014971874654293,-0.07995128631591797,-0.018290134146809578,-0.009161008521914482,0.05493047460913658,-0.03594847396016121,0.09109005331993103,0.005990589037537575,0.12432347983121872,-0.038067009299993515,-0.010082921013236046,-0.04817637428641319,-0.04661407321691513,0.04798081889748573,-0.0721256285905838,-0.037214457988739014,0.004581431392580271,-0.033344656229019165,-0.0013584494590759277,0.07675311714410782,0.0607006698846817,0.02537154220044613,-0.005562936887145042,-0.001374571118503809,-0.005720763932913542,0.011890796944499016,-0.005451860371977091,0.02932593785226345,0.05000801384449005,-0.07164286077022552,-0.06113382801413536,0.016428638249635696,0.09795229882001877,0.06266339868307114,-0.036868657916784286,0.026202159002423286,-0.11839006096124649,0.04825104773044586,0.052378393709659576,-0.05298304930329323,0.08134980499744415,0.0844944566488266,-0.00299860374070704,-0.02168622985482216,-0.07288701087236404,-0.02309306710958481,0.005209876224398613,-6.786106112094019e-33,-0.049274742603302,-0.01003966573625803,-0.01275886781513691,0.07298141717910767,0.01147625595331192,-0.039499662816524506,0.02294139750301838,0.03446560725569725,-0.07748720794916153,-0.011396005749702454,0.05911651998758316,0.032009415328502655,-0.02273419313132763,0.030131448060274124,-0.03132830932736397,-0.010357541032135487,-0.003623383352532983,-0.035773493349552155,0.05038798972964287,-0.027982112020254135,-0.021523742005228996,0.019171012565493584,0.04145922511816025,-0.02289603278040886,0.02817416936159134,0.0372699610888958,-0.03301722928881645,-0.06260380148887634,-0.0049607655964791775,0.06155538186430931,0.07716327160596848,-0.015280119143426418,-0.011431308463215828,-0.020339222624897957,-0.040504299104213715,0.09212769567966461,-0.02505492977797985,-0.04653717204928398,-0.03320925310254097,0.054126985371112823,-0.02524254098534584,-0.0818977952003479,0.018177123740315437,0.034200213849544525,-0.11968882381916046,-0.021962296217679977,0.012750525027513504,-0.0005719642504118383,-0.05512821674346924,0.016960108652710915,-0.04721174016594887,0.0017601300496608019,-0.0064065586775541306,-0.0007837922312319279,-0.021157193928956985,-0.0215850081294775,-0.0135333938524127,-0.028506968170404434,-0.030645174905657768,-0.0002899123355746269,0.02617870643734932,0.005125477444380522,0.0055453418754041195,-0.001991664757952094,-0.01654055528342724,0.042227499186992645,0.012227934785187244,-0.024039287120103836,0.017229150980710983,-0.038325995206832886,0.007313800975680351,0.021777311339974403,0.024778999388217926,-0.04856161028146744,-0.0280672088265419,-0.02361455373466015,0.0040006679482758045,-0.06218593567609787,0.10682819783687592,-0.09358922392129898,0.049583274871110916,-0.03616556152701378,-0.036006197333335876,0.03835952281951904,0.02632640115916729,-0.010849788784980774,-0.0033576423302292824,-0.1924288123846054,-0.023223398253321648,-0.044640667736530304,-0.05166040360927582,-0.007788450922816992,0.01055337768048048,-0.060695089399814606,-0.09469585865736008,3.649395680524718e-33,0.07700749486684799,-0.052293531596660614,0.006217166781425476,0.043226443231105804,0.006810418795794249,0.0030772837344557047,-0.014002284966409206,-0.01243421621620655,-0.083134725689888,0.06749826669692993,-0.04803749546408653,0.05632337927818298,0.06368538737297058,-0.008279358968138695,0.06306000798940659,0.01924760825932026,-0.02701355703175068,0.004786457400768995,-0.02224818244576454,-0.03530611842870712,0.044186290353536606,0.025561615824699402,0.031488481909036636,0.03386416286230087,-0.0124385766685009,-0.01599140092730522,0.07229162752628326,-0.07312926650047302,0.017655611038208008,-0.010411342605948448,0.0532577820122242,-0.055457163602113724,-0.05400549992918968,-0.014652073383331299,0.06034673750400543,0.027626778930425644,0.11590844392776489,-0.05522751808166504,-0.02509542927145958,-0.042632900178432465,-0.03212083503603935,-0.010698774829506874,0.01606571674346924,0.04229656979441643,0.062162261456251144,-0.07323041558265686,-0.014110101386904716,0.029515985399484634,0.12136328965425491,0.11768238246440887,0.006764782592654228,-0.038657478988170624,0.025334062054753304,-0.011949660256505013,-0.04930751770734787,-0.015252816490828991,-0.011450420133769512,-0.04129206761717796,0.08453653752803802,0.026840852573513985,-0.08716016262769699,0.002355001401156187,-0.0733373612165451,0.06480307877063751,0.018436167389154434,-0.04595106095075607,0.03241898864507675,0.014751537702977657,0.009864903055131435,-0.04401663318276405,-0.014112075790762901,0.11268643289804459,0.03462867811322212,-0.04777199402451515,0.037856556475162506,0.027231985703110695,0.0976983979344368,0.10216652601957321,0.013672259636223316,-0.05440326780080795,0.06428197771310806,0.009986689314246178,0.05973302945494652,-0.05225680395960808,-0.0006363830761983991,0.007178051862865686,0.014530833810567856,-0.04707402363419533,-0.00015593119314871728,-0.03564387932419777,0.06702674925327301,-0.02894011326134205,0.09236948937177658,0.022000690922141075,0.044267937541007996,-2.009825017523781e-8,-0.03563166782259941,0.10793165117502213,0.03284134715795517,0.00988471694290638,0.07022896409034729,0.11170332133769989,-0.04051199182868004,0.052314937114715576,-0.06308683753013611,-0.06362872570753098,-0.011377097107470036,0.03258146718144417,0.006467257626354694,0.04717640578746796,-0.05427948385477066,-0.0153464674949646,-0.037757087498903275,-0.031487274914979935,-0.012307199649512768,-0.007302893325686455,0.014966548420488834,0.0601753406226635,-0.029705265536904335,-0.07337857782840729,-0.0926128402352333,0.0013302972074598074,-0.07994069904088974,0.01964150182902813,0.002907772082835436,-0.02212739735841751,-0.047150399535894394,0.048108283430337906,-0.08471183478832245,-0.019531209021806717,-0.03706477954983711,-0.02300393581390381,-0.04451066255569458,-0.009479841217398643,0.06875724345445633,0.04709850251674652,0.03979596495628357,0.10618098825216293,0.021855290979146957,-0.013766777701675892,-0.035307176411151886,0.03530958294868469,-0.01564124971628189,-0.037711624056100845,0.01608397625386715,0.029566941782832146,-0.024107016623020172,-0.09327604621648788,-0.010619423352181911,0.08804987370967865,0.047596100717782974,-0.03780020773410797,0.014461065642535686,-0.06655094027519226,-0.026225585490465164,0.03142743557691574,0.07353487610816956,-0.06905300170183182,-0.15033510327339172,0.018285971134901047]},{"text":"My person was hideous and my stature gigantic.","book":"1984","chapter":73,"embedding":[0.00632991548627615,0.18684567511081696,0.034665487706661224,0.06280389428138733,-0.02582559734582901,-0.047557007521390915,0.04125068336725235,0.06949935108423233,-0.09165555238723755,-0.018783506006002426,0.008164910599589348,0.015422127209603786,-0.0036021980922669172,-0.0012507602805271745,-0.051416393369436264,-0.047551847994327545,0.04291478917002678,0.06552974879741669,0.006345783360302448,0.018815530464053154,-0.03452858328819275,0.08567266911268234,-0.03264032304286957,0.009111941792070866,-0.05848891660571098,0.010181738063693047,-0.009733298793435097,0.002894318662583828,-0.005799134727567434,-0.006266856100410223,-0.07324470579624176,-0.020626060664653778,0.05186605080962181,-0.012705680914223194,-0.048624809831380844,0.0022836176212877035,0.03351937606930733,0.01457552146166563,-0.011177263222634792,-0.06727366149425507,-0.009853704832494259,0.05466168746352196,0.007322485093027353,0.0058616455644369125,0.02864561229944229,-0.047890275716781616,0.058352597057819366,0.06014730781316757,-0.012588060460984707,-0.032084036618471146,-0.03691485524177551,-0.03441517800092697,-0.010395028628408909,-0.015063347294926643,0.02010350115597248,-0.018410708755254745,0.002947727218270302,0.022002313286066055,0.013583196327090263,0.050744183361530304,-0.00753271859139204,0.0583026185631752,-0.008378656581044197,0.06559779495000839,0.02736649662256241,0.03453400358557701,0.055415548384189606,-0.08874734491109848,0.04824395105242729,0.06566260010004044,0.049566395580768585,-0.008632678538560867,-0.005078053567558527,0.07563628256320953,-0.022059977054595947,-0.05083146318793297,-0.02200636826455593,0.004655151162296534,0.052137427031993866,0.07674337178468704,-0.07642543315887451,0.00035041681258007884,0.03099888563156128,0.020723311230540276,0.017590444535017014,0.006642920430749655,0.031317807734012604,0.002390550449490547,-0.08804251253604889,-0.004650013986974955,-0.0000416082693845965,0.00588545436039567,-0.010808130726218224,0.010962399654090405,-0.054453980177640915,-0.07038745284080505,-0.10648490488529205,-0.040927037596702576,0.04609431326389313,0.11409208923578262,0.03318918123841286,0.026798469945788383,0.05619772896170616,0.10588426887989044,0.06252674758434296,0.011604370549321175,-0.02323894388973713,-0.012791844084858894,0.011359378695487976,-0.0033160706516355276,-0.018548792228102684,-0.00779635040089488,-0.005652112420648336,0.06718408316373825,0.05717020109295845,-0.01402681227773428,-0.01912299543619156,-0.026066089048981667,-0.041438810527324677,-0.05336097255349159,-0.012803477235138416,-0.01170376781374216,-0.08758781105279922,-0.031895145773887634,-0.019747531041502953,0.03262309730052948,0.03071833774447441,-5.3118532598545233e-33,-0.03240593895316124,0.07400903850793839,-0.028703147545456886,0.02625669352710247,0.069429911673069,0.02808213420212269,-0.029374860227108,0.014502571895718575,-0.026851069182157516,0.025337539613246918,0.06126750633120537,-0.021221637725830078,0.001513456692919135,0.04958309605717659,-0.028805257752537727,0.06876984238624573,-0.014317029155790806,0.08197730779647827,-0.005109131336212158,0.06683836132287979,0.03226945176720619,-0.0073715196922421455,0.012853950262069702,0.037630051374435425,-0.02731938101351261,-0.08406805992126465,-0.010341867804527283,-0.0402199812233448,-0.04809391126036644,-0.005605221260339022,0.058669667690992355,0.025665635243058205,0.10484257340431213,0.014268693514168262,-0.02296154387295246,-0.12270289659500122,0.053935788571834564,-0.10074431449174881,-0.034544382244348526,0.02892964333295822,0.036962781101465225,0.002881081309169531,-0.018720204010605812,-0.07029896974563599,-0.09049967676401138,0.09503434598445892,0.07549715042114258,-0.02377249486744404,-0.11192898452281952,-0.06405221670866013,0.027745487168431282,0.02900213934481144,0.06648557633161545,0.029294243082404137,-0.052856042981147766,-0.05038423463702202,0.005268103908747435,-0.017624765634536743,-0.0350368432700634,0.025762619450688362,-0.023392105475068092,0.03096795082092285,0.026272660121321678,0.04117242619395256,-0.019403809681534767,-0.18909557163715363,-0.036023467779159546,-0.013570697978138924,-0.016463223844766617,-0.014596027322113514,0.038752056658267975,0.006984318606555462,0.053098224103450775,-0.008094016462564468,-0.014912323094904423,-0.02726128324866295,0.0027636729646474123,0.025230901315808296,-0.06729017198085785,-0.023886043578386307,0.0575258694589138,-0.004716615658253431,0.04055306687951088,-0.07292833924293518,0.0030402096454054117,0.004717042203992605,-0.016767509281635284,-0.03481420502066612,0.06535075604915619,0.02124662883579731,-0.014641939662396908,0.022639451548457146,0.015287625603377819,-0.09927210211753845,-0.09046857804059982,2.8592623570355548e-33,0.0274927020072937,0.051783014088869095,0.0692967101931572,-0.08266691863536835,-0.006280262488871813,0.000982447643764317,-0.04105142503976822,0.11450953036546707,-0.037442322820425034,-0.05818073824048042,0.04948423057794571,-0.020360838621854782,0.08944761753082275,-0.13540607690811157,0.09386666119098663,0.03622683882713318,-0.018701711669564247,-0.056726593524217606,-0.06035488471388817,-0.009152363054454327,-0.001197098521515727,-0.012470310553908348,0.0043058861047029495,-0.011509512551128864,-0.06515330821275711,0.01971546933054924,0.10101962089538574,-0.05200071260333061,-0.02862194925546646,-0.036008577793836594,-0.01599165052175522,-0.020623769611120224,-0.10892907530069351,-0.010883553884923458,0.02730499766767025,0.014986465685069561,-0.06612356752157211,0.0110173923894763,-0.05668831616640091,-0.04257276654243469,-0.05866864696145058,-0.015382173471152782,0.0717804878950119,0.05122104659676552,0.07349265366792679,-0.13458818197250366,-0.018399357795715332,-0.06709041446447372,0.07642824202775955,0.01774578168988228,-0.10409910976886749,0.052187230437994,0.10344114899635315,0.027149859815835953,-0.0467616468667984,-0.03500605374574661,0.08556903898715973,-0.07319144904613495,0.052508771419525146,0.03697461634874344,-0.03840569034218788,-0.10701681673526764,-0.05348380282521248,0.0240949634462595,-0.012498649768531322,-0.0033295268658548594,-0.04076395183801651,-0.024751069024205208,-0.08815545588731766,-0.02313772775232792,0.009804902598261833,-0.06958834826946259,-0.018155112862586975,0.11206678301095963,-0.0576789453625679,-0.08991950005292892,-0.026252616196870804,0.07764840871095657,0.028544163331389427,0.022088320925831795,0.004799269139766693,0.043613631278276443,0.04185725003480911,0.015740089118480682,0.027059050276875496,0.05692264065146446,0.039321418851614,0.07459957897663116,-0.0242780651897192,0.012787878513336182,-0.038115885108709335,0.03490341454744339,0.008130540139973164,-0.055123329162597656,0.040235068649053574,-1.6063573582414392e-8,-0.08074609190225601,-0.0009426355245523155,0.02283448353409767,0.06567174196243286,-0.03188683092594147,0.006122550927102566,-0.02141042985022068,0.08867844194173813,-0.056989021599292755,0.03686929866671562,-0.10478916764259338,0.08270007371902466,0.067135751247406,0.03841621056199074,0.03838781639933586,-0.06707463413476944,-0.021838821470737457,-0.05721800774335861,-0.06582088023424149,0.020786449313163757,-0.12808483839035034,0.03159402683377266,-0.03343082591891289,0.05118776485323906,0.03959020599722862,0.021712787449359894,-0.04383910819888115,0.02738618478178978,-0.02424212545156479,0.07356645166873932,0.005666227079927921,0.07307103276252747,-0.05404694750905037,-0.012251392938196659,0.010212196037173271,-0.03726572170853615,0.010893618687987328,-0.015782557427883148,0.06749101728200912,-0.08357593417167664,-0.01428538653999567,0.04107992351055145,0.048352956771850586,0.10607583820819855,0.0639517530798912,-0.020515793934464455,0.005523067899048328,-0.014072257094085217,-0.023873809725046158,-0.005552693735808134,0.0681287944316864,0.017672734335064888,-0.05270795151591301,0.07373775541782379,-0.018645018339157104,-0.044905032962560654,-0.006204309873282909,0.05666150897741318,-0.004882801324129105,0.03376452624797821,0.0604788213968277,-0.012627418152987957,-0.11072175204753876,-0.060765959322452545]},{"text":"The patriarchal lives of my protectors caused these impressions to take a firm hold on my mind; perhaps, if my first introduction to humanity had been made by a young soldier, burning for glory and slaughter, I should have been imbued with different sensations. “But _Paradise Lost_ excited different and far deeper emotions.","book":"1984","chapter":74,"embedding":[0.05005909875035286,0.0776715874671936,0.041523560881614685,0.021834751591086388,0.10951689630746841,-0.006786413490772247,0.04077180102467537,-0.09199933707714081,0.06058540195226669,-0.01256798766553402,-0.016316965222358704,-0.03941772133111954,0.03300923854112625,-0.021413980051875114,0.05612807348370552,0.008777148090302944,-0.031013179570436478,-0.014776606112718582,-0.020108385011553764,0.042013395577669144,-0.04084279388189316,0.07043181359767914,-0.05673322081565857,-0.038379766047000885,-0.022779736667871475,0.0794323980808258,0.010272468440234661,0.07408558577299118,0.01911621168255806,-0.011961560696363449,-0.010142960585653782,-0.044650886207818985,0.005738189443945885,0.016079990193247795,0.05149490013718605,0.0756223127245903,-0.015555471181869507,0.02058248035609722,0.014705567620694637,-0.030101371929049492,-0.0026953958440572023,-0.05007541924715042,0.0016600427916273475,-0.05516614392399788,0.037690334022045135,-0.064726322889328,-0.026970505714416504,-0.019054090604186058,0.03401270508766174,-0.06692362576723099,0.025418490171432495,-0.015196568332612514,-0.014507470652461052,-0.10014776885509491,0.012606345117092133,-0.02789267525076866,0.009649219922721386,0.06616385281085968,-0.012217062525451183,-0.028450066223740578,-0.0687248557806015,0.014018728397786617,0.04327844828367233,-0.014504507184028625,0.018809212371706963,-0.08082860708236694,0.08499778807163239,0.011349004693329334,-0.015503996051847935,0.0614827424287796,-0.026624225080013275,0.025533251464366913,0.002604631707072258,-0.05678873881697655,-0.1496310532093048,-0.012580686248838902,0.004150098655372858,-0.0005197004647925496,-0.03375175967812538,0.008546990342438221,0.05909333750605583,0.00820198655128479,-0.028343720361590385,-0.012335332110524178,-0.08229663223028183,-0.014351608231663704,0.0405251644551754,-0.04467647150158882,-0.0018924829782918096,0.10840963572263718,-0.06511516124010086,-0.08609621226787567,0.06971688568592072,0.04769931733608246,0.00401843897998333,-0.04329775646328926,-0.09263931214809418,0.06000103801488876,-0.030061934143304825,0.049767762422561646,0.02812088280916214,0.01456576120108366,-0.11739642173051834,0.03638065606355667,0.041988909244537354,-0.055324189364910126,-0.06026562675833702,-0.04052822291851044,-0.0847543329000473,-0.040473490953445435,-0.05110296979546547,-0.08437513560056686,0.019670328125357628,-0.007406085263937712,0.03382125869393349,0.00998480711132288,-0.00815498735755682,-0.04210308939218521,-0.026372971013188362,0.06234848126769066,0.053655415773391724,-0.00819811038672924,0.05354728177189827,0.03876553103327751,-0.016654275357723236,-0.092972032725811,-0.03030967339873314,1.4673329557684945e-33,-0.011633237823843956,-0.014582210220396519,0.0025901440531015396,0.08991620689630508,0.06979765743017197,-0.01617100089788437,-0.02893993817269802,0.011918535456061363,0.023277845233678818,-0.005185334011912346,-0.02446499839425087,0.06292670965194702,-0.0074136946350336075,0.019925391301512718,-0.10614793747663498,0.007617096416652203,-0.08810748904943466,-0.014866432175040245,0.04509073123335838,-0.02138066664338112,-0.12815889716148376,0.11154323816299438,-0.002795977983623743,-0.021746903657913208,-0.06309790909290314,0.017805302515625954,0.030768023803830147,-0.03411155939102173,-0.014795987866818905,0.012277492322027683,-0.04838115721940994,0.02098832279443741,0.052442751824855804,-0.0594663992524147,0.055352527648210526,0.11733294278383255,0.032670553773641586,-0.016485175117850304,0.00901765376329422,-0.025339974090456963,-0.040690500289201736,0.047316376119852066,0.014364944770932198,-0.033260006457567215,0.012074480764567852,0.09146175533533096,0.03417132422327995,0.02110590972006321,-0.07566636800765991,0.027253014966845512,-0.07666441798210144,0.017213473096489906,0.07919151335954666,-0.005867872852832079,-0.004492622334510088,-0.015914855524897575,-0.020437417551875114,0.07477350533008575,0.012415324337780476,-0.043347179889678955,-0.04734195023775101,-0.039011187851428986,0.025018347427248955,-0.04005454108119011,-0.013382493518292904,0.02893742173910141,-0.016545996069908142,-0.06387906521558762,-0.04325161129236221,0.05642802640795708,-0.08731866627931595,0.042753882706165314,-0.004241395276039839,-0.050521258264780045,0.005897496361285448,-0.048899050801992416,-0.01380358636379242,-0.009986288845539093,-0.0547538585960865,-0.08037514239549637,-0.005674067419022322,-0.039554111659526825,-0.0269065760076046,-0.02121303416788578,0.01717359758913517,-0.05125350505113602,0.07590579241514206,-0.09852863848209381,-0.015310710296034813,0.03060809150338173,-0.033209994435310364,-0.045613646507263184,0.09538931399583817,-0.05917733907699585,-0.08460932224988937,-2.1612743826684198e-33,0.005219741258770227,-0.04860403761267662,0.0013924097875133157,0.035797376185655594,0.01783977635204792,-0.021438097581267357,0.00689384201541543,0.020669877529144287,-0.09789138287305832,0.06704337149858475,0.023658890277147293,0.010124960914254189,0.052030134946107864,0.034553542733192444,-0.0706288293004036,-0.06177018582820892,-0.02748470939695835,0.04184514656662941,0.011426268145442009,-0.011112632229924202,-0.056096795946359634,0.0775420144200325,-0.03290940821170807,-0.01445724070072174,0.004178149159997702,0.07525048404932022,0.09929197281599045,-0.017071949318051338,-0.016559958457946777,-0.07760970294475555,0.051535386592149734,0.022497661411762238,-0.10877680778503418,0.03660724312067032,0.08734646439552307,0.058865442872047424,0.03626614063978195,-0.004555377643555403,-0.02130243182182312,0.004256023559719324,-0.05763385817408562,0.004619071260094643,-0.021339548751711845,0.04294817894697189,-0.05090327933430672,-0.021292245015501976,0.010997454635798931,0.01850765012204647,0.024474138393998146,0.040051206946372986,-0.07851444184780121,-0.0027019174303859472,-0.011377893388271332,0.009499907493591309,0.018093908205628395,-0.04401421919465065,0.05023720860481262,-0.004885298199951649,0.030879413709044456,0.04353325068950653,-0.025846797972917557,-0.0075412532314658165,-0.08383536338806152,0.03742522746324539,-0.014811309985816479,-0.03834221512079239,0.001860109157860279,0.061392754316329956,-0.07980663329362869,0.09129927307367325,-0.07228146493434906,-0.06895292550325394,-0.07786646485328674,0.041468579322099686,0.027466248720884323,-0.061230242252349854,-0.01689019799232483,-0.05250514671206474,-0.07063240557909012,-0.010407667607069016,-0.05348089337348938,-0.06319401413202286,-0.015464775264263153,0.08252986520528793,0.01881304383277893,0.06592942029237747,-0.01850048080086708,0.028265787288546562,-0.02913779765367508,0.03826500102877617,-0.05446429178118706,-0.034285325556993484,-0.029488610103726387,-0.04736368730664253,-0.02574089728295803,-4.410438947388684e-8,-0.056093256920576096,-0.015035341493785381,0.003453750628978014,0.10021862387657166,0.05326177924871445,0.004052021540701389,0.008666939102113247,-0.06934567540884018,-0.09164001792669296,0.033357784152030945,-0.08398280292749405,0.03631936386227608,0.021346015855669975,0.0714339017868042,0.06518898159265518,0.05531841143965721,0.0464027039706707,-0.049688421189785004,0.016151251271367073,0.011426441371440887,0.030752433463931084,0.10655228793621063,0.019904034212231636,-0.1106041744351387,-0.029602693393826485,0.04537461698055267,-0.05506003275513649,-0.05668384209275246,-0.07242502272129059,0.04927492514252663,0.0709453746676445,0.05939652398228645,-0.054566532373428345,-0.029413064941763878,-0.02425827644765377,0.025734517723321915,0.02444986253976822,0.00045544662862084806,0.03403446823358536,0.008172526955604553,0.017858846113085747,0.01850004680454731,0.09735872596502304,0.03079185076057911,0.012749397195875645,-0.011390053667128086,0.09269239753484726,0.038413938134908676,-0.02376752533018589,0.061024460941553116,0.10470721870660782,0.060768451541662216,0.06386107951402664,0.05254192277789116,0.11629466712474823,-0.08046309649944305,-0.03948797658085823,0.16029004752635956,0.02013041451573372,0.08020737767219543,0.16805322468280792,-0.029978251084685326,-0.023741483688354492,-0.050795990973711014]},{"text":"You doubtless recollect these papers.","book":"1984","chapter":74,"embedding":[-0.10244355350732803,0.035725418478250504,0.01997782662510872,0.029342520982027054,-0.006513078231364489,-0.004129491746425629,0.05185821279883385,-0.023739004507660866,-0.000265157112153247,-0.007708171848207712,0.03771215304732323,0.07785744965076447,0.07444042712450027,-0.06942056864500046,-0.12667755782604218,-0.03616594895720482,-0.1159241795539856,-0.01795804314315319,-0.024874765425920486,0.1254882663488388,-0.07676813751459122,0.02659798413515091,-0.015360058285295963,0.027135159820318222,0.08134306967258453,0.023966936394572258,-0.06314300745725632,-0.04049481078982353,0.010756412521004677,-0.05562819913029671,0.0712711289525032,0.07863613218069077,-0.04920324683189392,0.012844889424741268,0.10365602374076843,-0.049810051918029785,0.07424464821815491,0.018341517075896263,0.07319165021181107,0.02203419804573059,0.04494106397032738,-0.03414778783917427,-0.02507208287715912,0.017645923420786858,0.026704223826527596,-0.02732677012681961,-0.06682546436786652,-0.014677304774522781,-0.13964608311653137,-0.02594631537795067,-0.023633820936083794,-0.04246346279978752,-0.03571338579058647,0.013968730345368385,-0.0343673937022686,-0.01825142093002796,-0.046818993985652924,0.033852290362119675,-0.018526699393987656,0.023000206798315048,-0.035229168832302094,0.015724001452326775,-0.10274098068475723,0.05402684211730957,0.005072456784546375,0.06645923107862473,0.0017528397729620337,-0.02378293313086033,-0.018441099673509598,0.06306026875972748,-0.04762905836105347,0.05422620847821236,-0.008351212367415428,0.027642900124192238,-0.029842231422662735,-0.05389498919248581,-0.005896034650504589,-0.05247373878955841,-0.022576162591576576,-0.11342480778694153,-0.003025213023647666,0.012691503390669823,-0.0022178166545927525,0.01872936263680458,-0.020085107535123825,0.0014085544971749187,-0.03305148333311081,-0.057318683713674545,-0.016533318907022476,-0.014307573437690735,0.03481113538146019,-0.11633627116680145,-0.01149954553693533,0.02200184017419815,-0.02685319073498249,0.028794510290026665,-0.04019036889076233,0.004040190484374762,0.06940998136997223,0.05563340708613396,-0.005771688651293516,-0.012430855073034763,0.08491666615009308,0.025338739156723022,-0.05266619473695755,-0.022091245278716087,-0.07958061993122101,-0.07852517068386078,-0.01312425546348095,-0.03552471846342087,-0.027428608387708664,-0.02801736444234848,0.0013828360242769122,0.02979162521660328,0.02049829438328743,0.027828186750411987,0.0808647945523262,0.013101152144372463,-0.0021504792384803295,-0.04447387531399727,-0.04785684123635292,0.04736141115427017,0.0022342330776154995,-0.0229122806340456,-0.1561087816953659,-0.09840761870145798,-0.054130908101797104,-1.7943792695607598e-33,0.03624279424548149,0.015025327913463116,-0.018312182277441025,0.05651266127824783,0.025024326518177986,0.0643974095582962,-0.014636688865721226,-0.06388551741838455,0.05357598513364792,-0.02946637198328972,-0.004383231047540903,0.09126613289117813,0.04307692497968674,-0.023585103452205658,0.0175944697111845,0.06129937991499901,-0.02919778972864151,0.07352837175130844,0.03932657092809677,-0.02134561911225319,0.06712330132722855,0.01655063033103943,0.019791895523667336,-0.06795135140419006,0.022196583449840546,0.046535659581422806,-0.004874662030488253,-0.009284965693950653,0.0032231290824711323,0.040754809975624084,-0.023364806547760963,0.10050220042467117,-0.05576144531369209,-0.03248731791973114,0.02852252870798111,0.07435561716556549,0.008387161418795586,-0.030867168679833412,-0.020815379917621613,-0.03975829482078552,0.026234736666083336,0.006232304498553276,0.025093471631407738,-0.03294874727725983,0.022942859679460526,-0.034526512026786804,0.0618363581597805,0.021016772836446762,0.12307071685791016,0.011168883182108402,0.025244295597076416,0.027988459914922714,-0.04689280688762665,-0.0605790838599205,0.07636525481939316,-0.04170374572277069,-0.04987453296780586,0.1434735208749771,-0.002567760180681944,0.05002070963382721,0.043903738260269165,-0.012036513537168503,-0.1395755261182785,0.004083731677383184,0.014526421204209328,0.07581934332847595,-0.08402367681264877,-0.006808210164308548,-0.04674895480275154,-0.007974031381309032,-0.015918781980872154,-0.01044149324297905,-0.014549347572028637,-0.07877498865127563,0.10380870848894119,0.029448358342051506,-0.0008652117103338242,0.05677032843232155,-0.006493903696537018,-0.07236526906490326,-0.05472453683614731,-0.0003333287895657122,-0.040853384882211685,-0.04391477629542351,-0.02561277337372303,-0.03839121013879776,0.12260761857032776,0.06366700679063797,-0.005462548229843378,-0.02784634567797184,0.01493039820343256,0.008014898747205734,0.07030065357685089,-0.012396135367453098,-0.10322001576423645,-2.3179733815982964e-34,-0.05535096675157547,-0.07878462225198746,-0.008182202465832233,0.07946352660655975,-0.03510034829378128,0.03156525269150734,0.008016780018806458,0.07888834178447723,0.01910826936364174,0.01887516863644123,0.07577559351921082,-0.048236485570669174,0.005826998967677355,0.07917091250419617,0.022771399468183517,-0.05644393339753151,0.03311171382665634,-0.00462832348421216,-0.062322501093149185,0.0036077587865293026,0.012079830281436443,0.03554295003414154,0.010588387958705425,0.07495121657848358,0.036365024745464325,0.06224428489804268,0.004199774004518986,-0.01634879596531391,-0.05138716474175453,0.0007704156450927258,-0.0056040626950562,-0.059067271649837494,-0.11191769689321518,0.04113413766026497,-0.01693432778120041,0.004095361102372408,0.0389704667031765,0.04486460983753204,-0.013976865448057652,-0.019659003242850304,-0.0196592565625906,0.05198320746421814,-0.04148750379681587,-0.046329811215400696,-0.045737374573946,-0.02877104841172695,0.0362582691013813,0.05250951275229454,0.03815016895532608,-0.006960233673453331,0.016833223402500153,0.054487209767103195,-0.02280072122812271,-0.008952224627137184,-0.12142396718263626,0.07237304002046585,-0.0024499590508639812,0.0030839720275253057,0.022138791158795357,-0.016772836446762085,-0.024006081745028496,0.08713193237781525,-0.0836099162697792,0.05733249709010124,0.07071306556463242,-0.04209012910723686,-0.03555970638990402,0.008615613915026188,0.007056034170091152,-0.0072404732927680016,-0.015987269580364227,-0.06713459640741348,-0.028125587850809097,-0.12497031688690186,0.06007595360279083,0.035797301679849625,0.012143655680119991,-0.012746168300509453,-0.02390378527343273,-0.08178984373807907,0.10000632703304291,-0.02129407972097397,0.003291340311989188,0.04362552985548973,0.04043683782219887,0.02833867445588112,-0.06543173640966415,-0.1422422230243683,0.08157815784215927,-0.016909712925553322,0.03199249505996704,-0.050418902188539505,0.09064920246601105,0.007633117493242025,0.0036642139311879873,-1.9104888338006276e-8,-0.018931569531559944,0.02375972643494606,0.011804204434156418,-0.006953026633709669,0.03633911535143852,-0.045657746493816376,0.056392014026641846,0.05927862226963043,-0.054959747940301895,0.022152341902256012,0.06660986691713333,-0.0405997633934021,-0.06293173134326935,-0.01139527466148138,0.0076522985473275185,0.035175666213035583,0.027859674766659737,0.006364648230373859,-0.03984598070383072,-0.015584331005811691,0.1036883145570755,0.02904103882610798,0.008178717456758022,0.009740409441292286,-0.02985594980418682,0.07932469248771667,-0.030254481360316277,-0.05307288095355034,-0.023666901513934135,0.030095886439085007,-0.03901504725217819,0.04355768486857414,0.019391044974327087,-0.04485534504055977,0.011404094286262989,0.07844271510839462,0.13534286618232727,0.0040639895014464855,-0.10238774865865707,0.04427804425358772,-0.05338075011968613,-0.03231802210211754,-0.06185914948582649,0.06398537755012512,0.10711751878261566,-0.06738478690385818,-0.011119985021650791,0.010033644735813141,0.03416724130511284,-0.00593416066840291,-0.023947443813085556,0.011216997168958187,0.08240161091089249,0.00717162573710084,0.0016917495522648096,-0.0083653274923563,0.027895258739590645,-0.01409129798412323,-0.05970793589949608,-0.021474257111549377,0.10946760326623917,-0.0037939446046948433,0.08820388466119766,0.02031080797314644]},{"text":"Felix and Agatha spent more time in amusement and conversation, and were assisted in their labours by servants.","book":"1984","chapter":75,"embedding":[0.04606285318732262,0.044728346168994904,0.021903302520513535,0.037812020629644394,-0.029653562232851982,0.07337036728858948,-0.02475588582456112,0.020521312952041626,-0.008522769436240196,-0.023473544046282768,0.031308770179748535,0.04402284324169159,-0.12600570917129517,-0.06662233918905258,0.01788056455552578,0.0032556902151554823,0.012574799358844757,0.01677439734339714,-0.03570045158267021,0.010955044068396091,-0.03405095636844635,-0.1035538986325264,-0.023455223068594933,-0.014375784434378147,0.04110325127840042,0.03691944107413292,-0.004821819253265858,-0.04440372809767723,0.009846538305282593,0.016563257202506065,-0.06092091277241707,-0.006381693761795759,0.10365113615989685,-0.009895853698253632,-0.07117489725351334,0.03677627816796303,0.049591951072216034,-0.021970244124531746,0.04416290670633316,-0.01873229816555977,-0.046983812004327774,0.018811574205756187,-0.04411148652434349,0.012413933873176575,-0.10062062740325928,-0.03897106647491455,0.03181510046124458,0.006804453209042549,-0.01777200773358345,0.06428855657577515,-0.057403698563575745,-0.03953370451927185,0.01126412395387888,0.012897007167339325,-0.01086520031094551,0.05234521999955177,0.05111303925514221,-0.03207921236753464,-0.03322755545377731,0.0011565317399799824,-0.13456463813781738,-0.0414946973323822,0.03993983194231987,0.04708509147167206,-0.0537506602704525,-0.09693759679794312,-0.03756004944443703,0.019623227417469025,-0.07148275524377823,0.017376024276018143,-0.010385988280177116,-0.006428268272429705,0.04518787935376167,0.010299702174961567,0.0005564174498431385,0.00578234251588583,-0.06892518699169159,-0.06653229892253876,-0.03294527530670166,-0.10254713147878647,-0.05077638477087021,-0.05616828426718712,-0.06535764038562775,0.05138266459107399,-0.028931977227330208,-0.016088442876935005,-0.06085530295968056,-0.048932768404483795,-0.02362735942006111,-0.012556865811347961,-0.05056676268577576,-0.10762634873390198,-0.03833302855491638,0.041008658707141876,0.025580622255802155,-0.009606615640223026,0.014212754555046558,0.11779176443815231,0.0025199020747095346,-0.009573900140821934,-0.017191777005791664,0.014687306247651577,0.01587456837296486,-0.004689911846071482,-0.001091020298190415,0.03295595198869705,-0.058050256222486496,-0.014740200713276863,0.04619079455733299,-0.010286647826433182,-0.04970897361636162,-0.059846509248018265,-0.0011455236235633492,-0.015222984366118908,0.04919574782252312,0.06468026340007782,-0.03803054243326187,-0.021316686645150185,-0.01438535749912262,0.031248459592461586,0.11852546781301498,0.024777891114354134,-0.030214587226510048,0.01517944410443306,0.036262113600969315,0.01674395613372326,0.04426117241382599,-5.374569189548754e-33,-0.009189608506858349,-0.05197378993034363,0.001080461428500712,0.0936579704284668,0.03653986006975174,0.04356718808412552,-0.031300876289606094,0.04339301958680153,0.05317477881908417,-0.03165069594979286,-0.08312972635030746,-0.06271412968635559,-0.06254816800355911,-0.04422885179519653,-0.056724898517131805,0.033771660178899765,-0.07547908276319504,0.023488912731409073,0.025263821706175804,0.018812773749232292,0.06527796387672424,0.012700600549578667,-0.08362261950969696,0.07197067886590958,-0.0031077475287020206,0.044147688895463943,0.0407819040119648,-0.05345458909869194,0.11287365853786469,0.012453461065888405,0.04412788152694702,0.031132027506828308,0.004460936412215233,-0.015187039971351624,-0.021494325250387192,0.05406322702765465,0.009997908025979996,-0.05577355623245239,0.00901867263019085,0.07912452518939972,-0.011620846576988697,-0.029102114960551262,0.06385646015405655,-0.0821962058544159,-0.06279043108224869,0.020129496231675148,0.02541465125977993,-0.00016300036804750562,0.0453573539853096,0.07194536924362183,0.01402027066797018,0.015020355582237244,0.05167662724852562,0.045106906443834305,0.09305589646100998,0.021272948011755943,0.00928665604442358,0.09327352046966553,-0.03467078506946564,0.022613484412431717,0.023727307096123695,0.0408719927072525,0.07157169282436371,0.04783472791314125,0.04983879253268242,0.0530417338013649,0.09218869358301163,0.045980487018823624,0.07963471859693527,0.03707410395145416,-0.1277376413345337,0.015856415033340454,-0.040530793368816376,-0.06691159307956696,-0.08988931775093079,0.00980298686772585,0.023007776588201523,-0.09275075793266296,0.03952862694859505,-0.026114806532859802,0.048317816108465195,-0.04293583333492279,-0.0395234152674675,-0.0033210807014256716,-0.06281886249780655,-0.06281789392232895,0.04103826731443405,-0.018724512308835983,-0.04881693795323372,0.0851861834526062,0.03001919388771057,0.05776558816432953,0.004841347690671682,0.0502314455807209,-0.01951810158789158,-1.394172919479326e-34,-0.04043637588620186,-0.031018469482660294,-0.05869395285844803,-0.0227625984698534,-0.023389363661408424,0.08584506064653397,-0.08180737495422363,-0.04327497258782387,-0.035239096730947495,0.024264365434646606,-0.09510611742734909,-0.017978612333536148,0.039248254150152206,0.01238475926220417,-0.018078522756695747,-0.04524526745080948,0.02707456424832344,0.005956425331532955,0.015939509496092796,0.01740335486829281,0.06217176094651222,0.05716988071799278,-0.01209377683699131,-0.05614113807678223,0.0593620128929615,0.03975486382842064,0.03989020735025406,0.015588768757879734,-0.09558766335248947,0.02039606124162674,0.019460121169686317,0.027753204107284546,0.002857517683878541,-0.05494435876607895,0.03262283280491829,0.03703375905752182,-0.06517986208200455,0.047161269932985306,-0.0040603745728731155,-0.05410366505384445,0.04667021334171295,-0.08013442158699036,0.03281028941273689,0.0475529246032238,-0.047774411737918854,-0.018284831196069717,-0.10570044070482254,-0.034897588193416595,0.037930507212877274,0.050523076206445694,-0.02581561729311943,-0.036014147102832794,-0.10414380580186844,-0.03735848516225815,-0.05692892521619797,-0.07493920624256134,-0.060635872185230255,-0.078389011323452,0.0790085643529892,-0.00901745818555355,-0.1088370829820633,-0.016361001878976822,0.005654460284858942,0.02845931053161621,-0.05088523402810097,-0.039573416113853455,0.004707640968263149,-0.005430073477327824,-0.032331131398677826,0.04110833257436752,0.04026094824075699,0.005768266506493092,-0.025509899482131004,0.04915205016732216,0.029595602303743362,0.02696596272289753,-0.016415076330304146,-0.05367417633533478,-0.043931372463703156,-0.013321294449269772,-0.056069500744342804,-0.016266673803329468,0.056490346789360046,0.07824695855379105,-0.10892192274332047,0.06533366441726685,-0.01885477639734745,0.06731604039669037,-0.04114825651049614,0.026334073394536972,0.031519778072834015,0.0009555257274769247,0.14032167196273804,-0.09743140637874603,-0.044753000140190125,-2.585800018550799e-8,0.023753320798277855,-0.01731386035680771,0.03593587875366211,-0.046379148960113525,0.01799921877682209,-0.10854718834161758,-0.054234735667705536,0.16608558595180511,-0.09398345649242401,0.08695794641971588,-0.019732732325792313,0.07655257731676102,0.08615022897720337,0.018966851755976677,0.17032653093338013,-0.021907735615968704,0.013834770768880844,-0.06673642247915268,-0.033714085817337036,-0.02732907049357891,0.012040011584758759,-0.01020196732133627,-0.012131067924201488,-0.015530270524322987,-0.10202695429325104,0.07887233048677444,0.042789239436388016,-0.063638836145401,0.03537539765238762,0.06687194854021072,0.006826190277934074,0.024711530655622482,-0.03325818106532097,-0.011143941432237625,-0.07189072668552399,-0.06269250065088272,0.021967586129903793,-0.06269042938947678,-0.04774971306324005,-0.01964288018643856,0.018359189853072166,-0.05684729665517807,-0.04088292643427849,-0.023426508530974388,0.1366652548313141,0.013680575415492058,0.035124171525239944,-0.014416306279599667,0.001273025874979794,-0.03380078077316284,-0.04890100657939911,-0.015497356653213501,0.035678476095199585,0.033622004091739655,0.014975032769143581,-0.04528658092021942,-0.017472071573138237,0.10272938758134842,-0.019605500623583794,0.0389198400080204,0.011768219992518425,0.02111339010298252,0.013596078380942345,-0.012760257348418236]},{"text":"The more I saw of them, the greater became my desire to claim their protection and kindness; my heart yearned to be known and loved by these amiable creatures; to see their sweet looks directed towards me with affection was the utmost limit of my ambition.","book":"1984","chapter":75,"embedding":[-0.010745862498879433,0.1318434625864029,0.10326274484395981,0.043641429394483566,0.009764078073203564,0.007391665130853653,0.006545134354382753,0.009392277337610722,0.009136304259300232,0.03021176904439926,0.024070557206869125,-0.06105058267712593,0.015444074757397175,-0.04534749686717987,0.0588083416223526,0.03259525075554848,0.014045262709259987,-0.00894797220826149,-0.10759925097227097,-0.0036492266226559877,-0.036077648401260376,-0.04391774162650108,-0.020258158445358276,0.035466358065605164,-0.12282637506723404,0.008195093832910061,-0.03568509966135025,0.014745627529919147,0.04516219347715378,0.02950989082455635,-0.043575186282396317,-0.015112433582544327,0.09354696422815323,0.07461465150117874,-0.023783035576343536,0.05300536006689072,-0.022729847580194473,-0.05129383131861687,0.06984268873929977,-0.07757560163736343,-0.01614062860608101,-0.036946192383766174,0.06439898908138275,0.018246563151478767,-0.06414739787578583,-0.07581745088100433,0.016240937635302544,-0.01790732890367508,-0.022176140919327736,0.011135801672935486,-0.09419730305671692,-0.04596617817878723,-0.052460718899965286,-0.0017776187742128968,-0.010497567243874073,-0.008864115923643112,-0.04461425542831421,-0.08631107956171036,-0.01491118036210537,-0.02435527928173542,-0.02842501737177372,0.03815032169222832,0.07353106886148453,0.02327861823141575,-0.09519483894109726,-0.054577890783548355,0.009544311091303825,0.0105555709451437,-0.018423881381750107,0.08174676448106766,0.019318316131830215,-0.009568656794726849,-0.0088096484541893,-0.04837340489029884,-0.054661501199007034,-0.04940960556268692,-0.018069278448820114,-0.08375213295221329,-0.04918816313147545,-0.06422088295221329,-0.0728074163198471,0.011254055425524712,-0.017453430220484734,0.028492970392107964,-0.02999560721218586,-0.03191132843494415,0.06055393069982529,-0.12340216338634491,-0.012313518673181534,0.04343458637595177,-0.003343222662806511,-0.03189343586564064,-0.05196303129196167,0.03952432796359062,-0.027488796040415764,-0.08454347401857376,-0.007448904681950808,-0.03531886264681816,0.026593869552016258,0.05548681318759918,0.01571914181113243,-0.021164456382393837,-0.030558520928025246,0.047410573810338974,-0.006930154748260975,-0.04696931689977646,-0.13630840182304382,-0.04696991294622421,0.008173138834536076,-0.00344470445998013,0.04477900266647339,-0.0055169519037008286,0.061740122735500336,0.025289149954915047,0.027958406135439873,0.006523843854665756,-0.08510176092386246,0.01378516387194395,0.06472992897033691,0.024080222472548485,0.06968651711940765,0.06082708016037941,-0.006934633478522301,0.0016782641177996993,-0.06926336884498596,-0.07866834104061127,-0.03648027777671814,1.7161316386199347e-34,-0.003680775174871087,-0.009129773825407028,0.047454431653022766,-0.025879528373479843,0.024949373677372932,0.002482209587469697,-0.04738176241517067,0.05332119017839432,-0.06421895325183868,-0.025365615263581276,-0.02043812908232212,0.11810950934886932,0.020795002579689026,0.03084038943052292,-0.10070943832397461,-0.06471462547779083,-0.09583444893360138,-0.0029618225526064634,0.05789521709084511,0.04821869730949402,-0.04176538065075874,0.00026616977993398905,-0.037881139665842056,0.02232234738767147,-0.059537727385759354,-0.057262539863586426,-0.046268898993730545,-0.03851007670164108,-0.05648922547698021,0.02675309032201767,0.0869792029261589,0.01081779133528471,0.041978225111961365,-0.019385457038879395,0.007053358014672995,-0.002437242539599538,-0.009111364372074604,-0.07232663035392761,0.00016898679314181209,0.0309391301125288,0.02300051972270012,-0.05579943209886551,0.019711140543222427,-0.03656109422445297,0.010094715282320976,0.04133043810725212,-0.0008793050074018538,0.08968093991279602,-0.1351030170917511,-0.04027184098958969,-0.05926855653524399,-0.02425304427742958,0.03560252487659454,-0.002197223249822855,0.01776154339313507,0.021731888875365257,-0.024779314175248146,0.054750822484493256,-0.017589451745152473,-0.01612391695380211,-0.03854743391275406,-0.08827166259288788,0.06935295462608337,-0.04121533781290054,0.011572948656976223,-0.06303428113460541,0.05543341487646103,0.0026832432486116886,0.04205900430679321,0.029993223026394844,-0.05892106145620346,0.06736358255147934,-0.04400968551635742,-0.005283278413116932,0.018359433859586716,-0.04570503160357475,0.04107470065355301,-0.0031167841516435146,0.02969563752412796,-0.014166134409606457,-0.006382771302014589,0.08782369643449783,-0.02204151079058647,-0.000504560477565974,0.05908380076289177,-0.003721771761775017,0.02894454635679722,-0.1455364227294922,0.011369796469807625,0.046075232326984406,0.004241233691573143,0.004996783100068569,0.056917157024145126,-0.1150660589337349,-0.09037390351295471,-2.727065527658111e-33,0.05391192436218262,-0.023632455617189407,0.012806820683181286,0.029089536517858505,-0.007296137046068907,-0.047252897173166275,-0.06858278810977936,0.03515959531068802,0.027838971465826035,0.07403247803449631,0.03650079667568207,0.030706455931067467,0.039909478276968,-0.07725577056407928,-0.02234983816742897,-0.07606342434883118,0.04168521240353584,-0.06106129288673401,0.039363082498311996,-0.04282064363360405,-0.002166608115658164,0.06920983642339706,0.012461401522159576,0.03270464017987251,-0.022418402135372162,0.034868501126766205,0.07359691709280014,-0.007828215137124062,0.02227298729121685,-0.07086311280727386,0.11693193018436432,-0.008172576315701008,-0.14356447756290436,0.0237263273447752,0.056293535977602005,0.019340500235557556,0.017047015950083733,0.020747175440192223,0.0012652055593207479,0.03701455891132355,-0.025413494557142258,-0.002511426107957959,0.05511542409658432,0.056729964911937714,0.03090709261596203,-0.041595708578825,0.022623222321271896,-0.0014487103326246142,0.028262751176953316,-0.03335626423358917,-0.06141563132405281,-0.03988412022590637,0.025856105610728264,0.011067619547247887,-0.024378566071391106,-0.07673142850399017,0.1022808849811554,-0.022770104929804802,0.13626299798488617,-0.04146593436598778,-0.03742499649524689,0.000868361908942461,-0.049759455025196075,0.07434631884098053,-0.05443374067544937,-0.002270210301503539,-0.013308440335094929,-0.012437860481441021,-0.05202722176909447,-0.03903979808092117,-0.005836561322212219,-0.059358805418014526,-0.06471932679414749,0.068734310567379,-0.011965581215918064,-0.03822346404194832,-0.010731973685324192,-0.04677388072013855,-0.01644301787018776,0.006475361064076424,-0.04616055265069008,-0.011088605038821697,0.015714216977357864,0.026807323098182678,0.015573128126561642,-0.019405052065849304,-0.06888918578624725,0.02323201857507229,0.043027013540267944,-0.054778195917606354,-0.06396321207284927,-0.0060236649587750435,0.012448867782950401,-0.037818752229213715,0.018848642706871033,-3.773426016095982e-8,-0.01573340781033039,-0.011152355000376701,-0.06530246883630753,-0.04976220428943634,0.05391906201839447,0.012817839160561562,0.0055591994896531105,0.0033264136873185635,-0.07979363203048706,0.07681933045387268,0.03188623487949371,0.03775498643517494,0.04431275278329849,0.07996223121881485,0.16547824442386627,0.007481974549591541,0.08249568194150925,-0.09385808557271957,0.05342274159193039,-0.009490782395005226,-0.021847117692232132,0.03130648285150528,-0.006627456285059452,-0.07427673041820526,-0.0403517484664917,0.02705206535756588,-0.008649834431707859,-0.03697286173701286,-0.040727172046899796,0.05924278497695923,0.05078327655792236,0.06666060537099838,0.002900352468714118,0.006448345258831978,0.05547643452882767,0.03694816678762436,-0.09027210623025894,-0.03284141793847084,0.12554092705249786,0.028465431183576584,0.06481924653053284,0.057455841451883316,0.003328817430883646,0.04852331057190895,0.04198167100548744,-0.034759387373924255,0.1057150661945343,0.014094886370003223,-0.022498873993754387,0.00451270118355751,-0.03728627413511276,0.08009370416402817,0.021241385489702225,0.09199795126914978,-0.0977785512804985,-0.06495770812034607,-0.021157003939151764,0.0877636969089508,-0.008984989486634731,0.026580307632684708,0.14236387610435486,0.010104912333190441,-0.103485606610775,-0.030937939882278442]},{"text":"All was silent in and around the cottage; it was an excellent opportunity; yet, when I proceeded to execute my plan, my limbs failed me and I sank to the ground.","book":"1984","chapter":76,"embedding":[0.09187383949756622,0.038668759167194366,0.08403541147708893,0.05827252194285393,0.06176907196640968,-0.04028378799557686,0.024884462356567383,-0.007978704757988453,-0.003623642958700657,-0.010958531871438026,0.016831161454319954,0.031453829258680344,0.008122961036860943,0.03726523742079735,-0.01975158601999283,-0.004681192338466644,0.012654410675168037,0.0003205499961040914,-0.03870784491300583,0.10120698809623718,0.0010307575576007366,0.12417788058519363,0.08513788133859634,-0.007202515844255686,-0.02602638490498066,0.009115349501371384,0.05012253299355507,-0.034156884998083115,0.010890805162489414,-0.054987139999866486,0.008520386181771755,0.01293292548507452,-0.04660111293196678,-0.053619883954524994,0.07048729807138443,0.0942293107509613,0.044911134988069534,-0.06429789960384369,0.04184069111943245,0.0008012477192096412,-0.0521819032728672,-0.0057280343025922775,0.05121106281876564,-0.023404819890856743,0.014452198520302773,0.005187392700463533,-0.021013610064983368,-0.07723883539438248,0.04313226044178009,-0.0337587334215641,-0.007591104134917259,-0.013229141011834145,0.03067278116941452,-0.055841557681560516,0.007288220804184675,-0.016630174592137337,0.03560534492135048,0.005354816094040871,0.020676493644714355,-0.01356421411037445,0.012348773889243603,0.006779733579605818,0.003433041740208864,0.015651952475309372,0.03671346604824066,-0.01720946840941906,0.01893770694732666,-0.05428332835435867,0.02525099739432335,0.07185088098049164,-0.02286459505558014,-0.05114023759961128,0.028050264343619347,-0.03325163573026657,-0.10221684724092484,-0.017172986641526222,-0.0065040914341807365,-0.08003762364387512,0.018118545413017273,0.047455333173274994,-0.08021631091833115,-0.031947605311870575,-0.05565802752971649,0.041936781257390976,-0.04582224041223526,0.001769557478837669,0.08855559676885605,0.045478079468011856,0.04010443016886711,-0.01591891050338745,-0.008397268131375313,-0.07128334045410156,-0.07246159762144089,0.08281225711107254,0.06977131217718124,0.047597989439964294,-0.06961064040660858,-0.030685214325785637,-0.053199443966150284,0.040110789239406586,0.02097061462700367,0.013286878354847431,-0.01363502535969019,-0.0034987698309123516,0.008100183680653572,-0.059271130710840225,-0.03823830559849739,-0.03958340734243393,-0.02419792301952839,-0.015339966863393784,-0.02757679671049118,-0.055653586983680725,0.11262047290802002,0.08314036577939987,-0.02211080491542816,0.052143409848213196,-0.05726156756281853,-0.026983436197042465,-0.00439702533185482,0.041311390697956085,0.06460956484079361,0.08244132250547409,-0.04382414370775223,0.07275371998548508,-0.09462646394968033,-0.06686538457870483,0.058377813547849655,-7.229364460637964e-33,0.04654007777571678,-0.05200968682765961,-0.02331506833434105,0.021835042163729668,0.14013637602329254,-0.08276867866516113,-0.0691828802227974,-0.01902351714670658,0.0008367951377294958,0.08358489722013474,0.008335014805197716,-0.09009262174367905,0.01749552972614765,-0.04180813208222389,-0.07888476550579071,-0.006835632491856813,0.029710274189710617,0.004999419674277306,0.008578167296946049,0.01452784426510334,0.03111911192536354,0.0031173464376479387,-0.004243585746735334,-0.0025961636565625668,-0.0031165408436208963,0.015248003415763378,-0.0313737727701664,-0.010371007956564426,0.017298594117164612,0.012969101779162884,-0.027681764215230942,0.023278826847672462,0.07608404010534286,-0.05869384855031967,0.028432531282305717,0.021697822958230972,0.02331344224512577,-0.020900970324873924,-0.09299410134553909,-0.011727085337042809,-0.03751535341143608,-0.001029366860166192,0.02023283578455448,-0.020302100107073784,0.01940094120800495,-0.010513173416256905,-0.058686718344688416,0.05666755884885788,-0.08677458018064499,0.020389366894960403,-0.02745530940592289,0.08998651057481766,0.03841140493750572,0.03814852982759476,0.025061868131160736,0.021357856690883636,0.05553769692778587,0.005990726873278618,-0.0065022846683859825,0.04760634899139404,0.039318110793828964,0.015767443925142288,-0.019709020853042603,-0.05164242163300514,-0.03199967369437218,-0.08880235999822617,-0.009978648275136948,-0.024333685636520386,0.031962014734745026,-0.1061791181564331,-0.06596903502941132,-0.01883573830127716,0.008443335071206093,0.04874951019883156,-0.020351748913526535,-0.03855469450354576,-0.01949353888630867,-0.017121193930506706,0.00702162180095911,-0.09714854508638382,0.08794641494750977,0.009799919091165066,-0.09431727230548859,0.08762583881616592,0.0854714885354042,0.009066956117749214,0.047970615327358246,-0.1297684758901596,-0.0412343330681324,0.053459808230400085,-0.0873434990644455,-0.008418315090239048,0.024340929463505745,-0.1477588266134262,-0.012843562290072441,3.1223907063243774e-33,0.055772051215171814,0.05006956309080124,-0.08900193125009537,-0.0018318919464945793,-0.01393692847341299,-0.03197462111711502,-0.02251633256673813,-0.11164596676826477,-0.02682209014892578,0.022303415462374687,-0.08771301805973053,0.03086058795452118,0.02321016415953636,0.05809279531240463,-0.0061136032454669476,-0.03977013751864433,0.055001527070999146,-0.0100247198715806,0.04516792297363281,0.06716428697109222,0.004661564249545336,0.06783439218997955,0.05984384939074516,0.001397608546540141,0.029529493302106857,0.0591299794614315,0.08592020720243454,-0.029279492795467377,-0.10789519548416138,-0.10622955858707428,0.07752335071563721,-0.0559782013297081,-0.05072665959596634,-0.04322001710534096,0.0042906636372208595,0.05667100474238396,-0.06126726046204567,-0.0064168707467615604,-0.04154375195503235,-0.07634247839450836,0.05063231289386749,-0.059432078152894974,0.011280994862318039,0.031116453930735588,-0.009651321917772293,-0.08736270666122437,-0.00025162799283862114,-0.04548561945557594,0.03844226896762848,0.02230522409081459,-0.07154688239097595,0.09873875975608826,0.06372887641191483,-0.0002629995287861675,0.07033079117536545,-0.10450025647878647,0.0662541463971138,-0.12232290208339691,0.04275425896048546,0.019620172679424286,-0.08452708274126053,0.05408165231347084,-0.058041006326675415,0.06537071615457535,0.07289821654558182,0.05246838182210922,-0.11255621910095215,-0.03012833185493946,0.021341398358345032,0.010927469469606876,-0.06196081265807152,0.03014715202152729,-0.02386450581252575,0.014544263482093811,0.019077256321907043,-0.005927494261413813,-0.035934194922447205,-0.03068503364920616,-0.03642381727695465,-0.041417334228754044,0.02753104828298092,-0.0631018877029419,0.005724525544792414,0.022488392889499664,0.027916355058550835,0.02668013423681259,0.00868194829672575,0.016919303685426712,-0.02978242002427578,-0.02089514583349228,0.015945853665471077,-0.017272338271141052,0.08805015683174133,0.0003348033642396331,0.022666795179247856,-3.137870052682956e-8,-0.038439247757196426,0.05725080147385597,-0.001487398287281394,-0.03667808696627617,0.005020748358219862,-0.07899206131696701,0.003546970896422863,0.02484976314008236,-0.059295330196619034,0.030980035662651062,-0.1092589721083641,-0.024418914690613747,0.04100531339645386,0.12397489696741104,0.07146371155977249,-0.008878253400325775,0.0645795688033104,-0.01806519366800785,-0.05836569517850876,-0.024199409410357475,0.006380390841513872,0.03477543964982033,-0.08287449926137924,0.008520293980836868,0.0033602023031562567,0.006778473500162363,0.02565412037074566,-0.05999432131648064,-0.0442928820848465,0.04217289760708809,0.06421579420566559,0.026854680851101875,-0.06801462173461914,0.0338144488632679,-0.10607703775167465,0.018872903659939766,0.043349891901016235,-0.009511884301900864,0.03628959134221077,-0.03609384596347809,-0.07732029259204865,0.06129977107048035,0.04689125716686249,0.01957014389336109,0.050460461527109146,0.050472453236579895,0.007876613177359104,-0.03433682769536972,-0.008003738708794117,-0.0012204630766063929,-0.023805517703294754,0.07056773453950882,0.03295809403061867,0.09721051156520844,0.0891893059015274,0.016158604994416237,-0.016414174810051918,-0.009603705257177353,-0.09240259975194931,0.04710066318511963,-0.005891262553632259,0.0198630653321743,-0.14062926173210144,-0.07660328596830368]},{"text":"I tenderly love these friends; I have, unknown to them, been for many months in the habits of daily kindness towards them; but they believe that I wish to injure them, and it is that prejudice which I wish to overcome.’ “‘Where do these friends reside?’ “‘Near this spot.’ “The old man paused and then continued, ‘If you will unreservedly confide to me the particulars of your tale, I perhaps may be of use in undeceiving them.","book":"1984","chapter":76,"embedding":[-0.017548732459545135,0.11100468039512634,0.0864000916481018,0.06495196372270584,0.03342590481042862,0.016721831634640694,0.06227646768093109,-0.06431108713150024,-0.040658485144376755,-0.02434627339243889,0.028226066380739212,0.044932495802640915,0.027562633156776428,-0.018415391445159912,-0.03179767355322838,0.03479692339897156,-0.06882048398256302,0.012183723971247673,-0.04343340918421745,0.03101799450814724,-0.04585469514131546,0.011044738814234734,0.03677427023649216,0.0070500969886779785,-0.02728976309299469,-0.042790982872247696,0.010783952660858631,-0.03818649426102638,-0.014281135983765125,0.012976542115211487,-0.0011995466193184257,0.042962539941072464,-0.024817675352096558,0.01573980785906315,0.012749939225614071,0.056903526186943054,0.0083897290751338,0.03695888817310333,0.04647400975227356,-0.003825269639492035,-0.001038387417793274,-0.018382281064987183,0.022905858233571053,-0.01589810661971569,-0.028460893779993057,-0.02382868155837059,-0.01880669593811035,0.024416321888566017,0.010895509272813797,-0.01631232164800167,-0.08121849596500397,0.02521105296909809,-0.05677109956741333,-0.02418634667992592,0.016157250851392746,0.06081925705075264,0.017451809719204903,-0.004195151850581169,-0.0023751663975417614,-0.013577773235738277,0.042929477989673615,-0.059954576194286346,0.022963693365454674,0.03801390528678894,-0.07529392838478088,0.007473811972886324,0.01931883580982685,0.1244245246052742,-0.00797936599701643,0.04333416745066643,-0.01570063829421997,0.02459024079144001,-0.06824596971273422,-0.028577487915754318,-0.06869227439165115,-0.016302574425935745,-0.04075132682919502,-0.10468555241823196,-0.05280374363064766,-0.08059031516313553,-0.09118257462978363,0.0032849397975951433,0.029448915272951126,-0.005906126461923122,-0.05820629745721817,-0.05938561260700226,0.039380475878715515,-0.12888696789741516,-0.004611143842339516,0.025267433375120163,-0.03591751307249069,0.008744882419705391,-0.09818980097770691,0.02380381152033806,0.039172735065221786,-0.024644769728183746,-0.02992064133286476,0.03585098311305046,-0.08190804719924927,0.09349846094846725,0.019459901377558708,0.024202829226851463,0.002378572477027774,0.0827593058347702,-0.037013206630945206,-0.002388147171586752,-0.1587725728750229,-0.05030190944671631,-0.0012362557463347912,0.039230335503816605,0.021765945479273796,-0.023380309343338013,-0.03496704623103142,-0.006388226989656687,0.01147296279668808,0.014800317585468292,0.03662465140223503,-0.04943087324500084,-0.01597031205892563,-0.00928959809243679,-0.007109955418854952,0.08184583485126495,-0.025585878640413284,0.04906155541539192,-0.08416213095188141,-0.044020216912031174,-0.014502519741654396,2.0870650569590242e-33,0.038569431751966476,0.015487507916986942,-0.060286130756139755,0.017158281058073044,0.03281780332326889,-0.002960789715871215,-0.09334120154380798,0.018444599583745003,0.005402057431638241,-0.033641744405031204,-0.011061469092965126,0.04155314713716507,0.026817455887794495,-0.08717084676027298,-0.08650463074445724,0.02454816736280918,-0.035230621695518494,0.03981821984052658,0.024108054116368294,0.00853440910577774,0.03143235296010971,0.07719356566667557,-0.048564136028289795,-0.05412830784916878,-0.09391223639249802,-0.03662412241101265,0.031200885772705078,-0.024291647598147392,0.06689421832561493,0.033337969332933426,0.08094087988138199,0.06968750804662704,0.038333430886268616,-0.07667037099599838,-0.018262814730405807,0.10347052663564682,-0.03319154679775238,-0.04465905949473381,-0.014630722813308239,0.00956987775862217,0.06727708876132965,0.011426321230828762,0.0498676560819149,-0.06780712306499481,0.035133399069309235,0.014320967718958855,0.01329148281365633,-0.012492619454860687,-0.06214985251426697,-0.04015377536416054,-0.02246098965406418,0.02458963729441166,-0.05624384433031082,0.018840227276086807,-0.006887795403599739,0.009319781325757504,-0.020950961858034134,0.0035143247805535793,0.07172300666570663,-0.00277574616484344,0.10193230956792831,-0.048057787120342255,-0.02069643698632717,-0.05653074011206627,0.015876758843660355,-0.028192812576889992,-0.021413318812847137,-0.0788273736834526,0.021048812195658684,-0.014420101419091225,-0.07042361050844193,0.04990645498037338,-0.059173669666051865,0.006548467092216015,-0.027397481724619865,-0.032979484647512436,-0.06268306821584702,-0.034477587789297104,0.014745200052857399,-0.05981824919581413,0.0665513202548027,-0.030349960550665855,-0.199075847864151,0.051042474806308746,-0.00893687829375267,-0.034332677721977234,0.029682587832212448,-0.15947231650352478,-0.015326031483709812,0.13209453225135803,0.024501468986272812,-0.0023491024039685726,0.005857327487319708,-0.10797541588544846,-0.09121529012918472,-5.1198465432232724e-33,0.020960984751582146,0.0012975229183211923,0.0384366400539875,0.015215790830552578,0.00033730550785548985,-0.06717446446418762,-0.08919387310743332,0.07829572260379791,0.02863890677690506,0.04120463877916336,-0.17942051589488983,-0.03792179748415947,0.1296335756778717,-0.006678799632936716,-0.04742051288485527,-0.009217137470841408,0.09141018241643906,0.009372357279062271,-0.020755106583237648,-0.046527136117219925,0.06660451740026474,-0.004994446877390146,0.016673199832439423,0.01699463464319706,0.05537249892950058,0.04851698875427246,0.11609795689582825,-0.11280669271945953,-0.10347629338502884,-0.03942152112722397,0.051364656537771225,-0.014791828580200672,-0.09965471178293228,-0.039671655744314194,-0.0016590578015893698,0.040856603533029556,-0.011888066306710243,0.010367919690907001,-0.03921535611152649,-0.10163915157318115,-0.023195970803499222,-0.004029544536024332,-0.0351482518017292,-0.03184165060520172,0.003728606039658189,0.001310998690314591,0.0013079872587695718,0.008781072683632374,-0.02337859570980072,-0.028436804190278053,0.027983158826828003,0.04824845865368843,0.029592938721179962,-0.009448232129216194,-0.003526754444465041,-0.08603764325380325,0.03849753737449646,-0.00534295616671443,0.08265844732522964,0.01581207849085331,0.009088918566703796,0.029218150302767754,-0.06908217072486877,0.08825252950191498,0.02185259386897087,0.010517730377614498,-0.061400625854730606,0.028508219867944717,-0.02150074578821659,0.035618580877780914,-0.03128887340426445,-0.04931715130805969,-0.043072741478681564,-0.06831071525812149,0.048147182911634445,0.04609389975667,-0.03529318794608116,-0.04527217522263527,-0.04132707789540291,-0.009515732526779175,0.0536615252494812,-0.041983358561992645,0.06864971667528152,0.08943866193294525,0.002268748125061393,-0.03672173619270325,0.016338108107447624,0.0776093602180481,0.0016612247563898563,0.05818650498986244,-0.03407752513885498,0.010345464572310448,0.010010105557739735,-0.08290782570838928,0.017898917198181152,-5.887263654358321e-8,0.02371426485478878,-0.08915778994560242,0.006707196123898029,-0.007195347920060158,-0.030146660283207893,0.020062711089849472,-0.01913927122950554,0.07952799648046494,-0.05611596629023552,0.036852624267339706,-0.012948954477906227,0.027381768450140953,0.039860326796770096,0.022657791152596474,0.07041877508163452,0.016504114493727684,0.13388288021087646,-0.09243117272853851,-0.010016331449151039,0.03381016477942467,0.028410444036126137,0.040767163038253784,0.02335667423903942,-0.008511471562087536,0.001346451579593122,-0.0051320577040314674,-0.005732580553740263,-0.08365681767463684,-0.013165418058633804,0.03348656743764877,-0.0526609867811203,0.06461287289857864,0.010673648677766323,0.0170707069337368,0.03227924928069115,0.012676247395575047,-0.032290320843458176,0.01641593687236309,0.029905790463089943,-0.03744923323392868,0.03489524871110916,-0.031800493597984314,0.04976580664515495,0.04320048913359642,0.059732649475336075,-0.05683583766222,0.10983537882566452,0.01113932579755783,-0.05439659208059311,0.01661870814859867,-0.032667625695466995,0.04164540395140648,0.04946764186024666,0.06079770624637604,-0.09231414645910263,-0.06349903345108032,-0.058974191546440125,0.09553645551204681,0.003035526955500245,-0.03524677827954292,0.03865981101989746,0.096436507999897,-0.04572029411792755,-0.06685618311166763]},{"text":"I had not a moment to lose, but seizing the hand of the old man, I cried, ‘Now is the time!","book":"1984","chapter":77,"embedding":[-0.026359573006629944,0.07982005923986435,0.04868992418050766,0.0014065215364098549,0.09046109765768051,0.053061593323946,0.08562928438186646,-0.011586763896048069,0.05561133101582527,-0.06672114878892899,-0.04586280509829521,0.0432310625910759,0.06181047856807709,0.017673803493380547,-0.01609145663678646,-0.004959495738148689,-0.12841366231441498,0.033557530492544174,0.011240554042160511,0.0868181586265564,0.03332418575882912,0.06560738384723663,-0.05912547931075096,0.020506301894783974,-0.002428384032100439,0.025788238272070885,-0.03283999115228653,0.042637698352336884,0.030255703255534172,-0.00599386403337121,-0.009744485840201378,-0.015615732409060001,-0.0244253259152174,0.027348589152097702,-0.025045255199074745,0.00573359802365303,-0.045241206884384155,-0.049358900636434555,0.00018705881666392088,0.02016841620206833,0.011220104061067104,-0.01968866027891636,0.030104510486125946,0.03466441482305527,0.07429689168930054,0.039144206792116165,0.0018608593381941319,-0.02212495543062687,0.11956331878900528,-0.010438322089612484,-0.04121582582592964,0.0035740055609494448,0.03246808424592018,-0.1248171329498291,0.0275531355291605,0.04517926275730133,0.11934766918420792,-0.022937849164009094,-0.04191909357905388,0.0011897922959178686,0.0024360991083085537,0.036313045769929886,0.0034622838720679283,0.01701401174068451,-0.038180917501449585,-0.06159216910600662,0.05228351056575775,-0.03688008710741997,-0.049186162650585175,0.14782248437404633,-0.002446491038426757,-0.033329322934150696,-0.008489550091326237,-0.037527505308389664,-0.05438058078289032,-0.02847147546708584,-0.0008245940553024411,-0.03511025011539459,0.0074573298916220665,0.03706539422273636,-0.001253211172297597,-0.022828619927167892,-0.0700787603855133,0.015813495963811874,-0.05321542173624039,-0.09770090132951736,0.07067371904850006,-0.025349151343107224,0.04304452985525131,-0.009169559925794601,-0.051253970712423325,-0.02312847413122654,-0.10522583872079849,0.1021597757935524,0.012074321508407593,-0.029172183945775032,-0.026025794446468353,0.1404252052307129,-0.1325138360261917,0.07848445326089859,-0.007129639387130737,0.04696178436279297,-0.03542269021272659,-0.049940597265958786,0.039854228496551514,-0.0422448068857193,-0.020631462335586548,-0.012630700133740902,-0.040395818650722504,0.02926625870168209,0.009920292533934116,-0.02671336941421032,-0.014857394620776176,0.02761220373213291,-0.00039914625813253224,-0.013462579809129238,-0.1143704429268837,-0.051140181720256805,-0.026292739436030388,0.143562451004982,-0.028351034969091415,0.0656551942229271,-0.07674100995063782,0.05801665037870407,-0.0028467706870287657,0.0012157645542174578,0.04764942452311516,-7.779436307421284e-33,0.03175390884280205,-0.010893258266150951,-0.06037589907646179,0.04158453270792961,0.004928079433739185,0.050193339586257935,-0.03802096098661423,-0.023395057767629623,-0.050232842564582825,-0.029976356774568558,0.011952202767133713,-0.003549801418557763,-0.049017392098903656,-0.12480585277080536,-0.05001504346728325,0.006096700672060251,-0.08960246294736862,-0.04040466994047165,0.20238777995109558,0.02462688647210598,-0.08235035836696625,0.08282864838838577,-0.034704506397247314,-0.011312793008983135,-0.0018132998375222087,0.007104218006134033,-0.0268764216452837,-0.027490884065628052,0.05813928693532944,-0.010954579338431358,-0.01698039285838604,0.020875170826911926,0.005069989711046219,-0.037159379571676254,-0.03631912171840668,-0.02070152387022972,-0.036875464022159576,-0.006193498615175486,-0.03618963062763214,0.022623596712946892,-0.057801760733127594,0.04644855856895447,0.012388188391923904,0.0012362261768430471,-0.07161181420087814,-0.04185839369893074,-0.004473391454666853,0.039552826434373856,-0.027751946821808815,-0.042184602469205856,0.0004711689834948629,-0.02930927462875843,0.05334387719631195,0.025023328140378,0.042243823409080505,-0.019483810290694237,0.007659726310521364,0.02951761707663536,-0.0007406186778098345,-0.02092226967215538,0.06567229330539703,-0.008799404837191105,0.07508198171854019,0.03480583429336548,-0.03535647690296173,-0.024350440129637718,-0.004263634793460369,-0.05409759655594826,-0.054233234375715256,0.01704697497189045,-0.030735528096556664,-0.10421451926231384,-0.06449098140001297,-0.03531695902347565,0.01245470717549324,-0.06388841569423676,0.011205039918422699,-0.03617719188332558,0.022293228656053543,-0.057111822068691254,0.08291518688201904,-0.0384976826608181,-0.0053245374001562595,0.02178116701543331,0.08073188364505768,-0.02960917539894581,0.036477070301771164,-0.1812291443347931,-0.024895327165722847,0.09765872359275818,-0.09829147905111313,-0.04263685643672943,0.08549461513757706,-0.009730556979775429,-0.020689791068434715,4.806745541358094e-33,0.008897330611944199,-0.03328010067343712,0.036380548030138016,0.07329068332910538,0.04559614136815071,-0.07159589231014252,-0.00677620992064476,0.053939636796712875,-0.03481622412800789,-0.03010050766170025,0.022605009377002716,-0.03276738524436951,0.03544672206044197,0.043669696897268295,-0.06831137090921402,0.013802403584122658,0.03985856473445892,-0.025884244590997696,-0.033944059163331985,-0.05256463959813118,-0.0006569807301275432,0.05272400751709938,0.09055023640394211,-0.013655120506882668,-0.03867393359541893,-0.022518616169691086,0.06660116463899612,0.01875373162329197,-0.01713908463716507,-0.12201519310474396,-0.01050163060426712,-0.04484868049621582,-0.06362751126289368,0.03685588762164116,-0.009879599325358868,0.019996723160147667,0.010536355897784233,-0.05997366085648537,-0.03706226497888565,0.0069427816197276115,-0.035525843501091,0.032235175371170044,0.033614207059144974,0.05280352383852005,0.022082306444644928,0.04149632528424263,0.028490830212831497,0.004591469187289476,0.04832286387681961,0.026129838079214096,-0.02935033291578293,0.009490957483649254,0.000905199907720089,0.013643328100442886,0.008299915120005608,-0.04750515893101692,0.052040945738554,-0.06793362647294998,0.031117836013436317,0.0036146873608231544,-0.11241202056407928,-0.04972027614712715,-0.05761313810944557,0.04500799626111984,0.0339478999376297,0.006266287062317133,0.05603662133216858,0.03799848631024361,-0.09272360056638718,0.07185787707567215,0.06503280252218246,-0.011593710631132126,-0.10245060920715332,0.05923899635672569,0.04053223133087158,0.004119745921343565,-0.008761950768530369,0.10761416703462601,-0.020336611196398735,-0.11048838496208191,0.045322321355342865,0.02554415352642536,0.02865753509104252,0.034228045493364334,-0.027400413528084755,0.15637540817260742,0.029709095135331154,-0.01635982282459736,-0.0161467082798481,-0.0050453986041247845,-0.023821314796805382,-0.011891573667526245,0.07349363714456558,-0.01770493946969509,0.0729309618473053,-2.8874364232933658e-8,0.0102852089330554,0.06532565504312515,-0.048274680972099304,-0.09877488017082214,0.029311753809452057,0.023764563724398613,0.026390593498945236,-0.021377457305788994,-0.03260013088583946,0.0330645926296711,0.05630435422062874,0.06432849168777466,0.06067419797182083,0.050466619431972504,0.016087545081973076,0.03207117319107056,0.046924907714128494,-0.16526488959789276,0.04608646407723427,0.030322330072522163,-0.006829739082604647,0.007238420192152262,-0.010725470259785652,-0.010818691924214363,-0.02780505269765854,0.007896006107330322,0.01246282085776329,-0.022450627759099007,-0.059958815574645996,-0.0035097948275506496,0.01602151058614254,0.04738590493798256,-0.08160161226987839,0.0508929118514061,-0.07072950154542923,-0.021453004330396652,0.019499357789754868,0.04369751736521721,0.03776802122592926,-0.015023304149508476,-0.05009837448596954,0.013172365725040436,0.004266208037734032,-0.010178585536777973,-0.01537695899605751,0.06271624565124512,0.07613281905651093,0.04613390192389488,0.003157049883157015,-0.013217879459261894,0.06285509467124939,0.02366151101887226,0.02025197446346283,0.0661747008562088,0.049537159502506256,-0.00788159016519785,-0.04081103578209877,0.06046722084283829,-0.04191835597157478,0.014947976917028427,0.07578054070472717,-0.012083242647349834,-0.08323404937982559,-0.012223462574183941]},{"text":"I could with pleasure have destroyed the cottage and its inhabitants and have glutted myself with their shrieks and misery. “When night came I quitted my retreat and wandered in the wood; and now, no longer restrained by the fear of discovery, I gave vent to my anguish in fearful howlings.","book":"1984","chapter":78,"embedding":[0.028324022889137268,0.0988718569278717,0.051559578627347946,0.0537746287882328,0.09446479380130768,0.017762064933776855,0.11618165671825409,-0.04555479437112808,-0.012347495183348656,0.009455347433686256,0.005880226846784353,-0.005347477272152901,0.04937179014086723,0.03395489230751991,0.010559904389083385,0.043699681758880615,-0.003675728337839246,0.06225831061601639,0.02434442937374115,0.05793142691254616,0.0041109537705779076,0.1276991218328476,0.0063109127804636955,0.003889384213835001,0.00495807733386755,-0.0036987997591495514,0.01236867718398571,0.014543700031936169,0.014415611512959003,-0.10056769102811813,-0.03041759319603443,-0.02028164267539978,0.004603467416018248,0.001999138155952096,0.040561482310295105,0.06116587296128273,-0.042321279644966125,-0.09958050400018692,0.03584543988108635,-0.017001286149024963,-0.014079107902944088,0.015220582485198975,0.040347326546907425,-0.03867227956652641,-0.06618180871009827,-0.007738226093351841,-0.0380203053355217,-0.07231537252664566,0.0408644936978817,-0.002382485195994377,0.0860523134469986,0.003454575315117836,-0.0308390986174345,-0.10443533211946487,-0.010246269404888153,0.0011667300714179873,0.030181311070919037,-0.003690082812681794,0.0041820998303592205,0.008297541178762913,0.02616199664771557,0.04052487760782242,0.012754801660776138,0.04147172346711159,0.01279099378734827,-0.05393592268228531,-0.026091521605849266,0.06615204364061356,-0.06914368271827698,0.057867713272571564,-0.021071456372737885,-0.0335870087146759,-0.0033681585919111967,-0.07674368470907211,-0.009836293756961823,-0.04352820664644241,-0.05922849848866463,-0.044364381581544876,-0.0028480386827141047,-0.022040611132979393,-0.010404955595731735,0.03652476891875267,0.020821018144488335,0.013570328243076801,-0.08104594796895981,-0.03645194321870804,0.07417460530996323,-0.004217983223497868,0.06045802682638168,-0.00211949716322124,0.04713062942028046,-0.05188407748937607,-0.0880555510520935,0.08373771607875824,0.010660585016012192,-0.022845355793833733,-0.06455636769533157,0.016241030767560005,-0.05146046355366707,0.07575064152479172,-0.011183486320078373,0.015098116360604763,-0.05108468234539032,-0.014082294888794422,-0.06097884476184845,-0.057881779968738556,-0.09008920192718506,0.0042968979105353355,0.0048703826032578945,-0.02360221929848194,-0.0694338008761406,-0.03530653938651085,0.019754868000745773,0.026748737320303917,0.059229929000139236,0.03330091014504433,0.02322445623576641,-0.06884609907865524,0.01826353743672371,0.018991949036717415,0.10742823779582977,0.013072000816464424,-0.020335400477051735,0.017870601266622543,-0.039339859038591385,-0.008069063536822796,0.04938513785600662,-2.5016453841047365e-33,0.016893921419978142,0.009374837391078472,-0.028379008173942566,0.03186671808362007,0.12635958194732666,-0.03442824259400368,-0.05168319493532181,-0.006317323539406061,-0.021607832983136177,-0.07409398257732391,0.0007598452502861619,-0.04847680404782295,-0.04962236434221268,-0.09430000185966492,-0.027201969176530838,0.048261187970638275,0.036024369299411774,-0.04502543434500694,0.07522861659526825,-0.002031270880252123,0.005655909422785044,0.08967310190200806,0.0262095145881176,0.006355003919452429,-0.11242814362049103,-0.011176512576639652,-0.02289196103811264,-0.04715733975172043,-0.031915083527565,0.036715343594551086,0.06907128542661667,-0.03108987584710121,-0.0031148972921073437,-0.04995514452457428,0.06279699504375458,0.05221474543213844,-0.03225889429450035,-0.02401783876121044,-0.00482137780636549,-0.015631357207894325,-0.07253421097993851,-0.003146085189655423,-0.025888284668326378,0.02790185622870922,-0.015562768094241619,0.039841994643211365,0.010804378427565098,0.05565134435892105,-0.13264963030815125,0.038878995925188065,0.011769101023674011,0.08259119838476181,0.012920880690217018,-0.01656750775873661,0.03071637824177742,0.03269219771027565,-0.01359392050653696,0.03490070626139641,0.06216755881905556,0.01679292693734169,0.038542792201042175,-0.0016607209108769894,0.05719053000211716,-0.09104372560977936,-0.016718672588467598,-0.10688182711601257,0.018757494166493416,-0.05894758924841881,-0.0887957513332367,-0.049462102353572845,-0.11813097447156906,-0.04507279023528099,-0.01985824853181839,-0.08781303465366364,-0.04961420223116875,-0.09354345500469208,0.004814872518181801,-0.025675781071186066,-0.001378957531414926,-0.060317590832710266,-0.021451469510793686,-0.08634527027606964,-0.09888166934251785,0.050153471529483795,0.029494881629943848,-0.041142284870147705,0.06439151614904404,-0.1359737664461136,-0.02237861603498459,0.06953439116477966,-0.06554058939218521,0.017810475081205368,0.054825201630592346,-0.0921640619635582,-0.01953093521296978,-4.87201599017233e-35,0.061871565878391266,-0.03580241650342941,-0.013714858330786228,0.02489747293293476,-0.05154358223080635,-0.02089148946106434,-0.05559203028678894,-0.03548930212855339,-0.06595637649297714,0.06813212484121323,0.014349990524351597,0.013400444760918617,0.04912253096699715,0.02095787599682808,-0.05151767656207085,-0.022721976041793823,0.013490044511854649,-0.0023960075341165066,-0.02373633347451687,0.010534782893955708,-0.0597478449344635,0.12078243494033813,-0.021988892927765846,-0.0790066197514534,0.00886108260601759,0.04454580321907997,0.06965161859989166,0.007867684587836266,-0.008509023115038872,-0.06930043548345566,0.15625494718551636,-0.013918856158852577,-0.05983007699251175,0.0007646475569345057,0.06099420785903931,0.03672413527965546,0.07918759435415268,-0.004828992765396833,-0.06248634308576584,-0.07992690801620483,0.0785624161362648,-0.036407534033060074,0.015723731368780136,0.043492380529642105,0.016185389831662178,-0.023232201114296913,-0.024161189794540405,-0.05973852798342705,0.044105518609285355,0.09740504622459412,0.022172924131155014,0.03328760713338852,0.012190398760139942,-0.019936900585889816,0.005045277997851372,-0.09568353742361069,0.039898090064525604,-0.03792589157819748,0.02279036119580269,-0.034645043313503265,-0.10559387505054474,0.018736612051725388,-0.09107857197523117,0.07428360730409622,0.08976433426141739,-0.06310441344976425,-0.09615316241979599,-0.011228236369788647,0.0005342800868675113,0.04424368590116501,-0.09122851490974426,0.03595545515418053,-0.06523781269788742,0.03306647762656212,-0.0030462269205600023,0.007197950966656208,-0.005754260346293449,-0.045035477727651596,-0.06961323320865631,-0.06234722584486008,-0.029367024078965187,-0.021453235298395157,0.03731642663478851,0.01842331513762474,-0.0061046890914440155,-0.02832750417292118,0.005397549364715815,0.06768864393234253,-0.014175978489220142,-0.01790815219283104,-0.010612170211970806,0.026873553171753883,0.012847243808209896,-0.022427193820476532,0.059862617403268814,-3.990288277577747e-8,-0.09594114124774933,-0.015521661378443241,-0.031388286501169205,-0.011659478768706322,0.053136639297008514,-0.06602222472429276,0.11136233061552048,0.046712301671504974,-0.051158733665943146,0.08061232417821884,-0.012781987898051739,0.04651661217212677,0.06660975515842438,0.043858423829078674,0.04268941283226013,0.04540735483169556,0.06778711825609207,-0.04615550860762596,0.008490272797644138,0.038647767156362534,0.0077398382127285,0.03999100998044014,-0.029449323192238808,-0.055688947439193726,-0.06518669426441193,-0.013062939047813416,0.006180782336741686,-0.07201284170150757,-0.02843524143099785,-0.024847256019711494,0.12643973529338837,0.06998470425605774,-0.060288868844509125,0.03936302289366722,-0.07993530482053757,-0.031941577792167664,-0.0015794297214597464,-0.02044794149696827,0.021360084414482117,-0.03824102506041527,-0.005253358278423548,0.08555163443088531,0.05125279352068901,0.0006061526946723461,-0.004879652056843042,-0.006030229385942221,0.04287237301468849,0.004009757190942764,0.009497661143541336,0.13724078238010406,-0.015171721577644348,0.0585419237613678,0.07433850318193436,0.0906529426574707,0.03961942717432976,-0.05539959669113159,0.014522749930620193,0.050613921135663986,-0.036571234464645386,0.0471377968788147,0.053272999823093414,-0.02054607681930065,-0.04311157763004303,-0.07173209637403488]},{"text":"But I did not believe my errors to be irretrievable, and after much consideration I resolved to return to the cottage, seek the old man, and by my representations win him to my party. “These thoughts calmed me, and in the afternoon I sank into a profound sleep; but the fever of my blood did not allow me to be visited by peaceful dreams.","book":"1984","chapter":78,"embedding":[0.04069383814930916,0.09079982340335846,0.028932007029652596,0.05980496108531952,0.09330284595489502,0.03897448629140854,0.06395303457975388,-0.06073134392499924,0.043258246034383774,-0.071611687541008,-0.050437722355127335,0.04682902991771698,0.06546749174594879,-0.01762366108596325,0.0005211926181800663,-0.008917315863072872,-0.053104642778635025,0.05653471499681473,-0.011817929334938526,0.09291184693574905,-0.06404945999383926,0.018331266939640045,-0.027472926303744316,-0.006821317598223686,0.007284615188837051,0.05489848926663399,-0.008369982242584229,-0.021848177537322044,-0.021996989846229553,-0.016222063452005386,-0.016412006691098213,-0.019246762618422508,-0.06276608258485794,-0.016187742352485657,0.12768730521202087,0.03698801249265671,-0.07507742941379547,-0.014612121507525444,-0.03106112778186798,0.004185199737548828,0.030480535700917244,-0.02005518041551113,0.025939635932445526,0.021286658942699432,-0.009528236463665962,-0.029076730832457542,-0.03605206310749054,-0.0494302399456501,0.03024473413825035,-0.03321466222405434,-0.09426949918270111,0.04785837233066559,-0.057188477367162704,-0.045305829495191574,-0.006985786836594343,0.02696182206273079,0.03273339197039604,0.07313263416290283,0.03783204033970833,-0.01821337454020977,0.0015544992638751864,0.012518365867435932,0.04374701529741287,-0.01750051975250244,0.040607571601867676,-0.06106574460864067,-0.021986400708556175,-0.014730829745531082,-0.0030888612382113934,0.07179746776819229,-0.015235616825520992,-0.030644604936242104,-0.015005858615040779,-0.04643084481358528,-0.05047539249062538,-0.028999008238315582,-0.01479992177337408,-0.06727287918329239,0.050385817885398865,0.01744786649942398,-0.05943610519170761,-0.02345161885023117,-0.0014460670063272119,0.0018256226321682334,-0.013448063284158707,0.0022612710017710924,0.07958854734897614,0.00021159416064620018,0.04349510371685028,0.048980966210365295,0.05327921733260155,-0.11679563671350479,-0.053106363862752914,0.07695554941892624,0.0778728649020195,0.011607549153268337,-0.042032722383737564,0.034893471747636795,-0.05901562422513962,0.056320060044527054,0.022948667407035828,0.005124975927174091,-0.028866371139883995,-0.0008813702152110636,0.014063820242881775,-0.00844588503241539,-0.05431019142270088,-0.046536631882190704,-0.0205560140311718,-0.0383458137512207,-0.051705196499824524,-0.08309539407491684,0.019272414967417717,0.04895647242665291,0.05414658039808273,0.010400134138762951,-0.0238050390034914,0.03582330048084259,-0.03958715498447418,0.07711990922689438,0.05507051199674606,0.05408531427383423,0.04720454663038254,0.04151482507586479,-0.061024848371744156,-0.0385209284722805,0.08804164081811905,-3.0065071671424546e-33,0.035629596561193466,-0.02132732979953289,-0.08949695527553558,0.08069916069507599,0.08164011687040329,-0.017463695257902145,-0.06779814511537552,0.0012826959136873484,0.015732014551758766,-0.06150935962796211,0.05521935969591141,0.001453508622944355,0.05168672651052475,-0.03771098703145981,-0.0796947181224823,0.049301374703645706,-0.07949087768793106,-0.04338635876774788,0.10261797159910202,-0.0011603846214711666,-0.020564090460538864,0.0691608414053917,0.03062499314546585,-0.019955532625317574,-0.08451320976018906,-0.038091227412223816,-0.01841113343834877,0.018703464418649673,-0.026074379682540894,0.02281118743121624,0.0026866530533879995,0.008335244841873646,0.08519469201564789,-0.02418912760913372,0.05097363144159317,0.03681747987866402,-0.003079764312133193,0.004343588370829821,-0.0832899659872055,-0.003533440176397562,-0.04259598255157471,0.06576341390609741,-0.019041024148464203,-0.0018774784402921796,0.03236277401447296,-0.015694638714194298,0.023294303566217422,0.018674109131097794,-0.08455901592969894,-0.010695155709981918,-0.04503533989191055,0.018291961401700974,-0.006170697510242462,-0.07247037440538406,-0.023830266669392586,-0.018893154338002205,-0.0014970453921705484,0.11378146708011627,0.02864179201424122,-0.01458043698221445,0.09273668378591537,-0.0444774255156517,0.023715617135167122,-0.05489927902817726,-0.0010979202343150973,-0.08702539652585983,-0.053760819137096405,-0.11909633874893188,-0.04381559044122696,-0.09852071851491928,-0.04407278075814247,-0.02785300277173519,0.031166579574346542,0.05950293689966202,0.006907354108989239,-0.037985701113939285,-0.026526380330324173,0.006565598305314779,-0.040807172656059265,-0.11543944478034973,0.06883161514997482,-0.05285211279988289,-0.07967180013656616,0.07188721001148224,0.05782926455140114,-0.015542598441243172,-0.008718683384358883,-0.12390368431806564,-0.07034455239772797,0.10359477251768112,-0.02416636049747467,0.0005021169781684875,0.06918085366487503,-0.08959712088108063,-0.08994434028863907,5.373682885175333e-34,0.02488105371594429,-0.06838646531105042,-0.0012235459871590137,0.03454272449016571,0.004784661345183849,-0.05556496977806091,-0.007826622575521469,-0.041469402611255646,0.03887668251991272,0.044032614678144455,0.0387762188911438,-0.012181190773844719,0.06865999847650528,0.043568216264247894,-0.05356789752840996,-0.08116137981414795,-0.0040652817115187645,-0.004037435166537762,-0.04653151333332062,0.02466166764497757,-0.023484984412789345,0.07222761958837509,0.014131522737443447,-0.01729509048163891,0.04396666958928108,0.09732775390148163,0.11107790470123291,-0.018224261701107025,-0.039853017777204514,-0.12428595870733261,0.059625186026096344,-0.03064362332224846,-0.12216407805681229,-0.007963685318827629,0.03562135621905327,0.04760875552892685,0.07444039732217789,-0.030615752562880516,-0.03568313643336296,-0.09093894809484482,0.022053033113479614,-0.03987696021795273,0.05033857002854347,-0.017888562753796577,0.050474636256694794,-0.019914524629712105,-0.004868179559707642,0.002322745742276311,0.030290700495243073,0.027064386755228043,-0.004455395508557558,0.054731596261262894,-0.035349041223526,0.04686707630753517,-0.00005149478602106683,-0.0578543022274971,0.030149105936288834,-0.04742386192083359,0.02409188076853752,0.028920073062181473,-0.0766790360212326,0.007786104921251535,-0.04240717738866806,0.03198378160595894,0.08548177778720856,0.03233633562922478,-0.08064475655555725,0.0013090386055409908,0.052812691777944565,0.000562771747354418,0.05490172654390335,-0.04909631237387657,-0.049840886145830154,0.058061517775058746,0.0821356549859047,-0.029695037752389908,-0.02543041668832302,0.023355575278401375,0.004493444226682186,-0.08927781134843826,0.02204686962068081,-0.015010855160653591,0.022603655233979225,0.048932112753391266,0.032037898898124695,-0.08486630767583847,0.05080541968345642,-0.020911654457449913,-0.020382042974233627,-0.04560533165931702,0.010154956951737404,-0.03301067277789116,0.08497285842895508,-0.018994368612766266,0.012326369993388653,-4.3329681176373924e-8,0.005177999380975962,-0.07130543142557144,-0.020412951707839966,0.019705969840288162,0.0024746961425989866,-0.09271132200956345,0.021167220547795296,-0.0191948339343071,-0.07213546335697174,0.07048042118549347,-0.032212596386671066,0.03695565089583397,0.05755731463432312,0.008035172708332539,0.04641098529100418,-0.02668342925608158,0.06380161643028259,-0.05130754038691521,-0.0005950728664174676,-0.07078080624341965,0.040580183267593384,0.06064555421471596,-0.08819553256034851,-0.018396610394120216,0.055135712027549744,0.043411992490291595,-0.021756023168563843,-0.02587886154651642,-0.07504210621118546,-0.0451841726899147,0.03527922183275223,0.07560864090919495,-0.0037362270522862673,0.004746799822896719,-0.0813005119562149,-0.028516044840216637,0.08717751502990723,0.023192008957266808,0.013426701538264751,-0.08769077807664871,0.05220760405063629,0.056591201573610306,0.04568760469555855,-0.010747747495770454,0.01859167590737343,-0.06350406259298325,0.04031972959637642,-0.011676383204758167,-0.03768816962838173,0.015521182678639889,0.039816755801439285,0.09080987423658371,0.0609772689640522,0.06650611758232117,-0.02518494613468647,-0.057240065187215805,0.021843641996383667,0.02530203014612198,-0.10738778859376907,-0.04659225046634674,0.13989393413066864,0.059423793107271194,-0.11047198623418808,-0.11659927666187286]},{"text":"My wife and my sister will never recover from their horror.","book":"1984","chapter":79,"embedding":[-0.02218489535152912,0.058648329228162766,0.014185487292706966,0.05279280245304108,-0.0010967230191454291,-0.05306216701865196,-0.07903361320495605,-0.09401263296604156,0.08378013223409653,-0.08623695373535156,0.032491691410541534,0.01535296905785799,0.11472714692354202,-0.03337099030613899,-0.13428069651126862,0.015189999714493752,-0.040756531059741974,0.017886914312839508,-0.0023230435326695442,0.06575778871774673,-0.06999173015356064,-0.008018880151212215,0.06654007732868195,-0.02455010823905468,-0.008856642991304398,-0.02959713712334633,0.008095908910036087,-0.036179251968860626,-0.07135111838579178,-0.029372500255703926,-0.07256562262773514,-0.08983343839645386,-0.05143080651760101,0.0430874265730381,0.07477763295173645,0.016443368047475815,-0.03625812381505966,-0.002005938207730651,0.07145002484321594,-0.01253560557961464,-0.07740024477243423,0.038624219596385956,0.04716549441218376,-0.032362937927246094,-0.008647856302559376,-0.055634163320064545,-0.07231346517801285,-0.041153810918331146,0.042109645903110504,-0.04744746908545494,0.00867346953600645,-0.004821412265300751,0.012967622838914394,0.01180080696940422,0.018794190138578415,0.033967893570661545,-0.08674563467502594,-0.01196388527750969,0.011255568824708462,0.04338545724749565,-0.0021644243970513344,0.03689415380358696,-0.026729153469204903,0.003940447699278593,-0.02795705944299698,0.06190906837582588,0.027118604630231857,0.016236161813139915,0.04271496832370758,0.11205592006444931,-0.1653912216424942,0.0009603202342987061,0.05786525830626488,0.036230750381946564,-0.04915664345026016,0.07475129514932632,0.08076494187116623,-0.03879762813448906,-0.03107234463095665,0.05904242396354675,-0.08181242644786835,-0.0365087054669857,0.08361057937145233,-0.04924720525741577,0.007416208274662495,0.021074999123811722,0.049019232392311096,-0.01301757711917162,0.012816600501537323,0.02483874186873436,-0.0937325730919838,-0.07294080406427383,0.05693191662430763,0.005610030144453049,0.04715370386838913,0.02646874263882637,-0.0830877497792244,-0.008506196551024914,-0.10060355067253113,0.04665851593017578,-0.08919840306043625,-0.028632214292883873,0.01410235371440649,0.014686396345496178,-0.062124259769916534,0.005618601106107235,0.01344247069209814,-0.021594952791929245,0.034292276948690414,-0.0555398054420948,-0.06023141369223595,-0.0015267056878656149,0.022168507799506187,0.03443150594830513,-0.047880060970783234,-0.06768300384283066,0.05297289788722992,0.007564766798168421,0.0455998070538044,0.06710481643676758,0.06367809325456619,0.03951549902558327,0.0065720099955797195,-0.043641284108161926,0.019898656755685806,-0.0009059946169145405,0.02945711836218834,-2.370647742636124e-33,0.020575616508722305,0.052921392023563385,0.0168140958994627,-0.00832316279411316,-0.008770695887506008,-0.009244980290532112,-0.04320543259382248,0.006537904031574726,0.05020228400826454,0.01811920665204525,0.048078373074531555,-0.03678399696946144,0.006108066998422146,-0.03745231404900551,-0.0564286895096302,0.05707075446844101,0.00942362193018198,0.07164197415113449,-0.024990888312458992,-0.006438157521188259,-0.07218887656927109,0.04756971821188927,-0.011997951194643974,0.06602314114570618,-0.019829818978905678,-0.04171137139201164,0.046295054256916046,-0.0005797690828330815,-0.016263294965028763,0.028440112248063087,-0.07051116973161697,0.05253378301858902,0.06927450746297836,-0.0468418151140213,-0.017375389114022255,0.04904135689139366,-0.014620921574532986,0.041293974965810776,0.008699790574610233,0.03908776864409447,-0.014157649129629135,0.04114498198032379,-0.010293159633874893,-0.02066192403435707,-0.012690541334450245,-0.014913416467607021,0.057348866015672684,0.04986578971147537,-0.14180369675159454,0.001492840819992125,-0.04535415396094322,0.00619025994092226,-0.023718634620308876,0.06891816854476929,-0.049716830253601074,0.037571340799331665,0.0599532276391983,-0.12111906707286835,0.013271989300847054,-0.007679146248847246,-0.008343600668013096,0.02981085143983364,-0.009344229474663734,-0.026081502437591553,-0.017358291894197464,0.012318410910665989,0.08951377123594284,-0.05165445804595947,-0.04535670578479767,-0.04117133095860481,-0.09521832317113876,-0.003031245432794094,-0.0244339220225811,-0.009403104893863201,-0.037096988409757614,-0.042742110788822174,-0.0036499451380223036,-0.014092205092310905,0.020153537392616272,-0.03759332001209259,0.04118279367685318,-0.0144291827455163,0.048096392303705215,-0.0074482266791164875,0.07833930104970932,-0.017435695976018906,-0.04565498232841492,-0.06981740146875381,-0.0732736885547638,0.046336863189935684,0.04006648808717728,-0.031150130555033684,0.06668012589216232,-0.07661788165569305,0.02895687147974968,1.2118791439211954e-35,0.05160396546125412,-0.018039530143141747,-0.019031096249818802,-0.03358213230967522,0.0031222051475197077,-0.04802558571100235,-0.060301005840301514,0.0609402172267437,0.05230577290058136,0.011198249645531178,0.0247025303542614,0.015118515118956566,0.09377869218587875,0.10375737398862839,0.040581248700618744,-0.03202551603317261,0.011493131518363953,0.008175223134458065,-0.026396166533231735,-0.01824534311890602,-0.01391326542943716,0.059775885194540024,-0.0715036541223526,0.09293282777070999,0.0353970043361187,0.03817366063594818,0.04246704280376434,0.06513216346502304,0.012296615168452263,-0.05498766526579857,-0.000007983472642081324,-0.016138065606355667,0.015511061996221542,-0.06726526468992233,0.07975664734840393,0.06814048439264297,-0.04305501654744148,-0.020616330206394196,-0.006043889094144106,-0.037721071392297745,0.03418869152665138,0.008151793852448463,0.007939822040498257,0.05286687985062599,-0.009735229425132275,0.039200473576784134,0.07207167148590088,-0.008525421842932701,0.047757040709257126,0.018129251897335052,-0.10130152106285095,0.017752472311258316,-0.01340681966394186,-0.057874131947755814,-0.012524817138910294,-0.06884780526161194,0.10053995251655579,-0.07859520614147186,-0.0003166292735841125,0.03636864200234413,-0.05712556093931198,0.0498565249145031,-0.09509991854429245,0.17820772528648376,-0.002808022079989314,0.10203047096729279,-0.06285692751407623,0.07882913202047348,-0.0075104148127138615,0.03838082775473595,0.04097622260451317,-0.008242150768637657,-0.0745571106672287,0.06105561554431915,-0.013434767723083496,0.00391266169026494,-0.04541614651679993,0.02093089371919632,0.016170255839824677,-0.013578470796346664,0.029430663213133812,0.06194932758808136,-0.025718582794070244,0.04042776674032211,0.0395226813852787,-0.04160239174962044,0.05470164120197296,-0.013677719049155712,-0.1123286709189415,-0.009293540380895138,-0.0956149697303772,-0.05238715186715126,0.03880900889635086,-0.07120129466056824,-0.015404797159135342,-1.8778903765337418e-8,0.047281403094530106,0.01062796637415886,-0.003777669742703438,-0.07870263606309891,-0.01056424155831337,-0.043671105057001114,0.08578243106603622,0.07424995303153992,-0.07950110733509064,0.03393078222870827,-0.002224374795332551,0.09127819538116455,0.06256922334432602,0.0034951369743794203,-0.001149090938270092,0.03276363015174866,0.045010343194007874,0.007968807592988014,-0.03924282267689705,-0.045117467641830444,-0.036102429032325745,-0.03548949211835861,0.055154357105493546,-0.05481543019413948,0.029957149177789688,0.03416743874549866,0.07602976262569427,-0.00955966766923666,0.005469387397170067,0.016533689573407173,0.011622567661106586,-0.05450204759836197,0.045053668320178986,0.06607432663440704,-0.13622444868087769,-0.02790096588432789,0.025201324373483658,-0.041482746601104736,0.06977691501379013,-0.018401112407445908,-0.035370681434869766,0.05542141571640968,0.01418116595596075,0.007144109345972538,-0.05432499572634697,-0.09956265985965729,0.04290814697742462,-0.04737399145960808,-0.0009630969725549221,0.015011775307357311,-0.057455938309431076,0.06336088478565216,-0.11720285564661026,0.14511926472187042,0.08894629031419754,-0.06492606550455093,0.027776643633842468,0.00708363950252533,0.02569763921201229,0.03427950665354729,0.0727752298116684,-0.02154655195772648,-0.0334244929254055,-0.03590410575270653]},{"text":"A part of its orb was at length hid, and I waved my brand; it sank, and with a loud scream I fired the straw, and heath, and bushes, which I had collected.","book":"1984","chapter":79,"embedding":[0.016701729968190193,0.054498340934515,0.11268196254968643,0.022641489282250404,0.09948980063199997,-0.060895588248968124,0.08018030971288681,-0.007537296507507563,-0.0022643778938800097,-0.06591949611902237,0.05951083078980446,-0.02005174569785595,0.007080383133143187,0.013401372358202934,-0.03481946140527725,0.014991536736488342,-0.033256735652685165,0.0416828878223896,-0.11057128012180328,0.04387012496590614,0.11344636231660843,0.08644509315490723,0.02840467169880867,0.07744866609573364,-0.01577111892402172,0.060778286308050156,-0.027056407183408737,-0.0034911001566797495,0.023121695965528488,-0.09018326550722122,0.0010732595110312104,-0.04318628087639809,-0.07882345467805862,-0.05197155103087425,0.020543452352285385,0.03392757102847099,-0.008069313131272793,-0.01623068004846573,0.08627645671367645,-0.10361367464065552,-0.020710913464426994,-0.05818665027618408,0.04098066687583923,-0.006538312416523695,-0.0019438295857980847,0.023252056911587715,0.04758178070187569,0.008417787030339241,0.0679873377084732,-0.050945449620485306,0.026105273514986038,-0.0777062326669693,0.01618218421936035,-0.029385175555944443,-0.03466671332716942,-0.010003766044974327,0.04950188845396042,-0.013047159649431705,0.036971691995859146,-0.01482071727514267,0.04068054258823395,-0.0024283716920763254,0.0018404617439955473,0.049113500863313675,-0.0006465543410740793,-0.05074470117688179,-0.06686767190694809,-0.05666359141469002,0.08804778754711151,0.0320940762758255,0.04927835986018181,-0.02323189750313759,0.03865727037191391,0.05722193047404289,-0.02433067560195923,-0.023847058415412903,0.01642340049147606,-0.07998999953269958,-0.0011923606507480145,0.11325070261955261,-0.040464289486408234,-0.017790168523788452,-0.03254907205700874,0.06453763693571091,0.03311176225543022,0.020477309823036194,0.06893962621688843,0.05570506304502487,-0.03667032718658447,0.04669954627752304,-0.045164354145526886,-0.08588732779026031,0.013833673670887947,0.07922195643186569,0.04185428097844124,-0.07164071500301361,-0.041836995631456375,0.03466353192925453,0.029685109853744507,0.08142880350351334,-0.008988299407064915,0.0084853395819664,-0.034356746822595596,-0.011468792334198952,0.022558564320206642,-0.07730808109045029,-0.11136770248413086,0.003318733535706997,-0.006990350782871246,-0.015123679302632809,-1.846087087642445e-7,-0.016570640727877617,0.006381951738148928,0.06188659369945526,-0.005911743734031916,-0.01582646556198597,-0.11083881556987762,-0.024324679747223854,-0.08345311880111694,-0.026960931718349457,0.06678778678178787,0.039739519357681274,0.01954149641096592,0.01535108219832182,-0.013976292684674263,0.036850377917289734,-0.03474646806716919,-7.138846252836863e-33,0.026793427765369415,0.0056831310503184795,-0.04880916699767113,0.01785510592162609,0.08582306653261185,-0.01295933686196804,-0.0264617670327425,0.027065884321928024,0.011933665722608566,0.07720363885164261,-0.04433264210820198,0.013403055258095264,-0.040273141115903854,-0.06387942284345627,-0.03302104026079178,-0.042633116245269775,-0.028473418205976486,0.04425331950187683,-0.075730100274086,-0.04534361511468887,-0.0175455491989851,0.004056862089782953,-0.0632391944527626,-0.11352645605802536,0.07246296852827072,0.07368268817663193,-0.10125384479761124,-0.029235633090138435,0.03165176510810852,0.07740015536546707,0.050600286573171616,-0.02267955057322979,0.039060138165950775,-0.01625697687268257,0.009754728525876999,0.010876776650547981,-0.027186309918761253,-0.09181611984968185,-0.06085348129272461,-0.05656535178422928,-0.014467268250882626,-0.020599229261279106,0.0005319031770341098,-0.010698240250349045,-0.0338488444685936,0.012718887068331242,-0.0787140503525734,0.0676412358880043,-0.09718896448612213,-0.03681730106472969,0.055645812302827835,0.025699812918901443,-0.0032406712416559458,0.02176446095108986,0.016695786267518997,0.025715138763189316,0.10835877060890198,-0.04548472911119461,0.023409800603985786,-0.010448537766933441,0.012113256379961967,0.022827571257948875,0.038933079689741135,-0.03916541859507561,0.004623479209840298,-0.022799422964453697,0.0018212648574262857,0.023091048002243042,0.023834578692913055,-0.10513729602098465,-0.06042224541306496,-0.03334769979119301,-0.07459472119808197,0.026542576029896736,-0.0580776184797287,-0.0454331673681736,0.01596607081592083,0.003368064295500517,-0.030025620013475418,-0.03225178271532059,0.001262894831597805,-0.031887903809547424,-0.020030563697218895,0.007771909236907959,-0.023157384246587753,0.0206332728266716,-0.011561937630176544,-0.15853694081306458,-0.09182550013065338,-0.004735379945486784,-0.055209558457136154,0.026881229132413864,-0.0037620640359818935,-0.104946568608284,-0.09619228541851044,3.358438788177124e-33,-0.009756164625287056,0.02640751376748085,-0.03175804764032364,0.03156667575240135,0.031348325312137604,0.0010697691468521953,0.00009061599121196195,0.049542490392923355,-0.008050847798585892,0.036043889820575714,-0.0518360435962677,0.012543943710625172,-0.031652163714170456,0.03612891584634781,0.029101574793457985,0.008220192976295948,0.04004649072885513,-0.0793401226401329,0.035159602761268616,0.023558933287858963,-0.017516324296593666,0.06850622594356537,0.048047419637441635,-0.06748076528310776,-0.09732519090175629,0.03864056244492531,0.09149149060249329,-0.05230538547039032,0.02141103893518448,-0.06996858865022659,0.05790582671761513,-0.050585780292749405,0.01092661451548338,-0.012741300277411938,0.01396982278674841,-0.038833215832710266,0.007882057689130306,-0.09092488884925842,-0.026664575561881065,-0.14679816365242004,0.026093153282999992,0.0427120067179203,0.016742296516895294,0.07871437072753906,-0.053496792912483215,-0.06692417711019516,0.06445550173521042,-0.0026592339854687452,0.053584881126880646,0.04156416654586792,0.02878561243414879,-0.04845237359404564,0.07224082201719284,0.06162792444229126,-0.06972113996744156,0.010680251754820347,0.038192540407180786,-0.027902884408831596,0.06321679055690765,-0.02605552226305008,-0.010047663003206253,0.015098660252988338,-0.10517044365406036,0.058475393801927567,0.01035366766154766,-0.001172232092358172,-0.057617563754320145,-0.02059950865805149,-0.04771602898836136,-0.0035488568246364594,0.005617945920675993,0.05615891143679619,-0.027950502932071686,0.029289092868566513,0.03783255070447922,0.011210835538804531,-0.08871708810329437,-0.048534076660871506,-0.002405781764537096,-0.0036025980953127146,-0.007995584979653358,0.017999859526753426,0.012982632033526897,0.018432393670082092,0.11098629236221313,-0.08882097899913788,-0.01663142442703247,0.0023364354856312275,-0.04771266132593155,0.02113228291273117,-0.004991378169506788,0.10294674336910248,0.051848892122507095,0.05970732122659683,0.03194807469844818,-3.3197139259755204e-8,-0.01934967190027237,0.09112121909856796,0.0634547770023346,-0.00788278877735138,0.08313149213790894,0.013152208179235458,0.019681403413414955,0.0673353523015976,-0.0679699182510376,-0.04162295162677765,-0.11715157330036163,0.0029807144310325384,-0.05960549786686897,0.06635365635156631,0.051256243139505386,-0.08647189289331436,-0.05468526855111122,0.026171250268816948,-0.06169995665550232,-0.0656435564160347,-0.003755862358957529,0.0810641273856163,-0.00047854692093096673,-0.022759979590773582,-0.04556681588292122,0.025813013315200806,0.022304043173789978,0.03088989108800888,0.014507550746202469,-0.0017551634227856994,0.037127912044525146,0.06375891715288162,-0.07124318927526474,0.004007107578217983,-0.15434284508228302,0.09110724180936813,-0.052173174917697906,-0.012147316709160805,0.05644475296139717,0.036438845098018646,0.03583710640668869,-0.009277337230741978,0.04708743467926979,0.04250307008624077,0.01881023496389389,0.07598515599966049,0.010452876798808575,-0.08018838614225388,-0.041773825883865356,0.12835527956485748,0.02941761165857315,0.0023135882802307606,0.031171733513474464,0.08886696398258209,0.0295905452221632,-0.04613542556762695,0.022117149084806442,-0.03633324056863785,-0.045551467686891556,-0.03939969465136528,0.05999643728137016,-0.03808750957250595,-0.055057674646377563,0.044955216348171234]},{"text":"But on you only had I any claim for pity and redress, and from you I determined to seek that justice which I vainly attempted to gain from any other being that wore the human form. “My travels were long and the sufferings I endured intense.","book":"1984","chapter":80,"embedding":[-0.04660815745592117,0.12785713374614716,0.06551508605480194,0.04244809225201607,0.07000550627708435,0.02077016979455948,0.12703052163124084,0.014444451779127121,-0.05305810272693634,-0.04873000457882881,0.01848530024290085,-0.04804397374391556,0.0029090368188917637,-0.02068624272942543,0.0322478823363781,0.03376651555299759,-0.06256026029586792,0.02190498821437359,0.02981460839509964,0.0561358667910099,-0.034270741045475006,0.0696781799197197,-0.07500071823596954,0.020994341000914574,-0.0991569235920906,0.055445704609155655,0.004446779377758503,-0.00711870938539505,0.07777474075555801,0.015890315175056458,-0.05747844651341438,-0.06428763270378113,-0.001970506040379405,0.028012236580252647,0.0437922403216362,0.043814316391944885,-0.036709848791360855,-0.056937478482723236,-0.006654907483607531,-0.05683109164237976,0.03367019444704056,0.0036266713868826628,0.026967644691467285,0.035522595047950745,0.022354675456881523,-0.04018363729119301,0.009401238523423672,0.08258463442325592,0.02995023876428604,-0.1013970896601677,-0.036970194429159164,-0.02828328311443329,-0.03600577637553215,-0.012665949761867523,-0.07335441559553146,0.014590277336537838,0.0006691665039397776,0.06247187778353691,-0.05289221554994583,-0.003357760841026902,-0.02742939069867134,0.002888052724301815,0.00913211889564991,0.0767277404665947,0.00990786962211132,0.02691694162786007,0.015089567750692368,0.002834850223734975,-0.06777479499578476,0.1133904904127121,-0.027303341776132584,0.008830311708152294,-0.010086472146213055,0.06749876588582993,-0.06966739147901535,-0.07841473072767258,0.00884348526597023,-0.058806560933589935,0.05417083576321602,0.037036340683698654,-0.012545716017484665,0.001554029411636293,-0.011251058429479599,-0.00030524254543706775,-0.022746475413441658,-0.12844175100326538,0.05097389593720436,-0.07355862855911255,0.024490604177117348,0.0015819445252418518,0.07987871766090393,-0.05474812164902687,0.04517780616879463,0.00430702231824398,0.023758014664053917,-0.004855421371757984,-0.07332815229892731,0.11046838015317917,0.02695014886558056,0.0647568628191948,0.022356731817126274,-0.04104920104146004,-0.009401965886354446,0.05857764557003975,0.04662705585360527,-0.06691322475671768,-0.1056290790438652,-0.09359973669052124,-0.023908713832497597,-0.03654122352600098,-0.04472804069519043,-0.07802189886569977,0.014440049417316914,-0.04462377727031708,0.06632130593061447,0.024678098037838936,-0.03200072422623634,-0.03164111450314522,-0.042245667427778244,-0.05551595985889435,0.038170620799064636,0.016446413472294807,-0.06847506016492844,0.043276090174913406,-0.06384782493114471,-0.0828113853931427,0.026809897273778915,-1.96172338002779e-33,0.06418589502573013,0.01660865917801857,0.02525617741048336,-0.005794736556708813,-0.005347585771232843,0.0014553056098520756,-0.11758825182914734,0.016412455588579178,0.037594810128211975,-0.026890816166996956,-0.005397184286266565,-0.009542925283312798,-0.007934601046144962,-0.05164353922009468,-0.13686901330947876,0.07365404814481735,-0.04311823472380638,0.009255210869014263,0.07440613210201263,0.04444705322384834,0.03883470594882965,-0.07296762615442276,0.029616180807352066,-0.03692980483174324,-0.07452338188886642,-0.03883037343621254,0.02378232590854168,-0.07538506388664246,-0.007120994385331869,0.015722064301371574,0.033558063209056854,0.018305502831935883,0.0657244324684143,0.004561845678836107,0.01725674793124199,0.036498140543699265,0.010654744692146778,-0.031093841418623924,0.01661657728254795,0.007215787656605244,-0.015687275677919388,0.008965084329247475,0.08126769959926605,-0.061002109199762344,0.018656188622117043,-0.014020532369613647,-0.07011312246322632,0.01822991669178009,-0.12595976889133453,0.07460293918848038,-0.028908561915159225,0.023084528744220734,0.044069111347198486,-0.05844351276755333,0.002373053692281246,-0.03945671021938324,-0.08275864273309708,0.11727893352508545,0.03737741336226463,0.028952116146683693,0.011963908560574055,-0.09033787995576859,-0.0045752557925879955,-0.02585872821509838,0.025411667302250862,-0.08009691536426544,-0.004779132083058357,-0.04694755747914314,-0.04629165306687355,-0.023808196187019348,-0.07290679961442947,0.030759992077946663,0.014957927167415619,-0.024620721116662025,-0.0057328748516738415,-0.036720771342515945,-0.006839042995125055,0.01884043775498867,-0.028444817289710045,-0.06781201809644699,-0.11480972915887833,-0.009877067990601063,-0.07426664233207703,0.06863109767436981,0.10247333347797394,0.027089405804872513,-0.0012444396270439029,-0.13195201754570007,0.002460906282067299,0.01454245112836361,0.02630975842475891,-0.003087021643295884,-0.0025961624924093485,-0.092005655169487,-0.05237964540719986,-1.0693099257315948e-33,0.017566779628396034,-0.0579039491713047,0.017150087282061577,0.022681433707475662,0.04188041388988495,-0.06897566467523575,-0.015604572370648384,0.05968866124749184,0.016111666336655617,0.07479924708604813,-0.017893405631184578,-0.027639880776405334,0.11467695236206055,0.018923230469226837,-0.07507741451263428,0.025932785123586655,0.018064741045236588,-0.0154897915199399,-0.03975760564208031,-0.02200469560921192,-0.022195421159267426,0.09410151839256287,0.012652376666665077,-0.034703344106674194,-0.03636845573782921,0.03242282196879387,0.08224380761384964,-0.06667641550302505,-0.005275014787912369,-0.049051232635974884,0.09736943989992142,0.01078798621892929,-0.15216127038002014,-0.0076860180124640465,0.02150406874716282,0.022796841338276863,0.05627208575606346,0.046579163521528244,-0.06413248926401138,-0.04981608688831329,-0.01176419947296381,-0.012125266715884209,0.022763866931200027,0.027794335037469864,0.06563347578048706,-0.06213950365781784,0.014026165939867496,-0.06023317947983742,0.012516971677541733,0.0019145507831126451,-0.006119380705058575,-0.010159746743738651,0.045921873301267624,0.044300224632024765,-0.006582043599337339,-0.06902967393398285,-0.02051669731736183,-0.10271356254816055,0.036154620349407196,-0.03043607994914055,-0.05201219394803047,0.0017281824257224798,-0.10364890843629837,0.05146868899464607,0.013088845647871494,-0.05027325451374054,-0.026125410571694374,0.02302537113428116,-0.05595489218831062,0.02878674678504467,-0.031429652124643326,-0.06291349232196808,-0.08801889419555664,-0.014187315478920937,0.02659023366868496,0.019406981766223907,0.02490568533539772,0.07974908500909805,-0.047083646059036255,0.03692182898521423,0.06746911257505417,-0.085222527384758,0.07754002511501312,0.0001599860261194408,0.05026189982891083,0.009519766084849834,0.016734257340431213,0.03886652737855911,0.01880156435072422,0.10512526333332062,-0.02827608771622181,0.014969853684306145,0.023080643266439438,-0.06982749700546265,-0.0010932496516034007,-3.966638573160708e-8,0.01680324226617813,0.028475238010287285,0.018737630918622017,0.024364743381738663,0.02400406263768673,0.01730387471616268,0.03946901112794876,0.018381910398602486,-0.08426972478628159,0.05489865690469742,-0.021714134141802788,0.04209199175238609,0.0635010227560997,0.025150232017040253,0.029436534270644188,0.0598953478038311,-0.01786884292960167,-0.026463352143764496,-0.019003301858901978,0.010876773856580257,-0.03748035058379173,0.05227034166455269,-0.03203710541129112,-0.03755243122577667,0.008926516398787498,0.02800583653151989,-0.01829400099813938,-0.13113346695899963,-0.004613195545971394,-0.012445541098713875,0.02993408963084221,0.11755331605672836,-0.0647851750254631,-0.023350024595856667,-0.014455433003604412,-0.024717537686228752,0.025993935763835907,0.0055297003127634525,0.026590192690491676,-0.027536815032362938,-0.025793232023715973,0.10926339775323868,0.07112978398799896,0.048013731837272644,0.029335029423236847,-0.08358003944158554,-0.018089834600687027,0.013023873791098595,-0.030910814180970192,-0.00346828973852098,0.009822765365242958,-0.04214635491371155,0.023888448253273964,0.04629838839173317,0.055542267858982086,-0.018078070133924484,0.029306406155228615,0.08346858620643616,-0.08523722738027573,0.027828367426991463,0.15212202072143555,0.011883114464581013,-0.033393312245607376,-0.07725752890110016]},{"text":"I felt emotions of gentleness and pleasure, that had long appeared dead, revive within me.","book":"1984","chapter":80,"embedding":[-0.032368794083595276,0.015727028250694275,0.046347979456186295,0.06341593712568283,0.07399039715528488,-0.024111373350024223,0.02773360349237919,-0.023687418550252914,0.05195602774620056,-0.060480933636426926,0.03869889676570892,-0.004449248779565096,0.013414341025054455,0.0018887475598603487,0.06800961494445801,0.032240211963653564,0.04445679858326912,0.03787935897707939,-0.043017107993364334,0.0709286630153656,-0.005033659283071756,0.1006530225276947,-0.020321888849139214,-0.04727718606591225,-0.027747867628932,0.034877292811870575,-0.008161457255482674,-0.004303759895265102,0.06299756467342377,-0.0646015852689743,-0.03377724438905716,-0.0038940797094255686,0.020993642508983612,-0.015038504265248775,0.015581481158733368,0.11851780116558075,-0.0659317746758461,-0.06009818986058235,-0.0020356166642159224,-0.018851328641176224,0.004122972022742033,0.038221485912799835,0.017414575442671776,0.024406995624303818,0.04660787805914879,-0.04788440838456154,-0.034297652542591095,-0.020256372168660164,0.08531489223241806,-0.032965369522571564,0.031406331807374954,-0.025373855605721474,-0.05862622708082199,0.0716848224401474,-0.011382518336176872,-0.031034735962748528,0.019024426117539406,0.003154197009280324,-0.07014830410480499,-0.03178592026233673,-0.03157617151737213,0.006386811379343271,0.050770606845617294,0.0009263725369237363,-0.027501443400979042,0.03652053326368332,-0.025470100343227386,-0.0646267980337143,0.028517886996269226,0.01055870857089758,-0.03089030645787716,-0.01937253400683403,-0.028068074956536293,-0.036883264780044556,-0.1105930432677269,-0.0036771853920072317,0.04939165711402893,-0.07451921701431274,-0.03595428541302681,0.01519409567117691,0.022335246205329895,-0.003851083805784583,-0.06639021635055542,0.013555383309721947,-0.07392054051160812,-0.05131775140762329,0.040402818471193314,-0.08220825344324112,-0.03185140714049339,0.08791521191596985,-0.009292309172451496,0.023841293528676033,-0.11591702699661255,0.02744811587035656,0.005187781993299723,-0.08152372390031815,-0.024366596713662148,0.11492909491062164,-0.006074180826544762,0.07289409637451172,-0.006783238612115383,0.03658047690987587,-0.09099479764699936,0.03377320244908333,0.010330899618566036,0.015649717301130295,-0.13905391097068787,-0.016095589846372604,-0.04289018362760544,0.015564313158392906,-0.08384440839290619,-0.055097438395023346,-0.02486712671816349,0.016992982476949692,0.016652503982186317,0.06587933748960495,-0.08388613909482956,-0.06680481135845184,0.0749235525727272,0.04073280468583107,0.07825859636068344,0.01328159961849451,0.027908364310860634,-0.06503453105688095,-0.02521870657801628,-0.06661161780357361,0.08078787475824356,-2.9523192652924473e-33,-0.02135336585342884,-0.09472020715475082,0.04693346470594406,0.025755971670150757,0.05881983041763306,-0.047568123787641525,-0.019473493099212646,0.022280460223555565,-0.03491756319999695,-0.01695121079683304,0.04098011925816536,0.06815806776285172,0.024564599618315697,0.0006814947701059282,-0.14818596839904785,-0.024343959987163544,-0.030453942716121674,0.016141468659043312,0.017410142347216606,0.00044385416549630463,-0.06069895997643471,0.0946403220295906,0.04675734043121338,-0.005995453335344791,-0.04952334985136986,-0.009796435944736004,-0.03478388860821724,0.007480376400053501,-0.014292677864432335,0.006172815803438425,0.029901577159762383,0.06326547265052795,0.06500974297523499,-0.0704103484749794,-0.06011676415801048,0.09357418119907379,0.040433164685964584,-0.008214029483497143,0.030344223603606224,0.03475702181458473,-0.019560981541872025,0.02027706243097782,0.021539265289902687,-0.06999596208333969,-0.01969667710363865,0.015829067677259445,0.026014182716608047,0.04516973719000816,-0.0909031480550766,0.01328341942280531,-0.037415098398923874,-0.006421075202524662,0.041474949568510056,0.028936095535755157,-0.05900841951370239,0.07590320706367493,-0.0035404469817876816,0.05150427669286728,-0.04938634857535362,-0.027931468561291695,0.014049144461750984,-0.013966846279799938,0.03853124380111694,-0.06051529198884964,-0.03424564749002457,-0.06362921744585037,-0.010499340482056141,-0.08322389423847198,0.017936618998646736,-0.0565921775996685,-0.07379630953073502,-0.006984103471040726,-0.009203437715768814,-0.017763318493962288,-0.02634863369166851,-0.11451587826013565,-0.05709734931588173,-0.03843945637345314,-0.024186404421925545,-0.04520794376730919,0.044012945145368576,-0.0897861197590828,-0.07157965749502182,0.07175730913877487,0.13425959646701813,0.009333627298474312,-0.006528070662170649,-0.13355518877506256,-0.09052278846502304,0.00945504941046238,-0.025494733825325966,0.014681720174849033,0.07798925787210464,-0.08842101693153381,-0.03399936109781265,1.415440413268334e-34,0.057707659900188446,-0.038860056549310684,-0.023322690278291702,0.12794722616672516,-0.037014853209257126,-0.07113017141819,-0.09337557107210159,0.09710322320461273,-0.08533374965190887,0.05689428001642227,0.0819011926651001,0.01509300246834755,0.05212819203734398,0.040470995008945465,-0.03142499178647995,0.034048207104206085,-0.028774073347449303,-0.0132803525775671,0.011564494110643864,0.05617848411202431,-0.011562625877559185,0.10321811586618423,0.0021301978267729282,-0.01037538144737482,0.015366326086223125,0.03668512776494026,0.051214855164289474,-0.05192392319440842,-0.009000396355986595,-0.020150935277342796,0.09696885943412781,-0.029360704123973846,-0.03890140727162361,0.010560540482401848,0.022275099530816078,0.06501876562833786,0.08410375565290451,-0.039248574525117874,-0.027783909812569618,-0.06833397597074509,0.025450460612773895,0.05656148120760918,0.04316757991909981,0.08257358521223068,0.001694583217613399,-0.024496298283338547,-0.0006393257062882185,-0.00553641002625227,-0.00561635522171855,0.03679541498422623,-0.04457893222570419,0.04921925440430641,-0.03419207036495209,-0.036983538419008255,0.00011088085739174858,-0.006699178367853165,0.009314656257629395,-0.059311483055353165,0.031696829944849014,-0.07915720343589783,-0.02967064455151558,-0.05528194084763527,-0.03941211476922035,0.032555196434259415,0.04859685152769089,0.007518005091696978,0.03572484478354454,0.03121650032699108,-0.13023056089878082,-0.002867896808311343,0.032459501177072525,0.11135254800319672,-0.10702982544898987,0.07971028983592987,0.028430694714188576,0.0006275246851146221,-0.07529618591070175,-0.009813128039240837,-0.05950957536697388,-0.01123492419719696,-0.06395722925662994,-0.01542589534074068,0.019333621487021446,-0.010597950778901577,-0.02779272571206093,0.001791128539480269,-0.033370353281497955,0.025506047531962395,-0.010618447326123714,-0.0714075043797493,-0.0448751263320446,0.04635165259242058,-0.028845416381955147,0.03227909654378891,-0.0027816055808216333,-2.359166551002545e-8,-0.016747886314988136,0.004676841199398041,-0.05676461011171341,-0.023301677778363228,0.09460999071598053,-0.017917132005095482,0.04723263904452324,0.03142687305808067,-0.107330322265625,0.0209715124219656,-0.03961367905139923,0.05988795682787895,0.011497553437948227,0.015570638701319695,0.0796862319111824,0.021206120029091835,-0.001957286149263382,-0.015820538625121117,0.011349812150001526,0.023006964474916458,-0.0011441094102337956,0.08854992687702179,-0.027635324746370316,-0.033262986689805984,0.03475301340222359,0.04340745508670807,-0.0027818477246910334,-0.0727652832865715,-0.0625741109251976,-0.035970862954854965,0.05719199776649475,0.06996370851993561,-0.017099600285291672,0.0047737304121255875,-0.0392334908246994,0.03168391063809395,0.016357989981770515,-0.057740967720746994,-0.011403720825910568,-0.031821515411138535,0.015092086046934128,0.07669441401958466,-0.030885519459843636,-0.06166340410709381,0.057638462632894516,-0.02343711070716381,0.10376930236816406,-0.029161544516682625,-0.006977814715355635,0.06410498172044754,0.07318601757287979,0.08554178476333618,-0.0023130832705646753,0.0783219039440155,0.07822814583778381,0.026925405487418175,-0.05485942214727402,0.08252881467342377,-0.0040753684006631374,0.0008163482416421175,0.13379304111003876,-0.023435279726982117,-0.0684598833322525,-0.026877833530306816]},{"text":"I had saved a human being from destruction, and as a recompense I now writhed under the miserable pain of a wound which shattered the flesh and bone.","book":"1984","chapter":81,"embedding":[-0.0477156937122345,0.09208357334136963,0.06250769644975662,0.0430351123213768,-0.010512671433389187,0.011091271415352821,0.005228870548307896,0.03446276858448982,0.06132224202156067,0.031282249838113785,-0.025434905663132668,0.051340892910957336,0.005024974700063467,0.05795280635356903,-0.0391094908118248,-0.06697550415992737,-0.028127796947956085,0.045200057327747345,-0.024231528863310814,0.0828171819448471,0.00044735235860571265,0.10795256495475769,0.01127466931939125,-0.010078725405037403,-0.01888093538582325,0.014446700923144817,0.016687942668795586,0.04735206812620163,-0.028606737032532692,-0.06933402270078659,-0.026325630024075508,-0.11520398408174515,0.0016662025591358542,-0.006753613706678152,0.07449120283126831,0.06917739659547806,-0.024352040141820908,-0.013516779989004135,-0.00935425702482462,-0.024431677535176277,0.027765272185206413,0.041425153613090515,-0.015387880615890026,0.0287331510335207,0.1222434788942337,-0.0685427263379097,-0.03320852667093277,-0.024548977613449097,0.05215305835008621,-0.005834866315126419,0.003007221734151244,0.045576922595500946,-0.08702406287193298,0.02987629733979702,-0.03945348411798477,-0.006812731269747019,0.013911687768995762,0.08175017684698105,-0.05704149231314659,-0.0031016655266284943,-0.01849251613020897,0.006600611377507448,0.05491571128368378,0.01664106734097004,0.005707538686692715,0.026589680463075638,0.05633840337395668,-0.0596911683678627,-0.05265817046165466,0.08473250269889832,-0.021156515926122665,-0.012666042894124985,0.059138815850019455,-0.0553407222032547,-0.08525171130895615,-0.039887670427560806,-0.017943160608410835,-0.0363054983317852,0.013155497610569,0.0329701267182827,0.04217100515961647,0.018100816756486893,-0.04603089019656181,0.03664768487215042,-0.0511346273124218,0.02649533376097679,0.06818433851003647,-0.016163337975740433,0.09262537956237793,0.03401806578040123,-0.015605074353516102,0.002900948515161872,0.07047139108181,0.04127143695950508,-0.05984300747513771,-0.0015353437047451735,-0.035349227488040924,0.050080183893442154,-0.06063999980688095,0.04263218864798546,0.004995360039174557,-0.05357919633388519,-0.041716188192367554,-0.06274571269750595,0.10889426618814468,-0.05809841677546501,-0.12056896090507507,-0.06725582480430603,-0.01326146349310875,-0.04307166859507561,0.0038078734651207924,0.05342034995555878,-0.002368236193433404,0.04583481699228287,0.06848882138729095,0.04144428297877312,-0.054314304143190384,-0.04068605601787567,0.040604118257761,0.09680600464344025,0.05578174442052841,0.009070630185306072,-0.03258409723639488,0.07000616937875748,-0.0599701888859272,-0.08157556504011154,0.042206041514873505,-3.599632596550595e-33,0.04968781769275665,-0.040602635592222214,0.03612940385937691,-0.0076761930249631405,0.05078047141432762,-0.0029866404365748167,-0.06196613982319832,0.015365473926067352,-0.029752295464277267,-0.06865288317203522,0.007938764058053493,-0.03070191852748394,0.0634864866733551,0.04571986198425293,-0.0980643704533577,-0.0021136191207915545,-0.09046076238155365,-0.0023226295597851276,0.04555487260222435,0.033539239317178726,-0.05695866048336029,0.047848641872406006,0.04435379430651665,0.010031435638666153,-0.04944473132491112,0.00983803253620863,-0.014781505800783634,-0.07532370090484619,0.016939537599682808,0.003635205328464508,-0.010400703176856041,0.01011987030506134,0.11501108109951019,-0.03353286534547806,-0.04707222431898117,0.027396904304623604,0.020803751423954964,-0.041846033185720444,-0.03394769877195358,-0.0011760792694985867,0.0024683207739144564,0.07923084497451782,0.04288959503173828,-0.03926488012075424,0.08703023940324783,-0.010706284083425999,-0.034675486385822296,0.02847200632095337,-0.0742325559258461,-0.029647380113601685,-0.058159466832876205,0.06948986649513245,0.11788241565227509,-0.040408480912446976,-0.031507860869169235,-0.05722805857658386,0.004334060475230217,0.021813949570059776,0.020484309643507004,0.04496966302394867,0.014598328620195389,0.01440413948148489,0.06838102638721466,0.018307644873857498,-0.036758072674274445,-0.07311507314443588,-0.0020727652590721846,-0.06094411760568619,-0.006137510761618614,-0.09850089997053146,-0.11905389279127121,-0.031827304512262344,-0.02688676491379738,0.020007764920592308,-0.07645757496356964,-0.022272862493991852,0.014487440697848797,-0.028199752792716026,-0.09284699708223343,-0.05485285818576813,-0.04906570538878441,-0.01388075202703476,-0.03775041922926903,0.0006378107354976237,0.11353931576013565,0.007795500569045544,-0.015950219705700874,-0.1406182199716568,-0.013945390470325947,-0.042691610753536224,0.04700491577386856,-0.03839816525578499,0.042262785136699677,-0.0701979547739029,-0.01563066989183426,1.4891122028598429e-33,0.03884602710604668,-0.01934303157031536,-0.014219333417713642,0.09990373253822327,-0.011807752773165703,-0.12370488792657852,-0.1398608237504959,0.021422283723950386,-0.06419289857149124,0.04537154361605644,-0.034328438341617584,-0.006645797751843929,0.03804789483547211,0.03929043933749199,-0.0597708597779274,-0.025866001844406128,-0.06720811128616333,-0.040760405361652374,-0.045579761266708374,-0.06831103563308716,-0.06265930831432343,0.06363777071237564,0.07063250988721848,0.022173019126057625,0.04113413020968437,0.05334939807653427,0.09915819764137268,-0.010420749895274639,-0.033090610057115555,-0.07778477668762207,0.06037299707531929,-0.004696831107139587,-0.09164664149284363,-0.026453416794538498,0.025098981335759163,0.058880604803562164,0.060760512948036194,-0.030059413984417915,-0.03502953425049782,-0.07186843454837799,0.05871289595961571,-0.035611387342214584,-0.01493462361395359,0.07834604382514954,0.027170216664671898,-0.04191727563738823,0.010761700570583344,-0.036139655858278275,0.05899400636553764,0.05010659620165825,-0.009445564821362495,-0.015429884195327759,0.06851193308830261,-0.022685380652546883,0.059882909059524536,-0.06634959578514099,0.06543435156345367,-0.15082776546478271,0.035510968416929245,-0.016814803704619408,-0.08345842361450195,0.03503794968128204,0.008587884716689587,0.09352894127368927,0.04909645393490791,-0.036324530839920044,0.021644849330186844,0.05590422451496124,-0.16111700236797333,0.022146034985780716,-0.06446672976016998,0.05303544923663139,-0.056779660284519196,0.01635339856147766,0.04094354063272476,0.0164546649903059,-0.05157540738582611,0.009644714184105396,-0.0890665054321289,0.055563200265169144,0.022069470956921577,-0.0405103974044323,0.04585821554064751,0.03052149899303913,0.023983819410204887,-0.00678810803219676,0.006747427396476269,0.04983767867088318,0.007726775947958231,0.0009827262256294489,-0.020621582865715027,-0.022691093385219574,-0.00026434147730469704,-0.04091320559382439,-0.014295738190412521,-2.8371241356239807e-8,-0.02564874291419983,0.02915998175740242,-0.06166217103600502,0.014499735087156296,0.026569902896881104,-0.037117648869752884,0.02136010304093361,0.02522183768451214,-0.07813992351293564,0.0008842989918775856,-0.023506762459874153,0.021620821207761765,0.05230026692152023,0.09859536588191986,0.01237531565129757,0.006785428151488304,0.07626663148403168,-0.02852717787027359,-0.006321067456156015,-0.004969762172549963,-0.011642747558653355,0.038565799593925476,-0.012213596142828465,-0.09220471978187561,0.01639850065112114,0.011531553231179714,-0.054846685379743576,-0.04602758213877678,-0.07917123287916183,0.03606216236948967,0.022944346070289612,0.026121703907847404,0.02774158865213394,0.10216902941465378,-0.03606272116303444,-0.01779356598854065,0.04570373520255089,-0.009579089470207691,-0.01321857888251543,0.00287268846295774,0.03285518288612366,0.11359716206789017,0.07016990333795547,0.009207658469676971,-0.009789015166461468,-0.06139616295695305,0.010948781855404377,0.013036530464887619,0.0004969522706232965,0.00324292853474617,0.04813957214355469,0.05577725172042847,0.04409460723400116,0.010799289681017399,0.0496685653924942,-0.05207573622465134,0.013794002123177052,0.04179245978593826,-0.08930078893899918,0.005800613202154636,0.13222861289978027,-0.021727347746491432,-0.052374888211488724,-0.02396586164832115]},{"text":"As soon as he beheld my form, he placed his hands before his eyes and uttered a shrill scream; I drew his hand forcibly from his face and said, ‘Child, what is the meaning of this?","book":"1984","chapter":81,"embedding":[-0.0400422029197216,0.1066502034664154,0.024843163788318634,0.047159552574157715,-0.03445282205939293,-0.0176532082259655,0.09455391019582748,-0.000012442137631296646,0.014630150981247425,-0.07667035609483719,0.026358233764767647,-0.027163971215486526,-0.0343310572206974,0.007256463170051575,0.01768677867949009,0.06300331652164459,-0.013857041485607624,-0.0757775530219078,0.002264063572511077,0.019424766302108765,0.09501384943723679,0.10752393305301666,0.018051661550998688,-0.06009694188833237,0.028430329635739326,0.09888555854558945,0.012971783056855202,-0.01661081053316593,0.10453252494335175,0.021212300285696983,-0.03385976701974869,-0.029065139591693878,0.025138279423117638,-0.025768153369426727,-0.05235057324171066,-0.013874629512429237,0.018283573910593987,0.08523719012737274,0.0037174655590206385,-0.017612820491194725,-0.025291096419095993,0.042556535452604294,-0.04957662895321846,0.05436033383011818,-0.011773865669965744,0.053214799612760544,-0.01729063130915165,0.014510903507471085,0.007525007706135511,-0.037314366549253464,-0.09567045420408249,-0.08199325948953629,0.03809896484017372,-0.031266048550605774,-0.06793957948684692,-0.02733972668647766,0.09427253156900406,-0.023840302601456642,0.002078866120427847,0.03538976609706879,-0.07038963586091995,0.0238485224545002,-0.00895435456186533,0.047614406794309616,-0.06810583174228668,-0.0620436817407608,0.04925244674086571,-0.05636292323470116,0.05861800163984299,0.07623454928398132,0.05186250060796738,0.007797456346452236,0.04194316640496254,0.03801628202199936,-0.014736941084265709,-0.0665503740310669,-0.01252046599984169,-0.04105469584465027,0.09671608358621597,-0.04550468176603317,-0.024131787940859795,0.0733729898929596,-0.059184905141592026,-0.040580667555332184,-0.08979581296443939,-0.03992094844579697,0.040617864578962326,-0.07304731756448746,-0.039777256548404694,0.07342112809419632,-0.030758129432797432,-0.1152433231472969,-0.016518613323569298,0.054725632071495056,-0.006867332383990288,-0.04038245230913162,-0.019327428191900253,0.02332240529358387,-0.11840608716011047,-0.039088472723960876,0.060762919485569,0.013653993606567383,-0.005794299766421318,0.04784851148724556,0.0033358726650476456,-0.09541510790586472,-0.0436396561563015,-0.05631815269589424,-0.10063427686691284,-0.02256096340715885,-0.03855486959218979,-0.073263980448246,-0.05524600297212601,0.00967459287494421,-0.00519669009372592,0.07716009765863419,-0.018221741542220116,-0.0545220673084259,-0.08019919693470001,0.04880513623356819,0.07038886845111847,0.058921679854393005,-0.08316822350025177,0.031772881746292114,0.004208285827189684,-0.09831628203392029,-0.06121714040637016,-9.600048386459574e-34,0.06407702714204788,0.04614785686135292,-0.05219923332333565,0.0448136068880558,-0.01124896015971899,0.10609382390975952,-0.006115535274147987,-0.07393601536750793,-0.0235165785998106,0.029496099799871445,-0.014846744947135448,-0.07487562298774719,0.06080548092722893,0.03827444463968277,-0.09112076461315155,0.07371797412633896,-0.02890656888484955,0.020520297810435295,0.05258305370807648,0.004790647886693478,-0.021102461963891983,0.053354788571596146,-0.007846931926906109,-0.08330691605806351,0.031921397894620895,0.009862967766821384,-0.05805985629558563,-0.00786347221583128,0.029440363869071007,0.009246541187167168,-0.0526043064892292,0.09072312712669373,-0.02522680163383484,-0.054795265197753906,0.02230456843972206,-0.006594877690076828,0.07325536012649536,-0.0690670907497406,-0.08696255832910538,0.03834203630685806,-0.029289664700627327,-0.03678954392671585,-0.06166444346308708,-0.013249573297798634,-0.05008232966065407,0.03128540888428688,-0.06845775246620178,0.06335016340017319,-0.03298429027199745,0.02262173593044281,0.03758852183818817,0.007980933412909508,0.06808236241340637,-0.056759122759103775,0.012983309105038643,0.06075739488005638,0.0017206158954650164,0.0015026694163680077,-0.039906878024339676,-0.04822992905974388,0.054484736174345016,-0.08353263884782791,-0.052445318549871445,0.06751697510480881,-0.08196134120225906,-0.14832709729671478,-0.006906777620315552,-0.033197443932294846,0.06458286195993423,-0.09109809994697571,-0.06155156344175339,-0.018089301884174347,-0.050126705318689346,-0.043939851224422455,-0.05616644769906998,-0.04239310696721077,0.02446916326880455,0.03471186012029648,-0.05544436722993851,-0.004214036278426647,-0.035293079912662506,0.011984971351921558,-0.034563589841127396,-0.03748678043484688,-0.005994102917611599,-0.016047917306423187,0.027408484369516373,-0.058196697384119034,-0.10279373079538345,0.06914830207824707,-0.034350618720054626,-0.03066096641123295,-0.03188015893101692,-0.029051819816231728,-0.017368201166391373,-3.284070036046398e-33,0.01377924159169197,-0.003202809952199459,0.002426418010145426,0.0252531785517931,-0.003141503781080246,-0.08637841045856476,-0.006868284661322832,0.06944862008094788,0.03673643618822098,-0.05572202056646347,-0.04754626005887985,0.05763724446296692,0.037895116955041885,0.0022196867503225803,-0.06321460008621216,-0.041792549192905426,-0.018926752731204033,0.05141809955239296,0.017377153038978577,0.0010153892217203975,0.06685927510261536,0.03180603310465813,0.04655379801988602,-0.04293215647339821,-0.02892160788178444,-0.04373665899038315,0.06460849195718765,-0.039848387241363525,0.030601855367422104,-0.0019699782133102417,0.014552263543009758,-0.029760347679257393,0.04454813152551651,0.10647637397050858,-0.020760539919137955,-0.05728842690587044,-0.047400590032339096,0.011179117485880852,-0.031878769397735596,-0.051356345415115356,-0.035501062870025635,0.017273450270295143,0.08486258238554001,0.042188987135887146,0.00956956297159195,0.03826821222901344,0.015504489652812481,0.024145299568772316,0.05171911045908928,0.052597109228372574,-0.034993626177310944,0.04162679240107536,0.01365223154425621,0.04659181833267212,-0.0495123565196991,-0.016898155212402344,-0.04571099206805229,-0.041785843670368195,0.08190541714429855,0.027600111439824104,0.05797094479203224,-0.021674614399671555,-0.0711379200220108,0.006071274168789387,0.06787417083978653,0.012890465557575226,-0.06566969305276871,0.034629955887794495,0.07194842398166656,-0.012257314287126064,0.06843925267457962,0.006574937608093023,0.05992157757282257,-0.0021308662835508585,0.03679630905389786,0.022852502763271332,0.005122923292219639,0.006659630220383406,0.009477605111896992,0.0036174433771520853,0.03912203386425972,-0.0900895819067955,0.011551416479051113,0.03716859593987465,-0.019510725513100624,-0.09577417373657227,0.0030926333274692297,0.013399388641119003,0.017648445442318916,0.011012213304638863,0.04086412489414215,0.050735149532556534,-0.0015508532524108887,0.004462121520191431,0.06854010373353958,-3.4095844370085615e-8,-0.024699779227375984,-0.05785369500517845,0.00593645591288805,-0.04295329004526138,0.08711326122283936,0.03583195060491562,0.04431062936782837,-0.05848162993788719,-0.044424936175346375,0.027800489217042923,-0.05323663726449013,0.030554400756955147,0.06719878315925598,-0.06753234565258026,0.052996717393398285,-0.021671902388334274,-0.024274639785289764,-0.07643447816371918,0.024546483531594276,-0.024563072249293327,0.0459999144077301,0.01387482974678278,0.0021938297431916,0.01649312674999237,-0.07034266740083694,-0.06357241421937943,0.0057799541391432285,0.07534689456224442,-0.11773915588855743,0.0030962422024458647,0.09637641161680222,0.09820973128080368,0.03896009549498558,-0.06297518312931061,-0.13155445456504822,0.054194461554288864,-0.04437727853655815,0.06273113191127777,0.15612955391407013,0.018108218908309937,-0.024340474978089333,0.0015262417728081346,0.03724754974246025,-0.02162882313132286,-0.02923019975423813,-0.019576087594032288,0.017809288576245308,0.05830136686563492,0.05217023938894272,0.07217839360237122,-0.07714636623859406,0.03919277340173721,-0.01829373650252819,0.02426394633948803,0.09208471328020096,-0.02674536593258381,-0.009385251440107822,0.012202047742903233,-0.04478926956653595,0.07138080894947052,0.07085159420967102,0.04312729835510254,0.01999305561184883,0.010588414967060089]},{"text":"And then I bent over her and whispered, ‘Awake, fairest, thy lover is near—he who would give his life but to obtain one look of affection from thine eyes; my beloved, awake!’ “The sleeper stirred; a thrill of terror ran through me.","book":"1984","chapter":82,"embedding":[-0.05763053894042969,0.04083868861198425,0.05029052868485451,0.09073682129383087,0.0317922942340374,0.017689375206828117,0.09661859273910522,-0.01874503679573536,0.06596405059099197,-0.037833888083696365,-0.059212300926446915,-0.02618926391005516,0.01133542787283659,-0.04810504987835884,0.008622581139206886,0.07192396372556686,-0.02128596417605877,0.039723530411720276,0.011948945932090282,0.04417530819773674,0.029844176024198532,0.06919597089290619,0.07035375386476517,-0.02475755661725998,-0.045660920441150665,-0.04165024682879448,0.07548115402460098,-0.03655599057674408,-0.016859907656908035,-0.009283948689699173,-0.06463440507650375,-0.006875153630971909,-0.014268775470554829,0.007706177420914173,0.021269047632813454,0.028892889618873596,-0.021456394344568253,-0.014471116475760937,0.0353386327624321,0.007489945739507675,0.06635569036006927,-0.030910300090909004,-0.0014430820010602474,0.026138506829738617,-0.09557949751615524,-0.07090520858764648,-0.020280038937926292,-0.02379685454070568,0.04734562709927559,-0.05428216978907585,-0.0898866355419159,-0.03323397785425186,-0.06653119623661041,-0.0698435977101326,-0.02366320975124836,0.02797839418053627,0.03379568085074425,0.05530644580721855,0.041699815541505814,0.0318707674741745,0.011574666015803814,0.004490227438509464,0.1084088534116745,0.04538385570049286,0.011902336031198502,-0.05058669298887253,0.012479276396334171,0.007372215855866671,-0.0588199719786644,0.07078052312135696,0.0025851838290691376,0.00915525946766138,-0.05386168509721756,-0.07203495502471924,-0.09028173238039017,-0.049483779817819595,0.06642928719520569,-0.10543868690729141,0.049604661762714386,-0.01206859853118658,-0.02970866486430168,-0.041303038597106934,-0.033339470624923706,-0.03781629353761673,-0.049113210290670395,-0.05268718674778938,0.06357203423976898,-0.08912362158298492,-0.03127562254667282,0.03547130152583122,-0.004259907640516758,-0.10549316555261612,-0.10640468448400497,0.07323199510574341,0.029531022533774376,-0.04797825589776039,0.0043492186814546585,-0.003492899239063263,-0.09556296467781067,0.007587569300085306,0.019322974607348442,0.06835681945085526,-0.028727885335683823,0.035413242876529694,-0.05284341052174568,0.01005919836461544,-0.05038905516266823,-0.0717824324965477,-0.06751986593008041,0.017437828704714775,0.018529942259192467,-0.11464165151119232,-0.003287175903096795,-0.014878488145768642,0.0716027170419693,0.020955059677362442,-0.01626504585146904,-0.03473147004842758,-0.001351339160464704,0.14328350126743317,0.07313503324985504,0.027485134080052376,-0.03586554899811745,-0.03647071123123169,-0.049752481281757355,-0.07366443425416946,-0.0014635161496698856,8.054742594513633e-34,0.016109351068735123,-0.000036873050703434274,-0.08652594685554504,0.07528603076934814,0.04402267932891846,-0.07306823879480362,-0.0013161582173779607,0.03834836557507515,-0.11196111142635345,0.005623888224363327,-0.05032073333859444,0.013697285205125809,-0.015591392293572426,0.01401101890951395,-0.07056616991758347,-0.035016775131225586,-0.04168766364455223,0.025039205327630043,0.021269692108035088,0.0368289053440094,-0.09292339533567429,0.0649770051240921,0.039897751063108444,-0.043077047914266586,-0.1015566885471344,-0.06814835965633392,-0.047204531729221344,-0.0007922444492578506,0.01596800796687603,0.04429599642753601,0.0024867765605449677,-0.0008155967225320637,0.057785939425230026,-0.02210264466702938,0.036516860127449036,0.039693061262369156,-0.07384641468524933,-0.005591413006186485,-0.03480106219649315,0.054556768387556076,-0.0845567062497139,0.020822469145059586,0.03746595233678818,-0.02265390008687973,-0.09683719277381897,0.04862247034907341,-0.10805576294660568,0.09131662547588348,0.010856008157134056,-0.05055790767073631,-0.00995699968189001,-0.016773832961916924,-0.0033820129465311766,0.006185008678585291,0.019888795912265778,0.048130083829164505,0.050112731754779816,0.010117698460817337,0.05472215637564659,0.021831734105944633,0.015908684581518173,-0.042525604367256165,0.029908932745456696,-0.09204697608947754,0.05464116111397743,-0.0909416526556015,-0.027814308181405067,-0.08572543412446976,-0.04794258996844292,-0.038970790803432465,-0.09086858481168747,0.022635838016867638,0.0009485846967436373,0.040521856397390366,-0.04868681728839874,-0.006935908459126949,0.08580885082483292,-0.0034358063712716103,-0.0013103315141052008,-0.09649358689785004,0.060275252908468246,0.00044102180982008576,-0.020675573498010635,0.04121238365769386,0.028246909379959106,0.013393103145062923,-0.02461991459131241,-0.1120172068476677,-0.1253090649843216,0.0824761614203453,-0.05535736307501793,0.018261708319187164,0.08972213417291641,-0.1316869705915451,-0.08267724514007568,-3.6643938864152565e-33,0.04379811882972717,-0.0016162492102012038,-0.04948371648788452,0.09410171955823898,0.02809378132224083,-0.02433149702847004,-0.05515781044960022,0.01568632572889328,-0.005459125153720379,0.03987526148557663,-0.0025045701768249273,-0.03060174733400345,0.0837024450302124,-0.004785097669810057,0.06556137651205063,-0.10325012356042862,0.059797391295433044,-0.022889716550707817,-0.014015653170645237,0.06606785207986832,-0.010964836925268173,-0.03270323947072029,-0.03711973875761032,-0.06471482664346695,0.026199672371149063,0.040419213473796844,0.07258113473653793,0.027263522148132324,-0.023816628381609917,-0.03183026984333992,0.07197517156600952,-0.06750481575727463,-0.11271920800209045,0.006874795537441969,0.023940155282616615,0.09189631044864655,0.04900342598557472,-0.08565176278352737,0.01955157145857811,-0.04759633168578148,0.0011129439808428288,0.00857906136661768,0.03101157769560814,0.023567020893096924,0.02366383746266365,0.0013950387947261333,0.011670976877212524,0.017626062035560608,-0.008772018365561962,0.025258777663111687,0.02676096186041832,0.04659707099199295,0.029527680948376656,0.06801125407218933,-0.057007137686014175,-0.07687336206436157,0.07751678675413132,-0.015036518685519695,0.10201472043991089,-0.024586524814367294,-0.030544424429535866,0.04252999275922775,-0.06427507102489471,0.02777564898133278,0.027739599347114563,0.009633371606469154,-0.05883537977933884,-0.024454427883028984,-0.022720573469996452,0.007864932529628277,0.038909636437892914,-0.021522853523492813,-0.06611010432243347,0.08845123648643494,0.029939820989966393,-0.019065245985984802,-0.011333410628139973,-0.06376466900110245,0.04581192135810852,-0.01618829555809498,0.023379145190119743,-0.021313540637493134,0.0006529994425363839,0.025522373616695404,0.02632725238800049,-0.057087499648332596,0.026684070006012917,-0.023338541388511658,-0.010691341012716293,0.013709191232919693,-0.023051397874951363,-0.013340908102691174,0.0078064268454909325,-0.07992883771657944,0.019154038280248642,-4.1208028989103695e-8,-0.03893814980983734,-0.0642775446176529,-0.029415089637041092,-0.04616372659802437,0.07690273225307465,-0.000233143349760212,0.0670085996389389,-0.1007051095366478,-0.0744856745004654,0.02233513444662094,-0.015138220973312855,0.017468782141804695,0.11021991819143295,0.03077959083020687,0.0362667478621006,0.02946828491985798,0.029333023354411125,-0.009229575283825397,-0.01681024394929409,-0.03490506857633591,0.03087935969233513,0.02973766438663006,-0.037103135138750076,-0.12135454267263412,0.05554990470409393,0.06678932905197144,-0.0793432667851448,-0.027865570038557053,-0.011855384334921837,-0.021298348903656006,0.08501528203487396,0.07048120349645615,0.010822293348610401,-0.01752469874918461,-0.0730547159910202,0.04955657199025154,0.046419598162174225,0.027198974043130875,0.010196519084274769,0.0031410118099302053,0.03856486827135086,0.02864532545208931,0.015009851194918156,-0.012703129090368748,0.023570919409394264,-0.03882046788930893,0.09078691154718399,-0.05166706070303917,-0.049285586923360825,0.07919768989086151,-0.020458247512578964,-0.003476353595033288,0.05996262654662132,0.057427503168582916,-0.02085968479514122,-0.07131373882293701,0.004608423449099064,0.06551557034254074,-0.06011684611439705,0.031008578836917877,0.07123403251171112,0.04092966020107269,0.016704099252820015,-0.045242756605148315]},{"text":"My companion must be of the same species and have the same defects.","book":"1984","chapter":82,"embedding":[-0.009493052028119564,0.048019006848335266,0.09291638433933258,0.03569987416267395,-0.04470421001315117,-0.07037493586540222,-0.03006717376410961,0.005253974348306656,-0.025969721376895905,0.0045888712629675865,-0.0066103748977184296,-0.07079862058162689,-0.013806252740323544,0.06859970837831497,-0.008111100643873215,0.0035560266114771366,0.009507844224572182,0.032602377235889435,0.0336209200322628,0.06281506270170212,-0.11953479051589966,0.03537970036268234,0.0004911993746645749,0.001640801434405148,-0.13758300244808197,-0.06031189486384392,-0.022138796746730804,-0.01615523360669613,0.01182616502046585,-0.09670360386371613,-0.013861415907740593,0.09507304430007935,-0.06172744184732437,0.006045971531420946,0.04145195707678795,-0.008314178325235844,-0.05248593911528587,0.03946187347173691,0.04129769280552864,0.0047038281336426735,0.02714158594608307,0.011318513192236423,0.02918059006333351,0.043704211711883545,-0.08007296174764633,-0.0684075877070427,-0.06749210506677628,0.019796986132860184,0.04276328161358833,0.006672768387943506,-0.08248050510883331,-0.026136502623558044,-0.0810166746377945,0.004925370216369629,0.040899358689785004,0.004765206482261419,-0.010897460393607616,0.0175729151815176,-0.00018956589337904006,0.0018801771802827716,0.048377539962530136,0.08792686462402344,-0.008193775080144405,0.017046531662344933,0.0021446833852678537,0.05308426916599274,0.018446365371346474,-0.028412174433469772,0.0549110472202301,0.023836100473999977,0.019280102103948593,0.01916339248418808,-0.0019580756779760122,0.06821435689926147,-0.047002870589494705,0.060464467853307724,0.009867421351373196,-0.04948750510811806,0.0493919663131237,0.04571310058236122,-0.1924293041229248,-0.031622469425201416,-0.030763063579797745,-0.027580082416534424,0.08190131932497025,0.004675942938774824,0.04589862376451492,-0.060141995549201965,-0.13564187288284302,-0.018537791445851326,-0.011573114432394505,0.03361394256353378,0.03958320990204811,-0.05207837373018265,-0.06419703364372253,0.07605379074811935,0.012816771864891052,-0.029408657923340797,-0.028291622176766396,0.07903870940208435,-0.10361340641975403,-0.05492916330695152,0.01915072835981846,0.14255748689174652,0.019692718982696533,0.011355183087289333,-0.03644033893942833,-0.0845056101679802,-0.022945379838347435,-0.09612865746021271,0.004054528195410967,-0.021823575720191002,0.005129929631948471,0.0751226618885994,0.042609892785549164,-0.032307498157024384,-0.019996562972664833,-0.012108918279409409,-0.00950462743639946,0.033624354749917984,0.031402118504047394,0.013822278939187527,-0.0065635317005217075,-0.03313668817281723,-0.007350767496973276,-0.0990334153175354,0.006029624026268721,-3.942410055328236e-33,0.05499890074133873,0.05419592559337616,0.02065434679389,0.05656327307224274,0.04122902825474739,0.050090592354536057,-0.050914466381073,0.01585381105542183,-0.042255986481904984,-0.06587588787078857,-0.011519307270646095,-0.051755014806985855,0.008538443595170975,-0.08026226609945297,-0.06526777148246765,0.08147010952234268,-0.015313430689275265,0.04616912081837654,-0.05462808907032013,0.043046172708272934,-0.004766889847815037,-0.02342977002263069,0.01060386374592781,-0.005548425484448671,0.009653447195887566,-0.045884404331445694,0.019927995279431343,-0.019602308049798012,-0.002802096540108323,0.020070191472768784,0.01230628415942192,0.07867979258298874,0.05118843540549278,0.07983817905187607,-0.12477846443653107,-0.02372252754867077,-0.04349560663104057,-0.0829513892531395,-0.05142005532979965,0.037652891129255295,0.0015738224610686302,0.023686416447162628,0.04799723997712135,-0.01156152505427599,0.014068867079913616,0.0074855186976492405,0.1074441522359848,-0.015014161355793476,-0.03064117766916752,-0.009025122970342636,-0.08437211811542511,0.011067398823797703,-0.015781819820404053,0.028673134744167328,-0.02175704389810562,-0.05363861098885536,0.09733349829912186,-0.03520440682768822,0.017835695296525955,0.09014724940061569,0.06948529183864594,0.0197751447558403,-0.025071823969483376,-0.05383611097931862,0.0849328339099884,-0.11437297612428665,-0.022399133071303368,-0.058164361864328384,-0.05987076833844185,-0.004276591818779707,-0.026916397735476494,0.013443024829030037,-0.0770997703075409,-0.015607595443725586,-0.016757121309638023,-0.09290024638175964,-0.01524039451032877,0.02404005266726017,-0.00013004198262933642,-0.085906483232975,-0.05593898892402649,0.053581271320581436,0.005541251506656408,0.02946852333843708,-0.09988061338663101,0.025827838107943535,-0.00195841072127223,0.04939751327037811,0.01622236892580986,0.08529508858919144,0.09472174197435379,-0.01184585876762867,0.008902303874492645,-0.07040058821439743,0.045234400779008865,1.9121276203276667e-33,-0.04778136685490608,-0.07824589312076569,0.08176195621490479,0.045996226370334625,0.060464002192020416,-0.0019067106768488884,-0.025413112714886665,0.03712001442909241,-0.029411569237709045,0.07851255685091019,0.012832151725888252,0.032436516135931015,0.02124427631497383,-0.056269630789756775,-0.016657033935189247,0.05647459253668785,0.0009550559334456921,-0.044934287667274475,0.09977220743894577,-0.03136681392788887,-0.01933002471923828,0.12408090382814407,0.00409346166998148,-0.04559686407446861,0.02121744491159916,0.04638616368174553,0.05744696408510208,-0.04422781988978386,-0.00782938301563263,-0.06586382538080215,-0.015800194814801216,-0.007395217660814524,-0.14923325181007385,-0.06600236147642136,0.0785636380314827,-0.00029759950120933354,-0.05185068026185036,-0.002242873189970851,-0.04589666798710823,0.013006779365241528,0.004411980975419283,0.03016876056790352,0.033702585846185684,0.06550521403551102,0.08690927177667618,-0.0070317029021680355,0.08414258807897568,-0.06516502797603607,0.04665999114513397,0.06346146017313004,0.007401945535093546,0.010507669299840927,-0.026208672672510147,-0.05357126519083977,-0.06085667386651039,0.00041262825834564865,0.06855215132236481,-0.019776875153183937,0.08344508707523346,0.027038777247071266,0.05900336056947708,-0.016727391630411148,-0.02861749939620495,0.06049961969256401,-0.06224076822400093,-0.03580043464899063,-0.008763091638684273,0.09104134142398834,0.03770570829510689,0.011219330132007599,-0.004415587056428194,-0.03413372486829758,-0.05148927867412567,-0.0704561397433281,0.06691300123929977,-0.04114484786987305,-0.03552975133061409,-0.09301724284887314,0.05321090668439865,-0.019188307225704193,-0.038075823336839676,0.013733353465795517,0.07901803404092789,0.06555438041687012,0.014047205448150635,-0.03806765004992485,-0.008791853673756123,0.059355445206165314,-0.007586885243654251,0.016004366800189018,-0.03695765882730484,0.06288105249404907,-0.03672375902533531,-0.08289296925067902,0.040926478803157806,-2.1416189710521394e-8,-0.02439822256565094,-0.03184093162417412,-0.02974740043282509,-0.01881781965494156,0.0002449417661409825,-0.05024479702115059,-0.05663793906569481,-0.014192354865372181,0.026188047602772713,0.07696819305419922,-0.0625598356127739,0.0155039606615901,0.059676218777894974,0.06887446343898773,0.09559562057256699,-0.03195171803236008,-0.03274060785770416,0.07116716355085373,-0.06589985638856888,0.03297116607427597,-0.09194233268499374,0.039565104991197586,0.07216106355190277,0.0009491797536611557,-0.06678059697151184,0.002728208666667342,0.03971464931964874,-0.033133067190647125,0.002646715147420764,0.018098359927535057,0.029891354963183403,0.01090901531279087,0.04065471142530441,0.0009508233633823693,0.028034357354044914,-0.021258795633912086,-0.047835975885391235,0.022522537037730217,0.06270738691091537,0.025924501940608025,-0.0016860015457496047,0.05507185310125351,-0.03877170383930206,0.1110025942325592,0.01819196715950966,-0.08254683017730713,0.08782103657722473,-0.09857352077960968,-0.03688450902700424,-0.043621793389320374,0.0164627768099308,-0.049159545451402664,0.005905311554670334,-0.010847296565771103,-0.036332543939352036,-0.012227987870573997,0.03719191253185272,0.0006064425688236952,0.04247593507170677,0.0036595044657588005,0.08296214044094086,0.012455085292458534,0.018442442640662193,-0.019530313089489937]},{"text":"You would not call it murder if you could precipitate me into one of those ice-rifts and destroy my frame, the work of your own hands.","book":"1984","chapter":83,"embedding":[-0.02056683599948883,0.05130631849169731,-0.029300732538104057,-0.011015280149877071,0.07602113485336304,-0.10834909230470657,0.08022139966487885,0.029641035944223404,0.06014570966362953,0.058385442942380905,-0.036291155964136124,0.027171380817890167,-0.019256416708230972,-0.01249341294169426,0.016646426171064377,-0.049330756068229675,0.01721883751451969,-0.017926877364516258,-0.04216514527797699,0.11816616356372833,-0.04201415181159973,0.04397888481616974,0.02079087123274803,-0.03333994746208191,-0.034306108951568604,0.038694094866514206,0.012497714720666409,0.0250388290733099,-0.021984800696372986,0.05525417998433113,0.0338517501950264,0.04962695762515068,-0.022447070106863976,0.04131905362010002,0.04343027621507645,0.02564210072159767,-0.006075862795114517,-0.03239206224679947,-0.10317613929510117,0.02188144251704216,0.006229269318282604,0.04724114015698433,-0.0345582477748394,0.08075977116823196,-0.02837708778679371,0.004726892802864313,-0.027283230796456337,0.041601356118917465,0.014994658529758453,-0.05331786721944809,-0.1192179024219513,-0.06059271842241287,-0.10382431745529175,0.029502829536795616,-0.031068366020917892,-0.04675251245498657,0.0321541391313076,0.015316360630095005,0.032311566174030304,-0.0022658896632492542,-0.06524840742349625,0.09280305355787277,-0.021508153527975082,0.00837301928550005,0.12018619477748871,0.010866719298064709,0.04060447961091995,-0.03721234202384949,-0.015491734258830547,0.09505540877580643,0.04898682236671448,-0.01015833392739296,0.052038270980119705,-0.01507386565208435,-0.0637812465429306,-0.003626038786023855,-0.035801734775304794,-0.08547668159008026,-0.05236254259943962,0.053711991757154465,0.011252439580857754,-0.012006742879748344,0.019429294392466545,-0.04727398604154587,-0.01726432517170906,0.02865348942577839,-0.02524019405245781,-0.013452093116939068,0.11976552754640579,-0.04371832311153412,-0.06217391416430473,-0.0003158116596750915,0.12943696975708008,-0.01648259162902832,-0.030300134792923927,0.0582573264837265,-0.040346335619688034,0.01784219592809677,-0.10219545662403107,0.019190862774848938,-0.030353115871548653,-0.13176152110099792,-0.13938377797603607,0.00806193333119154,0.022907258942723274,0.04896513745188713,-0.09861688315868378,0.049414847046136856,-0.047210801392793655,-0.0006333791534416378,-0.01131819561123848,-0.0053695435635745525,-0.0005748849944211543,0.03176506608724594,0.10369576513767242,0.01906636916100979,-0.03350251913070679,-0.0004073172458447516,0.0748615711927414,0.03081640601158142,0.07532022148370743,0.045755695551633835,-0.05277383700013161,0.05304809287190437,-0.04653429239988327,-0.09215719997882843,-0.04905376955866814,-4.8818504468260226e-33,0.055600427091121674,0.03552217781543732,0.04010360315442085,-0.04275617003440857,0.0252494178712368,-0.09606976062059402,-0.06702743470668793,0.0300139207392931,0.07002207636833191,0.1192428395152092,-0.018727153539657593,-0.0876082256436348,0.004320358857512474,0.04956214502453804,-0.060232795774936676,0.011313606053590775,0.03645068407058716,0.0317482054233551,-0.007939494214951992,0.03940504044294357,-0.05168537423014641,0.0008591969963163137,-0.032539378851652145,0.029946032911539078,-0.059633396565914154,0.07179753482341766,-0.058342345058918,0.03857213258743286,0.012583152391016483,0.013204086571931839,-0.0154108302667737,-0.05582544207572937,-0.008922392502427101,0.04078314080834389,-0.04673789069056511,0.08071628957986832,-0.039896100759506226,0.004267790354788303,-0.09280262142419815,0.029063688591122627,-0.013809616677463055,-0.0034153941087424755,-0.05785319209098816,-0.030953506007790565,0.008976771496236324,-0.028859160840511322,0.02348603680729866,0.06262323260307312,-0.10981802642345428,0.01837695762515068,0.06251395493745804,0.027158750221133232,0.07898662984371185,0.04267582297325134,-0.0008370543946512043,0.10354539752006531,0.03482670709490776,0.03296509385108948,0.09886206686496735,0.061594948172569275,-0.09154527634382248,-0.06742560863494873,-0.032845430076122284,0.09621737152338028,-0.03095906972885132,-0.02348717860877514,0.0017472074832767248,0.024838542565703392,0.03900422528386116,-0.059041719883680344,-0.08346273005008698,-0.024693233892321587,0.06398905813694,0.024621935561299324,0.0017901781247928739,-0.012137141078710556,-0.043341729789972305,0.0012299136724323034,-0.04941115900874138,0.05339055880904198,-0.007345362100750208,0.0545731782913208,-0.027061518281698227,0.02301046997308731,-0.01500922255218029,0.03120843693614006,-0.014733171090483665,0.0017993336077779531,-0.06894706934690475,0.0289599746465683,-0.011904309503734112,-0.11240313947200775,0.0530000664293766,-0.0585111640393734,-0.05563671514391899,2.018335004292399e-33,0.017603807151317596,-0.12382088601589203,-0.06608027219772339,0.016130050644278526,-0.012293286621570587,-0.04219694808125496,-0.004364685155451298,-0.027033250778913498,-0.058321885764598846,-0.03059796430170536,0.03142891451716423,0.012509691528975964,0.011431106366217136,0.013005833141505718,0.03449638560414314,-0.012488520704209805,0.010357430204749107,0.002902675187215209,-0.007847434841096401,0.05874764919281006,-0.023998117074370384,-0.02633184753358364,-0.014373847283422947,-0.004231832455843687,0.04368958622217178,0.010142902843654156,0.0789739191532135,-0.035471029579639435,0.0217442587018013,0.03676244616508484,-0.014996061101555824,-0.002558950800448656,-0.001820988836698234,-0.07493472844362259,0.001165791298262775,0.07926788181066513,-0.024306198582053185,-0.06331301480531693,-0.0657878965139389,-0.15264368057250977,-0.014382824301719666,-0.008254420012235641,-0.007543568499386311,0.10024847090244293,-0.0605543777346611,-0.09782322496175766,0.04274502769112587,0.07178565859794617,0.0362187959253788,0.047630421817302704,-0.09712646901607513,0.005443969741463661,-0.03931506350636482,-0.06691150367259979,-0.0012290515005588531,-0.07581588625907898,0.057490114122629166,-0.07614145427942276,0.03682824596762657,-0.045486632734537125,0.03861323371529579,-0.01582324504852295,0.007752600591629744,0.06359335780143738,0.10357211530208588,-0.01062981877475977,-0.07016585767269135,0.026231423020362854,-0.04586450383067131,0.039487507194280624,0.04388334974646568,0.04377470910549164,-0.06954291462898254,0.033300239592790604,-0.024499764665961266,-0.03670185059309006,0.05195112153887749,-0.0022176778875291348,-0.04779927060008049,0.024301491677761078,0.022162502631545067,-0.09415458142757416,0.014070196077227592,0.11476939916610718,0.019218947738409042,-0.010551812127232552,-0.031189987435936928,0.051055923104286194,0.010708172805607319,-0.03936358168721199,-0.05228979513049126,-0.08536770939826965,0.0316927395761013,0.08243393898010254,0.03510597348213196,-3.4438468077269135e-8,0.05316253751516342,0.07408928126096725,0.03978020325303078,-0.037621382623910904,-0.041313376277685165,-0.050204306840896606,-0.007673189043998718,-0.01250858698040247,-0.012066950090229511,-0.01571320742368698,-0.008331011980772018,-0.008552621118724346,0.04889727756381035,0.05114855617284775,-0.004254297353327274,0.01160209346562624,0.057321853935718536,-0.033707428723573685,-0.09421087801456451,-0.04761730134487152,-0.059406623244285583,0.02318701706826687,0.043953441083431244,-0.08027075976133347,0.0045082145370543,0.025779064744710922,0.015406894497573376,-0.03230826556682587,0.03733415901660919,0.08908145874738693,-0.10476663708686829,-0.0017319435719400644,-0.04175029322504997,0.042535677552223206,-0.005616713780909777,-0.029755160212516785,-0.02074103243649006,0.031030191108584404,-0.005432381760329008,-0.06228386238217354,-0.058171674609184265,0.06526245921850204,-0.00943109393119812,0.050209879875183105,-0.004300347529351711,0.025879492983222008,-0.0006162596400827169,-0.03932900354266167,0.018912620842456818,0.01991124451160431,0.022265464067459106,0.03314092382788658,-0.012023212388157845,0.04943155124783516,0.11167427152395248,0.08322059363126755,0.016818085685372353,0.02615160308778286,-0.05653214827179909,0.02390427142381668,0.07189004123210907,-0.022781962528824806,-0.014131763949990273,-0.0799347385764122]},{"text":"It is true, we shall be monsters, cut off from all the world; but on that account we shall be more attached to one another.","book":"1984","chapter":84,"embedding":[-0.02376253344118595,-0.004942560568451881,0.013491555117070675,0.07798232138156891,-0.000794147199485451,-0.027502914890646935,0.026123691350221634,-0.10829735547304153,0.011835861951112747,-0.004530595149844885,0.042401060461997986,0.004309938754886389,0.024053635075688362,0.019030360504984856,0.01301819272339344,0.030083686113357544,-0.05544709041714668,0.03425603359937668,-0.07732844352722168,0.07933282852172852,-0.008572772145271301,-0.004017184022814035,-0.02301100455224514,0.060710374265909195,-0.03195946291089058,-0.02788570336997509,0.046371668577194214,-0.054283156991004944,-0.023663196712732315,-0.012956223450601101,-0.04561996832489967,-0.006274147424846888,-0.011521506123244762,-0.009580361656844616,-0.013820257037878036,0.08477729558944702,0.01685701683163643,-0.07044007629156113,0.0508350171148777,-0.052411533892154694,-0.007895782589912415,0.02557390183210373,-0.011799024417996407,-0.011933606117963791,-0.12697851657867432,0.0426061786711216,-0.15288615226745605,0.01959224045276642,-0.09402913600206375,-0.022562814876437187,-0.07125077396631241,0.010718670673668385,0.019795702770352364,-0.030941495671868324,0.07111239433288574,0.01831226982176304,0.028630439192056656,-0.02727372758090496,0.014718293212354183,0.029794735834002495,-0.0050627258606255054,0.03144153580069542,0.06507346779108047,0.10326557606458664,0.08313152194023132,-0.059577327221632004,0.035085078328847885,0.10920412838459015,-0.18665698170661926,-0.008453807793557644,-0.0817030668258667,0.04543578252196312,0.022369466722011566,0.015219362452626228,0.057684607803821564,-0.022816406562924385,0.047147683799266815,-0.008775154128670692,-0.01178038027137518,0.07318634539842606,-0.00015603748033754528,0.010943915694952011,0.07233692705631256,-0.06204531714320183,-0.03618502989411354,-0.04416724666953087,-0.07107733935117722,0.006265345029532909,-0.08886159956455231,0.02653585374355316,-0.012822429649531841,-0.04260439798235893,0.0814463421702385,0.11483156681060791,-0.02171216905117035,-0.011984296143054962,-0.06002727895975113,0.018306799232959747,-0.0460374690592289,-0.011548423208296299,-0.04979667440056801,0.002811742713674903,-0.007009522523730993,0.04353665933012962,0.025514043867588043,-0.01987379789352417,-0.029735976830124855,-0.0453263595700264,-0.03379993140697479,0.007414153777062893,-0.019237851724028587,-0.0815582126379013,0.015568336471915245,0.016621863469481468,0.005361221265047789,-0.0266620721668005,0.009571593254804611,0.003711604280397296,0.014938120730221272,-0.003634335706010461,-0.03632102161645889,0.06983333081007004,-0.03766242414712906,0.039402976632118225,0.050027694553136826,-0.11491163820028305,-0.053954947739839554,-2.435180362115352e-33,0.010420229285955429,-0.06788595020771027,0.0524132177233696,-0.010424390435218811,0.0514909103512764,0.014535496011376381,-0.0971192941069603,0.059114329516887665,0.01707841083407402,0.003114246064797044,-0.07860434055328369,0.006293554324656725,-0.0023048915900290012,0.062224358320236206,0.040746379643678665,0.0024252792354673147,-0.0007504569366574287,0.04866576939821243,0.07507571578025818,0.033389266580343246,-0.0037360882852226496,-0.015099752694368362,-0.058501165360212326,-0.039535995572805405,0.013430166989564896,0.010263854637742043,-0.019719421863555908,-0.009073680266737938,-0.008655617013573647,0.01773410476744175,0.0013035008450970054,0.032216060906648636,0.01962287910282612,-0.004064582288265228,0.011905059218406677,0.015042082406580448,-0.03785744681954384,0.001096243504434824,-0.08387651294469833,-0.018489304929971695,0.03648586943745613,0.05369855463504791,-0.09104838222265244,-0.07637762278318405,0.04715784266591072,-0.00859384797513485,0.0916406661272049,0.01944112963974476,-0.13602988421916962,0.008436241187155247,-0.04999164864420891,-0.029603159055113792,0.06962872296571732,-0.044186823070049286,0.012968936003744602,0.0012301236856728792,-0.06214798986911774,0.033715248107910156,0.015341334044933319,-0.010398831218481064,-0.07965587079524994,-0.06330730766057968,0.0121485386043787,0.0025037622544914484,0.011507680639624596,0.0177803672850132,0.0985315814614296,-0.006218146998435259,-0.06987617909908295,0.008251667022705078,-0.06026734411716461,-0.0010724248131737113,-0.04114694893360138,0.07388154417276382,-0.0021619184408336878,-0.053442083299160004,0.048982229083776474,-0.04177523031830788,-0.007356222253292799,0.010125013068318367,-0.03516096994280815,0.06774934381246567,0.034915242344141006,-0.10650025308132172,0.09668998420238495,-0.007659883238375187,0.05791255086660385,-0.09883684664964676,0.04075657203793526,0.10021030157804489,-0.019933287054300308,-0.05904429778456688,0.031134407967329025,-0.006968208588659763,-0.04534149914979935,-6.377385624287155e-34,-0.05384575203061104,-0.047805141657590866,0.03332214429974556,-0.02187524363398552,-0.017518846318125725,-0.03146009519696236,-0.007066921330988407,0.08623487502336502,-0.0862203910946846,0.042233310639858246,-0.04045715183019638,0.031179698184132576,0.03278429061174393,-0.0004880703636445105,0.0119412736967206,-0.10434112697839737,0.06075286865234375,-0.015296471305191517,-0.029484301805496216,-0.03136648237705231,0.012263874523341656,-0.04461153969168663,0.018695568665862083,-0.0017035925993695855,-0.021630458533763885,0.07397525012493134,-0.013525312766432762,0.03160350024700165,0.020988184958696365,0.04324246570467949,0.0024975703563541174,-0.01105387881398201,-0.14654652774333954,-0.004936340730637312,0.02128656581044197,0.004486110061407089,-0.04602295905351639,0.04975185915827751,0.03760628029704094,0.004161677323281765,-0.03585771098732948,-0.053060270845890045,-0.12327846139669418,0.027171295136213303,-0.01741224154829979,0.02997748926281929,0.11037418246269226,0.04031132534146309,-0.021891411393880844,-0.0780458003282547,-0.09408219158649445,0.053634945303201675,0.009534427896142006,-0.025694822892546654,-0.01437368430197239,-0.06262615323066711,0.009223747998476028,-0.057232655584812164,0.05321977287530899,0.011342895217239857,0.01316510047763586,0.020262563601136208,-0.06188470125198364,0.0909261628985405,0.0248443391174078,-0.004705675877630711,-0.035846441984176636,0.13716979324817657,0.03040623664855957,0.038200873881578445,-0.02755145914852619,-0.016386505216360092,-0.0639571025967598,0.03442154452204704,-0.0405881293118,-0.041649896651506424,-0.010348144918680191,-0.1260073184967041,0.0010223498102277517,0.05293181911110878,0.0590875968337059,0.005026174709200859,0.02384812757372856,0.01405634731054306,0.040065158158540726,-0.11237996071577072,-0.015970535576343536,0.06918925046920776,-0.010485916398465633,-0.006134397350251675,-0.08478386700153351,-0.03782535344362259,0.024176498875021935,-0.018220223486423492,-0.07909836620092392,-3.234772805171815e-8,0.04733008146286011,0.016378412023186684,0.04549544304609299,-0.004034627694636583,0.007455530110746622,0.07854004204273224,-0.01973739266395569,0.00785837136209011,-0.08830151706933975,0.11773373931646347,0.0255206860601902,0.07905344665050507,0.01894415356218815,0.08610782027244568,0.08484193682670593,-0.03038625791668892,0.0009348083403892815,-0.11411631107330322,0.00928542111068964,0.06718646734952927,0.04767317697405815,0.05861895903944969,-0.046357762068510056,-0.061825722455978394,0.0016154040349647403,0.01077482383698225,-0.03433719649910927,-0.02943614311516285,-0.03131137788295746,0.027214113622903824,0.015860233455896378,-0.007342284079641104,-0.02529660239815712,0.06221161037683487,0.04681399092078209,-0.04886262118816376,-0.029740022495388985,0.027009496465325356,0.007190609350800514,-0.03712330013513565,0.033552978187799454,0.039532620459795,0.07413298636674881,0.12209510058164597,-0.024594850838184357,-0.005049435421824455,0.058309927582740784,0.0017727396916598082,-0.0030849366448819637,-0.037977803498506546,-0.013742323964834213,0.0007730169454589486,-0.00595832196995616,0.008682912215590477,0.034176055341959,-0.09474096447229385,-0.043764930218458176,0.14093364775180817,-0.046716250479221344,-0.012592661194503307,0.08468368649482727,-0.08898062258958817,0.045069463551044464,-0.02463286742568016]},{"text":"Pitiless as you have been towards me, I now see compassion in your eyes; let me seize the favourable moment and persuade you to promise what I so ardently desire.” “You propose,” replied I, “to fly from the habitations of man, to dwell in those wilds where the beasts of the field will be your only companions.","book":"1984","chapter":84,"embedding":[0.01940140686929226,0.04715433716773987,-0.0321330800652504,0.08801707625389099,-0.022908201441168785,-0.029312435537576675,0.1533431112766266,-0.006220667157322168,-0.05597009137272835,-0.07115541398525238,-0.07980188727378845,-0.04636998847126961,-0.04114636033773422,0.028958257287740707,0.021528830751776695,0.05582411214709282,0.006611032411456108,-0.06311497092247009,0.0354367271065712,0.05883723124861717,-0.09401077777147293,0.08996649831533432,-0.013040274381637573,0.013889058493077755,-0.08686118572950363,0.010548371821641922,0.021327173337340355,0.012235874310135841,0.0019246848532930017,-0.006531842052936554,-0.019955530762672424,0.042140569537878036,0.02807268686592579,0.0771433636546135,-0.012527206912636757,0.05130410194396973,-0.07119835913181305,-0.03326951339840889,0.043488603085279465,-0.00430867075920105,-0.006177959963679314,-0.033444084227085114,0.00776550080627203,0.004009659867733717,-0.025024374946951866,-0.06463944911956787,-0.04555252566933632,0.041853222995996475,0.06980907917022705,-0.08211416751146317,-0.09298055619001389,-0.019911635667085648,-0.01007019728422165,-0.0014834676403552294,0.015056583099067211,0.01308444980531931,0.02446630224585533,0.05092037469148636,-0.05139811709523201,0.007489677984267473,0.022189876064658165,0.05256248265504837,0.037817660719156265,0.03539843484759331,0.031375542283058167,-0.06569339334964752,-0.0251118503510952,0.10872664302587509,-0.040511369705200195,0.08455125987529755,0.008774597197771072,-0.014155161567032337,-0.039277900010347366,-0.009917935356497765,-0.07625242322683334,0.026545396074652672,-0.0068044536747038364,-0.048058297485113144,0.09353668242692947,-0.07628481090068817,0.00048532887012697756,-0.014004798606038094,-0.02771788276731968,-0.025412358343601227,-0.055081069469451904,-0.05275391414761543,0.04089562967419624,-0.037732262164354324,0.01254252903163433,-0.01355314627289772,0.021837880834937096,-0.06949778646230698,-0.04702065512537956,0.05589664354920387,-0.010789911262691021,0.013126052916049957,-0.03442353755235672,-0.06065874919295311,-0.107588991522789,0.056595440953969955,0.03788069263100624,-0.015361147932708263,0.0031261059921234846,0.05677428096532822,-0.02446143701672554,-0.05673489719629288,-0.08996818214654922,0.01042949128895998,-0.0061514126136898994,-0.030594728887081146,-0.0709361806511879,-0.03549327701330185,0.00718856742605567,-0.02553100697696209,-0.020543336868286133,-0.039089273661375046,-0.05088060721755028,-0.08232484012842178,0.05660112574696541,0.008931068703532219,0.04535778611898422,0.06016717106103897,-0.04301093891263008,0.06583718210458755,-0.00701333861798048,-0.10018250346183777,0.011131701990962029,-7.344254064244969e-34,0.0778142660856247,0.029501082375645638,0.03563770279288292,0.0031394895631819963,0.009809290058910847,-0.04377321898937225,-0.04874691739678383,-0.03793644532561302,-0.009970825165510178,0.0029008006677031517,-0.035406146198511124,0.019850457087159157,0.035670552402734756,0.043166711926460266,-0.08860175311565399,-0.033444683998823166,0.015525894239544868,-0.004662595223635435,0.07086873054504395,0.001342243398539722,-0.03284444287419319,0.06007181480526924,-0.04583437740802765,-0.026186445727944374,-0.01157749630510807,-0.07082034647464752,-0.01214403472840786,-0.04658905416727066,0.0028504524379968643,0.05659623444080353,-0.026752164587378502,0.03470194712281227,0.018624121323227882,-0.06950071454048157,0.06470602750778198,0.016918394714593887,-0.06390870362520218,-0.05386081337928772,-0.032441891729831696,0.011158416047692299,0.024349749088287354,-0.010160093195736408,-0.02682957425713539,0.018361026421189308,-0.0051479702815413475,0.03049996681511402,-0.014397887513041496,0.03145447373390198,-0.09547168761491776,0.010973772965371609,-0.043448805809020996,0.027655400335788727,0.053709421306848526,-0.035562243312597275,0.07253476232290268,-0.03268638998270035,0.024091972038149834,0.060085561126470566,0.04154793545603752,-0.07752785086631775,0.04753470420837402,-0.09851004183292389,-0.06819459050893784,-0.09097816795110703,0.005786366760730743,-0.08809656649827957,-0.05933153256773949,0.010339438915252686,-0.024577327072620392,0.022261565551161766,-0.052566222846508026,0.08799552172422409,0.00014087326417211443,0.03235592320561409,-0.04569046571850777,-0.041687384247779846,0.03887007385492325,0.01951395906507969,0.019102636724710464,-0.1333547830581665,-0.0011837254278361797,0.053768061101436615,-0.09732910245656967,0.10737043619155884,0.06922884285449982,0.025612767785787582,0.04078851267695427,-0.07851592451334,-0.024681124836206436,0.04863712564110756,-0.009394971653819084,0.022161373868584633,0.015172912739217281,-0.12172693014144897,-0.05432026833295822,-9.414401094266272e-34,0.05630737915635109,0.007904056459665298,-0.022082405164837837,0.06458920240402222,-0.005870744585990906,-0.04859290271997452,0.027877070009708405,0.02372794598340988,0.04377114400267601,0.06524601578712463,-0.07414156198501587,0.04355393350124359,0.17087170481681824,-0.002104881452396512,-0.0239558182656765,-0.020228184759616852,-0.013204500079154968,-0.018530836328864098,-0.007863307371735573,-0.05305246263742447,0.0031846954952925444,0.055039722472429276,0.020172029733657837,-0.07059703767299652,-0.03084454871714115,0.026088885962963104,0.09810950607061386,-0.04415905103087425,-0.07445569336414337,-0.09115751087665558,0.08353284746408463,-0.012562600895762444,-0.17238402366638184,-0.018204303458333015,0.056764550507068634,0.05845911055803299,0.035501327365636826,0.021071143448352814,-0.08094368875026703,-0.03712508827447891,-0.03976503387093544,-0.0026957194786518812,0.01309377420693636,0.025835298001766205,0.08844141662120819,-0.0124169597402215,0.10521963983774185,0.01174522191286087,0.013789640739560127,-0.029545996338129044,-0.0187721885740757,0.012855835258960724,0.03795726224780083,-0.021587831899523735,0.03234751522541046,-0.14724472165107727,0.02681865356862545,-0.07511837035417557,0.056154169142246246,-0.030523980036377907,-0.03575962409377098,0.014394978992640972,-0.020385419949889183,0.014955056831240654,0.013149740174412727,-0.02903067134320736,-0.06619545072317123,0.02972826547920704,-0.03797270357608795,0.05388106405735016,0.008318820036947727,-0.008707225322723389,-0.02360924705862999,0.04784449562430382,0.04891594499349594,-0.01400039903819561,0.076228067278862,-0.008075444027781487,0.03468118980526924,-0.02948920987546444,0.03237386792898178,-0.04671834409236908,0.03624513000249863,0.026616746559739113,0.05685700476169586,-0.015508405864238739,-0.07061561942100525,0.04499172791838646,-0.02987145259976387,0.026761816814541817,-0.07638977468013763,-0.034407567232847214,0.036748118698596954,-0.10996289551258087,0.057373516261577606,-4.56210891286446e-8,-0.011804619804024696,0.011993185617029667,-0.09832796454429626,-0.003998978529125452,0.10470788925886154,0.08284974843263626,-0.029990851879119873,-0.08380641043186188,0.018616775050759315,-0.03262739256024361,-0.010560656897723675,0.009951453655958176,0.07305216044187546,0.06454348564147949,0.027723275125026703,0.09919210523366928,0.04375031590461731,-0.10151707381010056,-0.01827867329120636,0.005960639100521803,-0.002911559073254466,0.06637097895145416,-0.052575524896383286,-0.026424217969179153,-0.008331136777997017,0.030245186761021614,-0.008733587339520454,-0.08164846152067184,0.0067772152833640575,0.05549941956996918,0.03877276927232742,0.09033313393592834,-0.042109474539756775,-0.030334435403347015,0.047364167869091034,0.005154842045158148,-0.05891023576259613,0.08038090914487839,0.08338718116283417,-0.0012914207763969898,0.032170724123716354,0.11152368038892746,0.04206262156367302,0.05837153270840645,-0.05885648727416992,-0.028157038614153862,0.05077442154288292,0.04080165550112724,-0.07392074167728424,-0.05177263170480728,-0.015576931647956371,0.0009368060273118317,0.037591610103845596,0.08038859069347382,0.019566316157579422,-0.012957090511918068,-0.032016854733228683,0.012881912291049957,-0.008115705102682114,0.024358659982681274,0.06158754229545593,0.004939756356179714,-0.060438115149736404,-0.03466741740703583]},{"text":"I must not be trifled with, and I demand an answer.","book":"1984","chapter":85,"embedding":[-0.03685814514756203,0.009670394472777843,-0.0325135812163353,-0.044082798063755035,-0.09462609887123108,-0.03251466900110245,0.006275147665292025,-0.003585364203900099,0.03609190508723259,-0.008389022201299667,0.07859055697917938,-0.11125192791223526,-0.041605062782764435,0.01898196153342724,0.06759446114301682,-0.028314316645264626,-0.05819356441497803,-0.09670943766832352,-0.06712606549263,0.05581854656338692,0.02841828763484955,-0.019895130768418312,-0.02574576623737812,-0.012325535528361797,-0.0035093575716018677,-0.006132244598120451,0.02697673626244068,-0.043478257954120636,0.0043236068449914455,0.005356024485081434,-0.026919789612293243,0.05618714913725853,-0.049267109483480453,-0.010383004322648048,-0.049712538719177246,0.0182955265045166,-0.011958759278059006,0.02914363518357277,0.07078621536493301,0.0006576759042218328,-0.0008370135328732431,-0.050220735371112823,-0.019056640565395355,0.07595488429069519,0.01682482659816742,0.008112831972539425,0.002336583798751235,0.09070895612239838,-0.054718196392059326,-0.005945430137217045,-0.016857460141181946,-0.036090221256017685,-0.08547303080558777,0.11029637604951859,0.03692398965358734,0.05125601962208748,0.05890246108174324,0.02781241200864315,-0.01450410671532154,0.01993487775325775,0.029796641319990158,-0.038481455296278,-0.029431961476802826,0.15615102648735046,0.08321532607078552,-0.004999775905162096,-0.034282293170690536,-0.08730008453130722,-0.06221860647201538,0.03735215961933136,-0.008866251446306705,0.009910635650157928,0.0006039089639671147,0.01885068789124489,-0.004311300814151764,-0.09416604787111282,0.028231818228960037,-0.00622011162340641,0.06073968857526779,0.010292758233845234,-0.061186641454696655,0.0757482498884201,0.03254615142941475,0.021064138039946556,-0.03306395933032036,-0.12474744766950607,0.024371406063437462,0.03633875399827957,-0.00670053344219923,0.05283030495047569,-0.10221146047115326,0.07443579286336899,-0.04073243588209152,0.03683700039982796,-0.06923811137676239,0.036746032536029816,0.018428878858685493,0.11264694482088089,-0.09059038013219833,0.013724558055400848,-0.0010507444385439157,0.02423628605902195,-0.0406428799033165,0.05272260308265686,-0.018666518852114677,0.020255228504538536,-0.0593002587556839,0.0331302173435688,0.013936091214418411,0.026752527803182602,-0.1378350853919983,0.004607011564075947,0.07715203613042831,0.03562716022133827,0.004978450480848551,0.022696102038025856,0.035681676119565964,0.05194535478949547,0.01809454709291458,-0.030302833765745163,0.04671125486493111,0.015663953498005867,0.02163495495915413,0.0582948662340641,-0.021697115153074265,-0.08341160416603088,-0.011584712192416191,-3.9058632012772015e-33,-0.0011915146606042981,0.029007630422711372,0.02669045329093933,0.10148481279611588,-0.11744870990514755,-0.01818116568028927,-0.08397038280963898,0.007272086106240749,-0.021460480988025665,-0.06561585515737534,0.021078169345855713,-0.03633448854088783,0.01086921151727438,0.03353554755449295,0.06514736264944077,0.03490889444947243,-0.06414315104484558,0.055860742926597595,-0.024342654272913933,-0.006218139547854662,-0.04867653176188469,0.07009544968605042,0.007080386392772198,0.023693356662988663,-0.02702813595533371,-0.012109100818634033,0.04267319664359093,0.03285299241542816,-0.021053984761238098,0.0386008694767952,0.02740410901606083,-0.03598741441965103,-0.013748341239988804,-0.015820080414414406,0.06736849993467331,0.01587831974029541,0.058767735958099365,-0.03831642493605614,-0.05994986742734909,-0.028838621452450752,-0.01745520904660225,-0.03326493501663208,0.015754258260130882,0.016371717676520348,0.08195663243532181,-0.06966374814510345,0.07185836881399155,-0.0399026945233345,-0.0907760038971901,-0.007714797277003527,-0.028123311698436737,0.08198965340852737,0.05488201975822449,0.009104134514927864,-0.06438557803630829,-0.017438361421227455,-0.0007601872202940285,-0.010584660805761814,-0.03259032219648361,0.07182280719280243,-0.03765382617712021,0.0915934145450592,0.03279585391283035,0.08098766207695007,-0.06908832490444183,0.027627384290099144,-0.06498463451862335,-0.015648268163204193,0.03241696208715439,0.008903993293642998,0.013485454954206944,-0.0030117908027023077,-0.022757496684789658,-0.014816995710134506,-0.018070844933390617,-0.11864496767520905,0.006914512254297733,-0.006890543736517429,0.11070437729358673,-0.027848370373249054,-0.009209845215082169,-0.02983829751610756,0.01759372651576996,-0.00814468041062355,-0.010804119519889355,-0.05417406186461449,0.004266029689460993,-0.032900143414735794,0.08785884827375412,-0.09112919121980667,-0.05047593638300896,0.08518610149621964,-0.008967227302491665,-0.07438600808382034,-0.007650941144675016,1.5932971855281838e-33,0.005762363784015179,-0.015074402093887329,-0.11532355099916458,0.07914239168167114,0.028708849102258682,0.03123692236840725,-0.050610486418008804,0.015784546732902527,-0.008501970209181309,0.05438874661922455,0.013903499580919743,-0.018832696601748466,-0.05687688663601875,0.002318768994882703,-0.010882214643061161,0.02377653680741787,0.045097608119249344,-0.07705669850111008,-0.04553480073809624,-0.039068326354026794,0.005693045444786549,-0.0057933819480240345,-0.05209340155124664,-0.02586996741592884,-0.04051951691508293,0.07907795906066895,-0.05999714881181717,-0.11424411088228226,-0.016097303479909897,0.035145387053489685,0.009718888439238071,-0.055174075067043304,-0.05763285979628563,-0.034612834453582764,-0.03477196395397186,0.15221096575260162,0.07672791928052902,0.004127101041376591,-0.047966692596673965,-0.04382474720478058,-0.005980698857456446,0.022386459633708,0.08762103319168091,0.11694150418043137,-0.014788081869482994,0.0340326763689518,0.079002246260643,-0.007623658049851656,-0.08361688256263733,0.05089094489812851,-0.027303021401166916,-0.010869246907532215,0.0144724790006876,-0.004007915034890175,-0.013979069888591766,-0.01927516609430313,-0.004570025019347668,0.007510240655392408,-0.014907590113580227,-0.017804400995373726,0.03327663987874985,-0.02083660289645195,0.014619173482060432,-0.033617570996284485,0.04450836405158043,-0.013244440779089928,-0.08628048002719879,0.07420683652162552,0.019234061241149902,-0.03530644252896309,0.05941027030348778,0.008394511416554451,-0.03749396279454231,-0.004388594534248114,-0.014450427144765854,-0.007965647615492344,0.013808309100568295,-0.02854267507791519,-0.03178130090236664,-0.045870598405599594,-0.02299986220896244,-0.013468198478221893,0.06909448653459549,-0.02177445776760578,-0.13256019353866577,-0.037926603108644485,-0.050682660192251205,0.05252828076481819,0.05492830276489258,-0.023435024544596672,-0.08008206635713577,0.009371083229780197,0.008179057389497757,-0.12115275114774704,0.055466413497924805,-3.2602279986804206e-8,-0.008516666479408741,0.04595150798559189,0.04015117138624191,-0.016086077317595482,0.07004253566265106,0.06952851265668869,0.08960375189781189,-0.04474606737494469,-0.013939114287495613,-0.0923081561923027,0.04659491777420044,-0.006366374436765909,-0.01581309735774994,-0.04220827668905258,0.12504765391349792,0.031281471252441406,0.002254392486065626,0.009439431130886078,-0.08002682030200958,-0.0029378633480519056,-0.037902552634477615,0.043581850826740265,-0.030457444489002228,-0.01451827585697174,-0.035609081387519836,0.0706060379743576,0.006475262809544802,0.01910342648625374,-0.04327334836125374,-0.015214783139526844,-0.014302700757980347,0.020796971395611763,-0.05879130959510803,-0.0943114310503006,-0.06971266120672226,0.0857643261551857,0.00610957108438015,0.027296865358948708,0.04245449975132942,-0.04727008566260338,-0.03622609004378319,0.14723092317581177,0.02216074988245964,0.08364468812942505,0.05885175243020058,-0.044025253504514694,0.027778150513768196,-0.045180387794971466,0.036610573530197144,-0.03626183420419693,-0.06098530814051628,0.02408786304295063,0.0940241888165474,0.05466892570257187,-0.027325574308633804,-0.018585750833153725,-0.027415603399276733,0.002622275846078992,-0.03739246726036072,0.0458475798368454,0.15546759963035583,-0.005166660062968731,0.07771151512861252,-0.019800232723355293]},{"text":"I knew that I ought to hasten my descent towards the valley, as I should soon be encompassed in darkness; but my heart was heavy, and my steps slow.","book":"1984","chapter":85,"embedding":[-0.007263578940182924,0.0640324130654335,0.044897593557834625,0.12164570391178131,0.029813162982463837,-0.04839716851711273,-0.008798875845968723,-0.02405320666730404,-0.009447823278605938,-0.05940265208482742,-0.0031583078671246767,-0.0072809793055057526,0.03402634337544441,0.026572030037641525,0.023411409929394722,0.024659253656864166,-0.02171715348958969,0.07339871674776077,-0.0258659478276968,0.040137168020009995,-0.0153953917324543,0.026905417442321777,0.026357468217611313,0.04829549044370651,-0.0024512314703315496,0.06832489371299744,-0.053908903151750565,0.02415168471634388,0.026697242632508278,-0.057058822363615036,0.025783320888876915,0.029300831258296967,-0.029306326061487198,-0.024576395750045776,-0.0037564735393971205,0.12553338706493378,0.07673260569572449,-0.03262538090348244,-0.013782564550638199,0.01098539773374796,0.05489104986190796,0.045784853398799896,0.020523574203252792,0.05526886507868767,-0.0006679769139736891,0.010933979414403439,0.003168945200741291,-0.039577603340148926,-0.007894255220890045,-0.039946287870407104,-0.04632529988884926,-0.03584492206573486,-0.08357877284288406,-0.04913027584552765,0.00934650469571352,0.08282676339149475,0.053637683391571045,0.004888460040092468,-0.03009745478630066,0.0008779572672210634,-0.054085321724414825,-0.08447645604610443,-0.03628939390182495,-0.03343832865357399,0.019270434975624084,0.011266333982348442,0.019481295719742775,-0.06773433834314346,-0.0531117282807827,0.031681012362241745,0.026084398850798607,0.025046298280358315,0.04318343847990036,-0.04496410861611366,-0.11112676560878754,-0.05549062415957451,0.03019550070166588,-0.0211673304438591,-0.061399463564157486,-0.05185354873538017,0.04366312548518181,0.025407833978533745,-0.03310414403676987,0.009712651371955872,-0.0546196810901165,0.04118308797478676,0.03165431693196297,-0.002881126245483756,0.04217294231057167,-0.03887906298041344,0.08008018136024475,-0.08713197708129883,-0.08084314316511154,0.04705370217561722,0.0771728903055191,-0.0007226724992506206,-0.06987606734037399,-0.026364494115114212,-0.08092926442623138,0.03609921410679817,0.023454952985048294,0.01582827791571617,-0.07006616145372391,0.07252277433872223,0.06526930630207062,-0.07547011971473694,0.004441229160875082,0.08483182638883591,0.021091828122735023,0.053536687046289444,0.03613623231649399,-0.050937216728925705,0.06576758623123169,0.05933048203587532,0.010878886096179485,0.11970098316669464,-0.042073071002960205,0.02519582398235798,-0.09292289614677429,0.18338149785995483,-0.01752419024705887,0.051875945180654526,0.007151063531637192,0.024486009031534195,0.011624411679804325,-0.05173511058092117,0.016547616571187973,-6.0286855106912934e-33,0.047086723148822784,-0.013042706064879894,0.03847505524754524,-0.006751977372914553,0.06978544592857361,-0.05531562119722366,-0.04969753697514534,-0.021699806675314903,-0.07003897428512573,-0.024949923157691956,0.004893156699836254,-0.02865801379084587,-0.043732255697250366,0.044085122644901276,-0.04495657980442047,-0.07634565979242325,-0.05411050468683243,0.008926778100430965,0.0820375606417656,-0.060478683561086655,0.05029388144612312,-0.05626986548304558,-0.0498880110681057,-0.020837964490056038,-0.08797597885131836,-0.02280457504093647,0.034233272075653076,0.034113604575395584,-0.024038495495915413,0.05258433148264885,-0.0637371614575386,-0.009676019661128521,0.0582672581076622,-0.04206651449203491,-0.00004423576683620922,0.02571246214210987,-0.004423446953296661,-0.04566926136612892,0.02541268989443779,0.03305039554834366,-0.0016892103012651205,0.018313167616724968,0.025528453290462494,-0.03934268653392792,-0.012018316425383091,0.00023167903418652713,0.05996836721897125,0.02705731987953186,-0.10438545048236847,0.05273863673210144,-0.03489670902490616,0.06194274127483368,0.07530070096254349,-0.08654246479272842,0.03289620205760002,0.007717636879533529,0.00040191548760049045,0.027038579806685448,-0.0666305273771286,0.07283473759889603,-0.017084242776036263,-0.06574641168117523,0.010222556069493294,0.00854848325252533,-0.03915730118751526,-0.08893746882677078,-0.051659319549798965,-0.036258067935705185,-0.036022819578647614,-0.00684104161337018,-0.028598889708518982,-0.028721630573272705,0.019742392003536224,0.00792157743126154,0.0018587767845019698,0.0005960480193607509,-0.009970958344638348,-0.03602704778313637,-0.016826162114739418,-0.12023602426052094,0.004612395074218512,0.005830589681863785,-0.1156587153673172,0.0601343996822834,0.16897456347942352,0.002896461635828018,0.06256043910980225,-0.09423039108514786,-0.09472229331731796,-0.060835808515548706,-0.06186394393444061,0.021747102960944176,0.068276546895504,-0.10326585918664932,-0.10037587583065033,4.011587897874127e-33,0.09366706758737564,-0.035710740834474564,0.02946113981306553,0.049042727798223495,0.06328783929347992,-0.027410754933953285,-0.03632093966007233,-0.00017415432375855744,-0.0210172850638628,0.03105432540178299,0.008992614224553108,0.056319255381822586,-0.020294805988669395,-0.016887890174984932,-0.014376165345311165,-0.006540408357977867,0.09486116468906403,0.017260100692510605,0.054065003991127014,0.012552826665341854,-0.0668274313211441,-0.030269762501120567,-0.08578667789697647,-0.0006920219166204333,0.039595670998096466,0.030610529705882072,0.08563508093357086,-0.005382566712796688,-0.026020681485533714,-0.024197284132242203,0.007940244860947132,-0.02657097578048706,-0.06820787489414215,-0.03472515195608139,-0.03237665817141533,0.08495863527059555,0.017136013135313988,-0.034568727016448975,-0.051645487546920776,-0.06088807433843613,-0.03223126754164696,0.054904304444789886,0.1041053906083107,-0.009463416412472725,-0.04776620864868164,-0.05799664184451103,0.036152686923742294,0.06524462252855301,-0.06650178879499435,0.031075356528162956,-0.023156844079494476,-0.033048365265131,0.014014971442520618,0.08304595947265625,-0.012130730785429478,-0.01766727864742279,0.022836098447442055,0.005194999743252993,-0.03159458562731743,-0.04238484427332878,-0.0922175720334053,-0.007751124445348978,-0.02416141889989376,-0.038837648928165436,0.06703558564186096,-0.02225678414106369,0.010888313874602318,-0.007315138354897499,-0.05232914537191391,0.025206321850419044,-0.01886080950498581,-0.010354159399867058,-0.10896079242229462,0.05440475791692734,-0.0028963207732886076,-0.11886925250291824,0.010574987158179283,0.032524473965168,-0.06928300112485886,-0.056037358939647675,0.03670889511704445,-0.01275903731584549,0.020914167165756226,-0.04888138547539711,-0.043794695287942886,0.071139395236969,-0.010138589888811111,0.0019116888288408518,0.04143858328461647,-0.012564031407237053,-0.019161667674779892,-0.015002566389739513,0.05818002298474312,-0.033302657306194305,-0.008333852514624596,-3.215924238020307e-8,-0.06363596767187119,0.015507870353758335,-0.055923063308000565,0.001035115448758006,0.04278862103819847,0.017978770658373833,0.012727675959467888,0.1110888421535492,-0.06458517909049988,0.034729499369859695,0.04453545808792114,0.06727596372365952,0.10605588555335999,0.1062345877289772,0.08260601758956909,0.007561169099062681,0.05045488476753235,-0.04755070433020592,-0.03491359204053879,-0.031926706433296204,0.004363581538200378,0.040679533034563065,0.0092043187469244,-0.06554154306650162,-0.011793510057032108,-0.05324734002351761,-0.007009102497249842,-0.045860402286052704,0.08291509002447128,0.04042699187994003,0.028795110061764717,0.024189189076423645,-0.04052639380097389,-0.01811877079308033,-0.036020491272211075,-0.015771372243762016,0.04188165068626404,0.005541803780943155,0.052144430577754974,0.039137598127126694,0.015062995254993439,0.07555151730775833,0.08988820761442184,0.0407317690551281,-0.024400439113378525,-0.0366889089345932,0.028309112414717674,-0.00816817581653595,-0.04461834952235222,0.015389523468911648,0.052537258714437485,0.09800425171852112,0.035096123814582825,0.09720706939697266,0.0788571685552597,0.018261205404996872,-0.0652092844247818,-0.048506882041692734,-0.06496245414018631,0.06011194735765457,0.12168745696544647,0.03161181882023811,-0.07157814502716064,-0.0755515918135643]},{"text":"The prospect of such an occupation made every other circumstance of existence pass before me like a dream, and that thought only had to me the reality of life.","book":"1984","chapter":86,"embedding":[-0.023184558376669884,0.08579116314649582,0.023008624091744423,0.009408656507730484,0.018168717622756958,-0.01709931157529354,0.0963902473449707,-0.06918119639158249,-0.005094081629067659,0.002234222600236535,0.016240989789366722,0.029315298423171043,0.016918065026402473,0.02960377186536789,-0.007981661707162857,-0.020694436505436897,-0.01800505630671978,-0.042165495455265045,-0.0058396742679178715,0.01407056674361229,-0.046924393624067307,0.023317722603678703,-0.03775211051106453,0.004737819544970989,-0.01625308208167553,0.013914559967815876,0.01975215971469879,-0.0028479909524321556,0.03358820825815201,0.024330129846930504,-0.013883321546018124,0.05163877084851265,0.028589438647031784,0.07521490752696991,0.06823362410068512,0.0640636682510376,-0.005176898557692766,0.04797687008976936,0.02181178517639637,-0.011820814572274685,0.023197533562779427,-0.05338969826698303,0.05039963126182556,-0.024731475859880447,-0.033115118741989136,-0.11931063234806061,0.06358750909566879,-0.07808178663253784,0.023331446573138237,-0.06899458169937134,-0.045650266110897064,-0.00517528411000967,0.006468567531555891,-0.07649935036897659,0.02050601691007614,0.00020753803255502135,-0.04475543275475502,0.064397431910038,-0.007926121354103088,-0.01057889498770237,-0.04374844953417778,-0.046681441366672516,0.04752187803387642,-0.02751283161342144,0.06965892016887665,-0.0008784031961113214,-0.03226173669099808,0.03937394171953201,-0.010589917190372944,-0.018245013430714607,-0.027209967374801636,0.025171611458063126,-0.08744127303361893,0.0355544351041317,0.014584376476705074,-0.07950813323259354,0.04822322726249695,-0.04290096461772919,-0.006772055756300688,0.024113330990076065,0.060883235186338425,0.034163035452365875,-0.024859638884663582,0.031534384936094284,-0.044762022793293,0.01231647003442049,0.05236237496137619,-0.03026938997209072,0.13994483649730682,-0.0026845138054341078,-0.02771599218249321,-0.10219623893499374,-0.10938964784145355,-0.01751927100121975,-0.01639564521610737,0.012303467839956284,-0.040973961353302,0.02455207332968712,-0.003722539870068431,0.009553339332342148,0.01212272047996521,-0.038438741117715836,-0.012261650525033474,0.07798351347446442,0.024764103814959526,0.026187846437096596,-0.03826877102255821,-0.042470790445804596,-0.06101541966199875,0.008228984661400318,0.004568204283714294,-0.02359703741967678,0.030515732243657112,-0.006098346784710884,-0.025601204484701157,0.10827270150184631,-0.05454302951693535,0.004681035876274109,-0.0782715305685997,0.03373226895928383,0.015730062499642372,0.11997074633836746,0.024658050388097763,0.04825872927904129,-0.10033614933490753,-0.08672627061605453,0.022325485944747925,-4.273113717754993e-33,-0.0226370207965374,-0.059402987360954285,0.01233207993209362,0.03617704659700394,0.09464365243911743,-0.0030921492725610733,-0.05911600962281227,0.020045936107635498,0.016889294609427452,-0.02306583896279335,0.10269580036401749,0.04245981574058533,0.001638064393773675,0.0025139348581433296,-0.04913415387272835,0.08126494288444519,-0.0967547819018364,-0.00857585109770298,0.08416876196861267,0.06667208671569824,-0.0881584882736206,0.026641283184289932,-0.05366893112659454,0.022146712988615036,-0.02433023788034916,0.03922754153609276,0.03734094277024269,-0.09388548880815506,0.06150691211223602,0.03311372175812721,0.0054304576478898525,0.110727958381176,-0.016089268028736115,-0.029062043875455856,0.017638035118579865,0.062236588448286057,-0.029178455471992493,-0.05659855902194977,-0.009049761109054089,-0.022805258631706238,-0.05614360049366951,-0.005057330708950758,0.07194383442401886,-0.022539382800459862,-0.012181807309389114,-0.012158346362411976,0.04780707508325577,0.08708159625530243,-0.014612739905714989,0.08735506236553192,-0.02317897416651249,-0.01130709145218134,0.02486918680369854,-0.07989102602005005,0.006972261238843203,-0.01720729097723961,-0.013216582126915455,0.054226022213697433,0.04148212447762489,0.05439320206642151,-0.061407726258039474,-0.03718619793653488,-0.009858460165560246,0.055641598999500275,-0.04105144739151001,-0.1028357669711113,0.032145895063877106,-0.07381770014762878,-0.000992547837086022,-0.015493478626012802,-0.059866100549697876,0.005760003346949816,-0.0990263819694519,-0.012338966131210327,-0.05147789418697357,0.03309081122279167,0.001021018484607339,-0.0050732153467834,-0.08826282620429993,0.007554491050541401,0.08893415331840515,-0.013808651827275753,-0.007872255519032478,-0.04087761044502258,0.19052806496620178,0.06580137461423874,0.03711486607789993,-0.13069745898246765,-0.002556723542511463,0.043046027421951294,0.011609277687966824,-0.03592979535460472,0.04027166590094566,-0.048093851655721664,-0.07786479592323303,2.7835483526393585e-34,0.03762609139084816,-0.08079331368207932,0.029260065406560898,-0.0321076475083828,0.05874723941087723,-0.08972624689340591,0.01498260349035263,-0.08545748144388199,-0.06842038035392761,0.06124599277973175,0.017254477366805077,0.04948468878865242,0.05804264917969704,0.0635884553194046,-0.05647537112236023,-0.05700233206152916,-0.03592795133590698,-0.05035378038883209,-0.026733873412013054,0.024981031194329262,-0.01314601581543684,0.04182828217744827,0.01368645578622818,0.04233115538954735,-0.041089266538619995,0.0630880668759346,0.00017294070858042687,0.05405188724398613,-0.10485920310020447,-0.007579405792057514,-0.018515819683670998,0.0880017802119255,-0.08858659118413925,-0.03911559283733368,0.02019844949245453,0.04039137065410614,0.037543121725320816,0.038484953343868256,0.037800323218107224,-0.08959873020648956,-0.052623920142650604,-0.07394875586032867,-0.01334608718752861,-0.006898272782564163,-0.019937749952077866,-0.016844870522618294,0.035222407430410385,-0.03556733578443527,0.01806011237204075,-0.0026227158959954977,-0.05445146933197975,0.09353438019752502,-0.008129514753818512,-0.026003388687968254,-0.0073050810024142265,-0.033792201429605484,0.0009462636662647128,-0.07352825254201889,0.09078249335289001,0.019170302897691727,0.010440712794661522,0.016347644850611687,0.04102472588419914,0.041531339287757874,0.03728305920958519,-0.01983511447906494,-0.017057763412594795,0.11057505011558533,-0.11722491681575775,-0.0349256806075573,0.06606824696063995,-0.03776920959353447,-0.05209844559431076,0.06164771690964699,-0.035778146237134933,-0.018095791339874268,0.019151289016008377,0.03496503457427025,0.0002601974701974541,0.03353029116988182,-0.08267183601856232,-0.05406881868839264,0.07687076926231384,0.02921859733760357,0.024757618084549904,-0.021679261699318886,-0.08171240240335464,-0.047733720391988754,0.05664297193288803,-0.06776963919401169,-0.02314787544310093,0.00616615591570735,-0.11196842789649963,0.011379796080291271,0.017443057149648666,-2.838550550166019e-8,-0.03897015005350113,-0.06765679270029068,-0.003937060479074717,-0.015784360468387604,0.021886933594942093,-0.03275769203901291,0.06336881965398788,-0.046747490763664246,-0.0704692080616951,0.06547600030899048,-0.03748781979084015,0.00989743322134018,0.012958203442394733,0.08199893683195114,0.10474396497011185,-0.06357418745756149,0.005941439885646105,-0.04505683854222298,-0.046747367829084396,-0.005846007727086544,0.08554282039403915,0.06068766489624977,-0.011508523486554623,-0.08745445311069489,-0.07731805741786957,0.011207460425794125,-0.04810173064470291,-0.08053603023290634,-0.03265215829014778,0.07820706814527512,0.027496160939335823,0.011901754885911942,-0.05451427772641182,-0.00694065960124135,-0.014731346629559994,-0.07007510215044022,0.01513953972607851,-0.06758880615234375,-0.02410077676177025,-0.06845670938491821,-0.012339773587882519,0.03830203786492348,0.022415142506361008,0.016525806859135628,0.0026628770865499973,-0.013663044199347496,0.052728526294231415,-0.024978743866086006,-0.0023619707208126783,0.07935890555381775,0.04597925394773483,0.06403175741434097,0.06658162921667099,0.049020860344171524,0.045666102319955826,0.013942418619990349,0.007648255676031113,0.022672433406114578,-0.12936602532863617,0.03312450647354126,0.12090759724378586,-0.01965923048555851,-0.08311068266630173,0.0030636496376246214]},{"text":"And yet you are still unhappy and still avoid our society.","book":"1984","chapter":86,"embedding":[0.09949961304664612,0.038514718413352966,0.012447883374989033,0.0794127807021141,0.09816108644008636,-0.03768198937177658,0.019685061648488045,-0.019604116678237915,0.09894993156194687,-0.03914634883403778,0.05679496005177498,0.0009108579251915216,0.07862786948680878,-0.057899873703718185,0.008871274068951607,-0.018853571265935898,-0.050058748573064804,-0.053578171879053116,0.041534245014190674,0.0636804923415184,-0.10546573996543884,0.05709153413772583,-0.05549461394548416,0.0184194166213274,-0.028446469455957413,-0.0020977917592972517,0.009467207826673985,0.0429144985973835,0.0006932682590559125,0.07803446054458618,0.014629753306508064,-0.0028649114537984133,0.10987809300422668,0.01680678315460682,-0.0004032912547700107,-0.08196837455034256,-0.016693584620952606,-0.009930206462740898,0.0011289715766906738,-0.01258290745317936,0.013009763322770596,0.010180093348026276,0.01563047431409359,-0.06945285201072693,0.03663023188710213,0.00694884592667222,0.003929636906832457,-0.028921358287334442,0.04194461926817894,-0.031466446816921234,0.046361293643713,0.08298632502555847,-0.0247360672801733,-0.01181991770863533,0.09899866580963135,0.030488912016153336,0.04037835821509361,0.05710601434111595,0.007340369746088982,-0.0035640900023281574,0.009842327795922756,-0.006814305670559406,-0.047537896782159805,0.022415729239583015,0.028736930340528488,0.08662916719913483,0.0005452595069073141,0.04429281875491142,-0.02591804973781109,0.07379267364740372,-0.09232490509748459,-0.06811042129993439,0.014221743680536747,0.020089900121092796,0.029518507421016693,-0.042938388884067535,0.04539385065436363,-0.005370487924665213,0.10238929837942123,0.08986067771911621,-0.04456653445959091,0.012286932207643986,-0.0538124144077301,0.006012379191815853,-0.023068929091095924,-0.025141000747680664,-0.04450410604476929,0.04070626199245453,0.03825881704688072,-0.011537115089595318,-0.09763754159212112,-0.024610459804534912,0.020004505291581154,-0.022006453946232796,0.04370269179344177,-0.05416002497076988,-0.0680467039346695,0.08565415441989899,-0.05276678502559662,0.07552513480186462,-0.03922254964709282,0.010303528979420662,-0.04059195891022682,0.05836768448352814,-0.04573845863342285,-0.014711767435073853,-0.02601790614426136,0.07271149009466171,-0.011440716683864594,-0.027849586680531502,-0.09196751564741135,-0.03999624401330948,-0.024683145806193352,-0.028307214379310608,0.013636576011776924,-0.05017907917499542,0.02468835934996605,0.04415815696120262,0.03549538180232048,0.030958902090787888,-0.05337730795145035,0.048280779272317886,-0.05758921429514885,0.06727028638124466,0.01738523133099079,-0.05306335911154747,-0.021760430186986923,-4.234650440570134e-33,-0.029690906405448914,-0.03636368364095688,0.04503677785396576,-0.023751771077513695,-0.03531503304839134,0.01270605530589819,0.00532494205981493,-0.0032856171019375324,0.003958564717322588,-0.01294718123972416,-0.016194891184568405,-0.03152105584740639,-0.0071237534284591675,-0.009286905638873577,-0.06342894583940506,0.037084948271512985,-0.018285315483808517,0.04057403653860092,0.04309377819299698,0.05555335804820061,-0.039253175258636475,-0.02990156225860119,0.051496751606464386,-0.012086677365005016,-0.005938619840890169,-0.0037609802093356848,-0.00787327066063881,-0.056235216557979584,0.0026125728618353605,-0.015964487567543983,0.04642614349722862,0.061321601271629333,0.06281246244907379,-0.03936958685517311,0.03839879482984543,-0.03221665695309639,0.03220366686582565,-0.007407816592603922,-0.07347041368484497,-0.1225777193903923,-0.0879053920507431,0.0012118873419240117,-0.07371364533901215,-0.024017876014113426,0.09446340054273605,0.03790529444813728,0.11427219212055206,0.016248175874352455,-0.07054872065782547,0.08012852072715759,0.003447755705565214,0.08841900527477264,0.06934729218482971,-0.01599430851638317,-0.02079983986914158,-0.12265806645154953,-0.073070228099823,0.0479874387383461,-0.03768753260374069,-0.07012947648763657,-0.11202191561460495,-0.012642834335565567,-0.0037086328957229853,-0.004794004838913679,0.058176446706056595,0.08410446345806122,-0.025043843314051628,-0.033852994441986084,-0.02315896935760975,0.039036646485328674,0.06037463992834091,0.06877768784761429,0.017868733033537865,0.026589445769786835,0.06246011704206467,0.016282234340906143,-0.006602532230317593,-0.037297558039426804,0.0069559793919324875,-0.1095576286315918,0.003477545455098152,-0.021213972941040993,-0.10802265256643295,-0.049258992075920105,0.10313112288713455,-0.005865756887942553,0.09197843074798584,-0.036862049251794815,0.029723679646849632,0.04840834438800812,-0.008200067095458508,-0.016237249597907066,0.009432033635675907,0.08456693589687347,-0.00814216211438179,3.122395114428193e-33,0.010783900506794453,-0.00039614603156223893,-0.00015082342724781483,-0.08860936760902405,-0.06835493445396423,0.02642938680946827,0.018647952005267143,-0.0033157886937260628,-0.03230661526322365,0.08897439390420914,0.08087927848100662,-0.04576569423079491,0.09135686606168747,0.0732945054769516,-0.006998720113188028,-0.015501325950026512,0.02665884979069233,-0.05459827184677124,-0.03332546353340149,-0.08887380361557007,-0.05431833863258362,0.16464096307754517,-0.013652443885803223,0.10799792408943176,-0.06026822328567505,-0.0035046471748501062,-0.0505516342818737,-0.024740872904658318,-0.012563795782625675,-0.07428489625453949,-0.032540254294872284,-0.0027235299348831177,-0.06090306490659714,-0.10182111710309982,0.0541340634226799,-0.07128068804740906,-0.06485014408826828,0.0008877797517925501,-0.04637228325009346,-0.059276800602674484,-0.07738664746284485,-0.04817966744303703,-0.09096543490886688,-0.04182853177189827,0.007331866305321455,0.011419191025197506,0.018125614151358604,-0.03230093792080879,0.001125815324485302,0.05414916202425957,-0.022138848900794983,0.02432437799870968,0.06904923915863037,-0.054843105375766754,0.010598639026284218,-0.01625071093440056,-0.028413254767656326,-0.05053851753473282,-0.03332500532269478,-0.03072679042816162,-0.05834435299038887,-0.028595542535185814,-0.06565333157777786,0.02576710656285286,0.05998709052801132,-0.054565466940402985,0.0036695527378469706,0.09215979278087616,0.06620611995458603,0.04065559804439545,0.017795778810977936,0.001110872603021562,-0.07264495640993118,-0.09127721935510635,-0.07836256176233292,-0.02768322080373764,-0.015724539756774902,0.07637816667556763,0.028609570115804672,0.03688814863562584,0.0521877221763134,0.012419690378010273,0.09161911904811859,-0.04132213070988655,-0.10432125627994537,-0.013701089657843113,-0.01010571327060461,0.019331861287355423,0.013261295855045319,0.03108830377459526,-0.023530635982751846,-0.054053522646427155,-0.01291951909661293,-0.019406447187066078,-0.015680570155382156,-2.1745268696804487e-8,-0.0007147932192310691,-0.0575847253203392,0.022815853357315063,0.017290955409407616,0.02512172795832157,0.11014856398105621,0.08786702901124954,0.10177737474441528,-0.01821565441787243,0.0030757396016269922,-0.01460311934351921,-0.034147996455430984,0.057697594165802,0.016187069937586784,0.053272001445293427,0.031616199761629105,0.11767783761024475,-0.031907398253679276,-0.027901887893676758,0.014842170290648937,0.06828288733959198,0.044772423803806305,-0.029834117740392685,-0.01804317906498909,-0.10724272578954697,0.009611476212739944,0.03581390157341957,-0.08739364147186279,-0.030757436528801918,0.04591327905654907,0.03748203441500664,-0.09329632669687271,-0.05878305062651634,-0.012148418463766575,-0.07048449665307999,-0.026247097179293633,0.01593819260597229,0.01407865434885025,0.029992224648594856,0.087478868663311,-0.022856691852211952,0.08144867420196533,0.015369890257716179,0.04699190706014633,0.025561023503541946,0.020282883197069168,0.05567735433578491,0.041664786636829376,-0.07067665457725525,0.016715852543711662,0.047705285251140594,0.010346966795623302,0.014677408151328564,-0.04421275481581688,0.012187120504677296,-0.0921928808093071,0.051350969821214676,0.06461706012487411,-0.060158636420965195,0.00738121522590518,0.04924913868308067,-0.045627761632204056,0.009071878157556057,-0.00800294615328312]},{"text":"But it is this gloom which appears to have taken so strong a hold of your mind that I wish to dissipate.","book":"1984","chapter":87,"embedding":[0.017294656485319138,0.022577816620469093,0.08579150587320328,0.06316589564085007,0.05158200114965439,-0.06351801007986069,0.06341031938791275,-0.0641784816980362,0.10263241082429886,-0.04144400358200073,-0.0726490169763565,0.01413312554359436,0.02039802260696888,-0.030493605881929398,0.01627293787896633,0.0632350966334343,-0.006261007860302925,-0.0677446573972702,-0.037135522812604904,0.12883123755455017,-0.04161214828491211,0.07030144333839417,-0.13849352300167084,0.005443141330033541,-0.029017681255936623,0.09546656906604767,-0.026388635858893394,0.014330623671412468,0.01571374014019966,-0.023310527205467224,-0.029951512813568115,0.0424392893910408,-0.05256951227784157,0.017463527619838715,0.0007761803572066128,0.01852528750896454,-0.06373679637908936,-0.03502881899476051,-0.014313919469714165,0.00044731213711202145,-0.07693406939506531,0.07063871622085571,-0.010075225494801998,-0.08983811736106873,0.0036983147729188204,0.002057167701423168,-0.018892256543040276,-0.007523754611611366,0.05547107756137848,-0.03821385279297829,0.003785064211115241,0.01806066185235977,-0.059137631207704544,0.004126321990042925,0.026235243305563927,0.0644441694021225,0.0695597231388092,0.015704195946455002,-0.03296753764152527,0.07724352180957794,-0.07864094525575638,0.06402145326137543,-0.050583142787218094,-0.0046685016714036465,0.0654461532831192,0.027637682855129242,-0.025222741067409515,-0.00045228179078549147,-0.03435888886451721,0.03680824860930443,-0.042753297835588455,-0.008815417997539043,0.019300784915685654,-0.04709000512957573,-0.022056475281715393,0.040244340896606445,0.024443935602903366,-0.08616838604211807,0.07666128128767014,0.029692798852920532,0.08821933716535568,0.13429200649261475,-0.014845400117337704,0.05169538035988808,-0.043939247727394104,0.026380082592368126,0.017195651307702065,0.00749645521864295,0.04664522781968117,-0.0047686900943517685,-0.007306055631488562,-0.06445147842168808,-0.026149651035666466,0.06930388510227203,0.05957883968949318,0.009581033140420914,-0.07531014084815979,0.07612697035074234,-0.10316964983940125,0.04575623199343681,0.022570908069610596,-0.04323560744524002,-0.04379208758473396,-0.008107020519673824,-0.04301028326153755,-0.06583184748888016,0.005684075877070427,-0.05406978726387024,-0.010042848996818066,-0.07449844479560852,-0.06085096672177315,-0.07731523364782333,0.03129620850086212,0.01628054864704609,-0.04621255025267601,0.01878722384572029,-0.04054199159145355,0.054806701838970184,-0.004075141623616219,0.05318823084235191,0.07336456328630447,0.02417590096592903,-0.0012712582247331738,0.05267438292503357,0.020029116421937943,-0.027206508442759514,-0.048702988773584366,-4.666899917176644e-33,0.058429889380931854,0.011627515777945518,0.04426039382815361,-0.048170413821935654,0.06055641546845436,-0.04212295636534691,-0.06867627799510956,0.01932021789252758,-0.1023070365190506,0.011282877996563911,0.04372108355164528,0.0033350761514157057,-0.065463125705719,0.0007805449422448874,-0.06783626973628998,-0.029842182993888855,0.002756970003247261,0.10230189561843872,0.031067723408341408,0.0297214537858963,0.0055188024416565895,0.03579133749008179,-0.03887493535876274,-0.09858235716819763,-0.015594786033034325,0.028975417837500572,0.012595955282449722,0.04296229034662247,-0.04084669426083565,0.034903623163700104,0.03701535239815712,0.06325985491275787,0.01892428658902645,-0.08026658743619919,-0.006578800734132528,-0.021590279415249825,0.021217871457338333,-0.02845316007733345,0.0159009899944067,0.00038074699114076793,-0.043362073600292206,0.10075101256370544,-0.030556462705135345,0.05206732079386711,0.019198046997189522,-0.014390969648957253,0.05798806622624397,0.013799433596432209,-0.15180887281894684,-0.033358942717313766,0.014218281954526901,-0.008827420882880688,0.005902517586946487,-0.02038574405014515,-0.013550476171076298,-0.06427211314439774,0.026434868574142456,0.02815612405538559,0.07779226452112198,-0.0335327573120594,-0.03556349128484726,-0.02499321848154068,-0.02498771622776985,-0.12308846414089203,0.050826892256736755,0.01675049029290676,-0.08643732964992523,0.04214603081345558,-0.06556626409292221,-0.008680779486894608,-0.030996359884738922,-0.04486975446343422,0.029865065589547157,-0.00846720952540636,-0.025912107899785042,-0.0291866734623909,0.04192180186510086,0.022010790184140205,0.03466901555657387,-0.005255823954939842,-0.02686167135834694,-0.03928694874048233,-0.04809621348977089,-0.01792827434837818,0.060105010867118835,-0.06485462933778763,0.05025282874703407,-0.040541812777519226,-0.053220100700855255,0.005833810195326805,-0.06931798160076141,-0.029767831787467003,0.03528580814599991,-0.06356079876422882,-0.04057420417666435,1.861333040060697e-33,0.007526898756623268,-0.08462939411401749,-0.07394123077392578,0.014992204494774342,0.02881566248834133,0.0032829849515110254,-0.007488920819014311,0.039099909365177155,-0.04459996148943901,0.039538659155368805,0.0019755165558308363,0.05348239466547966,0.03067806363105774,0.053893595933914185,-0.033061884343624115,-0.008446131832897663,0.012341078370809555,0.044916797429323196,-0.06352458149194717,-0.02061038836836815,-0.13601325452327728,0.08107784390449524,-0.030120836570858955,0.016427813097834587,-0.028168538585305214,0.061319220811128616,0.11329203099012375,-0.06798943132162094,-0.006239527370780706,-0.053534653037786484,-0.07974632829427719,-0.03499259799718857,-0.08953089267015457,-0.018285458907485008,0.015641046687960625,0.057149846106767654,-0.012661987915635109,-0.09780175238847733,-0.09204141050577164,-0.028182541951537132,-0.09423661231994629,-0.0623224675655365,0.09965818375349045,0.04163946583867073,0.008639532141387463,0.0073340581730008125,0.06453480571508408,0.0684344470500946,0.07162459194660187,0.07546461373567581,0.03900988772511482,0.0028205544222146273,-0.01697460003197193,0.09862752258777618,0.038416583091020584,-0.02598104067146778,-0.07605324685573578,-0.030088789761066437,-0.02825443260371685,0.01041307020932436,-0.07960867136716843,-0.03635037690401077,-0.046578384935855865,0.011304718442261219,0.06592492759227753,0.001279850723221898,-0.03475150093436241,0.08493492007255554,0.007595607079565525,-0.002237144159153104,0.03412090614438057,-0.03207667917013168,-0.052998777478933334,0.002177510177716613,0.06648899614810944,0.04352102801203728,0.09214634448289871,0.007701895199716091,-0.013343398459255695,0.09314320236444473,0.016518019139766693,-0.008151239715516567,-0.031174790114164352,-0.013068870641291142,0.003131887875497341,-0.05434843525290489,-0.04894013702869415,0.1102352887392044,-0.0191199854016304,0.03975416347384453,-0.08201788365840912,0.009710019454360008,0.017983660101890564,-0.037962861359119415,-0.01956699602305889,-2.7918561684714405e-8,-0.030833084136247635,-0.10383173078298569,0.060839708894491196,0.02692817524075508,0.028133563697338104,-0.029521483927965164,0.10866613686084747,0.03216782584786415,-0.04929681494832039,0.03630226477980614,0.0475262850522995,0.021693209186196327,-0.04024152830243111,-0.02559182420372963,-0.00028278163517825305,-0.0006033160607330501,0.021387098357081413,-0.0016775727272033691,-0.014140244573354721,-0.060046568512916565,0.05122657120227814,0.015479314140975475,0.03259030729532242,-0.005462068133056164,-0.009670328348875046,-0.05453862249851227,0.0006516821449622512,-0.10667064785957336,-0.0407203733921051,0.03364518657326698,0.024121839553117752,0.0432848259806633,-0.043096818029880524,-0.06324052065610886,-0.02044495940208435,0.016838833689689636,0.022058188915252686,0.06263948231935501,0.05591246485710144,-0.043614838272333145,0.018913086503744125,0.03565382957458496,-0.03186540678143501,0.10939142853021622,0.012320305220782757,-0.012153859250247478,0.07392880320549011,0.006577085703611374,-0.07043101638555527,-0.04961618036031723,0.05245088413357735,0.07588667422533035,0.05344089865684509,0.1379018872976303,-0.015106601640582085,-0.019689682871103287,-0.0961792916059494,0.06348469108343124,-0.06273698806762695,0.0012413200456649065,0.09050880372524261,-0.054413262754678726,-0.059303153306245804,0.06336740404367447]},{"text":"I remembered also the necessity imposed upon me of either journeying to England or entering into a long correspondence with those philosophers of that country whose knowledge and discoveries were of indispensable use to me in my present undertaking.","book":"1984","chapter":87,"embedding":[0.004138135351240635,0.03301486372947693,-0.05421338602900505,-0.03579750284552574,0.016474973410367966,0.040794774889945984,0.07673951983451843,-0.05128820613026619,-0.029113663360476494,-0.027925657108426094,0.012976017780601978,0.03500347211956978,0.00001230613088409882,0.05037187039852142,-0.029756128787994385,0.033693645149469376,0.0036358132492750883,-0.07351688295602798,-0.026775270700454712,0.01521140243858099,0.0005243897321633995,0.027568604797124863,0.014870479702949524,0.0735819861292839,-0.00909274723380804,0.0038313285913318396,0.03013008087873459,-0.010488668456673622,0.09146247804164886,-0.011913837864995003,-0.022331736981868744,0.05082521215081215,-0.05041781812906265,-0.014510177075862885,-0.024813922122120857,0.0492660328745842,0.03977647423744202,-0.027807122096419334,0.04439520835876465,-0.09771659970283508,0.012030603364109993,-0.02108391933143139,0.036464907228946686,0.02848108857870102,-0.003904122393578291,-0.0204203762114048,0.028735026717185974,0.025188179686665535,-0.021476374939084053,-0.008431575261056423,0.00673282565549016,0.04240923747420311,-0.059955108910799026,-0.08503398299217224,-0.02242875099182129,0.009271121583878994,-0.012361541390419006,0.049875956028699875,-0.05304934084415436,-0.01788659207522869,-0.09922191500663757,-0.0884331539273262,-0.049778930842876434,0.015782112255692482,-0.09511028975248337,-0.025731148198246956,-0.01906357705593109,-0.007080762647092342,-0.04279809072613716,0.07221923023462296,-0.0805579125881195,-0.048174899071455,-0.006297084502875805,-0.006746208295226097,-0.016706906259059906,-0.03094906359910965,-0.018100595101714134,-0.028198398649692535,-0.03525243327021599,-0.0774521753191948,0.04608748108148575,0.09802784770727158,-0.019724834710359573,0.014948898926377296,0.02286973036825657,-0.031216897070407867,0.0069183348678052425,-0.0393005907535553,0.07859843969345093,-0.07350155711174011,0.1168435588479042,-0.15011714398860931,0.008212203159928322,0.04726726561784744,0.055895302444696426,-0.06971265375614166,0.04491237923502922,0.04892023652791977,-0.010327610187232494,0.04527303948998451,0.05435565114021301,0.019183607771992683,-0.053565822541713715,0.12127596884965897,-0.056405484676361084,-0.037235405296087265,-0.08583266288042068,-0.04705968499183655,0.05486663430929184,-0.04991358518600464,-0.004190549720078707,0.04263506084680557,0.021091904491186142,0.003019888186827302,0.0019377483986318111,0.011920667253434658,-0.012665296904742718,-0.01344504114240408,0.029431739822030067,0.0028042702469974756,-0.05149024352431297,0.035509686917066574,0.004533866886049509,-0.027078645303845406,-0.11202144622802734,-0.027790943160653114,0.005808496847748756,-4.268680542848958e-34,-0.048476215451955795,0.005654601845890284,-0.004082921426743269,0.11305645853281021,-0.025650059804320335,0.01029270887374878,-0.0963999554514885,0.03194268420338631,0.00905462447553873,-0.0976824164390564,0.10923213511705399,0.020971018821001053,0.023582080379128456,-0.012064422480762005,-0.01752966269850731,0.072812519967556,0.0006394865922629833,0.039373476058244705,0.07419805228710175,-0.012785494327545166,0.04264093562960625,-0.06673974543809891,0.03967989981174469,0.008826012723147869,-0.004846995230764151,-0.007808529306203127,0.026048928499221802,-0.02271849475800991,0.04814743995666504,0.030171740800142288,0.0653141513466835,0.07051514089107513,-0.057136569172143936,-0.008457046933472157,0.02365841157734394,0.060092248022556305,0.023404734209179878,-0.1382693499326706,0.07099280506372452,-0.029162446036934853,0.0393984280526638,0.010260413400828838,0.05632304400205612,-0.039573635905981064,0.03970784693956375,0.0031051645055413246,0.026658540591597557,0.03811459615826607,0.003361659124493599,0.05884186923503876,-0.04491661861538887,-0.024261096492409706,0.0037118042819201946,-0.09167782217264175,0.01937195472419262,-0.018021268770098686,-0.06193672865629196,0.05513113737106323,0.044064585119485855,-0.030405448749661446,-0.11101055890321732,-0.015378451906144619,0.013056011870503426,0.13680897653102875,0.001532687689177692,0.01687893457710743,-0.09489309787750244,-0.03980141505599022,-0.0687267854809761,-0.004664422012865543,-0.04624516889452934,0.000739400158636272,-0.0484943613409996,-0.003811955451965332,-0.011114976368844509,-0.019644038751721382,-0.015442771837115288,-0.07689167559146881,-0.026091542094945908,-0.013235293328762054,-0.0335228405892849,-0.029754474759101868,-0.06937156617641449,-0.007957368157804012,0.12918469309806824,-0.0008053514175117016,0.09551896899938583,-0.1347806602716446,0.04156559705734253,-0.034526512026786804,0.006126900669187307,-0.0062208352610468864,-0.00676871370524168,-0.09792403876781464,-0.05989701673388481,-2.5000880377608893e-33,0.04197182133793831,-0.04552892968058586,0.030017288401722908,0.05351078882813454,0.09782936424016953,-0.03825501725077629,-0.023205149918794632,-0.056376561522483826,-0.03585170954465866,-0.03056957758963108,-0.01052215788513422,-0.014981449581682682,0.0427987277507782,-0.009954295121133327,-0.01689317636191845,-0.03443169221282005,-0.04481012001633644,-0.053345173597335815,-0.020881494507193565,0.03833004832267761,0.004253399092704058,-0.06496593356132507,-0.029394296929240227,-0.10278749465942383,-0.008289123885333538,0.0029892243910580873,-0.07097858190536499,-0.08123511075973511,-0.06023421138525009,-0.03405707702040672,0.022355446591973305,0.11606908589601517,-0.13048399984836578,-0.07185757905244827,-0.03847517818212509,0.09179102629423141,0.05441904813051224,0.10471044480800629,-0.024275928735733032,-0.007403925992548466,-0.07573975622653961,0.047629404813051224,0.020504174754023552,0.04749312251806259,-0.03247138112783432,-0.0751730427145958,-0.05628494545817375,0.020531421527266502,0.049196671694517136,0.019145019352436066,0.01140564028173685,0.03835862874984741,0.025142665952444077,-0.11174117028713226,-0.01554130669683218,-0.016978953033685684,-0.014040782116353512,-0.06754749268293381,0.06834295392036438,-0.07128890603780746,-0.011618037708103657,0.03776979446411133,-0.08578465133905411,0.009363291785120964,0.07696351408958435,-0.002660254016518593,-0.017319457605481148,0.15155360102653503,-0.007989717647433281,0.01669706217944622,-0.02693122811615467,-0.05686304718255997,-0.006837910506874323,0.028118416666984558,0.041210103780031204,0.007364551071077585,0.06568361073732376,0.04112699255347252,-0.04320664331316948,-0.013939013704657555,0.015422535128891468,-0.03971721976995468,0.054309017956256866,-0.017236916348338127,0.05654926598072052,-0.0264020673930645,-0.04148038476705551,0.002331230090931058,0.013693144544959068,-0.03702341392636299,0.0033759046345949173,-0.00582148740068078,-0.013939980417490005,-0.017864324152469635,0.0570504255592823,-3.52475737486202e-8,-0.06236504390835762,-0.005563193466514349,0.03416122868657112,0.02958647720515728,0.028068622574210167,-0.0834222361445427,-0.0070449719205498695,0.06584866344928741,-0.09265168011188507,0.03416011855006218,-0.0493900328874588,0.037430524826049805,0.026003338396549225,0.09139901399612427,0.046065229922533035,0.04299309849739075,0.068527452647686,-0.035733819007873535,-0.05916386842727661,0.039417751133441925,0.019779451191425323,0.021745899692177773,0.04790135473012924,-0.022730330005288124,-0.05137830227613449,0.038751062005758286,0.027367543429136276,-0.022865237668156624,0.05674552917480469,0.033863864839076996,-0.02151239849627018,0.0509830042719841,-0.010703802108764648,-0.023421889171004295,-0.029647573828697205,0.008787514641880989,-0.08309437334537506,-0.02668079175055027,0.025483205914497375,-0.059904322028160095,0.029167896136641502,0.0458049476146698,0.03919696807861328,0.09460072964429855,0.03344743326306343,-0.010201329365372658,-0.032614514231681824,0.06972391903400421,-0.024290718138217926,0.05206172913312912,-0.009935080073773861,0.0959937646985054,0.15544606745243073,0.049733974039554596,0.09293439239263535,0.07321608066558838,0.015356011688709259,-0.0068934704177081585,-0.06718345731496811,-0.00095712038455531,0.06360308825969696,0.049386780709028244,-0.049768272787332535,-0.08536741137504578]},{"text":"The duration of my absence was left to my own choice; a few months, or at most a year, was the period contemplated.","book":"1984","chapter":88,"embedding":[0.022431127727031708,0.07301502674818039,0.0158688947558403,0.0847792997956276,0.09776559472084045,0.034479349851608276,-0.04712329059839249,0.0029660898726433516,0.012846998870372772,-0.0334007702767849,0.05215134099125862,0.057769905775785446,-0.01309954933822155,-0.04655781388282776,0.08905203640460968,-0.05655067786574364,-0.0035561486147344112,-0.08940575271844864,0.033216822892427444,0.02322551980614662,0.020107842981815338,-0.017679916694760323,-0.061539579182863235,0.01765957660973072,0.05764835700392723,0.04966229572892189,-0.005762168206274509,0.06004203110933304,0.014093304052948952,0.06513084471225739,0.035677213221788406,0.0417964868247509,0.050504185259342194,-0.05890994518995285,0.04446551576256752,-0.030569618567824364,-0.045398738235235214,-0.034900519996881485,-0.036200571805238724,-0.05250043049454689,-0.013209829106926918,0.04939074069261551,0.03012281470000744,0.010902520269155502,-0.023585913702845573,-0.03993535414338112,-0.025408117100596428,-0.09097645431756973,-0.05685364827513695,0.07640042901039124,0.06762353330850601,-0.00840442068874836,-0.06383907794952393,0.03749116510152817,-0.013313276693224907,-0.0247608944773674,-0.012594691477715969,-0.03717699646949768,-0.06796549260616302,-0.04585111141204834,-0.0508464090526104,-0.0021935661789029837,-0.0580134391784668,0.026182375848293304,-0.008316770195960999,0.06527461111545563,-0.00843582209199667,-0.07748096436262131,0.09918513894081116,0.08399494737386703,-0.06470654904842377,-0.02201669104397297,-0.05909986421465874,0.0642576515674591,0.029257671907544136,0.005689437501132488,0.09408219158649445,-0.002501092851161957,0.12405753135681152,-0.014037600718438625,-0.034321289509534836,0.12512752413749695,-0.019630583003163338,0.06823218613862991,-0.014889216981828213,-0.06867760419845581,0.02323462814092636,0.015966936945915222,0.03173620253801346,-0.022932255640625954,0.09092356264591217,0.025655383244156837,0.055702850222587585,-0.03277776017785072,-0.019582675769925117,-0.0869794562458992,-0.022187158465385437,0.06403729319572449,0.01868162862956524,0.04364107549190521,-0.007100389804691076,-0.08860326558351517,-0.07990840822458267,-0.0033705600071698427,-0.09001937508583069,0.012471550144255161,-0.0702909529209137,-0.07523274421691895,-0.020365050062537193,0.030121924355626106,-0.058714862912893295,0.015456962399184704,0.08655919879674911,-0.0006961793988011777,0.004118337295949459,0.1316022425889969,-0.039795853197574615,0.03374230116605759,0.15422455966472626,0.07401452958583832,0.009385489858686924,0.03515525907278061,0.006543328054249287,-0.03433741629123688,-0.07754063606262207,-0.045880887657403946,0.05950285866856575,-4.736084004536274e-33,-0.042153794318437576,-0.11242124438285828,0.006018377374857664,-0.007844509556889534,0.09040427207946777,-0.013891559094190598,-0.03990550339221954,0.004373210947960615,0.05745818838477135,-0.05344044789671898,0.07000863552093506,0.008487616665661335,0.008986596949398518,-0.13188931345939636,-0.0070124841295182705,0.028933631256222725,0.06877440214157104,0.10852979123592377,0.09956192225217819,0.013400958850979805,0.01728513278067112,-0.06703735888004303,0.01411864347755909,0.026689322665333748,0.016525035724043846,-0.048558104783296585,-0.025483248755335808,-0.08728116005659103,-0.061123017221689224,0.02366962842643261,0.016637979075312614,0.07753842324018478,0.007631098385900259,-0.05516748130321503,0.03421590477228165,0.007817814126610756,0.0004374031850602478,0.04003787785768509,0.0033797994256019592,0.00827634148299694,-0.022424431517720222,-0.02760889194905758,0.08270541578531265,-0.0025767656043171883,0.051118284463882446,-0.03460781276226044,0.07549018412828445,-0.036582596600055695,-0.0774964690208435,0.0546952523291111,-0.024900633841753006,-0.04437696188688278,0.022788744419813156,-0.10798949003219604,-0.015367729589343071,-0.0031465787906199694,-0.022990509867668152,0.0021795155480504036,-0.036663301289081573,-0.02392004057765007,0.047636378556489944,0.02393592707812786,0.048413291573524475,0.012686636298894882,-0.007712129969149828,0.0220127385109663,-0.01393727958202362,-0.07381633669137955,0.0005365138640627265,-0.05502218380570412,-0.0619259811937809,-0.00769458245486021,-0.03166012093424797,-0.005870693363249302,-0.04230528324842453,-0.041856151074171066,-0.0042700027115643024,0.04140138626098633,-0.05578058585524559,-0.021208295598626137,0.09756521880626678,-0.004750994499772787,-0.07199371606111526,0.0376378670334816,0.07117398083209991,-0.060076791793107986,0.08963575214147568,-0.06475073844194412,-0.07386279851198196,-0.033279940485954285,-0.0046198503114283085,-0.004836107604205608,0.02345464937388897,-0.03389965742826462,0.057449329644441605,2.27661921482988e-33,0.050214290618896484,-0.044358763843774796,0.0006697224453091621,-0.028192590922117233,0.06787063181400299,-0.04480665177106857,-0.00551820220425725,0.10242818295955658,0.010360359214246273,0.07045043259859085,-0.00385871808975935,-0.04015575721859932,0.043911345303058624,0.015177077613770962,-0.13750165700912476,0.06901285797357559,-0.01671716384589672,-0.14052680134773254,-0.05087139457464218,0.06521479785442352,0.03235636651515961,-0.015420670621097088,-0.001225281972438097,-0.07268907129764557,-0.03062574192881584,0.05221431702375412,-0.0025200422387570143,-0.02310880459845066,-0.0677906945347786,-0.02604563720524311,-0.026788858696818352,0.0030357560608536005,-0.02294333651661873,-0.09085729718208313,0.06895270198583603,-0.013307145796716213,-0.04457160457968712,0.06587009131908417,-0.059960197657346725,0.006892303470522165,0.001553587382659316,-0.020247727632522583,0.09245529025793076,0.037743277847766876,0.039058245718479156,0.04762420430779457,0.033894333988428116,-0.027221104130148888,0.07164008915424347,0.05640598013997078,-0.09611061215400696,-0.01586402952671051,0.024362388998270035,0.051455553621053696,-0.0334332250058651,-0.012437880970537663,0.08468884974718094,-0.07637931406497955,0.021920932456851006,-0.01631522923707962,-0.02685023657977581,-0.027608804404735565,0.002464516554027796,-0.047990135848522186,0.04270993173122406,-0.020198220387101173,0.025900257751345634,-0.019983164966106415,0.03637045994400978,-0.08372396975755692,-0.0008029346354305744,-0.01679951138794422,0.008593052625656128,0.0062955766916275024,0.011471042409539223,0.020720869302749634,0.031585752964019775,-0.03187230974435806,-0.08685097098350525,-0.003446748247370124,-0.07408012449741364,0.00917716883122921,-0.06147606670856476,-0.03695295751094818,0.005680657457560301,-0.037181317806243896,-0.021573329344391823,-0.032036375254392624,0.03858767822384834,-0.0014550843043252826,0.11727438867092133,0.008532668463885784,0.04976509511470795,0.0015410194173455238,-0.0006288299919106066,-2.8958256237388014e-8,0.036653224378824234,0.02630935236811638,0.050706032663583755,-0.0018255781615152955,0.07474813610315323,-0.10464321821928024,0.08594657480716705,-0.04700607806444168,0.018603751435875893,0.08049760013818741,-0.010272536426782608,0.014898189343512058,0.018624693155288696,-0.02133737877011299,-0.02884124405682087,0.010706162080168724,0.06862178444862366,-0.032134462147951126,-0.005268776323646307,0.0607113391160965,-0.0762038305401802,-0.017171964049339294,-0.048227038234472275,-0.021329443901777267,-0.03501284122467041,0.022122614085674286,0.003118891967460513,0.0016469033434987068,0.01443827711045742,0.018004227429628372,0.048912812024354935,0.050270192325115204,0.006852127145975828,-0.01380735170096159,-0.14830654859542847,-0.06477925926446915,-0.019760804250836372,-0.029153194278478622,-0.03153106942772865,-0.07093273103237152,0.007409624755382538,0.05866674333810806,0.031032482162117958,0.045485224574804306,0.046851109713315964,-0.043708547949790955,0.03734651952981949,0.006156482268124819,-0.07038120925426483,-0.003419503103941679,-0.006301953922957182,-0.042980436235666275,0.032991401851177216,0.017685722559690475,0.08687350898981094,0.031978540122509,0.030679700896143913,0.02856825478374958,-0.08331368863582611,-0.030095743015408516,0.04954518750309944,-0.0010441680205985904,-0.12879663705825806,-0.01387222483754158]},{"text":"But he had promised to follow me wherever I might go, and would he not accompany me to England?","book":"1984","chapter":89,"embedding":[0.05003511160612106,0.024969594553112984,0.051031067967414856,-0.03739805519580841,0.06282653659582138,-0.06629668176174164,-0.009458497166633606,-0.09931674599647522,-0.018119556829333305,-0.06218613311648369,0.025079872459173203,-0.008055473677814007,0.022878441959619522,0.02543541230261326,0.07688741385936737,0.00001434599471394904,-0.05367510765790939,-0.09638258069753647,-0.048914555460214615,-0.04159257933497429,0.0069270385429263115,0.09691181778907776,-0.015410375781357288,0.05753021314740181,-0.00993368960916996,0.043442390859127045,0.042489562183618546,0.045367445796728134,0.0003260931116528809,0.013197421096265316,0.0026150543708354235,-0.08049380779266357,-0.0737559050321579,-0.00851763878017664,-0.03609556704759598,-0.05157352611422539,0.04702892154455185,-0.06954457610845566,-0.00011295906006125733,-0.01404827181249857,0.03268885239958763,0.033257801085710526,0.08633321523666382,0.062332671135663986,0.04442467540502548,0.050392840057611465,-0.016351161524653435,0.009275645948946476,-0.06456076353788376,0.007125869859009981,-0.043623123317956924,-0.019390899688005447,-0.029587477445602417,-0.06568928807973862,-0.05813080444931984,0.040226563811302185,0.02997872233390808,0.037711337208747864,0.0002700997283682227,0.01717979833483696,-0.03454987704753876,0.01966763846576214,-0.007468793075531721,0.010924733243882656,-0.04665770381689072,-0.006642510648816824,-0.06784918904304504,0.023047229275107384,0.07556475698947906,0.04868503287434578,-0.003134295344352722,0.015971969813108444,0.015714969485998154,0.03076643869280815,-0.0990653783082962,-0.05612511560320854,-0.014148191548883915,0.026454541832208633,-0.00969814695417881,-0.04752297326922417,-0.07454254478216171,0.002472400199621916,-0.03919631987810135,0.07925546169281006,0.02931239642202854,-0.1145658940076828,0.0859798863530159,-0.049453046172857285,-0.0006640382343903184,0.06576430797576904,0.06306133419275284,-0.11734747141599655,-0.01706075295805931,0.049424923956394196,-0.09244410693645477,-0.0013435601722449064,0.019720645621418953,0.053024519234895706,-0.07971353083848953,0.033199358731508255,0.028091322630643845,0.000877104583196342,0.005804197397083044,0.055930882692337036,0.00021495587134268135,0.051101572811603546,-0.03674328327178955,-0.022264640778303146,0.03400395065546036,-0.025066349655389786,0.04340706020593643,-0.02524583786725998,-0.013558153063058853,-0.011642472818493843,0.021572822704911232,-0.03201699256896973,-0.03487881273031235,0.03265451267361641,-0.061158690601587296,0.004731562454253435,-0.003852937836199999,0.06906786561012268,0.05594988167285919,0.08056727796792984,-0.09542125463485718,-0.040897369384765625,0.05491369590163231,-2.6526796941250997e-33,0.0251737292855978,-0.06578903645277023,-0.021913081407546997,-0.0479532927274704,0.07815204560756683,0.03379681706428528,-0.03823663294315338,0.0020130423363298178,0.008388766087591648,-0.08278757333755493,0.03685328736901283,-0.03115909732878208,0.027514705434441566,-0.03693732991814613,-0.09512029588222504,0.15287311375141144,0.1150042861700058,0.021474918350577354,0.06094372272491455,0.0048628561198711395,-0.0013561651576310396,-0.09355179220438004,0.06738059222698212,-0.0340874157845974,0.005578094162046909,-0.07980071008205414,-0.003778558922931552,-0.009362020529806614,0.021103987470269203,0.008127310313284397,-0.02793898433446884,0.08078291267156601,0.057354915887117386,0.009594118222594261,0.05113249644637108,0.028981562703847885,-0.03487646207213402,-0.10514245927333832,-0.02972574718296528,-0.01586945727467537,0.021375242620706558,-0.04344724118709564,-0.026007281616330147,0.00976948719471693,-0.01765621267259121,-0.06744171679019928,-0.017064355313777924,0.05114457756280899,-0.007201018277555704,0.011562302708625793,-0.06308332830667496,-0.09308475255966187,0.049508266150951385,-0.10761789232492447,0.027517830953001976,-0.030611084774136543,0.04660515859723091,0.1576893925666809,0.06443960964679718,-0.04697255790233612,-0.004119624849408865,-0.031510453671216965,0.02232920564711094,0.08800239115953445,-0.049336835741996765,-0.10554372519254684,-0.03157365694642067,-0.0400862842798233,-0.04994101822376251,-0.028627557680010796,0.04271898418664932,0.041065044701099396,0.015497785992920399,0.05786123126745224,0.005429152399301529,-0.041550375521183014,-0.10476116836071014,0.008165685459971428,0.0010318256681784987,-0.07346246391534805,-0.06258218735456467,0.04356797784566879,-0.1212715432047844,0.06665576994419098,0.09817933291196823,0.06989540904760361,0.06857937574386597,-0.04431631788611412,0.05508757755160332,0.001283997786231339,-0.00012777326628565788,0.015398794785141945,-0.05698614567518234,-0.0854659229516983,-0.017275370657444,-8.470339081424334e-35,0.050861507654190063,0.0464840829372406,0.14635534584522247,0.015033691190183163,0.010037828236818314,-0.008446632884442806,0.0032088574953377247,0.0026569939218461514,0.08424193412065506,0.05646418407559395,-0.0020437792409211397,0.06262079626321793,0.06884836405515671,0.042792901396751404,0.050774283707141876,-0.008864805102348328,0.03360559046268463,-0.05074116960167885,-0.0007432045531459153,0.022260859608650208,-0.0017025732668116689,-0.05829401686787605,0.0710068866610527,-0.006369258277118206,-0.043936844915151596,-0.01383125875145197,0.028642697259783745,-0.024619679898023605,-0.03971341252326965,-0.07018669694662094,0.10813673585653305,0.003328832797706127,-0.10786081850528717,-0.058238543570041656,0.01793479174375534,0.022271115332841873,-0.035704225301742554,0.029976770281791687,0.007565160747617483,0.010492097586393356,-0.07248379290103912,-0.04544907435774803,0.03980398550629616,0.0009043412283062935,-0.005503110587596893,-0.027229515835642815,0.07290013879537582,0.07238554209470749,0.018638286739587784,0.014633521437644958,0.021371738985180855,0.08168322592973709,0.005544167011976242,0.008155214600265026,-0.016744477674365044,-0.0052656917832791805,-0.05361749976873398,-0.07949386537075043,0.047087788581848145,-0.1008211076259613,-0.02457796409726143,-0.005888759158551693,0.03756090998649597,-0.0499565564095974,0.02912251278758049,0.058176107704639435,-0.0594475194811821,0.10905934870243073,0.059117794036865234,0.01884310692548752,0.027473393827676773,-0.0738043338060379,0.08075612783432007,0.031302761286497116,0.05521159991621971,-0.06151614710688591,0.02770877629518509,-0.05335596576333046,0.03350984305143356,-0.06703244894742966,0.052022095769643784,0.004153002519160509,0.009333565831184387,-0.1008317619562149,0.04933653771877289,-0.06481462717056274,-0.020675376057624817,0.022251620888710022,0.03164906054735184,-0.014236764051020145,0.10539788752794266,0.03299452364444733,0.0698096752166748,-0.04368136450648308,0.009641696698963642,-2.008441235545888e-8,-0.04375831037759781,-0.002391144633293152,-0.0010019588517025113,-0.02810853347182274,0.017555512487888336,-0.011891171336174011,0.019806791096925735,-0.058371949940919876,0.019479889422655106,0.013918878510594368,-0.048486534506082535,-0.0475272461771965,0.015226149000227451,-0.05578160658478737,-0.013367756269872189,0.031589340418577194,-0.022941583767533302,-0.13179384171962738,-0.01324642077088356,0.06220535561442375,-0.057318463921546936,0.04427548125386238,-0.07249192148447037,-0.0012783589772880077,-0.025692038238048553,0.02498564124107361,0.029069647192955017,-0.005003788508474827,0.05924045667052269,0.0653928890824318,0.02398664318025112,0.0014546166639775038,-0.02146892063319683,0.02256387658417225,-0.06050838902592659,-0.019776245579123497,-0.006139785051345825,-0.0254784245043993,-0.013741688802838326,-0.07449930906295776,0.03393922001123428,0.015277030877768993,0.04739732667803764,0.053850628435611725,0.013508678413927555,-0.039878133684396744,0.03514619544148445,0.007730878423899412,-0.03611527755856514,-0.06212262064218521,-0.08315848559141159,0.021600818261504173,0.05570020154118538,0.04356038570404053,0.038891665637493134,-0.030082857236266136,0.004217023961246014,-0.10365273803472519,-0.03047296218574047,0.031059984117746353,0.014102143235504627,-0.12023932486772537,-0.017702840268611908,-0.09093236178159714]},{"text":"I could only think of the bourne of my travels and the work which was to occupy me whilst they endured.","book":"1984","chapter":89,"embedding":[-0.08907338976860046,0.016111530363559723,0.0032153192441910505,-0.025481240823864937,0.04998490959405899,-0.01020131353288889,0.007509103510528803,-0.0369369238615036,0.07927543669939041,0.03727417811751366,-0.0261823870241642,0.12155569344758987,0.036703117191791534,0.05156264454126358,-0.028898712247610092,-0.032090868800878525,0.019752155989408493,0.028043851256370544,0.07727251201868057,-0.007363179232925177,-0.02145705558359623,0.06615102291107178,-0.02865162119269371,0.028351562097668648,-0.027556197717785835,0.08769400417804718,0.08625517040491104,-0.005089514888823032,-0.08082518726587296,-0.055124443024396896,-0.0515129417181015,-0.014628708362579346,-0.09154869616031647,-0.03059042990207672,0.031541384756565094,0.08661217987537384,-0.03872904181480408,0.003228212473914027,0.046888239681720734,-0.06156185641884804,-0.07994696497917175,0.03313913568854332,0.13123737275600433,-0.015464349649846554,0.03544960543513298,-0.11360133439302444,0.028543001040816307,-0.07388447225093842,0.023574963212013245,0.009943947196006775,0.015560425817966461,-0.02438518777489662,-0.0301858801394701,-0.0406351163983345,0.013874312862753868,-0.04912835732102394,-0.0329175665974617,0.02341781184077263,-0.03446797654032707,-0.023848075419664383,-0.0957663357257843,-0.035599738359451294,0.01088959351181984,0.037940338253974915,-0.06686125695705414,0.03557708486914635,-0.049554213881492615,0.07036811113357544,-0.039752036333084106,0.06357531249523163,-0.06447944790124893,0.009234849363565445,0.007978709414601326,-0.023855220526456833,0.023686962202191353,0.027204178273677826,0.0028605973348021507,-0.1008787602186203,0.008355444297194481,-0.11087767779827118,0.0165848545730114,-0.005560561083257198,-0.04801411181688309,0.003979475237429142,-0.04305911436676979,-0.02007586508989334,0.09805592149496078,0.015207399614155293,0.07968245446681976,0.049713216722011566,0.04084537923336029,-0.044055111706256866,0.004410054534673691,0.05003386363387108,-0.017787601798772812,-0.1570068597793579,-0.0242460910230875,0.062038954347372055,0.0017903398256748915,0.016949715092778206,-0.006087408866733313,-0.01623067632317543,0.05000123381614685,0.05916893109679222,0.06516473740339279,-0.06325525045394897,0.03996831551194191,-0.08085241913795471,-0.002374789910390973,-0.03639613091945648,-0.07502445578575134,0.026228347793221474,-0.02820397913455963,0.022115863859653473,-0.018101077526807785,-0.027550717815756798,0.041241757571697235,0.027405425906181335,-0.003854982787743211,0.15681864321231842,0.05018237233161926,0.06834877282381058,-0.033722344785928726,-0.049348972737789154,-0.10001629590988159,-0.0066798171028494835,0.04524478688836098,-4.328114731087983e-33,-0.06826548278331757,-0.04008707031607628,-0.01801920495927334,0.05887606739997864,0.08576575666666031,-0.03689335286617279,-0.07008905708789825,0.0226108618080616,-0.014281131327152252,-0.013753638602793217,0.038945551961660385,0.04185861721634865,-0.023939844220876694,-0.00032961045508272946,0.00015982668264769018,0.04693427309393883,-0.019773824140429497,0.04735054820775986,0.033138252794742584,-0.021331919357180595,-0.08786912262439728,0.0279124416410923,-0.007180638145655394,0.015683306381106377,0.0017019555671140552,0.012416155077517033,0.024372689425945282,0.004913913086056709,0.05464625731110573,0.0378933809697628,0.027881834656000137,0.07307855784893036,0.021766630932688713,-0.06081707403063774,0.019084375351667404,0.10629275441169739,0.00357453478500247,-0.049902547150850296,0.08227785676717758,0.05967007204890251,-0.09154020994901657,-0.01343757938593626,0.07413274049758911,0.010736090131103992,0.0045244586654007435,0.02128821797668934,0.007667954545468092,0.05774892121553421,-0.07054130733013153,0.09896277636289597,-0.019448673352599144,-0.0014094413490965962,0.017349667847156525,-0.027960674837231636,-0.03803936392068863,-0.042013514786958694,-0.05017103999853134,-0.0032615552190691233,0.0018691068980842829,-0.014615111984312534,0.04003828018903732,0.005354861728847027,0.03365064784884453,-0.029890401288866997,0.06783638894557953,0.0026819161139428616,-0.03671225905418396,-0.06043900176882744,-0.04687429964542389,0.014699948020279408,-0.08240474760532379,0.011925519444048405,0.044149357825517654,-0.06313406676054001,0.014188694767653942,-0.013991737738251686,0.0005342550575733185,-0.05951323360204697,-0.11120744049549103,-0.059646125882864,-0.030561156570911407,-0.043323010206222534,-0.007131471764296293,0.009362791664898396,0.08457323908805847,0.021221326664090157,0.009437496773898602,-0.1383512020111084,-0.035809729248285294,-0.002364991931244731,-0.009578799828886986,-0.05774752050638199,-0.019126329571008682,-0.1243417039513588,-0.009575718082487583,1.4804780131820608e-33,0.03890722617506981,-0.0601477324962616,0.00044120496022515,-0.02770281955599785,0.0635637417435646,-0.06102797016501427,-0.04785381630063057,0.022159574553370476,-0.028084950521588326,-0.01720266416668892,-0.11747086048126221,-0.023996930569410324,0.012436182238161564,-0.01926003210246563,-0.009885784238576889,-0.08050931990146637,-0.0011102482676506042,-0.032088302075862885,0.022279834374785423,0.05341596156358719,0.03254111483693123,0.032315224409103394,0.0584438219666481,-0.07100939005613327,0.08752337843179703,0.04949510842561722,-0.05077732354402542,0.009306029416620731,-0.03198666498064995,-0.048000313341617584,0.04456029832363129,0.05535231903195381,-0.024784564971923828,-0.054946329444646835,-0.00693112937733531,0.10226485133171082,-0.014447125606238842,0.03264542669057846,-0.022071504965424538,-0.09029851853847504,-0.023615878075361252,-0.08543511480093002,0.028788216412067413,0.07383712381124496,0.0042307875119149685,-0.02628096379339695,0.01707504689693451,0.05213033780455589,-0.016059206798672676,0.02645062655210495,-0.07811548560857773,0.07871652394533157,-0.016578534618020058,-0.06786581128835678,0.04442288726568222,0.013845582492649555,0.002856195205822587,-0.09885534644126892,0.04437211528420448,-0.011315899901092052,-0.03298330679535866,-0.0035076825879514217,-0.023437481373548508,0.00778191490098834,-0.03388017416000366,-0.026138652116060257,-0.03378252312541008,0.04761500656604767,-0.040598269551992416,-0.00468275835737586,-0.06586269289255142,-0.0012068094220012426,-0.0378856360912323,0.02099144272506237,0.03369851037859917,0.0048066372983157635,0.044409751892089844,0.025779511779546738,-0.0185770895332098,-0.0013735254760831594,0.08463640511035919,-0.029739711433649063,0.019974343478679657,0.051371242851018906,0.044704265892505646,0.10999922454357147,-0.010880048386752605,-0.05302437022328377,-0.052741385996341705,0.019515885040163994,0.022504953667521477,0.01935545727610588,0.029545344412326813,-0.02538433112204075,-0.0030570076778531075,-1.9467249146032373e-8,0.026352152228355408,0.032374605536460876,0.03234455734491348,-0.06078983098268509,0.03821196034550667,-0.026493005454540253,0.009302841499447823,0.07334626466035843,-0.039851512759923935,0.07961457967758179,-0.04117761179804802,0.0011010434245690703,0.0756807029247284,0.039979126304388046,-0.047514066100120544,0.04367641732096672,0.1106506809592247,-0.08801329880952835,-0.07085727900266647,0.011766879819333553,-0.029409445822238922,0.04958608001470566,0.015166324563324451,-0.09084013104438782,-0.013747001066803932,0.05754280835390091,-0.06915109604597092,-0.14141832292079926,0.06415972113609314,0.02712237276136875,0.027528604492545128,0.041615862399339676,-0.045490458607673645,0.05279526486992836,-0.05898340046405792,-0.013091238215565681,0.018571190536022186,0.03317760303616524,-0.008092756383121014,-0.02886931411921978,0.050532687455415726,0.019525088369846344,0.07274340093135834,0.08567101508378983,0.014801070094108582,-0.005673246458172798,0.04970422014594078,-0.0036173462867736816,-0.025779135525226593,-0.0057829576544463634,-0.025320306420326233,0.07074318081140518,-0.008905133232474327,0.061532244086265564,0.05526323989033699,0.07661761343479156,0.00006988784298300743,0.09205801784992218,-0.1647263765335083,0.025580041110515594,0.05242748185992241,-0.020632047206163406,-0.11241332441568375,0.03446393460035324]},{"text":"The course of the Rhine below Mainz becomes much more picturesque.","book":"1984","chapter":90,"embedding":[0.07765678316354752,0.0578366182744503,0.0853518545627594,0.011660252697765827,0.03916499763727188,-0.00322707649320364,-0.04659749194979668,0.056051984429359436,-0.05809454247355461,-0.05211443826556206,-0.028381602838635445,-0.034009404480457306,0.004163558594882488,0.014355306513607502,0.05897084251046181,-0.06395997852087021,0.11908929795026779,0.0008620626176707447,-0.01461560558527708,-0.0442311093211174,-0.009255887940526009,-0.03259439021348953,0.049005456268787384,0.01662544161081314,0.05794574320316315,-0.08659480512142181,-0.02046942338347435,0.0011592891532927752,0.02859763614833355,-0.06453091651201248,0.030207691714167595,0.10883218795061111,-0.06086113303899765,-0.03390027955174446,0.02169722132384777,0.030318070203065872,-0.01738137938082218,-0.09091924875974655,-0.0579153336584568,0.024256419390439987,-0.10603434592485428,0.059003692120313644,-0.05950426310300827,0.017615891993045807,-0.06380176544189453,0.006799846887588501,0.04228231683373451,-0.03525418043136597,-0.03744412586092949,0.054249268025159836,0.010486842133104801,-0.05494610220193863,0.020597724243998528,-0.03417457640171051,-0.0461668036878109,0.1763162761926651,-0.011916796676814556,-0.03849443420767784,-0.045383356511592865,0.03763990476727486,0.005384205840528011,0.01437557116150856,-0.06854495406150818,0.007316323462873697,-0.13447660207748413,-0.017056722193956375,0.0011199141154065728,-0.041388265788555145,-0.012052270583808422,-0.02314857579767704,0.006902735680341721,-0.05537262186408043,0.010143172927200794,-0.043823570013046265,0.010767151601612568,-0.11647019535303116,-0.07779459655284882,-0.04076901450753212,-0.031874291598796844,-0.04591904580593109,-0.02749238908290863,0.03515114262700081,0.0014060104731470346,-0.017321724444627762,0.02167188562452793,0.013045353814959526,0.09346011281013489,-0.08485854417085648,0.03882574290037155,0.02665228769183159,-0.004725279286503792,-0.10152645409107208,-0.08701230585575104,-0.009818625636398792,-0.05257371440529823,0.07315061241388321,0.028130726888775826,0.018088323995471,0.07760420441627502,0.04065949469804764,-0.021980823948979378,-0.005381053779274225,0.021485641598701477,0.056016843765974045,-0.007534100208431482,0.007090233266353607,-0.03633354976773262,0.014576711691915989,-0.04807202145457268,-0.040359240025281906,0.09097645431756973,0.008297072723507881,0.07644116133451462,-0.014108856208622456,-0.030746081843972206,0.0333014577627182,0.08338870108127594,-0.08025238662958145,-0.024944782257080078,0.09291893988847733,0.058537036180496216,-0.032944824546575546,-0.0247182734310627,0.09166460484266281,0.01877441443502903,0.0477241575717926,-0.010852145962417126,-3.384787126708821e-33,-0.011228800751268864,0.012827637605369091,0.06945877522230148,-0.017636599019169807,0.08507359027862549,0.00319038238376379,-0.03747433051466942,0.02485927939414978,-0.031993817538022995,-0.02622082084417343,-0.022312097251415253,-0.06942131370306015,-0.032236646860837936,-0.05690435320138931,-0.0019525944953784347,-0.09971343725919724,0.02464839443564415,0.05641058459877968,0.0053336466662585735,0.07345069944858551,-0.0019117090851068497,-0.021121270954608917,0.01913248561322689,-0.05825186148285866,0.03681981936097145,0.05588827654719353,0.05915552377700806,0.044077251106500626,-0.012905710376799107,0.004320970736443996,0.07471587508916855,-0.033367544412612915,-0.029033606871962547,-0.00758335879072547,0.0015272896271198988,0.0940132662653923,-0.03497662767767906,-0.008496716618537903,0.08480463922023773,-0.007023753598332405,0.010804050602018833,0.042244888842105865,-0.05717841908335686,-0.0027350548189133406,0.017112506553530693,0.052275922149419785,0.025361312553286552,0.015456069260835648,-0.02748243510723114,-0.06869453191757202,0.020562611520290375,-0.019320834428071976,0.024801498278975487,0.05807211250066757,0.04346228763461113,0.1186353862285614,0.01284769270569086,-0.02060363069176674,-0.0017943794373422861,0.05545622855424881,-0.007707013748586178,0.023906411603093147,-0.016105888411402702,0.0016570306615903974,0.11575328558683395,0.007605351507663727,0.010116063989698887,0.036399245262145996,-0.08592960983514786,0.03026793710887432,-0.13230514526367188,-0.010033030062913895,0.002125474391505122,0.04752124473452568,0.010483859106898308,-0.0007771491073071957,-0.0522623211145401,0.00021148017549421638,0.02143140882253647,-0.04143279790878296,-0.06188745051622391,0.0037783668376505375,-0.07214182615280151,0.012064420618116856,0.09335479140281677,-0.0379369780421257,0.04076281189918518,-0.06376524269580841,0.05569738522171974,0.025786275044083595,-0.018538985401391983,-0.025276128202676773,0.030123719945549965,-0.010323528200387955,-0.056698475033044815,1.6075777888517437e-33,0.024054691195487976,-0.026193669065833092,-0.04532260447740555,0.07496141642332077,-0.03669058904051781,0.08729907125234604,-0.04292263463139534,0.025454582646489143,-0.058502279222011566,0.03635566681623459,-0.020915336906909943,0.09535520523786545,-0.06727907806634903,-0.06732351332902908,-0.04157629981637001,-0.04534169286489487,0.14248214662075043,0.014419029466807842,0.0056670051999390125,0.0763467401266098,-0.009380489587783813,-0.05003012344241142,-0.0686505138874054,-0.02266855724155903,-0.036888208240270615,0.03629494085907936,-0.04886640980839729,0.006590522825717926,-0.012509427033364773,-0.026429077610373497,-0.040024202316999435,-0.04902687296271324,0.0182858407497406,-0.0768582671880722,0.037161607295274734,0.10122670233249664,0.028919614851474762,0.006642978172749281,-0.01584712229669094,0.08049842715263367,-0.02389923296868801,-0.00560422707349062,0.08324675261974335,0.04377936199307442,0.029080510139465332,-0.02414727956056595,-0.0387125238776207,0.0008205223130062222,-0.008522630669176579,-0.0019742604345083237,-0.023545874282717705,-0.08076202124357224,0.04513678699731827,0.03575441986322403,-0.03470873460173607,-0.047538354992866516,0.0066749402321875095,-0.0093009565025568,0.016193928197026253,0.015141451731324196,-0.00035933396429754794,0.052752863615751266,-0.08195018768310547,0.0715302899479866,-0.013706834055483341,-0.06638577580451965,-0.1406274139881134,0.02412862703204155,-0.10148630291223526,0.0165446437895298,-0.0882795974612236,-0.004066044464707375,0.005666789598762989,0.03469792753458023,0.023430781438946724,-0.013733016327023506,0.12110993266105652,0.07163820415735245,-0.011354376561939716,-0.026021206751465797,0.02745731547474861,-0.03884377330541611,-0.05591556057333946,-0.09299606084823608,0.03597959131002426,0.05702737718820572,-0.07155241072177887,-0.02770831435918808,0.0629308819770813,-0.04469648003578186,-0.058167051523923874,-0.0009064616751857102,-0.016712956130504608,-0.07172925770282745,0.07000245898962021,-1.9374102322444742e-8,-0.015470639802515507,-0.0004019533807877451,-0.014479209668934345,-0.03295344486832619,0.015082614496350288,-0.11944246292114258,0.06955745071172714,0.06795184314250946,-0.051438938826322556,-0.028633279725909233,-0.05687437206506729,0.13847973942756653,0.0746341273188591,0.03008471243083477,0.04209030792117119,0.11805340647697449,0.009365561418235302,-0.10022057592868805,0.004589628893882036,0.10617657005786896,-0.007698634639382362,0.02090056613087654,-0.044392336159944534,-0.002889905357733369,-0.039142876863479614,-0.011797702871263027,0.0013501037610694766,0.0009331490728072822,-0.0423285998404026,0.01694463938474655,0.036589644849300385,0.0159110426902771,0.02147519402205944,0.06776357442140579,0.023069212213158607,-0.01776210218667984,-0.044428493827581406,0.02751423418521881,0.02217700332403183,0.010023793205618858,-0.08036388456821442,-0.04235394299030304,0.03708237037062645,0.049017515033483505,0.07240457087755203,-0.02888026088476181,0.08886009454727173,-0.016010940074920654,0.09107222408056259,0.025134123861789703,-0.04777909070253372,0.028998469933867455,0.037931136786937714,-0.01342175155878067,-0.026837794110178947,-0.0073853665962815285,-0.007905523292720318,-0.015485021285712719,-0.0593266561627388,0.024129170924425125,0.03328815847635269,-0.07520493865013123,0.06183299422264099,0.008362751454114914]},{"text":"Oh, surely the spirit that inhabits and guards this place has a soul more in harmony with man than those who pile the glacier or retire to the inaccessible peaks of the mountains of our own country.” Clerval!","book":"1984","chapter":90,"embedding":[0.011477150022983551,0.087953120470047,0.08800652623176575,0.006430630572140217,0.025089377537369728,-0.033156540244817734,0.06471822410821915,-0.08034801483154297,0.027437422424554825,0.0007557214703410864,-0.047653649002313614,-0.03150235116481781,0.040247317403554916,-0.006850134115666151,0.029495060443878174,0.050532903522253036,-0.0618043877184391,-0.0348331592977047,0.0304311104118824,0.05485263839364052,-0.005301953759044409,0.011356490664184093,0.017292579635977745,0.11529657244682312,-0.021343138068914413,0.025433871895074844,-0.048059236258268356,0.04837287589907646,0.10509217530488968,0.03593841940164566,0.009182596579194069,0.009973032400012016,-0.02980746701359749,0.02363825961947441,0.0284858588129282,0.13511133193969727,0.011728890240192413,0.02427893877029419,0.013056697323918343,0.039669547230005264,0.0346355102956295,0.037553489208221436,-0.03292940929532051,-0.019880039617419243,-0.0374797023832798,0.012651687487959862,-0.004841777961701155,-0.0711328312754631,-0.020697837695479393,-0.04263608530163765,0.02115505188703537,0.02101055346429348,-0.03780164197087288,-0.07881796360015869,-0.1030564233660698,0.006277482490986586,-0.02770349010825157,-0.03652593120932579,0.07242053747177124,0.006160203367471695,0.01546325534582138,-0.0038468879647552967,0.0015340468380600214,0.01423532236367464,0.09724190831184387,-0.08333004266023636,-0.03915075212717056,0.01108913216739893,-0.05683599412441254,-0.06422928720712662,0.06186188757419586,0.025734100490808487,-0.012357727624475956,-0.03416461870074272,-0.03600581735372543,-0.08323825150728226,-0.0770103856921196,-0.0070272586308419704,-0.09836231172084808,0.020755385980010033,0.061412740498781204,-0.05833811312913895,0.08685499429702759,0.04208905249834061,-0.06476292759180069,-0.08874034136533737,0.030418982729315758,-0.03809531778097153,0.10174544155597687,-0.01627282053232193,-0.046240802854299545,-0.004166623577475548,0.03575696051120758,0.023567544296383858,-0.019645167514681816,0.07808662205934525,-0.043071698397397995,0.1033514216542244,-0.10143783688545227,0.042478542774915695,-0.022086191922426224,-0.048042092472314835,-0.04019106924533844,-0.04417571425437927,-0.007383070886135101,-0.019677532836794853,-0.01597404293715954,0.0020730667747557163,-0.061525315046310425,0.034168392419815063,0.031121253967285156,0.005382254719734192,0.012167714536190033,0.03636283427476883,0.07261361926794052,0.020708682015538216,-0.055087946355342865,-0.049157995730638504,-0.04881120100617409,0.01629583351314068,0.008346945978701115,0.004528727848082781,-0.010064900852739811,0.07510795444250107,0.10550194978713989,-0.018779145553708076,0.00230550579726696,-2.2315874956178165e-33,0.03062567673623562,0.023657124489545822,0.03376040980219841,0.017827734351158142,0.03205140680074692,-0.0025295610539615154,-0.07283684611320496,-0.057012155652046204,-0.022948838770389557,-0.037232186645269394,-0.012087161652743816,0.006444077473133802,-0.06320463120937347,0.01717469096183777,-0.020417669788002968,0.020310435444116592,-0.0533163882791996,-0.05421235039830208,-0.05095021054148674,-0.025184329599142075,0.018518652766942978,0.02137814462184906,0.0024557996075600386,0.07220865041017532,-0.05380614474415779,-0.0017027533613145351,0.0621505044400692,-0.0056618633680045605,-0.008305779658257961,-0.0006311177858151495,0.0323592945933342,0.02268100716173649,0.07177263498306274,-0.06420822441577911,0.0535198450088501,0.03590419515967369,0.025365175679326057,0.03808309882879257,-0.03963138163089752,0.0073441797867417336,0.01315311249345541,-0.0461922213435173,-0.018287677317857742,0.028781451284885406,0.043753549456596375,-0.053838521242141724,0.09156425297260284,0.020465392619371414,-0.0687725618481636,-0.009058293886482716,-0.04716821014881134,0.0881609320640564,-0.06536365300416946,0.029759256169199944,0.049171339720487595,0.008664984256029129,0.01533991377800703,0.01715325005352497,0.027291156351566315,-0.011676122434437275,0.016198480501770973,-0.05310257151722908,0.04973819851875305,-0.07550041377544403,0.10041775554418564,-0.09815465658903122,-0.0010062382789328694,0.06189391762018204,-0.04197542369365692,0.023568233475089073,0.01090706791728735,-0.011075428687036037,-0.037934254854917526,0.06096823513507843,-0.01784311980009079,-0.031621601432561874,-0.06783147156238556,0.06596632301807404,-0.028973951935768127,0.02602117508649826,-0.012828540988266468,-0.025592584162950516,0.047625377774238586,0.05969315394759178,0.04121746867895126,-0.044000234454870224,0.09796313941478729,-0.10993438959121704,-0.0015234212623909116,0.004276818595826626,-0.05994122102856636,-0.007223210297524929,0.08473359048366547,0.004192136228084564,-0.14214688539505005,-2.3962891429978336e-35,0.05436528101563454,-0.0916997492313385,0.10990233719348907,0.0678582414984703,-0.03422016277909279,-0.020970525220036507,-0.014568585902452469,-0.008570503443479538,-0.05158033221960068,0.06381034106016159,-0.06729255616664886,0.06911688297986984,0.1356717348098755,0.08185803145170212,-0.0034447256475687027,-0.010671641677618027,0.0687008649110794,0.03183162957429886,-0.10260266810655594,-0.040097612887620926,-0.026933837682008743,0.04384055361151695,-0.07754724472761154,0.012496108189225197,-0.09400302916765213,0.06915999948978424,-0.0181697029620409,-0.04445977136492729,0.0026459177024662495,-0.01225706934928894,-0.05009011924266815,0.046243105083703995,-0.027747364714741707,-0.050176896154880524,-0.01852826215326786,0.01608988083899021,0.00002053812931990251,0.01112681720405817,-0.0924871563911438,0.000016513038644916378,-0.014731734059751034,-0.0842713862657547,0.00946741085499525,-0.07122360169887543,0.005135210230946541,-0.04938765987753868,0.03698832541704178,0.02696552313864231,-0.08917014300823212,-0.01085533108562231,-0.008762727491557598,0.03389047458767891,-0.06830302625894547,0.0436224490404129,0.035440173000097275,0.0026170415803790092,-0.06988466531038284,-0.008862446993589401,-0.012327411212027073,-0.07674078643321991,-0.006815079599618912,0.020591745153069496,-0.01677294634282589,0.0018897418631240726,0.054687291383743286,0.018096378073096275,-0.07901043444871902,0.018781490623950958,-0.033589500933885574,0.036998849362134933,-0.004314136691391468,-0.11597983539104462,-0.08544162660837173,-0.04338642954826355,0.04955141618847847,0.05161767452955246,0.03740015998482704,-0.07477892935276031,0.0264564361423254,-0.07937881350517273,-0.043693337589502335,-0.0847090631723404,-0.03186578303575516,-0.00006976377335377038,0.020023584365844727,0.05164242163300514,-0.01410516444593668,-0.12619207799434662,0.0348137728869915,0.002244379837065935,-0.04634068161249161,-0.05641459673643112,-0.08407125622034073,-0.08129961788654327,0.011821302585303783,-3.3658821507742687e-8,0.0005308344843797386,0.054753419011831284,-0.0405445396900177,0.0761791542172432,-0.0029856290202587843,-0.031468264758586884,0.0758202075958252,-0.011490331962704659,-0.08148129284381866,0.10043821483850479,-0.0012124825734645128,-0.06106061488389969,0.06153595447540283,0.04977518692612648,0.04612497612833977,0.07459843158721924,0.05899496003985405,-0.007206503301858902,-0.06361318379640579,-0.07643918693065643,-0.06165085360407829,0.028292544186115265,0.055127572268247604,-0.016576595604419708,-0.06586603075265884,-0.021968400105834007,-0.06154971197247505,-0.010381380096077919,0.08111652731895447,0.08889994025230408,0.023402415215969086,0.014057330787181854,-0.005992298014461994,0.008217341266572475,0.0887068510055542,0.00032176528475247324,-0.06356047093868256,0.0312044657766819,0.02951754629611969,-0.0457376129925251,0.01493779569864273,0.004298926796764135,0.07126492261886597,0.06953661888837814,-0.009732771664857864,-0.023347629234194756,0.017776403576135635,0.07216738164424896,0.025303713977336884,0.05456620827317238,0.05338381975889206,-0.02401447482407093,0.0015475073596462607,0.09147660434246063,0.042008642107248306,-0.00349166220985353,-0.009402207098901272,-0.050743650645017624,-0.0873885303735733,0.010104415006935596,0.0595243014395237,-0.0671510174870491,-0.055803652852773666,-0.11578311771154404]},{"text":"I will proceed with my tale.","book":"1984","chapter":91,"embedding":[0.07704957574605942,-0.001989111304283142,0.07449330389499664,0.015384895727038383,-0.03688850998878479,0.002649090951308608,-0.005404311697930098,0.027263673022389412,-0.005873966962099075,-0.03220268711447716,0.006100816652178764,0.060893502086400986,0.055303752422332764,0.06325463950634003,0.04490711912512779,0.010994750075042248,0.02700076811015606,-0.022028984501957893,0.04281534627079964,0.0002836265484802425,0.0022582742385566235,0.02425401471555233,0.02262604422867298,-0.07965435832738876,-0.034424398094415665,-0.020777659490704536,0.011373665183782578,-0.018499290570616722,-0.09608573466539383,-0.024706393480300903,-0.014395086094737053,0.031024500727653503,-0.030285853892564774,-0.03859572857618332,0.007637904491275549,-0.004940614569932222,0.05453865975141525,-0.05423108488321304,0.10515618324279785,0.001270417356863618,0.019866133108735085,-0.08706165105104446,0.002556899329647422,0.05325477942824364,-0.003803221508860588,0.0583210326731205,-0.0410638153553009,0.012073153629899025,-0.019889427348971367,-0.018710175529122353,-0.07157307118177414,0.03645443171262741,-0.012719052843749523,-0.05788503959774971,-0.03345661982893944,0.006564698182046413,0.015470343641936779,-0.04142105579376221,0.05725386366248131,-0.07734057307243347,0.010896798223257065,0.025208095088601112,-0.07023791968822479,0.09810075163841248,-0.0010635366197675467,0.05198247730731964,0.04158952087163925,0.0811360701918602,0.013243882916867733,0.0535760298371315,-0.031037669628858566,0.01165058370679617,-0.027693040668964386,0.06193757802248001,-0.026707351207733154,-0.01163553912192583,0.03038429655134678,-0.060058217495679855,0.05274740234017372,-0.027931252494454384,-0.10452798753976822,-0.023066328838467598,-0.05536069720983505,-0.014176540076732635,-0.11471173912286758,-0.06618455052375793,0.03846039995551109,-0.07712627947330475,-0.0409785620868206,0.008030090481042862,0.04831140860915184,-0.07053326815366745,-0.003941514529287815,0.018034067004919052,0.06544425338506699,0.026926763355731964,-0.0910467654466629,-0.02471892163157463,-0.0859094187617302,0.027237610891461372,0.010325314477086067,-0.038802746683359146,-0.030295420438051224,-0.013462407514452934,0.06453823298215866,-0.0019101216457784176,-0.08803615719079971,0.0039938525296747684,-0.007639438379555941,-0.05549610033631325,0.002053480828180909,0.02065826952457428,-0.002070054179057479,0.06042950972914696,0.09839951992034912,0.09148536622524261,-0.03764268755912781,0.03255802392959595,0.026014234870672226,0.002484529744833708,0.08033578097820282,0.08110106736421585,-0.03395526483654976,0.07163936644792557,-0.04123822599649429,-0.08315533399581909,0.05148898810148239,-8.900254007883011e-33,-0.007524390239268541,-0.009104209952056408,-0.02132808044552803,0.08122288435697556,0.06892681866884232,0.015092666260898113,-0.06165909022092819,0.03904638811945915,-0.012205519713461399,0.0069100200198590755,-0.0041908579878509045,0.025808775797486305,-0.06328790634870529,-0.04558951407670975,-0.08475763350725174,0.018258174881339073,0.0021348590962588787,0.025583146139979362,-0.01071191392838955,0.05479101836681366,0.062240391969680786,-0.042084965854883194,-0.014665444381535053,0.013831992633640766,-0.019318033009767532,-0.008671730756759644,0.025622304528951645,-0.04506831243634224,0.051374658942222595,0.05517028644680977,0.011382409371435642,0.045961275696754456,-0.012170601636171341,-0.025930821895599365,0.014421911910176277,0.05408501997590065,-0.06185673549771309,-0.07482343912124634,-0.01661999523639679,0.055549487471580505,-0.07807481288909912,-0.01714685931801796,-0.10480325669050217,-0.03368481993675232,0.04606218263506889,0.01899714022874832,0.05713601037859917,0.00687958812341094,-0.15422599017620087,-0.028333811089396477,-0.04021601006388664,0.03772657737135887,0.053291454911231995,-0.013683714903891087,-0.004418372176587582,0.003941490780562162,0.0026483165565878153,-0.04681539908051491,0.08313506096601486,0.0421610064804554,0.059189535677433014,-0.03490652143955231,-0.15334278345108032,0.04718716815114021,-0.03303254395723343,-0.01775306463241577,0.009061248041689396,-0.0636138916015625,-0.040211040526628494,-0.03963236138224602,-0.04023399204015732,-0.030723759904503822,0.017632797360420227,0.06246032565832138,-0.03169005736708641,-0.00017862246022559702,-0.05481381714344025,-0.023380668833851814,-0.026910442858934402,0.01907208189368248,0.04388615861535072,0.055969204753637314,-0.140790656208992,0.007042952347546816,0.13846786320209503,0.04808446764945984,0.0047706058248877525,-0.12027587741613388,-0.018659576773643494,0.039913617074489594,0.04142389073967934,0.010153736919164658,0.052689652889966965,-0.0275447815656662,-0.03224371001124382,5.0800505493181685e-33,0.04138384014368057,0.03831753134727478,0.030858125537633896,-0.006405153777450323,0.0658484548330307,-0.09543111175298691,-0.029691092669963837,0.07449884712696075,0.073715440928936,-0.012500111013650894,-0.055961206555366516,-0.010079535655677319,0.011089485138654709,-0.0017210061196237803,0.05034346505999565,-0.0023359807673841715,0.12819771468639374,-0.01376232411712408,-0.04408177733421326,0.046579983085393906,-0.07167365401983261,0.08902084082365036,-0.043011993169784546,-0.040964275598526,-0.013010786846280098,-0.010683389380574226,0.11041189730167389,-0.039548859000205994,-0.06926202774047852,0.030810199677944183,0.06615506857633591,-0.07067495584487915,-0.0725071132183075,0.009625772014260292,-0.002584993140771985,-0.02115781605243683,0.07368088513612747,-0.03770488500595093,-0.012327578850090504,-0.06535179167985916,0.013078457675874233,-0.08555552363395691,0.03772728517651558,-0.027183640748262405,0.008533994667232037,-0.04956822469830513,0.07971599698066711,0.046505533158779144,0.05679900199174881,0.03912021964788437,0.05870779976248741,0.03213394805788994,0.03490885719656944,-0.0510517843067646,-0.013152160681784153,-0.023725192993879318,0.06709373742341995,-0.05314750596880913,-0.0023355495650321245,-0.04587526246905327,0.019665876403450966,0.1266438066959381,-0.005453429184854031,0.010567519813776016,0.11579953134059906,-0.05574258044362068,-0.032047342509031296,-0.013690001331269741,-0.023023303598165512,0.01677226461470127,-0.03308173269033432,-0.05173426494002342,-0.0013078405754640698,-0.054473768919706345,0.11154136806726456,-0.02179630845785141,-0.0461377315223217,-0.04860513657331467,-0.013519106432795525,0.0015248205745592713,0.07274668663740158,-0.003019618568941951,0.09369854629039764,0.016559667885303497,0.06359948217868805,0.003647799137979746,0.05099210888147354,-0.03824882209300995,0.0006680989754386246,0.027666766196489334,-0.0916343405842781,-0.023311709985136986,0.05722422152757645,-0.0650709792971611,0.04355784133076668,-2.186926906233566e-8,-0.006095003802329302,-0.06865274906158447,0.13500186800956726,-0.02699929103255272,0.026219237595796585,0.043456148356199265,-0.03945031762123108,0.004541649948805571,-0.04503641650080681,-0.03049481101334095,-0.06303820013999939,0.03213192895054817,0.01402230467647314,0.05281338095664978,0.08417411893606186,-0.010700876824557781,0.04064038395881653,-0.046935081481933594,-0.046920690685510635,0.009087725542485714,0.02087555080652237,0.05172284319996834,0.041691362857818604,-0.08055764436721802,-0.014311127364635468,0.09197016060352325,-0.04996826499700546,0.005268472246825695,0.056160904467105865,0.08425510674715042,-0.021608425304293633,-0.01415825355798006,-0.0450640507042408,-0.00235226028598845,-0.02210797555744648,-0.04120473563671112,0.025371940806508064,0.06581839174032211,0.03404121845960617,-0.07523714005947113,0.033600132912397385,0.0015830128686502576,0.05136432126164436,0.10700474679470062,-0.03459867089986801,-0.08074502646923065,0.043194834142923355,-0.052821166813373566,0.0017452372703701258,0.0705425813794136,-0.006533589214086533,0.004675503820180893,0.05850621685385704,0.1381535679101944,0.027333106845617294,-0.031596217304468155,-0.045599523931741714,0.007693917490541935,-0.04644133150577545,0.02589477226138115,0.007443670649081469,-0.11586377769708633,-0.03302076831459999,-0.05170042812824249]},{"text":"But a blight had come over my existence, and I only visited these people for the sake of the information they might give me on the subject in which my interest was so terribly profound.","book":"1984","chapter":91,"embedding":[-0.0005022821133024991,0.023730697110295296,0.08180899173021317,0.06573247164487839,0.019528869539499283,-0.014209482818841934,0.021287143230438232,0.0088236965239048,0.0024332667235285044,-0.04477053880691528,0.026559144258499146,0.044395461678504944,0.025049686431884766,-0.021876653656363487,-0.10271777957677841,0.09342103451490402,-0.03724781423807144,-0.06621953845024109,-0.07762095332145691,-0.01840011030435562,-0.015140830539166927,0.03071744181215763,-0.017669111490249634,0.03321497514843941,-0.03447524085640907,0.06479840725660324,0.00018666638061404228,-0.03274895250797272,0.01949354261159897,0.034908924251794815,-0.03670065104961395,0.048248935490846634,-0.07121092081069946,0.03702385723590851,0.03256349265575409,-0.00628361850976944,0.06645750254392624,0.04674796387553215,0.05251147970557213,-0.1067492887377739,0.05656459182500839,0.022572072222828865,0.12445567548274994,-0.01575947180390358,-0.0008879942470230162,-0.05944182351231575,0.010791460052132607,-0.03802339732646942,-0.012503630481660366,-0.06098593398928642,-0.006999810226261616,-0.003862618235871196,0.02290242165327072,-0.01814538799226284,0.011316264048218727,-0.027688318863511086,-0.0705450102686882,-0.005550191272050142,0.006285569630563259,-0.03712243586778641,0.0003832744259852916,0.012380844913423061,0.0206717811524868,-0.039362192153930664,-0.02992483228445053,0.07529908418655396,-0.046240221709012985,-0.03617534413933754,0.044488634914159775,-0.016846613958477974,-0.004993760492652655,0.015293153934180737,0.05880903825163841,0.07817692309617996,-0.050572171807289124,-0.06051675230264664,-0.002354722935706377,-0.04792148247361183,-0.07468173652887344,0.015128662809729576,0.045541323721408844,0.053258493542671204,0.013485053554177284,0.03504250571131706,-0.007957329042255878,-0.0042173066176474094,0.07865225523710251,-0.026635056361556053,0.03458842262625694,0.059586051851511,0.04250356927514076,-0.057477690279483795,0.027389727532863617,-0.023008208721876144,0.022157222032546997,-0.0629587471485138,-0.002100725658237934,-0.021173089742660522,0.033284176141023636,0.04792431741952896,-0.11260030418634415,-0.011884147301316261,-0.07396640628576279,0.017971079796552658,-0.029070962220430374,0.01765323057770729,-0.12176142632961273,0.00282484944909811,0.055919673293828964,-0.040251754224300385,0.026221299543976784,0.01072690263390541,0.0017456840723752975,0.015286363661289215,0.007483260706067085,-0.026783043518662453,0.02138293907046318,0.041168879717588425,-0.011783279478549957,0.014295852743089199,-0.020803598687052727,0.09688491374254227,0.006417829543352127,0.05453000217676163,-0.038100287318229675,-0.07638426125049591,-0.06354977935552597,-2.387178499286547e-33,0.0017171748913824558,0.07154291868209839,-0.0214977003633976,0.03870682418346405,-0.012941298075020313,0.012411908246576786,-0.10643311589956284,0.042353421449661255,0.006021831650286913,-0.015373852103948593,0.10046036541461945,0.032543595880270004,0.07987496256828308,-0.07546000927686691,-0.05025501921772957,0.06071801111102104,0.01974017731845379,-0.04890628159046173,0.045404575765132904,-0.01251966506242752,0.001719438238069415,-0.013317504897713661,-0.019506581127643585,0.005235814023762941,-0.005277400370687246,-0.023603174835443497,0.012691739946603775,-0.00589634058997035,0.05088608339428902,0.02405857853591442,0.018423479050397873,0.08869080990552902,0.014835082925856113,-0.04895257204771042,0.012822167947888374,0.11266154050827026,0.02903996966779232,-0.09294982254505157,-0.017662106081843376,-0.03714906424283981,-0.03660169616341591,0.05358440801501274,-0.030038917437195778,-0.006844093557447195,0.030696582049131393,0.021798664703965187,0.041941460222005844,-0.014716146513819695,-0.09264077246189117,-0.00684063695371151,-0.0874500721693039,0.014032619073987007,-0.02011927030980587,-0.0020069724414497614,-0.017687300220131874,0.01464528776705265,-0.026286635547876358,0.07059477269649506,0.0389530286192894,0.04501291364431381,0.061547715216875076,-0.013294551521539688,-0.07854010164737701,-0.010726378299295902,0.0026429106947034597,-0.1133384108543396,0.004331027623265982,-0.0002925485314335674,-0.040589213371276855,-0.057742875069379807,-0.013191170059144497,-0.01599702797830105,0.04289070889353752,-0.06357327103614807,-0.0999237522482872,-0.034726597368717194,-0.0428684763610363,-0.011220636777579784,-0.005272298119962215,-0.0046641211956739426,0.0747125968337059,-0.08789074420928955,0.050216346979141235,-0.017104361206293106,0.02746523916721344,0.0326232947409153,0.06097693741321564,-0.04204677790403366,-0.015385686419904232,-0.06022718548774719,0.010995426215231419,0.04942290112376213,0.03050173632800579,-0.11493323743343353,-0.12508776783943176,1.859117210250523e-34,-0.03248997777700424,-0.01062170509248972,0.006308173760771751,-0.019141223281621933,0.014202112331986427,-0.06399878859519958,-0.047100383788347244,-0.02026534080505371,-0.06492598354816437,0.07200206071138382,0.011772398836910725,0.0640677735209465,0.02465645782649517,0.002598143881186843,-0.0008028109441511333,-0.036592449992895126,0.022484445944428444,-0.017632361501455307,-0.06048773229122162,-0.050743468105793,-0.06385030597448349,0.12087370455265045,-0.06033835932612419,-0.045103300362825394,-0.0043815262615680695,0.07159121334552765,0.1444064974784851,-0.018696153536438942,-0.06819022446870804,-0.07555805146694183,0.05979283154010773,0.08145151287317276,-0.08738449215888977,-0.05607818067073822,-0.0009657489135861397,0.12806738913059235,0.015450178645551205,-0.042401980608701706,-0.017675988376140594,-0.0797090083360672,-0.03925950080156326,0.08364519476890564,-0.005022815894335508,-0.0657883733510971,-0.05908965691924095,-0.026557546108961105,-0.006500396877527237,0.025244763121008873,0.03806129842996597,-0.012782876379787922,-0.055826153606176376,0.054489921778440475,0.04914914444088936,-0.06833670288324356,-0.029954969882965088,-0.04449877887964249,0.06683043390512466,-0.06107790395617485,0.09290977567434311,0.01291925460100174,-0.05376061424612999,0.007794936653226614,0.006400049198418856,0.07884529232978821,0.028079800307750702,-0.04987744614481926,-0.03494225814938545,0.046739403158426285,-0.02456132508814335,-0.06645747274160385,0.036698490381240845,-0.03797860071063042,-0.05884767696261406,0.027993954718112946,0.015637600794434547,0.017159076407551765,0.0029793339781463146,0.027673892676830292,-0.07637137174606323,-0.010325855575501919,0.08268838375806808,-0.037297606468200684,0.05879446491599083,-0.018987037241458893,0.11912086606025696,-0.01122424565255642,-0.004080757964402437,-0.018778732046484947,0.038382638245821,-0.028650881722569466,-0.05506949871778488,-0.04745945334434509,0.018877094611525536,-0.06754432618618011,0.02177499234676361,-3.033445494793341e-8,0.023391706869006157,0.020979760214686394,-0.0028478812891989946,0.07839612662792206,0.08564093708992004,-0.07389957457780838,0.02281823381781578,0.09632128477096558,-0.09478900581598282,0.019226687029004097,-0.1363801211118698,-0.030821718275547028,-0.009589471854269505,0.0799228698015213,0.11497461795806885,0.0016188174486160278,0.08275364339351654,-0.12212716042995453,-0.01823451556265354,0.02166169136762619,0.005732962861657143,0.0812971293926239,-0.025668246671557426,-0.044163163751363754,-0.019833430647850037,0.016524404287338257,-0.02564479038119316,-0.06485926359891891,0.0181681290268898,0.03353937342762947,-0.039582524448633194,0.060309942811727524,0.0006761394906789064,0.04707739129662514,0.01249593123793602,0.037524618208408356,-0.07370173931121826,-0.019386382773518562,0.04064767807722092,0.02455049566924572,-0.01637664996087551,0.01243861299008131,0.05101749673485756,0.11349313706159592,0.044576432555913925,-0.0026448287535458803,-0.020137673243880272,-0.049285728484392166,-0.025568442419171333,-0.004371273331344128,0.05569019541144371,0.01999160647392273,0.07079533487558365,0.11560378968715668,-0.030214782804250717,-0.04766681790351868,-0.00824454240500927,0.06477484852075577,-0.08055853843688965,-0.04221036285161972,0.11983267962932587,-0.032015856355428696,-0.14288713037967682,-0.00003041906893486157]},{"text":"I often refused to accompany him, alleging another engagement, that I might remain alone.","book":"1984","chapter":92,"embedding":[0.06296243518590927,0.10484272986650467,0.04095858708024025,0.034413352608680725,0.04480333253741264,-0.06590469181537628,-0.03732721135020256,-0.05231931433081627,0.06045138090848923,-0.06650809198617935,0.03930105268955231,0.04854077845811844,0.04718552157282829,0.03400883078575134,0.06507725268602371,-0.02518070861697197,0.002751361345872283,-0.03263254836201668,-0.018766434863209724,0.052421264350414276,-0.056534383445978165,0.013727820478379726,-0.03991139307618141,0.012000314891338348,0.010738476179540157,-0.0631890669465065,0.030686475336551666,0.04633145034313202,-0.004706097301095724,-0.03907300904393196,0.03272783383727074,0.03188611939549446,-0.08192063868045807,-0.0025837060529738665,-0.02028917334973812,-0.09554322808980942,-0.023857982829213142,0.009897462092339993,-0.0007438305183313787,-0.027735596522688866,0.03597116470336914,0.06899840384721756,0.1027604267001152,-0.012462100014090538,0.009814003482460976,-0.02900576777756214,0.02801571600139141,-0.06152035668492317,-0.023408837616443634,-0.006929459981620312,-0.03737225383520126,0.05158325284719467,-0.054320115596055984,0.018855057656764984,-0.006701797712594271,0.0013453919673338532,0.06809134036302567,0.05396353825926781,-0.0005116414977237582,0.02312270551919937,-0.048601459711790085,0.02803792990744114,-0.0006586393574252725,0.004596277605742216,-0.07648414373397827,0.06721106171607971,-0.02821197733283043,0.007758965715765953,0.07022084295749664,0.10587145388126373,0.04766833409667015,0.010330339893698692,-0.04799420386552811,0.000033557109418325126,-0.11095305532217026,-0.06384383141994476,0.022334672510623932,0.023914489895105362,0.12391546368598938,-0.06148265674710274,-0.06245693191885948,0.02117202617228031,-0.01946033164858818,0.025439374148845673,-0.03348439559340477,-0.08424943685531616,0.023450743407011032,-0.011003774590790272,-0.0061042956076562405,0.021509569138288498,0.007638280745595694,0.04955572634935379,0.022949540987610817,-0.05004347860813141,-0.04443539306521416,-0.022415200248360634,-0.027272265404462814,0.041684750467538834,-0.14649665355682373,0.04885289818048477,0.011715784668922424,0.010687068104743958,-0.04420522227883339,0.044851936399936676,0.02956796996295452,0.024974267929792404,-0.00932381208986044,-0.09504516422748566,-0.027846867218613625,-0.014583088457584381,-0.022654443979263306,-0.005668738856911659,-0.0005657418514601886,-0.08339367806911469,0.03511366993188858,0.028398027643561363,0.055765192955732346,0.04468279704451561,0.045757438987493515,-0.029426153749227524,0.006480169016867876,0.043626461178064346,0.05719277635216713,0.08305424451828003,-0.0953732430934906,-0.05027878284454346,0.002378853503614664,-2.5033188105157275e-33,0.06882127374410629,-0.011776826344430447,-0.0506691075861454,-0.008695002645254135,0.044027019292116165,0.015792882069945335,-0.036162830889225006,-0.0021313591860234737,0.008361839689314365,0.02326766401529312,0.09906215220689774,0.07540664076805115,0.0948188453912735,-0.09508907049894333,-0.09869103878736496,0.05717086046934128,0.0687243640422821,0.1309516429901123,0.0728968158364296,-0.03942645713686943,-0.005631655920296907,-0.04269901290535927,-0.004896875005215406,0.06008313223719597,-0.022075988352298737,-0.013325435109436512,-0.010945690795779228,0.03139401599764824,0.027102762833237648,0.014940155670046806,-0.03584924340248108,0.09501206129789352,0.07929091155529022,0.01112769078463316,0.11650512367486954,-0.019532257691025734,-0.04125245288014412,-0.0030479864217340946,-0.08052480220794678,0.057788729667663574,-0.04720062017440796,-0.0362740196287632,-0.013543697074055672,-0.019173087552189827,-0.02645787037909031,0.0024526366032660007,0.05687987804412842,0.027509210631251335,-0.0131923733279109,-0.037106771022081375,-0.05241494998335838,-0.0072140744887292385,0.05055058375000954,0.050381943583488464,-0.04130179062485695,-0.07410735636949539,0.011154313571751118,-0.020164411514997482,0.05704515799880028,0.03876221552491188,0.007909728214144707,-0.017964625731110573,-0.1214386522769928,0.08206082135438919,-0.03076273389160633,-0.10204342752695084,-0.08651409298181534,-0.023093609139323235,-0.08481831103563309,-0.08268334716558456,-0.018765859305858612,0.025756480172276497,-0.04067782312631607,-0.07500506192445755,-0.034858912229537964,-0.1306803971529007,-0.026450274512171745,0.07502472400665283,0.02281695045530796,-0.08632048219442368,-0.02448803186416626,-0.03141886740922928,-0.039700161665678024,0.049380458891391754,-0.009102921932935715,0.0176616869866848,0.008637670427560806,-0.0277323629707098,0.0000029031182293692837,0.046507544815540314,-0.010030472651124,0.05814550071954727,-0.044873692095279694,-0.04162098467350006,0.03888516500592232,1.7129193477586984e-33,0.06077983230352402,-0.008329790085554123,0.09286187589168549,-0.013218092732131481,0.05439108610153198,-0.02870088815689087,-0.005480227060616016,0.018557706847786903,0.13842809200286865,-0.006474657449871302,0.04296991974115372,0.05546169355511665,0.10738938301801682,-0.0019044337095692754,-0.03470965102314949,-0.06140334531664848,-0.03254372254014015,0.0033787591382861137,0.01821661740541458,-0.0017117083771154284,-0.03043665923178196,-0.005463503301143646,0.05338289216160774,-0.013037849217653275,-0.0501374714076519,-0.01782122068107128,0.03054538369178772,-0.032371003180742264,-0.03674400970339775,-0.052619319409132004,0.05239081010222435,-0.02073829434812069,-0.08309084922075272,-0.09730201214551926,0.03758026659488678,0.06356319785118103,-0.08611822873353958,0.06295975297689438,-0.029978953301906586,-0.008997408673167229,-0.018009131774306297,0.0097420085221529,0.044236425310373306,0.06876131147146225,0.04771105945110321,-0.011563115753233433,0.038218360394239426,-0.062380023300647736,0.019006790593266487,0.029166003689169884,-0.09463225305080414,0.024876121431589127,-0.041173577308654785,0.03096773661673069,0.021168801933526993,0.0007159492815844715,0.01373563427478075,0.04782828316092491,0.025585614144802094,-0.05275658518075943,0.018067600205540657,0.006052761804312468,0.03009730391204357,-0.0014008256839588284,0.05203421413898468,0.03363462910056114,-0.01384777296334505,0.10369818657636642,0.036208219826221466,0.018366696313023567,-0.018885675817728043,-0.04538654163479805,0.10337294638156891,0.049869101494550705,0.08180604875087738,-0.00016192632028833032,-0.0034240931272506714,-0.10785489529371262,0.009086634032428265,-0.03619534149765968,0.09520800411701202,-0.013835874386131763,0.03757777810096741,-0.09102751314640045,-0.07510002702474594,0.0076196640729904175,0.004448364023119211,-0.009991705417633057,-0.01724211499094963,0.032384902238845825,0.07751422375440598,-0.034247297793626785,0.09687145799398422,0.04121990129351616,0.04819178581237793,-2.243655394806865e-8,-0.039508700370788574,0.017881279811263084,-0.003811945440247655,-0.07995916157960892,0.0317288376390934,0.03258728235960007,0.023241570219397545,-0.11565219610929489,-0.027012867853045464,0.008496982976794243,0.0006521573523059487,-0.022241471335291862,0.015612729825079441,-0.06161727383732796,0.0027235590387135744,-0.014945941045880318,0.07212594151496887,-0.127793088555336,-0.03204784914851189,0.040806692093610764,-0.11960049718618393,0.06251788139343262,-0.08351381123065948,-0.07270433753728867,-0.020539119839668274,0.016585413366556168,0.03913227841258049,-0.04805543273687363,0.03144371509552002,0.06923145800828934,-0.00406104139983654,-0.005558572243899107,-0.05721929669380188,0.02204887568950653,-0.10776371508836746,0.06247168779373169,-0.013018849305808544,0.020697325468063354,0.029169410467147827,-0.05969471484422684,-0.009520801715552807,0.05292143672704697,-0.05056500434875488,0.009207828901708126,0.0162735003978014,0.10180787742137909,0.08082298934459686,-0.021291090175509453,-0.07983744144439697,0.009385555051267147,-0.08311425894498825,-0.004257385618984699,-0.02769998274743557,-0.02806437388062477,0.0753137543797493,0.028225749731063843,0.022896425798535347,-0.010692989453673363,-0.025932203978300095,-0.02559591829776764,0.026317277923226357,-0.06503704190254211,-0.012675542384386063,-0.031432539224624634]},{"text":"This was a new scene to us mountaineers; the majestic oaks, the quantity of game, and the herds of stately deer were all novelties to us.","book":"1984","chapter":92,"embedding":[0.0017135757952928543,-0.014459215104579926,0.011580225080251694,0.017087159678339958,0.0412636399269104,-0.006068830844014883,-0.04004007577896118,-0.07180353254079819,-0.027629980817437172,0.08849970251321793,-0.0565129891037941,0.01019846647977829,-0.010834025219082832,0.006661162246018648,0.008481279946863651,0.03620294854044914,0.04611000418663025,-0.024063115939497948,0.038688693195581436,0.0070295799523591995,-0.009519903920590878,0.03913477435708046,-0.029343893751502037,0.09920908510684967,-0.003131236881017685,-0.014831796288490295,-0.055749647319316864,0.07703746110200882,-0.009740418754518032,-0.049602024257183075,-0.009235291741788387,0.0209986362606287,0.08951027691364288,-0.024563323706388474,-0.05127687379717827,0.05381254851818085,0.03699178621172905,-0.0394778698682785,-0.0365268737077713,0.03172475844621658,0.003344029886648059,0.0332648828625679,0.01113899052143097,0.07868325710296631,-0.10751913487911224,0.0020127571187913418,-0.09138596057891846,-0.005825845059007406,0.06895623356103897,0.08739712089300156,-0.007005221676081419,-0.0429595448076725,-0.06592757254838943,-0.05370424687862396,0.07487834244966507,0.04312822222709656,-0.02505498193204403,-0.046184949576854706,0.0037201186642050743,0.014024985954165459,0.04241940751671791,0.022204352542757988,0.015491338446736336,0.022739719599485397,-0.003021446755155921,0.049441128969192505,-0.1020909771323204,0.018917055800557137,-0.05232134833931923,-0.09177732467651367,0.10200716555118561,0.00236898404546082,-0.03251013532280922,-0.041303299367427826,-0.006396707613021135,0.018806451931595802,-0.032849833369255066,0.003650665981695056,0.06316917389631271,-0.03933652862906456,-0.05863775312900543,-0.08800312131643295,-0.05551258474588394,-0.04505068063735962,-0.011952186934649944,0.021184299141168594,-0.06500507891178131,-0.03297857567667961,0.008896909654140472,-0.06409094482660294,-0.11301665753126144,-0.1453254520893097,-0.02475128322839737,0.050225630402565,-0.030698509886860847,0.02112717367708683,-0.0310615673661232,-0.03269163891673088,0.04633232578635216,0.027772873640060425,-0.004462876822799444,0.01780354231595993,0.04085998609662056,-0.0986412838101387,-0.03698049113154411,0.023625614121556282,-0.09580515325069427,0.07530192285776138,-0.051122382283210754,0.05707406625151634,0.0030501557048410177,0.0780041292309761,0.02837514318525791,0.11896317452192307,0.03168107569217682,-0.019248116761446,-0.03291688486933708,-0.04754534736275673,-0.08655215054750443,0.00822441279888153,0.08109552413225174,0.04500837251543999,-0.01501012034714222,0.015134826302528381,0.03253268823027611,-0.031897712498903275,0.0526607409119606,-4.068244154189869e-33,0.0684780403971672,-0.06873470544815063,0.05462169647216797,0.020515279844403267,0.07260247319936752,-0.0046701510436832905,0.03206456080079079,0.006195144262164831,-0.07273780554533005,-0.01420225203037262,-0.0021643564105033875,0.032471634447574615,0.03212866187095642,0.01072127278894186,0.05624844878911972,-0.08147988468408585,-0.03160955384373665,-0.035916782915592194,0.06550730019807816,0.01144398096948862,-0.05394870787858963,0.0824814885854721,-0.04485594481229782,-0.02609742246568203,-0.09688704460859299,0.036253806203603745,-0.01354254875332117,0.016265997663140297,-0.0006594001897610724,0.024416161701083183,0.006241203751415014,-0.04209187626838684,-0.03528616204857826,-0.028247006237506866,0.08830840140581131,-0.027630945667624474,-0.03858194127678871,-0.0817401334643364,0.008247843012213707,0.04103948548436165,0.06745961308479309,0.01304644625633955,-0.016186298802495003,0.032312002032995224,-0.019741669297218323,0.0633612871170044,0.04764990136027336,0.03640056028962135,-0.10831733047962189,-0.005138210952281952,-0.02527427114546299,0.06983407586812973,0.10975714772939682,-0.01732531562447548,-0.020826661959290504,0.047778405249118805,0.08030109107494354,-0.04454874247312546,-0.06649787724018097,-0.041973013430833817,0.02891054004430771,0.044773440808057785,0.0837390199303627,-0.03928839787840843,-0.04950388893485069,-0.020819412544369698,0.014499587938189507,0.056083258241415024,-0.010778619907796383,0.0363699346780777,0.0417286641895771,0.014387818053364754,-0.06755052506923676,-0.042416639626026154,0.016399532556533813,0.014185942709445953,0.06637142598628998,-0.012514685280621052,-0.03863042593002319,-0.08830907940864563,-0.06411440670490265,-0.03680781275033951,-0.08279405534267426,0.06720273196697235,0.02249191142618656,-0.0042685591615736485,0.07688221335411072,-0.07365738600492477,-0.042121827602386475,0.013953888788819313,0.012475989758968353,0.03529191389679909,-0.03338960185647011,-0.04852320998907089,0.05020222067832947,9.368465897443006e-34,-0.04734862223267555,-0.0322609543800354,0.01788039319217205,0.005805218126624823,-0.011127445846796036,-0.06676595658063889,0.0017910784808918834,0.05190858989953995,-0.008796999230980873,-0.03253296762704849,-0.045675717294216156,0.10102077573537827,-0.028670813888311386,-0.00358241843059659,0.009675350040197372,-0.03648856654763222,0.06983213126659393,0.04174492880702019,0.059940848499536514,-0.057708658277988434,0.07586812973022461,0.021107472479343414,-0.05094543471932411,-0.11975636333227158,0.05261174589395523,0.02860134094953537,-0.08474238961935043,0.04552104324102402,-0.01685345359146595,-0.03603231906890869,0.04317549616098404,0.0037594600580632687,0.029362795874476433,-0.0420462004840374,-0.04218708351254463,0.04516793042421341,0.12273267656564713,-0.07264290004968643,0.01066154520958662,-0.07004230469465256,0.06830538064241409,-0.04167383909225464,-0.040316976606845856,0.11529309302568436,-0.00826237816363573,0.05150663107633591,0.008882185444235802,0.049902573227882385,-0.058504246175289154,0.07777366787195206,-0.07410022616386414,0.04334395006299019,-0.02480183355510235,0.013463417068123817,-0.0477941669523716,-0.02087477594614029,-0.022017531096935272,-0.012606441974639893,0.08427856117486954,-0.027822427451610565,-0.07722334563732147,0.02315264195203781,-0.1558472216129303,-0.0058614942245185375,0.01581292226910591,-0.015491810627281666,-0.038123968988657,-0.022899195551872253,-0.06857389211654663,0.008466532453894615,-0.08896715193986893,-0.0015410128980875015,-0.04375617578625679,0.010123063810169697,-0.00706326263025403,0.06397977471351624,-0.015034954063594341,-0.007649260573089123,0.008005324751138687,0.02796586975455284,-0.03818782418966293,-0.06855113804340363,-0.014002117328345776,0.10259002447128296,0.06779475510120392,0.06698724627494812,-0.028159964829683304,0.024226682260632515,-0.011054126545786858,0.018851062282919884,-0.0515323244035244,0.04286935552954674,0.012326696887612343,-0.03513777628540993,-0.03599733114242554,-2.9775865328929285e-8,-0.048558108508586884,0.06041115149855614,-0.041838206350803375,-0.06078673154115677,0.05910992622375488,0.03413911536335945,-0.022060828283429146,0.0708809345960617,-0.02901705913245678,0.0702471137046814,-0.03813245892524719,0.07568764686584473,0.04585249349474907,0.08972368389368057,0.052346665412187576,0.006314392667263746,0.07215696573257446,-0.06977847218513489,-0.0654364675283432,0.017520302906632423,-0.005022197961807251,0.046817414462566376,-0.0073768640868365765,-0.012781369499862194,-0.07529636472463608,-0.015764325857162476,-0.030749814584851265,-0.07531862705945969,0.02853771671652794,0.08062473684549332,0.024301234632730484,0.07193953543901443,-0.03197290748357773,-0.04402981325984001,0.04419274628162384,0.045968424528837204,-0.0922047570347786,0.061031877994537354,0.07206252217292786,-0.12410435825586319,-0.036418914794921875,0.0040141502395272255,-0.04233746975660324,0.08130738139152527,0.07949663698673248,0.02089226432144642,0.01035959180444479,0.018822187557816505,-0.008310528472065926,-0.07757707685232162,-0.09397939592599869,-0.029456719756126404,-0.006561953108757734,0.037483349442481995,0.016775785014033318,-0.009409529156982899,-0.028720030561089516,-0.08436978608369827,0.06597059965133667,-0.04705626517534256,0.06225436180830002,-0.029412757605314255,-0.02803448773920536,0.016493014991283417]},{"text":"During my youthful days discontent never visited my mind, and if I was ever overcome by _ennui_, the sight of what is beautiful in nature or the study of what is excellent and sublime in the productions of man could always interest my heart and communicate elasticity to my spirits.","book":"1984","chapter":93,"embedding":[0.037612009793519974,0.1111949011683464,0.03923092782497406,0.06953992694616318,0.04187284782528877,0.008254718035459518,0.09866124391555786,-0.0742260292172432,-0.004200986120849848,-0.03674120828509331,-0.020913127809762955,-0.049147829413414,0.04532457888126373,-0.05585512891411781,0.021633567288517952,0.025278782472014427,-0.03846166655421257,0.03142920136451721,0.01834581419825554,0.023934997618198395,-0.019647911190986633,0.09277930110692978,-0.05454881489276886,0.06320271641016006,-0.09891826659440994,0.04034813120961189,-0.0005870626773685217,0.017565973103046417,-0.03563637286424637,-0.0161831546574831,-0.030881201848387718,0.05233973637223244,-0.026318902149796486,0.04204912111163139,0.0458720400929451,0.049813754856586456,-0.06942133605480194,-0.006585068069398403,0.004467934835702181,-0.041116878390312195,-0.07051818817853928,0.0007853219867683947,-0.017323773354291916,-0.04057810828089714,0.0418311171233654,-0.12010212987661362,-0.03448890894651413,-0.030680354684591293,-0.001126389135606587,-0.03997492790222168,-0.06667140126228333,-0.04350262135267258,-0.05786306783556938,-0.03684734180569649,0.03285093232989311,0.039287127554416656,-0.035868242383003235,-0.006424754858016968,-0.029602807015180588,0.020871320739388466,0.07107896357774734,0.016234837472438812,0.019976908341050148,-0.007146642543375492,0.02325146086513996,-0.027939140796661377,-0.0022856572177261114,0.0480601005256176,-0.03876021131873131,0.08143243938684464,0.030319059267640114,-0.02471168339252472,-0.02312602661550045,0.04390645772218704,-0.017863459885120392,-0.01686432957649231,-0.029132412746548653,-0.0860450342297554,-0.03443097323179245,-0.015462123788893223,-0.0123438760638237,0.02676418237388134,-0.025473250076174736,-0.011794228106737137,-0.002638161415234208,-0.026342594996094704,0.08166258037090302,-0.01838354393839836,0.006308698561042547,0.022935612127184868,-0.042844370007514954,-0.11097469925880432,-0.0908876582980156,0.02089315466582775,0.05354735627770424,0.02795448713004589,-0.09669679403305054,-0.06277263909578323,-0.027300409972667694,0.0620093010365963,0.024450700730085373,0.026207230985164642,-0.034111954271793365,0.04945867881178856,-0.02455086074769497,-0.017840927466750145,0.021635543555021286,0.0022900118492543697,0.004416843876242638,0.0005807492998428643,-0.027286609634757042,-0.0836975947022438,0.08433129638433456,0.011584289371967316,-0.024287551641464233,0.030110405758023262,-0.03492237627506256,-0.019548775628209114,0.052190035581588745,0.1355845183134079,0.04674086719751358,0.012028303928673267,0.0435936376452446,0.025839978829026222,-0.08651670068502426,-0.08853038400411606,0.05375951901078224,-6.835800870459e-34,0.031393568962812424,-0.05940377339720726,0.05570170655846596,0.06845835596323013,0.007944316603243351,0.013129942119121552,-0.003734615631401539,-0.040772564709186554,-0.01621762476861477,-0.03658097982406616,-0.03515046462416649,0.12187807261943817,0.02685118094086647,0.0878252387046814,-0.021508347243070602,0.010216433554887772,-0.0699070543050766,0.03745363652706146,0.09492622315883636,-0.02169194445014,-0.07367705553770065,0.008241097442805767,-0.0761469155550003,-0.0276870708912611,-0.05249016359448433,-0.04700620844960213,0.025205053389072418,-0.06641683727502823,0.01889253780245781,0.01437558513134718,0.018584564328193665,0.06754396110773087,0.016163844615221024,-0.0318334586918354,0.03719019517302513,-0.005908921826630831,0.01866897940635681,0.058754611760377884,0.0202803835272789,0.04065726324915886,-0.03763902187347412,0.030296064913272858,0.013308255933225155,-0.07040701806545258,-0.011886466294527054,0.05321213975548744,0.07038330286741257,0.03116205520927906,-0.11677128076553345,-0.039320241659879684,0.0016596813220530748,0.008484032936394215,0.004749179817736149,-0.03786446154117584,0.009781946428120136,-0.008478444069623947,0.0342729315161705,0.07016610354185104,-0.014938357286155224,-0.05937698110938072,-0.008644931949675083,-0.06540148705244064,0.024063143879175186,-0.13012929260730743,-0.023321665823459625,0.014303169213235378,-0.026211565360426903,-0.13022449612617493,-0.03577746823430061,-0.03161314129829407,-0.15464331209659576,-0.02327871322631836,-0.011716961860656738,0.01207841094583273,-0.002059358172118664,-0.07693444192409515,-0.05055919662117958,0.030024902895092964,-0.015080029144883156,0.01036312896758318,-0.03600667044520378,0.020304519683122635,-0.05004652589559555,0.06418883800506592,0.08474577218294144,0.0008412488386966288,0.008603258058428764,-0.10144335776567459,-0.04809359461069107,0.04291054606437683,0.03792424127459526,-0.006418666802346706,0.09385048598051071,-0.09005754441022873,-0.059092286974191666,-2.0058901925370372e-33,0.05438324809074402,-0.042704734951257706,0.07273639738559723,0.08123692870140076,0.010293766856193542,-0.051136717200279236,-0.06334518641233444,0.029522575438022614,0.02229197695851326,0.049681760370731354,0.1311083883047104,-0.006602826062589884,0.10424074530601501,0.026126176118850708,-0.052116330713033676,-0.03094097599387169,-0.009816709905862808,-0.014384717680513859,-0.06021074205636978,-0.01148064061999321,-0.0227332916110754,0.06831969320774078,-0.03245525434613228,-0.07787888497114182,-0.023432746529579163,0.08328692615032196,0.060856256633996964,-0.028176534920930862,-0.07353151589632034,-0.0005211048992350698,0.06772017478942871,-0.007414293475449085,-0.10145364701747894,0.031790439039468765,0.00470155943185091,0.0635741651058197,0.0539303794503212,-0.020215949043631554,-0.11286647617816925,0.0096658980473876,-0.020502451807260513,0.08000124245882034,0.08090917021036148,0.06639424711465836,-0.009243983775377274,-0.0535699799656868,-0.03127814084291458,-0.006058302242308855,-0.03767990693449974,0.033250659704208374,-0.013587769120931625,0.0008056241204030812,0.017180556431412697,-0.05935169383883476,0.029383858665823936,-0.01940171979367733,0.00970129482448101,-0.002554381499066949,-0.012276045978069305,0.018449079245328903,-0.004469181410968304,-0.03887688368558884,-0.06889654695987701,0.04275279864668846,-0.03202566131949425,0.05027983337640762,-0.030095303431153297,0.07866877317428589,-0.0357230007648468,0.0015975882997736335,0.0005801525549031794,-0.03432570397853851,-0.09455645084381104,0.0069038947112858295,0.03254814073443413,0.07858923822641373,0.014343151822686195,0.0006145444931462407,-0.0324910469353199,-0.04415878653526306,-0.037039004266262054,-0.02907439135015011,-0.028421543538570404,0.02419150620698929,-0.006539801601320505,0.006712366361171007,-0.11014389991760254,-0.0020256510470062494,-0.01761019602417946,-0.027709832414984703,-0.04429231584072113,-0.0325460210442543,-0.02151782438158989,-0.06775516271591187,0.0563577339053154,-3.621851618618166e-8,-0.027742013335227966,-0.05967561900615692,-0.023773685097694397,0.012459003366529942,0.016696754842996597,-0.04211023822426796,0.11087258160114288,-0.03093189373612404,-0.04304105415940285,0.038398049771785736,0.03247113525867462,0.03721127659082413,-0.022565606981515884,0.10364117473363876,0.0770856961607933,-0.017816847190260887,0.11104629188776016,0.0027113729156553745,-0.024884939193725586,-0.02444767765700817,0.08365461230278015,0.04627120867371559,-0.023394836112856865,-0.03859572112560272,-0.054319143295288086,-0.00488142017275095,-0.0006900125299580395,-0.07378468662500381,-0.05538554862141609,0.03746901825070381,0.09563717246055603,0.03659864515066147,0.0018840876873582602,0.01833450421690941,-0.04671383276581764,0.03380006179213524,-0.0059094512835145,-0.03656888008117676,-0.02361651323735714,-0.03387103229761124,0.061117302626371384,0.052040331065654755,-0.0023155291564762592,-0.005364515352994204,0.0036312355659902096,-0.08884455263614655,0.12512598931789398,0.06498046219348907,-0.05694524198770523,0.01256201695650816,-0.025585010647773743,0.07272148132324219,0.09283141791820526,0.04502256587147713,0.036198947578668594,-0.005166554823517799,-0.027987133711576462,0.1064688116312027,-0.07705273479223251,0.0384841226041317,0.15543416142463684,-0.005381436087191105,-0.09941740334033966,-0.0592670813202858]},{"text":"From Derby, still journeying northwards, we passed two months in Cumberland and Westmorland.","book":"1984","chapter":93,"embedding":[0.06069277971982956,-0.005553397350013256,0.07579847425222397,0.016588810831308365,-0.05304159224033356,0.013581985607743263,-0.10599932819604874,-0.003685491858050227,-0.09944906085729599,-0.02771684341132641,-0.04917139932513237,-0.08598365634679794,0.05671856924891472,-0.04579439014196396,-0.05024078115820885,-0.007914125919342041,-0.01910371147096157,-0.00730131333693862,0.04948430508375168,0.029689986258745193,-0.03255855292081833,-0.029151154682040215,-0.045470066368579865,0.041944682598114014,0.02361687459051609,0.01373839471489191,-0.005061371251940727,0.02073688618838787,-0.030694490298628807,0.03260262683033943,-0.060453519225120544,-0.04714607447385788,-0.05674504488706589,0.030774954706430435,-0.07203514873981476,0.02948441542685032,0.022821389138698578,-0.061673831194639206,0.00583058362826705,0.025048138573765755,-0.03350033238530159,0.03970673307776451,-0.026203976944088936,0.0870952308177948,0.04016105830669403,0.047708310186862946,0.048478882759809494,0.004600983578711748,-0.023670582100749016,0.023564347997307777,0.022149531170725822,0.03555789962410927,-0.030873851850628853,-0.019179875031113625,-0.020747719332575798,0.06442050635814667,-0.06470047682523727,0.0600835382938385,-0.015639888122677803,0.044222719967365265,-0.03662010654807091,-0.05690936744213104,-0.06419140845537186,-0.01394532062113285,-0.08012042194604874,-0.02025040052831173,-0.08715372532606125,0.07513285428285599,0.12144475430250168,-0.08671769499778748,0.0223609060049057,-0.031889066100120544,-0.08766773343086243,-0.057890504598617554,-0.0015287994174286723,0.057425159960985184,0.011842138133943081,-0.01139770820736885,-0.026359234005212784,-0.11167353391647339,-0.0794544368982315,0.03147547319531441,0.03976166993379593,-0.02835187502205372,0.08743305504322052,0.0019688804168254137,0.025012703612446785,0.021633874624967575,-0.0328596793115139,-0.0028344187885522842,0.16757765412330627,-0.03626341000199318,-0.06538672000169754,0.04649597033858299,-0.009784456342458725,-0.044167228043079376,0.04298289492726326,0.024743907153606415,0.08385226130485535,0.03726734593510628,-0.03226513788104057,0.0009507146314717829,-0.058325495570898056,-0.0029041410889476538,0.023674679920077324,0.019751736894249916,-0.08870851248502731,-0.04832559451460838,-0.009371940977871418,-0.030526326969265938,0.015625787898898125,-0.028263520449399948,0.01646829955279827,-0.0004645099106710404,0.06915971636772156,0.06783270835876465,0.0037832714151591063,0.02391977235674858,0.06520590931177139,0.02533578686416149,-0.08545652031898499,0.11834672093391418,-0.07075285911560059,0.014678791165351868,-0.016027921810746193,0.004742458462715149,0.1335335373878479,-1.3513805399644532e-33,-0.06635028123855591,-0.08208376169204712,0.030771492049098015,0.1559717059135437,-0.019247738644480705,0.05172102898359299,-0.023676304146647453,-0.02525610290467739,0.015927547588944435,-0.044708169996738434,0.020667599514126778,-0.00997152365744114,0.03265802189707756,-0.14979583024978638,-0.01203432772308588,-0.11570880562067032,-0.011145179159939289,-0.0009216220350936055,-0.02996973693370819,-0.010955504141747952,-0.03202710300683975,-0.04821205139160156,0.011151564307510853,-0.052681099623441696,-0.0762292817234993,-0.075042225420475,-0.02025517076253891,-0.032826777547597885,0.087040014564991,0.05506092682480812,-0.02017025090754032,-0.033507090061903,-0.0024874128866940737,0.0030851259361952543,-0.05549464374780655,0.06920680403709412,0.023159483447670937,-0.05478261038661003,0.052714958786964417,0.02055775374174118,-0.04390541464090347,-0.01876099221408367,0.007385886274278164,0.005566434469074011,-0.03887975215911865,-0.08074399083852768,0.02163572795689106,0.04649549722671509,0.030028749257326126,-0.027883781120181084,-0.0011830298462882638,0.0011734259314835072,0.057548269629478455,-0.02845868095755577,0.011556906625628471,0.07707977294921875,0.022037899121642113,0.02683199755847454,0.02075226977467537,0.03405210003256798,0.10344850271940231,0.032016973942518234,0.027330396696925163,-0.055392730981111526,0.0418529137969017,-0.04201292246580124,-0.06170279160141945,0.047676872462034225,-0.01278129406273365,0.040955521166324615,0.028435716405510902,0.021199751645326614,0.010983671993017197,-0.01743163913488388,0.09535476565361023,0.039016660302877426,-0.021953284740447998,-0.005363155156373978,0.01569416932761669,0.019230449572205544,-0.11456666141748428,0.059479471296072006,-0.0893637090921402,0.016770638525485992,0.14275696873664856,-0.025390662252902985,0.07379445433616638,-0.05142891779541969,-0.06046943739056587,0.00693529425188899,0.00902420561760664,0.023233765736222267,-0.04528160020709038,0.014275521971285343,0.021926481276750565,-1.2762119006621912e-33,0.016856569796800613,0.02806994318962097,0.03942125663161278,0.025802554562687874,0.001853413414210081,-0.021367793902754784,0.005382937379181385,0.060407232493162155,-0.019968226552009583,0.07359921932220459,-0.026223501190543175,-0.006582492031157017,0.07848484814167023,0.02388692833483219,-0.006303992122411728,-0.04517153277993202,0.09592621773481369,0.05936483293771744,-0.03874506428837776,-0.0182667039334774,-0.05623864382505417,-0.07298165559768677,-0.1185915544629097,-0.07367581874132156,-0.008163615129888058,0.022839544340968132,-0.03561805188655853,0.0008131696376949549,-0.07247154414653778,-0.03963548317551613,-0.05313064903020859,-0.026724325492978096,0.00289345346391201,-0.044797856360673904,0.030013395473361015,0.06961186230182648,0.07248997688293457,-0.028747837990522385,0.04095977172255516,0.019340580329298973,-0.005992657970637083,-0.018782716244459152,0.056347765028476715,0.12069805711507797,0.039869457483291626,0.00381236569955945,-0.020024631172418594,0.0453285276889801,-0.016211405396461487,0.13319899141788483,0.03966681286692619,0.0490422360599041,-0.0529467836022377,-0.020555121824145317,0.004563932307064533,-0.025140922516584396,-0.04548812657594681,-0.03975009173154831,-0.014201562851667404,0.0017799839843064547,-0.007818172685801983,0.03410319983959198,-0.06265358626842499,0.013954972848296165,0.06008325517177582,0.04096941649913788,-0.016047270968556404,-0.0025215712375938892,-0.02245044894516468,-0.04683516174554825,0.03120521642267704,0.026433121412992477,-0.05130230635404587,-0.05348948761820793,0.00007275571260834113,-0.006889260374009609,0.043980471789836884,0.04763242229819298,-0.04868374764919281,-0.015229317359626293,-0.021679885685443878,-0.0005108295008540154,0.07335826754570007,0.004193901550024748,-0.03130505234003067,-0.06617644429206848,0.039539750665426254,0.0006005922914482653,-0.04277021065354347,0.01364913396537304,0.05437315255403519,-0.030542733147740364,-0.011264628730714321,-0.04173066467046738,0.002311341930180788,-2.4142632781831708e-8,0.0022515193559229374,0.07906171679496765,0.00008795632311375812,0.0636928603053093,0.06805935502052307,0.04644503444433212,-0.002282077679410577,0.09790211170911789,-0.059246521443128586,0.012071582488715649,0.03217754140496254,0.007567837368696928,-0.013808651827275753,-0.04223434627056122,0.05313514918088913,-0.0076238736510276794,-0.023721512407064438,-0.06127854809165001,-0.04021989181637764,-0.09821654111146927,-0.05902664735913277,0.04364912956953049,-0.009044486097991467,0.030869968235492706,-0.03184560686349869,0.018989181146025658,0.0055139269679784775,0.029358141124248505,0.061960723251104355,-0.1611710488796234,0.09820600599050522,0.02666911855340004,0.024671334773302078,-0.009568619541823864,-0.12421505153179169,-0.02905595861375332,-0.06535863131284714,0.11771554499864578,0.005813394673168659,0.00199714582413435,-0.08163540065288544,-0.04056515544652939,0.022514430806040764,0.027819398790597916,0.020998947322368622,0.021062424406409264,-0.0414348803460598,0.04191010445356369,-0.03216409683227539,-0.09538935124874115,-0.01958293281495571,0.003688725410029292,0.1208454966545105,0.05413256958127022,0.028411131352186203,0.03527534008026123,-0.04532954841852188,-0.05686220899224281,-0.06924837082624435,0.0045981151051819324,-0.09890002012252808,-0.025401389226317406,-0.020276254042983055,0.020599564537405968]},{"text":"I waited for my letters with feverish impatience; if they were delayed I was miserable and overcome by a thousand fears; and when they arrived and I saw the superscription of Elizabeth or my father, I hardly dared to read and ascertain my fate.","book":"1984","chapter":94,"embedding":[0.03508490324020386,0.03508312627673149,0.07557005435228348,0.06460363417863846,0.052687689661979675,0.07392037659883499,0.07389599829912186,-0.019415369257330894,0.03229248523712158,-0.030787091702222824,0.031035378575325012,0.01162448339164257,0.04895876720547676,-0.047670282423496246,-0.04354449361562729,-0.033657580614089966,-0.017236441373825073,-0.006460939068347216,-0.08158853650093079,0.06267423927783966,-0.033685144037008286,0.06694410741329193,0.01854318380355835,0.007702849339693785,-0.0894700214266777,0.033062249422073364,-0.03904340788722038,-0.04975609853863716,0.01803344301879406,-0.015321548096835613,-0.08119209855794907,0.002483188873156905,0.017082275822758675,0.007096412125974894,0.02700251154601574,-0.007501731626689434,0.000702138408087194,-0.03327437490224838,0.07000769674777985,-0.06233152374625206,0.033000603318214417,-0.009826505556702614,0.031163452193140984,0.04551012068986893,0.039435118436813354,-0.09180459380149841,-0.0032091462053358555,0.05599874258041382,-0.032364148646593094,-0.054232776165008545,-0.017617875710129738,-0.03186660259962082,-0.04482909291982651,-0.05407658591866493,-0.03384627401828766,0.012515434063971043,-0.009608801454305649,0.008237269707024097,-0.013984058983623981,0.0028901181649416685,-0.07482292503118515,-0.030503911897540092,-0.01877838373184204,0.004128140397369862,0.015469545498490334,0.0689999982714653,0.038424037396907806,-0.07548513263463974,0.032011404633522034,0.11026985943317413,-0.04067041724920273,0.002944388659670949,0.01969420537352562,0.06271477788686752,-0.09768958389759064,0.0049570961855351925,0.038542263209819794,-0.11144156754016876,0.011457924731075764,-0.011191591620445251,-0.0757727101445198,-0.06885375082492828,0.028064075857400894,0.05712217837572098,-0.029561294242739677,-0.08979717642068863,0.07276709377765656,-0.03463128209114075,0.022117143496870995,-0.0032303892076015472,0.04555691033601761,-0.12686662375926971,0.021804487332701683,0.07492541521787643,-0.06261075288057327,0.006684938911348581,-0.025239642709493637,0.03925796225667,-0.023743504658341408,0.027914734557271004,0.014746101573109627,0.008102268911898136,-0.044358693063259125,0.10290655493736267,0.001413400867022574,-0.06396570801734924,-0.07309776544570923,-0.13937337696552277,-0.08914154767990112,-0.032900940626859665,-0.06731876730918884,-0.016640078276395798,0.04632733389735222,-0.027000069618225098,-0.018557768315076828,0.020215488970279694,-0.045868951827287674,0.003137576626613736,0.04242938011884689,0.060799505561590195,0.06677213311195374,0.13824035227298737,-0.009354486130177975,0.014198752120137215,-0.0724443569779396,-0.009158562868833542,-0.002360543003305793,-1.5262964870897097e-33,0.014203554950654507,-0.038629040122032166,-0.07883185148239136,0.0989103689789772,0.0038814193103462458,-0.002996385795995593,0.007265883963555098,0.04651917517185211,0.020105522125959396,-0.039298541843891144,0.052132297307252884,0.016747189685702324,0.0306389257311821,-0.07860352098941803,-0.135061115026474,0.044292714446783066,-0.020723510533571243,-0.012828345410525799,0.09144566208124161,0.03935330733656883,0.020286398008465767,-0.009857303462922573,0.018217267468571663,0.030174484476447105,-0.03436436504125595,0.001832726877182722,-0.02392006479203701,-0.017636651173233986,0.06566363573074341,0.06916823983192444,0.02236771397292614,0.05899608135223389,0.025829488411545753,-0.07954353839159012,0.007826977409422398,-0.014525149948894978,-0.004617274273186922,-0.09195209294557571,0.010604956187307835,0.011603663675487041,-0.07886543869972229,-0.015889298170804977,-0.002508648904040456,-0.04367414116859436,-0.000014007317076902837,0.026979714632034302,0.01821598969399929,0.03543062135577202,-0.10935769230127335,0.008652010932564735,-0.05599810183048248,0.011410372331738472,0.01771015301346779,-0.02655891515314579,0.05480203032493591,-0.011345929466187954,0.050200432538986206,0.01855766959488392,-0.04898596554994583,0.017052985727787018,-0.008605222217738628,-0.043297361582517624,0.04659778252243996,0.022087160497903824,-0.0026276332791894674,-0.04749445244669914,-0.07668998837471008,-0.09391405433416367,0.009683674201369286,-0.05124714598059654,-0.058118030428886414,-0.03714507818222046,-0.01969495415687561,0.03302887827157974,0.013044669292867184,-0.009648888371884823,0.02111726440489292,-0.037541601806879044,-0.061446547508239746,-0.09335502237081528,0.028260303661227226,-0.016330912709236145,-0.03238317742943764,0.07650262862443924,0.09367343038320541,-0.07976648211479187,0.026414616033434868,-0.10727163404226303,-0.03351888433098793,-0.012020823545753956,0.050280626863241196,-0.003407525597140193,0.09008297324180603,-0.08155165612697601,-0.0595889538526535,-4.912136622556352e-35,0.015423311851918697,-0.04648372903466225,-0.025466682389378548,0.08676610887050629,-0.007870383560657501,-0.042504701763391495,-0.03809162601828575,0.00012559615424834192,0.03975211828947067,0.0056245638988912106,0.00868427474051714,0.03342815861105919,0.03706271946430206,-0.026783589273691177,-0.03495823219418526,-0.026643794029951096,0.10188840329647064,0.02245655655860901,0.07283741235733032,0.005451463628560305,-0.05416962131857872,-0.017926925793290138,-0.11123296618461609,-0.0016553110908716917,0.0320483036339283,0.041503649204969406,0.043097786605358124,-0.10032076388597488,-0.08507490903139114,-0.018384749069809914,0.015156705863773823,0.09336281567811966,-0.05363320931792259,0.014527210034430027,-0.0009394512162543833,0.0916629433631897,0.03625354543328285,-0.018995175138115883,-0.003475771052762866,-0.009452419355511665,-0.04482060298323631,-0.0012359028914943337,0.10686015337705612,-0.00011418128997320309,0.021382663398981094,-0.0026864337269216776,0.02966291643679142,-0.04238681122660637,0.07524039596319199,0.09810523688793182,-0.005321699194610119,0.012175669893622398,0.003774866694584489,0.006617675069719553,0.018365221098065376,-0.020813293755054474,-0.0013798297150060534,-0.12600520253181458,0.06583526730537415,0.03481510281562805,-0.013178987428545952,-0.027222851291298866,-0.04223581776022911,-0.03679712116718292,-0.0049731251783668995,-0.005480458028614521,-0.04653581604361534,-0.0002388193825026974,-0.0027893006335943937,-0.025141127407550812,0.05787285044789314,-0.08146599680185318,-0.056266289204359055,0.06042427942156792,0.013441000133752823,-0.007054408546537161,-0.02617798186838627,-0.01350582018494606,-0.08659977465867996,0.0010882220230996609,0.009182492271065712,0.06527642905712128,-0.012911425903439522,0.001639845664612949,-0.0573776513338089,0.05639465153217316,0.006435425020754337,-0.001289830426685512,0.012395423837006092,-0.012777629308402538,0.038098566234111786,0.00028008248773403466,0.08987472951412201,-0.04009773209691048,0.017102064564824104,-3.49059519066941e-8,0.01940205879509449,-0.012038828805088997,0.029017332941293716,-0.02122163027524948,0.07400257885456085,0.002074204618111253,-0.0082777738571167,0.018093379214406013,-0.07313951104879379,-0.011041710153222084,0.0028378593269735575,0.05131049081683159,0.04043100029230118,0.022310206666588783,0.13789518177509308,0.04347248002886772,0.07620716094970703,-0.12033239006996155,-0.03449491783976555,0.015330352820456028,0.054083675146102905,0.1295742243528366,-0.015938129276037216,-0.14125317335128784,-0.04757796600461006,0.06213003024458885,0.06236344203352928,-0.05855507776141167,-0.025688892230391502,0.01353065948933363,0.03868783637881279,0.038407377898693085,-0.019247163087129593,-0.03830645605921745,-0.0922727957367897,0.015002664178609848,0.0652696043252945,-0.009251106530427933,0.057837653905153275,0.03722603991627693,0.09628709405660629,0.05337865650653839,0.01278902031481266,0.07793248444795609,0.049626853317022324,-0.02017568238079548,-0.005728134885430336,-0.00752229243516922,0.006112019531428814,-0.034515004605054855,0.02562038227915764,0.05341724678874016,0.056584812700748444,0.08731558918952942,0.03815718740224838,0.01866169087588787,0.00392475351691246,0.024827705696225166,-0.07066750526428223,-0.017465390264987946,0.08646585792303085,0.028506293892860413,-0.13885168731212616,-0.12365730106830597]},{"text":"Andrew’s, and along the banks of the Tay, to Perth, where our friend expected us.","book":"1984","chapter":95,"embedding":[0.07218147069215775,-0.007718728389590979,0.015392391942441463,0.008702890016138554,0.015087329782545567,-0.004897548351436853,0.06652336567640305,-0.09564824402332306,-0.05554831027984619,0.04603936895728111,0.04370652884244919,0.011331881396472454,0.048429377377033234,-0.000672519498039037,0.03999469801783562,0.030629025772213936,-0.02300160378217697,-0.13628306984901428,-0.04798387736082077,-0.03452131152153015,0.0023237690329551697,0.02317209355533123,-0.005721266381442547,0.01636415161192417,0.03149952366948128,0.08513236790895462,0.0101248137652874,0.016966940835118294,-0.003137578023597598,-0.007545233238488436,-0.04030999541282654,-0.10047759860754013,-0.016573823988437653,-0.002955598523840308,0.07405277341604233,0.0015541615430265665,0.06765516847372055,0.0030993816908448935,0.022603074088692665,-0.08839940279722214,-0.036189720034599304,-0.015138110145926476,0.10735508054494858,0.0551946684718132,-0.048243872821331024,-0.030189644545316696,-0.003375878557562828,-0.0226951502263546,0.07794971764087677,0.045816127210855484,0.08389334380626678,-0.05375787243247032,-0.010964150540530682,-0.05792777240276337,0.044783756136894226,0.07771202176809311,-0.08342264592647552,-0.06310500204563141,-0.016030356287956238,-0.0017953509232029319,-0.02287702076137066,0.011428453959524632,-0.06905088573694229,0.04573379456996918,-0.015117880888283253,-0.01142120361328125,-0.09173140674829483,0.03784717991948128,0.038935586810112,-0.09261435270309448,-0.0023370005656033754,-0.08625771105289459,-0.0031326955650001764,-0.06588724255561829,0.002422080608084798,-0.01433475874364376,0.10679449141025543,0.05130881443619728,-0.05737365782260895,-0.023226305842399597,-0.030850118026137352,-0.018168997019529343,0.04458707198500633,-0.04541553556919098,-0.05352383852005005,-0.031802624464035034,0.008569044061005116,-0.12047284841537476,0.06319423764944077,0.0491415373980999,-0.019129252061247826,-0.10457252711057663,-0.02352960593998432,-0.011586158536374569,0.04387335106730461,-0.07359735667705536,-0.03956066817045212,0.03940426558256149,-0.01367657259106636,0.09929713606834412,0.03453594818711281,0.11874367296695709,0.008101468905806541,0.07098188996315002,-0.012590165250003338,0.020100122317671776,-0.11666767299175262,-0.0035090367309749126,0.03308222070336342,-0.05048537626862526,0.054608508944511414,0.014645107090473175,0.03054059110581875,0.08262323588132858,0.029201531782746315,-0.062245454639196396,-0.022014033049345016,0.01850663125514984,0.0016665075672790408,-0.01040605641901493,-0.0176449716091156,0.11052669584751129,-0.03374774754047394,-0.006561613641679287,-0.046721458435058594,0.0012683937093243003,0.03886306285858154,-6.00588165496931e-33,0.028836430981755257,0.006490862928330898,0.04163477569818497,0.022933898493647575,0.10376900434494019,-0.054647404700517654,-0.1007828339934349,-0.03966169431805611,-0.01783350482583046,0.008249548263847828,0.007332959678024054,-0.023304546251893044,0.035379283130168915,-0.06603500247001648,-0.014331985265016556,0.02562861144542694,0.034408651292324066,0.006399893667548895,-0.009106326848268509,0.004793367814272642,-0.06224903464317322,0.0324503593146801,0.04916755482554436,-0.04136132076382637,-0.04505243897438049,-0.019097335636615753,0.01904059201478958,0.007808702066540718,0.10604232549667358,0.024245114997029305,-0.011297319084405899,0.0636734664440155,0.011374195106327534,0.027751337736845016,-0.039997655898332596,0.04720550775527954,0.054138824343681335,-0.08870879560709,0.013614187948405743,0.043333686888217926,0.08556456863880157,0.04052143171429634,-0.009606463834643364,0.08580052852630615,-0.022633375599980354,-0.02480560913681984,0.013877591118216515,0.043579552322626114,0.05571001395583153,0.019120831042528152,-0.08720351755619049,-0.025681860744953156,-0.048091597855091095,0.031059037894010544,-0.04446772485971451,0.012608450837433338,0.0142316659912467,0.04709021374583244,0.06689376384019852,0.03316263109445572,0.029428765177726746,-0.0027796856593340635,0.023396072909235954,-0.06167977303266525,-0.03762262314558029,-0.0479305125772953,0.025471698492765427,-0.14238154888153076,0.0069108144380152225,-0.004294896498322487,-0.05429527908563614,0.07095684856176376,0.009190178476274014,0.01735779084265232,-0.022114112973213196,0.012495193630456924,-0.044058024883270264,0.04875146225094795,0.041264891624450684,-0.024281201884150505,-0.07656171172857285,0.04863638058304787,-0.08535020053386688,0.08977308124303818,-0.005100735463202,-0.027376091107726097,-0.01969606801867485,-0.16169187426567078,-0.0337873212993145,-0.040912993252277374,-0.1198335513472557,0.06514405459165573,0.03467993438243866,-0.052803512662649155,0.006497240625321865,2.433483609488337e-33,0.03764300420880318,-0.0648062452673912,0.031188568100333214,0.009541363455355167,-0.004097066819667816,-0.05806023254990578,0.0667429193854332,-0.016115186735987663,0.05729006975889206,0.056101374328136444,-0.06857248395681381,0.04755983129143715,0.09708549827337265,-0.008833645842969418,0.010366829112172127,0.007679626811295748,0.16438297927379608,-0.0007824483909644186,0.025110673159360886,-0.034690696746110916,0.04346694424748421,0.040269579738378525,0.028068773448467255,-0.012815678492188454,0.045359376817941666,0.022606926038861275,-0.04660054296255112,-0.08989871293306351,-0.1449798047542572,-0.05681521072983742,-0.08518178761005402,0.019549747928977013,0.014980331994593143,-0.025540055707097054,-0.10444026440382004,0.11525425314903259,0.05766730755567551,0.019737208262085915,-0.050767384469509125,0.0701323077082634,0.003601273288950324,0.009427367709577084,0.00966902356594801,0.1180422455072403,-0.022814197465777397,0.052640847861766815,-0.08826755732297897,0.04327557608485222,0.0015424019657075405,0.0021192224230617285,0.02030770666897297,0.04469464719295502,-0.07253656536340714,0.0058341980911791325,-0.014572473242878914,0.019699497148394585,0.05352964624762535,-0.014163930900394917,-0.02659473940730095,0.0018030664650723338,-0.055968329310417175,-0.005967618431895971,-0.022522887215018272,0.003997402731329203,0.018891917541623116,0.002949387300759554,-0.014688076451420784,-0.03464377671480179,0.010363651439547539,-0.023939743638038635,-0.08526942133903503,-0.018180424347519875,-0.015975916758179665,0.011707437224686146,0.0627731904387474,0.018850388005375862,0.01503320038318634,-0.05892261117696762,0.02494596317410469,-0.008436208590865135,-0.006821862887591124,0.0638812929391861,-0.011309830471873283,0.03840749338269234,0.06014604493975639,-0.0034367076586931944,0.09808710962533951,-0.02569977007806301,0.052194539457559586,0.017147280275821686,0.05230538547039032,-0.0534968338906765,-0.019347088411450386,-0.050519395619630814,-0.02568383701145649,-2.0706059089548035e-8,-0.04203886538743973,0.015612783841788769,-0.09160961955785751,0.027869995683431625,-0.01764458231627941,0.025977451354265213,0.06903255730867386,0.06588590145111084,0.003899330273270607,0.03460345417261124,-0.06984837353229523,0.07335111498832703,-0.060910142958164215,-0.010135904885828495,0.023564297705888748,-0.0002682552731130272,-0.008256950415670872,0.002640143735334277,-0.08002550899982452,-0.01450620498508215,-0.06028730794787407,0.08328958600759506,-0.00154499348718673,-0.022801900282502174,-0.02425464428961277,-0.02948346920311451,0.03442684933543205,0.04461009427905083,-0.0021573309786617756,-0.0016173850744962692,-0.06060270592570305,0.025134604424238205,-0.044821638613939285,-0.07436172664165497,-0.03857303410768509,-0.04325608164072037,0.020347213372588158,0.03898277506232262,0.015098699368536472,-0.010657577775418758,-0.06650274991989136,-0.050805285573005676,0.0023792930878698826,0.006564804818481207,0.02337898500263691,0.05638442188501358,-0.004275037441402674,0.09967125207185745,-0.04702715203166008,-0.11961857974529266,-0.00968063622713089,-0.0011545114684849977,0.015670843422412872,0.04399342089891434,0.031281083822250366,-0.06961216032505035,-0.08408492803573608,-0.13429249823093414,0.003170123789459467,0.01604335941374302,0.05684160813689232,0.02647332474589348,-0.035157956182956696,-0.06425750255584717]},{"text":"The thatch had fallen in, the walls were unplastered, and the door was off its hinges.","book":"1984","chapter":95,"embedding":[0.017345143482089043,0.12216370552778244,0.004889760632067919,0.1111750602722168,0.01083957590162754,-0.001395570463500917,-0.04086680710315704,0.033766910433769226,-0.026488393545150757,0.00026768218958750367,0.029055237770080566,0.01073637418448925,0.002990763634443283,-0.04319903999567032,-0.022009246051311493,-0.04559702053666115,-0.04831954836845398,-0.041495755314826965,-0.05382782220840454,0.00006652373122051358,-0.0018499696161597967,0.050500329583883286,-0.014040358364582062,-0.05296686664223671,-0.03125162795186043,0.0038251967635005713,-0.09330139309167862,-0.03606638312339783,0.06722918897867203,-0.04458215832710266,-0.06997204571962357,-0.00030001436243765056,-0.07237681746482849,-0.04331878200173378,0.06540348380804062,0.03837845101952553,0.0666613057255745,-0.0003312351764179766,0.03445899486541748,-0.05844041332602501,-0.006631822325289249,0.09782242774963379,-0.04546764865517616,0.01659139059484005,-0.03857637569308281,0.037558868527412415,-0.020641924813389778,-0.022261805832386017,0.04092569649219513,0.006571754813194275,-0.011011476628482342,0.08069340884685516,-0.07789124548435211,0.04703706130385399,-0.02018345147371292,-0.00981790293008089,0.0668426975607872,-0.03986991569399834,-0.03349212929606438,-0.0002010944444919005,0.02142171375453472,0.048111479729413986,-0.03892183303833008,0.08012982457876205,0.05994249880313873,-0.022992664948105812,0.01903398707509041,-0.07172327488660812,0.06396084278821945,0.04044956713914871,0.07829876989126205,-0.05695711821317673,0.015431486070156097,-0.00967671163380146,0.022295260801911354,-0.07752147316932678,-0.034487005323171616,-0.05186881870031357,0.04216697812080383,0.03653647378087044,0.005611052270978689,-0.0685432180762291,-0.1258770078420639,0.04235038533806801,-0.028318334370851517,-0.03827695548534393,0.0708438828587532,-0.07514312863349915,0.0013969114515930414,0.05200205370783806,0.0530780628323555,-0.05966624990105629,-0.07708535343408585,0.12274341285228729,0.010389602743089199,-0.06296809017658234,-0.011286250315606594,0.011705432087182999,0.012130798771977425,0.03613004460930824,-0.03886920586228371,-0.005059241317212582,-0.04459559917449951,-0.034586481750011444,-0.003334513632580638,0.01260565035045147,-0.029262788593769073,-0.0709393322467804,0.028335819020867348,0.03073076158761978,-0.0202650036662817,-0.035729918628931046,0.09040705114603043,0.09907662868499756,0.0026280635502189398,-0.04504694789648056,-0.01886269822716713,-0.037934448570013046,0.023929161950945854,0.027534911409020424,0.0382186658680439,-0.010387010872364044,-0.018685732036828995,0.015139269642531872,-0.17052942514419556,-0.07217375189065933,0.00912506878376007,-4.260286135651645e-33,0.02887544594705105,-0.0398918017745018,-0.043656330555677414,-0.07035394757986069,0.05613807216286659,-0.022896885871887207,-0.04299154505133629,0.04992229491472244,-0.024296950548887253,0.03342479094862938,-0.04676273092627525,-0.1107599288225174,-0.07747375965118408,-0.056897327303886414,-0.02277524769306183,0.0074642314575612545,0.012919431552290916,-0.030719634145498276,0.011139046400785446,0.023038405925035477,0.03675410896539688,0.11305650323629379,0.0026142450515180826,0.034238122403621674,0.0360279306769371,0.02121075987815857,0.007501403801143169,-0.05855442211031914,-0.058240558952093124,0.037237461656332016,0.023480411618947983,-0.016762781888246536,-0.015774868428707123,0.0912729799747467,-0.06126406043767929,0.020497338846325874,0.07111169397830963,-0.024212343618273735,-0.047878194600343704,-0.054102130234241486,-0.08463063091039658,-0.03978981077671051,0.010546518489718437,0.010165073908865452,-0.0025696181692183018,-0.031286876648664474,-0.052991561591625214,0.03626575320959091,-0.05830929055809975,-0.009803744032979012,0.021245235577225685,0.02417135424911976,0.059794846922159195,0.06764212250709534,-0.05053095892071724,0.011350540444254875,0.046073902398347855,-0.013526180759072304,0.005044104531407356,0.05335130915045738,0.030443649739027023,0.061054036021232605,0.11918175965547562,0.026801234111189842,0.027696112170815468,-0.12506641447544098,-0.07928761839866638,-0.055391617119312286,-0.0791551023721695,-0.010610939934849739,-0.15202918648719788,-0.02703476883471012,0.01007871888577938,0.05343523249030113,-0.06630707532167435,0.015048512257635593,-0.06368423998355865,0.02724222093820572,0.02134309522807598,-0.03366106003522873,0.11971010267734528,-0.009678998030722141,-0.028920644894242287,0.05170946568250656,-0.017251232638955116,0.043335504829883575,0.05325746163725853,-0.11496659368276596,-0.01939448155462742,0.03081316128373146,0.022324301302433014,0.03391847014427185,0.07821773737668991,-0.05366970971226692,0.049439433962106705,-2.9816434297622107e-35,-0.01974821649491787,0.006120184436440468,-0.0808340311050415,0.025420991703867912,0.005312480963766575,-0.033445194363594055,-0.10640498250722885,0.017980298027396202,-0.0488453172147274,-0.018597081303596497,0.018674129620194435,-0.010905904695391655,0.03168352320790291,0.02151978388428688,0.038607653230428696,0.004997522570192814,0.14979194104671478,-0.00849462766200304,0.006231550592929125,0.08513808995485306,0.026641812175512314,-0.04130946099758148,-0.1292673647403717,0.049467794597148895,0.015528293326497078,0.0394057035446167,0.07988179475069046,-0.022214042022824287,-0.005199459381401539,-0.02689000405371189,0.012123451568186283,-0.06420975923538208,0.01989537663757801,0.060210417956113815,0.010277819819748402,0.07243233174085617,0.041920557618141174,-0.03349378705024719,-0.11194097250699997,-0.12025942653417587,0.0302100982517004,0.09345599263906479,-0.027256354689598083,0.048934344202280045,0.0545516200363636,0.05315670743584633,-0.0022259687539190054,0.041374098509550095,0.025500334799289703,0.013861154206097126,0.012944456189870834,-0.026567762717604637,0.04337446391582489,-0.05988381803035736,-0.017889995127916336,0.03407088294625282,0.04924703761935234,-0.04376832768321037,0.08464986830949783,0.03295035660266876,0.0038635707460343838,-0.015881657600402832,0.000047617810196243227,0.008462934754788876,-0.0446150042116642,-0.07206585258245468,-0.04383302479982376,0.009357700124382973,-0.040805134922266006,-0.06443504989147186,0.08442404121160507,0.08357962220907211,0.016122762113809586,-0.026053227484226227,0.022275498136878014,0.1000717505812645,-0.006650486961007118,-0.04698296636343002,-0.04182581230998039,-0.04115380719304085,0.0078535545617342,-0.04476519674062729,0.015504172071814537,-0.04024389758706093,0.04887742921710014,-0.05765539035201073,0.004204049706459045,0.04218751937150955,0.03560559079051018,0.008701948449015617,-0.0035792950075119734,0.03894982486963272,0.07541991770267487,-0.05614865943789482,0.04913895204663277,-2.5834062000740232e-8,0.024137670174241066,-0.016873469576239586,0.00030381069518625736,-0.04438939318060875,0.01819147914648056,-0.05060877650976181,0.1461751013994217,0.05298254266381264,0.0022904498036950827,-0.026056941598653793,-0.10732026398181915,0.06481662392616272,-0.036159347742795944,0.0824962854385376,-0.07011837512254715,0.07173755764961243,-0.06899891793727875,-0.038826193660497665,-0.012025328353047371,-0.0033128305803984404,0.0034130606800317764,-0.03640107810497284,0.011406476609408855,-0.028615545481443405,-0.031177986413240433,0.0005944274598732591,-0.07873384654521942,-0.041873782873153687,-0.04338392987847328,0.04754171147942543,0.016122862696647644,-0.021982593461871147,-0.0035837488248944283,-0.022439975291490555,-0.07012932002544403,0.13296476006507874,0.042116329073905945,0.004411736503243446,0.06230418384075165,-0.11775434017181396,-0.032940495759248734,0.014219389297068119,0.0049839261919260025,0.024124518036842346,0.040801648050546646,-0.00915663130581379,0.011689890176057816,0.03948091343045235,-0.03560913726687431,0.017741885036230087,0.030049243941903114,0.06613735109567642,-0.03869849443435669,-0.06604741513729095,0.047992266714572906,-0.05144059658050537,-0.02589327096939087,-0.009055771864950657,-0.028183283284306526,0.018836814910173416,0.01668190397322178,-0.002770213643088937,-0.017324600368738174,0.053021058440208435]},{"text":"During my first experiment, a kind of enthusiastic frenzy had blinded me to the horror of my employment; my mind was intently fixed on the consummation of my labour, and my eyes were shut to the horror of my proceedings.","book":"1984","chapter":96,"embedding":[0.0011244377819821239,0.05658039078116417,-0.0065647028386592865,0.06175319477915764,0.07993682473897934,-0.030335361137986183,0.06563210487365723,-0.01241456251591444,-0.005330580286681652,0.0011442865943536162,0.01872960664331913,-0.0016639786772429943,0.020535346120595932,-0.04903818294405937,-0.06358353048563004,-0.003888889914378524,0.03477028012275696,0.010149342007935047,0.011180326342582703,0.039852406829595566,0.02684992365539074,-0.01417801808565855,-0.035230036824941635,-0.06353724002838135,-0.056311801075935364,0.04958308860659599,0.012127482332289219,-0.017971910536289215,-0.017962520942091942,-0.014876119792461395,-0.048833366483449936,-0.02980395406484604,-0.018107861280441284,0.0014841441297903657,0.057066358625888824,-0.04848281294107437,0.0022592467721551657,-0.008976124227046967,-0.01656796969473362,-0.027631210163235664,-0.0490972176194191,0.010670420713722706,0.013426609337329865,0.004500722046941519,-0.022702526301145554,-0.04673793539404869,0.06092216446995735,-0.0035788887180387974,-0.06852015107870102,-0.06767495721578598,-0.08905447274446487,-0.08269436657428741,0.02072080969810486,-0.024529417976737022,-0.03961065411567688,-0.05443071201443672,-0.012769688852131367,0.034382425248622894,-0.06560225039720535,0.01603066921234131,-0.038792628794908524,0.031013168394565582,-0.05144715681672096,0.010798051953315735,0.03125665336847305,0.008165480569005013,0.004133482929319143,-0.036554958671331406,0.06618808954954147,0.05548926815390587,0.013107402250170708,-0.04606733098626137,0.02120770327746868,0.007071722764521837,-0.021717388182878494,-0.015076756477355957,0.014435802586376667,-0.06443162262439728,0.03410741686820984,-0.04243020713329315,0.04210386425256729,-0.07189182192087173,-0.016586368903517723,-0.03854390233755112,-0.03034215420484543,-0.0733003243803978,0.030688704922795296,0.04248577728867531,0.02874266728758812,0.03496459871530533,0.012034601531922817,-0.09653220325708389,-0.06515850871801376,0.002342723775655031,0.06748013198375702,-0.07721243053674698,-0.017623573541641235,0.05893140286207199,0.03704552352428436,0.02206774614751339,-0.012158235535025597,-0.006428164895623922,-0.045224666595458984,0.0481489896774292,-0.030369717627763748,-0.03961693122982979,-0.03913426771759987,-0.02234354242682457,-0.03839128091931343,-0.02127087488770485,-0.06881456822156906,0.023699140176177025,0.01251991931349039,-0.0007981943781487644,0.017542829737067223,0.05886221304535866,-0.045453477650880814,0.015638429671525955,0.035709768533706665,0.11238975077867508,0.16001220047473907,0.07923254370689392,-0.02666771039366722,-0.021456919610500336,0.0025838115252554417,-0.056581079959869385,-0.025822892785072327,-2.6358697575663564e-33,0.05770398676395416,-0.039953142404556274,-0.08921850472688675,0.05634172633290291,0.08708715438842773,-0.02380799874663353,-0.017496734857559204,-0.00012867542682215571,0.01082875207066536,0.10541397333145142,0.05808528512716293,0.02404021844267845,0.02574647217988968,-0.004040447995066643,-0.08448296040296555,0.014539580792188644,-0.03531242161989212,0.11700291186571121,0.008996733464300632,-0.008084877394139767,-0.10710758715867996,-0.02096896432340145,-0.015142561867833138,0.046795763075351715,-0.04604232311248779,0.024287216365337372,-0.03665410354733467,-0.04733925685286522,0.04607103019952774,0.04868462681770325,-0.009925441816449165,0.06333543360233307,0.014803529717028141,-0.00989590771496296,-0.0175962932407856,0.06914449483156204,-0.007685931399464607,-0.019231369718909264,0.07325129210948944,0.0012966238427907228,-0.07716652005910873,0.0018849230837076902,0.06389351934194565,-0.013731504790484905,0.01245809718966484,0.11730314046144485,-0.06740948557853699,0.03129981830716133,-0.0552951842546463,0.06819511950016022,-0.01147485338151455,0.004483236465603113,0.09358762204647064,0.014036056585609913,0.01686534471809864,0.037116337567567825,0.06258972734212875,-0.004259107634425163,-0.04499524459242821,-0.04343901947140694,-0.05924419313669205,0.0508081428706646,-0.058099500834941864,-0.031186433508992195,-0.05152777209877968,-0.07895337045192719,-0.026898546144366264,-0.07054813206195831,0.046666279435157776,-0.061754826456308365,-0.16143259406089783,0.008937470614910126,-0.04730070009827614,-0.031803540885448456,0.013694768771529198,-0.009182204492390156,0.03610708937048912,0.0628407672047615,-0.05334840714931488,-0.09441856294870377,0.1176988035440445,-0.04382495582103729,0.007495680823922157,-0.03309043124318123,0.045652374625205994,0.07261454313993454,-0.02241075038909912,-0.026917321607470512,-0.08450048416852951,0.022185150533914566,0.04990503191947937,-0.013156820088624954,0.0936833843588829,-0.043929923325777054,-0.021917810663580894,5.970581926956102e-34,-0.06691458076238632,-0.09521713107824326,-0.0760246217250824,0.049139078706502914,-0.022293366491794586,-0.014997655525803566,0.0493772029876709,-0.06274721026420593,-0.043206170201301575,0.04556456580758095,0.056515052914619446,0.020672427490353584,0.005085589364171028,0.05753319337964058,-0.08103794604539871,-0.10820174217224121,0.0380331315100193,0.04687333106994629,-0.03468544781208038,0.05632227659225464,-0.01823437213897705,0.05028935894370079,0.03575809672474861,-0.08746115118265152,0.008665674366056919,0.0464421845972538,0.014501386322081089,-0.08124163001775742,0.010649126023054123,-0.06774424016475677,-0.033486854285001755,0.06289619952440262,-0.06343977898359299,0.02864903025329113,0.048235151916742325,0.01098506711423397,0.00020693322585429996,-0.022399717941880226,-0.0013792973477393389,-0.09227178245782852,-0.04694841057062149,0.048152945935726166,0.0861780121922493,0.07501208782196045,-0.018690479919314384,-0.014483613893389702,-0.008008971810340881,-0.04000559076666832,0.011743435636162758,0.005995475687086582,-0.11145829409360886,0.06220446899533272,-0.010756077244877815,-0.037665218114852905,-0.04285275936126709,-0.04001520201563835,0.06345032155513763,-0.0931750237941742,-0.005683850962668657,0.06870093941688538,0.01699042320251465,0.01686251536011696,-0.05149940401315689,0.052635371685028076,0.04784722626209259,0.029429985210299492,-0.029643209651112556,0.12017399817705154,0.08564221858978271,0.015161462128162384,0.058439236134290695,0.011445542797446251,-0.001812104368582368,0.06755342334508896,0.05232054367661476,0.005958125460892916,0.026101496070623398,-0.0029137381352484226,-0.06114631146192551,0.045621562749147415,0.021343717351555824,0.005381676834076643,0.04586900770664215,0.04568468779325485,-0.007802934851497412,0.04157806560397148,0.009592540562152863,0.015103481709957123,-0.09466182440519333,-0.03688579797744751,-0.10847353935241699,-0.009977630339562893,0.015556314028799534,-0.005217462778091431,0.07368381321430206,-3.530892911385308e-8,-0.06199050322175026,-0.062238819897174835,0.012514520436525345,-0.013995134271681309,0.09303142130374908,-0.12018374353647232,0.0026092352345585823,0.051407989114522934,-0.1299923062324524,-0.06454705446958542,-0.05269042029976845,0.011427538469433784,0.05052315071225166,0.10663270205259323,0.08265022188425064,-0.01015141699463129,0.044262029230594635,-0.005909486208111048,-0.039965055882930756,-0.05633777379989624,0.025114431977272034,0.08438363671302795,0.004350540228188038,-0.023192699998617172,-0.01080494187772274,0.056743230670690536,-0.04715212434530258,0.009251708164811134,-0.03382018208503723,0.0542936697602272,0.05220840498805046,0.07951954007148743,0.0021186883095651865,-0.044282086193561554,-0.12733547389507294,-0.014672661200165749,0.026932694017887115,-0.02806111052632332,0.07719249278306961,-0.06107368320226669,0.006123931147158146,0.004038061480969191,0.0774945467710495,0.06958374381065369,-0.003579177660867572,-0.07060011476278305,0.0014113858342170715,-0.048750028014183044,0.0002943105937447399,0.03135979175567627,0.01494419202208519,0.04685365781188011,0.042617544531822205,0.06829795241355896,0.07632343471050262,-0.015027097426354885,0.03426695987582207,0.032437220215797424,-0.11883174628019333,0.022074267268180847,0.11436690390110016,0.051648709923028946,-0.07285887002944946,-0.014816034585237503]},{"text":"I was now about to form another being of whose dispositions I was alike ignorant; she might become ten thousand times more malignant than her mate and delight, for its own sake, in murder and wretchedness.","book":"1984","chapter":96,"embedding":[0.01657632738351822,0.015607600100338459,-0.004763856064528227,0.04951969534158707,-0.00652327062562108,-0.025781530886888504,0.05917590111494064,0.030663948506116867,-0.0009775941725820303,0.020936742424964905,-0.007016980089247227,-0.014559268951416016,0.07809203118085861,-0.08302179723978043,-0.04089825227856636,0.022349735721945763,0.013166327960789204,-0.0017820247448980808,-0.05660276487469673,0.11734304577112198,-0.06974038481712341,0.05004756152629852,0.09513875842094421,0.012063982896506786,-0.08155809342861176,-0.0660090297460556,0.07346337288618088,0.0653676763176918,-0.013659329153597355,-0.01063778530806303,-0.02610035426914692,-0.026136700063943863,-0.06698687374591827,0.07616358995437622,-0.0027732804883271456,-0.049483053386211395,0.026917777955532074,0.0854945257306099,0.07813616842031479,-0.02354959025979042,0.0194388534873724,-0.05156414583325386,-0.03470318019390106,0.009932882152497768,-0.01621098257601261,-0.08110951632261276,-0.09642000496387482,-0.005945582874119282,0.028849774971604347,-0.11773862689733505,-0.061523258686065674,-0.0063070389442145824,-0.06913549453020096,-0.02388637140393257,-0.054160844534635544,-0.08015072345733643,0.009937744587659836,0.053421441465616226,-0.03196742758154869,0.01717151142656803,0.0007043235236778855,0.05738362669944763,0.06447969377040863,-0.020523948594927788,-0.0059990715235471725,-0.01639646664261818,0.02868478000164032,0.03331642225384712,-0.047647006809711456,0.07522821426391602,-0.005460984539240599,0.021959692239761353,0.06504002958536148,-0.0043387399055063725,-0.09722462296485901,-0.05843245983123779,0.11125301569700241,-0.015794003382325172,0.01930214837193489,0.060643624514341354,0.011505217291414738,0.13135135173797607,0.04310671612620354,0.005293176509439945,-0.024382641538977623,-0.10107246041297913,0.016851501539349556,-0.007552627939730883,0.06027919426560402,-0.028890300542116165,-0.07903369516134262,0.04615381360054016,0.042743321508169174,0.0386689193546772,0.059008609503507614,-0.018733322620391846,-0.0588609017431736,0.006213103421032429,0.007164440583437681,0.06656357645988464,-0.08236140757799149,0.022286806255578995,-0.06683482229709625,0.04937414452433586,0.014841972850263119,-0.044631604105234146,-0.03185765817761421,0.002870169933885336,-0.042759187519550323,-0.11822988837957382,0.018269095569849014,-0.0532686710357666,-0.01958121918141842,-0.030735071748495102,0.044570863246917725,0.08811971545219421,0.031562719494104385,-0.05127331614494324,-0.02439158596098423,0.04108758270740509,0.0015397045062854886,0.018931927159428596,-0.0554002970457077,0.10182536393404007,0.014155480079352856,-0.07887223362922668,-0.03486251458525658,2.2914949121685436e-33,-0.05558909475803375,0.01783437468111515,0.009207095019519329,0.008723805658519268,0.0078015499748289585,0.03834109753370285,-0.007891472429037094,0.017568832263350487,0.04420953989028931,-0.06495241075754166,0.04470185935497284,-0.02134513482451439,-0.08636602759361267,0.00305530009791255,-0.14227372407913208,0.04986472427845001,-0.04072253778576851,0.07157579809427261,0.014598464593291283,0.06732895970344543,-0.008520057424902916,0.03291268274188042,0.03412184491753578,-0.010014170780777931,-0.07765039801597595,0.04259365797042847,0.017021656036376953,0.061463017016649246,-0.03276488929986954,0.01057511754333973,0.08625828474760056,0.013358616270124912,0.09121380001306534,0.0027636138256639242,-0.05491173639893532,0.0061332713812589645,-0.06378708779811859,-0.014492128044366837,0.01964748650789261,-0.015358099713921547,0.03836296498775482,0.0031913714483380318,0.11097179353237152,-0.024303268641233444,-0.08398519456386566,-0.028020396828651428,-0.01905200071632862,0.017117002978920937,-0.0716988816857338,-0.012356376275420189,-0.02159225381910801,0.012024429626762867,0.01733049936592579,0.10286659002304077,-0.016881054267287254,0.047383103519678116,-0.031455181539058685,0.008888160809874535,0.0753418505191803,0.024670377373695374,-0.0075395735912024975,-0.026528356596827507,-0.0005542678409256041,-0.0395108237862587,-0.004739978816360235,-0.07957662642002106,-0.00034748660982586443,-0.07086571305990219,-0.07012251764535904,-0.013537729158997536,-0.07689378410577774,-0.007934806868433952,-0.037072762846946716,0.03165491297841072,-0.050905536860227585,-0.0592203363776207,0.06288737803697586,-0.07488055527210236,-0.012277894653379917,-0.06309269368648529,0.054324984550476074,0.06971360743045807,-0.01082670409232378,-0.05411279574036598,0.0042093675583601,-0.039655592292547226,0.02907075732946396,-0.07986891269683838,-0.0025092591531574726,0.03596165031194687,0.07075048238039017,0.05503394454717636,-0.010258806869387627,-0.13399967551231384,-0.08810684829950333,-3.4679155158050806e-33,0.013341392390429974,-0.02495497651398182,0.022011149674654007,0.0459357425570488,-0.037487149238586426,0.0015064444160088897,-0.011520554311573505,0.02001008205115795,-0.10544822365045547,0.019844353199005127,0.028458094224333763,0.0004479880153667182,0.08658578991889954,-0.02952750027179718,-0.040397774428129196,-0.033767808228731155,0.030972007662057877,0.002996975090354681,0.029539156705141068,-0.02439090423285961,-0.07232514023780823,0.08797576278448105,-0.04582871124148369,-0.01206132024526596,-0.027966711670160294,0.029278099536895752,0.11697367578744888,0.035615190863609314,-0.051090918481349945,-0.060573745518922806,0.05237901210784912,0.014151239767670631,-0.10259271413087845,-0.05329228565096855,0.10089551657438278,0.013518868945538998,0.0639973059296608,-0.04808473959565163,0.09000388532876968,-0.049741245806217194,-0.06608717143535614,0.005926183424890041,-0.0031013593543320894,0.04156198725104332,0.08768961578607559,-0.011784094385802746,0.08089697360992432,0.04617946222424507,0.16416479647159576,0.018070481717586517,-0.04157458618283272,0.016838880255818367,-0.01687261275947094,0.022328389808535576,-0.0027597590815275908,-0.10836576670408249,0.023785660043358803,-0.05581767112016678,0.051435623317956924,-0.013393272645771503,-0.0181749165058136,-0.036417633295059204,-0.090746209025383,0.0033562572207301855,-0.00027857095119543374,-0.020621437579393387,-0.04354194551706314,0.016113949939608574,-0.011697177775204182,0.024599799886345863,-0.026496587321162224,-0.04422532021999359,-0.11849641054868698,-0.00706571526825428,-0.009713923558592796,-0.05837022513151169,-0.016859499737620354,-0.057632606476545334,-0.01969129592180252,-0.004567930940538645,-0.019525056704878807,-0.04203284904360771,0.0813320204615593,-0.03972955793142319,-0.0180780328810215,0.0037654531188309193,0.026488114148378372,0.08454160392284393,0.07471673935651779,-0.07615726441144943,-0.013684532605111599,-0.10106837004423141,0.011481731198728085,-0.10005822032690048,-0.00867881253361702,-3.7343141912060673e-8,-0.0407898984849453,-0.04652507230639458,0.02070366032421589,-0.05183940380811691,0.02815479040145874,0.03504381701350212,-0.0291019007563591,-0.01652093417942524,-0.008010760881006718,0.008491811342537403,-0.04876088723540306,0.021005094051361084,0.04957519471645355,0.01029439177364111,0.0917702168226242,0.038748230785131454,0.02741413749754429,-0.04869081452488899,0.01794404350221157,0.028767842799425125,-0.05978481471538544,0.04014839977025986,0.02677987702190876,-0.09115291386842728,-0.020020021125674248,-0.010661599226295948,-0.01907014101743698,-0.05506740137934685,-0.008397946134209633,0.022541053593158722,0.025748493149876595,0.05700333043932915,-0.041146472096443176,0.02508845366537571,-0.026112709194421768,0.01601090282201767,-0.015014693140983582,0.05930463969707489,0.04868154600262642,0.08178748935461044,0.0644276887178421,0.03895609453320503,0.02470933273434639,0.036487478762865067,-0.00751491030678153,-0.03656841441988945,0.001074460451491177,-0.0021318765357136726,-0.003339059418067336,0.008182340301573277,0.06620293855667114,0.10396219789981842,0.010684020817279816,0.02310369908809662,0.03502253070473671,-0.10128379613161087,-0.031012674793601036,0.03694727271795273,-0.05228329077363014,0.07635697722434998,0.09779375791549683,-0.05263367295265198,0.029666423797607422,-0.03717949241399765]},{"text":"I thought with a sensation of madness on my promise of creating another like to him, and trembling with passion, tore to pieces the thing on which I was engaged.","book":"1984","chapter":97,"embedding":[0.0021133276168257,0.005943047348409891,0.02663363702595234,-0.006817452609539032,-0.0010682599386200309,-0.045039061456918716,0.04014017432928085,0.018061842769384384,0.10173662006855011,-0.05341543257236481,-0.06940161436796188,0.013675213791429996,-0.013211422599852085,0.01307652983814478,0.06679742783308029,-0.036550961434841156,-0.019112229347229004,-0.026245545595884323,-0.0860842615365982,0.08844471722841263,0.011812320910394192,0.055028509348630905,-0.03645407035946846,-0.04331319034099579,-0.00014667074719909579,0.07286176085472107,0.014773966744542122,-0.0052736480720341206,-0.0026422208175063133,0.018338946625590324,0.02965720370411873,-0.039099305868148804,-0.05508430674672127,0.018259162083268166,0.04968607425689697,-0.035623788833618164,-0.15113085508346558,0.04679534584283829,0.02748268097639084,-0.12925980985164642,0.006074577569961548,0.034787073731422424,0.021335074678063393,0.0703059732913971,-0.02974684350192547,-0.003420006949454546,0.0556931234896183,-0.028549544513225555,0.024676010012626648,-0.02411607839167118,-0.10495500266551971,-0.004025463480502367,-0.007340806536376476,0.013266781345009804,-0.0598716214299202,0.018795868381857872,0.09158368408679962,0.04957116022706032,-0.0038423421792685986,0.04066486656665802,-0.020149337127804756,0.08326102048158646,0.056505244225263596,0.010445632040500641,-0.03563232347369194,0.0074097937904298306,0.0051605296321213245,0.010144900530576706,0.07495350390672684,0.09758125990629196,0.12061306834220886,-0.036997657269239426,-0.0009706516284495592,-0.008646775968372822,-0.030185192823410034,-0.03492465615272522,-0.022947097197175026,0.010963170789182186,0.04370764642953873,0.05789364501833916,-0.053257014602422714,0.041761185973882675,0.002626692410558462,-0.028082212433218956,-0.05165400356054306,-0.03401732072234154,0.07183411717414856,0.011582381092011929,0.002304942812770605,0.036930110305547714,-0.05266813561320305,-0.0016704464796930552,-0.015927115455269814,-0.0004407743108458817,-0.02652743272483349,0.013092159293591976,-0.10057765990495682,0.036924149841070175,-0.07862956821918488,0.06329851597547531,0.0047241984866559505,0.018190886825323105,-0.02042025327682495,-0.010241520591080189,0.010600291192531586,0.006898073945194483,-0.03796125203371048,-0.05807521194219589,0.007990832440555096,-0.02209775522351265,-0.03349138796329498,-0.01582569070160389,0.0008713529678061604,-0.03217897564172745,0.016519343480467796,0.0399257093667984,-0.05541832745075226,-0.009032240137457848,0.06323646754026413,0.04603898152709007,0.04193616285920143,0.03774162009358406,-0.043245282024145126,0.07513928413391113,-0.08691910654306412,-0.11576946079730988,-0.020503440871834755,-1.8163476059386975e-33,0.0786280483007431,0.03266463056206703,0.015764668583869934,0.025443870574235916,0.05665378272533417,0.045211076736450195,0.008237959817051888,-0.027353426441550255,0.008429496549069881,0.000008292733582493383,0.06527926027774811,0.001106138457544148,0.04798956587910652,0.050543516874313354,-0.07278265058994293,-0.024368878453969955,0.004708164371550083,0.01982966624200344,0.09161540865898132,0.05234040692448616,-0.06873980909585953,0.053262967616319656,-0.013577856123447418,0.008102823980152607,0.0018531124806031585,0.04014573246240616,-0.0850910022854805,-0.017735224217176437,-0.009087241254746914,0.0335400328040123,-0.0562027245759964,0.12842842936515808,-0.00812429841607809,-0.0013261317508295178,-0.003238641656935215,0.046106476336717606,0.010512880980968475,-0.03332891687750816,-0.06764581054449081,0.040579214692115784,0.030138133093714714,0.0007179116946645081,-0.02597065642476082,0.04034056514501572,-0.023409755900502205,0.0183564480394125,0.0004088266578037292,0.0941290631890297,-0.010668781585991383,-0.03210756182670593,-0.0561150498688221,0.003928580321371555,0.18688035011291504,-0.010166343301534653,0.021391984075307846,0.011506141163408756,0.08725639432668686,-0.0704546868801117,0.08100736886262894,0.013199864886701107,-0.013476798310875893,-0.05636124685406685,-0.037146229296922684,0.0532190203666687,-0.027681510895490646,-0.11046319454908371,-0.026087874546647072,-0.034854788333177567,-0.001256845542229712,-0.08498705178499222,-0.08575651049613953,0.004645886365324259,-0.06083356589078903,-0.06929514557123184,-0.07102247327566147,-0.09546273201704025,-0.05913975089788437,-0.023853417485952377,-0.0328211709856987,-0.037572480738162994,0.054062020033597946,-0.019575750455260277,-0.05844290927052498,0.0029858846683055162,-0.026390057057142258,-0.024055473506450653,0.0014314567670226097,-0.09343733638525009,-0.07139088958501816,0.038759998977184296,-0.008733772672712803,0.05204340070486069,0.04657558724284172,-0.06712931394577026,-0.03563186153769493,1.7329359272956644e-34,-0.016363278031349182,-0.041812993586063385,0.03734687343239784,0.08002926409244537,0.0678047388792038,-0.033721890300512314,-0.057698678225278854,-0.016770048066973686,-0.06596935540437698,-0.0064353360794484615,0.06285002827644348,-0.024227779358625412,0.04440389573574066,0.023665903136134148,-0.02649797312915325,-0.06147351115942001,-0.014012297615408897,-0.014746653847396374,0.05111085623502731,-0.024410929530858994,-0.024858811870217323,0.03285393491387367,0.03724554181098938,-0.05107424780726433,0.009152332320809364,0.0043118791654706,0.09500832110643387,-0.04740869626402855,-0.007852070964872837,-0.029801761731505394,-0.011497336439788342,-0.003912931773811579,-0.10421407967805862,0.01293310895562172,0.0837211161851883,0.11913154274225235,-0.03668947145342827,0.011994532309472561,0.006110682617872953,-0.1325705349445343,-0.06255750358104706,-0.0029740920290350914,0.05852670967578888,0.15399189293384552,-0.024315062910318375,-0.07575247436761856,0.07585542649030685,0.0480409637093544,0.04968414455652237,0.0454893559217453,0.008703941479325294,0.03371001407504082,-0.06352688372135162,-0.10140954703092575,0.02871525287628174,-0.05447281152009964,-0.01702064834535122,-0.012451864778995514,0.020374057814478874,-0.04737646132707596,-0.029165538027882576,0.050168901681900024,-0.010498298332095146,0.014803792349994183,0.051812928169965744,0.01699674502015114,-0.008352047763764858,0.013023233972489834,-0.09999033808708191,0.027360782027244568,0.0032314846757799387,0.020178960636258125,0.03633446618914604,0.1133662760257721,0.11755793541669846,-0.05221293866634369,-0.05428775027394295,-0.07793758064508438,-0.02499425783753395,-0.005408030468970537,0.07641395181417465,0.012487025931477547,-0.0037114766892045736,-0.019555527716875076,-0.01966664008796215,-0.04504562169313431,-0.05989455431699753,0.03250531852245331,-0.013688803650438786,-0.0064190286211669445,-0.020056892186403275,0.025679534301161766,0.016878115013241768,0.07610826939344406,0.07994731515645981,-2.8392905804253132e-8,-0.07097173482179642,-0.02065775729715824,-0.10489968210458755,-0.04644900932908058,0.10190099477767944,0.03759869560599327,-0.011126656085252762,-0.05773652344942093,-0.07070421427488327,-0.015706708654761314,-0.02875562012195587,-0.004803900141268969,0.032000765204429626,0.10148391872644424,-0.01512506790459156,-0.10891574621200562,0.05502917245030403,-0.05326264351606369,-0.004272412043064833,-0.003556653391569853,-0.0014491048641502857,0.085163414478302,-0.05838401988148689,-0.05139731988310814,-0.035173770040273666,0.05671287700533867,-0.02115613780915737,0.007897010073065758,-0.027474546805024147,0.022809552028775215,0.04490511864423752,-0.02338201366364956,-0.054125912487506866,0.0335930697619915,-0.09162501990795135,-0.0010219779796898365,-0.04221638664603233,0.05013757199048996,0.07198503613471985,-0.1051781177520752,0.029527125880122185,0.049063872545957565,0.06183508411049843,0.04433072358369827,0.00997325498610735,0.013637012802064419,0.012594083324074745,-0.04527462646365166,0.011358579620718956,0.014867087826132774,0.0020197946578264236,0.053431883454322815,0.009809768758714199,0.024388011544942856,0.037919607013463974,-0.06133466586470604,0.005024390760809183,0.0651223361492157,-0.08102525025606155,-0.040695082396268845,0.05018651857972145,-0.07854623347520828,-0.10869564861059189,0.004413722548633814]},{"text":"Do you dare to break your promise?","book":"1984","chapter":97,"embedding":[-0.11645631492137909,0.07327191531658173,0.05958522483706474,-0.025310369208455086,0.03413349762558937,-0.042742770165205,-0.024500105530023575,-0.014439836144447327,0.04025568440556526,-0.019078560173511505,-0.01655776984989643,-0.013137226924300194,-0.038579344749450684,0.009000255726277828,0.05253490060567856,-0.030070601031184196,-0.07616578787565231,0.027884911745786667,-0.04072362557053566,0.004302747081965208,0.06570344418287277,0.05062999948859215,0.022066108882427216,0.016763528808951378,0.02094200812280178,-0.000041632400098023936,0.03283002972602844,-0.02677685208618641,0.0012428609188646078,-0.06314893066883087,-0.07239198684692383,-0.010739735327661037,-0.01039657462388277,0.035371799021959305,-0.02547258883714676,-0.03015037439763546,-0.038586851209402084,-0.039420560002326965,0.04538794606924057,-0.03176875039935112,0.06282170116901398,0.042296409606933594,-0.003108812030404806,0.04501921311020851,0.012390079908072948,-0.00853822473436594,0.0958109200000763,-0.00034608825808390975,-0.01626727171242237,-0.03247017040848732,-0.010587479919195175,0.01855689287185669,-0.022226637229323387,0.0379754975438118,0.024194201454520226,0.008671017363667488,0.0286503117531538,0.016560768708586693,0.06426393985748291,0.10735423117876053,-0.029660535976290703,0.03266416862607002,0.013729048892855644,0.05470491573214531,0.06170661374926567,0.05402607098221779,0.026488713920116425,-0.02867739461362362,-0.01423538476228714,0.08146195113658905,-0.048843108117580414,-0.026132766157388687,-0.005950803868472576,-0.006468662992119789,-0.062155209481716156,-0.02361733466386795,-0.08756612986326218,-0.040541861206293106,0.026301177218556404,0.04927704483270645,-0.07849929481744766,-0.11139392107725143,0.03881711885333061,0.024401195347309113,-0.12344725430011749,-0.10102841258049011,0.0532132051885128,-0.028229469433426857,0.09928922355175018,-0.08419841527938843,-0.08410880714654922,0.04574842378497124,-0.08178441971540451,-0.007934972643852234,-0.07306275516748428,-0.03017798438668251,-0.0812903344631195,-0.05390916019678116,-0.10689982026815414,0.017695453017950058,0.01830722577869892,0.04874245449900627,-0.02112390100955963,-0.08520615845918655,0.037503182888031006,-0.0823131576180458,-0.0969192236661911,-0.05435429513454437,-0.01156951766461134,0.015176619403064251,0.00904335267841816,0.032596200704574585,0.07512804120779037,-0.08476589620113373,0.1203528568148613,-0.05321161448955536,-0.08321145176887512,0.032850299030542374,-0.02289474569261074,0.0011836605845019221,0.021847272291779518,0.0618806853890419,0.06724672019481659,0.06893385201692581,-0.07452883571386337,-0.06452557444572449,-0.03294924646615982,-8.113946000150813e-33,0.0076470146887004375,-0.02701401710510254,-0.045075930655002594,0.019296905025839806,0.041946567595005035,0.023947985842823982,0.04814263805747032,0.04658284783363342,-0.07644511759281158,0.055569641292095184,0.0815589651465416,-0.007808386348187923,-0.022842692211270332,-0.032686203718185425,-0.026934023946523666,0.06391632556915283,0.054326608777046204,0.012475154362618923,-0.0053481608629226685,0.04851085692644119,0.055105168372392654,0.01140893716365099,0.028414234519004822,-0.0025925389491021633,-0.011156690306961536,-0.00048327160766348243,-0.06645113974809647,0.013707321137189865,0.05786847323179245,0.011394228786230087,0.03933781757950783,0.020502757281064987,0.005999481771141291,-0.00633385730907321,0.03520942106842995,-0.07630056142807007,-0.03278787434101105,-0.01879093423485756,-0.07200963795185089,-0.01105307973921299,-0.09769315272569656,0.008950414136052132,-0.008877759799361229,0.03168915957212448,0.0003283090190961957,-0.04668407142162323,0.02765379101037979,-0.014593218453228474,0.0005600815056823194,-0.02853144146502018,-0.04298887029290199,0.07279884815216064,0.039350710809230804,-0.020287374034523964,0.03305429220199585,0.04151465371251106,0.049746446311473846,-0.028625372797250748,0.0005848186556249857,-0.011418012902140617,-0.08330560475587845,-0.11858568340539932,-0.1039111539721489,0.056442659348249435,-0.028932534158229828,0.02462647669017315,-0.027634216472506523,0.05932895094156265,0.006723578087985516,-0.014810548163950443,0.02582164853811264,-0.04811533913016319,-0.09981164336204529,-0.04283908009529114,-0.040499210357666016,-0.021044878289103508,0.026739884167909622,0.042358532547950745,0.06359241902828217,-0.08871207386255264,0.05526251718401909,-0.0036929165944457054,-0.05494091659784317,0.04784097522497177,0.08251327276229858,0.0006928687798790634,0.002737098839133978,-0.1071082055568695,0.11291272193193436,0.0067116389982402325,-0.04409220069646835,0.0321321114897728,0.034508027136325836,-0.06247788295149803,-0.07080648839473724,5.021260036071715e-33,0.08701552450656891,0.045683905482292175,0.030956322327256203,0.01692548766732216,0.08542156219482422,0.03312526270747185,-0.017306538298726082,-0.003832661546766758,0.0659746378660202,0.05600829795002937,0.033291902393102646,-0.03789461776614189,0.06001131609082222,0.021541712805628777,0.03963238745927811,-0.0617140457034111,0.06818875670433044,0.032413456588983536,0.025765005499124527,-0.07941145449876785,-0.0932750403881073,-0.03938642144203186,-0.04267779365181923,0.04645391181111336,-0.075581394135952,-0.011764178052544594,0.032368455082178116,-0.043553274124860764,-0.04446769505739212,-0.09590040892362595,0.027760861441493034,-0.0061905174516141415,-0.09913988411426544,-0.01238962821662426,0.08353018015623093,0.06021460145711899,-0.0005143096786923707,0.0594625398516655,-0.038645416498184204,0.030219029635190964,0.021533511579036713,-0.07912591099739075,-0.02869257889688015,0.08209119737148285,0.03229221701622009,-0.12144139409065247,0.053591955453157425,-0.07851609587669373,0.07165028154850006,0.038908760994672775,0.015035277232527733,0.012117170728743076,-0.0012505396734923124,-0.04627252742648125,0.08080343902111053,-0.06434649229049683,-0.03145677223801613,0.058237332850694656,0.04242900013923645,-0.05119812488555908,0.006270424462854862,0.026940524578094482,0.037473827600479126,0.017392100766301155,0.03047538548707962,0.0037536995951086283,-0.06097660958766937,0.03237557038664818,0.08509618788957596,0.05709989741444588,0.07304219901561737,-0.0683177188038826,0.0066899326629936695,0.03384530916810036,0.007273450028151274,-0.08970988541841507,-0.03533139079809189,-0.08359009772539139,-0.036885764449834824,0.02738093212246895,0.0370328426361084,-0.02206192910671234,0.039591725915670395,0.016148259863257408,0.009521722793579102,-0.07625745236873627,0.051652487367391586,0.027205612510442734,-0.008921338245272636,0.06937943398952484,-0.016360748559236526,0.04420081526041031,0.01751003973186016,-0.006657290272414684,0.04186404496431351,-1.5809289877211086e-8,-0.02707904577255249,0.0820479765534401,0.016983091831207275,-0.008180156350135803,0.055144596844911575,0.033936649560928345,-0.0358886756002903,-0.03532039001584053,-0.051404718309640884,-0.007618534378707409,0.08550851792097092,-0.006983533501625061,0.08012306690216064,0.08780863881111145,-0.06282988935709,0.01205475628376007,0.06155572831630707,-0.06900758296251297,0.03310150280594826,-0.022332986816763878,-0.05121006816625595,0.10911958664655685,0.019001269713044167,-0.06163008511066437,-0.025753209367394447,0.0051340670324862,0.03116716630756855,0.07227645814418793,-0.04512451961636543,0.0630570575594902,0.02220747619867325,-0.06195804104208946,-0.021878791972994804,0.039515458047389984,-0.021463504061102867,-0.10394937545061111,0.03700399026274681,0.022080382332205772,0.07214946299791336,0.01678885705769062,0.029409104958176613,0.08748225122690201,0.08063209801912308,0.07524485141038895,-0.044500309973955154,0.05455349385738373,0.02949408069252968,0.021202199161052704,-0.017815493047237396,0.022113068029284477,-0.07388521730899811,0.01910945028066635,-0.008099287748336792,0.024056216701865196,0.07170514762401581,-0.0032879512291401625,-0.033189378678798676,0.011033072136342525,-0.03982802852988243,-0.003331572748720646,0.028259627521038055,-0.05444241687655449,-0.030347200110554695,-0.12774494290351868]},{"text":"You may hate, but beware!","book":"1984","chapter":98,"embedding":[-0.02712215855717659,-0.011880370788276196,0.060661107301712036,-0.024257443845272064,0.06845588237047195,-0.04452104493975639,-0.027137134224176407,-0.034804485738277435,-0.010907177813351154,0.05813051015138626,-0.025719938799738884,-0.018537811934947968,0.038095299154520035,0.017640165984630585,-0.11006443947553635,0.009972251020371914,0.03697267174720764,0.03729816898703575,0.06355664134025574,0.024223795160651207,-0.1156381145119667,0.024111339822411537,-0.008717578835785389,0.06381751596927643,-0.08651871234178543,-0.0686824768781662,-0.0015315803466364741,0.0674230232834816,-0.08049239963293076,-0.05727856233716011,-0.03264126181602478,-0.018220894038677216,-0.08884931355714798,0.002438741037622094,-0.08287829160690308,0.0025567004922777414,0.10221462696790695,-0.05411869287490845,0.017621025443077087,-0.05279458314180374,0.00007390842074528337,0.04193118214607239,0.011129672639071941,0.029702555388212204,-0.011606174521148205,-0.01671079732477665,0.04861527308821678,-0.05194960907101631,0.026777395978569984,0.01542128436267376,0.022880056872963905,0.019828084856271744,0.0018415224039927125,-0.029935559257864952,0.04394318908452988,-0.006443975027650595,-0.0747729018330574,0.015182572416961193,0.030642028898000717,0.0033872146159410477,0.03394387662410736,0.005134047474712133,-0.11042232811450958,0.0458795391023159,0.03109985589981079,-0.01886051706969738,0.03752012178301811,0.025506045669317245,0.0014264450874179602,0.03158458694815636,-0.00004419988181325607,0.054571330547332764,0.020715108141303062,0.09621661901473999,-0.01708541251718998,0.02260703593492508,-0.026845064014196396,-0.12985718250274658,0.019025634974241257,-0.04739197716116905,-0.03818119689822197,-0.0023997731041163206,0.03824906051158905,0.003275357885286212,-0.03154837712645531,-0.04930288344621658,0.022060837596654892,0.02666502073407173,0.05713197588920593,-0.09787530452013016,0.014148367568850517,-0.008024148643016815,-0.012189981527626514,0.009057409130036831,0.03579898551106453,0.005166238639503717,-0.04075464606285095,-0.03775200992822647,-0.15067103505134583,0.10556497424840927,0.014422116801142693,-0.01921507529914379,-0.017711501568555832,0.06825437396764755,-0.024237848818302155,-0.007938018068671227,-0.032911427319049835,-0.010007429867982864,-0.025684723630547523,-0.048618119210004807,-0.05777604877948761,0.0054829842410981655,0.005586379673331976,-0.1144251748919487,0.003946639597415924,0.022909050807356834,0.11098667979240417,0.009325134567916393,0.02226151153445244,0.14613460004329681,0.04613521695137024,0.04519423097372055,-0.02048564702272415,0.035108402371406555,-0.003745653899386525,-0.09861230850219727,-0.028991973027586937,-5.722068462196854e-33,-0.04903831332921982,0.012707149609923363,-0.009728211909532547,0.018980305641889572,0.04565645381808281,0.008709481917321682,0.017684398218989372,0.06893069297075272,-0.040771275758743286,-0.0037311501801013947,0.005264900624752045,-0.011403096839785576,-0.046574439853429794,0.05071491375565529,0.12502247095108032,0.019845569506287575,-0.005682751070708036,-0.0035559518728405237,0.025647642090916634,-0.022756649181246758,-0.04098568484187126,0.04242076724767685,-0.025699393823742867,-0.038248199969530106,-0.05244059860706329,0.0063890027813613415,-0.06601365655660629,-0.0031929754186421633,0.11113262921571732,0.073869489133358,-0.078684963285923,-0.00953223928809166,-0.00531277060508728,-0.004871029872447252,-0.010871185921132565,-0.03071143664419651,-0.0575084388256073,0.05534230172634125,-0.03370567783713341,-0.032735422253608704,0.03904390707612038,-0.03017132729291916,-0.038444917649030685,0.02167268469929695,-0.03895790874958038,0.06492501497268677,0.031804416328668594,0.010369397699832916,0.17736245691776276,0.038772568106651306,-0.034794632345438004,-0.008192622102797031,0.09176413714885712,0.11970751732587814,-0.0029000923968851566,-0.03326163813471794,0.051278259605169296,-0.029889151453971863,0.021686116233468056,-0.010878696106374264,-0.10285165905952454,0.05940820649266243,0.013417309150099754,-0.04314180463552475,-0.0023587350733578205,-0.01601952314376831,-0.017365403473377228,0.03242532163858414,-0.006125679239630699,-0.045883167535066605,-0.03252524510025978,-0.004837874788790941,-0.04139558970928192,-0.07654566317796707,-0.0846620425581932,-0.01945236325263977,0.068558469414711,0.07095050811767578,0.0025025547947734594,-0.09602140635251999,0.031235812231898308,-0.007959287613630295,0.010358556173741817,-0.007863308303058147,-0.019226783886551857,-0.009177269414067268,0.07670899480581284,-0.10955298691987991,0.07240781933069229,0.031090371310710907,0.009768251329660416,-0.041035111993551254,0.05255402624607086,0.016447197645902634,-0.14737817645072937,3.461405481153433e-33,-0.01852133311331272,-0.03170507401227951,0.06175422668457031,0.025647304952144623,-0.04386984184384346,-0.05964674428105354,0.06574942171573639,0.18617185950279236,0.0005255319993011653,0.02287657931447029,0.008721080608665943,-0.04664164409041405,-0.023423001170158386,0.003290428314357996,-0.05793679878115654,-0.015716399997472763,0.05339210107922554,-0.013206865638494492,-0.03546074405312538,-0.0486125722527504,0.015310808084905148,0.08659874647855759,-0.06641744077205658,0.04451021924614906,-0.03022748976945877,0.0683504119515419,0.06449848413467407,0.009477391839027405,0.000508842640556395,-0.0541507750749588,0.03202057629823685,0.044254448264837265,-0.09242469072341919,-0.05630633234977722,0.013450181111693382,0.037108104676008224,-0.029113246127963066,0.0184152964502573,-0.030667945742607117,-0.0408516526222229,0.012834925204515457,0.053749796003103256,0.07724331319332123,0.02448972314596176,-0.00909928698092699,-0.09234025329351425,0.025769604369997978,0.03476624935865402,0.016632113605737686,-0.028322666883468628,-0.05652991682291031,0.033073607832193375,-0.016695378348231316,-0.05816878750920296,0.00970820989459753,-0.03740394115447998,0.02979062870144844,0.04148032143712044,0.058190036565065384,0.027571361511945724,-0.017752332612872124,-0.04788701981306076,-0.11703043431043625,0.018777189776301384,0.07457701861858368,-0.0349665991961956,0.02209361083805561,0.017419109120965004,0.09551344066858292,-0.0007964985561557114,0.008053799159824848,-0.02770683541893959,-0.10028090327978134,-0.025913525372743607,-0.02366175502538681,-0.04754377901554108,0.025205202400684357,-0.0049345167353749275,-0.00824404414743185,-0.009794740937650204,-0.008950605057179928,0.032447390258312225,0.04062659665942192,0.04687841609120369,-0.004796086344867945,0.012162690982222557,-0.014860368333756924,0.06794217228889465,-0.008826706558465958,0.008906735107302666,0.05866656079888344,0.03631595894694328,0.0646863803267479,0.0065531800501048565,0.10843194276094437,-2.515302455208257e-8,-0.031132226809859276,0.026079660281538963,0.10902515053749084,-0.017723185941576958,-0.05468306690454483,-0.08113376051187515,-0.08732853829860687,0.013955588452517986,-0.04598943144083023,0.004396725911647081,0.08046594262123108,0.04405500367283821,-0.03749518096446991,0.034542910754680634,0.031092727556824684,0.09989871829748154,0.008716781623661518,0.006764120422303677,-0.04444205015897751,-0.08697236329317093,-0.07837910205125809,0.08347078412771225,0.006686065346002579,-0.04867185652256012,0.008139735087752342,-0.09303692728281021,0.06348573416471481,0.04775365814566612,0.143063485622406,-0.026289986446499825,-0.023892343044281006,-0.00045825738925486803,-0.07204978913068771,0.012043333612382412,-0.03226197883486748,-0.017423607409000397,-0.01025623269379139,-0.00147573696449399,0.001105017145164311,-0.03435433655977249,-0.02466304413974285,-0.07320097088813782,0.018678296357393265,-0.011136624030768871,-0.01300267968326807,-0.01418472733348608,0.040171436965465546,-0.053423915058374405,0.056422632187604904,-0.06161220371723175,0.048485178500413895,0.016651535406708717,0.04732319340109825,0.049601465463638306,0.1201852485537529,0.012195253744721413,-0.03670519217848778,0.02593412436544895,0.04204622656106949,0.07164649665355682,0.08360715955495834,-0.026331793516874313,0.035903699696063995,0.014643913134932518]},{"text":"Before you sign my death-warrant, be sure that you are yourself safe.” I would have seized him, but he eluded me and quitted the house with precipitation.","book":"1984","chapter":98,"embedding":[-0.0034863378386944532,0.14997203648090363,0.061532169580459595,-0.08133252710103989,0.04308777675032616,-0.06221863254904747,0.08617208153009415,0.03526654839515686,-0.039069224148988724,-0.03992459923028946,0.04847212880849838,0.022578947246074677,0.11108644306659698,-0.031736280769109726,0.03769095614552498,0.025322819128632545,0.06532798707485199,-0.0012689678696915507,-0.06516831368207932,0.07477626949548721,0.015791386365890503,0.06563786417245865,-0.044545967131853104,-0.0013208073796704412,0.00361668411642313,0.1029709130525589,-0.02984362468123436,0.07629449665546417,0.03694625571370125,0.023247022181749344,0.00807497464120388,-0.040478985756635666,-0.05875355377793312,-0.050669364631175995,0.014903799630701542,-0.019482161849737167,-0.0013640152756124735,-0.07432131469249725,0.02417369931936264,-0.052101943641901016,0.06640514731407166,0.029212793335318565,0.08355823904275894,0.05720928683876991,-0.0477752760052681,0.01927300915122032,-0.017480431124567986,0.054596707224845886,0.08021578937768936,0.006392101291567087,-0.03138469532132149,-0.026620807126164436,-0.04450856149196625,0.02260560728609562,-0.06509511917829514,0.0053294626995921135,0.07700134068727493,0.014288241043686867,-0.010775088332593441,0.008789695799350739,-0.037911172956228256,0.06334000080823898,0.0015589834656566381,0.030374815687537193,0.03444619104266167,0.019495408982038498,0.0013741101138293743,-0.09402217715978622,0.08197566866874695,0.10370530188083649,0.06972046196460724,0.015366476029157639,0.0024954904802143574,-0.005081008654087782,-0.09860517829656601,-0.06188656762242317,0.002610184485092759,-0.04852036386728287,0.03657219186425209,-0.05152999237179756,-0.028691288083791733,0.025981368497014046,0.017094679176807404,-0.04783165454864502,-0.0357404462993145,-0.033060234040021896,-0.016233183443546295,0.002505512908101082,0.07511110603809357,0.0368158295750618,0.05880828574299812,-0.04301360994577408,0.06771183013916016,-0.04823511093854904,-0.05501577630639076,0.03642645105719566,-0.04409725219011307,-0.000968982873018831,-0.09818737208843231,0.04364573955535889,-0.01965527981519699,-0.07240892946720123,-0.06166592240333557,-0.03769056499004364,0.06680130213499069,-0.009409677237272263,-0.03155260533094406,0.01438180822879076,-0.020376766100525856,-0.013004105538129807,-0.013317878358066082,-0.020026955753564835,0.06336386501789093,-0.006850185338407755,0.04254676774144173,0.0907665565609932,-0.06092909350991249,0.05212774500250816,-0.010289527475833893,-0.14701025187969208,0.039507556706666946,0.01237983163446188,-0.02380870282649994,0.0901525691151619,-0.03512198477983475,-0.024034295231103897,0.02821102924644947,-4.924544768989873e-33,0.11225283145904541,0.008146879263222218,-0.01062457263469696,0.0034320896957069635,0.07607526332139969,0.0004220858681946993,-0.011801132000982761,-0.02900066412985325,0.0008373195887543261,0.04555557295680046,0.1330150067806244,-0.004920217674225569,-0.015701722353696823,-0.0399983786046505,-0.11647149920463562,0.07284442335367203,0.005535399541258812,0.009310174733400345,0.02583044022321701,-0.0456961989402771,0.01721785217523575,-0.0776393860578537,0.02247621864080429,0.10889609903097153,-0.08807994425296783,-0.07804670929908752,-0.04870465770363808,0.053377315402030945,0.009678570553660393,-0.0028203572146594524,-0.04025327414274216,0.08166196197271347,0.09169363975524902,0.0308808833360672,0.035131245851516724,0.00034959233016707003,-0.07237569987773895,-0.019110480323433876,-0.06416741758584976,0.023765044286847115,-0.011196644976735115,-0.002343300962820649,0.061723947525024414,0.01575222611427307,-0.003953208215534687,-0.10241986066102982,-0.0037159945350140333,0.042766254395246506,-0.051748815923929214,-0.08000153303146362,0.00012679318024311215,-0.056936658918857574,-0.031291522085666656,0.042139146476984024,-0.09606114774942398,0.06419245898723602,-0.008960003964602947,0.08868501335382462,0.03163471817970276,0.03312357887625694,-0.0020174107048660517,0.003938875161111355,0.01780734769999981,0.09077252447605133,-0.04664169251918793,-0.1573878973722458,-0.014671847224235535,-0.025933632627129555,-0.05258176103234291,-0.046525679528713226,0.058885037899017334,-0.02921166457235813,-0.015976587310433388,-0.02718467079102993,-0.017304513603448868,-0.06671227514743805,0.020855523645877838,0.046231456100940704,0.012428992427885532,-0.02595086209475994,0.016052983701229095,-0.03529869765043259,-0.06032843515276909,0.15811218321323395,-0.021470261737704277,0.057201847434043884,0.03210427984595299,-0.07161325216293335,-0.045157138258218765,0.05292757600545883,-0.03188420459628105,0.011206408962607384,0.017692582681775093,-0.039011452347040176,-0.05404902622103691,8.239975708619263e-34,0.004466874524950981,-0.05111388489603996,0.08174192160367966,0.027381861582398415,-0.008151862770318985,-0.0834193080663681,-0.07727827876806259,-0.008471840061247349,-0.041824232786893845,-0.06761511415243149,0.05862369388341904,0.12027791887521744,0.03467138111591339,0.0089348079636693,-0.00013261489220894873,-0.02960095927119255,0.022260844707489014,-0.09765379875898361,-0.030451538041234016,0.011552801355719566,-0.03873618692159653,-0.058515094220638275,0.007608577609062195,0.08379688858985901,-0.056449826806783676,-0.06598057597875595,0.04207374155521393,0.008154281415045261,-0.023378172889351845,-0.01060562301427126,0.09450305253267288,0.0013011664850637317,0.0176176019012928,0.040063731372356415,0.013057866133749485,0.011909074150025845,0.07546664029359818,-0.10393543541431427,-0.06315957009792328,-0.009662790223956108,-0.029631633311510086,0.04840826243162155,0.08734580129384995,0.005397091154009104,0.01902868039906025,-0.04818698763847351,0.0698063001036644,-0.0232464037835598,0.016302354633808136,0.07257666438817978,-0.0175543911755085,0.032882895320653915,0.010334699414670467,0.023155970498919487,-0.06959301978349686,-0.04170067235827446,0.06862244755029678,-0.01539432629942894,0.05566759034991264,-0.0609835721552372,-0.024322843179106712,0.06727372109889984,0.014126932248473167,-0.010888919234275818,-0.0033125386107712984,-0.04675887152552605,-0.06380170583724976,-0.020175518468022346,0.02198602259159088,-0.055391278117895126,0.016818342730402946,-0.056013062596321106,-0.009041782468557358,-0.02830880507826805,0.055217549204826355,-0.08949587494134903,0.011207766830921173,-0.029027752578258514,-0.03781118616461754,-0.06173929199576378,-0.037031158804893494,-0.010464582592248917,-0.03171589970588684,0.037240009754896164,0.031198497861623764,-0.07965487986803055,-0.03533308953046799,-0.10078427940607071,0.07757098972797394,0.019248848780989647,0.04437611252069473,-0.059021495282649994,0.0649954229593277,-0.017215246334671974,-0.05418574810028076,-2.927231435023714e-8,-0.05171551555395126,0.09169459342956543,0.03387945517897606,0.027861841022968292,0.014570929110050201,0.046597424894571304,0.030737821012735367,-0.009674375876784325,-0.033544767647981644,-0.017240336164832115,0.03247339650988579,-0.021929478272795677,0.00735165411606431,-0.05300693213939667,-0.04316943883895874,-0.03783902898430824,0.03102245181798935,-0.06913438439369202,-0.0450594499707222,0.04692438244819641,-0.08854873478412628,0.024584393948316574,-0.07707752287387848,-0.009632043540477753,-0.01757616177201271,0.00932252872735262,0.04900147020816803,-0.0008569593774154782,0.0496029406785965,0.09609562903642654,-0.11615433543920517,0.03016480803489685,-0.06822241097688675,0.02164345793426037,0.003328158287331462,0.0023284065537154675,-0.005903327371925116,0.003300982527434826,0.032064039260149,-0.031133044511079788,-0.009270311333239079,0.08971789479255676,0.001848432351835072,0.027247067540884018,0.0018706617411226034,-0.024553971365094185,-0.04444967582821846,0.009851322509348392,0.020401066169142723,-0.04052962735295296,-0.018277890980243683,-0.03235524147748947,0.008602404966950417,0.08640965819358826,0.07016520947217941,-0.0047201113775372505,0.0038129088934510946,-0.03773198649287224,-0.02151109278202057,-0.0035444151144474745,0.04731716588139534,-0.02770278789103031,-0.06468667834997177,-0.06178249791264534]},{"text":"The night passed away, and the sun rose from the ocean; my feelings became calmer, if it may be called calmness when the violence of rage sinks into the depths of despair.","book":"1984","chapter":99,"embedding":[0.028640534728765488,0.04942848160862923,0.03026977926492691,0.11403018981218338,0.1080966368317604,-0.004002820700407028,0.04643476381897926,-0.00007041909702820703,0.08200163394212723,-0.09540101140737534,0.008655734360218048,-0.046946585178375244,0.078160360455513,-0.021423451602458954,0.037967100739479065,0.07429173588752747,-0.025792941451072693,-0.008304146118462086,-0.022459350526332855,0.03820117190480232,-0.04473946988582611,0.11591965705156326,-0.07076723873615265,0.02012990415096283,-0.06585840880870819,0.0915394052863121,0.022253336384892464,0.03413740172982216,-0.0378699004650116,-0.03663160651922226,-0.019168494269251823,-0.015719911083579063,-0.004524043295532465,0.019850097596645355,0.0031375796534121037,0.017204927280545235,-0.014756977558135986,-0.060236260294914246,0.008809159509837627,0.011576228775084019,-0.0017597759142518044,0.0318031944334507,-0.005341147072613239,-0.005361438263207674,0.022194065153598785,-0.007901896722614765,-0.0023460814263671637,-0.007281532045453787,0.0234933253377676,-0.05133587867021561,-0.023916617035865784,-0.0053356122225522995,-0.1081368699669838,-0.013134165666997433,-0.02881828509271145,-0.02498907782137394,0.0676344484090805,0.0548454113304615,0.03804893419146538,0.05823614075779915,-0.007190685719251633,0.02266627922654152,0.05622833967208862,-0.010358963161706924,0.05128715559840202,-0.004297772888094187,-0.008503790013492107,-0.02948611229658127,-0.010940511710941792,0.06921499967575073,-0.03298656642436981,-0.03204990178346634,0.06813345104455948,-0.04965456947684288,-0.14754505455493927,0.013862860389053822,0.003815853502601385,-0.01649944856762886,0.013957279734313488,0.019758516922593117,0.026571983471512794,0.02339278534054756,-0.09945620596408844,-0.056052468717098236,-0.031488995999097824,-0.06763122975826263,0.045921988785266876,0.009334798902273178,0.054763905704021454,0.08489098399877548,-0.06205959618091583,-0.032208267599344254,0.006148367188870907,0.047794267535209656,-0.00003152147837681696,-0.05200228467583656,-0.043558213859796524,0.02040720172226429,-0.05693483352661133,0.029994480311870575,0.01681947335600853,0.03685300797224045,-0.09720227867364883,-0.01372943539172411,0.025151927024126053,-0.009192557074129581,-0.08190476149320602,-0.03126523271203041,-0.06834015250205994,-0.020406540483236313,-0.16669413447380066,-0.04363011196255684,0.0024475182872265577,-0.027261296287178993,0.04577545449137688,0.06218298524618149,-0.02827061153948307,-0.03802730515599251,0.009978254325687885,0.09565538913011551,0.12148833274841309,0.0008928876486606896,0.0014010695740580559,0.04016105830669403,0.043149158358573914,0.05619221553206444,0.004383976571261883,-3.1111636332480706e-33,0.0967702716588974,-0.04721420630812645,-0.0016093876911327243,0.10691513121128082,0.07628517597913742,-0.07579471915960312,-0.027373280376195908,-0.048410363495349884,-0.052134107798337936,-0.055156268179416656,-0.042933184653520584,0.0062806447967886925,-0.022343982011079788,0.03196408599615097,-0.09173266589641571,-0.021501071751117706,-0.021615561097860336,-0.0001694125239737332,0.030626293271780014,-0.019801246002316475,-0.1130933165550232,0.04132898524403572,-0.00818400178104639,-0.028609462082386017,-0.10508060455322266,-0.0031433047261089087,0.017479095607995987,0.025173518806695938,-0.05405610799789429,0.001238664728589356,-0.0006926065543666482,-0.016602909192442894,0.08485867083072662,0.006693609990179539,0.03661054000258446,0.061533551663160324,-0.02937358245253563,0.005078665912151337,0.021365011110901833,-0.025694480165839195,-0.0801885798573494,0.056264620274305344,-0.0526878647506237,0.03504517301917076,0.0435544028878212,0.05119987577199936,0.00007276967517100275,0.026399487629532814,-0.026804598048329353,0.04420720785856247,-0.014469526708126068,0.00001279558000533143,0.08603478223085403,-0.03767242655158043,-0.03214530646800995,0.006351727060973644,0.052360594272613525,0.02290179394185543,-0.07935076206922531,-0.045461807399988174,-0.036052800714969635,-0.05373414233326912,0.019843067973852158,-0.13753148913383484,0.06701108068227768,0.025272618979215622,-0.04379997029900551,-0.04421429708600044,-0.06486041843891144,-0.05042382702231407,-0.043756041675806046,0.023097120225429535,0.030925678089261055,-0.06073443591594696,0.01051314827054739,-0.023845672607421875,0.01199460867792368,-0.002246333286166191,-0.036990005522966385,-0.05057200416922569,0.006190380081534386,-0.03128959983587265,-0.01904498226940632,0.02440081164240837,0.03862491995096207,-0.008531193248927593,0.05118471011519432,-0.040975116193294525,-0.08819309622049332,0.08025532960891724,-0.029396867379546165,-0.025604499503970146,0.16770459711551666,-0.06746631115674973,-0.06535536050796509,1.6534979246536394e-33,0.05349138751626015,-0.06727642565965652,-0.10470227897167206,0.12791281938552856,-0.003578414674848318,-0.047943539917469025,-0.09552327543497086,0.07666391879320145,-0.09492919594049454,0.05287648364901543,0.054160796105861664,-0.04585367068648338,0.03853561729192734,0.05442575365304947,0.009625621140003204,-0.058340515941381454,0.04427039250731468,0.06792977452278137,-0.04047774150967598,0.055247269570827484,-0.016502922400832176,0.018701937049627304,0.011676667258143425,-0.03961564227938652,0.020587217062711716,0.035792943090200424,0.07129677385091782,-0.055267900228500366,-0.01522783562541008,-0.021111110225319862,0.04131993651390076,0.05869797244668007,-0.03209004923701286,0.020663533359766006,0.0385664738714695,0.09790102392435074,0.028444401919841766,-0.08268090337514877,-0.07793854176998138,-0.04233401268720627,-0.027027292177081108,-0.001189265982247889,0.045000508427619934,0.036857228726148605,-0.03051324561238289,0.0002703076461330056,0.06576413661241531,0.036711204797029495,-0.052187442779541016,0.04309501126408577,-0.014653165824711323,-0.03503349423408508,0.03566472604870796,0.028391364961862564,0.06608188897371292,-0.041922327131032944,0.014895733445882797,-0.055896174162626266,-0.07206164300441742,-0.023649366572499275,-0.039226531982421875,-0.044822659343481064,-0.09961559623479843,-0.007401842158287764,0.01315508782863617,-0.07529342919588089,-0.050898581743240356,-0.00768390204757452,-0.07965371757745743,0.05882911756634712,0.060560476034879684,0.010224486701190472,-0.09909062832593918,0.04689763858914375,0.025900928303599358,-0.01763632893562317,-0.010843806900084019,0.0742647722363472,-0.09653767198324203,0.03308827430009842,-0.02316172420978546,0.034524496644735336,0.017989955842494965,0.015452968887984753,-0.0799327865242958,-0.02743476629257202,0.02565620094537735,-0.00021021056454628706,0.00687327841296792,-0.03806217759847641,-0.0832231342792511,0.029599595814943314,-0.05048806220293045,-0.0573924221098423,-0.017364375293254852,-2.7804349045368326e-8,-0.016233477741479874,-0.0026150273624807596,-0.07157055288553238,-0.021866539493203163,0.04453863203525543,0.0037326025776565075,0.11236634105443954,0.014515372924506664,-0.03290925174951553,0.042320773005485535,-0.026082774624228477,-0.006880579050630331,0.05124817416071892,0.025562914088368416,-0.016778510063886642,-0.0037972512654960155,0.09635251760482788,-0.034815602004528046,0.06135227531194687,0.01654738560318947,-0.00534797040745616,0.05062919855117798,0.004670029506087303,-0.024989116936922073,0.06711871922016144,0.01739044301211834,-0.011908321641385555,-0.003831135109066963,-0.021360086277127266,0.022545969113707542,0.10916649550199509,0.029573962092399597,-0.022572746500372887,-0.024721888825297356,-0.022879313677549362,0.04168824478983879,0.06052088364958763,0.018149154260754585,-0.025546405464410782,0.05811731889843941,-0.04262985661625862,0.1289854496717453,-0.030725374817848206,-0.009189845994114876,0.03190227225422859,-0.018955806270241737,0.06111659109592438,-0.0027764663100242615,-0.03922368213534355,0.02869618870317936,0.07879909873008728,0.022505171597003937,0.0008547570905648172,0.07481679320335388,0.03231688588857651,-0.06352033466100693,-0.056970857083797455,0.073842354118824,-0.07993756234645844,0.014626243151724339,0.1327066868543625,-0.011035999283194542,-0.05405480042099953,0.034223247319459915]},{"text":"He besought me, therefore, to leave my solitary isle and to meet him at Perth, that we might proceed southwards together.","book":"1984","chapter":100,"embedding":[0.09191808849573135,0.04716359078884125,0.050517309457063675,0.0274252537637949,0.01100391335785389,-0.003770138369873166,0.0692242756485939,-0.0957828238606453,-0.026939166709780693,0.0394803024828434,-0.029943980276584625,-0.02736155316233635,0.0011494371574372053,0.01213316060602665,0.048229120671749115,0.027859659865498543,-0.040334559977054596,-0.10192158073186874,-0.022220833227038383,0.021840089932084084,-0.018232228234410286,0.03112093172967434,-0.02093415893614292,-0.019765960052609444,-0.03782777488231659,0.0384165458381176,0.06519336253404617,0.0522833913564682,0.029430940747261047,0.0021495111286640167,0.01249647419899702,-0.04208378493785858,-0.037197601050138474,0.01623421721160412,0.02751169539988041,0.05787942558526993,0.045307058840990067,-0.03543119877576828,0.027571044862270355,-0.010018303990364075,0.00252018915489316,0.010181344114243984,0.09893053025007248,0.13054248690605164,-0.05825301259756088,0.004234878811985254,-0.042068954557180405,-0.01844421587884426,0.04941941425204277,0.06127859652042389,-0.000030338283977471292,0.0034206919372081757,-0.03328093886375427,-0.09427261352539062,0.039474956691265106,0.0832115039229393,0.0038027712143957615,-0.07757996022701263,-0.004538669716566801,-0.06396869570016861,0.023467006161808968,0.074612095952034,-0.07306235283613205,0.04427352920174599,0.00865387637168169,-0.04836168885231018,-0.026272062212228775,0.03777848184108734,-0.020090237259864807,0.026075219735503197,-0.02997163124382496,-0.02255765162408352,-0.058199506253004074,-0.032817088067531586,-0.07400611788034439,-0.06870242953300476,0.021260688081383705,-0.06642918288707733,-0.005021054297685623,0.014373336918652058,-0.035371627658605576,0.07325434684753418,-0.009515135549008846,0.01012488268315792,0.006051874253898859,-0.08791953325271606,0.07031071931123734,-0.10188533365726471,0.023224765434861183,-0.023208094760775566,0.04411640763282776,-0.11566735804080963,-0.0020271087996661663,0.03555191308259964,-0.023069746792316437,-0.004242819268256426,-0.06446564197540283,0.08299428224563599,-0.014986300840973854,0.060086194425821304,-0.0013769101351499557,0.047557104378938675,-0.00045016902731731534,0.06535240262746811,-0.029266230762004852,0.0014163620071485639,-0.07734336704015732,-0.028629407286643982,0.07239972054958344,-0.03439619764685631,-0.04567244276404381,-0.1075710579752922,-0.03319739177823067,0.06391210108995438,0.06490332633256912,0.09706344455480576,-0.004113642033189535,0.03778929263353348,-0.014406695030629635,-0.03832187503576279,0.028986332938075066,0.08443508297204971,-0.022125253453850746,0.11764214932918549,-0.028146078810095787,-0.043135419487953186,0.07299412786960602,-2.9546597847475298e-33,0.05164337158203125,-0.05368386209011078,-0.008079728111624718,0.06386633217334747,0.07432946562767029,-0.04647206515073776,-0.039590984582901,-0.04581122100353241,-0.04264292120933533,0.05276506394147873,0.03687649220228195,-0.0067727044224739075,0.06649815291166306,0.008109822869300842,-0.058554187417030334,0.04875721409916878,0.09600808471441269,-0.05451039597392082,0.006811950821429491,-0.06283196061849594,-0.001709568197838962,-0.06712811440229416,0.040769901126623154,-0.09471108764410019,-0.0311988964676857,-0.08719619363546371,-0.041916847229003906,-0.04458681866526604,0.08726653456687927,0.023748936131596565,-0.03228437528014183,0.1468944400548935,-0.0393514409661293,0.008396928198635578,-0.025550752878189087,-0.012717882171273232,-0.09946952015161514,-0.08777162432670593,-0.04603268578648567,0.042669106274843216,-0.001251665293239057,-0.019738169386982918,-0.04153275117278099,-0.005787590052932501,0.011456867679953575,-0.10244695842266083,0.021476982161402702,0.07034678012132645,0.015162772499024868,0.009996726177632809,-0.04827936738729477,-0.01799091510474682,-0.0034240775275975466,-0.017307033762335777,-0.0265900157392025,-0.011814874596893787,-0.008501145988702774,0.043051037937402725,0.05374128744006157,0.06262661516666412,0.02360784448683262,-0.07507079094648361,0.04537568986415863,0.02937769517302513,0.008773301728069782,-0.07615836709737778,0.03161196410655975,-0.0654144212603569,-0.0591345950961113,-0.0059239682741463184,-0.04681658744812012,0.02744852378964424,-0.0037031613755971193,-0.0031995440367609262,-0.020127305760979652,0.004349247552454472,0.01913025602698326,0.07966560125350952,-0.0036191281396895647,-0.09355884045362473,-0.058786965906620026,0.08996651321649551,-0.12378067523241043,0.04733285307884216,0.05854544788599014,0.009471314959228039,0.06888467818498611,-0.13924001157283783,-0.0029731765389442444,0.034487534314394,-0.06004319712519646,0.014091952703893185,-0.0190252885222435,-0.08799871802330017,-0.05365855246782303,-5.5651543845349755e-34,0.01328028179705143,-0.022654661908745766,-0.01856359839439392,-0.049518074840307236,-0.06132901832461357,-0.045595597475767136,0.11777268350124359,0.04376102238893509,-0.017433051019906998,0.003929522354155779,-0.10931966453790665,0.05163126066327095,0.11197755485773087,-0.005232245661318302,0.010220038704574108,0.009151257574558258,0.10007939487695694,-0.008356867358088493,0.0032657666597515345,0.0023728942032903433,0.0700766071677208,0.0037781880237162113,-0.002331141149625182,-0.07089244574308395,0.0363154262304306,-0.005538795609027147,0.012563902884721756,-0.05053276568651199,-0.1034218892455101,-0.02521415986120701,-0.019824417307972908,0.0009813890792429447,-0.037522539496421814,-0.05007806420326233,-0.07594241946935654,0.10230151563882828,-0.014844872988760471,-0.022198304533958435,-0.003111672354862094,0.04265609383583069,-0.04552203416824341,-0.006580309476703405,0.046080976724624634,0.03781938925385475,-0.0023007544223219156,0.010483224876224995,-0.02935233898460865,0.0878157764673233,0.020053314045071602,0.03391299769282341,-0.020992590114474297,0.07228539884090424,-0.01662108302116394,-0.030292874202132225,-0.001835472066886723,-0.006205037701874971,-0.06754150241613388,-0.04652594029903412,-0.02449374832212925,-0.07840931415557861,-0.04012239724397659,-0.005699362605810165,0.009379250928759575,-0.016127506271004677,0.07113916426897049,0.007168884389102459,-0.06319563090801239,-0.001601493451744318,0.03071785904467106,0.02392987161874771,-0.06894712150096893,-0.06408616900444031,-0.02993639186024666,-0.018131691962480545,0.0880277082324028,-0.0461789034307003,0.019314229488372803,-0.12869222462177277,-0.018798716366291046,-0.02059865929186344,-0.008403155952692032,0.0031861269380897284,0.02884894795715809,-0.033919837325811386,0.01438713539391756,-0.07289282977581024,0.032565053552389145,0.0655001550912857,0.07706379145383835,-0.0675278902053833,0.046641573309898376,-0.03404746577143669,0.0602213591337204,-0.05801769718527794,0.015841344371438026,-2.5339758735754003e-8,-0.027279740199446678,0.02891279011964798,0.013510109856724739,-0.009371045976877213,-0.01612899638712406,0.07546205818653107,0.05076337233185768,-0.006231341045349836,-0.03418359160423279,0.07582354545593262,-0.06552986055612564,0.04810881242156029,0.029484542086720467,-0.025265222415328026,0.03937918692827225,0.07021128386259079,0.027099791914224625,-0.07690516114234924,-0.05234156548976898,-0.017702626064419746,-0.08107373863458633,0.0402972511947155,-0.012026646174490452,0.016981087625026703,-0.032642919570207596,0.06011296808719635,0.08322624862194061,0.028183570131659508,0.0260116308927536,0.031239431351423264,-0.0340922512114048,0.04543500766158104,-0.05376260355114937,0.022010913118720055,-0.03296308591961861,0.005116339772939682,-0.05828726664185524,0.0819665715098381,0.04529176652431488,-0.027684658765792847,-0.018536435440182686,0.09701421856880188,-0.03654841333627701,0.08567529916763306,-0.0009775769431144,0.04011912643909454,0.042500488460063934,0.05202986299991608,-0.051584642380476,-0.02114151045680046,-0.04816891998052597,0.05143483355641365,0.048473235219717026,0.03845757246017456,0.0772705078125,-0.046851057559251785,-0.054327670484781265,-0.01583302766084671,-0.0038509126752614975,0.06019682064652443,0.021462099626660347,0.005229581613093615,-0.04138166457414627,-0.13119618594646454]},{"text":"Between two and three in the morning the moon rose; and I then, putting my basket aboard a little skiff, sailed out about four miles from the shore.","book":"1984","chapter":100,"embedding":[0.09697408974170685,0.10866280645132065,0.06399913132190704,0.07523539662361145,0.04776987433433533,-0.03555597737431526,-0.020431844517588615,-0.016334818676114082,-0.04024959355592728,-0.037560511380434036,-0.007841061800718307,-0.012520060874521732,0.06310322880744934,-0.04577615112066269,0.003699966473504901,0.04289305582642555,-0.026643114164471626,0.010054883547127247,-0.07632477581501007,-0.054620563983917236,-0.007077815476804972,0.024284370243549347,-0.004398838151246309,0.015085408464074135,0.005257181823253632,0.04608849436044693,0.0352596752345562,-0.029366612434387207,-0.05830053240060806,-0.027361640706658363,-0.09952177107334137,0.012107033282518387,-0.05322901904582977,-0.001081573311239481,0.016053905710577965,0.048424843698740005,0.030725333839654922,-0.06647346913814545,0.06152988597750664,-0.04236392304301262,0.026396259665489197,-0.02603612095117569,0.00640910817310214,0.0738796591758728,-0.004232731647789478,-0.015521406196057796,0.013052048161625862,-0.028101619333028793,0.06650771200656891,0.06649555265903473,-0.04812447726726532,0.05793951824307442,-0.05321258679032326,-0.021283820271492004,-0.05720160901546478,-0.006567508447915316,-0.02554241381585598,-0.002430172637104988,0.07424741983413696,0.042097073048353195,0.02160787209868431,0.04590176045894623,0.04710923507809639,-0.03370106220245361,-0.0054589384235441685,-0.032107215374708176,-0.106327585875988,-0.08471813052892685,0.00517678027972579,0.03139837458729744,-0.036310359835624695,0.06756974011659622,-0.0979696735739708,-0.01104486919939518,-0.06076495349407196,-0.08216328173875809,0.040441855788230896,0.01243218407034874,-0.023651568219065666,0.005715054925531149,-0.071359783411026,-0.02870509959757328,-0.03600265085697174,0.1236424595117569,-0.01491317618638277,-0.04158134385943413,0.05235619097948074,0.07511860877275467,0.07449488341808319,0.021097222343087196,-0.07225297391414642,-0.07018081098794937,-0.03197888657450676,-0.009865112602710724,-0.04792755842208862,-0.10784781724214554,-0.04511147364974022,-0.04390158876776695,0.050082169473171234,0.04051364213228226,0.06576237827539444,0.03969086334109306,-0.002713187597692013,0.00619176821783185,0.03499620407819748,-0.009333034977316856,-0.06884870678186417,-0.00825426820665598,-0.02029949240386486,-0.03232891112565994,0.033493999391794205,-0.007773573510348797,0.08426147699356079,0.03981167450547218,-0.04163850098848343,0.01839796081185341,-0.09886687248945236,0.013323064893484116,0.015540888532996178,0.049348775297403336,0.04343411326408386,0.03336769714951515,0.049836236983537674,0.01214534230530262,-0.09269417077302933,-0.055540621280670166,0.12689490616321564,-2.666578629126627e-33,0.01683778129518032,-0.003396432613953948,0.03474992886185646,0.08118703961372375,0.16986724734306335,-0.06319919973611832,-0.041659481823444366,0.03930887207388878,-0.025355670601129532,0.017170049250125885,-0.015852874144911766,0.025166302919387817,0.020168038085103035,0.011638353578746319,0.009016888216137886,-0.005095968954265118,0.07889717817306519,-0.12291136384010315,0.004961644299328327,-0.00259542278945446,-0.01938849687576294,-0.06863966584205627,-0.021495075896382332,-0.06750157475471497,0.01371042151004076,0.009779253974556923,-0.07082098722457886,-0.0596320815384388,0.03254798427224159,0.06948456168174744,0.057398829609155655,-0.03989490494132042,0.07087153196334839,-0.001569118001498282,0.023792998865246773,-0.019132928922772408,-0.01681612990796566,-0.06165830045938492,-0.025181468576192856,0.01761295460164547,0.01861497387290001,-0.022885099053382874,0.07131467014551163,-0.007312727626413107,-0.04586844518780708,-0.02887345664203167,0.012607164680957794,0.034809261560440063,0.00022200228704605252,-0.04561788961291313,-0.021666958928108215,0.02924324944615364,0.09701138734817505,-0.0051416936330497265,-0.0021839833352714777,-0.00798974558711052,0.04188229888677597,-0.026817690581083298,-0.036321017891168594,0.10429316759109497,0.003265194594860077,0.037598904222249985,0.08616939932107925,-0.04214118793606758,0.03266293555498123,0.028311092406511307,-0.04209643974900246,-0.025550028309226036,-0.05152374133467674,-0.016756175085902214,-0.017868943512439728,-0.0049360767006874084,-0.04094000533223152,-0.024178987368941307,-0.008999989368021488,-0.05272167921066284,0.07835309952497482,-0.08844807744026184,-0.014298231340944767,-0.04691145196557045,0.014231564477086067,0.040946342051029205,-0.033740587532520294,0.0058037093840539455,-0.009315150789916515,-0.00928784441202879,-0.014831287786364555,-0.056522298604249954,-0.07068722695112228,-0.04910748451948166,-0.07202227413654327,0.01609390787780285,0.0848073810338974,-0.099320188164711,-0.044227633625268936,-5.163176642527024e-34,0.050436943769454956,0.04636700451374054,0.013739410787820816,-0.017527230083942413,0.026259087026119232,-0.06407041102647781,0.06769482791423798,0.0902787521481514,-0.12386489659547806,0.039583466947078705,-0.1409102976322174,-0.0356290228664875,0.1035885289311409,-0.012976892292499542,0.01776784472167492,0.011203567497432232,0.10707133263349533,0.02486024796962738,-0.0032657356932759285,0.0152332354336977,0.051798246800899506,-0.014507307671010494,0.03291599079966545,0.008048053830862045,-0.037642668932676315,0.04275398701429367,0.19403350353240967,-0.06782282888889313,-0.09438414126634598,-0.04023879021406174,0.023364558815956116,0.01574922725558281,0.05022073909640312,-0.0624924935400486,-0.06465128064155579,0.05292469635605812,0.02228591777384281,-0.013582266867160797,-0.015393020585179329,-0.01091674529016018,0.013976244255900383,-0.04380599781870842,0.00284653902053833,0.05320904031395912,-0.0017147507751360536,-0.01628829725086689,-0.03292674943804741,0.10344294458627701,-0.013306730426847935,0.0842454582452774,-0.056995756924152374,-0.04098585247993469,-0.009667433798313141,0.02110237069427967,-0.02193380333483219,-0.03636503964662552,0.0077978880144655704,-0.039162181317806244,0.04796658828854561,-0.02605069987475872,-0.10030091553926468,0.015927491709589958,-0.0013408601516857743,0.07156285643577576,-0.02200177311897278,-0.031656473875045776,-0.02739168331027031,0.021081021055579185,-0.10273465514183044,-0.06594432145357132,-0.026057487353682518,0.012598816305398941,-0.0394304096698761,0.07133545726537704,-0.0061310771852731705,0.0381469801068306,-0.03732447326183319,0.03435543552041054,-0.02234765887260437,0.03935404121875763,-0.07975456118583679,0.0029676528647542,0.0037338919937610626,-0.023683734238147736,-0.021920306608080864,-0.09415828436613083,0.012994407676160336,-0.021934378892183304,0.03491916134953499,-0.0456678569316864,0.04767566919326782,0.03234356269240379,-0.003295379690825939,-0.011103622615337372,-0.050982262939214706,-2.8028065202079233e-8,0.03874010965228081,0.08295252174139023,0.033648934215307236,0.05183643102645874,0.026882154867053032,0.06567668914794922,0.11176440119743347,0.1139858067035675,-0.05791761726140976,-0.0682213231921196,-0.032292574644088745,0.028117652982473373,-0.018209705129265785,0.02872633747756481,0.067406065762043,0.00498257577419281,0.08837609738111496,-0.016200564801692963,0.01755313202738762,-0.016157131642103195,0.04218945652246475,0.04419253021478653,0.005034327507019043,-0.04998037591576576,-0.03667149692773819,0.02080696076154709,-0.020077630877494812,0.027148889377713203,-0.03485743701457977,-0.05754118412733078,0.02580634318292141,0.008404447697103024,-0.09492184221744537,-0.055272024124860764,-0.07204709202051163,-0.024744074791669846,0.004966875538229942,-0.007013446651399136,0.022595228627324104,-0.03811212256550789,-0.023556647822260857,0.15103955566883087,0.010290190577507019,0.02045920491218567,-0.0049377731047570705,0.06549683958292007,-0.02769957110285759,0.00494401017203927,-0.028407834470272064,0.007883711718022823,-0.043302543461322784,0.011033335700631142,0.033891741186380386,0.0012743676779791713,0.0970187783241272,-0.031549375504255295,-0.03537096083164215,-0.08789501339197159,-0.10422263294458389,0.024315396323800087,0.028230654075741768,0.006548980250954628,-0.11297225207090378,-0.014594144187867641]},{"text":"Thus situated, my only resource was to drive before the wind.","book":"1984","chapter":101,"embedding":[0.08895459771156311,0.08167801797389984,0.03999302536249161,0.05855090171098709,0.08881116658449173,-0.030783316120505333,0.010776728391647339,-0.011047263629734516,-0.03716450184583664,0.0038281558081507683,0.03347640484571457,0.039575397968292236,0.06307555735111237,0.026542142033576965,0.05236692726612091,0.04511873051524162,0.08337311446666718,-0.07137037813663483,0.006194513291120529,0.03677179664373398,-0.04974846541881561,0.08492224663496017,0.058171264827251434,-0.009678318165242672,0.03466306999325752,0.021064601838588715,-0.036573149263858795,0.08547644317150116,0.09566899389028549,-0.0661960169672966,-0.026292843744158745,0.04039372131228447,-0.05384983867406845,0.04228530451655388,0.05220794305205345,0.08238030225038528,0.06490364670753479,-0.036463506519794464,0.023705540224909782,-0.0027186155784875154,0.026419639587402344,-0.002040119143202901,0.06606901437044144,0.0056277974508702755,-0.019740652292966843,0.0259688850492239,0.0506221167743206,-0.008414734154939651,0.07254212349653244,-0.013138184323906898,-0.05321129038929939,0.01664804480969906,-0.034224655479192734,-0.09149275720119476,-0.05544694885611534,0.014140709303319454,0.014553647488355637,0.026629295200109482,-0.012066826224327087,-0.02920827828347683,0.07778548449277878,-0.047691117972135544,-0.06136032193899155,0.009760680608451366,0.03329560160636902,0.01056741364300251,-0.01030731201171875,0.038235533982515335,0.012243405915796757,-0.02430703490972519,-0.005992288701236248,0.00043014471884816885,-0.0478661023080349,-0.012249333783984184,0.021502293646335602,-0.05526554211974144,0.027569061145186424,-0.02464579977095127,0.07595224678516388,-0.06955912709236145,-0.008635522797703743,0.07724582403898239,0.016376536339521408,0.07113408297300339,0.023932937532663345,0.0004539575893431902,0.013110728934407234,0.02497388981282711,0.1051398441195488,-0.0164276584982872,0.025685328990221024,-0.07907719165086746,-0.044203709810972214,0.05677538365125656,0.09541834890842438,0.025278916582465172,-0.006348737515509129,-0.03734876215457916,-0.0326666384935379,0.027887022122740746,0.04138979688286781,0.03609820082783699,-0.0338313914835453,0.02917747013270855,-0.08509891480207443,0.004787526559084654,-0.1383892446756363,0.04423770681023598,-0.0561780147254467,-0.03882226720452309,-0.0322754867374897,-0.019834425300359726,0.0024499944411218166,-0.02183551713824272,-0.05192168429493904,0.05308457091450691,-0.07153350114822388,0.004878203850239515,-0.014025329612195492,0.05240953713655472,0.01573428325355053,0.016518857330083847,0.028094805777072906,0.052007097750902176,0.009640667587518692,-0.1368885487318039,0.07453391700983047,-5.783387022981545e-33,-0.04106764867901802,0.008098337799310684,0.017111239954829216,0.030993938446044922,0.07551161199808121,-0.035049475729465485,-0.08912666141986847,0.026579255238175392,-0.04543665051460266,-0.016601597890257835,0.06364389508962631,0.022696325555443764,-0.05684392899274826,-0.04792744666337967,0.031401220709085464,-0.025462664663791656,-0.012845124118030071,0.009414341300725937,0.007638917770236731,-0.047061678022146225,-0.04169613495469093,-0.08714928478002548,-0.023239044472575188,-0.048198942095041275,0.030463939532637596,-0.014435715973377228,0.06516047567129135,0.014819116331636906,-0.002361767692491412,0.04818937927484512,-0.027509592473506927,0.006713137496262789,-0.016373982653021812,0.015662183985114098,0.04553035646677017,0.0346127413213253,-0.05606115236878395,-0.08256877958774567,-0.062025830149650574,0.02543727494776249,-0.04853314906358719,0.03666434809565544,-0.0005627420614473522,-0.005468383897095919,-0.00028076209127902985,-0.025442305952310562,-0.011626103892922401,0.0549500435590744,-0.09895794838666916,0.04385823383927345,-0.021996308118104935,0.07840235531330109,0.03409501537680626,-0.04665553942322731,-0.018783655017614365,0.004848443903028965,0.02457190677523613,0.03644176200032234,-0.07774084806442261,-0.014567267149686813,0.0072723072953522205,-0.02591392770409584,0.05055904760956764,-0.03244364261627197,-0.016408728435635567,-0.08013639599084854,0.0057455999776721,-0.04363412782549858,0.02849787287414074,-0.0015612485585734248,-0.005479630082845688,-0.05812334641814232,0.07338471710681915,0.06833324581384659,-0.006714614573866129,0.03131159022450447,-0.031966641545295715,0.012919683009386063,-0.08743627369403839,-0.010217339731752872,0.04673529788851738,0.031248534098267555,-0.048114147037267685,0.02788158878684044,0.07156617194414139,-0.07549870014190674,0.07420635223388672,-0.13967359066009521,-0.03795542195439339,-0.02961699850857258,-0.07786737382411957,0.047573406249284744,0.03845275565981865,-0.049171485006809235,-0.09133899211883545,3.7568244765883514e-33,0.050123944878578186,-0.04355057701468468,0.03314290568232536,-0.06335125863552094,-0.03465959057211876,0.02803202159702778,0.07590486109256744,-0.10198040306568146,-0.07982876896858215,0.08949286490678787,-0.06814531236886978,0.0065370770171284676,0.0022601517848670483,0.011375192552804947,0.022010384127497673,0.025457829236984253,0.08491696417331696,0.00951010175049305,-0.05268664285540581,0.0355985164642334,0.01672641560435295,0.026007920503616333,0.0028125776443630457,0.08426699042320251,0.027367694303393364,0.059931639581918716,0.0004206032317597419,0.033764056861400604,-0.07874224334955215,-0.01643119566142559,-0.021383343264460564,0.025753026828169823,-0.09902597963809967,-0.1075599268078804,-0.0856490209698677,0.0704037994146347,-0.014958050101995468,-0.008139449171721935,-0.09874390810728073,-0.030002528801560402,-0.03131137788295746,0.009359627030789852,0.06409207731485367,0.036704204976558685,0.009970605373382568,-0.038525667041540146,0.00933756958693266,-0.04581712931394577,-0.04784972593188286,0.0026852807495743036,0.0490289181470871,0.023199064657092094,0.014389469288289547,-0.029936084523797035,0.07726161926984787,0.009333251975476742,0.06395620852708817,-0.051568206399679184,-0.020734483376145363,-0.035219840705394745,0.006935446057468653,-0.026002943515777588,-0.10881520807743073,0.017176073044538498,-0.005343744996935129,-0.0554010383784771,-0.037193480879068375,0.0827835202217102,-0.03257092460989952,-0.023227808997035027,-0.04520401358604431,0.038719192147254944,-0.03350755199790001,-0.013304662890732288,-0.029449444264173508,0.010985529981553555,0.11417921632528305,0.025042742490768433,-0.041654761880636215,-0.030887024477124214,-0.07779786735773087,-0.026601716876029968,-0.004985242150723934,-0.02409163862466812,0.030307376757264137,0.02082981914281845,-0.08360341191291809,-0.13105125725269318,0.04420699179172516,0.006921499501913786,-0.06301504373550415,0.010187997482717037,-0.06027723848819733,0.0864357128739357,-0.03855424374341965,-2.1886906509394066e-8,-0.046410802751779556,0.07358137518167496,0.0697823241353035,0.042292144149541855,-0.07590804249048233,-0.04297112673521042,0.09230590611696243,0.08819188922643661,-0.02718322165310383,0.09441440552473068,0.018043167889118195,0.00029479083605110645,0.09746375679969788,0.036182381212711334,0.03894263133406639,-0.038267288357019424,0.034409958869218826,-0.06708411127328873,-0.06295867264270782,-0.02020159922540188,0.13159215450286865,0.06303676962852478,-0.07644148170948029,0.027155660092830658,0.003704941365867853,-0.00771861569955945,-0.0004375524877104908,-0.03864213079214096,0.10713649541139603,0.04139969125390053,-0.014484540559351444,0.00209486810490489,-0.03552896901965141,-0.06749936938285828,-0.1296006143093109,-0.002164740115404129,-0.04450257495045662,0.07624747604131699,-0.023216307163238525,-0.000176462039235048,-0.026110630482435226,0.0290638729929924,-0.0009618226322345436,0.10093655437231064,0.006122124381363392,0.07466591149568558,-0.03360399603843689,0.000492812367156148,-0.05696694925427437,-0.04137524589896202,-0.02653188444674015,0.014952911995351315,0.04664991423487663,0.08834720402956009,0.06721892952919006,0.05356923118233681,-0.016088979318737984,-0.002789812395349145,-0.06976315379142761,0.05113809183239937,-0.024112574756145477,0.006650613155215979,-0.14362733066082,0.03609009459614754]},{"text":"I constructed another sail with a part of my dress and eagerly steered my course towards the land.","book":"1984","chapter":101,"embedding":[0.0502929650247097,0.08691360056400299,0.03407803550362587,0.055001579225063324,0.04107768088579178,-0.10456178337335587,0.024958180263638496,-0.050328947603702545,-0.08380647748708725,0.0336008258163929,0.003611332271248102,-0.018880043178796768,-0.00790248904377222,0.014263796620070934,0.030062397941946983,0.03488711640238762,-0.06227552890777588,0.017741885036230087,-0.0401562936604023,0.08941880613565445,-0.03697388246655464,0.07037419080734253,0.050502315163612366,0.06151600554585457,-0.04329323023557663,-0.04377169907093048,0.032337967306375504,0.054267916828393936,-0.0064003043808043,-0.07261232286691666,-0.07239247113466263,0.03658002242445946,-0.03178146481513977,0.05197426304221153,-0.04314889386296272,0.0802314504981041,0.028952235355973244,-0.056676387786865234,0.0008628102368675172,-0.0070872982032597065,0.014643996953964233,0.030625538900494576,0.02944782003760338,0.11184592545032501,0.059480972588062286,0.001748866867274046,0.02513734996318817,0.005695538129657507,0.021959932520985603,0.0510403998196125,-0.04517689347267151,-0.039587829262018204,-0.029244324192404747,-0.1369132697582245,-0.03259795904159546,0.10336847603321075,0.029286004602909088,0.05591719597578049,0.0276555847376585,0.026455108076334,0.049834705889225006,0.02465820498764515,-0.05177814140915871,0.02369646541774273,-0.04587126895785332,-0.06174010410904884,-0.05026418715715408,0.05531356483697891,-0.01154998317360878,0.07247056066989899,0.05079291760921478,-0.027440348640084267,0.04225068911910057,0.013043194077908993,-0.017047325149178505,-0.09178295731544495,0.04302408546209335,-0.02080819383263588,-0.029780641198158264,-0.005490102339535952,-0.10088862478733063,-0.02398403361439705,-0.019668586552143097,0.08637560158967972,0.027290722355246544,-0.05525742098689079,0.05095437541604042,0.010364570654928684,0.07151412218809128,-0.035132039338350296,0.05429690703749657,-0.08796518296003342,-0.08412700891494751,-0.009212709031999111,0.0021895617246627808,0.017593836411833763,-0.10315315425395966,0.003748774528503418,0.0021293857134878635,0.04042269289493561,0.0327809676527977,-0.002051243558526039,-0.018158458173274994,0.013180846348404884,-0.06413859128952026,0.005466174799948931,-0.03551161289215088,0.040661267936229706,0.0160775538533926,-0.07950706034898758,-0.035854194313287735,0.006264579016715288,0.03723502159118652,0.010868247598409653,-0.025247514247894287,0.030710596591234207,-0.06414368748664856,-0.01619083620607853,0.03188460320234299,0.0680515244603157,0.06390400230884552,0.03938590735197067,0.06320729106664658,0.009055200032889843,-0.07709129899740219,-0.08873181790113449,0.10852593183517456,-4.687360865720644e-33,0.04001713544130325,0.03307986631989479,-0.03191183879971504,0.07083240896463394,0.1013728529214859,-0.03975478559732437,-0.026665300130844116,0.021510997787117958,-0.12111056596040726,0.019193682819604874,0.09578250348567963,-0.04846334457397461,-0.020848512649536133,0.0274673979729414,0.0042204419150948524,-0.0882914587855339,0.028731178492307663,-0.01729620061814785,-0.02837640978395939,0.027674496173858643,0.0026787472888827324,-0.022187063470482826,0.020797619596123695,-0.11433995515108109,0.01834959350526333,0.03573985397815704,0.04788830876350403,0.02899494394659996,-0.06189870089292526,0.05770358815789223,0.08190137892961502,-0.029256435111165047,0.004339090082794428,0.014021900482475758,0.008699120953679085,0.045281797647476196,0.01640077866613865,-0.05696416273713112,-0.019175784662365913,0.04373721033334732,-0.038810890167951584,-0.020151780918240547,0.09011552482843399,0.005505566019564867,-0.04841214418411255,-0.05984733626246452,0.04147549718618393,0.0963040217757225,-0.07022121548652649,0.055321577936410904,-0.050193626433610916,-0.0012349740136414766,0.044549793004989624,-0.03779890388250351,0.021240385249257088,-0.015081752091646194,0.003533816896378994,0.017768071964383125,-0.03874669969081879,-0.04859375208616257,-0.04245796054601669,-0.05270227789878845,-0.015342265367507935,0.049386508762836456,0.01570149138569832,0.050576623529195786,0.003141953144222498,-0.0555751658976078,0.002306316513568163,-0.06860573589801788,-0.10051731765270233,-0.01268322765827179,-0.059025928378105164,0.056547097861766815,0.04781537130475044,0.03235621750354767,-0.014593197032809258,-0.027354951947927475,0.039690032601356506,-0.06543684005737305,-0.02988761104643345,0.03390884026885033,-0.10730019956827164,0.07956640422344208,0.048212941735982895,-0.043860699981451035,-0.003850719192996621,-0.06811315566301346,-0.0533905103802681,0.006707109976559877,-0.044553130865097046,0.01733572408556938,0.0343829020857811,-0.13310904800891876,-0.0006351481424644589,2.526693148339844e-33,0.06234651431441307,0.06731294840574265,0.016363030299544334,-0.003305417252704501,-0.01226578839123249,-0.04946228489279747,0.045225590467453,-0.08625365793704987,-0.03878702595829964,0.05777982994914055,-0.06555187702178955,0.020580559968948364,0.029788637533783913,-0.017397740855813026,-0.052673619240522385,0.013792837038636208,0.0847761258482933,0.06302328407764435,0.04125119000673294,-0.04916386306285858,-0.020125119015574455,0.029062669724225998,0.0168165173381567,-0.020794730633497238,-0.037136808037757874,0.031172802671790123,0.053621046245098114,0.009287525899708271,-0.03565530478954315,-0.05607021227478981,0.03386782482266426,-0.022834839299321175,-0.04272099956870079,-0.0035427692346274853,-0.0648244097828865,0.10021807253360748,-0.03913947194814682,0.03150107339024544,-0.013117579743266106,-0.044972267001867294,0.04162612557411194,-0.02159576117992401,0.11332709342241287,0.05016842111945152,-0.01806262694299221,-0.10778351873159409,-0.03819793835282326,0.05994684621691704,-0.01004080194979906,0.00961501244455576,-0.09119689464569092,0.055955640971660614,0.07800870388746262,-0.04206813871860504,0.02944212220609188,-0.00038625806337222457,0.017404848709702492,-0.051293231546878815,0.04191753640770912,-0.0038486667908728123,0.0009645498939789832,0.04947798699140549,-0.047841351479291916,0.007055808790028095,0.025744589045643806,-0.011017451994121075,-0.050998762249946594,0.013594244606792927,-0.07642368972301483,0.02868177741765976,-0.0439307875931263,0.05721871927380562,-0.042752280831336975,0.07141789048910141,-0.022354915738105774,-0.0458635538816452,0.03402980789542198,0.052093733102083206,-0.003384539159014821,0.08503067493438721,0.10003611445426941,-0.07828089594841003,0.011533882468938828,-0.051773056387901306,0.04196367412805557,-0.02397601678967476,-0.06938382238149643,0.008909065276384354,0.03974960371851921,-0.05820152908563614,0.01914921961724758,0.034542303532361984,-0.008873386308550835,-0.014189428649842739,0.014875649474561214,-2.3065995335969092e-8,-0.00923716276884079,0.03251257166266441,0.03370789811015129,-0.013845694251358509,-0.042635079473257065,-0.012012618593871593,-0.03588155657052994,-0.006085519678890705,-0.0851430892944336,-0.10105618834495544,-0.047607071697711945,0.0683002844452858,0.05015169456601143,0.09639185667037964,0.06332151591777802,-0.07464047521352768,0.08933602273464203,-0.028849806636571884,-0.06061092019081116,-0.026600893586874008,0.04471329599618912,0.0504150390625,-0.06317491084337234,-0.01956760883331299,-0.07233669608831406,-0.0033927808981388807,-0.00021623095381073654,0.055668801069259644,0.019801516085863113,0.032710712403059006,0.07615005224943161,0.03900955989956856,-0.09839919954538345,0.04453645274043083,-0.09369515627622604,-0.006679292302578688,-0.07124944776296616,-0.03317397087812424,0.08247917145490646,0.028894443064928055,0.0027195762377232313,0.11020127683877945,0.048110220581293106,0.07523281872272491,0.024139996618032455,0.07831370085477829,0.008522098883986473,-0.06403379887342453,-0.011476337909698486,-0.015345887281000614,-0.017258619889616966,-0.03125666454434395,0.04252012073993683,0.09520123898983002,0.03530842065811157,0.026869775727391243,0.008729594759643078,-0.033346161246299744,-0.07773777842521667,0.03171701356768608,-0.044404227286577225,-0.04053472355008125,-0.1331544667482376,-0.06509896367788315]},{"text":"I then moved forward, and a murmuring sound arose from the crowd as they followed and surrounded me, when an ill-looking man approaching tapped me on the shoulder and said, “Come, sir, you must follow me to Mr.","book":"1984","chapter":102,"embedding":[-0.037950560450553894,-0.014831043779850006,0.017395544797182083,-0.0129420580342412,0.014709847047924995,-0.03567032143473625,0.10940264910459518,-0.08413355052471161,0.006015013437718153,-0.08204755932092667,0.010458306409418583,0.0009652741719037294,-0.0012808593455702066,-0.032566484063863754,-0.0034512572456151247,-0.0007992007886059582,0.059626124799251556,-0.023222383111715317,0.00404876796528697,0.03263447433710098,-0.07792775332927704,0.08532941341400146,-0.02034895122051239,-0.013649138621985912,-0.0837322473526001,-0.04084104672074318,0.03609735146164894,-0.015264460816979408,0.0452335923910141,0.04264741390943527,-0.008326902985572815,-0.018258562311530113,0.05722819268703461,0.012488546781241894,-0.12437573075294495,0.0617845356464386,0.01045681070536375,-0.009020097553730011,0.002558899112045765,0.006617364007979631,0.013372795656323433,0.049279604107141495,0.07603079080581665,0.010366983711719513,0.020348096266388893,0.027522655203938484,-0.048056814819574356,0.037154924124479294,0.06212543323636055,-0.027793167158961296,-0.11920488625764847,0.0038217161782085896,-0.014224909245967865,0.019996147602796555,-0.04758213460445404,0.053419940173625946,0.05942821875214577,0.006307411473244429,-0.03548281639814377,-0.024827849119901657,-0.017324173822999,-0.09266245365142822,0.0425630658864975,0.029704764485359192,0.022260818630456924,-0.030440688133239746,-0.022551676258444786,-0.019019942730665207,0.037861473858356476,0.1264520138502121,0.04640982672572136,0.0009040648001246154,-0.042288798838853836,0.0318758450448513,-0.0652986466884613,-0.02735230140388012,0.032123882323503494,-0.09028341621160507,0.02334160916507244,-0.023448122665286064,-0.035096798092126846,-0.08211059868335724,-0.01937236450612545,0.005563144572079182,-0.01574949361383915,-0.03037671372294426,0.025084612891077995,-0.04773098602890968,-0.10767142474651337,0.04711182042956352,-0.004451524466276169,-0.02365710586309433,-0.07634741812944412,0.048781268298625946,0.05093969404697418,-0.02201377972960472,-0.047265440225601196,-0.0057435124181210995,0.0018293134635314345,0.05761848762631416,0.05025038868188858,0.00123304920271039,-0.038463741540908813,0.012196549214422703,-0.004029196221381426,0.023937620222568512,-0.06325667351484299,-0.03728318214416504,-0.04180823266506195,0.07750842720270157,0.02162257954478264,0.021074870601296425,-0.05670744553208351,-0.04447955638170242,0.008322374895215034,-0.0596688911318779,-0.03917122259736061,-0.036927007138729095,-0.015637656673789024,0.03625982254743576,0.06500270217657089,0.06283821165561676,-0.1082848533987999,0.026518292725086212,0.018622463569045067,-0.010870802216231823,0.028003504499793053,-5.953432933745543e-33,0.004493291489779949,-0.023725565522909164,0.04021110385656357,-0.013861406594514847,0.07260959595441818,0.002352053066715598,-0.02551686391234398,-0.02229280024766922,-0.0029869931749999523,-0.06462039798498154,0.04501035064458847,-0.05197260156273842,0.031215213239192963,-0.09048544615507126,-0.13683798909187317,-0.03567361831665039,0.032182253897190094,0.022786933928728104,0.010959265753626823,-0.02351614460349083,-0.04166494682431221,0.01533529069274664,-0.038174763321876526,-0.029072213917970657,-0.012981250882148743,0.014541990123689175,0.021251311525702477,-0.052950430661439896,0.1580931544303894,0.03391700237989426,0.036055516451597214,0.048868175595998764,0.0036977147683501244,0.010494017042219639,0.0255036149173975,-0.0032863966189324856,-0.044372860342264175,-0.06188745051622391,0.003799998201429844,0.020044589415192604,0.010818439535796642,-0.03205841779708862,-0.0011444803094491363,-0.03546411171555519,-0.06639768183231354,0.0009672539890743792,-0.08213596791028976,0.0587112195789814,-0.0413581058382988,-0.018816810101270676,-0.05147882550954819,-0.04138895124197006,-0.004430017899721861,-0.031193910166621208,0.03825899213552475,-0.06869717687368393,0.055128246545791626,0.06857246160507202,0.0023569657932966948,-0.012477250769734383,-0.0045149605721235275,0.026857590302824974,0.06652785837650299,0.07951942831277847,0.05186149477958679,-0.1541791409254074,-0.09183748066425323,-0.04951423406600952,0.05557062849402428,0.03338729590177536,-0.00845080055296421,0.023223549127578735,-0.10693468153476715,0.1318846046924591,-0.0328303687274456,0.002599996980279684,-0.04382932931184769,0.01056464109569788,0.035239290446043015,-0.022114736959338188,-0.03232545778155327,0.03916186839342117,-0.08738496154546738,0.07999945431947708,0.07013260573148727,0.05854072794318199,0.003782470477744937,-0.17180675268173218,-0.04025249928236008,0.03218814730644226,0.01031963899731636,0.03376443684101105,0.02006095089018345,0.06804835796356201,-0.11111383140087128,8.836802659535547e-34,0.036179039627313614,0.13145053386688232,0.05512358620762825,0.08183291554450989,0.022475646808743477,-0.05430325120687485,-0.027661219239234924,0.031921032816171646,0.051507409662008286,0.03308447450399399,-0.06419990211725235,0.017594480887055397,0.0484478659927845,-0.009164518676698208,0.05246777832508087,-0.07090295851230621,0.08890428394079208,-0.012293675914406776,0.0198730006814003,0.035798635333776474,-0.008808557875454426,-0.0821465253829956,0.11144500970840454,-0.03391729295253754,-0.10174611210823059,-0.011050188913941383,0.12033603340387344,-0.003300048178061843,-0.025245672091841698,-0.0632881298661232,0.014948603697121143,-0.02097364142537117,-0.050333864986896515,-0.03127753362059593,0.0002953851071652025,0.09103645384311676,0.025819100439548492,0.026993278414011,-0.00561379874125123,0.03358875960111618,-0.022507546469569206,0.04689923673868179,0.06864627450704575,-0.004304849077016115,-0.02513951063156128,-0.05545031279325485,0.013943073339760303,0.031116804108023643,-0.08809663355350494,-0.03352072834968567,-0.04979155585169792,0.03659479320049286,0.0532519593834877,-0.00789183471351862,-0.08885762840509415,-0.016791190952062607,0.017407745122909546,0.01404869556427002,0.05403491109609604,-0.06713993102312088,-0.05349528416991234,0.03328946977853775,-0.02671344205737114,-0.059139929711818695,0.01785355806350708,0.0451706238090992,0.017521411180496216,-0.05643733963370323,0.01163501013070345,0.005238275974988937,0.0673832967877388,0.007531669456511736,-0.010649511590600014,0.06624840945005417,0.04918010160326958,-0.052136991173028946,-0.00653265044093132,-0.101035937666893,-0.017669986933469772,-0.026993850246071815,0.013437574729323387,-0.03844662010669708,0.042635783553123474,-0.0004766689089592546,-0.011396489106118679,-0.015972496941685677,0.04198301583528519,0.02834930084645748,-0.08069100975990295,0.07429001480340958,0.04250514134764671,0.06562794744968414,0.09864428639411926,-0.0982038602232933,0.008455878123641014,-3.458029951275421e-8,-0.03664027526974678,0.015433958731591702,0.015937335789203644,-0.06857386231422424,0.12267863005399704,0.025362521409988403,-0.05304333567619324,-0.01903907209634781,-0.0266070868819952,-0.02333858050405979,-0.03249664604663849,0.004787444602698088,0.08754023909568787,0.031918078660964966,0.03355589881539345,0.034107670187950134,-0.04363767430186272,-0.1468476951122284,-0.04209330305457115,-0.04480805993080139,-0.01758735626935959,0.04445578530430794,-0.011450526304543018,0.014868943952023983,-0.0018627432873472571,0.031214093789458275,-0.036429692059755325,-0.02769569866359234,-0.04559706151485443,0.03280376270413399,0.012490026652812958,0.10676882416009903,-0.07382134348154068,-0.05223754420876503,-0.07932987809181213,0.06085532531142235,0.0070205447264015675,-0.0373377688229084,0.11794589459896088,-0.08446793258190155,0.0006513994303531945,0.0739116370677948,0.006571508944034576,0.05922023206949234,-0.00333408173173666,0.024665676057338715,0.022297335788607597,-0.041651513427495956,-0.03718842566013336,-0.03722574934363365,0.03758379817008972,-0.06762704253196716,0.02040267363190651,0.04551848769187927,0.02021574042737484,0.02532130852341652,-0.053122807294130325,-0.018515728414058685,0.001789405127055943,-0.026067078113555908,0.02044328860938549,0.055522818118333817,-0.09887676686048508,-0.04427415505051613]},{"text":"About half a dozen men came forward; and, one being selected by the magistrate, he deposed that he had been out fishing the night before with his son and brother-in-law, Daniel Nugent, when, about ten o’clock, they observed a strong northerly blast rising, and they accordingly put in for port.","book":"1984","chapter":102,"embedding":[-0.0556347630918026,0.12127523869276047,-0.01862839050590992,-0.07217755913734436,-0.024214990437030792,-0.0636894628405571,0.03845943510532379,0.0028613917529582977,-0.1043173223733902,-0.0010049070697277784,0.006911659147590399,-0.026431499049067497,0.014080156572163105,0.011008922010660172,-0.02425631508231163,0.011291859671473503,0.002828794065862894,-0.07334884256124496,0.007386672776192427,-0.041503775864839554,-0.04227929189801216,0.0707177147269249,0.02239001728594303,-0.09552740305662155,0.0331633985042572,0.020852619782090187,0.013580907136201859,0.009280668571591377,0.030501611530780792,-0.04758734256029129,0.007310161367058754,0.07601907104253769,-0.053599145263433456,0.0051375217735767365,0.0021402554120868444,-0.03163102641701698,0.08182308822870255,0.009890716522932053,0.04143303260207176,0.06926696747541428,0.0399673655629158,-0.035822149366140366,0.020420899614691734,0.05185788869857788,-0.0661856010556221,0.008085821755230427,-0.04542020335793495,-0.029605355113744736,0.07579591870307922,0.02361300215125084,-0.04692506790161133,-0.01886262185871601,0.03186805546283722,0.02533564157783985,0.0543162003159523,-0.059570543467998505,0.03691272437572479,-0.06894271820783615,0.004130401648581028,0.03643576800823212,0.04272737726569176,0.0188111774623394,-0.04534418508410454,0.018827563151717186,-0.00007519790233345702,-0.05564172565937042,-0.00519989849999547,-0.018166298046708107,0.026843277737498283,0.015503565780818462,0.07396937906742096,-0.03819674253463745,0.011431481689214706,-0.12797896564006805,-0.025711897760629654,-0.056176118552684784,0.08234348893165588,0.014689893461763859,-0.03602612763643265,-0.08111594617366791,-0.09120596945285797,-0.030747370794415474,-0.03548784181475639,-0.02575412206351757,0.042527373880147934,-0.02521556057035923,0.005383333656936884,-0.02259421907365322,0.042471785098314285,0.07026875019073486,-0.06658212095499039,0.008721192367374897,0.01497330330312252,0.008131120353937149,0.059432145208120346,0.01108571793884039,-0.025714149698615074,0.03045624867081642,-0.06482041627168655,0.058348529040813446,0.08192459493875504,0.0340108796954155,-0.06910062581300735,-0.05272393673658371,-0.05537358298897743,0.002567024901509285,0.02893403358757496,-0.00338536174967885,0.004705672152340412,-0.041239481419324875,-0.03127821907401085,0.01311842817813158,0.062455177307128906,-0.015319975093007088,-0.009862378239631653,0.053257375955581665,-0.0010315997060388327,0.05051371827721596,-0.06532244384288788,-0.05545882135629654,0.07655125111341476,0.058584701269865036,-0.009746656753122807,0.05899515002965927,-0.030090652406215668,0.11513330042362213,0.0812864899635315,-2.9664804824710018e-33,0.10060922801494598,0.03953244537115097,-0.13482888042926788,0.04856611788272858,0.07072547823190689,-0.016992971301078796,-0.06226398050785065,0.0507727675139904,0.020673738792538643,-0.022204844281077385,-0.027454225346446037,-0.017315737903118134,-0.06822098791599274,-0.06614507734775543,-0.10571842640638351,-0.00018268018902745098,0.06357795745134354,-0.014982282184064388,-0.05469314008951187,-0.07974960654973984,-0.046368204057216644,-0.012776102870702744,-0.06038109213113785,-0.03899404779076576,-0.0528605580329895,0.07407501339912415,-0.07790901511907578,0.013261395506560802,0.058635685592889786,0.049319490790367126,0.03017618879675865,-0.01951454021036625,0.07055726647377014,0.029083291068673134,0.09166435897350311,0.012088841758668423,0.06858066469430923,0.006837172899395227,-0.007399612572044134,0.02440922148525715,-0.10116524249315262,0.021112987771630287,-0.017323551699519157,-0.017319971695542336,-0.08407610654830933,-0.09984945505857468,-0.018233293667435646,0.03426894545555115,0.007107084151357412,-0.014897537417709827,-0.005729366093873978,-0.045626021921634674,0.018192308023571968,-0.001462072366848588,-0.002273109508678317,0.048068854957818985,-0.036565229296684265,0.0505673810839653,-0.0036986698396503925,0.10166382789611816,0.03324722871184349,0.02088148333132267,0.02351842261850834,0.10253876447677612,0.009146876633167267,-0.07810477912425995,0.024395762011408806,0.06964968889951706,-0.003613926935940981,0.02534504421055317,-0.04658936709165573,0.07459706813097,-0.040245696902275085,-0.025978509336709976,-0.030898964032530785,-0.027420207858085632,0.09671686589717865,0.05635204538702965,-0.020421873778104782,0.0002554789243731648,0.03510306775569916,0.03515564277768135,0.0027206363156437874,0.00013121269876137376,-0.043338190764188766,-0.029518986120820045,0.00797758437693119,-0.08961700648069382,-0.00901808775961399,0.07250973582267761,-0.06310959160327911,-0.036983832716941833,0.09003666043281555,-0.14476361870765686,-0.008979964070022106,-1.4964501345093548e-33,-0.01062543224543333,0.0484904870390892,-0.1153324693441391,-0.058379966765642166,-0.010543566197156906,-0.06875637173652649,0.10761403292417526,0.05843105539679527,-0.07724133878946304,-0.06461499631404877,-0.054761629551649094,0.0010724897729232907,0.09309534728527069,-0.013449542224407196,-0.03473588451743126,-0.07452278584241867,0.0726759135723114,0.04548069089651108,0.04422561451792717,0.005154605954885483,0.10717611759901047,-0.12061255425214767,0.0019102684454992414,-0.02989908494055271,0.0021805509459227324,0.07643752545118332,0.019814761355519295,-0.031019387766718864,-0.10269670188426971,0.010285424068570137,0.02523805759847164,0.011805870570242405,0.00899781659245491,0.06645432114601135,-0.05281267315149307,0.11526714265346527,0.030284801498055458,0.12341537326574326,0.01741533912718296,0.007986033335328102,0.041865795850753784,-0.001649984042160213,0.005555868148803711,0.04509013146162033,-0.09049048274755478,0.03527266904711723,-0.02546919323503971,0.061516571789979935,-0.020240461453795433,-0.003133926074951887,-0.0377572663128376,0.05890698730945587,0.020580334588885307,0.012666589580476284,-0.007465521339327097,0.014557811431586742,0.014557568356394768,-0.07252543419599533,0.04559223726391792,0.010538280941545963,-0.05855775997042656,-0.036157187074422836,-0.05023328587412834,-0.02468324825167656,-0.004077772609889507,0.02341984026134014,-0.06355996429920197,0.02781715802848339,0.008440181612968445,0.015362068079411983,0.020126448944211006,-0.04887373372912407,-0.002475676592439413,-0.07839760929346085,-0.04722607508301735,0.00201608007773757,-0.04604186490178108,0.048577893525362015,-0.035047899931669235,-0.030495665967464447,-0.014355833642184734,-0.05011489987373352,-0.0572156086564064,-0.05898609012365341,-0.047204792499542236,-0.007142309565097094,0.11852000653743744,-0.06467954814434052,0.050427526235580444,-0.06166211888194084,-0.005964814219623804,-0.028519563376903534,-0.07119511812925339,0.03342430666089058,0.01299978420138359,-4.1214871515649065e-8,0.06076693907380104,-0.02336925081908703,0.00825630221515894,0.02951558120548725,0.06914406269788742,0.026380348950624466,-0.02433137223124504,0.018344508484005928,-0.04222041741013527,-0.0422111377120018,-0.014585121534764767,0.04865209013223648,0.05454458296298981,-0.09721283614635468,0.07780627906322479,-0.015147772617638111,-0.010612692683935165,-0.1409223973751068,-0.056455668061971664,-0.04142574593424797,-0.015398635528981686,0.011971778236329556,-0.010047966614365578,0.012013182044029236,-0.05036325007677078,0.07183591276407242,-0.010557050816714764,0.0012500847224146128,0.04668302461504936,0.006401572842150927,0.0013197322841733694,0.04485517367720604,-0.07410935312509537,-0.043013352900743484,0.013162835501134396,0.019579576328396797,-0.0840722918510437,-0.0010740895522758365,0.0965939611196518,-0.047499265521764755,-0.04885676130652428,0.10562071204185486,-0.028442850336432457,0.05257096514105797,-0.029885942116379738,-0.03937351703643799,-0.027071891352534294,0.02056937851011753,0.03830793872475624,-0.029206939041614532,-0.06060100346803665,-0.005272609181702137,0.032358404248952866,0.04920610785484314,0.10197841376066208,0.019817326217889786,0.005846360232681036,-0.0491769015789032,-0.10109570622444153,0.019524110481142998,0.01893211528658867,0.02432321198284626,-0.05552954226732254,0.02316420152783394]},{"text":"The son confirmed his father’s account, but when Daniel Nugent was called he swore positively that just before the fall of his companion, he saw a boat, with a single man in it, at a short distance from the shore; and as far as he could judge by the light of a few stars, it was the same boat in which I had just landed.","book":"1984","chapter":103,"embedding":[-0.08011893182992935,0.07008586078882217,-0.004494861233979464,-0.023024849593639374,0.04245607182383537,-0.07104456424713135,0.0638289526104927,0.01741286925971508,-0.044910743832588196,-0.03651760146021843,0.015811806544661522,-0.0902625098824501,0.02159324660897255,0.013333499431610107,-0.04739314690232277,-0.009738555178046227,-0.001333906315267086,-0.01005015429109335,-0.055967170745134354,-0.00835852138698101,-0.055623073130846024,0.06754176318645477,0.030827565118670464,-0.061404742300510406,0.022131776437163353,-0.009551538154482841,0.08350148051977158,0.03697476536035538,-0.001798195531591773,0.0006567724631167948,0.027773335576057434,0.05405378341674805,-0.04712076857686043,0.031023206189274788,-0.04644414782524109,0.01706904172897339,0.04363120347261429,0.0073989760130643845,0.022406909614801407,-0.03213071450591087,-0.012540695257484913,-0.023657996207475662,0.005997283384203911,0.05199781805276871,-0.04939497262239456,-0.016281042248010635,-0.06055763363838196,-0.04118489846587181,0.08884581178426743,0.07025773823261261,-0.06061747297644615,-0.04271364584565163,0.07338747382164001,-0.08158370107412338,0.028693821281194687,0.027055641636252403,0.042526666074991226,-0.008333546109497547,-0.017084402963519096,0.0440463125705719,0.08609958738088608,0.01116475835442543,-0.045663926750421524,-0.00720727676525712,0.08131851255893707,0.003013647859916091,-0.014826240949332714,-0.05868761986494064,-0.053971320390701294,0.010894939303398132,0.05058880150318146,0.018073419108986855,0.04100623354315758,-0.07173260301351547,0.02581770159304142,-0.029320677742362022,0.056473374366760254,-0.041053324937820435,-0.045113272964954376,-0.057069238275289536,-0.11075932532548904,0.0015675504691898823,-0.021916955709457397,0.021717634052038193,0.009641401469707489,0.004562431946396828,0.08615876734256744,-0.028979090973734856,-0.01676354743540287,0.09909199923276901,-0.0662345290184021,-0.07949718832969666,-0.03251608833670616,-0.03569750860333443,-0.010419820435345173,-0.014151995070278645,-0.08731738477945328,0.08919654786586761,-0.08600535988807678,-0.025961285457015038,0.04666578397154808,0.05685527250170708,0.007170017808675766,0.02665739320218563,0.043440770357847214,0.036915600299835205,0.041901279240846634,-0.04327692463994026,0.023338455706834793,0.0014070094330236316,-0.025845687836408615,-0.03539678826928139,0.026039771735668182,0.10238441079854965,-0.03214138746261597,-0.006066261325031519,-0.022243784740567207,0.04144877567887306,-0.0916937068104744,-0.09682998061180115,0.08182422816753387,0.07470690459012985,0.021133456379175186,0.08732350170612335,-0.035904522985219955,0.008018797263503075,0.06853985041379929,-4.176857628153941e-33,0.015104248188436031,0.028107164427638054,-0.03328895568847656,0.02581172063946724,0.04325705021619797,0.039963699877262115,-0.10806002467870712,0.05324451997876167,-0.028323542326688766,-0.01671765185892582,-0.049606677144765854,-0.008700083009898663,-0.04143381863832474,-0.037427712231874466,-0.06239672005176544,0.10058164596557617,0.0003015092224813998,-0.07374764233827591,-0.0389692522585392,-0.028824960812926292,-0.03304203972220421,0.08819716423749924,-0.07949189841747284,-0.09592170268297195,-0.013238578103482723,0.006263796240091324,-0.03902047500014305,0.06544707715511322,0.017692556604743004,0.00932313408702612,-0.11477984488010406,0.08747448027133942,0.09678163379430771,0.00568082882091403,0.07685814052820206,0.03611883521080017,0.0598955899477005,0.004779810085892677,-0.03947564214468002,0.024182571098208427,-0.05925402790307999,0.004631983116269112,-0.07186741381883621,-0.022717516869306564,-0.13153909146785736,-0.04359181970357895,-0.03999503701925278,0.017003940418362617,0.039551105350255966,-0.013121459633111954,-0.058668188750743866,0.022982565686106682,-0.02056295797228813,-0.048026032745838165,0.022258402779698372,0.047401051968336105,-0.018926432356238365,0.014865153469145298,0.0020046059507876635,0.019436366856098175,-0.004066698718816042,-0.07470661401748657,0.08791836351156235,0.08214956521987915,-0.05481647327542305,0.0011951315682381392,0.04180474951863289,0.054659850895404816,0.005221627652645111,-0.011044532060623169,-0.05913006514310837,0.03576436638832092,-0.06022167578339577,-0.07148938626050949,0.025746505707502365,-0.04798576235771179,0.04505237191915512,0.020243998616933823,-0.079621821641922,-0.03936601057648659,0.010660643689334393,0.023645728826522827,-0.011283308267593384,-0.0037403448950499296,-0.06967225670814514,-0.0221862830221653,-0.02854674495756626,-0.03259328380227089,-0.025748012587428093,0.0021299447398632765,-0.03682558983564377,-0.02580408751964569,0.016369584947824478,-0.16451077163219452,-0.00493130087852478,-9.587604676730166e-34,0.011920521967113018,0.051260750740766525,0.0038496332708746195,-0.04183837026357651,0.0012068641372025013,-0.1359228640794754,0.07243034988641739,0.0182797871530056,-0.08015750348567963,-0.010757318697869778,-0.045131783932447433,-0.045117683708667755,-0.02006423845887184,-0.04708264768123627,-0.03820363059639931,0.014694898389279842,-0.009688887745141983,0.0499483160674572,0.02605077065527439,0.006439713761210442,0.10952978581190109,-0.06646595150232315,-0.042072080075740814,-0.018561698496341705,0.02818221040070057,0.0022971637081354856,0.07012641429901123,0.021929023787379265,-0.10720454156398773,-0.05283308029174805,0.03965868055820465,0.06159640848636627,0.06458457559347153,-0.0059964400716125965,-0.016529906541109085,0.1051890179514885,0.027233486995100975,0.07540145516395569,-0.03423043712973595,0.0057488176971673965,0.03608262538909912,-0.07726416736841202,0.026505250483751297,0.012639428488910198,-0.06366318464279175,0.023928821086883545,0.044650640338659286,0.08838671445846558,-0.04733375459909439,-0.0015484131872653961,0.0025746577885001898,0.03099760226905346,0.04100321978330612,0.011066142469644547,0.05881427600979805,0.039437662810087204,0.09061246365308762,-0.08855324238538742,0.06375449150800705,0.00869283638894558,-0.03240963816642761,-0.021693827584385872,-0.06564745306968689,0.0018390697659924626,-0.058604076504707336,-0.015148348174989223,-0.053498513996601105,0.04182139411568642,-0.04161917790770531,0.04303038492798805,0.007680024951696396,-0.0695665255188942,0.023954106494784355,-0.017241220921278,-0.035377226769924164,-0.0453130379319191,-0.08544076234102249,0.03899785131216049,0.0023731966502964497,0.000854151148814708,-0.002598582534119487,-0.06253096461296082,0.038277193903923035,-0.0012179698096588254,0.03893174231052399,-0.0384906530380249,0.04716363921761513,-0.09554412961006165,0.024029839783906937,-0.036309294402599335,0.026654193177819252,0.04355504363775253,-0.029202312231063843,-0.04847792908549309,-0.05207054316997528,-4.250509277881065e-8,0.08037953823804855,-0.025257861241698265,0.02039259858429432,-0.0070627969689667225,0.037466004490852356,0.021918928250670433,0.06200024113059044,0.05496077612042427,-0.0922490730881691,0.041913822293281555,-0.13624513149261475,0.01822570711374283,0.0056671262718737125,-0.057859525084495544,0.11559435725212097,-0.05482472479343414,0.01627960428595543,-0.1193980947136879,-0.027985306456685066,0.06562335044145584,0.028877992182970047,0.028349215164780617,-0.013462681323289871,0.021894773468375206,-0.05337756499648094,0.06159516051411629,0.009817056357860565,0.026416920125484467,0.024261046200990677,-0.04767262563109398,0.02216958813369274,0.03819679096341133,-0.06543076783418655,-0.03367036581039429,0.03798224776983261,-0.012729817070066929,0.00009121000039158389,0.0861346423625946,0.10388898849487305,-0.05893450975418091,-0.014971967786550522,0.1481465846300125,-0.007389013189822435,0.054576367139816284,0.044688630849123,0.050596222281455994,0.022204000502824783,-0.027521831914782524,0.0467962920665741,0.04351198300719261,-0.0456937700510025,0.017868105322122574,-0.0026989243924617767,0.06690981239080429,0.054162874817848206,-0.03728765621781349,-0.06832169741392136,0.06570006906986237,-0.08851249516010284,0.016857093200087547,0.0733308345079422,-0.009639936499297619,-0.03795068338513374,-0.004197398666292429]},{"text":"How can I describe my sensations on beholding it?","book":"1984","chapter":103,"embedding":[0.031083758920431137,-0.07261506468057632,0.03520265966653824,0.03436964005231857,-0.001105771167203784,-0.026447035372257233,0.12995068728923798,0.027952229604125023,0.04495447874069214,-0.03511325269937515,-0.0254143625497818,-0.11704722046852112,0.0012203581864014268,0.028476031497120857,-0.040728695690631866,-0.019258201122283936,0.15395356714725494,0.030046893283724785,-0.0006010254146531224,0.044594112783670425,0.06069299951195717,0.025137146934866905,-0.08168275654315948,0.009628519415855408,-0.0509781688451767,0.08471076935529709,0.02601449564099312,0.012983161024749279,0.00394809665158391,-0.08217792212963104,-0.025659050792455673,-0.002430499764159322,-0.05701088905334473,0.05167163535952568,-0.006085503380745649,0.0845930352807045,-0.06983811408281326,-0.04664227366447449,-0.02506108582019806,-0.10960108041763306,-0.006308467127382755,-0.02152157388627529,0.010338953696191311,-0.05570993199944496,0.08100242167711258,-0.010101500898599625,-0.003893214277923107,0.013754884712398052,0.046505048871040344,0.0061294264160096645,-0.07320428639650345,-0.07752213627099991,-0.05179337039589882,-0.018964972347021103,-0.04571002721786499,0.04184701293706894,-0.04266011714935303,-0.0994134470820427,-0.041059352457523346,-0.04509178176522255,0.044501956552267075,0.01351452898234129,0.015032707713544369,0.031234808266162872,0.03476177901029587,0.020418681204319,0.03227120265364647,-0.034467779099941254,0.03159777447581291,0.0004211151972413063,0.0060197445563972,-0.01300889067351818,-0.024798182770609856,-0.020363973453640938,-0.009909696877002716,-0.041694846004247665,0.017775356769561768,-0.05907876789569855,-0.031434863805770874,0.005584179889410734,-0.03608231991529465,0.05666885897517204,0.0039036304224282503,0.014157906174659729,-0.04914538562297821,0.0021726121194660664,0.05911925435066223,0.021717434749007225,-0.05733911320567131,0.05230739340186119,-0.055052828043699265,-0.10361363738775253,-0.1768724024295807,-0.03336911275982857,0.027919718995690346,-0.05271461606025696,-0.024315837770700455,-0.01637873984873295,0.0015616570599377155,0.028538836166262627,0.03233787789940834,0.0032807630486786366,-0.0488358810544014,0.034475088119506836,-0.004808525089174509,0.00818148348480463,-0.03608330711722374,-0.008018765598535538,-0.03501148894429207,-0.05984897539019585,-0.038370706140995026,-0.017296358942985535,-0.05433124303817749,-0.026108095422387123,0.0011587482877075672,-0.017962733283638954,0.015073350630700588,0.06031031906604767,0.08376114815473557,-0.0030442187562584877,0.024588771164417267,-0.06443799287080765,0.027855485677719116,-0.03479471057653427,0.015229989774525166,-0.011269906535744667,-0.007517770864069462,-6.650414391074786e-33,-0.018926328048110008,-0.02111835777759552,0.06780121475458145,-0.05467353016138077,0.02062269300222397,-0.051981616765260696,-0.009181052446365356,0.009724357165396214,0.019917579367756844,0.057564422488212585,0.05804145336151123,0.09870342165231705,-0.007769539952278137,0.07616320997476578,-0.010982812382280827,-0.08642429858446121,-0.025224905461072922,0.03948063775897026,-0.00009076881542569026,0.013015917502343655,-0.08847648650407791,0.056760285049676895,-0.029024537652730942,-0.017901431769132614,-0.05149012804031372,-0.024353155866265297,-0.09957913309335709,-0.03446099907159805,-0.037105992436409,0.01026105135679245,0.05318893492221832,0.12314975261688232,-0.01791822724044323,-0.06946634501218796,-0.026747791096568108,0.011536971665918827,0.0401269868016243,0.0889294296503067,0.05700865760445595,-0.06516985595226288,-0.03563876450061798,-0.013322217389941216,-0.02397436834871769,-0.043827082961797714,0.017031323164701462,0.10633531957864761,0.023166479542851448,0.003348954953253269,-0.09611508250236511,-0.0026781095657497644,-0.0032235917169600725,-0.05615081265568733,0.05821819603443146,-0.004714159294962883,-0.016443414613604546,0.028891460970044136,0.02871086448431015,0.03840147331357002,-0.007857251912355423,-0.060241274535655975,-0.008494481444358826,-0.03373177349567413,0.059622831642627716,-0.05489015951752663,-0.05508386343717575,-0.012266351841390133,-0.08129764348268509,-0.030226673930883408,0.02528812736272812,0.07943997532129288,-0.09896890074014664,0.03439534083008766,0.05193447694182396,-0.0020810102578252554,0.03277849778532982,0.00428150687366724,-0.02133796364068985,0.02198183164000511,-0.01687169447541237,0.00060884072445333,-0.04436889663338661,-0.054048772901296616,0.05946372449398041,0.035994675010442734,0.05194699391722679,0.047988411039114,-0.02220473624765873,-0.10180987417697906,-0.028220467269420624,-0.01775316521525383,-0.054115936160087585,0.02549353614449501,0.05578552559018135,-0.09190952777862549,-0.11519943922758102,2.992784188951566e-33,0.009364997036755085,0.032151248306035995,0.045454081147909164,0.07489461451768875,-0.045834995806217194,-0.07272659987211227,0.014339851215481758,0.12335628271102905,-0.08266232907772064,0.06135258823633194,0.051908884197473526,0.035721518099308014,-0.06169179081916809,0.05388430878520012,-0.049054376780986786,0.07070683687925339,0.009911028668284416,0.05264287441968918,0.02472306601703167,0.018602050840854645,-0.12076423317193985,0.10747765749692917,0.014479796402156353,-0.03194170817732811,0.01622876152396202,0.08432082086801529,0.0954064130783081,-0.11412902921438217,-0.035700567066669464,-0.04942173883318901,0.008232752792537212,0.012527297250926495,-0.005559823475778103,-0.03943277522921562,-0.010415462777018547,0.063912034034729,0.045804426074028015,-0.05597063899040222,-0.08242151886224747,-0.022489001974463463,-0.02506430260837078,0.008380665443837643,0.009911645203828812,0.08130325376987457,-0.00963619165122509,-0.07036712020635605,-0.01482995692640543,0.04546739533543587,-0.0440070740878582,0.07021119445562363,0.0017025438137352467,0.0911782905459404,-0.005911937449127436,-0.03819987177848816,-0.007877754978835583,-0.03349630534648895,0.02556825987994671,-0.07935009151697159,0.04191523790359497,-0.01967037469148636,0.027285613119602203,-0.059307657182216644,-0.058155596256256104,0.031179647892713547,0.021963436156511307,0.02741539105772972,0.00006829232006566599,-0.008397110737860203,0.022166961804032326,0.03209789842367172,-0.011847395449876785,0.008779224008321762,-0.04519791528582573,-0.021588323637843132,0.10321523994207382,-0.0285399928689003,-0.0029161099810153246,0.03529047220945358,-0.004629567265510559,0.014264819212257862,-0.02966131642460823,-0.02949484810233116,0.03430032357573509,-0.0019381849560886621,-0.011529977433383465,-0.004711603745818138,-0.055778928101062775,0.017412949353456497,-0.0680142268538475,-0.036061253398656845,-0.05868655443191528,0.06211874634027481,-0.12978284060955048,-0.011745637282729149,0.03254074603319168,-1.859872966747389e-8,-0.06075660511851311,-0.0909864604473114,0.07839884608983994,-0.0375622995197773,0.02164534293115139,0.04941566661000252,0.01056453213095665,-0.0006829637568444014,-0.10956786572933197,-0.05479149520397186,-0.03057723306119442,-0.05537452921271324,-0.03697839379310608,0.05279574915766716,0.09675105661153793,0.0261477492749691,0.0011684338096529245,0.03270288184285164,-0.043097756803035736,0.01723053678870201,0.02595614455640316,0.07174941897392273,0.03321509063243866,0.04355872794985771,0.063348688185215,0.0033374635968357325,-0.0635870173573494,0.013476558029651642,-0.017467688769102097,0.02185905911028385,0.12302520871162415,0.08826201409101486,-0.005772239528596401,-0.024250011891126633,-0.02139090932905674,0.02389892190694809,-0.04981173574924469,-0.02656596340239048,0.010865490883588791,0.014035499654710293,-0.008754603564739227,0.01441897265613079,-0.00023006572155281901,0.07744768261909485,0.029925156384706497,-0.053222302347421646,0.12576031684875488,-0.055187974125146866,0.03935461863875389,0.07775642722845078,0.013046052306890488,0.07699038088321686,0.0307465773075819,0.11440561711788177,0.012354911305010319,-0.00566686037927866,0.0017739103641360998,0.08366560190916061,-0.027887539938092232,0.06709197908639908,0.13389907777309418,0.0021500098519027233,-0.08295141905546188,-0.026232706382870674]},{"text":"Death snatches away many blooming children, the only hopes of their doting parents; how many brides and youthful lovers have been one day in the bloom of health and hope, and the next a prey for worms and the decay of the tomb!","book":"1984","chapter":104,"embedding":[-0.037515293806791306,0.08682668209075928,0.06880984455347061,0.024095777422189713,0.02724650129675865,0.07848571985960007,0.06409098953008652,-0.043081894516944885,0.04617306590080261,0.008800101466476917,0.029169298708438873,-0.024478942155838013,-0.002365392865613103,-0.04191780090332031,-0.028244784101843834,0.03750469163060188,-0.06245800480246544,-0.020531395450234413,-0.04033195972442627,0.01904027909040451,-0.03827765956521034,0.022922515869140625,0.04146428033709526,0.0373806357383728,-0.0430397167801857,-0.025011233985424042,-0.006351670250296593,-0.015295964665710926,-0.119170643389225,-0.002756373956799507,0.0008378124912269413,0.04391319304704666,-0.03831787407398224,-0.01468189898878336,0.020423119887709618,0.013043796643614769,-0.016981936991214752,-0.05465018376708031,0.05288049206137657,0.025664962828159332,0.03811531141400337,0.026060158386826515,-0.03452937677502632,0.04215044528245926,0.006374918855726719,-0.07378900051116943,-0.020103376358747482,-0.03416052460670471,0.027024781331419945,-0.00559410871937871,-0.03352772071957588,-0.019973043352365494,-0.03860319033265114,0.022656219080090523,0.010162887163460255,0.007280904799699783,-0.02608892135322094,-0.04067041352391243,0.003594653680920601,-0.06094139441847801,-0.08024228364229202,0.05471247807145119,0.0224075298756361,-0.0071824295446276665,-0.009091314859688282,-0.09526555240154266,0.03114195354282856,0.045651864260435104,-0.016425790265202522,0.07007371634244919,-0.07714777439832687,0.05611236393451691,0.00968301109969616,0.053253814578056335,-0.07865957915782928,0.005727424286305904,-0.04004951938986778,-0.11958301067352295,-0.06608692556619644,-0.08322865515947342,-0.028649363666772842,-0.10179336369037628,0.024738287553191185,-0.015371307730674744,-0.02715524286031723,0.002614310011267662,0.011583412997424603,-0.052535247057676315,0.01808549091219902,0.0006855713436380029,-0.10302528738975525,-0.07174813747406006,-0.02802785113453865,0.11482176929712296,-0.0041300710290670395,0.06916625797748566,-0.03248060494661331,-0.00351596437394619,-0.09643607586622238,0.023021843284368515,0.0026651048101484776,0.02729843370616436,0.0022225207649171352,0.031385526061058044,-0.02221076563000679,-0.024139562621712685,-0.1400284618139267,0.006278384942561388,-0.05048021301627159,-0.06535080820322037,-0.02470282092690468,-0.07173433899879456,0.10187108814716339,-0.01386369951069355,-0.037729356437921524,0.07756621390581131,0.023574763908982277,-0.028360573574900627,-0.019622674211859703,0.13225358724594116,0.03372032195329666,0.053626615554094315,-0.052617449313402176,-0.013654179871082306,-0.012413479387760162,-0.06438617408275604,-0.019526725634932518,3.907174187423168e-35,-0.01746246963739395,-0.056513819843530655,0.014177816919982433,0.13360245525836945,-0.019394978880882263,-0.034238316118717194,-0.024703441187739372,-0.014434498734772205,-0.03555956110358238,-0.07905526459217072,-0.044760044664144516,-0.10561783611774445,-0.09045299142599106,-0.023276403546333313,-0.05707085505127907,0.01128119695931673,-0.028284382075071335,0.05679638311266899,0.06374812871217728,0.0485796220600605,-0.06713128089904785,0.04452558606863022,-0.04283947870135307,0.02770119719207287,-0.027804257348179817,0.04483705759048462,0.006606415845453739,0.05968703702092171,-0.025279773399233818,0.04100482165813446,0.010442856699228287,0.020425083115696907,0.01263660378754139,-0.09465685486793518,-0.02652006968855858,0.004703414626419544,-0.04580327868461609,-0.026439564302563667,-0.04474351182579994,0.022720705717802048,-0.09019014984369278,-0.05061974376440048,-0.031193187460303307,0.029695706441998482,-0.012305324897170067,0.014153818599879742,0.04568536952137947,0.05609219893813133,0.003458984661847353,0.04680122435092926,0.014591437764465809,-0.03350907564163208,0.007049431558698416,0.05880483239889145,0.029635541141033173,0.038740940392017365,-0.00834585353732109,-0.02628834918141365,0.013155011460185051,-0.0000684229307807982,0.0867043137550354,-0.05770163610577583,0.011399946175515652,-0.07414429634809494,0.0503743551671505,0.004292328841984272,0.071954645216465,-0.04143313691020012,-0.03686711937189102,0.04575467109680176,-0.04321514070034027,0.014911969192326069,-0.0884692445397377,-0.06821717321872711,-0.00504121882840991,0.018963798880577087,0.12823893129825592,-0.027225114405155182,0.07709242403507233,-0.00570397824048996,0.04578283056616783,0.018914328888058662,-0.022611651569604874,-0.0573306567966938,0.033692244440317154,-0.03869635611772537,0.05425003170967102,-0.1280696988105774,-0.0272624921053648,0.055730532854795456,0.019475579261779785,-0.01653985120356083,0.06334684044122696,-0.056236784905195236,-0.017684686928987503,-1.3744658714821605e-33,0.014017242006957531,-0.050949178636074066,-0.041660502552986145,0.06401745975017548,0.036605291068553925,-0.043085627257823944,-0.06205100193619728,-0.006023712921887636,-0.021497758105397224,0.02046763338148594,-0.10185324400663376,0.029230982065200806,0.05852966383099556,0.02062278799712658,-0.029471764340996742,-0.08112048357725143,0.14320456981658936,-0.003165565663948655,0.034595977514982224,0.05545710027217865,-0.02568921446800232,0.039156582206487656,-0.11550658196210861,-0.02524353191256523,-0.017810765653848648,0.06972383707761765,0.02986648865044117,-0.02903146483004093,-0.042905986309051514,-0.012915986590087414,0.0049455133266747,-0.0211061779409647,0.02153732441365719,0.06469480693340302,0.04397348687052727,0.05777266249060631,0.08049525320529938,-0.006184786092489958,-0.02005688101053238,0.01519104279577732,0.008172072470188141,-0.04569074138998985,0.04548850655555725,0.04250231012701988,-0.04289625585079193,0.027126837521791458,0.05350182205438614,0.1487162858247757,0.049727559089660645,0.05879462882876396,0.00554786529392004,0.016034714877605438,-0.0066041783429682255,0.0017071746988222003,-0.003692069323733449,-0.027719596400856972,-0.00755132082849741,-0.05175177752971649,0.06336219608783722,-0.007015904411673546,-0.05976490303874016,0.0021398705430328846,-0.06347048282623291,0.09370021522045135,-0.07757093012332916,-0.06665608286857605,-0.02253318950533867,0.008952200412750244,-0.09754527360200882,0.055240534245967865,-0.020828133448958397,-0.08688759058713913,-0.11802220344543457,-0.03295642510056496,0.008436101488769054,-0.01090634148567915,0.00863447692245245,-0.007404887583106756,0.0057937209494411945,-0.006668956484645605,-0.007689005229622126,0.008615706115961075,0.06239275634288788,-0.0033384005073457956,0.03917136788368225,-0.05164238438010216,-0.059917230159044266,0.06020880118012428,0.015034141950309277,-0.012190715409815311,-0.038735199719667435,-0.07217896729707718,0.07634123414754868,-0.0998733788728714,-0.006565072573721409,-4.137604392440153e-8,0.05600383132696152,-0.0223469790071249,-0.02924296073615551,-0.09366639703512192,0.04423908516764641,-0.08033645153045654,0.05084720999002457,0.12028717249631882,-0.002985458355396986,0.13786208629608154,0.02046225778758526,0.07947929948568344,0.010826129466295242,0.03809003904461861,0.09684353321790695,0.031765542924404144,0.023230696097016335,-0.07035879045724869,-0.040733981877565384,-0.061490822583436966,0.012265071272850037,0.048920437693595886,0.056640058755874634,-0.07554859668016434,-0.018462060019373894,0.019316207617521286,0.026458028703927994,-0.0038977020885795355,-0.024521753191947937,0.05375846475362778,0.06467937678098679,-0.0042560589499771595,-0.02914668433368206,0.0373486652970314,-0.0165464598685503,0.0008577824919484556,-0.007086729630827904,0.07693785429000854,0.02909979782998562,0.007706511300057173,0.020650232210755348,-0.02768261358141899,0.04357731342315674,0.03587175905704498,0.011410876177251339,-0.060525160282850266,0.09129109233617783,0.044540341943502426,-0.028851579874753952,-0.005265538580715656,-0.021304724738001823,-0.054516810923814774,0.03825123608112335,0.014515204355120659,0.05525579676032066,-0.0029309375677257776,0.01307175774127245,0.10555458068847656,0.011441080830991268,0.07114889472723007,0.16716623306274414,0.0018465641187503934,0.052375275641679764,0.0207859817892313]},{"text":"As the images that floated before me became more distinct, I grew feverish; a darkness pressed around me; no one was near me who soothed me with the gentle voice of love; no dear hand supported me.","book":"1984","chapter":104,"embedding":[0.008694298565387726,0.06908223778009415,0.06359516084194183,0.12807098031044006,0.09496123343706131,0.006198863498866558,0.07786403596401215,-0.04187658801674843,0.09300684928894043,-0.0671548992395401,0.06250174343585968,-0.04919446259737015,0.06774862110614777,-0.01679052598774433,-0.014701553620398045,0.01367978285998106,0.01494633313268423,-0.01000704150646925,-0.09889978170394897,0.07914981245994568,-0.079837866127491,0.10421625524759293,0.027300557121634483,-0.06600409746170044,-0.0673900619149208,0.038945943117141724,-0.007236698642373085,-0.038878582417964935,0.06838375329971313,-0.02430647611618042,-0.054738689213991165,0.01714657060801983,0.03504868969321251,0.022625567391514778,0.020365789532661438,0.05820174515247345,0.02942032366991043,-0.03231530636548996,-0.015898238867521286,0.010476285591721535,0.011219813488423824,0.004570685792714357,0.061377208679914474,-0.006977854296565056,0.006142470985651016,0.008322248235344887,-0.0580543652176857,0.019979624077677727,0.004515794105827808,-0.026419509202241898,-0.10316325724124908,-0.04195724427700043,-0.053439412266016006,0.047693200409412384,-0.028279658406972885,0.021526843309402466,0.010031860321760178,-0.052603062242269516,-0.00864336546510458,0.035563092678785324,-0.04722444340586662,0.0498996265232563,0.03700411319732666,-0.016053080558776855,0.04985759034752846,-0.045252878218889236,-0.024852178990840912,-0.03773332014679909,-0.024049878120422363,0.016388826072216034,-0.039995692670345306,0.10057131946086884,0.026888439431786537,0.02326180599629879,-0.061830244958400726,-0.030841613188385963,-0.015310341492295265,-0.07660974562168121,0.03573836013674736,0.008588884025812149,0.008252838626503944,-0.05539584532380104,-0.03326301649212837,0.017171092331409454,-0.12641330063343048,-0.017178528010845184,0.0653223916888237,-0.07470925152301788,-0.056454043835401535,0.03271699696779251,-0.02664816379547119,-0.03217500448226929,-0.13531261682510376,0.0365595743060112,0.007200656458735466,-0.06703070551156998,-0.006264707539230585,-0.02740117721259594,-0.07204027473926544,0.05501397326588631,0.022364040836691856,-0.0636046826839447,-0.02740045264363289,0.10712256282567978,0.028211908414959908,-0.02426251396536827,-0.10039988905191422,-0.057433757930994034,-0.02885560877621174,-0.024206025525927544,-0.007494514808058739,-0.06985529512166977,-0.06842804700136185,0.0033106200862675905,-0.05719844996929169,-0.05956563726067543,-0.06323984265327454,-0.10831543803215027,0.01503518782556057,0.07154300063848495,0.05714860558509827,0.0757049173116684,0.004964710213243961,0.007355114910751581,-0.057332396507263184,-0.09908150136470795,-0.022170552983880043,-1.1047875391008615e-33,0.030420973896980286,-0.053779393434524536,0.03086601011455059,-0.005673149134963751,0.10728805512189865,-0.05035204067826271,-0.07210735231637955,-0.027626650407910347,-0.05326169729232788,-0.02475239895284176,0.024198172613978386,0.0644649937748909,0.03179260715842247,0.0760720819234848,-0.04644249007105827,-0.012504053302109241,-0.010595305822789669,-0.03116508573293686,0.04014730826020241,0.03601108118891716,-0.09482723474502563,0.046117354184389114,0.034379370510578156,-0.05676548182964325,-0.06590303778648376,-0.01769842766225338,-0.06526405364274979,-0.009005602449178696,0.08021695911884308,0.023161446675658226,-0.018016701564192772,0.017529325559735298,0.07060205191373825,-0.07743775844573975,-0.002641507424414158,0.09007611125707626,-0.047617871314287186,-0.05847487598657608,-0.014416929334402084,-0.022168636322021484,-0.02619744837284088,0.019035743549466133,-0.020975928753614426,-0.03659868612885475,0.02316766232252121,0.08902816474437714,-0.017561297863721848,0.02637624554336071,-0.12123566120862961,-0.032410021871328354,0.005165138281881809,-0.00009280595986638218,-0.004227412398904562,-0.02344072423875332,-0.012545750476419926,-0.029303301125764847,0.002322031883522868,0.08121871203184128,-0.03736061975359917,-0.05952015519142151,0.028216946870088577,-0.02912118472158909,0.038321707397699356,-0.029574839398264885,0.015707965940237045,-0.05635031312704086,0.013373257592320442,-0.032462555915117264,0.022942615672945976,-0.046332694590091705,-0.05949559062719345,-0.0017472595209255815,-0.018550477921962738,0.09335957467556,-0.03485570102930069,-0.06347586959600449,0.04457135498523712,-0.04714509844779968,0.010835821740329266,-0.010710755363106728,0.0328824445605278,0.049638234078884125,0.004302119370549917,0.023639779537916183,0.029712148010730743,-0.06148301437497139,0.004558775573968887,-0.003114409977570176,-0.08324366062879562,0.01134828943759203,0.006160567048937082,0.027428200468420982,0.03759804740548134,-0.12397024035453796,-0.09469031542539597,-1.951515864629829e-33,0.04795493558049202,0.0340455137193203,-0.025321830064058304,0.11080573499202728,-0.0413365438580513,-0.036386795341968536,-0.0016714553348720074,0.08448119461536407,0.018825195729732513,0.021839484572410583,0.07875259965658188,-0.029984496533870697,0.006496190559118986,-0.051709532737731934,-0.04422667622566223,-0.018791871145367622,0.005690542981028557,0.07432471215724945,0.013545522466301918,0.05845164880156517,-0.02718588523566723,0.054775625467300415,0.02711305394768715,0.05556217581033707,-0.03964181989431381,0.036684922873973846,0.15671657025814056,-0.04203193634748459,-0.09118470549583435,-0.008527813479304314,0.06582871079444885,-0.033275630325078964,-0.021953435614705086,-0.04680072143673897,0.054171379655599594,0.0827626958489418,0.031922947615385056,0.015033023431897163,-0.035840969532728195,-0.059707023203372955,0.012881943956017494,0.05555041506886482,0.10913199186325073,0.013630855828523636,-0.01355248037725687,0.021015822887420654,-0.015958022326231003,0.025430118665099144,0.024998869746923447,0.0455247163772583,-0.06401776522397995,-0.037778522819280624,0.03924274072051048,-0.012489828281104565,-0.05272633582353592,-0.06505533307790756,0.06908901035785675,-0.04427340626716614,0.08870584517717361,-0.007243780419230461,0.004319801926612854,-0.03972476348280907,-0.07527001202106476,-0.019870387390255928,0.03483312577009201,0.05894353613257408,-0.013817713595926762,0.042219821363687515,-0.05989573895931244,-0.01787632517516613,0.0199375469237566,-0.000010234071851300541,0.004623644053936005,0.06696154922246933,0.045575566589832306,0.03127928450703621,-0.034302257001399994,-0.04044167324900627,-0.06653770059347153,-0.03776659443974495,-0.05901044234633446,0.006343802437186241,-0.03794419392943382,0.03264739364385605,0.03570284694433212,0.008303589187562466,0.0004439251497387886,-0.08786763995885849,-0.08480136841535568,0.009745178744196892,-0.01134468149393797,0.03819955140352249,0.0017340333433821797,-0.047975197434425354,0.029077429324388504,-3.653673275039182e-8,0.019786687567830086,-0.07759655267000198,0.04992973804473877,-0.04937582090497017,0.04622107744216919,0.007140057627111673,0.06683005392551422,-0.08330429345369339,-0.016208024695515633,0.004091956652700901,-0.10912226140499115,0.057559721171855927,0.07076643407344818,0.02008400671184063,0.05414249002933502,0.052915144711732864,0.01600937731564045,-0.09673630446195602,-0.03603667765855789,-0.031204279512166977,-0.043197087943553925,0.03924385830760002,0.04719970375299454,-0.07606590539216995,0.0372401624917984,0.02341727539896965,-0.026239102706313133,-0.06273175776004791,-0.0268926490098238,-0.05764180049300194,0.11365456134080887,0.06149076297879219,0.01926322653889656,-0.027092434465885162,-0.04167991504073143,0.039789602160453796,-0.034587327390909195,-0.05111325532197952,-0.035687800496816635,0.009588592685759068,0.0015891562215983868,0.058468710631132126,0.017775747925043106,-0.04244111850857735,0.024004904553294182,-0.015495317988097668,0.12469824403524399,-0.0418376624584198,-0.008720980025827885,0.0074359881691634655,0.04626874998211861,0.04291704669594765,0.029521610587835312,0.11853714287281036,0.025810780003666878,-0.05565411597490311,0.05689625442028046,0.10724911838769913,0.03750113397836685,0.03033454343676567,0.09338528662919998,0.011759113520383835,-0.05833660438656807,0.00670880451798439]},{"text":"Such were my thoughts when the door of my apartment was opened and Mr.","book":"1984","chapter":105,"embedding":[0.02172764390707016,0.043310366570949554,0.015527592040598392,-0.0073491958901286125,0.018829388543963432,-0.027206769213080406,0.030634071677923203,-0.00041126165888272226,0.0878896489739418,0.005572577007114887,0.017188722267746925,0.11900082230567932,0.04803881049156189,0.01388600468635559,0.023826653137803078,0.015270308591425419,0.03897847607731819,-0.026648158207535744,-0.027541982010006905,0.05998401716351509,-0.025112668052315712,0.043486546725034714,-0.0053592645563185215,-0.09958989918231964,-0.040388889610767365,0.056043680757284164,-0.03203029930591583,-0.004126741550862789,0.021847134456038475,0.06003158167004585,0.028045164421200752,-0.035641830414533615,0.040889475494623184,-0.04911963269114494,0.11400371789932251,0.029819469898939133,0.0265349168330431,0.011867102235555649,0.03618268668651581,-0.07503163069486618,0.0038602545391768217,0.016510391607880592,0.10373306274414062,0.018758457154035568,-0.032525938004255295,0.005689181387424469,0.03858591243624687,-0.08897875994443893,0.04835435748100281,-0.06238875910639763,-0.08884464204311371,0.07393168658018112,-0.02607051283121109,0.010072381235659122,-0.0647549107670784,-0.03153964877128601,0.10438869893550873,0.04311210289597511,0.02493654377758503,-0.041674546897411346,-0.08563649654388428,0.006820047739893198,-0.001167334383353591,-0.006227761972695589,0.0030990897212177515,0.038356080651283264,-0.05577781796455383,0.002817633096128702,0.10914760082960129,0.0058456286787986755,-0.013164276257157326,-0.01719510182738304,0.029183823615312576,-0.010547203943133354,-0.06004036217927933,0.06901536136865616,-0.05465281009674072,-0.06956103444099426,-0.0005728432442992926,0.0050587463192641735,-0.029745161533355713,-0.013959667645394802,-0.0952896848320961,-0.02849709242582321,-0.014889744110405445,-0.0014899550005793571,0.0817045196890831,-0.0403197817504406,0.02987385168671608,0.04877139627933502,0.028908904641866684,-0.0572793073952198,-0.060971301048994064,0.01617247425019741,0.0015811556950211525,-0.09237074106931686,-0.1223723292350769,0.010872583836317062,-0.025843597948551178,0.09059353917837143,-0.006974112242460251,0.007106462027877569,-0.02558714710175991,0.0025739779230207205,0.08735246956348419,0.025627611204981804,0.04234693944454193,-0.025371456518769264,-0.026864008978009224,-0.026470547541975975,-0.047024138271808624,-0.027516113594174385,0.003088169265538454,0.039952270686626434,0.010888898745179176,-0.05080746114253998,0.026180045679211617,0.003996533341705799,0.012931566685438156,0.007368012797087431,0.07156052440404892,0.045360032469034195,-0.036279670894145966,-0.03746040165424347,-0.003924480173736811,-0.11606674641370773,0.029488112777471542,-4.3711690483967726e-33,-0.03499602526426315,0.09656400233507156,-0.07841278612613678,0.013807510025799274,0.1006409227848053,-0.010974016971886158,-0.09574311971664429,0.06410270184278488,-0.0060495720244944096,0.01729900762438774,0.10021305829286575,-0.04385840892791748,-0.012021890841424465,-0.06674429774284363,-0.08116025477647781,0.045276567339897156,-0.03509149327874184,0.0657731294631958,0.04896104335784912,0.07464540749788284,-0.01632135920226574,0.0031663537956774235,0.028591439127922058,0.03698155656456947,0.024410123005509377,-0.04561448469758034,-0.00700782798230648,-0.015791883692145348,0.007828056812286377,0.007905352860689163,0.06292138248682022,0.07899244129657745,0.074459969997406,0.06103143468499184,-0.0941549614071846,0.02232947386801243,-0.0038475031033158302,-0.06359633803367615,-0.06056155636906624,-0.011408202350139618,-0.007127539254724979,-0.005338187795132399,0.06414298713207245,0.0072032613679766655,0.030818648636341095,0.039799101650714874,-0.03153952956199646,0.04117932543158531,-0.04473581537604332,-0.04156693443655968,-0.017007865011692047,0.01432368066161871,-0.05737905949354172,0.032707616686820984,-0.07799813151359558,-0.07482028007507324,0.052997007966041565,-0.000480430549941957,0.08196572214365005,0.02395034022629261,-0.0341264046728611,0.04939661920070648,0.058245401829481125,-0.08295082300901413,-0.02329283393919468,-0.17365019023418427,-0.015648499131202698,0.02744295634329319,0.042161207646131516,-0.006575093138962984,-0.0654025673866272,-0.03509775176644325,-0.03848138824105263,-0.026348555460572243,-0.06746567040681839,0.020262541249394417,-0.03536814823746681,-0.00605047820135951,0.005878303200006485,-0.06016790494322777,0.14170999825000763,-0.026271026581525803,-0.02143503539264202,0.041319601237773895,0.03597526252269745,0.01663174293935299,-0.03288140892982483,-0.09963540732860565,-0.06937330216169357,0.05925427004694939,-0.015178398229181767,0.02176417037844658,0.02546379715204239,-0.03266569972038269,-0.0523129440844059,1.6884218618165696e-33,-0.009994260966777802,0.011459726840257645,0.008849380537867546,-0.028432678431272507,0.009926381520926952,-0.013437544927001,-0.12310146540403366,-0.020339174196124077,0.0000955718060140498,0.08606310188770294,0.05335107445716858,-0.007951319217681885,0.12552736699581146,0.06882718205451965,-0.04023617133498192,-0.050852954387664795,0.09943529218435287,-0.04377441480755806,-0.03887920081615448,-0.011255231685936451,-0.0522930771112442,0.07037859410047531,-0.007713130675256252,0.06831490248441696,0.0043595582246780396,0.053027693182229996,0.08023733645677567,0.02767197974026203,-0.050108447670936584,-0.033503126353025436,-0.04689250513911247,-0.004677490796893835,-0.15905918180942535,0.042025625705718994,0.02483106032013893,0.004928216338157654,0.0193350650370121,-0.010939204134047031,-0.06240345165133476,-0.056097280234098434,-0.04404590278863907,0.004998283460736275,0.02067652903497219,0.04194022715091705,0.008667511865496635,-0.05467280372977257,-0.027670802548527718,0.000727878708858043,0.0031816258560866117,0.03781568259000778,-0.09526383131742477,0.11343823373317719,-0.0800451934337616,-0.10194865614175797,-0.038465820252895355,-0.019448161125183105,0.07704686373472214,-0.028495049104094505,0.051317356526851654,0.0013244061265140772,-0.03653312101960182,0.029070323333144188,-0.01957070454955101,0.010854806751012802,-0.026265833526849747,0.001981077715754509,0.036092545837163925,-0.0854172334074974,-0.06371132284402847,-0.011859254911541939,0.0976143404841423,0.00011432701285229996,-0.07084718346595764,0.04913300648331642,0.03388300538063049,-0.025790518149733543,0.07195273786783218,-0.07411219924688339,-0.048047758638858795,-0.054430797696113586,0.03275711461901665,-0.009658178314566612,-0.022964680567383766,-0.02503977157175541,-0.00035311689134687185,-0.10091007500886917,-0.006190370302647352,0.008778316900134087,0.0038031218573451042,0.040048278868198395,-0.05619080737233162,0.0906652957201004,-0.02515782229602337,-0.0074202073737978935,0.0026733381673693657,-2.1905742997319066e-8,-0.03951002284884453,-0.03173670172691345,0.03729347884654999,0.01573256589472294,0.0766991600394249,-0.008057516068220139,0.021280581131577492,0.06931576132774353,-0.03228037804365158,0.0533243753015995,0.025566112250089645,0.02245602384209633,-0.049671195447444916,0.04267776757478714,0.028938043862581253,0.015037468634545803,0.0485648475587368,-0.10309583693742752,-0.008163044229149818,-0.011784771457314491,0.03711143508553505,0.048719651997089386,0.025100350379943848,-0.00005883177072973922,-0.041032835841178894,0.009970306418836117,-0.05538136884570122,-0.020254317671060562,-0.019633514806628227,0.14389468729496002,0.051016323268413544,0.023733343929052353,-0.0006973357521928847,-0.0034814791288226843,-0.08683481067419052,0.058104440569877625,0.09564555436372757,-0.002188561949878931,0.06395139545202255,-0.07445324212312698,-0.008905915543437004,-0.0457647368311882,-0.029853275045752525,0.014661508612334728,-0.04773665964603424,0.0282394140958786,0.033678531646728516,-0.005101240240037441,-0.024808276444673538,0.011031962931156158,0.019879454746842384,0.02443845383822918,-0.006728589069098234,0.023425862193107605,0.12063413858413696,-0.028661536052823067,-0.03203633055090904,-0.05106164142489433,-0.05740922689437866,-0.01158390287309885,0.06659261882305145,0.011939837597310543,-0.13803407549858093,-0.022180914878845215]},{"text":"But you are ill; even now you tremble; you are unfit for agitation of any kind.” “This suspense is a thousand times worse than the most horrible event; tell me what new scene of death has been acted, and whose murder I am now to lament?” “Your family is perfectly well,” said Mr.","book":"1984","chapter":106,"embedding":[0.03261387720704079,0.023827550932765007,0.013311690650880337,-0.002196962246671319,0.02805948816239834,0.0526663176715374,0.08934325724840164,0.035900358110666275,0.054079581052064896,-0.07852056622505188,0.009416677989065647,-0.004929743241518736,-0.011623509228229523,-0.0892924964427948,-0.011552182026207447,-0.04141109064221382,0.023093225434422493,-0.04580630362033844,-0.05837097018957138,0.12720562517642975,-0.026348333805799484,0.04618365317583084,0.06655976176261902,0.007047457620501518,-0.06293822079896927,0.022251754999160767,0.016617849469184875,0.004049217328429222,0.009287413209676743,0.07423257827758789,-0.019605493173003197,-0.06555043905973434,0.03542282059788704,-0.006532873492687941,0.015320413745939732,0.0007937304326333106,-0.03485585376620293,-0.0295061394572258,0.007244558073580265,0.019293807446956635,-0.01215861551463604,0.062227267771959305,0.01523646991699934,-0.01601209118962288,0.06295592337846756,-0.0479077510535717,-0.07424630969762802,0.02632608823478222,0.09036946296691895,-0.007303466089069843,-0.08719898015260696,-0.0008715356816537678,-0.008146555162966251,-0.02018718421459198,0.006233770400285721,0.02550073154270649,0.08429436385631561,0.0647779107093811,-0.028807371854782104,0.036439310759305954,0.013480442576110363,0.0030582984909415245,0.06347881257534027,0.010244006291031837,0.019900359213352203,0.006911798845976591,0.06616757065057755,-0.05241198465228081,-0.04612867534160614,0.11762967705726624,-0.11452209204435349,-0.06191326677799225,0.03895427659153938,0.021962592378258705,-0.15962396562099457,-0.006994024384766817,0.03381236642599106,-0.06782060861587524,0.037928398698568344,0.02578137069940567,0.0541030690073967,-0.05273666977882385,-0.010686813853681087,-0.06424346566200256,-0.030841922387480736,-0.10730702430009842,0.05365173518657684,-0.016029374673962593,-0.029372118413448334,0.05357279255986214,-0.03568236529827118,-0.005248030181974173,0.017749866470694542,0.07123374193906784,0.049064382910728455,0.08675146102905273,-0.04701409488916397,0.05508037656545639,-0.10817709565162659,0.05980650708079338,-0.028768349438905716,-0.05599942430853844,-0.001989679643884301,0.006822103168815374,0.022717049345374107,0.028137903660535812,-0.08939986675977707,-0.05401090160012245,-0.05417117848992348,-0.007210185285657644,-0.0732414573431015,-0.007651622872799635,0.0625893771648407,-0.03432300314307213,0.002978336298838258,0.019515665248036385,-0.007337619084864855,-0.017711183056235313,-0.04803082346916199,0.09060146659612656,0.09653613716363907,0.014100367203354836,-0.1277722716331482,0.08681003749370575,0.029794488102197647,0.011061256751418114,-0.02414359711110592,-1.373040860088277e-33,0.09525831043720245,0.0003455578407738358,-0.0069253938272595406,0.06725924462080002,-0.03745149448513985,-0.05945718660950661,-0.07039935141801834,-0.0571306049823761,0.02705877646803856,-0.008501783944666386,0.05474158376455307,-0.14220406115055084,-0.005139314569532871,-0.029639557003974915,-0.13858875632286072,0.04025362804532051,-0.03028797172009945,0.001131118624471128,0.10157280415296555,-0.005583606660366058,-0.08168905973434448,-0.01854843832552433,-0.03754983842372894,-0.039335329085588455,-0.02533017098903656,-0.005424088332802057,0.022854410111904144,0.02068207785487175,-0.04304707422852516,0.006913057994097471,-0.04078361392021179,0.058568235486745834,0.06430602818727493,-0.08269328624010086,0.00043409844511188567,-0.02073664404451847,-0.03206444904208183,0.024272281676530838,-0.013956486247479916,0.03800341486930847,-0.03587017208337784,0.04533125460147858,-0.03613658249378204,-0.030408574268221855,0.0024516426492482424,0.05323159694671631,0.012461374513804913,0.008668273687362671,-0.101104736328125,0.02758222073316574,0.009203899651765823,-0.03801350295543671,0.0018967948853969574,0.056522708386182785,0.06282562762498856,0.033769719302654266,0.032574012875556946,-0.04195713624358177,0.04033830761909485,0.015002424828708172,0.011924318969249725,-0.009222890250384808,-0.01985197328031063,0.014746439643204212,-0.003977851010859013,-0.030242934823036194,-0.0037198669742792845,-0.047050900757312775,-0.007339916191995144,-0.071830153465271,-0.0817001536488533,-0.0006804851582273841,-0.05741837993264198,0.02681790105998516,-0.05416307598352432,0.015501882880926132,0.04062988609075546,-0.015665939077734947,-0.056816257536411285,-0.033143311738967896,0.05874992161989212,-0.019485628232359886,-0.025326361879706383,0.037178970873355865,0.02889605425298214,-0.017522938549518585,0.02746432088315487,-0.0799994170665741,-0.07399588078260422,0.06516536325216293,-0.04351825267076492,-0.0022307836916297674,0.06830061227083206,0.006334460340440273,-0.04688635468482971,-1.9139393509958716e-33,0.011392704211175442,-0.03422587364912033,-0.11711867898702621,0.10684680938720703,-0.025840017944574356,-0.029917508363723755,-0.09221384674310684,-0.0460226871073246,0.018354052677750587,-0.008794764056801796,-0.00593581423163414,0.009877994656562805,0.04406669735908508,0.050359081476926804,0.05128246173262596,-0.03165410831570625,0.03916409984230995,-0.021955348551273346,-0.04334935173392296,-0.002167652826756239,-0.005728988442569971,0.011349816806614399,-0.02494324930012226,-0.07525704801082611,0.06801702082157135,-0.00487105455249548,0.04436458274722099,0.04627205431461334,-0.06600242853164673,-0.07121109217405319,-0.009624330326914787,-0.023041540756821632,0.026307590305805206,0.04364722967147827,0.048644036054611206,0.08192668110132217,0.1096525713801384,-0.13735121488571167,-0.07441134005784988,-0.08958730101585388,0.0036300071515142918,0.041082415729761124,0.027819328010082245,0.007877128198742867,-0.07634325325489044,-0.03929439187049866,0.07668145000934601,-0.0011795603204518557,0.02749207615852356,0.05031321570277214,-0.051351480185985565,-0.015561912208795547,0.03715924918651581,0.07661520689725876,-0.013527127914130688,-0.04759391397237778,-0.04861358925700188,-0.13753162324428558,-0.01965126395225525,-0.05336751043796539,-0.07409130036830902,0.023098938167095184,-0.09768391400575638,0.04337300732731819,0.07557143270969391,0.002957927295938134,-0.06414701789617538,-0.030806448310613632,-0.0010357241844758391,0.044831134378910065,0.04243886470794678,-0.04146213456988335,-0.11449769884347916,0.04363996908068657,0.019735556095838547,0.07610070705413818,0.026005173102021217,0.030708052217960358,-0.016863858327269554,-0.02282368391752243,0.06570477783679962,-0.015735352411866188,0.036881737411022186,0.030553044751286507,-0.04882534220814705,0.026592792943120003,-0.017508123070001602,0.06215199455618858,-0.008789769373834133,0.00019208993762731552,-0.0066291396506130695,-0.0719364732503891,0.12955251336097717,-0.10382282733917236,0.0005463469424284995,-4.666418362830882e-8,-0.0009050281951203942,-0.039417099207639694,-0.04787377268075943,-0.06191515550017357,0.04013404995203018,-0.02675618790090084,-0.012344688177108765,0.025631483644247055,-0.049086857587099075,0.03691960871219635,0.04345067963004112,0.03655405342578888,0.056325677782297134,-0.010854765772819519,-0.021349094808101654,0.043689265847206116,-0.024645233526825905,-0.010226191952824593,-0.027692342177033424,0.009415335021913052,-0.03213713318109512,0.01685059256851673,0.045360732823610306,-0.022581813856959343,0.04252229258418083,0.057804666459560394,0.0643598884344101,-0.08323776721954346,-0.07713081687688828,0.06827599555253983,-0.01387491449713707,0.045454755425453186,-0.04934338107705116,-0.00438645901158452,-0.10960683971643448,-0.016937876120209694,0.07585065066814423,0.02596939541399479,0.0449332669377327,-0.05614113435149193,-0.0022588397841900587,0.03345257416367531,-0.006972132716327906,0.001469361362978816,0.0136893130838871,-0.04384917393326759,0.0573526993393898,0.004558361601084471,0.0004370748938526958,-0.04304589331150055,-0.042831238359212875,0.012719257734715939,0.002064808737486601,0.06430171430110931,0.05131232738494873,0.019399970769882202,0.002950347727164626,0.10967091470956802,-0.059668030589818954,0.003071419196203351,0.093929223716259,0.058856379240751266,-0.007191997952759266,-0.10692346841096878]},{"text":"Yes, my father,” replied I; “some destiny of the most horrible kind hangs over me, and I must live to fulfil it, or surely I should have died on the coffin of Henry.” We were not allowed to converse for any length of time, for the precarious state of my health rendered every precaution necessary that could ensure tranquillity.","book":"1984","chapter":106,"embedding":[0.009883283637464046,0.08678895235061646,-0.03214084729552269,-0.006280585657805204,0.01688961312174797,-0.024982837960124016,0.07530688494443893,-0.0357707180082798,-0.0032843612134456635,-0.08147328346967697,0.04884890094399452,0.04363212361931801,0.0061485846526920795,-0.030567064881324768,0.031206978484988213,0.020265182480216026,-0.040359463542699814,-0.005122334696352482,-0.0882454439997673,0.15849964320659637,-0.06119264289736748,0.08109008520841599,0.013569884933531284,0.012849893420934677,-0.004796191118657589,-0.04165702685713768,-0.00673075532540679,0.006906958296895027,0.02829224430024624,0.04924938082695007,-0.09310737252235413,-0.06537943333387375,0.0035838461481034756,0.0311194509267807,-0.003383924486115575,0.019509412348270416,0.07199575006961823,0.004344190005213022,-0.011249265633523464,-0.01932445913553238,0.005101032089442015,0.047347016632556915,0.025260647758841515,-0.01558984350413084,-0.0021941408049315214,-0.039576686918735504,-0.07903647422790527,-0.011508790776133537,0.007706744130700827,0.012005673721432686,-0.08944618701934814,0.09629304707050323,0.03451277315616608,-0.03486417606472969,0.013919164426624775,-0.017568543553352356,-0.005523989908397198,0.06494702398777008,-0.037868861109018326,-0.009298293851315975,-0.04595324397087097,-0.03659510239958763,0.006866177078336477,0.03575045242905617,0.04128868505358696,0.02211354672908783,0.04846453666687012,-0.0821124017238617,-0.06791676580905914,0.0762043371796608,-0.12253577262163162,-0.05918184295296669,0.05959264934062958,0.04008491709828377,-0.10009651631116867,0.04145592078566551,0.008785810321569443,-0.05698508024215698,-0.027511687949299812,0.0005857999785803258,-0.040617574006319046,0.005157139617949724,0.012239632196724415,0.040471937507390976,-0.053897466510534286,-0.08298167586326599,0.07679053395986557,-0.03818944841623306,0.013790908269584179,0.02720697596669197,0.013703078962862492,-0.07282588630914688,0.014649992808699608,0.03964489325881004,0.015242677181959152,-0.02623230777680874,-0.016023321077227592,0.030141320079565048,-0.09104831516742706,0.013449940830469131,-0.0291318167001009,0.041250575333833694,-0.050650350749492645,-0.010629978962242603,-0.040292706340551376,0.017666446045041084,-0.15013910830020905,-0.026353228837251663,-0.04068874195218086,0.08539406955242157,-0.07055754214525223,-0.02082652784883976,0.09184319525957108,-0.03102102316915989,0.025689298287034035,0.04813488945364952,-0.055780161172151566,-0.08103162050247192,-0.0761844590306282,-0.02719159796833992,0.057040728628635406,0.04848248511552811,0.002923773368820548,0.05474692955613136,-0.04470544308423996,-0.04672204703092575,0.11070911586284637,-7.0022848496690144e-34,0.037158917635679245,-0.02936074510216713,0.06616584211587906,0.031757671386003494,0.062184449285268784,0.011948597617447376,-0.10046610236167908,0.0022624004632234573,0.03351902961730957,-0.027733100578188896,0.05629910156130791,-0.08025094121694565,0.02836352400481701,-0.07188715040683746,-0.06188922002911568,0.07474987208843231,-0.05735660716891289,-0.015995539724826813,0.12333652377128601,-0.0716068297624588,-0.005163207184523344,0.008512623608112335,-0.03191281855106354,-0.1025262176990509,-0.03344717621803284,0.026636017486453056,0.01953570917248726,0.008852052502334118,0.019950147718191147,0.03423638641834259,-0.08621468394994736,0.03950367867946625,0.036314528435468674,-0.08095155656337738,0.047326087951660156,-0.008244688622653484,-0.04586106911301613,-0.013190868310630322,-0.015099944546818733,-0.018288007006049156,0.06378401070833206,-0.009530549868941307,0.015792321413755417,-0.01721099391579628,-0.002504493109881878,-0.08675029128789902,-0.022317299619317055,-0.019857047125697136,-0.149160698056221,-0.026301052421331406,-0.05597560480237007,-0.005614094436168671,0.0047141253016889095,-0.06742443889379501,0.09332164376974106,0.005993442609906197,-0.009089508093893528,0.037509266287088394,-0.0559481643140316,0.034488219767808914,-0.01736583560705185,-0.05387619137763977,-0.021055031567811966,0.022579696029424667,-0.04190722480416298,-0.09036247432231903,-0.09647959470748901,-0.025860978290438652,-0.027094988152384758,-0.062461674213409424,-0.016231633722782135,-0.006038870196789503,-0.08841173350811005,-0.04548892006278038,-0.05489521473646164,-0.0015589901013299823,0.011337550356984138,0.12284383177757263,-0.03369012102484703,-0.12231314182281494,0.0521634966135025,-0.013495638966560364,-0.02657981403172016,0.07715500891208649,0.03156086429953575,-0.00005913243876420893,0.0013147029094398022,-0.03930012881755829,-0.04746396839618683,0.05127881467342377,-0.007390468381345272,-0.011350784450769424,0.05618082359433174,-0.05850737541913986,-0.05911222845315933,-3.482656949648361e-33,0.033973656594753265,0.006522657349705696,0.020176881924271584,0.05704234912991524,0.047640278935432434,-0.033711787313222885,-0.02095423825085163,-0.02684691734611988,-0.01847207546234131,-0.007618044503033161,0.05071822926402092,0.009174417704343796,0.08542896062135696,-0.006691891234368086,-0.007690860889852047,-0.04195050895214081,0.04689515382051468,-0.03531212732195854,0.01325861643999815,-0.05529632419347763,-0.04521312564611435,-0.05913526937365532,-0.05924881622195244,-0.046289652585983276,-0.013151421211659908,0.02261660434305668,0.06256870180368423,0.0016701178392395377,-0.06852051615715027,-0.050043120980262756,0.03353668376803398,0.06490306556224823,-0.00631121639162302,0.007646352052688599,0.06541111320257187,0.015299518592655659,0.07267633825540543,0.0469614639878273,-0.0037283659912645817,-0.054841116070747375,-0.03524741530418396,-0.029239125549793243,-0.025991884991526604,0.022289609536528587,0.013984519056975842,-0.052537012845277786,0.01768556982278824,-0.056409478187561035,0.029393287375569344,0.04788174852728844,-0.010116026736795902,0.01208046916872263,0.044996701180934906,0.012698446400463581,-0.0015081532765179873,-0.004866855684667826,-0.04119383543729782,-0.10066971927881241,0.039262596517801285,-0.018368737772107124,-0.02061062678694725,0.023958440870046616,-0.07764268666505814,-0.01683587208390236,0.05398842692375183,0.035784296691417694,-0.07948403060436249,0.050953082740306854,0.020031046122312546,-0.010320428758859634,0.07850050181150436,-0.07135559618473053,-0.03669210895895958,0.06715787947177887,0.05728576332330704,-0.005853047128766775,0.03348664939403534,-0.018089167773723602,-0.04824664816260338,0.02649303711950779,0.00198451429605484,-0.04815927892923355,0.0008047617739066482,0.011361087672412395,0.05075874552130699,-0.08774113655090332,-0.0293413195759058,-0.04568134993314743,0.034135349094867706,-0.009436107240617275,0.0554649718105793,-0.0516764372587204,0.03063173033297062,-0.113270103931427,0.010968497954308987,-4.683948517936187e-8,0.03675733134150505,0.02498921938240528,0.029909852892160416,0.03326946124434471,-0.024889638647437096,0.0009132987470366061,0.09218893945217133,0.019453944638371468,-0.08137566596269608,0.0866566151380539,-0.016200054436922073,0.12712499499320984,0.05039828270673752,-0.044248614460229874,0.01842399127781391,-0.027348728850483894,-0.0470271036028862,-0.1435965746641159,-0.036428533494472504,0.0037842525634914637,0.04038860648870468,0.005848786793649197,-0.00913877971470356,-0.004195175599306822,0.017885908484458923,0.015831705182790756,0.0996042862534523,0.008844996802508831,-0.05218255892395973,0.04915628582239151,0.008478076197206974,0.012003372423350811,-0.0631338506937027,0.015149370767176151,-0.047436609864234924,-0.048978615552186966,0.03869975730776787,0.004828998818993568,0.04982489347457886,-0.0976240262389183,0.0903400406241417,0.03152460977435112,0.012692198157310486,0.019906409084796906,0.07831602543592453,0.07221167534589767,-0.03179556131362915,0.07702310383319855,-0.026172881945967674,0.035265397280454636,-0.013547292910516262,0.0859813541173935,0.08666457235813141,0.014616374857723713,0.06439050287008286,-0.015657566487789154,0.021735779941082,0.06458701193332672,-0.04260867089033127,0.005631453823298216,0.13907815515995026,0.08060260117053986,0.018122589215636253,-0.10295092314481735]},{"text":"I had already been three months in prison, and although I was still weak and in continual danger of a relapse, I was obliged to travel nearly a hundred miles to the country town where the court was held.","book":"1984","chapter":107,"embedding":[0.04611191526055336,0.0688677579164505,-0.048865485936403275,-0.006286619696766138,0.017161613330245018,0.06304101645946503,-0.010638170875608921,-0.01953856274485588,-0.026184268295764923,-0.025421859696507454,0.0985184982419014,0.016397932544350624,0.07158199697732925,0.0017182711744681,0.030115917325019836,0.008074388839304447,0.0642247274518013,0.011834345757961273,-0.042403947561979294,0.003431794000789523,-0.0038595148362219334,-0.05825602263212204,0.020344210788607597,0.020164044573903084,-0.0391717404127121,0.03696713224053383,-0.060620151460170746,0.048541635274887085,-0.00868781004101038,-0.0031777210533618927,-0.04183327406644821,-0.06312838941812515,-0.05037376284599304,0.02847534418106079,0.01649550534784794,0.014550327323377132,0.007342649158090353,-0.04040476307272911,0.024869855493307114,-0.06590403616428375,0.08467746526002884,0.06434506177902222,0.0752011239528656,0.0312957763671875,0.022638751193881035,-0.09465561807155609,-0.04016565531492233,0.02651897631585598,-0.053864527493715286,-0.045263949781656265,0.023304082453250885,-0.003077306319028139,0.0006984767387621105,0.049915481358766556,-0.0364832766354084,-0.005432771518826485,0.02702171914279461,0.12764470279216766,-0.06532122194766998,0.026209916919469833,-0.013753775507211685,0.06750587373971939,-0.015649376437067986,-0.011509907431900501,-0.016289709135890007,0.016269903630018234,-0.017958633601665497,-0.0671384334564209,0.12741248309612274,0.03431146591901779,-0.0629512295126915,-0.004501507617533207,-0.08982816338539124,-0.020443366840481758,-0.09353964030742645,0.012186163105070591,0.028045056387782097,0.0556928850710392,0.034976180642843246,0.013562731444835663,0.018695326521992683,-0.004896087571978569,0.018871983513236046,-0.009782795794308186,-0.026453524827957153,-0.0783398225903511,-0.027951441705226898,-0.03036048635840416,-0.002933972980827093,-0.02253521978855133,0.16297338902950287,0.00785425677895546,0.028568662703037262,-0.06265782564878464,0.0026999751571565866,-0.07450336217880249,0.003463929519057274,0.022507160902023315,0.005570597015321255,0.059566691517829895,0.07703883945941925,-0.03283911198377609,-0.01008853130042553,-0.057941507548093796,0.06358953565359116,-0.005013511050492525,-0.015991603955626488,0.004165448248386383,-0.055110909044742584,0.003610077314078808,0.04694439098238945,0.05880223587155342,0.09284280240535736,0.06285418570041656,-0.016704417765140533,0.09753556549549103,-0.056806035339832306,0.0548974946141243,0.04833192750811577,0.056582335382699966,0.010554267093539238,0.08729130029678345,-0.034144651144742966,0.003610597923398018,-0.09300225228071213,-0.017663199454545975,0.06495003402233124,-1.1023330517950469e-33,-0.013920936733484268,-0.03456444293260574,-0.04892449080944061,0.045755937695503235,0.020215606316924095,-0.030410652980208397,-0.054900310933589935,-0.04358113184571266,-0.023575810715556145,-0.006787299178540707,0.022417673841118813,-0.08857090771198273,0.01914864405989647,-0.1390702873468399,-0.07316096872091293,0.05521303042769432,-0.013550092466175556,0.017992934212088585,0.044359996914863586,0.028752373531460762,0.06462731212377548,-0.06790948659181595,0.05457286536693573,0.04923553764820099,-0.0548747181892395,-0.025864645838737488,-0.01787789724767208,-0.057493697851896286,-0.006968654226511717,-0.015474054031074047,0.02394365519285202,0.14255642890930176,0.06835141032934189,-0.05526323616504669,-0.014847012236714363,0.0007705417810939252,0.07688919454813004,-0.03195981681346893,0.07016202807426453,0.03368168696761131,-0.04056530445814133,0.03638327866792679,0.024765195325016975,0.013454697094857693,0.0685189962387085,-0.040589358657598495,-0.06090975180268288,-0.009105685167014599,-0.06901509314775467,-0.0014408326242119074,-0.08412177115678787,-0.03636642172932625,-0.03474724665284157,-0.05771182104945183,-0.06691708415746689,0.021896036341786385,-0.045783061534166336,0.0760311484336853,0.05583978071808815,0.08889181166887283,0.008059974759817123,0.027968116104602814,0.011392488144338131,0.05721597373485565,-0.013350122608244419,-0.06765850633382797,-0.05699511989951134,-0.03302396088838577,-0.04381495714187622,-0.0677253007888794,0.011116587556898594,0.01507320161908865,0.040451593697071075,0.038751594722270966,0.0012499499134719372,-0.06407090276479721,0.028900060802698135,-0.08933443576097488,-0.05433834344148636,-0.05926593393087387,-0.005945433396846056,-0.0020353663712739944,-0.06825638562440872,0.0989656075835228,0.07610005885362625,-0.04631531611084938,0.012197294272482395,-0.13975821435451508,-0.03174346685409546,-0.0729023739695549,0.059465765953063965,-0.021420177072286606,0.020548248663544655,-0.07296514511108398,0.01900991052389145,-2.9721575691724965e-34,0.06127845495939255,-0.07287859171628952,0.03471674770116806,0.0019459902541711926,0.045673128217458725,-0.04031970351934433,-0.0814385712146759,0.05310957133769989,-0.08244724571704865,0.022153370082378387,-0.08134224265813828,-0.0020469913724809885,0.14487221837043762,0.0925045758485794,-0.06122489646077156,0.07441319525241852,0.03875184804201126,0.009276063181459904,-0.04755708575248718,0.07135003060102463,0.0317494198679924,-0.09948089718818665,-0.01255367323756218,0.058149464428424835,-0.04793005809187889,-0.00417244853451848,0.020224478095769882,-0.0931066945195198,-0.06061941757798195,-0.010765603743493557,0.0008160897996276617,-0.004908998962491751,-0.039087314158678055,0.0024437615647912025,-0.03470403701066971,-0.007815138436853886,0.12196998298168182,-0.05094030871987343,0.0027733321767300367,0.021655945107340813,-0.0367669016122818,0.011793144047260284,-0.009204595349729061,0.007447787560522556,0.007869500666856766,0.02374867908656597,0.022389352321624756,-0.02896255999803543,0.04842844977974892,-0.02256700024008751,-0.05991773307323456,0.0075444187968969345,0.015609834343194962,0.017224444076418877,0.026694416999816895,-0.017397146672010422,0.0047950115986168385,-0.06502651423215866,-0.04007015377283096,0.005960404407233,-0.13032174110412598,0.047498904168605804,-0.0359477624297142,-0.005424958188086748,0.09437459707260132,0.005290928762406111,-0.09176038205623627,0.013825864531099796,-0.029292544350028038,-0.040523793548345566,-0.002677755896002054,-0.028041720390319824,0.03221488371491432,0.07972382009029388,0.06269483268260956,-0.004094823729246855,0.05622955039143562,0.0394861064851284,-0.08206867426633835,-0.02047652192413807,0.058862727135419846,-0.017968660220503807,0.010594760067760944,-0.07067006826400757,0.04724526405334473,0.10962912440299988,0.05766022950410843,-0.014547904022037983,0.01337653398513794,-0.011619377881288528,0.04209410771727562,-0.044903963804244995,-0.004117005504667759,-0.005288812797516584,0.047075774520635605,-3.586374575093032e-8,-0.058167167007923126,0.07654007524251938,0.012450724840164185,0.0657232478260994,-0.049173951148986816,0.05729119852185249,0.07141315191984177,0.03243304416537285,-0.05915519967675209,-0.016909321770071983,-0.014825905673205853,0.008188346400856972,0.04241149127483368,0.0017442959360778332,-0.05163423717021942,0.05551089346408844,0.040832746773958206,-0.00831594131886959,0.0026250991504639387,0.08517678081989288,-0.12828296422958374,0.016246573999524117,-0.015356821939349174,-0.010529715567827225,0.01656934805214405,-0.02208367921411991,-0.008376657962799072,0.050887253135442734,0.021158378571271896,-0.04812204837799072,-0.0651806890964508,-0.015281742438673973,-0.04084482789039612,0.010054127313196659,-0.10903052985668182,-0.03753894940018654,-0.014532634988427162,-0.015491620637476444,-0.01544167846441269,-0.034693244844675064,-0.030290480703115463,0.04794575273990631,0.04426370561122894,0.0679652988910675,0.059843841940164566,-0.057219065725803375,-0.06557437032461166,0.08700331300497055,-0.005986671429127455,-0.016423359513282776,-0.04535745084285736,0.007565713953226805,-0.006298835854977369,0.04402230679988861,0.12096717208623886,0.04703303053975105,-0.010846423916518688,0.04171008989214897,-0.09597935527563095,0.007142776157706976,-0.033328089863061905,0.009560816921293736,-0.03732069954276085,-0.09384579956531525]},{"text":"At these moments I often endeavoured to put an end to the existence I loathed, and it required unceasing attendance and vigilance to restrain me from committing some dreadful act of violence.","book":"1984","chapter":107,"embedding":[0.06552496552467346,0.05531444028019905,0.017287274822592735,0.03823482245206833,0.09495017677545547,0.03411077708005905,0.02827463671565056,-0.0484733060002327,0.028001705184578896,-0.06685435026884079,0.062153518199920654,0.0016138438368216157,0.0584355853497982,0.005244398023933172,0.009309196844696999,-0.04811561107635498,0.06326016783714294,-0.024182476103305817,-0.015406185761094093,0.06824347376823425,-0.022869175300002098,0.0915137529373169,0.0035002657677978277,0.06729289144277573,-0.07035376876592636,0.020420564338564873,0.025286464020609856,-0.04266892746090889,0.0057383314706385136,-0.024568257853388786,0.01299263909459114,-0.10824047029018402,0.009215106256306171,0.02204512059688568,0.041870150715112686,-0.011426453478634357,0.06829556822776794,-0.012852453626692295,0.022175827994942665,-0.08075665682554245,0.03457397222518921,0.08632420003414154,0.05517001450061798,-0.008737530559301376,0.04389556869864464,-0.12795455753803253,-0.022108497098088264,-0.08372095972299576,0.019649313762784004,-0.07204102724790573,0.010800042189657688,0.011696020141243935,-0.044600553810596466,-0.011585475876927376,-0.021265972405672073,-0.0562548004090786,0.08046107739210129,0.06185576319694519,-0.030748963356018066,0.03189381957054138,-0.04181143268942833,0.0585847944021225,0.02893955633044243,-0.012920990586280823,0.004509542603045702,0.01946129836142063,0.03932490199804306,-0.0010266515891999006,0.061856821179389954,0.16382372379302979,-0.06237693876028061,0.0016890030819922686,0.0025080067571252584,0.07494746893644333,-0.03270860016345978,0.022472552955150604,-0.0378117598593235,-0.022284410893917084,0.08577664196491241,0.00829515140503645,0.013970466330647469,0.042900633066892624,0.0036290367133915424,0.037013404071331024,-0.041592974215745926,-0.046386025846004486,0.045852262526750565,0.031889818608760834,0.10669587552547455,-0.06700491905212402,-0.012140881270170212,0.0491056852042675,0.010460909456014633,-0.014337114989757538,0.03003569506108761,-0.07948797941207886,-0.02574174478650093,-0.004196848254650831,-0.021819274872541428,0.07104068249464035,-0.0682900920510292,-0.04024316370487213,-0.038792990148067474,0.0015270920703187585,0.023946329951286316,-0.01799602247774601,-0.14060992002487183,-0.07061535120010376,-0.11492128670215607,0.00233549065887928,-0.017818262800574303,0.008523596450686455,-0.013774817809462547,-0.05465954542160034,0.030686594545841217,0.12212271243333817,0.04082735255360603,0.013957247138023376,0.04329202324151993,0.08958324044942856,0.08556030690670013,0.010252662003040314,-0.013427265919744968,0.05227776616811752,-0.04600492864847183,-0.07626074552536011,-0.036408696323633194,4.130230267196132e-34,0.00994676910340786,-0.06367094814777374,-0.06898006796836853,0.039064303040504456,0.07566579431295395,-0.06347201764583588,-0.06743768602609634,0.04854018986225128,0.03978314623236656,0.027582520619034767,0.055448178201913834,-0.00546989357098937,0.0678110271692276,-0.0825326144695282,0.011103502474725246,-0.0012331739999353886,-0.011430962011218071,0.054183561354875565,0.06513132154941559,-0.02652447484433651,0.013765465468168259,-0.10047932714223862,0.0032692388631403446,0.06593586504459381,-0.05653921514749527,0.03476570546627045,-0.01513175293803215,0.01612125337123871,0.07723981887102127,0.03514789417386055,0.0923316702246666,0.034557193517684937,-0.017439911141991615,-0.007597585208714008,0.041836220771074295,0.02218167670071125,-0.01066487468779087,-0.014488078653812408,0.044122662395238876,-0.07982800900936127,-0.02724900282919407,0.03223023936152458,-0.03809453547000885,-0.00914871133863926,0.1002340093255043,0.06427502632141113,0.006969543639570475,-0.0597526952624321,-0.10617496818304062,0.03341826796531677,-0.05170079693198204,-0.027801038697361946,0.029657986015081406,-0.02373378910124302,-0.11656967550516129,-0.06401311606168747,-0.024929258972406387,-0.021471723914146423,0.03242039680480957,-0.06687075644731522,-0.03239918872714043,-0.002153277862817049,-0.016661856323480606,0.026268908753991127,-0.002101879334077239,-0.18826431035995483,-0.057068515568971634,-0.07692237198352814,0.00517811207100749,-0.07610436528921127,-0.02755415439605713,0.010288194753229618,-0.02749449945986271,-0.05476520210504532,-0.05428047478199005,-0.08693788945674896,-0.0018056149128824472,-0.06765817850828171,0.06244460493326187,-0.06594493240118027,0.07494857907295227,-0.042428210377693176,-0.029844580218195915,-0.01338916551321745,0.09871179610490799,-0.049314603209495544,0.028350304812192917,-0.08389837294816971,-0.06626300513744354,0.04962315037846565,0.028371090069413185,0.006615913938730955,0.04207342863082886,-0.036631498485803604,-0.09946174174547195,-1.4191879214011791e-33,0.10536430031061172,-0.038941338658332825,-0.02714218944311142,0.03338474780321121,0.00026696399436332285,-0.04468393698334694,-0.06706998497247696,-0.02819138765335083,-0.044998131692409515,0.04827515780925751,0.005295122507959604,-0.025028839707374573,0.06516071408987045,0.05339553579688072,-0.04917631298303604,-0.0721978172659874,0.02932862378656864,0.019490275532007217,-0.039263468235731125,-0.03738630190491676,-0.038241442292928696,-0.06368100643157959,0.041664041578769684,-0.07379436492919922,0.012049506418406963,0.017859112471342087,0.05359688401222229,-0.06150949373841286,-0.06201058626174927,-0.010340810753405094,0.08975151181221008,0.030889451503753662,-0.022897988557815552,-0.014179147779941559,-0.022818414494395256,0.07379141449928284,0.057617705315351486,0.07261175662279129,-0.0577038936316967,-0.07142838090658188,-0.08299606293439865,0.024667028337717056,-0.015633368864655495,0.021429304033517838,0.0283735990524292,0.0029519314412027597,0.028990305960178375,-0.025182200595736504,-0.006788740400224924,-0.0032028225250542164,-0.0666920468211174,-0.024351319298148155,0.06865833699703217,-0.022164415568113327,0.02140469290316105,0.03288012370467186,0.027157627046108246,-0.04785330593585968,-0.054928798228502274,-0.0367843359708786,-0.006768315564841032,-0.02224189043045044,-0.09702213853597641,0.03038787841796875,0.10695932060480118,-0.06834530085325241,-0.09553948789834976,0.06670674681663513,-0.08350206166505814,-0.0058148447424173355,-0.03466840460896492,0.02078494057059288,-0.002504804404452443,0.003950752783566713,-0.00934496521949768,-0.03171484172344208,0.02111317776143551,-0.017264321446418762,-0.051228538155555725,-0.024013645946979523,0.022262966260313988,-0.01307714357972145,0.01817426085472107,0.0012747725704684854,-0.08592400699853897,0.0013744788011536002,0.02866407297551632,0.04028170555830002,0.016762040555477142,0.0616149976849556,0.011084119789302349,-0.012922764755785465,-0.013562883250415325,-0.064537912607193,0.02382018230855465,-3.8621429609975166e-8,-0.007537873927503824,-0.03294041007757187,0.0029777202289551497,-0.04367927089333534,0.09595634788274765,-0.0071478597819805145,0.021805329248309135,0.05172083154320717,-0.04866022616624832,0.04660879820585251,-0.02200288325548172,-0.02850036323070526,0.06370276212692261,0.03569705784320831,0.04323413223028183,0.042777903378009796,0.10723712295293808,-0.04589352756738663,-0.04869658872485161,0.06128232926130295,-0.031895559281110764,0.010071337223052979,-0.05295909196138382,-0.04416286200284958,0.016450868919491768,0.03606661781668663,-0.05272049456834793,-0.052688002586364746,-0.014738503843545914,0.08099407702684402,0.0023437365889549255,0.009121350944042206,-0.0018010640051215887,-0.0289546437561512,-0.07733434438705444,0.025230547413229942,-0.004024778958410025,-0.024107323959469795,0.04510146379470825,-0.019823770970106125,0.01725253462791443,0.013229229487478733,0.043023452162742615,0.06742863357067108,0.07765783369541168,0.04850788414478302,-0.005125469993799925,0.05230408161878586,-0.04829619079828262,0.01419590413570404,0.028785033151507378,0.0038657942786812782,0.05268380418419838,0.06494425982236862,0.036404117941856384,0.021939106285572052,0.061645857989788055,0.04467396065592766,-0.08398646116256714,0.004508635029196739,0.11983206123113632,-0.007268741726875305,-0.08721914142370224,-0.02177715115249157]},{"text":"I remembered, shuddering, the mad enthusiasm that hurried me on to the creation of my hideous enemy, and I called to mind the night in which he first lived.","book":"1984","chapter":108,"embedding":[-0.040834132581949234,0.06798311322927475,-0.017109589651226997,0.05425763875246048,-0.03204252943396568,-0.012025929987430573,0.08196014165878296,0.03255268931388855,0.002450399799272418,-0.09410997480154037,-0.04200851544737816,0.0062445905059576035,0.0419999361038208,-0.009878156706690788,-0.02225951850414276,0.01753407157957554,0.03180713206529617,0.0007844736101105809,0.04106507822871208,0.04691106081008911,0.01706700399518013,0.09630078822374344,0.0786285325884819,-0.002849531825631857,-0.01659061200916767,0.028020331636071205,0.07810554653406143,0.04364214465022087,0.05065338313579559,-0.045623887330293655,0.008048485964536667,0.03484506905078888,0.015799345448613167,-0.007010029163211584,-0.010453879833221436,0.03392718359827995,-0.07267705351114273,-0.02591072954237461,0.06404165923595428,-0.029825277626514435,-0.0040961019694805145,0.041153427213430405,-0.051433317363262177,0.032131604850292206,-0.0631021037697792,-0.058284491300582886,0.0193695817142725,-0.00834291148930788,0.03484091907739639,-0.02226349152624607,-0.03305141255259514,-0.00088884262368083,-0.0426490344107151,-0.0317518413066864,0.002792548155412078,0.06450740247964859,0.10349570214748383,0.02610020525753498,-0.022657983005046844,0.038792192935943604,-0.08327912539243698,-0.011294446885585785,0.06040020287036896,-0.025370491668581963,-0.05152609571814537,-0.04113238677382469,0.018368221819400787,0.023468654602766037,-0.021076224744319916,0.10629861056804657,-0.01103427354246378,0.009824531152844429,0.054332584142684937,-0.04545464739203453,-0.06767588108778,-0.003267001360654831,-0.007584963925182819,-0.02634190209209919,0.04489528015255928,-0.03995869681239128,-0.008776934817433357,-0.0051046255975961685,-0.03254746273159981,-0.0008586515323258936,0.0177761260420084,-0.031328342854976654,0.11438475549221039,-0.015080842189490795,-0.0016751205548644066,0.03241793438792229,-0.002255449304357171,-0.09575995802879333,-0.08180291205644608,-0.014572623185813427,0.003809102112427354,-0.023258382454514503,-0.03417994827032089,-0.00867749098688364,-0.029668424278497696,-0.015773490071296692,0.06752894073724747,-0.03650287911295891,-0.02343529649078846,0.07825686037540436,0.00038271478842943907,-0.03347403183579445,-0.05344270169734955,-0.05185934528708458,-0.03460538387298584,-0.026074128225445747,-0.0575873889029026,-0.016204800456762314,0.004710809327661991,0.028372913599014282,0.060385674238204956,-0.03676335886120796,-0.004783939104527235,-0.04976658523082733,-0.009085450321435928,0.107403464615345,0.1004386767745018,0.07266893982887268,-0.04861224442720413,0.04197545722126961,-0.029133733361959457,-0.05576157942414284,-0.004932597745209932,-7.757500848150971e-33,0.06613723933696747,0.018197694793343544,-0.04521426931023598,-0.01562977023422718,0.06755838543176651,-0.03968885913491249,-0.03358139470219612,0.03440435230731964,-0.04824155569076538,0.003715456696227193,-0.029584834352135658,-0.03842954710125923,0.019086826592683792,0.05740005522966385,-0.10461722314357758,0.021828165277838707,-0.06601056456565857,-0.024919074028730392,0.10146213322877884,0.02469772659242153,-0.08321204781532288,0.12739413976669312,0.02487199380993843,-0.05387711152434349,0.006342437118291855,-0.02285759150981903,-0.017768878489732742,-0.01975303329527378,0.028252482414245605,0.04068681597709656,0.05631148815155029,0.03263197839260101,0.0002297703322255984,0.08189314603805542,0.03628399595618248,0.01038979273289442,-0.012159002013504505,-0.07830526679754257,-0.033300481736660004,0.05735035613179207,0.08243364840745926,0.06666947156190872,0.0015483238967135549,-0.05754205957055092,-0.08222772181034088,-0.00808913167566061,0.020703839138150215,0.05180224031209946,0.05357824265956879,-0.021680982783436775,-0.027005735784769058,0.015570392832159996,0.0473993718624115,0.005574482027441263,-0.01284822914749384,-0.050861962139606476,0.002400345867499709,-0.05226419121026993,-0.014893892221152782,0.04968883842229843,-0.048277951776981354,-0.06531175971031189,0.08210097253322601,-0.03356196731328964,0.002355587435886264,-0.09312084317207336,-0.08117928355932236,0.03620379418134689,-0.04572943225502968,-0.059443723410367966,-0.04031575843691826,-0.06531916558742523,-0.023137690499424934,-0.08464790880680084,0.005178532097488642,-0.03443413972854614,0.06900060921907425,-0.004857685882598162,-0.06898754835128784,-0.08119218051433563,0.07615318894386292,-0.07073467969894409,-0.05733029544353485,0.003836205694824457,0.009898051619529724,-0.009625263512134552,0.08437000215053558,-0.14410164952278137,-0.0820150077342987,0.04997936263680458,-0.033210963010787964,-0.009737618267536163,0.05662912130355835,-0.039053596556186676,-0.1539028435945511,2.7761144988141095e-33,0.055599395185709,-0.034954167902469635,0.030711229890584946,0.06538550555706024,-0.03550055995583534,-0.026121869683265686,-0.0703766718506813,0.013171522878110409,-0.10948512703180313,-0.039945367723703384,-0.005539527628570795,0.01605197601020336,0.024079792201519012,-0.04622259363532066,0.034307319670915604,-0.07627655565738678,-0.0447036437690258,-0.012014871463179588,0.012297305278480053,0.028808610513806343,0.007930012419819832,-0.028495877981185913,0.056591104716062546,-0.12725992500782013,0.017970826476812363,0.032132524996995926,0.1127082034945488,-0.043068286031484604,0.04773898795247078,-0.07572034746408463,-0.03279455006122589,-0.006081732455641031,-0.08077544718980789,-0.009751326404511929,0.0013646569568663836,0.10269248485565186,0.06156023591756821,0.003991927020251751,-0.014218652620911598,-0.07122253626585007,0.013144496828317642,0.025792311877012253,0.06500895321369171,0.08679743111133575,-0.037398405373096466,-0.044492509216070175,-0.03558921813964844,0.10426098108291626,-0.00827106088399887,-0.0014813510933890939,-0.0757552906870842,0.062409523874521255,-0.021894611418247223,-0.014368542470037937,-0.05819864198565483,-0.05834398791193962,0.012763447128236294,-0.07209468632936478,0.08609671145677567,0.03208338841795921,-0.08342606574296951,-0.04213803634047508,-0.09433966875076294,-0.021395931020379066,-0.0029056714847683907,-0.030567986890673637,-0.054349932819604874,0.04472898691892624,-0.03530236706137657,0.03610571473836899,0.02178284339606762,-0.0009106019278988242,-0.04777918756008148,0.07935279607772827,0.00927941594272852,-0.027138665318489075,-0.022526390850543976,-0.0033977634739130735,-0.016887839883565903,-0.06326160579919815,0.03603620454668999,-0.00009082988981390372,-0.031030168756842613,0.0034387188497930765,-0.017094513401389122,-0.03576475381851196,-0.01376731600612402,0.07270088791847229,0.018015632405877113,-0.03450937569141388,-0.038239967077970505,0.03452039137482643,0.04436047747731209,-0.009537618607282639,0.08519068360328674,-3.059356146195569e-8,-0.11242523044347763,0.014706466346979141,0.007069044280797243,0.03358466550707817,0.13454365730285645,-0.02546933852136135,0.008640219457447529,0.05457570403814316,-0.06464081257581711,0.02957211248576641,-0.0036978942807763815,0.07704859972000122,0.06376653164625168,0.021163180470466614,0.055845633149147034,0.05056020990014076,0.036284178495407104,-0.06996891647577286,0.03985686972737312,0.004788384307175875,-0.014725100249052048,0.0381443165242672,-0.01908021606504917,-0.035842522978782654,0.008056475780904293,0.013938629999756813,-0.06334909051656723,-0.020263809710741043,-0.00942752044647932,0.05712510645389557,0.029086802154779434,0.09493372589349747,-0.048237964510917664,-0.12400612980127335,-0.04662207141518593,0.010460754856467247,-0.010269287042319775,-0.007591770496219397,0.0922585055232048,-0.12675587832927704,0.02469933219254017,0.10204529762268066,0.003845526371151209,-0.0007452883291989565,0.057895634323358536,0.004353129770606756,0.04750294238328934,-0.07238109409809113,0.024957431480288506,0.003255249233916402,0.031745247542858124,0.10715536773204803,0.06679371744394302,0.04970017820596695,0.030052030459046364,0.00235538836568594,-0.030303487554192543,-0.007421050686389208,-0.04666809365153313,0.007501915562897921,0.09193991869688034,0.05552376061677933,-0.13070812821388245,-0.035237833857536316]},{"text":"He wished me to seek amusement in society.","book":"1984","chapter":108,"embedding":[0.05227299779653549,0.13567829132080078,0.00907930452376604,-0.04045519232749939,0.012474323622882366,-0.04383047670125961,0.1628698706626892,0.010912292636930943,-0.017620064318180084,-0.07088040560483932,-0.0022493209689855576,0.04462151974439621,0.00452137878164649,-0.006132267881184816,0.05115436017513275,-0.011256705038249493,0.03709397837519646,-0.0036535728722810745,-0.041523534804582596,0.08345998078584671,-0.01058519072830677,0.10768913477659225,0.02433941885828972,-0.06886781752109528,-0.11609161645174026,0.055657751858234406,0.029218312352895737,-0.029809221625328064,0.0041779642924666405,0.026168378069996834,0.01905546709895134,-0.027069326490163803,0.03889206051826477,-0.015157541260123253,-0.016687972471117973,-0.09725964814424515,-0.0292313564568758,-0.003418240463361144,-0.009013968519866467,-0.020323313772678375,0.0032585333101451397,0.009320180863142014,0.00682756258174777,0.04395719990134239,-0.019626721739768982,-0.007141228299587965,0.02012641169130802,-0.016280660405755043,0.0800078883767128,0.002471099840477109,-0.03691375255584717,0.01359693892300129,-0.025914516299962997,-0.032483816146850586,-0.059376612305641174,0.05083244666457176,0.05443696677684784,0.05233731120824814,-0.011134207248687744,0.002410859800875187,-0.08139489591121674,-0.011946716345846653,0.009015210904181004,0.04093997925519943,0.061723507940769196,-0.018264440819621086,-0.0065920064225792885,-0.005701684392988682,0.017820104956626892,0.02773035690188408,0.017705129459500313,-0.026048576459288597,0.03639408200979233,0.010866538621485233,-0.06925059854984283,-0.04622534289956093,0.028985479846596718,-0.051945969462394714,0.010400721803307533,-0.014239833690226078,-0.008259810507297516,0.014209123328328133,-0.046305038034915924,-0.011640379205346107,-0.03900942951440811,-0.11561180651187897,0.06125433370471001,-0.03665338084101677,0.0019034866709262133,0.05998488515615463,-0.048872217535972595,-0.07163718342781067,-0.10627525299787521,-0.04471784830093384,-0.018347542732954025,0.016277002170681953,-0.07167799025774002,-0.01421293057501316,-0.04081432893872261,0.0816035121679306,0.04780430346727371,-0.02971837669610977,0.03411825746297836,0.0715477466583252,-0.022883731871843338,-0.021825985983014107,-0.03963591530919075,0.054166246205568314,0.0048975227400660515,-0.04392653703689575,-0.08777473866939545,-0.027879156172275543,0.059632495045661926,-0.06618183851242065,0.04218645393848419,-0.00028487679082900286,-0.005123007111251354,0.043486714363098145,0.013241062872111797,-0.04525125026702881,0.053054485470056534,0.06917457282543182,-0.041519999504089355,0.13566622138023376,-0.04574229568243027,-0.0769924744963646,0.05910574644804001,-5.333753454294312e-33,-0.006938950624316931,-0.056725624948740005,0.03950997442007065,-0.018290461972355843,0.06779339909553528,0.07403343170881271,0.008236151188611984,-0.05126307159662247,-0.015245146118104458,-0.05390242487192154,0.08145612478256226,0.025743501260876656,0.002776513574644923,0.05759724974632263,-0.09255532920360565,0.055634789168834686,-0.01581096649169922,-0.015417678281664848,0.1393110603094101,-0.041394468396902084,-0.014914541505277157,0.009552906267344952,0.026592576876282692,-0.046217236667871475,-0.053252577781677246,0.005171456839889288,-0.018920954316854477,-0.0900992900133133,0.08804361522197723,0.044604092836380005,0.003274328541010618,0.13249149918556213,0.021430743858218193,-0.08269552141427994,0.07049164921045303,0.03745812550187111,-0.01720537804067135,-0.03577848896384239,-0.018051831051707268,-0.01916332170367241,0.06361046433448792,0.01068865042179823,0.0015521026216447353,0.015349102206528187,-0.10100802034139633,0.045431237667798996,0.022385025396943092,0.10313265770673752,-0.02807823196053505,0.043347135186195374,-0.009379243478178978,-0.018665479496121407,0.04945080727338791,-0.08933251351118088,-0.006308133248239756,0.004362157545983791,0.02854675054550171,0.026921652257442474,0.04467543587088585,-0.054961908608675,-0.05119873210787773,-0.022252213209867477,-0.005132585298269987,-0.0023069684393703938,0.012865718454122543,-0.06691808998584747,0.0007051660213619471,-0.032186318188905716,-0.016731031239032745,-0.0024106409400701523,-0.04250911623239517,0.0138544337823987,-0.08619289100170135,-0.09095009416341782,-0.0975697711110115,-0.014967061579227448,-0.09360434114933014,-0.03476095199584961,-0.02896537259221077,-0.09992686659097672,0.04269720986485481,0.011481715366244316,-0.06599728018045425,0.002059279242530465,0.08209189027547836,0.016566503793001175,0.05828935280442238,-0.10328669100999832,-0.020022036507725716,0.05425475910305977,0.03375973552465439,0.009563202038407326,0.04095904529094696,0.003520618425682187,-0.09987302869558334,1.5082654139385535e-33,0.008800511248409748,-0.02595132403075695,-0.03294037654995918,0.07859943807125092,0.03049561008810997,-0.030811645090579987,-0.12204312533140182,-0.06728571653366089,0.014028656296432018,0.029549548402428627,0.037555769085884094,0.09333488345146179,0.07204559445381165,-0.012604153715074062,-0.009796206839382648,-0.033366404473781586,0.010099073871970177,-0.0016984444810077548,-0.02211502566933632,-0.018987394869327545,-0.021784452721476555,0.10447414219379425,0.05987260863184929,0.02041790820658207,-0.06956810504198074,0.0044152382761240005,0.039485231041908264,-0.018014702945947647,-0.03380024433135986,0.04492016136646271,-0.023706261068582535,0.054741911590099335,-0.0629151314496994,0.048654768615961075,0.03696523234248161,0.05076558142900467,0.011281294748187065,-0.02726929634809494,-0.05825920030474663,-0.05782250687479973,-0.06732163578271866,-0.008832377381622791,0.09098721295595169,0.025850016623735428,0.0083339624106884,0.025547731667757034,-0.006186874583363533,0.05855489894747734,0.020810488611459732,0.019728438928723335,-0.10649483650922775,0.03836529329419136,0.03248513117432594,-0.05826830863952637,-0.01294870488345623,-0.03256576508283615,-0.04317101091146469,-0.007580122910439968,0.04352009668946266,-0.0031423419713974,-0.04631366953253746,-0.0034994357265532017,-0.05965990200638771,-0.027098162099719048,0.02008017711341381,-0.008731729350984097,-0.01620298996567726,-0.00800576712936163,-0.0476912297308445,-0.03032001294195652,0.017463654279708862,-0.020120641216635704,0.07093141973018646,-0.004319292958825827,-0.0311485193669796,0.06918724626302719,0.03829702362418175,0.008068748749792576,0.004359752405434847,-0.03644813597202301,-0.016401026397943497,-0.028632091358304024,0.03420509025454521,-0.06637130677700043,-0.0729728490114212,0.004303846973925829,-0.08175361156463623,0.007426423020660877,0.001004009391181171,0.0005325712845660746,0.08372373133897781,-0.06833069026470184,0.06278757750988007,-0.02277655340731144,0.07844598591327667,-1.9046314747583892e-8,-0.06100386008620262,-0.03572478145360947,-0.04610903561115265,0.050205521285533905,0.0495997853577137,0.07103313505649567,0.008868610486388206,0.030222980305552483,-0.06187775358557701,-0.008955738507211208,-0.0034155931789427996,-0.0022460767067968845,0.08410748839378357,0.06512385606765747,0.08150554448366165,-0.04009862616658211,0.07076656073331833,-0.05797842517495155,-0.03773310407996178,0.07514113932847977,0.0692417323589325,0.058056317269802094,0.005510999355465174,-0.06596764922142029,-0.09104900062084198,0.025886842980980873,0.07532088458538055,-0.04304904490709305,0.012093781493604183,0.08923863619565964,0.001465911976993084,0.03231459856033325,-0.08721961081027985,-0.019663332030177116,-0.014790716581046581,-0.028357885777950287,-0.07803995162248611,0.0003556511946953833,0.09152287989854813,-0.0765252336859703,0.007320160511881113,0.0689823254942894,0.03955921158194542,-0.004668484441936016,-0.015989132225513458,0.068644218146801,0.06254392862319946,0.053909581154584885,0.037336647510528564,0.06228189170360565,-0.03120758943259716,0.03589266911149025,0.030946429818868637,-0.02692819945514202,0.054251778870821,-0.08350048214197159,-0.021645527333021164,0.019557558000087738,-0.10764482617378235,-0.038721855729818344,0.06878513842821121,0.01571119762957096,-0.14310675859451294,-0.11029700189828873]},{"text":"William, Justine, and Henry—they all died by my hands.” My father had often, during my imprisonment, heard me make the same assertion; when I thus accused myself, he sometimes seemed to desire an explanation, and at others he appeared to consider it as the offspring of delirium, and that, during my illness, some idea of this kind had presented itself to my imagination, the remembrance of which I preserved in my convalescence.","book":"1984","chapter":109,"embedding":[0.006846549455076456,0.025615839287638664,0.016604935750365257,-0.032994143664836884,0.030833138152956963,0.039911363273859024,0.09787686169147491,-0.03484220430254936,0.07283987104892731,-0.06595429033041,0.037757184356451035,-0.01830250583589077,0.005917368922382593,-0.08374525606632233,-0.003479389939457178,0.024852711707353592,-0.10485910624265671,0.045225415378808975,-0.1279115527868271,0.09468299150466919,0.020548652857542038,0.05121738091111183,0.004110389389097691,0.010627076961100101,0.0006116036674939096,0.07682250440120697,-0.008028215728700161,-0.05218988656997681,0.05490976199507713,0.01696973666548729,-0.07478222250938416,-0.009695181623101234,-0.03577931225299835,-0.05060568079352379,0.0021245533134788275,0.03761827200651169,-0.03013847954571247,0.03820323199033737,0.029966644942760468,-0.015874825417995453,-0.000709888176061213,0.06745593994855881,0.02985505387187004,0.06441936641931534,0.006417641881853342,-0.04768591746687889,-0.04695843905210495,0.027594346553087234,0.026348067447543144,0.019511518999934196,-0.05574898049235344,0.027121741324663162,0.06371410936117172,-0.026559054851531982,-0.04337231069803238,-0.04895447567105293,0.038572005927562714,0.05910225585103035,-0.0397087000310421,0.03206697851419449,-0.06740621477365494,0.03563966602087021,0.01594497635960579,0.010422706604003906,0.015470187179744244,0.004902518820017576,0.04477471858263016,-0.020981362089514732,0.012686613947153091,0.06371214240789413,-0.0493515320122242,-0.05835042893886566,0.03148788586258888,0.00905327033251524,-0.07348829507827759,0.06653706729412079,0.008531713858246803,-0.09404198080301285,-0.06479170173406601,-0.010775146074593067,-0.01989923045039177,0.030484218150377274,0.00407885666936636,-0.04233941435813904,-0.008691413328051567,-0.09398342669010162,0.03685080632567406,-0.022672338411211967,-0.003199166152626276,0.07670871168375015,0.0005947921308688819,-0.11104653030633926,-0.01866517774760723,0.011648408137261868,0.043899476528167725,0.03735404089093208,-0.000711711822077632,-0.003532649949193001,-0.11668303608894348,0.03448851779103279,0.015317830257117748,0.06967656314373016,0.013528777286410332,0.06253562122583389,0.013577829115092754,-0.0007910447893664241,-0.11258290708065033,-0.08687132596969604,0.010591770522296429,-0.06846201419830322,-0.021544018760323524,-0.030232129618525505,0.014616252854466438,0.062383733689785004,0.024240778759121895,0.06017016991972923,-0.05160141363739967,-0.02735101990401745,0.03823452442884445,-0.04301050305366516,0.005360239185392857,0.0013804301852360368,0.005551129579544067,0.03100944496691227,-0.028802944347262383,-0.0018762164982035756,0.012718607671558857,-5.616847024118874e-33,0.011599374003708363,-0.05389215424656868,-0.0386565662920475,0.08997230231761932,0.02561846934258938,-0.02877681516110897,-0.12689350545406342,-0.028714235872030258,0.0103783393278718,-0.1154448613524437,0.05890214815735817,-0.0511665977537632,0.03733902424573898,0.009200617671012878,-0.10510226339101791,0.07156159728765488,-0.04593677446246147,0.0065468368120491505,0.08129077404737473,-0.06097586080431938,-0.02054225467145443,0.12389559298753738,-0.0037563908845186234,-0.05665309354662895,-0.05635274201631546,0.02040169946849346,0.04578004777431488,0.030234120786190033,0.009874412789940834,0.02993912808597088,-0.01071931142359972,0.10351267457008362,0.03485247120261192,-0.013063226826488972,0.04104512929916382,0.09002596139907837,0.012318633496761322,-0.003203944070264697,0.02585575543344021,0.017961421981453896,0.004041871055960655,0.013853885233402252,0.027805477380752563,-0.07713755965232849,-0.0391308069229126,-0.1170041635632515,-0.03608757257461548,-0.055146943777799606,-0.10168977826833725,0.024512087926268578,0.009875033050775528,-0.015753213316202164,-0.02224566787481308,-0.06633087992668152,-0.01883331872522831,0.0331883504986763,-0.03430892527103424,0.07049508392810822,0.039679624140262604,0.03709377720952034,0.0667124092578888,0.008574873208999634,-0.03680339455604553,0.09118638932704926,-0.005811744835227728,-0.04707023501396179,-0.08015238493680954,-0.058020565658807755,-0.02782292850315571,-0.056962233036756516,-0.08277039974927902,0.0158932376652956,-0.02678520791232586,-0.05004144832491875,-0.05157717317342758,-0.022479888051748276,-0.04215628653764725,0.02339463122189045,-0.0966026708483696,-0.04813719168305397,0.10037316381931305,-0.01098314393311739,-0.02740161120891571,0.044453613460063934,-0.031932443380355835,-0.01602754183113575,0.018091199919581413,-0.04124949127435684,-0.05871157348155975,0.042847082018852234,-0.02749936655163765,0.03573045879602432,0.05518009886145592,-0.11808525770902634,-0.08319848775863647,1.02207893005754e-33,0.01092998031526804,-0.017037594690918922,0.08666876703500748,-0.005854387301951647,-0.005256787873804569,-0.08601241558790207,-0.03464363515377045,-0.02543073706328869,-0.07771353423595428,-0.015114319510757923,-0.029139073565602303,-0.00890319887548685,0.008421900682151318,0.02632256969809532,-0.02139277569949627,-0.05606347694993019,0.01178008783608675,-0.029550010338425636,-0.031123265624046326,-0.015275038778781891,-0.006790117360651493,0.017747700214385986,-0.01964382268488407,-0.046674128621816635,-0.013807576149702072,0.030727816745638847,0.08440617471933365,0.0008979835547506809,-0.03788681700825691,-0.055268388241529465,0.01546482928097248,0.040412548929452896,0.02478458546102047,-0.013030003756284714,0.03090759366750717,0.04593976214528084,0.04692896082997322,-0.006566455587744713,-0.015784980729222298,-0.08093781024217606,-0.01989220455288887,-0.00346360937692225,0.029413621872663498,0.016103286296129227,0.04602235183119774,-0.04098263755440712,-0.030898720026016235,0.0070241582579910755,0.07951980084180832,0.008574262261390686,-0.03152713179588318,-0.01531988475471735,-0.03096502088010311,0.020921757444739342,-0.0050137219950556755,-0.06892047077417374,-0.01631314493715763,-0.09542887657880783,0.013270008377730846,-0.03654060512781143,-0.029550956562161446,0.04109305515885353,-0.0622677356004715,0.01588490791618824,0.08051831275224686,0.01206964161247015,-0.045666832476854324,0.05332445353269577,-0.04704679921269417,0.011057566851377487,0.1087750494480133,0.0008954126387834549,-0.044666387140750885,0.0041017113253474236,0.0859484151005745,-0.00503184599801898,-0.11782840639352798,0.0423802025616169,-0.04687471315264702,-0.02764841727912426,0.03780645504593849,-0.09986558556556702,0.017804091796278954,0.03389614447951317,-0.012809978798031807,-0.09646503627300262,0.014353020116686821,0.06985028088092804,-0.030307361856102943,-0.060602229088544846,0.030508222058415413,-0.05106212943792343,0.035964906215667725,-0.04099975898861885,0.06858209520578384,-4.643066731091494e-8,0.04357175529003143,-0.023674868047237396,0.013746463693678379,0.005695532076060772,-0.07786277681589127,-0.026949232444167137,0.07146771997213364,0.06657258421182632,-0.05514950677752495,0.05141410976648331,-0.022376755252480507,0.01173082459717989,-0.002288526389747858,-0.014861777424812317,0.019376222044229507,-0.013241933658719063,-0.07544437050819397,-0.05495412275195122,0.017048655077815056,0.02162662148475647,-0.007687415927648544,0.007440382614731789,0.09545149654150009,-0.010638116858899593,0.03454458341002464,0.07486137747764587,0.04880792275071144,-0.00995553471148014,-0.10705196112394333,0.014878524467349052,0.019592732191085815,0.012739590369164944,0.0020428316202014685,0.0015506742056459188,-0.060830648988485336,-0.02505555748939514,0.005846319254487753,0.004046664107590914,0.10802405327558517,-0.06482455879449844,0.0027044082526117563,0.008821881376206875,-0.03670871630311012,0.032174739986658096,0.192625030875206,-0.006904768757522106,0.02397121675312519,0.03434927389025688,-0.011211181990802288,0.013501174747943878,-0.020344963297247887,0.07315684109926224,0.09514492005109787,0.08676746487617493,0.07134547829627991,-0.0032649755012243986,0.003959921188652515,0.11092255264520645,-0.0924401804804802,-0.02474352717399597,0.20111553370952606,0.09319868683815002,0.003549120621755719,-0.054473891854286194]},{"text":"He wished as much as possible to obliterate the memory of the scenes that had taken place in Ireland and never alluded to them or suffered me to speak of my misfortunes.","book":"1984","chapter":109,"embedding":[0.07403289526700974,0.15043175220489502,0.045676250010728836,-0.02608047053217888,0.05129501223564148,0.004701745696365833,0.004611728247255087,-0.032339587807655334,0.07587018609046936,-0.09646190702915192,-0.030681615695357323,0.01308347936719656,0.012501416727900505,0.008208743296563625,0.025693144649267197,-0.007159634027630091,-0.037217143923044205,-0.014309111982584,-0.0643334612250328,0.054121486842632294,0.009294847026467323,0.08893848210573196,0.020846189931035042,-0.013023500330746174,-0.005139749962836504,-0.004234740510582924,-0.016954494640231133,0.01314153615385294,0.001979381311684847,0.007285757455974817,0.06743153184652328,-0.0400637723505497,-0.06665872037410736,0.030875327065587044,0.006190841551870108,-0.02968107908964157,-0.08389598876237869,0.005778942257165909,0.005358805414289236,-0.0754602700471878,-0.018929941579699516,0.04374808445572853,-0.013057151809334755,0.019701169803738594,0.01895926706492901,0.02087603136897087,0.01295008696615696,-0.06787389516830444,-0.00013838564336765558,-0.048758700489997864,-0.01872907765209675,0.04743474721908569,-0.03379322215914726,-0.12544633448123932,0.017024336382746696,0.025324271991848946,0.03311609849333763,0.07450947165489197,-0.01340979989618063,0.03489135950803757,-0.09467462450265884,-0.022062528878450394,0.010034273378551006,-0.0006912635872140527,0.03818727657198906,0.014508340507745743,-0.006634939927607775,-0.01999852992594242,-0.003269891021773219,0.06647241860628128,-0.09593675285577774,-0.009361795149743557,0.026731539517641068,0.0009562867926433682,-0.07212561368942261,-0.04743613675236702,-0.02491779252886772,0.0038315150886774063,-0.010648565366864204,-0.002846622606739402,-0.009396861307322979,0.05215631425380707,-0.038689710199832916,0.06242314353585243,0.021564632654190063,-0.051779210567474365,0.0969671979546547,-0.07593932747840881,0.02452804706990719,0.04393867403268814,-0.005966906435787678,-0.0824362188577652,-0.010954407043755054,0.04700867086648941,0.02787146344780922,0.01232060231268406,-0.05937410891056061,0.04145416244864464,-0.07536518573760986,0.06350798159837723,0.009500350803136826,0.0005742114153690636,-0.053880538791418076,-0.0018904454773291945,-0.05278773978352547,-0.00285954587161541,-0.016524285078048706,-0.040871620178222656,-0.06082554906606674,-0.011378330178558826,-0.06258084625005722,-0.05375678464770317,0.04185640066862106,-0.02428087592124939,0.024703601375222206,-0.006293457467108965,0.0015957662835717201,0.01864951103925705,-0.02937493659555912,0.03352631628513336,-0.03804601728916168,0.13693328201770782,-0.009555356577038765,0.1542835682630539,-0.10075663030147552,-0.03996463865041733,0.07073713093996048,-1.7642621859377312e-33,0.05580185726284981,-0.0684109628200531,-0.062157563865184784,-0.008266265504062176,0.09273657947778702,0.030307915061712265,-0.01627338118851185,-0.04095223546028137,0.10724940150976181,-0.012721419334411621,0.13857349753379822,-0.03634423390030861,-0.01739441230893135,-0.06948636472225189,-0.06694367527961731,0.08196722716093063,-0.022045191377401352,0.03221689164638519,0.059033285826444626,0.011599607765674591,-0.002391904592514038,0.0854981318116188,0.037719059735536575,-0.008619190193712711,0.0026667818892747164,-0.015648066997528076,0.005054725334048271,-0.01228385977447033,0.03452827408909798,0.007219957187771797,-0.05196236073970795,0.1138748973608017,0.051101792603731155,-0.1343226134777069,0.06570557504892349,0.0034979612100869417,-0.01681756228208542,-0.045117415487766266,-0.003286094171926379,0.05140284076333046,0.057675302028656006,0.0025050919502973557,-0.020772157236933708,-0.021771376952528954,-0.06912188977003098,-0.061367735266685486,0.06389039754867554,0.09801975637674332,0.0018381678964942694,-0.02003418654203415,0.03659827634692192,-0.022482816129922867,-0.05459854006767273,-0.09306139498949051,0.014531977474689484,0.018537161871790886,0.015544034540653229,-0.07596324384212494,0.09235376119613647,0.0008022232796065509,0.03378361463546753,-0.0528576485812664,0.041585929691791534,0.004571469500660896,0.01302761398255825,-0.016998589038848877,-0.03111233189702034,0.0365179181098938,-0.11038469523191452,-0.07262320071458817,-0.09398812800645828,-0.041141945868730545,-0.01003983709961176,-0.15970097482204437,-0.08529912680387497,-0.00890861265361309,-0.0740792378783226,0.033412300050258636,-0.02039666846394539,-0.04448758438229561,-0.03743663430213928,-0.00947866216301918,-0.0315881222486496,0.005463309586048126,0.050897352397441864,0.00299502513371408,0.10389389842748642,-0.09406314790248871,0.000244599737925455,0.04598945751786232,0.02461167424917221,-0.014904860407114029,-0.030134236440062523,-0.1325422078371048,-0.09635899215936661,-1.9673648345567753e-33,0.01609707996249199,-0.03704068809747696,-0.026723727583885193,0.009410332888364792,0.03972916677594185,-0.027290554717183113,-0.03132427856326103,-0.044884491711854935,0.010031185112893581,0.03949877619743347,-0.04600322246551514,0.04451119899749756,0.018842050805687904,-0.02031896263360977,-0.12021014094352722,0.04351891577243805,-0.0040830583311617374,0.011755433864891529,-0.017786527052521706,-0.006460507400333881,0.013526410795748234,0.061902306973934174,0.03623533621430397,0.024530770257115364,-0.009204692207276821,-0.012664546258747578,0.03260338678956032,-0.013840412721037865,-0.022921685129404068,-0.10545555502176285,0.0089826425537467,0.02569817192852497,-0.09733152389526367,-0.004760248586535454,0.009593811817467213,0.08031533658504486,0.05208549275994301,0.037738583981990814,-0.0668780654668808,-0.026262452825903893,0.0014610480284318328,-0.07527542859315872,-0.06445828080177307,0.025846561416983604,-0.04420476034283638,-0.01579182595014572,-0.030276117846369743,0.04117794334888458,0.08635116368532181,0.025161616504192352,-0.06525993347167969,0.07996682822704315,0.007928907871246338,-0.029559649527072906,-0.015801390632987022,-0.050389260053634644,0.002931690774857998,-0.0765950158238411,0.09121481329202652,-0.03263702988624573,-0.07434773445129395,-0.05561118200421333,-0.08176331222057343,-0.07589401304721832,0.019439460709691048,0.03696480393409729,-0.04218843951821327,0.013682755641639233,0.04522145912051201,0.019254488870501518,-0.012843681499361992,-0.06507910788059235,0.040368445217609406,-0.007423796691000462,0.04577919468283653,0.03371761366724968,-0.0472412072122097,0.013075360096991062,0.002506109420210123,-0.011412389576435089,0.01971864327788353,-0.06058340519666672,0.0039429678581655025,0.016755536198616028,0.016912013292312622,0.019606830552220345,-0.017907464876770973,-0.0060728914104402065,0.06565354019403458,0.021558454260230064,0.06362885236740112,-0.03384552150964737,0.10630906373262405,-0.032605454325675964,0.10662324726581573,-3.1199800076819884e-8,-0.056168247014284134,-0.024284370243549347,-0.01970742642879486,0.017224039882421494,-0.014005672186613083,-0.09951164573431015,0.006535785738378763,0.08066724240779877,-0.0494755394756794,0.025166410952806473,-0.034163761883974075,0.005739304237067699,-0.012556924484670162,-0.024474158883094788,0.052771084010601044,0.025275209918618202,0.10654226690530777,-0.05271229147911072,0.015841364860534668,0.03121189773082733,-0.010932122357189655,0.022054065018892288,-0.024688730016350746,-0.03611544519662857,-0.0003332151682116091,0.029128145426511765,0.03945380821824074,-0.0425504632294178,-0.03201736882328987,0.06036821007728577,0.03895572945475578,-0.03117264062166214,-0.012138537131249905,-0.031635839492082596,-0.026090260595083237,0.013411570340394974,-0.03196542337536812,-0.006222240626811981,0.03976643830537796,-0.03828379884362221,0.033226799219846725,0.026325354352593422,0.07345063239336014,0.04519806429743767,-0.005822636187076569,0.02779966965317726,0.041285041719675064,0.03875405713915825,-0.022153612226247787,-0.006577125750482082,-0.00948721170425415,0.12596668303012848,-0.005482163745909929,0.1101924255490303,0.07498954236507416,0.0048660216853022575,0.058036115020513535,-0.00525967450812459,-0.08064604550600052,-0.013857156969606876,0.1246463879942894,0.07138757407665253,-0.11288750171661377,-0.08578479290008545]},{"text":"We were told this when young, and taught to look forward to it as an event that would certainly take place.","book":"1984","chapter":110,"embedding":[0.01477036066353321,0.08867156505584717,0.0026110855396836996,0.06447036564350128,0.03237253427505493,0.045685648918151855,-0.011122776195406914,-0.10235705971717834,0.08684166520833969,0.025838816538453102,0.024754775688052177,0.07241739332675934,-0.05984867736697197,0.042268846184015274,0.0760553851723671,-0.08077501505613327,0.0015177951427176595,-0.042422376573085785,0.008543848991394043,0.025601739063858986,0.0067850137129426,-0.02952193282544613,0.09516265243291855,0.015948191285133362,-0.03542105481028557,0.016740266233682632,-0.027576643973588943,-0.05434195697307587,0.02959238924086094,0.0924399271607399,0.04611288383603096,-0.04753655195236206,0.02640041708946228,0.029664866626262665,-0.0363084152340889,0.03762025386095047,0.059324346482753754,-0.009688446298241615,0.008860494010150433,-0.007756098173558712,-0.013550164178013802,-0.02092072181403637,0.005763210356235504,0.01998198591172695,-0.04506621137261391,0.018242569640278816,-0.007611047010868788,-0.0644254982471466,-0.040545448660850525,-0.0009929582010954618,0.03500595688819885,-0.06745350360870361,0.03199152275919914,-0.12681467831134796,0.03333616629242897,0.08292779326438904,-0.0502435564994812,-0.04182559996843338,0.038714129477739334,-0.036947693675756454,-0.0678032711148262,-0.02317778766155243,-0.07718514651060104,0.034535281360149384,-0.01579209603369236,-0.01968083716928959,0.04095053672790527,0.14709046483039856,0.005494802258908749,-0.03487508371472359,-0.008873065933585167,0.050141192972660065,0.04511144757270813,-0.008630577474832535,-0.06767089664936066,0.0018572298577055335,0.07381677627563477,0.018802132457494736,-0.009158345870673656,-0.06428324431180954,-0.03918469324707985,0.045364461839199066,0.030110815539956093,-0.05069620534777641,-0.009930610656738281,-0.025618797168135643,-0.029022345319390297,-0.011248106136918068,0.0057485029101371765,0.003888389328494668,-0.08424180001020432,-0.04714910686016083,0.015350515954196453,0.062412288039922714,-0.0034734250511974096,0.055725257843732834,-0.06427047401666641,0.05350775271654129,0.03737638145685196,-0.010417329147458076,-0.025842925533652306,0.05169052630662918,0.0012439143611118197,0.057150401175022125,-0.009357094764709473,-0.05689143389463425,-0.07355852425098419,-0.11293961107730865,-0.00022859290766064078,-0.03329908102750778,0.006665839813649654,-0.04909172281622887,0.0805748775601387,0.053427815437316895,-0.029939478263258934,0.057457730174064636,-0.014554326422512531,-0.03114362806081772,-0.04037843644618988,-0.07218919694423676,0.008317774161696434,0.047178689390420914,-0.02203732542693615,-0.008615294471383095,0.03463590517640114,-0.05746407434344292,0.010748733766376972,-5.405283020225817e-33,0.08898463845252991,-0.05019301176071167,-0.008721772581338882,0.057129886001348495,0.05425442382693291,0.0628761276602745,0.01791023463010788,-0.0592295303940773,0.03949594497680664,-0.06012532860040665,0.06721310317516327,-0.054045792669057846,0.026413515210151672,-0.032612595707178116,-0.07005138695240021,0.016335157677531242,-0.12309668213129044,0.013451521284878254,0.012490205466747284,-0.04720645025372505,-0.02506818249821663,-0.04143231362104416,-0.01034705713391304,-0.08339040726423264,0.0058910842053592205,0.05918591096997261,-0.0019844661001116037,0.06279907375574112,0.05781857296824455,0.029716437682509422,0.009925231337547302,0.0205061137676239,-0.05887307971715927,-0.03794465959072113,0.014620260335505009,-0.013759230263531208,0.03383165970444679,-0.03949962556362152,-0.011374826543033123,-0.03173207864165306,0.060516368597745895,-0.0616171658039093,-0.12322075664997101,-0.06154129281640053,0.05474269762635231,0.03782682865858078,0.06203153356909752,-0.019424844533205032,-0.05711794272065163,-0.0031443224288523197,-0.02938728779554367,0.018461018800735474,-0.007095564156770706,-0.1343846321105957,0.003897380782291293,0.07965601235628128,0.01959025301039219,0.006463998928666115,-0.07735242694616318,-0.037784866988658905,0.008727237582206726,-0.029582643881440163,0.01052172388881445,0.0245111845433712,-0.09489630907773972,0.022499656304717064,0.02209610678255558,0.00232782494276762,-0.018721232190728188,-0.04865512624382973,-0.00933033600449562,0.05780463293194771,-0.13077525794506073,-0.00220493390224874,0.009958147071301937,-0.009108075872063637,0.05537513270974159,-0.04122947156429291,0.059073373675346375,-0.03204626217484474,-0.03297676891088486,-0.04099544137716293,0.005124811548739672,0.060783714056015015,0.10996382683515549,0.0026771188713610172,0.048024602234363556,-0.061252228915691376,-0.060062386095523834,-0.026771651580929756,0.013151121325790882,-0.06680116057395935,0.06922724843025208,0.049055684357881546,-0.04994808882474899,9.237083281574499e-34,0.04229236766695976,0.02274775691330433,-0.041085053235292435,0.041128065437078476,0.051182862371206284,-0.026983503252267838,-0.021088557317852974,-0.02436230331659317,0.06611426174640656,0.05627243593335152,-0.03138703480362892,-0.040671370923519135,-0.040157198905944824,-0.008769719861447811,-0.034255243837833405,-0.04604858160018921,0.02632932737469673,-0.007219458930194378,0.04126141965389252,-0.0025196601636707783,-0.002548667136579752,0.02864052914083004,-0.10911153256893158,-0.02537989616394043,-0.02031097374856472,0.011132755316793919,0.09695959091186523,-0.029668940231204033,-0.10517697781324387,0.0035335905849933624,-0.05131753161549568,0.0007529891445301473,-0.01223599724471569,0.04284568503499031,-0.016560548916459084,0.07955286651849747,0.030184326693415642,-0.0560334250330925,-0.006038891617208719,0.04140404611825943,0.021141506731510162,-0.06274263560771942,-0.0481024794280529,0.06607893854379654,-0.07935253530740738,0.012412572279572487,0.03883732855319977,0.13098563253879547,-0.015865519642829895,0.06579805165529251,-0.058051444590091705,0.0434269979596138,0.02554791234433651,-0.07989008724689484,-0.004457384813576937,0.029752559959888458,0.019634857773780823,-0.0898602306842804,0.02880813181400299,0.04973552003502846,-0.026994086802005768,-0.030157554894685745,0.024735599756240845,-0.028920181095600128,0.024381840601563454,-0.013563592918217182,-0.10758868604898453,0.08155764639377594,0.02152835763990879,0.0927462950348854,0.1149173229932785,0.040913548320531845,-0.1297021508216858,0.018509069457650185,-0.005044831894338131,-0.021796919405460358,0.04962065815925598,-0.03809419274330139,-0.051744941622018814,0.011707153171300888,0.014611365273594856,-0.027407672256231308,-0.011121852323412895,0.00028692971682175994,0.06359351426362991,-0.012103564105927944,-0.05406612157821655,-0.02604999579489231,-0.015637436881661415,0.022345328703522682,-0.07457612454891205,-0.06641387194395065,0.012167503125965595,-0.039086613804101944,-0.05751414969563484,-2.910472574058076e-8,-0.021180184558033943,0.06024211645126343,-0.010790682397782803,0.02486451342701912,0.09600608050823212,0.0822283998131752,0.0748676210641861,0.011415376327931881,-0.02895759791135788,-0.013617850840091705,-0.04654623940587044,0.05176315829157829,0.08002900332212448,0.027754800394177437,0.10156599432229996,0.040341611951589584,0.0240602046251297,-0.1123693585395813,-0.07082071900367737,0.07200934737920761,0.0638309046626091,0.017407003790140152,0.05853332579135895,-0.035964496433734894,-0.05217960104346275,-0.03515490144491196,-0.06797420233488083,0.08360271900892258,-0.0776594951748848,-0.004076649434864521,0.009721440263092518,-0.023523248732089996,-0.06474849581718445,-0.026954589411616325,-0.002398853888735175,0.054598260670900345,-0.008907116018235683,-0.04380476474761963,0.11226721107959747,-0.093794085085392,-0.00817527249455452,0.054844725877046585,0.006127052009105682,0.11899764835834503,-0.023465629667043686,0.06906407326459885,-0.04696906730532646,0.06238037720322609,-0.06298525631427765,0.03607551380991936,-0.0752800703048706,-0.005749267525970936,0.05817965418100357,-0.006563127506524324,0.13883186876773834,0.03175284340977669,-0.023092225193977356,-0.01229765173047781,0.016039719805121422,-0.0011363625526428223,0.04822666198015213,0.02384178340435028,-0.07467132806777954,0.02316359058022499]},{"text":"On that night he had determined to consummate his crimes by my death.","book":"1984","chapter":111,"embedding":[0.012907247059047222,0.10363166779279709,-0.026885194703936577,0.010132519528269768,0.06220409274101257,-0.03964950516819954,0.12139512598514557,0.013758046552538872,0.0014376821927726269,-0.04426321014761925,-0.003529701614752412,0.02860017865896225,0.09221211820840836,0.02818920463323593,0.010256033390760422,-0.0404026061296463,0.009153978899121284,-0.0013737204717472196,-0.003733505727723241,0.02498200535774231,0.017992723733186722,0.0675676017999649,0.061169981956481934,-0.0826999843120575,-0.030789675191044807,0.06352809816598892,0.035389143973588943,0.0019437808077782393,0.06507039815187454,-0.04059581458568573,0.0019290861673653126,-0.051441632211208344,-0.026308447122573853,0.03814049810171127,-0.004860412795096636,-0.07309786230325699,-0.018219031393527985,-0.016647782176733017,0.05705880746245384,0.05876270681619644,0.06591671705245972,0.0744282677769661,0.07192008197307587,0.07876443862915039,-0.038190409541130066,-0.05975853651762009,-0.003795450320467353,-0.010290591046214104,0.08643300086259842,0.01892884634435177,-0.03230901062488556,0.01709643378853798,0.013762119226157665,-0.02825985662639141,-0.05246754735708237,0.017748085781931877,0.0722706988453865,0.08722260594367981,0.04521112143993378,-0.026260290294885635,0.028670860454440117,0.07245710492134094,0.025387940928339958,-0.029580697417259216,0.005090449471026659,0.03849644958972931,-0.009837271645665169,0.010452810674905777,0.0709514170885086,0.14855626225471497,0.006973233539611101,0.014644186943769455,0.021080926060676575,0.030792055651545525,-0.17100167274475098,-0.028217915445566177,0.059567585587501526,-0.03725333511829376,0.02019388973712921,-0.008715465664863586,-0.09230662882328033,0.021210405975580215,-0.03442396596074104,0.0239338930696249,0.04647227004170418,-0.08894000202417374,0.021476328372955322,-0.03512951359152794,0.06354950368404388,0.04034297168254852,0.040335532277822495,-0.038720130920410156,-0.07356403768062592,-0.03358001261949539,-0.06416390091180801,-0.013783038593828678,-0.02835025265812874,0.07791484892368317,0.017753932625055313,0.02071479707956314,-0.03412661701440811,-0.03784092143177986,-0.04992770031094551,0.02567587047815323,0.027026277035474777,-0.012919418513774872,-0.042955875396728516,-0.009720588102936745,-0.015536826103925705,-0.014366519637405872,0.028014617040753365,-0.06748051941394806,0.08675086498260498,0.023979783058166504,0.08922851830720901,0.12814725935459137,-0.039231881499290466,0.0621621310710907,-0.06751804798841476,0.03723697364330292,0.04924918711185455,0.1034151241183281,-0.061254121363162994,0.039271872490644455,-0.09200902283191681,-0.01227384153753519,0.03992332145571709,-2.4999973042906852e-33,0.06583194434642792,-0.09705819189548492,-0.08119897544384003,-0.025494534522294998,0.11185422539710999,-0.015464434400200844,-0.07753616571426392,-0.008120792917907238,-0.022153418511152267,0.0506867915391922,0.07476303726434708,-0.007877266965806484,-0.0817057266831398,-0.03992021456360817,-0.08327914029359818,0.10018826276063919,0.06933027505874634,-0.002623706590384245,0.04234326258301735,-0.0471842959523201,-0.05714215338230133,0.003866668092086911,0.03763885051012039,-0.019634360447525978,-0.026985008269548416,-0.01902705244719982,-0.009428612887859344,0.007974923588335514,-0.023393571376800537,0.0003040166920982301,0.025029871612787247,0.08542651683092117,0.1000845730304718,0.06024656817317009,0.03200512379407883,0.07934140413999557,-0.07943114638328552,-0.03610618785023689,-0.0891525149345398,0.0009600517223589122,0.05900026485323906,0.04486726596951485,0.051391709595918655,-0.03499815985560417,-0.028542380779981613,-0.03973168879747391,-0.013704458251595497,0.04132997989654541,-0.005862967111170292,-0.0005617332644760609,0.014321967959403992,-0.04201534017920494,0.04258263483643532,-0.07200022041797638,-0.02136121690273285,0.08320767432451248,-0.027158359065651894,-0.020845483988523483,0.0589529350399971,0.09553015232086182,-0.007000407204031944,-0.0739159807562828,0.00888921320438385,0.017316732555627823,-0.10074099898338318,-0.17810775339603424,-0.013619854114949703,-0.05628760904073715,-0.02390466071665287,-0.06420181691646576,-0.048479534685611725,-0.017705366015434265,-0.028627825900912285,-0.06525367498397827,-0.033831801265478134,-0.03872660547494888,-0.04020702466368675,0.021582361310720444,-0.10687797516584396,-0.04987253621220589,0.03007788583636284,0.02772163599729538,0.00512455590069294,-0.0035214421804994345,0.02181318588554859,0.051220644265413284,0.021902306005358696,-0.0899299681186676,-0.07655379921197891,0.043484579771757126,-0.022312970831990242,-0.024062393233180046,0.011808626353740692,-0.05732376128435135,-0.03169338032603264,-2.164820702188057e-34,-0.05185480788350105,-0.08151091635227203,0.05933533236384392,0.03975418582558632,-0.01837337203323841,-0.07611741870641708,-0.1397123634815216,-0.044648826122283936,-0.05408191308379173,-0.039816342294216156,0.0614483505487442,0.013777308166027069,0.05859873816370964,0.055955998599529266,0.015416519716382027,-0.056069135665893555,-0.03451700881123543,0.01487626601010561,-0.01573314517736435,0.01854921691119671,-0.05171120911836624,0.0051916781812906265,0.04733054339885712,-0.029915813356637955,-0.0240438524633646,0.008917118422687054,0.03547294810414314,0.015727711841464043,-0.09231605380773544,0.0021253686863929033,0.011775619350373745,0.00797603651881218,-0.09412112087011337,0.015245773829519749,-0.014669330790638924,0.062264200299978256,0.039936892688274384,-0.03954249247908592,0.019024301320314407,-0.09264815598726273,-0.09101361036300659,0.009428342804312706,-0.01795625127851963,0.01098593045026064,-0.011572573333978653,-0.019505655393004417,0.014709509909152985,0.07022368162870407,0.03293389081954956,-0.011979633942246437,-0.07614455372095108,0.05091744288802147,-0.048821985721588135,-0.01794838160276413,-0.050370555371046066,-0.03594624623656273,0.049461234360933304,0.019037701189517975,0.0562865175306797,-0.02314089797437191,-0.04675743728876114,0.034448765218257904,-0.016258979216217995,0.08998730033636093,0.03953643515706062,0.024428099393844604,-0.06576382368803024,0.0868629738688469,0.010988042689859867,0.027329221367836,-0.04129369184374809,-0.011045541614294052,-0.049011312425136566,0.09847566485404968,-0.01750055141746998,-0.0342588871717453,-0.06257008761167526,0.03877903148531914,-0.011508416384458542,-0.01864466443657875,-0.01495253574103117,-0.0911388173699379,-0.0021731832530349493,0.04506642743945122,-0.014661211520433426,-0.029286358505487442,0.04936444014310837,-0.019265195354819298,0.07164207845926285,0.013963636010885239,-0.0034690413158386946,-0.06657504290342331,0.010153583250939846,-0.01849467121064663,-0.033276960253715515,-2.3839444196482873e-8,-0.06286857277154922,-0.02490231767296791,-0.05592818185687065,-0.0041655260138213634,0.04287264496088028,0.023456385359168053,0.01382085494697094,-0.020439619198441505,-0.041410893201828,0.05124145373702049,0.0321536622941494,0.0187725517898798,0.07466832548379898,-0.040136389434337616,0.02379830926656723,-0.013543402776122093,0.021213015541434288,-0.11856979876756668,0.002325713401660323,0.006164256017655134,0.008074778132140636,0.016754625365138054,0.03510716184973717,0.01755811646580696,0.07114731520414352,0.02274130843579769,-0.014307007193565369,0.08527284860610962,0.027150357142090797,0.11250627785921097,0.03224880248308182,0.015650847926735878,-0.022027378901839256,-0.025721032172441483,-0.04875214770436287,-0.0072511653415858746,0.006272269878536463,0.001329901977442205,0.0524592325091362,-0.019348759204149246,0.03893871605396271,0.04221481457352638,-0.0245400071144104,-0.024444809183478355,-0.012909426353871822,-0.0030572758987545967,0.013314221985638142,0.009691406041383743,0.010430067777633667,0.0038515948690474033,-0.04352842643857002,0.024547796696424484,0.05085427314043045,0.02569083869457245,0.10471583902835846,-0.12408774346113205,-0.020113127306103706,-0.007152223959565163,-0.07801704853773117,-0.024918332695961,0.08094500005245209,0.026196332648396492,-0.08416289836168289,-0.08415420353412628]},{"text":"In this state of mind I wrote to Elizabeth.","book":"1984","chapter":111,"embedding":[-0.006867294665426016,0.007511920295655727,0.062147095799446106,0.01999141462147236,-0.02585306204855442,0.031165864318609238,0.12199173122644424,-0.06831420212984085,0.03544725850224495,0.061328690499067307,-0.1109326034784317,0.05716131255030632,0.04621965065598488,-0.07540754973888397,-0.021150672808289528,0.09690554440021515,0.027501443400979042,-0.016012020409107208,-0.028933195397257805,0.05377795174717903,0.05020682513713837,0.05738586559891701,0.0328645296394825,0.055021051317453384,-0.07348226755857468,0.036241721361875534,-0.06081336364150047,-0.014698184095323086,-0.029751334339380264,-0.0321752168238163,-0.06791816651821136,0.021470606327056885,-0.02169705368578434,0.005644987337291241,0.05572901666164398,0.004917662125080824,-0.005277554038912058,0.042845260351896286,0.07706057280302048,-0.09350253641605377,-0.004461229778826237,-0.036124683916568756,0.02792578563094139,0.015227450989186764,-0.01053221058100462,0.008866646327078342,-0.04744981974363327,0.059855733066797256,0.027113299816846848,-0.044504083693027496,-0.07927366346120834,0.00582925183698535,-0.060922861099243164,-0.09393229335546494,-0.02498987317085266,0.017889227718114853,-0.002427782164886594,0.025519011542201042,0.02607811987400055,-0.029332362115383148,0.0015523898182436824,0.04632445424795151,0.01271437481045723,0.044561807066202164,0.027068717405200005,0.025449223816394806,-0.002011137316003442,0.04925079643726349,-0.09860380738973618,-0.002354275668039918,-0.038656748831272125,0.005502383224666119,0.0827234536409378,-0.007258659694343805,-0.0049243103712797165,-0.006651855539530516,0.047060973942279816,-0.058669429272413254,-0.05167320743203163,0.0022868248634040356,-0.04066062718629837,0.012622998096048832,0.01600383035838604,0.05679680407047272,0.03569113090634346,-0.05088778957724571,0.03582391515374184,-0.027752824127674103,0.024171533063054085,-0.017958931624889374,-0.05805119499564171,-0.1322813332080841,0.0628889948129654,0.09122970700263977,0.037541624158620834,0.008639772422611713,-0.03479526937007904,0.004097753670066595,-0.0012753615155816078,0.021773686632514,-0.005717309657484293,0.02302466705441475,-0.04921174794435501,0.04703132435679436,0.0029283957555890083,-0.06400392949581146,-0.01841454952955246,-0.03347204625606537,-0.045987024903297424,-0.076158307492733,0.010144276544451714,0.001331221079453826,0.02508738450706005,0.02072005346417427,0.03624505177140236,-0.03488004580140114,0.06127132102847099,0.034586258232593536,0.06875229626893997,-0.007726859766989946,0.020133351907134056,0.0407252162694931,-0.04895586892962456,-0.000011105052180937491,-0.08233720809221268,-0.10279449820518494,0.017071638256311417,-5.178832849747535e-33,-0.008545476011931896,0.040398191660642624,0.04973222315311432,0.08406802266836166,0.0563969612121582,0.053561389446258545,-0.0019380657467991114,0.029479941353201866,0.010826890356838703,-0.03336780145764351,-0.022469718009233475,-0.06362402439117432,0.09174373000860214,-0.06338939815759659,-0.09307721257209778,0.02158251591026783,-0.027209900319576263,0.022570880129933357,0.0408199168741703,0.01730726659297943,0.01377986278384924,0.04185410216450691,0.013526487164199352,-0.03302702307701111,-0.05106112360954285,0.04018276557326317,0.05860269442200661,-0.044080544263124466,0.019808463752269745,0.04067379981279373,0.02814123034477234,0.045994069427251816,-0.05614849925041199,-0.07874228805303574,-0.03692786023020744,0.0077936467714607716,0.004628756549209356,-0.06625109165906906,0.02441989630460739,0.08188675343990326,-0.03966919332742691,0.031609054654836655,0.12202394008636475,-0.02081916853785515,-0.04932098835706711,0.04777221381664276,0.06051560118794441,0.09029282629489899,0.04669825732707977,0.012242637574672699,-0.00747483316808939,-0.08276508003473282,-0.024366993457078934,-0.00390314101241529,-0.0006744901766069233,0.046508729457855225,0.04912533611059189,0.05840152129530907,0.06122734397649765,-0.026932088658213615,0.04048062488436699,-0.00011171438382007182,0.014624086208641529,-0.021840082481503487,-0.05821510776877403,0.035828378051519394,-0.0706167072057724,-0.06473081558942795,0.019246863201260567,-0.08000515401363373,-0.08496754616498947,0.0687430277466774,0.0008602662710472941,0.08787219971418381,-0.02412368729710579,0.024618033319711685,0.018740257248282433,-0.09182111918926239,-0.03633445128798485,-0.022209061309695244,-0.024984441697597504,0.0024071773514151573,-0.0983104258775711,0.017425237223505974,0.07308634370565414,-0.10867266356945038,-0.008001677691936493,-0.048181187361478806,-0.020077677443623543,0.05824270844459534,-0.03417022526264191,-0.02322176657617092,0.10553691536188126,-0.07884085923433304,-0.10853967815637589,2.9316052181210354e-33,-0.018509725108742714,-0.05093856900930405,0.04773871973156929,0.054731063544750214,-0.0030680347699671984,-0.10271051526069641,-0.06474415212869644,-0.01215390395373106,0.07245014607906342,0.035725705325603485,0.008452998474240303,-0.05636020749807358,0.052466243505477905,0.029472269117832184,-0.02052607201039791,-0.03642478957772255,0.027738556265830994,-0.04873761907219887,0.022676188498735428,-0.06027461215853691,-0.09203402698040009,-0.041496045887470245,0.02440451830625534,-0.046678852289915085,0.10540258884429932,0.06996040046215057,0.027883371338248253,-0.01691587269306183,-0.036998361349105835,-0.06017675623297691,-0.026126932352781296,0.03750084340572357,-0.15870526432991028,-0.009480017237365246,-0.02219029888510704,0.06476611644029617,0.043894264847040176,-0.0885203629732132,0.05697038024663925,0.003321512369439006,-0.03713763505220413,-0.040943242609500885,0.05233122035861015,0.10025354474782944,0.02257317677140236,-0.0071648284792900085,-0.01727735996246338,0.061954617500305176,0.07305393368005753,0.0692349448800087,-0.06587386131286621,-0.05569528788328171,-0.046135302633047104,-0.05103784427046776,0.017017854377627373,0.0016891593113541603,0.036448732018470764,-0.04765327647328377,0.030057277530431747,0.001924949698150158,0.0027916105464100838,-0.011860659345984459,-0.07054686546325684,-0.01186523586511612,-0.024189654737710953,0.05682755261659622,0.004162909928709269,0.04234401509165764,-0.026283061131834984,0.024011194705963135,-0.025413988158106804,-0.045550599694252014,-0.03470870107412338,0.03915642946958542,0.00201034196652472,-0.0072837164625525475,0.01872873306274414,-0.08960369974374771,-0.0713706687092781,-0.05805030092597008,0.0038490244187414646,-0.022796116769313812,-0.06692124158143997,-0.004433550871908665,0.045533787459135056,-0.028056804090738297,0.03485667705535889,-0.002859247848391533,-0.025942131876945496,-0.03153492510318756,-0.030638856813311577,0.011103036813437939,0.08599196374416351,-0.0741494745016098,0.028094273060560226,-1.869943311305633e-8,-0.03653256595134735,-0.01300668716430664,-0.0027953493408858776,0.013949279673397541,0.06839405000209808,0.06113148853182793,0.03181470185518265,0.00781219033524394,-0.019726302474737167,-0.000007915087735455018,-0.01489488035440445,-0.03107367269694805,0.0011827301932498813,0.01608257368206978,0.14309102296829224,0.013971013016998768,0.06160678714513779,-0.16414044797420502,-0.0021883142180740833,0.06485230475664139,0.11704268306493759,0.04028104990720749,-0.006443173624575138,-0.025608306750655174,-0.06863422691822052,0.030963102355599403,0.08905487507581711,-0.03765460476279259,-0.1036495566368103,0.02059180848300457,0.01625474914908409,0.11067909002304077,-0.025474317371845245,0.0060157147236168385,-0.06908323615789413,-0.012949740514159203,0.05224025249481201,0.06352727115154266,0.028048571199178696,-0.03095846250653267,0.036442335695028305,0.08755595982074738,-0.031084230169653893,0.05709247291088104,0.08102082461118698,-0.05402682349085808,0.012860639952123165,0.04366779327392578,-0.07907193154096603,-0.05784047394990921,0.035009223967790604,0.04133658483624458,0.10427270829677582,0.10198567062616348,0.030298342928290367,0.005388179328292608,-0.026442572474479675,-0.044464439153671265,-0.035537805408239365,0.025225674733519554,0.040621403604745865,0.018878554925322533,-0.05472041666507721,-0.09225448220968246]},{"text":"Memory brought madness with it, and when I thought of what had passed, a real insanity possessed me; sometimes I was furious and burnt with rage, sometimes low and despondent.","book":"1984","chapter":112,"embedding":[0.07679418474435806,0.033676981925964355,-0.04807994142174721,0.044964950531721115,0.029821012169122696,0.07219848036766052,0.049061086028814316,0.04806652292609215,0.02508358471095562,-0.03894983232021332,0.011070598848164082,0.06946057826280594,0.08198434859514236,-0.005147404968738556,0.03117961250245571,0.02149469405412674,-0.043207764625549316,0.008102577179670334,-0.050576817244291306,0.03630015626549721,0.01604391261935234,0.04608095809817314,-0.01551473792642355,0.04026807099580765,-0.07561776787042618,0.16030395030975342,0.0000061921400629216805,-0.010048690252006054,-0.006571679841727018,-0.05317739397287369,0.019862065091729164,0.0037328649777919054,-0.09991754591464996,0.02658567950129509,-0.0027158772572875023,-0.01671585999429226,-0.10974403470754623,0.05267461761832237,-0.0018022506264969707,-0.08110643178224564,-0.005659710615873337,0.10824805498123169,-0.03759890794754028,-0.013167516328394413,-0.015473863109946251,-0.030360210686922073,0.017489584162831306,-0.023587657138705254,-0.004074036609381437,-0.1076994240283966,-0.05276452377438545,0.05765656381845474,0.0017057901713997126,0.04714035615324974,-0.024183765053749084,0.04001762345433235,0.0990808755159378,0.05901847407221794,-0.06793511658906937,0.07962843775749207,-0.1109943687915802,-0.048841673880815506,0.007825973443686962,-0.037886980921030045,-0.03552476689219475,0.01641138270497322,0.001474826131016016,0.03628839924931526,0.05009790509939194,0.05456157401204109,0.023718014359474182,-0.01595061458647251,0.03393243998289108,-0.027163835242390633,-0.023465605452656746,0.010385148227214813,-0.06309271603822708,-0.04147521033883095,0.05944640561938286,0.0013726635370403528,0.02548534981906414,0.0914774239063263,-0.03130700811743736,-0.0474691241979599,0.09330043941736221,-0.056289710104465485,0.05587086081504822,0.04314812645316124,0.02408774197101593,0.07187797129154205,0.05435646325349808,-0.05810007080435753,-0.005894300062209368,-0.014834261499345303,0.046762146055698395,-0.09616830199956894,0.00015717526548542082,-0.0019311573123559356,-0.0328010730445385,0.02618103101849556,0.018181689083576202,0.027857985347509384,-0.03506200760602951,0.031415700912475586,0.06498052179813385,-0.0012777539668604732,0.05894074589014053,-0.023089122027158737,-0.059160858392715454,-0.053708113729953766,-0.06978152692317963,0.007042217534035444,0.03326867148280144,-0.03797375410795212,0.014472229406237602,0.04682328552007675,-0.025998355820775032,-0.04463781788945198,-0.004923637956380844,0.05876634642481804,0.040802251547575,0.015848562121391296,-0.0036811786703765392,0.1275094896554947,-0.04924639314413071,-0.030958792194724083,-0.07418319582939148,-9.996648241812513e-34,-0.011504504829645157,-0.027198681607842445,-0.03000986948609352,0.0646383985877037,0.07021889835596085,-0.039006009697914124,-0.08228875696659088,-0.06336922943592072,0.06626279652118683,-0.013186118565499783,0.05614679306745529,-0.04688549041748047,-0.02614523284137249,0.07161325216293335,-0.08421950787305832,-0.010158493183553219,-0.11816365271806717,0.04290572553873062,0.06993544101715088,0.037860505282878876,-0.07240519672632217,0.08733631670475006,0.0004253661900293082,-0.05630815401673317,-0.08331549167633057,0.04694901779294014,-0.011844812892377377,0.03646135330200195,0.02137320674955845,0.037743955850601196,0.027763644233345985,0.060497209429740906,-0.04814674332737923,0.009975566528737545,-0.0025716132950037718,0.052538543939590454,0.024252988398075104,-0.05939147248864174,0.005731227342039347,0.0024900566786527634,0.037025343626737595,0.027140021324157715,-0.02569964900612831,0.007232655771076679,0.013958818279206753,0.006610633805394173,0.06125037372112274,-0.05753384158015251,-0.06992021948099136,0.0244535431265831,-0.05618210509419441,0.024251077324151993,0.07081660628318787,-0.04192953556776047,-0.008212537504732609,0.01951490342617035,0.0661592110991478,-0.06433459371328354,-0.0015362658305093646,0.03308458998799324,0.0023759633768349886,-0.0008600584696978331,-0.008957437239587307,-0.055240146815776825,0.014402799308300018,-0.07918568700551987,-0.009822049178183079,-0.01388965081423521,-0.02800765633583069,-0.035943467170000076,-0.013060742989182472,-0.030409250408411026,-0.03298952803015709,-0.03532473370432854,-0.02368185855448246,-0.000859560735989362,-0.021218083798885345,-0.018633566796779633,-0.1345507651567459,-0.06040702015161514,0.05645640566945076,-0.08842847496271133,0.0013505195965990424,0.028227245435118675,0.01916618086397648,-0.025035211816430092,0.0773523822426796,-0.12753894925117493,-0.10372476279735565,0.00900033675134182,0.03663531690835953,-0.048317451030015945,0.12554028630256653,-0.006533965468406677,-0.10937109589576721,-5.687964156837134e-34,-0.04213857278227806,-0.012244191952049732,-0.007717577274888754,0.09342708438634872,0.0005676466971635818,-0.06770429015159607,-0.02973787859082222,0.02276325598359108,-0.05351250246167183,0.008077078498899937,0.004963383544236422,-0.060973018407821655,-0.01918886788189411,0.04209348186850548,-0.013410602696239948,-0.0499761737883091,0.029570601880550385,-0.012036098167300224,-0.0058455453254282475,0.0010278669651597738,-0.050496987998485565,0.050032127648591995,0.05707387998700142,-0.031665101647377014,-0.041886571794748306,0.04348505660891533,0.059122808277606964,-0.0324883870780468,0.007232699077576399,-0.02449297346174717,0.05553723871707916,0.10667959600687027,0.004695363808423281,-0.0032805053051561117,-0.025164218619465828,0.026715798303484917,0.04438909515738487,0.005723446141928434,-0.04723135009407997,-0.11483936011791229,-0.015477615408599377,0.06678692996501923,0.05390838533639908,0.0698511078953743,-0.023282334208488464,-0.02715219371020794,0.02429727278649807,0.027482017874717712,0.07676850259304047,0.04901658371090889,-0.06494839489459991,-0.02865450084209442,0.001328910468146205,-0.023311913013458252,-0.046379975974559784,-0.14164498448371887,-0.024578947573900223,-0.06727739423513412,-0.028741536661982536,0.017752695828676224,-0.08185745030641556,0.010781480930745602,-0.12274192273616791,-0.09499384462833405,0.07058066129684448,-0.02169213443994522,-0.029950499534606934,-0.0014711959520354867,-0.11245937645435333,0.08011786639690399,0.005112890619784594,0.02407829649746418,-0.07193827629089355,0.03245319798588753,0.004807180259376764,0.010016154497861862,-0.06565601378679276,0.05864004045724869,-0.0750625878572464,-0.044072337448596954,0.04978643357753754,0.029443936422467232,-0.0002920788247138262,0.016742471605539322,-0.07831694930791855,-0.0025939529296010733,-0.05282910168170929,0.005932237487286329,-0.007906565442681313,0.009124641306698322,-0.03941738232970238,0.01278885267674923,-0.04887705296278,-0.0336730070412159,-0.01939447410404682,-3.0673181328211285e-8,-0.04279852658510208,-0.04401800408959389,0.01916971057653427,0.02025231532752514,0.12561757862567902,-0.023310136049985886,0.04403112456202507,0.06490129232406616,-0.0622745007276535,0.04648863524198532,-0.03362084925174713,0.01750473864376545,0.003279438940808177,0.040018774569034576,0.03035891056060791,0.0017670950619503856,0.08823467046022415,0.035929810255765915,0.04415999725461006,-0.02658703736960888,0.014983651228249073,0.03381495550274849,0.061995234340429306,-0.03239819034934044,-0.009275317192077637,0.01474106963723898,-0.03306224197149277,-0.005372610408812761,0.017357701435685158,-0.006668774411082268,0.10793406516313553,0.036319684237241745,-0.04329894855618477,0.004280332941561937,-0.043073393404483795,0.0059412396512925625,0.02392389252781868,0.007432969752699137,0.010255430825054646,-0.07069291174411774,-0.004240576643496752,0.03878818824887276,0.054642315953969955,0.004953042604029179,0.004891533870249987,-0.0358428880572319,-0.07978304475545883,-0.013008736073970795,0.011853738687932491,0.010342484340071678,0.05948992818593979,0.10514122992753983,0.0307927206158638,0.11845076829195023,0.046649154275655746,-0.04747786000370979,-0.001974006649106741,0.016937516629695892,-0.09733375161886215,-0.011267660185694695,0.15310797095298767,0.05094057321548462,-0.10579761862754822,0.004616107791662216]},{"text":"Heavy misfortunes have befallen us, but let us only cling closer to what remains and transfer our love for those whom we have lost to those who yet live.","book":"1984","chapter":112,"embedding":[-0.019647980108857155,0.033015988767147064,0.08108498901128769,0.013721850700676441,0.029922951012849808,0.08667203038930893,0.04259440675377846,-0.01670161820948124,0.037809088826179504,-0.04065721482038498,0.010069699957966805,0.010955875739455223,0.04501742124557495,-0.028647543862462044,-0.012770619243383408,0.017134521156549454,-0.08357951045036316,0.03224078193306923,-0.04988338425755501,0.07679226249456406,-0.0750855952501297,0.007245637010782957,-0.059328943490982056,0.03461345285177231,-0.03149040788412094,0.03653722256422043,-0.02313455566763878,0.0059725078754127026,0.0011689434759318829,0.010913860984146595,0.1065322682261467,-0.004706154577434063,-0.011445721611380577,0.0376521572470665,-0.028979748487472534,0.11300929635763168,-0.03752153366804123,0.0025507695972919464,0.059557944536209106,-0.033879946917295456,0.06490304321050644,0.05470298230648041,0.06901299208402634,0.030112696811556816,-0.06296442449092865,-0.038645222783088684,-0.06557033210992813,-0.03971276059746742,0.04404652863740921,-0.04919368028640747,0.02406466007232666,0.021362947300076485,-0.053063053637742996,-0.028811927884817123,0.034464139491319656,0.10499189794063568,0.07327114045619965,-0.003111825790256262,-0.008425113745033741,0.012788908556103706,0.06114007160067558,0.04715431481599808,0.021083690226078033,-0.011852515861392021,0.03852146491408348,-0.06858154386281967,0.04310457780957222,0.019555244594812393,-0.03889085724949837,0.08027520030736923,-0.07487107813358307,0.04051393270492554,-0.05016119405627251,0.01978660374879837,-0.09920617938041687,0.019310688599944115,0.01525724958628416,-0.052619848400354385,-0.02108519896864891,0.012054443359375,0.022943852469325066,0.014021952636539936,-0.07639281451702118,-0.02920309267938137,-0.03697836026549339,0.016882823780179024,-0.05540289729833603,-0.0688677504658699,0.039704449474811554,-0.034065257757902145,-0.06448009610176086,-0.025277212262153625,0.10459581762552261,0.08139906823635101,-0.016399618238210678,0.049355681985616684,-0.03332054987549782,0.02905449829995632,-0.08039810508489609,0.05667243152856827,-0.05110067501664162,0.06163069233298302,-0.032985758036375046,0.01525675505399704,-0.010152316652238369,-0.031036222353577614,-0.06461916863918304,0.009009537287056446,-0.017571907490491867,0.004951158072799444,0.03754571080207825,-0.014714688993990421,0.0032994477078318596,0.0124519607052207,0.037536557763814926,-0.009102268144488335,0.011619933880865574,-0.06518799811601639,0.012525946833193302,0.11197551339864731,-0.07894090563058853,0.025717420503497124,-0.05206480249762535,0.03175404667854309,-0.045858483761548996,-0.09323981404304504,-0.026372483000159264,4.730954808404858e-33,0.014940114691853523,-0.026041541248559952,0.0266373623162508,-0.008835780434310436,-0.07352845370769501,-0.014875509776175022,-0.09277091175317764,-0.06376879662275314,-0.027447573840618134,-0.03093157522380352,0.004500849638134241,-0.016506832093000412,-0.03730550780892372,0.0029292525723576546,-0.08863327652215958,-0.08688457310199738,-0.04162535443902016,-0.005402395501732826,0.0739508792757988,-0.015751641243696213,-0.028246372938156128,-0.01987789012491703,-0.0012660702923312783,-0.052820075303316116,-0.04488573968410492,-0.036871716380119324,-0.01341135986149311,-0.010194157250225544,0.05641894042491913,-0.02110050991177559,-0.03532720357179642,0.06121057644486427,0.06834767013788223,-0.0343540720641613,-0.06314917653799057,-0.01628185249865055,-0.07042522728443146,0.030777402222156525,-0.0015135819558054209,-0.006842959206551313,-0.058762986212968826,0.039877019822597504,-0.06861412525177002,0.0032694500405341387,0.1592244654893875,0.028881877660751343,0.1459951102733612,0.022667070850729942,-0.09511198848485947,-0.0518118254840374,-0.01001691073179245,-0.04426451027393341,-0.054407816380262375,-0.02834462746977806,-0.05945447087287903,-0.018518414348363876,-0.013878303579986095,0.02774934098124504,0.03345346078276634,-0.06979464739561081,0.044831782579422,-0.08599408715963364,0.024742932990193367,-0.03370336815714836,0.09786952286958694,-0.05066629499197006,0.08312549442052841,-0.06184264272451401,-0.10323753207921982,0.004739101510494947,-0.09053070098161697,0.03388379141688347,-0.014636648818850517,-0.0014357945183292031,-0.0045668804086744785,-0.010829866863787174,0.07897039502859116,-0.059210993349552155,0.10120795667171478,-0.07096464931964874,-0.058442581444978714,0.019146300852298737,-0.0249002818018198,0.029773617163300514,0.0838608518242836,-0.012068280018866062,0.018747590482234955,-0.07347310334444046,-0.059103913605213165,0.08869641274213791,0.0652167797088623,0.002280117943882942,0.015174777247011662,-0.056936781853437424,-0.014932909980416298,-4.717128056103311e-33,-0.009305092506110668,-0.06570198386907578,-0.01854562945663929,0.025958800688385963,0.04691888764500618,-0.058964598923921585,0.02999556064605713,-0.0065420460887253284,-0.03696054965257645,0.068242646753788,-0.05903247371315956,-0.06678208708763123,0.09220362454652786,0.08713696897029877,-0.11825501918792725,-0.022872276604175568,0.04730130359530449,-0.029500069096684456,-0.02886803075671196,-0.06867770850658417,0.0644865483045578,0.08703809231519699,-0.0861661285161972,0.0729631781578064,-0.008209205232560635,0.04371174797415733,0.027065057307481766,-0.0436556302011013,-0.07733935862779617,-0.06347908079624176,0.005948827601969242,-0.03954094275832176,-0.08465973287820816,0.02552667446434498,0.06039689481258392,0.006055788137018681,0.036363739520311356,0.0015674327732995152,-0.08114831894636154,0.023486902937293053,-0.08057565242052078,0.025832824409008026,-0.06975503265857697,-0.046115972101688385,0.005265545565634966,-0.0014286501100286841,0.07190216332674026,-0.026467816904187202,-0.007712709251791239,0.0066453940235078335,-0.001982244895771146,-0.02884463034570217,-0.05430646240711212,0.04237695783376694,0.05395635589957237,0.0026170294731855392,0.09575390070676804,-0.041598737239837646,0.010632642544806004,-0.030224042013287544,-0.08752615749835968,0.0025563333183526993,-0.034743476659059525,0.03352060914039612,0.03502068296074867,0.03213411942124367,0.010311972349882126,-0.03814462572336197,-0.08052890747785568,0.06464917957782745,0.005456001032143831,-0.07389387488365173,-0.049441058188676834,-0.06080704554915428,0.09056009352207184,-0.0061309668235480785,-0.0278216190636158,0.007391305174678564,-0.03337885066866875,0.0174732506275177,0.09999222308397293,0.005943289026618004,0.049263618886470795,0.06533487886190414,0.017994791269302368,0.0002773248415905982,0.00901621114462614,0.012620946392416954,0.024566669017076492,0.0016783695900812745,-0.08169766515493393,-0.021374592557549477,0.0858033075928688,-0.14076130092144012,-0.056383922696113586,-3.469177300985393e-8,0.0068555972538888454,-0.03661967068910599,-0.06719837337732315,-0.0319819413125515,-0.03048713132739067,-0.00417623296380043,0.03322083130478859,-0.012181012891232967,0.017731651663780212,0.09896276146173477,-0.08817882090806961,0.022685889154672623,0.09039968997240067,0.08635713160037994,0.02739197388291359,0.04435517266392708,0.09800412505865097,-0.05458900332450867,-0.014124440029263496,0.012143193744122982,-0.023870529606938362,0.030668949708342552,0.06059262901544571,-0.06172339990735054,0.012648473493754864,-0.041481778025627136,-0.03904334083199501,0.0295838825404644,0.01778656803071499,-0.002209525555372238,0.03422034531831741,-0.02165539562702179,0.016335610300302505,0.07533334940671921,0.09491483122110367,-0.008389728143811226,0.003703669412061572,0.035409651696681976,-0.0189379770308733,0.09898196905851364,0.03525175899267197,0.06902043521404266,0.04954139515757561,0.023098913952708244,-0.033038586378097534,-0.03592167794704437,-0.013172012753784657,0.06353854387998581,-0.055478550493717194,-0.04831170290708542,0.021848075091838837,0.02619580738246441,0.03937966004014015,0.06140593811869621,0.06550250202417374,-0.04360158368945122,0.034436773508787155,0.1014079749584198,-0.048901114612817764,0.012220745906233788,0.03771299123764038,0.003139944514259696,0.0335320383310318,-0.032873690128326416]},{"text":"I shut up, as well as I could, in my own heart the anxiety that preyed there and entered with seeming earnestness into the plans of my father, although they might only serve as the decorations of my tragedy.","book":"1984","chapter":113,"embedding":[0.0982198491692543,0.10187286138534546,0.03708713501691818,0.016461210325360298,0.04086463525891304,-0.08018099516630173,0.04041867330670357,-0.06984301656484604,0.09617677330970764,-0.030842186883091927,-0.05150267481803894,0.036627210676670074,0.04762643575668335,-0.08102065324783325,-0.023270221427083015,0.022713063284754753,-0.04214806109666824,0.002781809540465474,-0.03749038651585579,0.10750271379947662,-0.015521641820669174,0.08239581435918808,0.021121300756931305,0.05393331125378609,-0.08574012666940689,0.04651334881782532,0.0485023558139801,0.06783794611692429,-0.009816276840865612,0.03197908401489258,-0.045653000473976135,-0.08180059492588043,-0.02847905270755291,-0.02769004926085472,0.00600806437432766,0.017817705869674683,-0.017664585262537003,-0.021700894460082054,0.04654080048203468,-0.057345323264598846,0.0857359990477562,0.11118420958518982,0.06405334174633026,-0.057377059012651443,0.024585913866758347,-0.11051515489816666,0.009613122791051865,-0.05157344788312912,0.014540531672537327,-0.043891556560993195,-0.05013030022382736,0.026496658101677895,-0.07828803360462189,-0.0645795613527298,0.03906068205833435,-0.02171836979687214,0.023599281907081604,0.02290140651166439,0.03433399274945259,0.005235217045992613,-0.04868007078766823,0.019571468234062195,0.0009773662313818932,-0.004514855798333883,-0.028445661067962646,-0.011270664632320404,0.03225531429052353,0.008242947980761528,0.006603464018553495,0.04095826297998428,-0.0008849017904140055,-0.0048489198088645935,0.08957003057003021,0.007998088374733925,-0.11154233664274216,0.01966690644621849,0.006349877920001745,-0.05416521430015564,-0.027724672108888626,-0.034182675182819366,0.0005098815308883786,-0.03250637650489807,-0.014880784787237644,0.002832869766280055,-0.0837574452161789,-0.0877644419670105,0.10477948933839798,-0.039048776030540466,0.0550711452960968,0.0799047201871872,0.0031600473448634148,-0.10766026377677917,0.0024093848187476397,0.045844100415706635,-0.03341197222471237,-0.059323981404304504,-0.02657981961965561,0.022572701796889305,-0.0426117405295372,0.05288543552160263,0.028072549030184746,0.031130459159612656,-0.014491632580757141,0.021964212879538536,-0.011213456280529499,0.008378940634429455,-0.09704510867595673,0.0028553958982229233,-0.1044052243232727,-0.053117189556360245,-0.07655341923236847,-0.07058736681938171,0.03360985219478607,-0.04338748753070831,0.03530289605259895,0.08350801467895508,0.0190498735755682,-0.007215806748718023,0.05578991770744324,0.07497652620077133,0.1353125274181366,0.0468655601143837,-0.042722564190626144,0.05386083200573921,-0.03668012470006943,-0.022185105830430984,-0.05469994992017746,-1.7225290140766706e-33,0.025112353265285492,0.0011892503825947642,-0.030422618612647057,0.09151662141084671,0.07038752734661102,-0.020589448511600494,-0.07709415256977081,0.04462859407067299,0.019171573221683502,0.05668317526578903,0.05187877640128136,-0.02060277946293354,0.016604823991656303,-0.011435321532189846,-0.06666764616966248,-0.005297373048961163,-0.041427068412303925,0.054931946098804474,0.05372542887926102,-0.001797603559680283,-0.0925106555223465,0.04582444578409195,0.009272240102291107,0.05335111543536186,0.03494870662689209,0.025263197720050812,-0.011897479183971882,0.018675608560442924,-0.08579014986753464,0.03796769306063652,0.014010517857968807,0.024256853386759758,0.11538972705602646,-0.0060429880395531654,-0.0017629466019570827,-0.0066610062494874,-0.05273674800992012,-0.02654111012816429,0.030005672946572304,0.012027454562485218,-0.0018998213345184922,-0.02813369780778885,-0.04634186998009682,0.11623228341341019,-0.022898850962519646,-0.030192259699106216,0.019084447994828224,0.016592619940638542,-0.04698240011930466,0.011115757748484612,-0.015955153852701187,0.04570235684514046,0.04853272810578346,0.008541304618120193,-0.009473027661442757,-0.020220452919602394,0.014975477941334248,-0.009360930882394314,0.00604334706440568,0.007054313085973263,0.00002298487197549548,-0.009511193260550499,0.0026130226906389,-0.01974286511540413,-0.024342218413949013,-0.08568260818719864,-0.028761282563209534,-0.01812734268605709,-0.008034599013626575,-0.05069330334663391,-0.07759052515029907,-0.006516909226775169,-0.08265950530767441,-0.0771399438381195,0.005530287511646748,-0.025509139522910118,0.007736231200397015,0.020869649946689606,0.009742610156536102,-0.12988141179084778,0.08384335041046143,-0.045896265655756,-0.04431353136897087,0.0735432356595993,0.014305952936410904,-0.0030953013338148594,-0.002118464792147279,-0.04265948012471199,-0.09255102276802063,0.058259330689907074,0.002444957382977009,0.020453914999961853,0.04088710993528366,-0.07577268034219742,-0.09108969569206238,6.164900785874122e-34,0.04417290911078453,-0.03292438015341759,0.0207306370139122,-0.013927413150668144,-0.036013562232255936,-0.09470967948436737,-0.06640943139791489,0.008048629388213158,0.003168998286128044,0.06147264689207077,0.03134617581963539,0.05887524038553238,0.06611669063568115,-0.017326878383755684,-0.043959107249975204,-0.10924404114484787,0.1296004056930542,0.05366336926817894,-0.0015289026778191328,-0.04663320630788803,-0.0875968262553215,-0.011157705448567867,-0.04404645785689354,-0.04178949072957039,-0.011219466105103493,0.06644551455974579,-0.005119950510561466,-0.07708911597728729,0.017780719324946404,-0.08551319688558578,0.005849314853549004,-0.01882394216954708,-0.01755862683057785,0.030177203938364983,0.055660732090473175,0.1146487221121788,-0.04141424968838692,-0.008083921857178211,-0.021730581298470497,-0.05291943624615669,0.003283400321379304,0.03416651114821434,0.06420780718326569,0.12327446788549423,0.016302773728966713,-0.030499784275889397,0.054021090269088745,-0.008106853812932968,-0.05190659686923027,0.05417569726705551,-0.17922191321849823,0.06431225687265396,0.01785006932914257,0.041697751730680466,-0.0011236440623179078,-0.017874468117952347,0.01719132997095585,-0.0907212346792221,-0.009323561564087868,-0.02415173128247261,-0.0668712705373764,0.0011166554177179933,-0.06458652764558792,-0.007417098619043827,0.01937626488506794,-0.015659652650356293,-0.04575928673148155,0.031051991507411003,-0.028592372313141823,0.03298160433769226,-0.0028004327323287725,-0.04611777886748314,-0.014633310958743095,0.047435469925403595,0.025003505870699883,-0.03642890229821205,0.0271255262196064,-0.004120092839002609,-0.02353726141154766,0.01637873239815235,0.05721364915370941,0.05128426477313042,-0.0002388264110777527,0.0045893313363194466,0.01571793667972088,0.021439315751194954,-0.006314340978860855,0.04576493799686432,-0.01720174215734005,0.015010670758783817,0.04301214963197708,0.0008125808089971542,0.07227593660354614,-0.04413500055670738,0.015784600749611855,-3.575237528252728e-8,0.01130020059645176,-0.03851921856403351,-0.004053713288158178,-0.06651435047388077,0.05584867671132088,-0.0670820102095604,0.01481712143868208,0.07613252848386765,-0.1455978900194168,0.0005871325847692788,-0.004205539356917143,0.035997144877910614,0.0018228250555694103,-0.003173039760440588,0.03467045724391937,0.026627227663993835,0.05557847023010254,-0.047831226140260696,-0.02577519230544567,-0.04320896416902542,0.0008873034967109561,0.054722417145967484,-0.08390124142169952,-0.0023260260932147503,-0.03002599999308586,0.010245096869766712,-0.010472821071743965,-0.09311223030090332,-0.016254719346761703,0.07701779901981354,0.04567233845591545,0.013281374238431454,-0.08461328595876694,0.04937770590186119,-0.07510031014680862,0.02285274863243103,0.05525553226470947,-0.03620968386530876,0.08835455030202866,-0.07337234169244766,0.06183747947216034,0.021734895184636116,0.05136146768927574,0.029677174985408783,0.07707595080137253,0.026295986026525497,0.04120287299156189,0.06476444751024246,-0.005380779970437288,-0.028310805559158325,0.0039088791236281395,0.04743877053260803,-0.03962571546435356,0.07865238934755325,0.02952144481241703,0.0030556246638298035,0.0010241486597806215,0.09359480440616608,-0.0948907807469368,0.0008399043581448495,0.10378629714250565,0.02230694331228733,-0.11076419800519943,-0.04298311844468117]},{"text":"The day was fair, the wind favourable; all smiled on our nuptial embarkation.","book":"1984","chapter":113,"embedding":[0.03888915479183197,0.06610866636037827,0.07652609795331955,0.061131853610277176,0.1291441172361374,-0.052351877093315125,0.0760764628648758,-0.03649559244513512,-0.04480496793985367,0.0576418973505497,0.013095534406602383,-0.0264911986887455,-0.019962608814239502,0.022337377071380615,0.02783522568643093,0.002564749214798212,-0.06874743849039078,-0.07202661037445068,-0.013482464477419853,0.02371867001056671,-0.08300859481096268,0.10920366644859314,0.03852754831314087,0.04050218313932419,-0.03959839418530464,0.008854092098772526,0.023320859298110008,-0.001263136393390596,0.07628271728754044,-0.045132026076316833,-0.01716424524784088,0.04033800587058067,0.04828517511487007,-0.0018378343665972352,0.01241372711956501,0.04399499297142029,0.013444887474179268,-0.1145356073975563,0.015798425301909447,0.01715204305946827,0.014211932197213173,-0.017869239673018456,0.01479629147797823,0.06482770293951035,-0.007760394364595413,0.03957180678844452,-0.001795405289158225,0.05080397054553032,0.05094493553042412,0.05548326298594475,0.010309550911188126,-0.05145186558365822,-0.07171373069286346,-0.12294121086597443,-0.04345991462469101,0.060380227863788605,0.015266275964677334,-0.12905271351337433,0.0594300702214241,-0.06674666702747345,-0.08155883103609085,0.021485596895217896,0.0005165226175449789,0.008925986476242542,0.06531618535518646,-0.08914849162101746,0.00006376241071848199,-0.025386547669768333,0.001143024885095656,0.02149045094847679,0.03584001585841179,0.0108402781188488,0.04988175258040428,0.06226004287600517,-0.03713981434702873,0.004459900315850973,0.0026432201266288757,-0.018017342314124107,0.003148940857499838,-0.02087160386145115,-0.0355667769908905,-0.02950415201485157,-0.003041039453819394,0.018166927620768547,0.006531504448503256,-0.035633184015750885,-0.031733863055706024,0.046827204525470734,0.013998504728078842,0.028315763920545578,-0.06703218817710876,-0.028302986174821854,-0.05621560662984848,0.025376921519637108,0.028073059394955635,0.03245506063103676,0.004676749464124441,0.07725820690393448,0.0016322415322065353,0.05212214216589928,0.06512685120105743,0.059224195778369904,-0.0688287615776062,-0.001551430788822472,0.01684996858239174,0.021312721073627472,-0.055313270539045334,-0.13587534427642822,-0.03678103908896446,-0.08167954534292221,-0.06554881483316422,-0.00019154290203005075,0.12429454922676086,0.020326998084783554,0.02208942174911499,-0.042592164129018784,-0.13452698290348053,-0.036252737045288086,-0.07291530817747116,-0.045281991362571716,-0.0023120844271034002,0.02117384783923626,0.04662901908159256,0.08170788735151291,-0.016593828797340393,0.010962008498609066,0.10716930031776428,-4.5602822122150776e-33,0.05319230258464813,0.01679380238056183,0.046328723430633545,0.04966414347290993,0.07524806261062622,0.0023820800706744194,-0.04608771204948425,-0.06659471243619919,-0.07755500078201294,0.019932821393013,-0.05117272585630417,0.046562325209379196,-0.0022174231708049774,-0.014350692741572857,-0.03383535519242287,-0.10433084517717361,-0.02501509338617325,0.01708432100713253,0.009246598929166794,0.00689731864258647,-0.07276839017868042,-0.08646433800458908,-0.06131301820278168,-0.1029692143201828,-0.027193687856197357,0.02656860090792179,0.009448911063373089,0.044351182878017426,0.017273452132940292,0.0007670575869269669,0.03291904181241989,0.0366315059363842,0.012251581996679306,-0.010166593827307224,-0.005385963711887598,0.027877898886799812,-0.0454285554587841,-0.08207295089960098,-0.0768970251083374,0.04629118740558624,-0.05193048715591431,0.010466162115335464,0.014975727535784245,-0.049623679369688034,-0.030580461025238037,0.058633770793676376,-0.0468461737036705,0.055885862559080124,-0.00005741445784224197,-0.033179234713315964,-0.018848957493901253,0.02571277692914009,0.07549227029085159,-0.06637538969516754,-0.021911460906267166,0.028118588030338287,0.059454478323459625,0.050278618931770325,-0.0504438579082489,0.015850791707634926,-0.016982384026050568,-0.120615653693676,0.01504331175237894,-0.10033448040485382,0.008110227063298225,0.015017468482255936,0.004634937737137079,-0.01598779670894146,0.018548766151070595,0.019337384030222893,0.03830709308385849,0.027969324961304665,-0.0142372976988554,-0.027904344722628593,-0.03773793950676918,0.050058819353580475,0.04578474164009094,0.06687848269939423,0.058015841990709305,-0.001576422480866313,0.020757637917995453,0.07114861160516739,-0.055158816277980804,-0.0759732574224472,0.11043776571750641,-0.01635790802538395,0.049414344131946564,-0.09392181783914566,-0.07323146611452103,0.03631458804011345,-0.000712830398697406,0.0669282078742981,0.13532531261444092,-0.041082073003053665,-0.061533331871032715,1.9623544735573876e-33,0.027231227606534958,0.07406843453645706,-0.13977473974227905,0.0858750119805336,-0.05177786573767662,0.011742080561816692,-0.023862149566411972,-0.008590548299252987,-0.09428208321332932,0.044347066432237625,0.06279076635837555,0.035819608718156815,0.07840090990066528,-0.03658997267484665,0.006095423363149166,-0.05721895769238472,0.15263622999191284,0.07791866362094879,0.010164426639676094,0.04482005909085274,0.045222505927085876,-0.029519733041524887,-0.047807127237319946,-0.046360403299331665,0.04691857472062111,0.07925287634134293,-0.0027855108492076397,-0.01913350820541382,-0.05542915686964989,0.006657090038061142,0.031476546078920364,0.051218919456005096,-0.10761662572622299,0.007488717790693045,0.043157950043678284,0.03936576470732689,0.03741827234625816,0.048715393990278244,0.006031238008290529,0.0129291582852602,-0.05716583877801895,-0.02806767262518406,0.05293860659003258,0.014450891874730587,0.0035551064647734165,0.025495221838355064,-0.009722570888698101,0.05982498452067375,-0.045388370752334595,0.008645565249025822,-0.03111148625612259,0.039215460419654846,0.0025693343486636877,0.023025352507829666,0.047159694135189056,0.02333982102572918,-0.03069656528532505,-0.08091574162244797,0.06417205184698105,-0.07149309664964676,-0.07684218138456345,-0.019796036183834076,-0.0778125748038292,-0.03474065661430359,-0.05397408828139305,-0.051965586841106415,-0.032620884478092194,0.048372555524110794,-0.07294824719429016,0.031220603734254837,-0.05881680175662041,-0.013112012296915054,-0.06118307635188103,-0.018561730161309242,-0.035191696137189865,-0.012358544394373894,0.04725903645157814,0.012281697243452072,0.009311353787779808,0.03966420143842697,-0.08813118934631348,-0.03411882743239403,-0.025739582255482674,-0.0560578778386116,-0.03152385354042053,-0.0653124749660492,0.04718606919050217,-0.07848155498504639,0.017067506909370422,0.020243175327777863,-0.04337231442332268,-0.014162227511405945,0.06110389903187752,-0.02616690844297409,-0.008986776694655418,-2.2959026679814087e-8,-0.020941566675901413,0.032753609120845795,-0.045732706785202026,0.018129929900169373,0.02843458391726017,-0.05137839913368225,0.03499007225036621,0.01652747578918934,-0.06299667060375214,0.032818105071783066,-0.030295923352241516,0.011418948881328106,0.03727804869413376,0.05098996311426163,0.14099746942520142,0.04899933934211731,-0.047060076147317886,-0.016089871525764465,-0.0111501794308424,0.002310842042788863,0.04244789108633995,0.0947025865316391,-0.03205261006951332,0.0017116143135353923,-0.04982221871614456,0.07078240066766739,0.03650110960006714,-0.037441447377204895,0.04497735947370529,0.006936516612768173,-0.02491910569369793,-0.010426822118461132,-0.06575169414281845,-0.09474524855613708,-0.035012755542993546,0.01726892776787281,-0.035841383039951324,-0.00801203865557909,0.10007966309785843,-0.02457634173333645,-0.001790075795724988,0.1347259134054184,0.00603807857260108,0.010444242507219315,-0.028566256165504456,0.06425103545188904,0.0066457027569413185,0.04714763164520264,-0.07795555889606476,-0.0220380537211895,-0.0256124809384346,-0.0030009739566594362,0.028219209983944893,0.027349866926670074,0.03758688271045685,-0.01122263167053461,-0.028665604069828987,-0.005493153352290392,0.028820836916565895,0.04357615113258362,-0.01914985477924347,-0.016858501359820366,-0.10547249764204025,-0.05148743465542793]},{"text":"The spire of Evian shone under the woods that surrounded it and the range of mountain above mountain by which it was overhung.","book":"1984","chapter":114,"embedding":[-0.026621131226420403,0.09583770483732224,0.05300081521272659,0.08201980590820312,0.08488278836011887,-0.06844206154346466,-0.07284365594387054,0.06615418940782547,-0.033089689910411835,0.038429345935583115,0.013219556771218777,-0.013803568668663502,-0.023751236498355865,-0.06538219749927521,0.03493296355009079,0.05666985362768173,-0.04100499674677849,0.029804427176713943,0.016857190057635307,-0.016399061307311058,0.07322075217962265,-0.012050347402691841,-0.04856545478105545,0.05750148743391037,0.02909165620803833,-0.11414172500371933,-0.018645018339157104,0.06379802525043488,0.048537030816078186,-0.022342288866639137,0.047955118119716644,-0.03966280817985535,-0.0008277219021692872,0.023980040103197098,-0.08692481368780136,0.0693751871585846,-0.0036683203652501106,-0.06068400293588638,-0.04996489733457565,-0.0058481693267822266,-0.01090217474848032,0.11372245848178864,-0.04019297659397125,0.004556938074529171,-0.040336258709430695,-0.04160137102007866,0.025170400738716125,-0.02283879928290844,-0.025667894631624222,-0.0033059848938137293,-0.06611837446689606,-0.06585951149463654,-0.07239409536123276,-0.02780243009328842,-0.06243254989385605,0.054716967046260834,0.0053074960596859455,-0.11679469794034958,0.061893608421087265,-0.005712913814932108,0.011880047619342804,0.022133635357022285,-0.05667360499501228,-0.005988365970551968,-0.03154356777667999,-0.0336444191634655,-0.04031899571418762,0.0024311626330018044,-0.021535558626055717,0.04632033035159111,0.06606155633926392,-0.055212315171957016,-0.03457518294453621,-0.06551340967416763,-0.0018043649615719914,0.0684979185461998,-0.08107185363769531,-0.007080960553139448,-0.04595528170466423,-0.08981331437826157,-0.011612677946686745,0.023107491433620453,-0.01807287149131298,0.058680176734924316,0.0575590543448925,0.01417924091219902,-0.021004077047109604,-0.02428184635937214,-0.03207611292600632,0.05018157139420509,0.1337658315896988,-0.10492338240146637,-0.12420640140771866,0.10888166725635529,0.017624612897634506,-0.04675992950797081,0.08727137744426727,-0.04849151521921158,0.023372717201709747,-0.031809691339731216,-0.006167356390506029,-0.04680260643362999,-0.06752324849367142,-0.009671800769865513,-0.030402692034840584,-0.025215959176421165,-0.01598469913005829,0.05163893476128578,-0.012483092956244946,-0.0477137491106987,0.020647021010518074,-0.07372293621301651,-0.0004539269139058888,0.036061037331819534,-0.009401272051036358,0.05533691123127937,-0.004579524509608746,0.03630325570702553,-0.06154438480734825,0.06694213300943375,-0.02163083478808403,0.06328998506069183,0.04091213643550873,0.050657350569963455,0.010552976280450821,0.011697161011397839,0.044975388795137405,-5.0540096760276085e-33,0.0006981649785302579,-0.02038082666695118,-0.05112830176949501,-0.0007385717472061515,0.07592366635799408,0.034591659903526306,0.056677643209695816,-0.018982885405421257,-0.08845513314008713,0.07271374762058258,-0.04904570430517197,0.04355126991868019,0.013663438148796558,0.028000492602586746,0.05527814105153084,-0.13060346245765686,0.015172189101576805,0.0029301526956260204,0.0033613203559070826,0.054400477558374405,-0.027769625186920166,-0.03718557581305504,-0.04525599628686905,-0.020250385627150536,-0.015007439069449902,0.055318910628557205,-0.008637861348688602,-0.029064321890473366,-0.13443078100681305,0.06650343537330627,0.02956830896437168,-0.02014610357582569,-0.006073310971260071,-0.004563925322145224,0.028337517753243446,0.021483302116394043,0.01522784773260355,-0.07892052084207535,-0.01591493934392929,0.008481212891638279,0.023740451782941818,-0.015377027913928032,-0.029293635860085487,0.00031940313056111336,-0.027690764516592026,0.091390460729599,0.027957160025835037,-0.022911714389920235,-0.108681321144104,0.0014650390949100256,0.002426204737275839,0.06251631677150726,0.0358973927795887,-0.08354460448026657,-0.03535041585564613,0.07287678867578506,-0.04512305185198784,0.03599041700363159,0.0029605512972921133,0.024563796818256378,0.08455996215343475,-0.009160554967820644,0.0623001754283905,0.00735678942874074,-0.0060350545682013035,-0.042922068387269974,-0.049782223999500275,-0.05345229059457779,0.013281194493174553,0.04929404705762863,-0.021971847862005234,0.043127384036779404,-0.010285632684826851,0.04816500470042229,-0.06794830411672592,0.06225420907139778,-0.06546419113874435,0.10054798424243927,0.02415071241557598,-0.0010714535601437092,-0.13689765334129333,-0.035451628267765045,0.04506659880280495,-0.05097765848040581,0.03586879000067711,-0.01740909367799759,-0.015990756452083588,0.04032066464424133,-0.03520011529326439,0.022584153339266777,-0.03151298314332962,0.01221456564962864,-0.03290368989109993,-0.09877265244722366,-0.007421042304486036,1.8436765638983694e-33,-0.002677879063412547,-0.018503379076719284,0.03233403339982033,-0.008306695148348808,-0.10362070798873901,0.0397646464407444,-0.05424163118004799,-0.018979506567120552,-0.07822519540786743,0.028719358146190643,-0.04123697429895401,0.09976865351200104,0.04308030381798744,-0.04978291317820549,0.034515153616666794,-0.022738920524716377,0.03924275562167168,0.01663520187139511,0.012335668317973614,0.010439923033118248,-0.02439921163022518,-0.026321854442358017,0.010870559141039848,-0.07009607553482056,0.11959869414567947,0.0453023836016655,-0.011986996978521347,0.012293130159378052,0.02512729912996292,-0.0674516037106514,0.012829313986003399,0.017713114619255066,0.07152117043733597,-0.025335533544421196,-0.01310489047318697,0.07480881363153458,0.10320031642913818,-0.08632032573223114,0.05620433762669563,-0.02637569047510624,0.06997942179441452,0.025283148512244225,0.032401300966739655,-0.005924552213400602,0.030186409130692482,0.006779948249459267,0.0047717043198645115,0.05809309333562851,0.006156356539577246,-0.0026971392799168825,-0.01906452886760235,0.023641042411327362,0.17066249251365662,0.1157785952091217,-0.057709503918886185,-0.1062704473733902,-0.018269196152687073,-0.009835117496550083,0.017922719940543175,-0.07119221985340118,0.03841523826122284,-0.006727837957441807,0.03924006596207619,-0.023183874785900116,0.00580512173473835,-0.01508589368313551,-0.024802738800644875,-0.02534710243344307,-0.04073923081159592,-0.07821784168481827,-0.0046498156152665615,-0.030883459374308586,-0.001447055023163557,-0.033223628997802734,0.002034108154475689,0.06690166890621185,0.05897862836718559,-0.003688038093969226,-0.009439217858016491,-0.11006775498390198,0.015831496566534042,0.0033364773262292147,-0.03370407968759537,-0.005168518982827663,0.062326956540346146,0.062442995607852936,-0.006842420902103186,0.051702599972486496,0.003033253364264965,-0.06663700193166733,-0.0037864416372030973,0.0012840759009122849,-0.06343666464090347,-0.07371726632118225,0.020379820838570595,-2.2543368061178626e-8,-0.021471796557307243,0.01953422836959362,0.07978937774896622,-0.02618131786584854,0.10032214969396591,-0.026036806404590607,0.05344827100634575,0.09782984852790833,-0.0485050342977047,-0.004822778981178999,-0.04813983663916588,-0.05044202506542206,0.05581871047616005,0.02261429652571678,0.056588444858789444,0.024863392114639282,-0.019254129379987717,-0.015394053421914577,-0.013674934394657612,0.09840202331542969,-0.05397898703813553,-0.04256967082619667,-0.030249567702412605,0.02586102858185768,-0.0002632020623423159,0.01702578365802765,-0.10120688378810883,-0.09364954382181168,0.076679527759552,-0.04459991678595543,0.0605853833258152,0.0006221451330929995,0.037189140915870667,0.044559936970472336,-0.003060636343434453,0.06207308545708656,-0.032732874155044556,-0.01432175561785698,-0.022293351590633392,-0.0235295407474041,-0.0036213716957718134,-0.08284791558980942,0.15342672169208527,0.037305328994989395,-0.00341019406914711,0.06450095027685165,0.0324314683675766,0.017017975449562073,-0.008844448253512383,0.03047757036983967,-0.027536390349268913,0.000363856612239033,0.05256060138344765,0.03418406471610069,-0.016975028440356255,-0.06640148907899857,0.05895509943366051,-0.016468703746795654,-0.07577228546142578,0.007772194687277079,0.06510543078184128,-0.08834996819496155,-0.07590387016534805,0.05721741542220116]},{"text":"Peace, peace, my love,” replied I; “this night, and all will be safe; but this night is dreadful, very dreadful.” I passed an hour in this state of mind, when suddenly I reflected how fearful the combat which I momentarily expected would be to my wife, and I earnestly entreated her to retire, resolving not to join her until I had obtained some knowledge as to the situation of my enemy.","book":"1984","chapter":114,"embedding":[0.020454201847314835,0.10264025628566742,0.04200490936636925,0.03882923349738121,0.04291917383670807,0.044962670654058456,0.07583652436733246,-0.03005671687424183,0.033023636788129807,-0.06070273742079735,-0.07983431965112686,-0.02327292412519455,0.09670906513929367,-0.08064662665128708,-0.026895811781287193,0.07272703945636749,-0.020166274160146713,-0.0346100889146328,-0.05990729480981827,0.07691843062639236,-0.06697992235422134,0.10786858946084976,0.016790736466646194,0.054898105561733246,-0.037123870104551315,0.0659513995051384,0.018952520564198494,0.011382101103663445,-0.0718960091471672,0.013945923186838627,-0.05673721432685852,-0.0022912861313670874,-0.008158093318343163,0.062449123710393906,-0.0015986713115125895,0.04329838976264,-0.020270487293601036,0.013017847202718258,0.05837581306695938,-0.05626652389764786,-0.02617974393069744,-0.03700205683708191,0.03454611450433731,0.02757761813700199,-0.01852690987288952,0.00768163800239563,-0.045884869992733,-0.06982189416885376,0.07732391357421875,-0.06852706521749496,-0.0671619102358818,0.020553793758153915,-0.09729211777448654,0.0021761537063866854,0.028727702796459198,0.034973882138729095,-0.012476664036512375,0.0707736685872078,0.02009941264986992,0.038889408111572266,-0.040062565356492996,0.05129498243331909,0.06069282814860344,0.037262462079524994,0.004827452823519707,-0.07685772329568863,0.03670208901166916,0.048120446503162384,-0.0757417231798172,0.13744710385799408,-0.03576866537332535,-0.00460156099870801,0.008268244564533234,-0.07395269721746445,-0.08341776579618454,-0.01189439743757248,0.07127004116773605,-0.03464420512318611,0.07556252926588058,-0.04609057307243347,0.00009428415796719491,0.007256354205310345,0.011847815476357937,0.044834308326244354,-0.0037834809627383947,-0.04093664512038231,0.06749098002910614,-0.024713661521673203,0.1286391168832779,-0.007050784770399332,-0.035048987716436386,-0.025415845215320587,0.007305744104087353,0.04489536210894585,0.05801621451973915,-0.01783672533929348,-0.03192952275276184,-0.008434056304395199,-0.1069609671831131,0.06502062827348709,0.07161637395620346,0.0016768205678090453,-0.039250098168849945,-0.0654551312327385,-0.07063606381416321,0.06170519068837166,-0.05602021887898445,-0.04025937616825104,-0.09717118740081787,-0.013852361589670181,-0.07150944322347641,-0.03683611378073692,-0.01872284524142742,-0.06059325858950615,0.04226284474134445,0.13519258797168732,-0.02658356912434101,-0.04596075043082237,0.02831299789249897,0.062345560640096664,0.01692982017993927,-0.03219335153698921,-0.018424049019813538,0.02987751178443432,0.01203110720962286,-0.01669953763484955,0.08184678852558136,-2.243142237744415e-33,0.07136047631502151,-0.06433004885911942,-0.030718494206666946,0.04941122606396675,0.04842667654156685,-0.018751971423625946,0.0013574558543041348,-0.03400329127907753,-0.04209563508629799,-0.0373096764087677,-0.016463901847600937,0.01753850467503071,0.02594413049519062,-0.04005929455161095,-0.07235261052846909,0.032020751386880875,-0.07443100214004517,0.07867229729890823,0.04375215619802475,0.026607852429151535,-0.016693659126758575,0.031650520861148834,-0.05561968311667442,0.019632825627923012,-0.0487339086830616,-0.02889186143875122,0.020418798550963402,0.03454473987221718,0.04944606125354767,0.04350496083498001,-0.0903317853808403,0.09200301766395569,0.03783801570534706,-0.062218256294727325,0.03799542784690857,0.04903270676732063,-0.11352390795946121,0.039755985140800476,-0.053489845246076584,0.00294558540917933,0.01244386751204729,0.016752179712057114,0.0373140424489975,-0.025315511971712112,-0.028933927416801453,-0.0004199960676487535,-0.042075373232364655,0.0363926999270916,-0.08508346974849701,0.006040888372808695,-0.09459918737411499,-0.05226156860589981,-0.010517200455069542,0.031498201191425323,-0.04856457561254501,0.03792469948530197,0.030371231958270073,0.02918712981045246,-0.0302712544798851,-0.016672097146511078,-0.02428659237921238,-0.054501183331012726,0.012303706258535385,-0.05378306284546852,0.028897125273942947,-0.055982816964387894,-0.06750061362981796,-0.013436631299555302,-0.008203848265111446,-0.06651706993579865,-0.055876635015010834,-0.007666031830012798,0.021809715777635574,-0.024371249601244926,-0.018488183617591858,-0.03424134477972984,0.030221983790397644,0.06425237655639648,0.04637361317873001,-0.0902123674750328,0.013826318085193634,-0.005644665099680424,-0.07848786562681198,0.03706711158156395,0.05100695788860321,-0.0820588544011116,0.038565848022699356,-0.0839996486902237,-0.14574439823627472,0.10371912270784378,-0.05819334834814072,0.014017755165696144,0.11665307730436325,-0.011274006217718124,-0.10348030179738998,-6.336429288888095e-34,0.06553206592798233,-0.01371923927217722,-0.011666626669466496,0.10647934675216675,-0.008437324315309525,-0.04134642705321312,-0.0386786051094532,0.0673699676990509,0.0037441826425492764,0.07299228012561798,0.04994798079133034,-0.0004276366962585598,0.04460270702838898,0.0038225953467190266,-0.06453648954629898,-0.0876791924238205,0.06673554331064224,-0.008544610813260078,-0.010150526650249958,0.014704863540828228,-0.024376261979341507,0.01186719723045826,-0.024985969066619873,-0.04482494294643402,0.04919471964240074,0.05628560855984688,0.0903594121336937,0.0087990527972579,-0.034908294677734375,-0.02445940300822258,0.08420906215906143,-0.0702834278345108,-0.05355004221200943,0.07490020245313644,0.0964236631989479,0.06327842175960541,0.079460509121418,-0.0945914089679718,-0.026679350063204765,-0.050103284418582916,-0.01996453106403351,0.02447088435292244,-0.015132890082895756,0.07739832997322083,-0.00891643762588501,-0.013231774792075157,-0.010634108446538448,-0.01994854398071766,0.002909865463152528,0.0006911659147590399,0.03630148619413376,-0.016098538413643837,0.016780836507678032,-0.0252259261906147,0.01313581969588995,-0.04644252732396126,-0.014370333403348923,-0.024848759174346924,0.010380763560533524,0.009442707523703575,-0.05146443471312523,0.012198944576084614,-0.10713054984807968,0.005822915583848953,0.018074242398142815,0.01644628867506981,-0.05739518627524376,0.029598839581012726,-0.021580494940280914,0.04213560000061989,0.022069191560149193,-0.0011198591673746705,-0.09300125390291214,0.08087547868490219,0.06152542307972908,-0.10701176524162292,0.011216110549867153,-0.0352201946079731,-0.00867119524627924,0.03473757952451706,0.005535476841032505,-0.014356768690049648,-0.03877128288149834,0.023201102390885353,-0.07315251231193542,-0.05125146359205246,0.006728177424520254,0.030505094677209854,-0.006832818500697613,-0.02224733494222164,0.0009181308560073376,-0.016863232478499413,-0.005268759559839964,-0.05065387114882469,0.010961971245706081,-4.7379092649180166e-8,0.016957620158791542,-0.019231203943490982,-0.05924869328737259,-0.031098011881113052,0.022599846124649048,-0.037628185003995895,0.07234711199998856,-0.002385151106864214,-0.07776107639074326,0.07653746008872986,0.017340654507279396,0.06836296617984772,0.05187106132507324,-0.04419590160250664,-0.016911489889025688,0.0013201404362916946,0.042214203625917435,-0.08969629555940628,-0.0011354951420798898,-0.0738707184791565,0.08502625674009323,-0.02951161377131939,-0.06143210083246231,-0.042727723717689514,0.01735856384038925,0.100735142827034,0.018853196874260902,-0.030408412218093872,-0.057344209402799606,0.07864024490118027,0.05673201382160187,0.015666939318180084,-0.08270061016082764,-0.02663462609052658,-0.09640616178512573,0.03673218935728073,0.037174828350543976,-0.051274120807647705,0.07636577636003494,-0.00369260017760098,-0.017623886466026306,0.1157180666923523,-0.0027493892703205347,-0.030078504234552383,0.049910079687833786,-0.019500097259879112,0.04242859035730362,-0.022712774574756622,-0.09122738242149353,0.004521785769611597,0.011486610397696495,0.05901692062616348,0.024795083329081535,0.06642818450927734,-0.04272123798727989,-0.009516487829387188,0.005891546607017517,0.0010359386214986444,-0.04145831614732742,0.026995349675416946,0.0435919314622879,-0.02918643318116665,-0.09676238894462585,-0.010734979063272476]},{"text":"Life is obstinate and clings closest where it is most hated.","book":"1984","chapter":115,"embedding":[0.09835553914308548,0.07260703295469284,0.019774075597524643,0.030972545966506004,0.059130966663360596,0.009280463680624962,0.031855508685112,-0.027427658438682556,0.08467865735292435,0.0637139156460762,0.04275244474411011,-0.04457833990454674,0.06764061003923416,0.03118601255118847,-0.07988014817237854,0.009258674457669258,-0.015626396983861923,-0.10222798585891724,-0.03145779296755791,0.02876640111207962,-0.049686282873153687,0.07606112957000732,0.03458644449710846,0.018491780385375023,-0.07590271532535553,0.04304376617074013,0.035825930535793304,0.07264780253171921,0.020329173654317856,0.00003319326788187027,-0.003143966430798173,-0.007287329528480768,-0.03860735893249512,-0.02998439595103264,0.01507909968495369,0.015095934271812439,0.05470551922917366,0.0392458476126194,0.06681875139474869,0.003072621999308467,-0.004729065112769604,0.10192016512155533,0.0028918972238898277,-0.09486585855484009,-0.07062792778015137,-0.053962066769599915,-0.08346142619848251,-0.10761114954948425,0.042008593678474426,-0.05887691304087639,0.022809268906712532,0.020148368552327156,-0.021030016243457794,-0.04614323750138283,0.07114037871360779,0.016195259988307953,0.004371336195617914,0.07195141911506653,0.06519166380167007,0.04338403791189194,0.04935026541352272,0.014875886030495167,0.019534271210432053,0.009970924817025661,0.089767225086689,-0.00024221472267527133,0.06359585374593735,0.08184857666492462,-0.05522788316011429,-0.02519533596932888,-0.07835220545530319,0.02412526123225689,-0.0021426572930067778,0.05178765952587128,0.04019587114453316,0.05169677734375,0.047261133790016174,-0.025328565388917923,-0.02754553034901619,0.006756091024726629,0.00018096242274623364,0.023451456800103188,-0.025365309789776802,0.0033006109297275543,0.04109719768166542,-0.07647110521793365,0.029601028189063072,-0.002616081852465868,0.05725834146142006,-0.03451595827937126,-0.05343077704310417,0.05796831473708153,0.023783311247825623,-0.013823657296597958,-0.0033401816617697477,0.01512701716274023,-0.00904490053653717,0.038731131702661514,-0.1084754541516304,0.06910347193479538,-0.03938800096511841,0.02397977188229561,-0.04606923833489418,0.06293360143899918,0.08196071535348892,-0.03383485972881317,-0.054808128625154495,-0.020130522549152374,-0.024239297956228256,-0.002676671138033271,-0.08886599540710449,-0.08151564002037048,0.019919918850064278,-0.04238384589552879,0.015063758008182049,0.014453209936618805,0.14253796637058258,-0.007246504537761211,-0.0031590894795954227,0.0830027386546135,-0.024991871789097786,0.018800770863890648,-0.09046237915754318,0.11533085256814957,0.010730266571044922,-0.09094709157943726,-0.07628792524337769,-1.2864077529521398e-33,0.05238409340381622,-0.09023188054561615,0.08575168251991272,0.022907856851816177,-0.04620553180575371,-0.0343390516936779,-0.03527534753084183,-0.008351868018507957,0.061345960944890976,0.028851095587015152,-0.0067464932799339294,-0.04847473278641701,-0.016843536868691444,-0.014483953826129436,0.060972366482019424,-0.0003761278057936579,-0.07463636994361877,0.02721737138926983,-0.04178567975759506,0.028699923306703568,-0.07459616661071777,0.03333060443401337,0.023252304643392563,-0.07973244786262512,-0.015570615418255329,-0.07236027717590332,-0.00040692539187148213,-0.019166752696037292,-0.005851319059729576,0.010755191557109356,0.03307387977838516,-0.005241035483777523,0.018076999112963676,-0.018672721460461617,0.05313563346862793,-0.04983007162809372,-0.012535620480775833,0.05776457488536835,-0.06469651311635971,-0.03336368128657341,-0.019185733050107956,0.04582776129245758,-0.0477895550429821,0.011666504666209221,0.16224874556064606,0.07958987355232239,0.13393309712409973,0.0327485054731369,0.02432914637029171,-0.013472314924001694,0.011392081156373024,0.001176215591840446,0.0005044607096351683,0.0941411554813385,-0.015810616314411163,-0.041505251079797745,-0.05869574844837189,-0.009473595768213272,0.030096786096692085,0.014324137009680271,-0.06416838616132736,0.044160474091768265,0.031795840710401535,-0.006399587262421846,0.09542197734117508,-0.052201200276613235,0.012777276337146759,-0.04346449300646782,-0.05982458218932152,0.0036872783675789833,0.0021780021488666534,0.020782971754670143,-0.08666349947452545,0.010016259737312794,-0.0028156142216175795,-0.024413468316197395,0.09879743307828903,-0.03463853895664215,-0.0038796630688011646,-0.060753803700208664,0.025867663323879242,-0.001355309272184968,0.03202933073043823,-0.06032818183302879,-0.00681315129622817,-0.02500707097351551,0.015594498254358768,-0.06458496302366257,0.015929676592350006,0.06475459784269333,-0.007624322082847357,-0.011082611978054047,-0.002342044608667493,0.0176733136177063,-0.09238456934690475,5.4360410237765325e-34,-0.03245069459080696,-0.09804002195596695,0.06911342591047287,0.03375621140003204,-0.07938718795776367,-0.04424295201897621,-0.08267690986394882,0.041068535298109055,-0.06370009481906891,0.09402808547019958,-0.03247657045722008,0.032363660633563995,0.13032835721969604,0.07023736834526062,0.07458935678005219,0.030703408643603325,0.11208199709653854,0.011140073649585247,-0.015177452936768532,-0.06556612998247147,0.017854813486337662,0.09486562013626099,-0.09264227002859116,0.03708777204155922,-0.03222646564245224,0.0372326523065567,-0.00754964305087924,-0.040013037621974945,-0.05207579955458641,-0.07447702437639236,-0.008517871610820293,0.059479452669620514,-0.04991605132818222,0.01403712946921587,0.007496165577322245,-0.03395446017384529,-0.06991492956876755,-0.0005456528160721064,-0.0002798986970447004,-0.06909792870283127,-0.10188910365104675,-0.013681364245712757,-0.03139370307326317,-0.08480098843574524,-0.005807582288980484,0.015735363587737083,0.018802205100655556,-0.02897140197455883,0.006627662573009729,0.04256220906972885,-0.09666469693183899,0.036018211394548416,-0.009451332502067089,0.02531498484313488,0.01993517205119133,-0.07432453334331512,-0.029678603634238243,0.013547440990805626,-0.04712521284818649,-0.006453844252973795,0.035191185772418976,-0.02620622143149376,-0.0338154174387455,0.03345750644803047,0.03829708695411682,0.025110898539423943,-0.03804947808384895,0.03160309046506882,-0.017581216990947723,-0.02072083204984665,-0.07682733237743378,-0.03360613062977791,-0.10113171488046646,-0.019259441643953323,-0.004555566236376762,0.0527922622859478,0.051907286047935486,-0.0165824294090271,0.03815202787518501,0.08215286582708359,0.003090748330578208,0.053254928439855576,-0.00040854301187209785,0.013452423736453056,-0.07641998678445816,-0.04096987098455429,-0.027069229632616043,-0.008689755573868752,0.03681972995400429,0.001460499595850706,-0.040132105350494385,-0.10424553602933884,0.00046057390864007175,-0.0414205826818943,-0.008239145390689373,-2.4217552407890253e-8,0.022618774324655533,-0.07776077836751938,0.06318052113056183,0.037881042808294296,-0.0923367440700531,0.011619645170867443,0.06048146262764931,0.04316312447190285,-0.003947242628782988,0.12025023996829987,-0.026318706572055817,0.015877585858106613,0.010462542995810509,0.057410698384046555,-0.03328825905919075,0.05983886122703552,0.07676877826452255,-0.09176211804151535,-0.0465061254799366,-0.012957195751369,-0.09943360090255737,-0.025367675349116325,0.023359496146440506,0.0015857089310884476,-0.001614343374967575,-0.10435014963150024,0.00673307478427887,-0.02355537936091423,0.05541342496871948,0.03414458408951759,0.021405775099992752,-0.07621179521083832,-0.02419286221265793,0.047012101858854294,-0.06316691637039185,0.013843442313373089,-0.03380221128463745,0.00480349175632,-0.0573151521384716,0.083131343126297,-0.0021839721594005823,-0.011789320036768913,0.019940588623285294,-0.01301371306180954,-0.05171162262558937,-0.04710094630718231,0.05426326021552086,-0.04674861580133438,-0.09103106707334518,-0.06063605099916458,0.07024623453617096,0.00991776306182146,0.006331073585897684,0.034337811172008514,0.048556696623563766,-0.04987567290663719,-0.014612195082008839,0.0537693127989769,-0.01645493134856224,0.0388464517891407,0.04727493226528168,0.04613111540675163,0.07941395044326782,0.05741152912378311]},{"text":"I rushed towards the window, and drawing a pistol from my bosom, fired; but he eluded me, leaped from his station, and running with the swiftness of lightning, plunged into the lake.","book":"1984","chapter":115,"embedding":[0.031064651906490326,0.09349732100963593,0.004582125227898359,0.0021422544959932566,0.07301102578639984,0.017277702689170837,0.1362229287624359,0.04848531261086464,-0.024177128449082375,-0.048744913190603256,0.013072988018393517,-0.011177205480635166,0.01592099852859974,0.029458576813340187,0.057046014815568924,0.008319089189171791,0.028658537194132805,0.0029798655305057764,-0.05420549213886261,0.04230380803346634,-0.01683671399950981,0.06417161971330643,-0.004285173490643501,0.004422285594046116,-0.006539661902934313,0.02990679442882538,0.004458337090909481,0.009647383354604244,0.004522088449448347,-0.013597358018159866,-0.04266144335269928,-0.09523665904998779,-0.0696970671415329,-0.010319182649254799,0.011433722451329231,-0.007306811865419149,-0.011630456894636154,-0.024949628859758377,0.042820535600185394,0.016928954049944878,0.03377144783735275,0.00037090847035869956,-0.034835878759622574,0.07982908189296722,-0.0036238732282072306,0.017410509288311005,-0.039277203381061554,-0.023649167269468307,0.020330896601080894,0.059174396097660065,-0.10231823474168777,-0.036718789488077164,-0.059354282915592194,0.018269464373588562,0.00788285955786705,0.037023548036813736,0.0023242321331053972,0.0466981865465641,0.06948142498731613,0.015404741279780865,-0.03968112915754318,0.024625834077596664,-0.004967241082340479,0.07727397233247757,0.04875122010707855,-0.0478108786046505,-0.042347367852926254,-0.011815657839179039,0.05298909172415733,0.10220231860876083,0.15781310200691223,0.03651043772697449,-0.016445841640233994,-0.05473148077726364,-0.14025236666202545,-0.0910121276974678,0.018832553178071976,-0.031272564083337784,0.0012699388898909092,0.04404409974813461,0.023373130708932877,-0.07547573745250702,-0.06950335204601288,0.03799491748213768,-0.009308235719799995,0.04789499565958977,0.09141855686903,-0.008491391316056252,0.0014128686161711812,0.026477886363863945,-0.02601785399019718,-0.05054023116827011,-0.059127286076545715,0.022432509809732437,0.025633957237005234,-0.025124281644821167,0.036477189511060715,-0.0660150870680809,-0.0639125183224678,0.06129738688468933,0.07147882133722305,-0.03540651127696037,0.02092832140624523,0.01636105217039585,0.027415625751018524,-0.062176790088415146,-0.10637100785970688,0.03873582184314728,-0.03781937435269356,-0.01510414108633995,0.04564986377954483,-0.06293634325265884,0.04460117965936661,0.014196089468896389,0.04887210950255394,-0.015042233280837536,-0.10408703982830048,-0.014956215396523476,-0.049140531569719315,0.07505713403224945,0.03380464017391205,0.06101011484861374,-0.03595137968659401,0.08849930018186569,-0.06729485839605331,-0.056880880147218704,0.07343801856040955,-2.7623801330216973e-33,0.08240482211112976,-0.0589815117418766,0.013578307814896107,0.02595135010778904,0.128998264670372,-0.019572021439671516,-0.023210084065794945,0.033236727118492126,-0.011864939704537392,0.05830080807209015,-0.07738690823316574,0.0037688608281314373,-0.0037602330558001995,-0.017360981553792953,0.010234188288450241,0.03068040870130062,0.0018477595876902342,-0.03200497105717659,0.00883558765053749,0.05908668041229248,0.013230572454631329,-0.027507416903972626,-0.07384070008993149,-0.050164785236120224,-0.06681916117668152,0.033733345568180084,-0.0754578486084938,0.008952564559876919,0.0017066731816157699,0.06568527221679688,0.004093944560736418,0.00844535417854786,0.037952814251184464,-0.017935942858457565,0.036475878208875656,-0.04337969049811363,-0.021575525403022766,-0.06561721861362457,-0.061053190380334854,-0.03212876617908478,-0.0880998969078064,0.006698333192616701,-0.06969300657510757,0.008993156254291534,-0.03530346602201462,-0.058217763900756836,-0.05217432975769043,0.03204710781574249,-0.06989887356758118,-0.02690756507217884,-0.028175704181194305,0.0011216766433790326,0.08370598405599594,0.05237903818488121,0.025836385786533356,0.0658508837223053,-0.005143356043845415,0.060438718646764755,0.04877614974975586,0.07342065870761871,-0.017514118924736977,0.022210508584976196,0.022082310169935226,0.012402473948895931,-0.005669076461344957,-0.13874690234661102,-0.0702616274356842,-0.011431937105953693,0.07925128936767578,-0.07119493186473846,-0.07559555768966675,-0.033844176679849625,-0.019079478457570076,-0.019349388778209686,0.0028138929046690464,-0.02625761181116104,0.0005389496218413115,0.020730700343847275,-0.07122385501861572,-0.05936441197991371,0.029252110049128532,-0.04382295161485672,0.028739023953676224,0.08025326579809189,0.010113165713846684,0.03054254688322544,0.027640702202916145,-0.14007481932640076,-0.05641455203294754,0.10211344808340073,-0.014655999839305878,0.0033606106881052256,0.07115485519170761,-0.09271052479743958,-0.03451555594801903,7.208315030234583e-34,0.059403952211141586,0.005810654256492853,-0.08668820559978485,0.018037285655736923,0.02452860213816166,-0.031120097264647484,-0.02042052522301674,0.008351465687155724,-0.01919165998697281,0.024996256455779076,-0.07599711418151855,0.07853885740041733,0.02429170347750187,0.0317898653447628,0.043630003929138184,-0.059953153133392334,0.054318103939294815,0.04981793463230133,-0.05197489634156227,0.031847238540649414,0.027491893619298935,-0.06803061068058014,0.056589171290397644,-0.007875713519752026,0.028075512498617172,0.07444766908884048,0.1029147058725357,-0.045838017016649246,-0.03385334461927414,-0.0491764210164547,0.016423992812633514,0.017004502937197685,-0.015031219460070133,0.022624514997005463,-0.031078794971108437,0.026254970580339432,0.06590873748064041,-0.0225842222571373,-0.04437871277332306,-0.10846593976020813,0.031202159821987152,0.010737762786448002,0.06213724613189697,0.002453126711770892,-0.009659789502620697,-0.0064804088324308395,0.05156400799751282,0.00370920286513865,-0.014921458438038826,0.017431965097784996,-0.08362038433551788,-0.05509480834007263,-0.007309934124350548,-0.0003128952521365136,-0.046118274331092834,-0.172488734126091,0.02814437821507454,-0.0883101299405098,0.025255048647522926,0.039231713861227036,0.00630274647846818,0.0074342405423521996,0.032562222331762314,0.06632400304079056,0.004254205618053675,-0.0571407675743103,-0.08977778255939484,0.05711481347680092,-0.011107122525572777,-0.06706452369689941,-0.007629578001797199,0.031686607748270035,0.011790185235440731,0.10366685688495636,-0.017934298142790794,-0.01809460110962391,0.017646433785557747,-0.029283197596669197,-0.0515645295381546,-0.07444075495004654,0.06293539702892303,0.03115697205066681,-0.061785317957401276,-0.01832803711295128,-0.006930792238563299,0.010575313121080399,0.051799166947603226,-0.009653917513787746,-0.08032503724098206,-0.04289475828409195,-0.007764990441501141,0.048221785575151443,0.052461378276348114,0.04202066361904144,0.07770323753356934,-2.9492159825394992e-8,-0.08001291006803513,0.14047253131866455,0.009284800849854946,0.0547519326210022,0.038848958909511566,0.04280078783631325,0.03005978651344776,0.01794745959341526,-0.030963566154241562,-0.12511920928955078,-0.0688781812787056,-0.007336673326790333,0.09764000028371811,0.06485509127378464,0.01616876758635044,0.039869897067546844,0.03213038668036461,-0.13860194385051727,-0.020296752452850342,0.005077070090919733,-0.014346289448440075,0.04166591539978981,-0.014024820178747177,0.011279711499810219,-0.03088364377617836,0.04586191102862358,-0.03928706422448158,0.031131548807024956,0.04635612294077873,-0.0011245568748563528,-0.01393930334597826,0.026812033727765083,-0.07099270075559616,0.019566165283322334,-0.07843679934740067,0.04720381647348404,0.030538860708475113,-0.012995476834475994,0.0043743024580180645,-0.11131107807159424,-0.02889619767665863,0.04611661657691002,0.04303789138793945,-0.015042866580188274,-0.01576652191579342,0.049189887940883636,0.07666468620300293,-0.021696416661143303,-0.029863471165299416,0.047646887600421906,-0.026101205497980118,-0.02799917384982109,0.009431512095034122,-0.012359076179564,0.06081647798418999,-0.019470378756523132,-0.004438214935362339,-0.10018761456012726,-0.09249868243932724,-0.04132944345474243,0.04099002480506897,-0.015231545083224773,-0.06346846371889114,0.011040091514587402]},{"text":"This idea made me shudder and recalled me to action.","book":"1984","chapter":116,"embedding":[-0.039751965552568436,-0.037762049585580826,0.03655819967389107,0.022477757185697556,0.022107701748609543,0.05686008185148239,0.06771485507488251,0.08436644822359085,-0.00722277257591486,-0.04153595492243767,-0.006771565414965153,0.048341941088438034,-0.00045130570651963353,0.016176143661141396,0.0036714544985443354,-0.019792599603533745,0.07033605873584747,0.08542900532484055,0.024183060973882675,0.07212486118078232,-0.03224317729473114,0.02466030791401863,0.07937361299991608,0.022791514173150063,-0.07562686502933502,0.013602573424577713,0.007993937470018864,-0.02379309944808483,-0.05883448198437691,-0.028246717527508736,0.08773928135633469,0.06060771644115448,-0.0360008142888546,-0.031712956726551056,-0.007215283345431089,0.0055428482592105865,-0.05618339404463768,-0.010334131307899952,0.014779907651245594,-0.08311296254396439,-0.053511958569288254,-0.08677095919847488,-0.027456779032945633,0.051219407469034195,-0.03119770810008049,-0.053615860641002655,0.03802550584077835,0.015940319746732712,0.10537628829479218,-0.06236327439546585,0.008221358060836792,-0.04793054983019829,0.02868381328880787,-0.08220212906599045,-0.03795897960662842,-0.007791770156472921,0.00699495617300272,0.042157746851444244,-0.005613079760223627,-0.02996169775724411,-0.03896992653608322,-0.006484671961516142,-0.04080002382397652,-0.03762724995613098,0.015594870783388615,0.004642568528652191,0.046153489500284195,0.0048331269063055515,-0.013575424440205097,-0.006734889000654221,0.07545274496078491,0.04427685961127281,-0.0014747491804882884,0.0488261915743351,0.0005546504980884492,0.04126495495438576,-0.031158173456788063,-0.04649249464273453,-0.04227496683597565,-0.0035334269050508738,0.0033414922654628754,0.012034671381115913,-0.013765131123363972,0.04116438701748848,0.046902138739824295,-0.016540778800845146,0.003113984130322933,-0.009045739658176899,0.046948015689849854,-0.005610521882772446,-0.06075095385313034,-0.07078755646944046,0.04554436355829239,-0.016741003841161728,-0.014950256794691086,0.0551178902387619,-0.05699312314391136,0.011126036755740643,-0.07142207771539688,0.07120110094547272,-0.01949678733944893,-0.020187264308333397,-0.09175486862659454,-0.032454632222652435,0.04744867607951164,-0.06470770388841629,0.02105940505862236,-0.060603659600019455,0.04346369951963425,0.02660786546766758,-0.02774045430123806,-0.04868561774492264,-0.0029300889000296593,0.057686351239681244,-0.07497823238372803,-0.018751366063952446,-0.014092793688178062,-0.052099358290433884,-0.026025721803307533,-0.008008496835827827,0.08823107182979584,-0.009821032173931599,-0.006459019146859646,-0.011378100141882896,-0.009478358551859856,-0.12412602454423904,-0.08284380286931992,-8.363349167196839e-33,0.02173895575106144,0.04262882098555565,0.018270883709192276,-0.019856516271829605,0.10711348801851273,-0.02694793790578842,-0.04654282331466675,0.04255734756588936,-0.01730751432478428,-0.05347708612680435,0.09089479595422745,-0.05920247733592987,0.024993235245347023,0.08606632798910141,-0.03466026112437248,-0.04183633252978325,-0.02345046028494835,0.04242495819926262,0.06594859808683395,0.011459331959486008,-0.06614965200424194,0.0966477021574974,0.01400439441204071,0.047871168702840805,-0.04553942382335663,-0.0038426017854362726,-0.03690263256430626,0.00460831867530942,0.029647622257471085,0.03437770530581474,0.0028104798402637243,0.04314170032739639,-0.02700890600681305,0.013403890654444695,-0.003997752442955971,0.07249954342842102,0.035225335508584976,-0.08943153917789459,0.01555137149989605,-0.023483265191316605,-0.003178560407832265,0.005515044089406729,0.029720036312937737,-0.07169777154922485,0.0017767914105206728,-0.012605126947164536,0.06402310729026794,0.035722024738788605,0.02860451303422451,0.012425997294485569,0.040996208786964417,0.0639711320400238,0.048941317945718765,0.02114839293062687,0.042136840522289276,-0.04534066095948219,-0.012366424314677715,-0.06256603449583054,0.03082253783941269,0.05160282179713249,-0.06273046135902405,-0.01726335845887661,0.04042057693004608,0.03898432478308678,-0.08933981508016586,0.0034326084423810244,0.03620372340083122,0.014508318156003952,-0.06406214833259583,-0.06122782826423645,-0.020884862169623375,-0.04954495653510094,-0.08064252138137817,-0.03985915333032608,-0.08955543488264084,-0.056417569518089294,0.005693366751074791,-0.058276161551475525,-0.03105063922703266,-0.1026686429977417,0.07035516947507858,-0.09639041870832443,-0.013375039212405682,0.020902901887893677,0.08774660527706146,-0.043489597737789154,0.1003061830997467,-0.07842661440372467,-0.09008908271789551,-0.01777820847928524,-0.02046617679297924,0.010999616235494614,0.04134180024266243,-0.02315228432416916,-0.04047446697950363,4.8461999072174904e-33,0.03705689311027527,-0.00819995254278183,-0.11336126178503036,-0.020995359867811203,0.07999330013990402,-0.054959576576948166,-0.010077746585011482,0.00480072945356369,-0.05974477156996727,-0.009469838812947273,-0.03551396355032921,0.011282593943178654,-0.039574384689331055,0.038208577781915665,-0.004700120538473129,-0.0556323416531086,0.021271396428346634,0.0059086899273097515,-0.045442428439855576,0.03464488312602043,0.009753006510436535,-0.016179172322154045,0.017426231876015663,0.06900139898061752,-0.03875800594687462,0.026272643357515335,0.028255602344870567,-0.019176596775650978,-0.005717884283512831,-0.03728955611586571,-0.02059319242835045,-0.008020881563425064,-0.03207791969180107,-0.006730057764798403,0.030879752710461617,0.13083618879318237,0.03548204526305199,0.02289992943406105,-0.06188903748989105,-0.10212065279483795,0.004038302693516016,-0.027499813586473465,-0.03240671753883362,0.11490743607282639,-0.0003523433697409928,-0.017867691814899445,-0.013912606053054333,0.055428747087717056,-0.02145659364759922,0.055860064923763275,-0.05799927935004234,0.05147849768400192,-0.006535382941365242,-0.141673281788826,-0.006850092206150293,-0.03219439834356308,0.06607997417449951,-0.13153131306171417,0.04736956208944321,0.01800619810819626,-0.05434848740696907,-0.0043487451039254665,-0.055549632757902145,-0.06872423738241196,0.053372446447610855,-0.0055156671442091465,-0.01665625534951687,0.06982126086950302,-0.036923039704561234,0.053610775619745255,0.04327208176255226,0.02112209051847458,-0.03649560362100601,-0.009811986237764359,0.03197234496474266,-0.09373665601015091,0.05533826723694801,0.03458873927593231,-0.021152690052986145,-0.05365058407187462,-0.0004539242945611477,-0.019231317564845085,0.02839970774948597,0.06271573901176453,0.002661272184923291,0.0640815794467926,-0.13545028865337372,0.06753972172737122,-0.009942065924406052,0.05788514390587807,-0.08962319046258926,0.010426121763885021,0.10491394996643066,0.0845518484711647,0.02980557642877102,-2.4414275046069633e-8,-0.04333328455686569,0.05528639256954193,0.01371046993881464,0.06243123114109039,0.06341132521629333,-0.04078017547726631,-0.06628664582967758,0.04322733357548714,-0.06294509768486023,0.020103707909584045,-0.03275931626558304,0.029230881482362747,0.0440499410033226,0.11363198608160019,0.020844127982854843,0.02169281244277954,0.07148447632789612,-0.0010601832764223218,-0.09077400714159012,0.07318714261054993,-0.04639817774295807,0.08002013713121414,-0.01943325810134411,0.00028647607541643083,-0.01431084331125021,-0.011973274871706963,-0.0007899911142885685,0.09815707802772522,0.11569982767105103,0.06670302897691727,0.021702200174331665,-0.04950248822569847,-0.0804896429181099,0.01782827451825142,-0.08930845558643341,-0.04517487436532974,-0.028287474066019058,0.0008557458058930933,0.07107410579919815,-0.05281583592295647,-0.03352001681923866,0.06483926624059677,0.02778680995106697,0.05114050954580307,-0.009439945220947266,0.10612663626670837,-0.00737476022914052,-0.06026482209563255,0.006188528146594763,0.04948647692799568,-0.049227796494960785,0.10032795369625092,0.05426330491900444,0.10917321592569351,0.11344144493341446,0.09659676998853683,-0.007037370931357145,0.0008876216597855091,-0.024824518710374832,0.008646146394312382,0.08188862353563309,-0.049066003412008286,-0.13327017426490784,0.02348249778151512]},{"text":"The sun might shine or the clouds might lower, but nothing could appear to me as it had done the day before.","book":"1984","chapter":117,"embedding":[0.008601580746471882,0.0740462988615036,0.15124090015888214,0.09837410598993301,0.08217640221118927,-0.08822762221097946,-0.05823645368218422,-0.054777175188064575,0.03748573362827301,-0.039868421852588654,0.04932866245508194,0.04560607299208641,0.04047078266739845,0.007282413076609373,0.05692262947559357,-0.0033632887061685324,0.0720769539475441,-0.04452864080667496,-0.062173329293727875,0.019502494484186172,-0.0022348801139742136,0.01905561238527298,-0.08712880313396454,-0.017439045011997223,-0.01605662889778614,0.05669691786170006,-0.06870847195386887,0.02847047708928585,-0.0008143261657096446,-0.06425107270479202,-0.07996812462806702,0.00868388544768095,-0.02261999063193798,0.04302596300840378,0.10453205555677414,-0.009044152684509754,0.0650482177734375,-0.04349755123257637,0.07786580920219421,-0.03034445270895958,-0.027902070432901382,-0.051971569657325745,-0.0243955310434103,-0.003146558767184615,-0.02624262124300003,0.01077059656381607,0.020804250612854958,-0.023292014375329018,-0.03737526014447212,-0.03130015358328819,-0.025982804596424103,-0.02168469876050949,-0.07838985323905945,-0.06522798538208008,-0.041709430515766144,0.0803644061088562,-0.07493239641189575,-0.04128119722008705,0.08021912723779678,-0.015953613445162773,-0.062140341848134995,0.02779453806579113,-0.015636460855603218,0.04281576722860336,0.0990959107875824,-0.02607274428009987,-0.0369894802570343,-0.10209095478057861,0.02294660173356533,0.009904340840876102,0.043957483023405075,0.10824219137430191,-0.009964372031390667,-0.014542230404913425,-0.06939712166786194,-0.0440729595720768,-0.026644468307495117,-0.03336124122142792,0.017512474209070206,-0.012605779804289341,0.039996277540922165,0.09524165093898773,-0.06427031755447388,0.06612444669008255,-0.06909401714801788,0.03414388746023178,0.031693100929260254,-0.03552339971065521,-0.0301347766071558,0.009945538826286793,-0.043632589280605316,0.0105136102065444,-0.12175466865301132,0.04865119978785515,-0.08318962156772614,0.003336478490382433,0.022685306146740913,0.02400093339383602,0.003547986038029194,0.06397506594657898,0.011353890411555767,0.04249350354075432,-0.04929489269852638,-0.02966216951608658,0.02804376557469368,0.00435939896851778,-0.052127499133348465,-0.05075214430689812,-0.08375637233257294,0.015247172676026821,0.03370790183544159,0.0083472216501832,0.045688048005104065,0.04919583722949028,-0.05096519738435745,0.005292671732604504,0.011487900279462337,0.02404215559363365,-0.1632067710161209,0.013084910809993744,0.04242724925279617,0.009326395578682423,0.08098289370536804,0.055598869919776917,0.0033043157309293747,0.09146589040756226,-0.01775250770151615,-3.697595724354232e-33,0.08314917236566544,-0.07700995355844498,0.08447744697332382,-0.062530018389225,0.10525398701429367,-0.027755092829465866,-0.05902927368879318,-0.02667311020195484,0.025803983211517334,-0.01968061737716198,0.006299404893070459,-0.019991327077150345,-0.039661601185798645,0.04025377333164215,-0.02376115694642067,0.01339575182646513,0.05311359465122223,0.05607038363814354,-0.019154563546180725,-0.0004427027888596058,-0.06766841560602188,-0.07251070439815521,-0.026583267375826836,-0.03388189151883125,-0.030535362660884857,0.043785568326711655,0.0667555183172226,-0.011851527728140354,-0.02886888012290001,-0.028737036511301994,0.00034840975422412157,0.020242223516106606,0.05875997990369797,0.04728536307811737,0.026335084810853004,0.06073326617479324,0.01800202764570713,-0.0204981230199337,-0.03657418489456177,-0.004620234947651625,-0.05747945234179497,0.021739019080996513,-0.017366597428917885,-0.056998178362846375,-0.007605342660099268,-0.03669120371341705,0.05958067625761032,0.04394516348838806,-0.10456123948097229,0.048618488013744354,-0.018659891560673714,0.06828872114419937,0.020435035228729248,-0.037622589617967606,0.0309363454580307,0.05169332027435303,0.03560376912355423,-0.07290614396333694,-0.04959459975361824,0.028470689430832863,-0.0023937521036714315,-0.09819050878286362,0.007759645581245422,-0.02813015878200531,-0.011579090729355812,0.020882204174995422,0.021006746217608452,-0.013405748642981052,-0.046085506677627563,0.011717383749783039,0.01886902190744877,-0.06296220421791077,0.014204914681613445,0.01968059130012989,0.0744817778468132,-0.007406305987387896,0.0007500779465772212,0.0033510508947074413,0.008219001814723015,0.002876763232052326,0.062488485127687454,-0.03592575713992119,0.038540493696928024,-0.09728115797042847,0.05336560308933258,0.04374346137046814,0.045683205127716064,0.050526171922683716,-0.03144937753677368,-0.045756157487630844,0.041559118777513504,-0.02377793751657009,-0.009288488887250423,-0.04258893430233002,-0.023648949339985847,7.719794662796438e-34,0.0222888495773077,-0.021739862859249115,-0.0687904953956604,0.07303936034440994,-0.034988176077604294,-0.0416036918759346,-0.003927429206669331,0.012124325148761272,-0.0947144404053688,0.07528204470872879,0.09020353108644485,0.0852152556180954,-0.05728055164217949,-0.017947934567928314,-0.004138782154768705,0.044970203191041946,0.039988934993743896,0.016857149079442024,0.003053758991882205,0.14007548987865448,-0.07770185172557831,0.03351186588406563,-0.007951552979648113,0.04244731739163399,-0.0035437734331935644,0.05745171010494232,0.08434976637363434,-0.03460269048810005,-0.03854939341545105,-0.03787453845143318,0.02960554137825966,0.00776246003806591,-0.0779745951294899,0.03817860037088394,0.030946532264351845,0.14486819505691528,0.04109406843781471,-0.09858416765928268,-0.03511570766568184,-0.021164270117878914,-0.05111405998468399,0.013493932783603668,0.031013889238238335,-0.03585048392415047,-0.030278194695711136,-0.009505903348326683,0.015119430609047413,0.0874188169836998,0.02614428848028183,-0.01279966440051794,0.01123778149485588,-0.003759159706532955,0.022922333329916,0.09397502988576889,-0.001037580776028335,-0.004598445724695921,0.08665555715560913,-0.08238954097032547,0.0007854559225961566,0.05451011657714844,-0.0373435914516449,-0.06061394140124321,-0.011807739734649658,-0.0717533528804779,-0.010776432231068611,-0.06765804439783096,-0.018453607335686684,0.12806281447410583,0.02442086488008499,0.002762987744063139,0.11571328341960907,-0.0999026894569397,-0.07463357597589493,-0.037264835089445114,0.021512387320399284,0.07398562878370285,0.00993859488517046,0.06772933900356293,-0.09048844128847122,0.027539534494280815,-0.09492374211549759,-0.019075000658631325,-0.026474162936210632,-0.00945128034800291,0.006879867985844612,-0.024552812799811363,-0.08333711326122284,-0.07088450342416763,-0.034333884716033936,0.0573195144534111,-0.06255941838026047,0.03567741811275482,-0.037559181451797485,0.01939721778035164,-0.046085551381111145,-2.472163274092054e-8,-0.02040371112525463,-0.02349003776907921,0.06581298261880875,-0.027737924829125404,0.03663209453225136,-0.06296942383050919,0.10638441145420074,0.037495844066143036,-0.0046874950639903545,-0.06878120452165604,-0.02216186560690403,-0.02987750619649887,0.026374265551567078,-0.013582250103354454,0.050914160907268524,0.022422779351472855,-0.11100678145885468,-0.10949655622243881,0.002138664247468114,0.0044272360391914845,-0.008625676855444908,0.03188583627343178,-0.030051367357373238,-0.028368288651108742,0.025774987414479256,0.01523572113364935,0.01509427186101675,0.07041856646537781,-0.036329079419374466,0.014880647882819176,0.04751865193247795,-0.0008315667510032654,0.04136544466018677,-0.08971624821424484,0.010448857210576534,-0.03183645009994507,-0.006170301698148251,0.042039934545755386,-0.027445854619145393,-0.010766896419227123,-0.026896432042121887,0.030652616173028946,-0.04903890937566757,0.054550863802433014,-0.0003655357286334038,-0.01196223869919777,0.061097756028175354,-0.06381726264953613,-0.058212559670209885,-0.042359981685876846,0.056475330144166946,0.047817446291446686,0.03189564496278763,-0.0076127927750349045,0.01669498346745968,0.016732938587665558,0.006258890964090824,0.052833013236522675,-0.028222622349858284,0.00649118609726429,0.06775646656751633,-0.12621334195137024,-0.08789746463298798,0.01636519655585289]},{"text":"What then became of me?","book":"1984","chapter":117,"embedding":[-0.00915591325610876,0.04278785362839699,0.05603427812457085,0.11596877127885818,0.060490358620882034,-0.07770461589097977,0.14642097055912018,0.019615182653069496,0.00970910582691431,-0.023676885291934013,0.004288468975573778,-0.02602444775402546,-0.009141321294009686,-0.021187348291277885,0.017627108842134476,0.004022008739411831,0.04659402742981911,-0.04145276919007301,-0.06167282909154892,0.007590905297547579,-0.12036941200494766,0.077013298869133,-0.041118405759334564,0.0014827681006863713,0.02976863645017147,0.08813408017158508,-0.027027832344174385,0.045837290585041046,0.06103866919875145,-0.0456538088619709,-0.020255904644727707,-0.011378268711268902,-0.012799839489161968,0.012177368625998497,-0.025430643931031227,-0.025539347901940346,0.0020137799438089132,-0.0024508971255272627,0.06282752007246017,-0.006260523572564125,-0.01921415515244007,-0.02399272471666336,0.025865823030471802,-0.016973530873656273,0.031058281660079956,-0.05519765242934227,0.07481636852025986,0.01651902310550213,0.01030708383768797,0.04083137586712837,-0.02929014340043068,-0.00640372047200799,-0.002061025006696582,0.02350885048508644,0.011915209703147411,-0.01717466302216053,0.0293488297611475,0.07463626563549042,0.012552314437925816,0.07080131769180298,-0.08589370548725128,0.006732247769832611,-0.006575038656592369,0.04564065858721733,0.008088219910860062,0.031226102262735367,-0.0159902460873127,-0.028629085049033165,0.038981687277555466,0.004767636768519878,0.04831882566213608,0.003349323756992817,-0.03107559308409691,0.015586324967443943,0.007720836438238621,-0.06307809054851532,0.04841230809688568,-0.05104151368141174,0.1275518536567688,0.04410671442747116,0.02254433184862137,0.04800930246710777,-0.07809817790985107,0.013347312808036804,-0.050270259380340576,-0.05673089623451233,0.06974326819181442,0.0009449138306081295,-0.06988710910081863,0.03276811167597771,-0.06127925589680672,-0.02626892924308777,0.0515892468392849,0.0466323047876358,0.10415124148130417,-0.09197637438774109,-0.06441985815763474,-0.047637488692998886,0.07372710853815079,0.10411114990711212,-0.035233091562986374,-0.06048925593495369,0.0028740745037794113,0.022719694301486015,0.08222262561321259,-0.0020214200485497713,-0.04773533344268799,0.0309568103402853,-0.0037934493739157915,0.0360105037689209,-0.010095421224832535,-0.02078835293650627,0.0072760977782309055,0.0053216926753520966,0.040022216737270355,0.01193260494619608,-0.03389982134103775,-0.02251790277659893,-0.012047524563968182,0.03842267766594887,0.05355494096875191,0.07627320289611816,-0.06567298620939255,0.040782757103443146,-0.12449846416711807,-0.03116050362586975,0.049389149993658066,-6.914898415957893e-33,-0.042157214134931564,-0.04459958150982857,0.0374092273414135,0.12650838494300842,0.006380584556609392,0.05549677833914757,-0.03909878805279732,0.041235387325286865,-0.022452136501669884,-0.069574736058712,0.07050684839487076,0.012927296571433544,-0.05297454819083214,-0.05881776288151741,-0.009871062822639942,0.049570418894290924,-0.04491822421550751,-0.05458730831742287,0.056341227144002914,0.024101497605443,-0.07575113326311111,0.07399652898311615,0.05245218053460121,0.0035320522729307413,0.026872357353568077,0.022775528952479362,-0.02529085800051689,-0.0474071279168129,-0.01751863956451416,-0.012410099618136883,0.015957793220877647,0.04311395063996315,0.011335112154483795,-0.014220792800188065,-0.017767036333680153,-0.004246733617037535,0.03616141900420189,-0.04098919406533241,-0.022617032751441002,-0.02405860461294651,-0.008390246890485287,-0.008155260235071182,0.05962996184825897,-0.05808844044804573,-0.08114751428365707,0.007417882792651653,-0.011744746007025242,0.06822928786277771,-0.06135515123605728,0.01574164628982544,-0.02294808067381382,-0.03510652482509613,0.08619564771652222,0.0019672734197229147,-0.026714438572525978,-0.058337002992630005,-0.015546034090220928,0.04698554053902626,-0.03709997981786728,0.011323903687298298,0.05945662781596184,-0.00460410863161087,0.004053155891597271,0.017773374915122986,-0.1071586087346077,-0.12015219777822495,0.041352346539497375,-0.07624727487564087,0.030197054147720337,-0.03831933066248894,-0.030703168362379074,0.026407308876514435,-0.031092753633856773,0.05993793532252312,0.005831961520016193,-0.0507298968732357,-0.028195656836032867,-0.05426926910877228,-0.10257064551115036,-0.003809479996562004,0.024265039712190628,0.031889960169792175,-0.09209951758384705,0.007595974951982498,0.1053692102432251,0.01610998623073101,0.010287760756909847,-0.11793016642332077,-0.00797463022172451,0.01356551330536604,0.01816651038825512,-0.029281213879585266,0.12145793437957764,-0.08307179808616638,-0.07015476375818253,3.3728529203120976e-33,-0.008715039119124413,-0.01895582303404808,-0.010516403242945671,-0.024622727185487747,-0.001563897356390953,-0.11440518498420715,-0.05715437978506088,0.060128550976514816,-0.09964141249656677,0.001182238687761128,0.10002167522907257,-0.025576498359441757,0.1227370873093605,-0.019185710698366165,0.033359576016664505,-0.0012924309121444821,0.00687888078391552,-0.026598654687404633,-0.036512792110443115,0.0002869171730708331,-0.013914279639720917,0.0575847253203392,0.018826181069016457,-0.028541050851345062,-0.0135807441547513,0.031517330557107925,0.1232353001832962,0.00978782307356596,0.00485369423404336,0.0070823063142597675,-0.0019694734364748,-0.021787824109196663,-0.010427728295326233,-0.005481250584125519,-0.013043218292295933,0.03177168220281601,-0.024321045726537704,-0.05198632925748825,-0.005989975295960903,-0.1164015680551529,-0.05688042193651199,-0.040544040501117706,0.0500163659453392,0.0720859169960022,0.030129816383123398,-0.08808927983045578,0.07552193850278854,0.03742312639951706,0.02585924230515957,0.008851967751979828,-0.07683109492063522,-0.00870335940271616,0.08765161037445068,-0.013802031055092812,-0.036805659532547,-0.029781656339764595,0.03221357986330986,-0.03266769275069237,0.0629158616065979,-0.014527413062751293,-0.09390570223331451,0.00016881573537830263,-0.013875025324523449,0.06097879633307457,-0.002026214497163892,-0.011904801242053509,-0.06583844870328903,0.04655101150274277,-0.102369025349617,-0.04109600931406021,0.04082433134317398,0.05538404732942581,-0.021023061126470566,-0.020077917724847794,-0.04055313393473625,-0.026673195883631706,-0.0825856551527977,0.008761962875723839,-0.05553076043725014,-0.09591969847679138,-0.05903884023427963,-0.03920469805598259,0.04815404862165451,-0.02565816417336464,0.025457682088017464,-0.02759053185582161,0.028887979686260223,0.000777855864726007,0.06204317510128021,-0.06448923051357269,0.04799623787403107,-0.009739515371620655,-0.0315958634018898,-0.00018625201482791454,-0.015129211358726025,-1.589347853325762e-8,-0.05369042605161667,0.017596721649169922,-0.06516145169734955,0.07837699353694916,0.0877777636051178,0.05053810775279999,0.0028357068076729774,0.019965333864092827,-0.04496051371097565,-0.005518442951142788,-0.14662301540374756,0.07084783166646957,0.1428215205669403,-0.026348646730184555,0.0728473886847496,0.02479819394648075,0.07454158365726471,-0.04667277634143829,-0.03158282861113548,0.04566829279065132,-0.04784095287322998,0.0019235298968851566,-0.04417506232857704,0.002879935083910823,-0.08304579555988312,0.021745745092630386,0.004297471605241299,-0.0347740538418293,0.000489588885102421,0.07933072000741959,0.06764718145132065,0.09943883866071701,-0.10284100472927094,0.03402526676654816,-0.046956636011600494,0.04772256687283516,-0.07006154954433441,-0.04181580990552902,0.02259855344891548,-0.0034383016172796488,0.013126315549015999,0.04808523505926132,0.0234577264636755,0.051854442805051804,-0.07228417694568634,0.04444970563054085,0.027721304446458817,0.005664852447807789,0.011383374221622944,-0.02943301759660244,0.08863766491413116,0.04465031251311302,-0.041589707136154175,0.0029650654178112745,0.09846506267786026,-0.026035422459244728,0.019079070538282394,0.11061617732048035,-0.03402681648731232,-0.002382571343332529,0.08292632550001144,-0.011555549688637257,-0.07694793492555618,-0.013600611127912998]},{"text":"The story is too connected to be mistaken for a dream, and I have no motive for falsehood.” My manner as I thus addressed him was impressive but calm; I had formed in my own heart a resolution to pursue my destroyer to death, and this purpose quieted my agony and for an interval reconciled me to life.","book":"1984","chapter":118,"embedding":[0.00758194038644433,0.08650536090135574,0.08136538416147232,0.08288560062646866,0.01554394606500864,-0.04529925435781479,0.06468672305345535,-0.04106944054365158,0.05906527861952782,-0.10780879855155945,-0.047641318291425705,0.0013290535425767303,0.048254795372486115,-0.04958481714129448,0.015105089172720909,0.008324681781232357,-0.07332514971494675,0.06784311681985855,-0.014773435890674591,0.0768723115324974,0.029825087636709213,0.06098056957125664,0.021853623911738396,0.000776277796830982,-0.0708802193403244,-0.005822184961289167,0.01871737278997898,-0.013501233421266079,-0.030862784013152122,0.009307070635259151,0.0284739900380373,0.005731282290071249,-0.07195913791656494,0.006305148359388113,0.06880814582109451,0.026921471580863,-0.03183358535170555,0.05293012037873268,0.043795395642519,-0.028228309005498886,0.02763926424086094,-0.007133745588362217,0.027097539976239204,0.040088020265102386,0.01887127384543419,-0.028522679582238197,-0.08540073782205582,-0.019484711810946465,-0.016313577070832253,-0.05580602586269379,-0.12137115746736526,-0.0055419378913939,-0.012246201746165752,-0.055344246327877045,0.015897439792752266,0.054518938064575195,0.011975119821727276,0.08372800797224045,0.0294625386595726,-0.006954594515264034,-0.020229198038578033,0.033308640122413635,0.04255432263016701,-0.023999687284231186,0.06706435233354568,0.011958777904510498,0.030355442315340042,0.008597463369369507,0.027381407096982002,0.12374390661716461,0.04592929407954216,-0.00880326610058546,0.057954948395490646,0.024420149624347687,-0.06905008852481842,-0.05752655863761902,0.0005495853256434202,-0.032589904963970184,0.03866396099328995,0.05655837431550026,0.01699916273355484,-0.016066763550043106,-0.04443518444895744,-0.015145329758524895,-0.036650072783231735,-0.060853634029626846,0.07201436161994934,-0.061280637979507446,0.03837623819708824,0.08734581619501114,0.02494983933866024,-0.11779183149337769,-0.02614685706794262,0.05541615188121796,-0.006103239022195339,0.04288173094391823,-0.03847270458936691,0.05080513656139374,-0.09297524392604828,-0.010854171589016914,0.06485630571842194,-0.03263765946030617,-0.08590420335531235,-0.025222348049283028,0.03609570860862732,0.012844261713325977,-0.09785940498113632,-0.03461176156997681,-0.07742486149072647,-0.019712205976247787,0.026814419776201248,-0.1110994964838028,-0.009333809837698936,-0.01953582651913166,0.058839332312345505,0.10972461849451065,-0.07647180557250977,-0.004771148785948753,-0.04201246052980423,-0.02963455393910408,0.009596031159162521,0.056953079998493195,-0.004716960247606039,0.08319824188947678,-0.088416688144207,-0.06940750777721405,0.02323511429131031,-2.716156205398511e-33,0.0377969853579998,-0.006433876231312752,-0.0002925048756878823,0.0250377394258976,0.08348669856786728,-0.04297388345003128,-0.06864717602729797,0.006978647783398628,0.02238578535616398,-0.013561710715293884,0.011262373067438602,0.010305158793926239,0.03524267300963402,-0.019244706258177757,-0.1530114710330963,0.09922090917825699,-0.0774499922990799,0.041523125022649765,0.08586322516202927,0.0008738535107113421,-0.027757007628679276,0.009021328762173653,-0.025644157081842422,-0.06917474418878555,-0.07878365367650986,0.015359719283878803,-0.036596547812223434,-0.005601538810878992,-0.003706003073602915,0.016569847241044044,-0.026887519285082817,0.05936537683010101,0.05899069458246231,-0.02779051847755909,0.09696125239133835,0.028821736574172974,-0.01993757300078869,-0.02024059183895588,-0.09447914361953735,0.06562227010726929,-0.06865289062261581,0.036631990224123,-0.0008098628022707999,-0.08146165311336517,0.005413660779595375,-0.009340877644717693,-0.02121119014918804,0.05032481625676155,-0.028021380305290222,0.004236262757331133,-0.003503268351778388,-0.0008566208998672664,0.03013627417385578,-0.08770405501127243,-0.0017584746237844229,0.0072982716374099255,0.06657169759273529,0.03246983140707016,0.08596760779619217,0.021326370537281036,0.020200731232762337,-0.14940719306468964,-0.05346487835049629,0.05113355442881584,-0.03210138529539108,-0.0660896971821785,-0.08987067639827728,-0.11657443642616272,-0.012116051279008389,-0.07787451148033142,-0.05591198801994324,-0.05004492029547691,0.02019936963915825,0.015927754342556,-0.029824882745742798,-0.024421192705631256,-0.02168356068432331,0.07683656364679337,-0.0779554471373558,0.0018498620484024286,0.016627361997961998,-0.008050336502492428,-0.10247067362070084,0.00301978993229568,0.028465906158089638,0.04499608650803566,-0.00957512017339468,-0.10936509817838669,-0.06539320945739746,0.08017195761203766,-0.035205550491809845,-0.009404398500919342,0.02163229137659073,-0.05319185554981232,-0.09943629801273346,-7.48617204823272e-34,0.05684845522046089,0.02825780026614666,0.02367977797985077,0.023669008165597916,0.04660699516534805,-0.08106563240289688,-0.01094372384250164,0.008107395842671394,-0.02605675719678402,-0.0027094404213130474,0.02587893418967724,0.017485637217760086,0.009827152825891972,0.062438566237688065,-0.01565728336572647,-0.0942816287279129,0.053704313933849335,-0.013708795420825481,-0.08645089715719223,0.014421744272112846,0.013183473609387875,0.021042192354798317,-0.02332703210413456,-0.05891665443778038,-0.006586425006389618,0.0318102166056633,0.11018659174442291,0.031267616897821426,0.007387020159512758,-0.05506783723831177,0.08929581195116043,0.0026287364307790995,-0.03788613900542259,-0.04246582090854645,0.05384351685643196,0.11314044892787933,0.04286317899823189,0.003911076579242945,0.02228112332522869,-0.08422859758138657,-0.031476471573114395,0.006941047962754965,-0.03737511485815048,-0.010274824686348438,0.02940778248012066,-0.03857417032122612,0.04742917791008949,0.014891342259943485,0.08522605895996094,0.0224362313747406,-0.004348213318735361,0.027430785819888115,0.021655015647411346,0.041057683527469635,0.0128756919875741,-0.0723910853266716,-0.02416367270052433,-0.028132399544119835,0.06625304371118546,-0.03392499312758446,-0.0037279678508639336,-0.0018290204461663961,-0.03748572617769241,-0.0010188855230808258,0.03361517935991287,0.04472587630152702,-0.059607233852148056,0.011971740983426571,-0.05697193741798401,-0.009560124948620796,-0.01629902608692646,-0.05718019977211952,-0.04939469322562218,0.09701666980981827,0.010036882013082504,-0.03772658482193947,-0.0860208198428154,-0.03987578675150871,-0.024831296876072884,0.011568211019039154,-0.031080929562449455,-0.05189693346619606,0.03711637482047081,0.07719078660011292,-0.01048772968351841,-0.02026735059916973,-0.01931134983897209,0.020867321640253067,0.04914753511548042,0.02408704347908497,-0.01108278427273035,-0.0011441088281571865,0.040501873940229416,0.014453460462391376,-0.016438929364085197,-4.6870312075952825e-8,-0.05652929097414017,-0.0017856243066489697,-0.04249097406864166,0.025064941495656967,-0.012709477916359901,0.007779652252793312,0.02621140517294407,-0.06845322996377945,-0.08322444558143616,0.02484757825732231,-0.05363162234425545,0.02451596036553383,0.003386533120647073,0.06541882455348969,0.04658527299761772,-0.06808317452669144,0.0017410868313163519,-0.0935293659567833,-0.03773744776844978,-0.047549694776535034,0.02633928321301937,0.07808856666088104,-0.062117066234350204,-0.08073948323726654,0.04180675745010376,0.06668473035097122,-0.041199684143066406,-0.03742204234004021,-0.09113439917564392,-0.010613234713673592,0.007289996836334467,0.021764596924185753,0.01598646305501461,-0.0021222103387117386,-0.0286830123513937,0.037458647042512894,0.054436665028333664,0.028455425053834915,0.0027035647071897984,-0.06859356164932251,0.03733896091580391,0.03412078693509102,0.08695816248655319,0.06337706744670868,0.056446563452482224,0.0018744096159934998,0.010907570831477642,-0.03176278993487358,-0.010330745950341225,0.1028151661157608,0.041440367698669434,0.031835902482271194,0.02646723948419094,0.03444990515708923,0.0004186436126474291,-0.07620999217033386,-0.051602479070425034,0.06363870948553085,-0.12534266710281372,-0.0056419987231493,0.1702946573495865,0.0423649437725544,-0.0510978139936924,-0.06243152916431427]},{"text":"My revenge is of no moment to you; yet, while I allow it to be a vice, I confess that it is the devouring and only passion of my soul.","book":"1984","chapter":118,"embedding":[-0.018942680209875107,0.07962143421173096,0.06414028257131577,-0.04526170715689659,0.000055348453315673396,-0.007805604953318834,0.08078700304031372,-0.04640796408057213,0.06576137244701385,0.001851145876571536,-0.06877397745847702,0.018184326589107513,0.015440922230482101,-0.03914839029312134,-0.0021393559873104095,-0.0317714586853981,0.06600958853960037,0.008625107817351818,0.04874885827302933,0.044749513268470764,0.036391325294971466,0.04734538123011589,0.00704876147210598,-0.09089133143424988,-0.07385581731796265,0.020055638626217842,0.013236014172434807,0.02477589249610901,-0.05336799845099449,-0.058309201151132584,-0.01800093613564968,-0.011773273348808289,-0.01345205120742321,0.007316752336919308,-0.024009766057133675,-0.010377727448940277,-0.07175881415605545,-0.013536017388105392,0.10648080706596375,0.016181647777557373,0.014591897837817669,0.023759564384818077,-0.024486230686306953,0.018080679699778557,0.02602780982851982,-0.012565873563289642,0.008577272295951843,0.02376461587846279,0.0005128661287017167,-0.13003022968769073,0.009697231464087963,-0.027530057355761528,-0.05921738222241402,0.0915236547589302,-0.036264948546886444,-0.014041071757674217,0.024805808439850807,0.04150046035647392,0.0694650188088417,0.034104641526937485,0.015527122654020786,0.07980775088071823,0.0012480017030611634,0.021803228184580803,-0.004530422389507294,-0.05017906427383423,0.1162923276424408,0.020567944273352623,-0.0456051304936409,0.1042649894952774,-0.02575254999101162,-0.006371719762682915,-0.005488772876560688,-0.008179692551493645,-0.06648862361907959,-0.006351612973958254,-0.009726903401315212,-0.06593641638755798,-0.0028005586937069893,-0.014327561482787132,0.004460130352526903,0.028172263875603676,-0.04874617978930473,0.03959253430366516,-0.06289894133806229,-0.027603106573224068,0.048793185502290726,-0.013281788676977158,0.10764402896165848,0.047819510102272034,-0.08671699464321136,-0.010914879851043224,0.012538951821625233,-0.03966209664940834,-0.02845788188278675,-0.04151005297899246,-0.04834774136543274,0.017093297094106674,-0.06743574142456055,0.01843637228012085,0.007122941315174103,-0.0263249222189188,-0.1221822053194046,-0.08103461563587189,0.05613096430897713,0.054762884974479675,-0.09608478099107742,0.028661904856562614,-0.03353595733642578,-0.010083185508847237,-0.040628548711538315,0.01843441277742386,0.0135699063539505,-0.0662657618522644,0.052113987505435944,0.025865592062473297,-0.05063570663332939,-0.02772372215986252,-0.028060372918844223,0.08465908467769623,0.020830219611525536,0.05418337509036064,-0.0885474681854248,0.08281172811985016,-0.08814492076635361,-0.10390692204236984,-0.00008349226845894009,-6.968614099686656e-33,-0.0418853722512722,0.04248210787773132,0.07320738583803177,-0.06121845915913582,0.023450961336493492,-0.0058801681734621525,-0.005828414112329483,0.07171212881803513,0.009072266519069672,-0.010166863910853863,0.025892186909914017,-0.04799266904592514,-0.038252223283052444,0.04811670631170273,-0.11423981934785843,0.058771971613168716,0.010483997873961926,0.028654590249061584,0.09955712407827377,-0.029522504657506943,-0.06801687926054001,0.04510388523340225,-0.013875066302716732,-0.07037725299596786,-0.10690021514892578,-0.0518580861389637,-0.031420350074768066,0.014981516636908054,0.023738378658890724,0.015630554407835007,0.012123932130634785,0.0027483475860208273,0.11662252992391586,0.03216560557484627,-0.04079694673418999,-0.0447358675301075,-0.014139633625745773,-0.07963753491640091,-0.06346450746059418,0.09033577144145966,-0.07406682521104813,0.06825201213359833,0.011766712181270123,-0.022307850420475006,-0.07967331260442734,-0.015226943418383598,0.03474656492471695,0.049510370939970016,0.023803647607564926,0.0032700193114578724,0.04219537228345871,0.02329658716917038,0.11114893108606339,-0.001600115210749209,-0.001491281669586897,0.07426416128873825,0.014596420340240002,0.0013476862804964185,0.010734008625149727,-0.012506730854511261,-0.022882383316755295,-0.05031378194689751,0.005532404407858849,-0.028559720143675804,-0.017415732145309448,-0.047878872603178024,-0.05076559633016586,0.015595626085996628,0.0221704114228487,-0.013739190995693207,-0.1041337102651596,-0.02725222334265709,-0.01312275044620037,-0.06110767275094986,-0.029964689165353775,0.014423869550228119,0.047133415937423706,-0.04758257418870926,0.040114566683769226,0.05245795473456383,-0.06443118304014206,-0.01211258303374052,-0.03922754153609276,0.014742112718522549,0.06579781323671341,0.018355390056967735,0.06280208379030228,-0.15747007727622986,0.008699637837707996,0.10856904834508896,-0.038272734731435776,-0.04982553794980049,0.011135630309581757,-0.029932979494333267,-0.06780529022216797,3.526242810808913e-33,0.05049707740545273,-0.02500687912106514,-0.03270690143108368,0.0754014402627945,0.03917836770415306,-0.013188540004193783,-0.08126651495695114,0.01575932651758194,-0.13821302354335785,-0.02179202251136303,-0.07225947827100754,0.02767481841146946,0.015390874817967415,-0.01822366751730442,0.04463169723749161,-0.029610687866806984,0.0936499536037445,-0.03618328273296356,-0.06761971116065979,0.0096898740157485,-0.02173733338713646,0.09035709500312805,0.12262332439422607,-0.05791109427809715,-0.04583977535367012,-0.045371755957603455,0.089741051197052,0.013727518729865551,0.0473441518843174,0.01972048543393612,0.12497898191213608,-0.0060392869636416435,-0.0724639967083931,-0.05939874425530434,0.05281805247068405,0.08138618618249893,-0.01690002530813217,0.0032885796390473843,-0.013099400326609612,-0.05924315005540848,-0.06325438618659973,-0.013291082344949245,0.005485394969582558,0.01683374121785164,0.005290728062391281,-0.09321043640375137,0.07098890841007233,0.03222212940454483,0.04544011130928993,0.059956684708595276,0.0309442151337862,-0.044134724885225296,0.05316505581140518,0.026109203696250916,0.028767414391040802,-0.06806591153144836,0.0434911735355854,-0.009439192712306976,0.09453099966049194,-0.0289943628013134,0.0002471399784553796,0.01962350681424141,-0.03822866082191467,0.04142088070511818,0.045927852392196655,0.005478985141962767,-0.0033127686474472284,0.007049839943647385,-0.06923019886016846,0.0075474753975868225,0.00020435094484128058,0.05407218635082245,-0.1129164919257164,-0.007623860612511635,-0.0070601641200482845,-0.007471876218914986,0.029465854167938232,-0.03837262839078903,-0.11348497122526169,-0.024075962603092194,0.010042829439043999,-0.018046393990516663,0.01288724597543478,0.02487874962389469,-0.032155826687812805,0.004604805260896683,-0.018590595573186874,0.033798716962337494,0.06038815528154373,0.006894175428897142,-0.041479866951704025,-0.011714483611285686,0.009021859616041183,-0.02668582834303379,0.07854881882667542,-3.165903805779635e-8,-0.032146696001291275,0.029916418716311455,0.008250840939581394,0.05188186094164848,0.03483230993151665,0.0020705130882561207,0.040938396006822586,-0.058400921523571014,-0.04796122759580612,0.01971186324954033,0.11441812664270401,-0.0007271487847901881,0.12027920037508011,0.0409211628139019,0.0646887868642807,0.010246656835079193,0.040736082941293716,-0.08486736565828323,-0.025358136743307114,-0.04975038394331932,-0.05524234101176262,0.05629923939704895,0.023512547835707664,-0.14322984218597412,0.019536275416612625,-0.03229767456650734,0.016097215935587883,-0.04195382818579674,-0.008871604688465595,0.036220621317625046,0.08538676053285599,-0.0030258421320468187,-0.08928035944700241,0.0467756986618042,-0.01631219871342182,0.02055332623422146,0.03279692307114601,0.026986531913280487,-0.023631641641259193,0.03469838574528694,-0.0003961393376812339,0.026924503967165947,0.03025129623711109,0.0681532621383667,-0.03619472309947014,-0.029196901246905327,0.06730744987726212,0.014158111065626144,-0.027841247618198395,-0.008850762620568275,0.05601363256573677,-0.037682656198740005,-0.04090244323015213,0.05979350954294205,0.056998223066329956,0.023451674729585648,-0.02745586261153221,0.032526202499866486,-0.07708051800727844,0.04837556183338165,0.11125943809747696,0.023656504228711128,-0.06805828958749771,-0.08655937016010284]},{"text":"I have traversed a vast portion of the earth and have endured all the hardships which travellers in deserts and barbarous countries are wont to meet.","book":"1984","chapter":119,"embedding":[0.10768404603004456,-0.006173862610012293,0.027309808880090714,0.06890708953142166,-0.00012552495172712952,-0.06389225274324417,0.001370772602967918,-0.07887326180934906,0.000022654001440969296,-0.025303123518824577,-0.0005235373973846436,-0.0894075408577919,0.005088151898235083,0.040712278336286545,0.11030294746160507,-0.052795834839344025,-0.036749739199876785,-0.08157958090305328,0.025560788810253143,-0.04516890272498131,-0.0869336873292923,0.010022765956819057,-0.033066943287849426,0.06984195858240128,-0.08493779599666595,-0.061148595064878464,0.034037813544273376,-0.015326924622058868,-0.03593553975224495,0.028613073751330376,-0.03251318633556366,0.07113649696111679,-0.08353713154792786,0.04882918670773506,0.035817697644233704,0.09814894944429398,-0.009515129029750824,-0.05782270431518555,-0.002530511701479554,0.004618699196726084,0.03464366868138313,-0.0035016408655792475,0.13048763573169708,-0.03588540107011795,0.0553724467754364,-0.0631934180855751,0.017385471612215042,0.0370580293238163,0.030992543324828148,-0.011465230025351048,0.0492524616420269,0.06779719144105911,0.014494332484900951,-0.07328587025403976,-0.004469017963856459,-0.010988296009600163,-0.01858663558959961,-0.034901488572359085,-0.04095650091767311,0.023164324462413788,0.004632208030670881,0.004532197490334511,-0.06139054521918297,-0.02077057585120201,0.011716247536242008,0.004705941770225763,-0.01047769095748663,0.0835760086774826,0.05489860475063324,0.019711926579475403,-0.11477074027061462,-0.0068458071909844875,-0.10203848779201508,0.05323686823248863,-0.032086081802845,-0.035372294485569,-0.049762897193431854,-0.018958717584609985,-0.03288688510656357,0.03098059818148613,0.002325129695236683,0.043374203145504,0.05749038979411125,-0.01576545648276806,0.030282361432909966,-0.058051370084285736,0.045627936720848083,0.03397437185049057,0.07855794578790665,-0.00854390487074852,0.0192900151014328,-0.005107102449983358,0.005452067591249943,0.03493224084377289,-0.023485615849494934,-0.018155142664909363,0.09714167565107346,0.05492883548140526,0.0020865413825958967,0.07412885874509811,0.015221827663481236,0.0013697341782972217,-0.014454801566898823,0.01996663399040699,-0.008419462479650974,0.04846552386879921,-0.07767198979854584,-0.0063760001212358475,-0.011679559014737606,-0.01808333583176136,-0.06685180962085724,-0.01023340318351984,0.0321294367313385,-0.008592646569013596,-0.02382012829184532,0.01571645773947239,0.05041308328509331,-0.015795890241861343,0.014192408882081509,0.09550142288208008,-0.04484974220395088,0.03798063099384308,0.02725244127213955,0.07233721017837524,0.015576331876218319,-0.02100403420627117,0.04677051678299904,1.2254191571051447e-33,0.06222805380821228,0.009861070662736893,0.034060876816511154,0.04877049848437309,0.02086508646607399,0.011617546901106834,-0.12815317511558533,-0.028396617621183395,0.0074264779686927795,-0.029923774302005768,0.02889021672308445,-0.009474175982177258,0.07629601657390594,-0.01823022961616516,0.028196731582283974,0.031869661062955856,0.024760808795690536,-0.04378833994269371,-0.024725385010242462,-0.019956272095441818,-0.04921071231365204,-0.12955662608146667,0.030149731785058975,0.025827916339039803,-0.0012670382857322693,0.021963823586702347,0.026076164096593857,-0.057183630764484406,0.04749080911278725,0.005214658100157976,-0.004600163549184799,0.02087108977138996,0.04403458535671234,-0.04656049236655235,0.0206606462597847,0.07042866200208664,-0.03292098268866539,0.027067694813013077,-0.0360531248152256,0.019685709848999977,-0.0824456438422203,-0.010576936416327953,0.006206959951668978,-0.037790458649396896,0.11037769168615341,0.029376454651355743,0.09748856723308563,0.016941962763667107,-0.12543991208076477,0.016701238229870796,-0.15083914995193481,0.03290735185146332,-0.04564208164811134,-0.04790976271033287,-0.027784820646047592,-0.053638480603694916,0.0030555936973541975,0.023699462413787842,-0.014994950965046883,0.039779048413038254,0.05436854064464569,-0.04266243427991867,-0.0001958011562237516,0.027739400044083595,0.08145543187856674,0.01834244094789028,0.011959011666476727,0.018077773973345757,-0.05754198506474495,-0.047479297965765,0.0662546381354332,0.07095329463481903,0.03390625864267349,0.0779409110546112,-0.029006781056523323,-0.024799158796668053,0.09144213050603867,0.013593864627182484,0.01727125607430935,0.026006072759628296,-0.026112239807844162,0.06689339131116867,-0.08873794227838516,0.023933129385113716,0.05195401608943939,-0.015108962543308735,0.035924024879932404,-0.08253870904445648,-0.028269844129681587,-0.07441012561321259,-0.03616764768958092,0.029924878850579262,0.08270867168903351,-0.0724552571773529,-0.02294483408331871,-1.5324332104494751e-33,0.051539842039346695,-0.01687687262892723,0.07654830813407898,-0.06812426447868347,0.05671984702348709,-0.030877670273184776,0.08491726964712143,0.04693715274333954,-0.008819255977869034,0.0879695788025856,-0.09130557626485825,-0.0018679173663258553,0.13779513537883759,0.016955971717834473,0.01639704406261444,-0.04615364223718643,0.10842639952898026,0.021108776330947876,-0.03574906289577484,-0.022830810397863388,-0.030786404386162758,0.03628977760672569,-0.029895946383476257,-0.10004736483097076,-0.04080621898174286,0.0039918976835906506,0.006258391309529543,-0.058019500225782394,-0.09057461470365524,-0.03732797130942345,0.040667980909347534,0.11462512612342834,-0.10470569878816605,0.0038033612072467804,-0.04644304886460304,0.07628700137138367,-0.032154303044080734,0.02297441102564335,-0.07258705794811249,-0.05244225636124611,-0.012674895115196705,0.02271883375942707,0.01807030662894249,-0.050453197211027145,-0.012882315553724766,0.035176586359739304,-0.005072909872978926,0.035548385232686996,-0.05296725407242775,-0.07358163595199585,0.046425193548202515,0.015361307188868523,-0.044160325080156326,-0.05367594584822655,0.060296136885881424,0.0014270214596763253,-0.05784491077065468,-0.025579459965229034,0.0003249345172662288,-0.058415185660123825,-0.061073239892721176,0.004012641031295061,-0.01125735230743885,0.03413286805152893,0.07406476140022278,-0.0537765733897686,-0.053568799048662186,0.13313157856464386,-0.003755565732717514,0.07621867954730988,0.009952216409146786,-0.0731557160615921,-0.03307868540287018,-0.04255921021103859,0.0795455276966095,0.007707801181823015,0.03602351248264313,0.05224083736538887,-0.017840392887592316,-0.02657075971364975,0.093402199447155,0.00014307988749351352,0.01585925742983818,-0.047883134335279465,0.07819037139415741,0.07912947237491608,-0.06847125291824341,-0.012467787601053715,0.050125058740377426,0.0552147775888443,-0.08489581942558289,-0.05969202518463135,-0.005126153118908405,-0.03937825933098793,-0.07361943274736404,-2.9801091372405608e-8,0.05653604120016098,-0.04143727943301201,-0.018352141603827477,-0.019800301641225815,-0.04885775223374367,-0.014845541678369045,0.02371746487915516,0.06710759550333023,-0.0862245261669159,0.06748665124177933,-0.0777183547616005,-0.02915581502020359,0.02962518110871315,0.04682930186390877,0.046251170337200165,0.034172698855400085,0.06951473653316498,0.00025717358221299946,-0.060230523347854614,0.022971170023083687,-0.12219905108213425,-0.013656742870807648,-0.03625255450606346,0.011315158568322659,0.0012584911892190576,0.01378929615020752,-0.014760834164917469,-0.035186152905225754,0.06365332752466202,-0.022545604035258293,-0.08646296709775925,-0.0317276194691658,-0.08182716369628906,0.012057440355420113,-0.028803139925003052,-0.04183044284582138,-0.09078754484653473,-0.0008075531804934144,-0.017482468858361244,0.017351806163787842,-0.01221269927918911,0.05350656062364578,0.06840196251869202,0.06921671330928802,-0.02887239120900631,-0.00734747527167201,-0.007503463886678219,0.02739078551530838,-0.06715170294046402,0.03156305477023125,-0.07489486783742905,0.008241324685513973,0.08393301069736481,0.0017018578946590424,0.037497978657484055,0.0021273295860737562,-0.020230509340763092,0.007926448248326778,0.04002903401851654,0.06678960472345352,0.01808849908411503,-0.06580013036727905,-0.10422947257757187,-0.06007387861609459]},{"text":"I knelt on the grass and kissed the earth and with quivering lips exclaimed, “By the sacred earth on which I kneel, by the shades that wander near me, by the deep and eternal grief that I feel, I swear; and by thee, O Night, and the spirits that preside over thee, to pursue the dæmon who caused this misery, until he or I shall perish in mortal conflict.","book":"1984","chapter":119,"embedding":[-0.005800113081932068,0.10177832096815109,0.0794127881526947,-0.07665187120437622,0.04076675698161125,-0.016190649941563606,0.05881370231509209,-0.02774699032306671,0.08283401280641556,-0.006829171907156706,-0.08100461214780807,-0.03735467791557312,-0.014834784902632236,-0.03480839356780052,-0.0021368293091654778,0.05455785244703293,-0.15478703379631042,0.057997073978185654,-0.01979110948741436,-0.0018051243387162685,0.025668177753686905,0.13301944732666016,0.011843046173453331,0.024392515420913696,-0.019849678501486778,0.05357947200536728,0.03510954976081848,0.024923929944634438,0.0472557470202446,-0.033434998244047165,-0.023614780977368355,-0.07027051597833633,0.04134921729564667,0.01160153467208147,-0.05153694376349449,0.06818254292011261,0.004532639868557453,-0.08274970948696136,0.04782633110880852,0.01726566255092621,0.011054533533751965,0.020061859861016273,-0.019581712782382965,-0.019476044923067093,-0.02137267217040062,0.019329339265823364,-0.05143499746918678,0.0148692037910223,0.022269224748015404,-0.015263433568179607,0.0600174143910408,-0.040840040892362595,0.024719858542084694,0.019051047042012215,-0.047730084508657455,0.042349349707365036,0.037356823682785034,0.00759159866720438,0.021180303767323494,-0.024289105087518692,0.017142051830887794,-0.00723708001896739,0.041984863579273224,0.07214806228876114,0.000017649868823355064,-0.06923867017030716,0.07652518898248672,-0.04767193645238876,-0.08841775357723236,0.08418029546737671,-0.044747140258550644,-0.04658540338277817,-0.012424647808074951,-0.0621393583714962,-0.07835586369037628,-0.015203389339148998,-0.016292497515678406,-0.0653168112039566,0.015525932423770428,-0.06780892610549927,0.021838296204805374,0.06221511587500572,-0.007149356883019209,0.08600001037120819,-0.04999298229813576,-0.03566089645028114,0.08212203532457352,0.0012210649438202381,0.09811099618673325,-0.033636730164289474,-0.018600041046738625,-0.09017802774906158,-0.09611005336046219,0.09410730004310608,-0.022772807627916336,0.040981557220220566,0.053688034415245056,0.01426723226904869,-0.040847763419151306,0.08271002024412155,0.0482417456805706,0.00944779347628355,-0.07670140266418457,0.024382364004850388,0.00422899704426527,-0.047446176409721375,-0.1469271332025528,-0.07001518458127975,-0.026000196114182472,-0.017934493720531464,-0.001669075689278543,-0.08485289663076401,0.007185261230915785,0.000046002136514289305,-0.014477251097559929,0.03867439925670624,0.01984555833041668,-0.027867689728736877,-0.03250357136130333,0.05761508271098137,-0.00042032517376355827,0.02612082101404667,0.019082877784967422,0.11150027066469193,0.011195977218449116,-0.029819846153259277,-0.007326818536967039,-2.589951642145376e-33,0.07115651667118073,-0.05567297339439392,-0.030637172982096672,0.011468629352748394,0.04727452993392944,0.014273224398493767,-0.07329894602298737,0.052016109228134155,-0.04452953115105629,-0.031677424907684326,-0.024542592465877533,-0.035316143184900284,0.032375287264585495,-0.05183784291148186,-0.0725758746266365,-0.01361170131713152,0.028771132230758667,-0.04793067276477814,0.06264031678438187,-0.02979496866464615,-0.0046751792542636395,-0.02784212864935398,0.01517187338322401,0.0306108295917511,-0.05072716251015663,-0.008366699330508709,0.03398428484797478,0.011940806172788143,0.07587001472711563,0.029244298115372658,0.02451588399708271,-0.04323714226484299,0.09345397353172302,-0.026621980592608452,0.10097312927246094,0.026686696335673332,-0.034758731722831726,0.018216663971543312,-0.03138170391321182,0.02653356082737446,-0.018707096576690674,0.006989252287894487,0.015559602528810501,-0.0791139230132103,-0.0003799914557021111,-0.012483181431889534,-0.03291359916329384,0.04199333116412163,0.0018465613247826695,0.03162950277328491,-0.006436409894376993,0.04539351165294647,0.07039734721183777,-0.054534006863832474,0.025054102763533592,-0.018366888165473938,-0.013683769851922989,-0.003136351704597473,-0.035348713397979736,0.03498171269893646,-0.07410744577646255,-0.018596753478050232,0.049219802021980286,-0.04449978098273277,0.037107955664396286,-0.07135265320539474,-0.012630272656679153,-0.017619388177990913,-0.03979245200753212,-0.10176169127225876,-0.08280330896377563,0.008105255663394928,0.013598664663732052,0.027033833786845207,-0.0492013543844223,-0.02980043552815914,0.04026582092046738,-0.002148495987057686,-0.03671179339289665,-0.0248578954488039,-0.025891238823533058,-0.02206280827522278,-0.08281447738409042,0.00508086709305644,0.03729846701025963,-0.06263671815395355,0.032222408801317215,-0.11479414999485016,-0.04472075402736664,0.04280806705355644,-0.04460429400205612,0.06991856545209885,0.07516622543334961,-0.13377134501934052,-0.07324356585741043,2.8608733812269063e-34,-0.03098471462726593,0.012382052838802338,-0.0499303974211216,0.09815827757120132,0.02261125110089779,-0.033140916377305984,-0.06221335008740425,0.08006013929843903,-0.012076098471879959,0.044969022274017334,0.014407514594495296,0.04638085141777992,0.019164253026247025,0.009827393107116222,0.021370023488998413,-0.03923678398132324,-0.012831807136535645,0.07058090716600418,-0.026358982548117638,0.016001975163817406,0.014946538023650646,0.020648911595344543,0.015033161267638206,-0.06803573668003082,-0.012966136448085308,0.055815573781728745,0.14141589403152466,0.03558414429426193,-0.05243951827287674,-0.033597055822610855,0.1431950479745865,-0.019698740914463997,-0.10971991717815399,0.045099250972270966,0.03543173894286156,0.038307562470436096,0.10492920130491257,0.002075816271826625,-0.052839815616607666,-0.11012210696935654,0.04391961172223091,-0.0003377433167770505,0.059880875051021576,0.006578381173312664,-0.018431004136800766,-0.04600319266319275,-0.041947659105062485,0.08084074407815933,-0.022420406341552734,-0.009832441806793213,-0.03514688089489937,0.017430897802114487,0.04183448851108551,0.011348232626914978,0.041661348193883896,-0.06879808008670807,-0.04904056340456009,-0.012356926687061787,-0.01314365491271019,-0.00006766992737539113,-0.028214193880558014,0.03702620416879654,-0.06272263824939728,0.05355021357536316,0.03309864550828934,0.009362525306642056,-0.10867633670568466,0.06807128340005875,-0.06197289377450943,0.13940779864788055,-0.016258062794804573,-0.00496059050783515,-0.074888214468956,0.01322948094457388,0.07770747691392899,0.002201634692028165,0.07910200208425522,-0.03842040151357651,-0.021847926080226898,-0.014148008078336716,0.013370848260819912,-0.012687976472079754,-0.020731495693325996,0.043401945382356644,0.02921121194958687,-0.06650739908218384,-0.07620326429605484,-0.001167181064374745,-0.0482618473470211,0.0041694724932312965,-0.04442142695188522,0.011932888068258762,0.004867105279117823,-0.07474121451377869,0.114596888422966,-4.16458938445885e-8,-0.002283447189256549,-0.04301788657903671,0.0020301826298236847,0.010658102110028267,0.09562492370605469,-0.03585716336965561,0.1310339868068695,-0.04609287157654762,-0.06769029051065445,0.06816243380308151,-0.007940786890685558,0.05600007623434067,0.062331244349479675,-0.008631416596472263,0.05487676337361336,0.03446998447179794,0.02381259761750698,-0.040537092834711075,-0.01263815350830555,-0.025930389761924744,0.0008775396272540092,0.014322423376142979,0.005248367786407471,-0.09382441639900208,0.03442199155688286,-0.02457619458436966,0.009229752235114574,-0.010031159035861492,-0.12267736345529556,0.008598330430686474,0.09009422361850739,-0.0005385023541748524,-0.06088363006711006,-0.03812647610902786,-0.0619673989713192,-0.026664944365620613,-0.0805693119764328,-0.01999235711991787,0.02832512930035591,-0.013239786028862,-0.002991300541907549,0.11645727604627609,0.03449239209294319,0.0035858622286468744,0.015370863489806652,-0.014379361644387245,0.0560622364282608,0.02491709031164646,0.005618353374302387,0.06745471805334091,-0.08136846125125885,-0.00047353532863780856,0.08632473647594452,0.03652138262987137,-0.006500511430203915,-0.059154510498046875,-0.004536062479019165,0.041215766221284866,-0.058482587337493896,0.03540617227554321,0.04660835862159729,-0.037421513348817825,-0.01776624470949173,-0.07354595512151718]},{"text":"Guided by a slight clue, I followed the windings of the Rhone, but vainly.","book":"1984","chapter":120,"embedding":[0.007621430791914463,0.09600146114826202,0.022062398493289948,0.012216378934681416,-0.01469888910651207,-0.029059313237667084,0.002820983761921525,0.01313802134245634,-0.052278030663728714,-0.05932353064417839,0.01972915232181549,0.01516443770378828,0.01369949709624052,0.03674120828509331,-0.0743231549859047,0.01787245087325573,-0.03914531692862511,-0.06109299510717392,0.013262354768812656,0.008259071968495846,-0.018196536228060722,0.10338442027568817,0.015509646385908127,0.035573408007621765,0.03896257281303406,0.06700865179300308,-0.03778139501810074,0.07130208611488342,0.00420265132561326,-0.062120117247104645,-0.010387022979557514,0.027479682117700577,-0.22316239774227142,-0.06680547446012497,0.03720792755484581,-0.009746050462126732,-0.02302771992981434,-0.033692099153995514,0.007224014960229397,0.06939755380153656,0.058589279651641846,0.013480953872203827,0.056256696581840515,0.011350758373737335,-0.02740185149013996,0.048631202429533005,-0.0014466037973761559,0.057012949138879776,0.04533299058675766,-0.022764282301068306,0.059852954000234604,-0.08190994709730148,-0.045676421374082565,0.0006242032395675778,-0.061098501086235046,0.10029730945825577,-0.006876000203192234,-0.01185560505837202,-0.007407259661704302,0.007005204912275076,0.02555922605097294,0.0468057356774807,-0.08220989257097244,0.06634295731782913,-0.05404375120997429,-0.0037146960385143757,-0.029993552714586258,-0.04291260242462158,-0.014977135695517063,0.04694008827209473,0.007771285716444254,-0.04409734159708023,-0.07213064283132553,-0.006164296064525843,0.06672636419534683,-0.04465623199939728,0.02941146492958069,-0.03572988882660866,-0.02686319127678871,-0.10418447852134705,-0.10917825251817703,0.007578190416097641,-0.0272663701325655,0.09829282015562057,0.07564187794923782,0.0006827197503298521,0.07831677049398422,-0.043102603405714035,0.032758984714746475,-0.029158219695091248,0.02986617013812065,-0.10419094562530518,-0.09446880966424942,-0.013054557144641876,0.030786629766225815,0.04596821963787079,0.024082288146018982,0.10729755461215973,-0.008794715628027916,0.01965910941362381,0.014750600792467594,-0.05991602689027786,-0.03669843077659607,-0.012968594208359718,-0.049544669687747955,0.05836033448576927,-0.06911878287792206,0.03419176861643791,-0.022817490622401237,-0.12492123991250992,-0.037034012377262115,-0.002589718671515584,0.08776909112930298,-0.035130638629198074,0.0320906937122345,-0.007305431645363569,0.01796170137822628,-0.012748814187943935,-0.059968024492263794,0.06132884696125984,0.007207552902400494,0.03246883675456047,-0.014382668770849705,0.04889834299683571,-0.07617798447608948,0.06516821682453156,0.009271950460970402,-6.0774604447267565e-33,-0.018553592264652252,0.0376489982008934,0.06067311763763428,0.0809333398938179,0.03361624851822853,-0.017469234764575958,-0.06089127063751221,0.04367910325527191,-0.056061264127492905,0.039792053401470184,-0.009061312302947044,0.011401986703276634,-0.11609941720962524,-0.0012734633637592196,-0.027558114379644394,-0.015803636983036995,0.04484717175364494,-0.015786996111273766,-0.0668192058801651,-0.07284919172525406,0.02882249653339386,0.044274330139160156,-0.0006401740829460323,-0.06840524077415466,-0.009493677876889706,-0.004788026679307222,0.008662814274430275,0.009100308641791344,0.007945635356009007,0.06764138489961624,0.024105364456772804,0.02232338860630989,-0.008671914227306843,-0.038766175508499146,-0.03537267446517944,0.08211682736873627,-0.04327891767024994,-0.09219077229499817,-0.038756273686885834,0.03220214322209358,0.07037472724914551,0.028757134452462196,-0.020480569452047348,0.08032001554965973,0.04546191543340683,0.07837317883968353,-0.001523842685855925,0.06193377077579498,0.017382754012942314,0.012934880331158638,-0.015675542876124382,0.010416136123239994,0.04874275624752045,0.05432765185832977,0.03981264680624008,0.062289781868457794,-0.0025819693692028522,0.01623753271996975,-0.05237368866801262,-0.019223831593990326,-0.022061815485358238,0.10947912186384201,-0.02903297170996666,0.04341554269194603,0.011015988886356354,-0.013413317501544952,0.047186437994241714,0.02998357266187668,0.039138853549957275,-0.06449546664953232,-0.1373235434293747,-0.011487683281302452,0.0008137832046486437,0.02088570035994053,0.052748434245586395,0.012357006780803204,-0.07001826167106628,-0.0037389658391475677,0.09227205812931061,-0.06157754361629486,-0.08817537128925323,0.00007656893285457045,-0.08031715452671051,0.006216570269316435,0.05010463297367096,-0.0393318273127079,0.09401698410511017,-0.08108117431402206,-0.00881152506917715,-0.029665498062968254,-0.023097388446331024,0.06515160948038101,0.06638891249895096,-0.028769532218575478,-0.09551433473825455,4.3190942813133606e-33,0.042814016342163086,-0.03631022572517395,0.11689960956573486,0.05499478429555893,0.014133869670331478,-0.03128095343708992,0.05198889970779419,0.003599948948249221,0.026728995144367218,0.024388698861002922,0.04382771998643875,0.010133101604878902,-0.014085378497838974,-0.021534569561481476,0.0417303591966629,-0.06487563252449036,0.021114660426974297,0.0022626216523349285,0.0075828381814062595,0.03771654888987541,-0.047897715121507645,0.005579445045441389,-0.02543213777244091,-0.03919395059347153,-0.02374115400016308,0.041701789945364,0.04269041493535042,-0.10551973432302475,-0.04624519869685173,-0.03182351216673851,-0.007808614522218704,-0.04859315603971481,-0.0014374617021530867,-0.0858611911535263,-0.06938664615154266,0.11627984791994095,0.08492069691419601,0.005079265683889389,-0.0847909227013588,-0.02859429083764553,-0.03413556516170502,-0.004103546496480703,0.017853762954473495,0.09114342927932739,-0.039281636476516724,-0.007317197043448687,-0.02148386277258396,-0.014011898078024387,-0.03906877338886261,0.06016174703836441,0.023271508514881134,-0.009293475188314915,0.003295962233096361,0.04641710966825485,0.028424620628356934,-0.04245799407362938,0.025135492905974388,-0.027478503063321114,0.006043463945388794,0.012122269719839096,-0.04270734637975693,0.04220825061202049,-0.07555865496397018,-0.06166272237896919,0.058594636619091034,-0.06152806803584099,-0.05436428263783455,0.027277329936623573,0.02656482718884945,-0.03869415074586868,-0.054849445819854736,0.05529750511050224,-0.015499652363359928,-0.052740469574928284,0.06952781975269318,-0.09379835426807404,-0.008610420860350132,-0.04160486161708832,-0.02897186391055584,-0.02812308631837368,-0.05305575951933861,-0.08041470497846603,0.013539749197661877,-0.022686203941702843,0.04251428693532944,-0.0696164146065712,-0.027260659262537956,-0.06046634912490845,0.0639331266283989,0.010341936722397804,0.04392833262681961,0.026051102206110954,-0.009906715713441372,-0.015593483112752438,0.02183450013399124,-2.2603446225843982e-8,0.015825504437088966,0.12197195738554001,0.055960606783628464,0.06156473606824875,0.019215866923332214,-0.08414163440465927,0.030970165506005287,0.12677878141403198,-0.08957468718290329,0.02787698246538639,0.014485743828117847,0.09242276102304459,0.10651440918445587,0.03351116180419922,0.0684032067656517,-0.006761421915143728,-0.03983530029654503,-0.05957372114062309,-0.06833462417125702,-0.05244692042469978,0.03519638627767563,0.09679324179887772,-0.05955096334218979,-0.056684259325265884,0.010498185642063618,-0.03203806281089783,-0.001220540376380086,-0.03636712580919266,-0.013664640486240387,0.005541678983718157,0.01816595159471035,0.0014003458200022578,-0.07313644140958786,0.03151834011077881,-0.09033422917127609,0.04910710081458092,-0.026236677542328835,0.04126327857375145,0.03554896265268326,-0.025043951347470284,0.017182908952236176,0.03248640149831772,0.02642662823200226,0.08089660108089447,0.04826384782791138,0.025841081514954567,0.07666558027267456,0.018747881054878235,-0.03744317218661308,-0.008257224224507809,0.0034789973869919777,0.05052116513252258,0.08188386261463165,0.08736027032136917,0.0001687508192844689,-0.0255097895860672,0.0017944963183254004,-0.007246750872582197,-0.13575132191181183,0.014590547420084476,0.04057208448648453,-0.024956699460744858,-0.0017912450712174177,-0.012217395938932896]},{"text":"I followed, when I could, the courses of the rivers; but the dæmon generally avoided these, as it was here that the population of the country chiefly collected.","book":"1984","chapter":120,"embedding":[0.06436443328857422,0.06033950299024582,0.04447115585207939,-0.01879033073782921,0.04393656924366951,-0.03466324880719185,-0.021601907908916473,-0.037096694111824036,-0.012079802341759205,-0.016563083976507187,0.03254830464720726,-0.023797908797860146,-0.024906322360038757,-0.0407789908349514,-0.024302471429109573,-0.02943938598036766,-0.06498206406831741,-0.018945613875985146,0.04646660387516022,0.00794899370521307,-0.003988224547356367,0.09317246079444885,0.048136841505765915,-0.037190794944763184,0.02976531721651554,0.030004847794771194,0.0625528022646904,0.054849300533533096,0.0320216529071331,0.011750548146665096,0.0010168784065172076,0.03604194149374962,-0.017483577132225037,-0.03159007057547569,-0.0330585315823555,0.1053357645869255,0.002769806422293186,-0.04052550345659256,0.009449440985918045,0.09270057827234268,-0.0341084748506546,0.06260263919830322,0.048983681946992874,-0.0027227711398154497,-0.03204350546002388,0.06867964565753937,-0.04460729658603668,-0.020299525931477547,-0.057872261852025986,0.02938138321042061,0.05985815078020096,-0.011564194224774837,-0.03383723273873329,0.020310061052441597,0.023852653801441193,-0.01151080708950758,-0.04548158124089241,0.05091618746519089,-0.06571705639362335,-0.04079170897603035,-0.05531354621052742,-0.021185601130127907,-0.08241484314203262,-0.014059720560908318,-0.0541248582303524,-0.01069571077823639,-0.03233279660344124,0.13588790595531464,0.06878559291362762,0.061983872205019,0.023119768127799034,0.04000299051403999,-0.057048290967941284,0.055009979754686356,-0.017766328528523445,-0.07352407276630402,-0.03819076716899872,-0.0362883135676384,0.011468141339719296,-0.08356086909770966,-0.02152758464217186,0.05661136284470558,0.002111333655193448,0.008026201277971268,0.025150608271360397,0.012681366875767708,0.08303969353437424,-0.0512334369122982,0.0636550635099411,-0.06872037053108215,0.11584289371967316,-0.0809292420744896,0.00433505792170763,0.04592827707529068,0.002117292257025838,0.011911790817975998,0.015857093036174774,0.05654655396938324,0.05343864858150482,0.041606321930885315,0.030363017693161964,-0.019691534340381622,-0.02566910721361637,0.0448082871735096,-0.08337665349245071,-0.06262242794036865,-0.08544787764549255,-0.011599911376833916,0.038821324706077576,-0.04182151332497597,-0.05290991812944412,-0.0009390507475472987,0.009400620125234127,0.00935078039765358,-0.011216599494218826,-0.025064624845981598,0.025702225044369698,-0.05355364829301834,0.046242110431194305,0.05320899933576584,-0.05568079650402069,0.06031873822212219,-0.013635128736495972,0.03230580314993858,0.04418497532606125,0.06630072742700577,0.00007195226498879492,-7.5171747015452e-33,0.014233417809009552,-0.06819067150354385,0.0018978309817612171,0.04798779636621475,-0.03993003070354462,-0.020558899268507957,-0.04899461939930916,0.03961324691772461,0.025730526074767113,-0.08993417024612427,0.04311980679631233,-0.023205596953630447,-0.07097237557172775,0.014130492694675922,0.055706851184368134,-0.055015869438648224,0.05320923402905464,-0.028426339849829674,0.012972446158528328,0.04159640893340111,0.057217326015233994,-0.07570137083530426,0.06865641474723816,-0.05241446942090988,-0.009888830594718456,-0.02329082041978836,0.06359530985355377,0.049728889018297195,0.13380533456802368,0.05618046596646309,0.049501024186611176,-0.08149176836013794,0.023325130343437195,-0.05031006410717964,0.043296679854393005,0.08488579839468002,-0.0011364237871021032,-0.010930325835943222,0.008594918064773083,0.019170204177498817,-0.00004463524237507954,-0.018351944163441658,0.06557825952768326,0.03235151246190071,0.008522016927599907,0.039650119841098785,0.04742513224482536,0.021038822829723358,-0.05549168586730957,-0.037189364433288574,-0.018024122342467308,-0.027536092326045036,0.03927486762404442,-0.06937193125486374,0.029074668884277344,-0.057698868215084076,-0.04414492845535278,0.05810369551181793,-0.07843154668807983,0.03743502497673035,-0.03285549581050873,0.041962604969739914,0.11946260929107666,0.055107828229665756,0.0786735936999321,0.020908351987600327,-0.021640267223119736,0.00666649779304862,0.021042969077825546,-0.09381905198097229,-0.08565855026245117,-0.0021665527019649744,-0.03968345746397972,0.07664144039154053,0.018090082332491875,0.0760020911693573,0.024860594421625137,-0.04997751861810684,-0.003443686291575432,-0.060810621827840805,-0.06920690834522247,-0.06718504428863525,-0.1628139168024063,0.1071200966835022,0.09584830701351166,-0.011658675968647003,0.09222574532032013,-0.13041125237941742,0.06934728473424911,-0.04319383576512337,-0.017874518409371376,-0.02115212380886078,-0.05596785247325897,-0.06434221565723419,-0.043394751846790314,3.374060373415583e-33,0.002722030971199274,0.029275724664330482,-0.008001977577805519,0.01440817303955555,-0.017454497516155243,0.02176530286669731,0.05321091413497925,0.0442798025906086,0.09438853710889816,0.04708785563707352,-0.0800313949584961,-0.009497635997831821,-0.023563282564282417,-0.0031420376617461443,-0.0001240289129782468,-0.017617853358387947,-0.015786290168762207,-0.005207901354879141,-0.003269812325015664,0.0180374588817358,-0.08495651930570602,-0.08712030202150345,0.02022610232234001,-0.04065389931201935,-0.04868531972169876,0.049564212560653687,-0.041965462267398834,-0.06275804340839386,-0.04081592336297035,-0.07268520444631577,0.10000474750995636,-0.052534621208906174,-0.01066846027970314,-0.05653218924999237,-0.06393174082040787,0.13568374514579773,0.10012469440698624,0.06638825684785843,-0.018093694001436234,0.07492180913686752,-0.012858073227107525,-0.015613865107297897,0.0403280071914196,0.012346041388809681,-0.042049504816532135,0.0014866753481328487,0.006475202739238739,0.03561898320913315,-0.02178424410521984,0.002250013407319784,-0.016942262649536133,0.02302921935915947,0.013537047430872917,-0.01712385192513466,0.03049282170832157,-0.025641974061727524,0.04941219091415405,0.017224084585905075,0.0030407311860471964,-0.023900106549263,-0.08883873373270035,0.03776291385293007,-0.09157821536064148,-0.025307362899184227,0.014878274872899055,-0.027802476659417152,-0.0845121368765831,0.07250338792800903,0.02412918210029602,-0.09223779290914536,-0.03634248301386833,-0.028307253494858742,-0.06616078317165375,-0.11086717993021011,-0.016724050045013428,-0.003655398730188608,0.006314690224826336,0.028055282309651375,-0.006622515618801117,-0.007152356207370758,-0.02363128401339054,-0.028931789100170135,-0.021861668676137924,0.004229688085615635,0.04845587909221649,-0.010819045826792717,0.004014268051832914,-0.10452792048454285,-0.016444042325019836,-0.005020353943109512,0.038218021392822266,0.0017161627765744925,-0.027535654604434967,-0.011903151869773865,-0.01356008555740118,-3.0495289848886387e-8,-0.02458924427628517,0.009831171482801437,0.039027389138936996,0.06685449182987213,0.07593274116516113,-0.10823533684015274,0.02651107870042324,0.09405017644166946,-0.06883402913808823,0.09233229607343674,-0.04664820805191994,0.06673439592123032,-0.00999746099114418,-0.06453236937522888,0.1026701033115387,0.0030702301301062107,0.04168347269296646,-0.014627032913267612,-0.0811251550912857,0.024064168334007263,0.02871352806687355,0.027654336765408516,-0.08260475099086761,-0.0627736821770668,-0.03289787843823433,-0.030588295310735703,0.060544904321432114,-0.05025779828429222,0.04069332033395767,-0.027684176340699196,0.0581933930516243,0.04728920757770538,-0.051748763769865036,-0.014458127319812775,0.0012550157262012362,0.010515627451241016,-0.09750167280435562,-0.01750231347978115,-0.01874750666320324,-0.07695844024419785,0.018326615914702415,-0.04645080864429474,0.0451667420566082,0.10372937470674515,0.08234342187643051,0.022156326100230217,-0.04537857696413994,0.0344848558306694,0.031077992171049118,-0.028821071609854698,-0.11912062764167786,0.0023292622063308954,0.08582976460456848,0.0684339627623558,0.03883679583668709,-0.016228005290031433,-0.033208344131708145,-0.09034290164709091,-0.06144607812166214,-0.03978874906897545,0.014560424722731113,0.012862835079431534,-0.039466142654418945,0.02309863455593586]},{"text":"At such moments vengeance, that burned within me, died in my heart, and I pursued my path towards the destruction of the dæmon more as a task enjoined by heaven, as the mechanical impulse of some power of which I was unconscious, than as the ardent desire of my soul.","book":"1984","chapter":121,"embedding":[-0.02052554115653038,0.12328042834997177,0.03397614136338234,-0.03182924911379814,0.053032707422971725,-0.023548459634184837,0.07378093153238297,-0.001505708904005587,0.1079951822757721,0.005000666715204716,-0.019284376874566078,-0.025490300729870796,0.017308562994003296,-0.02984705939888954,0.033243242651224136,-0.06007171794772148,-0.029094409197568893,0.03422724828124046,-0.06779419630765915,0.05566931515932083,0.04779979959130287,0.09262920916080475,-0.0023400112986564636,-0.029782189056277275,-0.01825086772441864,0.08483772724866867,0.01576516591012478,0.020626623183488846,-0.010199807584285736,-0.030771221965551376,0.0013206606963649392,-0.08443615585565567,-0.05562332645058632,0.009178297594189644,-0.019285127520561218,0.08687401562929153,-0.04758729040622711,-0.06650573015213013,0.02687928080558777,-0.012820765376091003,-0.03408849984407425,0.04296649992465973,-0.04669531434774399,0.03513747453689575,-0.03515222296118736,-0.0021718363277614117,-0.08314673602581024,-0.01388618815690279,-0.018815670162439346,-0.0199584998190403,-0.022750956937670708,-0.02513018809258938,-0.008860889822244644,0.050066255033016205,-0.004032054450362921,0.018810663372278214,-0.013636598363518715,0.047586310654878616,0.010843755677342415,-0.077390156686306,-0.020267462357878685,0.03890296071767807,0.053964365273714066,-0.013740689493715763,0.012924262322485447,-0.06074029952287674,0.13034197688102722,-0.020750172436237335,-0.033233314752578735,0.06721372157335281,0.03727082163095474,-0.0718405544757843,-0.00762086920440197,-0.051054030656814575,-0.07397749274969101,-0.049651507288217545,-0.018932143226265907,-0.09996005147695541,0.014918956905603409,-0.03256030008196831,0.04822167009115219,0.012402171269059181,-0.06391418725252151,0.05425608530640602,-0.07167461514472961,0.02800147235393524,0.08434229344129562,-0.030586067587137222,0.1227496936917305,0.0030952540691941977,0.002208955120295286,-0.047843657433986664,-0.06282000243663788,0.05024787411093712,0.015761464834213257,-0.007388841826468706,0.002484724158421159,0.05286014825105667,-0.02182142622768879,0.03794771805405617,0.029357250779867172,-0.010173208080232143,-0.13560020923614502,0.006138233933597803,0.03379083797335625,-0.05515511333942413,-0.09284330159425735,-0.00993994902819395,-0.008550221100449562,-0.037247829139232635,0.011252599768340588,-0.12561042606830597,0.05646408349275589,-0.03244208171963692,0.03189839422702789,0.07598993927240372,-0.06505613029003143,-0.02329992689192295,-0.00955365039408207,0.06158455088734627,0.02332821674644947,0.02313181571662426,-0.009914576075971127,0.0638701543211937,-0.07922518998384476,-0.0636577159166336,0.021519910544157028,-2.1306138165791282e-33,-0.004554090555757284,-0.012527049519121647,-0.022532187402248383,-0.046161435544490814,0.030902745202183723,-0.09748783707618713,-0.08209212124347687,0.12125254422426224,0.024797024205327034,-0.02777612954378128,-0.042805712670087814,0.004244179464876652,-0.03880646824836731,0.043229665607213974,-0.04303833842277527,-0.012658968567848206,-0.001698954845778644,-0.006408063229173422,0.06496398150920868,-0.04259892925620079,-0.03307902067899704,0.061099693179130554,-0.0036095911636948586,-0.015435995534062386,-0.0499253012239933,-0.0030000200495123863,-0.002052554627880454,0.032448604702949524,-0.0009934165282174945,0.014816707000136375,0.00920358207076788,-0.040302079170942307,0.07004760205745697,-0.014396268874406815,0.0438607819378376,0.07879237830638885,-0.05683097243309021,0.03744522109627724,-0.025772342458367348,0.05379101261496544,-0.06358113139867783,0.02732561156153679,0.0036326423287391663,-0.05752585455775261,0.01651436649262905,-0.0045928494073450565,-0.008971053175628185,0.02833930216729641,-0.060065168887376785,-0.06237020343542099,-0.010915418155491352,-0.027094794437289238,0.1310235559940338,-0.008916421793401241,0.003800962818786502,0.046390801668167114,-0.006251945160329342,0.021439509466290474,0.028087077662348747,0.037393707782030106,-0.023953206837177277,-0.08193232119083405,0.06722841411828995,0.026692882180213928,-0.02239295095205307,-0.10901723802089691,-0.06235921382904053,-0.08364348113536835,0.023243064060807228,-0.014721664600074291,-0.1071738675236702,0.0016074778977781534,-0.005877099931240082,-0.022576116025447845,0.0035613158252090216,0.0014078350504860282,-0.01041976548731327,-0.04218941926956177,-0.07540709525346756,-0.01595243625342846,-0.04465235769748688,-0.029443778097629547,-0.0604403056204319,0.030248071998357773,0.14097332954406738,0.025468925014138222,0.03457871824502945,-0.18914997577667236,-0.05922072380781174,0.021096844226121902,-0.03287205472588539,-0.02919843979179859,0.03206999599933624,-0.12426669895648956,-0.04732798412442207,-1.1895110189298894e-33,0.006460901349782944,-0.0035191213246434927,-0.016992464661598206,0.11279308795928955,0.014470288529992104,0.013107377104461193,-0.06671937555074692,0.03829589858651161,-0.08007756620645523,0.03176835924386978,-0.0017318334430456161,0.025912487879395485,0.021653642877936363,0.051216017454862595,0.026257064193487167,-0.011322274804115295,0.0330117791891098,0.03029528819024563,-0.06179504096508026,-0.008133221417665482,-0.013503720983862877,0.024142496287822723,-0.022444499656558037,0.015167397446930408,-0.00007707712211413309,0.038993094116449356,0.09792312979698181,0.0032398279290646315,-0.026461217552423477,-0.002224450698122382,0.16318604350090027,-0.014916243962943554,-0.09356685727834702,0.05045671761035919,0.037259720265865326,0.12653671205043793,0.09327810257673264,0.09356620162725449,-0.023647582158446312,-0.1002369225025177,-0.03517182171344757,-0.014119586907327175,0.04284021630883217,0.09811271727085114,0.010037739761173725,-0.09000720828771591,0.0022397416178137064,0.0009556110017001629,0.03762678802013397,0.04779130220413208,-0.040428854525089264,-0.04636063799262047,0.012522253207862377,0.004396818112581968,-0.016604550182819366,-0.08462928980588913,0.03341492637991905,-0.03382256254553795,0.043340981006622314,-0.02179691381752491,-0.015318443067371845,-0.024891678243875504,0.0011579750571399927,0.11295090615749359,0.021822864189743996,-0.00023914870689623058,-0.08197694271802902,0.046447962522506714,-0.04843456670641899,0.025701433420181274,-0.011746256612241268,0.03342870622873306,-0.12323503196239471,0.04254907742142677,0.0007909213309176266,-0.04471900314092636,0.0188306774944067,0.01329917274415493,-0.04580254852771759,0.02531326934695244,-0.04533558338880539,-0.019888365641236305,-0.025687791407108307,0.030724849551916122,-0.03955661132931709,-0.03553324565291405,-0.050849221646785736,-0.0014482729602605104,-0.012793240137398243,-0.0577867217361927,-0.0339781753718853,-0.03298705443739891,0.022390974685549736,-0.041674718260765076,0.01047306228429079,-3.781174129358078e-8,-0.03577960282564163,0.005213747266680002,-0.0010068253614008427,0.07061438262462616,0.047082021832466125,0.0006775427027605474,0.06607349216938019,-0.0041246572509408,-0.05211826413869858,0.042194485664367676,0.0026212683878839016,0.07809589803218842,0.0577714629471302,0.05035927891731262,0.06292513012886047,0.023361634463071823,0.01591656729578972,-0.004838679451495409,0.0030003634747117758,-0.02550048753619194,0.02782326750457287,0.0488896518945694,0.013552472926676273,-0.14622052013874054,-0.008405949920415878,0.0024274573661386967,-0.0018998960731551051,-0.03325745090842247,-0.026672430336475372,0.0069626327604055405,0.06813816726207733,0.03524109348654747,-0.07332567870616913,-0.005345131270587444,-0.08939266949892044,0.013565695844590664,-0.012643028981983662,0.025950506329536438,-0.022038543596863747,-0.015073299407958984,0.04580974951386452,0.05683529004454613,0.010315895080566406,0.016736676916480064,0.030593637377023697,-0.05690478906035423,0.05874135345220566,0.011622165329754353,0.019212733954191208,0.03128066286444664,0.023498207330703735,0.06176043301820755,0.02428736723959446,0.01115009468048811,0.038166437298059464,-0.06211302801966667,-0.04120251163840294,0.06111006438732147,-0.09422259032726288,0.05168713629245758,0.17981640994548798,0.0027466281317174435,-0.03618262708187103,-0.06397546082735062]},{"text":"The triumph of my enemy increased with the difficulty of my labours.","book":"1984","chapter":122,"embedding":[-0.02742042765021324,0.09100601077079773,0.015577229671180248,0.02668095752596855,0.0052230325527489185,0.0585300475358963,0.026251086965203285,0.03536912426352501,-0.08564898371696472,0.02894497662782669,-0.02270476333796978,0.047802723944187164,0.01061775628477335,0.020683925598859787,-0.00216082320548594,0.0024131261743605137,0.02734537050127983,0.042803484946489334,-0.0013209431199356914,-0.04291054233908653,-0.09266409277915955,0.01363423652946949,-0.00829689484089613,0.06785008311271667,-0.02222328446805477,0.05710402503609657,-0.04866332560777664,0.05086242035031319,0.032980918884277344,-0.046814896166324615,-0.03347811847925186,-0.05064283683896065,0.06583335250616074,-0.01300951186567545,0.03414679318666458,-0.022511836141347885,0.011685285717248917,0.02669098973274231,0.03698192164301872,0.013175420463085175,-0.004608337301760912,-0.08523491024971008,-0.00714194355532527,0.013129184022545815,0.012073900550603867,0.01660993881523609,-0.0067469049245119095,0.006833415012806654,0.012320058420300484,-0.006834011059254408,0.017458323389291763,-0.08417125791311264,-0.039957400411367416,-0.033577509224414825,0.010087638162076473,-0.05513996630907059,0.04646223038434982,0.029877496883273125,-0.03385964781045914,0.01258117612451315,-0.08798371255397797,0.01998901553452015,0.012638757936656475,0.044790152460336685,0.020875081419944763,-0.053486064076423645,0.017419615760445595,0.043728940188884735,-0.1135738268494606,0.17044542729854584,0.020283930003643036,-0.005669653881341219,0.02813653089106083,0.02921939641237259,-0.022784626111388206,-0.04235372692346573,0.027090931311249733,-0.009987828321754932,0.018767686560750008,-0.014735020697116852,-0.03227830305695534,0.02903374657034874,-0.05575680360198021,0.05144815519452095,-0.022312458604574203,-0.09220316261053085,0.06920256465673447,-0.058918267488479614,0.07208309322595596,-0.06336052715778351,-0.03337607905268669,-0.05790279805660248,-0.008866086602210999,0.0728900134563446,0.037427060306072235,-0.024570683017373085,-0.04738582670688629,-0.03065006248652935,-0.036213554441928864,0.09163414686918259,-0.049669791013002396,-0.02728457562625408,-0.07935075461864471,0.04032103717327118,0.029852185398340225,-0.012626740150153637,-0.09104287624359131,-0.05415516719222069,-0.053072888404130936,0.00495340209454298,0.0164110716432333,-0.0036373017355799675,0.012591655366122723,0.021679168567061424,0.039431601762771606,0.04373035207390785,-0.09457822144031525,0.006937030702829361,-0.09430650621652603,0.11917948722839355,0.07036270201206207,0.019829530268907547,-0.14962352812290192,-0.02779954858124256,-0.11031412333250046,-0.09639465063810349,0.04708773270249367,-6.237114985429486e-33,0.024951394647359848,-0.03736163675785065,0.002707242965698242,0.1308012753725052,0.02361203171312809,-0.0022081586066633463,-0.0907689779996872,0.061304204165935516,-0.01172620989382267,-0.022306444123387337,-0.030337851494550705,0.04352859407663345,0.02303808182477951,-0.04683264344930649,-0.014711021445691586,-0.0364968404173851,-0.07552812993526459,0.04057970643043518,0.03939984366297722,0.058889683336019516,-0.04633607715368271,-0.0029835051391273737,-0.07193227112293243,0.016769912093877792,0.042889777570962906,-0.015554454177618027,0.024103626608848572,-0.03541768714785576,-0.015471888706088066,0.019446372985839844,0.05126500874757767,-0.00880727544426918,0.006518335081636906,-0.027940435335040092,-0.05280071496963501,0.03358306363224983,-0.02944495528936386,-0.10557552427053452,-0.04754245653748512,0.04953639209270477,-0.04506683349609375,-0.019242269918322563,0.05578260123729706,0.005581474397331476,0.025899875909090042,0.052732087671756744,0.0198256503790617,-0.002582892309874296,-0.03603808954358101,0.016941025853157043,-0.0534442700445652,0.039038095623254776,0.02372346818447113,-0.026093430817127228,0.010383402928709984,-0.015744604170322418,-0.04136241227388382,0.019622523337602615,-0.03847493603825569,-0.0265083909034729,0.009884168393909931,-0.04331407696008682,0.028611203655600548,0.037744831293821335,-0.013092100620269775,-0.012694040313363075,-0.017936380580067635,-0.025881631299853325,0.004208059050142765,0.02940501645207405,-0.12301669269800186,0.0036241370253264904,-0.024141142144799232,-0.10069108754396439,0.027381321415305138,0.003732766257598996,0.05096079409122467,-0.018781227990984917,-0.054266445338726044,-0.12126874178647995,0.00028407113859429955,0.011032206937670708,0.0015525403432548046,-0.0038107673171907663,0.09978462755680084,0.06600191444158554,0.0016455260338261724,-0.10662015527486801,0.04142377898097038,0.050978582352399826,-0.04630632326006889,-0.028439581394195557,0.02808249741792679,0.030480865389108658,-0.07960767298936844,4.209665675485391e-33,0.01407704595476389,-0.06180504336953163,-0.006485823541879654,0.08451445400714874,0.05619914457201958,-0.008515126071870327,0.036920033395290375,0.003934897482395172,-0.1517232358455658,0.10141202807426453,0.03608359768986702,-0.0008057759841904044,-0.018688341602683067,0.017275650054216385,-0.02884143963456154,-0.0968070924282074,-0.0015138047747313976,0.07292231172323227,0.05072461813688278,0.0248907208442688,-0.035480301827192307,0.07058929651975632,0.02615939825773239,-0.11628155410289764,0.030229296535253525,0.06549104303121567,-0.004781023599207401,-0.012210533954203129,0.027540571987628937,-0.03323847055435181,0.022179516032338142,-0.004085632506757975,-0.16431660950183868,-0.010563960298895836,0.041508037596940994,0.10133712738752365,-0.0803167000412941,-0.05262152850627899,-0.01075772475451231,-0.04559303820133209,-0.06189581751823425,0.008732534945011139,0.07819132506847382,0.10844866186380386,0.04318114370107651,-0.06344956904649734,-0.017740603536367416,-0.054113708436489105,0.05099882185459137,0.050966665148735046,0.024800485000014305,0.00793936662375927,0.04226518049836159,0.02519792504608631,0.03026491403579712,-0.013700972311198711,0.016120361164212227,-0.1493888944387436,0.02469569258391857,0.021248571574687958,-0.08645088970661163,0.04599500820040703,-0.05639605596661568,0.11027016490697861,0.02181559056043625,-0.027249803766608238,-0.02878076583147049,0.08782098442316055,0.054424580186605453,0.06830590218305588,-0.052015937864780426,0.01851862296462059,-0.02967294305562973,0.016638755798339844,-0.00531525956466794,-0.01558129582554102,0.002010585507377982,0.0481145940721035,-0.055905092507600784,0.03134464472532272,-0.006121747195720673,-0.03463573753833771,0.0514439195394516,0.002508206060156226,-0.059738487005233765,0.023104947060346603,0.011881927028298378,0.08404194563627243,0.016409533098340034,0.03677396476268768,0.013202512636780739,0.001427274663001299,0.010882697999477386,-0.05747803673148155,0.06026556342840195,-2.1825869112035434e-8,-0.014294766820967197,0.01075365487486124,-0.028293579816818237,-0.020582225173711777,0.06405556201934814,-0.09443826228380203,-0.017865978181362152,-0.0004994404735043645,-0.020950300619006157,0.09326940029859543,-0.02022135630249977,0.04216673970222473,0.07571007311344147,0.10422062128782272,0.03520244359970093,0.05728023499250412,0.08243799954652786,-0.05858510732650757,-0.02437199093401432,-0.0792195051908493,-0.016848431900143623,0.04722275957465172,0.030576670542359352,-0.08389842510223389,-0.07870757579803467,0.045515548437833786,-0.023306164890527725,0.039050083607435226,-0.026330431923270226,0.07656138390302658,0.05211381986737251,0.052998464554548264,-0.051783982664346695,-0.010952120646834373,-0.052598387002944946,0.023609856143593788,-0.029699884355068207,0.0018782124388962984,-0.010275806300342083,-0.03899150714278221,0.02230987511575222,0.06432650238275528,0.08352973312139511,0.03146827965974808,0.009152703918516636,-0.03412853553891182,-0.025073334574699402,0.0024518847931176424,-0.04494355246424675,-0.07889116555452347,0.03562323376536369,0.024355266243219376,0.054395683109760284,0.11374574899673462,0.05272765830159187,0.004113613627851009,-0.0029549391474574804,-0.0033410678151994944,-0.08877275884151459,0.0955435037612915,0.061690669506788254,0.03849642351269722,0.008386754430830479,-0.04804867506027222]},{"text":"A gigantic monster, they said, had arrived the night before, armed with a gun and many pistols, putting to flight the inhabitants of a solitary cottage through fear of his terrific appearance.","book":"1984","chapter":122,"embedding":[0.06158185750246048,0.08839577436447144,-0.015153871849179268,0.14122772216796875,0.030031556263566017,0.0031619619112461805,0.08783910423517227,0.0037553636357188225,-0.04961061850190163,-0.010201550088822842,0.02549656108021736,0.018699558451771736,0.07120718061923981,-0.03155987337231636,-0.03903532773256302,-0.00040712146437726915,0.04493268206715584,-0.03023405186831951,0.0012965068453922868,0.0020363677758723497,0.028716880828142166,0.043970540165901184,0.021630199626088142,0.06642920523881912,0.02858460135757923,-0.03572077676653862,0.030612580478191376,-0.007732253056019545,0.018052224069833755,-0.11308491975069046,-0.010660349391400814,0.000992730027064681,-0.04932713136076927,0.04436752572655678,0.024818209931254387,0.05012768507003784,0.06976445019245148,-0.06166296824812889,0.07255254685878754,-0.019033456221222878,-0.010452480055391788,0.03620559349656105,0.05002414062619209,-0.0031110334675759077,-0.1172768622636795,-0.046172697097063065,-0.10440486669540405,0.009602644480764866,0.06943909078836441,-0.06324353069067001,-0.04793133959174156,-0.04038798063993454,-0.023098593577742577,-0.09701164811849594,0.03776289150118828,-0.06824082881212234,0.05309544503688812,-0.059650495648384094,0.02053709886968136,-0.061585623770952225,0.002940078731626272,0.04809534549713135,0.07213746756315231,0.049361344426870346,0.02926534228026867,-0.06200404465198517,-0.01565849781036377,-0.037484247237443924,-0.04263721778988838,0.09764719754457474,0.014232775196433067,0.02109178714454174,0.013060119934380054,-0.043089479207992554,-0.018883489072322845,-0.13913671672344208,-0.015809712931513786,-0.03534989804029465,0.03708207979798317,0.09218615293502808,0.04466167464852333,0.03019740618765354,-0.0007501313230022788,0.002838466316461563,0.03639918565750122,0.05956432223320007,0.039658620953559875,0.040211524814367294,-0.04950948432087898,0.015975112095475197,0.010162439197301865,-0.0773061215877533,-0.026460794731974602,0.1086001917719841,0.007863595150411129,-0.03126614913344383,-0.04762788861989975,-0.028431395068764687,-0.009092848747968674,0.04468613862991333,0.04253068566322327,0.014064380899071693,0.018261155113577843,0.04805288091301918,-0.027068989351391792,-0.012334086932241917,-0.0025792496744543314,-0.029081515967845917,-0.03530171513557434,0.05054652690887451,-0.028511637821793556,-0.03123178333044052,0.009335711598396301,0.05441713333129883,0.013636467047035694,0.03226231038570404,-0.041214656084775925,0.00469819363206625,-0.08170375227928162,0.0605502724647522,0.12370258569717407,0.07908837497234344,-0.03772154450416565,0.03134474158287048,0.0061273337341845036,0.09729062020778656,0.008477184921503067,-4.764752842384891e-33,0.07980325073003769,0.002148886676877737,-0.031242597848176956,0.015152689069509506,0.08913430571556091,-0.015397749841213226,-0.06438976526260376,0.03569615259766579,0.0156630277633667,0.09205739945173264,-0.1117965504527092,-0.08659681677818298,-0.0518733412027359,0.014615306630730629,-0.04997001588344574,0.04007481038570404,0.009960032999515533,-0.00844980962574482,0.09314262121915817,-0.03062143549323082,0.0011551030911505222,-0.0011285798391327262,-0.036907799541950226,0.003462107153609395,-0.02642054297029972,0.020152028650045395,-0.06269994378089905,0.027306493371725082,0.01652200147509575,0.030971387401223183,-0.00437579769641161,-0.021829823032021523,0.0006336315418593585,0.008960052393376827,0.03295568376779556,-0.06310171633958817,-0.040561091154813766,-0.0946897566318512,-0.07406435161828995,-0.029551753774285316,-0.0007942846277728677,0.04195826128125191,-0.07932239025831223,-0.030264226719737053,-0.022372283041477203,0.03701154142618179,-0.08739263564348221,-0.01757194846868515,-0.08855341374874115,0.00868876464664936,-0.03257208317518234,0.01346511859446764,0.053257424384355545,0.015556329861283302,-0.025468433275818825,0.013308418914675713,-0.032999228686094284,-0.030133230611681938,0.020823359489440918,0.0389510802924633,0.02294071577489376,-0.04202297702431679,0.07642513513565063,0.00017847002891357988,0.08908504247665405,-0.15664847195148468,0.015325102023780346,0.01243863720446825,0.000021635136363329366,-0.010747975669801235,-0.0054049924947321415,-0.06799611449241638,0.027708740904927254,-0.044503480195999146,0.006973206531256437,-0.08567281812429428,0.012825691141188145,-0.03410172089934349,-0.05604882165789604,-0.028271757066249847,0.048993226140737534,-0.031534161418676376,0.006978247314691544,-0.007692174986004829,0.029720844700932503,0.014357523992657661,0.021758336573839188,-0.15137986838817596,-0.004838178865611553,0.08500633388757706,-0.028485022485256195,-0.089736208319664,0.014696416445076466,-0.047154780477285385,-0.07983032613992691,9.335470322028401e-34,0.055459313094615936,-0.04133646562695503,-0.02165117673575878,-0.04193099960684776,-0.07067618519067764,-0.02946453168988228,-0.08318169414997101,0.03341149538755417,-0.04974840581417084,-0.024850821122527122,-0.09748177975416183,0.025635691359639168,0.13575512170791626,-0.03926832228899002,0.11126714944839478,-0.039521224796772,0.07137460261583328,-0.030402686446905136,0.018465617671608925,0.08434497565031052,-0.008195747621357441,-0.07289998233318329,0.00395680358633399,-0.06843655556440353,0.04907453432679176,0.07837016880512238,0.030102714896202087,-0.00682806083932519,-0.10975732654333115,-0.06608104705810547,0.027272414416074753,-0.026391681283712387,0.0742231160402298,0.034031063318252563,-0.05070163309574127,0.046326104551553726,0.06745778024196625,0.001844713813625276,0.06004934385418892,-0.018310798332095146,-0.0034486395306885242,-0.02783309668302536,-0.020236646756529808,-0.002849551849067211,-0.02679249830543995,-0.0003814377123489976,0.02269453927874565,0.048453669995069504,0.07106275856494904,0.020366428419947624,-0.05161702260375023,0.061324506998062134,-0.031048409640789032,-0.007728533819317818,-0.031580064445734024,-0.07870787382125854,-0.09425930678844452,-0.06778056919574738,0.09474819153547287,0.11717326194047928,-0.0692308098077774,-0.02639072574675083,-0.09890482574701309,0.03577684983611107,-0.010602382943034172,0.0012089493684470654,-0.13096275925636292,0.020990779623389244,0.009943472221493721,0.025698423385620117,-0.008048477582633495,0.022137749940156937,-0.02026205137372017,0.09130062907934189,-0.04787394776940346,-0.06955597549676895,0.014498495496809483,-0.02832615002989769,0.012514098547399044,-0.040809959173202515,0.013880633749067783,-0.047934990376234055,-0.0372709184885025,0.017217593267560005,0.028946923092007637,-0.05101924017071724,0.10667775571346283,0.05996755510568619,-0.01466497965157032,-0.00008892328332876787,-0.02192779816687107,0.023563021793961525,0.0437285378575325,-0.004310106858611107,0.05066094547510147,-3.0556606134268804e-8,-0.024847162887454033,0.04893174767494202,0.00907160621136427,-0.029942376539111137,0.060713186860084534,-0.0025227521546185017,0.02266540378332138,0.01132540125399828,-0.08724196255207062,0.04028140380978584,-0.03538297489285469,0.04268277809023857,0.0489499531686306,0.042163632810115814,0.019743256270885468,0.029072429984807968,-0.06047498434782028,-0.06854306906461716,-0.04529330134391785,-0.016987210139632225,0.0095452181994915,0.01145744975656271,-0.0319390743970871,-0.016985533758997917,0.0128053929656744,0.019955093041062355,-0.050261240452528,-0.07730690389871597,0.04880798980593681,0.1086677759885788,-0.01290669571608305,0.06561557203531265,-0.060601647943258286,0.004600291606038809,-0.06583017855882645,0.01657758466899395,-0.024499522522091866,-0.022964609786868095,0.10244147479534149,-0.124847412109375,0.07025278359651566,0.062174636870622635,0.0029977282974869013,-0.01864006370306015,-0.014253311790525913,-0.005946147255599499,-0.003914847504347563,-0.04088037461042404,0.0048875221982598305,0.04854726046323776,0.029646556824445724,0.016194041818380356,-0.005273538641631603,0.10772792249917984,0.028046865016222,-0.07724971324205399,0.0011261673644185066,0.010794595815241337,0.010442656464874744,0.009610073640942574,0.004203173331916332,-0.049156129360198975,-0.018841668963432312,-0.0064728218130767345]},{"text":"Despair had indeed almost secured her prey, and I should soon have sunk beneath this misery.","book":"1984","chapter":123,"embedding":[0.047983311116695404,0.06974942237138748,0.036782003939151764,0.07137247920036316,-0.007980899885296822,0.00504143163561821,0.04226963594555855,0.10209206491708755,-0.0125642204657197,-0.06223094090819359,-0.043767575174570084,-0.02573779784142971,0.052414003759622574,-0.01643887534737587,-0.042870279401540756,0.07310232520103455,0.01972067728638649,-0.009387042373418808,0.03836434707045555,0.04378637298941612,-0.02365116961300373,0.07177934795618057,0.025599492713809013,-0.018051128834486008,-0.06869848817586899,0.047573331743478775,-0.024887796491384506,0.02145904116332531,-0.029562080278992653,-0.0018389190081506968,-0.07692668586969376,-0.05553194507956505,0.01824115589261055,0.08143574744462967,-0.006927712820470333,0.05868469551205635,-0.013672086410224438,-0.05496513843536377,0.018272889778017998,-0.026077434420585632,0.0058785853907465935,0.07388465851545334,-0.0464974008500576,0.04167702794075012,-0.04435713589191437,-0.09624332189559937,-0.0414951890707016,-0.000972358335275203,-0.010690965689718723,-0.13752277195453644,-0.017918378114700317,0.01227044127881527,-0.0466688834130764,-0.02369050495326519,-0.03294087201356888,0.029736774042248726,0.07109591364860535,0.0029510960448533297,0.037036795169115067,-0.014091787859797478,0.02586512640118599,0.07316876202821732,0.04589643329381943,0.013841819949448109,0.031572554260492325,0.02122708596289158,-0.012822337448596954,0.02770250476896763,-0.018067331984639168,0.14302170276641846,-0.033987294882535934,-0.05064237862825394,0.042903635650873184,-0.0013332038652151823,-0.020438963547348976,0.022491032257676125,0.023650918155908585,-0.05890965461730957,0.0659882202744484,0.0428948812186718,-0.058977216482162476,0.11358097940683365,0.00023487352882511914,0.03360145539045334,0.022318214178085327,-0.05885709077119827,0.03530627861618996,-0.06377493590116501,0.07643115520477295,-0.059164468199014664,0.013709524646401405,-0.09114650636911392,0.004892285913228989,0.10875583440065384,0.03984818607568741,-0.005588705185800791,-0.04138441011309624,-0.012093826197087765,-0.06095463037490845,0.03027007356286049,-0.0026661620941013098,0.025585206225514412,-0.054656315594911575,0.002813845407217741,-0.0452999509871006,-0.059739235788583755,-0.002996590919792652,0.010485944338142872,-0.014909384772181511,-0.010305680334568024,0.018736500293016434,-0.0712246522307396,0.04708853363990784,0.008166002109646797,-0.010361475870013237,0.04795067012310028,-0.12919476628303528,0.014155910350382328,0.009515693411231041,0.08442861586809158,0.06628937274217606,0.04735395312309265,-0.00473227072507143,0.06420884281396866,0.026874931529164314,0.01381490845233202,-0.06380295008420944,-3.1595513888317316e-33,0.05791039392352104,-0.022522741928696632,0.009736432693898678,-0.028750870376825333,-0.012035450898110867,-0.045369703322649,0.009826653636991978,0.04261690750718117,-0.07412850856781006,-0.0038474323228001595,-0.06890395283699036,-0.08982685208320618,-0.08512174338102341,-0.030616777017712593,-0.11383211612701416,0.009192501194775105,0.07042837142944336,0.0474567785859108,0.033629871904850006,-0.005349935032427311,0.03457794710993767,-0.01830633170902729,0.06476867944002151,-0.13170503079891205,0.004053818061947823,0.0002552347432356328,-0.02085559256374836,0.03642670810222626,-0.02767539583146572,0.041330736130476,-0.026447437703609467,-0.015554118901491165,0.12364787608385086,-0.02244729734957218,-0.00609707972034812,0.02130052261054516,-0.012808282859623432,-0.005767101887613535,-0.03524893894791603,-0.030319318175315857,-0.07510201632976532,0.016483144834637642,0.06448313593864441,0.020297151058912277,-0.005820233374834061,-0.06806008517742157,-0.006899537518620491,0.07642907649278641,-0.05711722746491432,0.013550670817494392,-0.013260995037853718,-0.03902050107717514,-0.00022791123774368316,0.05483198165893555,-0.012700289487838745,-0.011671618558466434,0.027083948254585266,0.007160929962992668,0.012236978858709335,-0.004515662789344788,-0.001103922026231885,-0.09986747801303864,-0.03560102730989456,-0.15733106434345245,0.07974376529455185,0.00843511987477541,-0.01536870189011097,-0.044478632509708405,-0.06991995126008987,0.013173018582165241,-0.13632911443710327,0.011168650351464748,-0.0015067211352288723,-0.0329035222530365,-0.03962928429245949,-0.0038879706989973783,0.026472602039575577,-0.046137262135744095,0.012297322042286396,-0.07858380675315857,0.007179204374551773,-0.029869943857192993,-0.08608086407184601,0.04963850602507591,-0.019382482394576073,-0.031820181757211685,0.07425122708082199,-0.1344006359577179,-0.03399469703435898,0.045648738741874695,0.003527599386870861,0.02620074152946472,0.02623518370091915,-0.06984839588403702,-0.034940123558044434,1.1000494703475823e-33,0.06122756376862526,0.004681309685111046,-0.053548458963632584,0.02788911946117878,0.030522720888257027,-0.03054109215736389,-0.040295299142599106,-0.07148785889148712,-0.08510252833366394,0.028737112879753113,-0.02629373036324978,0.05906790867447853,0.03239748254418373,0.07077664136886597,-0.06486821919679642,0.06553350389003754,0.10044095665216446,-0.04632914811372757,-0.004350441042333841,-0.08093532919883728,-0.025339607149362564,0.06463687866926193,0.035811420530080795,-0.05026775971055031,-0.019725047051906586,0.06044580414891243,0.11698468029499054,0.008981439284980297,-0.10755306482315063,-0.017549140378832817,0.05615082010626793,-0.02798105590045452,-0.058372169733047485,-0.008647540584206581,0.06943197548389435,0.058964990079402924,-0.004049881361424923,-0.06423439830541611,-0.039315760135650635,-0.06151386722922325,-0.043354470282793045,-0.013361301273107529,-0.022608263418078423,0.03587270528078079,-0.002168546197935939,-0.0071053700521588326,0.16862428188323975,0.016363216564059258,0.06400614976882935,0.0009171320125460625,0.002695465460419655,-0.047540683299303055,0.05750297009944916,0.034654874354600906,0.0041246176697313786,-0.0318903774023056,0.024446221068501472,-0.10163293778896332,0.04055318981409073,-0.03856175020337105,-0.13279615342617035,-0.007334599271416664,-0.04620399698615074,-0.005033966153860092,-0.004754737485200167,-0.04313909634947777,0.0026009578723460436,-0.024574005976319313,-0.05213720351457596,0.012359065003693104,-0.014445989392697811,0.04020877555012703,-0.020841237157583237,-0.015082774683833122,0.010797420516610146,0.009483194909989834,-0.05093007907271385,0.07244618982076645,-0.04806278273463249,0.07055150717496872,0.015166896395385265,0.011663882061839104,0.05286427214741707,-0.06470325589179993,0.00600825808942318,0.02804260514676571,0.011218189261853695,0.051995351910591125,0.01770833320915699,0.04007716104388237,-0.05072040483355522,-0.05324887856841087,0.08173871040344238,-0.1150435134768486,0.013027160428464413,-2.140565236175007e-8,-0.019231921061873436,0.013668588362634182,0.02659589610993862,0.011276893317699432,0.010648014955222607,-0.005897772032767534,0.08445882052183151,0.02302529849112034,0.002720335964113474,0.10218006372451782,-0.05913686007261276,0.016494598239660263,0.056419793516397476,0.029077718034386635,0.03219602257013321,-0.017317552119493484,0.08322135359048843,0.004352295305579901,-0.0687408521771431,-0.02857382595539093,0.000469028833322227,-0.0057317172177135944,-0.05115823447704315,-0.07343249022960663,0.032007064670324326,-0.07325450330972672,-0.02255988121032715,-0.03806740790605545,-0.01596224494278431,0.06737803667783737,0.09228499233722687,0.004292990546673536,-0.007953155785799026,-0.0006068694056011736,-0.04017704352736473,0.09301154315471649,0.07078150659799576,0.0313623808324337,-0.02830338478088379,0.06228698417544365,-0.0007916918257251382,0.10980981588363647,0.0522720068693161,0.027808578684926033,0.030805762857198715,0.04366756230592728,0.03344235569238663,0.025761248543858528,0.003073849016800523,-0.04378620535135269,0.06314949691295624,0.01476877648383379,-0.03923054039478302,0.08757204562425613,0.05051284655928612,-0.08251744508743286,0.016991974785923958,-0.013298199512064457,-0.08974393457174301,0.11541926860809326,-0.006308351177722216,-0.03100488893687725,-0.013505037873983383,-0.049190666526556015]},{"text":"The wind arose; the sea roared; and, as with the mighty shock of an earthquake, it split and cracked with a tremendous and overwhelming sound.","book":"1984","chapter":123,"embedding":[-0.052016567438840866,0.031421639025211334,0.12491411715745926,0.0363798625767231,0.03576544672250748,0.012627199292182922,-0.05304110050201416,0.05489523708820343,-0.025785747915506363,-0.038479067385196686,-0.007931145839393139,-0.04500339552760124,-0.014746825210750103,-0.12002509087324142,0.04918316751718521,0.03682408481836319,0.0038262458983808756,-0.05760293826460838,-0.026170095428824425,-0.019574951380491257,0.018451059237122536,0.11486510187387466,-0.06348614394664764,0.011546552181243896,0.03857265040278435,0.05694069713354111,-0.001844528829678893,0.04681692272424698,0.023113446310162544,-0.011772374622523785,0.0754612609744072,0.008371970616281033,0.055770035833120346,0.045752570033073425,-0.011254411190748215,0.03656360134482384,0.027488183230161667,0.011017021723091602,-0.032024599611759186,-0.018681854009628296,-0.07886224240064621,0.036219242960214615,0.00769625511020422,0.029214954003691673,-0.011879992671310902,-0.014038706198334694,-0.005893705878406763,-0.01394800003618002,0.04766097664833069,0.08077944070100784,-0.04211435839533806,-0.0181620791554451,-0.015446285717189312,-0.027026182040572166,-0.04817443713545799,-0.007619965821504593,0.032934896647930145,-0.033921658992767334,0.03454238548874855,-0.01895449496805668,-0.003323693759739399,0.053025443106889725,0.0294870026409626,0.015093390829861164,0.11435994505882263,-0.04075252264738083,0.01926433853805065,-0.010924347676336765,0.037474941462278366,0.06401152908802032,0.05977746099233627,0.026089651510119438,0.04518206790089607,-0.04575483500957489,-0.028132114559412003,-0.07641825824975967,-0.04445948079228401,-0.06538376212120056,0.003283073427155614,0.03641562908887863,-0.03052331879734993,0.003606948535889387,-0.09463038295507431,-0.08564119040966034,0.030289502814412117,0.023531127721071243,0.03788889944553375,-0.01567143015563488,-0.019880760461091995,0.020232785493135452,-0.020031213760375977,-0.07567818462848663,0.012930287979543209,0.07636912167072296,0.14604437351226807,0.02935737743973732,-0.08115757256746292,-0.0880611315369606,0.0993950366973877,0.011852077208459377,-0.0014068573946133256,0.0329565554857254,-0.011364205740392208,0.004137602634727955,0.0029780485201627016,-0.06685514748096466,-0.09525533765554428,0.037251781672239304,0.00823673140257597,0.022192664444446564,-0.023381024599075317,-0.010514800436794758,0.056906070560216904,-0.008071022108197212,0.005441248416900635,0.013971874490380287,-0.08563455939292908,-0.05035319924354553,-0.04063936695456505,0.06018028408288956,0.08388909697532654,-0.027418876066803932,-0.08686139434576035,0.05420226976275444,-0.010083260014653206,0.006988597568124533,0.01685473881661892,-6.37186704565203e-33,0.0674198567867279,0.061705365777015686,-0.012140749022364616,0.037344884127378464,0.1126810610294342,-0.007783656939864159,-0.050933219492435455,-0.024416876956820488,-0.07649453729391098,0.019606322050094604,-0.1309981793165207,0.034928031265735626,0.022427204996347427,-0.06426218897104263,-0.05188968405127525,-0.08845443278551102,-0.051285117864608765,-0.03163721784949303,-0.0033539424184709787,-0.008835178799927235,-0.06580251455307007,0.020248601213097572,0.015379505231976509,-0.03548489883542061,-0.06485553830862045,-0.016653500497341156,0.038231611251831055,0.011298896744847298,0.012767982669174671,0.0336739718914032,-0.029252229258418083,-0.023217996582388878,-0.03955022245645523,0.024469342082738876,0.014700730331242085,-0.00675617903470993,-0.027280550450086594,-0.005108558107167482,-0.022801438346505165,0.01962369494140148,-0.07524867355823517,-0.035813428461551666,-0.048090092837810516,0.01931920275092125,0.07028280198574066,-0.020030463114380836,-0.07542470842599869,0.04689182713627815,0.035037361085414886,-0.02754962258040905,0.03942498564720154,0.015381290577352047,0.03792388737201691,0.031292594969272614,-0.00666456064209342,0.04290301352739334,0.11308404803276062,-0.04132070764899254,-0.018071802332997322,0.02287825010716915,0.015268335118889809,-0.008809499442577362,0.1412901133298874,0.007528955582529306,0.03209898993372917,0.0021309207659214735,0.02163425274193287,-0.03635523095726967,0.004080124665051699,-0.009399604983627796,-0.021057546138763428,-0.020935701206326485,0.018302222713828087,0.02619539014995098,-0.07101617008447647,-0.009768965654075146,-0.043820738792419434,-0.014130495488643646,-0.024768933653831482,0.05122232064604759,-0.027153443545103073,-0.0221259742975235,0.04981131851673126,0.033597443252801895,-0.005394308362156153,0.07288184762001038,-0.004090908449143171,-0.07488298416137695,-0.0667821392416954,-0.02427409030497074,-0.06510650366544724,0.015514392405748367,0.15573471784591675,-0.14876686036586761,0.005987333133816719,2.810991048861022e-33,0.015960874035954475,0.03830130398273468,-0.10890522599220276,0.03549063578248024,0.002488670637831092,0.045368045568466187,-0.07115308940410614,0.07725754380226135,-0.15329408645629883,-0.040579721331596375,0.0013219623360782862,-0.046408820897340775,0.015077557414770126,0.0074632433243095875,-0.041129790246486664,-0.013824239373207092,0.07539989799261093,0.07103390246629715,0.012827382422983646,0.07253113389015198,0.08083285391330719,-0.11575040221214294,0.013977588154375553,0.03067299723625183,0.019481398165225983,0.029492700472474098,0.037762630730867386,-0.05147174745798111,0.005145465023815632,-0.022954044863581657,-0.004761231131851673,0.052287593483924866,-0.023625174537301064,-0.013845320791006088,-0.008248195983469486,0.11626724153757095,0.001704424968920648,-0.0378393679857254,0.008973021991550922,-0.08577362447977066,-0.08364833891391754,0.04291310906410217,0.0664738118648529,0.03318135812878609,-0.02389509044587612,0.015330927446484566,0.08721689879894257,0.08921501785516739,-0.0583813413977623,-0.0006251881131902337,0.006181888282299042,-0.017340904101729393,0.10327025502920151,0.0011343955993652344,-0.0033401011023670435,0.014564611949026585,0.05425388365983963,-0.05690685287117958,-0.06723456084728241,-0.025870492681860924,-0.10119815170764923,-0.020235726609826088,-0.04510017856955528,-0.021216681227087975,0.04393893480300903,-0.05441156029701233,-0.03872985765337944,-0.05184624344110489,-0.03461635857820511,0.0342043936252594,-0.020365752279758453,0.06695219874382019,-0.05611021816730499,0.024538343772292137,0.004796286579221487,0.025111278519034386,-0.11367186903953552,0.016016749665141106,-0.05879337713122368,0.04947076365351677,-0.007924842648208141,-0.0074626486748456955,0.020086582750082016,-0.02620326168835163,-0.062049705535173416,-0.0342569500207901,0.005073464475572109,-0.03913309797644615,0.03541775420308113,-0.019403867423534393,-0.04256283864378929,0.01400074828416109,0.0024285470135509968,-0.04170270636677742,0.033063389360904694,-2.5764746780509995e-8,0.04259208217263222,0.027432305738329887,-0.06200581043958664,0.004778700415045023,0.07331791520118713,-0.016901127994060516,0.06746331602334976,0.026909461244940758,0.008404199965298176,-0.032769110053777695,-0.10062453150749207,-0.0064448523335158825,-0.020860521122813225,0.06946615129709244,-0.031177228316664696,-0.018367765471339226,-0.006542436312884092,0.05728684365749359,-0.02286243624985218,-0.04931311681866646,0.0586213581264019,0.05496104434132576,-0.024873413145542145,-0.007259596139192581,-0.0013212851481512189,0.03126988932490349,-0.06639569997787476,-0.04811784252524376,-0.005564974155277014,0.007851803675293922,-0.01649468205869198,-0.07732432335615158,-0.10274606943130493,-0.10853015631437302,-0.10883299261331558,0.12087856978178024,-0.05522492155432701,-0.03276862949132919,0.046160995960235596,-0.12461906671524048,0.002810341538861394,0.18022044003009796,0.0431557297706604,0.015498058870434761,0.002270480152219534,-0.004447196144610643,0.014450998976826668,-0.02589176408946514,-0.047825753688812256,0.061466801911592484,-0.022312331944704056,0.09055835753679276,0.06535928696393967,0.004661687649786472,0.042052675038576126,0.03716891258955002,-0.05615927278995514,0.014542884193360806,-0.02003607340157032,0.043830275535583496,0.008145193569362164,0.023250563070178032,-0.016994591802358627,0.07758274674415588]},{"text":"And do I dare to ask of you to undertake my pilgrimage, to endure the hardships that I have undergone?","book":"1984","chapter":124,"embedding":[0.015098068863153458,0.08252602815628052,0.03683104366064072,0.00378439505584538,0.022713588550686836,-0.08936614543199539,0.013402516953647137,-0.04477757215499878,-0.03590618073940277,-0.08261063694953918,-0.033001262694597244,-0.013659646734595299,-0.004314596299082041,0.053062379360198975,0.07135576009750366,-0.012755694799125195,-0.023366129025816917,-0.005289310589432716,0.028609877452254295,0.031157400459051132,-0.046008165925741196,0.08301112800836563,-0.008383926004171371,0.08158738166093826,-0.019151128828525543,0.0016700689448043704,0.06517863273620605,0.012818855233490467,0.02279839478433132,0.021345071494579315,-0.0629320740699768,-0.03410207852721214,-0.07153738290071487,0.0027695309836417437,0.009288844652473927,0.003393810708075762,-0.024485677480697632,-0.12789702415466309,0.061979688704013824,-0.014355544932186604,0.07939876616001129,-0.007007624488323927,0.01766359433531761,-0.01800445467233658,0.02999482862651348,-0.06754377484321594,-0.00034820594009943306,0.052445586770772934,-0.005380759947001934,-0.018393220379948616,-0.013072673231363297,0.03557627648115158,0.014827580191195011,-0.016763562336564064,0.00021170059335418046,-0.012386003509163857,0.01600387506186962,-0.03598594292998314,0.03242012858390808,0.04263439029455185,-0.05667748302221298,0.026277873665094376,-0.015564114786684513,0.1230892539024353,-0.023577235639095306,-0.02994079701602459,0.019881458953022957,0.0006825773743912578,0.008499191142618656,0.008006544783711433,-0.13134944438934326,0.020856978371739388,-0.0038286636117845774,0.00006176813622005284,-0.1218620240688324,-0.08671169728040695,-0.08663583546876907,-0.04954206943511963,-0.07291501015424728,0.022655131295323372,0.017591247335076332,-0.06210789084434509,-0.021359777078032494,0.07394623011350632,-0.06972981244325638,-0.08453477174043655,0.04765314236283302,0.0019018761813640594,0.06785263121128082,-0.07009900361299515,0.003014249261468649,0.006625539623200893,-0.08900485932826996,-0.008353971876204014,-0.04793186113238335,-0.00528939813375473,-0.054560545831918716,0.008359499275684357,-0.0709277093410492,0.01949172094464302,0.022569209337234497,-0.022523220628499985,-0.0060226148925721645,-0.0016586187994107604,-0.05093755945563316,0.010728155262768269,-0.10511463135480881,-0.04029740020632744,-0.027471013367176056,-0.008562684059143066,-0.04912847280502319,-0.012222292833030224,0.031201571226119995,-0.1073453277349472,-0.017637047916650772,0.020774297416210175,-0.06421247869729996,-0.01095668226480484,-0.04272056743502617,0.0919489935040474,-0.014782761223614216,0.07003342360258102,0.06354161351919174,0.06799808144569397,-0.04735596105456352,-0.1374911367893219,0.013089332729578018,-5.700016922859397e-33,0.025341976433992386,-0.03187814727425575,-0.005528970621526241,0.05872431769967079,0.023955965414643288,-0.03949715197086334,-0.05753667652606964,-0.027422413229942322,-0.057012271136045456,-0.10009227693080902,0.12712039053440094,0.004634320270270109,0.06290087848901749,-0.005799384787678719,-0.06237415224313736,0.06740200519561768,0.05270032584667206,0.009870253503322601,0.05361403897404671,-0.010120350867509842,0.034660037606954575,-0.03968960419297218,0.019693199545145035,0.044068071991205215,-0.014659380540251732,-0.046915728598833084,0.011136169545352459,0.012614862062036991,0.019851384684443474,0.05407172814011574,0.03528502956032753,0.028052804991602898,-0.0317714586853981,-0.07328928261995316,0.03238651528954506,0.05724754557013512,-0.011870034039020538,-0.018903454765677452,-0.07565537095069885,-0.04314977303147316,-0.018705567345023155,-0.012031926773488522,0.08036252856254578,0.05744720250368118,-0.07051640003919601,-0.03475763276219368,0.07633993029594421,0.010666760616004467,-0.06719095259904861,0.013764819130301476,-0.05501197651028633,-0.00976003147661686,0.023453375324606895,-0.0682787299156189,0.06074042618274689,-0.06511631608009338,-0.00399911729618907,0.0296965129673481,0.00001207468449138105,0.017339879646897316,-0.037564560770988464,-0.05839775130152702,-0.05460502207279205,0.03553203120827675,0.01675325818359852,-0.001094869920052588,-0.007192758843302727,0.028208110481500626,0.03347106650471687,0.00027259960188530385,0.028627445921301842,0.027910908684134483,-0.015106176026165485,0.02320362813770771,0.002342845546081662,-0.0009740024106577039,0.05395529791712761,0.00242976495064795,-0.002627496374770999,-0.03362568840384483,-0.035589054226875305,0.009121996350586414,-0.06020410731434822,0.03125910460948944,0.12069594115018845,0.00023747695377096534,0.14427107572555542,-0.03453987464308739,0.02072400599718094,-0.11153436452150345,0.05909910053014755,0.05264235660433769,0.0034936205483973026,-0.11923697590827942,-0.05986667796969414,2.0605093538770025e-33,0.04272393882274628,0.013167237862944603,0.06949104368686676,0.03371145576238632,0.019992204383015633,-0.01627374440431595,-0.015484792180359364,0.04372090846300125,0.0736941322684288,0.09625805169343948,-0.06793440133333206,0.031794190406799316,-0.03417198359966278,-0.0030707642436027527,0.00808535236865282,-0.015496747568249702,-0.002196401823312044,0.026532601565122604,-0.029519235715270042,-0.04085460305213928,-0.06684263795614243,0.08798669278621674,-0.007512201555073261,-0.0781627967953682,0.010587410070002079,0.026081088930368423,0.03147391974925995,-0.02597259171307087,-0.02334148809313774,-0.023526253178715706,0.05656786262989044,0.026365764439105988,-0.17403078079223633,0.032064978033304214,0.03624188154935837,0.07745164632797241,0.05421576276421547,0.06919071823358536,-0.007685345131903887,-0.014765970408916473,-0.06958260387182236,0.02264973893761635,0.048072654753923416,0.049472223967313766,-0.023431725800037384,-0.06609953939914703,0.05431809276342392,-0.02123096212744713,0.035812798887491226,-0.03258051350712776,-0.03521757200360298,0.027901753783226013,0.06657693535089493,-0.021770864725112915,0.08755573630332947,-0.04138316586613655,-0.07470538467168808,-0.016053687781095505,0.026623059064149857,-0.13077197968959808,-0.0013617606600746512,0.015751242637634277,-0.004954156465828419,-0.0172269344329834,0.07092764973640442,-0.025885768234729767,-0.020348405465483665,0.06127716600894928,-0.03167055547237396,0.07920694351196289,0.01712283305823803,-0.06472422927618027,-0.03263028711080551,0.029296869412064552,0.12124594300985336,0.010087136179208755,0.03407325968146324,0.0027620294131338596,-0.03112032823264599,-0.040954623371362686,0.0521429069340229,-0.06436074525117874,-0.0035189874470233917,-0.016799714416265488,0.07952332496643066,-0.09108655154705048,-0.05540306121110916,0.030936460942029953,0.08184165507555008,0.013502278365194798,0.03082103282213211,0.01609007641673088,0.03091168962419033,-0.1156947910785675,0.042735226452350616,-2.4078511628999877e-8,0.007826251909136772,-0.017933625727891922,-0.012336964718997478,0.08293724805116653,0.033345434814691544,0.011160151101648808,-0.02025929093360901,0.017602108418941498,-0.016279371455311775,0.024197349324822426,-0.03108084574341774,-0.0008338447078131139,0.08436474204063416,0.046382807195186615,-0.010808794759213924,0.08198095858097076,0.048221785575151443,-0.04539413005113602,0.004037642851471901,0.0001977249194169417,-0.041486937552690506,0.06543673574924469,-0.0017429724102839828,-0.04334791749715805,-0.032067958265542984,0.0629926323890686,-0.009402917698025703,-0.0394655242562294,-0.06447926163673401,0.028009917587041855,0.04863457754254341,-0.02284449152648449,-0.1317283809185028,-0.010837428271770477,-0.09674728661775589,-0.06820448487997055,-0.08679980039596558,0.01682363823056221,0.04602424427866936,-0.02083410508930683,0.019562097266316414,0.015515109524130821,0.0686945840716362,0.0795833095908165,-0.04541813209652901,-0.03950612246990204,0.0017211793456226587,0.03941211849451065,-0.04023653268814087,-0.031167281791567802,-0.07370565086603165,0.02238525077700615,0.11675989627838135,0.02607012540102005,-0.009124958887696266,0.04973200336098671,0.03444039821624756,0.03732871636748314,-0.028146779164671898,-0.01612039841711521,0.14604026079177856,0.034861937165260315,-0.04005520045757294,-0.1143280565738678]},{"text":"Sometimes he commanded his countenance and tones and related the most horrible incidents with a tranquil voice, suppressing every mark of agitation; then, like a volcano bursting forth, his face would suddenly change to an expression of the wildest rage as he shrieked out imprecations on his persecutor.","book":"1984","chapter":124,"embedding":[0.011731001548469067,0.09460681676864624,0.031601108610630035,0.06126876175403595,-0.04318578168749809,0.0555889792740345,0.07141274213790894,0.03156885877251625,-0.025918852537870407,-0.08228906244039536,-0.0036767462734133005,-0.07388001680374146,0.049648530781269073,0.0005744751542806625,0.00945851020514965,-0.036376580595970154,-0.01599753275513649,0.055367179214954376,0.008922301232814789,0.023271648213267326,0.05393653362989426,0.13538441061973572,0.002661455189809203,-0.024770468473434448,-0.02069154940545559,0.06276052445173264,0.022071897983551025,-0.002360506448894739,0.0515093170106411,-0.052037741988897324,0.027480971068143845,-0.07730279117822647,-0.005220909137278795,-0.04409348964691162,-0.10369303077459335,-0.01691279374063015,-0.006342321168631315,0.13506533205509186,0.05457097664475441,-0.0062734708189964294,-0.021948883309960365,0.04727974161505699,-0.06757484376430511,-0.012459862977266312,-0.04043295234441757,0.005185130052268505,-0.013707419857382774,-0.039311278611421585,0.009010786190629005,-0.07043135166168213,-0.02852998860180378,-0.06297050416469574,0.0037921464536339045,-0.07797003537416458,-0.04282723739743233,-0.05741572007536888,0.05988745763897896,0.06762461364269257,0.045095350593328476,0.046898987144231796,-0.06340699642896652,0.04201183840632439,0.05175943672657013,0.015133880078792572,-0.015916433185338974,-0.01810743287205696,0.0631018877029419,0.0007167331641539931,0.025607502087950706,0.11981096118688583,0.06210317090153694,-0.023600542917847633,0.03756514936685562,-0.12283862382173538,-0.07235914468765259,-0.06174667179584503,-0.017484990879893303,-0.049194760620594025,0.022866183891892433,0.041568636894226074,0.005527717527002096,0.0036832080222666264,-0.05323449522256851,-0.045851293951272964,0.015359513461589813,-0.09631618112325668,0.021387066692113876,-0.09884350001811981,-0.02884453907608986,0.05668167024850845,-0.029687805101275444,-0.04838870093226433,-0.03281593322753906,0.04278676584362984,0.03395749628543854,0.031858135014772415,-0.04806960001587868,-0.0028449485544115305,0.007363901939243078,0.01614909991621971,0.009627814404666424,0.00015363728743977845,-0.07828575372695923,0.04256223887205124,0.0242147296667099,0.002086588414385915,0.001970247132703662,-0.04163026809692383,-0.06148015707731247,0.016404185444116592,-0.0946967825293541,-0.03821990638971329,0.015837185084819794,-0.08391799032688141,0.08102287352085114,0.029725831001996994,-0.03156756982207298,-0.05994797870516777,-0.0746632069349289,0.018885882571339607,0.09477194398641586,-0.0016626100987195969,-0.04015103727579117,0.09273963421583176,0.0028935829177498817,0.05783833563327789,-0.004052111878991127,1.4552967201355397e-33,0.07141410559415817,0.016017915681004524,-0.07775204628705978,0.06510894000530243,0.09347375482320786,0.030220607295632362,-0.042376525700092316,-0.007167413365095854,0.12451884150505066,-0.02276998944580555,0.008418993093073368,-0.03204779699444771,-0.024116210639476776,0.0684308335185051,-0.1115557923913002,0.02224217914044857,0.029369313269853592,0.006807268131524324,0.021728239953517914,-0.08849865198135376,-0.03077571466565132,0.08789988607168198,-0.008303862065076828,-0.021099960431456566,-0.042806725949048996,0.12292830646038055,0.02480805106461048,-0.01978815160691738,0.006463387981057167,0.001247177948243916,-0.0023420541547238827,0.08181186020374298,-0.027642764151096344,-0.02963879704475403,0.1021105945110321,0.006683616898953915,-0.06847973167896271,-0.020778033882379532,-0.05702108144760132,0.04603970795869827,-0.023993970826268196,0.035357557237148285,-0.08623989671468735,0.0012562753399834037,-0.05447409674525261,0.03493298590183258,-0.04264215752482414,0.09391024708747864,-0.03147182613611221,0.009046925231814384,0.010239928029477596,0.058657173067331314,0.04628017172217369,0.032192930579185486,0.0293500404804945,0.08008638769388199,0.02299477905035019,-0.062266480177640915,0.033414557576179504,0.04226056858897209,0.019852597266435623,0.02082400768995285,0.049916770309209824,0.020573589950799942,0.012246803380548954,-0.11424989253282547,-0.08978346735239029,-0.022301482036709785,-0.07147415727376938,0.008390409871935844,-0.08030592650175095,0.03700326383113861,-0.09998881816864014,-0.1085897758603096,-0.09682585299015045,-0.09690509736537933,-0.03583456575870514,0.0045158336870372295,-0.1068902388215065,-0.012969898991286755,-0.028217561542987823,-0.04602603614330292,0.027144284918904305,0.03161109983921051,0.0057822465896606445,-0.013001775369048119,0.076970174908638,-0.09631496667861938,-0.054724738001823425,0.09694948047399521,0.021556200459599495,-0.018402691930532455,0.07426552474498749,-0.0397469736635685,-0.0804348960518837,-4.517811968661853e-33,-0.030851619318127632,0.02371988072991371,-0.011033986695110798,0.1122279241681099,-0.018535440787672997,0.033091526478528976,-0.04442549869418144,0.10429620742797852,-0.03406210616230965,-0.04540494829416275,-0.059281449764966965,-0.0011345569510012865,0.06800997257232666,-0.009218399412930012,-0.013346743769943714,-0.03742581233382225,0.05082109197974205,0.02962361089885235,-0.05560196563601494,0.06851533055305481,-0.0066142999567091465,-0.03809358552098274,-0.04257747903466225,-0.053323350846767426,-0.02517995983362198,0.012434176169335842,0.006304702255874872,-0.024385234341025352,-0.009121028706431389,0.006013816222548485,0.08005089312791824,0.10653127729892731,-0.007344389799982309,0.045764487236738205,0.0058534275740385056,0.10142199695110321,-0.012888507917523384,0.02227317914366722,-0.056039243936538696,-0.06632121652364731,0.01528454851359129,-0.012713339179754257,0.036140669137239456,0.07854387909173965,0.009566253051161766,0.0006394786760210991,-0.016683215275406837,-0.020273610949516296,0.00931247603148222,0.02544783614575863,-0.0389862135052681,-0.03372790291905403,0.02149716392159462,0.052245475351810455,-0.012870733626186848,-0.1290891170501709,-0.03127065673470497,-0.09149777889251709,-0.0015282264212146401,-0.04347267374396324,-0.07046379148960114,-0.0848674401640892,-0.06650135666131973,0.024909907951951027,0.03084391914308071,-0.00040882299072109163,-0.053049489855766296,-0.0028663419652730227,0.04789824038743973,0.029077352955937386,0.08154834806919098,0.006189760752022266,-0.01870919018983841,-0.011842358857393265,-0.010098179802298546,0.015401937998831272,-0.06362288445234299,-0.046688709408044815,-0.04655468836426735,-0.006569887977093458,-0.008664650842547417,-0.03537413850426674,-0.012446585111320019,-0.032719794660806656,-0.10410448908805847,0.03229036182165146,-0.0057915858924388885,0.006275925785303116,-0.031783636659383774,-0.0022216434590518475,-0.0011223794426769018,0.03801387548446655,0.02220326103270054,-0.018265029415488243,0.09434164315462112,-3.6384360413421746e-8,-0.11260700225830078,-0.023632435128092766,0.0002511169295758009,0.03339175879955292,0.0631420761346817,0.0072975968942046165,0.032803382724523544,-0.0007575585623271763,-0.055961959064006805,0.054948590695858,-0.07132073491811752,0.053840335458517075,0.10757303237915039,0.004751170054078102,0.00510570639744401,0.027451977133750916,0.01582394540309906,-0.02789042890071869,0.007230446208268404,0.04099785163998604,-0.06325055658817291,0.033263448625802994,0.018703622743487358,-0.09159814566373825,-0.02627149596810341,0.0219102893024683,0.0005317138857208192,0.03151208907365799,-0.03345591574907303,0.059622541069984436,0.0708971843123436,0.0014510665787383914,-0.04428916424512863,-0.05971909686923027,-0.03965657204389572,0.08166604489088058,0.023188741877675056,-0.015117279253900051,0.06860657036304474,-0.052935268729925156,-0.022618019953370094,0.07047675549983978,0.047422271221876144,0.030668001621961594,-0.041385382413864136,-0.02837778814136982,-0.007680979091674089,-0.031121252104640007,0.014617898501455784,0.055035803467035294,0.017512112855911255,0.0651644617319107,0.015004947781562805,0.04424671456217766,0.05629132315516472,-0.03663288801908493,0.014169391244649887,0.0015733615728095174,-0.08160313218832016,0.04622277617454529,0.04455717280507088,-0.0006862658192403615,-0.031026089563965797,-0.06209205090999603]},{"text":"Our conversations are not always confined to his own history and misfortunes.","book":"1984","chapter":125,"embedding":[0.08196749538183212,0.05695232003927231,0.03669077157974243,-0.01343349926173687,0.030004510655999184,-0.022821994498372078,-0.02601313218474388,-0.05590171739459038,0.04427137225866318,-0.1355714648962021,-0.06147075816988945,0.07009737938642502,-0.026808185502886772,-0.0016767957713454962,0.03129996359348297,-0.02916816435754299,-0.053305741399526596,-0.08463676273822784,-0.0013284191954880953,0.023538675159215927,-0.022830883041024208,0.08121700584888458,0.0954866036772728,-0.03748881071805954,0.022637220099568367,0.0032381154596805573,0.0762391984462738,0.0004231815109960735,0.004273468162864447,0.020118018612265587,0.018809067085385323,-0.06200123950839043,-0.028220467269420624,0.03945945203304291,-0.0007907523540779948,-0.0028857148718088865,-0.00915414560586214,0.11007878929376602,0.04467229172587395,-0.04035010188817978,-0.03938731923699379,0.08674287796020508,-0.000514334300532937,0.025470921769738197,-0.06360787898302078,-0.016232851892709732,-0.051809512078762054,-0.09121503680944443,-0.07200779765844345,-0.005531618371605873,-0.11349225044250488,0.11028314381837845,0.03351088985800743,0.01473955437541008,0.06262718886137009,0.09387857466936111,0.024477388709783554,0.06272774934768677,0.013282124884426594,-0.004410012625157833,-0.009434669278562069,-0.0044492082670331,-0.02169179916381836,0.0014057452790439129,-0.07435347884893417,0.007157874759286642,0.01652386598289013,0.052335795015096664,-0.030400749295949936,0.10656549036502838,-0.07042596489191055,0.05921545252203941,0.04353693500161171,0.0440787635743618,-0.06680648028850555,-0.0008156794356182218,0.04778105765581131,-0.002618615748360753,0.022861545905470848,0.007763517554849386,-0.0027012790087610483,0.01903064176440239,0.013876012526452541,0.011400558985769749,0.0028923049103468657,-0.025141887366771698,-0.03516807034611702,-0.13498811423778534,-0.012716577388346195,-0.0018196261953562498,-0.042964834719896317,-0.08284018188714981,0.06876633316278458,-0.004886896815150976,0.0037146257236599922,0.024160265922546387,-0.019540295004844666,0.10107818990945816,-0.11854852735996246,0.014353465288877487,-0.0031088758260011673,0.035830069333314896,-0.0360405370593071,0.06308857351541519,0.021280478686094284,0.031951501965522766,-0.055525653064250946,-0.014346187002956867,-0.08607853949069977,0.06685050576925278,-0.006863652262836695,-0.041890472173690796,0.025296684354543686,-0.05060078948736191,0.07064832001924515,-0.025600098073482513,0.018654458224773407,-0.03753865510225296,-0.0432138666510582,0.08625685423612595,-0.04726845398545265,0.02127867192029953,-0.038112007081508636,0.1388271301984787,-0.05163147300481796,-0.09230657666921616,0.018985565751791,-1.9441761881058902e-33,0.08181478083133698,-0.05351993441581726,-0.0680648609995842,0.05069258436560631,-0.0539570078253746,0.14127811789512634,-0.06748110800981522,-0.05390460789203644,0.10223682224750519,0.02541714534163475,0.03813871741294861,0.022531256079673767,0.03929059952497482,-0.04255759343504906,-0.010092804208397865,0.08453138917684555,-0.07789207249879837,0.04567214101552963,0.13461069762706757,-0.10012215375900269,-0.10235358774662018,-0.02450510300695896,0.01744850166141987,0.020657146349549294,0.06356231123209,-0.07819166779518127,0.07315835356712341,-0.01079596672207117,-0.05209488049149513,-0.0227714404463768,-0.15083745121955872,0.07766410708427429,0.053284719586372375,0.02419302426278591,0.09892092645168304,0.025868507102131844,-0.042164526879787445,-0.015092818066477776,0.0080850999802351,0.0397096648812294,0.021132534369826317,0.02253475785255432,-0.009405974298715591,-0.039267756044864655,0.06076091527938843,-0.034784965217113495,0.05353078246116638,0.0026388319674879313,-0.07311971485614777,-0.06017322465777397,-0.012539748102426529,0.04038084298372269,-0.01763896644115448,-0.013826843351125717,-0.0524665005505085,-0.024251431226730347,0.015220078639686108,-0.020152855664491653,-0.00390835665166378,0.04036427661776543,0.06092621386051178,-0.041283152997493744,-0.024488212540745735,-0.017295777797698975,0.023834465071558952,-0.0000886176130734384,-0.09405768662691116,0.008096870966255665,-0.09093296527862549,-0.03255987912416458,-0.036774300038814545,0.03701302781701088,0.0013827495276927948,-0.034977857023477554,-0.04855441302061081,-0.02635180950164795,0.023913199082016945,0.07720065116882324,0.0184166319668293,-0.04351089149713516,-0.0825963094830513,-0.062040433287620544,0.0025159039068967104,0.045497167855501175,-0.016698183491826057,0.008165480569005013,0.04335051402449608,0.05611122399568558,-0.004848255775868893,0.13760845363140106,0.017617201432585716,-0.008154729381203651,0.016421742737293243,-0.023475579917430878,-0.08288023620843887,-1.5016144118003033e-33,-0.07215819507837296,0.019664201885461807,0.0005363188101910055,0.03332537040114403,0.02364189550280571,-0.019574569538235664,-0.013526946306228638,0.08025805652141571,0.032698530703783035,0.004030977841466665,-0.026147888973355293,0.00437975162640214,0.08205229789018631,0.03629453852772713,0.0027788926381617785,0.004518780391663313,0.03414579853415489,-0.02873620204627514,-0.044677264988422394,-0.07555688917636871,0.00477475393563509,0.10452882945537567,-0.07882929593324661,0.025519046932458878,-0.06342055648565292,-0.047297149896621704,-0.04139024764299393,-0.0357947051525116,-0.05897892639040947,-0.014147141017019749,-0.043754205107688904,0.05626554787158966,-0.08806086331605911,-0.016539063304662704,0.003907382022589445,-0.024947570636868477,-0.035540226846933365,-0.06903409957885742,0.026745663955807686,-0.0012415025848895311,-0.0002699300239328295,0.0010476731695234776,-0.08035291731357574,-0.05150110647082329,-0.004254024475812912,-0.0008179325377568603,-0.048563238233327866,0.014195283874869347,-0.007978493347764015,0.02010253444314003,-0.09179242700338364,0.03772037848830223,0.06679593771696091,-0.022847969084978104,-0.0019471932901069522,0.065150186419487,0.012864742428064346,-0.015659520402550697,0.013105190359055996,-0.019295677542686462,-0.03920615836977959,-0.02775569260120392,-0.004639898892492056,-0.026823585852980614,-0.003935182932764292,0.09033319354057312,-0.013522408902645111,0.08481290936470032,0.05288362130522728,0.05310841277241707,0.036806147545576096,-0.10128676891326904,-0.04253100976347923,-0.019543638452887535,0.037116631865501404,0.09279663115739822,-0.05633626505732536,-0.04576032608747482,-0.0003643413947429508,-0.044615987688302994,0.082460418343544,-0.023357998579740524,0.04768535494804382,0.025948090478777885,-0.015127453953027725,0.052598986774683,-0.017930926755070686,-0.02515670470893383,0.021897386759519577,-0.04113033413887024,0.032180316746234894,-0.1328418254852295,0.031097063794732094,-0.07726190239191055,0.01202052365988493,-2.403878163192985e-8,-0.0601954348385334,-0.010685754008591175,0.020268704742193222,0.005699528846889734,-0.017509223893284798,0.07210573554039001,0.044996462762355804,-0.040287744253873825,-0.01570027694106102,0.07967470586299896,-0.0439961738884449,0.03964664414525032,-0.08300037682056427,-0.008427497930824757,0.04017043113708496,-0.01788935996592045,0.05351848527789116,-0.06498033553361893,-0.016510523855686188,-0.005787422880530357,-0.016013912856578827,0.025400236248970032,-0.041735995560884476,0.06272755563259125,-0.027228891849517822,0.033931441605091095,-0.028718605637550354,-0.009266932494938374,0.019049502909183502,0.044561970978975296,0.04490315914154053,0.07774636894464493,-0.021938610821962357,-0.010148540139198303,-0.05362817272543907,-0.042788561433553696,0.0003110624384135008,0.012176538817584515,0.019682856276631355,-0.0204444732517004,-0.010723867453634739,0.034814294427633286,0.005800724495202303,0.03409215062856674,0.006052183452993631,0.024476898834109306,0.013838563114404678,0.05121205002069473,-0.06813841313123703,0.021758470684289932,-0.05216091498732567,0.06594334542751312,0.0797114446759224,-0.02553272433578968,0.14024151861667633,-0.036331601440906525,0.03964832425117493,0.019966481253504753,-0.057890743017196655,-0.010959969833493233,0.03513461723923683,0.0692828968167305,-0.024312080815434456,-0.05841567739844322]},{"text":"Even now I cannot recollect without passion my reveries while the work was incomplete.","book":"1984","chapter":125,"embedding":[0.01331773865967989,-0.01477864757180214,0.01061596442013979,0.013996846042573452,0.05304925516247749,0.026532137766480446,-0.02992336079478264,0.023364748805761337,0.04159822687506676,-0.02365846000611782,-0.031201688572764397,0.06890169531106949,-0.039138153195381165,-0.06489936262369156,-0.06406580656766891,-0.05292306840419769,-0.06579503417015076,0.03800295293331146,0.0324007049202919,-0.021245356649160385,-0.04950254037976265,0.07478021830320358,0.002448993967846036,0.03757275268435478,0.0703519880771637,0.12433125823736191,-0.002967160427942872,0.03614116087555885,0.03201799839735031,-0.04792175814509392,0.02452337183058262,0.07130098342895508,0.02937834896147251,-0.02228599600493908,0.0023744041100144386,0.03861941397190094,0.0017307538073509932,0.04984775185585022,0.04002457112073898,0.04642748087644577,-0.0019513347651809454,0.02114659734070301,0.0361974835395813,0.05487630516290665,0.060858745127916336,-0.1131165400147438,-0.027368968352675438,-0.07467219978570938,0.04784887656569481,0.014733539894223213,-0.060117680579423904,-0.03356730565428734,-0.055028825998306274,-0.0027546477504074574,-0.03629273548722267,0.07130573689937592,0.018327811732888222,0.06595005840063095,0.013846860267221928,-0.08154423534870148,-0.07151347398757935,0.00790437776595354,-0.06149744987487793,-0.022869959473609924,0.029231837019324303,0.022526564076542854,0.0157461017370224,-0.03526356816291809,0.013372574932873249,0.10142601281404495,-0.023133620619773865,-0.01636100560426712,-0.03161153942346573,-0.009829082526266575,-0.0007599534583278,0.0253005214035511,-0.015236525796353817,-0.06685440242290497,0.032975934445858,-0.0038270680233836174,-0.02961929701268673,-0.007523690350353718,-0.061209410429000854,0.033110491931438446,-0.033687856048345566,-0.03424225002527237,0.04079181328415871,0.016239164397120476,0.019526585936546326,-0.02370549738407135,-0.01787569932639599,-0.15340423583984375,-0.004680455196648836,-0.06749895960092545,0.020757347345352173,0.030478591099381447,0.02766594849526882,0.018069947138428688,0.02323627658188343,0.03898901119828224,0.0020324811339378357,-0.008962715975940228,-0.02266806550323963,0.012968463823199272,-0.06779391318559647,0.008860809728503227,-0.027748972177505493,0.02880239114165306,-0.03892047703266144,-0.008554046042263508,-0.06850600987672806,-0.011829125694930553,0.03639303520321846,0.059210579842329025,0.10414296388626099,0.061427973210811615,-0.04482593387365341,-0.02459583804011345,0.01659446768462658,0.06286382675170898,0.02553640492260456,0.07192686945199966,-0.032189350575208664,0.036042168736457825,-0.0936412438750267,-0.08384685218334198,-0.009029540233314037,1.1363087874601458e-33,-0.0535007044672966,-0.05346459522843361,0.02457546442747116,0.13776805996894836,0.05734455958008766,-0.022399641573429108,-0.03140471130609512,0.023011159151792526,-0.027954980731010437,-0.0003102275659330189,-0.0034739773254841566,0.08982858806848526,0.007356264162808657,-0.005956974346190691,-0.0997554138302803,-0.018565766513347626,-0.010067329742014408,0.017593804746866226,-0.015512406826019287,-0.004809650592505932,-0.03521879389882088,0.039342086762189865,0.008599011227488518,-0.08378998935222626,-0.07217520475387573,0.03991794213652611,0.0461130365729332,0.03654160723090172,-0.029894329607486725,0.04272482916712761,0.036195870488882065,0.032062891870737076,-0.04954855516552925,-0.0623331218957901,-0.023075927048921585,0.012042611837387085,0.07495438307523727,-0.09195833653211594,0.024375734850764275,0.012374266982078552,0.008488673716783524,0.04534371569752693,-0.030143897980451584,-0.03654301539063454,-0.016099965199828148,0.042727451771497726,0.1189332976937294,-0.02169622853398323,0.06192249432206154,0.10279742628335953,-0.011236156336963177,0.03993942588567734,-0.05795486271381378,-0.06849370151758194,-0.01570526510477066,0.0209792610257864,-0.009838023222982883,0.011663034558296204,0.0028467585798352957,-0.005135799292474985,0.019027678295969963,0.06180483475327492,0.03463656082749367,0.03943002223968506,0.006527148187160492,0.10723691433668137,-0.052230287343263626,-0.038980141282081604,-0.005468434188514948,-0.0042027137242257595,-0.0912611186504364,-0.06392908096313477,-0.001011786051094532,-0.1248607411980629,0.06146076321601868,-0.020887330174446106,-0.04279506951570511,-0.026425376534461975,-0.05451858416199684,-0.022082829847931862,0.01268049143254757,-0.05264658480882645,-0.03309226781129837,-0.056376975029706955,0.003494222881272435,-0.08077792823314667,0.09605363011360168,-0.030929507687687874,-0.05556982755661011,-0.008718621917068958,0.013347085565328598,0.015351629815995693,0.0380171462893486,-0.02391887456178665,-0.06431494653224945,-6.100961240029083e-34,-0.004778111353516579,-0.12383526563644409,0.011068038642406464,0.07420206815004349,0.00862929131835699,-0.005671905819326639,-0.05813141539692879,0.006413743831217289,0.0052284556441009045,0.015295655466616154,0.0944441482424736,-0.037753500044345856,-0.011615938507020473,-0.004251508507877588,-0.025315217673778534,-0.055633701384067535,-0.016575438901782036,0.020814333111047745,-0.035881441086530685,0.05406393110752106,-0.03582067787647247,0.05015552043914795,0.015692036598920822,-0.09850876778364182,0.0441361665725708,0.08662769198417664,0.022791091352701187,0.04519123211503029,-0.028579549863934517,-0.0438271127641201,0.07744795083999634,-0.008498755283653736,-0.12956617772579193,-0.07223891466856003,-0.014624045230448246,0.05912277102470398,0.0062992689199745655,0.009378019720315933,-0.08269385248422623,-0.04255584254860878,-0.013701202347874641,0.0022987884003669024,0.02803783491253853,-0.013053469359874725,-0.04045690968632698,-0.04979556053876877,0.010479684919118881,0.09133594483137131,0.052003759890794754,0.089484304189682,-0.023606833070516586,0.06665701419115067,-0.0034069709945470095,-0.05336708948016167,0.03290432319045067,0.02660367451608181,0.06094438582658768,-0.028819743543863297,0.016649655997753143,-0.021041283383965492,-0.01442366000264883,-0.008230612613260746,-0.05728115886449814,-0.03970053791999817,0.14207549393177032,0.0014489166205748916,-0.01074815820902586,0.029948661103844643,0.009141490794718266,0.008050909265875816,-0.010073613375425339,0.02558600716292858,-0.03141596168279648,-0.0015282435342669487,0.041795775294303894,-0.001677689841017127,-0.07130283862352371,0.013353877700865269,-0.031606275588274,-0.09404521435499191,-0.004014397505670786,0.0016407679067924619,-0.036885134875774384,-0.011210286058485508,-0.023901784792542458,0.06424668431282043,-0.12505491077899933,-0.0036595079582184553,0.018180042505264282,-0.011085313744843006,-0.030638577416539192,0.006558871362358332,0.003081116359680891,0.000083381004515104,0.0877595916390419,-2.532012821632179e-8,-0.06810488551855087,0.037484195083379745,-0.028046518564224243,0.012750716879963875,0.0940321832895279,-0.08654514700174332,0.017384355887770653,0.048155706375837326,-0.10569944232702255,0.07300486415624619,0.032683175057172775,-0.05470433086156845,0.053938284516334534,0.07248035818338394,0.040634553879499435,-0.015359935350716114,0.16966433823108673,0.007871048524975777,-0.02491014450788498,-0.027532247826457024,0.08878276497125626,0.039620693773031235,-0.006351689342409372,-0.10926736146211624,0.0030123088508844376,0.11096843332052231,-0.02957305684685707,0.018884742632508278,-0.06945647299289703,0.00440410990267992,0.054552484303712845,0.004793407395482063,-0.02067631669342518,-0.06447549909353256,-0.06549959629774094,-0.011824505403637886,0.09530366957187653,0.04804336652159691,-0.09451725333929062,-0.003288037609308958,0.022036664187908173,0.058626577258110046,0.046663809567689896,0.10399094969034195,-0.043366458266973495,0.01095156092196703,0.09223874658346176,0.006478654220700264,0.02066182717680931,-0.0045254407450556755,0.048826370388269424,0.02722030133008957,0.09796039015054703,0.01876349002122879,0.03011527843773365,-0.007149478420615196,-0.0344395749270916,0.05748462677001953,-0.13658557832241058,0.033404167741537094,0.14534173905849457,0.035541750490665436,-0.08472965657711029,-0.02983292005956173]},{"text":"A sister or a brother can never, unless indeed such symptoms have been shown early, suspect the other of fraud or false dealing, when another friend, however strongly he may be attached, may, in spite of himself, be contemplated with suspicion.","book":"1984","chapter":126,"embedding":[-0.04851461946964264,0.030203858390450478,-0.060717083513736725,0.0049461303278803825,0.02612149342894554,-0.06176631897687912,0.04522563889622688,-0.037348877638578415,0.03697119280695915,-0.06196682155132294,0.07151983678340912,0.017442844808101654,0.09484859555959702,0.006406594067811966,-0.02246193028986454,-0.0651431456208229,-0.030603935942053795,0.009164560586214066,-0.06205614283680916,0.07444217801094055,-0.02712121605873108,-0.11344106495380402,0.029374100267887115,-0.06447821855545044,-0.0037853331305086613,0.00301134935580194,0.0066282921470701694,-0.04979155585169792,0.00376741960644722,-0.01861412078142166,-0.008005338720977306,0.03805174678564072,-0.08400929719209671,0.08665084838867188,0.09673359245061874,0.04578796401619911,-0.02041400410234928,0.04407581314444542,0.07672989368438721,-0.04930625855922699,-0.0038036603946238756,-0.0927734375,0.07310876995325089,-0.053449541330337524,-0.05816030874848366,0.017560260370373726,-0.02201123535633087,0.09334137290716171,-0.007445738185197115,-0.02624483034014702,-0.07673914730548859,-0.08885933458805084,0.0391487292945385,0.012787383049726486,0.02714078314602375,0.0610588975250721,-0.006147406529635191,-0.025822311639785767,-0.05981641635298729,0.06453598290681839,-0.04190152511000633,-0.004449005704373121,0.04386221989989281,-0.03621843457221985,-0.02094038762152195,0.17027735710144043,-0.017061762511730194,-0.004441521130502224,0.08518023788928986,0.08939984440803528,0.06307648122310638,-0.0066971261985599995,-0.05180620029568672,0.012678317725658417,-0.036990828812122345,0.02202501893043518,0.017192691564559937,-0.003474186174571514,0.017972515895962715,-0.01782984286546707,-0.12354541569948196,0.08207766711711884,-0.03259923309087753,-0.017742203548550606,-0.023090222850441933,-0.03594097122550011,-0.030317924916744232,-0.085763119161129,-0.0333779938519001,-0.02053230255842209,-0.07186389714479446,-0.015892332419753075,0.004209833685308695,-0.04450400546193123,0.0396343357861042,0.05416017025709152,-0.006959181744605303,0.011321775615215302,-0.11126267164945602,0.0347096212208271,-0.050284165889024734,-0.04238700866699219,0.03811930492520332,0.033574819564819336,-0.0016298395348712802,0.02499655820429325,0.040337275713682175,-0.07895666360855103,0.034597937017679214,-0.0106765516102314,-0.0064020841382443905,-0.06668747961521149,0.082910917699337,-0.036985885351896286,0.023390039801597595,-0.024104073643684387,0.03058055229485035,0.08059778809547424,-0.07265642285346985,-0.07428126037120819,0.012656843289732933,0.03346475586295128,0.0041264500468969345,0.005788078531622887,-0.007995257154107094,-0.021092984825372696,-0.05560864135622978,3.8644732645830314e-35,0.05339988321065903,0.07117385417222977,0.0034066392108798027,0.026491140946745872,-0.029959989711642265,0.008952245116233826,-0.041043009608983994,0.016366934403777122,0.080875463783741,-0.004361581522971392,0.044746797531843185,-0.009595713578164577,0.017225231975317,-0.06845543533563614,-0.01558960136026144,0.09140250831842422,0.06505370885133743,0.020608969032764435,0.019241781905293465,0.04092761501669884,0.08009247481822968,-0.09233591705560684,0.008806305006146431,0.012881177477538586,-0.07056150585412979,-0.036714643239974976,0.02121913991868496,-0.016098078340291977,0.0369100347161293,0.02109469473361969,0.002004178473725915,0.0610954612493515,0.027957631275057793,0.032192934304475784,-0.052678488194942474,0.0042455135844647884,0.05389028415083885,0.044889356940984726,0.000051784212701022625,-0.021622881293296814,-0.03309052065014839,0.0025551393628120422,0.031542375683784485,-0.02190699614584446,-0.005647995509207249,0.009176362305879593,0.04952392727136612,-0.07163500040769577,-0.09184910356998444,-0.031315598636865616,0.021519480273127556,0.010446133092045784,0.048168741166591644,0.03222308307886124,0.00360737182199955,0.08455247431993484,0.03803429380059242,0.0069792806170880795,0.024535687640309334,0.06619958579540253,0.08615175634622574,-0.07935399562120438,-0.05488419905304909,0.001710628974251449,-0.06649672240018845,-0.009295943193137646,0.0314476303756237,-0.051455579698085785,-0.06946436315774918,-0.009111810475587845,-0.04407258704304695,0.08645755797624588,-0.08861309289932251,-0.05038771405816078,-0.005246489308774471,-0.0073480927385389805,-0.0612177811563015,0.024463284760713577,-0.006003579590469599,-0.017239613458514214,-0.03551597148180008,-0.07616846263408661,0.05974753201007843,0.02565000392496586,-0.0790826603770256,0.0439697802066803,-0.054624319076538086,-0.010820996016263962,-0.047517869621515274,0.07723864167928696,0.08681297302246094,0.000300241110380739,0.04095013067126274,0.008428404107689857,0.04139228165149689,-2.373779700397096e-33,-0.007971766404807568,0.004600115120410919,0.02817043475806713,-0.046726275235414505,-0.007587857078760862,-0.06499224901199341,-0.050723783671855927,-0.024677053093910217,0.004965726286172867,-0.003010120242834091,-0.07268599420785904,-0.014097392559051514,0.07151758670806885,0.06381435692310333,-0.03107963502407074,0.05185243859887123,0.07385806739330292,0.05605412647128105,0.07729960978031158,-0.0639074519276619,0.01736695133149624,-0.03946936875581741,0.0359945110976696,-0.005837511271238327,0.044407010078430176,0.03238371014595032,0.07561331987380981,-0.01405258011072874,-0.10923361033201218,-0.0006390361813828349,0.04668452963232994,0.10433132201433182,0.06723173707723618,-0.0034558542538434267,0.017755182459950447,-0.002734127454459667,-0.05915529653429985,-0.039802130311727524,-0.0054970234632492065,-0.06928493082523346,0.045706115663051605,-0.014425288885831833,0.018679102882742882,-0.07924544811248779,-0.0714489072561264,-0.020071081817150116,0.07707081735134125,-0.0006283908733166754,0.10162986814975739,0.002614023396745324,0.008138607256114483,0.042293474078178406,0.06815316528081894,0.02186763472855091,-0.04267587885260582,-0.02346726693212986,-0.014326795935630798,0.011815902777016163,0.01634390465915203,0.024563323706388474,0.01819489151239395,-0.05171854421496391,-0.0766424611210823,0.06056930497288704,-0.02794669382274151,0.05441344529390335,-0.028840383514761925,-0.04839096963405609,0.1686236709356308,0.1382780224084854,-0.002291733166202903,-0.0719233974814415,-0.06953375041484833,-0.01861441880464554,-0.0005297697498463094,0.06994704902172089,-0.12679752707481384,-0.029234543442726135,-0.025217877700924873,-0.05564398318529129,-0.03403642773628235,-0.03214177116751671,0.08049074560403824,-0.047827593982219696,-0.02149854600429535,-0.04506326839327812,0.07353673875331879,0.046566132456064224,0.016859017312526703,-0.012749675661325455,0.020951317623257637,-0.04300294816493988,-0.014336883090436459,-0.08466847985982895,-0.07770118862390518,-3.593720521166688e-8,0.057568348944187164,-0.04530457407236099,0.060850344598293304,-0.11045429110527039,0.012258309870958328,0.07335706055164337,0.06107601523399353,-0.04689484462141991,-0.052865855395793915,0.019786227494478226,-0.016047824174165726,-0.008955532684922218,0.005995928775519133,-0.04385427385568619,0.021707046777009964,-0.060106292366981506,0.014043932780623436,-0.10463713854551315,-0.03422311693429947,-0.07939537614583969,0.016370804980397224,-0.031454846262931824,0.00011862683459185064,0.12564896047115326,-0.0555126927793026,-0.06697250157594681,0.03641204163432121,0.0318877249956131,-0.015618584118783474,-0.0007882562349550426,-0.06825412809848785,0.0036332986783236265,0.022685937583446503,0.018345296382904053,-0.002809500088915229,0.007146330084651709,0.006499060429632664,0.02802341803908348,0.015612108632922173,-0.032349344342947006,0.07566814124584198,-0.0026949632447212934,-0.056739602237939835,0.030061449855566025,0.018841775134205818,-0.042210038751363754,0.04511241242289543,-0.11588931083679199,0.01931433379650116,-0.08057786524295807,-0.01608864776790142,0.02710425853729248,-0.059244729578495026,0.0657588317990303,-0.008081500418484211,0.008028659038245678,-0.0073699611239135265,0.12451713532209396,-0.012375159189105034,-0.021812178194522858,0.04134942963719368,-0.013990839011967182,0.005107104778289795,-0.08868704736232758]},{"text":"And what, Margaret, will be the state of your mind?","book":"1984","chapter":126,"embedding":[-0.0075284638442099094,-0.031022746115922928,0.04173317924141884,-0.009418739005923271,-0.053824570029973984,0.008330313488841057,0.013676184229552746,-0.05418236553668976,0.04844338446855545,0.033543381839990616,-0.020918749272823334,0.003557036630809307,-0.005580877885222435,-0.10836691409349442,-0.01847579888999462,0.08879489451646805,-0.004174903500825167,-0.07034848630428314,0.01961701177060604,0.09956049174070358,-0.001782066305167973,0.021252475678920746,0.06661871075630188,0.0218511950224638,-0.03172794356942177,0.05075780302286148,0.03355545923113823,-0.021031027659773827,-0.03931601345539093,-0.03078758344054222,-0.07109479606151581,0.00284297252073884,-0.08825508505105972,0.061834368854761124,-0.0013027286622673273,0.012579078786075115,-0.015883075073361397,0.019196240231394768,0.05111460015177727,-0.057225387543439865,-0.0204942487180233,-0.048839353024959564,-0.025625495240092278,-0.03340805321931839,-0.0037966035306453705,-0.06460796296596527,0.006041924934834242,0.06599639356136322,-0.042468540370464325,-0.12254298478364944,-0.06911960989236832,0.03987530246376991,-0.061637070029973984,-0.03353876620531082,0.032635703682899475,0.03476587310433388,0.029272811487317085,0.0029187363106757402,-0.031180234625935555,0.07233357429504395,-0.07282685488462448,0.010287957265973091,-0.03674320504069328,0.04085877165198326,0.049743201583623886,0.009773108176887035,0.012490656226873398,0.07636386156082153,-0.06742825359106064,-0.03638854995369911,-0.06048329174518585,-0.00900146085768938,0.12213187664747238,-0.05030162259936333,0.006213302258402109,-0.047744203358888626,0.03357121720910072,-0.04256373271346092,0.05097907781600952,0.04233633726835251,-0.05635910481214523,0.05699582025408745,0.029123257845640182,0.018003426492214203,0.013274338096380234,-0.04095025733113289,0.02453722432255745,-0.01709628477692604,0.04505109786987305,0.022654984146356583,-0.09733980894088745,-0.11183656752109528,-0.04971050098538399,0.05301667004823685,0.0025728847831487656,0.05128537490963936,-0.07249109447002411,-0.08543425053358078,-0.030215207487344742,-0.010681486688554287,0.017904646694660187,0.11954757571220398,0.015970243141055107,-0.0037623820826411247,0.012177793309092522,-0.037992924451828,-0.018030328676104546,-0.00845740269869566,0.022357726469635963,-0.060893215239048004,0.015625694766640663,-0.052848972380161285,0.027056192979216576,0.029475191608071327,0.004155261907726526,0.03177471086382866,0.06810284405946732,0.028118018060922623,-0.014775671996176243,-0.034548319876194,0.02752726338803768,0.02181309461593628,0.01639363542199135,-0.015429634600877762,0.01326021458953619,-0.030026525259017944,-0.026903735473752022,-7.024449346666746e-33,-0.049740951508283615,-0.032596051692962646,0.022284062579274178,0.11188867688179016,-0.038985732942819595,0.11963458359241486,0.010748895816504955,-0.026184506714344025,0.012992511503398418,-0.02411256916821003,-0.02104257605969906,-0.05920380726456642,-0.060740988701581955,0.031551543623209,-0.013374795205891132,0.025556189939379692,-0.05895095691084862,0.0675957128405571,0.018015652894973755,0.02205793373286724,-0.003386062802746892,0.18493740260601044,-0.04105203226208687,-0.06050559878349304,0.030921708792448044,-0.018115796148777008,0.1021093800663948,0.0455036535859108,-0.031494587659835815,0.02160615473985672,-0.018417594954371452,0.0626533105969429,-0.004171437118202448,0.003181981388479471,0.013610122725367546,0.08808475732803345,-0.07649298012256622,-0.06721457093954086,0.020754586905241013,-0.013839990831911564,0.068892702460289,0.014974666759371758,0.1083327978849411,0.039676763117313385,-0.10551553964614868,-0.03546297550201416,0.06310943514108658,-0.007478023413568735,-0.041994549334049225,0.005241914186626673,-0.04454832896590233,-0.04169425740838051,-0.016854962334036827,0.05002511665225029,-0.035536110401153564,0.024279119446873665,0.01117810606956482,0.019751127809286118,0.04566752538084984,-0.035575732588768005,-0.07908371835947037,-0.007506329566240311,-0.004237785004079342,0.009065769612789154,-0.007831576280295849,0.056541796773672104,-0.09443666785955429,-0.07003425061702728,0.013130546547472477,0.04053604230284691,-0.01600062847137451,0.06704940646886826,0.024669224396348,0.050541460514068604,-0.020223814994096756,0.018230397254228592,0.11026787757873535,0.012273655273020267,-0.057909682393074036,-0.06518107652664185,0.07358741760253906,-0.002644840395078063,-0.07860686630010605,0.020868312567472458,0.10596350580453873,0.014373919926583767,0.03364282473921776,-0.07364674657583237,-0.030728386715054512,-0.06886565685272217,0.0506075918674469,0.01071364525705576,0.11010977625846863,-0.000036090346839046106,-0.09694177657365799,4.012996654385191e-33,-0.008020889014005661,-0.05406322702765465,0.08502491563558578,0.024845480918884277,0.015629708766937256,-0.09167510271072388,0.029288170859217644,0.0392383337020874,-0.054486293345689774,-0.06397654116153717,-0.07917618751525879,-0.06105370074510574,0.05168803036212921,0.06435348093509674,-0.016229158267378807,-0.024050237610936165,0.002345463028177619,-0.09726320952177048,0.020458286628127098,0.004713272675871849,-0.11700889468193054,0.008674783632159233,-0.07116107642650604,0.05562850087881088,0.04547486826777458,0.06572119891643524,0.09229369461536407,-0.09488562494516373,-0.07794365286827087,-0.09950751066207886,0.03236769512295723,-0.013263913802802563,-0.13202714920043945,0.00645696884021163,-0.006236719433218241,0.009301459416747093,0.0836947038769722,-0.09323092550039291,-0.0336327888071537,-0.017063021659851074,-0.03904013708233833,-0.054359160363674164,0.03332676365971565,0.06983521580696106,-0.031733620911836624,-0.025138776749372482,0.056389786303043365,0.07417801022529602,0.017814811319112778,0.05417397618293762,-0.0994982197880745,0.01432567834854126,-0.00798540934920311,0.0021335347555577755,0.05644333362579346,-0.05472169071435928,0.03510317951440811,-0.06173006072640419,0.08311162143945694,-0.010056136175990105,-0.04223347082734108,-0.010084724053740501,-0.05071825161576271,0.015949079766869545,0.03256366029381752,0.024345768615603447,-0.003237047465518117,0.09030376374721527,0.010293345898389816,0.011618736200034618,0.06454557925462723,0.029599593952298164,-0.06997060030698776,-0.009122355841100216,0.04685729742050171,-0.011205160059034824,0.08190326392650604,-0.04963843151926994,0.015508062206208706,-0.02961265668272972,-0.010237722657620907,-0.043395452201366425,-0.04649268835783005,-0.018465746194124222,0.013317722827196121,-0.05791250616312027,0.03247411921620369,0.0039772461168468,-0.024676186963915825,-0.01679619960486889,-0.04574624076485634,-0.01637328788638115,0.017168523743748665,-0.10058380663394928,-0.02850640006363392,-1.9229464243153416e-8,0.0003602015785872936,-0.028819452971220016,-0.04036318510770798,-0.014799162745475769,0.057286374270915985,0.012722523882985115,0.014074956998229027,-0.0032427897676825523,-0.0033333157189190388,0.014958403073251247,0.054989784955978394,0.05190015956759453,0.002737934933975339,-0.02147805131971836,0.07155683636665344,0.0033490248024463654,-0.006455283612012863,-0.030816365033388138,-0.006942685227841139,0.021717580035328865,0.05761493742465973,-0.017215119674801826,0.005496378988027573,0.06247442960739136,-0.04751830920577049,0.03786734491586685,0.028917167335748672,0.05597437545657158,-0.04055551066994667,0.11619534343481064,0.014016986824572086,0.0589582584798336,-0.033192671835422516,0.03688356280326843,-0.1017969623208046,-0.07662665843963623,-0.019862255081534386,0.03231005743145943,0.01658584363758564,0.027195563539862633,-0.002758344868198037,0.062587670981884,0.005618105176836252,0.06424166262149811,0.0015556365251541138,-0.08103024959564209,0.0714963749051094,0.025562673807144165,0.025739500299096107,-0.013938301242887974,0.033444736152887344,0.09251460433006287,0.09919601678848267,0.0651584267616272,0.07335025072097778,0.0704052522778511,-0.02520008198916912,0.021214494481682777,-0.10291276127099991,0.0145513154566288,0.08884084224700928,-0.0774833932518959,-0.03231175243854523,-0.021771036088466644]},{"text":"A scene has just passed of such uncommon interest that, although it is highly probable that these papers may never reach you, yet I cannot forbear recording it.","book":"1984","chapter":127,"embedding":[-0.13118818402290344,-0.02280835621058941,-0.056733690202236176,-0.02042284980416298,0.07221481949090958,0.049728624522686005,-0.10707981139421463,-0.02388140745460987,-0.01437534112483263,-0.03611915186047554,-0.001393152866512537,0.02623233012855053,-0.04878115653991699,-0.04294149950146675,-0.035450711846351624,-0.0632016509771347,0.013973020948469639,-0.00781357940286398,-0.006380735896527767,0.12852495908737183,0.027457278221845627,0.01572580821812153,0.10813013464212418,-0.03655124828219414,0.021643823012709618,-0.05076255649328232,-0.048151835799217224,-0.058262500911951065,-0.014006576500833035,-0.042568083852529526,0.031725190579891205,0.11224022507667542,0.0012797756353393197,0.016706423833966255,0.09910090267658234,0.02813463658094406,-0.01790148951113224,-0.004035026766359806,0.015507848933339119,-0.0025451669935137033,0.04048070311546326,0.002330770483240485,0.012334099039435387,-0.026322977617383003,-0.044957395642995834,0.01512066088616848,-0.012561515904963017,-0.07031597197055817,0.009101823903620243,0.020578280091285706,-0.12359045445919037,0.034327082335948944,0.008027056232094765,0.025856006890535355,-0.0348258912563324,-0.004589318297803402,0.008607014082372189,-0.024937119334936142,-0.006426429841667414,0.019880617037415504,-0.028610413894057274,0.01799938641488552,-0.07849030941724777,-0.01595895178616047,-0.012851095758378506,0.11096946895122528,-0.012142501771450043,0.03809546306729317,0.005940657574683428,-0.02268075756728649,-0.043379295617341995,0.0467812679708004,-0.017967037856578827,-0.03297125920653343,-0.029668323695659637,-0.0893184021115303,-0.017962710931897163,0.0015423428267240524,0.0033821023534983397,-0.14147932827472687,0.027654636651277542,-0.11080958694219589,0.0027276244945824146,-0.00245746411383152,-0.02375408075749874,-0.01997293345630169,0.06205657869577408,0.04259682074189186,0.062855564057827,0.06336688250303268,-0.1147407591342926,-0.034106090664863586,-0.029563577845692635,0.00006108277011662722,-0.07502280175685883,-0.04734646901488304,-0.01795078068971634,0.06499693542718887,0.13196928799152374,0.01641778275370598,0.07016222923994064,-0.05006248503923416,0.006121104583144188,-0.022992955520749092,-0.014192399568855762,-0.05709725245833397,-0.043246347457170486,-0.049882836639881134,0.015127910301089287,-0.03146987780928612,-0.024509040638804436,0.05784706026315689,0.05877045542001724,-0.005681580863893032,0.10144879668951035,0.0138312429189682,0.005970761179924011,-0.010000467300415039,0.014334505423903465,-0.03738667443394661,0.057494666427373886,0.03636029735207558,-0.06615565717220306,0.03176925703883171,-0.08824411034584045,-0.08087321370840073,0.019761929288506508,-1.6761124155825448e-33,0.09169234335422516,-0.013581636361777782,0.02678588405251503,0.00258098472841084,0.07910897582769394,0.043193429708480835,-0.045395366847515106,-0.004665520042181015,7.460162123607006e-7,0.008738493546843529,-0.028158238157629967,-0.02024048939347267,0.013793203979730606,-0.042752236127853394,-0.06280915439128876,0.03969309851527214,-0.05303122475743294,0.02001497894525528,-0.032109349966049194,0.02292770706117153,-0.0027597995940595865,-0.04317234829068184,-0.022180184721946716,-0.01611337438225746,0.030856914818286896,0.049646422266960144,0.053885504603385925,-0.058688368648290634,0.07123599946498871,0.024823546409606934,-0.041669730097055435,0.03340528532862663,0.03226330876350403,-0.08944378793239594,0.045442696660757065,0.08589652180671692,-0.045851197093725204,0.0002151199587387964,-0.05185263976454735,0.0019680834375321865,-0.04310330003499985,0.014010732062160969,-0.0552210807800293,-0.056850600987672806,-0.045521330088377,0.03507581725716591,0.06626100838184357,0.0835757777094841,0.10444242507219315,0.08635612577199936,0.03734477981925011,0.009625175036489964,-0.08606545627117157,-0.10857152193784714,-0.010601376183331013,0.09744210541248322,0.03522849828004837,0.010427608154714108,0.06236528977751732,-0.03520546853542328,0.1089356318116188,0.030293576419353485,-0.006037511397153139,-0.02047928050160408,-0.07404175400733948,0.01742818020284176,-0.05128122493624687,-0.019278056919574738,0.008455522358417511,-0.0640050619840622,-0.08553855121135712,-0.033139701932668686,-0.02255874127149582,-0.08830027282238007,0.09026851505041122,0.06569266319274902,-0.05219772458076477,0.009320743381977081,-0.043574027717113495,0.04150812327861786,-0.09357065707445145,-0.044467344880104065,-0.02428225241601467,0.014110979624092579,0.050921738147735596,0.018844563513994217,0.06317751109600067,-0.01807757280766964,-0.05880574509501457,0.03760115057229996,0.01967511884868145,0.030951257795095444,-0.08619163930416107,-0.062417928129434586,-0.08056111633777618,-1.71873179998153e-33,0.021645277738571167,-0.059018831700086594,-0.06598158925771713,0.014449462294578552,-0.005728129297494888,-0.0037926884833723307,0.03303899988532066,0.14090976119041443,0.02766920067369938,0.01996651291847229,-0.04068256914615631,-0.05449048429727554,0.018979666754603386,-0.02285151742398739,-0.0291349645704031,-0.050948675721883774,-0.034319017082452774,0.041264064610004425,-0.02210203930735588,0.0511980801820755,0.005391734652221203,-0.011700676754117012,0.08621270209550858,0.018681632354855537,-0.01174929365515709,0.0350603424012661,0.04306710511445999,0.017072439193725586,-0.024640586227178574,-0.09371303766965866,-0.003641661023721099,-0.020592041313648224,-0.11554915457963943,0.020253188908100128,-0.008553560823202133,0.015082241035997868,0.10891824215650558,-0.04435376077890396,-0.04934869334101677,-0.02926609106361866,-0.01180481631308794,0.04023297131061554,-0.04844984412193298,0.010972223244607449,-0.06090239807963371,-0.07221853733062744,-0.01036063302308321,0.05668984353542328,0.018300281837582588,0.042996373027563095,-0.03573920205235481,0.04404408484697342,0.028590507805347443,-0.010329777374863625,-0.05556093528866768,0.07580290734767914,0.004224039148539305,-0.07589656114578247,0.028211329132318497,0.06880457699298859,-0.022377291694283485,0.0597253292798996,-0.09435994178056717,-0.09022877365350723,0.08455167710781097,0.02025757171213627,0.007461842615157366,0.004401461686939001,-0.0077240439131855965,0.09415888786315918,0.016465850174427032,-0.022093575447797775,-0.04471324756741524,0.011272775940597057,0.038879431784152985,0.07263126224279404,-0.0607229545712471,-0.05035240203142166,-0.005425020586699247,-0.03675313666462898,0.03893217071890831,-0.05429302155971527,0.051569774746894836,0.0425267219543457,0.11410901695489883,0.05976942181587219,0.05412428081035614,-0.02079582028090954,0.006549630779772997,-0.022783860564231873,0.006655999459326267,0.00005769004565081559,0.0767848938703537,-0.008432356640696526,0.03057102859020233,-3.5965083355904426e-8,-0.09496799856424332,0.06504154205322266,0.01583893410861492,-0.09615426510572433,0.01191935408860445,-0.058940812945365906,0.06322018057107925,0.013369719497859478,-0.023370249196887016,-0.018604746088385582,-0.013649189844727516,-0.07330749928951263,-0.011025079526007175,0.028975024819374084,-0.003850719192996621,-0.047430165112018585,0.1043761819601059,-0.0634031668305397,-0.040169402956962585,-0.018364645540714264,0.022219641134142876,-0.025086121633648872,0.07894445955753326,-0.042218197137117386,-0.01360692922025919,0.05553070828318596,0.010745665989816189,-0.035306353121995926,0.03090071864426136,-0.09107416123151779,-0.0815524011850357,0.08394772559404373,0.017426632344722748,-0.03349021449685097,0.027355723083019257,-0.007966163568198681,-0.002202332718297839,0.004042113199830055,-0.027250055223703384,0.003357233479619026,0.025462353602051735,-0.031215574592351913,0.0012680023210123181,0.078575000166893,0.09113375097513199,0.07304217666387558,0.048340313136577606,-0.08991780132055283,-0.022916512563824654,0.03408029302954674,-0.05604465678334236,-0.030231831595301628,0.05994610860943794,0.05811645835638046,-0.0030716003384441137,0.055309709161520004,0.05051952600479126,0.010558080859482288,0.00035269491490907967,-0.025715257972478867,0.09313391149044037,0.032229118049144745,-0.08465025573968887,0.047568850219249725]},{"text":"Yet could I, in justice, or even in possibility, refuse this demand?","book":"1984","chapter":128,"embedding":[-0.09026103466749191,0.06942106783390045,0.009532138705253601,-0.06301780790090561,-0.013944519683718681,-0.04632791504263878,0.011970225721597672,-0.047556180506944656,-0.0004361897299531847,0.019772576168179512,-0.008764908649027348,-0.004210431594401598,0.010415643453598022,0.02193029224872589,0.04630875959992409,-0.0033135907724499702,0.11338867247104645,0.006770182866603136,-0.0031923491042107344,0.12379196286201477,0.05291394144296646,0.03425419703125954,-0.05295649915933609,-0.005690436810255051,0.0037393192760646343,-0.018061531707644463,0.005117299035191536,0.0546841137111187,0.02526400052011013,-0.04779357090592384,0.04891018941998482,0.0018552629044279456,-0.02450254000723362,0.05181366577744484,0.05077292397618294,-0.040945570915937424,-0.03063821606338024,-0.08253442496061325,0.0277414433658123,-0.044349752366542816,0.07278216630220413,-0.04374944046139717,-0.02778496779501438,-0.0030603280756622553,-0.006959876976907253,-0.011754665523767471,0.0064278231002390385,0.00015079962031450123,-0.07682013511657715,-0.04365598410367966,-0.011820678599178791,-0.013939496129751205,-0.04262341558933258,0.04907229170203209,-0.057917434722185135,-0.038245659321546555,0.01080860011279583,-0.004394905176013708,0.022915955632925034,0.04228678345680237,-0.04629728943109512,-0.026730438694357872,0.02856179140508175,0.03702441602945328,0.030474193394184113,0.04627762734889984,-0.011842220090329647,0.010948794893920422,0.012371325865387917,0.06820803135633469,0.03961595892906189,0.05080869048833847,-0.004002728499472141,0.021111009642481804,-0.0403808169066906,-0.04970315098762512,0.04872006177902222,-0.04089054837822914,0.05080799013376236,-0.023657819256186485,-0.06754059344530106,-0.06658311933279037,-0.0777377113699913,-0.013201255351305008,-0.09007926285266876,-0.0775393694639206,-0.02215161733329296,0.010920013301074505,0.10876504331827164,-0.013312107883393764,-0.0017708770465105772,-0.04322404786944389,0.05105587840080261,-0.04375964030623436,-0.01655760407447815,-0.0214182510972023,0.03295791894197464,-0.02852792665362358,-0.05788579210639,0.03195427730679512,-0.02122591808438301,-0.013555641286075115,-0.0405685156583786,-0.07764071971178055,-0.018799085170030594,-0.057756077498197556,-0.06074738875031471,0.008199342526495457,-0.06999333947896957,0.015153651125729084,0.005178225692361593,-0.02026323787868023,0.07686937600374222,-0.07101444154977798,0.028276575729250908,0.020594481378793716,0.030220625922083855,0.05246809497475624,0.03491875156760216,-0.025582611560821533,-0.052604760974645615,0.08378789573907852,-0.07435569167137146,0.07125823944807053,-0.06160571798682213,-0.053141795098781586,-0.06146245077252388,-5.744673953247136e-33,-0.03128920868039131,-0.05755050107836723,0.03390068560838699,-0.08726666122674942,-0.029062805697321892,-0.01756923459470272,0.017323045060038567,0.027454154565930367,-0.013562625274062157,-0.015554217621684074,0.08356554061174393,0.021294238045811653,0.05032714083790779,-0.04749888926744461,-0.06447278708219528,0.025591764599084854,0.028059635311365128,-0.021683605387806892,0.06425584107637405,0.017261678352952003,0.046230170875787735,-0.08490122109651566,-0.016569621860980988,0.016897069290280342,-0.11837214976549149,-0.08344073593616486,-0.005974338855594397,-0.03129531815648079,0.1452193409204483,-0.021489830687642097,-0.005138817243278027,0.06274295598268509,0.057837482541799545,0.02848227508366108,0.0261122714728117,-0.0017567873001098633,0.0054848152212798595,0.040041856467723846,-0.016757532954216003,-0.10791213810443878,-0.019283199682831764,0.052290383726358414,0.06656169891357422,0.01299897488206625,0.01029786467552185,-0.045906100422143936,0.07636061310768127,-0.05820662900805473,-0.16069898009300232,0.05908701568841934,0.0009459104621782899,0.024830317124724388,0.005864642094820738,0.014785895124077797,-0.03574054315686226,-0.06813061237335205,-0.02343866601586342,0.04640922322869301,0.04393672198057175,0.014679242856800556,-0.042502421885728836,-0.04930446296930313,-0.0193474218249321,0.0972413569688797,-0.06387881189584732,0.016140669584274292,-0.015709873288869858,-0.0041034468449652195,-0.05559264495968819,-0.0415150448679924,0.03741700202226639,-0.04083957150578499,-0.06085989996790886,-0.021658988669514656,-0.027590829879045486,0.035260915756225586,0.05305120721459389,0.02813049592077732,0.06543618440628052,-0.10150426626205444,-0.0012897070264443755,0.0217681173235178,0.00474536931142211,0.10173562169075012,0.12983398139476776,-0.009117421694099903,0.06237252056598663,-0.050341639667749405,0.1078977957367897,-0.012476591393351555,-0.02512083761394024,-0.012873326428234577,-0.03369273245334625,-0.004956699907779694,0.05695232376456261,2.6085066368021136e-33,0.04018143191933632,-0.004773022141307592,-0.06410583108663559,0.015231410041451454,0.04940563067793846,0.05202054977416992,-0.0812515914440155,-0.12249311059713364,0.022737646475434303,0.07201685011386871,-0.03385043144226074,0.0038618340622633696,0.09673675894737244,0.019341541454195976,-0.03865201026201248,-0.029187044128775597,-0.018239619210362434,0.018934132531285286,-0.05181201174855232,0.05074947699904442,-0.05952001363039017,0.0014196770498529077,-0.0006090530077926815,0.07323909550905228,-0.0625782236456871,0.0726848766207695,0.05078871548175812,-0.04440746083855629,-0.028457920998334885,0.027700530365109444,-0.025867069140076637,-0.03402635455131531,-0.06976325809955597,-0.03326692059636116,0.04346402734518051,-0.014147665351629257,0.05918169021606445,0.03738095238804817,-0.07200060784816742,0.01408565603196621,-0.025554196909070015,0.03667318820953369,0.04386055842041969,0.003982832655310631,-0.027409639209508896,-0.09329111129045486,0.11924000829458237,-0.06784780323505402,0.016344387084245682,0.012155190110206604,-0.05428863316774368,0.013663667254149914,0.07444442808628082,0.06465332210063934,-0.02623688615858555,-0.05162576586008072,0.045561179518699646,0.015443526208400726,0.07811173796653748,0.014694507233798504,0.08383750915527344,0.013571116141974926,-0.04883085936307907,-0.06601312011480331,0.0729864090681076,-0.017770864069461823,-0.04123776778578758,-0.023616209626197815,0.08236722648143768,-0.009600657969713211,0.056382741779088974,-0.09728620201349258,0.08949710428714752,-0.033620163798332214,0.07422562688589096,-0.013977160677313805,0.05748487636446953,0.052583612501621246,-0.07961845397949219,-0.013679906725883484,0.06866326183080673,-0.05752589926123619,0.08680915832519531,-0.007394174579530954,0.021762799471616745,0.049807243049144745,-0.037512149661779404,-0.009570064954459667,0.04571380093693733,0.04348316416144371,-0.0001272939844056964,-0.0028796440456062555,0.05805165320634842,-0.03577063977718353,-0.017910504713654518,-2.45400109122329e-8,-0.011031058616936207,-0.08907842636108398,0.06105000525712967,0.02835390530526638,-0.010149466805160046,0.008228323422372341,-0.04647013917565346,-0.06612925976514816,-0.01760292984545231,-0.02712331898510456,0.06029239669442177,-0.007558646146208048,0.08950131386518478,0.045147739350795746,-0.0006945648929104209,0.12447306513786316,0.03120824694633484,-0.081964872777462,-0.032976098358631134,0.07137610763311386,-0.07463012635707855,0.04977412149310112,-0.00946496520191431,-0.03742986172437668,-0.0010595062049105763,0.020905401557683945,-0.0019262843998149037,-0.005500247702002525,0.0017372829606756568,0.07657001167535782,-0.06661760807037354,0.016628898680210114,-0.07148115336894989,-0.06988930702209473,-0.06986153870820999,-0.04873822629451752,-0.08308697491884232,0.047143857926130295,-0.04504410922527313,-0.040291957557201385,0.011431019753217697,0.033344268798828125,0.03789185732603073,0.05213000997900963,0.029048139229416847,0.0063507454469799995,-0.08927128463983536,0.0097392862662673,-0.00743810785934329,0.025106113404035568,-0.0709797814488411,-0.018160467967391014,0.09831871092319489,-0.006328674498945475,0.02116061933338642,0.060870684683322906,0.0567343533039093,0.047060467302799225,-0.102530337870121,0.02882145531475544,0.12008502334356308,-0.11429107934236526,0.039025068283081055,-0.056865330785512924]},{"text":"Be men, or be more than men.","book":"1984","chapter":128,"embedding":[0.06921602785587311,0.048849500715732574,0.014369201846420765,-0.027764180675148964,-0.032114677131175995,-0.04911313205957413,0.03532665595412254,-0.13714028894901276,-0.060506708920001984,0.021554280072450638,-0.06061998009681702,-0.07911820709705353,-0.0015526642091572285,-0.02953333780169487,0.11751841008663177,-0.02497234381735325,0.04398822784423828,0.016082141548395157,-0.013438865542411804,-0.013092258013784885,0.0189070887863636,-0.0759306326508522,0.009938144125044346,-0.059354137629270554,-0.11071464419364929,-0.042501743882894516,-0.0196452047675848,-0.007269371300935745,0.017040567472577095,0.07734010368585587,0.029849328100681305,-0.017567956820130348,0.02674376778304577,-0.0595015324652195,-0.03353329002857208,0.02072181925177574,-0.054860010743141174,-0.06695129722356796,0.08452637493610382,0.05356205999851227,-0.03200279921293259,-0.037565477192401886,0.03345885127782822,0.06833253055810928,-0.014747845008969307,0.027129225432872772,0.06213628128170967,0.0016918628243729472,0.015262224711477757,0.017675040289759636,0.0389079786837101,0.0186777301132679,-0.041517987847328186,0.010308953933417797,-0.020355839282274246,-0.01920359581708908,-0.058746177703142166,-0.007708834018558264,-0.008723871782422066,-0.02850327454507351,-0.043353017419576645,-0.001372206723317504,0.03651396557688713,0.04754762724041939,0.0689147561788559,-0.017600251361727715,0.004591097589582205,0.07683341950178146,-0.03574689105153084,0.08986611664295197,0.08169497549533844,0.02742716483771801,-0.09590373933315277,0.07502979785203934,0.019173551350831985,-0.04503650963306427,0.016008833423256874,-0.07348953187465668,0.017743362113833427,0.059095460921525955,-0.09346190840005875,-0.043833859264850616,-0.03363465145230293,0.06780364364385605,0.003115394152700901,-0.027409670874476433,0.001165678957477212,-0.03438384085893631,-0.04036562889814377,0.10511144250631332,-0.10945701599121094,0.0016802807804197073,0.059775080531835556,0.059258997440338135,0.017951833084225655,0.03379249572753906,-0.07362722605466843,0.021911783143877983,-0.029320571571588516,0.08488640934228897,0.03421418368816376,-0.037477705627679825,0.03468813747167587,0.005530084948986769,-0.06772375106811523,-0.021872837096452713,0.03784831613302231,0.058804482221603394,-0.0340648852288723,-0.015276193618774414,-0.019829161465168,-0.01418030634522438,-0.007721276488155127,0.028715213760733604,0.04466009512543678,-0.01619476079940796,0.09235461801290512,0.017294539138674736,0.008226803503930569,0.011803132481873035,0.024596627801656723,0.01506995502859354,0.05886504054069519,-0.00985737144947052,0.021045304834842682,0.0405791774392128,0.03472531959414482,-2.939006240756408e-33,-0.041577063500881195,0.035110823810100555,0.07656469941139221,0.10215688496828079,-0.036007240414619446,0.06372815370559692,0.08886734396219254,-0.034064050763845444,-0.02985488250851631,-0.07658879458904266,0.013480376452207565,-0.04899606853723526,-0.05120737850666046,-0.04575926810503006,0.010669562965631485,-0.0664251372218132,-0.018920311704277992,-0.010116878896951675,-0.013152457773685455,0.00747750885784626,0.03483368828892708,-0.02910449728369713,-0.11109425127506256,-0.08894743770360947,0.014742848463356495,0.013495437800884247,0.010150269605219364,-0.015840360894799232,0.01591854728758335,-0.0400564931333065,0.03976765647530556,0.04524154216051102,0.028397906571626663,0.07598742842674255,-0.032798562198877335,-0.009304809384047985,-0.05418052524328232,0.0730406790971756,0.004942924715578556,-0.052123136818408966,0.023118723183870316,-0.045873891562223434,-0.041028041392564774,-0.04000886529684067,0.09991607815027237,0.08983855694532394,0.07168469578027725,0.04932798072695732,-0.12409675866365433,0.02542315423488617,-0.058884069323539734,-0.016116922721266747,0.06715118139982224,-0.053477250039577484,0.033613067120313644,-0.09405957162380219,0.020359354093670845,0.04473022371530533,0.015593796968460083,-0.05490400269627571,0.010297559201717377,0.02687879465520382,0.08724565804004669,0.014549526385962963,-0.04317758232355118,-0.015262002125382423,0.051993973553180695,-0.00009122439223574474,0.058373235166072845,0.030228838324546814,-0.04392455890774727,0.0019268859177827835,-0.03852754458785057,0.11651204526424408,-0.040866319090127945,-0.02757520042359829,-0.02424706146121025,0.01890580914914608,0.05171660706400871,-0.09828909486532211,-0.053999725729227066,0.07516509294509888,-0.05115588381886482,0.01521780714392662,0.05081323906779289,-0.07563824951648712,0.024938436225056648,-0.0681537389755249,0.0147653017193079,0.09968343377113342,-0.007472469471395016,-0.04560592770576477,0.05968998372554779,-0.06000812351703644,-0.026029324159026146,8.921212337474203e-34,0.0015315711498260498,0.04175052046775818,-0.014794650487601757,0.04567002132534981,-0.0192569550126791,-0.004009856376796961,0.04528224095702171,-0.04901083931326866,0.030766796320676804,-0.01669095642864704,-0.013333650305867195,0.0017022512620314956,0.08298559486865997,0.009725929237902164,-0.05135432258248329,-0.08510366827249527,0.01426582783460617,-0.03198261559009552,0.00020841391233261675,0.016583682969212532,0.03583597391843796,0.07344470918178558,-0.0014720124891027808,0.07917263358831406,-0.02325643226504326,0.0371430329978466,0.05198213458061218,-0.05470048263669014,0.0457717664539814,0.04222393408417702,-0.05984952673316002,-0.04665125533938408,-0.13307346403598785,-0.0039539942517876625,0.03554971516132355,-0.021758543327450752,0.0059304921887815,0.08155089616775513,0.05421172082424164,0.10481823235750198,-0.04584668204188347,-0.042091961950063705,-0.06619327515363693,-0.0032672358211129904,0.02209336683154106,0.025433186441659927,0.11262696236371994,0.0020354173611849546,-0.017168695107102394,-0.011720020323991776,-0.14532878994941711,-0.061181239783763885,-0.07783488184213638,-0.053446006029844284,0.022007843479514122,-0.07249190658330917,0.032245561480522156,-0.07631070911884308,0.008978094905614853,0.03456701710820198,-0.08032659441232681,0.021834976971149445,0.009277447126805782,0.0946996659040451,-0.11736223101615906,-0.015285039320588112,-0.048939298838377,0.04674861952662468,-0.05143308266997337,0.014756277203559875,0.004909330513328314,-0.1042991355061531,0.027155695483088493,0.007329828571528196,-0.061457738280296326,-0.04758451506495476,0.012285004369914532,-0.025525877252221107,-0.016125576570630074,-0.07459419220685959,-0.00012653552403207868,-0.024149443954229355,-0.0018336264183744788,0.05470900610089302,-0.07221855223178864,0.06404245644807816,0.03467312082648277,0.028598371893167496,0.04441779851913452,-0.003949131350964308,-0.07584966719150543,-0.026859771460294724,-0.011520779691636562,-0.029576340690255165,-0.0483718067407608,-1.7635793270187605e-8,-0.010711058974266052,0.008836041204631329,0.05209002643823624,-0.042750414460897446,0.006444491446018219,0.08784662932157516,-0.017244301736354828,-0.10891024023294449,0.025043264031410217,0.04865089803934097,-0.021362993866205215,0.02898421883583069,0.023893192410469055,0.06091675907373428,0.10028877854347229,-0.017067397013306618,-0.01553922425955534,-0.04935619980096817,-0.05104478821158409,0.006127797067165375,0.001022923388518393,-0.0655953511595726,-0.07665766030550003,-0.07908491045236588,0.017788249999284744,0.04452575370669365,0.06215500459074974,-0.03257164731621742,-0.03224476799368858,0.11573219299316406,-0.004631214775145054,0.03908683359622955,-0.06763926148414612,-0.023280570283532143,0.030953802168369293,0.01095275953412056,-0.029157627373933792,0.08621185272932053,0.09505943953990936,0.01934235729277134,-0.028028566390275955,0.027838654816150665,0.027588415890932083,0.05550355091691017,0.007419033907353878,0.08246404677629471,-0.007024947553873062,0.05945605784654617,-0.05911102518439293,0.054753270000219345,0.062040239572525024,-0.025934910401701927,0.04256851226091385,-0.02649848721921444,0.040988240391016006,-0.02742243930697441,-0.027864081785082817,0.1365753710269928,-0.025476418435573578,0.012060713022947311,0.055324655026197433,-0.023729989305138588,-0.0018805954605340958,-0.04458634927868843]},{"text":"Thus are my hopes blasted by cowardice and indecision; I come back ignorant and disappointed.","book":"1984","chapter":129,"embedding":[0.10487676411867142,0.01765986531972885,-0.00687537994235754,0.035758960992097855,0.003047516569495201,0.003718895372003317,0.03169478476047516,-0.0017873134929686785,0.0786527767777443,-0.016047019511461258,0.056927040219306946,-0.0549500398337841,0.12281064689159393,-0.1093408614397049,-0.007052137516438961,-0.0012789559550583363,-0.05363152548670769,-0.0850733146071434,-0.03933946415781975,0.07245592027902603,-0.06925462931394577,0.08506827801465988,0.021921899169683456,0.07028527557849884,-0.01560958381742239,-0.03595072776079178,0.040882743895053864,0.0658380463719368,-0.01898530125617981,0.016240280121564865,-0.028975849971175194,-0.051788344979286194,-0.04452019929885864,0.022176364436745644,0.018471557646989822,-0.059380460530519485,0.02491248957812786,0.03192511945962906,0.024025868624448776,-0.06980391591787338,-0.031840987503528595,-0.002367165172472596,-0.020414255559444427,0.05252445116639137,0.02927650883793831,0.04870668798685074,-0.026432272046804428,-0.025234483182430267,-0.0009225343819707632,-0.12127073854207993,-0.033186957240104675,-0.03818107768893242,-0.03454769402742386,-0.05043130740523338,-0.03998229280114174,-0.09433280676603317,-0.07718811184167862,0.019115062430500984,0.020216548815369606,0.0020084157586097717,-0.07284197211265564,-0.0032588837202638388,-0.00827881507575512,0.018090836703777313,0.09172379225492477,0.0014456064673140645,0.051822710782289505,0.03406188637018204,0.007234236225485802,-0.00455796904861927,-0.00303723756223917,0.07415152341127396,0.07434847950935364,0.06688736379146576,-0.009566174820065498,-0.009779964573681355,0.036340441554784775,0.050411634147167206,0.0503532811999321,0.0359325148165226,0.035302646458148956,0.09631727635860443,-0.09266461431980133,-0.03113304078578949,-0.04988854005932808,-0.03446764871478081,-0.018385516479611397,0.04214039072394371,0.084088034927845,-0.08022989332675934,-0.06862979382276535,-0.02368891052901745,0.011661047115921974,0.005192596465349197,-0.011189048178493977,-0.013377878814935684,-0.027978548780083656,-0.004662687424570322,-0.07388132065534592,0.09212645143270493,0.02046268805861473,-0.035424523055553436,-0.014852754771709442,-0.057841707020998,-0.007041713688522577,0.038069650530815125,-0.014891314320266247,-0.03946210443973541,-0.06220637261867523,-0.07874616235494614,-0.11300833523273468,-0.07688695937395096,-0.009810010902583599,0.006875996012240648,0.019571881741285324,0.07265987992286682,0.02505199797451496,-0.018707094714045525,0.004066244699060917,0.0351882167160511,-0.049851659685373306,0.04518446326255798,0.014754117466509342,0.044576726853847504,0.07773423194885254,-0.09827893227338791,-0.0640813484787941,-1.9788167209276768e-33,-0.01861383579671383,-0.0402320995926857,-0.013230344280600548,0.0681326612830162,0.05226322263479233,-0.003170808544382453,0.04436822980642319,-0.009776204824447632,0.03190118819475174,-0.06365823745727539,0.045834556221961975,0.04594801738858223,0.024028247222304344,0.03566120192408562,-0.06653892993927002,-0.000827619107440114,-0.0016398304142057896,0.08192995190620422,0.05421370267868042,0.043798793107271194,-0.04836114123463631,0.0739426463842392,-0.003622600110247731,-0.02142506279051304,-0.015841009095311165,0.01987938955426216,-0.028282182291150093,0.003154943697154522,0.016474533826112747,0.009677630849182606,-0.00044871994759887457,0.033839013427495956,-0.004189069848507643,-0.02874167077243328,0.008065442554652691,-0.009199608117341995,-0.09388535469770432,-0.011167033575475216,-0.06848835945129395,0.012633229605853558,-0.006629308219999075,0.042301829904317856,-0.07213249057531357,-0.011157192289829254,0.06763480603694916,-0.03474836423993111,0.020032528787851334,-0.06170952320098877,-0.008839932270348072,-0.044632378965616226,0.04722466692328453,0.0007367877988144755,0.057454101741313934,0.03994670882821083,0.030315319076180458,-0.010665427893400192,-0.02426123060286045,0.0543367825448513,0.03466024622321129,-0.08609600365161896,-0.08604055643081665,0.0653504803776741,-0.06299369037151337,-0.04128361493349075,-0.03939850628376007,0.03062283992767334,-0.0523020476102829,-0.03668100759387016,-0.0583791621029377,0.03758774325251579,0.04297684133052826,-0.09136989712715149,-0.04448765516281128,0.021751239895820618,-0.04199540242552757,-0.029131988063454628,0.00009305534331360832,-0.05601382255554199,0.15621212124824524,-0.07023338228464127,0.10117731243371964,0.016792936250567436,-0.05344684049487114,-0.018131185322999954,0.06605707108974457,-0.09149967133998871,0.09165304899215698,-0.1098824217915535,0.006110809743404388,-0.024638570845127106,-0.042006224393844604,0.057955384254455566,-0.029809875413775444,-0.0025310495402663946,-0.02984951063990593,3.9778720222248444e-35,0.08648312836885452,-0.026610882952809334,0.0374026745557785,0.06562984734773636,0.015425976365804672,0.05384739115834236,0.05285448580980301,0.043811164796352386,0.026553533971309662,0.04665481299161911,0.008421528153121471,0.0025915096048265696,-0.01519580278545618,0.06371507048606873,-0.0018348320154473186,-0.06495039910078049,0.08562581986188889,0.044755227863788605,-0.03989219292998314,-0.019887326285243034,-0.05467590317130089,0.14008992910385132,-0.03846117481589317,0.04904428496956825,0.0003197937039658427,-0.040026191622018814,0.1361270248889923,0.02448267489671707,-0.01487280149012804,-0.07205881923437119,0.037537168711423874,-0.05767976492643356,-0.036976661533117294,0.02848808281123638,0.08750833570957184,-0.02474851720035076,0.019149944186210632,0.0337991937994957,-0.04709348455071449,-0.08861013501882553,-0.10516618192195892,-0.017331788316369057,-0.06686452031135559,-0.0296714399009943,0.034022826701402664,0.014983166940510273,0.094598188996315,0.004889108706265688,0.07599371671676636,-0.0073177083395421505,0.0031101165805011988,0.05614607781171799,-0.03988457843661308,0.009221537038683891,0.06813609600067139,-0.062116675078868866,0.03743480145931244,-0.07345715910196304,0.0019218171946704388,0.005688861012458801,-0.029188385233283043,-0.08007575571537018,-0.02622283808887005,-0.008993610739707947,0.09047465026378632,-0.0010387117508798838,-0.08423112332820892,0.11797183752059937,0.06481948494911194,0.011060482822358608,0.025954924523830414,-0.07237537950277328,-0.0744013786315918,-0.08145668357610703,0.05124681815505028,-0.01895800232887268,0.0360436886548996,-0.01906268298625946,0.020012514665722847,0.06814401596784592,0.0905979573726654,-0.004068139940500259,0.03463095799088478,0.03586120158433914,-0.011396216228604317,0.006148901768028736,0.012345409020781517,0.04717419669032097,0.08721524477005005,-0.017093315720558167,0.05654460936784744,-0.0789719969034195,-0.0076500908471643925,0.05319584533572197,0.029117388650774956,-2.8834929111098972e-8,-0.02287289686501026,-0.01431743148714304,0.02913229539990425,0.015508717857301235,-0.019079525023698807,0.04594729095697403,-0.06986149400472641,-0.1056978777050972,-0.049350619316101074,-0.010393103584647179,0.017107093706727028,-0.021880924701690674,0.016594374552369118,0.011679459363222122,0.04011737182736397,0.08355652540922165,-0.0321086160838604,-0.039549436420202255,-0.02336878329515457,-0.013599813915789127,-0.005873291287571192,0.00886951107531786,-0.01699318364262581,-0.06375615298748016,-0.0011507353046908975,0.037492211908102036,-0.09385290741920471,0.013362954370677471,-0.07475703954696655,0.0323573537170887,-0.0154352355748415,-0.07864585518836975,-0.10345481336116791,-0.015507955104112625,0.018093997612595558,0.02416372112929821,0.017292238771915436,0.04951301962137222,0.04282060265541077,0.002205102238804102,-0.025349928066134453,0.03893793374300003,0.08055423945188522,-0.007161276880651712,-0.03903192654252052,0.04548954218626022,0.04691961407661438,0.013633038848638535,-0.032165106385946274,-0.03786122426390648,0.027357175946235657,0.006520660128444433,0.022877149283885956,0.021685123443603516,0.06655362248420715,-0.018272610381245613,-0.06013421341776848,0.002111979527398944,-0.046948131173849106,0.0419248603284359,0.15539850294589996,-0.11877375841140747,0.025902777910232544,0.021524520590901375]},{"text":"I cannot lead them unwillingly to danger, and I must return.” “Do so, if you will; but I will not.","book":"1984","chapter":129,"embedding":[-0.031222468242049217,0.08676392585039139,0.02399611286818981,0.01083570159971714,0.04701751843094826,0.014685165137052536,0.05357775464653969,-0.0678093433380127,-0.034726303070783615,-0.07862348854541779,0.0558534674346447,-0.004792006220668554,-0.01445377990603447,-0.06478539854288101,0.01815791241824627,-0.004080810118466616,0.03202028200030327,-0.047660842537879944,-0.052248988300561905,0.07475428283214569,0.02448035217821598,-0.01895863562822342,0.05119013786315918,0.04527080059051514,-0.04321030527353287,0.00910461787134409,-0.027011504396796227,0.006332061719149351,-0.006316704209893942,0.0032578574027866125,-0.0520731545984745,-0.06856317818164825,-0.05805211141705513,0.04352186992764473,0.029868775978684425,0.11872807890176773,-0.01048430148512125,-0.08523166179656982,0.0678512454032898,-0.008489714935421944,0.006245015189051628,0.052690889686346054,0.017866825684905052,0.008665196597576141,-0.01045194547623396,-0.07396572083234787,-0.04397432506084442,-0.024790465831756592,0.060148268938064575,-0.03750861808657646,0.005207339767366648,0.011243794113397598,-0.1425340175628662,-0.023826295509934425,0.02804674580693245,0.05882851406931877,0.05672987923026085,-0.04529847204685211,0.03301787003874779,-0.029584556818008423,0.013394386507570744,-0.07119181007146835,-0.011286679655313492,0.055941324681043625,-0.029463818296790123,0.07833245396614075,-0.044255439192056656,0.02763705886900425,-0.11654477566480637,0.11070360243320465,-0.04284203052520752,-0.022983141243457794,-0.055890221148729324,-0.010190797969698906,-0.06286390870809555,-0.028814805671572685,-0.002745890524238348,0.015626203268766403,0.031905289739370346,-0.00365347508341074,-0.05625377595424652,-0.06723645329475403,-0.05152975022792816,0.062181781977415085,-0.008015570230782032,-0.048769209533929825,0.024136554449796677,-0.012058240361511707,0.09000703692436218,0.034319180995225906,-0.0013581330422312021,-0.02001095749437809,0.01240649726241827,0.07470672577619553,-0.008707360364496708,0.014150125905871391,-0.05438905209302902,-0.003805237589403987,-0.05417740345001221,-0.024696247652173042,0.09488188475370407,-0.047440335154533386,-0.04719465970993042,0.03296820819377899,-0.04211382195353508,-0.08294160664081573,-0.06326086074113846,-0.12862500548362732,-0.032758790999650955,0.027378583326935768,0.04308760166168213,-0.030983317643404007,0.04371996596455574,-0.03312688693404198,0.01502399705350399,0.04614214226603508,-0.05482650548219681,0.035245515406131744,-0.0671471506357193,0.005250788759440184,0.013735819607973099,0.01734769344329834,0.030955057591199875,0.04274581000208855,0.014763688668608665,-0.08394525945186615,0.008135105483233929,-4.993718203431949e-33,0.006186057813465595,0.03198223188519478,0.05588751658797264,-0.061753589659929276,0.035786353051662445,-0.03085944801568985,-0.02489885315299034,0.013596060685813427,-0.023843050003051758,0.013187434524297714,-0.0277341790497303,-0.03504859656095505,0.09228237718343735,-0.07505983114242554,-0.035716474056243896,0.006166577339172363,0.0884048268198967,-0.028337981551885605,0.024243324995040894,-0.048007987439632416,0.04230104759335518,-0.009276211261749268,-0.028834229335188866,-0.012970096431672573,-0.014074982143938541,-0.09792154282331467,-0.033147744834423065,0.018486715853214264,0.07739043235778809,0.05773365870118141,0.04430179297924042,0.02529657445847988,0.0219636969268322,0.013978522270917892,0.03917529433965683,0.10540798306465149,-0.08679848909378052,0.015596190467476845,-0.016833007335662842,-0.023774096742272377,-0.024121025577187538,0.012479373253881931,-0.01226945873349905,0.07868178188800812,0.012304261326789856,-0.052612848579883575,0.07563912868499756,0.00023535211221314967,-0.1310572773218155,-0.03955491632223129,-0.08258423954248428,0.043360598385334015,-0.003531648777425289,0.012898358516395092,0.05977657064795494,-0.03527985140681267,-0.03696721792221069,0.07527582347393036,-0.017678575590252876,-0.020230049267411232,0.014512099325656891,0.01978960633277893,-0.04912393540143967,0.11547116190195084,-0.009075306355953217,-0.0939292386174202,-0.014343093149363995,0.003420718712732196,-0.005637148395180702,-0.009839977137744427,-0.018411682918667793,0.0077912635169923306,-0.06642300635576248,-0.02045600488781929,-0.0692046657204628,-0.013455693610012531,0.030585812404751778,0.01702801138162613,0.05063612386584282,-0.1182301715016365,-0.06865870207548141,-0.017839375883340836,-0.12281676381826401,0.13981151580810547,0.09947329014539719,0.0035224647726863623,0.027464445680379868,-0.08793094754219055,0.012179889716207981,0.10228056460618973,0.05650767683982849,0.022362085059285164,-0.005524932406842709,0.03646451607346535,-0.03639687970280647,2.011056306537909e-33,0.06384389847517014,0.06667931377887726,0.0013096757465973496,-0.03379153460264206,-0.014114057645201683,-0.03445885702967644,-0.01951148360967636,0.018820062279701233,0.11970657110214233,-0.002093698363751173,-0.12048390507698059,-0.007607650943100452,0.08075772225856781,0.01380135677754879,-0.02294684201478958,-0.04207301512360573,-0.005170181393623352,-0.06204765662550926,-0.02332521602511406,-0.07502340525388718,-0.07636699080467224,0.01714368164539337,-0.019735153764486313,0.029631078243255615,-0.05145889148116112,0.04611287638545036,0.06426168978214264,-0.03307846933603287,-0.05719027668237686,-0.06277995556592941,0.07394062727689743,-0.0823167935013771,-0.037935443222522736,0.036536283791065216,0.06884606927633286,0.06605231761932373,-0.002222362207248807,-0.05412676930427551,-0.05237860605120659,0.022486487403512,-0.0025397283025085926,0.039044126868247986,0.03315392881631851,-0.025333808735013008,-0.03783903270959854,0.027279337868094444,0.059085506945848465,0.019201673567295074,-0.03238234668970108,0.011488660238683224,0.01079898327589035,0.020965494215488434,0.000884133274666965,-0.009217783808708191,-0.03502919524908066,0.003599622519686818,0.07591074705123901,0.01670166850090027,0.06773921102285385,-0.01538789551705122,0.001614134875126183,-0.028302639722824097,0.014409683644771576,0.05345582216978073,0.0506897047162056,-0.02494320459663868,-0.053872451186180115,0.08094547688961029,0.11601556837558746,-0.0027148821391165257,0.11615416407585144,0.003427339717745781,0.02545718476176262,-0.03824777156114578,-0.012547319754958153,-0.04045240581035614,-0.036458272486925125,-0.05277583375573158,-0.04788615554571152,-0.040524616837501526,0.13964688777923584,0.03679855912923813,0.00023785498342476785,0.03440319374203682,0.0199753250926733,0.015429988503456116,0.04814914986491203,0.03725244104862213,-0.03721890598535538,0.07075104862451553,0.04889782890677452,-0.031111378222703934,0.1357017308473587,-0.06560084223747253,-0.01910645142197609,-2.520764574853729e-8,0.0022812471725046635,-0.03562397137284279,0.011023107916116714,-0.03852782025933266,0.014155262149870396,0.013106544502079487,-0.017005527392029762,-0.011866657994687557,-0.054412536323070526,-0.04064551740884781,0.10583484172821045,-0.00822437833994627,0.08713918179273605,0.011194644495844841,0.04067748039960861,0.1246553286910057,0.04697804898023605,-0.1410904973745346,-0.005279248114675283,0.00034337921533733606,-0.032951582223176956,-0.009217817336320877,0.036911480128765106,0.05136698856949806,0.002280542394146323,0.04506528005003929,0.02003391459584236,-0.053394097834825516,-0.014872903935611248,0.053854506462812424,0.0012957031140103936,-0.011469033546745777,-0.0825015977025032,0.0375312902033329,-0.07155367732048035,0.002410228131338954,0.045545462518930435,-0.04612124338746071,0.047483284026384354,-0.054889388382434845,-0.005998415406793356,0.05730174854397774,-0.00010090267460327595,0.07285706698894501,-0.03913697227835655,-0.04483046382665634,0.05777817592024803,0.04879143089056015,-0.008734019473195076,-0.022032761946320534,-0.08547192811965942,-0.023246584460139275,0.008744175545871258,0.04043179377913475,-0.04244757816195488,0.0674208551645279,-0.00358661450445652,0.005430679768323898,-0.030440306290984154,0.024971768260002136,0.021981820464134216,0.018969833850860596,-0.03171613812446594,-0.14763934910297394]},{"text":"During these last days I have been occupied in examining my past conduct; nor do I find it blamable.","book":"1984","chapter":130,"embedding":[0.01070975512266159,-0.016828889027237892,0.03096998855471611,0.02250828593969345,0.049214012920856476,0.05109424516558647,0.0016654866049066186,-0.0768914669752121,-0.05768293887376785,-0.04320907220244408,-0.04165749251842499,0.00762289809063077,-0.020909981802105904,0.055115487426519394,-0.031128186732530594,0.011267570778727531,0.002071408089250326,-0.02166900411248207,-0.006369763053953648,0.057056114077568054,0.016319166868925095,0.04767541214823723,0.003633026499301195,-0.01681133173406124,-0.02633041702210903,0.0858980268239975,-0.02320849522948265,-0.07834602892398834,-0.02261950820684433,-0.05757538974285126,-0.04279584065079689,-0.0021288550924509764,-0.05466819554567337,0.07455285638570786,0.01605702005326748,-0.018538005650043488,-0.04715914651751518,0.024741658940911293,0.06717556715011597,-0.026342378929257393,0.008299694396555424,-0.022637858986854553,0.06508737802505493,-0.06613247841596603,0.029418321326375008,-0.03382919356226921,0.05037737265229225,-0.04144000634551048,-0.043360546231269836,-0.01574615389108658,0.006773428991436958,-0.004326243419200182,0.0867706909775734,0.055462248623371124,0.019528022035956383,0.0434427447617054,0.08037114888429642,0.08742176741361618,-0.03105776198208332,0.003340319264680147,-0.006184939295053482,0.08263633400201797,-0.024414099752902985,0.008123651146888733,-0.09777780622243881,0.09616789221763611,0.006536396220326424,0.024153131991624832,0.14105315506458282,0.004762472119182348,0.0015505221672356129,-0.07630432397127151,-0.011388234794139862,0.035818181931972504,-0.006163325160741806,-0.014583948068320751,0.016665983945131302,-0.025665543973445892,0.003451755503192544,-0.0849866196513176,0.002903702901676297,0.06612617522478104,-0.03469974175095558,0.08378074318170547,-0.03586464747786522,-0.024843914434313774,0.02145085297524929,0.020652804523706436,0.06038839742541313,0.05114375799894333,0.03332316130399704,-0.021169964224100113,-0.05571255460381508,-0.04652565345168114,0.017724907025694847,-0.08694720268249512,-0.054011180996894836,0.08959388732910156,0.012536942027509212,0.0707952231168747,-0.0490543358027935,0.006487835198640823,-0.05004460737109184,-0.04754599556326866,0.01794632337987423,0.020700233057141304,-0.00707764457911253,-0.013309440575540066,-0.016369665041565895,0.006501548923552036,-0.02146195061504841,0.008925884030759335,-0.011261078529059887,-0.01059201080352068,0.11476194858551025,0.01016857847571373,-0.0028144551906734705,0.07551367580890656,0.05435233190655708,0.054440733045339584,0.08797039836645126,0.015762019902467728,0.03261803835630417,0.029184725135564804,-0.052310701459646225,-0.09162113070487976,0.025613611564040184,-1.686003465860745e-33,0.06207965686917305,-0.01909624971449375,-0.07039918005466461,0.04024284705519676,-0.020999478176236153,0.04552951455116272,-0.056339967995882034,0.027454836294054985,0.08375359326601028,0.029985852539539337,0.1483033299446106,0.12451545894145966,-0.03272273391485214,-0.003947163932025433,-0.033171042799949646,0.06048572435975075,-0.026383807882666588,0.0015610469272360206,0.06484705954790115,-0.0016200030222535133,-0.010110055096447468,-0.028874075040221214,-0.011787394993007183,-0.06117292866110802,-0.02881726808845997,-0.056978918612003326,0.048701293766498566,0.018597593531012535,0.004464806988835335,0.02599918656051159,0.018944576382637024,0.04627356305718422,-0.009378082118928432,-0.07943693548440933,0.041235435754060745,0.16739250719547272,0.03474941477179527,0.01586991548538208,-0.01778247207403183,-0.02548184059560299,-0.01871657185256481,-0.025120193138718605,-0.04484826326370239,-0.029881296679377556,-0.0008320258348248899,0.019498463720083237,0.05884820595383644,-0.1122133731842041,-0.1826474368572235,0.0834168866276741,0.025373442098498344,-0.03201999142765999,0.0244756992906332,-0.044747430831193924,-0.05841843783855438,0.04770888015627861,0.06270298361778259,0.00212820153683424,0.05261871963739395,0.007076746318489313,0.0695004016160965,0.0680181086063385,-0.07919920235872269,-0.012042850255966187,-0.048679169267416,-0.04878741130232811,-0.07850739359855652,-0.022397708147764206,0.0651310533285141,-0.10678672790527344,-0.029109153896570206,0.0076892441138625145,-0.012786447070538998,-0.005985036958009005,0.026967637240886688,-0.08528365194797516,-0.06348734349012375,0.00895021390169859,0.052427854388952255,-0.06774219125509262,0.034756455570459366,-0.09563998132944107,-0.019336169585585594,0.037405651062726974,0.02500484138727188,-0.05163421481847763,0.06088266521692276,-0.061566613614559174,-0.01679355651140213,0.06753551214933395,-0.009240145795047283,-0.021061183884739876,0.06407469511032104,-0.006683184299618006,-0.07501500844955444,-4.120782690528879e-34,-0.0025135644245892763,-0.06857050955295563,0.009068521670997143,0.023893751204013824,-0.019421029835939407,-0.10079839080572128,-0.018655596300959587,0.011534428223967552,-0.011530102230608463,0.03861478716135025,0.03588954731822014,0.0271161999553442,0.019457459449768066,0.04695742949843407,0.04465514048933983,-0.009622699581086636,-0.05821073427796364,0.0233481265604496,-0.058673325926065445,-0.0406058207154274,-0.10035794228315353,0.06767269223928452,0.05757133290171623,-0.029673561453819275,-0.04360628500580788,0.040609654039144516,0.1007278710603714,-0.10052603483200073,-0.019951827824115753,-0.043220940977334976,-0.02194456197321415,0.029161643236875534,-0.06317120790481567,0.014538323506712914,-0.00869336724281311,-0.018435074016451836,0.051464758813381195,-0.02109850011765957,-0.011413653381168842,-0.09658319503068924,-0.06592780351638794,0.05312139913439751,-0.0026827778201550245,-0.0358039066195488,-0.04775650426745415,-0.028564555570483208,-0.07670249789953232,0.03379790112376213,0.062181584537029266,0.022808779031038284,-0.028492728248238564,0.019823815673589706,0.058563392609357834,-0.06728743016719818,-0.003603218821808696,0.05779106542468071,0.0311869028955698,0.02081361413002014,-0.014483815990388393,0.0603400282561779,-0.02701471373438835,0.059254251420497894,-0.07230012118816376,-0.04064306989312172,0.06544636189937592,-0.054233368486166,-0.01176688726991415,-0.027667362242937088,-0.0457763597369194,0.011340165510773659,0.02413209155201912,-0.0015278002247214317,-0.08689089864492416,0.006119224242866039,0.07201915979385376,-0.061081644147634506,-0.02437891811132431,0.014465373940765858,-0.06927178055047989,-0.014329176396131516,0.063290074467659,-0.034775931388139725,0.029800552874803543,-0.02348862960934639,-0.024944249540567398,0.013020374812185764,0.013004446402192116,-0.00009291003516409546,0.007642821408808231,-0.05310856178402901,-0.0033856211230158806,-0.032566916197538376,-0.07193531841039658,-0.04941119626164436,0.012768018059432507,-2.5780558132737497e-8,-0.003191641764715314,-0.061061665415763855,0.06480639427900314,0.050144970417022705,0.0792153850197792,-0.07234413176774979,-0.014544855803251266,-0.009683091193437576,-0.06238975748419762,-0.09484242647886276,-0.025464218109846115,-0.03234880417585373,0.05107930675148964,-0.03646771237254143,0.03594035282731056,-0.038058750331401825,0.09128526598215103,-0.1285647302865982,-0.043326836079359055,0.02586689405143261,-0.022077707573771477,0.01630469225347042,-0.0691363736987114,0.03774762898683548,-0.06682697683572769,0.10073292255401611,-0.03874003887176514,-0.013217165134847164,-0.039456747472286224,0.04034047946333885,0.05031484365463257,0.09570653736591339,0.006113342009484768,-0.027219703420996666,-0.0709749087691307,-0.05547119677066803,-0.01240558922290802,-0.021718604490160942,0.02237733267247677,0.03207479417324066,-0.012908613309264183,-0.0585310161113739,0.10271215438842773,0.08033305406570435,-0.006829210091382265,-0.012970514595508575,0.03623969852924347,-0.020831173285841942,-0.03892850875854492,0.008942808024585247,0.04873443394899368,0.024265799671411514,0.04831496998667717,0.08143331110477448,-0.037624258548021317,0.04371831938624382,0.07191069424152374,0.0853850319981575,-0.13284912705421448,-0.029768969863653183,0.08876317739486694,-0.018421495333313942,-0.09345787763595581,0.01477129478007555]},{"text":"The forms of the beloved dead flit before me, and I hasten to their arms.","book":"1984","chapter":130,"embedding":[-0.046201713383197784,0.07229811698198318,0.04812245815992355,0.07116103917360306,0.039808712899684906,-0.030569346621632576,0.06540827453136444,-0.09733907133340836,0.06069575622677803,-0.060317520052194595,0.017718521878123283,-0.022926200181245804,-0.011184385977685452,-0.019991084933280945,0.01046354416757822,-0.03648335486650467,-0.0320236012339592,0.018077922984957695,-0.010127675719559193,0.09586039185523987,-0.04324271157383919,0.07377342134714127,0.0368959903717041,0.025691209360957146,-0.06690944731235504,-0.023502500727772713,-0.0028476628940552473,-0.03582710027694702,0.07804609090089798,-0.06900211423635483,-0.0001599191891727969,-0.024744084104895592,-0.040989626199007034,-0.04561508446931839,-0.02614784985780716,0.06402429193258286,0.0589764304459095,-0.030698761343955994,0.04365503415465355,0.03018111176788807,0.05778318643569946,-0.005946394521743059,0.0715077817440033,0.052690647542476654,0.02881677821278572,0.0029371094424277544,-0.02992263063788414,0.05702793970704079,0.02478684112429619,0.024071231484413147,-0.06379545480012894,-0.050804633647203445,-0.09038449823856354,0.06917951256036758,-0.014992945827543736,-0.0004049351846333593,0.05263029411435127,-0.024721326306462288,-0.008196542039513588,-0.011906052939593792,-0.07040596753358841,0.014583118259906769,0.043227046728134155,0.029041467234492302,-0.04386342689394951,-0.030789554119110107,0.01921454630792141,-0.007578822784125805,-0.005102920345962048,0.07306323945522308,-0.020549863576889038,0.0406121164560318,0.030890189111232758,0.08574311435222626,-0.10991908609867096,-0.021659884601831436,-0.0163679588586092,-0.08526533097028732,-0.030960379168391228,-0.02466488815844059,-0.0018826989689841866,-0.02733105793595314,-0.05108693242073059,-0.012716418132185936,-0.029166849330067635,0.021268784999847412,0.02587842382490635,-0.04812800511717796,-0.030180873349308968,0.03565338999032974,-0.00637410581111908,-0.02343922108411789,-0.07082905620336533,0.06559707969427109,-0.026650670915842056,0.0009347160812467337,0.01791505329310894,0.03637036308646202,-0.04695986583828926,0.06780748814344406,-0.0070674787275493145,-0.023243311792612076,0.005689170211553574,0.09874076396226883,0.05929441750049591,-0.11380161345005035,-0.161742702126503,-0.009439175017178059,-0.01743880659341812,-0.025114495307207108,0.03349452093243599,-0.11192496865987778,-0.04744111746549606,-0.026880137622356415,-0.05025927349925041,0.04279542714357376,-0.08474727720022202,-0.10278642177581787,-0.007714853622019291,0.0907423198223114,0.06722314655780792,0.11289327591657639,0.003913440741598606,0.006993487942963839,0.009099749848246574,-0.07448802143335342,-0.08176307380199432,-3.972866011932087e-33,0.059915196150541306,0.02890884503722191,0.006265560165047646,0.04147627204656601,0.032611776143312454,-0.06985312700271606,-0.040577441453933716,0.007889114320278168,0.0396357886493206,-0.007585140410810709,0.020574193447828293,0.042101044207811356,-0.002389218658208847,-0.01741695962846279,-0.14426901936531067,-0.07209593057632446,-0.048001162707805634,0.02603413723409176,0.008586453273892403,-0.015958735719323158,-0.047287557274103165,0.044854529201984406,-0.012265878729522228,0.03444771096110344,-0.026494262740015984,0.02552557736635208,-0.0971408262848854,0.01768684759736061,-0.017594344913959503,0.061101533472537994,0.02964068576693535,-0.010571427643299103,0.06775159388780594,-0.04930756613612175,-0.030703959986567497,0.005060558207333088,-0.07253574579954147,-0.10941663384437561,-0.056150272488594055,0.04142420366406441,0.003808229463174939,-0.005921106785535812,0.04563554376363754,0.010171552188694477,-0.050028130412101746,0.020353903993964195,0.0216558538377285,0.08188491314649582,-0.0793503001332283,0.01791485585272312,0.0276242233812809,0.01567624695599079,0.06342995911836624,0.08146528899669647,-0.03301725536584854,0.017085935920476913,-0.028818732127547264,-0.018732989206910133,-0.04124618321657181,0.0030596319120377302,0.045148760080337524,0.004228050354868174,0.028673462569713593,0.037969812750816345,-0.032918259501457214,-0.0932745635509491,-0.02385116182267666,-0.0653981864452362,0.09840650856494904,-0.029687542468309402,-0.029184823855757713,-0.03568287938833237,-0.009690150618553162,0.02815743163228035,0.03956902027130127,-0.03775358945131302,0.07002221792936325,-0.05861789360642433,-0.06460416316986084,-0.06323251128196716,0.1215144470334053,0.041757967323064804,-0.061834659427404404,0.08851577341556549,0.07802622765302658,-0.016655031591653824,0.03831714019179344,-0.13490311801433563,-0.0686911940574646,0.011988195590674877,-0.06510131806135178,0.007718084380030632,0.05017927289009094,-0.1292411983013153,-0.08452484011650085,1.4256584667894788e-33,0.10757634788751602,-0.08260379731655121,0.019517485052347183,0.075619637966156,-0.01987319253385067,-0.06157727912068367,-0.021802863106131554,0.01789875328540802,0.0020217960700392723,0.01379354763776064,-0.012012366205453873,-0.002363787265494466,0.046918001025915146,0.019086340442299843,0.017631949856877327,-0.026348989456892014,0.0597495399415493,-0.012550601735711098,0.1079292893409729,0.031216299161314964,-0.014723436906933784,0.014211207628250122,0.026034951210021973,0.031449638307094574,0.01679314486682415,0.03327202424407005,0.08320116251707077,-0.073566734790802,0.00949147529900074,-0.05069483444094658,0.05155044049024582,-0.06038198992609978,-0.06167532876133919,-0.06296104937791824,-0.029890576377511024,0.033527396619319916,0.009217439219355583,0.07354877889156342,-0.00403005862608552,-0.10896572470664978,0.017539985477924347,-0.013788050040602684,0.11206161230802536,0.06838251650333405,-0.006491322070360184,-0.04859326034784317,0.028575530275702477,0.046604808419942856,-0.03643855080008507,0.0741458386182785,-0.06871303170919418,-0.011446135118603706,0.007179253734648228,0.03886668011546135,-0.03616643324494362,-0.0484737753868103,0.023312976583838463,-0.07656320184469223,0.0779014304280281,0.012773529626429081,0.01929471641778946,-0.007705977186560631,-0.058783967047929764,0.03280113637447357,0.030371231958270073,-0.04662267491221428,0.01493364479392767,0.049303166568279266,-0.04294590651988983,0.0050484356470406055,0.05117484927177429,-0.002572773490101099,-0.12807980179786682,0.029151445254683495,0.001893786364234984,0.03170691058039665,0.032104525715112686,-0.0037936014123260975,-0.019928988069295883,-0.04244304448366165,-0.023290293291211128,-0.007247145753353834,0.008942895568907261,0.04109463095664978,-0.023334627971053123,-0.0021098260767757893,-0.015342021360993385,0.002840267261490226,0.016553176566958427,-0.04644116386771202,-0.01391912717372179,0.003536029951646924,0.10003432631492615,-0.02969888225197792,-0.04550686106085777,-2.387884379118077e-8,-0.008970602415502071,-0.029757212847471237,0.021062148734927177,-0.03733653202652931,0.01819419302046299,0.0261655505746603,0.03694596886634827,-0.020207304507493973,-0.08484893292188644,-0.04478491097688675,-0.006281368434429169,0.07911922037601471,0.1405479460954666,-0.01564144901931286,0.1318521648645401,0.011920908465981483,-0.03347085043787956,-0.08554919064044952,-0.08209391683340073,-0.03459610790014267,-0.014635598286986351,0.04533795267343521,0.026015853509306908,-0.09285467863082886,-0.012479717843234539,0.04986269026994705,0.007297941949218512,-0.09070271253585815,0.005799425300210714,0.08087141066789627,0.0008150268695317209,0.10122441500425339,-0.02262924239039421,0.01352993119508028,-0.05229223147034645,0.008549587801098824,-0.0035292599350214005,-0.025975696742534637,-0.01743648201227188,0.04339737445116043,0.016706159338355064,0.05000920966267586,-0.02339273691177368,-0.033705513924360275,-0.00026806502137333155,-0.029854008927941322,0.04478631913661957,-0.0003228013520129025,-0.019222233444452286,-0.014626487158238888,0.017524555325508118,0.05184212327003479,-0.012453976087272167,0.12313634902238846,0.015311505645513535,0.0037879564333707094,-0.0016142510576173663,0.04335697367787361,-0.016182633116841316,0.0031680376268923283,0.1296311467885971,0.05665648728609085,0.03215649351477623,-0.012883075512945652]},{"text":"It is midnight; the breeze blows fairly, and the watch on deck scarcely stir.","book":"1984","chapter":131,"embedding":[0.08270244300365448,0.08809413015842438,0.030946092680096626,0.06387028843164444,0.10353786498308182,-0.03975299745798111,0.028814269229769707,-0.023062461987137794,0.03690102696418762,-0.038019973784685135,-0.058021120727062225,0.000428313622251153,-0.027670979499816895,-0.061327047646045685,-0.05113787204027176,-0.005656930152326822,0.11894305795431137,-0.06984330713748932,0.0456988699734211,0.07149758189916611,-0.020831793546676636,0.022818785160779953,0.018496442586183548,0.08114159107208252,0.008815460838377476,-0.006087518762797117,0.0005995637038722634,-0.07079361379146576,-0.0009130535181611776,-0.03397005796432495,-0.04781345650553703,0.1439652293920517,-0.05098240077495575,0.023311549797654152,0.005556612741202116,-0.03385219722986221,0.0649321898818016,-0.026883086189627647,0.013408472761511803,0.05005422607064247,0.020741688087582588,0.03597722575068474,-0.01560339517891407,0.04051242023706436,-0.050657566636800766,0.09744660556316376,0.0478043295443058,-0.025612691417336464,0.02065190114080906,0.017174722626805305,-0.03635727986693382,0.04651461914181709,-0.01968589797616005,-0.1113477423787117,-0.028448229655623436,0.05444880947470665,0.018599731847643852,-0.049758072942495346,0.04282569885253906,0.041469354182481766,-0.006883568596094847,0.02470528893172741,-0.04785674065351486,0.06039680913090706,0.08116447180509567,-0.0554540790617466,-0.02148333564400673,0.034940749406814575,0.07489711791276932,0.008519738912582397,0.007845761254429817,0.08337435126304626,0.027310343459248543,-0.07315566390752792,-0.08845233917236328,-0.02970418892800808,-0.020286686718463898,-0.09087064117193222,0.07439129799604416,0.05421306937932968,-0.041922252625226974,-0.025672007352113724,-0.027649903669953346,0.046388428658246994,-0.0017916308715939522,-0.03815940394997597,0.060213603079319,0.13952670991420746,0.042114660143852234,0.0014709469396620989,-0.0748521089553833,0.02176177129149437,-0.08472394943237305,-0.007728233002126217,0.04049122706055641,0.07607536762952805,0.05367569252848625,0.05433647334575653,-0.10697169601917267,0.022725384682416916,0.02736353501677513,0.03262145817279816,0.03469054773449898,0.0579090341925621,-0.026078639551997185,-0.036856528371572495,-0.04209732636809349,-0.02004283107817173,-0.02675623446702957,-0.03645854815840721,-0.014189302921295166,0.020448312163352966,0.048920948058366776,-0.00499887065961957,0.02918819524347782,0.05995326116681099,0.030211975798010826,-0.009156397543847561,-0.11818909645080566,0.15928606688976288,0.08791487663984299,0.01740712858736515,0.03583690896630287,0.008969159796833992,0.027021827176213264,0.06245148181915283,0.09794158488512039,-5.129848163438847e-33,0.061810631304979324,-0.043320126831531525,-0.0288254227489233,-0.05342358723282814,0.11207626760005951,-0.04507488012313843,-0.023008296266198158,-0.008514129556715488,-0.01627275161445141,0.1161472275853157,0.01414658222347498,-0.0680917426943779,-0.04725436121225357,-0.012412377633154392,0.00235036201775074,-0.03015272133052349,0.03532147780060768,-0.019649112597107887,0.006419299636036158,-0.10878144204616547,-0.06077485531568527,-0.03248867392539978,-0.09555208683013916,-0.09857093542814255,-0.07785925269126892,-0.06039572134613991,0.004193870350718498,0.07064893841743469,0.02040993794798851,0.04368320852518082,0.009258962236344814,-0.023081490769982338,0.050961803644895554,0.04091140255331993,0.03595346957445145,-0.017789628356695175,-0.03663082793354988,-0.016269316896796227,0.01169208437204361,-0.06222553923726082,-0.08585146069526672,0.022104250267148018,-0.036055877804756165,-0.09693128615617752,-0.011899282224476337,-0.010122250765562057,0.06505024433135986,0.05573625862598419,-0.012698321603238583,0.0338655449450016,0.071125328540802,-0.006964290514588356,0.042318347841501236,-0.09007181227207184,0.029488056898117065,0.0012987388763576746,0.07342448085546494,-0.01477121189236641,-0.10376960784196854,0.022486459463834763,-0.008004402741789818,-0.07373461127281189,-0.02768576890230179,-0.07816741615533829,0.04974393919110298,0.018188463523983955,0.0025960756465792656,-0.035953130573034286,-0.019859150052070618,-0.00753735052421689,-0.004127574618905783,-0.03485963121056557,-0.008377550169825554,-0.01276861596852541,-0.0525275357067585,-0.000007344900041061919,0.09089948236942291,-0.008843773044645786,0.0384402871131897,0.06421706080436707,0.03624418377876282,0.060634031891822815,-0.016508495435118675,-0.015808841213583946,-0.0027340108063071966,-0.06650588661432266,0.05853962153196335,0.052515044808387756,-0.061599306762218475,0.020827926695346832,0.005041479133069515,-0.001980680739507079,0.13858480751514435,-0.024269865825772285,-0.014119627885520458,1.9513006022268348e-33,0.005085422657430172,-0.03735793009400368,-0.07434410601854324,-0.012614385224878788,-0.04228207841515541,0.012874890118837357,-0.03377169743180275,0.021587587893009186,-0.006153539288789034,0.025196829810738564,-0.005685843527317047,-0.04371535778045654,-0.08319076895713806,0.019666599109768867,0.06889189779758453,-0.016392186284065247,0.07464094460010529,0.08881887048482895,-0.0215827077627182,0.024872595444321632,0.004881768021732569,-0.022442223504185677,0.0015887513291090727,-0.019513407722115517,0.038545385003089905,-0.004066978115588427,0.08239434659481049,-0.003351992927491665,-0.08517227321863174,-0.029206691309809685,0.02550569362938404,-0.04963511601090431,-0.02167331427335739,0.030623359605669975,-0.030561350286006927,0.03017733432352543,-0.010864500887691975,-0.012253114953637123,-0.08088765293359756,-0.11227648705244064,-0.01957647129893303,0.03878738358616829,0.0893506109714508,0.018962634727358818,-0.056569237262010574,-0.009997162967920303,-0.07155691832304001,0.04782932251691818,-0.013913467526435852,0.019635580480098724,-0.04702150076627731,-0.06441820412874222,0.06897765398025513,0.002007399220019579,0.008765654638409615,0.004714593756943941,-0.018546925857663155,-0.06921394169330597,-0.0036565884947776794,-0.041181836277246475,0.024730924516916275,0.01471913605928421,-0.04887332394719124,-0.026657914742827415,0.007691964507102966,0.009700301103293896,-0.06664109230041504,0.039693959057331085,0.006265855394303799,0.003841598518192768,0.03876218572258949,0.05194373428821564,-0.13370154798030853,-0.008779403753578663,0.009554843418300152,0.039307236671447754,0.06687338650226593,0.03283735737204552,-0.025150027126073837,-0.0827447921037674,0.02897103875875473,-0.003998672589659691,-0.018766699358820915,-0.11897461861371994,-0.08547528088092804,-0.051797665655612946,-0.03531409800052643,-0.001305703422985971,0.05447915568947792,0.09369530528783798,0.027305446565151215,-0.011542360298335552,0.026229411363601685,-0.020365653559565544,0.007897944189608097,-2.0865490668597886e-8,-0.03844263404607773,-0.04106302931904793,-0.01929953321814537,-0.05098270624876022,-0.035087212920188904,-0.014350155368447304,0.09279391169548035,-0.0020481108222156763,-0.017236830666661263,0.0855129286646843,0.05220513418316841,0.026928553357720375,0.06535778939723969,-0.03648541867733002,0.06894877552986145,-0.044359929859638214,-0.033128492534160614,-0.05046854913234711,-0.048102159053087234,-0.021160708740353584,0.041695043444633484,0.011770323850214481,0.009399832226336002,-0.02265045791864395,0.02633504383265972,0.06612224131822586,-0.01638435386121273,0.012651228345930576,0.07585398852825165,0.08766914159059525,0.0658116340637207,0.02434689551591873,-0.05378127098083496,-0.006845271214842796,-0.15340428054332733,-0.035966601222753525,0.03359811380505562,0.034386154264211655,-0.05620425567030907,0.01765909418463707,-0.04537436366081238,0.01825053058564663,-0.12126424163579941,-0.025975661352276802,-0.03588562831282616,-0.06381526589393616,0.040229350328445435,0.021474484354257584,-0.05221155285835266,-0.0035125561989843845,0.012492751702666283,-0.019660646095871925,0.047774747014045715,0.03961901739239693,-0.010851887054741383,-0.05154194310307503,-0.020862458273768425,0.00399499898776412,-0.04765887185931206,-0.06384047865867615,0.039861176162958145,0.03700823336839676,-0.07055763155221939,0.03270018473267555]},{"text":"I shut my eyes involuntarily and endeavoured to recollect what were my duties with regard to this destroyer.","book":"1984","chapter":131,"embedding":[0.026060499250888824,0.04360310733318329,0.03603696823120117,0.028649020940065384,-0.0026631576474756002,-0.04882053658366203,0.11619050055742264,-0.00886915996670723,-0.06003778055310249,-0.026071738451719284,-0.01704687811434269,-0.053424302488565445,0.034509822726249695,0.030890941619873047,-0.1106029525399208,-0.00991183239966631,0.037695128470659256,-0.013837942853569984,-0.0414661280810833,0.04576251283288002,-0.019422583281993866,0.09026063233613968,0.05101241171360016,0.039451975375413895,-0.13691799342632294,0.09142868965864182,-0.034470077604055405,-0.04147215932607651,-0.036810047924518585,-0.10575239360332489,-0.03361073508858681,-0.07505468279123306,-0.10447518527507782,0.006821281276643276,-0.016243591904640198,0.06074041128158569,0.046171292662620544,0.023918626829981804,0.04774726182222366,-0.06005169451236725,0.008482927456498146,0.028640832751989365,0.018658362329006195,0.03226568177342415,0.03467236086726189,-0.040633220225572586,0.0019622831605374813,-0.06943279504776001,0.05439078435301781,-0.020634282380342484,-0.003864898346364498,-0.0459308922290802,0.014014560729265213,-0.01981760933995247,0.03133464232087135,-0.016278712078928947,0.03334641829133034,-0.022001290693879128,0.04976342245936394,0.004921423736959696,-0.1362314671278,0.06020476296544075,0.02990330569446087,-0.006410269998013973,-0.010819755494594574,-0.07551012933254242,0.012129155918955803,-0.04258981719613075,0.034166302531957626,0.08540598303079605,0.02346069924533367,0.008855790831148624,0.039422813802957535,0.04321875050663948,-0.06747496873140335,-0.05952350050210953,0.08917810767889023,-0.041922226548194885,0.1025511771440506,0.010341971181333065,0.027114640921354294,0.01849815994501114,-0.030472146347165108,0.03302735462784767,-0.015778589993715286,0.0002932220813818276,0.007090806495398283,0.031380973756313324,0.06542430818080902,0.09170130640268326,0.07483013719320297,-0.056469496339559555,0.009276020340621471,-0.03401091694831848,-0.05108772590756416,-0.058566927909851074,-0.03490249440073967,0.028601108118891716,-0.013627897016704082,0.04690990969538689,0.07863893359899521,-0.04072996601462364,-0.037535786628723145,-0.02977501042187214,-0.06718752533197403,0.00517619214951992,-0.01963462494313717,-0.0035510859452188015,-0.10182790458202362,-0.06879042088985443,0.012689842842519283,0.010927188210189342,-0.03296252340078354,-0.02920539304614067,0.013849733397364616,0.11123944073915482,-0.09867139160633087,-0.0045893494971096516,-0.0016374900005757809,-0.07848703861236572,0.041397396475076675,0.008375666104257107,-0.006494483444839716,0.026397930458188057,-0.025411663576960564,-0.043873753398656845,-0.006344789173454046,-1.9910256991289048e-33,0.05945888161659241,-0.04634905979037285,-0.03957930952310562,0.07691121846437454,0.040921904146671295,-0.01399998925626278,-0.0664803609251976,0.07395816594362259,0.017789503559470177,0.0025371175725013018,0.03057444654405117,-0.013824348337948322,-0.027838272973895073,-0.04039502516388893,-0.06923453509807587,0.005275680683553219,-0.025821229442954063,0.13337978720664978,-0.010815184563398361,-0.030788255855441093,-0.011554097756743431,-0.009817690588533878,-0.029692012816667557,0.009874934330582619,0.09595430642366409,0.053070664405822754,-0.08059912174940109,-0.013905943371355534,-0.006660635117441416,0.0512152835726738,0.013040098361670971,0.10866352170705795,0.007006403990089893,0.014351165853440762,0.014627160504460335,0.0028073443099856377,-0.043509893119335175,-0.06990549713373184,-0.06917738169431686,-0.045375578105449677,0.014879440888762474,0.06445801258087158,-0.04743087291717529,0.0408877469599247,-0.04378217086195946,-0.021888568997383118,0.00802964624017477,0.04116778075695038,0.038283322006464005,0.007221569772809744,-0.013611082918941975,-0.011876954697072506,0.028158990666270256,-0.04570669308304787,-0.0037604186218231916,0.06799481064081192,0.08307117968797684,-0.0006928352522663772,0.032148607075214386,0.036403968930244446,-0.011947370134294033,0.01265275850892067,-0.06316892057657242,0.08041134476661682,0.007138325832784176,-0.054169684648513794,-0.07787007838487625,-0.00010997273057000712,0.008186416700482368,-0.06070080026984215,-0.09132207185029984,-0.007251651491969824,0.022671809419989586,-0.07475370913743973,-0.011937891133129597,0.0236220620572567,-0.020362088456749916,0.02010085992515087,-0.03307238221168518,-0.06701308488845825,0.0514940582215786,-0.027831975370645523,-0.02718537114560604,0.036995526403188705,0.05334848538041115,0.010627107694745064,0.035865746438503265,-0.07215291261672974,-0.03689926490187645,0.047690775245428085,-0.03414888679981232,-0.06049273908138275,0.002577552804723382,-0.09012048691511154,-0.17280741035938263,-6.291293979236366e-34,0.02181132696568966,0.024044690653681755,0.034704118967056274,-0.022470278665423393,-0.005897908937186003,-0.03308337926864624,-0.07036412507295609,0.031850866973400116,-0.03703370317816734,0.042409904301166534,0.015437471680343151,0.07826348394155502,-0.060911018401384354,-0.015674300491809845,-0.020642129704356194,-0.019568562507629395,0.031401798129081726,-0.012545498088002205,-0.07960232347249985,-0.013270430266857147,-0.03409123420715332,0.06260204315185547,0.047789331525564194,-0.05179285630583763,-0.019731346517801285,0.08061447739601135,0.07366414368152618,-0.03047798201441765,0.02300274930894375,-0.05948528274893761,0.03524162247776985,-0.015240538865327835,-0.04037178307771683,-0.011058378033339977,0.03561750799417496,0.06349112838506699,0.03893109783530235,-0.0022331378422677517,-0.025553321465849876,-0.04566337913274765,0.0014827231643721461,0.09327191114425659,0.00741621945053339,0.1109849214553833,-0.017232652753591537,-0.04819917306303978,-0.03317372873425484,0.03311799839138985,0.01613917201757431,0.011422400362789631,-0.15855251252651215,-0.025690099224448204,0.044012945145368576,-0.02368742786347866,-0.047197867184877396,0.014899713918566704,0.02476145327091217,-0.08380898088216782,0.09395129978656769,-0.04832764342427254,-0.007103918585926294,-0.026634909212589264,-0.05087408423423767,0.024406809359788895,-0.014432611875236034,-0.03383156657218933,0.02149260602891445,0.05508657544851303,-0.08485248684883118,-0.02486230432987213,0.008826486766338348,0.01174139603972435,0.012518426403403282,0.07096923887729645,0.006476371083408594,-0.06910219043493271,-0.022799398750066757,-0.03585657849907875,0.014603500254452229,0.0794668048620224,0.07605213671922684,-0.035391539335250854,-0.017105912789702415,0.010868224315345287,0.03188903629779816,0.04055479168891907,0.01614389754831791,-0.011223549954593182,0.049389395862817764,-0.07440315932035446,-0.02473141998052597,-0.05310127139091492,-0.03756428509950638,0.024416916072368622,0.03330564498901367,-2.994467607209117e-8,-0.041209876537323,-0.010835399851202965,0.03148041293025017,0.005198833532631397,0.015202515758574009,-0.05070957541465759,-0.01345369778573513,0.08268596231937408,-0.08825647085905075,-0.021823199465870857,-0.04882708564400673,0.00855652242898941,0.0538727305829525,-0.018452631309628487,0.1260511577129364,-0.03157048299908638,0.03858226537704468,-0.03906073421239853,-0.039694029837846756,-0.0777667835354805,0.016457729041576385,-0.011028802953660488,0.006043155211955309,-0.01897120475769043,-0.04938481003046036,0.06634248793125153,-0.04391146078705788,-0.013828552328050137,-0.07242481410503387,0.03187538683414459,0.03611935302615166,0.06612794101238251,-0.08864953368902206,-0.028534315526485443,-0.028780944645404816,0.06465945392847061,0.022396236658096313,-0.055263254791498184,0.10443177074193954,0.041926607489585876,-0.01723429001867771,0.12955352663993835,0.04571216553449631,0.15058808028697968,0.06458081305027008,0.10619767010211945,0.010582741349935532,-0.03777080401778221,0.016718538478016853,-0.05613136664032936,0.05508922040462494,0.020749667659401894,0.03707687184214592,0.09945999830961227,-0.07017453014850616,0.01860830746591091,0.015658792108297348,-0.027358291670680046,-0.1145961582660675,0.027269287034869194,0.11638193577528,0.0010342899477109313,-0.07516634464263916,-0.012931937351822853]},{"text":"He,” he continued, pointing to the corpse, “he suffered not in the consummation of the deed.","book":"1984","chapter":132,"embedding":[0.030523182824254036,0.1492454558610916,0.01701362058520317,0.0164461899548769,0.012925167568027973,0.02223251760005951,0.11936745047569275,0.004746433347463608,-0.03157222270965576,-0.07953229546546936,0.03385572507977486,-0.062436170876026154,-0.012167662382125854,-0.014219721779227257,0.01922273263335228,-0.015386600978672504,-0.05948619544506073,0.007523979526013136,0.020840659737586975,0.08491113781929016,0.03725377097725868,0.06569093465805054,0.034025609493255615,-0.03172742947936058,0.034749604761600494,-0.017869893461465836,0.0039098686538636684,0.021669087931513786,0.12243534624576569,0.02883744053542614,-0.07386933267116547,-0.05330927297472954,-0.0993623360991478,-0.017056750133633614,0.010560357943177223,0.04277653619647026,-0.0017073272028937936,-0.02984244003891945,-0.0007870769477449358,0.0004885454545728862,0.024324841797351837,0.061286840587854385,-0.062477950006723404,0.08070090413093567,0.02749486267566681,-0.007904206402599812,-0.00017025641864165664,0.018884709104895592,0.062204550951719284,-0.025981944054365158,-0.11143261939287186,0.0037049653474241495,-0.005443033296614885,0.000245064205955714,-0.06287502497434616,0.06845489889383316,0.009721211157739162,-0.034188445657491684,0.015993697568774223,-0.10446547716856003,0.021493345499038696,0.012486914172768593,0.04928674176335335,0.06294885277748108,0.08724633604288101,-0.03799687325954437,0.06110994890332222,-0.08456644415855408,-0.1074344590306282,0.15502730011940002,-0.009606781415641308,-0.013183596543967724,0.03898587450385094,-0.013257397338747978,-0.06271891295909882,-0.09214556217193604,-0.017910189926624298,-0.008205169811844826,0.013281128369271755,-0.014580599963665009,0.03239734470844269,-0.007481222972273827,-0.0045495242811739445,0.014781567268073559,-0.01764402911067009,-0.04546341300010681,0.006172643043100834,-0.031283508986234665,-0.05556154623627663,0.08615487068891525,-0.07208041846752167,-0.05760008841753006,-0.044975973665714264,-0.008725189603865147,0.04639812558889389,0.0906207263469696,-0.013931202702224255,0.12847086787223816,-0.026401979848742485,-0.02819548361003399,0.031117331236600876,0.04294820502400398,-0.06593246757984161,0.04812507703900337,-0.029247920960187912,-0.027280202135443687,-0.14435137808322906,-0.06046999245882034,-0.060199249535799026,0.04632817953824997,0.04007354751229286,-0.10987444221973419,-0.013721884228289127,-0.04494979977607727,0.054332245141267776,0.05108219012618065,-0.02440701238811016,-0.06629186123609543,-0.014232627116143703,0.009836763143539429,0.0228835791349411,0.03566792234778404,-0.028290050104260445,0.07284817099571228,-0.06597014516592026,-0.03425179794430733,0.10677725076675415,-5.974569791541266e-33,0.07869721204042435,-0.034157585352659225,-0.01284121721982956,-0.0665137842297554,-0.04931254684925079,0.021261628717184067,-0.044991929084062576,0.026821864768862724,0.04396045580506325,0.006894445046782494,-0.0375380702316761,-0.09490299224853516,-0.024289369583129883,-0.05914509296417236,-0.09836548566818237,0.04682227596640587,0.011031671427190304,0.024305565282702446,0.006770923733711243,-0.02081555500626564,-0.005193150136619806,0.06683868169784546,-0.05514007434248924,-0.031024033203721046,-0.03559301421046257,-0.04974222183227539,-0.028931749984622,-0.012355764396488667,-0.030705995857715607,-0.021000582724809647,0.007122297305613756,0.021183962002396584,0.04377652332186699,-0.023595143109560013,0.05680394172668457,0.008711353875696659,-0.03652682527899742,0.06342670321464539,-0.0942167192697525,0.005948951002210379,0.05296937748789787,0.04002036154270172,0.01678306609392166,-0.04477279260754585,-0.11694151163101196,-0.049779217690229416,0.04470217600464821,0.036869511008262634,-0.03579533100128174,0.06493061035871506,0.04411455988883972,0.013960237614810467,0.012673738412559032,-0.017566535621881485,0.039275988936424255,0.0608171783387661,-0.07004988193511963,-0.017721058800816536,-0.01841910183429718,0.012238712050020695,0.021401049569249153,-0.08436230570077896,-0.015481634065508842,0.06938472390174866,-0.0880461186170578,-0.05134687200188637,-0.03880946338176727,-0.04025116562843323,-0.02974730357527733,-0.03628915548324585,-0.07534319907426834,-0.03812703117728233,-0.013168146833777428,0.016637306660413742,-0.06723293662071228,0.014105064794421196,-0.0948905497789383,-0.03462858125567436,-0.07848992198705673,-0.03040768951177597,0.003022765042260289,-0.014390633441507816,-0.06640760600566864,0.058141909539699554,-0.017807606607675552,0.054887380450963974,0.014803429134190083,-0.07698208838701248,-0.0672772228717804,0.01939682848751545,0.02727259136736393,0.025526592507958412,-0.06644178181886673,0.00011139973503304645,-0.021585075184702873,7.806479105974928e-34,-0.034325625747442245,0.019437074661254883,-0.05103970319032669,0.0632324144244194,-0.03907002508640289,-0.05025746300816536,-0.025117836892604828,-0.03532899171113968,0.0372314453125,-0.07913843542337418,-0.03986881673336029,0.007386994548141956,0.04542528837919235,0.06937117129564285,-0.0737188383936882,-0.006977795157581568,-0.07251225411891937,0.021729417145252228,-0.02981380559504032,-0.007026784587651491,-0.007649614941328764,0.020056217908859253,0.09078242629766464,-0.09685388207435608,-0.03333679214119911,0.027901360765099525,0.07206294685602188,-0.03492651879787445,-0.03563801571726799,-0.04577595368027687,0.11232373118400574,0.03367169201374054,0.013704277575016022,0.039778269827365875,0.044038254767656326,0.012718104757368565,0.08621446788311005,-0.07555234432220459,-0.0013662726851180196,-0.032631345093250275,0.08203842490911484,0.03524802252650261,0.015447793528437614,0.042431384325027466,0.03289404138922691,-0.04192290082573891,-0.05761018022894859,0.006144319195300341,0.09212129563093185,0.03345448151230812,-0.034872934222221375,-0.013834028504788876,0.005905869882553816,-0.019985293969511986,-0.04959024116396904,0.01629212312400341,-0.03318551555275917,-0.026695072650909424,0.06468506902456284,-0.0648156926035881,0.01193375512957573,0.004600552376359701,-0.0033063520677387714,0.07722707092761993,0.07512333244085312,0.04322368651628494,0.03555646911263466,0.07757856696844101,0.015031100250780582,0.05821845680475235,0.0035294212866574526,0.03178047016263008,-0.00044190528569743037,-0.07289065420627594,0.02040623314678669,0.013490618206560612,-0.02711963653564453,0.02234751544892788,-0.003057647030800581,-0.08746810257434845,0.02405245415866375,-0.08057374507188797,0.018333181738853455,-0.0058828662149608135,0.011630850844085217,-0.060063835233449936,-0.09867338091135025,-0.042547162622213364,-0.026098230853676796,0.029376478865742683,-0.026501070708036423,0.015132647939026356,0.06444671750068665,-0.05981465429067612,-0.052362121641635895,-2.9686978209042536e-8,-0.039108023047447205,0.017116466537117958,-0.008616232313215733,-0.005578826181590557,0.015027280896902084,0.06220270320773125,0.06147027015686035,0.027996912598609924,-0.037040505558252335,0.06471724808216095,-0.020790090784430504,-0.0010366823989897966,0.03675154969096184,-0.011015457101166248,0.019569091498851776,0.034905802458524704,-0.02837998978793621,-0.11664246022701263,-0.026563482359051704,-0.018792174756526947,0.014096799306571484,0.020469505339860916,-0.05672068148851395,-0.011626986786723137,0.022300323471426964,0.06921607255935669,0.0717405453324318,0.04656628891825676,-0.051000162959098816,-0.05701485276222229,0.06076563894748688,0.11177484691143036,-0.02000325545668602,-0.03837793320417404,-0.109299436211586,0.02492472343146801,0.10612737387418747,0.05794721096754074,0.06684405356645584,-0.09195884317159653,0.026220006868243217,0.078541100025177,0.03480824455618858,-0.011962410993874073,0.05694510042667389,0.003980470355600119,-0.022046463564038277,0.07638044655323029,-0.028252234682440758,0.017626291140913963,-0.011540481820702553,0.015444044023752213,-0.009348144754767418,0.010884436778724194,0.05383313447237015,-0.082789845764637,0.06722423434257507,0.10047440975904465,-0.029764575883746147,-0.001717267674393952,0.10483568906784058,0.040345095098018646,0.028096618130803108,-0.04570756480097771]},{"text":"Evil thenceforth became my good.","book":"1984","chapter":133,"embedding":[-0.023798968642950058,0.011647756211459637,0.01330849900841713,0.014564207755029202,-0.019676409661769867,-0.016337880864739418,0.0048919846303761005,-0.04921436309814453,0.01257438026368618,-0.026780379936099052,0.05613978952169418,0.0606396310031414,0.034555159509181976,0.03445490449666977,-0.05254785716533661,-0.022409027442336082,0.055898819118738174,0.0738285556435585,-0.029398003593087196,0.01804645173251629,-0.11549871414899826,0.0535215400159359,-0.008817357011139393,-0.03318551182746887,-0.06292002648115158,0.05817432701587677,-0.006617380306124687,-0.009405767545104027,0.034398432821035385,-0.09741348773241043,-0.06534673273563385,-0.01135193184018135,-0.02769256755709648,0.04360109940171242,-0.007612656336277723,-0.08280804753303528,-0.0005190266529098153,-0.02239435352385044,0.031871113926172256,0.0044771055690944195,-0.029179245233535767,-0.03167114406824112,-0.04655001312494278,-0.008940975181758404,-0.039596717804670334,-0.05354079604148865,0.043912310153245926,-0.03716421127319336,0.07634520530700684,-0.041335221379995346,-0.006647985894232988,-0.008670867420732975,-0.009254911914467812,0.010899976827204227,0.0016219626413658261,0.007026565261185169,0.04374626278877258,0.04727114364504814,-0.03488392010331154,0.05475907400250435,0.05101310834288597,0.029273347929120064,-0.0020047544967383146,-0.054753635078668594,0.011758023872971535,0.052859049290418625,0.028859585523605347,0.03659549728035927,-0.06039467826485634,0.07906829565763474,-0.06431122124195099,0.01938481442630291,0.008908310905098915,-0.02531820721924305,-0.054503604769706726,-0.001102152280509472,0.08656351268291473,-0.03198792785406113,0.11921980232000351,-0.011258468963205814,0.02819850854575634,0.04042428731918335,-0.028713610023260117,0.043228209018707275,0.043279971927404404,-0.015126487240195274,0.01666288450360298,-0.0670003667473793,0.07512058317661285,0.01616848260164261,-0.02114936150610447,-0.04050199314951897,0.0073663340881466866,0.06818775087594986,0.06685798615217209,-0.07298612594604492,-0.04494238644838333,-0.09634490311145782,-0.0173001941293478,0.08936740458011627,-0.0774466022849083,-0.01742132194340229,-0.06872324645519257,-0.013214829377830029,0.1153683289885521,-0.02236822620034218,-0.0066224499605596066,0.006192137952893972,0.034612592309713364,-0.01758650317788124,0.019811594858765602,0.013279598206281662,0.02311018668115139,0.011678745970129967,0.03205956518650055,0.11038316041231155,-0.042658936232328415,0.012246135622262955,-0.11807501316070557,0.00036337843630462885,0.14455002546310425,0.11831450462341309,-0.014931459911167622,0.09861338883638382,-0.10691855847835541,-0.10565687716007233,0.00974187534302473,-3.657132270063052e-33,-0.06791633367538452,-0.0017876066267490387,0.043923042714595795,-0.022094326093792915,-0.0013396547874435782,-0.0025715730153024197,-0.11113308370113373,0.028006501495838165,-0.02413519285619259,-0.039853356778621674,-0.001009176718071103,0.0011981079587712884,0.004533557686954737,0.03844946622848511,-0.0279905553907156,-0.0047849505208432674,-0.019486110657453537,-0.020922934636473656,0.08508438616991043,0.010329253040254116,-0.07295021414756775,0.0023585124872624874,0.023120570927858353,-0.12149697542190552,-0.011563184671103954,-0.017931675538420677,-0.014829562045633793,0.012531190179288387,-0.00812731496989727,-0.00700755137950182,-0.010240430943667889,0.010405977256596088,0.002223241375759244,0.012090465985238552,0.030659988522529602,-0.01554108690470457,-0.09324989467859268,-0.03370273858308792,-0.018979033455252647,0.018317457288503647,0.03761088848114014,0.06658291816711426,0.018505482003092766,-0.035773489624261856,0.0887785255908966,-0.01044006459414959,-0.048449303954839706,0.028781509026885033,-0.030813757330179214,-0.02177461050450802,-0.06179773062467575,-0.049346767365932465,0.08387960493564606,0.027601182460784912,-0.06913836300373077,-0.049682777374982834,-0.008410351350903511,0.09985796362161636,-0.05294358730316162,0.0019651870243251324,0.009457427076995373,-0.02798086404800415,-0.00735491281375289,-0.04910335689783096,-0.06860421597957611,-0.06233256310224533,0.0710652768611908,-0.02807455137372017,0.025838086381554604,-0.02904914878308773,-0.04620984569191933,-0.0013252401258796453,-0.050357718020677567,-0.026595350354909897,-0.002950503956526518,-0.0261081550270319,-0.0492863729596138,-0.003390195081010461,0.014914941042661667,-0.033119816333055496,0.025827305391430855,0.01545482873916626,0.012310845777392387,-0.005140914116054773,0.1381961703300476,-0.01771010458469391,0.0063230060040950775,-0.16742926836013794,0.02103162184357643,0.053161341696977615,-0.01805718243122101,-0.04742084816098213,0.050015080720186234,-0.004537145607173443,-0.09414428472518921,2.446472638393931e-33,0.12021784484386444,0.014750463888049126,-0.023463468998670578,0.07286051660776138,-0.040750931948423386,-0.047995470464229584,-0.057996779680252075,0.11459659785032272,-0.10708039999008179,0.05508158728480339,0.033828530460596085,0.008071490563452244,0.06828475743532181,0.011542219668626785,0.06501895934343338,0.002805133583024144,0.037965334951877594,0.04584303870797157,0.057431187480688095,0.01330624520778656,0.017898274585604668,0.0011691233376041055,-0.0636625736951828,-0.0005226318608038127,0.04799916222691536,0.06818101555109024,0.09120158851146698,0.03338693454861641,-0.11886290460824966,0.018116407096385956,0.01908797398209572,0.024550054222345352,-0.0824577808380127,0.027471916750073433,0.05283719301223755,0.0523330457508564,0.014262364245951176,-0.11141892522573471,0.041710738092660904,-0.08301430195569992,-0.07337991893291473,0.08583347499370575,0.09527980536222458,0.013279053382575512,-0.03736264631152153,-0.026598302647471428,-0.009928122162818909,0.12415163964033127,0.0593874529004097,-0.011846390552818775,-0.03907640278339386,-0.04323413968086243,0.01003035344183445,-0.0022219049278646708,-0.04650639742612839,0.022159213200211525,0.04497450962662697,-0.07107596099376678,0.07501806318759918,0.016190163791179657,-0.0692070871591568,-0.006488689221441746,-0.025453994050621986,0.010164360515773296,0.022386668249964714,0.013985288329422474,-0.029174646362662315,0.09290950000286102,-0.030495552346110344,-0.04245903715491295,-0.02998347394168377,0.05414877086877823,-0.08095936477184296,-0.016271740198135376,0.0021676351316273212,-0.05428444594144821,0.05299520120024681,-0.02075864002108574,-0.03765567019581795,0.041003938764333725,-0.03812523931264877,0.0189043078571558,-0.011858614161610603,0.00239943852648139,-0.01833355613052845,-0.021435068920254707,0.04549149423837662,0.0808715671300888,0.039287712424993515,0.05210559070110321,-0.0041822646744549274,-0.03541666641831398,-0.013755050487816334,0.000608055095653981,0.024153033271431923,-1.584713338331767e-8,0.01385844498872757,0.04481842741370201,0.033777106553316116,0.04847952723503113,0.022129449993371964,0.017908092588186264,-0.05279350280761719,0.006962967570871115,-0.08771608024835587,0.006930023431777954,-0.014786727726459503,0.0671437457203865,0.07575037330389023,0.008212851360440254,0.055913276970386505,0.07232224941253662,0.01883331686258316,-0.03948138281702995,-0.027179082855582237,-0.004791329149156809,-0.019354697316884995,0.04560521990060806,0.021195989102125168,-0.051540810614824295,-0.006463292986154556,0.002538858912885189,-0.06391505897045135,-0.044690944254398346,0.024099621921777725,0.03356353938579559,0.14328160881996155,0.10924696922302246,-0.09467865526676178,0.01690760813653469,-0.12993422150611877,0.02266709692776203,-0.06990991532802582,-0.021428298205137253,0.08682766556739807,-0.047540333122015,0.044953908771276474,0.08399893343448639,0.02255767583847046,-0.023942070081830025,-0.04284466803073883,-0.04215528815984726,0.04112671688199043,-0.012297696433961391,0.040689460933208466,-0.07593265920877457,0.05487779900431633,0.04990720376372337,-0.018677789717912674,0.05680786073207855,0.10261931270360947,-0.044285085052251816,0.00243527814745903,0.03800316900014877,-0.037606604397296906,0.059072114527225494,0.06433863937854767,-0.04175863787531853,0.021342532709240913,-0.038442373275756836]},{"text":"I am content to suffer alone while my sufferings shall endure; when I die, I am well satisfied that abhorrence and opprobrium should load my memory.","book":"1984","chapter":133,"embedding":[0.015758519992232323,0.015983955934643745,-0.03868240863084793,0.10850629955530167,-0.015198858454823494,0.04090221971273422,0.06235925853252411,0.11536753177642822,0.06764877587556839,-0.034920379519462585,0.0071821012534201145,0.03390036150813103,0.020657237619161606,-0.01805119402706623,0.037374116480350494,0.06537547707557678,0.005551934242248535,0.020578401163220406,0.01636609435081482,0.03843099996447563,-0.03817576542496681,0.07441867142915726,0.00512283481657505,-0.03295714408159256,-0.10146419703960419,0.07598081976175308,-0.043661896139383316,-0.006280429661273956,0.10062800347805023,0.0067001222632825375,0.10647165775299072,-0.09290704876184464,-0.02190617099404335,-0.014362680725753307,0.033661939203739166,0.03669852763414383,-0.08569960296154022,-0.07764175534248352,-0.010798207484185696,-0.0075101167894899845,0.011869193986058235,0.12730605900287628,-0.047193028032779694,0.0044692521914839745,0.04847639799118042,-0.03549842908978462,-0.06042672321200371,-0.011186444200575352,0.05540623143315315,-0.0833982527256012,-0.03928355872631073,0.021177468821406364,-0.07636900246143341,0.03112993948161602,0.005017092451453209,-0.022016320377588272,0.0001810761314118281,-0.019523324444890022,-0.059187889099121094,-0.011927058920264244,-0.04044925794005394,0.04895481467247009,-0.014548083767294884,0.03965941444039345,0.02852264605462551,0.015276683494448662,0.11062885075807571,0.0457824245095253,-0.08711493015289307,0.08820956945419312,-0.09248107671737671,0.011592802591621876,0.036990609019994736,0.07010406255722046,-0.012122818268835545,-0.017992328852415085,-0.012709222733974457,-0.14732138812541962,-0.0015259546926245093,-0.008472852408885956,0.03460729122161865,0.050156958401203156,0.009134339168667793,-0.016310203820466995,-0.054530736058950424,-0.024015087634325027,0.06733933091163635,0.046391554176807404,0.06338685750961304,-0.008365427143871784,-0.02481788583099842,0.051102034747600555,-0.0291121955960989,0.04419700801372528,0.029721062630414963,-0.015364627353847027,-0.026615576818585396,0.02351752668619156,-0.13761696219444275,0.0522732138633728,-0.03408847004175186,0.013062899932265282,-0.020711397752165794,0.06542433798313141,-0.03663483262062073,-0.004549211822450161,-0.09155753999948502,-0.03737417608499527,-0.011732038110494614,0.01342534739524126,-0.037453725934028625,-0.05827723816037178,0.00242664385586977,-0.05113207921385765,0.016598543152213097,0.035004064440727234,-0.043867647647857666,-0.01731386035680771,0.03270436450839043,0.02690165303647518,-0.019659463316202164,-0.07277177274227142,0.029699549078941345,0.054232656955718994,0.005431061610579491,-0.10292714834213257,0.053630851209163666,-5.031594284454374e-34,0.026071878150105476,-0.12042132019996643,0.027356121689081192,0.014701828360557556,-0.06832897663116455,0.01844617910683155,-0.04377336427569389,-0.031114522367715836,-0.043508902192115784,-0.0717349499464035,0.011609257198870182,-0.060139741748571396,-0.005990605801343918,0.03689216449856758,-0.039209138602018356,-0.027003755792975426,-0.019486647099256516,0.07041209936141968,0.02839505299925804,0.039451297372579575,-0.02190113253891468,0.009287848137319088,0.011650745756924152,-0.005091104656457901,-0.03212900832295418,-0.024920955300331116,0.028946653008461,-0.013178301975131035,-0.013668883591890335,0.06909327954053879,-0.013990810140967369,0.019547251984477043,-0.031134825199842453,-0.0334010124206543,0.009057983756065369,0.030341114848852158,-0.07825688272714615,-0.00154594867490232,-0.044827818870544434,-0.09443746507167816,-0.006801077164709568,0.059925977140665054,0.0029556837398558855,-0.02773885987699032,-0.006804534699767828,-0.022191528230905533,0.0521823912858963,-0.04670938849449158,-0.09980078786611557,-0.011521338485181332,-0.018781334161758423,0.03761807084083557,0.03946593031287193,-0.06566720455884933,0.040483590215444565,-0.04565662518143654,-0.1058577299118042,0.036229416728019714,0.08875599503517151,0.016852328553795815,-0.03626999258995056,0.005304214544594288,-0.031025389209389687,0.0060271453112363815,0.02170160599052906,0.03022974357008934,0.0011186288902536035,-0.09499218314886093,-0.013571317307651043,-0.05324244126677513,-0.06818947941064835,-0.06413858383893967,-0.018887285143136978,0.020312516018748283,-0.007086675614118576,-0.01157074049115181,0.07723834365606308,-0.022028090432286263,-0.053720083087682724,-0.013886984437704086,-0.005737080238759518,-0.050721943378448486,-0.03456065058708191,0.007469176780432463,0.06862439215183258,0.02918202057480812,0.01085877325385809,-0.07811547070741653,-0.008064777590334415,0.05403534695506096,0.12582935392856598,0.005731374956667423,0.03424236178398132,-0.046447888016700745,-0.09132349491119385,-5.071419206540767e-34,0.03712677210569382,-0.03188934177160263,-0.057892002165317535,0.037373244762420654,-0.032061368227005005,0.0004956760094501078,-0.07802776992321014,-0.019015837460756302,-0.04426649212837219,0.03779951483011246,-0.04473298415541649,0.032137591391801834,0.0035379244945943356,0.05579725652933121,-0.11393528431653976,0.005004637409001589,-0.042724885046482086,0.025545498356223106,-0.06460414081811905,-0.03252887353301048,-0.014013171195983887,0.12753704190254211,0.05210845544934273,-0.044295504689216614,0.035101596266031265,0.05951768159866333,0.024025674909353256,-0.019929546862840652,-0.03033432550728321,-0.05893918499350548,0.09177945554256439,0.01909780688583851,-0.07845376431941986,-0.08336921781301498,-0.0284744706004858,0.030417166650295258,0.10186663269996643,0.04045850783586502,-0.04383477196097374,-0.05594031512737274,-0.01642775721848011,0.04001038148999214,-0.08349781483411789,0.000578450271859765,0.01818392612040043,-0.040587492287158966,0.03564845398068428,0.011798744089901447,0.06533309072256088,0.03694336116313934,-0.06437064707279205,0.021703243255615234,0.015371942892670631,-0.1142224594950676,0.07090572267770767,-0.12377625703811646,-0.01658838987350464,-0.08341232687234879,-0.03518686071038246,-0.05111284181475639,0.05103713646531105,-0.029390474781394005,-0.022423772141337395,0.056549593806266785,0.08243653923273087,0.027549371123313904,0.039093729108572006,0.06332255899906158,-0.043414872139692307,0.03969264775514603,-0.02740345522761345,-0.006364395841956139,-0.10543103516101837,-0.06657526642084122,0.08113949745893478,0.0331546813249588,-0.0234404094517231,0.01951487734913826,-0.08081655949354172,0.032730113714933395,-0.007493062876164913,-0.047458548098802567,0.07933999598026276,0.05159781873226166,-0.0913645476102829,-0.03984856605529785,-0.03371255099773407,0.03800559043884277,0.017763350158929825,0.026486044749617577,-0.03685815632343292,0.02590486966073513,-0.01770104095339775,-0.04346047714352608,0.012014023028314114,-3.1187031623858275e-8,-0.006173654459416866,-0.05942455306649208,0.07714607566595078,-0.02177676558494568,0.04714284837245941,0.00045199369196780026,0.022225722670555115,0.012092838063836098,-0.05753482133150101,0.0868934616446495,0.06810466945171356,0.0017438373761251569,-0.002013120101764798,0.06457599997520447,0.04936652258038521,0.08067488670349121,0.02572399191558361,-0.05313325673341751,-0.03065650910139084,-0.05157661437988281,0.03374229371547699,0.01972229778766632,0.0436423234641552,-0.03143485262989998,0.029605453833937645,-0.004826504737138748,0.03923967108130455,-0.06976368278265,-0.07360565662384033,-0.01590035669505596,0.08115167170763016,0.033578019589185715,-0.046168629080057144,-0.024055693298578262,-0.01722625084221363,-0.024945734068751335,0.0548991784453392,0.05044904723763466,-0.04229220002889633,0.02575625106692314,0.05260103568434715,0.10730107873678207,0.0903913751244545,0.09312634915113449,0.0068202149122953415,0.041355255991220474,0.020882194861769676,0.024434087797999382,-0.05942476913332939,-0.03666310757398605,0.00970434583723545,0.03945974260568619,0.05442354455590248,0.07029735296964645,0.06439575552940369,-0.020790595561265945,-0.000748688355088234,0.06174793094396591,-0.08556273579597473,-0.0018272098386660218,0.15556451678276062,-0.007847071625292301,0.027457792311906815,-0.03162194415926933]},{"text":"They were for ever ardent and craving; still I desired love and fellowship, and I was still spurned.","book":"1984","chapter":134,"embedding":[0.017199009656906128,0.03724496811628342,0.08184764534235,0.059676412492990494,0.04945618659257889,-0.046818893402814865,0.02540689706802368,0.004687739070504904,0.10132082551717758,-0.0348929837346077,0.016816377639770508,-0.00048759664059616625,0.004801837727427483,-0.04651296138763428,0.054217178374528885,-0.026037069037556648,-0.03918004035949707,-0.06276917457580566,-0.024515477940440178,0.043294183909893036,-0.0996386781334877,0.02970585972070694,-0.03919144719839096,-0.0004355557030066848,0.010265541262924671,0.06630953401327133,-0.04272120073437691,-0.015372713096439838,0.03749210759997368,0.07218930125236511,0.026775000616908073,0.09344124048948288,0.008275246247649193,0.025851352140307426,-0.008843684569001198,0.036386165767908096,-0.04882652312517166,-0.013755705207586288,0.026830658316612244,-0.018958711996674538,0.09170006215572357,0.0022829389199614525,0.07268697023391724,-0.04418252035975456,-0.04120783507823944,-0.1031811460852623,0.004890669137239456,-0.03835375979542732,0.008855904452502728,0.05405426397919655,0.07458583265542984,-0.03294610232114792,0.0027383980341255665,-0.031179338693618774,0.010379495099186897,0.06626184284687042,-0.026506775990128517,0.06493332237005234,0.03318331763148308,-0.00915423221886158,-0.052699748426675797,0.008153342641890049,0.004548152908682823,0.05476578697562218,-0.0569395087659359,0.022814249619841576,-0.0025998407509177923,0.04341559857130051,0.10934274643659592,-0.0322759784758091,0.010989155620336533,0.004991885740309954,-0.014535130932927132,-0.0492885485291481,0.004492685664445162,-0.01450191531330347,0.0008370935101993382,-0.09323660284280777,-0.03707607835531235,-0.11930748075246811,-0.053636156022548676,0.051179707050323486,-0.029676467180252075,-0.0012550086248666048,-0.044573601335287094,0.018893081694841385,0.0384071059525013,-0.017353210598230362,0.01528929267078638,-0.03581524267792702,0.003451611613854766,-0.028818802908062935,-0.05422846972942352,0.04959898069500923,-0.06836342811584473,-0.03655007854104042,-0.0009907494531944394,0.012877569533884525,-0.038252051919698715,0.06514208763837814,-0.02362823858857155,-0.00014632260717917234,-0.03824368119239807,0.029877781867980957,-0.0311079453676939,-0.03214901313185692,-0.10825049877166748,0.018928145989775658,0.015949051827192307,0.0006624736706726253,-0.048029523342847824,-0.009204418398439884,0.06574160605669022,-0.02242390625178814,-0.048026133328676224,0.002215334679931402,-0.03624243661761284,0.008270367048680782,0.07865031063556671,0.08949901908636093,-0.08170489966869354,0.04420352354645729,0.01909537985920906,0.02859073132276535,-0.06554345786571503,-0.08860498666763306,-0.009736981242895126,-2.1179743135719116e-33,-0.007794052828103304,-0.048276256769895554,0.019714919850230217,-0.007489066570997238,0.0030930691864341497,0.00936234649270773,0.020861174911260605,0.06801356375217438,-0.016124993562698364,-0.05296485871076584,-0.00852147676050663,0.08310113102197647,-0.02508588507771492,-0.016439318656921387,0.02894996479153633,-0.08845166116952896,-0.005636026617139578,-0.013404129073023796,0.09867112338542938,-0.01154326368123293,-0.0623091459274292,0.12091714888811111,-0.033006876707077026,-0.009032613597810268,-0.05386679247021675,-0.03768337890505791,-0.031152840703725815,0.07587326318025589,-0.021723492071032524,0.04452630877494812,0.040215615183115005,0.014293648302555084,0.04501178115606308,-0.04604651778936386,0.0056659565307199955,0.07461517304182053,0.03198428824543953,-0.08400317281484604,-0.055130861699581146,-0.01727941632270813,-0.003728888463228941,0.03177117183804512,0.07362264394760132,0.014908772893249989,-0.07805995643138885,0.005599322263151407,0.0178469717502594,-0.0022512162104249,-0.07356337457895279,-0.007972552441060543,-0.06918022781610489,0.020713897421956062,0.07919420301914215,0.039557747542858124,-0.0722646415233612,-0.011087623424828053,-0.014917937107384205,0.06366118043661118,-0.030629100278019905,-0.01843022182583809,-0.00561616662889719,-0.02914036065340042,0.05172933265566826,-0.024216769263148308,-0.011137387715280056,0.02147616073489189,0.05107125639915466,-0.013211267068982124,-0.00818618293851614,0.012787112034857273,-0.04566784203052521,-0.02827187441289425,-0.030843444168567657,-0.040571365505456924,0.034484293311834335,-0.08330206573009491,-0.017666030675172806,-0.0224823709577322,0.007347173988819122,-0.02647729404270649,0.04440324753522873,-0.030892333015799522,-0.06391602754592896,0.058812569826841354,0.019818851724267006,-0.0650860071182251,0.09266524016857147,-0.14090222120285034,0.00033335870830342174,-0.007116351276636124,0.04184330627322197,0.10163909196853638,0.02522091567516327,-0.1044757142663002,-0.06869973242282867,1.7599754886480685e-33,0.05867075175046921,0.006530976388603449,0.02858768403530121,-0.014927932992577553,0.06935019791126251,-0.008970092050731182,-0.05201704427599907,-0.08075433224439621,-0.04643360525369644,0.04332219436764717,0.03860548138618469,0.042731065303087234,0.029100006446242332,-0.00902685895562172,-0.13493113219738007,-0.00985219981521368,-0.013008576817810535,0.02053888328373432,0.05081351473927498,-0.022328417748212814,-0.0020814291201531887,0.0579245388507843,-0.0707123875617981,-0.015930628404021263,0.02245262823998928,0.050950609147548676,0.044672541320323944,-0.0055361175909638405,-0.07649460434913635,-0.035891905426979065,0.09199541062116623,0.046256303787231445,-0.14810684323310852,-0.018139516934752464,0.0895732194185257,0.02235652506351471,-0.045426443219184875,0.12582610547542572,-0.06657090038061142,-0.10159587860107422,-0.08495903015136719,-0.019494323059916496,0.03613287955522537,0.08297035098075867,-0.026004958897829056,0.010163437575101852,0.13741366565227509,0.06747116148471832,0.007585757412016392,0.03007439523935318,-0.05975379794836044,0.018169624730944633,0.02860012836754322,-0.02230459824204445,-0.038432665169239044,-0.06390859186649323,0.03137937933206558,-0.03367099165916443,0.06798050552606583,-0.07971426099538803,-0.038438908755779266,0.0033963522873818874,0.004461876582354307,0.0015971465036273003,0.03679873049259186,-0.007775231264531612,0.031530678272247314,-0.0033960447181016207,-0.1131930872797966,-0.017646659165620804,-0.024242836982011795,-0.053892552852630615,-0.015665855258703232,0.10927703976631165,-0.017772914841771126,-0.10418487340211868,-0.06185726076364517,-0.11046285182237625,-0.020238304510712624,-0.04406801983714104,-0.01670520007610321,0.03246403858065605,0.010768871754407883,0.07748394459486008,-0.05564131960272789,0.03653302416205406,-0.025138624012470245,0.048429280519485474,0.02401265688240528,0.021861134096980095,0.074652299284935,-0.06387226283550262,0.08348274976015091,0.022410135716199875,0.03299980238080025,-2.3156745854180372e-8,-0.02680160477757454,0.01547231525182724,-0.0867457315325737,0.06211571395397186,0.04647154361009598,-0.03128949925303459,0.010936258360743523,0.029866669327020645,-0.011737430468201637,0.03940342366695404,-0.04133683815598488,0.01997247338294983,0.027323201298713684,0.011865080334246159,0.10560733824968338,0.0065021272748708725,0.1196468323469162,-0.04903998225927353,-0.03144039213657379,0.05462447553873062,0.00688287615776062,0.05833747610449791,-0.03875911235809326,-0.12234550714492798,-0.05623219534754753,0.06472856551408768,0.029163088649511337,-0.07042189687490463,0.07400735467672348,0.02901494689285755,0.024922046810388565,-0.023049231618642807,-0.02658446505665779,0.009502308443188667,0.04272596165537834,0.0753106027841568,-0.12010513246059418,-0.0076593453995883465,0.021779237315058708,0.04691683501005173,0.046014029532670975,0.03481883555650711,0.035614676773548126,0.027369868010282516,-0.035621970891952515,0.02092374674975872,0.07064352929592133,0.08090423792600632,0.035463061183691025,-0.04091321676969528,0.02113972045481205,0.06689154356718063,-0.034195974469184875,0.02435312792658806,-0.019331010058522224,-0.10450487583875656,-0.037566520273685455,0.06601987034082413,0.01847359724342823,-0.057437289506196976,0.057479772716760635,-0.001279361778870225,-0.08558471500873566,-0.066612109541893]},{"text":"You hate me, but your abhorrence cannot equal that with which I regard myself.","book":"1984","chapter":134,"embedding":[0.01385321095585823,0.03302614390850067,0.04344223439693451,-0.03475889563560486,-0.01590530015528202,-0.04034193977713585,0.019372010603547096,0.05815573409199715,0.06423025578260422,-0.0035368481185287237,-0.015015160664916039,-0.09692738205194473,0.0756506621837616,-0.05258745327591896,-0.06059548631310463,0.04465711489319801,0.01610562764108181,-0.030924074351787567,0.0337984599173069,0.01679610088467598,-0.07577956467866898,0.11821556836366653,-0.0003344954166095704,0.05928485095500946,-0.11061477661132812,0.016109349206089973,0.03374108672142029,0.05226634815335274,0.009506765753030777,0.023087572306394577,0.004169709049165249,-0.10238126665353775,0.0014654825208708644,0.04567157104611397,0.047342993319034576,-0.025643793866038322,0.001575699308887124,-0.0017880741506814957,0.04612840712070465,0.006774527486413717,0.011906368657946587,0.06796576082706451,0.027586642652750015,-0.052048422396183014,0.032970137894153595,-0.09514205902814865,-0.031439751386642456,0.0009442091104574502,-0.04560822993516922,-0.038856182247400284,-0.07441868633031845,0.10073310136795044,-0.016395878046751022,0.040405839681625366,0.0494212843477726,0.01989232376217842,-0.07011574506759644,0.10669288784265518,0.05736834183335304,0.07868954539299011,0.01670849323272705,0.032680001109838486,-0.003517327830195427,0.001295066555030644,0.08511743694543839,0.028734154999256134,0.06177457422018051,0.02747822366654873,-0.04865996912121773,0.0671638771891594,-0.038885995745658875,0.08905385434627533,0.01996319741010666,0.05305199325084686,0.025639120489358902,-0.06370218843221664,0.015311756171286106,-0.06498022377490997,0.04377972334623337,-0.00040172284934669733,-0.06058959662914276,0.06539922952651978,0.030476845800876617,-0.03012690320611,-0.060699958354234695,-0.03172370046377182,0.05160374194383621,0.0043059117160737514,0.03335750102996826,-0.06100458651781082,-0.0487782247364521,-0.05289072170853615,-0.005309312604367733,-0.01906011253595352,0.004265408031642437,-0.04705657809972763,0.02465321309864521,0.011952589266002178,-0.09814484417438507,0.02901647426187992,0.02263970859348774,-0.025464683771133423,-0.07382301986217499,0.03188775107264519,-0.012582496739923954,-0.008047003298997879,-0.09322898834943771,-0.0628826692700386,-0.05935271084308624,-0.031097767874598503,-0.07593954354524612,-0.060569457709789276,-0.04046366736292839,-0.03674820438027382,-0.012838277965784073,0.03384105861186981,0.05385143682360649,0.012543446384370327,0.050856269896030426,0.02480146288871765,0.03594465181231499,0.02399108000099659,-0.06033436954021454,0.15294088423252106,-0.0404469333589077,-0.12191988527774811,-0.08321048319339752,-3.539723526960937e-33,-0.007915441878139973,-0.058990903198719025,0.04173462837934494,-0.013080024160444736,-0.024934222921729088,-0.02120608650147915,-0.050534117966890335,0.049906596541404724,0.005365610588341951,-0.0023838598281145096,0.04996773228049278,0.06352795660495758,-0.02610405907034874,0.06777367740869522,0.06769361346960068,0.020513759925961494,0.041770417243242264,0.024812616407871246,-0.0009105158969759941,-0.010705540888011456,-0.055066708475351334,-0.0017567547038197517,0.024594781920313835,-0.047427114099264145,-0.027267295867204666,-0.05555878207087517,-0.023911651223897934,0.04833820462226868,-0.013111100532114506,0.016014443710446358,0.020906496793031693,-0.015036051161587238,-0.010133572854101658,0.038958895951509476,0.008697536773979664,-0.12944886088371277,0.03625278174877167,0.041123513132333755,0.0012387924361974,-0.055938538163900375,-0.02930612675845623,-0.007158420514315367,-0.026741541922092438,-0.007889806292951107,0.08571333438158035,-0.03550688549876213,0.05020643770694733,0.047150868922472,-0.007548539433628321,0.0637141615152359,-0.006082760635763407,0.020842235535383224,0.09500391781330109,0.02058105170726776,0.01809200830757618,-0.04579027369618416,-0.03904686123132706,0.012007776647806168,0.07616126537322998,-0.002330286428332329,-0.05796405300498009,0.03764034062623978,-0.008576885797083378,0.005854787304997444,-0.05895298719406128,-0.07135436683893204,0.05401650071144104,-0.0030405072029680014,-0.05356854200363159,-0.053580742329359055,0.030657455325126648,-0.06843817979097366,-0.028096647933125496,0.007285343483090401,0.06823781877756119,-0.07810711115598679,0.10578496754169464,0.010004607029259205,0.01652604155242443,-0.057163696736097336,-0.020863080397248268,0.0893944576382637,0.0006911593955010176,-0.049977418035268784,0.060127321630716324,-0.008197792805731297,0.0657484233379364,-0.03439757600426674,0.13250310719013214,-0.026476455852389336,0.013117111288011074,-0.07283202558755875,-0.018137816339731216,-0.026844825595617294,-0.1123577430844307,1.666564646388983e-33,0.10600841790437698,-0.03639372065663338,0.09322793781757355,0.013274606317281723,-0.04528062790632248,-0.10299419611692429,-0.0019079692428931594,0.05668659880757332,0.046930208802223206,0.04510682448744774,0.03054296039044857,0.018085800111293793,-0.03173862770199776,0.021095072850584984,0.04731672629714012,-0.06305564194917679,0.015263063833117485,-0.0384814478456974,-0.11432575434446335,-0.06330646574497223,0.039993125945329666,0.12316996604204178,-0.026744674891233444,-0.01695723459124565,-0.045201677829027176,-0.04109487310051918,0.10152719914913177,-0.04728265106678009,0.06163522228598595,-0.10598234832286835,0.08111810684204102,-0.01766171120107174,-0.07578158378601074,-0.04189043492078781,0.010523537173867226,-0.04931846261024475,-0.03837811201810837,0.039390191435813904,-0.04749000817537308,-0.0764850527048111,-0.04560426250100136,-0.03599925339221954,-0.010146945714950562,-0.03900806978344917,0.07532224804162979,-0.05582495778799057,0.028814367949962616,-0.020064234733581543,0.034277934581041336,-0.008042696863412857,-0.0934404581785202,0.05588283762335777,0.03137946501374245,-0.03607304394245148,0.013459602370858192,-0.0649389773607254,0.09444469213485718,-0.045322757214307785,-0.009694492444396019,-0.05616262927651405,0.004833520855754614,-0.11025267094373703,-0.08282564580440521,0.08160237967967987,0.06565345823764801,-0.005763527005910873,-0.05411667749285698,0.0515160858631134,-0.004131795838475227,0.036818407475948334,-0.04741593450307846,-0.03102082759141922,-0.02995937690138817,0.007762074936181307,0.01990332081913948,-0.06161392480134964,-0.02846231311559677,0.04488491266965866,-0.026712287217378616,-0.06143397092819214,0.029172547161579132,-0.0037503696512430906,0.07613537460565567,0.009905547834932804,-0.04611250013113022,-0.021514929831027985,0.03703673183917999,0.076007179915905,-0.008108297362923622,0.003420488443225622,0.02702486515045166,-0.08334098756313324,0.04298340156674385,-0.0033599971793591976,0.03651081770658493,-2.7104213984330272e-8,-0.046222660690546036,-0.016854798421263695,0.08708549290895462,0.016084155067801476,-0.036901649087667465,0.0022478147875517607,-0.03427477926015854,-0.04264898598194122,-0.04657067731022835,0.013879664242267609,-0.07989174127578735,0.059825025498867035,0.03251834958791733,0.014904435724020004,-0.024097492918372154,0.099822998046875,0.07482423633337021,-0.11461997777223587,-0.002963440492749214,-0.004243841394782066,-0.07296282798051834,0.07691747695207596,-0.04657081887125969,-0.012157909572124481,0.016997266560792923,0.00159949972294271,0.038442373275756836,-0.016585566103458405,0.040027935057878494,0.0028426351491361856,0.048967860639095306,-0.005592470522969961,-0.03451772406697273,-0.03192055597901344,-0.042067963629961014,-0.04217803478240967,-0.03835250064730644,0.08148536831140518,-0.06488951295614243,-0.005111127160489559,-0.012096896767616272,0.009415507316589355,0.020551616325974464,0.028371674939990044,-0.0041277166455984116,-0.02062356099486351,0.007247420027852058,-0.07183166593313217,-0.03526649996638298,-0.010931200347840786,0.08157069981098175,0.02300228923559189,0.01117283757776022,0.05049080774188042,0.09026509523391724,0.015599592588841915,-0.0042043826542794704,0.04617474228143692,0.011588558554649353,0.03531999513506889,0.16446904838085175,-0.019283130764961243,-0.0049012829549610615,0.03228651359677315]},{"text":"Polluted by crimes and torn by the bitterest remorse, where can I find rest but in death? “Farewell!","book":"1984","chapter":135,"embedding":[0.05061798170208931,0.03033328615128994,0.025039905682206154,0.013270716182887554,0.08534986525774002,0.0800539031624794,0.02630705013871193,-0.03830818831920624,-0.0033678626641631126,-0.0070840646512806416,-0.003434714861214161,0.03156799450516701,0.00025211775209754705,-0.004533714149147272,-0.0563468299806118,0.013998382724821568,-0.006444255355745554,0.06995420157909393,0.013511712662875652,0.06442321836948395,-0.031701475381851196,0.09892965108156204,0.04333670809864998,-0.003184056608006358,-0.03479013592004776,0.042786672711372375,-0.012474361807107925,-0.012902498245239258,-0.06001664325594902,-0.05947236716747284,-0.005077188368886709,0.013394201174378395,0.012420925311744213,0.03820487856864929,0.06158674880862236,0.03447782248258591,-0.016248205676674843,-0.07185814529657364,0.038117457181215286,-0.021956974640488625,0.0003665019467007369,0.06876491010189056,-0.04156506434082985,0.027718162164092064,0.01303134299814701,-0.0864674374461174,-0.0435069240629673,-0.055311303585767746,0.06955020129680634,-0.016883250325918198,0.038448501378297806,0.0288399588316679,-0.10545343160629272,0.017122698947787285,0.021058954298496246,-0.03391103446483612,0.058892786502838135,0.04297511279582977,-0.04183606058359146,-0.019607912749052048,0.043499723076820374,0.02733813412487507,0.0014321086928248405,0.009564384818077087,0.024315569549798965,-0.024893974885344505,0.06499515473842621,0.042720139026641846,0.001905030687339604,0.04497026279568672,-0.05500931665301323,-0.08256711065769196,0.014181876555085182,-0.016838524490594864,-0.1321464329957962,0.011322827078402042,0.050026509910821915,-0.04995988309383392,-0.017019957304000854,-0.010417267680168152,0.016069723293185234,-0.036289554089307785,-0.03355476260185242,0.027598420158028603,-0.05350523069500923,-0.039802826941013336,-0.062183018773794174,-0.06471759080886841,0.12063615769147873,-0.03154372051358223,-0.024578450247645378,0.007238151505589485,0.0835358202457428,-0.04822594299912453,-0.03924563154578209,-0.012068035081028938,-0.002379037206992507,0.09759239107370377,-0.06187344342470169,0.06547407805919647,-0.0022157272323966026,-0.025858234614133835,-0.08192449808120728,-0.05653113126754761,0.04142281785607338,0.040337935090065,-0.08419761061668396,0.04655660316348076,-0.03381804749369621,-0.046905022114515305,-0.07077766954898834,-0.013361313380300999,0.038340743631124496,-0.01379197183996439,0.12918154895305634,0.1178208440542221,0.024438638240098953,-0.007865022867918015,0.03372815251350403,0.12229368835687637,0.04379787668585777,0.012741655111312866,-0.09650515019893646,0.026166127994656563,-0.06099490821361542,0.07016275078058243,0.010289889760315418,-1.182233331365857e-33,0.06622985005378723,-0.03682763874530792,0.006733540445566177,0.011840050108730793,-0.009371335618197918,-0.020820491015911102,-0.043382588773965836,0.02501961961388588,0.028814328834414482,0.01581924594938755,-0.0011406439589336514,-0.024737121537327766,-0.06098323315382004,-0.020808348432183266,-0.05743369087576866,-0.006223815493285656,-0.050712864845991135,-0.017791975289583206,0.0386941097676754,-0.05263815447688103,-0.007312979083508253,0.020293043926358223,0.020983844995498657,-0.00024237365869339556,-0.06063838303089142,-0.05427821725606918,0.031077314168214798,-0.007388677913695574,-0.0055979895405471325,0.00977634359151125,-0.021234987303614616,0.08557218313217163,0.12119358032941818,-0.013113748282194138,-0.011641306802630424,0.0432158000767231,-0.09570885449647903,0.07690789550542831,-0.04163029417395592,-0.027090158313512802,-0.020987192168831825,0.08893651515245438,-0.010045569390058517,0.009893368929624557,0.05839031562209129,-0.03899016231298447,0.0196923166513443,-0.010696733370423317,0.07092464715242386,0.02289464883506298,-0.010364087298512459,-0.023894676938652992,-0.030485190451145172,0.007529363501816988,-0.11356435716152191,0.05176231265068054,-0.029367506504058838,0.03587731346487999,0.03128284588456154,-0.02698187157511711,0.06537209451198578,0.03537599742412567,-0.022555548697710037,-0.06436048448085785,0.04406450316309929,-0.03337549418210983,-0.07347746193408966,-0.04670434817671776,-0.03321339190006256,-0.07143838703632355,-0.022959666326642036,0.05312244966626167,0.02749190852046013,-0.03182502090930939,-0.021882951259613037,0.003472863230854273,0.010996544733643532,-0.004630371928215027,0.03389383479952812,-0.08617915958166122,0.030393173918128014,-0.029761064797639847,-0.12395825237035751,0.03365134447813034,0.13949425518512726,-0.036494698375463486,0.03984679654240608,-0.15705125033855438,-0.04669858515262604,0.09509684890508652,-0.07327577471733093,-0.0020565614104270935,0.08424413949251175,-0.05019373446702957,-0.033352743834257126,-1.166307678799619e-33,0.08294107764959335,-0.12355068325996399,0.0005310461274348199,0.04046407714486122,-0.033426232635974884,-0.026040779426693916,-0.09148363769054413,0.007880916818976402,-0.03596394881606102,0.05780971422791481,-0.0723213478922844,0.024362152442336082,0.17259231209754944,0.10849568247795105,-0.0670887753367424,0.01118012797087431,0.06950009614229202,0.015539704822003841,-0.09033625572919846,-0.01926368661224842,-0.052202872931957245,0.056288596242666245,0.0006570310797542334,-0.011926609091460705,-0.026031669229269028,0.05988955870270729,0.07579018175601959,-0.10784497857093811,-0.06267929822206497,-0.07962030172348022,-0.02471623383462429,-0.012557336129248142,-0.03360697999596596,0.01313820481300354,-0.013608764857053757,-0.010438391007483006,0.05650210380554199,-0.06179805099964142,-0.07206135988235474,-0.05450837314128876,-0.03823866695165634,-0.03896039351820946,0.011816643178462982,0.019532356411218643,0.03879324346780777,-0.07179044187068939,-0.07992751896381378,0.040818993002176285,0.045944929122924805,-0.007385081611573696,0.018610753118991852,-0.032479431480169296,-0.004237991292029619,0.0563487634062767,0.03698961064219475,-0.022333746775984764,0.018170686438679695,-0.07018569111824036,0.016303349286317825,0.003508374560624361,-0.049514587968587875,0.04470914229750633,-0.06187509372830391,0.09777757525444031,0.07300909608602524,-0.049170199781656265,0.0015138251474127173,-0.017943000420928,-0.11357151716947556,0.01962185651063919,-0.03740920126438141,0.005563626065850258,-0.05871303752064705,-0.024798206984996796,0.011086314916610718,0.03721749037504196,-0.02629370614886284,0.04631726071238518,-0.06295785307884216,0.012217801064252853,0.03263444826006889,-0.05919294059276581,0.0019480061018839478,0.03519536182284355,0.01817314513027668,-0.043701525777578354,-0.02954270876944065,0.02862578257918358,0.045093245804309845,-0.027779629454016685,-0.06100814789533615,-0.11605112999677658,0.001477494603022933,-0.0870259553194046,-0.017630277201533318,-2.6978446143743895e-8,-0.00719967857003212,-0.016366122290492058,0.0008497027447447181,0.04690532758831978,-0.0007712877704761922,-0.021122407168149948,0.07245764136314392,0.07740090042352676,-0.015471648424863815,0.018451286479830742,-0.013910324312746525,0.06301822513341904,0.031108371913433075,0.007647104561328888,-0.02178528718650341,-0.008277801796793938,0.010152176022529602,-0.08155936002731323,-0.00383788556791842,-0.016075560823082924,-0.04808228090405464,-0.027212144806981087,0.06966320425271988,-0.006860335823148489,0.03256802260875702,0.04097491502761841,0.0066272723488509655,0.01778988726437092,-0.0001912837178679183,0.01482461765408516,0.010343939997255802,0.005039366427809,-0.034395042806863785,-0.030319610610604286,-0.010194817557930946,-0.04723944514989853,0.05577852576971054,0.07383283227682114,-0.05636168643832207,0.025427410379052162,-0.023954953998327255,0.011252544820308685,0.0052445558831095695,0.021965356543660164,0.10016554594039917,-0.04678831249475479,0.07169563323259354,0.06959943473339081,-0.029190711677074432,-0.013949633575975895,0.025510193780064583,-0.05571980029344559,-0.002094551455229521,0.054599132388830185,0.04812908172607422,0.005584327038377523,0.052494436502456665,0.05451546236872673,-0.1224123165011406,-0.00008141387661453336,0.16474951803684235,-0.006191613152623177,-0.017291415482759476,-0.04685872793197632]},{"text":"Creating the works from print editions not protected by U.S. copyright law means that no one owns a United States copyright in these works, so the Foundation (and you!) can copy and distribute it in the United States without permission and without paying copyright royalties.","book":"1984","chapter":135,"embedding":[0.007549935951828957,-0.07699243724346161,-0.03796568885445595,0.008349621668457985,0.06564772129058838,0.010795937851071358,-0.07693555951118469,-0.08040428161621094,0.032096706330776215,0.01839589886367321,-0.019886795431375504,0.08711446076631546,0.0219512227922678,-0.014552484266459942,-0.041007619351148605,-0.03390708938241005,-0.007447398733347654,-0.03987809270620346,0.013219259679317474,0.017818115651607513,0.07534156739711761,0.025791116058826447,-0.00607558386400342,0.047402720898389816,0.029067950323224068,-0.05990315228700638,-0.06811100989580154,-0.01564524695277214,0.10771781206130981,-0.029852963984012604,0.0026516320649534464,-0.0226345993578434,0.018897049129009247,-0.01406772993505001,0.031028300523757935,0.02404048666357994,0.030903708189725876,-0.036084603518247604,-0.015186376869678497,0.005177363287657499,0.025469938293099403,-0.04109703376889229,-0.06241128593683243,0.09108854830265045,-0.01824512705206871,0.0644807294011116,-0.032054465264081955,0.05433046072721481,-0.008801760151982307,0.0664408802986145,0.05800565704703331,0.02663774974644184,-0.004047504626214504,-0.0953546017408371,0.014702175743877888,-0.0717804804444313,0.030784526839852333,0.023413948714733124,-0.0656227394938469,-0.03154154494404793,-0.04335322976112366,-0.012710422277450562,-0.0677497610449791,-0.001530884183011949,0.06838024407625198,0.040432240813970566,-0.03852476924657822,0.07754544913768768,-0.05150008201599121,-0.09121139347553253,0.02519845962524414,-0.07244911789894104,0.043345388025045395,0.07873974740505219,0.06617522239685059,0.03199487552046776,0.04083862900733948,-0.01756596565246582,0.0016749901697039604,0.00645915511995554,0.006511555518954992,-0.023615656420588493,0.0672377422451973,-0.008681241422891617,-0.08268429338932037,0.02870425209403038,0.05188224837183952,0.045415714383125305,0.07973594963550568,-0.012703160755336285,0.03020329959690571,-0.0300702303647995,0.07699530571699142,0.06106584519147873,-0.03462276980280876,-0.09166445583105087,0.025394923985004425,-0.02454175427556038,0.002900579711422324,0.0007098435889929533,-0.01243562437593937,-0.05752876400947571,0.017194628715515137,-0.013609570451080799,0.018121661618351936,0.04038719832897186,-0.04063358157873154,0.009474002756178379,-0.018970295786857605,0.047183964401483536,0.023086678236722946,0.020294375717639923,0.035718560218811035,0.03851791098713875,0.0637364611029625,-0.08847019076347351,-0.04394032061100006,-0.0987452045083046,0.05057532340288162,-0.1475992500782013,0.043720535933971405,0.057198431342840195,-0.011916312389075756,-0.09749928116798401,-0.12211932241916656,-0.14472010731697083,-0.041795819997787476,1.1391870726218555e-34,0.007506833877414465,0.0478397011756897,0.048977725207805634,0.021016329526901245,0.07502075284719467,-0.03879738226532936,0.0660870373249054,-0.03526938706636429,-0.07561300694942474,0.011260486207902431,0.05562340095639229,0.04336005449295044,0.0634584128856659,0.07877732068300247,-0.004703387152403593,-0.0011380346259102225,0.11229091137647629,-0.031250692903995514,0.060392796993255615,0.052909065037965775,0.009990965947508812,-0.04010442644357681,0.006858432665467262,0.014753662049770355,-0.03170882165431976,-0.00004865945447818376,-0.0650448277592659,-0.04518364369869232,-0.008959122002124786,-0.0117889903485775,-0.04879249632358551,-0.00517336605116725,-0.006459468975663185,-0.03331904113292694,0.02625245228409767,-0.004762277938425541,0.06941181421279907,-0.011788305826485157,0.011664905585348606,0.007640640716999769,0.008029863238334656,-0.024188388139009476,0.0620599202811718,0.010661878623068333,-0.012671264819800854,-0.004430912900716066,0.06679752469062805,0.05765002220869064,0.05721510201692581,0.015917351469397545,0.017832806333899498,0.0348052904009819,-0.05837046727538109,-0.059502389281988144,0.10309882462024689,-0.020447518676519394,-0.06256727874279022,-0.07053209841251373,0.08210760354995728,-0.07266373187303543,-0.06146081164479256,0.039398401975631714,-0.03759600222110748,0.14949171245098114,-0.024243813008069992,-0.0038618212565779686,-0.08968344330787659,-0.042405419051647186,0.021282600238919258,-0.042877089232206345,-0.0560944564640522,0.02959446795284748,0.02103007584810257,-0.02556687965989113,0.039583705365657806,-0.01819613203406334,0.039263151586055756,0.05656230077147484,0.08122126758098602,-0.02900617942214012,-0.11100316047668457,0.028825165703892708,-0.043924447149038315,-0.016932711005210876,-0.010321078822016716,0.06727882474660873,-0.01583980955183506,0.039411913603544235,-0.0006813535001128912,0.004030941054224968,-0.020066941156983376,-0.06728459149599075,0.03451748192310333,0.014259313233196735,0.012860540300607681,-2.161931924820911e-33,-0.04526512324810028,-0.06627102196216583,-0.06128004938364029,-0.10163936764001846,-0.009200108237564564,0.03918125480413437,-0.025083737447857857,0.023363959044218063,-0.007722644135355949,-0.022715909406542778,-0.05454046279191971,-0.03231381997466087,-0.006562875583767891,0.04320809990167618,-0.05626199394464493,-0.12437549978494644,-0.005363671574741602,0.005173082463443279,-0.0317106656730175,0.010734752751886845,-0.05261785164475441,-0.05047348141670227,0.015309634618461132,0.014635481871664524,0.13218948245048523,-0.0435403548181057,-0.024907050654292107,0.012065048329532146,0.039515409618616104,-0.009450185112655163,0.048934172838926315,-0.035899076610803604,-0.07037896662950516,0.006339226383715868,-0.03342370316386223,-0.05123981460928917,-0.026436083018779755,0.009151015430688858,0.002250446705147624,-0.06599103659391403,-0.06319685280323029,0.017791572958230972,-0.009426059201359749,-0.022756602615118027,-0.08157245069742203,-0.001921681105159223,0.004617705009877682,-0.021095622330904007,0.00429820641875267,-0.023354366421699524,0.07109437882900238,-0.03790470212697983,0.06654434651136398,-0.0717678889632225,-0.021663744002580643,0.02526499330997467,0.021680444478988647,0.0634736716747284,0.06708410382270813,0.04530181363224983,0.06255708634853363,0.024060316383838654,-0.053680431097745895,0.007930356077849865,0.012587359175086021,-0.03167964890599251,0.002637982601299882,0.1311226189136505,-0.023916874080896378,0.029840337112545967,-0.016432803124189377,-0.020046204328536987,0.04882786050438881,-0.03999844938516617,0.04366667568683624,0.030107108876109123,0.026654299348592758,0.08951055258512497,-0.02198953926563263,-0.03028668276965618,0.059023771435022354,0.0030199531465768814,0.00047420902410522103,0.09542040526866913,0.052948959171772,0.008878014050424099,0.05049869418144226,-0.13172359764575958,-0.003297611605376005,-0.021836232393980026,0.03345038741827011,0.028995338827371597,-0.0012222573859617114,0.0875064879655838,0.06361636519432068,-3.1204976380649896e-8,0.0019283276051282883,0.019230280071496964,-0.055315833538770676,-0.0789797231554985,-0.10790126770734787,0.012074043042957783,0.06684022396802902,-0.1521318405866623,-0.02300671860575676,0.05242491513490677,-0.007399395573884249,-0.07541994750499725,-0.01761915162205696,-0.06251361221075058,-0.06692412495613098,-0.008435258641839027,0.052512891590595245,0.050329919904470444,0.02024202235043049,0.035207442939281464,-0.04747369512915611,0.028646614402532578,0.04161832109093666,-0.09473314881324768,-0.010996799916028976,0.06194840744137764,0.06140536814928055,-0.11255485564470291,-0.026844825595617294,0.06513135135173798,-0.008686278946697712,0.07523541152477264,-0.03744286298751831,0.06389974802732468,0.014074736274778843,-0.09503649920225143,0.003808682318776846,-0.0012775653740391135,-0.024263175204396248,-0.010965571738779545,-0.026410717517137527,0.08146399259567261,-0.014858233742415905,0.009409810416400433,-0.016607996076345444,-0.06436128169298172,-0.024024801328778267,0.009057375602424145,0.07250945270061493,0.06527485698461533,0.033507708460092545,0.017734017223119736,0.028308534994721413,-0.01563348062336445,0.023270826786756516,0.01687256619334221,0.012204457074403763,0.01895969547331333,0.03672407194972038,0.000027113706892123446,0.05576010048389435,-0.1277819275856018,0.1546775847673416,-0.007646994199603796]},{"text":"If you paid a fee for obtaining a copy of or access to a Project Gutenberg electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8. 1.B. “Project Gutenberg” is a registered trademark.","book":"1984","chapter":136,"embedding":[-0.15106211602687836,0.0050137038342654705,0.04482243210077286,-0.042277395725250244,0.03259037435054779,0.030443869531154633,0.03545639291405678,0.017230156809091568,0.059474196285009384,-0.025401942431926727,0.023646870627999306,0.013374652713537216,0.014717568643391132,-0.06696901470422745,-0.10060618817806244,-0.09817622601985931,-0.00011997243564110249,0.020960049703717232,0.015345633961260319,0.05900834500789642,-0.008843673393130302,0.034647464752197266,0.03013705089688301,0.008405047468841076,0.10973894596099854,-0.003741153981536627,-0.007307554129511118,0.03130178526043892,-0.006502809468656778,-0.035236239433288574,-0.018639052286744118,-0.014293987303972244,-0.03553880378603935,-0.03665423393249512,0.07284242659807205,0.09176874160766602,0.009805547073483467,-0.019486472010612488,-0.04463781416416168,0.008342413231730461,-0.04804736375808716,-0.03758511319756508,-0.05115581676363945,0.04718052223324776,0.050434909760951996,0.02342752180993557,-0.0003841148572973907,-0.0025801605079323053,-0.050659582018852234,0.081694096326828,-0.017827942967414856,-0.06773041933774948,-0.014852655120193958,-0.010183644481003284,-0.0020471427123993635,-0.017827274277806282,0.07369505614042282,0.012526973150670528,-0.010775486007332802,-0.06318560987710953,-0.04375918582081795,-0.11523501574993134,-0.011422666721045971,0.04328755661845207,0.09627418220043182,0.0853334292769432,-0.05133035406470299,0.005689512938261032,-0.08382940292358398,-0.053481798619031906,0.04227437451481819,-0.013247172348201275,0.1264510452747345,0.055364277213811874,0.008220884948968887,0.023670246824622154,-0.042903441935777664,0.032603371888399124,-0.059634558856487274,0.05851620063185692,-0.01158018596470356,0.017456239089369774,-0.00653512729331851,-0.039531197398900986,-0.014054156839847565,0.012872771359980106,0.06892753392457962,0.0005120146670378745,0.12308989465236664,0.009128239937126637,0.017179973423480988,-0.08990330994129181,0.12819898128509521,-0.01054991502314806,-0.05450322479009628,0.015168161131441593,0.02114088088274002,-0.0012359110405668616,0.032432809472084045,-0.004843159578740597,-0.05628051236271858,-0.025801239535212517,-0.052303850650787354,-0.05146133154630661,0.011065959930419922,-0.03309290483593941,-0.008510066196322441,-0.026148483157157898,0.01920263096690178,-0.042757727205753326,-0.051436249166727066,-0.03319387510418892,0.03101181797683239,0.008879953064024448,0.06808270514011383,-0.06126004830002785,-0.026710145175457,-0.0511133186519146,0.07383421063423157,-0.11290377378463745,-0.053394727408885956,0.12137309461832047,0.049584705382585526,-0.08170615136623383,-0.07976240664720535,-0.12639325857162476,0.015228302218019962,-2.0360651325226453e-33,-0.05675225704908371,0.04892336577177048,-0.05452970415353775,-0.019709713757038116,0.09209403395652771,-0.09518115967512131,0.06589076668024063,0.10688672214746475,-0.12131097912788391,0.015494097955524921,-0.01092598307877779,0.04150007665157318,0.05960261449217796,0.013893812894821167,-0.0818243995308876,0.08649732172489166,-0.016906147822737694,0.01234052237123251,0.030935971066355705,0.0006159743061289191,0.012714585289359093,-0.035826604813337326,0.08904720097780228,0.0007171481847763062,-0.11330107599496841,-0.07803868502378464,-0.010470456443727016,-0.03321512043476105,0.014297496527433395,-0.018305763602256775,0.0063322605565190315,-0.015021194703876972,0.03750967979431152,-0.07867089658975601,-0.007792888209223747,0.055408354848623276,0.02646336704492569,-0.04170795902609825,0.03666318953037262,0.030289901420474052,-0.01632915809750557,-0.001672330778092146,-0.07831020653247833,-0.01725512556731701,0.002491970546543598,-0.035778433084487915,0.11160411685705185,0.00875041913241148,0.06761692464351654,-0.05635013431310654,0.008657272905111313,0.03516174480319023,-0.0038731645327061415,-0.02964308112859726,0.03913984075188637,-0.03997237980365753,0.008853883482515812,0.08770698308944702,0.03018239699304104,0.008562751114368439,0.0998215302824974,0.029624542221426964,-0.0032869684509932995,0.038751401007175446,-0.10064718872308731,0.08826547116041183,0.0012033197563141584,-0.00879679899662733,0.04796082526445389,-0.04858700931072235,-0.0016823143232613802,-0.09492062777280807,0.017231306061148643,0.047996439039707184,0.020614327862858772,-0.024175291880965233,-0.10019394755363464,0.047857578843832016,0.021576859056949615,0.008877579122781754,-0.08532066643238068,-0.036050375550985336,-0.03416229411959648,-0.018391180783510208,-0.08044208586215973,0.044173713773489,0.005117940250784159,-0.03296887129545212,0.006943142507225275,0.0271105095744133,0.06307714432477951,-0.08351626247167587,-0.08554834872484207,0.03495534881949425,0.10913126915693283,4.2566083077015095e-34,-0.04197370260953903,-0.05260450020432472,-0.09182341396808624,-0.041636936366558075,-0.00781683437526226,-0.015844302251935005,-0.10772627592086792,0.008459441363811493,0.031218288466334343,0.10623829811811447,0.021267510950565338,-0.056457486003637314,-0.04333585873246193,-0.038174450397491455,0.040433019399642944,-0.0514792762696743,-0.0314650721848011,-0.05882714316248894,0.00880546122789383,-0.07480674982070923,-0.047838401049375534,-0.017706643790006638,0.032338857650756836,-0.02881370484828949,0.03903741016983986,0.02935781516134739,0.025880886241793633,0.02093469724059105,0.06584392488002777,0.003564192447811365,0.04638222977519035,-0.017626967281103134,-0.14481644332408905,0.030469702556729317,0.04459351301193237,-0.03781401365995407,0.018488820642232895,0.009542743675410748,0.0020772311836481094,-0.044996146112680435,0.04910491779446602,0.07684895396232605,-0.005190424621105194,-0.008960219100117683,-0.01312820240855217,-0.07139450311660767,-0.03030933439731598,-0.06951834261417389,0.05740929767489433,-0.07382377237081528,0.05103207379579544,0.007088575046509504,0.1035912036895752,-0.0790410041809082,-0.03510177507996559,0.07530000060796738,0.013789729215204716,0.016087079420685768,0.11048150807619095,0.023360557854175568,0.08918089419603348,-0.0871872752904892,0.006330952513962984,0.03597470000386238,0.039213769137859344,0.007202181965112686,-0.0053399959579110146,0.03173045068979263,0.01036634761840105,0.06301917135715485,-0.024765755981206894,0.03362449258565903,0.0036117706913501024,-0.0014451341703534126,0.05307696759700775,0.03292620927095413,0.001232652342878282,0.07119077444076538,-0.017317837104201317,-0.02378223091363907,0.0679914653301239,0.02983449399471283,0.02194369211792946,0.036666397005319595,0.03001716360449791,-0.07536331564188004,-0.025491347536444664,-0.05039399862289429,-0.07016024738550186,0.000870264251716435,0.048462264239788055,-0.011058911681175232,0.04727975279092789,0.05908789113163948,0.042657073587179184,-3.930560410481121e-8,-0.03282556310296059,0.046117138117551804,0.05170956626534462,0.021761616691946983,-0.029407929629087448,-0.02861383929848671,-0.025864163413643837,0.007733047939836979,-0.01943892426788807,-0.00006296737410593778,0.013234865851700306,-0.08440282940864563,-0.007297257427126169,0.06924283504486084,-0.06604776531457901,-0.0022019613534212112,0.03597031906247139,0.057440999895334244,0.011322848498821259,0.10230959206819534,0.033750295639038086,-0.005284167360514402,0.03598179295659065,-0.03418004512786865,-0.020717009902000427,0.03702177852392197,0.07424701005220413,0.03488614782691002,0.025776535272598267,-0.051697444170713425,-0.07865922152996063,0.05974232405424118,0.06446824967861176,-0.0185414906591177,-0.0524623803794384,-0.03707931563258171,-0.040532436221838,0.02255355939269066,-0.014891407452523708,0.09079393744468689,0.007530296221375465,-0.011793097481131554,0.018394632264971733,0.018362505361437798,-0.00594356982037425,0.02891998365521431,-0.07504871487617493,-0.06271132081747055,0.021657001227140427,-0.005703149363398552,0.04274658113718033,-0.042285241186618805,0.07520721107721329,0.011807304807007313,-0.036903321743011475,-0.0588146410882473,0.008218408562242985,0.01297655701637268,-0.00912327691912651,-0.0031542545184493065,0.0375007800757885,-0.05443403124809265,0.05219445005059242,-0.03371192887425423]},{"text":"Copyright laws in most countries are in a constant state of change.","book":"1984","chapter":136,"embedding":[-0.03061019442975521,-0.0010597256477922201,0.02916385978460312,-0.08618403971195221,0.08411553502082825,0.03262912482023239,-0.12873555719852448,-0.05484578385949135,0.07784330099821091,0.02065148763358593,0.043656256049871445,0.14515066146850586,-0.048271339386701584,0.03752986714243889,0.030232518911361694,-0.06577208638191223,-0.00979157816618681,-0.044262710958719254,-0.04119795188307762,-0.01298211608082056,0.028265269473195076,0.008148973807692528,0.07542373239994049,0.020186707377433777,0.02486635558307171,-0.03251448646187782,-0.02523430623114109,0.0022565186955034733,0.06311659514904022,-0.03718308359384537,-0.06707612425088882,0.06417717784643173,0.011004414409399033,-0.007077671587467194,-0.04314851760864258,-0.007494243327528238,-0.036344196647405624,-0.05526962876319885,0.009265745058655739,-0.01352362148463726,0.07637394219636917,-0.04675868898630142,-0.0551648810505867,-0.02921854518353939,-0.01773063652217388,0.05275445803999901,0.052128084003925323,0.08542445302009583,-0.05338830500841141,0.06374769657850266,0.043916746973991394,0.02761482074856758,0.00013502359797712415,-0.03057743050158024,0.02681746520102024,-0.15801018476486206,0.050941284745931625,0.1571153998374939,0.023033490404486656,-0.003574166912585497,-0.026594076305627823,0.04037332162261009,-0.04134662449359894,0.008212888613343239,0.030392641201615334,0.04489725083112717,-0.009973135776817799,0.09340143948793411,-0.06568214297294617,0.0058393958024680614,0.0015224188100546598,-0.011423604562878609,0.010217131115496159,0.08594269305467606,0.015072252601385117,-0.056110773235559464,0.023695195093750954,0.07963046431541443,0.004554275888949633,-0.06875356286764145,-0.03750142827630043,-0.10557662695646286,0.07649043947458267,-0.07918121665716171,-0.005154080223292112,-0.03158382326364517,0.045260123908519745,-0.0003006277547683567,0.06950199604034424,-0.027522487565875053,-0.008191150613129139,0.03260934352874756,0.16568483412265778,0.024002015590667725,-0.055335722863674164,-0.04476821422576904,0.021492572501301765,0.045470885932445526,0.06225182116031647,0.0005902815028093755,-0.006131656002253294,0.03429606556892395,0.0021521265152841806,0.050388261675834656,0.03035847656428814,0.019923027604818344,0.011399476788938046,0.020148886367678642,0.0039200931787490845,0.03483583405613899,-0.05109649896621704,0.050582095980644226,0.0074276672676205635,-0.04329150542616844,0.04505852237343788,-0.060434214770793915,-0.09263992309570312,0.016240878030657768,-0.0062272315844893456,0.015054279007017612,0.02815469726920128,-0.006179990246891975,-0.023145724087953568,-0.01811409369111061,-0.014295191504061222,-0.02267758548259735,0.018640773370862007,-4.1131469363653266e-33,-0.03136609494686127,0.0020353638101369143,-0.010490819811820984,0.03656454756855965,-0.0152527941390872,-0.007967042736709118,0.02352207712829113,0.06757219135761261,-0.07592421770095825,-0.021969672292470932,0.08128093928098679,0.03484594076871872,-0.03099369816482067,0.030084582045674324,0.019567210227251053,0.05707888305187225,0.03993019089102745,-0.008803334087133408,0.09568991512060165,0.05241747200489044,0.055086005479097366,-0.040915798395872116,0.0623103529214859,0.03891081362962723,-0.07402308285236359,-0.03234274685382843,-0.010838919319212437,-0.01927781105041504,0.08832012861967087,-0.01535663940012455,0.010845469310879707,-0.007149806246161461,0.035868480801582336,-0.06905325502157211,0.00037703310954384506,0.027811439707875252,0.0522555336356163,-0.03161288797855377,0.03844248130917549,-0.010608167387545109,-0.007837692275643349,-0.04292464256286621,-0.011814821511507034,-0.05076685920357704,0.0050160931423306465,0.0069183167070150375,-0.0007738455897197127,-0.0356157086789608,-0.020025648176670074,0.05540734529495239,0.008483413606882095,0.06257864832878113,-0.0689815804362297,-0.029476623982191086,0.02855905331671238,0.013347307220101357,-0.08702904731035233,-0.035917118191719055,0.04325289651751518,-0.042219992727041245,-0.013061142526566982,0.08520165085792542,0.04184682294726372,0.12021159380674362,0.030223406851291656,0.0717439353466034,0.0005821779486723244,-0.012270399369299412,-0.028743470087647438,-0.006097106263041496,0.007956690154969692,0.04133902117609978,-0.10869202762842178,0.023219972848892212,-0.05257348716259003,-0.02471335232257843,-0.01942088082432747,-0.040450748056173325,0.05527157709002495,0.02322833426296711,-0.11767026782035828,0.04490749165415764,-0.009030584245920181,-0.03681494668126106,-0.003840625984594226,-0.02175038494169712,0.03528225049376488,-0.04556239768862724,-0.03491365909576416,0.10636922717094421,0.021947678178548813,-0.04473772644996643,0.01579063944518566,0.016195077449083328,0.08781665563583374,4.92275498700525e-34,-0.05158408731222153,-0.06294260919094086,-0.061500534415245056,0.08134523779153824,-0.03233915939927101,0.004587980452924967,-0.05593559145927429,0.05207276716828346,-0.04098302870988846,-0.02275455929338932,-0.051673732697963715,-0.10347804427146912,-0.05633274465799332,0.05416959524154663,-0.055033452808856964,-0.022109759971499443,0.00006922588363522664,-0.002421732759103179,-0.06552240997552872,-0.02932036481797695,-0.02120598591864109,-0.036948151886463165,-0.0046659838408231735,0.132905051112175,0.018554091453552246,-0.05373120307922363,-0.12472418695688248,-0.034751132130622864,-0.0004438042815309018,-0.02129899337887764,-0.05808628350496292,0.055436961352825165,-0.1843900829553604,0.013888905756175518,-0.08798675239086151,-0.11600635200738907,-0.025465557351708412,0.026697903871536255,0.012057250365614891,0.037551797926425934,-0.022150779142975807,0.016049189493060112,0.04106711223721504,-0.01035419013351202,-0.03384942188858986,-0.07592977583408356,-0.004066836088895798,-0.0159499179571867,0.00863006804138422,-0.06627313792705536,0.0756717398762703,-0.03509948402643204,0.040390197187662125,-0.10287356376647949,-0.006371890194714069,0.09981688112020493,-0.0534382201731205,0.03032107651233673,-0.03755629062652588,-0.002277280203998089,0.03762458637356758,-0.02777235023677349,-0.0990707129240036,0.029392823576927185,-0.02879977785050869,0.0009690405568107963,0.0313565693795681,0.10844022780656815,0.059933774173259735,0.000945237698033452,0.09247607737779617,-0.06338834762573242,-0.07073766738176346,-0.020321574062108994,-0.05477379634976387,-0.0015722558600828052,0.05606292560696602,0.06599748134613037,-0.006845592055469751,-0.0352453775703907,0.04591916874051094,0.011522353626787663,-0.03531366214156151,0.043000053614377975,-0.0050812591798603535,0.0011086195008829236,-0.010425686836242676,-0.09503558278083801,-0.01165898609906435,-0.0043802522122859955,-0.06288469582796097,0.028342988342046738,-0.07214409857988358,0.030456505715847015,-0.014170348644256592,-2.1162415819730995e-8,-0.048035699874162674,-0.03124290518462658,-0.030817322432994843,0.04265475273132324,-0.04438156634569168,0.03597944974899292,0.04817371815443039,-0.05182255432009697,0.016177251935005188,0.03385443240404129,0.010807538405060768,-0.03318178653717041,0.04451834782958031,-0.053593941032886505,-0.11708805710077286,0.04138150066137314,0.05089748650789261,-0.02323823794722557,0.01919533871114254,0.06278755515813828,-0.0814368724822998,0.038338884711265564,0.07154186815023422,-0.06600037962198257,-0.018824579194188118,-0.009232587181031704,0.01988004706799984,-0.02398681454360485,-0.032422393560409546,0.06932493299245834,0.00013799230509903282,-0.018953530117869377,0.06836765259504318,0.026940682902932167,0.07496994733810425,-0.14926549792289734,-0.007737969048321247,-0.016651015728712082,-0.012658019550144672,0.007894414477050304,0.02357294410467148,-0.022068455815315247,0.009352789260447025,0.04462817311286926,-0.030074425041675568,-0.08284472674131393,0.04201691970229149,0.036553990095853806,0.02026851288974285,-0.006826740223914385,-0.01876148395240307,0.03523561358451843,-0.03472089394927025,-0.006203820463269949,0.06673215329647064,-0.015669550746679306,0.06703495234251022,0.06889058649539948,0.03495483845472336,0.015391497872769833,0.04989490285515785,-0.07200838625431061,0.0828079953789711,-0.006390571594238281]},{"text":"Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying the sentence set forth in paragraph 1.E.1 with active links or immediate access to the full terms of the Project Gutenberg License. 1.E.6.","book":"1984","chapter":137,"embedding":[-0.07349926978349686,0.07010562717914581,0.012174107134342194,0.007606031373143196,0.037402138113975525,0.013950134627521038,0.04963187500834465,-0.040684543550014496,0.03381120786070824,-0.009618972428143024,0.05592674762010574,0.031436093151569366,0.010286092758178711,-0.061723411083221436,-0.05677630379796028,0.02317848615348339,0.04579264298081398,0.008367045782506466,0.016917433589696884,0.04562513902783394,0.10338503867387772,0.04049484431743622,0.0519852377474308,0.034419137984514236,0.038680173456668854,0.03297315537929535,-0.06912054866552353,0.009357490576803684,0.038101520389318466,-0.04970105364918709,-0.02235156111419201,-0.04274366423487663,0.052936308085918427,0.05339354649186134,0.055989015847444534,0.07784146070480347,0.005030544940382242,0.016420183703303337,0.05442877858877182,-0.03498221933841705,0.0011687870137393475,-0.06498303264379501,-0.055777035653591156,0.021229954436421394,0.02639360912144184,-0.0727141723036766,-0.04845606908202171,-0.05536564067006111,-0.024829139932990074,-0.017186135053634644,-0.07420112937688828,-0.0522453747689724,-0.03808657452464104,-0.0010767955100163817,0.00010697330435505137,0.014009464532136917,0.06151930242776871,-0.026702314615249634,-0.027387335896492004,-0.08726657181978226,0.004945431835949421,0.02491103485226631,-0.031882334500551224,0.05212307348847389,0.06595423817634583,0.05869268998503685,0.023940306156873703,0.041826725006103516,-0.11992088705301285,0.09160389006137848,-0.047239821404218674,-0.027942506596446037,0.009956203401088715,0.025486836209893227,-0.01569385640323162,-0.06329058855772018,-0.03499145060777664,-0.06627421081066132,-0.01387458760291338,-0.013348880223929882,-0.029060084372758865,-0.025544898584485054,0.0156514011323452,0.052595287561416626,-0.03573771193623543,0.04590925574302673,0.012459272518754005,-0.046329181641340256,0.08186954259872437,-0.0639534667134285,-0.05195770412683487,-0.11468179523944855,0.12856918573379517,0.00214672414585948,-0.05711854621767998,-0.05598016083240509,-0.014836224727332592,-0.030908050015568733,0.026432042941451073,0.054182421416044235,0.026022804901003838,0.0228487066924572,0.06319520622491837,-0.025645850226283073,-0.1550702601671219,-0.10363198816776276,-0.014967409893870354,-0.008597631007432938,-0.06714317947626114,-0.02323470450937748,0.003041163319721818,0.006174360867589712,-0.052094705402851105,-0.05439061298966408,0.0029110463801771402,-0.03246385604143143,0.02012193761765957,0.00695936381816864,0.08137378096580505,0.041266534477472305,0.06291470676660538,0.0483095720410347,0.019958218559622765,0.046918779611587524,-0.05218193680047989,-0.14347216486930847,0.07410774379968643,2.1372088909002182e-33,0.04281997308135033,-0.011602816171944141,-0.00928554218262434,0.017679480835795403,0.0728033110499382,0.039268143475055695,-0.022847456857562065,0.04084959626197815,-0.08986948430538177,-0.0016596089117228985,0.04202651232481003,0.010287053883075714,0.049584999680519104,0.07752913981676102,-0.02864149771630764,-0.03430085629224777,-0.002969657303765416,0.06534960865974426,0.05688634142279625,-0.02059072069823742,0.02849368005990982,-0.056196633726358414,0.010475490242242813,-0.023403869941830635,-0.07744218409061432,-0.024730121716856956,-0.005984551273286343,-0.07566152513027191,-0.09521318227052689,0.03204980492591858,-0.050460558384656906,0.01590568758547306,-0.020438220351934433,-0.036253221333026886,0.018672138452529907,0.03607980161905289,-0.06729051470756531,-0.03265361860394478,0.09277480840682983,-0.04959076642990112,-0.026470975950360298,-0.010774527676403522,0.015800805762410164,-0.03818889707326889,0.053121477365493774,0.02620072290301323,0.07545753568410873,0.10170787572860718,0.0771075114607811,0.017566122114658356,0.027244122698903084,0.061524007469415665,0.0025412256363779306,-0.12202982604503632,0.10006045550107956,-0.033733807504177094,-0.01684775948524475,0.061121515929698944,0.05614928901195526,0.015775255858898163,0.02171930857002735,0.0920235738158226,-0.05030835047364235,0.019344015046954155,-0.014261030592024326,0.09998738765716553,-0.0971209853887558,-0.09214683622121811,0.038491781800985336,-0.0517333447933197,-0.10012682527303696,-0.03568176180124283,0.006936623714864254,0.032434362918138504,0.007878487929701805,-0.026918036863207817,-0.06027595326304436,-0.027930883690714836,0.009357571601867676,-0.028154006227850914,-0.05023839324712753,-0.11177239567041397,-0.01083615142852068,-0.012363392859697342,0.002717760158702731,-0.02897888608276844,-0.007421598304063082,-0.009720973670482635,-0.018931487575173378,0.06541764736175537,0.08500651270151138,-0.07253265380859375,-0.08463045209646225,-0.020799698308110237,0.016707759350538254,-3.0240615222330546e-33,-0.023478681221604347,-0.022857317700982094,-0.07566221058368683,-0.025836346670985222,-0.04808152839541435,0.034809522330760956,-0.014388962648808956,-0.013835396617650986,0.0656752660870552,0.07822735607624054,0.03754829242825508,-0.019093891605734825,-0.05575082451105118,-0.04586019739508629,0.005664321593940258,0.018331337720155716,-0.01798020862042904,0.053922805935144424,-0.02056187018752098,0.016382208094000816,-0.008016816340386868,0.007574794813990593,-0.007471024990081787,0.08143497258424759,0.038452379405498505,0.012416784651577473,-0.00005164689719094895,0.04706927016377449,0.043092019855976105,-0.05623336881399155,-0.021138155832886696,0.01291539054363966,-0.08325765281915665,-0.08111202716827393,-0.04533416032791138,0.0135516207665205,0.06931107491254807,0.07297493517398834,0.018706051632761955,-0.013072707690298557,0.08191776275634766,0.024739233776926994,-0.06029381975531578,0.016359327360987663,-0.0077039944007992744,-0.08545663952827454,-0.13583627343177795,-0.012147464789450169,-0.01797572523355484,0.013590420596301556,-0.03241705149412155,-0.010754508897662163,-0.011241616681218147,-0.1359156221151352,-0.03672359511256218,0.0631789118051529,0.011072425171732903,0.0066661774180829525,0.0641760379076004,-0.021517327055335045,0.031326450407505035,-0.02142784185707569,-0.025855151936411858,0.008271979168057442,0.10640827566385269,-0.11119136959314346,-0.03349500894546509,0.1683809906244278,0.01406626496464014,-0.002728377701714635,0.015275100246071815,-0.02263718470931053,0.00812553334981203,-0.12592270970344543,-0.005788263864815235,-0.011830120347440243,0.06535801291465759,0.025508034974336624,-0.013066314160823822,-0.00786540936678648,0.10841569304466248,0.06194854527711868,0.01990456134080887,0.014418508857488632,0.012332902289927006,-0.0198634322732687,-0.036491479724645615,-0.04561823233962059,-0.07262341678142548,-0.02806132659316063,-0.04480459913611412,0.017684323713183403,0.04985983669757843,0.08051487803459167,0.02548469416797161,-3.9554887365511604e-8,-0.02760482393205166,-0.0003562580968718976,0.06482277065515518,-0.03557053953409195,-0.002806579926982522,-0.012040840461850166,0.05473923683166504,-0.031613707542419434,-0.048428747802972794,-0.07999947667121887,0.0699181854724884,-0.04476776719093323,-0.0020166507456451654,0.011166907846927643,0.03229844197630882,0.04797792062163353,-0.024247396737337112,0.001796571072191,-0.06427644938230515,-0.0014699891908094287,0.08924884349107742,-0.016300754621624947,-0.008643630892038345,-0.003327196929603815,-0.031680475920438766,0.00961478054523468,0.023896945640444756,0.009755881503224373,0.055078864097595215,-0.013308259658515453,0.011661938391625881,0.07701476663351059,-0.005453874357044697,-0.014094109646975994,-0.03978242725133896,-0.0031556885223835707,0.023371314629912376,-0.005485847592353821,-0.03866987302899361,0.08011101931333542,-0.03176426887512207,-0.027583517134189606,-0.04745343327522278,0.08698618412017822,0.06299518793821335,-0.0036035242956131697,-0.08524364978075027,-0.06939555704593658,0.012724267318844795,-0.03970065712928772,0.020629478618502617,-0.01899869181215763,0.05688916891813278,0.03428870812058449,-0.03397774323821068,0.031701333820819855,0.11386315524578094,0.036139748990535736,-0.01136716827750206,0.06187603250145912,0.10759883373975754,0.06265690177679062,0.0724499449133873,0.022230833768844604]},{"text":"Project Gutenberg volunteers and employees expend considerable effort to identify, do copyright research on, transcribe and proofread works not protected by U.S. copyright law in creating the Project Gutenberg™ collection.","book":"1984","chapter":137,"embedding":[-0.09966026246547699,-0.02182556316256523,-0.013127386569976807,-0.012988455593585968,0.04872290790081024,0.0015143475029617548,-0.10336099565029144,-0.013982374221086502,0.050366856157779694,0.023414799943566322,-0.03270396590232849,0.06596492975950241,-0.015282414853572845,-0.03489965572953224,-0.08034355938434601,-0.058111678808927536,0.04735364392399788,0.02493845857679844,0.01919262483716011,-0.034397583454847336,0.00821548979729414,-0.019361941143870354,0.11865908652544022,0.040267881006002426,0.07720361649990082,-0.022623347118496895,-0.023814110085368156,-0.013105873018503189,0.018237987533211708,-0.018390793353319168,-0.061549313366413116,-0.06933917105197906,0.08406856656074524,-0.026053370907902718,0.05455341190099716,0.10228598862886429,0.03390855714678764,0.026763329282402992,0.009657028131186962,-0.022678889334201813,-0.0505436472594738,-0.07690358906984329,-0.06768566370010376,0.031922612339258194,-0.00824229046702385,-0.003620447590947151,0.008347982540726662,0.009498895145952702,-0.09043489396572113,0.09583135694265366,-0.02601134590804577,-0.013618528842926025,-0.0034174795728176832,-0.03656341880559921,-0.015240302309393883,-0.07257429510354996,0.05028891563415527,-0.014174090698361397,-0.04438476264476776,-0.05190102010965347,-0.04259900748729706,-0.04374418035149574,-0.055566202849149704,0.027790922671556473,0.08196460455656052,0.09829386323690414,-0.026953043416142464,0.13731662929058075,-0.06330465525388718,-0.06671573966741562,-0.018159737810492516,0.0022937702015042305,0.05838700383901596,0.1072777658700943,0.03831525892019272,-0.045158784836530685,-0.038487326353788376,-0.032666850835084915,-0.026085475459694862,-0.05005030333995819,-0.008392095565795898,-0.06760558485984802,0.024038277566432953,0.048363566398620605,-0.09846972674131393,0.05811885744333267,0.08169450610876083,0.07008512318134308,0.07523513585329056,0.01493790652602911,-0.004508898593485355,-0.05317820608615875,0.1371137648820877,-0.01648974046111107,-0.08217614144086838,-0.022743817418813705,-0.015790073201060295,0.0249574463814497,0.01081972848623991,0.012315445579588413,-0.025500968098640442,-0.019156690686941147,0.046265408396720886,-0.08277542889118195,0.02824021317064762,-0.022813407704234123,0.005464308895170689,-0.08479738235473633,-0.01890072412788868,0.0027801257092505693,0.03160955011844635,-0.019659824669361115,-0.008294939063489437,0.014205900020897388,0.11089515686035156,-0.11598332971334457,-0.007272990420460701,-0.04544724524021149,0.02541724406182766,0.012143316678702831,0.011088898405432701,0.06920407712459564,0.058583296835422516,-0.00677528278902173,-0.07569628953933716,-0.0810151919722557,0.015313109382987022,3.104386173631611e-33,0.05429510772228241,0.033584125339984894,0.024516494944691658,0.09292760491371155,0.056037936359643936,-0.03142102435231209,0.0033590621314942837,0.041132789105176926,-0.11326523125171661,-0.013387844897806644,0.03779970481991768,0.03279172629117966,0.028886398300528526,0.03277437761425972,-0.015871718525886536,0.05115833133459091,-0.03168785944581032,-0.020412450656294823,0.03632527217268944,-0.03274846822023392,0.023967348039150238,-0.07983987778425217,0.05672677606344223,0.03320719301700592,-0.08526751399040222,-0.06282246857881546,-0.03668908774852753,-0.08521997183561325,0.006455571856349707,0.018632251769304276,-0.04237721860408783,0.007427855860441923,0.006258051376789808,-0.09210889041423798,-0.008674523793160915,0.015414632856845856,0.013401005417108536,-0.0510057657957077,0.04657374322414398,0.03818579763174057,-0.015712900087237358,-0.039553433656692505,0.055564332753419876,-0.044780630618333817,-0.011873211711645126,0.019595008343458176,0.023870017379522324,0.05157884955406189,0.06726466864347458,0.03804425150156021,0.04244484752416611,0.05078226327896118,-0.056017402559518814,-0.11844100803136826,0.07612044364213943,0.012593329884111881,0.0050101857632398605,0.046249888837337494,0.09980440884828568,0.009273095987737179,0.05568487569689751,0.1015404611825943,0.03439641743898392,0.05451148748397827,-0.016138223931193352,0.11661002039909363,-0.08732867985963821,-0.012382336892187595,0.05032467469573021,-0.029405048117041588,-0.09232798218727112,-0.09315767884254456,-0.01433278527110815,0.023463204503059387,-0.0034973095171153545,-0.016047794371843338,-0.04431511089205742,0.015652285888791084,0.05314959958195686,-0.02593311294913292,-0.070574089884758,-0.021249596029520035,-0.012267067097127438,-0.05252300947904587,-0.05273567512631416,0.0027720266953110695,-0.0520821213722229,-0.06100304052233696,0.011428081430494785,0.10036291182041168,0.060450904071331024,-0.011330864392220974,-0.08506833761930466,0.008928852155804634,0.039704591035842896,-4.133557191715448e-33,-0.06356554478406906,-0.04042665287852287,-0.09755341708660126,0.01985967345535755,-0.01212407648563385,-0.03879620134830475,-0.12441211938858032,-0.0052625518292188644,0.04512912034988403,0.07066205143928528,-0.018814953044056892,-0.0638834610581398,-0.028909234330058098,0.0005308885592967272,-0.015670444816350937,-0.054156456142663956,0.06325308233499527,-0.05357017368078232,-0.06682102382183075,-0.0816241055727005,-0.05364130064845085,0.01988736167550087,-0.009245790541172028,0.048668891191482544,0.08213931322097778,0.0312061607837677,0.006803684402257204,-0.03444479778409004,0.04098331183195114,-0.03762083873152733,-0.03226327523589134,0.008788746781647205,-0.0690312311053276,-0.03833933547139168,-0.06868090480566025,-0.033284809440374374,0.04461446404457092,0.05289842188358307,-0.01117207296192646,-0.04310540482401848,0.05770658701658249,0.014833160676062107,-0.043117955327034,-0.011067108251154423,-0.06709836423397064,-0.07425529509782791,-0.09418023377656937,-0.016419226303696632,0.0472172312438488,-0.026781737804412842,0.06484569609165192,-0.03367157280445099,0.06762860715389252,-0.14133933186531067,0.027596181258559227,0.01369795948266983,0.00783418957144022,0.00025663338601589203,0.08147048205137253,0.01289238128811121,0.01960263028740883,-0.023871304467320442,-0.054148197174072266,0.05068917199969292,0.03443450108170509,-0.0920926108956337,-0.00652903039008379,0.07621613889932632,-0.046396784484386444,0.0511123389005661,0.02770950272679329,-0.029309991747140884,0.017893439158797264,-0.0654241219162941,0.017651433125138283,0.03445739299058914,0.00807179044932127,0.08125656098127365,-0.06692580133676529,0.017497645691037178,0.03400270268321037,0.024672387167811394,0.03248199447989464,0.0973423421382904,0.04372652620077133,0.018709946423768997,-0.0028159632347524166,-0.042092613875865936,-0.07413595169782639,0.023669589310884476,-0.018243687227368355,0.02270839363336563,-0.011358270421624184,0.08341043442487717,0.088704414665699,-3.188002750675878e-8,-0.015606807544827461,0.03586859256029129,-0.02869991771876812,0.0053471908904612064,-0.057795219123363495,0.024925172328948975,-0.0190738532692194,-0.0353241041302681,-0.024226415902376175,0.03438098728656769,0.023598410189151764,-0.06240309402346611,-0.003259881865233183,0.043230414390563965,-0.04623310640454292,0.009850955568253994,0.08143765479326248,-0.01043496560305357,-0.04722126945853233,-0.0014809987042099237,0.03656298667192459,-0.000798650726210326,-0.0005337678012438118,-0.02802371233701706,-0.03997866436839104,0.08852249383926392,-0.009157157503068447,-0.043335214257240295,0.015550187788903713,0.027215279638767242,-0.014369656331837177,0.06356516480445862,-0.004226142540574074,-0.05267908796668053,0.06654833257198334,-0.016268033534288406,-0.05054367333650589,0.035151585936546326,-0.035513103008270264,0.08356756716966629,-0.0030916398391127586,0.010805181227624416,0.002484036609530449,0.04730658978223801,-0.019848870113492012,0.017223792150616646,-0.03558861464262009,0.011265035718679428,-0.021731626242399216,0.04855681583285332,0.05635742098093033,-0.05707336962223053,0.11263004690408707,0.06322988122701645,0.01214940007776022,0.020113706588745117,0.06041347607970238,0.03512396663427353,-0.00688431179150939,0.0009774088393896818,0.1414007544517517,-0.01518571749329567,0.056377749890089035,-0.016794705763459206]},{"text":"The Project Gutenberg eBook of Horace: Odes and Epodes This eBook is for the use of anyone anywhere in the United States and most other parts of the world at no cost and with almost no restrictions whatsoever.","book":"Homage to Catalonia","chapter":1,"embedding":[-0.0879221186041832,-0.043635617941617966,0.013181870803236961,-0.05002615973353386,-0.007474586833268404,-0.009886255487799644,-0.06268595904111862,0.015149424783885479,-0.0018772020703181624,-0.000628993904683739,0.05451152101159096,0.05646980553865433,-0.04410034045577049,-0.07003641128540039,-0.1005784124135971,-0.05822407081723213,-0.09309794753789902,0.06282781809568405,0.10876810550689697,-0.04737897217273712,-0.0032153702341020107,-0.012430637143552303,0.048975154757499695,0.05315349996089935,-0.035506345331668854,0.10456036031246185,0.022195370867848396,-0.07056476175785065,0.003958902787417173,-0.09157183766365051,0.0030172178521752357,-0.04262256249785423,0.048617225140333176,-0.09297935664653778,-0.05278424918651581,0.03902484104037285,0.010063468478620052,0.020253807306289673,-0.023518932983279228,0.005711306817829609,-0.04454386979341507,0.04565763846039772,0.012502799741923809,0.04964228719472885,0.001722768065519631,-0.047542817890644073,-0.040158793330192566,-0.03489500656723976,-0.017363332211971283,-0.01979118399322033,0.01732749119400978,0.002066757995635271,0.002174912253394723,-0.03475021943449974,0.027730723842978477,0.030782902613282204,0.05834663286805153,0.047562673687934875,-0.013687695376574993,0.02083069458603859,-0.06279066205024719,0.0025544841773808002,-0.02686673402786255,0.06956557929515839,-0.06684685498476028,0.09633184969425201,-0.01126004196703434,0.11495394259691238,-0.11937728524208069,0.024852896109223366,-0.11904334276914597,0.019234851002693176,0.07520119845867157,0.020014256238937378,0.03556518256664276,-0.04406803473830223,-0.06504783034324646,-0.04341854527592659,0.01309172622859478,0.01357409916818142,-0.024785976856946945,-0.017439955845475197,-0.03181280195713043,-0.05370251461863518,-0.031172631308436394,0.043084170669317245,0.037178777158260345,-0.029149243608117104,0.12762944400310516,-0.0346967838704586,0.09674371033906937,-0.031161164864897728,0.0463644303381443,0.035921983420848846,0.02424808405339718,0.08025998622179031,-0.012950906530022621,-0.03251144289970398,-0.01985752210021019,0.02727659046649933,-0.0032211856450885534,0.013299580663442612,0.01067091803997755,0.011165517382323742,-0.04747107997536659,-0.02965555526316166,-0.007549897767603397,0.02705865167081356,0.033979080617427826,0.00038150078034959733,-0.017235061153769493,-0.07905957102775574,0.033392347395420074,-0.032402414828538895,0.05767115205526352,-0.12440913915634155,0.09445176273584366,-0.10824993252754211,0.08216290175914764,-0.035730067640542984,0.0018370808102190495,-0.0054907831363379955,-0.01021549478173256,0.03471900150179863,-0.012852011248469353,-0.03886992111802101,0.06986655294895172,1.7495159766486502e-33,-0.0022743178997188807,-0.005842896178364754,-0.044638633728027344,-0.010802432894706726,0.020409664139151573,-0.057966720312833786,0.02208317443728447,0.007188188377767801,-0.030605632811784744,-0.0960175022482872,-0.059016499668359756,-0.001950199599377811,-0.08015196025371552,0.08496715873479843,-0.010837174952030182,-0.014101658947765827,-0.008457303047180176,0.10916062444448471,0.05470115318894386,-0.04194982349872589,0.029500462114810944,-0.0356653556227684,0.01313705649226904,-0.05145292729139328,-0.024581152945756912,-0.0004985901177860796,-0.006614379584789276,-0.033707961440086365,0.09274794161319733,-0.008634939789772034,-0.0038740993477404118,0.04353553429245949,-0.05548897758126259,-0.013547299429774284,0.04889022558927536,0.08293386548757553,-0.07388968020677567,0.0019253771752119064,-0.010290633887052536,0.05134951323270798,-0.03418571874499321,0.05104944482445717,0.09585025161504745,0.0453573614358902,0.0656374990940094,-0.04028898850083351,0.07533755153417587,0.0838073268532753,0.11529255658388138,-0.028682826086878777,-0.06906166672706604,-0.0017737520392984152,-0.06919865310192108,-0.09869621694087982,0.012970519252121449,0.06165030598640442,-0.0068770102225244045,0.06944761425256729,-0.01760859228670597,-0.050853703171014786,-0.006739860400557518,0.09862548857927322,0.038035523146390915,-0.11780159920454025,-0.025972818955779076,0.03307288885116577,-0.11970845609903336,-0.020298000425100327,-0.018517155200242996,0.010208884254097939,-0.06542026251554489,-0.018979456275701523,-0.0017911731265485287,-0.0018853213405236602,-0.013293763622641563,0.06527216732501984,-0.03449542075395584,-0.005620216950774193,-0.02267247997224331,-0.076298289000988,-0.13251088559627533,-0.09756583720445633,-0.003870938904583454,0.08728992193937302,0.048052072525024414,-0.021910367533564568,0.021405907347798347,0.03283042088150978,-0.00007100446237018332,0.031660184264183044,0.05563816428184509,-0.0050123766995966434,-0.03274894878268242,-0.023055167868733406,0.005649138707667589,-4.26177276866345e-33,-0.05508093908429146,-0.057514071464538574,-0.010717712342739105,0.04992379620671272,-0.003932333551347256,0.02271701954305172,-0.11326760053634644,0.09201524406671524,0.06287777423858643,-0.05972005054354668,-0.09859788417816162,0.024963190779089928,0.053712110966444016,-0.012109003029763699,0.04311913624405861,-0.03138066828250885,0.01018977165222168,0.0162743479013443,0.008504758588969707,-0.009366580285131931,-0.10469608753919601,0.04390333592891693,0.013515452854335308,-0.015864014625549316,0.09044545888900757,-0.010678483173251152,0.07154980301856995,-0.0008087828173302114,-0.06129942834377289,-0.05366981402039528,-0.020651189610362053,-0.05360005050897598,-0.0777319073677063,0.03723638877272606,-0.03338531032204628,0.06628531217575073,0.05374051630496979,0.010482775047421455,-0.07653249055147171,-0.05408051237463951,0.028774650767445564,0.018714331090450287,0.014524075202643871,-0.04422876983880997,0.013233008794486523,0.01235753670334816,-0.0756254717707634,0.05438064783811569,-0.04085058718919754,0.10930976271629333,0.0016509779961779714,-0.032258372753858566,0.050596971064805984,-0.05548578500747681,-0.010147287510335445,-0.06410691887140274,0.05040174350142479,-0.018520580604672432,0.026381144300103188,-0.01746330037713051,-0.10147478431463242,0.022516710683703423,-0.047014426440000534,0.10799240320920944,-0.00221554865129292,-0.08184903115034103,-0.06586550176143646,0.018163803964853287,-0.07309513539075851,0.0040849726647138596,-0.005452720448374748,-0.006469434127211571,-0.002770790131762624,-0.039421435445547104,0.03946896642446518,0.008102107793092728,-0.014818362891674042,-0.04106643423438072,-0.013090853579342365,-0.01323198527097702,0.025265848264098167,0.06460008025169373,0.039035022258758545,0.04612475261092186,-0.025604048743844032,-0.015379413031041622,-0.037345901131629944,-0.028543224558234215,0.01729372702538967,0.06921932101249695,-0.009968359023332596,0.03879162669181824,-0.0000834937090985477,-0.008874544873833656,0.04884153604507446,-3.5426864997134544e-8,0.03819892555475235,0.027172157540917397,-0.03819392994046211,-0.033725887537002563,0.0230318084359169,0.005927934776991606,0.01833181083202362,-0.06831441074609756,-0.06758466362953186,0.02033596858382225,0.011205620132386684,0.03975902125239372,0.0712384358048439,0.016185134649276733,0.01379309594631195,0.061591874808073044,0.07916705310344696,-0.037976451218128204,-0.06574751436710358,-0.0070408727042376995,0.044217780232429504,0.03578281030058861,0.042531970888376236,-0.0354074202477932,0.05595477297902107,0.009797262027859688,-0.003951958380639553,-0.05025535076856613,-0.007998238317668438,-0.030779169872403145,-0.007462815847247839,0.031120281666517258,0.046483539044857025,-0.08440631628036499,0.131607323884964,0.0885954424738884,-0.0024420490954071283,0.012594534084200859,-0.04483267664909363,0.0413590669631958,-0.0060495613142848015,-0.039158228784799576,0.03629152849316597,-0.017136728391051292,0.06997311860322952,0.01872488483786583,-0.024600112810730934,0.043779127299785614,0.04540294408798218,0.04618588835000992,0.01851796545088291,-0.07767991721630096,0.05428191274404526,-0.019036106765270233,0.009027600288391113,-0.08435843139886856,-0.04588430002331734,-0.041796036064624786,0.02788560278713703,-0.05127742141485214,0.07278130948543549,0.10778941959142685,0.11108411103487015,0.03431030362844467]},{"text":"If you are not located in the United States, you will have to check the laws of the country where you are located before using this eBook.","book":"Homage to Catalonia","chapter":1,"embedding":[0.019671091809868813,0.007347251754254103,-0.019620295614004135,-0.03481633588671684,0.03229422867298126,0.04677776247262955,-0.060137663036584854,-0.07493256777524948,0.017343265935778618,0.06346718966960907,0.08915090560913086,0.02154700644314289,-0.018802812322974205,-0.06021225079894066,0.018033573403954506,-0.06579913944005966,0.005154603626579046,-0.006110971327871084,-0.003242683131247759,0.004587188363075256,0.11794088780879974,0.05041377991437912,0.023189924657344818,-0.006327406037598848,0.02974696271121502,-0.06394966691732407,0.007849011570215225,0.01865334063768387,-0.007742638699710369,-0.042623791843652725,0.0866905003786087,-0.03170856460928917,-0.011683888733386993,0.03782990947365761,0.024906951934099197,-0.026524685323238373,-0.016732405871152878,-0.06920243054628372,0.0372508279979229,0.019477009773254395,0.01029657106846571,-0.07118427753448486,-0.002591535681858659,0.018458111211657524,-0.018072936683893204,0.09271205216646194,-0.058323878794908524,0.02648269571363926,0.030422430485486984,0.03214401379227638,-0.0628998652100563,-0.02427642047405243,-0.02118886075913906,0.01871645264327526,-0.03175249323248863,-0.030895959585905075,0.041585467755794525,0.022388339042663574,0.020798617973923683,-0.025204632431268692,0.017680158838629723,-0.03004862554371357,-0.03271375223994255,0.06160445883870125,-0.07519545406103134,0.08569249510765076,0.031070543453097343,0.01680399663746357,0.030453797429800034,-0.047797590494155884,-0.13033755123615265,-0.08052422851324081,0.014078221283853054,0.06953930109739304,0.011859878897666931,-0.02526041492819786,-0.024642297998070717,-0.006318318657577038,0.05051292106509209,-0.09107086062431335,-0.14351166784763336,-0.03267659991979599,0.0683443546295166,-0.05066032335162163,-0.02067393995821476,0.061362627893686295,0.0165900569409132,0.04919206723570824,0.07125735282897949,0.027826104313135147,0.10919501632452011,0.006482688710093498,0.048921722918748856,0.09056171029806137,-0.03448943793773651,-0.052389830350875854,-0.0034069358371198177,0.019659558311104774,-0.007589004933834076,0.08289071917533875,-0.038442254066467285,-0.019227275624871254,-0.03674354404211044,-0.0073768990114331245,-0.03531568497419357,-0.054797302931547165,0.01401161402463913,-0.037109650671482086,0.007325922604650259,-0.016228754073381424,-0.04116232693195343,-0.008822832256555557,0.040824320167303085,-0.005012374836951494,0.021057218313217163,0.03452305495738983,0.02213871479034424,0.020127486437559128,0.11175461858510971,-0.05417436733841896,-0.007941012270748615,0.060217633843421936,-0.0001935833424795419,-0.07245385646820068,-0.07598357647657394,-0.10394923388957977,0.07982862740755081,-1.2393363673704075e-33,0.0002603584434837103,0.04918825626373291,-0.006419510580599308,-0.010397128760814667,0.04636111855506897,-0.054566483944654465,0.012358165346086025,-0.07442782819271088,-0.015416617505252361,-0.0075754947029054165,0.07409308850765228,-0.05102284997701645,-0.041128575801849365,-0.01853240467607975,-0.05013269931077957,0.08047270774841309,-0.017651919275522232,0.009970747865736485,0.055900782346725464,0.10765932500362396,0.06234433874487877,-0.14791956543922424,0.04446927085518837,-0.006962944287806749,-0.08292694389820099,0.0036079080309718847,-0.02253892458975315,-0.03526027873158455,0.06638242304325104,0.005492331925779581,0.02733803540468216,0.011404462158679962,0.029555192217230797,-0.17890000343322754,0.025964803993701935,0.034002941101789474,-0.004333574790507555,0.04038577899336815,0.03749352693557739,0.04176652431488037,-0.07040096819400787,-0.06541409343481064,0.08186817914247513,-0.011153021827340126,0.004473583772778511,0.030683500692248344,0.0972348302602768,0.037622757256031036,0.09559328854084015,0.0494518019258976,-0.04819360747933388,-0.08389516919851303,-0.048778798431158066,-0.074623703956604,0.02664187364280224,0.047342948615550995,-0.0705765038728714,-0.004387369379401207,0.019009582698345184,-0.077691949903965,0.06815174967050552,0.05644541233778,0.046746574342250824,0.03407372161746025,-0.03707018122076988,-0.03778725862503052,-0.06857244670391083,-0.030877934768795967,-0.0010827521327883005,-0.12876099348068237,-0.040632933378219604,0.016769682988524437,0.06178968399763107,0.017207352444529533,-0.03504392132163048,0.017265455797314644,0.008674455806612968,-0.0038684685714542866,0.0006935156998224556,-0.045440491288900375,-0.0603194497525692,-0.02386453002691269,0.02207479625940323,0.03688940778374672,0.041596945375204086,-0.011093140579760075,0.014931419864296913,-0.0003377862449269742,0.008326880633831024,0.06787113845348358,0.042819101363420486,-0.016755711287260056,-0.051839929074048996,-0.019903670996427536,0.08230800926685333,-1.6604544634876073e-33,-0.03974941372871399,-0.06340549886226654,-0.026398103684186935,-0.015227670781314373,0.0069717769511044025,0.0344131700694561,0.00009819714614422992,0.01111093070358038,-0.011826355941593647,-0.016841521486639977,-0.08567259460687637,-0.04037977755069733,0.04410073533654213,-0.029043162241578102,-0.019509419798851013,-0.06250622868537903,-0.03145892918109894,0.0010742532322183251,-0.04817016050219536,-0.03456733375787735,-0.061201512813568115,-0.0026773426216095686,0.03870459273457527,-0.007250827271491289,0.11895562708377838,-0.029339227825403214,-0.018789811059832573,0.033839695155620575,-0.015582389198243618,-0.06497196853160858,0.08593358099460602,-0.019231636077165604,-0.11008405685424805,0.10302843898534775,-0.10685098171234131,-0.12281103432178497,0.0017356525640934706,0.0009203408844769001,0.03053312562406063,-0.049807798117399216,0.054898664355278015,-0.031764402985572815,-0.02999461069703102,-0.028945721685886383,-0.08673866093158722,-0.035206571221351624,0.04284927248954773,-0.014813952147960663,0.048540543764829636,-0.01631690002977848,0.048870909959077835,0.05874555930495262,0.05190160498023033,-0.1293632835149765,0.007244367618113756,0.10391919314861298,0.0869181901216507,-0.054262351244688034,0.029313182458281517,-0.008584661409258842,-0.031812991946935654,0.010067328810691833,-0.00024025599122978747,0.02428925223648548,-0.021805070340633392,-0.061388567090034485,-0.028763609007000923,0.019611377269029617,0.10282757878303528,0.0946270003914833,-0.029594670981168747,-0.04044562205672264,0.021258223801851273,-0.13222269713878632,0.035173166543245316,0.05324909836053848,0.03433716669678688,0.09995114803314209,-0.04854359105229378,-0.07475347816944122,-0.011227619834244251,0.020271778106689453,-0.06972471624612808,0.040455956012010574,0.05557956546545029,-0.04903256520628929,0.04675091430544853,-0.1278487592935562,-0.017669500783085823,0.002530396915972233,-0.059681687504053116,0.026652425527572632,0.01972353830933571,0.018817545846104622,0.004500814713537693,-3.2483363554547395e-8,0.0037599788047373295,-0.008696074597537518,0.05832834169268608,-0.04480396583676338,-0.0006279562949202955,0.06877443194389343,0.07460225373506546,-0.057886529713869095,-0.07231158018112183,0.01030062511563301,-0.009377115406095982,-0.04542399197816849,0.09382238984107971,-0.006593380123376846,-0.021758591756224632,-0.04714483767747879,0.14270050823688507,-0.0264607984572649,-0.04437990114092827,0.040355075150728226,-0.05454842746257782,-0.022524790838360786,0.037522170692682266,0.01102384738624096,0.013820516876876354,0.05639731511473656,0.016945118084549904,0.03323035314679146,0.005287563893944025,0.028919896110892296,-0.0377516895532608,0.05412975326180458,0.027550624683499336,-0.02456401288509369,-0.04733152687549591,-0.024678200483322144,-0.05636357516050339,0.0502205528318882,-0.02877817675471306,0.0035123128909617662,-0.0047660875134170055,-0.010753156617283821,0.03696608543395996,0.03421836718916893,-0.003984665498137474,-0.03176359459757805,-0.0581042505800724,-0.01109407190233469,0.0279046893119812,0.06989908963441849,0.016888398677110672,-0.04666898772120476,0.018401527777314186,0.0035969936288893223,-0.05539870262145996,0.04656423628330231,0.07566693425178528,0.05817732959985733,-0.0159139521420002,0.04640188813209534,0.06702549010515213,-0.04379275068640709,0.013723980635404587,0.014663774520158768]},{"text":"HORACE ODES AND EPODES Edited by Paul Shorey, Professor in The University Of Chicago Revised by Paul Shorey and Gordon J.","book":"Homage to Catalonia","chapter":1,"embedding":[-0.08216354995965958,0.029570000246167183,0.007827997207641602,-0.04606328904628754,-0.038650814443826675,0.022386690601706505,-0.05885671451687813,0.0004894231096841395,0.010003417730331421,0.05104275420308113,0.03506484627723694,0.07444237172603607,-0.03271305188536644,-0.048526450991630554,-0.12058965861797333,-0.04718061909079552,-0.12418192625045776,0.05443500727415085,0.0612897127866745,-0.00463667931035161,0.0006993094575591385,-0.0176252368837595,0.03188516944646835,0.008127857930958271,0.013350157998502254,0.06305204331874847,-0.000060689624660881236,-0.028216689825057983,0.006984850391745567,-0.05304766818881035,0.004338275641202927,0.025156477466225624,0.04632415249943733,-0.056841857731342316,-0.05229794979095459,0.06656244397163391,0.056121088564395905,0.08764167129993439,0.005319156218320131,-0.006185223814100027,-0.04384272173047066,0.07230061292648315,0.02424720861017704,0.065819650888443,-0.0051041459664702415,-0.07850052416324615,-0.009891808964312077,-0.04150136932730675,-0.049983009696006775,-0.018976446241140366,0.043622057884931564,-0.012087110430002213,-0.028764452785253525,-0.022887617349624634,0.010096881538629532,0.07354844361543655,0.03816498816013336,0.04210717976093292,-0.04414551332592964,-0.017316680401563644,-0.04942035302519798,0.04770217090845108,-0.017343761399388313,0.0563153475522995,-0.017249779775738716,0.056522492319345474,-0.014554033987224102,0.026671594008803368,-0.15481872856616974,0.05684864893555641,-0.04101913794875145,0.03236044570803642,-0.026360217481851578,-0.008607083931565285,0.06339666992425919,-0.03637973591685295,-0.03939346596598625,0.03173647075891495,-0.025347642600536346,-0.04934670403599739,0.0038049493450671434,-0.043191589415073395,-0.07816899567842484,-0.03208475187420845,-0.02231610007584095,0.020894262939691544,-0.015352095477283001,-0.04750436916947365,0.06793903559446335,-0.03884514048695564,0.1050710380077362,-0.055792082101106644,0.032569967210292816,0.016807399690151215,0.06130187585949898,0.07118398696184158,-0.06970781087875366,-0.01143395435065031,0.04721925035119057,0.03834744915366173,-0.0005955678643658757,-0.009563952684402466,-0.024045811966061592,0.031490571796894073,0.02491108886897564,-0.05102801322937012,-0.0010294434614479542,0.030482832342386246,-0.02570950798690319,-0.011204388923943043,0.002621880965307355,-0.09213496744632721,0.02776235342025757,0.06587891280651093,0.054010841995477676,-0.1241765096783638,0.03355054929852486,-0.021504146978259087,0.03932894021272659,-0.08929016441106796,0.009981184266507626,0.003995885606855154,-0.03784162178635597,0.02226180210709572,-0.09836583584547043,0.015789031982421875,-0.007644861005246639,9.670904063520272e-34,-0.01705407351255417,0.022299109026789665,-0.004079557955265045,-0.02172759175300598,0.041808027774095535,-0.03800059109926224,0.009076829999685287,-0.0194135420024395,0.04257810488343239,-0.09097054600715637,-0.09272398799657822,0.026927966624498367,-0.006653474178165197,0.06041339784860611,0.030215337872505188,-0.008042956702411175,-0.07116678357124329,0.06131846085190773,0.05595098063349724,-0.10933632403612137,-0.023347819223999977,0.061324819922447205,-0.01583586446940899,-0.07411002367734909,-0.00885652843862772,0.017963526770472527,-0.0016263201832771301,-0.05937418341636658,0.07957351207733154,-0.010604887269437313,0.022254636511206627,0.02908484637737274,-0.025024456903338432,0.02811889536678791,0.07471006363630295,0.08896735310554504,0.0019976506009697914,-0.03259342163801193,-0.0008538736728951335,0.0038772746920585632,0.03297177702188492,0.07174839824438095,0.06393412500619888,-0.013335608877241611,0.0075642382726073265,-0.0031232235487550497,0.07004445791244507,0.0711357444524765,0.037674468010663986,-0.017046160995960236,-0.021361423656344414,0.01819692738354206,-0.03633939102292061,-0.07483936101198196,-0.0018996234284713864,0.07951860874891281,-0.030845172703266144,0.057811371982097626,-0.06218555197119713,-0.03207771107554436,0.008664088323712349,0.15876120328903198,0.06534146517515182,-0.0661088302731514,-0.015583270229399204,0.06360313296318054,-0.05931597203016281,-0.021965499967336655,0.038685351610183716,0.004703245125710964,-0.07174626737833023,-0.030677348375320435,-0.04025512933731079,-0.009878827258944511,0.013213390484452248,0.027097204700112343,-0.058860067278146744,0.0042461808770895,-0.06730514764785767,-0.05714776739478111,-0.12711438536643982,-0.054418470710515976,-0.035756804049015045,0.069973886013031,-0.006850940641015768,-0.05476302281022072,-0.0023343355860561132,0.067681685090065,0.025761185213923454,0.04961373656988144,0.021441370248794556,-0.028899244964122772,0.038281410932540894,0.016774237155914307,-0.09963128715753555,-3.6139640767390264e-33,-0.1265968233346939,-0.044565144926309586,-0.039166707545518875,0.06193457171320915,0.0013183685950934887,0.026841318234801292,-0.09002150595188141,0.05876078084111214,0.030503038316965103,-0.12065982818603516,-0.018478665500879288,0.011847441084682941,0.002211633836850524,0.0037988265976309776,0.007412755396217108,-0.053494274616241455,-0.014379099011421204,0.02361944317817688,-0.04732281342148781,0.015278116799890995,0.035239286720752716,0.011341597884893417,-0.023735452443361282,0.0038562240079045296,0.08033006638288498,0.01867595873773098,0.08437485992908478,-0.016145333647727966,-0.0885157361626625,-0.03123241476714611,0.005036983173340559,-0.02804313600063324,-0.062243081629276276,0.01917746104300022,0.0029148347675800323,0.08344190567731857,0.06508275121450424,0.011488358490169048,-0.062377385795116425,-0.015204988420009613,0.026281805709004402,0.0650162547826767,0.038836605846881866,0.04132580757141113,0.049654942005872726,0.023304330185055733,-0.07754103094339371,0.0690450519323349,-0.10412461310625076,0.07823798060417175,-0.11133488267660141,-0.02055976539850235,0.05003545805811882,-0.05506952106952667,0.027326196432113647,-0.031450171023607254,0.10370451956987381,-0.07846411317586899,0.01623811386525631,-0.02196240797638893,-0.07066581398248672,0.01267215982079506,-0.05329638347029686,0.07464443892240524,0.025770045816898346,-0.06670409440994263,-0.09719403088092804,0.0037030521780252457,-0.05578171834349632,-0.04843895137310028,0.014774680137634277,-0.05769474059343338,-0.03125951811671257,-0.011317603290081024,-0.027492601424455643,-0.02764783427119255,-0.035916369408369064,-0.10270217061042786,-0.024733219295740128,-0.03477775305509567,0.00887121818959713,0.008877002634108067,0.054826028645038605,0.06322357803583145,-0.07349832355976105,0.01464940421283245,-0.03215254470705986,-0.022305607795715332,0.07955803722143173,0.06434305757284164,0.05792122706770897,-0.015603206120431423,0.005352146457880735,-0.015868397429585457,0.009441575966775417,-3.0013136864681655e-8,0.04713784530758858,0.09904320538043976,0.001387120340950787,0.0140476543456316,-0.010655946098268032,-0.005749546457082033,0.019365908578038216,-0.005541810765862465,-0.060376230627298355,-0.008236792869865894,-0.014842832460999489,0.06042887270450592,0.026535872370004654,0.04260380566120148,0.04677001014351845,0.05068796128034592,0.04201190546154976,0.0018128901720046997,-0.0635974109172821,0.0010638561798259616,0.028953153640031815,0.05187329649925232,0.03454424440860748,-0.07815170288085938,0.0520017184317112,0.06540868431329727,-0.01185566931962967,-0.083961121737957,-0.049218110740184784,0.028388909995555878,-0.025914892554283142,0.09377932548522949,-0.009790073148906231,-0.05285103619098663,0.11769107729196548,0.06710894405841827,0.037762779742479324,-0.016145512461662292,0.028080638498067856,-0.01878618635237217,-0.06537176668643951,0.03542394936084747,0.021843353286385536,-0.007655476685613394,0.11975037306547165,0.011131074279546738,0.02300248108804226,0.10346867144107819,-0.030979687348008156,0.0249166302382946,0.046046189963817596,0.006836817134171724,0.04943334311246872,-0.0705159530043602,-0.001720594009384513,-0.06553187966346741,-0.052780959755182266,-0.024432770907878876,-0.02612658217549324,-0.09059624373912811,0.07402331382036209,0.12073002010583878,0.08863386511802673,0.03363417834043503]},{"text":"HORATII FLACCI CARMINUM LIBER PRIMUS.","book":"Homage to Catalonia","chapter":1,"embedding":[-0.050158094614744186,0.11283817142248154,-0.08793693035840988,-0.00029845855897292495,-0.0320395827293396,0.02434525266289711,0.06709247827529907,0.015281167812645435,-0.004637494217604399,0.02092869207262993,0.12786664068698883,-0.030570685863494873,-0.044729653745889664,-0.030768675729632378,-0.020453348755836487,-0.06234774366021156,-0.03723722696304321,0.05418381839990616,-0.05288276821374893,0.027665579691529274,0.03393448516726494,0.03176350146532059,0.0011928807944059372,0.04948104918003082,-0.09009671956300735,0.022568978369235992,-0.03389758616685867,0.07835741341114044,0.030664121732115746,-0.052950724959373474,0.005282586440443993,0.04059535637497902,0.049167733639478683,-0.0349193811416626,0.04213647171854973,-0.08954563736915588,-0.07461879402399063,-0.07131814956665039,0.06340920925140381,0.05820660665631294,0.0026764122303575277,-0.007960131391882896,-0.03473982959985733,0.012697171419858932,-0.06102703884243965,-0.047800518572330475,-0.04830010607838631,0.07494606822729111,0.02597162500023842,0.010930904187262058,-0.0704420804977417,-0.033789943903684616,-0.02246101014316082,-0.017548877745866776,-0.07409348338842392,0.04049671068787575,-0.05208185687661171,-0.07034796476364136,-0.02809673361480236,0.02650286629796028,-0.05274650827050209,0.06757639348506927,-0.09993331134319305,0.016256388276815414,-0.05777735635638237,-0.016361474990844727,-0.0028308371547609568,-0.032798558473587036,0.02215426042675972,0.03747622296214104,0.1381997913122177,-0.009486299939453602,0.05854417011141777,0.07967329770326614,-0.02890177257359028,-0.010593339800834656,-0.017995042726397514,-0.006755287759006023,-0.04726240411400795,-0.027797533199191093,0.036232560873031616,-0.030717715620994568,-0.04334469884634018,0.04473382234573364,-0.013494664803147316,-0.04535176232457161,0.0011714593274518847,0.026750164106488228,0.0037117348983883858,-0.0036079518031328917,-0.023220039904117584,0.029044482856988907,-0.018679874017834663,-0.03522105515003204,-0.02556130662560463,0.08048676699399948,0.00201273150742054,-0.08060434460639954,-0.020791636779904366,-0.01745074801146984,0.0413985513150692,-0.018563613295555115,0.04967326298356056,-0.029834620654582977,-0.08077959716320038,-0.043129947036504745,-0.038936812430620193,0.02070026658475399,0.033453892916440964,0.022621478885412216,-0.015135136432945728,-0.09754025191068649,-0.042874764651060104,-0.08240801095962524,-0.030888820067048073,0.056003425270318985,0.016344355419278145,-0.07474827021360397,-0.05590156093239784,-0.105342335999012,0.006504171993583441,0.019373390823602676,0.054158326238393784,-0.026696734130382538,0.0845957100391388,-0.03939370438456535,-0.020160555839538574,2.467772228688846e-33,-0.016309885308146477,-0.10543933510780334,-0.004619368351995945,0.03681543841958046,0.003811863949522376,-0.015633219853043556,-0.04852350428700447,-0.0737980380654335,-0.014821646735072136,-0.008000061847269535,-0.11758527159690857,0.03448394313454628,-0.03769327700138092,0.014465196058154106,-0.004140683449804783,0.10330811142921448,0.01605764962732792,0.023411434143781662,0.026492709293961525,0.05564059689640999,0.001319166854955256,0.08109623938798904,0.03608284145593643,0.002801126567646861,-0.0008648413349874318,0.08665881305932999,0.06436371803283691,-0.0979207307100296,-0.005931701976805925,0.052445266395807266,0.13242344558238983,-0.07563649863004684,-0.04617800936102867,0.010307841002941132,0.06379455327987671,0.026472965255379677,-0.022542156279087067,-0.02760893478989601,-0.039760522544384,0.031361326575279236,0.034107908606529236,0.04193543642759323,0.09888377040624619,-0.008035700768232346,0.05177219212055206,0.0027319020591676235,0.0546017587184906,0.08052663505077362,0.04897232726216316,0.05922665819525719,0.02767787128686905,0.007737339474260807,0.023505065590143204,0.05338617041707039,-0.057160280644893646,0.08394905924797058,0.019812213256955147,0.1000649482011795,-0.012502511031925678,0.004776254761964083,0.04068496450781822,0.12650886178016663,-0.04238239675760269,0.010623987764120102,0.05605807155370712,-0.008940362371504307,-0.10706020891666412,-0.012026135809719563,0.058785829693078995,0.04627125710248947,-0.02617228589951992,-0.09166459739208221,-0.004981352481991053,0.047646164894104004,-0.021636169403791428,0.07150424271821976,-0.017132552340626717,-0.02402338944375515,-0.09353222697973251,-0.013307027518749237,-0.07407018542289734,-0.0164136104285717,0.011076075956225395,0.06384676694869995,0.03251456469297409,0.02364191971719265,-0.03469870239496231,0.10210712254047394,0.015545714646577835,-0.004896651953458786,0.04432995617389679,0.005920201539993286,0.035454098135232925,0.004175152629613876,-0.03313042223453522,-2.833375583707548e-33,0.021366633474826813,-0.06511345505714417,0.009981145150959492,0.08870501071214676,0.03393692895770073,0.03202054649591446,-0.10824095457792282,0.053688813000917435,-0.016356050968170166,-0.04215283691883087,-0.007490443531423807,-0.011928658932447433,0.08346083015203476,-0.03406855836510658,0.05116428807377815,0.04286021366715431,0.08403503894805908,0.06121573597192764,-0.0469011589884758,-0.016897082328796387,-0.13863179087638855,0.05787315219640732,-0.001202025800012052,-0.041485052555799484,-0.01913989521563053,-0.05982533469796181,0.11649024486541748,-0.016134511679410934,-0.06570868194103241,0.011612909846007824,0.06747447699308395,0.0019282535649836063,-0.027763912454247475,-0.01554202288389206,0.006337575614452362,0.015342040918767452,0.06404461711645126,-0.05130660533905029,0.02053469978272915,0.005104376003146172,-0.07288296520709991,-0.05426173657178879,0.07255564630031586,0.042851150035858154,0.08684054017066956,-0.008945579640567303,-0.0538986437022686,-0.0719631239771843,-0.07459715008735657,0.10905782133340836,0.04038402438163757,-0.019659727811813354,0.04622192308306694,-0.08051885664463043,0.06442687660455704,-0.10943031311035156,-0.02165965735912323,-0.04022255539894104,-0.0523439384996891,0.03359340876340866,0.11049305647611618,0.05079609900712967,-0.028894668444991112,0.06507070362567902,0.024012185633182526,0.003622244345024228,-0.08680938184261322,0.04159151762723923,-0.00268637971021235,0.027433300390839577,0.04824984818696976,-0.018479473888874054,-0.08185803145170212,0.054913777858018875,-0.010466104373335838,0.113431416451931,-0.014634573832154274,0.060719624161720276,0.07444129884243011,0.020672647282481194,-0.028718935325741768,-0.08442177623510361,-0.023274075239896774,-0.015201404690742493,-0.02118734084069729,-0.03217484429478645,-0.007915233261883259,-0.0043561020866036415,0.018983207643032074,0.028241606429219246,-0.020446810871362686,-0.024158025160431862,-0.056894753128290176,-0.020613359287381172,0.0005168072530068457,-2.1257259064100253e-8,0.004127886611968279,0.00012558400339912623,-0.05745094269514084,0.06467488408088684,-0.009990199469029903,-0.018738852813839912,-0.006310547236353159,-0.008375493809580803,-0.002097430871799588,0.0051481835544109344,-0.010022582486271858,0.06170422211289406,-0.025625815615057945,0.03725282475352287,-0.04183315858244896,-0.007116947788745165,0.07807036489248276,0.06439957767724991,-0.04842245951294899,-0.06604364514350891,0.004087183624505997,-0.001832305104471743,-0.07255348563194275,-0.0037856714334338903,-0.0667831152677536,-0.07339949160814285,0.04848911985754967,-0.02791389264166355,0.03682864084839821,-0.03768482804298401,-0.017138253897428513,0.0007399147725664079,-0.0919637605547905,-0.09948061406612396,-0.00839218869805336,0.015348509885370731,-0.011894154362380505,-0.0009306452120654285,0.03202091157436371,0.02643989585340023,0.08973312377929688,0.04053603857755661,-0.012980117462575436,-0.05456866696476936,-0.017325498163700104,-0.01202479563653469,0.04959842935204506,-0.016372686251997948,-0.04134443774819374,-0.015528611838817596,-0.04304991662502289,0.030730832368135452,0.021546097472310066,0.02108903042972088,-0.057611871510744095,0.038873475044965744,0.06561627984046936,-0.045458972454071045,-0.0368773378431797,-0.03928421437740326,0.01420551910996437,0.09036018699407578,0.06989921629428864,0.10229697823524475]},{"text":"Luctantem Icariis fluctibus Africum 15 Mercator metuens otium et oppidi Laudat rura sui; mox reficit ratis Quassas, indocilis pauperiem pati.","book":"Homage to Catalonia","chapter":1,"embedding":[0.014951844699680805,0.016523772850632668,-0.034948594868183136,-0.021192282438278198,-0.058060422539711,-0.022940823808312416,0.10196418315172195,0.04886564239859581,0.06742705404758453,0.05687403306365013,0.05850040540099144,-0.08498657494783401,0.010009349323809147,0.028366027399897575,-0.07725302875041962,-0.08602172136306763,-0.020702822133898735,0.03926786780357361,-0.04344095289707184,0.042978350073099136,0.07048238068819046,0.015059323981404305,0.05136023461818695,-0.02123420685529709,-0.12852394580841064,0.015231382101774216,-0.047543950378894806,-0.11817514151334763,-0.033481381833553314,-0.07972177863121033,0.05653398856520653,0.120742067694664,0.05986509099602699,-0.10157673060894012,0.027285562828183174,-0.03215283527970314,-0.06369633972644806,-0.016081279143691063,0.12281184643507004,0.05890929326415062,-0.02665143832564354,-0.0013075126335024834,0.007581766694784164,-0.03406410291790962,-0.00881923921406269,0.011878803372383118,0.007844988256692886,0.022381296381354332,0.10307938605546951,0.01338237151503563,-0.0779866874217987,-0.03540877252817154,-0.07693325728178024,0.03811287507414818,-0.05757659673690796,0.02260753884911537,-0.020342547446489334,-0.06437697261571884,-0.0674041286110878,-0.005036816466599703,-0.0008221885072998703,0.06014905124902725,0.05976925417780876,0.007091494742780924,-0.021853584796190262,0.027567733079195023,-0.0866861492395401,-0.009303204715251923,-0.01667610928416252,0.015018626116216183,0.11018268764019012,-0.009830277413129807,0.01837047003209591,0.04118993133306503,0.008432785980403423,0.02585502155125141,-0.044464658945798874,-0.051419731229543686,0.07285192608833313,-0.046763353049755096,-0.059888049960136414,0.05667124688625336,0.055972784757614136,0.024830561131238937,0.006450592074543238,-0.006915362551808357,0.11279146373271942,-0.010568193159997463,0.011032313108444214,0.041425805538892746,0.045292772352695465,0.04678729176521301,-0.05151951313018799,-0.05212882533669472,0.023822614923119545,-0.032431311905384064,0.0790628120303154,-0.02255845256149769,-0.008216377347707748,0.025636717677116394,0.03160055726766586,-0.09945036470890045,0.011337327770888805,0.04838654026389122,-0.13025127351284027,-0.1063377782702446,-0.05194457247853279,-0.12563736736774445,0.045004233717918396,0.017522767186164856,-0.10445190221071243,-0.05393757298588753,-0.08077657222747803,-0.06143883243203163,0.0313420370221138,0.02036248706281185,0.0474739745259285,-0.06916344165802002,-0.013090407475829124,-0.04327093064785004,0.05321868509054184,-0.06753311306238174,0.031248340383172035,0.0011933509958907962,0.028567004948854446,-0.029580967500805855,0.019274616613984108,1.2757803289315463e-32,0.00519692013040185,-0.11608824133872986,-0.06914814561605453,-0.018646055832505226,0.035590823739767075,-0.05350516363978386,-0.019549304619431496,-0.054084837436676025,0.019889868795871735,-0.1085938811302185,-0.09105279296636581,-0.03728609159588814,-0.01784968376159668,0.002918254816904664,-0.041099291294813156,0.04821331053972244,0.054498426616191864,-0.03397996723651886,-0.0035259192809462547,-0.04580779746174812,-0.017289437353610992,0.03345678746700287,0.03361601382493973,-0.012016013264656067,0.02019544690847397,0.0219665989279747,-0.040192048996686935,0.0029546734876930714,0.03715060278773308,0.007482436485588551,0.1275504231452942,-0.021153315901756287,-0.06190836429595947,-0.015741167590022087,-0.035186637192964554,0.10746392607688904,0.030976317822933197,-0.05527348071336746,-0.09015986323356628,-0.010523160919547081,0.029846636578440666,-0.01685442589223385,0.0645584687590599,0.04026522487401962,0.09406512975692749,0.03076229989528656,-0.0738721564412117,0.00937510747462511,0.10280537605285645,0.03417900949716568,0.028713468462228775,0.04297463968396187,0.04634895548224449,-0.04991310089826584,-0.026790857315063477,-0.01034159492701292,-0.021021991968154907,-0.0036996493581682444,-0.06927107274532318,0.04946630820631981,0.011167842894792557,-0.036477599292993546,-0.007117048837244511,0.011993874795734882,-0.004028054885566235,0.028586693108081818,-0.053797315806150436,-0.022915657609701157,0.01796158216893673,-0.022727379575371742,-0.06815602630376816,-0.062161363661289215,-0.0034380170982331038,0.05512312799692154,-0.005897989496588707,0.019813500344753265,0.02800087444484234,-0.013088250532746315,-0.06145012006163597,-0.0029757029842585325,-0.04527522996068001,0.0372454896569252,0.03262525424361229,0.040141601115465164,-0.013275275938212872,-0.00326552614569664,-0.023537317290902138,0.0600149966776371,0.1143786832690239,0.06530840694904327,0.05747024714946747,0.027856003493070602,-0.029206877574324608,0.046143610030412674,-0.0028715156950056553,-1.2481991172310275e-32,-0.015355450101196766,-0.03143632411956787,-0.07434086501598358,0.07652053982019424,-0.056738369166851044,0.07932161539793015,-0.10175963491201401,0.0702892392873764,0.06707682460546494,-0.050026603043079376,-0.05468529090285301,-0.01677747629582882,0.03242916613817215,-0.056885216385126114,-0.01851768046617508,0.00426911748945713,0.08480816334486008,0.05736615136265755,-0.0243888720870018,0.015061171725392342,-0.053240396082401276,0.02575291506946087,0.01750257797539234,-0.16412068903446198,-0.004730881657451391,0.036124736070632935,0.041023194789886475,-0.003283474361523986,-0.05810331553220749,-0.08115087449550629,0.08040839433670044,0.024813102558255196,-0.023719092831015587,0.02757388912141323,0.01627073436975479,0.012254075147211552,0.08831146359443665,-0.06528349965810776,-0.13583141565322876,-0.025274071842432022,-0.009571857750415802,-0.011790419928729534,0.12341348826885223,0.04940928891301155,0.044750675559043884,-0.032679732888936996,-0.05761268734931946,0.001064506359398365,-0.018785880878567696,0.04587363824248314,0.0673486590385437,-0.07838810980319977,-0.03059598244726658,-0.07994382083415985,0.05351102352142334,0.0021733844187110662,-0.0700126364827156,-0.025035317987203598,0.0029317657463252544,-0.00825538020581007,0.024604616686701775,-0.02591608464717865,-0.026074500754475594,-0.012617138214409351,0.03966163098812103,0.0077619850635528564,-0.06977452337741852,-0.005210821982473135,0.048241499811410904,0.06154008209705353,0.08142808079719543,0.02017413079738617,-0.057196859270334244,-0.007752776611596346,-0.001376318628899753,0.052272550761699677,-0.014753062278032303,0.006994474213570356,0.03745979443192482,-0.0017935108626261353,-0.01048269122838974,0.010484566912055016,0.02981429547071457,-0.07514261454343796,-0.07584082335233688,-0.030885905027389526,0.04434986785054207,0.022703630849719048,0.029322894290089607,0.021648259833455086,0.023606693372130394,-0.07130738347768784,0.009837794117629528,-0.027500290423631668,0.029820187017321587,-4.4884760797003764e-8,0.002479464979842305,-0.01905880682170391,-0.06511890888214111,0.056437503546476364,0.015309191308915615,-0.02227054536342621,0.08799669146537781,-0.02375001646578312,0.04006509110331535,-0.005698599852621555,-0.031176475808024406,0.04995472729206085,0.026565466076135635,-0.0025839630980044603,0.032356809824705124,-0.02101041004061699,0.067876435816288,0.07231058180332184,-0.0005733129801228642,0.0004674016672652215,-0.03647967427968979,-0.035762373358011246,0.02117970958352089,-0.04217596724629402,-0.05881292372941971,-0.06177566200494766,0.07889732718467712,0.016710009425878525,-0.044542346149683,0.015467516146600246,-0.025854459032416344,0.04869205877184868,0.062126196920871735,-0.06168233975768089,0.01609674096107483,-0.01975380629301071,-0.012956198304891586,0.004589724820107222,0.011850932613015175,0.03807242587208748,0.030491560697555542,-0.018857548013329506,0.028288714587688446,-0.04774671420454979,0.05221230164170265,-0.07543563097715378,-0.055442385375499725,0.007334253750741482,0.06090259552001953,-0.13751119375228882,-0.029401415959000587,0.04586845636367798,0.07102971524000168,-0.0024262829683721066,-0.06276722997426987,-0.025190776214003563,0.047028303146362305,-0.008948256261646748,-0.02652183547616005,0.014777000062167645,0.012730893678963184,-0.001167246955446899,0.05469802767038345,0.043513085693120956]},{"text":"Multos castra iuvant et lituo tubae Permixtus sonitus bellaque matribus Detestata.","book":"Homage to Catalonia","chapter":1,"embedding":[0.030609402805566788,0.009177831001579762,-0.0661376565694809,-0.014339830726385117,-0.15380452573299408,0.023863205686211586,0.07779747992753983,0.1413726955652237,0.031122272834181786,0.005177921615540981,0.04949493333697319,-0.015043566934764385,0.04211275652050972,-0.029339252039790154,-0.12375124543905258,-0.08331072330474854,0.04880339279770851,0.09095639735460281,0.0021286923438310623,0.08024706691503525,0.0028428547084331512,-0.0016320199938490987,0.014421100728213787,0.05303172022104263,-0.04172831401228905,-0.014572818763554096,-0.04059932380914688,-0.01639505848288536,0.014043423347175121,-0.060926564037799835,-0.0034400704316794872,0.03193172439932823,-0.010603035800158978,-0.03408631309866905,0.0710320919752121,-0.08352980762720108,-0.021664580330252647,-0.05791771039366722,0.06098781153559685,0.03172678127884865,0.06185664236545563,-0.043106094002723694,-0.09328731149435043,-0.05919714644551277,0.0560324564576149,-0.023187801241874695,-0.03176493942737579,0.05355778709053993,0.037378888577222824,-0.003631053026765585,-0.0684831514954567,-0.06526107341051102,-0.01731821335852146,0.08459028601646423,-0.08177005499601364,-0.10232042521238327,0.0074913837015628815,-0.0009239688515663147,0.01726648584008217,-0.011397969909012318,-0.05575154349207878,0.051338329911231995,0.08803876489400864,0.03763832524418831,-0.06396275758743286,0.009061637334525585,-0.021357864141464233,-0.007134473416954279,0.004280069377273321,-0.01362784393131733,0.12460961192846298,-0.034069500863552094,-0.038101207464933395,0.004946758039295673,-0.02154218778014183,0.03499121963977814,0.06750820577144623,-0.056003279983997345,-0.023171931505203247,-0.03867455944418907,-0.04420997202396393,0.022779641672968864,-0.0038230554200708866,0.00612234603613615,0.014052175916731358,0.05629882588982582,0.07241816073656082,-0.004675581119954586,-0.007646608166396618,-0.038531918078660965,-0.0782926082611084,-0.045997560024261475,0.00006182422657730058,-0.02926737628877163,0.03151810169219971,0.03234884515404701,-0.017454298213124275,-0.04383990168571472,0.014340711757540703,-0.028653936460614204,-0.03154055401682854,-0.027267582714557648,0.026624096557497978,0.07379019260406494,-0.16059961915016174,-0.03017684444785118,0.0077782562002539635,-0.11783049255609512,-0.02380231022834778,-0.045255109667778015,-0.07678350806236267,-0.06383772194385529,-0.03766174986958504,-0.010358915664255619,-0.02087775431573391,-0.004542819224298,0.08182227611541748,-0.001991209341213107,0.006827725097537041,-0.020810266956686974,0.018607379868626595,-0.009611214511096478,-0.023794397711753845,-0.000952016853261739,0.03264012932777405,-0.07592565566301346,0.026829173788428307,7.683709190278102e-33,-0.09037604182958603,-0.10476730763912201,0.018541209399700165,-0.009418312460184097,0.04250038042664528,-0.017771242186427116,-0.08828442543745041,-0.031712599098682404,0.0269861351698637,-0.023963667452335358,-0.10366883873939514,-0.04560019075870514,-0.017073918133974075,-0.03855593129992485,0.02068386971950531,0.020648878067731857,0.08388321101665497,-0.023431915789842606,0.011340616270899773,0.012670297175645828,-0.05682424455881119,0.07679173350334167,0.058934278786182404,-0.043187037110328674,0.033770691603422165,0.017467033118009567,-0.07258275151252747,-0.060564909130334854,-0.07875034213066101,0.02384072169661522,0.08311577886343002,-0.028907310217618942,0.005358047317713499,-0.023950543254613876,-0.03669462352991104,-0.033351022750139236,-0.02346801944077015,0.0027301900554448366,-0.01308184303343296,0.0496404655277729,-0.059339672327041626,-0.0012508004438132048,0.04605625569820404,0.00701310345903039,0.03951898217201233,0.01677212305366993,-0.0063423169776797295,0.04998192563652992,0.08408541977405548,0.013981139287352562,0.022285955026745796,0.01602904312312603,0.02529354952275753,-0.04453837871551514,0.0429338701069355,0.07020173221826553,-0.05796506255865097,0.07157120108604431,0.0028163555543869734,0.019247161224484444,0.038974739611148834,0.010810716077685356,-0.01412772387266159,-0.02062671072781086,-0.013554176315665245,-0.026308875530958176,-0.022890036925673485,0.02892245538532734,0.07991783320903778,-0.02313162013888359,-0.18143467605113983,-0.009457984939217567,-0.03523148596286774,0.0063370950520038605,0.008469238877296448,0.011081906035542488,-0.01930083893239498,-0.005018760450184345,0.05364954471588135,-0.0861828401684761,-0.0717792883515358,-0.010788967832922935,0.005085423588752747,-0.010569026693701744,0.09322108328342438,0.036195602267980576,-0.020945724099874496,0.06632942706346512,0.03876756131649017,0.07304616272449493,0.04270574077963829,0.06405706703662872,-0.031612578779459,0.03153803199529648,0.0627858117222786,-8.536929275194982e-33,-0.022127706557512283,-0.048264265060424805,-0.07412226498126984,0.0588187538087368,0.03323275223374367,0.012788515537977219,-0.07186496257781982,-0.042673371732234955,-0.0334634892642498,0.04734638333320618,-0.09159305691719055,-0.06196872889995575,-0.005868249572813511,-0.061054084450006485,-0.05542364716529846,0.06068265065550804,0.09234181046485901,-0.00031688317540101707,-0.03855375945568085,-0.04864705726504326,-0.0905129462480545,0.029423009604215622,0.01735536940395832,-0.10491599887609482,-0.061238206923007965,0.0008452477632090449,0.007835473865270615,-0.02487734518945217,0.004092024173587561,-0.03876878321170807,-0.03274960443377495,0.036876462399959564,-0.007270587142556906,0.005990604870021343,-0.011907660402357578,-0.008559834212064743,0.11235813796520233,0.014844229444861412,0.051565419882535934,-0.029232056811451912,-0.018367907032370567,0.002258803928270936,0.041162796318531036,0.016996730118989944,0.010773731395602226,0.0012016032123938203,-0.03325735032558441,-0.01200379990041256,-0.022585144266486168,-0.006900065578520298,0.013793776743113995,-0.051963888108730316,0.06228102371096611,-0.016274817287921906,0.11120796948671341,-0.01947561651468277,0.010863629169762135,-0.0692857876420021,0.017811911180615425,0.015267347916960716,0.09595460444688797,-0.02102983184158802,-0.02174519933760166,-0.014309728518128395,0.06061878800392151,0.049348339438438416,-0.07660121470689774,-0.05102669820189476,-0.0006413139053620398,0.0022106945980340242,0.0726722776889801,-0.0976051315665245,-0.07441222667694092,-0.0038362436462193727,-0.078864686191082,-0.03565806522965431,-0.050391972064971924,-0.03470824658870697,0.06973379105329514,0.0011614003451541066,-0.038698866963386536,-0.08947763592004776,-0.04333759844303131,-0.03294837847352028,0.013265060260891914,-0.045989278703927994,0.03102133236825466,-0.04087035357952118,0.013925225473940372,-0.026537680998444557,0.04643711820244789,0.018606383353471756,0.039702579379081726,-0.07552966475486755,0.03433787077665329,-3.2030886387701685e-8,0.03509218990802765,-0.026617323979735374,-0.06393910944461823,0.045731253921985626,0.05572943389415741,-0.1682642549276352,-0.04386001080274582,0.04215587303042412,0.00414573960006237,0.07004152983427048,0.011856160126626492,0.010268178768455982,0.04550393298268318,-0.000009279590813093819,0.08278124034404755,0.05907537043094635,0.09617415815591812,0.01019175536930561,-0.005412249825894833,-0.037951771169900894,0.0110354358330369,-0.0396023690700531,-0.0853622779250145,-0.043679021298885345,-0.053745049983263016,-0.026264887303113937,0.063426673412323,0.0034764644224196672,0.01649990677833557,-0.010341174900531769,0.02510463073849678,0.037087880074977875,0.03371395543217659,-0.06653555482625961,-0.055467668920755386,0.050056181848049164,0.018385756760835648,0.062045104801654816,0.08954180777072906,0.08719013631343842,0.08970038592815399,0.06231699883937836,0.11153589934110641,-0.04390428587794304,0.053830165416002274,0.030233774334192276,0.06547154486179352,0.041889309883117676,0.0066534471698105335,0.0033714892342686653,0.018366144970059395,0.008540820330381393,0.07916391640901566,0.045852385461330414,-0.017941122874617577,0.034219034016132355,0.09993471950292587,0.000689175445586443,-0.0005336994072422385,0.07266353815793991,0.02427729405462742,0.024556608870625496,0.07290490716695786,-0.011478189378976822]},{"text":"Me doctarum hederae praemia frontium Dis miscent superis, me gelidum nemus 30 Nympharumque leves cum Satyris chori Secernunt populo, si neque tibias Euterpe cohibet nec Polyhymnia Lesboum refugit tendere barbiton.","book":"Homage to Catalonia","chapter":1,"embedding":[0.02832118049263954,0.021036142483353615,-0.028624093160033226,-0.015065115876495838,-0.08616837859153748,0.00810845848172903,0.09309545904397964,0.11188331246376038,0.021237196400761604,0.08742976188659668,0.006479738745838404,-0.05696665868163109,0.03133134916424751,-0.017731839790940285,-0.06245691701769829,-0.08747272938489914,0.01774187572300434,0.04019903019070625,-0.04797830805182457,0.046498317271471024,0.05030403658747673,0.05365411564707756,-0.03297031298279762,0.004429597873240709,-0.09434517472982407,0.055898383259773254,-0.04922763258218765,-0.07878480851650238,0.02083463966846466,-0.05961140990257263,0.040758971124887466,0.10062678903341293,0.08503730595111847,-0.05652984604239464,0.08185597509145737,0.009016290307044983,-0.04376840963959694,-0.08494183421134949,0.05996507406234741,0.08937280625104904,-0.00664929486811161,-0.033729854971170425,0.0020505907014012337,-0.0376918651163578,-0.03932816907763481,0.05379896238446236,-0.07299815863370895,0.09070075303316116,0.08161378651857376,-0.011730978265404701,-0.07159440964460373,-0.12239999324083328,-0.028239162638783455,0.01351862121373415,-0.04968845471739769,0.01615910418331623,-0.014167387038469315,-0.025892382487654686,-0.05463184788823128,-0.04747414216399193,-0.018411977216601372,0.050604239106178284,-0.012813897803425789,-0.013546695932745934,0.027155371382832527,0.07155903428792953,-0.004905884154140949,-0.004016890190541744,-0.004975184798240662,0.02505144290626049,0.1322399377822876,-0.00022237695520743728,-0.025890691205859184,0.043814390897750854,-0.0846729576587677,-0.012257078662514687,0.025556867942214012,-0.028239969164133072,0.04289735108613968,-0.09245112538337708,-0.08127240091562271,0.02259543351829052,-0.02080417424440384,0.01193220540881157,-0.01570061221718788,0.05180700495839119,0.03122708573937416,0.013802518136799335,0.02264036051928997,-0.03873782977461815,0.04858105629682541,-0.0169296283274889,-0.04861392080783844,-0.020277230069041252,-0.031306710094213486,0.04075193032622337,0.0055093104019761086,-0.03732626140117645,0.02784152515232563,-0.029457280412316322,0.0540502555668354,-0.06633669137954712,0.06188194081187248,0.02460610121488571,-0.04856955260038376,-0.05783245712518692,-0.05201464891433716,-0.060856468975543976,0.04666190221905708,0.03739668428897858,-0.06426643580198288,-0.07483900338411331,-0.0504915788769722,-0.07108049094676971,-0.0005209381924942136,-0.020981499925255775,0.08771675080060959,-0.05754620581865311,-0.01487429253757,-0.11848966777324677,-0.02984091453254223,0.02688590995967388,0.07559064030647278,-0.02549944818019867,0.03797014057636261,-0.06856928020715714,-0.014934402890503407,1.6796840082307245e-32,-0.03213845565915108,-0.13716720044612885,0.005447959061712027,0.011145289987325668,-0.007422186899930239,0.03862520307302475,-0.021031517535448074,-0.07308905571699142,0.1035556048154831,-0.08593350648880005,-0.10198866575956345,-0.009884309023618698,0.007965612225234509,-0.017405930906534195,-0.018327120691537857,0.07334031164646149,0.04731791839003563,-0.06262955069541931,-0.038179442286491394,0.009804518893361092,-0.028322631493210793,0.06418142467737198,0.06280101090669632,-0.015850858762860298,-0.042246926575899124,-0.006435456685721874,0.005238158628344536,-0.12112058699131012,-0.024298526346683502,0.00655606621876359,0.08897635340690613,-0.04784112051129341,0.0028703047428280115,0.01296908874064684,-0.026742413640022278,0.06349893659353256,-0.009885698556900024,0.022983824834227562,-0.0741133987903595,0.026275865733623505,-0.007421502843499184,0.014404861256480217,0.08537290245294571,0.05103239789605141,0.0716276615858078,0.011930097825825214,0.03080666810274124,0.05672639235854149,0.04312803968787193,-0.01787072978913784,0.01532678958028555,0.08194736391305923,0.04742628335952759,-0.03570796176791191,-0.034682516008615494,-0.015034292824566364,0.002628759481012821,0.09591294825077057,-0.010467518121004105,0.014094272628426552,0.0618247464299202,0.05322946235537529,0.005556972697377205,0.0436125323176384,-0.01772032491862774,-0.0897844210267067,-0.05896652117371559,0.025081878527998924,0.041896745562553406,-0.005753618665039539,-0.09382444620132446,-0.04181426391005516,0.0162595696747303,0.07134827971458435,0.03017786704003811,0.03210935741662979,0.05660663917660713,-0.034293051809072495,-0.08847707509994507,-0.05312662571668625,-0.07377088069915771,-0.024721432477235794,0.04102287068963051,0.027316009625792503,0.0454283282160759,0.039929915219545364,0.009987340308725834,0.018513958901166916,0.01585940271615982,0.022829115390777588,0.02763398550450802,-0.04975415766239166,-0.053934477269649506,0.047218043357133865,-0.018181495368480682,-1.5920660388666898e-32,-0.04404117912054062,-0.06310602277517319,-0.049257662147283554,0.08418603986501694,0.0071309516206383705,0.011996334418654442,-0.05473239719867706,0.07540619373321533,0.0365246944129467,-0.03408881649374962,-0.006364528555423021,0.007695465814322233,0.052153609693050385,-0.06680791079998016,0.005005125887691975,0.09558916091918945,0.025104569271206856,0.07236656546592712,-0.030857566744089127,-0.004437238909304142,-0.07554911077022552,0.09117863327264786,0.006835547741502523,-0.05009074881672859,0.031195804476737976,0.0008328328258357942,0.024604296311736107,-0.029819119721651077,-0.03344697132706642,-0.014253783971071243,0.11264878511428833,0.022477198392152786,-0.024503489956259727,-0.025375615805387497,-0.04011165723204613,-0.060501862317323685,0.03308206796646118,-0.07281504571437836,-0.0005326092941686511,-0.018937116488814354,0.011298867873847485,-0.027050184085965157,0.12243974208831787,0.036871835589408875,0.048987407237291336,-0.046487487852573395,-0.09949134290218353,-0.033320434391498566,-0.06099700182676315,0.08241092413663864,0.023059627041220665,-0.07051906734704971,0.026411602273583412,0.024753674864768982,0.07530833780765533,-0.05781339108943939,-0.04098016023635864,-0.007963364943861961,-0.08695974200963974,0.028765762224793434,0.08346383273601532,-0.0055467793717980385,0.017433393746614456,-0.00027262335061095655,0.07838635891675949,-0.007907208055257797,-0.07474173605442047,0.04847213253378868,-0.024322830140590668,0.07144717872142792,0.03524480760097504,0.007824685424566269,-0.11154890805482864,0.007543298881500959,0.041134271770715714,0.009498492814600468,-0.05547868832945824,0.06147852540016174,0.04062282666563988,-0.023662438616156578,-0.03302045166492462,-0.05431520938873291,0.04535992816090584,-0.011897013522684574,0.021290628239512444,-0.02457292005419731,0.04289788752794266,0.003362801158800721,-0.00926949456334114,-0.022216107696294785,-0.024764958769083023,-0.022489488124847412,-0.018312780186533928,0.003418202977627516,0.06913672387599945,-4.958997479320715e-8,0.014006552286446095,-0.06700059771537781,-0.04359688237309456,0.012627716176211834,0.02910514920949936,-0.0875537320971489,-0.06023956835269928,0.005236927419900894,-0.006518071983009577,-0.00018799876852426678,-0.052795711904764175,0.029224829748272896,-0.044660527259111404,-0.06136352941393852,-0.008182507008314133,0.030294686555862427,0.03233003988862038,0.056165486574172974,-0.050474684685468674,-0.11415297538042068,0.01596910133957863,-0.06121218949556351,-0.004272716585546732,-0.05226944014430046,-0.03129665553569794,-0.022473400458693504,0.12567585706710815,-0.01632281206548214,0.03649759292602539,-0.06290055066347122,-0.0014365738024935126,0.007854039780795574,-0.01423854473978281,-0.09155765175819397,0.027261415496468544,0.0821419209241867,0.02436184324324131,0.0345015749335289,0.05497730150818825,0.06308642774820328,0.006156724877655506,-0.08250099420547485,0.04539652168750763,-0.009564006701111794,-0.004679383710026741,-0.08716750890016556,-0.018098436295986176,-0.006448775064200163,0.059442948549985886,-0.13288111984729767,-0.0354304313659668,0.0480799525976181,0.060558903962373734,0.01601473055779934,-0.009088829159736633,0.03585153445601463,0.05302830785512924,0.020175335928797722,-0.038496341556310654,0.010676292702555656,0.07667701691389084,0.05922968313097954,0.02277877926826477,0.05604429915547371]},{"text":"Iam satis terris nivis atque dirae Grandinis misit pater et rubente Dextera sacras iaculatus arcis Terruit urbem, Terruit gentis, grave ne rediret 5 Saeculum Pyrrhae nova monstra questae, Omne cum Proteus pecus egit altos Visere montis, Piscium et summa genus haesit ulmo, Nota quae sedes fuerat columbis, 10 Et superiecto pavidae natarunt Aequore dammae.","book":"Homage to Catalonia","chapter":1,"embedding":[-0.030110366642475128,0.05497770756483078,0.05846482142806053,-0.01964341476559639,-0.08822458237409592,-0.023321647197008133,0.013491175137460232,0.05608488991856575,0.021144408732652664,0.0870121493935585,0.04885731637477875,-0.08973687887191772,-0.03384995833039284,-0.04663964360952377,-0.1502864956855774,-0.08015365153551102,-0.025462040677666664,0.07066065073013306,0.022459419444203377,-0.026294108480215073,0.08384503424167633,0.02539721503853798,0.013970140367746353,0.050417132675647736,-0.15309546887874603,0.004921707324683666,-0.05464952439069748,-0.043464481830596924,0.04368608444929123,-0.0879146084189415,-0.04490257799625397,0.08247475326061249,0.045570556074380875,-0.008520764298737049,0.02891376055777073,0.008979544043540955,-0.056617118418216705,-0.047352634370326996,0.07451213896274567,0.03661424294114113,0.025261767208576202,-0.030362095683813095,0.01480840239673853,-0.04218665510416031,-0.033984776586294174,0.024346845224499702,-0.03894210606813431,-0.0006091473042033613,0.05320869758725166,-0.02192404866218567,-0.03915342688560486,-0.0671113058924675,-0.030287932604551315,0.028919897973537445,-0.0851445198059082,-0.035794295370578766,0.009187345393002033,-0.12632320821285248,0.02414117567241192,-0.017787368968129158,0.03274339810013771,0.062166862189769745,-0.00484251556918025,-0.0648895725607872,-0.013585355132818222,0.09630629420280457,-0.0637362077832222,-0.008824659511446953,-0.0789729654788971,0.02039741352200508,0.13440121710300446,0.021231379359960556,-0.020388280972838402,0.10236544162034988,-0.1072402149438858,0.04603705182671547,-0.03942849487066269,-0.006938584614545107,-0.0152451666072011,-0.05624271184206009,-0.07276489585638046,0.08880003541707993,0.026381393894553185,0.009208321571350098,0.018715478479862213,0.0293023232370615,0.013886269181966782,0.02696501463651657,0.001976302359253168,-0.032297950237989426,0.04276665300130844,0.006029213313013315,-0.03135405853390694,0.04167664051055908,-0.02229287289083004,0.007333569228649139,-0.009729921817779541,-0.009116840548813343,-0.005545866675674915,-0.0424124039709568,0.06887613236904144,-0.07179994881153107,0.0024925987236201763,-0.017826449126005173,-0.10570564866065979,-0.04033450409770012,-0.04185716435313225,-0.07710808515548706,0.07440130412578583,0.04803643748164177,-0.0978003740310669,-0.07593213021755219,-0.051416199654340744,-0.06593576818704605,-0.057622723281383514,-0.0074647292494773865,-0.031618908047676086,-0.05620653182268143,-0.032658401876688004,-0.058114733546972275,0.03273221477866173,0.0013481694040820003,0.024617575109004974,-0.009652268141508102,0.08212577551603317,-0.07099296152591705,-0.03285491466522217,2.5807684598715617e-32,-0.03893300145864487,-0.047478627413511276,-0.06307929754257202,0.01682204008102417,0.01654612272977829,-0.05030245706439018,-0.01635686680674553,-0.070752814412117,-0.023348139598965645,-0.03276466950774193,-0.12456337362527847,0.02157420851290226,-0.04398714378476143,0.007109937723726034,0.0328231044113636,0.0685601532459259,0.12553521990776062,-0.009694350883364677,-0.023969663307070732,-0.03205014765262604,-0.03132610023021698,0.06311874091625214,0.014534857124090195,-0.02265721559524536,0.02087448537349701,0.04779639095067978,-0.03597455844283104,-0.11472722142934799,-0.04449457675218582,0.012917029671370983,0.07511540502309799,-0.12362128496170044,0.0027338534127920866,0.03101082518696785,0.021852567791938782,0.029324980452656746,0.043627746403217316,-0.051235381513834,-0.05316028743982315,0.04566825181245804,-0.0015015766257420182,0.007733799051493406,0.07380609214305878,0.043905820697546005,0.06053711846470833,-0.001103959628380835,0.04057251289486885,0.0446048229932785,0.07908143848180771,0.004475234542042017,-0.010624131187796593,0.015737827867269516,0.033377114683389664,0.011112486012279987,-0.01503273006528616,0.018106624484062195,-0.06545712798833847,0.028950287029147148,-0.024958070367574692,0.008264834061264992,0.08374727517366409,-0.020510869100689888,-0.0474713034927845,-0.031011704355478287,-0.022183425724506378,-0.011272350326180458,-0.08040861785411835,0.038526445627212524,0.052979305386543274,0.05886830762028694,-0.07221163809299469,-0.014695056714117527,0.028327185660600662,0.030781779438257217,0.024416806176304817,0.06387428939342499,0.04838554933667183,0.029365908354520798,-0.04268500581383705,0.03493259847164154,-0.08982639014720917,0.022518405690789223,-0.06252571940422058,0.015094752423465252,0.0026979807298630476,0.0035078665241599083,0.02213691733777523,0.11149010062217712,0.05593881756067276,0.03061636909842491,0.029727961868047714,0.024661431089043617,-0.028816698119044304,-0.010173104703426361,-0.044449981302022934,-2.3897926517859818e-32,-0.05314747616648674,0.03405895084142685,-0.061612654477357864,0.0432295948266983,-0.048427045345306396,0.04234309867024422,-0.058272313326597214,0.03515004366636276,-0.035984333604574203,-0.04633351042866707,-0.07042082399129868,0.05137348175048828,0.10302875190973282,-0.06983522325754166,-0.0068375589326024055,0.03129224106669426,0.01184315700083971,0.003457129467278719,-0.007630217354744673,-0.0396684929728508,-0.09623836725950241,0.10504945367574692,-0.02211124822497368,-0.1416078507900238,-0.018341314047574997,0.011440746486186981,-0.006716559641063213,0.02813643403351307,-0.0353301540017128,-0.02583327330648899,0.06394577026367188,0.0004066986730322242,-0.05883844196796417,0.022709038108587265,-0.025803185999393463,0.036447688937187195,0.1165844276547432,-0.02155010774731636,-0.004986768122762442,-0.012895390391349792,-0.01933150924742222,0.02269381284713745,0.08669500797986984,0.023159760981798172,0.06009768694639206,-0.02685598097741604,-0.038070615381002426,0.01654859259724617,0.008489757776260376,0.04320736229419708,0.0696047991514206,0.007563203573226929,0.06347732245922089,-0.05654864385724068,0.07808822393417358,-0.10207053273916245,-0.044936709105968475,-0.03857014328241348,-0.07162561267614365,-0.026280608028173447,0.05933422967791557,-0.027673309668898582,0.014218264259397984,0.030567627400159836,0.0156757440418005,-0.035993389785289764,-0.12044743448495865,0.004307251423597336,-0.03517715260386467,0.06002351641654968,0.04198956489562988,-0.024657128378748894,-0.0791652575135231,-0.06928785890340805,0.046017445623874664,0.02254394255578518,-0.023489488288760185,0.0875411331653595,0.021560240536928177,-0.025891078636050224,-0.018213743343949318,-0.017438961192965508,0.00814417377114296,-0.05242295563220978,0.004737894982099533,-0.0021027603652328253,0.03771793469786644,0.023928582668304443,0.03470059484243393,0.0032633724622428417,-0.025120683014392853,-0.017551766708493233,0.019791729748249054,-0.016826175153255463,-0.04943245276808739,-7.336640095445546e-8,0.025993235409259796,0.007044975645840168,-0.022937163710594177,0.009605259634554386,0.015505840070545673,-0.09513844549655914,-0.032004255801439285,0.02225378528237343,0.010175037197768688,0.03960040211677551,-0.038913097232580185,0.015422171913087368,-0.01885008066892624,0.01585255190730095,0.11086001247167587,0.001313577638939023,0.030672045424580574,0.05497452989220619,-0.006910983938723803,-0.026798848062753677,0.008697743527591228,-0.012511443346738815,-0.10348566621541977,-0.02506347745656967,-0.0549662783741951,-0.03855676203966141,0.12330297380685806,-0.13724587857723236,-0.06556340306997299,0.007423157338052988,0.01916559785604477,0.06169738247990608,-0.022306326776742935,-0.056600421667099,0.11945612728595734,0.05392100661993027,-0.04270695149898529,0.07656282931566238,0.06338819861412048,0.02430403046309948,0.03985866904258728,0.046466801315546036,0.043055448681116104,-0.01497633010149002,0.026446476578712463,-0.03259599208831787,0.030429154634475708,-0.05311368778347969,0.03759599104523659,-0.0561479814350605,-0.04576055705547333,0.03822626173496246,0.03741678595542908,0.01978624239563942,-0.029606018215417862,-0.014842787757515907,0.07840050011873245,-0.0357830710709095,0.013020165264606476,0.05273545905947685,0.025121362879872322,-0.0012558940798044205,0.031043369323015213,0.03958575427532196]},{"text":"Quem vocet divum populus ruentis 25 Imperi rebus?","book":"Homage to Catalonia","chapter":1,"embedding":[-0.032623644918203354,0.02448764257133007,-0.037266697734594345,-0.03530825674533844,-0.07477100193500519,-0.0413232147693634,0.1141299232840538,0.05889485031366348,0.04818553104996681,-0.02236034721136093,0.1287667602300644,-0.046179208904504776,0.0007250445778481662,-0.07630042731761932,-0.07187096774578094,-0.06575040519237518,-0.02766280248761177,0.07437721639871597,0.03283178433775902,0.020004024729132652,0.016893992200493813,-0.05558063089847565,-0.04497567564249039,0.02841567061841488,-0.05159277096390724,0.031214585527777672,0.0035823131911456585,0.0743311271071434,0.043407320976257324,-0.06449272483587265,0.1051158532500267,0.0987207368016243,0.008387398906052113,-0.03905594348907471,-0.08201608806848526,-0.012352325022220612,0.029270464554429054,-0.08288267999887466,0.06199626624584198,0.08319966495037079,-0.0436839833855629,-0.028410786762833595,-0.07327287644147873,-0.026868563145399094,0.08605419844388962,0.02148650959134102,-0.03990790247917175,0.0925862193107605,-0.005356302950531244,0.007633407600224018,-0.07506342232227325,-0.018811700865626335,-0.026536982506513596,-0.019441256299614906,0.006777255795896053,-0.060240112245082855,0.030329396948218346,0.03536529839038849,0.07363720238208771,-0.054570071399211884,0.025610048323869705,0.032387007027864456,-0.02202623151242733,0.00637727091088891,-0.08059297502040863,0.03652162477374077,-0.02027128078043461,0.016542082652449608,-0.03908717259764671,0.020044997334480286,0.09311363101005554,-0.08323097229003906,-0.03503374010324478,-0.03107503615319729,-0.08260875195264816,0.03810111805796623,-0.05295448750257492,-0.012193260714411736,-0.06430176645517349,-0.0897826999425888,0.01672489009797573,-0.032918140292167664,-0.048396095633506775,-0.04074427857995033,0.025472348555922508,-0.022318914532661438,0.03959383815526962,0.014703829772770405,0.07342834770679474,-0.05824102833867073,0.05018481984734535,0.025866424664855003,-0.13075755536556244,-0.009508064948022366,0.06502542644739151,0.02857334166765213,-0.027871308848261833,-0.10037969052791595,-0.024054763838648796,0.0239398330450058,0.04285180941224098,0.043726805597543716,0.02843399904668331,0.0520017109811306,-0.17136017978191376,-0.006508848164230585,0.02826157584786415,0.0011591404909268022,0.06773826479911804,0.038330283015966415,-0.053379230201244354,-0.09239686280488968,-0.01068467553704977,-0.09562656283378601,0.0377446711063385,-0.04133962094783783,-0.03643782064318657,-0.05842689424753189,0.022927245125174522,-0.08928719907999039,0.022501034662127495,0.018117275089025497,-0.06674864888191223,-0.01881580427289009,0.04358042776584625,-0.041451238095760345,0.0066790650598704815,3.096804602410792e-33,-0.08458366245031357,-0.00818742997944355,-0.0854223296046257,0.10206051915884018,0.023997168987989426,0.021042272448539734,-0.04300840198993683,-0.05218922719359398,0.008314392529428005,-0.019690582528710365,-0.01742851734161377,-0.0871972143650055,-0.0236049871891737,-0.055054012686014175,0.028295928612351418,0.03725634887814522,0.061564892530441284,-0.030848056077957153,-0.010942882858216763,-0.021382305771112442,-0.053170643746852875,0.06483496725559235,0.0032420053612440825,-0.046964846551418304,0.08746127784252167,-0.0317748486995697,-0.008693204261362553,-0.056543707847595215,0.004773858934640884,0.04795846343040466,0.04692395403981209,0.022426629438996315,0.01668291538953781,-0.022607747465372086,-0.008750984445214272,0.020090537145733833,-0.006554859224706888,-0.022266190499067307,-0.06550741195678711,-0.024003872647881508,0.008530359715223312,-0.012136665172874928,0.013225075788795948,0.04007833078503609,0.07556013762950897,0.05104915425181389,0.043421581387519836,0.06147975102066994,0.14104299247264862,-0.0519489087164402,-0.03459673747420311,-0.008324055932462215,-0.1186794862151146,-0.020871073007583618,0.029906244948506355,0.037278659641742706,-0.14259643852710724,0.07042181491851807,-0.0033924346789717674,-0.04433664306998253,0.029734866693615913,0.0637119859457016,-0.006707961671054363,-0.03288731351494789,0.02847735770046711,-0.0290851891040802,-0.026022301986813545,0.060304418206214905,0.1041521355509758,0.05962888523936272,-0.044584985822439194,-0.04081714153289795,0.009596374817192554,0.019071059301495552,-0.03191925585269928,0.049726154655218124,0.03422040119767189,0.013773064129054546,-0.019287537783384323,0.005695920437574387,-0.08052193373441696,-0.0707961767911911,0.04210891202092171,-0.01774393580853939,0.1375247687101364,0.04649268090724945,-0.001584380865097046,-0.016985924914479256,0.03621037304401398,0.050505172461271286,-0.002848724601790309,-0.008490456268191338,-0.011510823853313923,0.03590760380029678,-0.01966288313269615,-3.306733567130252e-33,-0.0890566036105156,0.017146669328212738,-0.02567269839346409,0.11079875379800797,-0.07065045833587646,-0.01274143997579813,-0.02877315878868103,0.05292120575904846,-0.04971611127257347,-0.05095858499407768,-0.08688949048519135,-0.06248089298605919,0.07089275866746902,-0.020449772477149963,-0.029965773224830627,0.0631757602095604,0.031157832592725754,-0.010121769271790981,-0.05718039348721504,-0.023280438035726547,-0.05658911168575287,0.015550223179161549,0.04771307110786438,0.03498278185725212,-0.01077270694077015,0.09395864605903625,0.0257952269166708,-0.054272543638944626,-0.048644039779901505,-0.04927396774291992,0.05546073615550995,-0.047675929963588715,-0.016418203711509705,0.022535664960741997,-0.045445676892995834,0.02088908664882183,0.1025506854057312,0.037690818309783936,-0.02907545305788517,0.009618288837373257,-0.08361806720495224,0.01813335157930851,0.02728082798421383,-0.008238703943789005,-0.06307439506053925,-0.0467822328209877,0.04422411695122719,-0.023564724251627922,0.023109732195734978,-0.038415711373090744,0.08538057655096054,0.04196079820394516,0.02426103875041008,0.05279374495148659,0.05649159103631973,-0.06319089233875275,-0.01884653978049755,-0.004500023555010557,-0.05874929204583168,-0.029275061562657356,0.0865253433585167,0.031594399362802505,0.022107400000095367,0.006347749847918749,0.10724882036447525,0.020450128242373466,-0.05171159654855728,0.06398715078830719,0.04302098974585533,-0.000602354237344116,0.043981730937957764,-0.026186740025877953,-0.04864562675356865,-0.06136807054281235,-0.03676320239901543,0.0861145406961441,0.019580988213419914,0.017479276284575462,0.009687383659183979,0.018626349046826363,0.008021281100809574,-0.03662259504199028,-0.0964902862906456,0.01625783182680607,-0.09846537560224533,-0.06461498886346817,0.0006472559762187302,-0.006823745556175709,0.09683552384376526,0.010123440064489841,0.037095580250024796,0.031783849000930786,0.001356368069536984,-0.07114138454198837,0.05130135267972946,-2.2728777082647866e-8,-0.03995412588119507,-0.011312362737953663,0.002639998449012637,0.015910904854536057,0.07152111828327179,-0.07131090015172958,-0.005711756646633148,0.013244249857962132,-0.09758596122264862,0.040034543722867966,0.012359499000012875,-0.05604451522231102,-0.05829676613211632,0.03862771391868591,0.020974688231945038,0.03721204772591591,0.007506509777158499,0.05499506741762161,-0.024601038545370102,-0.05675622448325157,0.09769129753112793,-0.01760578528046608,-0.005383104085922241,-0.021140145137906075,-0.04194587841629982,-0.04616953060030937,0.0179189033806324,-0.0425158329308033,0.008687932044267654,-0.0033776985947042704,0.002238907152786851,0.0293904859572649,0.005181537941098213,-0.035424232482910156,-0.027868514880537987,0.04787979647517204,0.015919361263513565,0.0711681917309761,-0.03151500225067139,-0.009964960627257824,0.06276889890432358,0.013256083242595196,0.061956651508808136,0.027035461738705635,-0.016058309003710747,-0.06432537734508514,-0.023514656350016594,0.011328700929880142,0.029357245191931725,-0.012605496682226658,-0.06514592468738556,0.05939386785030365,0.09760875999927521,0.10458765923976898,0.006058222148567438,-0.011550876311957836,0.036512382328510284,0.04536086693406105,-0.024913068860769272,0.021982207894325256,0.036020852625370026,0.0449695959687233,0.07282620668411255,0.01599213294684887]},{"text":"Cui dabit partis scelus expiandi Iuppiter?","book":"Homage to Catalonia","chapter":1,"embedding":[-0.041840001940727234,0.0601927787065506,-0.018031027168035507,-0.026956362649798393,-0.07535889744758606,-0.018102971836924553,0.08980388194322586,0.074399933218956,0.041517794132232666,-0.01429654099047184,0.047014832496643066,-0.058607470244169235,0.012052753008902073,-0.07444591075181961,-0.035217445343732834,-0.15246261656284332,-0.011634701862931252,0.04620027169585228,-0.014556542038917542,0.04342171922326088,-0.00045562360901385546,0.03484809398651123,-0.052120715379714966,0.02195802889764309,-0.0455242358148098,0.05666229501366615,-0.0025433748960494995,-0.0614858940243721,0.03151289001107216,-0.003851289162412286,0.09830918163061142,0.1071249470114708,0.024399254471063614,-0.0756637454032898,0.03610873967409134,0.010900665074586868,0.05084589496254921,0.021984495222568512,0.08738384395837784,0.010902734473347664,-0.04508822038769722,-0.05272799730300903,-0.07073187083005905,-0.08523532748222351,0.01358972117304802,0.00753773981705308,-0.015194587409496307,0.14316385984420776,0.044361624866724014,-0.05748668685555458,-0.06186696141958237,-0.05186513811349869,0.032790038734674454,0.04448316991329193,0.00758690619841218,-0.021574804559350014,0.01326384861022234,-0.040887925773859024,-0.045395977795124054,-0.06294948607683182,-0.02141389437019825,0.054592717438936234,-0.008149417117238045,0.07264864444732666,0.05377325043082237,-0.01923137530684471,-0.02943514660000801,-0.07847760617733002,-0.04284390062093735,0.10349953174591064,0.08530718833208084,-0.039879199117422104,-0.026864880695939064,0.024636423215270042,-0.03636942058801651,0.028088927268981934,0.07863406836986542,-0.018105873838067055,0.08648670464754105,-0.025703096762299538,-0.030390271916985512,0.0271841399371624,-0.00875885784626007,-0.013479860499501228,0.001328468439169228,-0.06367702037096024,0.018721502274274826,-0.02562171034514904,0.030088219791650772,-0.026598921045660973,0.012573101557791233,0.0025357503909617662,-0.004035191610455513,-0.05935455113649368,0.0942172184586525,-0.023700930178165436,-0.0038109086453914642,0.017763208597898483,-0.030021773651242256,0.04742097482085228,0.009516159072518349,-0.01666509546339512,0.02381419762969017,0.05331835150718689,-0.13649073243141174,-0.059188369661569595,0.012466649524867535,-0.10623271018266678,0.04865170642733574,0.052993737161159515,-0.06965368241071701,-0.10753674805164337,-0.015255225822329521,-0.10111519694328308,-0.02477828599512577,0.009378347545862198,0.00567474914714694,-0.052710529416799545,0.01444548461586237,-0.07158150523900986,0.01926535740494728,0.011966106481850147,-0.07011938095092773,0.03650038689374924,0.033629775047302246,-0.11999422311782837,0.049384504556655884,1.586948781349774e-33,-0.0769873559474945,-0.132282555103302,-0.005982016213238239,-0.02048889733850956,0.04036463424563408,-0.005009827669709921,-0.07739588618278503,-0.007019407581537962,0.031073464080691338,-0.041138846427202225,-0.03917861729860306,-0.026863830164074898,-0.03496981039643288,0.06315995007753372,0.08039288967847824,0.02053055725991726,-0.02066694386303425,0.03953074291348457,0.004458148498088121,0.00418963935226202,0.00010939922503894195,-0.04309525340795517,0.029727863147854805,0.03772770240902901,-0.022046998143196106,0.006995036266744137,-0.026232333853840828,-0.058426469564437866,-0.027995970100164413,0.0550297349691391,0.1228015273809433,0.021144017577171326,-0.03716133162379265,-0.029974503442645073,-0.08456304669380188,-0.02371928095817566,-0.005312636494636536,0.024500282481312752,-0.028871603310108185,-0.0029842136427760124,0.03138701245188713,0.03455404192209244,0.07621167600154877,-0.01946854032576084,0.030770987272262573,-0.010295205749571323,-0.03707950934767723,-0.01065477542579174,0.03200161084532738,0.017775297164916992,0.02243092842400074,0.01332797296345234,0.018515940755605698,-0.019543442875146866,-0.0013370185624808073,0.06145672872662544,-0.0224814061075449,0.06457541137933731,-0.011187750846147537,-0.024484654888510704,-0.023667940869927406,0.03451473265886307,0.04904145374894142,0.01011992059648037,0.0064283451065421104,0.03900899365544319,0.013422523625195026,0.006677546072751284,0.029699664562940598,0.016301648691296577,-0.17494001984596252,0.027929285541176796,-0.013462658040225506,0.07461373507976532,-0.0808606743812561,0.012761273421347141,0.034721534699201584,0.009255020879209042,-0.05210383981466293,-0.004719668533653021,-0.05288628116250038,-0.011583998799324036,0.04035140201449394,0.019132032990455627,0.13004760444164276,-0.0009168310207314789,-0.04944957420229912,0.005468922201544046,0.02494005113840103,0.007889307104051113,-0.019920742139220238,-0.0211004801094532,0.015301135368645191,0.03431973606348038,0.043224044144153595,-4.3146538514031295e-33,0.010651431046426296,-0.06909096240997314,0.006335866637527943,0.006552604492753744,-0.08294625580310822,0.035459235310554504,-0.04840904101729393,0.07332883030176163,0.03464910015463829,0.012423796579241753,-0.06936661899089813,-0.015409201383590698,0.08140964806079865,0.019182879477739334,-0.04925379529595375,0.08490413427352905,0.07103199511766434,0.07569744437932968,-0.003949648700654507,-0.027335338294506073,0.023435521870851517,0.001454899087548256,0.051273517310619354,-0.07988730818033218,-0.027391895651817322,-0.04095160588622093,0.05054909363389015,-0.029004685580730438,-0.0938805639743805,-0.051815811544656754,0.05753060802817345,-0.03018338233232498,-0.11643307656049728,0.03984420746564865,-0.05400684475898743,-0.016513774171471596,0.02248220331966877,-0.010210883803665638,-0.04288608953356743,-0.029605699703097343,0.027253665030002594,0.025169430300593376,0.05728447064757347,0.06614688038825989,0.02482484094798565,-0.08005265146493912,-0.023051854223012924,-0.015031877905130386,-0.047672729939222336,-0.0052489242516458035,0.044786639511585236,-0.0018571591936051846,0.012149271555244923,0.014652598649263382,0.08838318288326263,-0.0016055851010605693,0.023067450150847435,-0.07138219475746155,-0.10539320856332779,0.01008518971502781,0.0990019142627716,0.10045716911554337,-0.04768957197666168,-0.019182464107871056,0.05126205086708069,-0.01624321937561035,-0.13207441568374634,0.057941365987062454,0.07204519957304001,-0.016349071636795998,0.09018875658512115,-0.09066904336214066,-0.09925886243581772,0.018296467140316963,0.0035988797899335623,0.07072769105434418,-0.03218147158622742,0.0596267506480217,0.005972538609057665,0.05153879523277283,-0.07315071672201157,-0.09897667169570923,0.024657052010297775,0.01077987439930439,-0.008840706199407578,-0.034602440893650055,0.01546046044677496,-0.04014953225851059,0.025625165551900864,-0.035729050636291504,-0.014612416736781597,0.03571006655693054,0.03924623876810074,-0.02659536339342594,0.021399397403001785,-2.305086255205424e-8,0.026866383850574493,-0.06360121071338654,-0.012796511873602867,-0.0316009484231472,0.05253886058926582,-0.11212091147899628,-0.048049166798591614,-0.03018202632665634,-0.040882982313632965,-0.04441757872700691,0.018485194072127342,-0.0626554861664772,0.04055752605199814,-0.029203571379184723,0.012723960913717747,0.0403592474758625,0.06251852214336395,0.0058777001686394215,-0.04977845028042793,-0.06693397462368011,0.08035029470920563,-0.06197693571448326,0.010527419857680798,-0.008120172657072544,0.01118472870439291,-0.0031137161422520876,0.02240772545337677,0.011150497011840343,-0.034129127860069275,0.00419203843921423,-0.011693348176777363,0.05461680144071579,-0.0097789466381073,-0.05759158357977867,0.024888070300221443,0.003967380616813898,0.029898766428232193,0.01638321951031685,-0.004135931376367807,-0.011350247077643871,0.09465480595827103,-0.013446387834846973,0.12202579528093338,-0.005393736995756626,0.030205251649022102,0.01271935272961855,-0.02433399111032486,0.03397863730788231,-0.0003472593380138278,-0.038557447493076324,-0.12607687711715698,0.07189333438873291,0.0660579577088356,0.09873758256435394,-0.002749129431322217,-0.033395808190107346,0.010473345406353474,-0.005313861183822155,-0.051931437104940414,0.010038156062364578,0.12930931150913239,0.09243427217006683,-0.031778715550899506,0.0077797179110348225]},{"text":"Illi robur et aes triplex Circa pectus erat, qui fragilem truci 10 Commisit pelago ratem Primus, nec timuit praecipitem Africum Decertantem Aquilonibus Nec tristis Hyadas nec rabiem Noti, Quo non arbiter Hadriae 15 Maior, tollere seu ponere volt freta.","book":"Homage to Catalonia","chapter":2,"embedding":[-0.023891553282737732,0.09916695207357407,-0.029640328139066696,-0.05924219638109207,-0.11434858292341232,-0.024207375943660736,0.02517443522810936,0.09625677019357681,0.001002472941763699,0.042651139199733734,0.04812460392713547,-0.1493680775165558,0.02046089991927147,-0.0032760275062173605,-0.02673324942588806,-0.11447544395923615,-0.0746631920337677,0.06587354093790054,0.0017530227778479457,0.029453912749886513,0.0500941127538681,-0.005484156776219606,0.01866581104695797,0.005667536985129118,-0.10735329985618591,0.05139515921473503,-0.04860168695449829,-0.007096812594681978,0.0469822883605957,-0.10975686460733414,-0.025458548218011856,0.11373857408761978,0.04414672031998634,-0.04910588264465332,0.007735914550721645,0.008894558995962143,-0.06058574467897415,-0.06626608967781067,0.031642090529203415,0.028020525351166725,-0.029963117092847824,-0.0024963838513940573,-0.04118916019797325,-0.0872945636510849,-0.05857722461223602,-0.019378656521439552,-0.0009425865719094872,0.07527196407318115,0.0010377649450674653,0.03544837236404419,-0.04054906964302063,-0.022492488846182823,0.062489885836839676,0.01648605242371559,-0.021446092054247856,-0.011475860141217709,-0.009112698957324028,-0.052933644503355026,-0.03427216038107872,-0.12227871268987656,0.0005960539565421641,0.11549944430589676,-0.06859350949525833,0.004249610006809235,-0.017522018402814865,0.019396523013710976,-0.010002953931689262,-0.07281292229890823,-0.07947345823049545,0.06909149885177612,0.0974661260843277,-0.10531958937644958,-0.08226874470710754,0.00582281406968832,-0.028887398540973663,0.0661376565694809,0.041006870567798615,-0.03165547922253609,-0.006261603906750679,-0.048599254339933395,0.004981671459972858,-0.03301709517836571,0.025176072493195534,-0.010128814727067947,0.02502538450062275,-0.015134988352656364,0.006894041318446398,-0.006204524077475071,0.05548758804798126,-0.011011246591806412,0.04920549690723419,0.08233403414487839,-0.004882281646132469,-0.007671792060136795,0.10061781108379364,0.05877562239766121,-0.03707278147339821,0.07356047630310059,-0.07326988130807877,0.017617259174585342,0.014064599759876728,-0.046703092753887177,-0.007110552862286568,0.10140695422887802,-0.03583090007305145,-0.019674072042107582,0.02114161103963852,-0.12216565757989883,0.024609031155705452,0.03727559372782707,-0.05876315385103226,-0.03183816373348236,-0.004214183893054724,-0.11445632576942444,0.025394253432750702,0.05726620554924011,-0.053761836141347885,-0.10533412545919418,0.04875616356730461,-0.07301389425992966,0.029281770810484886,-0.05468373745679855,-0.010995695367455482,-0.01507153082638979,0.0927310436964035,-0.05911903828382492,0.03511335328221321,2.052498947623324e-32,-0.04638722166419029,-0.025582680478692055,-0.032691892236471176,-0.03452914208173752,0.01507030799984932,0.009660277515649796,-0.06641902774572372,0.005404393654316664,0.04715418443083763,-0.10550013929605484,-0.1049787700176239,-0.008408891968429089,-0.01939011923968792,0.022550685331225395,-0.03206702694296837,-0.02219987101852894,0.11096543073654175,-0.03162553161382675,0.043239034712314606,-0.034573521465063095,0.013158637098968029,0.00581028126180172,0.027624761685729027,0.04881072789430618,0.05950964242219925,0.039014559239149094,0.02372610755264759,-0.05521319806575775,0.018249932676553726,0.030452342703938484,0.11162412166595459,-0.03950472176074982,-0.02007444016635418,-0.02004694566130638,-0.03196485713124275,0.03745102137327194,0.008105029352009296,0.027780160307884216,-0.06328748166561127,0.01751605235040188,0.009454033337533474,-0.024716807529330254,0.10860207676887512,-0.024495882913470268,0.046537790447473526,-0.012991037219762802,0.004516050685197115,-0.021025946363806725,0.06619158387184143,0.0440690815448761,-0.01356279756873846,0.021039100363850594,-0.09882927685976028,-0.04693630337715149,-0.02886844053864479,0.009570902213454247,-0.06409979611635208,0.05504528060555458,-0.06412381678819656,-0.04019689932465553,0.06352756172418594,-0.006838614586740732,0.04668432101607323,0.012637082487344742,0.010303848423063755,0.04736971855163574,-0.04437118396162987,-0.02493436075747013,0.10818181186914444,0.05807852745056152,-0.10067595541477203,-0.06245756521821022,0.03695439547300339,0.008045076392591,0.03310597687959671,0.056503843516111374,0.028678743168711662,-0.02270866371691227,0.004451305139809847,-0.01733594946563244,-0.09704955667257309,0.0010225997539237142,0.025463223457336426,0.006592327728867531,0.08864860236644745,-0.027897894382476807,0.010756523348391056,0.028248542919754982,0.10983078181743622,0.026116369292140007,0.0636323094367981,0.03945399075746536,-0.0066908178851008415,0.023574640974402428,-0.021579226478934288,-1.9303540643133494e-32,0.00956854410469532,-0.04718711972236633,-0.04703151434659958,0.10247036814689636,-0.017283473163843155,0.015930769965052605,-0.12352251261472702,0.10593967884778976,0.01861884631216526,-0.06300191581249237,-0.03763650357723236,0.027542278170585632,0.04048904404044151,-0.09945270419120789,0.050073929131031036,0.06620587408542633,0.0853654146194458,0.01724158227443695,-0.060215432196855545,-0.005803927779197693,0.055260587483644485,-0.03709365054965019,-0.02810906060039997,0.0003910968662239611,-0.008700505830347538,0.023622293025255203,0.08069755136966705,-0.08485636860132217,-0.023606622591614723,-0.005716123152524233,-0.030314505100250244,-0.01512117963284254,0.015256166458129883,0.10397641360759735,-0.009931999258697033,0.01366177573800087,0.09533961862325668,0.02756050042808056,-0.08002869784832001,-0.002453738823533058,-0.04339155554771423,0.06747204810380936,0.04701098054647446,0.05506385490298271,0.026816578581929207,-0.016767557710409164,-0.015924429520964622,-0.0497615747153759,-0.025343453511595726,-0.018019646406173706,0.10496658831834793,-0.05134958401322365,0.07551593333482742,-0.0348331592977047,0.0774664431810379,-0.04144996404647827,-0.019711660221219063,-0.05923372507095337,0.005822591483592987,-0.018721280619502068,0.06539392471313477,0.03314443305134773,-0.02167450822889805,-0.02131829969584942,0.054353661835193634,0.0028864459600299597,-0.10783903300762177,0.021416014060378075,-0.05630333721637726,0.08281280845403671,0.07502438127994537,-0.03241170570254326,-0.1263817548751831,-0.030457379296422005,-0.03104150854051113,0.01489162351936102,-0.01547789853066206,0.02106734737753868,-0.012568688951432705,0.026630541309714317,-0.007394093554466963,-0.007404993288218975,-0.07456672936677933,0.011865109205245972,-0.05710110440850258,-0.03485323116183281,0.019973861053586006,0.019268501549959183,0.017760543152689934,-0.05052327737212181,-0.040674615651369095,0.017156261950731277,0.009217952378094196,0.0022113637533038855,0.008170771412551403,-6.205713987128547e-8,0.007311464753001928,-0.034743379801511765,-0.08518561720848083,0.04977335408329964,0.06246810778975487,-0.06658554077148438,-0.04727768898010254,-0.07393607497215271,0.012520777061581612,0.056224990636110306,0.026093076914548874,-0.04668312892317772,-0.005221075378358364,-0.02252073958516121,0.0568489208817482,0.02495037391781807,0.018658241257071495,-0.00011037754302378744,-0.060516029596328735,-0.09758485853672028,0.023318344727158546,0.009994981810450554,-0.018603526055812836,-0.026418613269925117,-0.0032152074854820967,0.06251227110624313,0.03324223682284355,-0.06570490449666977,-0.02258388325572014,0.06209075078368187,-0.027584856376051903,0.04836767539381981,-0.020703526213765144,-0.07134221494197845,-0.05575099587440491,0.021786022931337357,0.015436811372637749,-0.0008747297106310725,-0.012632736004889011,-0.027212483808398247,0.041877616196870804,0.013047648593783379,0.03285745903849602,-0.03411398455500603,0.022262196987867355,-0.044165052473545074,-0.006216538604348898,-0.047956909984350204,0.0067001646384596825,-0.07075390219688416,-0.03540080040693283,0.041217416524887085,0.07686682045459747,0.04567163065075874,-0.07188405096530914,-0.019739024341106415,0.02625375986099243,0.003416454652324319,-0.009180566295981407,0.0035539143718779087,0.09061182290315628,0.021389929577708244,0.000011886636457347777,0.03130384162068367]},{"text":"Audax omnia perpeti 25 Gens humana ruit per vetitum nefas.","book":"Homage to Catalonia","chapter":2,"embedding":[-0.0058364225551486015,0.12459791451692581,-0.1140671968460083,-0.009332917630672455,-0.11678265035152435,-0.006012503523379564,0.03825613856315613,0.015394316986203194,-0.024403827264904976,0.04388831928372383,0.0710715726017952,-0.09050211310386658,-0.01648016646504402,0.019287273287773132,-0.07851286232471466,-0.06497592478990555,-0.057551685720682144,0.06418641656637192,0.012260152027010918,0.04448936879634857,-0.03625074028968811,0.0027385607827454805,-0.0007428720709867775,0.011211869306862354,-0.08616510778665543,0.0553300604224205,-0.05946078523993492,-0.08725223690271378,0.04391346499323845,-0.05238786339759827,0.06106989458203316,0.07416338473558426,0.06412937492132187,-0.0595661923289299,-0.03658362105488777,-0.029123147949576378,-0.05322454124689102,-0.0021726959384977818,0.019858842715620995,0.05271665006875992,0.0037861214950680733,-0.0795440822839737,-0.100384421646595,-0.010126822628080845,0.028705932199954987,-0.046137258410453796,-0.08308679610490799,-0.01351085864007473,0.08637567609548569,-0.011950023472309113,-0.06903180480003357,-0.04839826375246048,0.009511607699096203,0.004495671484619379,-0.050300151109695435,-0.10480441153049469,0.02118152193725109,-0.03857338801026344,-0.024747341871261597,-0.07896091789007187,0.05384569615125656,0.02369631640613079,-0.031683579087257385,-0.012130828574299812,0.05725996941328049,-0.005755880381911993,-0.0008578515844419599,-0.06769510358572006,-0.04051854461431503,0.036792393773794174,0.07514013350009918,-0.05956363305449486,0.03262056037783623,0.05591156706213951,-0.08548955619335175,0.059281475841999054,0.03412012383341789,0.015322917141020298,0.07083252817392349,-0.05683765932917595,0.03099069371819496,0.03594798222184181,0.005516900680959225,0.015698282048106194,0.008786060847342014,0.03228584676980972,0.05523980036377907,-0.04297889024019241,-0.0015254089375957847,-0.0058985622599720955,-0.03710581734776497,-0.0012183875078335404,0.054019421339035034,-0.0452154241502285,0.07381407171487808,-0.0027059013955295086,-0.04683171212673187,-0.010529088787734509,0.05010782182216644,0.006385038141161203,-0.013821677304804325,-0.014192831702530384,-0.04234620928764343,0.08177191764116287,-0.12114915996789932,0.004404712934046984,-0.052265316247940063,-0.08102810382843018,0.01143008191138506,0.055240828543901443,-0.054209042340517044,-0.013864726759493351,-0.06256919354200363,-0.005167524330317974,0.032016560435295105,0.058160629123449326,0.02686118893325329,-0.026240359991788864,0.024062778800725937,-0.03893860802054405,0.019089475274086,-0.07674279063940048,-0.014856302179396152,-0.010759090073406696,0.12301544100046158,-0.05594703555107117,0.04101469740271568,5.3601410984183644e-33,-0.10353169590234756,-0.09523756802082062,-0.0503188855946064,0.06116226688027382,0.022872472181916237,-0.002929885406047106,-0.04426677152514458,-0.05312648415565491,0.002842466812580824,-0.07299456745386124,-0.1281345933675766,-0.01566140353679657,-0.0007370694074779749,0.046581123024225235,0.005987109150737524,0.03513040766119957,0.04272593557834625,-0.021783603355288506,-0.02216959372162819,0.08484084904193878,0.06559441983699799,0.03704870119690895,0.023829132318496704,-0.01224882435053587,0.054570525884628296,-0.029747888445854187,0.0029343594796955585,-0.07855497300624847,-0.037398066371679306,0.023375656455755234,0.04008077457547188,-0.009123069234192371,-0.04652830958366394,0.003935502842068672,-0.04968004673719406,0.012665728107094765,0.051601726561784744,0.0036619212478399277,-0.07889435440301895,-0.03359890356659889,0.04847007244825363,0.08102280646562576,0.08701272308826447,-0.036077868193387985,0.09995799511671066,0.033161602914333344,0.03414219617843628,0.049619145691394806,-0.015504508279263973,0.12449084967374802,-0.08205576241016388,0.08147365599870682,-0.06312568485736847,-0.03815323859453201,-0.020865898579359055,0.016920804977416992,-0.017836568877100945,0.07736608386039734,-0.034371983259916306,0.02423049695789814,0.013018476776778698,0.05039854347705841,0.028691131621599197,-0.01706019602715969,0.053613800555467606,-0.06944427639245987,0.018156129866838455,0.01452757976949215,0.04409760609269142,0.026638822630047798,-0.07600659877061844,-0.0034035237040370703,0.021346909925341606,-0.00043473034747876227,-0.11324984580278397,0.009528758935630322,0.0722930058836937,0.005481106229126453,-0.03684181720018387,-0.028652116656303406,-0.063303142786026,0.09284663945436478,0.0017768684774637222,-0.02691945619881153,0.1219477429986,0.018294019624590874,-0.012821953743696213,0.008857768960297108,0.0057785422541201115,-0.01695038564503193,0.11341391503810883,-0.02477143704891205,-0.005478343926370144,0.030205013230443,-0.01199643686413765,-6.329387618549189e-33,-0.033149849623441696,-0.0301357414573431,-0.05179167538881302,0.0884699746966362,0.05132545158267021,0.03617961332201958,-0.0218253955245018,0.09254717826843262,0.016345717012882233,0.050666045397520065,0.0004638713435269892,0.010003583505749702,0.0869148001074791,0.0656123012304306,-0.03276732936501503,0.03133932128548622,0.03918536379933357,0.024837585166096687,-0.05447206273674965,-0.04396149143576622,-0.057732269167900085,0.1052384227514267,-0.030507976189255714,0.06343048065900803,0.047186337411403656,0.021591337397694588,0.09485522657632828,-0.060815200209617615,-0.11120352149009705,-0.10198871046304703,0.028450900688767433,-0.0031730937771499157,-0.09353072941303253,0.005513624753803015,0.059229835867881775,-0.06700307130813599,0.1175902858376503,0.03784771263599396,-0.018896758556365967,-0.045395590364933014,0.004239847883582115,0.09025593847036362,-0.07642897218465805,-0.002545699942857027,-0.04445498436689377,-0.031392160803079605,-0.09418326616287231,0.012002493254840374,-0.026246799156069756,-0.03516605123877525,0.10020524263381958,-0.03364654630422592,0.025771697983145714,-0.044936638325452805,0.04111987724900246,-0.04323720932006836,0.07114974409341812,-0.0019247463205829263,-0.007001969963312149,0.10886888951063156,0.06578965485095978,0.06296873092651367,0.015600535087287426,0.04863448813557625,-0.028146248310804367,-0.049081843346357346,-0.06268459558486938,0.049096446484327316,-0.025015346705913544,0.03350546583533287,0.05879094824194908,-0.03421860560774803,-0.09064994007349014,-0.0035607763566076756,-0.04419410601258278,-0.01919598877429962,0.02079249732196331,0.004930644296109676,0.0786171406507492,0.00250809034332633,-0.002177916467189789,-0.09974750131368637,-0.016770999878644943,0.014085457660257816,-0.03430963307619095,-0.02359243668615818,0.026990210637450218,0.020630722865462303,0.027314970269799232,0.03115321695804596,-0.00657312385737896,-0.029709529131650925,-0.04479290172457695,-0.04961882159113884,0.010166408494114876,-2.615616701007184e-8,0.013634211383759975,-0.0489867627620697,-0.029231589287519455,0.057786550372838974,0.034678973257541656,-0.039460718631744385,-0.05243384838104248,-0.007874570786952972,-0.013712238520383835,0.0446755513548851,0.014128820039331913,-0.011523287743330002,-0.04797694459557533,0.03483375534415245,0.048990398645401,0.048593200743198395,0.050761427730321884,0.09644576907157898,-0.02058030292391777,-0.043960344046354294,0.0491817332804203,0.0072141969576478004,-0.07101469486951828,-0.01316801831126213,0.004736397415399551,-0.08067454397678375,0.03753972798585892,-0.008644688874483109,0.006917389575392008,-0.04208776727318764,-0.010627299547195435,0.024490509182214737,-0.04792509227991104,-0.029064461588859558,-0.025127729400992393,0.029529565945267677,0.08479160070419312,0.030004246160387993,-0.012242499738931656,-0.007258161436766386,0.008662361651659012,-0.005093665327876806,0.07256949692964554,-0.053602587431669235,-0.025411901995539665,0.005734321195632219,-0.04952403903007507,-0.05500759184360504,-0.02328501269221306,-0.08872195333242416,-0.03251055255532265,-0.011817471124231815,0.05016351491212845,0.06266862154006958,-0.06017402932047844,0.015581010840833187,0.019796248525381088,-0.04950886592268944,0.02328847162425518,0.02126871980726719,0.08605778217315674,0.0028355130925774574,0.052625492215156555,0.049359116703271866]},{"text":"Post ignem aetheria domo Subductum macies et nova febrium 30 Terris incubuit cohors, Semotique prius tarda necessitas Leti corripuit gradum.","book":"Homage to Catalonia","chapter":2,"embedding":[0.025678472593426704,0.028756216168403625,0.03216896578669548,0.007193445228040218,-0.05304482951760292,-0.0034853180404752493,-0.07450897246599197,-0.008868091739714146,0.02708454243838787,0.04770210012793541,0.07357201725244522,-0.11523410677909851,-0.04492747038602829,-0.0412362776696682,-0.03393997251987457,-0.03631221130490303,-0.013791664503514767,0.032496675848960876,-0.006767439655959606,-0.05756675451993942,0.08219890296459198,-0.019893048331141472,-0.030692780390381813,0.026352807879447937,-0.1792062669992447,0.05555712431669235,-0.035434987396001816,-0.03179900720715523,0.05050310492515564,-0.06522165238857269,-0.04423139989376068,0.028394130989909172,0.029024744406342506,-0.047345880419015884,0.00622209208086133,0.028752321377396584,0.03684208169579506,-0.06420095264911652,0.06300850212574005,0.10206141322851181,-0.0435747392475605,-0.02903415821492672,-0.024230578914284706,-0.008717349730432034,-0.06954183429479599,-0.09553667157888412,-0.08058132976293564,-0.026214847341179848,0.012419076636433601,0.0030042652506381273,-0.05197175592184067,-0.04897196963429451,-0.0664873942732811,0.07326242327690125,-0.05246410146355629,0.01721564307808876,-0.037946801632642746,-0.09545287489891052,0.03292027860879898,-0.07069791853427887,0.04400637745857239,0.08649663627147675,-0.014391683973371983,-0.016567086800932884,0.015926823019981384,-0.006733519956469536,-0.012387853115797043,0.04572222754359245,0.020807432010769844,0.01603892631828785,0.13325323164463043,-0.04732679948210716,0.0657326877117157,0.0805840790271759,-0.07344117760658264,0.03291277214884758,0.0042341952212154865,-0.007218876387923956,0.08831143379211426,-0.07252608984708786,-0.08140899240970612,0.05034681037068367,-0.024694407358765602,0.00610287906602025,0.019354835152626038,-0.03501399606466293,0.021667558699846268,-0.07040148228406906,-0.05406402051448822,0.050722647458314896,0.0579075813293457,-0.04348337650299072,-0.050634801387786865,-0.02516261301934719,-0.0073804850690066814,-0.006573264487087727,-0.03561653941869736,0.005197630729526281,0.019741281867027283,-0.045816417783498764,-0.028735153377056122,0.042500149458646774,-0.0394468754529953,0.06220799311995506,-0.08150448650121689,-0.07529348134994507,0.007660998031497002,-0.06030481308698654,0.10215122252702713,0.06002093851566315,-0.1578972041606903,-0.07174983620643616,-0.08508101850748062,-0.030278552323579788,0.04250892624258995,-0.011732938699424267,-0.014696067199110985,-0.021717485040426254,0.017323164269328117,-0.040464140474796295,0.09800790995359421,0.00572375999763608,0.012697714380919933,-0.04210215061903,0.03752855211496353,-0.05905973166227341,0.018510444089770317,1.2505833136480829e-32,0.01869305595755577,-0.0795714408159256,-0.01167135126888752,-0.0014907830627635121,0.015171710401773453,-0.085748091340065,-0.04805775731801987,0.012976845726370811,-0.04449595883488655,-0.016683461144566536,-0.11852218210697174,0.058973707258701324,-0.0423901304602623,0.004862552508711815,0.04521799460053444,-0.01778564229607582,0.07179548591375351,-0.03944241628050804,0.05821504071354866,-0.024680225178599358,0.0028714670334011316,0.049012407660484314,0.05367555841803551,-0.041113756597042084,0.010172785259783268,-0.009804307483136654,-0.012458562850952148,-0.09380536526441574,-0.0888582095503807,0.056921910494565964,0.07932868599891663,-0.017641033977270126,-0.046067286282777786,-0.015728408470749855,-0.05262712761759758,-0.034246381372213364,0.08461851626634598,-0.03807589411735535,-0.005159327760338783,0.019833669066429138,0.029376553371548653,-0.03741919994354248,0.11473788321018219,0.009175566025078297,0.08530355244874954,0.004040357656776905,0.02670617774128914,-0.004001404624432325,0.06882017105817795,0.004591397475451231,-0.023432713001966476,0.017340149730443954,0.0244784913957119,-0.03942495211958885,-0.004378927405923605,0.08293428272008896,-0.005305571015924215,0.028878506273031235,0.001461509265936911,-0.029430247843265533,0.030695492401719093,0.0473930649459362,0.0700821727514267,-0.014652116224169731,0.06339183449745178,-0.03617436811327934,-0.12391790747642517,-0.019542360678315163,0.028119098395109177,-0.0005519100232049823,-0.11859250068664551,-0.004340333864092827,-0.05523382127285004,0.011160667054355145,-0.02940521016716957,0.01575583592057228,-0.005359074100852013,-0.008416800759732723,-0.046687014400959015,0.04416808858513832,-0.043435439467430115,0.015167941339313984,-0.03248422592878342,0.055231399834156036,0.08650760352611542,0.035692714154720306,0.01048555038869381,0.08310335874557495,0.053863510489463806,0.07056181132793427,0.05614851415157318,0.019636213779449463,0.018655287101864815,-0.010530823841691017,0.03674368932843208,-1.336285521093865e-32,0.047797925770282745,-0.03361686319112778,-0.1216641366481781,0.033130183815956116,-0.010525315999984741,0.10038807988166809,-0.07162478566169739,0.023931624367833138,-0.05442488193511963,-0.011311073787510395,-0.1589260995388031,0.07953781634569168,0.10385541617870331,-0.10514259338378906,-0.02971814200282097,0.07199548184871674,0.044128187000751495,0.0025818024296313524,-0.02818620391190052,-0.08484654128551483,-0.059188585728406906,0.0487479642033577,-0.02078345976769924,-0.05515722557902336,0.002197874477133155,0.004393964074552059,0.08925171941518784,0.021344084292650223,-0.07260732352733612,-0.06144614517688751,0.07057789713144302,-0.006566894240677357,0.00695204408839345,0.0734320729970932,0.00288594514131546,0.019580053165555,0.08137451857328415,-0.030586199834942818,-0.018714815378189087,0.008812685497105122,0.028495464473962784,0.006400114856660366,0.01222740113735199,-0.027573199942708015,0.08687718957662582,-0.05036670342087746,-0.03759028762578964,-0.040250495076179504,0.01075944397598505,0.06087019667029381,0.0431717112660408,-0.036339495331048965,-0.06661050021648407,-0.07221737504005432,0.09899158030748367,-0.05689669027924538,-0.1300765424966812,-0.020756464451551437,0.06113515421748161,0.016736261546611786,0.06508888304233551,0.06066092103719711,-0.03520256653428078,0.0034327490720897913,0.026673635467886925,-0.04173479974269867,-0.04716853052377701,0.05014767497777939,0.0035637388937175274,0.012321078218519688,0.07800634205341339,-0.0009672228479757905,-0.043981604278087616,-0.09740064293146133,0.04241511598229408,0.026683662086725235,0.029001526534557343,-0.025503413751721382,0.025165565311908722,0.03795136138796806,-0.012651135213673115,-0.009147913195192814,0.009520439431071281,-0.0180107019841671,-0.06480703502893448,0.0018331044120714068,0.04800869897007942,0.05119782313704491,-0.0026386247482150793,-0.03506901487708092,-0.011804865673184395,-0.04860193654894829,0.03396201506257057,-0.026481397449970245,-0.01936841569840908,-4.2798149024747545e-8,0.02633843384683132,-0.041505128145217896,0.04949497804045677,0.07661391794681549,0.040315449237823486,-0.06712260842323303,-0.02082986570894718,-0.0409303642809391,0.005240811500698328,0.03391182795166969,0.01662580482661724,-0.06264308094978333,-0.022197557613253593,0.06932402402162552,0.03639049082994461,-0.004848440643399954,0.08113507181406021,0.08082757890224457,-0.009670652449131012,-0.06517614424228668,-0.023416373878717422,-0.026627756655216217,-0.00003856275725411251,0.010695827193558216,-0.038831621408462524,-0.0204697847366333,0.07721566408872604,-0.05578508973121643,-0.04775269329547882,0.04732443764805794,-0.0597747303545475,0.043721821159124374,-0.001973321894183755,0.0028820422012358904,0.07811283320188522,0.045113999396562576,-0.00912365410476923,0.04519842565059662,0.0010584384435787797,0.008562346920371056,0.06327205151319504,-0.04645879939198494,0.037613216787576675,-0.016350919380784035,0.05274377390742302,0.01853112317621708,-0.007740488275885582,-0.007742026355117559,-0.002400750992819667,-0.0459512323141098,-0.06308314949274063,-0.011757486499845982,0.05233236402273178,0.061581455171108246,-0.03348361700773239,0.026971081271767616,0.021320583298802376,-0.0696440190076828,-0.0029636414255946875,0.019465170800685883,0.0584869310259819,0.03550393134355545,0.010487702675163746,0.018406789749860764]},{"text":"Nil mortalibus arduist; Caelum ipsum petimus stultitia, neque Per nostrum patimur scelus Iracunda Iovem ponere fulmina. 40 IV.","book":"Homage to Catalonia","chapter":2,"embedding":[-0.03341827169060707,0.07326490432024002,-0.03662620112299919,-0.05038721114397049,-0.10455600917339325,0.036381881684064865,0.03252584859728813,0.032567065209150314,0.04772436246275902,0.03606870397925377,0.09063413739204407,-0.09326937794685364,0.022592047229409218,-0.06594778597354889,-0.07629887759685516,-0.12113828212022781,-0.04810361936688423,0.07855306565761566,0.0066611431539058685,0.00971013493835926,0.048930466175079346,0.021737268194556236,-0.005124572664499283,-0.012166778557002544,-0.08323359489440918,0.04850151017308235,-0.04687447100877762,-0.08449602872133255,0.02210289053618908,-0.10833591967821121,0.04476236552000046,0.04689119756221771,0.013052964583039284,-0.040510471910238266,0.03655504435300827,-0.07113932073116302,-0.09241390973329544,0.01362516637891531,-0.014474650844931602,0.031346771866083145,-0.0036474645603448153,-0.05001753568649292,-0.0865042582154274,-0.07731367647647858,-0.058953434228897095,0.0012982591288164258,-0.004603911656886339,0.009480069391429424,-0.01557396911084652,0.010038762353360653,-0.11165077984333038,-0.017649773508310318,0.026324989274144173,0.008112447336316109,-0.020357491448521614,-0.09187696874141693,0.028703032061457634,-0.07944365590810776,-0.017932657152414322,-0.05257938429713249,0.0071149421855807304,0.08999593555927277,-0.02259497530758381,-0.004155911039561033,0.04262205958366394,-0.028725072741508484,0.031122500076889992,-0.045049067586660385,-0.09887484461069107,0.06030290201306343,0.05977802723646164,-0.06194137781858444,0.006875710561871529,0.051846444606781006,-0.0986705794930458,0.008127422071993351,-0.0003092291299253702,-0.059772562235593796,0.10508854687213898,-0.06204472854733467,-0.008908159099519253,0.009090493433177471,-0.014370095916092396,0.019320787861943245,0.03166468068957329,-0.01234314776957035,-0.016967086121439934,-0.006785934325307608,0.08954773098230362,-0.025312669575214386,0.008835707791149616,0.017603488638997078,-0.035471491515636444,0.029139002785086632,0.015605384483933449,-0.016417453065514565,-0.032448772341012955,-0.027465876191854477,-0.03636308014392853,-0.009664371609687805,-0.0019424862693995237,-0.019956206902861595,-0.0420755036175251,0.10785122960805893,-0.05969028174877167,-0.0412483736872673,-0.04142891243100166,-0.0784144476056099,0.012851669453084469,0.04088899865746498,-0.08960475027561188,-0.06674747914075851,-0.0447700135409832,-0.06984741240739822,0.08627061545848846,0.015671053901314735,-0.05865812301635742,-0.029980631545186043,-0.015047673135995865,-0.10958664119243622,0.027398210018873215,-0.04735520854592323,-0.012832067906856537,0.04541875422000885,0.10096088796854019,-0.020252414047718048,0.05534256249666214,1.1923973718399366e-32,-0.023021208122372627,-0.0428881011903286,-0.012908020988106728,0.031202558428049088,-0.0031071645207703114,-0.08422943204641342,-0.024692798033356667,0.01047533843666315,0.04838085174560547,-0.03336380049586296,-0.04568149149417877,-0.04334704950451851,-0.06094837561249733,0.028178147971630096,0.0016606879653409123,0.03292236849665642,0.06267496943473816,-0.06284872442483902,0.026236170902848244,-0.05025423318147659,-0.004613262601196766,0.046159256249666214,0.033869918435811996,0.02155277505517006,0.07007057219743729,0.025649908930063248,0.033954717218875885,-0.02666599117219448,-0.029503727331757545,0.045097388327121735,0.1305771768093109,-0.04883607104420662,-0.0166180357336998,-0.020841799676418304,0.03893756493926048,-0.005397592205554247,-0.029930278658866882,0.0008286063093692064,-0.07296605408191681,0.003908982966095209,-0.014682869426906109,0.004737671464681625,0.04966733232140541,-0.03197341412305832,0.006787566002458334,0.002461967058479786,-0.00001927214179886505,0.06598357856273651,0.07404325902462006,0.020803255960345268,-0.02201485075056553,0.024272654205560684,-0.037700504064559937,-0.001964559545740485,0.026504943147301674,0.021567894145846367,-0.07575061917304993,0.07626385986804962,-0.009711487218737602,-0.039698030799627304,-0.05264938250184059,0.00006117526208981872,0.05052671581506729,0.0010505019454285502,0.06031213328242302,-0.002194170607253909,-0.03133544325828552,-0.021610040217638016,0.08831323683261871,0.011780382134020329,-0.06034409627318382,0.0335407480597496,0.0006744504207745194,0.027375705540180206,-0.006491356063634157,0.047999754548072815,-0.015402899123728275,-0.013211766257882118,-0.0552767813205719,-0.0072904545813798904,-0.06947728246450424,0.048943910747766495,-0.0376899316906929,-0.012099308893084526,0.13050368428230286,-0.031161466613411903,0.044170085340738297,0.033971212804317474,0.018466539680957794,0.054413482546806335,0.03722388297319412,0.030101262032985687,0.03886350616812706,0.06547004729509354,-0.01831337995827198,-1.2363133999762757e-32,-0.00015596051525790244,-0.051024701446294785,-0.06253723800182343,0.10541710257530212,0.007918713614344597,0.028812281787395477,-0.1389538049697876,0.08737422525882721,-0.05059434100985527,0.003382397349923849,-0.0665394738316536,0.010167866945266724,0.10469502955675125,0.032941270619630814,-0.0034128872212022543,0.019542386755347252,0.06082674115896225,0.02440551109611988,-0.0430276021361351,-0.0499124638736248,-0.07222198694944382,0.039725594222545624,-0.03660670295357704,-0.06922701746225357,0.01583852618932724,0.019346775487065315,0.03599868714809418,-0.028506245464086533,-0.07181467115879059,-0.04429422691464424,0.10045094788074493,0.04922889545559883,-0.013510742224752903,0.005472336430102587,-0.00920839887112379,0.007028565742075443,0.1624409407377243,-0.011086410842835903,-0.021953599527478218,-0.021417642012238503,-0.0138317896053195,0.08712951093912125,0.05053459852933884,-0.046143367886543274,0.013533098623156548,-0.07404319941997528,-0.0074435691349208355,-0.050126366317272186,-0.036960773169994354,-0.01587848924100399,0.10614316165447235,-0.02420521341264248,0.059815313667058945,-0.07198052108287811,0.06784230470657349,0.00725631695240736,-0.025528360158205032,-0.08817341178655624,0.026198817417025566,-0.017782799899578094,0.06367343664169312,0.012435688637197018,-0.008353780023753643,-0.002331628231331706,0.03808176517486572,-0.029380397871136665,-0.03380493074655533,0.106824591755867,0.06479556858539581,0.006367391906678677,0.099329873919487,-0.07964171469211578,-0.0906401202082634,0.016811085864901543,-0.02065408229827881,-0.011218180879950523,0.03983214125037193,0.09626105427742004,0.031528111547231674,-0.036667436361312866,-0.010214751586318016,-0.08743908256292343,-0.03937510401010513,-0.03139788284897804,-0.01615677960216999,-0.050658706575632095,0.031012391671538353,-0.015879560261964798,0.08478258550167084,0.003701054258272052,-0.05123283714056015,-0.0320984423160553,0.023129042237997055,-0.06901901215314865,-0.04947597160935402,-4.401345421456426e-8,0.007053100038319826,-0.03154771029949188,-0.059737689793109894,0.033446382731199265,0.06768627464771271,-0.0369936004281044,-0.026927180588245392,-0.07253725081682205,-0.00520020816475153,0.0466696098446846,0.06493772566318512,0.03991541266441345,-0.010160521604120731,0.014120045118033886,0.0459890216588974,0.06092315539717674,0.03533097729086876,0.011319863609969616,0.005410373210906982,-0.04820701479911804,0.08178704977035522,-0.020352108404040337,-0.06029633432626724,-0.054205521941185,-0.04088900238275528,0.023581793531775475,0.03909473866224289,-0.07536942511796951,-0.07025359570980072,0.0017656853888183832,-0.030717208981513977,0.08940344303846359,0.0043511781841516495,-0.06505891680717468,0.0579499714076519,0.09041152149438858,0.06954558938741684,-0.014825536869466305,0.02737964503467083,0.03649372607469559,0.04999742656946182,0.06505148112773895,0.04928658902645111,-0.028078578412532806,0.048032667487859726,-0.018712269142270088,0.010828623548150063,-0.07437081634998322,-0.01436645071953535,-0.022619381546974182,-0.1175132617354393,0.07651468366384506,0.04393434152007103,0.034440599381923676,-0.024339662864804268,0.0003881109005305916,0.0659826472401619,-0.020373202860355377,-0.03220971301198006,0.02313360385596752,0.14765316247940063,0.028323447331786156,-0.01913181133568287,0.045894283801317215]},{"text":"Iam Cytherea choros ducit Venus imminente luna, 5 Iunctaeque Nymphis Gratiae decentes Alterno terram quatiunt pede, dum gravis Cyclopum Volcanus ardens urit officinas.","book":"Homage to Catalonia","chapter":2,"embedding":[-0.005464042536914349,0.03790754824876785,0.05560993403196335,-0.01748557761311531,-0.09101070463657379,-0.012676081620156765,0.02545282617211342,0.0026387807447463274,-0.01940903440117836,0.05557303503155708,0.007995062507689,-0.10932217538356781,-0.0046578687615692616,-0.055164676159620285,-0.07530823349952698,-0.004614648409187794,-0.0017847948474809527,0.09533391147851944,-0.04549455642700195,0.03506765142083168,0.056738484650850296,-0.011803957633674145,-0.02023705095052719,0.07162781804800034,-0.08416414260864258,0.02314053475856781,-0.06766775250434875,0.0677875280380249,-0.005101158749312162,-0.041276510804891586,-0.0301037710160017,0.12695352733135223,-0.016538292169570923,0.012588193640112877,0.012397530488669872,0.02829090505838394,-0.07516006380319595,-0.046375226229429245,0.07938475161790848,0.023842616006731987,-0.0054528964683413506,-0.09828260540962219,-0.035857558250427246,-0.012059710919857025,-0.024123702198266983,0.01823652908205986,-0.02293432131409645,0.0742853581905365,0.018848277628421783,-0.05961419641971588,-0.06375495344400406,-0.045503776520490646,-0.0958302691578865,0.004904720466583967,-0.05801454186439514,0.01590290479362011,-0.018890056759119034,-0.02221624366939068,0.06259855628013611,-0.12583738565444946,0.05532067269086838,0.04350971058011055,-0.05656271427869797,0.04281981661915779,-0.009738094173371792,0.026363572105765343,-0.05729706585407257,0.013653689995408058,-0.07173782587051392,0.01068294607102871,0.06297433376312256,-0.03821336850523949,-0.07012728601694107,0.03240163251757622,-0.09872466325759888,0.0898081436753273,-0.014353281818330288,-0.012851150706410408,0.010807757265865803,-0.07517899572849274,0.012996349483728409,0.04721176251769066,-0.022329181432724,0.01378878764808178,-0.040844280272722244,0.026506410911679268,-0.004954238422214985,0.04958072304725647,0.0348370261490345,-0.047140639275312424,0.08300674706697464,0.04317624866962433,-0.012340252287685871,0.03680163249373436,-0.07431581616401672,0.016838815063238144,0.031668540090322495,-0.07837530225515366,0.0015495296102017164,-0.010644255205988884,0.08408667147159576,-0.0037018146831542253,-0.023900622501969337,0.06737395375967026,-0.12357417494058609,-0.03192043676972389,-0.011770784854888916,-0.07327481359243393,-0.012494842521846294,0.029451988637447357,-0.13695061206817627,-0.09729687869548798,-0.08069246262311935,-0.08271734416484833,-0.02069804072380066,0.07745767384767532,0.01487208902835846,0.03434513881802559,-0.028042718768119812,-0.03221108391880989,0.008793829940259457,-0.03374703601002693,-0.018798522651195526,-0.010549650527536869,-0.008133881725370884,0.0060395048931241035,0.0034574358724057674,1.3370495924218994e-32,-0.02539636567234993,-0.07485418766736984,0.07846160978078842,0.07881858199834824,0.031883347779512405,-0.025313451886177063,-0.024048563092947006,-0.025046199560165405,-0.02588464505970478,-0.07598774880170822,-0.11049643158912659,0.0191159937530756,-0.021181020885705948,-0.058512814342975616,0.03487587720155716,0.11191127449274063,0.08714523166418076,-0.03886270150542259,-0.0036431802436709404,0.025599783286452293,-0.0586213655769825,-0.013276600278913975,-0.013175204396247864,-0.047585707157850266,-0.04234269633889198,0.047904644161462784,0.01613866351544857,-0.11515989899635315,-0.01851090043783188,0.04975930228829384,0.05194295942783356,-0.0988701656460762,-0.05169631168246269,0.006906304974108934,-0.010120096616446972,-0.02434409223496914,-0.01899968832731247,0.0021756021305918694,-0.035995591431856155,-0.0013392990222200751,-0.002576082479208708,-0.0060732802376151085,0.1066615879535675,0.02171369269490242,0.09653907269239426,0.03398449718952179,0.03492892533540726,0.06856166571378708,0.06370402872562408,0.023817723616957664,-0.029711119830608368,0.011036382988095284,-0.10740283131599426,0.005132047459483147,-0.027468115091323853,0.055134326219558716,-0.030021043494343758,0.06674225628376007,-0.09437514841556549,0.012312431819736958,0.04836221784353256,-0.008548020385205746,0.03426596522331238,-0.07297853380441666,0.04698112979531288,0.017934195697307587,-0.05377816781401634,0.038899876177310944,0.0016407836228609085,0.054009173065423965,-0.081082284450531,-0.04130924120545387,0.035443514585494995,0.10357169806957245,0.05825471132993698,0.0348886214196682,0.09419416636228561,-0.05790334567427635,-0.027192221954464912,0.0045942505821585655,-0.07304123044013977,0.02322540059685707,-0.00014557513350155205,0.003540431149303913,0.06416437774896622,-0.05233651027083397,-0.0029565084259957075,0.017887506633996964,0.06984710693359375,0.037009868770837784,0.06168866902589798,-0.05283903703093529,0.02315070666372776,-0.014493318274617195,-0.09700540453195572,-1.2940300256648562e-32,0.015882184728980064,-0.020762037485837936,-0.04021010547876358,0.09095107764005661,0.04766186326742172,0.02207631804049015,-0.12461845576763153,-0.009796535596251488,-0.02227642573416233,-0.008277918212115765,-0.09749728441238403,0.00755743682384491,0.09354358166456223,-0.03471430763602257,-0.009676382876932621,0.019413648173213005,0.08811002224683762,-0.028982194140553474,-0.07652756571769714,0.03259667754173279,-0.058202628046274185,0.0327715203166008,-0.00063084508292377,-0.10255905985832214,-0.033555496484041214,0.002372335409745574,0.055027175694704056,-0.002171203261241317,0.024886148050427437,0.06081952154636383,0.029670709744095802,-0.03355908766388893,-0.04675924777984619,0.043335672467947006,-0.029640108346939087,0.023444857448339462,0.12694291770458221,-0.05743579939007759,-0.037076257169246674,0.057030342519283295,-0.04063081741333008,0.0025612907484173775,0.016992798075079918,-0.017419561743736267,0.058486439287662506,-0.0601235032081604,-0.03925008326768875,0.051678746938705444,0.006040184758603573,0.042012572288513184,0.11827391386032104,0.012203739024698734,-0.004422478843480349,0.0668950229883194,0.09552058577537537,-0.011729096993803978,0.004621641710400581,0.006706843618303537,-0.017823340371251106,-0.00020978355314582586,0.06866245716810226,0.052648499608039856,-0.038544729351997375,-0.007787150796502829,0.05627292022109032,-0.00043403817107900977,-0.06339044868946075,0.08850191533565521,-0.06819634884595871,0.0012143927160650492,0.04470289126038551,-0.07638584077358246,-0.10356453061103821,-0.04992111399769783,0.03994031995534897,0.03751760348677635,0.055642321705818176,0.005532428622245789,0.05567024648189545,-0.02542000822722912,-0.04713810980319977,0.01695789396762848,0.013612315058708191,0.01596883498132229,0.004516917280852795,-0.05607714504003525,0.025058330968022346,0.05988925322890282,0.011085927486419678,-0.003414466744288802,0.03327586129307747,0.03023669309914112,0.03603174164891243,-0.010848521254956722,-0.03595928102731705,-4.066466985364059e-8,0.07512141764163971,-0.047137901186943054,0.01535652857273817,0.027415592223405838,0.05448751896619797,-0.03589195758104324,0.014815293252468109,0.042531389743089676,0.015640415251255035,0.05589772388339043,0.026434171944856644,-0.04230912774801254,0.06212291866540909,0.026172421872615814,0.04134589433670044,0.05015610158443451,0.06336713582277298,0.018014781177043915,-0.064704529941082,-0.0380408950150013,0.017535774037241936,-0.02309020236134529,-0.08196495473384857,-0.06348166614770889,0.015308143571019173,-0.050430312752723694,0.11450730264186859,-0.07574307173490524,-0.03681468218564987,0.024622632190585136,-0.020263059064745903,0.015513400547206402,-0.021400149911642075,-0.06372074782848358,0.001354944077320397,0.09148749709129333,-0.06545349955558777,0.01939518377184868,0.04498381167650223,0.018927326425909996,0.031307969242334366,0.015388023108243942,0.015267394483089447,0.01793188974261284,0.07529290020465851,-0.04240169748663902,0.01037671323865652,-0.10281463712453842,0.0015365685103461146,-0.03233667463064194,-0.09845732152462006,-0.001709716860204935,0.1127140074968338,-0.01503730844706297,0.012744077481329441,-0.0009351062471978366,0.033736806362867355,-0.0009062256431207061,-0.018562469631433487,0.03914281353354454,0.02213381417095661,0.005858197342604399,-0.009999915957450867,-0.011078713461756706]},{"text":"Pallida mors aequo pulsat pede pauperum tabernas Regumque turris.","book":"Homage to Catalonia","chapter":2,"embedding":[-0.01848527602851391,0.06282223016023636,-0.047384798526763916,-0.026581859216094017,-0.18102502822875977,0.004674490541219711,0.05592223256826401,0.015631938353180885,0.05478449538350105,0.08826597779989243,0.07649914175271988,-0.07048157602548599,0.021205469965934753,-0.05305314436554909,-0.05072280392050743,-0.07690267264842987,-0.08056189864873886,0.06742651015520096,0.04617707058787346,0.006233823485672474,0.0036308711860328913,-0.04650959372520447,-0.04535699263215065,0.012477018870413303,-0.04377252236008644,0.05396874621510506,-0.027733786031603813,-0.017362099140882492,0.041394419968128204,-0.10381168127059937,0.03476701304316521,0.1040487065911293,0.06583477556705475,-0.06350180506706238,0.03501804918050766,0.0024174596183001995,0.005655490327626467,-0.03964013233780861,0.03835374116897583,0.024684181436896324,-0.08444429188966751,-0.06567265838384628,-0.05711757391691208,-0.05766035616397858,-0.06697745621204376,-0.017963144928216934,-0.041724372655153275,0.08812538534402847,0.04077575355768204,-0.06116219982504845,-0.03051881492137909,-0.0016362281749024987,-0.04188283532857895,-0.005996739491820335,-0.021980036050081253,0.03433661535382271,0.037465255707502365,-0.0643899068236351,-0.023929273709654808,-0.10198855400085449,-0.022756606340408325,0.044493742287158966,-0.0793912336230278,0.016656333580613136,-0.0779476910829544,0.04362601041793823,-0.05607937276363373,0.019909078255295753,-0.0399571917951107,0.09337986260652542,0.011253675445914268,-0.02381381392478943,-0.03328816965222359,0.10806802660226822,-0.05353882908821106,-0.022609008476138115,0.004581804387271404,-0.04835190251469612,-0.006485943682491779,-0.07807451486587524,-0.05121693015098572,-0.024741780012845993,-0.04377206042408943,0.0023530905600637197,0.000684390019159764,0.00858273170888424,0.00911929365247488,-0.03631756082177162,0.046519845724105835,-0.01062039565294981,0.047529082745313644,-0.02676640823483467,0.01852772943675518,0.01989634707570076,0.00653828214854002,0.03690262511372566,-0.0026902398094534874,-0.04310201480984688,0.05824818089604378,-0.01834878884255886,0.03778218850493431,-0.007660192903131247,0.06336574256420135,0.05007380247116089,-0.07136356830596924,-0.047483891248703,-0.012068814598023891,-0.07858221977949142,0.08613774925470352,0.04912912845611572,-0.09913039952516556,-0.11873508989810944,-0.03810659050941467,-0.032781943678855896,-0.04239007458090782,0.018645599484443665,0.0058201891370117664,-0.11432942003011703,-0.003814101219177246,-0.049767959862947464,0.02443697489798069,-0.018818508833646774,0.004975020885467529,0.02262810803949833,0.07456352561712265,-0.005842539947479963,0.034235235303640366,6.183706399599875e-33,-0.005211750045418739,-0.11674389243125916,-0.031923580914735794,-0.0024144104681909084,0.07257115840911865,0.034258607774972916,-0.009826975874602795,-0.05961452051997185,-0.006376306526362896,-0.024520393460989,-0.15251323580741882,-0.018799182027578354,-0.022791782394051552,0.01077041495591402,0.05646544322371483,0.08384554088115692,0.049774810671806335,0.011830988340079784,-0.0020778048783540726,-0.0069281188771128654,-0.0743594691157341,0.0922975093126297,0.036703985184431076,0.01356545276939869,0.005045296158641577,0.033560387790203094,-0.03291458636522293,-0.060890309512615204,-0.012302358634769917,0.04918947070837021,0.16321499645709991,0.05342207849025726,-0.03634337708353996,-0.048854995518922806,-0.0028487707022577524,0.03018748201429844,0.04739369451999664,0.023001033812761307,-0.006844098214060068,0.0705302283167839,0.02454279735684395,0.0043103680945932865,0.12101026624441147,0.0008892354089766741,0.03568743169307709,-0.02830989472568035,0.07777213305234909,-0.0013515492901206017,0.02598915994167328,0.06888847798109055,0.032036494463682175,0.013942078687250614,-0.018983321264386177,0.04555341601371765,0.013223739340901375,0.0011995782842859626,-0.06879448145627975,0.02183440700173378,-0.004485569894313812,-0.0074839466251432896,0.00701573770493269,0.038268063217401505,0.06932078301906586,-0.06697885692119598,-0.01613411121070385,-0.03923719376325607,0.0034620221704244614,0.004943871404975653,0.031918901950120926,-0.025511275976896286,-0.01214995700865984,-0.029527638107538223,-0.06643744558095932,0.025603121146559715,0.017671987414360046,-0.012513598427176476,0.012686328962445259,-0.03046279028058052,-0.06689801067113876,-0.02872523106634617,-0.0709136426448822,0.05134887620806694,0.01313707884401083,-0.005384775344282389,0.08382344245910645,0.014372012577950954,0.028403837233781815,0.04487071931362152,0.054428134113550186,0.0025010197423398495,-0.0321510024368763,0.028118589892983437,-0.06815695017576218,-0.009411415085196495,0.05231639742851257,-6.642268215223588e-33,-0.006664937362074852,-0.07064902782440186,-0.0766044482588768,0.06600892543792725,-0.015127960592508316,0.02933749184012413,-0.06769115477800369,0.09429708123207092,0.05795735865831375,-0.014351295307278633,-0.1173393651843071,-0.0018746983259916306,0.11366584897041321,-0.04916788265109062,-0.023712871596217155,0.06396697461605072,0.019323352724313736,-0.011768176220357418,-0.06565280258655548,-0.04468778893351555,-0.029459813609719276,0.021019205451011658,0.00024294323520734906,-0.005086495541036129,0.014386634342372417,-0.032445330172777176,0.0002119857381330803,-0.06186463683843613,-0.05774163454771042,-0.0642332062125206,0.07329894602298737,-0.0456986129283905,-0.017206797376275063,0.0823415070772171,-0.01886848546564579,-0.041854821145534515,0.10538384318351746,0.020029928535223007,-0.11564940214157104,-0.03783959895372391,-0.023440981283783913,0.07838556915521622,0.044080089777708054,0.011399168521165848,0.03969505429267883,-0.01222574058920145,-0.01995508186519146,-0.04338260740041733,-0.057358548045158386,-0.01855595037341118,0.100942462682724,-0.07435763627290726,0.09493185579776764,0.03579737991094589,0.09343355894088745,-0.024074632674455643,-0.011635510250926018,0.02007574588060379,-0.08340299129486084,0.005381014198064804,0.07629650086164474,0.01766096241772175,-0.020899208262562752,0.049383483827114105,0.07914580404758453,0.039374347776174545,-0.06522446870803833,0.07473938912153244,0.0004081068036612123,-0.002591283991932869,0.002009013434872031,-0.08092281222343445,-0.14077837765216827,0.015198293142020702,0.034529272466897964,0.009006275795400143,-0.07627759128808975,0.058148182928562164,0.02934134565293789,0.0007759524742141366,-0.022228306159377098,-0.07211039215326309,0.04988414794206619,-0.03346124663949013,-0.0603325217962265,-0.03029053471982479,0.045276444405317307,-0.0017359326593577862,0.0013181769754737616,0.01629762537777424,-0.02615571953356266,-0.03194250538945198,0.028548967093229294,0.0025354980025440454,0.022946076467633247,-2.8509623106742765e-8,-0.017194371670484543,-0.018993403762578964,-0.07682716101408005,0.05748188495635986,0.000550461991224438,-0.07403441518545151,0.00881845410913229,-0.012582226656377316,-0.024306489154696465,-0.00190356548409909,-0.005106306169182062,-0.013177981600165367,0.03728341683745384,0.06600873917341232,0.04626544937491417,0.07260460406541824,0.1297132819890976,0.016810424625873566,-0.03457896411418915,-0.003215065924450755,0.04406237229704857,0.0333007387816906,-0.05625351890921593,0.04877776280045509,-0.01354999840259552,-0.0013119973009452224,0.03175525367259979,-0.0783911943435669,0.006453877780586481,0.029956350103020668,0.01632215827703476,0.009237302467226982,0.016303053125739098,-0.04958108440041542,0.0374668724834919,0.06204196438193321,-0.017496921122074127,-0.04116130247712135,0.00473351776599884,0.08228563517332077,0.06273548305034637,-0.03042166493833065,0.09326989203691483,-0.06576136499643326,0.030148472636938095,-0.011148454621434212,-0.0523555614054203,-0.041250765323638916,-0.008713501505553722,-0.07400185614824295,-0.002703591715544462,0.01803920418024063,0.06932687759399414,0.019396573305130005,-0.003968547098338604,-0.01929701678454876,0.047812480479478836,-0.0037337595131248236,0.0037162357475608587,0.004752979148179293,0.10985571891069412,0.09580139815807343,0.02148640900850296,0.06984412670135498]},{"text":"Quis multa gracilis te puer in rosa Perfusus liquidis urget odoribus Grato, Pyrrha, sub antro?","book":"Homage to Catalonia","chapter":2,"embedding":[-0.04544474929571152,0.0310874842107296,-0.06356890499591827,-0.03262791410088539,-0.015580432489514351,0.02998310513794422,0.07929196208715439,0.08931148797273636,0.049705326557159424,-0.013441067188978195,0.05525840073823929,-0.08380880206823349,-0.0544298030436039,0.011924554593861103,-0.07877526432275772,-0.05547788366675377,-0.029231559485197067,0.02454157918691635,0.06653978675603867,-0.02234443835914135,0.059533264487981796,-0.06691350042819977,0.002459961222484708,0.042071107774972916,-0.10867996513843536,0.0371372364461422,-0.05461226403713226,0.011670148931443691,-0.014684784226119518,-0.09493499994277954,0.03321285918354988,0.06418020278215408,0.14083872735500336,-0.02364841103553772,-0.01040768250823021,0.07886795699596405,-0.023877855390310287,-0.03920019790530205,0.0659685879945755,0.04987822100520134,-0.054980359971523285,-0.03365973010659218,-0.028262685984373093,-0.004317418206483126,-0.06825050711631775,0.04868006333708763,0.10221198201179504,0.0547766275703907,-0.045827072113752365,-0.06029767543077469,-0.03633637726306915,-0.032314199954271317,-0.0853661522269249,-0.01214866153895855,0.021713534370064735,-0.034661196172237396,0.06910543888807297,-0.054935526102781296,0.002060776809230447,-0.04544894024729729,-0.017481382936239243,0.032078396528959274,-0.02546469122171402,0.012377746403217316,-0.008278386667370796,-0.03875791281461716,-0.03631150349974632,-0.007422949653118849,-0.030697142705321312,0.018870363011956215,0.09168929606676102,0.021829286590218544,-0.022829128429293633,0.002295577432960272,-0.07308390736579895,0.09760145843029022,-0.013931350782513618,-0.03666509687900543,-0.0055327219888567924,-0.06495082378387451,0.02129651978611946,0.06893014907836914,-0.06201580911874771,0.07290782779455185,0.027803106233477592,-0.005014237482100725,-0.017120225355029106,-0.05940448120236397,-0.021584488451480865,-0.04951712116599083,0.05268287658691406,0.034318242222070694,-0.051853302866220474,-0.00827152468264103,-0.0624343566596508,0.05437713861465454,-0.06534071266651154,-0.08645030111074448,0.013828826136887074,-0.022227689623832703,0.008451872505247593,0.04200420528650284,-0.011370551772415638,0.03719231113791466,-0.08662088960409164,-0.08507973700761795,-0.04827442392706871,-0.04010328650474548,0.06001937389373779,0.07118552178144455,-0.14329040050506592,-0.09280243515968323,-0.02773449569940567,-0.02450932003557682,0.029378654435276985,0.010022314265370369,0.061723899096250534,-0.03240220621228218,0.021703148260712624,0.01124315895140171,-0.034673526883125305,-0.024954533204436302,-0.03783305734395981,-0.015358833596110344,0.05693652108311653,-0.07125849276781082,0.02081352286040783,6.0876163485758764e-33,-0.044937118887901306,-0.04303887486457825,-0.02431645058095455,-0.011561674997210503,0.016025325283408165,-0.0009005282772704959,-0.04897792637348175,-0.03592320904135704,0.05658756196498871,-0.015424428507685661,-0.06614495068788528,-0.02543994039297104,-0.08737681806087494,-0.004047477152198553,-0.03149785101413727,0.03499221429228783,0.059073466807603836,-0.017873577773571014,-0.02773630991578102,-0.07757742702960968,-0.010281444527208805,0.059013351798057556,-0.029063794761896133,-0.09385962784290314,-0.0037987285759299994,0.014440500177443027,-0.015414835885167122,-0.023883117362856865,-0.033525027334690094,-0.019297920167446136,0.14516183733940125,0.0026164783630520105,-0.01301115658134222,0.053659822791814804,-0.01524153258651495,-0.04713723808526993,0.0019092875299975276,-0.00497535290196538,-0.05165315791964531,0.02319399081170559,-0.03948891535401344,0.027589693665504456,0.10321542620658875,0.04491773247718811,0.07262051105499268,-0.005493197590112686,-0.06435755640268326,0.06434021890163422,0.133039191365242,0.018165286630392075,0.0393853522837162,-0.02397923730313778,-0.007743654772639275,0.005936036352068186,-0.016578858718276024,0.07046091556549072,-0.05590769648551941,0.020077884197235107,0.045579247176647186,-0.016611704602837563,0.06730210781097412,0.06745075434446335,0.05448418855667114,-0.0895715206861496,0.029403986409306526,-0.05312714725732803,-0.09314263612031937,-0.04353991895914078,0.12520551681518555,0.0384933240711689,-0.03764700889587402,-0.05765055865049362,0.011157715693116188,0.020676935091614723,-0.04802437499165535,0.024793772026896477,0.021404223516583443,0.0072075664065778255,0.025070834904909134,0.01614362746477127,-0.11432813853025436,-0.06157795712351799,0.07492836564779282,0.05509656295180321,0.047218091785907745,-0.009565520100295544,-0.013989798724651337,0.05398606136441231,0.015479729510843754,0.032443564385175705,-0.03820180147886276,0.04058860242366791,-0.0067222025245428085,-0.07045582681894302,0.02390521951019764,-6.059389055792787e-33,0.007764208596199751,-0.01568444073200226,-0.030985089018940926,0.0311555378139019,-0.01136573776602745,0.020829472690820694,-0.07236727327108383,0.06011097878217697,0.021083474159240723,0.06202492117881775,-0.0759568065404892,-0.03994401916861534,0.07267478853464127,-0.05478998273611069,-0.012951613403856754,0.0744328424334526,0.06960748881101608,0.09233967214822769,-0.037594281136989594,-0.03126208856701851,-0.1576109677553177,0.11150383204221725,0.02775905840098858,-0.009889090433716774,-0.006183866877108812,-0.02083447389304638,0.09767848253250122,-0.028356414288282394,-0.0646623894572258,-0.04398231953382492,0.07053841650485992,0.012284631840884686,-0.061684705317020416,0.05508822947740555,-0.00718995276838541,-0.10002899169921875,0.08946900814771652,0.03874735161662102,-0.01778930053114891,-0.01684277504682541,0.010475888848304749,0.004798405803740025,0.06921811401844025,0.05412978678941727,0.058687545359134674,0.0025857442524284124,-0.022349482402205467,-0.06114679574966431,-0.011564886197447777,0.06235182657837868,0.045947760343551636,-0.041581641882658005,0.03173942118883133,-0.005642500706017017,0.09637539088726044,-0.03987022489309311,-0.029875099658966064,-0.06445694714784622,-0.04153948277235031,-0.010021409951150417,0.027409782633185387,0.022721773013472557,-0.050253480672836304,-0.040597639977931976,0.03945476561784744,0.025519326329231262,-0.04034707322716713,0.037199467420578,0.035110682249069214,0.039921849966049194,0.08364522457122803,-0.03393913432955742,-0.019540389999747276,-0.017498595640063286,-0.015477473847568035,0.042656611651182175,-0.04870888963341713,0.013924761675298214,0.012515735812485218,-0.007148598786443472,-0.07865141332149506,0.01604144275188446,-0.04755258187651634,-0.05055313557386398,0.017458658665418625,-0.1414971947669983,0.013075650669634342,0.010421148501336575,0.046634625643491745,-0.0005337709444575012,0.0117558054625988,0.022290991619229317,0.07515595853328705,-0.07864640653133392,0.0431036539375782,-3.10885042154041e-8,0.02340734750032425,-0.03683177009224892,-0.005757157225161791,0.06578899919986725,0.06012092903256416,-0.059390950947999954,0.011934240348637104,0.007072480861097574,0.006348279304802418,0.06670264154672623,-0.04810775816440582,0.025742992758750916,0.05611274018883705,0.0019294300582259893,0.06045878306031227,0.03752296417951584,0.1431424915790558,0.011779965832829475,-0.04200557619333267,-0.05280390754342079,0.019494693726301193,0.022308727726340294,-0.10260326415300369,-0.005181047134101391,0.0010117479832842946,-0.008308909833431244,0.04275767132639885,-0.07000445574522018,-0.032002802938222885,-0.0023705721832811832,0.05649619549512863,0.07426481693983078,-0.005566732492297888,-0.0346657820045948,0.047789353877305984,0.09425229579210281,0.07868655025959015,-0.0028005640488117933,-0.05399719625711441,-0.03086431697010994,0.018406810238957405,-0.028231600299477577,0.07075411826372147,-0.03344691917300224,0.039730675518512726,-0.04144072160124779,-0.08073339611291885,-0.008134737610816956,-0.003247734159231186,0.030306147411465645,0.018780406564474106,0.05343230068683624,0.03237925469875336,0.03128749132156372,-0.006629348266869783,-0.038642898201942444,0.06523022055625916,-0.015197396278381348,0.006926181726157665,0.01546884048730135,0.09069674462080002,0.06422509998083115,0.04402704909443855,-0.013009469956159592]},{"text":"Heu quotiens fidem 5 Mutatosque deos flebit et aspera Nigris aequora ventis Emirabitur insolens, Qui nunc te fruitur credulus aurea, Qui semper vacuam, semper amabilem 10 Sperat, nescius aurae Fallacis.","book":"Homage to Catalonia","chapter":2,"embedding":[-0.03580300882458687,0.06529979407787323,-0.031340356916189194,-0.0034878638107329607,-0.03511146083474159,0.040715333074331284,0.04597915709018707,0.028041591867804527,-0.010777992196381092,0.0009675428154878318,0.06522541493177414,-0.15118806064128876,0.06735450774431229,-0.0636846050620079,-0.050550322979688644,-0.08185169100761414,-0.05489238351583481,0.049773454666137695,-0.0418119840323925,-0.0783366784453392,0.0013973393943160772,0.004405627492815256,-0.00015220024215523154,0.06633166968822479,-0.0740661695599556,-0.04293492063879967,-0.04121468961238861,-0.0023736709263175726,0.03655435889959335,-0.048216767609119415,0.014218820258975029,0.02899595908820629,0.07713133841753006,-0.00901669543236494,-0.0025918185710906982,0.03278101980686188,0.08139783143997192,-0.07247074693441391,-0.02545304037630558,0.04536709189414978,0.011554601602256298,-0.015623439103364944,-0.011895425617694855,-0.03656570613384247,-0.01241250615566969,0.008414067327976227,-0.010948528535664082,0.07479190826416016,0.0359019972383976,0.053582075983285904,-0.08820048719644547,0.02994224801659584,-0.05317961424589157,-0.0524018295109272,0.01781732589006424,0.022591473534703255,0.010729094035923481,-0.0908329039812088,0.07761779427528381,-0.05183377489447594,0.049403052777051926,0.08786824345588684,-0.025529297068715096,0.03315223753452301,-0.008095714263617992,-0.04358310624957085,-0.067193403840065,-0.02743133157491684,-0.056932125240564346,0.030169866979122162,0.0927661880850792,-0.08132442086935043,-0.04698983579874039,0.03154074028134346,-0.09334123879671097,0.0890527069568634,-0.08824581652879715,-0.08340700715780258,-0.057686567306518555,-0.020361725240945816,-0.03466948866844177,-0.03821057081222534,0.01569720357656479,-0.06173646077513695,-0.016146447509527206,-0.07067368924617767,0.017300298437476158,-0.029133537784218788,0.0027425314765423536,0.05992811918258667,0.04387986287474632,0.0350668802857399,-0.03139783442020416,-0.026686526834964752,0.06313157826662064,0.031834110617637634,-0.014558798633515835,0.007829250767827034,-0.050572969019412994,0.023780884221196175,-0.019017059355974197,-0.024906842038035393,-0.02357879839837551,0.08953288942575455,-0.07513625919818878,-0.02845456264913082,-0.028159180656075478,-0.07578284293413162,0.08488138020038605,0.0019302336731925607,-0.08441907167434692,-0.09746818989515305,-0.04494147002696991,-0.09234224259853363,0.08441106975078583,0.048895880579948425,-0.03782360628247261,-0.08174154907464981,-0.029784368351101875,-0.056968528777360916,0.03036523424088955,0.008382258005440235,0.0022289466578513384,-0.04366675391793251,0.062147241085767746,-0.04759303107857704,0.005446418188512325,2.205211679905669e-32,-0.060990698635578156,-0.0073379636742174625,0.011966399848461151,0.047909270972013474,-0.008160642348229885,-0.052838753908872604,-0.0804043859243393,-0.02547435648739338,-0.013050694018602371,-0.07313108444213867,-0.04085727408528328,0.0266275592148304,0.008048934862017632,0.04114864021539688,0.013572901487350464,-0.029077228158712387,0.032187264412641525,-0.09671209752559662,0.0461791455745697,-0.051112961024045944,-0.08181928843259811,-0.012474024668335915,0.05823371559381485,0.02143661119043827,0.042098354548215866,-0.06631317734718323,-0.000987449660897255,-0.021911276504397392,-0.01819080300629139,0.05230367183685303,0.09156329184770584,-0.017048699781298637,-0.030965717509388924,-0.08682478219270706,-0.04101347550749779,-0.011043736711144447,0.06741201132535934,0.030541181564331055,-0.11805081367492676,-0.029813824221491814,0.007007410284131765,-0.03326927870512009,0.03555520996451378,0.04297889769077301,0.057948287576436996,-0.042956940829753876,-0.005805668421089649,0.020992718636989594,0.09721965342760086,0.004962592385709286,-0.005132858641445637,-0.009760512039065361,0.010870604775846004,-0.09161034971475601,0.04797957092523575,-0.00020539491379167885,-0.06566539406776428,0.07539281249046326,-0.07429888099431992,-0.018551528453826904,0.039432745426893234,-0.035946302115917206,0.009119687601923943,-0.032391857355833054,0.023867961019277573,0.040273651480674744,0.020378708839416504,-0.05533216521143913,0.10317231714725494,-0.014573418535292149,-0.04961049184203148,0.0020763843785971403,-0.037874046713113785,0.017314882948994637,-0.006287304684519768,0.047972723841667175,0.025743871927261353,-0.023815734311938286,-0.05457994341850281,0.047291338443756104,-0.05449222773313522,0.03678446263074875,0.042660608887672424,0.007387077901512384,0.028597358614206314,-0.008027666248381138,0.02851872518658638,0.05421609804034233,0.09553059190511703,0.0516282394528389,0.05373590067028999,-0.027252037078142166,0.06587602943181992,0.04655488207936287,-0.01432729046791792,-1.9456547395940338e-32,-0.05062105879187584,-0.03667261078953743,-0.10817389190196991,0.12166647613048553,-0.038533151149749756,0.0589655376970768,-0.018597116693854332,0.02314751036465168,-0.007290367037057877,-0.0953579694032669,-0.04940459132194519,0.008138603530824184,0.12254177778959274,-0.08274445682764053,0.01740434020757675,0.10466433316469193,0.038184259086847305,0.014086970128118992,0.0015726295532658696,0.008953488431870937,-0.03407685086131096,-0.02194942906498909,0.0566045381128788,-0.011121710762381554,-0.03381722792983055,0.06455796957015991,0.026007337495684624,-0.0826638787984848,-0.02990058623254299,0.027160298079252243,0.03742554038763046,0.013396949507296085,-0.06898229569196701,0.12405610829591751,-0.028017889708280563,-0.021972713991999626,0.040394674986600876,0.05167704448103905,-0.03770091384649277,0.05548910051584244,0.0442965067923069,0.13332317769527435,0.05184965953230858,-0.011802788823843002,0.016798747703433037,0.03143714740872383,0.01819026656448841,-0.01772298850119114,-0.054008081555366516,0.0010536896297708154,0.03749385476112366,0.021002760156989098,-0.027264149859547615,0.027408231049776077,0.0852481946349144,-0.018253671005368233,-0.04603338986635208,0.06548193842172623,-0.029179709032177925,0.02018927037715912,0.0699867308139801,0.0023596882820129395,0.05597953870892525,-0.027424778789281845,0.08805787563323975,-0.009199423715472221,-0.066099151968956,0.09520542621612549,-0.019207360222935677,0.03779174014925957,0.0694190189242363,-0.07555010169744492,-0.045786213129758835,-0.019929582253098488,0.010274852626025677,0.015454765409231186,-0.02930751070380211,0.0703636109828949,-0.06627420336008072,0.07489646226167679,-0.07195831090211868,0.06163286045193672,-0.08480574935674667,-0.045318495482206345,-0.05492778122425079,-0.06795750558376312,0.03614495322108269,0.01253793016076088,0.12250317633152008,0.005735856015235186,-0.0030515575781464577,-0.060786813497543335,0.046601563692092896,-0.10907399654388428,0.009368396364152431,-6.258174067852451e-8,0.006479909177869558,-0.061519160866737366,0.05312437564134598,0.04323112219572067,0.05804259702563286,0.019194506108760834,-0.03426913172006607,-0.08190321922302246,0.030591486021876335,0.0853244885802269,-0.04562951624393463,-0.03477802500128746,0.007978285662829876,0.036750901490449905,-0.01896180585026741,0.039316534996032715,0.035127293318510056,0.07843712717294693,0.013834572397172451,-0.04291902482509613,0.01698153279721737,-0.03794141858816147,-0.057407259941101074,-0.005670147482305765,-0.0141217652708292,-0.027557695284485817,-0.038275476545095444,-0.06577754020690918,-0.015403837896883488,0.04968588426709175,0.020553359761834145,0.030948009341955185,-0.06877312064170837,-0.11390501260757446,-0.015617385506629944,0.07207311689853668,0.04514264315366745,0.03541961684823036,-0.04301046207547188,0.02523784525692463,0.009697528555989265,-0.047520216554403305,0.041953373700380325,-0.06666884571313858,-0.032608091831207275,-0.03206755593419075,0.013780472800135612,0.025800568982958794,0.009701554663479328,0.05713476613163948,0.027541903778910637,-0.016087807714939117,0.11505363881587982,0.0058381929993629456,0.0011404372053220868,-0.07815098017454147,0.06121645122766495,-0.045377153903245926,0.02359960228204727,-0.018387114629149437,-0.03320741653442383,0.042920321226119995,0.024430403485894203,-0.018853671848773956]},{"text":"Scriberis Vario fortis et hostium Victor Maeonii carminis alite, Quam rem cumque ferox navibus aut equis Miles te duce gesserit.","book":"Homage to Catalonia","chapter":2,"embedding":[0.017169009894132614,0.08533177524805069,-0.011537925340235233,0.011554586701095104,-0.103798046708107,0.05334734916687012,0.017066001892089844,0.087406687438488,0.028528518974781036,0.009904351085424423,-0.001961203059181571,-0.044133540242910385,0.06448789685964584,-0.017172936350107193,-0.12372168898582458,-0.10449029505252838,-0.039699092507362366,0.07000894099473953,0.0044625187292695045,0.06572841852903366,0.04621169716119766,-0.07100071758031845,0.013095233589410782,0.0716504156589508,-0.03043590858578682,0.028595922514796257,-0.035330791026353836,-0.003235801123082638,0.01028529740869999,0.02631468139588833,-0.0299423448741436,0.10761375725269318,0.023570626974105835,-0.014466030523180962,0.006527911406010389,0.013041673228144646,0.021083012223243713,-0.0517708957195282,-0.029669955372810364,-0.07257267832756042,-0.011946638114750385,-0.06210606172680855,-0.04758249595761299,0.02316235937178135,0.031321410089731216,-0.036966722458601,0.021753894165158272,0.05686246603727341,0.006208037491887808,0.03682704269886017,-0.0787731185555458,-0.027667835354804993,-0.041708219796419144,0.0009316721116192639,-0.04866770654916763,0.019894124940037727,0.091706782579422,-0.06665191054344177,-0.006666593253612518,-0.08072131872177124,0.04456803575158119,0.015441130846738815,-0.05452563613653183,-0.012753422372043133,-0.07031522691249847,-0.00007955983892315999,-0.04271916300058365,0.01972188428044319,-0.11563125997781754,0.013843794353306293,0.06144977733492851,0.03078228421509266,0.0013939258642494678,0.04022860899567604,-0.033868588507175446,0.07031858712434769,0.007336359936743975,-0.06458872556686401,0.026898302137851715,-0.10455113649368286,0.057554617524147034,0.002609046408906579,0.06803721934556961,0.021146191284060478,0.0029975799843668938,-0.018579361960291862,0.036356259137392044,-0.012860449962317944,0.09821536391973495,-0.040570538491010666,-0.03038513846695423,-0.011610664427280426,-0.01105071883648634,-0.044963665306568146,0.014690705575048923,-0.041975151747465134,-0.027273621410131454,0.01675143465399742,0.06254501640796661,0.0005703920614905655,0.04144083708524704,0.04315221682190895,-0.04655700922012329,0.08018026500940323,-0.10158160328865051,0.07828878611326218,-0.035979192703962326,-0.07643593102693558,-0.023092757910490036,0.017106596380472183,-0.027884647250175476,-0.044431257992982864,-0.017575567588210106,-0.0017903217813000083,0.013285302557051182,0.05012314021587372,0.009523500688374043,-0.029453758150339127,-0.05686173960566521,0.02578779123723507,0.022158492356538773,-0.02673959732055664,-0.0872705802321434,-0.010652315802872181,0.09881515055894852,-0.07164754718542099,0.09933554381132126,1.3249201070261458e-32,-0.013805891387164593,0.039562396705150604,-0.008511226624250412,0.08855657279491425,0.041292089968919754,0.009760177694261074,-0.04683670774102211,-0.033985137939453125,-0.010355552658438683,-0.026328090578317642,-0.07227877527475357,0.017233211547136307,0.037629518657922745,0.02105824090540409,0.05150981247425079,0.07762239128351212,0.02247958444058895,-0.06352248787879944,-0.002176951617002487,-0.07041455060243607,-0.09012165665626526,-0.0537823885679245,0.04506899043917656,-0.049300722777843475,-0.0065683163702487946,-0.056858304888010025,-0.012903190217912197,-0.04239913448691368,-0.022211922332644463,0.015931591391563416,0.03456144034862518,-0.004245842341333628,-0.020729219540953636,0.001086199888959527,-0.042332276701927185,0.03470480814576149,0.012380052357912064,-0.05704372376203537,-0.013227087445557117,-0.024041520431637764,0.02002057060599327,0.09142840653657913,0.0711352750658989,-0.019353415817022324,-0.021801549941301346,-0.04500116780400276,0.04498763754963875,0.05981682240962982,0.1390722095966339,0.025778573006391525,-0.06857834756374359,0.015037567354738712,-0.07998550683259964,-0.06957051157951355,0.01985383965075016,0.04675908386707306,-0.08873248845338821,0.049214791506528854,-0.07122817635536194,0.015766151249408722,-0.031950585544109344,0.014390381053090096,0.046389687806367874,0.06625980883836746,0.038761697709560394,0.04386110231280327,0.011949573643505573,0.03505606949329376,0.10416705161333084,0.04673583060503006,-0.07181290537118912,-0.024169454351067543,0.05423225462436676,-0.00511269411072135,-0.07155317813158035,0.03984423726797104,0.07738158851861954,-0.0796203762292862,-0.0411345511674881,-0.017463091760873795,-0.10689450800418854,-0.0018695441540330648,-0.019402923062443733,0.008194507099688053,0.07546859979629517,-0.045306917279958725,-0.002002612454816699,0.005459921434521675,0.014721705578267574,0.0505528561770916,0.09400688856840134,0.008008059114217758,0.04346596449613571,0.006813825108110905,-0.05529291555285454,-1.2043332680097892e-32,-0.009715446271002293,0.006796777714043856,-0.11891019344329834,0.09340252727270126,-0.020682442933321,-0.04979875311255455,-0.08052896708250046,0.02195485681295395,-0.030676165595650673,-0.04949890077114105,-0.009093081578612328,-0.03193575516343117,0.11811918765306473,0.02064560167491436,-0.06325186043977737,0.023543916642665863,0.1176505759358406,-0.040455687791109085,0.026692397892475128,-0.057357512414455414,-0.04651825875043869,-0.060317520052194595,-0.012922010384500027,-0.1270592212677002,0.044329311698675156,0.012128978967666626,-0.013266365975141525,0.026390323415398598,-0.11292202025651932,-0.022311385720968246,0.07710583508014679,-0.06157708168029785,-0.03736438229680061,0.006532847881317139,0.06914439052343369,0.041351474821567535,0.15988300740718842,0.023116005584597588,0.05938328802585602,0.04289191588759422,-0.025248659774661064,0.05541791766881943,0.07575075328350067,0.006409268360584974,0.015689264982938766,-0.00984169077128172,-0.06969131529331207,-0.044255878776311874,0.036021508276462555,-0.0777285099029541,0.09931681305170059,-0.052019283175468445,-0.029612833634018898,-0.02830152027308941,-0.0006924545741640031,0.01688678190112114,-0.03486088290810585,-0.027965428307652473,-0.051199089735746384,0.0391145721077919,0.09626933932304382,0.09345684945583344,-0.0009068133076652884,0.012564214877784252,0.023477477952837944,-0.026231618598103523,-0.05639347434043884,0.06386698782444,-0.03179911524057388,0.07845641672611237,0.03792224079370499,-0.017335446551442146,-0.0176463071256876,0.026752129197120667,-0.052589982748031616,0.017539843916893005,0.010975731536746025,0.038715388625860214,0.004883998539298773,-0.018414609134197235,0.038849957287311554,-0.019448621198534966,-0.03978855907917023,0.01567140594124794,-0.0677831768989563,0.04039917513728142,-0.006682997103780508,0.01711210235953331,0.060751598328351974,-0.0003085862845182419,-0.011871586553752422,-0.013353346846997738,0.05324240028858185,-0.10798180103302002,-0.011652757413685322,-4.221575267138178e-8,-0.008636917918920517,-0.034187477082014084,-0.08012577891349792,0.01476544514298439,-0.02879529632627964,-0.026354916393756866,-0.014221413061022758,-0.050447769463062286,-0.026128780096769333,0.03492976725101471,0.0120575912296772,-0.01794939860701561,-0.02950800023972988,-0.0014748659450560808,-0.02598307840526104,0.011334497481584549,0.05312246456742287,0.03676696494221687,-0.08241593837738037,-0.05384870991110802,0.03816952928900719,-0.022367656230926514,-0.09745018184185028,-0.056850723922252655,-0.008518119342625141,-0.043124664574861526,0.05179283767938614,-0.09848907589912415,-0.0035876601468771696,-0.06765269488096237,-0.032531727105379105,0.08064194768667221,0.050360240042209625,-0.024164680391550064,0.007162458263337612,0.06320749223232269,-0.0183744914829731,0.08502023667097092,-0.03081815131008625,0.00799019355326891,0.11531072854995728,0.03866249695420265,0.017714351415634155,-0.052569225430488586,0.09407714009284973,-0.0497770719230175,0.03779122605919838,-0.04077163338661194,0.017720315605401993,-0.037291549146175385,-0.032294031232595444,0.02047179639339447,0.10013625025749207,0.09212896972894669,0.040152594447135925,-0.003045320278033614,0.014950566925108433,-0.022250792011618614,0.06685753166675568,-0.008876043371856213,-0.04788259044289589,0.036214035004377365,0.033325131982564926,-0.06591501086950302]},{"text":"Quis Martem tunica tectum adamantina Digne scripserit, aut pulvere Troico Nigrum Merionen, aut ope Palladis 15 Tydiden superis parem?","book":"Homage to Catalonia","chapter":2,"embedding":[-0.04931972548365593,0.026126347482204437,-0.07856722921133041,-0.024793464690446854,-0.11903499066829681,0.014760066755115986,0.019235800951719284,0.12782587110996246,-0.008939958177506924,0.023873481899499893,0.029367003589868546,-0.12425417453050613,-0.055058803409338,-0.024991268292069435,-0.08848055452108383,-0.04650614783167839,-0.0024865325540304184,0.0432719886302948,-0.0052874102257192135,-0.029224133118987083,-0.005482879467308521,-0.05150425061583519,-0.002662880113348365,0.03525927662849426,-0.07774938642978668,0.00960035901516676,-0.021579893305897713,-0.01734122447669506,-0.005139572080224752,-0.0511309914290905,-0.04911830276250839,0.05353455990552902,0.08696673810482025,-0.013748534955084324,0.015476142056286335,-0.030414853245019913,-0.011788486503064632,-0.03496174514293671,0.05665954202413559,0.01678171381354332,-0.03775419667363167,-0.044661566615104675,-0.08712529391050339,-0.04966207966208458,-0.013430334627628326,-0.05890285223722458,0.027198223397135735,0.11789337545633316,-0.06380396336317062,0.032335612922906876,-0.03309779614210129,-0.03947100043296814,0.010515616275370121,0.0176143366843462,-0.020515460520982742,0.07971703261137009,0.005691924598067999,-0.025607110932469368,0.02911347523331642,-0.08730978518724442,0.04677070677280426,0.019466131925582886,-0.10696370899677277,0.009036521427333355,0.01156014297157526,-0.024025576189160347,0.006329151336103678,0.001677813590504229,-0.04474435746669769,0.0779404491186142,0.11517729610204697,-0.00719359889626503,-0.0457107275724411,-0.026292284950613976,0.02305123582482338,0.04727223515510559,0.024097943678498268,-0.09103157371282578,-0.009099973365664482,-0.06907352060079575,-0.025145551189780235,0.020766526460647583,-0.019982267171144485,0.024478808045387268,-0.018261607736349106,-0.03085857816040516,-0.022269712761044502,0.019235126674175262,0.02902287058532238,-0.04363570734858513,0.03839096054434776,0.014472639188170433,-0.07609833776950836,-0.03644770011305809,-0.014707330614328384,0.08453082293272018,-0.05860459804534912,-0.040189266204833984,-0.011859055608510971,-0.04419661685824394,0.06135133281350136,-0.0421866811811924,0.04679573327302933,0.02102002315223217,-0.08407492935657501,0.008399838581681252,-0.05449175462126732,-0.025267774239182472,0.040415335446596146,0.05049784481525421,-0.06349977850914001,-0.11347702145576477,-0.0253054928034544,-0.08989772200584412,0.006816315930336714,0.012355316430330276,0.01555613987147808,-0.06295061111450195,-0.023584505543112755,0.031790584325790405,0.049581918865442276,0.062150176614522934,-0.04375540092587471,0.015389497391879559,0.06594277918338776,-0.037456732243299484,0.1017337515950203,1.0962569214956465e-32,0.023024940863251686,-0.020357858389616013,-0.0440254770219326,-0.0098196342587471,0.035168420523405075,-0.05672439932823181,-0.03539128974080086,-0.0824802815914154,-0.013046292588114738,0.020114535465836525,-0.11387136578559875,-0.01749199442565441,-0.06480047106742859,-0.023974519222974777,0.01862272620201111,0.03812038525938988,0.09016376733779907,-0.0473434180021286,0.0025264709256589413,-0.04091224446892738,-0.055416252464056015,0.09059799462556839,0.0014882718678563833,0.010603869333863258,0.015821723267436028,-0.05239949747920036,0.0561237670481205,-0.020236365497112274,-0.0003550797118805349,0.001570361782796681,0.07047950476408005,-0.008868347853422165,-0.01008532103151083,0.02266796864569187,-0.04520372673869133,0.05179166421294212,0.004925367422401905,0.029698960483074188,-0.02185480110347271,-0.004630184266716242,0.027556322515010834,0.04264906048774719,0.08468646556138992,0.050970349460840225,0.005563836079090834,-0.028823334723711014,0.05998094007372856,0.041249971836805344,0.1045287624001503,0.0015457667177543044,-0.004983586724847555,0.0646979957818985,0.012976707890629768,-0.026421332731842995,0.012411731295287609,0.034356314688920975,-0.06353279948234558,0.11611554026603699,0.013360665179789066,-0.010555780492722988,0.0631217509508133,-0.04945046827197075,0.0920768529176712,-0.00909583829343319,0.03163789585232735,0.00034532585414126515,-0.016955764964222908,-0.01626085862517357,0.09167424589395523,-0.01745726726949215,-0.14208637177944183,0.0487457774579525,0.10642839968204498,0.03667135164141655,0.005112942308187485,0.047542981803417206,0.02476332150399685,0.003703929716721177,-0.045294784009456635,-0.05632581561803818,-0.14237958192825317,0.02750355564057827,-0.013738163746893406,0.029019055888056755,0.05313940718770027,-0.007945255376398563,-0.012071888893842697,0.05009519308805466,0.07950364798307419,0.015871483832597733,0.021279504522681236,-0.0016995995538309216,-0.0016801189631223679,-0.006724649574607611,0.038386765867471695,-1.1064635920070425e-32,-0.007559117395430803,0.001611233688890934,-0.03640950471162796,0.12262371927499771,0.004634833429008722,0.04193941131234169,-0.11028924584388733,0.06301123648881912,-0.05001028999686241,-0.05235816910862923,0.04100995138287544,0.02649037539958954,0.07585779577493668,-0.08855641633272171,0.07070178538560867,0.0707486942410469,0.01785888709127903,0.033299777656793594,-0.04410836100578308,-0.07040689885616302,0.0011202977038919926,-0.06316103041172028,-0.06328454613685608,-0.038044825196266174,-0.00997740589082241,0.01734890230000019,0.007838441990315914,-0.07688981294631958,-0.02963356487452984,0.017899638041853905,0.07537465542554855,-0.0024376895744353533,-0.06118880957365036,0.0483432300388813,-0.02369026467204094,-0.04461703822016716,0.10293906182050705,0.08037181943655014,-0.04474927484989166,0.05867098644375801,-0.0034354489762336016,0.014820015989243984,0.11265911161899567,0.06569851189851761,-0.005057293456047773,-0.061867982149124146,-0.04088618978857994,-0.1138865053653717,-0.02549527958035469,-0.00034385439357720315,0.10439003258943558,0.031231587752699852,0.03838218003511429,-0.045542892068624496,0.0882255882024765,0.04018620774149895,-0.03289436176419258,-0.00596584053710103,-0.07077024132013321,0.00013393122935667634,0.08757920563220978,0.024959152564406395,-0.0161425918340683,-0.030658463016152382,0.08388935029506683,-0.02726004831492901,-0.1281457394361496,0.017899127677083015,-0.025789862498641014,0.050962429493665695,0.006323725450783968,-0.05363495275378227,-0.029352901503443718,-0.02982160821557045,0.09048204869031906,-0.06790938228368759,0.02241806872189045,0.029199693351984024,0.06085149571299553,0.06267815828323364,-0.05632077157497406,0.001140593085438013,-0.022639425471425056,-0.009408378973603249,0.03987986594438553,-0.039533838629722595,0.0018287624698132277,0.07435841113328934,0.05725903436541557,0.020451640710234642,-0.0034531017299741507,-0.0050341724418103695,0.003909047693014145,-0.07761598378419876,-0.020810676738619804,-3.8778555477847476e-8,0.07034584879875183,-0.08195966482162476,-0.08995553851127625,0.05894193425774574,-0.007310930639505386,-0.04244614019989967,-0.06417827308177948,0.01862785778939724,-0.006708815228193998,0.054123785346746445,-0.010865707881748676,-0.048212356865406036,-0.07112807035446167,0.006096254102885723,-0.005807201843708754,0.05982166901230812,0.004271118901669979,-0.043071091175079346,-0.06540103256702423,-0.13131074607372284,0.027760786935687065,0.014943892136216164,-0.04381055757403374,0.019609684124588966,-0.02060585469007492,0.001955882180482149,-0.013448008336126804,-0.03768584877252579,-0.03657642379403114,0.03077780455350876,0.0071815489791333675,0.02626248635351658,-0.011189766228199005,-0.04107385873794556,0.06034708768129349,0.03231043368577957,0.003000329714268446,0.03914415091276169,-0.0070273070596158504,0.06721986085176468,0.08742109686136246,-0.08820205181837082,0.0469016395509243,0.0019828814547508955,0.031492408365011215,-0.06496146321296692,0.0067558917216956615,0.08440401405096054,0.002325518289580941,0.0005301111377775669,-0.11942516267299652,-0.012731602415442467,0.06491104513406754,0.030889958143234253,-0.0030265243258327246,0.03631977364420891,0.0935148373246193,0.0017656257841736078,-0.007020485121756792,0.01373975072056055,0.021361378952860832,-0.020924720913171768,-0.07176320254802704,-0.02391809970140457]},{"text":"Laudabunt alii claram Rhodon aut Mytilenen Aut Epheson bimarisve Corinthi Moenia vel Baccho Thebas vel Apolline Delphos Insignis aut Thessala Tempe.","book":"Homage to Catalonia","chapter":3,"embedding":[-0.03509170189499855,0.10716915875673294,-0.06573689728975296,0.02304813265800476,-0.11838354915380478,-0.018323902040719986,0.13320708274841309,0.032146841287612915,0.04173600673675537,0.08827295154333115,0.06086573377251625,-0.07032343745231628,0.023895034566521645,-0.04444563016295433,-0.031021298840641975,-0.0304732583463192,-0.04337569326162338,0.11619414389133453,-0.09469308704137802,0.04398467019200325,-0.00883419718593359,0.014522883109748363,-0.030195411294698715,0.08127155154943466,-0.010143382474780083,0.011649809777736664,-0.024835413321852684,0.013299108482897282,-0.014459998346865177,-0.02267732098698616,-0.012445498257875443,-0.0031425324268639088,0.11606799811124802,0.002620250917971134,0.021447250619530678,0.020451048389077187,-0.03698112070560455,-0.00799831748008728,0.07045269757509232,0.041010234504938126,0.02033749781548977,-0.05202453210949898,-0.08599000424146652,-0.03449045866727829,0.0026812502183020115,-0.008051330223679543,-0.0263961274176836,0.041623253375291824,0.0008600032888352871,0.01576446369290352,-0.06954198330640793,0.015599628910422325,-0.06485440582036972,-0.00542957941070199,-0.08122788369655609,-0.00570468557998538,0.0042039803229272366,-0.02587415650486946,-0.03763815760612488,-0.047916822135448456,0.07172360271215439,0.0826336070895195,-0.08150821179151535,0.10700814425945282,-0.003993862308561802,-0.001803820370696485,-0.056261371821165085,0.01712394319474697,-0.03528392314910889,-0.0023025923874229193,0.04547586292028427,-0.02984442003071308,0.03063247911632061,0.02278498187661171,-0.07265781611204147,0.0036513921804726124,0.06735032051801682,-0.1192665621638298,-0.0033841903787106276,-0.004103107377886772,-0.0878257155418396,-0.07558951526880264,-0.05286812409758568,0.0006371837225742638,0.023148739710450172,-0.027643024921417236,0.031233301386237144,0.006356481462717056,0.031251486390829086,0.031132010743021965,0.031295496970415115,0.014674036763608456,-0.04373908415436745,-0.060265373438596725,0.019816294312477112,0.046268485486507416,0.008155654184520245,-0.07175914198160172,0.007982295006513596,0.013515323400497437,-0.04069057106971741,-0.02478867955505848,0.034891899675130844,0.11717816442251205,-0.05911631137132645,-0.0825924351811409,-0.013539465144276619,-0.12093818932771683,0.08243253082036972,-0.006890992168337107,-0.09533730894327164,-0.1494988352060318,-0.020623408257961273,-0.02449806034564972,0.008870258927345276,0.027641301974654198,-0.07057011872529984,-0.06017862632870674,0.06931589543819427,0.00955541804432869,-0.030924053862690926,0.01649073325097561,-0.05455949157476425,0.013462696224451065,-0.022907694801688194,-0.05841789394617081,0.041078340262174606,1.960243946918883e-32,-0.05096780136227608,-0.06670331209897995,-0.03986334800720215,0.04201795905828476,0.07354231178760529,0.002815493382513523,-0.08679531514644623,-0.08382290601730347,0.022097643464803696,-0.12649275362491608,0.07516403496265411,-0.03303952142596245,-0.05422326922416687,0.000003013362629644689,-0.02941824495792389,0.08670841157436371,-0.027360551059246063,-0.014695934019982815,-0.036039769649505615,0.05169349163770676,-0.04222751781344414,0.010297255590558052,-0.012917919084429741,0.002387796528637409,-0.024820435792207718,-0.0707833543419838,0.011801529675722122,-0.004037054255604744,-0.08784742653369904,0.08429506421089172,0.09722242504358292,-0.014255073852837086,-0.03017868474125862,-0.036336224526166916,-0.06411073356866837,-0.027159646153450012,-0.03445219621062279,-0.023553654551506042,0.005745091009885073,-0.052300918847322464,0.001403623609803617,-0.07427515089511871,0.11510296911001205,0.04922938719391823,0.08626028895378113,0.023713868111371994,0.026219937950372696,0.0865604504942894,0.016549421474337578,0.050530146807432175,0.02462315931916237,0.024724213406443596,-0.013587161898612976,-0.010050620883703232,0.005083605647087097,0.03349963203072548,-0.057051192969083786,0.09734662622213364,0.0012229704298079014,0.0063799540512263775,0.008243909105658531,0.12724706530570984,0.05815930664539337,-0.010435452684760094,0.06439536064863205,-0.03612642362713814,-0.020948560908436775,-0.015966588631272316,0.07198207825422287,-0.004717511590570211,-0.011996367946267128,-0.02730281464755535,-0.020154176279902458,0.06257159262895584,0.00789097510278225,0.050819460302591324,0.08717141300439835,0.03744259104132652,-0.06265415996313095,-0.05014881119132042,0.012211482971906662,0.03932745009660721,0.03997853398323059,-0.01667485199868679,0.061402056366205215,-0.05404993146657944,0.036068145185709,-0.016074709594249725,0.05076473951339722,0.06792675703763962,0.07653340697288513,0.01607365719974041,0.018237493932247162,0.021077726036310196,-0.009568378329277039,-1.8312885432138318e-32,0.016157858073711395,-0.08779960125684738,-0.044630713760852814,0.04871915653347969,-0.06036606803536415,-0.06192534416913986,-0.09674426913261414,-0.002823498798534274,0.011454762890934944,-0.01893998123705387,-0.01812462881207466,-0.0709361582994461,0.06772860884666443,-0.0000692547473590821,0.006483244244009256,0.008876868523657322,0.13313840329647064,-0.08695206046104431,0.010703742504119873,-0.007682194467633963,-0.05081968754529953,0.00888506043702364,-0.01396234706044197,0.005863933824002743,-0.015704819932579994,-0.02542450651526451,0.016886021941900253,-0.06506035476922989,-0.09265466034412384,-0.0707043707370758,-0.0006660345825366676,-0.03936801478266716,-0.019600089639425278,0.05119478702545166,-0.05888696759939194,-0.003526996122673154,0.042666465044021606,-0.043340202420949936,-0.0063531724736094475,-0.028808418661355972,0.0749223381280899,-0.05581830441951752,0.03851735219359398,-0.0795377567410469,-0.01282962691038847,-0.01999758742749691,-0.00126181251835078,0.011405603028833866,-0.018996691331267357,0.006444251164793968,0.0869101732969284,-0.01616849936544895,-0.01000355277210474,-0.07042984664440155,0.09478485584259033,-0.0323764830827713,-0.0235301423817873,-0.057075560092926025,-0.05175499990582466,-0.023719830438494682,0.05052821710705757,-0.0006376350647769868,0.014518938027322292,0.07079599797725677,0.004585752263665199,-0.02569650672376156,-0.06516660749912262,-0.003501403843984008,0.009748967364430428,0.018846211954951286,0.0557422935962677,-0.10014284402132034,-0.06840572506189346,-0.03376089408993721,0.004721903242170811,0.016916757449507713,0.022031495347619057,0.018993178382515907,-0.025097902864217758,-0.09062912315130234,-0.0595584437251091,-0.012032488361001015,-0.0030503806192427874,-0.011355151422321796,-0.012305408716201782,-0.12114913016557693,-0.04976522922515869,0.013814736157655716,0.01590266451239586,0.03026128187775612,-0.03382406383752823,0.054600704461336136,0.035388242453336716,-0.03838644176721573,0.0821133628487587,-5.6148248717136084e-8,0.08832858502864838,-0.06043097376823425,0.04815058782696724,0.0657118558883667,0.05149771645665169,-0.059126902371644974,0.046716831624507904,-0.02418692037463188,-0.02523934096097946,0.055462729185819626,-0.044498223811388016,0.001682640635408461,0.024447249248623848,0.009472529403865337,-0.016723014414310455,-0.00025622561224736273,0.10076578706502914,-0.02019372209906578,0.0014832468004897237,-0.1082490086555481,-0.01216043159365654,-0.03397136554121971,-0.03754096478223801,-0.008146644569933414,0.004711860325187445,0.09978511184453964,0.011413666419684887,-0.0664336308836937,0.02158757485449314,0.0011652938555926085,0.037689391523599625,0.009044967591762543,0.02331654541194439,-0.016281161457300186,-0.014480329118669033,0.05996398255228996,-0.02681923285126686,0.0605517216026783,-0.04007275775074959,0.005628138780593872,0.024527819827198982,0.051203999668359756,0.07355058193206787,0.04516075924038887,-0.009876959957182407,-0.042002201080322266,0.005366669036448002,0.06482570618391037,0.059675052762031555,-0.0791202187538147,0.0017768623074516654,-0.016772525385022163,0.10942868888378143,0.0009312586043961346,-0.03590767830610275,0.03201429918408394,0.06317169219255447,0.03615519031882286,-0.0060033490881323814,0.10274004936218262,0.06700600683689117,0.06798548996448517,-0.03761681169271469,-0.0137809868901968]},{"text":"Plurimus in Iunonis honorem Aptum dicet equis Argos ditisque Mycenas.","book":"Homage to Catalonia","chapter":3,"embedding":[-0.043036844581365585,0.08867071568965912,-0.005305489990860224,-0.07484128326177597,-0.10577313601970673,-0.0667886734008789,0.08823005110025406,0.12982435524463654,0.037887074053287506,0.09346146881580353,0.002703540725633502,-0.0029682822059839964,0.013674783520400524,-0.016345523297786713,-0.05665822699666023,-0.03845321387052536,-0.008415152318775654,0.08779013901948929,-0.001378699322231114,0.006347856484353542,0.038102466613054276,-0.05863545089960098,-0.008456778712570667,0.014759364537894726,-0.05589168518781662,0.12139499187469482,-0.013274574652314186,0.05880296230316162,0.05639692395925522,-0.08743616193532944,-0.037153154611587524,-0.06526529043912888,0.10775791108608246,-0.02402142994105816,-0.04358672350645065,0.08713643252849579,-0.02409767173230648,-0.04237707331776619,0.029214315116405487,0.06872808188199997,-0.05179690569639206,-0.027469497174024582,-0.03200754523277283,0.006466110702604055,-0.0068589975126087666,-0.08521775156259537,-0.06681795418262482,0.07365493476390839,-0.05629057064652443,0.06110331043601036,-0.02187507040798664,-0.049011580646038055,-0.0814070999622345,0.014627087861299515,0.010366324335336685,-0.02967255935072899,-0.030532434582710266,0.0037837547715753317,0.013481727801263332,-0.04899656027555466,-0.012403631582856178,0.007534553296864033,-0.02953498438000679,0.09464436024427414,-0.12470824271440506,0.012150262482464314,-0.0064003015868365765,0.08864593505859375,-0.05913469195365906,0.011756586842238903,0.13514076173305511,0.008541339077055454,-0.009031343273818493,0.05004659295082092,-0.016573691740632057,0.04657532274723053,-0.014159987680613995,-0.07444161921739578,-0.02015336975455284,-0.00315361050888896,-0.005017418414354324,0.03500403091311455,-0.02502499893307686,0.0010991026647388935,-0.04338652640581131,0.0226129200309515,0.0012556019937619567,-0.023850448429584503,0.05270009487867355,-0.026130322366952896,0.04514898732304573,-0.019234279170632362,-0.04824640974402428,-0.028484882786870003,0.0422988198697567,0.05188074707984924,-0.004286047071218491,-0.015916869044303894,-0.05255255475640297,-0.023684049025177956,0.05902976170182228,-0.04384724050760269,-0.05606798082590103,0.033158283680677414,-0.05532574653625488,0.03361520543694496,-0.04718619957566261,-0.10457067936658859,0.01764380931854248,0.046784620732069016,-0.11609755456447601,-0.07518699020147324,-0.055523842573165894,0.026467815041542053,-0.038377050310373306,0.07814077287912369,0.015665162354707718,-0.04882650822401047,0.008166416548192501,-0.05345141515135765,0.02782488986849785,-0.0320717878639698,-0.04371726140379906,-0.04645505174994469,0.033965274691581726,-0.02216891571879387,0.06763624399900436,3.0606465798504905e-33,-0.062411628663539886,-0.09590592235326767,-0.04402429983019829,0.004756368696689606,-0.00561219546943903,-0.08279543370008469,-0.009534942917525768,-0.02468372881412506,-0.01784094236791134,-0.010890933685004711,-0.08104385435581207,0.04558247700333595,0.0018645201344043016,0.039422426372766495,-0.039775777608156204,0.0632893368601799,0.099051333963871,0.02740660309791565,0.02434687316417694,0.022196423262357712,-0.010519033297896385,0.022150488570332527,0.0006520234164781868,-0.024277113378047943,0.012547227554023266,0.0558788925409317,0.030912209302186966,-0.04831988736987114,0.014141448773443699,0.03517606854438782,0.07747415453195572,-0.00441005127504468,-0.016803104430437088,0.0099037392064929,-0.04041524976491928,-0.029860148206353188,0.027968600392341614,-0.0093843350186944,-0.00032200897112488747,-0.03172985091805458,0.0326438844203949,-0.030705291777849197,0.03119855560362339,-0.015004376880824566,0.12178181856870651,-0.035296328365802765,0.03323642536997795,0.01341244950890541,0.045694928616285324,0.011189376935362816,-0.006462934426963329,0.04753193259239197,0.023280328139662743,0.0019408821826800704,-0.051998771727085114,0.039748888462781906,-0.033749669790267944,0.08435835689306259,-0.024062391370534897,-0.02435615472495556,-0.04287686198949814,-0.002817839849740267,0.0680760070681572,0.012676866725087166,0.06158531829714775,-0.06431301683187485,-0.12953603267669678,0.015140039846301079,0.091436468064785,0.030871354043483734,-0.009915294125676155,-0.04794171452522278,-0.11793108284473419,-0.000462113821413368,0.01490582525730133,0.007943566888570786,-0.009446616284549236,0.052438732236623764,-0.07493084669113159,0.000488509249407798,-0.03598145395517349,-0.0019806872587651014,-0.081290602684021,0.04124806448817253,0.09120288491249084,0.03993027284741402,0.036843180656433105,0.01301705464720726,0.07171142101287842,0.06467244029045105,0.04211464524269104,0.05338791012763977,-0.05401049181818962,-0.03068276308476925,0.032010022550821304,-4.002533285294934e-33,-0.015299389138817787,-0.02358373999595642,0.00665561156347394,0.14284661412239075,-0.00465826690196991,0.02628728561103344,-0.08152121305465698,0.11488749086856842,0.014930973760783672,0.05049285292625427,-0.09118208289146423,-0.007609696127474308,0.0030984277836978436,-0.060302119702100754,-0.041014522314071655,0.06434962898492813,-0.010594559833407402,-0.025346729904413223,-0.02268311381340027,-0.01622125320136547,-0.05501320958137512,0.02823619544506073,0.05447043478488922,-0.04540276527404785,0.04206211119890213,-0.016749922186136246,0.02135566622018814,-0.043654847890138626,-0.016411026939749718,0.003838989417999983,0.023309454321861267,-0.019709207117557526,-0.06669031083583832,0.021332545205950737,0.02780485525727272,-0.0341842882335186,0.12503093481063843,-0.01974383369088173,-0.05009421706199646,0.03573308512568474,-0.015512590296566486,0.0085073821246624,0.03646722808480263,0.05525919422507286,0.03899760916829109,-0.02243795059621334,-0.06582605093717575,0.025105295702815056,-0.03984753414988518,-0.08204862475395203,-0.035293132066726685,-0.014000531286001205,0.021785853430628777,0.048928942531347275,0.1429317593574524,-0.04982342943549156,-0.02075601927936077,-0.008181462064385414,-0.021975532174110413,-0.029946910217404366,0.06432926654815674,-0.032579537481069565,-0.09710069745779037,-0.024642888456583023,0.12409930676221848,0.04473666846752167,-0.04717486351728439,0.012502888217568398,-0.02854120172560215,0.07898296415805817,0.07233419269323349,-0.15234211087226868,-0.05124449357390404,-0.04477415606379509,0.0610637329518795,0.0011165501782670617,0.0314779207110405,0.025705872103571892,0.037643685936927795,-0.007292068563401699,-0.028646647930145264,-0.04109213873744011,0.017193647101521492,-0.04232997074723244,-0.033715710043907166,-0.053109750151634216,0.09484218060970306,0.015610945411026478,-0.05867630988359451,0.04824351146817207,0.022212088108062744,0.09523668885231018,0.037692535668611526,-0.014670733362436295,0.0018655088497325778,-2.3923234948597383e-8,0.0537908636033535,-0.04692401736974716,-0.03051222302019596,0.08059334754943848,-0.027256175875663757,-0.08227580785751343,-0.03230512514710426,0.008660723455250263,0.0010673856595531106,0.08451664447784424,-0.020681211724877357,-0.021799122914671898,0.11254969239234924,0.008124036714434624,0.06937714666128159,0.012011016719043255,0.07845853269100189,0.0011451470199972391,-0.0385599210858345,-0.05584968253970146,0.016390888020396233,-0.0536925382912159,0.005160687956959009,-0.03909244388341904,-0.03943351283669472,0.002268456155434251,0.04059448465704918,-0.09675517678260803,0.040837645530700684,0.07134898006916046,-0.027348849922418594,0.038061823695898056,0.02173154056072235,-0.0663975179195404,0.01619044318795204,0.08814896643161774,0.017239034175872803,0.057876765727996826,0.07886656373739243,-0.04728562757372856,0.01906670443713665,-0.022524120286107063,0.059264637529850006,-0.045618318021297455,0.006383719388395548,-0.008002006448805332,0.016840526834130287,0.03694503381848335,0.02861429750919342,-0.0507730096578598,-0.12354156374931335,-0.024143526330590248,0.029107164591550827,-0.03599860146641731,0.014164195396006107,-0.027741730213165283,0.04700994864106178,-0.01669462025165558,-0.026876097545027733,-0.037428583949804306,0.03954005241394043,0.04477917402982712,-0.02654208429157734,-0.06527165323495865]},{"text":"Albus ut obscuro deterget nubila caelo 15 Saepe Notus neque parturit imbris Perpetuo, sic tu sapiens finire memento Tristitiam vitaeque labores Molli, Plance, mero, seu te fulgentia signis Castra tenent seu densa tenebit 20 Tiburis umbra tui.","book":"Homage to Catalonia","chapter":3,"embedding":[-0.04373759776353836,0.1263093650341034,0.006911430973559618,0.021084312349557877,-0.06743678450584412,0.005395336542278528,0.044473808258771896,0.07191214710474014,0.0377131924033165,0.049663711339235306,0.08158565312623978,-0.10920433700084686,0.03851429000496864,0.014083919115364552,-0.10063769668340683,-0.07960552722215652,0.011795700527727604,0.06394613534212112,0.019938308745622635,-0.00789090245962143,0.027322040870785713,0.007335500326007605,-0.021168045699596405,0.0016239919932559133,-0.03197695314884186,-0.00823975820094347,-0.08917834609746933,-0.042901940643787384,0.030453087761998177,-0.055661167949438095,-0.0008979459526017308,0.11486529558897018,0.07358169555664062,-0.032384660094976425,0.03326486423611641,-0.005192386452108622,-0.003719503525644541,-0.006258494686335325,0.042348992079496384,0.04862722009420395,-0.052028022706508636,-0.04110310971736908,-0.11573696881532669,-0.0006348150200210512,-0.019572341814637184,0.006787231657654047,0.03383125737309456,0.07233813405036926,0.025166824460029602,0.04397452250123024,-0.10329025983810425,-0.027593256905674934,-0.015443445183336735,0.000515651423484087,-0.013820075429975986,-0.07184429466724396,-0.007905334234237671,-0.05530936270952225,-0.039021071046590805,0.006542619783431292,0.0020664415787905455,0.07224571704864502,0.0034430159721523523,0.012972370721399784,0.022211596369743347,0.013455311767756939,-0.03748868405818939,-0.025691265240311623,-0.08314835280179977,0.012019455432891846,0.08157392591238022,-0.10726506263017654,0.02727583423256874,0.05250205844640732,-0.052190620452165604,0.07132361084222794,0.024587048217654228,-0.02142726257443428,0.0027574149426072836,-0.11066662520170212,-0.045191410928964615,-0.002007462549954653,-0.034241512417793274,-0.010971732437610626,-0.006162346340715885,-0.021495241671800613,-0.00784357637166977,0.02445267327129841,-0.007103813346475363,0.002346157329156995,-0.059525225311517715,0.018288521096110344,-0.008726571686565876,-0.04893329367041588,-0.0009244868997484446,-0.013017171062529087,-0.05006880685687065,-0.008988458663225174,-0.04093592241406441,0.003473408054560423,-0.008103480562567711,0.04104804992675781,0.06261172890663147,0.04776079207658768,-0.07541855424642563,-0.055775921791791916,-0.0038779922761023045,-0.14668479561805725,0.017232349142432213,0.06808619946241379,-0.03166726231575012,-0.043791513890028,-0.06940628588199615,-0.009113813750445843,0.052920468151569366,-0.001223691739141941,-0.015448749996721745,-0.04897158965468407,-0.05111696198582649,-0.016051720827817917,0.034414369612932205,-0.02634606324136257,-0.024596326053142548,-0.04626712575554848,-0.045616548508405685,-0.1582862138748169,0.08395612984895706,2.3325858967720705e-32,-0.026916544884443283,-0.04525040090084076,-0.09231780469417572,0.05089996010065079,-0.02695738524198532,-0.03248567506670952,-0.054075442254543304,-0.007154214195907116,0.046487219631671906,-0.03569645807147026,-0.05268368124961853,-0.04984760284423828,-0.012114775367081165,0.07231158763170242,0.014589475467801094,0.07033635675907135,0.05858056992292404,-0.03574441373348236,0.010602394118905067,0.0036089743953198195,-0.07858051359653473,0.009565719403326511,0.01894303597509861,-0.052742596715688705,0.04921191930770874,0.02531939558684826,-0.04950270056724548,-0.06972478330135345,-0.013132637366652489,0.0431768037378788,0.07719861716032028,-0.0006214114837348461,-0.017629705369472504,-0.07042752951383591,-0.008499332703649998,-0.03742283210158348,-0.0013960405485704541,-0.055894654244184494,-0.03241047263145447,-0.00359405018389225,0.007971812970936298,0.040113482624292374,0.1005633994936943,-0.002654364798218012,0.06512342393398285,0.10040102899074554,0.08631609380245209,0.03141075000166893,0.07699833065271378,0.00595327140763402,-0.005922500975430012,0.06517770141363144,0.0020911351311951876,-0.08084367960691452,0.0026629806961864233,0.00019187507859896868,-0.0585397370159626,0.061614759266376495,-0.08717284351587296,-0.031257014721632004,-0.02138902246952057,0.009691745042800903,0.009458187967538834,-0.020201506093144417,-0.03263536095619202,0.027193337678909302,-0.06308772414922714,-0.023006070405244827,0.11738136410713196,-0.010881069116294384,-0.10279717296361923,0.029943088069558144,-0.03726642206311226,0.04311606287956238,-0.02716175466775894,0.043186768889427185,0.12073612213134766,-0.05242151767015457,-0.03592618927359581,-0.013573020696640015,-0.029385792091488838,-0.0042992583476006985,0.05065130069851875,-0.09124233573675156,0.13323330879211426,0.05895783379673958,0.0541384220123291,0.03435426577925682,0.07018675655126572,0.04347197711467743,0.03270168974995613,-0.015830349177122116,-0.014494193717837334,0.07420829683542252,0.024178795516490936,-2.1852213699123791e-32,-0.025332635268568993,-0.03889227285981178,-0.06950706243515015,-0.011574286967515945,-0.04343162477016449,-0.03478112071752548,-0.08965858072042465,-0.001710787182673812,-0.028268519788980484,-0.0030928028281778097,-0.06960368156433105,-0.09852996468544006,0.10578028112649918,-0.019014937803149223,-0.05019070580601692,0.09141933172941208,0.10475188493728638,0.006235860288143158,-0.013608379289507866,-0.031170900911092758,-0.05095374956727028,0.030495136976242065,-0.017697369679808617,-0.08935660868883133,-0.0025063417851924896,0.05335865169763565,0.017729714512825012,-0.12740162014961243,-0.03531087189912796,-0.005201431456953287,0.047408077865839005,0.0004728007479570806,-0.07005250453948975,-0.00965816155076027,-0.010192004963755608,-0.01645779050886631,0.08184944838285446,-0.04497241601347923,0.00003374804509803653,-0.008820369839668274,0.039087433367967606,0.03386666998267174,0.058726511895656586,-0.04508161544799805,-0.07428550720214844,-0.04342936724424362,-0.06285127997398376,-0.043832868337631226,-0.020990028977394104,0.015603492967784405,0.13785281777381897,-0.009116817265748978,0.005814385134726763,-0.0852268859744072,0.028021536767482758,-0.010039214976131916,0.04738273844122887,-0.052809976041316986,-0.004562546033412218,-0.022987505421042442,0.054782528430223465,0.025841625407338142,0.004227920435369015,-0.07468702644109726,0.012017990462481976,0.04134703427553177,-0.016762010753154755,0.0987684354186058,-0.04358651116490364,0.03916734829545021,0.05441049486398697,-0.08977484703063965,-0.04373399168252945,-0.04101349785923958,-0.005870145745575428,0.011307858861982822,-0.03330957517027855,0.011053554713726044,-0.021821236237883568,0.05200754106044769,-0.0329931415617466,-0.06280045956373215,-0.044552430510520935,-0.009959694929420948,-0.021053317934274673,-0.04617328569293022,-0.04598810151219368,0.007731306366622448,0.0022798937279731035,0.003747963812202215,-0.0683540478348732,-0.0191627349704504,-0.0003842594742309302,-0.036778271198272705,0.009494898840785027,-6.776441097144925e-8,0.036204420030117035,-0.0550818145275116,0.019485212862491608,-0.013384669087827206,0.03684060648083687,-0.059376392513513565,-0.050499022006988525,-0.0007622534758411348,0.00798876490443945,0.05404944345355034,-0.03944714739918709,-0.011785398237407207,-0.007952612824738026,0.01949419640004635,0.049587272107601166,0.08005338907241821,0.1202792078256607,-0.009463143534958363,-0.026530053466558456,-0.11148597300052643,0.07732782512903214,-0.017968811094760895,-0.0614749975502491,0.0032189080957323313,-0.06293193995952606,0.02709219418466091,0.0058175427839159966,-0.024437397718429565,-0.029587646946310997,-0.0023068119771778584,0.024244647473096848,0.0589793436229229,0.045940130949020386,-0.09080614894628525,0.04781295359134674,0.055330999195575714,0.057143110781908035,0.039402224123477936,-0.022153761237859726,0.08744136244058609,0.08364546298980713,0.0523914135992527,0.06574594974517822,0.05435404181480408,0.06584970653057098,-0.01791359670460224,-0.011142500676214695,0.02667306736111641,-0.031240595504641533,-0.07355833798646927,-0.03161652758717537,-0.0046834079548716545,0.08062967658042908,0.10577083379030228,-0.010769368149340153,-0.0527682900428772,0.080159492790699,-0.017853057011961937,0.008781996555626392,0.017574982717633247,0.048368196934461594,0.047910790890455246,0.06562427431344986,-0.04145660623908043]},{"text":"Nil desperandum Teucro duce et auspice Teucro: Certus enim promisit Apollo, Ambiguam tellure nova Salamina futuram.","book":"Homage to Catalonia","chapter":3,"embedding":[-0.02047107368707657,0.11509490013122559,-0.034638095647096634,0.004833979066461325,-0.05591192469000816,-0.023446032777428627,0.03520573303103447,0.06796933710575104,-0.010331576690077782,0.07222070544958115,0.03557649999856949,-0.11912878602743149,-0.01289672963321209,0.013956413604319096,-0.02965611219406128,-0.03724977746605873,-0.07775063067674637,0.10027728229761124,0.01870129071176052,0.031126506626605988,0.07517498731613159,0.05837003514170647,-0.022518131881952286,0.05092707648873329,-0.06059024855494499,0.06423649936914444,-0.10553338378667831,-0.051675308495759964,0.023111766204237938,-0.11795362830162048,0.05449344590306282,0.10915684700012207,0.07334911823272705,-0.0313020721077919,-0.019392654299736023,0.00567762041464448,-0.047205884009599686,-0.06004279479384422,0.0057677170261740685,0.012633068487048149,-0.07333790510892868,-0.04754157364368439,-0.14339758455753326,-0.02409449778497219,0.011554661206901073,-0.008754868991672993,-0.027868472039699554,0.035705409944057465,0.024056656286120415,0.03972515091300011,-0.0269324854016304,-0.034277983009815216,-0.028584595769643784,-0.02187495306134224,0.01757735386490822,-0.0025229027960449457,-0.04987519606947899,-0.05944415181875229,0.015595508739352226,-0.019284090027213097,0.02313453145325184,0.03484083339571953,-0.046245355159044266,-0.033081211149692535,-0.0006102530751377344,0.021125294268131256,-0.04639396071434021,-0.054467566311359406,-0.05984921380877495,-0.030628250911831856,0.0918082743883133,-0.041711341589689255,0.009014061652123928,0.023615287616848946,-0.09550387412309647,0.06928395479917526,0.009012972004711628,-0.01771797239780426,-0.06504864245653152,-0.10446536540985107,0.05097677931189537,-0.03415696322917938,-0.08345670998096466,-0.008744311518967152,0.07942851632833481,0.0003877672425005585,0.0005707563832402229,-0.06957487761974335,0.03187090903520584,-0.020926855504512787,0.0035308427177369595,-0.0012542323675006628,-0.14264518022537231,-0.011739169247448444,0.020154057070612907,0.00887941662222147,-0.07484054565429688,-0.04770587757229805,0.014852830208837986,0.010463791899383068,0.05398377776145935,0.06281812489032745,-0.023033933714032173,0.016347458586096764,-0.08215484023094177,-0.025638801977038383,-0.061313506215810776,-0.0610693022608757,0.039069611579179764,0.014198945835232735,-0.0509277805685997,-0.0758460983633995,-0.019423725083470345,-0.05778403952717781,-0.00809853058308363,0.04526160657405853,-0.08786264806985855,-0.03643285855650902,-0.03261631354689598,-0.027798429131507874,0.03867650777101517,-0.06124261021614075,0.021816127002239227,-0.03428277373313904,0.025005405768752098,-0.05458460748195648,0.0868682712316513,1.1198427013661172e-32,0.007468408439308405,-0.028815101832151413,-0.03520992770791054,0.036189086735248566,0.015006102621555328,-0.02568821795284748,-0.05431550368666649,0.03728241100907326,0.003957292530685663,-0.0765208899974823,-0.018366876989603043,0.047730494290590286,0.020453864708542824,-0.013761665672063828,0.04311311990022659,0.06923731416463852,0.08735785633325577,-0.06614593416452408,0.02754642255604267,-0.020144591107964516,-0.10732613503932953,0.08053530752658844,-0.015491615049540997,-0.016554396599531174,0.08223868906497955,0.04976218566298485,-0.03932124748826027,-0.05991366505622864,-0.016700133681297302,0.05631052330136299,0.0686526969075203,-0.04505382105708122,-0.05470094457268715,0.023366985842585564,0.037480518221855164,0.05685402452945709,-0.008828834630548954,0.01342669129371643,-0.040560971945524216,0.03669324144721031,0.07067418843507767,-0.00819577556103468,0.06390682607889175,0.03727073222398758,-0.009465421549975872,0.052905816584825516,0.00041936084744520485,0.0070995488204061985,0.07971342653036118,-0.006475010886788368,0.03501446172595024,0.04000357165932655,-0.020434672012925148,-0.05240616574883461,0.0006169136613607407,0.04506372660398483,-0.019704416394233704,0.11946624517440796,-0.05919639393687248,0.014122169464826584,-0.045319173485040665,0.010941308923065662,-0.06168939545750618,-0.0016213790513575077,-0.03767600283026695,-0.0392608605325222,-0.10058940201997757,0.016971632838249207,0.0631084218621254,0.0019229812314733863,-0.12465286254882812,-0.0007917920593172312,0.03076901100575924,0.0450306236743927,-0.012084229849278927,0.019450530409812927,0.060043033212423325,0.007071921601891518,0.004277798812836409,-0.033456847071647644,-0.09961650520563126,0.0649925246834755,-0.04372357204556465,0.022230664268136024,0.0935499370098114,-0.006376537960022688,0.0028610513545572758,0.059845007956027985,0.03766616806387901,0.05606962740421295,0.042750485241413116,0.045939914882183075,0.05218970775604248,-0.01396801508963108,0.030983977019786835,-1.1828490516333979e-32,0.037410859018564224,-0.019599152728915215,-0.05994878336787224,0.07366263121366501,0.01196879893541336,0.04410037398338318,-0.09409214556217194,0.04871769994497299,-0.13388292491436005,-0.03612126037478447,0.012501463294029236,-0.0877021923661232,0.05525257810950279,-0.007852301001548767,0.013812790624797344,0.006816818378865719,0.01804548315703869,0.08641185611486435,-0.07337108999490738,0.03835271671414375,0.04438866674900055,0.06148244068026543,0.023177655413746834,-0.1383727490901947,-0.013814803212881088,0.04995052143931389,-0.026263531297445297,-0.06278091669082642,0.01147027499973774,-0.0038687577471137047,0.008778700605034828,-0.00391186261549592,-0.030322346836328506,0.04290184751152992,-0.043738339096307755,0.06637553870677948,0.10429937392473221,-0.021288609132170677,0.007844866253435612,0.07382401078939438,-0.05071954429149628,0.07745560258626938,0.053157344460487366,-0.020109958946704865,0.04695301502943039,-0.0379348024725914,0.016512129455804825,-0.014411441050469875,-0.0645611584186554,0.018832240253686905,0.158192440867424,-0.03837476670742035,-0.030227094888687134,-0.06405263394117355,0.030065353959798813,-0.048922378569841385,-0.010153237730264664,-0.09338369965553284,-0.027669411152601242,0.018502889201045036,0.05749394744634628,-0.00034358323318883777,0.012103953398764133,-0.045398157089948654,0.011740555055439472,-0.012327357195317745,-0.003704244503751397,0.10365481674671173,0.0133278863504529,0.04858251288533211,0.004781221505254507,-0.06410964578390121,-0.009906494058668613,0.0634935051202774,-0.010998619720339775,0.037125423550605774,-0.05750107392668724,-0.0029256257694214582,0.04099590703845024,-0.02462502382695675,-0.13590660691261292,0.010171917267143726,-0.04500787705183029,0.009715930558741093,0.03888557106256485,0.019396862015128136,0.029825488105416298,-0.059812992811203,0.01315302774310112,-0.07991015166044235,0.010650401934981346,-0.004873692058026791,0.013580928556621075,-0.00948413461446762,0.03481866046786308,-4.1635654923766197e-8,-0.024922020733356476,-0.05825434625148773,-0.05506688728928566,0.053606174886226654,0.14557534456253052,-0.041029706597328186,0.0365033820271492,-0.014573085121810436,-0.03533882275223732,-0.0024718802887946367,-0.03862171247601509,0.05270334705710411,-0.013255462981760502,0.011456486769020557,0.02793825790286064,0.0670250654220581,0.09026598185300827,0.011891191825270653,-0.014495962299406528,-0.06504809111356735,0.05719983950257301,-0.026303807273507118,-0.033436525613069534,-0.04255685582756996,-0.04424777626991272,-0.04239949956536293,0.03355831652879715,-0.026744645088911057,-0.06331698596477509,-0.012107505463063717,-0.03574540093541145,-0.00387193588539958,-0.0379156731069088,-0.08642687648534775,0.05146636813879013,0.017067790031433105,0.05402269586920738,-0.0181925930082798,-0.027496444061398506,0.041563451290130615,0.07423149794340134,0.03085329569876194,-0.015651928260922432,0.05141457915306091,0.02753942832350731,-0.018841508775949478,0.06575611233711243,0.0386614128947258,-0.04472241923213005,-0.021893836557865143,-0.05928221717476845,-0.03472801670432091,0.09171781688928604,-0.03737626224756241,-0.08351553231477737,0.06162271648645401,0.026127690449357033,0.01260005310177803,-0.03697066754102707,-0.016053669154644012,0.07448484748601913,0.06576741486787796,0.015511095523834229,-0.00462457025423646]},{"text":"Lydia, dic, per omnis Te deos oro, Sybarin cur properes amando Perdere; cur apricum Oderit campum, patiens pulveris atque solis?","book":"Homage to Catalonia","chapter":3,"embedding":[-0.07279986888170242,0.03496218100190163,0.005615353584289551,-0.05551238730549812,-0.06791462749242783,-0.03665861859917641,0.014522960409522057,0.03126649558544159,0.013735590502619743,0.07843536883592606,0.039626531302928925,-0.08788974583148956,0.017511630430817604,-0.06175682693719864,-0.09614798426628113,-0.011228767223656178,-0.04065992683172226,0.01012659166008234,0.0375777930021286,0.05211358144879341,-0.06850257515907288,0.006918302737176418,0.0010283449664711952,0.056088682264089584,-0.052923478186130524,-0.010453840717673302,-0.009015432558953762,0.006071041338145733,0.06610316783189774,-0.026003055274486542,-0.015382143668830395,0.06338423490524292,0.10680311918258667,-0.01796572282910347,-0.03142378479242325,0.05359391123056412,-0.02961292862892151,-0.03929074853658676,0.019773002713918686,0.055989500135183334,-0.09876475483179092,-0.013822710141539574,-0.04753904417157173,-0.04068604111671448,-0.09558606147766113,-0.060809504240751266,0.010971161536872387,0.0817490890622139,-0.03218677639961243,-0.06685369461774826,-0.0057062190026044846,0.03659651428461075,-0.052509937435388565,-0.040190406143665314,-0.039605770260095596,-0.023163778707385063,-0.05322885885834694,-0.13352426886558533,0.014632539823651314,-0.07810826599597931,-0.03370087593793869,0.05155845358967781,-0.09550916403532028,0.012360027991235256,-0.04064837098121643,0.012531130574643612,0.03032597154378891,0.025318028405308723,0.025662774220108986,0.012452663853764534,0.0574488639831543,0.012765386141836643,0.025017576292157173,-0.042474642395973206,-0.019789692014455795,0.04904503375291824,0.016136551275849342,-0.05067262798547745,-0.05978255718946457,-0.08461543172597885,-0.0186604093760252,0.0830565020442009,0.06635238975286484,-0.05278845876455307,-0.006076752673834562,0.03321367874741554,0.011517039500176907,-0.005096884444355965,0.08724356442689896,-0.06031530722975731,-0.016818752512335777,0.06065664812922478,-0.10770697891712189,-0.004326225724071264,-0.01739157736301422,0.04552876576781273,0.02753964252769947,-0.03131227195262909,-0.004916755482554436,0.015139606781303883,0.062280863523483276,0.031072791665792465,-0.06753183156251907,0.01855529472231865,-0.03387296944856644,-0.04810308292508125,0.01509727444499731,-0.039902884513139725,0.018806667998433113,0.03429615870118141,-0.01931474730372429,-0.042533595114946365,-0.09370844811201096,-0.0015386317390948534,-0.023795409128069878,-0.0315617211163044,0.02022322453558445,-0.10657969117164612,0.01541757583618164,-0.04919204115867615,-0.048296935856342316,-0.007913467474281788,-0.03962946683168411,-0.018702048808336258,0.09395018965005875,-0.027509110048413277,0.10930546373128891,6.955530112878035e-33,-0.08020496368408203,-0.018263252452015877,-0.004483423661440611,0.018351729959249496,0.04949747398495674,0.045789361000061035,-0.09353765845298767,-0.06534747034311295,0.059171389788389206,-0.0784517228603363,-0.09568162262439728,-0.0006758450181223452,-0.04525692015886307,0.007245330139994621,0.010410741902887821,-0.05057539790868759,0.11868657916784286,-0.010726002044975758,-0.016241220757365227,-0.02001413144171238,-0.006778378505259752,0.12455253303050995,-0.009844258427619934,-0.0017745645018294454,0.05209938436746597,0.02466663345694542,0.038929376751184464,-0.016850866377353668,-0.0024546345230191946,0.002197728957980871,0.09895575046539307,-0.06964584439992905,0.06664133071899414,-0.010105028748512268,0.024875657632946968,0.05853221192955971,-0.03603888303041458,0.04788701608777046,0.04463833197951317,0.013850678689777851,0.007456337101757526,0.02643742971122265,0.04521738365292549,0.03555211424827576,0.014111417345702648,0.005323713179677725,0.06470014899969101,0.03936532884836197,-0.0407743975520134,-0.03005729801952839,-0.019148971885442734,0.0644487664103508,-0.055937886238098145,0.009970171377062798,-0.039513662457466125,-0.02935641258955002,-0.03002064675092697,0.0453043095767498,0.008070722222328186,0.05061159282922745,0.05208287015557289,-0.03637799248099327,0.021931122988462448,-0.03205421194434166,0.045150358229875565,-0.1302364319562912,-0.06297319382429123,0.060410965234041214,0.14942558109760284,0.020701361820101738,-0.0801675096154213,0.028376657515764236,0.007242751307785511,0.11050663888454437,0.015124923549592495,0.08128656446933746,0.05677195265889168,0.01482299529016018,-0.013309772126376629,0.0009016042458824813,-0.10268478840589523,0.0007179160020314157,-0.043628986924886703,0.0666302740573883,-0.017797324806451797,-0.007834765128791332,-0.005509607493877411,0.07859429717063904,0.054837413132190704,0.005697748623788357,0.01375135313719511,0.07320807874202728,-0.02337787114083767,-0.07512495666742325,0.012475480325520039,-8.474865377523473e-33,-0.0016964321257546544,-0.018994657322764397,-0.019078563898801804,0.042566604912281036,-0.005651284474879503,0.04902191460132599,-0.04972198233008385,0.01861472986638546,0.01168028824031353,-0.06643073260784149,-0.055975738912820816,-0.023885497823357582,0.08639107644557953,-0.09488622099161148,0.0030662459321320057,0.09883815050125122,0.003953834995627403,0.03720240294933319,-0.07847567647695541,0.013487971387803555,-0.08758481591939926,-0.0036855721846222878,-0.010908962227404118,-0.09535151720046997,-0.007359458599239588,-0.013198453933000565,0.0334029495716095,-0.014055007137358189,-0.07788863778114319,0.06226838007569313,0.1078704223036766,-0.026727253571152687,-0.01150062121450901,0.06849223375320435,0.0074820974841713905,-0.024286098778247833,0.08656740188598633,0.02226269245147705,-0.03445734083652496,0.05269885063171387,0.03746833652257919,0.07621438056230545,0.037654466927051544,0.04763117432594299,0.017027627676725388,0.024979878216981888,-0.029986007139086723,-0.08726485818624496,-0.04867224022746086,0.03142479434609413,0.06782560795545578,-0.01563136652112007,0.08847855776548386,-0.039641015231609344,0.10620710253715515,-0.06372712552547455,0.0353660061955452,-0.05054433271288872,0.0006762755219824612,-0.017480667680501938,0.030641017481684685,0.015804195776581764,-0.020040424540638924,0.01742183417081833,0.03519507497549057,-0.10975639522075653,-0.054604120552539825,0.11754608899354935,-0.011433270759880543,-0.04835560545325279,0.0399235263466835,-0.06387737393379211,-0.09202592074871063,-0.061932794749736786,-0.023607894778251648,0.06363038718700409,-0.01105327159166336,-0.014307287521660328,0.024397224187850952,0.01580875553190708,-0.12475361675024033,-0.05072835832834244,-0.010443867184221745,-0.017787091434001923,-0.07074222713708878,0.006463109981268644,0.13157619535923004,0.027249040082097054,0.003472700947895646,0.003722609719261527,0.017961286008358,-0.012061066925525665,0.026842471212148666,-0.04824284464120865,0.03499913960695267,-3.805912385246302e-8,-0.0008210250525735319,-0.11041951179504395,-0.041220713406801224,0.045117445290088654,-0.004120280500501394,-0.025952640920877457,0.0048189591616392136,0.032670531421899796,-0.06289823353290558,0.10692158341407776,0.0401381216943264,0.026199953630566597,-0.058935876935720444,-0.03305777907371521,0.01991402730345726,0.05873222276568413,0.08008603751659393,0.032012470066547394,-0.05062447860836983,-0.11284510046243668,-0.02531440369784832,0.03562583774328232,-0.021393390372395515,-0.055505819618701935,-0.04915023222565651,0.0364714041352272,-0.0078006586991250515,-0.03345077484846115,-0.043334901332855225,-0.027584968134760857,0.08031153678894043,-0.0033591061364859343,-0.007521175313740969,-0.1013849601149559,0.06455922871828079,0.03065689094364643,0.01634613424539566,0.006218265742063522,0.020085621625185013,0.039970092475414276,0.0510016605257988,0.01568520814180374,0.03796858340501785,-0.038313645869493484,0.005710606928914785,0.00905480608344078,0.0021063077729195356,0.040124621242284775,0.01663694903254509,-0.01481139287352562,-0.03063734993338585,0.04021836072206497,0.07900351285934448,-0.031032470986247063,0.018285293132066727,-0.0521564856171608,-0.040796469897031784,0.0013826830545440316,-0.01973937824368477,-0.03252331167459488,0.03436172008514404,0.10968533903360367,0.0022843298502266407,-0.0343053825199604]},{"text":"Cur timet flavum Tiberim tangere?","book":"Homage to Catalonia","chapter":3,"embedding":[-0.11964306235313416,-0.036083608865737915,-0.07371319085359573,0.03026532009243965,-0.026335006579756737,0.04189877212047577,0.1192471906542778,0.055823080241680145,0.07486407458782196,-0.06766307353973389,0.08598922193050385,-0.0525209978222847,-0.03618895635008812,-0.023318354040384293,-0.07021302729845047,-0.07308261841535568,-0.03958054631948471,0.08243424445390701,-0.02674357034265995,-0.0596100389957428,-0.09700354188680649,-0.06741026043891907,0.04760662093758583,0.001812837552279234,-0.07205206155776978,-0.003753479802981019,0.0052445209585130215,0.026600796729326248,0.02430599555373192,-0.04021695628762245,0.05805566906929016,0.12072461098432541,-0.0007855317089706659,0.04959362372756004,-0.10466010123491287,-0.038277484476566315,0.0202633049339056,-0.045789625495672226,0.05667545646429062,0.05140696093440056,-0.056993432343006134,0.05322122201323509,0.03436977043747902,-0.055818844586610794,0.042905744165182114,-0.03877536207437515,0.02013254724442959,0.021986037492752075,0.03242705389857292,0.07370025664567947,-0.022753451019525528,0.06489972770214081,-0.03910018876194954,-0.0863533616065979,0.04867614060640335,0.0036389597225934267,0.023438572883605957,0.010010923258960247,-0.006636349484324455,0.0490926057100296,0.021217169240117073,-0.05342850461602211,-0.023527726531028748,0.004181451629847288,0.035349905490875244,-0.04338732734322548,-0.04638594016432762,0.028426235541701317,0.017371920868754387,0.011949782259762287,0.07287697494029999,-0.011493309400975704,-0.0867827758193016,0.08814241737127304,-0.07352842390537262,0.04172585904598236,-0.0023870118893682957,0.035892657935619354,-0.0773431658744812,-0.0402425080537796,-0.029944412410259247,-0.005053091328591108,0.03904242068529129,0.025989707559347153,-0.004800572991371155,0.018121914938092232,0.01309647411108017,0.08444380760192871,0.04311257600784302,-0.010668768547475338,0.04981151595711708,0.0889839380979538,-0.13380421698093414,-0.004667462781071663,-0.05388476327061653,-0.024664685130119324,0.05054178461432457,0.04647554084658623,-0.09487202018499374,0.055607859045267105,0.027894141152501106,-0.028253676369786263,-0.013108574785292149,0.0452091284096241,-0.05481633171439171,-0.05757557228207588,0.038107480853796005,-0.05423612520098686,0.030317282304167747,0.03889388218522072,-0.009595147334039211,-0.036049071699380875,-0.04530423507094383,-0.06165892630815506,0.04697204381227493,0.009941951371729374,0.004378580022603273,-0.0594109371304512,-0.0039810859598219395,-0.04726754128932953,0.004733705893158913,0.04231629893183708,0.014727987349033356,-0.030743684619665146,-0.010537909343838692,-0.11187524348497391,0.0876421257853508,3.2080460409329204e-33,-0.044125914573669434,-0.07857010513544083,-0.04362661764025688,0.003633884945884347,0.09291993826627731,0.015125536359846592,-0.029236728325486183,-0.04312288761138916,0.01754891499876976,0.00761311873793602,-0.03099561296403408,-0.07110767811536789,-0.07756897807121277,-0.055076103657484055,0.02728833444416523,-0.028041815385222435,-0.007963624782860279,-0.06576812267303467,-0.01320537831634283,-0.1048860177397728,-0.020975539460778236,0.04221427068114281,-0.020593367516994476,0.04284188896417618,-0.023861907422542572,-0.01068028062582016,0.03404809907078743,-0.006736266426742077,0.02192055620253086,0.018323339521884918,0.04335273057222366,-0.018897516652941704,0.013412225060164928,-0.033941712230443954,0.026337340474128723,-0.017633380368351936,-0.0621633306145668,-0.0200005155056715,0.006335212383419275,0.028052430599927902,0.0480043962597847,-0.019150318577885628,0.04308371990919113,0.06996143609285355,-0.024214209988713264,0.016163349151611328,0.01445737387984991,0.0504828616976738,0.05093451216816902,-0.0168534554541111,-0.014642467722296715,-0.0026843221858143806,0.042096737772226334,0.015284877270460129,0.022766565904021263,0.03195839002728462,-0.06147075444459915,0.024968517944216728,0.018574204295873642,0.021409256383776665,0.038910239934921265,-0.05191335454583168,0.004467503167688847,-0.03335583955049515,-0.042236991226673126,-0.015049686655402184,-0.028140811249613762,-0.049621231853961945,0.14480243623256683,0.03223235160112381,-0.003083860268816352,0.0007783840992487967,-0.030757036060094833,0.05143748223781586,0.019909249618649483,0.04340168088674545,0.057783517986536026,0.012039871886372566,-0.053871359676122665,0.024881714954972267,-0.10769621282815933,-0.004208715632557869,0.08789737522602081,0.08367408066987991,-0.00931523647159338,0.03524630889296532,0.009326412342488766,-0.009654851630330086,0.04274200275540352,0.07256319373846054,-0.06268917769193649,0.056535035371780396,0.031774573028087616,-0.032683663070201874,0.024047015234827995,-1.817698138745197e-33,0.026822226122021675,0.008594628423452377,-0.012534959241747856,0.11126180738210678,-0.03307614475488663,-0.044194482266902924,-0.055045221000909805,0.05894775316119194,0.0643392950296402,-0.03780917450785637,0.04945070669054985,-0.1274925172328949,0.08831761032342911,-0.058271393179893494,0.033627577126026154,0.042962174862623215,0.11387123912572861,0.12190458923578262,-0.07460542768239975,0.01659599132835865,-0.1155509352684021,0.007117819972336292,-0.024831557646393776,-0.03756021335721016,-0.02672213688492775,0.013460689224302769,0.056439246982336044,-0.0792405754327774,-0.09533478319644928,0.030025402083992958,0.0679231584072113,-0.02870384231209755,-0.028403684496879578,0.06273521482944489,0.002616551471874118,0.04467945918440819,0.10837634652853012,-0.07568296045064926,-0.0527188740670681,0.0703735500574112,0.06055901199579239,0.04208844527602196,-0.034763965755701065,0.026955053210258484,0.0005753029836341739,0.012740498408675194,-0.06991156190633774,-0.004961027298122644,-0.051857538521289825,0.03331165760755539,-0.0006052455282770097,0.009649703279137611,0.007417087443172932,-0.03817863389849663,0.07255374640226364,-0.04394381120800972,0.04619274660944939,-0.10915979743003845,-0.09606590867042542,-0.011455158703029156,0.060538146644830704,-0.03073045425117016,0.027909783646464348,-0.033693164587020874,0.08036337792873383,0.026905115693807602,-0.03337473049759865,0.04698063060641289,0.02416021004319191,0.053464096039533615,0.11201147735118866,-0.040875036269426346,0.0067489659413695335,0.07294021546840668,-0.06768961995840073,0.006287600379437208,0.02787727862596512,0.12721627950668335,0.01008518598973751,-0.03455695882439613,-0.061487432569265366,0.007882130332291126,-0.03686496987938881,-0.07471731305122375,-0.04283894971013069,-0.04118625819683075,0.043548665940761566,-0.04779719561338425,0.056763287633657455,-0.03265703469514847,0.019983692094683647,-0.01582457311451435,-0.013312210328876972,0.022831490263342857,-0.00041616297676227987,-1.904117219453383e-8,0.0060912384651601315,-0.05614660307765007,-0.058292582631111145,0.04346741363406181,0.03903671354055405,-0.006986881140619516,0.005566653795540333,-0.0017199546564370394,-0.07044655084609985,0.07283110171556473,0.03821556270122528,0.060171857476234436,-0.055079132318496704,0.05017805099487305,-0.039278797805309296,0.04956381767988205,0.05008046701550484,0.02092079073190689,-0.0005724119255319238,-0.06997762620449066,-0.0130653390660882,0.013583885505795479,0.0330270379781723,-0.05968645215034485,-0.06809046864509583,0.056717827916145325,-0.034460946917533875,0.06739024072885513,0.10222858935594559,0.005425421055406332,0.042290184646844864,-0.009812780655920506,-0.010200089775025845,-0.05422896891832352,-0.0793888121843338,0.0018933714600279927,-0.044341545552015305,0.03567114844918251,-0.013077897019684315,0.0977652370929718,0.010419606231153011,0.07998913526535034,0.03181751072406769,-0.006279971916228533,-0.00614983169361949,-0.08881308883428574,-0.042528558522462845,0.024444978684186935,0.01603548973798752,-0.022801872342824936,-0.04975868761539459,0.06690136343240738,0.09222784638404846,-0.017929336056113243,0.03102071024477482,0.03226712346076965,0.018419278785586357,0.0072625782340765,-0.10155554860830307,-0.037706613540649414,-0.01389340590685606,0.048298925161361694,0.05386854708194733,-0.05707148462533951]},{"text":"Quid latet, ut marinae Filium dicunt Thetidis sub lacrimosa Troiae Funera, ne virilis 15 Cultus in caedem et Lycias proriperet catervas?","book":"Homage to Catalonia","chapter":3,"embedding":[0.014242995530366898,-0.021304849535226822,-0.05802827328443527,-0.012210235930979252,-0.06335287541151047,-0.05005276948213577,0.015587336383759975,0.08749029040336609,0.05111150071024895,0.002409806475043297,0.13467569649219513,-0.15130558609962463,-0.021083712577819824,-0.002335241064429283,-0.06470757722854614,-0.10412413626909256,-0.06661095470190048,0.06694391369819641,-0.04416670277714729,0.04208014905452728,-0.02251564897596836,0.0049005975015461445,0.01018833089619875,0.09566441178321838,-0.011188877746462822,-0.03624347969889641,-0.0339675210416317,-0.013656271621584892,0.01428381260484457,-0.020185396075248718,-0.015731925144791603,0.06919745355844498,0.05851558595895767,-0.037739623337984085,0.006051062606275082,-0.008582021109759808,-0.0033750594593584538,-0.07920177280902863,0.0713859274983406,0.027673399075865746,-0.05330945551395416,-0.027333611622452736,0.009428981691598892,0.016714872792363167,-0.06913360208272934,-0.0023652322124689817,-0.014491467736661434,0.05597145855426788,-0.0009441478759981692,-0.009171346202492714,-0.08043309301137924,-0.0018037825357168913,-0.0241862740367651,0.08025963604450226,-0.028276847675442696,-0.020085899159312248,-0.006484263576567173,-0.04613408446311951,0.029245780780911446,-0.0109805753454566,0.058571211993694305,0.03645235672593117,-0.020797183737158775,0.02636958286166191,-0.04422727972269058,0.0020155226811766624,-0.05601910874247551,-0.05612805858254433,-0.04971378669142723,-0.027448877692222595,0.03776009380817413,-0.06789235025644302,-0.01807456463575363,0.009675527922809124,-0.009877871721982956,0.0987677127122879,-0.009128407575190067,-0.051744524389505386,-0.03769611939787865,-0.06441736966371536,0.011249449104070663,0.0066863782703876495,-0.005587258376181126,0.029824545606970787,0.015970993787050247,-0.028788898140192032,0.05081188678741455,0.006344078574329615,0.04416433349251747,-0.0393499918282032,0.018747013062238693,0.03245791792869568,-0.06736211478710175,-0.09986185282468796,-0.09984520077705383,0.02578209899365902,-0.033860549330711365,-0.05877506360411644,0.00839411560446024,0.014660215936601162,-0.021176278591156006,-0.052412960678339005,-0.06247754395008087,0.01260647363960743,-0.17521560192108154,-0.030821895226836205,0.0022706107702106237,-0.04453209042549133,0.0367274284362793,0.01581835001707077,-0.09916465729475021,0.005171740893274546,-0.06271049380302429,-0.0241086445748806,0.02578023076057434,0.06744792312383652,0.07172416150569916,-0.11202415823936462,0.03763438016176224,-0.04464450478553772,-0.013723639771342278,-0.035616759210824966,0.061487652361392975,-0.026393268257379532,0.04505254700779915,-0.02650032564997673,0.025618400424718857,9.027629841054145e-33,-0.007533894386142492,-0.09072811156511307,0.018243182450532913,-0.005973310675472021,0.10151993483304977,-0.05542834475636482,-0.07135161757469177,-0.05400969088077545,-0.025800559669733047,-0.10812879353761673,-0.06656918674707413,-0.04253244772553444,-0.014278136193752289,-0.08115179091691971,0.020020993426442146,0.032899003475904465,0.010452166199684143,-0.10108567774295807,-0.012277300469577312,-0.014434744603931904,-0.055382322520017624,0.09098060429096222,0.04135492071509361,0.037733130156993866,0.05051600933074951,-0.037717483937740326,0.011051674373447895,-0.015551463700830936,-0.012583160772919655,0.029520008713006973,0.02010992169380188,-0.10356871038675308,-0.06346918642520905,0.028553487733006477,0.048179179430007935,0.07820695638656616,0.03140690177679062,-0.020549841225147247,-0.045652035623788834,0.002687087981030345,0.007280717603862286,0.04530661553144455,0.10728529840707779,0.050037406384944916,0.01586347259581089,0.07794568687677383,0.05154980719089508,0.028877928853034973,0.051158007234334946,0.05605309456586838,0.037739649415016174,0.04460278898477554,-0.0633588582277298,-0.06689313799142838,-0.004795379471033812,0.06592931598424911,-0.052276138216257095,0.0786370113492012,0.0023328252136707306,0.009052560664713383,0.06507818400859833,-0.017350876703858376,0.01411223504692316,0.006484896410256624,-0.007894695736467838,0.057170189917087555,-0.013039891608059406,0.012243570759892464,0.13815651834011078,-0.0036668532993644476,-0.09585651010274887,-0.03581102192401886,-0.007985801436007023,0.020879246294498444,0.007729404605925083,0.08657300472259521,0.010284358635544777,-0.10420401394367218,-0.059712499380111694,0.035107310861349106,-0.06575650721788406,-0.05132274329662323,-0.043986305594444275,0.0321841724216938,0.011913136579096317,-0.0331578254699707,-0.002581313019618392,0.037887249141931534,0.08273082226514816,-0.005452456884086132,0.05865682289004326,0.05179018899798393,0.08571474999189377,-0.04688256233930588,0.02625969983637333,-8.870378818956863e-33,-0.010742626152932644,-0.03824780136346817,-0.021468641236424446,0.028834154829382896,-0.028096595779061317,-0.025213515385985374,-0.06169097498059273,0.04037751629948616,0.03314369171857834,-0.0243377648293972,-0.008427584543824196,-0.04563744738698006,0.025186311453580856,-0.054380908608436584,-0.09433218836784363,0.11514456570148468,0.06486060470342636,-0.0035809942055493593,0.0365387499332428,-0.004883666522800922,-0.051405102014541626,0.10343676805496216,0.005635842680931091,-0.010799668729305267,-0.0006411677459254861,0.013553165830671787,0.022838043048977852,0.03410281240940094,-0.0704442486166954,-0.06772098690271378,0.07079275697469711,-0.050045691430568695,0.00888020358979702,-0.001975356601178646,-0.05810774862766266,0.002692840062081814,0.11181893944740295,-0.036197733134031296,0.009195174090564251,-0.013236421160399914,-0.006115516182035208,0.03345049172639847,0.08061714470386505,0.030739979818463326,-0.0605853833258152,0.005261403974145651,-0.03913024440407753,-0.047256264835596085,-0.05890028178691864,0.024258919060230255,0.05783219262957573,-0.02357778325676918,0.04128873348236084,-0.002299519721418619,0.06816214323043823,0.04717214033007622,0.02953917533159256,0.06931271404027939,-0.02942420355975628,0.034053754061460495,0.07670111209154129,0.03657595068216324,-0.016636399552226067,-0.06245329976081848,0.10390108823776245,-0.02433755435049534,-0.11748985946178436,0.03897454962134361,-0.028928644955158234,0.05917246267199516,0.0694911777973175,-0.018468299880623817,-0.06555075943470001,-0.0027385177090764046,-0.03913560509681702,0.017238780856132507,-0.005169647745788097,-0.04708503559231758,0.00907848123461008,0.0182895939797163,-0.008946669287979603,-0.033489521592855453,-0.039515215903520584,-0.03573323041200638,-0.057606589049100876,-0.0698174238204956,0.04134635627269745,0.011636245995759964,0.027391759678721428,0.007384863682091236,-0.015993870794773102,-0.040711384266614914,0.06326356530189514,0.012829083018004894,0.0991152673959732,-3.63893626342815e-8,0.02946639060974121,-0.0637240931391716,-0.11733302474021912,0.0615227147936821,0.06491751223802567,-0.09382958710193634,-0.029303748160600662,0.04606145620346069,0.019134901463985443,0.05248701199889183,-0.007724462542682886,0.05127681419253349,-0.044394079595804214,0.053963810205459595,0.041283298283815384,0.03353482857346535,0.05569891259074211,0.029016884043812752,-0.056664783507585526,-0.028297200798988342,0.042537614703178406,-0.007707309443503618,-0.09706689417362213,-0.05655893310904503,-0.05923142656683922,0.02615373767912388,0.01546701230108738,-0.02195337414741516,0.004001731984317303,-0.06076198071241379,0.03248642385005951,0.06113407388329506,-0.023981411010026932,-0.08756112307310104,-0.006730498746037483,0.05326332896947861,-0.11233244091272354,0.015247033908963203,-0.004647484049201012,0.09390227496623993,0.07885642349720001,-0.029495295137166977,0.0012655650498345494,-0.007419695146381855,-0.020583489909768105,0.02151614986360073,-0.022825531661510468,0.012251830659806728,0.026365632191300392,0.025360973551869392,0.026497969403862953,-0.021525699645280838,0.12461680918931961,0.04019986838102341,-0.0013828211231157184,-0.021588141098618507,0.07210604101419449,0.07064732164144516,-0.015589416027069092,-0.021033043041825294,0.01027318462729454,0.0772605761885643,0.10559440404176712,-0.010239562951028347]},{"text":"Dissolve frigus ligna super foco 5 Large reponens atque benignius Deprome quadrimum Sabina, O Thaliarche, merum diota.","book":"Homage to Catalonia","chapter":3,"embedding":[-0.08055798709392548,-0.03733133152127266,-0.07991436123847961,-0.024758953601121902,0.027177171781659126,0.03222225233912468,-0.048849981278181076,0.06246873736381531,0.014442077837884426,-0.026031866669654846,0.09081609547138214,0.0008150539360940456,-0.03730028495192528,-0.03169848024845123,-0.10999912023544312,-0.030284035950899124,-0.04848439246416092,0.06247246637940407,-0.04150496423244476,0.02796955779194832,0.08343001455068588,-0.051953285932540894,-0.014519025571644306,0.003984111826866865,-0.05379508063197136,0.06966935098171234,-0.03414427116513252,0.032827142626047134,0.035356055945158005,-0.11686205863952637,0.07481063157320023,0.11428152769804001,0.015063654631376266,-0.0400477834045887,0.0030340137891471386,0.0484282448887825,-0.05657551810145378,-0.046707186847925186,0.11313950270414352,-0.02214032970368862,0.08011867105960846,-0.04525929316878319,-0.006208883598446846,-0.03576895222067833,0.004723352380096912,-0.042143210768699646,-0.017344443127512932,0.10646513104438782,0.08149395883083344,-0.02177230268716812,-0.0018239151686429977,-0.047782085835933685,-0.04593328386545181,0.06137750670313835,-0.06298507750034332,0.018993865698575974,-0.06471896171569824,-0.057877130806446075,-0.00401800824329257,0.02365807443857193,0.02420842833817005,0.05533769726753235,-0.029084129258990288,-0.03987938165664673,-0.05857039988040924,0.02907978743314743,-0.013454430736601353,0.01884867623448372,-0.01662871241569519,0.043588828295469284,0.10389859974384308,0.051337629556655884,0.06402324140071869,0.02527136541903019,-0.04449060931801796,0.08732558786869049,-0.010193165391683578,-0.11016251891851425,-0.030846720561385155,0.04523886367678642,-0.012359768152236938,0.008021334186196327,0.09349878132343292,0.009861764498054981,0.05128972604870796,-0.03025834821164608,0.03986522555351257,-0.05347180366516113,0.047208819538354874,-0.022547675296664238,0.0379069484770298,0.12164069712162018,-0.015954861417412758,-0.08657477796077728,-0.042367562651634216,0.0857463851571083,0.03955686837434769,0.012683012522757053,-0.05330018699169159,0.02274789847433567,0.03809044137597084,-0.06468145549297333,-0.045915476977825165,-0.11652135103940964,-0.07337647676467896,-0.0004367717483546585,-0.06564921885728836,0.03731386363506317,0.02711632288992405,-0.027926761656999588,-0.028215456753969193,-0.05500423535704613,-0.049931600689888,-0.03637763857841492,-0.04724965989589691,0.0812811329960823,-0.00950921606272459,-0.09010981768369675,-0.11608143150806427,-0.15278196334838867,-0.04261627793312073,0.006735503673553467,0.024069227278232574,-0.04221171513199806,0.002631021663546562,0.017654314637184143,-0.029157605022192,9.70995802661642e-33,-0.005188410636037588,0.0077415830455720425,-0.040873005986213684,-0.007501484826207161,-0.0059387460350990295,-0.04707792028784752,-0.04818199947476387,0.0279183741658926,-0.040821611881256104,-0.01024199090898037,-0.07311250269412994,0.00006257898348849267,-0.02772027999162674,-0.06151822209358215,-0.05742749199271202,-0.06265092641115189,0.11611808836460114,-0.0016721647698432207,0.019694902002811432,-0.07274031639099121,0.036286719143390656,0.06428838521242142,0.03419611603021622,-0.03253033012151718,0.07514572143554688,0.05846703052520752,0.08116842806339264,-0.0048158359713852406,0.07100632041692734,0.025611665099859238,0.0828927755355835,-0.0424564890563488,-0.07820101082324982,0.02016337960958481,0.06842460483312607,0.0007472010911442339,-0.0467727966606617,0.00448767002671957,-0.0833074226975441,-0.02461647242307663,0.07145285606384277,0.0449334979057312,0.017954746261239052,-0.038047317415475845,0.08530236780643463,-0.017712192609906197,0.01968369260430336,0.029784033074975014,0.06506967544555664,0.042311228811740875,0.07810573279857635,0.03344414010643959,0.004286942072212696,0.0018258221680298448,-0.06835370510816574,0.020607654005289078,-0.028050117194652557,0.005464233923703432,-0.03794379159808159,0.02456924319267273,0.06871169805526733,-0.014124014414846897,-0.07829210162162781,-0.0002572371740825474,0.016378607600927353,0.06776957958936691,-0.10320919752120972,0.08007503300905228,0.07136024534702301,-0.00940974522382021,-0.0011463038390502334,-0.0027378983795642853,0.12412595748901367,-0.04203834384679794,0.06692122668027878,0.05969491973519325,0.04096807539463043,0.017617003992199898,-0.015390210784971714,0.021280478686094284,-0.012892980128526688,0.046010442078113556,-0.030546877533197403,0.026092905551195145,-0.04220682755112648,0.0333259254693985,-0.03165864571928978,0.07154104113578796,0.0716598704457283,-0.007560548838227987,0.06798482686281204,-0.0715290755033493,-0.052361421287059784,-0.04700831323862076,-0.009219997562468052,-8.3752561902867e-33,0.06279293447732925,-0.11174101382493973,0.032972171902656555,0.05119142681360245,-0.01556200161576271,0.028549693524837494,-0.027541914954781532,0.05304881930351257,0.018424931913614273,-0.05441967397928238,0.02826007269322872,-0.002845706883817911,0.030202966183423996,-0.1106511726975441,0.021140968427062035,0.04312678799033165,0.06558231264352798,0.07735693454742432,0.0008602445013821125,-0.039588820189237595,-0.013416863046586514,0.05398010462522507,0.09344085305929184,-0.05544048920273781,0.052568934857845306,0.0023413286544382572,0.0751170963048935,-0.06924821436405182,0.04600323736667633,0.07213220000267029,0.021023230627179146,-0.049482736736536026,-0.06360800564289093,-0.04103744402527809,-0.034743715077638626,-0.07007861882448196,0.02279970794916153,-0.03937745839357376,0.006376051343977451,-0.006067286711186171,-0.021513158455491066,-0.05401406064629555,-0.0017269973177462816,0.09727490693330765,0.05410034582018852,-0.05187756195664406,-0.0793275386095047,-0.009615715593099594,0.035185981541872025,0.0490151010453701,0.06409384310245514,-0.016359670087695122,-0.11666099727153778,-0.03188316524028778,0.007288684137165546,-0.0842699185013771,0.022159306332468987,-0.007052028086036444,-0.0673890933394432,-0.0261373370885849,0.027732905000448227,-0.067813441157341,-0.023347463458776474,0.027394352480769157,0.06590145081281662,0.0512707345187664,-0.04819190874695778,0.10804689675569534,-0.01487655844539404,0.01200866885483265,0.06776662170886993,0.02857011929154396,-0.035086970776319504,0.00515794800594449,0.04898412898182869,0.007336324080824852,-0.015688136219978333,-0.01309371367096901,0.02732006646692753,0.0873195007443428,-0.036911796778440475,-0.07349949330091476,-0.005138101056218147,-0.008925936184823513,-0.0105430381372571,-0.06045088171958923,0.07074938714504242,0.025616243481636047,0.0612766407430172,-0.03240371122956276,0.017266349866986275,-0.047327324748039246,0.06975243240594864,0.044268883764743805,0.04116372764110565,-3.618395894022797e-8,-0.01250538881868124,-0.020715950056910515,-0.02087640017271042,0.02711937017738819,0.007615765556693077,-0.015829091891646385,-0.0518370158970356,0.026753539219498634,0.022775866091251373,-0.010464567691087723,-0.060568880289793015,0.06406619399785995,-0.07796695083379745,-0.0453232042491436,0.029126998037099838,-0.05155488848686218,-0.023234106600284576,0.030673863366246223,-0.028269914910197258,-0.05952196940779686,-0.013967440463602543,0.0002881340042222291,-0.03892948105931282,0.007833825424313545,-0.037428874522447586,-0.022679271176457405,0.061859551817178726,-0.08846830576658249,-0.029322776943445206,-0.0029964223504066467,0.032787617295980453,-0.01014914084225893,-0.03009731136262417,-0.07348009943962097,0.061095915734767914,0.007539347745478153,0.0011351659195497632,0.02643866091966629,-0.011254498735070229,0.030496470630168915,0.017184263095259666,-0.008999524638056755,-0.029405707493424416,0.006742335855960846,-0.04647000506520271,-0.016129465773701668,0.008902236819267273,0.028080685064196587,0.039269428700208664,0.030605891719460487,0.024736234918236732,-0.017551694065332413,-0.004964683670550585,-0.07103052735328674,-0.10303356498479843,0.013145556673407555,0.09718893468379974,-0.04278862848877907,-0.052796371281147,-0.019249532371759415,0.04932814836502075,0.03601043298840523,0.07177206873893738,0.07126008719205856]},{"text":"Quid sit futurum cras, fuge quaerere et Quem fors dierum cumque dabit lucro Adpone, nec dulcis amores 15 Sperne puer neque tu choreas, Donec virenti canities abest Morosa.","book":"Homage to Catalonia","chapter":3,"embedding":[-0.05171267315745354,0.007158379536122084,0.013589007779955864,-0.02811412513256073,-0.14196431636810303,0.011836276389658451,0.08407721668481827,0.015699287876486778,0.033821702003479004,0.021953554823994637,0.07788649201393127,-0.13242779672145844,-0.002183225704357028,-0.03798339143395424,-0.03888801485300064,-0.04705424606800079,-0.012791795656085014,0.06131159886717796,-0.01654321327805519,0.051503997296094894,0.034243032336235046,-0.056102242320775986,-0.05932426080107689,0.04694468528032303,-0.0983220636844635,0.02056250348687172,-0.068118155002594,0.008199427276849747,-0.033438656479120255,-0.03658716380596161,0.07292774319648743,0.09015390276908875,0.045664336532354355,-0.04137760400772095,0.05205046385526657,-0.02915087901055813,-0.01758435182273388,-0.10901135951280594,0.07698629796504974,0.012540066614747047,-0.07912557572126389,-0.030369943007826805,-0.06259588897228241,-0.03989025577902794,0.018212785944342613,-0.050945743918418884,-0.01620972529053688,0.07106281071901321,0.02622227929532528,0.018415173515677452,-0.10664629936218262,0.055126480758190155,-0.0365966334939003,0.030476607382297516,0.025836119428277016,0.0008782417862676084,0.051020924001932144,-0.06602640450000763,0.00850749108940363,-0.03393225371837616,-0.03935261443257332,0.0407690666615963,-0.025044837966561317,0.010537577793002129,-0.050765279680490494,0.026620885357260704,-0.03978709131479263,-0.0588114969432354,-0.08129992336034775,0.11056804656982422,0.07674896717071533,-0.08266384899616241,-0.02060655876994133,-0.014956452883780003,-0.029422368854284286,0.049194421619176865,0.011060026474297047,-0.08027438074350357,0.008248747326433659,-0.05307627469301224,-0.01337629184126854,0.0062665981240570545,-0.010025874711573124,-0.01975557953119278,0.04366395249962807,-0.02862708456814289,0.0016875576693564653,-0.050754398107528687,0.07793790102005005,-0.012073279358446598,-0.06152191013097763,0.023579102009534836,-0.06974292546510696,-0.023902175948023796,0.009305251762270927,-0.012905021198093891,-0.05822373181581497,0.04713110998272896,0.04320036247372627,0.016946636140346527,-0.02888464368879795,-0.013794784434139729,-0.04766878858208656,0.04028995707631111,-0.11104489862918854,-0.009761390276253223,-0.004184462130069733,-0.04613732919096947,0.020150979980826378,0.030764607712626457,-0.10098093003034592,-0.042108893394470215,0.02388228289783001,-0.10197276622056961,0.014372691512107849,0.06072556599974632,0.0078195845708251,-0.09309849143028259,0.03329421207308769,-0.04851088672876358,0.057867638766765594,-0.009146830067038536,0.03641502186655998,-0.0001923496020026505,0.02478957176208496,-0.13266710937023163,0.030118446797132492,1.648280676648507e-32,-0.006782115437090397,-0.04617156833410263,0.05018129199743271,0.014132196083664894,0.035958997905254364,-0.0600125826895237,-0.02465716004371643,-0.01988234370946884,0.002779423724859953,-0.030232958495616913,-0.05639025941491127,-0.012913588434457779,-0.008546682074666023,-0.03406490758061409,-0.013613803312182426,0.011312459595501423,0.11425227671861649,-0.08361613750457764,0.013904156163334846,-0.05354522168636322,-0.07519581913948059,-0.04035548120737076,0.020053302869200706,-0.02542981691658497,0.010517679154872894,-0.02389257401227951,-0.030758073553442955,0.029110414907336235,-0.06273965537548065,0.043746620416641235,0.019022604450583458,-0.013373864814639091,-0.013477860949933529,-0.08312144130468369,-0.03926246240735054,0.048835497349500656,-0.009535390883684158,0.02232162281870842,-0.09145715832710266,0.01050176378339529,0.07224702835083008,0.008531359024345875,0.04687876254320145,0.01688496395945549,0.02569469064474106,0.12257359176874161,0.0292376559227705,0.05318134278059006,0.13510575890541077,0.07585768401622772,-0.029739445075392723,-0.0377206988632679,-0.07612001895904541,0.023324932903051376,0.007176852785050869,0.027454691007733345,-0.07208942621946335,0.022647099569439888,-0.001105304341763258,-0.005987918470054865,-0.007675346452742815,-0.11360964924097061,-0.006351806689053774,-0.03850517049431801,-0.05999094992876053,-0.020477602258324623,0.024658221751451492,-0.059978026896715164,0.09217417985200882,0.00887251179665327,-0.06441482901573181,-0.018101796507835388,-0.02655571699142456,0.038382694125175476,0.03616739809513092,0.04537961259484291,0.021963536739349365,-0.057670749723911285,-0.020108796656131744,0.005906706675887108,-0.01688556931912899,-0.0618615485727787,0.04183754324913025,-0.02663508988916874,0.033450160175561905,-0.040336184203624725,-0.00802239216864109,0.034802600741386414,0.02071143127977848,0.015743130818009377,-0.010829919017851353,-0.03726974502205849,0.08122114092111588,0.010584733448922634,-0.008552083745598793,-1.5819839707564808e-32,-0.03192238509654999,-0.04645134508609772,-0.0855189636349678,0.12913478910923004,-0.0162705946713686,-0.0010948523413389921,-0.042917072772979736,0.017590036615729332,0.04279317706823349,-0.0016795432893559337,-0.05623858422040939,-0.09236317127943039,0.1016344204545021,-0.039282020181417465,-0.0742364376783371,0.15394240617752075,0.05140727758407593,-0.02497781813144684,0.01527662854641676,0.05563211813569069,-0.016498511657118797,0.02577962540090084,0.0011605416657403111,-0.0076452214270830154,-0.0173538438975811,0.07817164063453674,0.05926147475838661,-0.04619146138429642,0.0020839052740484476,0.03319012373685837,0.050354357808828354,0.02089681290090084,-0.01175325084477663,0.06654524058103561,0.022393260151147842,0.01718476228415966,0.16303043067455292,0.0003686433774419129,-0.03303467109799385,-0.02608145959675312,-0.023789243772625923,0.12600919604301453,0.08981768786907196,0.0014336388558149338,0.012592668645083904,-0.027255404740571976,-0.025161491706967354,-0.03715646639466286,-0.04827020689845085,0.02594129741191864,0.07443331182003021,-0.025747159495949745,-0.0356866717338562,0.015512636862695217,0.004449514672160149,0.027641840279102325,0.008631548844277859,-0.05046132206916809,0.015295055694878101,-0.03471267968416214,0.07661934942007065,0.0406646691262722,0.002737767994403839,-0.08046013861894608,0.048267606645822525,-0.033113207668066025,-0.09023405611515045,0.011552485637366772,-0.027716416865587234,0.0752173438668251,0.004031214863061905,-0.06957035511732101,-0.10801031440496445,0.00997726246714592,-0.09296627342700958,0.04902198165655136,-0.005394191015511751,0.037715841084718704,0.02031625434756279,0.10036323964595795,-0.02054288424551487,-0.03146000951528549,0.019257543608546257,0.020244723185896873,-0.09623399376869202,0.005604112520813942,0.013494137674570084,-0.07276011258363724,0.00891795102506876,0.0038862579967826605,-0.04747557267546654,-0.04255247116088867,0.08223500847816467,0.006574758794158697,-0.024256756529211998,-5.1332314399132883e-8,-0.015941496938467026,-0.10480815172195435,-0.07229878008365631,0.035898175090551376,0.04691070690751076,-0.07106489688158035,-0.07272413372993469,-0.047371331602334976,0.08183158189058304,0.05558227375149727,-0.0002974141389131546,0.020491769537329674,-0.018215930089354515,0.051340971142053604,0.007785425987094641,0.09277396649122238,0.07415904104709625,0.019966764375567436,-0.04270384833216667,-0.04388439282774925,0.08295442163944244,0.04244455322623253,-0.031170420348644257,-0.0505717433989048,-0.005369183607399464,0.009311128407716751,0.03891289234161377,0.023843914270401,-0.021443920210003853,-0.005132262594997883,-0.029608450829982758,0.05130533501505852,0.004580593202263117,-0.04395978897809982,-0.027339180931448936,0.05242767930030823,0.019570063799619675,-0.031104616820812225,-0.054378166794776917,0.13798613846302032,0.06470248103141785,0.04741811752319336,0.05311109870672226,-0.06250769644975662,0.054766371846199036,-0.025165682658553123,-0.029828863218426704,-0.029558954760432243,-0.020081425085663795,0.04298926144838333,-0.004973321221768856,0.028707027435302734,0.043770965188741684,0.045021023601293564,-0.002817496657371521,-0.026163162663578987,0.02499055303633213,0.03849916532635689,0.05952258035540581,0.038336869329214096,0.047710057348012924,0.07130448520183563,0.020863335579633713,-0.028143446892499924]},{"text":"Mercuri, facunde nepos Atlantis, Qui feros cultus hominum recentum Voce formasti catus et decorae More palaestrae, Te canam, magni Iovis et deorum 5 Nuntium curvaeque lyrae parentem, Callidum quidquid placuit iocoso Condere furto.","book":"Homage to Catalonia","chapter":3,"embedding":[-0.005009729415178299,0.03430695831775665,-0.036032579839229584,-0.026383928954601288,-0.03141577169299126,-0.08390375226736069,-0.025682928040623665,-0.0025230904575437307,0.016232799738645554,0.019049683585762978,0.009770876727998257,-0.1022159531712532,-0.07900002598762512,-0.027499932795763016,-0.0774771049618721,-0.07261904329061508,-0.0577351376414299,0.018215836957097054,0.010363653302192688,0.03809991478919983,0.13371846079826355,-0.03459440916776657,0.057880714535713196,0.025876367464661598,-0.08456262946128845,0.033095866441726685,-0.027496537193655968,0.05844000726938248,0.029032031074166298,-0.08618976175785065,-0.06007792428135872,0.10774946212768555,-0.004850049968808889,-0.03606419265270233,0.015071794390678406,0.024153461679816246,-0.033886250108480453,-0.03660779073834419,0.0064622689969837666,-0.024296773597598076,-0.03535347431898117,-0.0004090301226824522,0.01669243350625038,0.012510562315583229,-0.04763319715857506,0.005338702816516161,-0.015839796513319016,0.06919753551483154,0.04005835950374603,0.006680585443973541,0.028917143121361732,-0.05599067732691765,-0.010817760601639748,-0.04911307245492935,-0.02805366739630699,0.0905560851097107,0.0034524756483733654,-0.14536502957344055,0.05259092524647713,-0.02893686853349209,0.03968241065740585,0.040481798350811005,-0.033790331333875656,-0.015193600207567215,-0.04570997506380081,0.02471601590514183,-0.03688092157244682,0.0003334690409246832,-0.04338410124182701,-0.025158869102597237,0.09323104470968246,0.03341183811426163,-0.0187956802546978,0.0439349040389061,-0.02836942858994007,0.07311601936817169,-0.060996297746896744,-0.02771877683699131,-0.07492166757583618,-0.05628402903676033,0.006852319929748774,0.09213719516992569,0.02944035269320011,-0.03698493540287018,-0.026232123374938965,0.03275984525680542,-0.016774378716945648,-0.01766793802380562,0.08228366076946259,-0.043770477175712585,0.04072336480021477,0.0012096634600311518,-0.026888003572821617,-0.04970141500234604,-0.004651543218642473,0.025536708533763885,-0.04882456362247467,-0.006010193377733231,-0.0002876225335057825,-0.01068209670484066,0.02804276905953884,-0.004525341559201479,0.002977195894345641,0.008940494619309902,-0.09115281701087952,-0.03462105989456177,-0.012594988569617271,0.03683486208319664,0.01976282149553299,0.06304534524679184,-0.0683705285191536,-0.10599177330732346,-0.04419966787099838,-0.04609115794301033,0.020517973229289055,0.031531576067209244,0.08134669065475464,-0.1107282042503357,-0.05191159248352051,-0.0691915825009346,-0.0066575245000422,-0.011403591372072697,0.016483252868056297,-0.009120791219174862,0.07322268187999725,0.040564846247434616,-0.02113250084221363,1.7173180476194754e-32,0.041163403540849686,-0.010935752652585506,-0.04467746242880821,-0.0024345789570361376,0.05993244796991348,-0.01624753139913082,-0.03559834137558937,-0.056294918060302734,-0.04461389034986496,0.021762046962976456,-0.10110985487699509,-0.015939481556415558,-0.0444214828312397,-0.0727207288146019,-0.028648534789681435,0.040524307638406754,0.1448555588722229,-0.03353452682495117,-0.024395328015089035,-0.022410012781620026,-0.053318772464990616,0.10760048031806946,0.07723881304264069,-0.029260003939270973,0.029130661860108376,-0.012655109167098999,-0.02613639645278454,-0.046441055834293365,-0.01806848682463169,0.01977110281586647,0.08252152055501938,-0.13627664744853973,-0.022644998505711555,-0.025146344676613808,0.004660845268517733,0.02258039079606533,0.008756479248404503,-0.0520751066505909,-0.07377306371927261,0.023146454244852066,0.016697706654667854,0.027256835252046585,0.03445146605372429,0.020292485132813454,0.07813236862421036,-0.019311824813485146,0.04686509445309639,0.04644465446472168,0.06140716373920441,0.014606941491365433,-0.01865851879119873,0.01668594218790531,-0.08714274317026138,-0.07264424860477448,-0.055930379778146744,0.00426833750680089,-0.04809204116463661,0.046484559774398804,0.025708969682455063,0.01158098690211773,0.08957934379577637,-0.03500281646847725,-0.01800316944718361,0.031068027019500732,0.0404033400118351,0.0032966379076242447,0.002795700915157795,0.07546185702085495,0.07495903223752975,0.0657101571559906,-0.04737367108464241,-0.03443395346403122,-0.07010199874639511,0.0797022357583046,-0.012841944582760334,0.0510268360376358,0.0022396084386855364,-0.1065889447927475,-0.010161221958696842,0.009928219951689243,-0.03589484468102455,0.0020422302186489105,-0.009084714576601982,0.049113910645246506,0.0356549397110939,0.033644821494817734,0.029041530564427376,0.08416900038719177,0.05596774443984032,-0.03283732011914253,0.009299331344664097,0.02537108212709427,0.024546829983592033,-0.09945937246084213,-0.06207003816962242,-1.580069531269373e-32,-0.025504430755972862,-0.05519925057888031,-0.05561205372214317,-0.004194851964712143,-0.02353818714618683,0.01375406514853239,-0.10350765287876129,0.021307019516825676,-0.0408213771879673,-0.07753286510705948,-0.10392319411039352,0.015032998286187649,0.10935918986797333,-0.13020290434360504,0.050754617899656296,0.04084569215774536,0.06442783772945404,0.016202716156840324,0.02258739061653614,0.04917050525546074,-0.03161834925413132,-0.0245555117726326,0.01304960623383522,-0.07027997076511383,0.0092941178008914,-0.01107275951653719,0.025565410032868385,0.006007246673107147,-0.0022671481128782034,-0.03836878016591072,0.020697660744190216,-0.014074455946683884,0.07907734811306,0.020194610580801964,-0.009251226671040058,-0.02402123436331749,0.11694762110710144,-0.029082784429192543,0.013032790273427963,-0.01406027004122734,-0.028277916833758354,0.07506651431322098,0.07368358969688416,0.018836837261915207,0.0004231673083268106,-0.0427449569106102,-0.12904924154281616,0.028482042253017426,-0.05510465428233147,0.050983726978302,0.02798575907945633,-0.08824692666530609,0.08306685090065002,-0.03986165300011635,0.1147201731801033,-0.021347500383853912,-0.012935304082930088,-0.0031287746969610453,-0.0062601566314697266,0.041486456990242004,0.09463562816381454,-0.01388738863170147,-0.04834318161010742,0.0029823563527315855,0.08651173859834671,-0.004126296378672123,-0.07524942606687546,0.07917789369821548,-0.13076458871364594,0.07615803927183151,0.05628897249698639,-0.02250489965081215,-0.1700020283460617,-0.022577714174985886,0.026671867817640305,0.03098197653889656,-0.015556531958281994,0.08495879918336868,0.03701737895607948,-0.007259879261255264,-0.049395300447940826,-0.01344127394258976,-0.014302565716207027,0.015208675526082516,0.029493648558855057,-0.059416551142930984,0.10563871264457703,0.07840019464492798,0.06043204665184021,-0.01588488556444645,0.021085100248456,-0.06217610463500023,0.0188153013586998,-0.015312690287828445,0.03766736015677452,-5.448021411780246e-8,0.04528515785932541,0.013469154015183449,0.0038500865921378136,0.036393903195858,0.0394139438867569,-0.10451462864875793,0.0073256781324744225,0.009665001183748245,-0.020504072308540344,0.05531908944249153,-0.008648766204714775,0.025829318910837173,0.04522104561328888,-0.010401090607047081,0.07837679237127304,0.07429645210504532,0.03996530920267105,0.052506305277347565,-0.03152861446142197,-0.004237389657646418,0.053770266473293304,0.020745716989040375,-0.0816093161702156,-0.08152198791503906,-0.021523376926779747,-0.020600302144885063,0.03198184445500374,-0.0068217432126402855,-0.034540239721536636,-0.07009409368038177,0.01820068620145321,-0.029065005481243134,0.0048540676943957806,-0.0761348307132721,0.023513510823249817,0.074281707406044,-0.011490726843476295,-0.022311968728899956,-0.01784782111644745,-0.03859167546033859,0.06292109191417694,-0.019842881709337234,0.056813500821590424,-0.05659675970673561,0.009816095232963562,-0.03876085579395294,0.05637427419424057,0.009746134281158447,-0.003566403640434146,-0.04451517388224602,-0.02962387166917324,0.0008112508803606033,0.07948851585388184,-0.011638520285487175,-0.02080339565873146,-0.07601948827505112,0.07061480730772018,0.01734943687915802,0.01681148260831833,0.03316500037908554,0.10501076281070709,0.05892477557063103,0.009268100373446941,0.013169287703931332]},{"text":"Quin et Atridas duce te superbos Ilio dives Priamus relicto Thessalosque ignis et iniqua Troiae 15 Castra fefellit.","book":"Homage to Catalonia","chapter":4,"embedding":[-0.06417202204465866,0.14663167297840118,-0.004423563834279776,-0.013938521966338158,-0.02325507625937462,0.030676770955324173,0.08901257067918777,0.16337506473064423,0.01074138842523098,0.04504355415701866,-0.02562984637916088,-0.03874377906322479,-0.04342363029718399,0.02080621011555195,-0.12199140340089798,-0.04709684103727341,-0.017935605719685555,0.07435686886310577,-0.0168133731931448,0.07284241914749146,0.10975461453199387,-0.07145670801401138,-0.02811780571937561,0.053260043263435364,-0.11178503930568695,0.02422242797911167,-0.006798101123422384,-0.010341065004467964,-0.011564277112483978,-0.05558355525135994,-0.009252422489225864,0.03604191169142723,0.011830856092274189,-0.03258330002427101,0.008496365509927273,0.05140411853790283,-0.049448318779468536,-0.04624510928988457,0.050561703741550446,-0.0033830059692263603,-0.03612694516777992,0.0032580860424786806,-0.09856101125478745,-0.023087477311491966,-0.010990284383296967,-0.010767998173832893,0.030511578544974327,0.04437924548983574,0.011046691797673702,0.031929321587085724,-0.0453033484518528,0.054523009806871414,0.028646523132920265,0.027172990143299103,-0.03324101120233536,-0.04243679344654083,-0.036702726036310196,-0.1225011944770813,0.0615047961473465,-0.04075606167316437,0.09864334762096405,0.07849118113517761,-0.046679023653268814,0.05101017653942108,-0.1240219920873642,-0.018541952595114708,0.012011541053652763,-0.01691151224076748,-0.11590448021888733,0.01600000634789467,0.05437670648097992,0.009046734310686588,0.00979529321193695,-0.031477998942136765,-0.0012736000353470445,0.046383053064346313,-0.01794472709298134,-0.08443988859653473,-0.08804063498973846,-0.09691721946001053,0.054314810782670975,-0.04233550280332565,-0.003956822212785482,-0.04649670049548149,0.032943129539489746,0.027826858684420586,0.03108183667063713,0.0011774831218644977,0.028339698910713196,0.022721314802765846,-0.035198088735342026,0.010847605764865875,-0.019486015662550926,-0.03212137147784233,0.020087135955691338,0.03103007562458515,-0.04614906385540962,-0.03471725806593895,0.06952095031738281,0.018954316154122353,0.02836664207279682,0.042327284812927246,-0.032845743000507355,0.048249416053295135,-0.04704683646559715,-0.057346608489751816,0.018998773768544197,-0.049549609422683716,0.061113499104976654,0.07904843240976334,-0.009295747615396976,-0.06081217899918556,-0.010145094245672226,-0.0593641996383667,-0.01690707355737686,0.0835256427526474,-0.09211347252130508,-0.10247191786766052,-0.048867180943489075,-0.06395028531551361,0.03569847345352173,0.04841511324048042,0.019985556602478027,0.061309199780225754,0.010687533766031265,0.017989536747336388,0.05621524527668953,1.0019065286424679e-32,-0.050952259451150894,-0.06797759979963303,-0.04035784304141998,0.0010221140692010522,-0.03140488266944885,-0.07057681679725647,0.005255742464214563,-0.05314743518829346,-0.00807164702564478,-0.0015213415026664734,-0.12958207726478577,-0.025386866182088852,-0.04211246594786644,-0.06888974457979202,-0.022247537970542908,0.014432013966143131,0.06137735769152641,-0.06559547781944275,0.009178095497190952,-0.06949884444475174,-0.04346028342843056,0.03491711989045143,0.05375891178846359,-0.08384539186954498,0.03582305088639259,0.03807883337140083,0.012996232137084007,0.01587558165192604,-0.08371751755475998,0.051236990839242935,0.04107627272605896,-0.03652734309434891,-0.08170615881681442,-0.006592186633497477,0.06925445795059204,-0.045268088579177856,0.04959593340754509,-0.024538373574614525,0.009601094760000706,0.0039238217286765575,-0.03407127782702446,0.0035989629104733467,-0.04883868619799614,-0.04213695973157883,0.031244900077581406,-0.006277342792600393,0.03181058540940285,0.0928812101483345,0.1187036782503128,-0.01125849224627018,0.0026463663671165705,0.012428376823663712,-0.08241312950849533,-0.028539374470710754,0.004322473891079426,0.020459651947021484,-0.041595347225666046,0.04540098085999489,0.013902110978960991,0.029510101303458214,0.04676235839724541,0.02976733073592186,-0.018189553171396255,0.032064780592918396,-0.022580711171030998,0.0665331482887268,-0.015403695404529572,0.036300890147686005,0.06899451464414597,0.008072991855442524,-0.09950824081897736,-0.014300939626991749,0.050683483481407166,-0.0004235421947669238,-0.0051911068148911,0.06886694580316544,0.010104481130838394,-0.024330273270606995,-0.009226021356880665,0.05573403462767601,-0.08689123392105103,0.006275396328419447,0.02504047006368637,0.046072304248809814,0.03335949778556824,0.03259442001581192,0.028310151770710945,0.017276767641305923,0.048015154898166656,0.05395742133259773,-0.007565947249531746,-0.004009653348475695,-0.053124938160181046,-0.07509521394968033,0.045425377786159515,-1.1626384099177257e-32,0.007371312938630581,-0.005277744494378567,-0.03585510328412056,0.054897427558898926,0.01074679009616375,0.005287958309054375,-0.12240339815616608,-0.024770064279437065,-0.060141660273075104,-0.0636761337518692,-0.08430269360542297,0.005037072580307722,0.10419241338968277,-0.07559986412525177,-0.048176590353250504,0.03564794361591339,0.05978307127952576,-0.006338714621961117,-0.002914489945396781,0.011521952226758003,-0.05030693858861923,-0.018852775916457176,0.007971737533807755,-0.0909632071852684,-0.012645833194255829,0.007116943597793579,0.04727916792035103,0.04340270906686783,-0.02241823635995388,-0.033592306077480316,0.08911873400211334,0.03681836277246475,0.0074505931697785854,0.06670202314853668,-0.015816234052181244,0.042239993810653687,0.08675600588321686,0.024819834157824516,0.028409302234649658,-0.015995094552636147,-0.05365694314241409,-0.008598018437623978,0.06496404111385345,0.04758265241980553,0.02148764207959175,-0.021254921332001686,-0.11656434088945389,-0.07954055815935135,0.02124704420566559,-0.0292592104524374,0.033976513892412186,0.006604562979191542,0.034385472536087036,-0.01787567138671875,0.05159726366400719,-0.04326029494404793,-0.03438928723335266,0.0008094410295598209,-0.04635624215006828,0.014455080963671207,0.10095667093992233,0.01866847276687622,-0.03513546660542488,-0.017764931544661522,0.055602241307497025,-0.0037674361374229193,-0.11968053877353668,-0.021726328879594803,-0.07817766815423965,0.06498268991708755,0.08078325539827347,-0.10035402327775955,-0.10961655527353287,-0.04685871675610542,-0.030798278748989105,0.034672729671001434,-0.04398684948682785,0.09287174046039581,0.03839455917477608,0.0609973780810833,-0.02889351360499859,0.002216727938503027,-0.02377765066921711,-0.002558433683589101,0.005209528375416994,0.015540159307420254,0.02139415219426155,-0.011041205376386642,-0.014654436148703098,-0.08058454096317291,0.02968229167163372,0.015690406784415245,0.019339019432663918,-0.09078747779130936,0.03513946756720543,-4.158324173886285e-8,-0.021516935899853706,-0.0010408632224425673,-0.01961495541036129,0.08394257724285126,-0.059826936572790146,-0.09545456618070602,-0.042174141854047775,-0.03056647814810276,-0.024766670539975166,-0.030400797724723816,-0.01864175871014595,-0.029120003804564476,0.085635706782341,0.03418426588177681,0.029644981026649475,-0.039001017808914185,0.06344344466924667,0.011151355691254139,-0.017966045066714287,0.010456401854753494,0.01769782043993473,-0.07796177268028259,-0.04005226492881775,-0.1294906884431839,-0.06417949497699738,-0.025692224502563477,0.015104517340660095,-0.15229734778404236,-0.009071428328752518,-0.0032414805609732866,0.021083947271108627,-0.0017721380572766066,0.01563486084342003,-0.05256454646587372,0.020091503858566284,0.09974081069231033,-0.02463587373495102,0.02083807997405529,-0.023359093815088272,-0.005881935823708773,0.0874413549900055,0.06599205732345581,0.02628183737397194,-0.001714946236461401,0.0008019428350962698,0.035865940153598785,0.030766474083065987,-0.00967513956129551,-0.004000199027359486,0.01405583880841732,-0.004473540931940079,-0.017243219539523125,0.08380354940891266,0.04460352286696434,0.11252294480800629,0.06491298973560333,0.029166309162974358,0.038684550672769547,-0.01874907873570919,0.04504877328872681,0.049875397235155106,0.05663233995437622,0.0047803884372115135,0.011644091457128525]},{"text":"Tu ne quaesieris, scire nefas, quem mihi, quem tibi Finem di dederint, Leuconoe, nec Babylonios Temptaris numeros.","book":"Homage to Catalonia","chapter":4,"embedding":[-0.053869280964136124,0.0008438476943410933,0.021503619849681854,-0.04683350771665573,-0.11282418668270111,-0.03818134590983391,0.03250846266746521,0.04548526927828789,-0.0012310900492593646,0.08218823373317719,0.0655270367860794,-0.0703834593296051,0.011624927632510662,0.02203970029950142,-0.07715171575546265,-0.05567106232047081,0.006524505093693733,0.05180506780743599,-0.0004461080825421959,-0.013213403522968292,-0.0029416328761726618,0.0029644996393471956,-0.039268553256988525,0.03903817757964134,0.007621638476848602,0.007366375997662544,-0.04754958674311638,0.05564024671912193,0.04136192053556442,-0.028459779918193817,-0.009547285735607147,0.15517345070838928,0.031570274382829666,-0.0035966637078672647,0.030940109863877296,-0.03904574736952782,0.0161938164383173,-0.04114380478858948,0.019285738468170166,0.10415266454219818,-0.0901254191994667,0.017719704657793045,-0.0658658891916275,-0.0024143343325704336,-0.012253657914698124,0.02270738035440445,-0.04998050630092621,0.05121372640132904,0.04837147146463394,-0.017167167738080025,-0.11402614414691925,0.010997205972671509,-0.08317872881889343,0.08457164466381073,-0.011765832081437111,-0.04942386969923973,0.05063621327280998,-0.04896882548928261,-0.06585501879453659,-0.044343508780002594,-0.014297382906079292,-0.03629095479846001,-0.03923200070858002,-0.0191090926527977,-0.012220319360494614,0.04637187719345093,-0.03668570891022682,0.012781618162989616,-0.14816083014011383,0.10556671023368835,0.0678977221250534,-0.023898838087916374,0.025073381140828133,0.06596357375383377,-0.09566470980644226,0.011154464446008205,-0.03190651908516884,-0.009838197380304337,-0.054057300090789795,-0.06856464594602585,0.0016083336668089032,-0.023721886798739433,-0.022972552105784416,-0.03433498367667198,0.015756089240312576,0.06508374214172363,-0.01720254309475422,0.0048412056639790535,0.10541784763336182,0.023625776171684265,-0.03840028494596481,0.011050796136260033,-0.0821152850985527,-0.04525667801499367,-0.015627790242433548,0.0329669788479805,-0.017331749200820923,0.05908043310046196,0.029393017292022705,-0.010270442813634872,0.07422763109207153,-0.01931268721818924,-0.04029206559062004,0.06332027912139893,-0.11449545621871948,0.008063391782343388,0.022167950868606567,-0.07732381671667099,0.06580933928489685,0.008125808089971542,-0.03039547987282276,-0.06450843065977097,-0.05029275640845299,-0.017033357173204422,-0.0197701845318079,-0.03814168646931648,0.08728604763746262,-0.053239334374666214,-0.010223114863038063,-0.09344688802957535,0.037719886749982834,-0.0238247811794281,-0.013760853558778763,-0.013159037567675114,-0.04112258180975914,0.014880885370075703,-0.04450032487511635,9.274033293453667e-33,0.023942148312926292,0.03733373433351517,-0.034467682242393494,0.02747528813779354,-0.01595110446214676,0.02225959300994873,-0.08502572029829025,0.031690724194049835,-0.009809195064008236,-0.024342553690075874,-0.07757533341646194,0.03663768246769905,0.014756476506590843,-0.033343736082315445,0.051297809928655624,0.05448644608259201,0.0009037111303769052,-0.07919692993164062,0.003746323985978961,0.020675815641880035,-0.03522544354200363,0.03731299564242363,0.007450405042618513,0.018914973363280296,0.01187607366591692,-0.020174002274870872,-0.04540254548192024,-0.0593622587621212,-0.07558692246675491,0.030272064730525017,-0.0584225133061409,-0.04661564901471138,0.03487915173172951,-0.020186925306916237,-0.012935604900121689,-0.05131912976503372,-0.047127097845077515,0.10101926326751709,0.0509055033326149,-0.0216525848954916,0.0427665039896965,0.03620544821023941,0.08829832822084427,0.0044927773997187614,0.06466209888458252,0.07179350405931473,0.10374332964420319,0.014822208322584629,0.07444336265325546,0.021601034328341484,-0.00416076323017478,-0.04357527196407318,-0.035322900861501694,-0.08798075467348099,0.015875281766057014,0.025064226239919662,-0.08175000548362732,0.05990881100296974,-0.04604416713118553,-0.0024117378052324057,-0.011769584380090237,-0.022661952301859856,-0.0034287681337445974,0.0010003992356359959,0.012152520939707756,-0.001791815273463726,-0.06563334167003632,0.04901763051748276,0.07653344422578812,0.06973256170749664,-0.0887950211763382,-0.025481585413217545,0.0028269190806895494,0.13987064361572266,0.0588766448199749,0.007076673675328493,0.07638923823833466,-0.0440530888736248,-0.04401007294654846,-0.01652505435049534,0.020669611170887947,-0.03313907980918884,-0.0022837547585368156,-0.012138517573475838,0.012911460362374783,0.054002758115530014,0.06909743696451187,0.033490270376205444,0.06065475568175316,0.0070503284223377705,0.03180728480219841,0.020126884803175926,0.010842162184417248,-0.06321629881858826,-0.03143192455172539,-9.270288609262328e-33,0.022104540839791298,0.002460168907418847,-0.07242532074451447,0.10165724158287048,-0.06974595785140991,0.006848194636404514,-0.056268543004989624,0.03049575537443161,0.03837572783231735,-0.08174104243516922,-0.03606636822223663,-0.06800774484872818,0.08719076216220856,-0.028642522171139717,-0.015368940308690071,-0.006775838788598776,-0.007822687737643719,-0.012320791371166706,-0.003380583832040429,-0.03145260736346245,-0.021624598652124405,0.03170803189277649,-0.052652109414339066,-0.09859723597764969,0.007905784994363785,0.029439540579915047,-0.025231292471289635,0.026143372058868408,-0.050992198288440704,0.08782392740249634,0.04705873876810074,-0.0909120962023735,0.024789072573184967,-0.012605828233063221,0.02788255177438259,0.05563715472817421,0.14282864332199097,-0.043525952845811844,-0.005946020595729351,-0.01434672623872757,-0.03783221170306206,0.09225058555603027,0.08119621127843857,0.060609448701143265,-0.025547055527567863,-0.00522641884163022,-0.13724417984485626,-0.007770729251205921,-0.08069483190774918,-0.019874658435583115,0.06625083833932877,-0.02116694487631321,-0.0028642292600125074,-0.017004480585455894,0.026925191283226013,-0.03894837200641632,-0.027401160448789597,0.031398579478263855,-0.06271430850028992,0.04455661028623581,0.06921554356813431,0.04860012233257294,-0.010228108614683151,-0.07251489162445068,-0.003487925510853529,0.0057048192247748375,0.035061124712228775,0.13364367187023163,-0.025942597538232803,0.030948471277952194,0.07551433145999908,-0.07195738703012466,-0.09903842955827713,-0.040024083107709885,-0.05952516943216324,0.015740135684609413,-0.07689639180898666,0.050562698394060135,-0.04003593325614929,0.035936564207077026,0.004126622341573238,-0.033704306930303574,-0.02270570769906044,0.004569011274725199,-0.008179843425750732,-0.015258182771503925,-0.01034480519592762,0.025539323687553406,0.029278717935085297,-0.04488148167729378,0.02243276871740818,-0.039032649248838425,0.06264730542898178,0.014591687358915806,0.01676226034760475,-4.4849748803699185e-8,0.015226740390062332,-0.059475984424352646,-0.031118815764784813,-0.027661612257361412,0.029878707602620125,-0.08776107430458069,0.0005448858137242496,-0.006374227348715067,0.036453403532505035,0.05210397392511368,0.029374869540333748,-0.013911522924900055,-0.06952162086963654,0.0863504409790039,-0.004067412577569485,0.06509248167276382,0.03934600204229355,0.05918659269809723,-0.0028544480446726084,-0.05115596577525139,0.05726480111479759,0.04560316354036331,-0.06070972606539726,-0.08360303938388824,-0.02799748070538044,0.038739580661058426,0.05881078541278839,-0.036505844444036484,-0.007811944931745529,-0.024470960721373558,-0.023081650957465172,0.006496127229183912,0.0038920589722692966,-0.07671148329973221,-0.040567222982645035,-0.00893203355371952,-0.09205686300992966,0.020273253321647644,0.040934979915618896,-0.0669381394982338,0.11879997700452805,0.1048814132809639,-0.030789395794272423,0.01051175408065319,0.05140061303973198,-0.08802438527345657,0.007705989293754101,-0.042219024151563644,0.04405440017580986,0.01057383418083191,0.025881659239530563,0.11042669415473938,0.108219213783741,0.04617051035165787,-0.021596336737275124,-0.06429293006658554,0.0006470340304076672,0.054329339414834976,0.006813891232013702,-0.04102412611246109,0.09310697764158249,0.07428495585918427,0.03696780279278755,-0.03809982165694237]},{"text":"Dum loquimur, fugerit invida Aetas: carpe diem, quam minimum credula postero.","book":"Homage to Catalonia","chapter":4,"embedding":[-0.010697907768189907,0.07403280586004257,-0.04647025465965271,-0.010410461574792862,-0.06500367820262909,0.021273816004395485,0.03976238891482353,0.11510080844163895,-0.001209953217767179,0.07962572574615479,0.0759698748588562,-0.11276300251483917,-0.018028877675533295,-0.012785730883479118,-0.09773152321577072,0.0017038353253155947,-0.013624456711113453,0.0056669097393751144,-0.004077940247952938,0.07594288885593414,-0.0005535235977731645,-0.005020107142627239,-0.016297757625579834,0.055201735347509384,-0.04784141108393669,-0.0022700359113514423,-0.006599954795092344,0.09230112284421921,0.05580463260412216,-0.06045707315206528,0.03793374076485634,0.1398061215877533,0.05451551824808121,-0.03228814899921417,0.022620059549808502,0.023734422400593758,0.025693297386169434,-0.132443368434906,0.023272812366485596,0.05966886505484581,-0.025032296776771545,0.02372421883046627,-0.03251788020133972,-0.05370565876364708,-0.021150195971131325,0.0023350357078015804,0.0046845232136547565,0.06953252106904984,-0.004976501688361168,-0.004561982583254576,-0.08089147508144379,0.014286475256085396,-0.07067225128412247,0.04447576776146889,0.015636900439858437,-0.068084217607975,-0.029552780091762543,-0.078569695353508,-0.0157768577337265,-0.04409228265285492,-0.05294376239180565,0.044453565031290054,-0.018008215352892876,0.1021878644824028,-0.022304996848106384,-0.0643060952425003,0.012177325785160065,0.02780713327229023,-0.15676076710224152,0.10225610435009003,0.07665830850601196,-0.06155245006084442,-0.005779854021966457,0.059178292751312256,-0.014361889101564884,-0.04977230727672577,-0.0011054686037823558,-0.04776223003864288,-0.04994777962565422,-0.030784720554947853,-0.01995135471224785,0.00444566085934639,0.02649477869272232,-0.0072204046882689,-0.015856601297855377,-0.04686395451426506,-0.04976780340075493,-0.0262053944170475,0.04309847578406334,-0.032978206872940063,0.052316002547740936,0.06371120363473892,-0.05625198036432266,0.004646821413189173,-0.029084444046020508,0.02724672667682171,0.04591352120041847,-0.013215496204793453,-0.011939655058085918,0.02178708091378212,-0.020749453455209732,-0.008618094958364964,0.0031619358342140913,-0.004238755442202091,-0.025026878342032433,-0.04101191833615303,-0.04514896497130394,-0.026331834495067596,0.005713191349059343,0.023918747901916504,-0.05567331984639168,-0.11391041427850723,0.0304531529545784,0.015206137672066689,-0.0023585823364555836,0.010085987858474255,0.00006070136441849172,-0.12422269582748413,-0.02482476457953453,0.015735965222120285,0.0034196386113762856,-0.04074624925851822,0.05998808518052101,-0.026705119758844376,0.04625030234456062,-0.02439393475651741,0.03255464881658554,5.438281350705307e-33,0.027040887624025345,-0.1145550087094307,-0.026082199066877365,-0.010211250744760036,0.06725561618804932,-0.06629364937543869,0.02387699857354164,-0.017891498282551765,-0.0272770244628191,-0.0019405040657147765,-0.03366745635867119,0.0185894463211298,0.020679255947470665,0.048973824828863144,0.041045431047677994,0.03699943795800209,-0.01552082970738411,-0.038677580654621124,-0.03218498453497887,-0.04782145470380783,-0.030959326773881912,-0.02561812847852707,0.07539965957403183,-0.0895443931221962,0.038253311067819595,0.05196809396147728,0.06301121413707733,-0.0092101925984025,-0.022517144680023193,0.049319956451654434,0.021166356280446053,0.011146864853799343,-0.03560275956988335,-0.06906627863645554,-0.033324044197797775,-0.03348802402615547,-0.034797731786966324,-0.005805141292512417,-0.13811150193214417,0.004152253735810518,0.05422059819102287,-0.0010506472317501903,0.07084156572818756,-0.05096130445599556,0.04668090492486954,0.011972236447036266,0.10920554399490356,-0.017490031197667122,0.08164668083190918,0.06172117590904236,-0.014460424892604351,-0.013821161352097988,-0.049733858555555344,-0.015106399543583393,0.002328612143173814,0.06628771126270294,-0.07065850496292114,-0.016450868919491768,-0.07381409406661987,-0.05151307210326195,-0.07480651140213013,-0.0339231975376606,-0.018346721306443214,0.0032226538751274347,0.02085857465863228,-0.04286068677902222,-0.029504776000976562,-0.052173420786857605,0.08619175106287003,0.002374311676248908,0.01149521954357624,-0.11520134657621384,-0.054120663553476334,0.039080310612916946,0.03262767940759659,0.010514267720282078,0.0702228918671608,0.0040162415243685246,-0.0839022770524025,0.010831243358552456,0.019586116075515747,-0.008257281966507435,0.04423825815320015,0.0065069482661783695,0.06698337942361832,-0.0212322436273098,0.07898601144552231,0.05982597544789314,0.021564414724707603,0.09180012345314026,-0.006712294649332762,0.028599152341485023,0.05821919068694115,-0.04530930146574974,0.037638261914253235,-5.5246357371106044e-33,-0.03722747787833214,0.0013036991003900766,-0.09281713515520096,0.11076169461011887,-0.021226828917860985,-0.005029945634305477,-0.033590879291296005,0.09911677241325378,0.03052019141614437,-0.0492958202958107,-0.05319022014737129,-0.026027293875813484,0.05134224519133568,0.02685583010315895,-0.02522757276892662,0.0795065388083458,0.054489970207214355,-0.017974279820919037,0.001294229063205421,-0.07760719954967499,0.015457802452147007,0.01308809220790863,0.054853443056344986,0.00977183785289526,0.02990848571062088,0.012165611609816551,0.02110973745584488,-0.05721694231033325,-0.06190728023648262,-0.007765923161059618,-0.018677232787013054,-0.04269556328654289,-0.011466866359114647,0.06295979768037796,-0.053315285593271255,-0.02824132703244686,0.11505616456270218,-0.006997402757406235,-0.0452912375330925,0.10961442440748215,0.0671277642250061,0.02549664117395878,0.062288980931043625,-0.024602815508842468,-0.03358279913663864,-0.031779900193214417,-0.07019678503274918,-0.011446674354374409,-0.026729008182883263,-0.022956639528274536,0.008724883198738098,-0.005741022992879152,0.0078058368526399136,-0.020457468926906586,0.0936494916677475,-0.11407511681318283,0.006052003242075443,-0.04722250998020172,-0.022828342393040657,-0.0185974333435297,0.11359891295433044,0.04218187928199768,-0.04227188602089882,-0.07413734495639801,0.11502225697040558,0.023803245276212692,-0.07805993407964706,0.012900015339255333,-0.03674139082431793,0.07622160017490387,0.0484822541475296,-0.09527518600225449,-0.044147130101919174,-0.04149347543716431,-0.05390864610671997,0.011660153046250343,-0.08547957241535187,0.05469474568963051,0.0795641541481018,0.0071326084434986115,0.025594046339392662,-0.09581544250249863,-0.014941194094717503,0.057384636253118515,-0.08430846780538559,-0.045723892748355865,0.011983942240476608,-0.09488599002361298,0.025542473420500755,-0.0016609455924481153,0.004061410669237375,-0.0264354906976223,0.0917232483625412,0.018622325733304024,-0.0458223819732666,-3.085721900220051e-8,0.016301942989230156,-0.13227199018001556,-0.08600923418998718,0.04333580285310745,0.03893015533685684,-0.045654475688934326,-0.00860330369323492,-0.04085015505552292,0.006885869428515434,0.07773987203836441,0.04294537380337715,0.001183706452138722,0.04202346131205559,0.11943221092224121,0.011366141960024834,0.03325729817152023,0.035580337047576904,-0.006338483188301325,-0.05779654532670975,-0.0660918727517128,0.02982863411307335,-0.008170800283551216,-0.022189129143953323,0.007679342292249203,0.04156907647848129,0.0204034261405468,0.016990909352898598,-0.004384491126984358,0.0525890588760376,0.014249023050069809,-0.07462938874959946,0.0458504781126976,-0.03626270219683647,0.023662522435188293,-0.029691727831959724,0.06326154619455338,-0.00853675976395607,0.04099104180932045,-0.054178398102521896,0.03710929676890373,0.06974148005247116,0.010218668729066849,0.03845914453268051,-0.056128352880477905,0.0368531160056591,0.038533568382263184,0.03661612421274185,-0.007018646225333214,-0.0008627031929790974,-0.08208603411912918,0.003445265581831336,-0.021486546844244003,0.12500464916229248,0.034264855086803436,-0.03817587345838547,0.01077464409172535,0.06720432639122009,-0.0028108437545597553,0.0038792325649410486,-0.03095436468720436,0.05778418481349945,0.09270516037940979,0.017233124002814293,0.0719243511557579]},{"text":"Cuius recinet iocosa Nomen imago Aut in umbrosis Heliconis oris, 5 Aut super Pindo gelidove in Haemo?","book":"Homage to Catalonia","chapter":4,"embedding":[-0.00019546033581718802,-0.013993262313306332,-0.030297426506876945,-0.008092842996120453,-0.06604539602994919,0.004721802193671465,0.02402689680457115,0.12168332189321518,0.051391031593084335,0.0772123634815216,0.13139139115810394,-0.01516210287809372,-0.05050511285662651,0.0488591305911541,-0.11564063280820847,-0.03482063114643097,-0.017475755885243416,0.05228967219591141,-0.017064234241843224,0.01671513542532921,0.06104573607444763,0.0063331653364002705,-0.010536125861108303,-0.03218470886349678,-0.031918566673994064,-0.003888568142428994,-0.02002045512199402,-0.04180413484573364,0.017826765775680542,-0.04251674562692642,-0.0658496543765068,0.057519108057022095,0.1293410062789917,-0.03973377123475075,-0.030886506661772728,-0.02896255999803543,0.008093015290796757,-0.0599115751683712,-0.026383597403764725,0.04964881390333176,-0.039182376116514206,-0.036270469427108765,0.02513020671904087,-0.013719240203499794,0.03243184834718704,-0.046376340091228485,-0.018991297110915184,0.09339187294244766,0.09566483646631241,0.04188988357782364,-0.05642768740653992,-0.02922648936510086,-0.016788627952337265,0.010080867446959019,-0.048141833394765854,-0.015240751206874847,-0.06446104496717453,-0.09157537668943405,-0.04495547339320183,-0.02412034384906292,0.018116895109415054,-0.014613796025514603,-0.08802644163370132,0.03844904154539108,0.08341144770383835,0.03332413360476494,-0.025099709630012512,-0.021001363173127174,-0.025325963273644447,0.06696908921003342,0.1526736170053482,-0.08806399255990982,0.028512217104434967,0.06442135572433472,0.03895635902881622,0.10022993385791779,-0.009076647460460663,-0.02668161131441593,0.07837840169668198,0.008530969731509686,0.006758274044841528,0.09734252840280533,0.07977457344532013,-0.007013360504060984,0.022386569529771805,0.03691244497895241,0.06429336965084076,0.0117331026121974,-0.020967308431863785,0.027795344591140747,-0.02439858391880989,-0.027241786941885948,-0.0462239570915699,-0.022332925349473953,-0.015649329870939255,-0.06423704326152802,-0.023640161380171776,0.0782366544008255,-0.038335103541612625,-0.02367551065981388,0.03733518347144127,0.0021924059838056564,0.02316169999539852,-0.01110069639980793,-0.06337111443281174,0.014155895449221134,-0.04747677966952324,-0.05253996327519417,0.02939150109887123,0.04696783050894737,-0.09277027100324631,-0.04646560549736023,-0.012778391130268574,-0.10801933705806732,0.04089244082570076,0.02289542928338051,0.05508001893758774,-0.046374399214982986,-0.02003897912800312,0.04358220472931862,-0.030445139855146408,-0.030124979093670845,-0.00939527153968811,0.04150277376174927,0.007206912152469158,-0.02195618860423565,0.010728256776928902,6.470020089261721e-33,-0.02300884574651718,-0.08955751359462738,-0.021733911707997322,0.01909637078642845,-0.020343001931905746,0.050126753747463226,-0.11991114914417267,-0.09696505218744278,0.05462145432829857,-0.09630297124385834,-0.049359191209077835,0.005374799482524395,-0.0071246731095016,0.011698104441165924,-0.013010515831410885,-0.032221339643001556,0.08275248110294342,-0.04420388862490654,0.005557923577725887,-0.017228171229362488,-0.022691598162055016,0.06330603361129761,-0.043446484953165054,-0.03294305130839348,0.04666948318481445,0.05376337468624115,0.0013370622182264924,-0.07852329313755035,0.020701520144939423,0.03534821420907974,0.04528570547699928,-0.024245278909802437,-0.023599879816174507,-0.03147270157933235,-0.08037415146827698,0.05780605971813202,0.051254238933324814,0.043271809816360474,-0.04066648334264755,0.030665462836623192,0.0660553127527237,0.00859560165554285,-0.016618305817246437,0.006535429507493973,0.09859486669301987,-0.11388099193572998,-0.039529260247945786,0.04331512004137039,0.01704665645956993,0.02301500365138054,0.059481892734766006,0.022255215793848038,-0.015997080132365227,-0.06129894778132439,0.011384568177163601,-0.044543392956256866,-0.054802048951387405,0.05911670997738838,-0.05662478879094124,-0.0026166511233896017,0.1063096895813942,-0.04565667361021042,0.020444152876734734,0.05410713702440262,-0.04280707612633705,-0.03040740266442299,-0.08143432438373566,-0.01950717531144619,0.018811801448464394,0.06618072837591171,-0.11364314705133438,-0.051317356526851654,0.018046971410512924,0.024006858468055725,-0.07428313791751862,0.005691800266504288,-0.042915210127830505,0.04955586791038513,-0.0826740711927414,0.013492388650774956,-0.09008906036615372,-0.005677362438291311,-0.028533577919006348,0.05230781435966492,0.05729708448052406,0.06175905838608742,0.07322787493467331,0.025591472163796425,0.017052652314305305,0.00612730672582984,0.0635012611746788,0.05160277336835861,0.013955277390778065,0.027902256697416306,0.031544242054224014,-7.186961440667927e-33,-0.025609707459807396,-0.09612636268138885,-0.03193667158484459,0.04071882367134094,-0.05221077799797058,0.06132898107171059,-0.052895259112119675,0.13636162877082825,0.01955448091030121,-0.09551189094781876,0.049425601959228516,-0.07871950417757034,0.06282173097133636,-0.07569966465234756,-0.01255058217793703,0.062121208757162094,-0.03947126865386963,0.06974229216575623,-0.02158426307141781,0.008341418579220772,-0.05434652045369148,0.015417381189763546,0.09194498509168625,-0.051073696464300156,-0.01662185601890087,0.027554890140891075,0.04739145189523697,-0.0414404459297657,-0.0491517037153244,0.01607843115925789,0.011860447935760021,0.02221912145614624,-0.04177204892039299,0.021161768585443497,-0.009649476036429405,0.037037018686532974,0.0704345628619194,0.006435510236769915,-0.01078278198838234,0.003929656930267811,0.017653265967965126,0.013224314898252487,0.003047317499294877,0.03625008836388588,-0.015658685937523842,0.020109131932258606,-0.007677566725760698,-0.019841393455863,0.007934975437819958,-0.00839132722467184,0.06879833340644836,-0.01624322682619095,0.013187145814299583,0.02736515738070011,0.020350612699985504,-0.0003635294851846993,-0.044119756668806076,-0.1290249079465866,-0.10630310326814651,0.027528055012226105,-0.011034819297492504,-0.04671252518892288,-0.034721363335847855,-0.0015350790927186608,0.10954883694648743,0.022900672629475594,-0.11762963980436325,0.05420243367552757,-0.06833431124687195,0.01744208112359047,-0.000023161377612268552,0.00027117779245600104,-0.008437042124569416,0.030299153178930283,0.050416555255651474,-0.026475725695490837,0.005806164816021919,-0.0017087162705138326,-0.000636424170807004,-0.00945383682847023,-0.1737672984600067,-0.03765087202191353,-0.03443126380443573,0.045989084988832474,-0.03796899691224098,-0.03810693323612213,0.0795053243637085,-0.014390095137059689,-0.006269611418247223,0.10509508848190308,0.0012633581645786762,0.036195579916238785,-0.026643482968211174,-0.06433720886707306,0.03691965341567993,-3.1263589050922747e-8,0.07255680859088898,-0.07636876404285431,0.004852587357163429,-0.012693531811237335,0.013750454410910606,0.007510857656598091,-0.0782453715801239,0.0030770483426749706,0.005564698949456215,0.07425890862941742,-0.02139584720134735,0.09636000543832779,-0.05285482108592987,0.0028170051518827677,0.04273587465286255,-0.004336737561970949,0.08297860622406006,0.04792599007487297,-0.01780993863940239,-0.10142973810434341,-0.02525382675230503,-0.041361741721630096,0.05161654204130173,0.0246181171387434,-0.05666813626885414,0.01209271140396595,0.05186381936073303,-0.013483880087733269,-0.04203799366950989,-0.002066431799903512,0.013261989690363407,0.034123506397008896,-0.06995628774166107,-0.0706639513373375,-0.07932373881340027,0.030038924887776375,0.062198005616664886,-0.007232413627207279,-0.037741709500551224,-0.005131742917001247,0.08945467323064804,-0.05540388077497482,0.007005565334111452,0.004894965328276157,0.02704300917685032,-0.06565054506063461,0.08398650586605072,0.024920277297496796,0.006024137604981661,-0.05681023746728897,-0.0993652194738388,0.05202021449804306,0.05747595429420471,-0.04561002925038338,-0.030997544527053833,-0.031605228781700134,0.09712771326303482,0.02159964106976986,-0.023388123139739037,0.024323217570781708,-0.0029053494799882174,0.05725492164492607,0.021245384588837624,-0.032460134476423264]},{"text":"Quid prius dicam solitis parentis Laudibus, qui res hominum ac deorum, Qui mare ac terras variisque mundum 15 Temperat horis?","book":"Homage to Catalonia","chapter":4,"embedding":[-0.03451298549771309,0.0512765496969223,0.04502246156334877,-0.008599954657256603,0.04275471717119217,-0.02638586238026619,0.025164350867271423,0.05023503303527832,0.014460638165473938,0.05985086038708687,0.09778482466936111,-0.0963839590549469,0.004859574139118195,-0.014425787143409252,-0.07670488953590393,-0.025863831862807274,-0.08267129957675934,-0.01491530891507864,-0.07286479324102402,0.016309870406985283,-0.0259515643119812,0.02018018625676632,-0.06363276392221451,-0.010642080567777157,-0.10457722842693329,0.04721572995185852,-0.034606099128723145,0.051562875509262085,-0.018177879974246025,0.053816795349121094,-0.011332415044307709,0.10294971615076065,0.058936700224876404,-0.0019461754709482193,0.0009689971921034157,0.0035602168645709753,-0.017080601304769516,-0.08195408433675766,0.03654075041413307,0.1055578887462616,-0.03309200704097748,0.007136424537748098,-0.0194487813860178,-0.002195039065554738,-0.010700455866754055,0.009183615446090698,-0.031422484666109085,0.07469428330659866,0.029152391478419304,-0.011583510786294937,-0.05964432284235954,-0.003083133837208152,-0.02377023547887802,0.07609421014785767,-0.04327508807182312,0.0518537312746048,-0.05614080652594566,-0.051045749336481094,-0.001398397726006806,-0.0265877116471529,-0.00927574560046196,0.08210471272468567,-0.05974434316158295,-0.056434694677591324,-0.02446974627673626,-0.0001737763377605006,-0.016797350719571114,-0.015284767374396324,0.01667802408337593,-0.00750702666118741,0.026367835700511932,0.006273399572819471,0.007847517728805542,0.01715254783630371,0.0264348816126585,0.022484997287392616,-0.06326866149902344,-0.09392751008272171,0.04765767604112625,-0.04113578051328659,-0.0032159120310097933,0.005477224010974169,-0.007946472615003586,0.02612733095884323,-0.007203984539955854,-0.05285795405507088,0.07905039936304092,-0.0349874272942543,0.07683224231004715,-0.05392233282327652,-0.03217373415827751,-0.05841737985610962,-0.03566328063607216,-0.003595147281885147,-0.05751386284828186,0.08189893513917923,0.004916624166071415,-0.0657292976975441,-0.05615149810910225,-0.02725781872868538,-0.024722151458263397,-0.05405111610889435,-0.010509593412280083,0.0059388563968241215,-0.09079387784004211,-0.07709701359272003,0.006602425128221512,-0.021451206877827644,-0.030408142134547234,0.028178149834275246,-0.07496731728315353,-0.048434555530548096,-0.018280314281582832,-0.08869335055351257,0.06619048863649368,0.008849125355482101,0.018394798040390015,-0.09147868305444717,-0.016620567068457603,-0.09634099155664444,0.06037857383489609,-0.008928587660193443,0.04817511886358261,0.0016212331829592586,0.03740806505084038,0.005907730665057898,-0.0004046534013468772,7.495317853459599e-33,0.01539382804185152,-0.06022260710597038,0.018824808299541473,-0.01797446794807911,0.02885289303958416,-0.004112124443054199,-0.09236901253461838,0.028056379407644272,-0.00946647860109806,-0.017022516578435898,-0.0913604348897934,-0.011410062201321125,-0.001631187042221427,-0.08599788695573807,-0.02616182714700699,0.0790000855922699,0.09236522018909454,0.017132174223661423,-0.02062489092350006,0.0334562286734581,-0.05742647498846054,0.1024835854768753,0.06356575340032578,-0.009028094820678234,0.09859730303287506,-0.037249933928251266,-0.021291179582476616,-0.09965165704488754,0.07631756365299225,-0.0021870622877031565,0.11371132731437683,-0.07626057416200638,-0.08039750158786774,-0.02122337929904461,-0.03523631766438484,0.060984086245298386,-0.044667162001132965,0.015121439471840858,-0.01303886529058218,-0.018759967759251595,0.03309542313218117,0.02029995806515217,0.1677883267402649,0.0428166389465332,0.11031030863523483,0.06437579542398453,-0.0237551461905241,0.06053780019283295,0.05743828043341637,0.010157080367207527,0.03642847761511803,0.04946532100439072,-0.05457567051053047,-0.050275690853595734,0.0002416490315226838,0.04483918845653534,0.022135857492685318,0.023407436907291412,-0.04420739784836769,0.04233555123209953,0.028470003977417946,-0.026276156306266785,-0.0011787236435338855,-0.038838695734739304,0.04768498241901398,-0.06642688810825348,-0.05209360271692276,0.043268926441669464,0.030938271433115005,0.013117062859237194,-0.12231501191854477,-0.014498021453619003,-0.04934291914105415,0.08048512786626816,-0.07175253331661224,0.024566588923335075,0.07503946870565414,0.009051905944943428,-0.08349516242742538,-0.0332404226064682,-0.18476147949695587,0.02466448023915291,0.01366532314568758,0.04072261229157448,0.013780498877167702,-0.08042813837528229,-0.07355760782957077,0.0903346985578537,0.030808063223958015,-0.03185451030731201,0.00798798818141222,0.06451596319675446,-0.01419906597584486,0.0032631780486553907,-0.03752942755818367,-7.716193976663076e-33,-0.03071506693959236,-0.03534427285194397,-0.0765894278883934,0.07099524140357971,-0.00885543879121542,0.04742810130119324,-0.01970433071255684,0.09730906784534454,0.055230870842933655,-0.03606761246919632,-0.0150298485532403,-0.03746277093887329,0.04196818172931671,-0.06436672806739807,-0.018725205212831497,0.08982785046100616,0.001959005370736122,0.04696927219629288,-0.00926705077290535,0.020939648151397705,-0.10370399802923203,0.08997715264558792,0.0358494408428669,-0.10284797102212906,-0.03905540332198143,0.01381069328635931,0.053540926426649094,-0.024343252182006836,-0.11059288680553436,0.04178772121667862,0.059441033750772476,0.010856397449970245,-0.019325867295265198,0.07334395498037338,-0.027928341180086136,-0.021119585260748863,0.06032398343086243,-0.10059457272291183,-0.02997875213623047,0.007052280940115452,0.017295926809310913,-0.019265344366431236,0.08748532831668854,0.06794470548629761,0.04446662962436676,0.028048759326338768,-0.00930094812065363,-0.05047449842095375,-0.03663574159145355,0.07074160873889923,0.14386266469955444,-0.07015200704336166,0.01334107480943203,-0.025189682841300964,0.049113910645246506,-0.017525536939501762,-0.03241709619760513,-0.0036310406867414713,-0.014287332072854042,0.0009881352307274938,0.14456234872341156,-0.0042587402276694775,-0.031588755548000336,-0.01080450601875782,-0.033333100378513336,0.01252811960875988,-0.09758620709180832,0.031817540526390076,0.016445696353912354,-0.03256736323237419,0.05091094598174095,-0.006466881837695837,-0.0567343607544899,-0.03147993981838226,-0.02283160760998726,0.021516097709536552,0.00015963619807735085,0.05225374549627304,0.05844239145517349,0.06757896393537521,-0.08818765729665756,-0.028527677059173584,0.000016065392628661357,0.0019593448378145695,-0.02311752177774906,-0.06401465088129044,0.04292355477809906,0.009222639724612236,0.07137183099985123,0.04452599585056305,-0.026093196123838425,-0.003695709863677621,0.006054013967514038,-0.024633444845676422,0.03928135707974434,-3.052773323020119e-8,0.05968344584107399,-0.004634135402739048,-0.03425058349967003,0.020162759348750114,-0.010480143129825592,-0.0520610548555851,-0.0027929532807320356,0.04535720497369766,-0.001204688218422234,0.10878486186265945,-0.03466786444187164,0.060049690306186676,-0.04874913766980171,-0.014277569949626923,0.045768801122903824,-0.04967227205634117,0.053250737488269806,0.049948420375585556,-0.05617471784353256,-0.0784706100821495,0.06180024519562721,0.006321176420897245,-0.05050509050488472,0.02093738690018654,0.018779905512928963,-0.04413212835788727,0.05678025633096695,-0.08154276758432388,-0.06302008777856827,-0.007858806289732456,0.023731423541903496,0.0022306120954453945,-0.010015012696385384,-0.10165996849536896,0.007988370023667812,0.023203488439321518,-0.04201316833496094,0.019773172214627266,0.03131420537829399,0.03068063221871853,0.03750568628311157,0.03529912233352661,-0.06121710687875748,-0.0455302894115448,0.03681173175573349,-0.042961739003658295,0.04454735293984413,0.02915281057357788,0.046450380235910416,0.011728395707905293,-0.01156799215823412,-0.0228058360517025,0.11046519875526428,0.005304773338139057,-0.05352224409580231,-0.0036685068625956774,0.04537246748805046,0.003967274911701679,-0.013340762816369534,0.010689878836274147,0.03361017256975174,0.05241625756025314,-0.008652516640722752,0.08265828341245651]},{"text":"Dicam et Alciden puerosque Ledae, 25 Hunc equis, illum superare pugnis Nobilem; quorum simul alba nautis Stella refulsit, Defluit saxis agitatus humor, Concidunt venti fugiuntque nubes, 30 Et minax, quod sic voluere, ponto Unda recumbit.","book":"Homage to Catalonia","chapter":4,"embedding":[0.05019785091280937,-0.013806095346808434,-0.017100229859352112,0.008547281846404076,-0.058311253786087036,0.06283704191446304,0.04855484515428543,0.04970565438270569,-0.003352040657773614,0.07109702378511429,0.07380180060863495,-0.13227392733097076,-0.009442963637411594,-0.06291001290082932,-0.09393628686666489,-0.049622002989053726,-0.07002033293247223,0.0454116091132164,-0.01544127706438303,0.018927862867712975,0.04706643894314766,-0.008271344937384129,0.00806721393018961,0.0736553817987442,-0.10653626173734665,0.02002096176147461,-0.05375329405069351,-0.02081654965877533,-0.01209800411015749,-0.09877187013626099,-0.003714441554620862,0.054314713925123215,0.07865426689386368,-0.01984146051108837,-0.034120526164770126,-0.015321031212806702,-0.02434759959578514,-0.09181617945432663,0.0540689080953598,0.10367544740438461,-0.0627567395567894,0.01291883084923029,-0.04657825082540512,-0.04818509519100189,-0.0019326037727296352,-0.021604152396321297,-0.0059555512852966785,0.09706930816173553,-0.035215482115745544,-0.029682500287890434,-0.0355071984231472,-0.03969458490610123,-0.06270314007997513,-0.03984931856393814,-0.023165730759501457,-0.025566982105374336,-0.029647482559084892,-0.09647135436534882,0.07744704186916351,-0.04947628080844879,0.060368843376636505,0.06168946996331215,-0.01528081949800253,-0.014071202836930752,-0.1336807757616043,0.010257400572299957,-0.028392253443598747,-0.045245461165905,-0.005882372613996267,0.024707358330488205,0.10888039320707321,-0.035111237317323685,0.02285616658627987,0.01936257630586624,-0.028081035241484642,0.09386777877807617,-0.03840254992246628,-0.05111612007021904,-0.041763901710510254,-0.08785300701856613,-0.00423414958640933,0.024647755548357964,0.038440871983766556,0.014724921435117722,0.03750009834766388,-0.019530097022652626,0.01985960081219673,0.005438106134533882,-0.030230889096856117,-0.03829366713762283,-0.037425171583890915,-0.007242398336529732,-0.06350097060203552,0.0027987612411379814,0.028957530856132507,0.019655896350741386,0.0042390376329422,-0.004942890722304583,0.011711383238434792,-0.035634156316518784,0.021076606586575508,-0.06379225850105286,0.001498515484854579,0.04390401765704155,-0.14082972705364227,-0.05836416035890579,0.016304373741149902,-0.07090087980031967,0.026778381317853928,-0.0424526147544384,-0.07298711687326431,-0.05313188210129738,-0.04893072694540024,-0.08300624787807465,0.05371798202395439,0.00703904964029789,-0.01727127470076084,-0.16587238013744354,-0.033313147723674774,-0.07054324448108673,0.04415007308125496,0.03203339874744415,0.016578426584601402,-0.020692715421319008,0.08026579022407532,-0.0035626848693937063,-0.036762554198503494,1.8898910508325508e-32,-0.047546304762363434,0.005686796735972166,-0.007242436055094004,0.03955121710896492,0.10027263313531876,-0.034361694008111954,-0.057080816477537155,-0.0750008299946785,-0.01233376283198595,-0.1014610305428505,-0.08429017663002014,0.06352724879980087,-0.023667754605412483,-0.03757508844137192,0.0006567142554558814,0.0443001314997673,0.08404899388551712,-0.04286256805062294,0.0048147388733923435,-0.07406456023454666,-0.04958038032054901,0.022990182042121887,0.033179495483636856,0.0038808637764304876,0.00405150605365634,-0.0001800474274205044,0.04230184108018875,-0.09838610142469406,-0.02230774238705635,0.026460275053977966,0.0682084783911705,-0.03474612161517143,-0.009424716234207153,-0.008850212208926678,0.0010854544816538692,0.050939809530973434,-0.017377479001879692,-0.01185767911374569,-0.06767967343330383,0.029016699641942978,0.047846172004938126,0.06990153342485428,-0.01772628165781498,0.06534165143966675,0.05798769369721413,0.05028611794114113,-0.009999371133744717,0.0501626692712307,0.07401970028877258,0.03050071932375431,-0.02390870824456215,0.036965206265449524,-0.023102281615138054,-0.07217542827129364,0.016963554546236992,0.04752093181014061,-0.047217532992362976,0.047019097954034805,-0.011608908884227276,-0.06690140813589096,0.04226919263601303,0.008169997483491898,-0.026824234053492546,0.0015336548676714301,0.03782612457871437,-0.0007046849350444973,-0.02103070728480816,0.04081485792994499,0.014635560102760792,-0.0248870812356472,-0.08684279024600983,-0.006065332796424627,0.02018764801323414,-0.045220740139484406,-0.05783303081989288,0.06555039435625076,-0.02542630396783352,-0.024591514840722084,-0.02036789432168007,0.019422348588705063,-0.06218254193663597,-0.01056736335158348,-0.012372848577797413,0.005171189084649086,0.024150991812348366,-0.02447878010571003,0.06280989199876785,0.0005282258498482406,0.004138806834816933,0.0608256459236145,0.044143203645944595,0.031101729720830917,0.02486409805715084,-0.0206600371748209,-0.05073337256908417,-1.7024089588944086e-32,-0.025938773527741432,-0.008687210269272327,-0.1027265414595604,0.1253259927034378,0.017364779487252235,0.07800629734992981,-0.08062036335468292,0.060279395431280136,0.07524702697992325,-0.05268177390098572,-0.001851844834163785,-0.04966114088892937,0.05621135234832764,-0.105424664914608,-0.05123059079051018,0.01923549361526966,0.07521401345729828,0.03492353484034538,-0.043568603694438934,-0.029203645884990692,-0.05647449940443039,-0.0038369798567146063,-0.01478950772434473,-0.10071907192468643,-0.05028504878282547,0.11547975242137909,0.0704207569360733,-0.018367953598499298,-0.054504938423633575,-0.03090914711356163,0.05169755220413208,0.03684471547603607,0.010062981396913528,-0.000599923892877996,-0.037602148950099945,0.013346858322620392,0.09073743969202042,-0.004721310455352068,-0.011060331016778946,0.02972588501870632,-0.0002994008536916226,-0.0063895671628415585,0.12339730560779572,0.04541601240634918,0.03845120593905449,0.004525488242506981,-0.03853567689657211,-0.06121714413166046,-0.07130743563175201,-0.006959185469895601,0.12226933985948563,-0.026458142325282097,-0.039429716765880585,0.04903217777609825,0.044603392481803894,-0.059889789670705795,-0.03243130072951317,0.020091582089662552,0.016453823074698448,-0.00839836522936821,0.04767274111509323,0.07812284678220749,-0.059406768530607224,0.020050309598445892,0.07239437103271484,-0.0897337943315506,-0.0914880707859993,0.030816569924354553,0.01689521223306656,-0.014253518544137478,0.11421886086463928,-0.08152800053358078,-0.07995516061782837,0.008063106797635555,-0.001419372041709721,0.022660547867417336,-0.046531207859516144,0.06062716990709305,0.003650802420452237,0.0695779100060463,-0.030076298862695694,-0.03521029278635979,-0.017501717433333397,0.05501710623502731,0.0324791856110096,-0.03937467187643051,0.009006127715110779,0.000029764458304271102,-0.0021971645765006542,0.025780558586120605,-0.009842880070209503,0.0005981432041153312,0.01372777484357357,-0.05866418033838272,0.058010928332805634,-6.469378632800726e-8,0.005775379948318005,-0.009466682560741901,-0.04067668318748474,0.04400691017508507,0.04228006675839424,-0.09059937298297882,0.0034450457897037268,0.1004834920167923,-0.024614062160253525,0.02853592298924923,0.02773943915963173,-0.02081374265253544,0.04003451392054558,0.04100659489631653,0.10204833000898361,-0.0025948460679501295,0.0343082994222641,0.03896743804216385,-0.003258346114307642,-0.05967571586370468,-0.012196003459393978,0.01473168283700943,0.00006406932516256347,-0.06150541454553604,-0.11638675630092621,0.008259312249720097,0.06648815423250198,-0.12541963160037994,-0.04463382810354233,-0.020038658753037453,0.025708988308906555,0.07352964580059052,0.05694761499762535,-0.08441247045993805,-0.03036626987159252,0.0841304212808609,0.014698438346385956,0.018848132342100143,-0.005579913966357708,0.030254874378442764,0.018320180475711823,0.00024117581779137254,0.03444937989115715,-0.045650847256183624,0.006771732587367296,-0.05745527520775795,0.0357431024312973,0.045227084308862686,0.05509784445166588,0.023680638521909714,-0.06980986893177032,0.01989159733057022,0.05028605833649635,0.015504105016589165,-0.0576627142727375,-0.04160068929195404,0.07763499766588211,0.05613856762647629,-0.03165119141340256,0.006263378541916609,0.09973675012588501,0.006304846610873938,0.011520716361701488,0.08123526722192764]},{"text":"Regulum et Scauros animaeque magnae Prodigum Paullum superante Poeno Gratus insigni referam camena Fabriciumque. 40 Hunc, et incomptis Curium capillis Utilem bello tulit, et Camillum Saeva paupertas et avitus apto Cum lare fundus.","book":"Homage to Catalonia","chapter":4,"embedding":[-0.010795636102557182,0.0036961163859814405,-0.06450560688972473,-0.024318858981132507,-0.053769417107105255,0.027330415323376656,0.1168648898601532,0.1489863097667694,-0.06012233719229698,0.06847413629293442,0.045025963336229324,-0.03048139438033104,0.03647646680474281,0.015274172648787498,-0.11097469925880432,-0.10363263636827469,-0.029080918058753014,0.030752182006835938,-0.06090647354722023,0.03326013311743736,0.04127425327897072,-0.030708661302924156,0.04372538626194,0.06132534146308899,-0.0649586096405983,0.06171831488609314,-0.06640840321779251,0.009711197577416897,0.025414012372493744,-0.10662923008203506,0.005667790770530701,0.09943722933530807,0.04767157509922981,-0.07164689153432846,0.0688144713640213,0.010189412161707878,-0.05053865164518356,-0.013541817665100098,0.003440341679379344,0.037022970616817474,-0.018676046282052994,-0.046769510954618454,-0.09447737038135529,-0.009504912421107292,-0.04795704409480095,-0.04251896217465401,0.0298369862139225,0.07031247764825821,0.007574297487735748,-0.04866942763328552,-0.058511655777692795,-0.014278187416493893,0.03087579645216465,-0.022054843604564667,-0.0719347894191742,0.052404481917619705,0.02052992209792137,-0.0777042955160141,-0.008129993453621864,-0.04235245659947395,-0.026065556332468987,0.004546629264950752,-0.041527874767780304,0.03146853297948837,-0.01269199512898922,0.0097282063215971,0.03006790764629841,0.02477148547768593,-0.08158808946609497,0.058870140463113785,0.10685096681118011,-0.043589890003204346,-0.05785262584686279,0.09603558480739594,-0.0679418072104454,0.10605859756469727,0.0037842700257897377,-0.031403496861457825,0.042547307908535004,-0.03321029618382454,-0.055714234709739685,0.03206857666373253,0.013349726796150208,0.009712530300021172,-0.002773744985461235,0.03577003255486488,0.03379243239760399,-0.02199256606400013,0.029632646590471268,-0.03132519870996475,-0.03304773196578026,0.01884988136589527,-0.06003085896372795,-0.01923617161810398,-0.007489645387977362,0.052230771631002426,-0.0025733993388712406,-0.026925059035420418,0.04932539537549019,-0.02825142629444599,0.02976795844733715,-0.052714426070451736,-0.0032441834919154644,-0.009511672891676426,-0.06367409229278564,-0.09284946322441101,-0.029355507344007492,-0.08232960850000381,0.03430108353495598,0.026725290343165398,-0.017851224169135094,-0.10323190689086914,-0.043164100497961044,-0.06361029297113419,0.051656804978847504,0.024067770689725876,0.012391983531415462,-0.07433690875768661,-0.04175182059407234,-0.07943090051412582,0.021537404507398605,-0.027639856562018394,-0.030571840703487396,-0.08324820548295975,-0.046355120837688446,0.022656239569187164,0.06867829710245132,2.5796376343060706e-32,-0.10620170086622238,-0.054248347878456116,-0.06350104510784149,0.030513735488057137,0.06652047485113144,-0.04129123315215111,-0.09707996249198914,-0.01684979535639286,-0.010602539405226707,-0.06677808612585068,-0.08312956988811493,0.020781729370355606,-0.07070685178041458,-0.013376747258007526,0.00850819330662489,0.02993163838982582,0.07888689637184143,-0.03373120725154877,-0.008334440179169178,-0.01591712422668934,-0.10082028806209564,0.09668710082769394,0.027244413271546364,0.06478283554315567,0.0031906324438750744,0.0380241684615612,0.0004264407907612622,-0.07713066041469574,0.01652398705482483,0.052043620496988297,0.13010887801647186,0.036118410527706146,-0.04059674218297005,0.017405064776539803,-0.0204976424574852,-0.04700930416584015,-0.06206713244318962,-0.0034135880414396524,-0.0339103564620018,0.028653902933001518,0.0074810488149523735,0.0621555857360363,0.07142918556928635,0.02617168053984642,0.045859549194574356,-0.04875335842370987,0.06035506725311279,0.03508593142032623,0.08978908509016037,-0.02470618672668934,0.026311444118618965,0.08765827864408493,0.015148764476180077,-0.046818897128105164,0.003286333056166768,-0.024069996550679207,-0.057259999215602875,0.062221359461545944,0.034035421907901764,-0.03147982805967331,0.006814245134592056,0.03381401300430298,0.008380546234548092,0.042536139488220215,0.03463141247630119,0.026711395010352135,-0.040908996015787125,0.04082784429192543,0.04603126272559166,0.030948327854275703,-0.039645127952098846,0.008200041949748993,-0.032000649720430374,0.07298684865236282,0.010363961569964886,0.06677042692899704,-0.029640471562743187,-0.019042648375034332,-0.029045378789305687,-0.059926118701696396,-0.12048424035310745,0.06675049662590027,-0.011809355579316616,0.0037117747124284506,0.050602275878190994,-0.02763858623802662,-0.01360432617366314,0.10462893545627594,0.06425952166318893,0.0028835490811616182,0.09469329565763474,-0.0058069308288395405,-0.04350214824080467,-0.017413640394806862,-0.014666995964944363,-2.4381444078551488e-32,0.011823127046227455,-0.038983963429927826,-0.04938177764415741,0.08082365989685059,-0.004851152189075947,0.03042926825582981,-0.1282595694065094,0.003642686177045107,0.03713545203208923,-0.031103171408176422,-0.039252087473869324,0.009599230252206326,0.05888594686985016,-0.025762198492884636,-0.029781758785247803,0.03431795910000801,0.03323770686984062,-0.002529197372496128,-0.027487214654684067,-0.07701726257801056,-0.004400922916829586,-0.02662244811654091,0.029287923127412796,-0.0718141421675682,-0.023913396522402763,-0.014842391014099121,0.02065042033791542,-0.032067082822322845,-0.04413837939500809,-0.023255467414855957,0.06237131357192993,-0.004109663888812065,-0.02674512006342411,0.08906726539134979,-0.06950693577528,-0.04388793557882309,0.16714361310005188,0.02225540019571781,-0.010323873721063137,-0.06372915208339691,-0.015659501776099205,-0.010364601388573647,0.12527260184288025,0.0028236499056220055,0.03060930408537388,-0.08789555728435516,-0.11926757544279099,-0.0314142219722271,-0.029278742149472237,0.009979759342968464,0.06424887478351593,0.0071021863259375095,0.059037305414676666,-0.052807632833719254,0.015221500769257545,-0.04078644514083862,-0.03094579093158245,-0.07346255332231522,0.003833549562841654,0.03113691322505474,0.07552158832550049,0.02946401946246624,-0.010119136422872543,0.06165381893515587,0.07173041254281998,0.051976293325424194,-0.1328670233488083,0.0472065694630146,-0.08462750911712646,-0.020338237285614014,0.10455163568258286,-0.05862380936741829,-0.05093028396368027,-0.004545603413134813,0.031140664592385292,0.034164924174547195,-0.023217041045427322,0.06093775853514671,0.024756839498877525,0.026615319773554802,0.0050919377245008945,-0.06454349309206009,-0.03554098308086395,-0.005382864736020565,-0.010019662790000439,-0.07417641580104828,-0.024127639830112457,-0.01380971260368824,0.002990930574014783,-0.010208599269390106,0.020903242751955986,-0.006614874582737684,0.01482455525547266,-0.01446800958365202,0.08771344274282455,-7.439057725378007e-8,0.015445402823388577,-0.024044228717684746,0.023849977180361748,0.03021426871418953,0.06849882006645203,-0.07686151564121246,-0.024286268278956413,0.0037255515344440937,0.025105955079197884,0.008258406072854996,-0.02578631229698658,-0.021636471152305603,0.03692770004272461,0.05445985496044159,0.018793873488903046,0.07435045391321182,0.08923982083797455,0.062190305441617966,-0.06802662461996078,-0.037369079887866974,0.03971254080533981,-0.07184768468141556,-0.012047491036355495,0.011289708316326141,-0.12967196106910706,-0.021768270060420036,0.012523788027465343,-0.05929166078567505,-0.02387787401676178,-0.0380871519446373,-0.050846777856349945,0.031706396490335464,-0.009585706517100334,-0.04209664463996887,-0.029888000339269638,0.04318029060959816,-0.0030659311451017857,-0.0034723838325589895,-0.004816458094865084,0.009363577701151371,0.06827568262815475,-0.06869632750749588,0.025739898905158043,-0.06576617807149887,0.06262826919555664,-0.047000184655189514,-0.04694987088441849,0.003448698204010725,0.00995637010782957,0.0035655233077704906,-0.01860724203288555,0.024592727422714233,0.1028057336807251,0.019246656447649002,-0.042519859969615936,-0.0624699741601944,0.065241739153862,0.01842176914215088,-0.027015751227736473,-0.031408485025167465,0.0009647051920183003,0.022226767614483833,0.09279171377420425,-0.00877414457499981]},{"text":"Gentis humanae pater atque custos, Orte Saturno, tibi cura magni 50 Caesaris fatis data: tu secundo Caesare regnes.","book":"Homage to Catalonia","chapter":4,"embedding":[-0.06012025102972984,0.04590819031000137,-0.05759946256875992,0.005588570609688759,-0.09669459611177444,0.05793583020567894,-0.03242120146751404,0.039174884557724,0.013253483921289444,0.04986051097512245,0.04133584722876549,-0.09759475290775299,0.03463515639305115,-0.06510546058416367,-0.06877069175243378,-0.1617923080921173,-0.05689067021012306,0.062292929738759995,0.004788445308804512,-0.00902425404638052,-0.02986627258360386,-0.05764579400420189,0.006371186580508947,0.040762703865766525,-0.09979376941919327,-0.022526465356349945,-0.009396868757903576,-0.025025980547070503,-0.01008418295532465,-0.050324562937021255,0.020166369155049324,0.030785705894231796,0.05085540562868118,-0.08003531396389008,0.015197466127574444,-0.0604126863181591,-0.011527049355208874,-0.029919050633907318,0.019252372905611992,0.05318267270922661,0.004617455881088972,-0.05348427966237068,-0.005440589971840382,0.033257856965065,0.02031434327363968,0.014732453972101212,0.0101608382537961,0.07746592909097672,0.06697952747344971,0.009805942885577679,-0.057033028453588486,-0.02079404704272747,-0.011235091835260391,0.022732889279723167,-0.07991506159305573,0.011375497095286846,-0.008585890755057335,-0.16226287186145782,0.014643410220742226,-0.060150086879730225,0.005230807699263096,0.019756922498345375,-0.023236414417624474,0.05875253677368164,-0.032290905714035034,0.012967455200850964,-0.03284771740436554,-0.02101132646203041,-0.02369595877826214,0.006286227144300938,0.040825244039297104,-0.0005875979550182819,-0.03540830314159393,0.14669330418109894,-0.08164280652999878,0.06681010127067566,-0.003478128695860505,-0.0340784527361393,-0.012069468386471272,-0.15587583184242249,-0.027882255613803864,-0.0018451041541993618,0.024304058402776718,0.008506153710186481,0.013038825243711472,0.02423376403748989,0.03347337245941162,0.016598256304860115,0.038977574557065964,-0.02294664829969406,-0.010242905467748642,0.033606674522161484,0.04098371043801308,-0.01747911423444748,-0.031350892037153244,0.026221981272101402,-0.005279181059449911,-0.0026561517734080553,0.045940447598695755,-0.028103332966566086,0.0035942974500358105,-0.008753923699259758,0.04143775627017021,0.1009913757443428,-0.12397655099630356,0.004203822463750839,-0.051879703998565674,-0.052515629678964615,0.03680730238556862,0.05224344879388809,-0.06824999302625656,-0.050743672996759415,-0.0062159704975783825,-0.03191772475838661,0.01767108589410782,-0.012195146642625332,0.009715280495584011,-0.031219569966197014,0.042694587260484695,-0.05541103333234787,-0.03703735023736954,-0.04367499426007271,-0.05682960897684097,-0.010808518156409264,0.08385349065065384,-0.01432446576654911,0.05800120159983635,9.717376865338047e-33,-0.09667890518903732,-0.08195094019174576,0.05084852874279022,0.0011702388292178512,0.035484760999679565,-0.04155946522951126,-0.03748693689703941,-0.04699324071407318,0.011565419845283031,-0.04780535399913788,-0.08264505863189697,-0.07416967302560806,-0.05482039973139763,0.03342245891690254,-0.04616944119334221,0.09392335265874863,0.08316154032945633,-0.04567713290452957,-0.09882216155529022,-0.05358559638261795,-0.07966956496238708,0.061075590550899506,0.048746686428785324,0.001905074343085289,0.08154421299695969,0.02331176958978176,-0.040935929864645004,-0.06421151012182236,-0.019394412636756897,0.01564132794737816,0.11337164044380188,-0.004865572322160006,0.030381886288523674,-0.04092639684677124,0.03928390517830849,0.0035394744481891394,0.04183292016386986,0.02167677693068981,-0.03696746006608009,0.10725582391023636,0.04835858196020126,0.038460396230220795,0.060950666666030884,0.018092064186930656,0.0073211234994232655,-0.011711448431015015,0.06495524197816849,0.04052107036113739,0.04698435217142105,-0.04695633426308632,0.04233888164162636,0.04238642007112503,-0.1132475957274437,-0.013527283445000648,0.00222980510443449,-0.000009258844329451676,-0.056967657059431076,0.05842066928744316,-0.0638875886797905,-0.030947793275117874,0.07519679516553879,0.01108650304377079,0.05364163964986801,-0.0439329631626606,-0.019363965839147568,-0.011683802120387554,-0.06430898606777191,0.026973599568009377,0.06174055114388466,0.0866534486413002,-0.019487645477056503,0.034548960626125336,0.016259891912341118,0.03873499110341072,0.037972692400217056,0.08332300186157227,0.013721040450036526,-0.04210005700588226,-0.010644325986504555,-0.08288107067346573,-0.09410171210765839,0.04343580827116966,0.019313324242830276,0.03985889256000519,0.07768837362527847,-0.012940717861056328,-0.016345595940947533,0.04026857763528824,0.05838201940059662,0.03989364206790924,0.05853748321533203,0.05333692952990532,-0.027263060212135315,0.038582295179367065,-0.034262727946043015,-9.921136321425613e-33,-0.08404296636581421,-0.022643303498625755,-0.06476541608572006,0.0542011521756649,-0.004126483574509621,-0.0041871387511491776,-0.13068895041942596,0.06133033335208893,0.046445488929748535,-0.1229604035615921,-0.025533709675073624,-0.08096300065517426,0.08706260472536087,-0.06332799792289734,0.013732731342315674,0.08391536772251129,0.0526212640106678,0.07870692759752274,-0.11861895769834518,-0.008720231242477894,-0.019992291927337646,-0.036247506737709045,-0.017161503434181213,-0.06688015162944794,0.029958948493003845,-0.010891331359744072,0.06190962716937065,0.027423692867159843,-0.02282406948506832,0.028765304014086723,0.02462717518210411,-0.015525716356933117,-0.02439427562057972,-0.014332707971334457,0.005452286917716265,-0.012832427397370338,0.06577994674444199,0.020685525611042976,0.03168350085616112,0.01959516853094101,0.02182343229651451,0.031516700983047485,0.04273959621787071,0.026551628485322,0.02194427326321602,-0.009020796976983547,-0.005891225300729275,-0.01528552733361721,-0.02722141146659851,0.053653471171855927,0.10150834918022156,-0.09585808962583542,0.006467895116657019,0.026328545063734055,0.06639935821294785,0.022614965215325356,-0.0011607283959165215,-0.06503097712993622,-0.06638094782829285,-0.05984272435307503,0.01720573566854,0.018666177988052368,-0.01784277707338333,0.0070685832761228085,0.050542838871479034,-0.005398034118115902,-0.027766555547714233,0.07385524362325668,-0.04558950290083885,0.02608097717165947,0.06603311002254486,-0.13956663012504578,-0.09678429365158081,0.009145473130047321,-0.027996620163321495,-0.00021377814118750393,-0.04756130278110504,0.012897761538624763,0.03302169218659401,0.05880884453654289,-0.10804213583469391,-0.06880402565002441,-0.006013381760567427,-0.00007403085328405723,0.005221683997660875,0.07817686349153519,0.03913060203194618,-0.022636355832219124,0.007010378874838352,0.035683710128068924,-0.02258671075105667,0.010544613003730774,0.010947395116090775,-0.03635454922914505,-0.0028872305992990732,-3.853251229202215e-8,0.06354473531246185,-0.0471675805747509,-0.04215683415532112,0.09833912551403046,0.01109028235077858,-0.051544588059186935,-0.03709874302148819,-0.022722816094756126,-0.019052818417549133,0.028744732961058617,-0.044341377913951874,0.019788993522524834,0.07663735002279282,-0.028450658544898033,0.017143206670880318,0.13494227826595306,0.06881218403577805,0.023875854909420013,-0.022935478016734123,-0.06631927192211151,-0.0005543155129998922,0.005000881385058165,-0.027978811413049698,-0.017730100080370903,-0.0592225082218647,-0.003524150000885129,-0.007568511180579662,-0.0002470710896886885,-0.012476131319999695,-0.06358178704977036,0.023608749732375145,-0.008207350969314575,0.0015983799239620566,-0.07565290480852127,0.1322431117296219,0.06046900153160095,0.05051302909851074,-0.03903999552130699,0.05913963541388512,-0.005193090531975031,0.12286925315856934,0.010137096047401428,0.07650753855705261,0.003324211807921529,0.05224832147359848,-0.008422128856182098,-0.0029657618142664433,0.023368585854768753,-0.05297722667455673,-0.06829250603914261,-0.04531724750995636,-0.03135625272989273,0.054180484265089035,0.03477931767702103,-0.0009820822160691023,-0.01727353222668171,0.03960206359624863,0.04840477928519249,-0.031946681439876556,0.05516775697469711,0.017223667353391647,0.058889783918857574,-0.0037139852065593004,0.004085782915353775]},{"text":"Cum tu, Lydia, Telephi Cervicem roseam, cerea Telephi Laudas bracchia, vae meum Fervens difficili bile tumet iecur.","book":"Homage to Catalonia","chapter":4,"embedding":[0.005538020748645067,-0.028915517032146454,-0.0235093105584383,-0.04789135232567787,-0.14622549712657928,-0.033897824585437775,0.06993820518255234,0.1010587215423584,0.02537524700164795,0.002988853259012103,0.08978982269763947,-0.08406608551740646,0.015394591726362705,-0.08346939086914062,-0.09351374953985214,-0.05485372990369797,-0.041964124888181686,0.01103691291064024,-0.031561221927404404,-0.03285970538854599,-0.11965266615152359,0.02856302633881569,0.013753367587924004,0.030494926497340202,-0.02117905206978321,-0.023033391684293747,0.02115730755031109,-0.03862744942307472,0.013334332033991814,-0.06471968442201614,0.02919846773147583,0.07861800491809845,0.07454949617385864,-0.05921677127480507,-0.05697450786828995,0.03353896737098694,-0.0218037199229002,-0.0026860691141337156,0.0020515911746770144,-0.019235672429203987,-0.024408532306551933,-0.056350015103816986,-0.026522217318415642,-0.10656686127185822,-0.02067681960761547,-0.0717274621129036,-0.004790094681084156,0.04319358617067337,-0.023862766101956367,0.03322785347700119,-0.07404796034097672,0.046320561319589615,-0.04717116057872772,0.07172974944114685,-0.0354878194630146,-0.03161117434501648,0.04979099705815315,-0.08069150149822235,0.006200509145855904,-0.05136200040578842,-0.042282067239284515,0.036569222807884216,-0.000023146363673731685,-0.015688970685005188,-0.015260371379554272,0.00347092910669744,0.014804859645664692,0.007135880645364523,0.009168600663542747,-0.03109639324247837,-0.009551595896482468,-0.024848680943250656,-0.025396469980478287,0.060572683811187744,-0.0889502540230751,0.05004383996129036,0.01239043939858675,-0.09580725431442261,-0.008928844705224037,-0.03589314967393875,-0.06315862387418747,-0.030621202662587166,0.01273858081549406,0.00971272774040699,0.0020066865254193544,0.08185240626335144,-0.0379168801009655,-0.04015570506453514,0.001234898460097611,-0.08520539104938507,-0.023707767948508263,0.04641279950737953,-0.019436758011579514,-0.04891320690512657,-0.01872529275715351,-0.06390509009361267,-0.007984546013176441,-0.0653647854924202,0.024815639480948448,0.026756199076771736,0.005367573816329241,0.03669781610369682,0.013508975505828857,0.04379973188042641,-0.17384442687034607,-0.05796140059828758,-0.011100820265710354,-0.03521166741847992,0.03478722274303436,-0.007805362343788147,0.07731733471155167,-0.07332456856966019,0.01787332445383072,-0.11917497217655182,-0.009049560874700546,0.08989249169826508,-0.02859736979007721,-0.07137427479028702,0.04100935906171799,0.05907893180847168,-0.015261172316968441,0.04067172110080719,-0.040055740624666214,-0.06975847482681274,0.023233283311128616,-0.0683702826499939,0.08797076344490051,9.093913763445106e-33,-0.057574521750211716,0.03293188288807869,0.0789073258638382,0.014949563890695572,0.06642443686723709,-0.002204073593020439,-0.016916222870349884,-0.01171280350536108,0.07092920690774918,-0.08821367472410202,-0.03548676148056984,0.011705263517796993,-0.005117473192512989,-0.05132400617003441,0.012403775937855244,0.004363786429166794,0.0652308538556099,-0.06277892738580704,-0.07250145822763443,0.020760441198945045,-0.014042017981410027,-0.034017134457826614,0.007926623336970806,0.025886815041303635,0.06139844283461571,-0.03546631336212158,0.015746857970952988,0.026517342776060104,-0.021982206031680107,0.05096964165568352,0.07855246216058731,-0.0022274479269981384,-0.0049347346648573875,0.006657371763139963,-0.00016135421174112707,0.025890352204442024,-0.026526840403676033,-0.013179675675928593,-0.049268364906311035,-0.011002783663570881,0.07757455855607986,-0.004054590594023466,0.06353361904621124,-0.007870765402913094,0.02555767074227333,0.040198247879743576,0.018701262772083282,-0.001890741172246635,0.09135647863149643,0.007068965584039688,-0.006972867995500565,0.03730589523911476,-0.05966133996844292,-0.03799004852771759,0.06327857077121735,-0.04440067335963249,-0.058720845729112625,0.02742549031972885,-0.012858908623456955,0.06512951850891113,-0.008160829544067383,0.03215834125876427,-0.05025138705968857,0.04806631803512573,0.003970838151872158,-0.09516487270593643,0.0009841533610597253,-0.0039563230238854885,0.025230810046195984,0.0015627186512574553,-0.11346343159675598,0.018852800130844116,0.002577157923951745,0.055869873613119125,-0.0724056288599968,0.066157765686512,-0.05186319351196289,-0.006864103488624096,-0.024880653247237206,-0.0246183630079031,-0.011368926614522934,0.012224007397890091,-0.0022578604985028505,-0.048094674944877625,0.09552504122257233,0.021898794919252396,0.023508738726377487,-0.006732526700943708,-0.021583620458841324,0.003269479377195239,0.02035566046833992,0.07854115962982178,0.07340846210718155,-0.03147803619503975,-0.0685521587729454,-1.0208581424400125e-32,-0.04893052577972412,-0.01475032139569521,-0.07383322715759277,0.06305539608001709,0.05311209708452225,0.0393417663872242,-0.028615253046154976,0.03332178294658661,0.005486704409122467,-0.009341268800199032,-0.026599915698170662,-0.04040663689374924,0.1198824867606163,-0.06580251455307007,0.054702021181583405,0.09595903009176254,0.13096685707569122,0.049863316118717194,-0.036092210561037064,-0.047209374606609344,-0.0373605452477932,-0.0020721605978906155,0.04410161077976227,-0.03418648615479469,-0.06999358534812927,0.012155435979366302,0.07951520383358002,-0.06866901367902756,-0.004664284642785788,0.09207625687122345,0.011065390892326832,0.03039221465587616,-0.03640236333012581,0.11002124845981598,-0.038833897560834885,-0.010538887232542038,0.13248074054718018,0.023729238659143448,0.06826052069664001,0.03177379444241524,0.002042819047346711,0.019134026020765305,0.1266765296459198,0.03299201652407646,-0.053232692182064056,-0.056851502507925034,-0.05686068907380104,-0.010350508615374565,-0.05287665128707886,-0.03423886373639107,0.08684578537940979,-0.015746472403407097,0.013067237101495266,-0.019750598818063736,0.03976821526885033,0.0620950348675251,0.008678297512233257,-0.057337041944265366,-0.00010038235632237047,-0.031723737716674805,0.060138873755931854,-0.010401003062725067,0.02670636586844921,0.004590997938066721,0.030406925827264786,-0.05129051208496094,-0.024979544803500175,0.0019141911761835217,-0.00947875902056694,-0.0022254132200032473,0.048729486763477325,-0.04158322885632515,-0.047543544322252274,-0.05556653067469597,-0.05226174369454384,0.09652145951986313,-0.03235279768705368,0.043079644441604614,-0.0020075689535588026,0.0019628298468887806,0.01844867318868637,-0.050438109785318375,0.015513571910560131,-0.009155163541436195,0.02040892280638218,-0.044036779552698135,-0.027515068650245667,-0.026561018079519272,0.03822040557861328,-0.04746543616056442,-0.04100155830383301,0.004442054778337479,0.014838253147900105,-0.08432359993457794,0.058442894369363785,-4.078243875937915e-8,0.030087625607848167,-0.1550672948360443,-0.0525110624730587,0.023454848676919937,0.05016764625906944,-0.01863095350563526,-0.018094561994075775,-0.02947360835969448,-0.009630849584937096,0.07217620313167572,-0.053759295493364334,0.06551116704940796,-0.0035803376231342554,0.025340596213936806,0.12236633896827698,0.08350060135126114,0.05868309363722801,0.06453011184930801,-0.044824276119470596,-0.08831322193145752,0.05306796729564667,-0.02746940590441227,-0.0051576197147369385,-0.05996230989694595,-0.08328817039728165,0.05205178260803223,0.035617828369140625,-0.04512514919042587,-0.01756295934319496,-0.051767610013484955,0.03946009278297424,0.02349213697016239,0.004063229076564312,-0.09387768059968948,-0.05991847440600395,0.011495829559862614,0.027184894308447838,0.0033465202432125807,-0.031832557171583176,0.10007446259260178,0.06391569972038269,0.04113302007317543,0.0200868621468544,0.029095172882080078,0.015735004097223282,-0.08158496767282486,0.03406368941068649,0.017763618379831314,-0.025993339717388153,-0.041601672768592834,-0.0683867558836937,0.0342848114669323,0.15683384239673615,-0.013065769337117672,0.0036763916723430157,0.010778641328215599,0.06404096633195877,0.007152218837291002,-0.053105294704437256,0.029897348955273628,0.10283910483121872,0.0795745775103569,0.04816501960158348,-0.011149493046104908]},{"text":"Uror, seu tibi candidos Turparunt umeros immodicae mero 10 Rixae, sive puer furens Impressit memorem dente labris notam.","book":"Homage to Catalonia","chapter":4,"embedding":[-0.021537601947784424,0.07456851005554199,-0.003971845842897892,-0.005392882041633129,-0.13434170186519623,-0.010051289573311806,0.011899628676474094,0.10779346525669098,0.007080398499965668,0.03605694696307182,0.08478406071662903,-0.08346293866634369,0.0024236170575022697,-0.04333973675966263,-0.0169425830245018,-0.033577658236026764,-0.020811952650547028,0.10417692363262177,-0.0020533553324639797,0.03696547448635101,0.06979566812515259,-0.056983254849910736,-0.012921001762151718,0.05050606280565262,-0.0533265545964241,0.020317967981100082,0.015471603721380234,-0.05590313673019409,0.007783215027302504,-0.07573637366294861,0.031536709517240524,0.04243908077478409,0.09699610620737076,-0.031203631311655045,0.016077574342489243,0.026552699506282806,-0.058077823370695114,-0.04881572723388672,0.07821221649646759,-0.023894909769296646,-0.08902642130851746,-0.08034514635801315,-0.021504875272512436,-0.0629967525601387,0.0006814106018282473,-0.00213164952583611,0.008578848093748093,0.04920858144760132,0.005174808204174042,-0.004479105118662119,-0.07073502242565155,0.05531948432326317,-0.02570033259689808,-0.011439314112067223,-0.0963607206940651,-0.09217818826436996,-0.00515609048306942,-0.04451114684343338,0.024187427014112473,-0.027437249198555946,0.019466551020741463,0.02388652041554451,0.044329822063446045,0.06983038038015366,-0.09456568956375122,0.022612497210502625,-0.019114559516310692,0.02572418935596943,-0.06852906942367554,0.004284088499844074,0.10777376592159271,-0.061038270592689514,-0.011587291955947876,0.02151797153055668,-0.03422098606824875,0.03414497151970863,0.04132276028394699,0.012070082128047943,-0.011945595033466816,-0.059343889355659485,-0.05980167165398598,0.019873682409524918,0.07696734368801117,-0.03946145251393318,-0.040912989526987076,-0.017874471843242645,0.020708711817860603,0.017242565751075745,0.009477601386606693,0.04301586002111435,0.0008981575956568122,0.05931563302874565,-0.00816586334258318,0.018816225230693817,0.036664929240942,-0.017982305958867073,-0.02556937374174595,0.07711206376552582,0.04101448506116867,0.005199444480240345,0.04139535501599312,0.04731626808643341,-0.03194008395075798,0.08233010768890381,-0.04926865175366402,-0.031283460557460785,-0.0012055585393682122,-0.1305304616689682,0.09833294153213501,0.01877124421298504,-0.053765375167131424,-0.03233765810728073,-0.05494808405637741,-0.007057688198983669,0.0390893779695034,-0.09428361803293228,0.06859757751226425,-0.026729529723525047,0.008217173628509045,-0.023027783259749413,0.051066022366285324,-0.07927463203668594,-0.03402663767337799,-0.1034800186753273,-0.009045829065144062,-0.0763557180762291,0.07727880030870438,1.1370215962142249e-32,-0.055316515266895294,-0.08021264523267746,-0.07670112699270248,-0.02250681445002556,0.03457028418779373,-0.028804689645767212,-0.07813800871372223,-0.011658311821520329,-0.0116573516279459,-0.07026705145835876,-0.09249667078256607,0.010475289076566696,-0.06146763265132904,0.09003394097089767,0.012321565300226212,0.06137142702937126,0.05588535964488983,0.010239091701805592,0.0009380324045196176,-0.04103962704539299,-0.10220157355070114,0.019640740007162094,0.03114025853574276,0.02916182018816471,-0.04426014795899391,0.04438198357820511,0.005327831953763962,-0.07834994047880173,-0.033247210085392,0.008258100599050522,0.11346650123596191,-0.020615216344594955,0.009095135144889355,-0.00984521210193634,-0.01335903350263834,0.01744205132126808,0.06785207986831665,0.04217500239610672,-0.028391296043992043,-0.09041915833950043,0.044424694031476974,0.008630676195025444,0.07331719249486923,0.008957918733358383,0.022802287712693214,0.022167043760418892,0.007007752079516649,0.03495561331510544,0.052988212555646896,0.03197363391518593,-0.08013097941875458,0.025967488065361977,-0.05092311650514603,0.06576518714427948,0.029041845351457596,-0.05120943486690521,-0.09083676338195801,0.05915149301290512,-0.04251697659492493,-0.02094014175236225,-0.02904212288558483,0.023618027567863464,0.07347069680690765,0.03537154197692871,-0.0649447813630104,-0.051914166659116745,-0.020070509985089302,0.014677164144814014,0.09276611357927322,0.028429090976715088,-0.05290796607732773,0.02359696477651596,-0.1633455455303192,0.02796095982193947,0.008385204710066319,-0.030767105519771576,0.04396866261959076,-0.07158844918012619,-0.047832466661930084,0.0498310811817646,-0.04594648256897926,-0.012217537499964237,0.012119656428694725,0.027848953381180763,0.04999076575040817,0.06392523646354675,0.03362084552645683,0.006248413119465113,0.09763694554567337,0.0812891498208046,-0.01501606497913599,-0.004222127143293619,-0.03209395706653595,0.05109260603785515,0.008961478248238564,-1.148608590967074e-32,0.06864641606807709,-0.08306669443845749,0.003448043018579483,0.05704218149185181,-0.03871247544884682,0.04247957095503807,-0.0723704993724823,0.043532583862543106,-0.05455044284462929,-0.09401530772447586,-0.016383560374379158,-0.008464793674647808,0.1037161573767662,-0.05030297860503197,-0.025834880769252777,0.04716122895479202,0.13105429708957672,0.021461104974150658,-0.06638529896736145,-0.03479171544313431,-0.05831475928425789,0.039379481226205826,-0.07173197716474533,-0.03540189191699028,-0.027146238833665848,0.04204733297228813,-0.023331420496106148,-0.07158242911100388,0.008197298273444176,-0.04019256308674812,0.049954675137996674,0.0004846407100558281,-0.007079464383423328,0.02345142886042595,0.01618560217320919,0.05066639184951782,0.12896880507469177,-0.03785229101777077,-0.06572233140468597,0.024577850475907326,0.018123965710401535,0.04106603562831879,-0.07057264447212219,-0.011007019318640232,-0.009721620939671993,0.015872063115239143,-0.08459164202213287,0.009729958139359951,-0.052274275571107864,0.05114556849002838,0.11873264610767365,-0.003728702664375305,0.030266694724559784,-0.020828334614634514,0.04772153124213219,0.0019089437555521727,-0.056999001652002335,-0.0524686798453331,-0.10559549182653427,0.017516711726784706,0.01068082544952631,0.0478375144302845,-0.023453107103705406,-0.07318540662527084,0.01556563749909401,-0.02091440185904503,-0.0361657440662384,0.034720148891210556,-0.007493829354643822,0.020473415032029152,0.12456481903791428,-0.0074631525203585625,-0.044883016496896744,-0.0241212360560894,0.0254829078912735,-0.06691718846559525,0.010201011784374714,0.0027257211040705442,-0.012996602803468704,-0.009469226934015751,0.001357964938506484,-0.0655481368303299,0.04349042475223541,0.032669950276613235,-0.055769454687833786,-0.004271501209586859,0.028093598783016205,-0.03894560784101486,-0.03433690220117569,0.016839969903230667,-0.0032743255142122507,0.048957765102386475,-0.014662535861134529,0.0069263107143342495,0.008665737695991993,-4.156824218171096e-8,0.05045689642429352,-0.12761205434799194,0.005098331719636917,0.00019603833789005876,0.016684450209140778,-0.016797935590147972,-0.038035798817873,0.002929332200437784,-0.08167149126529694,0.03538501262664795,0.02552897483110428,0.01214707363396883,-0.027552569285035133,0.03746521845459938,0.0031430963426828384,0.015868915244936943,0.13901996612548828,0.06290686130523682,0.003484077285975218,-0.026994887739419937,-0.04592301696538925,-0.03736206144094467,-0.022905513644218445,-0.012037360109388828,-0.04017133638262749,-0.00593186542391777,0.012485593557357788,-0.10813311487436295,0.00003163653673254885,-0.02768448367714882,0.04179501533508301,0.043891143053770065,0.07464233040809631,-0.00868708360940218,0.04826686531305313,0.09490571171045303,0.004758673254400492,-0.03046080842614174,0.027227597311139107,-0.018203990533947945,0.06983882188796997,-0.022016426548361778,0.05638989806175232,-0.0019838036969304085,-0.005605979356914759,-0.07217450439929962,-0.01824628934264183,0.02051846869289875,-0.027162257581949234,-0.059319645166397095,-0.04171431437134743,0.1055121049284935,0.020430099219083786,0.058004558086395264,-0.029127059504389763,-0.0028863444458693266,0.08037927001714706,-0.03393581509590149,-0.00025894009741023183,0.040898069739341736,0.116234689950943,0.06046731770038605,0.004471451044082642,-0.06966817378997803]},{"text":"Felices ter et amplius, Quos inrupta tenet copula nec malis Divolsus querimoniis Suprema citius solvet amor die. 20 XIV.","book":"Homage to Catalonia","chapter":5,"embedding":[-0.07284843921661377,0.0604051798582077,-0.038640815764665604,-0.010805188678205013,-0.07639437168836594,-0.019954046234488487,0.08366329222917557,0.09534352272748947,0.03863265737891197,0.011350657790899277,0.1196153461933136,0.028487350791692734,0.03293614089488983,-0.005176430102437735,-0.07862922549247742,-0.06590921431779861,-0.10237432271242142,0.028989017009735107,-0.07510552555322647,0.10181806236505508,0.09045039862394333,-0.01880766451358795,0.015720875933766365,0.013591110706329346,-0.006044785026460886,0.07225105911493301,-0.02333975024521351,-0.04904801398515701,0.010847697034478188,-0.08741431683301926,-0.018100373446941376,0.061252251267433167,0.025660019367933273,0.029019713401794434,0.07237385958433151,0.01816534623503685,0.04526345804333687,-0.01062107551842928,0.029409274458885193,0.06356491893529892,-0.0710051953792572,-0.045400671660900116,-0.010548942722380161,-0.025249585509300232,-0.1310054361820221,-0.10842052102088928,-0.06931739300489426,0.061260197311639786,0.04329787939786911,0.024970710277557373,-0.08951909840106964,0.009607087820768356,-0.005414644721895456,0.05414238199591637,0.0028951147105544806,-0.05408694967627525,-0.022866280749440193,-0.004869980271905661,0.00776631198823452,-0.06782281398773193,0.05722937360405922,0.05938708037137985,-0.0701947882771492,0.05790712311863899,-0.0399087555706501,0.009111423045396805,0.042890455573797226,-0.05473920702934265,-0.09025518596172333,0.10439440608024597,0.04469555243849754,-0.016350513324141502,0.014463848434388638,-0.053738951683044434,-0.0027120159938931465,0.10539165884256363,0.035623520612716675,-0.07879706472158432,-0.02192007750272751,-0.05840355157852173,-0.018416915088891983,0.013262500055134296,0.06829425692558289,-0.012664918787777424,0.006326235365122557,0.04091167449951172,-0.06213534623384476,-0.033711060881614685,-0.006958420854061842,-0.06284917145967484,-0.015423264354467392,-0.012714282609522343,-0.05853794515132904,-0.025545837357640266,-0.036651358008384705,0.06251059472560883,-0.023707151412963867,0.03313825652003288,-0.011767133139073849,-0.013726864941418171,0.08348783850669861,0.005484128370881081,-0.0242508202791214,0.06751862913370132,-0.06715758889913559,-0.0027183869387954473,-0.03399858623743057,-0.0031847187783569098,-0.023992862552404404,0.0008938528480939567,-0.02019263617694378,-0.06217795982956886,0.045714568346738815,-0.056440722197294235,0.02606763131916523,0.03650481998920441,-0.010854114778339863,-0.04278934374451637,0.005926028359681368,-0.03794551640748978,0.04323892667889595,-0.030805794522166252,-0.05599905177950859,0.004630482755601406,-0.03399238362908363,-0.01236026082187891,-0.03662300109863281,9.027762818852582e-33,0.035828400403261185,0.04348183050751686,0.06363135576248169,-0.048009783029556274,-0.02848823182284832,-0.041547175496816635,-0.1042466014623642,-0.015463749878108501,-0.04791676625609398,0.034274883568286896,-0.13501957058906555,0.001189705217257142,-0.056537918746471405,0.0038129533641040325,-0.04020095244050026,-0.08233347535133362,0.09210581332445145,-0.057062841951847076,0.049489978700876236,-0.04078018292784691,0.054877474904060364,0.06273302435874939,0.017674826085567474,-0.015601239167153835,0.05909338966012001,0.004263405688107014,-0.051859300583601,0.048520151525735855,0.011934513226151466,0.04219746217131615,0.09205149859189987,0.0016969350399449468,-0.014513101428747177,0.03838653117418289,-0.03468748554587364,0.03649288788437843,-0.006926931906491518,0.02659744769334793,-0.04132695123553276,0.04688866063952446,0.001074632746167481,0.018424319103360176,0.05866621062159538,-0.01417727954685688,0.027733957394957542,-0.049753379076719284,0.05783626437187195,0.05923487991094589,0.07021816819906235,0.0644531324505806,-0.02498122677206993,0.009452518075704575,0.03318766877055168,-0.05353722348809242,-0.01325562596321106,0.03412364423274994,-0.08238010853528976,0.0503247044980526,-0.0533052422106266,0.03526599332690239,0.054241448640823364,-0.014314502477645874,-0.020004455000162125,0.008310639299452305,-0.005023493897169828,-0.009257970377802849,-0.02390424720942974,-0.010129023343324661,0.12459569424390793,0.03024507686495781,-0.19136406481266022,0.05047249421477318,0.045788783580064774,0.04312059283256531,0.062285881489515305,0.014568059705197811,-0.008993142284452915,-0.05812333524227142,-0.00852168258279562,0.0072927940636873245,-0.07608074694871902,-0.06088752672076225,0.0014138187980279326,0.016420947387814522,0.07029455900192261,-0.014133680611848831,0.028906231746077538,-0.034377776086330414,-0.02713729999959469,0.030331527814269066,0.010981251485645771,0.0038909572176635265,-0.03126659616827965,-0.026952039450407028,0.01682000234723091,-9.984590241166969e-33,0.02475772053003311,-0.048670463263988495,-0.01891009695827961,0.02084973081946373,-0.07275962829589844,0.021844126284122467,-0.06006312370300293,0.021116863936185837,-0.0632382407784462,-0.08354268223047256,-0.0027055058162659407,-0.010075103491544724,0.09606492519378662,-0.05358262360095978,-0.03396490588784218,0.023993052542209625,-0.03074837289750576,-0.025384698063135147,-0.020779766142368317,0.0012597993481904268,-0.07712037861347198,0.0002476414665579796,0.010115738026797771,-0.053946174681186676,-0.003941396251320839,-0.006473755929619074,0.0036135087721049786,-0.06683862209320068,-0.022971654310822487,0.041569825261831284,0.06209652125835419,0.02449893206357956,-0.05270666256546974,0.003702123649418354,0.017552299425005913,0.0014134683879092336,0.0824560821056366,0.005333974491804838,0.06008921563625336,-0.011075652204453945,-0.047864072024822235,0.034591276198625565,0.1558278650045395,0.048605844378471375,0.0435149185359478,-0.019959550350904465,0.020000191405415535,-0.02348209358751774,-0.09121119230985641,0.03777620568871498,-0.019186953082680702,0.023603906854987144,-0.013493414036929607,0.036994751542806625,0.08662031590938568,-0.0029665851034224033,-0.010763345286250114,0.0102477315813303,-0.05927671119570732,-0.01114068552851677,-0.008062359876930714,0.03829832375049591,-0.030558688566088676,-0.03127039223909378,0.14396126568317413,0.01666446030139923,-0.1120973750948906,0.06999590247869492,0.04864838719367981,0.05569373816251755,0.03959054499864578,-0.0681675374507904,-0.07776445895433426,-0.08612560480833054,0.010433875024318695,-0.042686231434345245,-0.10848351567983627,-0.04859296604990959,0.003129668766632676,0.06508098542690277,-0.010820845142006874,0.009859241545200348,-0.041069358587265015,0.007026165258139372,-0.042391858994960785,-0.02548530325293541,0.07038675993680954,0.03618999943137169,0.02032645046710968,-0.02515614777803421,-0.011378902941942215,-0.008921220898628235,0.07297078520059586,0.013375641778111458,0.03439592942595482,-3.665826042720255e-8,-0.005040821153670549,-0.01926218718290329,-0.1095709279179573,-0.05519593879580498,0.08651559054851532,-0.02751244232058525,-0.03444651886820793,-0.046313077211380005,-0.02271353453397751,0.0667429193854332,-0.012821917422115803,0.04664141684770584,-0.032144252210855484,-0.008569106459617615,0.027866054326295853,0.008325030095875263,0.028132349252700806,0.027156144380569458,-0.011116402223706245,-0.03300436958670616,0.004044911824166775,-0.04540887475013733,-0.016594819724559784,0.0005032537155784667,0.009062468074262142,0.02687620185315609,0.005254475865513086,-0.12235286831855774,0.007635446265339851,0.07985656708478928,-0.024836793541908264,0.023570142686367035,-0.0526101216673851,-0.12050580233335495,-0.03667522966861725,0.019478898495435715,-0.00024345355632249266,0.023600585758686066,-0.005849381443113089,0.024068230763077736,0.14535574615001678,-0.03832979127764702,0.0385698638856411,-0.00010628138261381537,0.02674843929708004,-0.04695199802517891,0.042284153401851654,0.11733747273683548,-0.01658228226006031,-0.030954424291849136,-0.10112340748310089,0.03129047155380249,0.004985108971595764,-0.01456697378307581,-0.016307653859257698,-0.03398864343762398,0.049672674387693405,0.09790636599063873,0.06711841374635696,0.02067412994801998,-0.025169117376208305,0.1273864060640335,0.057427022606134415,-0.06498201191425323]},{"text":"Nonne vides ut Nudum remigio latus Et malus celeri saucius Africo 5 Antemnaeque gemant, ac sine funibus Vix durare carinae Possint imperiosius Aequor?","book":"Homage to Catalonia","chapter":5,"embedding":[-0.039491891860961914,0.06279975175857544,-0.04971419647336006,-0.008299331180751324,-0.0776151716709137,0.04231342300772667,0.0011367866536602378,0.05507229268550873,0.030638566240668297,0.049380213022232056,0.08559932559728622,-0.10431217402219772,-0.0004386024083942175,-0.04094991087913513,-0.10792132467031479,-0.11090927571058273,-0.03193728253245354,0.06147323176264763,0.016246572136878967,-0.008573830127716064,0.038542490452528,0.04163186624646187,0.001696110237389803,0.0231475867331028,-0.08804035931825638,0.035547561943531036,-0.06142840161919594,0.05032626539468765,0.07894262671470642,-0.05950586497783661,0.023340055719017982,0.053191184997558594,0.023535607382655144,0.001659350236877799,-0.0030712455045431852,-0.028171034529805183,-0.055724237114191055,-0.05869058519601822,0.09742685407400131,0.056580837815999985,-0.06131410598754883,0.036707017570734024,-0.021429359912872314,0.01519194059073925,-0.06740335375070572,0.010612144134938717,-0.0897156372666359,0.07191617786884308,0.04474552720785141,-0.03352004289627075,-0.07026810199022293,-0.04698895663022995,-0.06691247969865799,0.004607314709573984,-0.08289457857608795,-0.017956171184778214,-0.05584413930773735,-0.12420611828565598,0.01982923597097397,-0.04698581248521805,0.029356151819229126,0.11813275516033173,0.05562330409884453,0.05014963448047638,-0.06783295422792435,0.01261682715266943,-0.037546176463365555,-0.030447589233517647,-0.012310558930039406,0.03708885237574577,0.11867044121026993,-0.06990966200828552,-0.05313028022646904,0.06170788034796715,-0.03474315628409386,0.01149473711848259,0.03574426844716072,-0.012089872732758522,0.029763096943497658,-0.09460295736789703,-0.07038405537605286,-0.0070312172174453735,-0.035810891538858414,0.04437772184610367,0.03836015239357948,-0.0453631617128849,0.019395386800169945,-0.033560577780008316,0.011336937546730042,-0.009600752964615822,0.029037918895483017,0.0005494513316079974,-0.03506797179579735,-0.09025180339813232,0.05306584760546684,0.015915069729089737,-0.008716056123375893,-0.09135357290506363,-0.02996823564171791,0.002951965434476733,-0.04045460373163223,-0.03563322871923447,0.03141861408948898,0.09507458657026291,-0.12310981750488281,-0.041443005204200745,-0.01916448585689068,-0.0532330647110939,0.03616743162274361,0.012487530708312988,-0.07696342468261719,-0.010981366038322449,-0.06287425756454468,-0.10884005576372147,0.0076022217981517315,-0.021194832399487495,-0.006714511662721634,-0.07447121292352676,0.005946306977421045,-0.05532318726181984,0.05427166074514389,-0.05667148530483246,-0.006034113001078367,-0.004454285837709904,0.032460715621709824,-0.0638527199625969,-0.005716914776712656,1.3912658898073188e-32,-0.07827917486429214,-0.09964345395565033,-0.0447336882352829,0.00017800225759856403,-0.05026604235172272,0.01745089702308178,-0.01974639482796192,0.015771735459566116,-0.007495763245970011,-0.021902836859226227,-0.13429027795791626,-0.02599143423140049,0.014706105925142765,-0.0031028534285724163,0.01768036186695099,0.04986235126852989,0.07953563332557678,-0.07393255829811096,-0.04071936756372452,-0.013200514018535614,0.010094959288835526,0.07929796725511551,0.1118118092417717,-0.00701608881354332,0.0739942342042923,0.04389120265841484,-0.000583419983740896,-0.07829868793487549,0.02248959243297577,0.01103661023080349,0.10832725465297699,0.014861080795526505,-0.00020012074674014002,0.008567184209823608,0.0551939457654953,0.058625660836696625,-0.03094622679054737,0.01479545421898365,0.0040704719722270966,0.018071895465254784,0.06992627680301666,0.01632842980325222,0.027340125292539597,-0.010770370252430439,0.09623140096664429,-0.0082092871889472,0.03755246475338936,0.009465012699365616,0.04178771376609802,0.019718611612915993,0.016298601403832436,0.027162501588463783,0.04380911588668823,-0.015280818566679955,-0.01348115410655737,0.05516728013753891,-0.018438201397657394,0.050990913063287735,-0.1156296506524086,-0.04138747975230217,0.03520512580871582,0.013922902755439281,0.03704813867807388,-0.06994409114122391,0.03032243624329567,-0.021440431475639343,-0.08756141364574432,-0.02343052066862583,0.09535656124353409,-0.0020418930798768997,-0.03769044205546379,0.00028695198125205934,-0.018623756244778633,-0.03672666475176811,-0.04287172108888626,0.03809911385178566,-0.024043984711170197,-0.04974951967597008,-0.06716904789209366,-0.023504948243498802,-0.09491681307554245,-0.00008584508032072335,0.0344158299267292,0.0009583877399563789,0.11874938011169434,-0.038752779364585876,0.022196952253580093,0.009533067233860493,0.08991580456495285,0.057552698999643326,0.08807866275310516,0.018801895901560783,0.012538029812276363,0.0014282949268817902,0.02302602119743824,-1.3835740425227132e-32,-0.0397498644888401,-0.044370535761117935,-0.0515182726085186,0.08864688873291016,-0.04978472739458084,0.03822341933846474,-0.08760388940572739,0.04701673611998558,-0.06797036528587341,-0.025615144520998,-0.05274827778339386,0.02677837945520878,0.037081532180309296,-0.10601881891489029,0.0531361885368824,0.0939764454960823,0.03708144649863243,0.049033407121896744,-0.01277040783315897,-0.022770075127482414,-0.04917880892753601,0.064620241522789,0.03620954602956772,-0.09474493563175201,-0.02255312167108059,-0.023771759122610092,0.04436324164271355,0.0014961709966883063,-0.05632569640874863,-0.05585257709026337,0.05528465285897255,0.004460441879928112,-0.030506374314427376,0.03518937528133392,0.019239259883761406,0.012707123532891273,0.09843020141124725,0.0326017290353775,0.0018342972034588456,-0.017891209572553635,-0.022318217903375626,0.08256737142801285,0.08120699971914291,0.04974208027124405,0.03367295116186142,-0.007034406065940857,0.01519071962684393,-0.03127305582165718,-0.07502873241901398,0.031342051923274994,0.0669185072183609,-0.10572612285614014,-0.006567938718944788,-0.038040708750486374,0.02538287080824375,-0.01006241049617529,-0.021552374586462975,0.003491417272016406,0.030959127470850945,0.03896268084645271,0.10441707074642181,-0.004920974373817444,-0.023696456104516983,-0.04062482342123985,0.052883926779031754,0.004238463472574949,-0.07700040191411972,0.11791578680276871,0.01863201893866062,0.007771228440105915,0.04863663390278816,-0.013035285286605358,-0.12376479059457779,-0.10333292186260223,-0.015276409685611725,-0.008223306387662888,-0.01854643225669861,0.00000638958454146632,0.0018404880538582802,-0.05036487802863121,-0.03857862949371338,-0.020281502977013588,-0.04651804268360138,-0.026073196902871132,-0.04720192402601242,-0.03139631822705269,0.004320347681641579,-0.011983060277998447,0.006974578369408846,0.02748243883252144,-0.034428536891937256,0.007945767603814602,0.07646413892507553,-0.06229852885007858,0.04624468833208084,-4.320894930742725e-8,0.03046618402004242,-0.0018785832216963172,-0.04450727254152298,0.010890032164752483,0.10054681450128555,-0.07647959142923355,0.019901150837540627,-0.06609047949314117,-0.020994694903492928,0.04992306977510452,0.004530570935457945,-0.0466168187558651,0.010130243375897408,0.018158070743083954,0.056136470288038254,0.03190692886710167,-0.005756564904004335,0.09639298170804977,-0.03404223546385765,-0.010832150466740131,0.06554251909255981,0.04709905758500099,-0.08050088584423065,-0.0006520086899399757,-0.052721019834280014,-0.03877471387386322,0.05294850468635559,-0.08393461257219315,-0.00637816870585084,0.03274187818169594,0.024847833439707756,0.07858581095933914,0.004946211352944374,-0.10330794006586075,0.0360843762755394,-0.00045835733180865645,-0.008302324451506138,0.06557755917310715,0.0009788350434973836,-0.021313318982720375,0.08432279527187347,0.04552982747554779,0.029216060414910316,-0.004379795398563147,0.03576966002583504,-0.03574869781732559,0.009030863642692566,-0.0547071173787117,0.031276531517505646,-0.023175204172730446,-0.03929232805967331,0.030258111655712128,-0.017344152554869652,0.05445871874690056,-0.07278681546449661,-0.07533330470323563,0.06757599115371704,0.01527265552431345,-0.0064696972258389,-0.02957404963672161,0.021459154784679413,0.05231955274939537,0.057906623929739,0.026495495811104774]},{"text":"Tu, nisi ventis 15 Debes ludibrium, cave.","book":"Homage to Catalonia","chapter":5,"embedding":[-0.06103450804948807,0.04901381582021713,0.005760475527495146,-0.023343609645962715,0.008678176440298557,-0.08105948567390442,0.022930409759283066,0.0546829029917717,0.10242799669504166,0.06596022844314575,0.059811193495988846,-0.13005602359771729,-0.013101053424179554,-0.013721608556807041,-0.0328163206577301,-0.035744648426771164,-0.04426302760839462,0.08837618678808212,-0.007389173377305269,-0.038530491292476654,0.03348948806524277,0.044090256094932556,-0.003370741382241249,-0.008230538107454777,-0.06988481432199478,0.014654787257313728,-0.007196348626166582,-0.0010312733938917518,-0.023003598675131798,-0.03442828357219696,0.08932537585496902,0.050614673644304276,0.1075645461678505,-0.07871876657009125,0.0390363447368145,0.031191803514957428,-0.07241469621658325,-0.05459953472018242,0.025032971054315567,0.05469775199890137,-0.11337082087993622,0.05533338710665703,0.008299296721816063,-0.07810559123754501,-0.029527325183153152,0.02517833560705185,-0.09142173081636429,0.10071869194507599,-0.024945411831140518,-0.03923753648996353,-0.0558021105825901,-0.013525034300982952,-0.017506912350654602,0.06531664729118347,-0.0449543222784996,-0.025618962943553925,-0.035139475017786026,-0.09927697479724884,0.07198482751846313,-0.06063352897763252,0.05020545795559883,0.05805395916104317,-0.053545910865068436,0.0368683859705925,-0.035532139241695404,0.009441694244742393,0.02845091186463833,-0.12095800787210464,-0.06450711190700531,0.06965141743421555,0.04904293641448021,-0.0325685478746891,0.019510582089424133,-0.061373546719551086,0.03264962136745453,0.03488193079829216,-0.05154264718294144,-0.044199831783771515,-0.04213239997625351,-0.1034664586186409,0.013946025632321835,0.05166042223572731,0.01588413305580616,-0.023739691823720932,0.006048854906111956,0.017604459077119827,0.04351280257105827,0.018107298761606216,-0.0006006155745126307,-0.05071669816970825,-0.06461473554372787,-0.005163751542568207,-0.08465126901865005,0.02708304487168789,0.04635031148791313,-0.013465311378240585,0.010497484356164932,0.06453708559274673,-0.03154536336660385,-0.022145768627524376,0.04244151711463928,-0.009965550154447556,-0.03249827399849892,0.037954360246658325,-0.12628421187400818,-0.11729270964860916,0.0823063775897026,-0.014700873754918575,0.050233613699674606,-0.0003965666110161692,-0.053890444338321686,-0.07417205721139908,0.0520436093211174,-0.07714265584945679,0.03297310695052147,0.06154780089855194,0.036369603127241135,-0.07122200727462769,-0.07735256105661392,0.05650658905506134,0.042871687561273575,-0.002315165475010872,0.0024788843002170324,-0.07349546998739243,0.04144731163978577,-0.07507611066102982,0.029114194214344025,-7.084725115392562e-35,0.04518919438123703,-0.06671420484781265,-0.040005214512348175,0.037483613938093185,0.07123257964849472,0.008548823185265064,-0.014664987102150917,-0.0935727059841156,-0.049241188913583755,0.03235141932964325,-0.1304320991039276,0.016334248706698418,-0.05144302174448967,-0.05601979419589043,-0.0306791290640831,0.07080947607755661,0.06746114790439606,-0.03351834416389465,0.0018267700215801597,-0.04896996542811394,-0.006390398368239403,0.008529853075742722,-0.008654813282191753,0.022821174934506416,0.11295086145401001,0.014411919750273228,-0.012045328505337238,-0.03730887919664383,-0.047172028571367264,0.05594487115740776,0.05613129213452339,-0.09513813257217407,-0.03791021555662155,0.01712374947965145,0.043869081884622574,0.01939367689192295,0.089693084359169,0.04575010761618614,-0.02512551099061966,-0.005052237771451473,0.02548481710255146,-0.011379093863070011,0.0024485138710588217,0.0218742024153471,0.04443635046482086,0.06319563090801239,-0.0037078552413731813,0.0418669655919075,0.06341580301523209,0.0071751708164811134,-0.005925232544541359,0.05301789194345474,-0.04085497185587883,-0.0642135739326477,0.01346172858029604,0.01280061062425375,-0.06066553667187691,0.011654370464384556,-0.02233664132654667,0.06002350524067879,0.06610870361328125,0.07095589488744736,-0.01382734440267086,0.005526203196495771,-0.011880275793373585,-0.028686439618468285,0.03340770676732063,-0.06866807490587234,0.05848990008234978,-0.03978902846574783,-0.1010398268699646,-0.012445653788745403,0.01232643611729145,0.048636775463819504,-0.09288828819990158,0.014769134111702442,0.06699631363153458,-0.01830310933291912,-0.027137290686368942,0.03427300229668617,-0.0771619975566864,-0.015310175716876984,-0.06800876557826996,0.0036618823651224375,0.049295078963041306,-0.04990557208657265,-0.04276468604803085,0.029637224972248077,0.04427709802985191,-0.0005918595124967396,-0.029502537101507187,-0.037336450070142746,-0.01353604905307293,-0.04840902239084244,0.02613935060799122,-1.0704927669221097e-33,-0.0014310218393802643,0.004787824582308531,-0.03692082315683365,0.06589453667402267,-0.0358961820602417,0.0825628787279129,-0.0464986190199852,0.04154966399073601,0.05904634669423103,-0.013777484185993671,-0.04140705615282059,-0.01774744689464569,0.06844940036535263,-0.030309133231639862,0.05996141582727432,0.13148756325244904,0.0507940798997879,-0.0655178353190422,-0.06824392080307007,-0.014918494038283825,-0.045295193791389465,0.03986808657646179,-0.02574826404452324,-0.10468633472919464,-0.017485186457633972,0.05596219375729561,0.08248437941074371,0.02970435656607151,-0.0338640995323658,-0.0144260935485363,0.026349425315856934,0.04195466637611389,-0.06374625861644745,0.03371633216738701,-0.011397617869079113,0.0034257452934980392,0.1173442080616951,-0.046428825706243515,-0.09044677764177322,-0.06336665153503418,0.021868087351322174,0.035771444439888,0.08410336077213287,0.08510429412126541,0.03491349518299103,-0.012036758475005627,-0.015689605847001076,-0.05890114605426788,-0.03525847941637039,-0.0187111496925354,0.10097337514162064,-0.03143688291311264,0.019553855061531067,-0.028738925233483315,0.07448835670948029,-0.040996212512254715,-0.058060675859451294,0.07198072224855423,-0.08172180503606796,-0.01838338002562523,0.1082538440823555,0.0899338498711586,-0.012015046551823616,0.041294269263744354,0.01310618408024311,-0.007534530945122242,-0.06807052344083786,0.01803925819694996,0.017507577314972878,0.02332325652241707,0.054097797721624374,-0.10184428840875626,-0.05114103853702545,0.016935478895902634,-0.03057020716369152,0.06749538332223892,-0.007523572072386742,0.07385440915822983,0.06326892971992493,0.06029293313622475,-0.022371551021933556,0.016545329242944717,0.03209583833813667,-0.013856013305485249,0.019473174586892128,-0.034118637442588806,-0.002034442499279976,-0.03611611947417259,0.06218313053250313,-0.043479807674884796,-0.043628789484500885,-0.0020963414572179317,-0.03664597123861313,-0.035311680287122726,0.004356024321168661,-1.8744204410836574e-8,0.01840445213019848,-0.05698123574256897,-0.041918493807315826,0.03841705992817879,0.004045933950692415,-0.06490344554185867,0.062186602503061295,0.049558449536561966,0.029759416356682777,0.09283425658941269,0.011380999349057674,0.04767322540283203,0.001345961820334196,0.019742395728826523,0.016610635444521904,0.06499078869819641,0.01025605108588934,-0.0023930338211357594,0.0336584709584713,-0.09356378763914108,0.06331447511911392,0.009001491591334343,0.049772605299949646,-0.05122365057468414,-0.007023892365396023,-0.03842499107122421,-0.0005777886835858226,-0.116050586104393,-0.08596675097942352,-0.04820125922560692,0.04965676739811897,0.04418046027421951,0.00528107862919569,-0.04795782268047333,-0.015724115073680878,-0.005804385058581829,-0.028028717264533043,0.03183605149388313,-0.06281634420156479,0.03691111132502556,0.0348808616399765,0.05188645422458649,0.054918885231018066,-0.05178956687450409,-0.03161090239882469,0.029643667861819267,0.03471191227436066,0.0639573484659195,0.007888514548540115,0.012689455412328243,-0.08609837293624878,-0.01006599422544241,0.09380217641592026,0.028258521109819412,0.004032414872199297,0.0018088159849867225,0.07355796545743942,-0.006278119515627623,-0.022413400933146477,0.001385975512675941,0.010179104283452034,0.07430978864431381,-0.024445543065667152,0.030026139691472054]},{"text":"Pastor cum traheret per freta navibus Idaeis Helenen perfidus hospitam, Ingrato celeres obruit otio Ventos ut caneret fera Nereus fata: 'Mala ducis avi domum, 5 Quam multo repetet Graecia milite, Coniurata tuas rumpere nuptias Et regnum Priami vetus.","book":"Homage to Catalonia","chapter":5,"embedding":[0.027952520176768303,0.10010135173797607,-0.05474841594696045,0.02484080009162426,-0.052596207708120346,-0.008829277008771896,0.08933024108409882,0.02062588930130005,0.07210744172334671,0.05417531356215477,-0.014050225727260113,-0.08562646806240082,0.03526308387517929,-0.013072045519948006,-0.06504572182893753,-0.1124539002776146,-0.05487507954239845,0.0764545276761055,0.012282069772481918,0.02429593913257122,0.02186264470219612,0.0664001852273941,-0.012582337483763695,0.03252091631293297,-0.05732804164290428,-0.02930539846420288,-0.07689069956541061,-0.061278004199266434,0.0036100074648857117,-0.024740779772400856,-0.0030349174048751593,0.027260344475507736,0.08492323756217957,-0.015671009197831154,-0.04079505801200867,0.06384243816137314,0.02212141640484333,0.0446297712624073,0.0008707789820618927,0.10744468122720718,-0.007857006974518299,0.008269806392490864,-0.01064892578870058,-0.09731878340244293,0.024734828621149063,-0.0507826991379261,-0.10069523751735687,0.05447864159941673,0.0531625896692276,-0.03566288575530052,-0.10683075338602066,-0.049497682601213455,0.02495596744120121,0.009229887276887894,-0.08544746041297913,-0.01289738155901432,0.013341539539396763,-0.10170033574104309,-0.014101763255894184,-0.04542422294616699,-0.030184626579284668,0.0927109643816948,-0.03319479525089264,-0.002078631892800331,0.012280112132430077,-0.0559690035879612,-0.018263189122080803,0.016943667083978653,-0.038406915962696075,0.019751671701669693,0.13535253703594208,-0.044203609228134155,-0.020697390660643578,-0.03878786414861679,-0.11539406329393387,0.016832487657666206,0.020158380270004272,-0.04422513023018837,0.011846298351883888,-0.05651715770363808,-0.017459915950894356,0.03640488162636757,0.008762569166719913,-0.026023708283901215,-0.011854567565023899,0.01903206668794155,0.028195923194289207,-0.0022899936884641647,0.010087521746754646,0.027068044990301132,0.007848905399441719,0.042336851358413696,-0.041728243231773376,-0.08961203694343567,-0.008640999905765057,0.04233401268720627,-0.05089455097913742,-0.04443497583270073,-0.012336972169578075,0.06406566500663757,-0.0014371455181390047,-0.05134343355894089,0.003132494632154703,0.042444001883268356,-0.06673924624919891,0.02056850492954254,0.016682667657732964,-0.034938666969537735,0.0373091921210289,0.011178986169397831,-0.01031371671706438,-0.032955873757600784,-0.06742030382156372,-0.0776083767414093,0.05505964905023575,0.05837307125329971,0.06037366762757301,-0.07055773586034775,-0.068229541182518,0.012349958531558514,-0.024604467675089836,-0.004201452247798443,0.05100135877728462,-0.02139950543642044,0.04131755232810974,-0.02868899703025818,0.07576347887516022,2.817377546403238e-32,-0.057051774114370346,-0.11537948995828629,0.011471581645309925,0.05339613929390907,0.07280103117227554,0.08052637428045273,-0.058359161019325256,-0.08331465721130371,0.03768058121204376,-0.07612393796443939,-0.06074247509241104,0.025774015113711357,-0.03356580063700676,0.02885366976261139,-0.03912115842103958,-0.025875261053442955,0.07803831249475479,-0.0034466651268303394,0.023965436965227127,-0.06996207684278488,-0.0015849292976781726,-0.023049278184771538,0.04768040031194687,-0.011995231732726097,0.09434356540441513,-0.014142174273729324,0.056116633117198944,-0.05974239483475685,-0.002805484924465418,0.03619789704680443,0.049641720950603485,-0.023136647418141365,0.024165192618966103,-0.11341829597949982,0.053030095994472504,-0.009740297682583332,0.026326019316911697,0.014465521089732647,-0.05701887607574463,-0.03304341435432434,-0.023341575637459755,0.037733159959316254,0.09144134819507599,0.06845162808895111,-0.028223758563399315,0.07891450077295303,0.041139550507068634,0.02885405719280243,0.09882008284330368,0.06708157062530518,0.026613641530275345,0.019645538181066513,-0.07594019919633865,-0.0906132385134697,-0.00866021029651165,0.01704215072095394,-0.03651459887623787,0.06902041286230087,0.058752577751874924,-0.026683347299695015,0.011835534125566483,0.005438878666609526,-0.021458137780427933,-0.01126398891210556,-0.0036286727990955114,-0.1165802851319313,0.014326855540275574,0.06194496527314186,0.0970044806599617,0.06202665716409683,-0.05495152249932289,0.019952405244112015,0.003576349001377821,0.03499471768736839,0.0017134108347818255,0.001022623386234045,-0.00593549944460392,-0.08696310967206955,-0.03218933194875717,0.04504824057221413,-0.06769824028015137,-0.033628448843955994,-0.0028734183870255947,0.03131576627492905,0.04721838980913162,0.010763579979538918,0.05049079656600952,0.03631291165947914,0.07050202786922455,0.010715452022850513,0.042838867753744125,0.1183147057890892,0.016183456405997276,-0.028843527659773827,-0.04304629564285278,-2.5696926582245264e-32,0.0004992809263058007,-0.01742575503885746,-0.039393823593854904,0.019644610583782196,-0.029007617384195328,-0.0036606332287192345,-0.09264609962701797,0.04642915353178978,0.01544918306171894,-0.05770305544137955,-0.015439619310200214,-0.05372488498687744,0.06536003947257996,-0.0406770333647728,-0.027256496250629425,0.03942600265145302,-0.020502634346485138,-0.013622143305838108,-0.05628329887986183,-0.057948365807533264,-0.07786004990339279,-0.05296512693166733,0.011385093443095684,0.008327140472829342,0.02242276258766651,0.011033493094146252,-0.011130326427519321,0.07742591947317123,-0.05088090896606445,-0.09190808236598969,0.09840195626020432,0.03346932306885719,-0.08502192050218582,0.06878799200057983,-0.030222536996006966,0.022334737703204155,0.11853282153606415,0.09198512881994247,0.007954114116728306,0.01594376191496849,0.04494543373584747,0.001012846129015088,0.07392154633998871,0.038825541734695435,-0.03738349303603172,-0.04628141224384308,0.004483442287892103,-0.03899913281202316,0.020382890477776527,-0.06323686987161636,0.004962267354130745,-0.10906956344842911,0.0005812851013615727,0.005910399369895458,0.0698605552315712,-0.08280354738235474,-0.06429731845855713,-0.00576278381049633,-0.033476367592811584,-0.0009776009246706963,0.1009327694773674,-0.01515356358140707,0.007725994102656841,0.031572043895721436,0.034355878829956055,-0.020205097272992134,-0.04226285591721535,0.043287914246320724,-0.0436834953725338,0.07361643016338348,0.043421026319265366,-0.10807149112224579,-0.03715265914797783,-0.0012105051428079605,-0.04632597789168358,0.038037434220314026,-0.014817203395068645,-0.042248766869306564,0.013637136667966843,-0.0020713794510811567,0.042938463389873505,-0.10243147611618042,-0.10374153405427933,-0.03588206693530083,-0.041568513959646225,-0.10517903417348862,0.09328825771808624,-0.011846394278109074,0.013410663232207298,0.05661742761731148,-0.1031266525387764,0.03680293634533882,0.011150422506034374,-0.09864771366119385,0.012995770201086998,-7.815358316065613e-8,-0.028919082134962082,-0.10270347446203232,-0.03299933299422264,0.057974766939878464,-0.00325598893687129,-0.027174782007932663,-0.036771465092897415,-0.1022246778011322,-0.010738681070506573,0.05421929061412811,-0.060757409781217575,0.003805110463872552,-0.02469274215400219,0.03221555054187775,0.03429556265473366,0.016018996015191078,0.0013354356633499265,0.028360649943351746,0.0177500881254673,-0.07221855968236923,-0.004582833964377642,-0.005620173644274473,-0.04753243550658226,-0.056860703974962234,-0.05430440977215767,-0.03210517391562462,0.03222110867500305,0.03860826417803764,0.0062929741106927395,0.01582285575568676,0.04307589679956436,0.0809522196650505,-0.07009147107601166,-0.02043156884610653,0.04188835993409157,0.07460172474384308,-0.051344238221645355,-0.0012385196750983596,-0.030115259811282158,0.0074831098318099976,0.03780192509293556,0.002510048681870103,0.061736755073070526,-0.06508016586303711,-0.0651554986834526,-0.08341692388057709,0.001472238451242447,0.05011970177292824,0.06710583716630936,-0.04840517416596413,0.02820754423737526,0.0023146921303123236,0.1029597818851471,0.0644671842455864,-0.05252647399902344,-0.053850241005420685,0.03646593540906906,-0.036256976425647736,0.009774687699973583,-0.024244407191872597,0.015548075549304485,-0.02323385700583458,0.06208345666527748,-0.02287602424621582]},{"text":"Iam galeam Pallas et aegida Currusque et rabiem parat.","book":"Homage to Catalonia","chapter":5,"embedding":[0.0012673408491536975,0.04543177783489227,-0.04561183229088783,0.028815632686018944,-0.016673818230628967,0.015815170481801033,0.05639175698161125,0.0758119598031044,0.056436747312545776,0.044830840080976486,0.029691794887185097,-0.06435226649045944,-0.008878733962774277,-0.07413116097450256,0.009019935503602028,-0.04748387262225151,-0.09112752228975296,0.11449332535266876,-0.011423883959650993,-0.02659761719405651,0.03338318690657616,0.01519072987139225,-0.035596832633018494,-0.0071944063529372215,-0.045962490141391754,0.07432658225297928,0.06724472343921661,-0.009021105244755745,0.10401985049247742,-0.062236491590738297,0.15149934589862823,0.08665071427822113,0.023449348285794258,0.015807343646883965,-0.0524936243891716,0.041072383522987366,-0.04049871116876602,-0.13198916614055634,0.008226998150348663,-0.015441298484802246,-0.019381990656256676,0.016104787588119507,-0.05075196921825409,-0.10854801535606384,-0.003342854790389538,-0.02626192942261696,0.002667793072760105,0.0592082217335701,-0.036050643771886826,0.018429666757583618,-0.039669930934906006,0.042511675506830215,-0.05919591709971428,-0.0456271730363369,-0.028562812134623528,-0.02105230651795864,-0.009274124167859554,-0.02565085142850876,0.0008072582422755659,-0.09384607523679733,0.016430603340268135,0.0224161334335804,-0.059311430901288986,0.05437866225838661,-0.09028412401676178,-0.012691102921962738,0.020205287262797356,0.05265386775135994,-0.01681697927415371,0.07748138159513474,0.058067116886377335,-0.04926930367946625,0.003255043178796768,0.024220360442996025,-0.06530988216400146,-0.023893341422080994,0.03818848356604576,-0.09335276484489441,-0.0087927570566535,-0.05825125053524971,-0.026514893397688866,-0.0002413708862150088,0.01882171630859375,-0.07976392656564713,0.01136105414479971,-0.017588533461093903,0.023936539888381958,0.04087488725781441,0.01366041786968708,-0.004161565098911524,0.07966528087854385,0.056212373077869415,-0.020603889599442482,0.01400971319526434,0.057191915810108185,0.045732155442237854,0.021067889407277107,-0.03778800368309021,0.0054539102129638195,0.010433423332870007,-0.003899405477568507,0.030913669615983963,0.02877628058195114,0.12317290157079697,-0.07746787369251251,-0.017992578446865082,-0.014816531911492348,-0.08859758079051971,0.009868966415524483,0.05126061290502548,-0.044069211930036545,-0.06232498586177826,-0.03645304962992668,-0.05521884188055992,0.027760667726397514,0.061309684067964554,-0.004711378365755081,-0.11621540784835815,0.031058404594659805,-0.04815822094678879,-0.03693157061934471,0.01264114398509264,-0.03115973435342312,0.023898497223854065,0.046461574733257294,-0.009820705279707909,0.08483155071735382,5.205308655947899e-33,-0.07827404886484146,-0.0896730050444603,-0.0854063406586647,0.006190587300807238,0.017265014350414276,0.023101752623915672,0.047041457146406174,-0.017849937081336975,0.005672094412147999,-0.010806847363710403,-0.07339083403348923,0.010098358616232872,-0.015705827623605728,0.018571313470602036,0.033123571425676346,0.04922885447740555,0.04414796829223633,0.015087036415934563,-0.008871207013726234,0.017967408522963524,-0.040702201426029205,-0.009656640700995922,0.04345943406224251,-0.016891123726963997,0.028095977380871773,-0.02349918894469738,0.07860235124826431,-0.0182417593896389,0.05741921067237854,0.03027389943599701,0.0843447893857956,0.020982764661312103,-0.03479098156094551,-0.014706367626786232,-0.006763551849871874,0.08238265663385391,-0.06627748161554337,-0.006144575774669647,-0.06255549937486649,-0.03606247529387474,0.024652134627103806,0.05670897290110588,0.10490597039461136,-0.037053659558296204,0.0009704456315375865,-0.018504034727811813,0.03530566021800041,-0.038529034703969955,-0.012353982776403427,-0.01076807826757431,-0.055206358432769775,0.02579953894019127,0.012928477488458157,-0.022710775956511497,0.04111722111701965,0.008358371444046497,-0.08616603910923004,0.048098307102918625,-0.027821168303489685,-0.05760043486952782,-0.00818273052573204,-0.10633496195077896,-0.01412078645080328,0.026658646762371063,-0.0054152607917785645,0.0002072968491120264,-0.011456333100795746,0.010264753364026546,0.04955393821001053,-0.00267544062808156,-0.04315698519349098,-0.045724764466285706,-0.017829855903983116,0.05037833750247955,-0.007704623509198427,0.06964768469333649,-0.0006686595152132213,0.020974239334464073,-0.0464213564991951,0.0048724813386797905,-0.08332835137844086,0.07738005369901657,0.07051760703325272,0.011292335577309132,0.12064278870820999,-0.05754535272717476,-0.008855552412569523,-0.012135458178818226,0.020865535363554955,0.061991289258003235,0.05400409176945686,0.08531100302934647,0.011922983452677727,0.0707867443561554,-0.0059052142314612865,-6.419352609321434e-33,-0.011844527907669544,0.023961687460541725,-0.10542793571949005,0.09230155497789383,0.013748951256275177,0.04651867598295212,-0.006055284757167101,0.04495672881603241,-0.011107723228633404,-0.07232911884784698,-0.008967936038970947,-0.07228977233171463,0.1003374308347702,-0.03897758945822716,-0.0029320416506379843,0.06745919585227966,0.08348756283521652,0.04712027683854103,-0.0731479749083519,-0.005925437435507774,-0.11200013011693954,0.07513463497161865,-0.03690388426184654,-0.07532493025064468,0.01916668191552162,-0.05977865308523178,0.03766213357448578,-0.04684969410300255,-0.07422086596488953,-0.04768300801515579,0.07373352348804474,0.009662599302828312,-0.08427001535892487,0.09704849123954773,-0.049213163554668427,0.06002218276262283,0.1307748407125473,0.029002007097005844,-0.045525748282670975,0.00720562506467104,0.06877121329307556,0.07754094153642654,0.011316017247736454,-0.02271999418735504,0.0007940982468426228,-0.036684468388557434,-0.016266249120235443,-0.0805281475186348,-0.1095188781619072,-0.07038766890764236,0.024383505806326866,-0.07513757050037384,0.057373374700546265,-0.03064865805208683,0.10885222256183624,-0.041618749499320984,0.053107719868421555,-0.05163929983973503,-0.03959625959396362,-0.006458085961639881,0.07174516469240189,0.06986352801322937,0.05659683048725128,-0.017921356484293938,-0.003053243737667799,0.0008593975217081606,-0.09706013649702072,0.03503779321908951,-0.045222558081150055,0.02915814332664013,0.1167161837220192,-0.015719495713710785,-0.16502192616462708,0.051364168524742126,-0.03780055046081543,-0.054530251771211624,-0.028442518785595894,0.012458761222660542,-0.01057666726410389,-0.07123777270317078,0.05464385077357292,-0.0722292959690094,-0.03438792750239372,0.006134539842605591,-0.05266896262764931,-0.05504235252737999,0.03497853875160217,0.02971341647207737,0.007682633586227894,0.0018090455560013652,-0.003451625583693385,-0.021530399098992348,-0.0025647159200161695,-0.039399195462465286,0.07504440099000931,-2.9501396880959874e-8,-0.11947299540042877,-0.12521812319755554,-0.04282619059085846,-0.019910519942641258,-0.0032971170730888844,-0.016976147890090942,-0.04252290353178978,-0.01964971236884594,-0.04684789851307869,-0.013737441971898079,0.027825534343719482,-0.036904994398355484,-0.016802724450826645,0.03944447636604309,-0.014235861599445343,0.06679899990558624,-0.0002868488954845816,0.021128999069333076,0.010728199034929276,-0.05032939836382866,0.03598763048648834,0.009109532460570335,-0.024523189291357994,-0.007845323532819748,0.06383228302001953,0.03869222477078438,0.02273889258503914,-0.027171701192855835,0.04516270011663437,-0.0433722659945488,-0.05390441045165062,0.05037190020084381,0.01499518845230341,-0.008047468028962612,-0.023878591135144234,0.05436798557639122,0.010857230052351952,0.018910106271505356,-0.025412939488887787,0.06505244225263596,0.1002364307641983,0.09452854096889496,0.032912712544202805,-0.05513235926628113,0.02524098940193653,0.004114306997507811,0.016478506848216057,-0.004597199149429798,-0.003619204508140683,-0.03255780041217804,-0.012715842574834824,0.027508171275258064,0.08396021276712418,-0.0006068113725632429,-0.01952335052192211,-0.0276674535125494,-0.03501523286104202,-0.02607448771595955,0.011419500224292278,-0.028071008622646332,0.11091365665197372,0.02122572809457779,-0.06687429547309875,-0.036837007850408554]},{"text":"Urgent impavidi te Salaminius Teucer, te Sthenelus, sciens Pugnae, sive opus est imperitare equis, 25 Non auriga piger.","book":"Homage to Catalonia","chapter":5,"embedding":[-0.01193463895469904,0.07236286997795105,0.0126342149451375,-0.018472593277692795,-0.05191084370017052,0.011084872297942638,-0.013905461877584457,0.09381336718797684,0.0513124018907547,0.051539186388254166,0.05323851853609085,-0.10429868847131729,-0.07655476033687592,-0.0037857790011912584,-0.10447239875793457,-0.1030886098742485,-0.046860408037900925,0.03442714735865593,0.0022712633945047855,0.043927665799856186,0.004184569697827101,0.015614398755133152,-0.009958797134459019,0.05012714862823486,-0.02307247556746006,0.0014977965038269758,-0.028883235529065132,-0.06963708996772766,0.0036866110749542713,-0.060460165143013,0.016984442248940468,0.057544123381376266,0.038138266652822495,-0.05385308712720871,-0.01615082286298275,-0.0049539245665073395,-0.003786292625591159,-0.039145328104496,0.02324923686683178,0.02316182292997837,-0.02411387674510479,-0.10962201654911041,-0.08445119857788086,0.0022247459273785353,-0.04189717769622803,-0.055410414934158325,0.004748897161334753,0.08738856762647629,0.005202390253543854,0.002201929921284318,-0.1267549991607666,-0.047685407102108,-0.03246597573161125,0.01364187616854906,-0.09351053088903427,-0.05381333455443382,0.010241225361824036,-0.029385900124907494,0.039924733340740204,-0.08144986629486084,-0.043783824890851974,0.03865784406661987,0.02875952608883381,0.034964196383953094,-0.0346260704100132,0.008630737662315369,0.06969396024942398,0.0008033686317503452,-0.08624690026044846,0.08245773613452911,0.11423856765031815,-0.05732543021440506,-0.047473181039094925,0.006175664719194174,-0.007238065358251333,0.03999915346503258,0.02551150694489479,-0.0303295087069273,0.0295603908598423,-0.04652470722794533,-0.0012049496872350574,-0.07339535653591156,-0.06465871632099152,-0.00896116066724062,0.014145273715257645,0.01869271509349346,-0.034783996641635895,-0.012118582613766193,0.057934414595365524,-0.022085227072238922,-0.06193482130765915,-0.02838965505361557,-0.034404121339321136,-0.015855593606829643,0.04030463099479675,0.016520345583558083,-0.03380202874541283,-0.007119897753000259,-0.019888879731297493,-0.007592575624585152,0.005223021376878023,0.021740786731243134,0.02603544481098652,0.07456996291875839,-0.10200393944978714,-0.015587843023240566,-0.03001774288713932,-0.07337197661399841,0.02846236154437065,0.011314144358038902,-0.0519602969288826,-0.002347214613109827,0.008818035945296288,-0.08067865669727325,0.031102143228054047,0.09066800028085709,-0.021334394812583923,-0.10256004333496094,0.08454550057649612,-0.004868288058787584,0.02784288488328457,0.038090284913778305,-0.08040972054004669,0.00714678643271327,0.06487828493118286,-0.0626937672495842,0.035116616636514664,8.517460884693457e-33,-0.0530707985162735,-0.020204253494739532,0.009698640555143356,0.04854804277420044,0.011990366503596306,-0.004029858857393265,-0.0712645873427391,0.019826488569378853,0.033790186047554016,-0.015949521213769913,-0.12242112308740616,-0.05283583328127861,0.0539417490363121,-0.023200351744890213,-0.012056405656039715,-0.011324839666485786,0.12587590515613556,-0.04617302492260933,0.03005286678671837,-0.008824641816318035,-0.04996057599782944,0.023154795169830322,-0.03238684684038162,0.04131074249744415,0.030031779780983925,0.015793422237038612,-0.027624711394309998,-0.07826103270053864,-0.007763081230223179,0.04092659428715706,0.08120780438184738,-0.02065807580947876,-0.026415448635816574,-0.01112206932157278,-0.008061188273131847,-0.023953566327691078,-0.02149677835404873,-0.0022559352219104767,0.040226008743047714,0.0039335633628070354,0.03953755646944046,0.028528016060590744,0.04194100573658943,0.02904893085360527,0.08894633501768112,-0.030591225251555443,0.03377603739500046,0.085169218480587,0.09042631834745407,0.010723483748733997,-0.017331939190626144,0.0298604778945446,-0.07511336356401443,0.03864186257123947,-0.0070569165982306,0.08632511645555496,-0.07145700603723526,0.051409944891929626,-0.04824701324105263,-0.002496602013707161,0.01713515818119049,0.019633276388049126,-0.02403075620532036,-0.005381849128752947,0.058909330517053604,-0.0329439602792263,-0.013866784982383251,0.011809950694441795,0.09271632134914398,0.042555246502161026,-0.125921830534935,-0.02341476082801819,0.028440430760383606,-0.0005514722433872521,-0.018169891089200974,0.03685541823506355,0.06155424937605858,-0.001194700482301414,0.010918470099568367,-0.010700399056077003,-0.058011237531900406,0.01305446494370699,0.0074312700890004635,0.0013533257879316807,0.040341246873140335,0.06599022448062897,0.03978217393159866,-0.019284043461084366,0.053316060453653336,0.051708560436964035,0.07450541853904724,-0.0549638532102108,-0.08761022984981537,-0.05379193648695946,-0.00031848333310335875,-9.422687778426592e-33,0.034239038825035095,-0.08099213987588882,-0.011122451163828373,0.07864318788051605,0.04086289927363396,0.00482776015996933,-0.10807536542415619,0.02007647417485714,0.009074312634766102,-0.058749955147504807,-0.02568976767361164,-0.08757974207401276,0.054830402135849,-0.06171204149723053,-0.004091714043170214,0.13794831931591034,-0.018457112833857536,0.0035315719433128834,-0.03081657737493515,-0.008981896564364433,-0.05352067947387695,-0.03868113458156586,0.04781670868396759,0.0010165950516238809,-0.0015302288811653852,0.002539357403293252,0.03517938405275345,-0.04562116786837578,-0.06485279649496078,0.040633898228406906,-0.009479396045207977,-0.04783634468913078,-0.04858901724219322,0.013675286434590816,-0.023252103477716446,0.06093375012278557,0.11790979653596878,0.0722324401140213,0.024755049496889114,0.0394006110727787,-0.0022006144281476736,0.03989522159099579,0.026701290160417557,-0.009198850020766258,-0.02182329073548317,0.03872162476181984,-0.046961840242147446,-0.02434687316417694,-0.0934075191617012,0.024451687932014465,0.07395149767398834,0.010076949372887611,0.04680962860584259,-0.016673484817147255,0.05593523755669594,-0.029416941106319427,-0.029966747388243675,-0.1364760845899582,-0.020037101581692696,0.02174573950469494,0.07107088714838028,0.07346620410680771,-0.02858087234199047,-0.011153290048241615,0.056054309010505676,-0.12086840718984604,-0.057329434901475906,0.02427826076745987,0.05130395665764809,0.024408377707004547,0.02764214761555195,-0.052044954150915146,-0.05807848647236824,-0.01165150385349989,0.03311064466834068,0.022623946890234947,-0.025124676525592804,0.005490811541676521,0.0453551821410656,-0.06288576126098633,-0.027897000312805176,-0.02831963635981083,-0.0022568311542272568,0.01788223534822464,0.022851495072245598,0.0014774331357330084,0.016437215730547905,0.04968893155455589,0.06004910171031952,0.003626238089054823,0.022713202983140945,0.03306343033909798,0.09827377647161484,-0.02657080814242363,0.07394298166036606,-4.011719667573743e-8,0.0665738582611084,-0.07248879224061966,-0.1034325361251831,0.04239493981003761,0.10705447942018509,-0.03807111084461212,-0.13790157437324524,-0.07446745038032532,-0.060461755841970444,0.08491214364767075,-0.11312998831272125,-0.04457959905266762,0.01907375454902649,-0.014062805101275444,0.014630180783569813,0.05056121200323105,0.09179013222455978,0.0380982868373394,-0.026793505996465683,-0.02252301760017872,0.04961124435067177,0.02243879996240139,-0.04000118374824524,-0.09918221831321716,-0.005464726127684116,0.05827444791793823,0.007445424795150757,-0.06996338814496994,-0.046453651040792465,-0.011767628602683544,-0.06216193363070488,0.08423896878957748,-0.028335945680737495,-0.12000998854637146,0.004735738504678011,0.07721038907766342,0.04290057718753815,-0.011361490935087204,-0.06425400078296661,-0.00937175378203392,0.0639202669262886,0.06394536793231964,0.053255654871463776,-0.02015770971775055,0.01777496002614498,-0.06221602112054825,-0.03803308680653572,0.03877761960029602,0.025555040687322617,-0.04416695609688759,-0.05825759470462799,0.027319323271512985,0.061174362897872925,0.07996457815170288,-0.043722186237573624,-0.013262770138680935,0.01690695248544216,0.02744925208389759,-0.00427312683314085,-0.010968050919473171,0.1348041296005249,0.08333877474069595,-0.014348839409649372,-0.026597946882247925]},{"text":"Iracunda diem proferet Ilio Matronisque Phrygum classis Achillei: Post certas hiemes uret Achaicus 35 Ignis Iliacas domos.' XVI.","book":"Homage to Catalonia","chapter":5,"embedding":[-0.06424841284751892,0.10677506774663925,-0.048599984496831894,-0.034998733550310135,-0.08784998953342438,-0.004406577441841364,0.03842274844646454,0.1138136237859726,0.042588576674461365,0.05039200186729431,0.013765700161457062,-0.05868818610906601,0.056244511157274246,-0.08126083761453629,-0.06814531236886978,-0.09707769006490707,-0.09364193677902222,0.06809772551059723,-0.07090464979410172,-0.01531944703310728,0.06731968373060226,-0.0609254390001297,-0.03845565766096115,0.029656043276190758,-0.048919666558504105,0.027638064697384834,-0.012014172039926052,-0.045660004019737244,-0.03759824112057686,-0.04739188030362129,0.02648887038230896,0.019289953634142876,0.045609354972839355,-0.022997301071882248,0.029260199517011642,-0.01243860088288784,-0.06348902732133865,-0.04775800555944443,0.12254837155342102,0.07938240468502045,-0.029709219932556152,-0.04388342425227165,-0.011686249636113644,-0.02837912179529667,-0.011589783243834972,-0.028529876843094826,-0.03430033475160599,-0.020410187542438507,-0.041317880153656006,0.03615196794271469,-0.10137612372636795,0.012148179113864899,-0.006169167812913656,0.01766776666045189,-0.11921627074480057,-0.06701779365539551,0.05103323608636856,-0.025396648794412613,-0.037049658596515656,-0.08659596741199493,-0.010217352770268917,0.03946620970964432,-0.012243099510669708,0.05149791017174721,-0.13154451549053192,-0.03333877772092819,-0.006728132721036673,-0.010353724472224712,-0.04858332872390747,0.010393074713647366,0.053712148219347,-0.02934505045413971,0.022222567349672318,0.08300412446260452,0.04713713005185127,0.06326010823249817,-0.00953743513673544,-0.026052458211779594,0.022869110107421875,-0.14325211942195892,0.052075814455747604,0.010985826142132282,0.043376386165618896,-0.015937650576233864,0.02400054968893528,0.013987962156534195,-0.0018892691005021334,0.04474392533302307,0.05713196098804474,-0.024124741554260254,0.009677021764218807,0.05685093626379967,-0.06254751235246658,-0.007495070341974497,0.053288523107767105,0.0007388819358311594,0.019531957805156708,-0.02563125640153885,-0.06670547276735306,0.004750202409923077,-0.009728704579174519,0.02906206250190735,-0.03228114917874336,0.10389482229948044,-0.13392028212547302,-0.03723260015249252,-0.01663653738796711,-0.07310977578163147,0.012010602280497551,0.06600512564182281,-0.05991344153881073,-0.11287859082221985,-0.09573668241500854,-0.11249340325593948,0.08605267852544785,0.06534270942211151,-0.004490028601139784,-0.06956100463867188,-0.004512060433626175,-0.04499632120132446,0.03657195717096329,-0.053905658423900604,-0.0023692548274993896,-0.016293726861476898,0.032993707805871964,-0.06718666851520538,0.04092199355363846,1.1328496198263627e-32,-0.0806017741560936,0.009205899201333523,-0.04682803526520729,0.014234445057809353,-0.01388702541589737,-0.05265051871538162,-0.07370619475841522,-0.03220674395561218,0.04300955310463905,-0.021346094086766243,-0.12233249098062515,0.03092675469815731,-0.005545472260564566,-0.04540432244539261,-0.00997747853398323,0.05238403007388115,0.10263579338788986,0.01151462085545063,0.010911877267062664,-0.04463391378521919,-0.005892948713153601,0.04345472529530525,0.07539715617895126,-0.028209298849105835,0.07127721607685089,-0.0173628069460392,0.01560539286583662,-0.07023503631353378,-0.0483546182513237,0.06510584056377411,0.06453713029623032,-0.02722792886197567,-0.047376152127981186,-0.013461348600685596,-0.007136086001992226,0.07406700402498245,0.004456091672182083,0.041848354041576385,-0.037012483924627304,-0.0011165151372551918,-0.005065334495157003,0.022350862622261047,0.09462708234786987,0.00006637387559749186,0.07156901061534882,0.03800554201006889,0.017054149881005287,0.024718403816223145,0.0683601051568985,0.016451120376586914,-0.05779290199279785,0.008272463455796242,0.0026813182048499584,-0.015041130594909191,0.04015601798892021,-0.01673859730362892,-0.11416485160589218,0.046595748513936996,-0.04835681617259979,-0.02193332649767399,0.044417593628168106,-0.03888142108917236,-0.010893663391470909,0.05429020896553993,-0.018482694402337074,0.010471570305526257,-0.058300066739320755,0.008273419924080372,0.09180048853158951,0.022835878655314445,-0.05974145233631134,-0.02002616785466671,-0.04628334939479828,0.024195216596126556,-0.018833288922905922,0.07571563124656677,-0.02588009089231491,-0.005948541685938835,-0.03898468613624573,-0.00813730526715517,-0.054141636937856674,-0.0968155488371849,-0.036395471543073654,-0.025366686284542084,0.1246115118265152,-0.0013672964414581656,0.00825594924390316,0.07571855932474136,0.07054813951253891,0.022122500464320183,0.06770669668912888,0.016518818214535713,-0.004856429062783718,0.07276703417301178,0.026031121611595154,-1.3016639798526838e-32,0.046103544533252716,0.015450231730937958,-0.09114313125610352,0.0572875440120697,-0.02263125590980053,0.02383100427687168,-0.08573739230632782,0.055110227316617966,-0.06154399737715721,0.002309787552803755,0.007588059641420841,-0.046996042132377625,0.01933601312339306,-0.033320631831884384,-0.041552428156137466,0.032077062875032425,-0.009455500170588493,0.01445796713232994,0.008361121639609337,0.05271725729107857,-0.029648281633853912,-0.04034816101193428,-0.07852762192487717,-0.0633239820599556,-0.027598900720477104,0.022743724286556244,0.016044719144701958,-0.05168158560991287,-0.016740918159484863,-0.026236051693558693,0.04033937677741051,0.025718146935105324,-0.0008616692502982914,0.01987217552959919,0.02097463421523571,0.075642429292202,0.11028210073709488,0.014869979582726955,-0.00926533155143261,0.0483471043407917,0.008981057442724705,0.04160015657544136,0.0930362269282341,-0.04784179851412773,0.06267154216766357,-0.0743255615234375,-0.0800049901008606,-0.05767911300063133,0.04566080868244171,-0.014501173980534077,0.032713085412979126,-0.03973303362727165,0.037162575870752335,-0.06022799387574196,0.047208864241838455,-0.019893966615200043,-0.07856683433055878,0.06266546249389648,-0.1242079809308052,0.0072841583751142025,0.04428022354841232,0.03840607777237892,0.003420861205086112,0.01014405582100153,0.0919511541724205,-0.04370595142245293,-0.09354960173368454,0.021108312532305717,-0.01836748607456684,0.028030019253492355,0.08002355694770813,-0.059863969683647156,-0.09797251224517822,-0.0340026430785656,0.0064058611169457436,-0.03446342423558235,0.03206793963909149,0.042340729385614395,-0.0007950217113830149,0.020302360877394676,-0.0001281034928979352,-0.02296007052063942,0.0006269001751206815,0.03175443783402443,-0.10803413391113281,-0.022693302482366562,0.08256827294826508,-0.017406534403562546,0.026888510212302208,-0.04383552819490433,0.07286372035741806,0.017617130652070045,0.053316015750169754,-0.019487515091896057,-0.027918290346860886,-4.57821549559867e-8,-0.044849272817373276,-0.02460346184670925,-0.010093526914715767,0.0732431709766388,0.020208202302455902,0.011652075685560703,-0.07707581669092178,-0.03975389525294304,0.046246860176324844,-0.011888718232512474,-0.016866466030478477,0.005185023415833712,0.07546395808458328,0.03566176816821098,0.0066068521700799465,0.0061898319981992245,-0.0264008566737175,0.054402127861976624,0.03798629343509674,-0.0543048121035099,0.03886760398745537,-0.13927976787090302,-0.03398935869336128,-0.051067054271698,-0.0329904705286026,0.000403879297664389,0.04016142338514328,-0.06816153228282928,-0.03816060721874237,0.020451603457331657,-0.03900156170129776,0.049608029425144196,0.05518515780568123,-0.09941220283508301,0.03707822412252426,0.05975692346692085,0.029279161244630814,-0.015223251655697823,-0.024313485249876976,-0.0028141567017883062,0.030429717153310776,0.01234824676066637,0.035806041210889816,-0.06089727580547333,0.12449903786182404,-0.0435616560280323,0.02362995222210884,-0.04227474704384804,0.013983153738081455,-0.018223421648144722,-0.07480792701244354,0.04574890062212944,0.050888050347566605,0.036558642983436584,0.04414937645196915,0.00212770514190197,-0.014989818446338177,0.007623833138495684,0.0046471417881548405,-0.002389373257756233,0.0920357033610344,0.0364532507956028,0.02316170372068882,-0.008940218947827816]},{"text":"Non Dindymene, non adytis quatit 5 Mentem sacerdotum incola Pythius, Non Liber aeque, non acuta Sic geminant Corybantes aera, Tristes ut irae, quas neque Noricus Deterret ensis nec mare naufragum 10 Nec saevus ignis nec tremendo Iuppiter ipse ruens tumultu.","book":"Homage to Catalonia","chapter":5,"embedding":[-0.01293463446199894,0.003318321192637086,-0.06536190211772919,0.020962722599506378,-0.013232080265879631,0.019841942936182022,0.053859204053878784,-0.02794458717107773,0.03661500662565231,0.0210459865629673,0.0667622983455658,-0.10584376752376556,-0.04473248869180679,0.0027000121772289276,-0.10283178836107254,-0.08733443915843964,-0.004465562291443348,0.03569379821419716,-0.007608308456838131,-0.055389154702425,0.017700854688882828,0.07304311543703079,0.012403557077050209,-0.00361932092346251,-0.0671054944396019,-0.012131704948842525,-0.10221651941537857,0.020279468968510628,0.07231222838163376,-0.09268667548894882,-0.020162496715784073,0.035898447036743164,0.06641074270009995,-0.01224828977137804,0.03768887743353844,-0.03956501930952072,-0.058970797806978226,-0.01612783595919609,0.07594868540763855,0.09602974355220795,0.023183874785900116,-0.0733192190527916,-0.07615029811859131,-0.002623093780130148,-0.020175326615571976,-0.0060869851149618626,-0.10810482501983643,0.039185330271720886,0.044019367545843124,-0.03320693597197533,-0.08016088604927063,-0.04473792389035225,-0.09726453572511673,0.02690155990421772,-0.062079962342977524,-0.03838589787483215,0.020492583513259888,-0.027701573446393013,-0.001421123743057251,-0.07990410923957825,0.014969953335821629,0.04002240300178528,0.002503606490790844,-0.006683019455522299,-0.03536440432071686,0.06208251416683197,-0.07897283136844635,-0.020098399370908737,0.010486363433301449,0.07883266359567642,0.11487720906734467,-0.022628705948591232,-0.05964287370443344,0.07319631427526474,-0.11071772128343582,0.03633752465248108,0.019837355241179466,-0.030288632959127426,0.01634260267019272,-0.04601495340466499,-0.09122820943593979,0.0587921105325222,-0.0525573268532753,0.07586696743965149,-0.008146743290126324,0.00457459781318903,-0.06219453737139702,0.0181597713381052,0.00942226406186819,-0.008042020723223686,0.01919381320476532,-0.007624733727425337,-0.009877124801278114,-0.06236373633146286,-0.004201893229037523,0.047648124396800995,0.0721731185913086,-0.033246707171201706,-0.0986810177564621,-0.03504405915737152,0.02599385567009449,-0.03458314761519432,-0.04295326769351959,-0.004818511661142111,-0.10499320179224014,0.02726094052195549,-0.0758560448884964,-0.08034637570381165,0.04694627597928047,0.06763911247253418,-0.05893634632229805,-0.02018238604068756,-0.04211313650012016,-0.09821756929159164,0.009244139306247234,-0.024753782898187637,-0.023184608668088913,-0.06406469643115997,0.025416413322091103,0.0459364578127861,0.0189328882843256,-0.04112228378653526,0.04130687564611435,0.01616332307457924,0.025096187368035316,-0.005272463895380497,0.00321775465272367,2.1508657842680716e-32,-0.009282221086323261,-0.07238348573446274,-0.0038952897302806377,-0.003737848252058029,0.018864953890442848,-0.015539934858679771,-0.07571366429328918,-0.055787235498428345,0.08435659855604172,-0.08865204453468323,-0.08720619976520538,-0.004902467131614685,-0.019433973357081413,-0.016675708815455437,0.03799685835838318,0.0302235446870327,0.10541412979364395,-0.05739939212799072,0.03611186146736145,-0.04021311178803444,-0.04722845181822777,0.0696842148900032,-0.03352978080511093,-0.020687216892838478,0.009387439116835594,-0.019107116386294365,-0.03634173795580864,-0.08114931732416153,-0.019471991807222366,-0.005307056475430727,0.10380399972200394,-0.03386903926730156,-0.015314660035073757,0.027460994198918343,-0.0029137537349015474,0.014056132175028324,-0.007966343313455582,-0.005607550032436848,-0.09130458533763885,0.01051349751651287,0.04551166668534279,0.032106269150972366,0.10500755906105042,0.020784664899110794,0.07707472890615463,-0.03377300128340721,-0.022994667291641235,0.10383101552724838,0.07181152701377869,0.017884662374854088,0.02929738163948059,0.059283897280693054,0.015290787443518639,-0.01885521411895752,0.017838791012763977,0.03888918086886406,0.013800058513879776,0.06788649410009384,-0.03917444497346878,0.034683290868997574,0.050126321613788605,-0.030776334926486015,0.013696051202714443,-0.01614472083747387,-0.007984109222888947,-0.01739957556128502,-0.14764180779457092,-0.01951465755701065,0.022929556667804718,-0.005529829766601324,-0.10658756643533707,-0.012762649916112423,0.027520257979631424,0.06787574291229248,-0.0027869995683431625,0.04492642357945442,0.00847826711833477,-0.011825119145214558,-0.029628438875079155,-0.0342973954975605,-0.03856182470917702,-0.02056792937219143,-0.007665886543691158,0.03436949849128723,0.04363048076629639,0.033354952931404114,-0.04539070278406143,0.05578894913196564,0.07543151825666428,-0.026150425896048546,0.039397384971380234,-0.0012067501666024327,-0.05542238801717758,-0.016709744930267334,-0.029019003733992577,-1.929665665434149e-32,-0.0015710176667198539,0.0046130274422466755,-0.040117207914590836,0.05207346752285957,0.005879380274564028,0.03612636402249336,-0.055244725197553635,0.04769947752356529,0.053437139838933945,-0.017485806718468666,-0.04326939955353737,0.013895204290747643,0.10439915955066681,-0.09440832585096359,0.01188672985881567,0.08118885010480881,0.07549696415662766,0.08640161901712418,-0.0023252067621797323,-0.03980517014861107,-0.07145960628986359,0.057252220809459686,-0.021367516368627548,-0.1065080463886261,-0.02133472077548504,0.03269754722714424,-0.0481097511947155,-0.04128711670637131,-0.027802320197224617,0.013448694720864296,0.12115228921175003,0.021512359380722046,-0.021561263129115105,0.0021222662180662155,-0.030143998563289642,-0.05622763931751251,0.10609135031700134,-0.05454368516802788,-0.03810978680849075,0.03341400995850563,0.03413337469100952,0.04976578429341316,0.12330366671085358,0.07849439233541489,0.05410853028297424,-0.05782795697450638,-0.04994087293744087,0.0042678676545619965,-0.05183975398540497,0.08792976289987564,0.06785611808300018,-0.04834967106580734,-0.03416268527507782,0.0040993401780724525,0.09743310511112213,-0.0163564570248127,-0.025056516751646996,-0.016046499833464622,0.015570501796901226,-0.008496012538671494,0.06806567311286926,0.04463569074869156,-0.05000933259725571,-0.01145945768803358,0.03718504682183266,0.015613773837685585,-0.06405813992023468,0.09809032082557678,-0.03688890486955643,-0.008049946278333664,0.06728615611791611,-0.07302016764879227,-0.08304508030414581,-0.08745743334293365,0.0069235884584486485,0.02990300953388214,0.03508714959025383,0.06375031918287277,0.03345904499292374,-0.031515516340732574,-0.07036671787500381,-0.024527614936232567,-0.010430767200887203,0.014490521512925625,-0.018422581255435944,-0.03370386362075806,-0.004586984869092703,0.014074954204261303,0.05465453118085861,0.03970664367079735,-0.0025390121154487133,-0.02398335188627243,0.06461074203252792,0.026288330554962158,0.10528742522001266,-5.885196330268627e-8,0.03961251676082611,-0.024680761620402336,-0.015711426734924316,0.009580251760780811,0.018421676009893417,-0.08330672234296799,0.04528128728270531,-0.037938427180051804,0.039124198257923126,0.061994507908821106,-0.017378419637680054,-0.032610878348350525,-0.03938351571559906,0.022832516580820084,0.07848887145519257,0.031999409198760986,0.07134496420621872,0.01895187236368656,-0.04260295629501343,-0.11498339474201202,0.027296938002109528,-0.010046192444860935,-0.0722254142165184,-0.01063627004623413,-0.05887570232152939,-0.05482446402311325,0.06008040904998779,-0.0758347287774086,0.024895785376429558,0.02477795071899891,-0.017026690766215324,0.05536461994051933,0.010536851361393929,-0.12957420945167542,0.03850318491458893,0.08487068116664886,0.015134261921048164,0.029254155233502388,0.042202435433864594,0.01098196767270565,-0.04491294547915459,-0.0426190122961998,0.02394258789718151,-0.03995126485824585,0.029124313965439796,-0.026300420984625816,-0.022417275235056877,0.0021689075510948896,0.008347813040018082,-0.08792619407176971,-0.017948457971215248,-0.0072099799290299416,0.11654674261808395,-0.00479150889441371,-0.07316862791776657,-0.01636665314435959,0.07225663214921951,0.01329200342297554,0.06598690897226334,-0.008652177639305592,0.07325461506843567,0.03983146324753761,0.030001673847436905,0.062143709510564804]},{"text":"Irae Thyesten exitio gravi Stravere et altis urbibus ultimae Stetere causae cur perirent Funditus imprimeretque muris 20 Hostile aratrum exercitus insolens.","book":"Homage to Catalonia","chapter":5,"embedding":[-0.01629774458706379,0.08267830312252045,-0.037866029888391495,-0.008979260921478271,-0.03138222172856331,0.04392652213573456,0.01630917750298977,0.1241530179977417,0.07577889412641525,0.07242654263973236,0.03361394256353378,-0.02406718023121357,0.059570882469415665,-0.03350317105650902,-0.024631213396787643,-0.08023841679096222,-0.05729295685887337,0.07454441487789154,-0.031303197145462036,0.008001992478966713,0.010424114763736725,-0.009870358742773533,-0.009516474790871143,-0.007750504184514284,-0.1515473872423172,0.04412487894296646,-0.04438597708940506,-0.07961782813072205,0.06834279745817184,-0.06805693358182907,0.08690708130598068,-0.03249254450201988,-0.015178985893726349,-0.014661560766398907,-0.032743677496910095,0.005735144484788179,-0.0933738425374031,0.03531552851200104,0.03385735675692558,0.0007689904305152595,-0.009874257259070873,-0.0032503334805369377,-0.07639898359775543,-0.09807700663805008,-0.07652276009321213,0.015450073406100273,-0.04817203804850578,0.03363291546702385,-0.033079955726861954,0.03206776827573776,-0.02018633671104908,-0.04694183170795441,-0.035498764365911484,-0.019875410944223404,-0.060412585735321045,-0.07901953905820847,0.044828083366155624,-0.08380144834518433,-0.018856802955269814,-0.03324170783162117,0.05920428782701492,0.03215853124856949,-0.021487487480044365,-0.02560696005821228,-0.07319050282239914,-0.0010410494869574904,0.020483171567320824,0.0029398782644420862,-0.04185042902827263,0.031020935624837875,0.09064365923404694,-0.04960839822888374,-0.083213210105896,0.0407872200012207,-0.06801825016736984,0.013663917779922485,0.06425992399454117,-0.00889460276812315,0.059493448585271835,-0.06751449406147003,0.05105981603264809,0.02815060131251812,-0.0039017547387629747,0.03845915198326111,0.07119609415531158,-0.038315217941999435,0.05133438855409622,0.0007381446193903685,0.055040694773197174,0.0288535263389349,0.01586458832025528,-0.03001469559967518,0.014861485920846462,-0.026012113317847252,0.026997441425919533,0.00931641273200512,-0.07905138283967972,-0.09192978590726852,-0.012055587954819202,0.02291511557996273,-0.006565084680914879,-0.024489928036928177,0.0212909784168005,0.09062305092811584,-0.06255535781383514,-0.09516003727912903,0.004633268341422081,-0.12111088633537292,0.038396816700696945,0.017087914049625397,-0.07924478501081467,-0.02546737715601921,0.02400457113981247,-0.045733556151390076,0.0402996763586998,-0.023555031046271324,-0.0013873757561668754,-0.04158640652894974,0.02575535513460636,0.031767066568136215,0.057330939918756485,-0.029916396364569664,-0.03536277636885643,0.009192575700581074,0.0973227471113205,-0.07306241989135742,-0.0013533858582377434,1.310197774966066e-32,-0.0705198347568512,-0.13990989327430725,-0.04910930618643761,-0.008600802160799503,-0.005848521366715431,-0.01965775527060032,-0.06305081397294998,0.029208004474639893,0.07560714334249496,-0.043995052576065063,-0.08034218102693558,-0.08918382972478867,0.07023979723453522,0.043399836868047714,-0.018721407279372215,0.06586078554391861,0.07772687822580338,0.05596964806318283,-0.038227152079343796,-0.05358225107192993,-0.02437392994761467,0.01850483939051628,0.05675636976957321,0.0029624630697071552,0.035738665610551834,0.02867528237402439,-0.059783823788166046,-0.03530028834939003,-0.040074724704027176,-0.0027331102173775434,0.06832411140203476,-0.04543866962194443,-0.0028948576655238867,0.023168357089161873,0.022974403575062752,-0.04075133800506592,0.018233120441436768,-0.011664161458611488,-0.010160251520574093,-0.0536293089389801,0.026274025440216064,0.04049430042505264,-0.005603043362498283,0.022524027153849602,0.12156245857477188,0.013125498779118061,0.025979463011026382,0.022504128515720367,0.031269535422325134,0.0442398376762867,-0.0123291015625,0.04711569845676422,0.010114198550581932,0.01971348188817501,0.006940368562936783,0.06443140655755997,-0.06614767014980316,0.10719051212072372,-0.014744598418474197,-0.02950432151556015,0.00045686846715398133,0.0041587818413972855,0.020676348358392715,-0.023538528010249138,0.028511766344308853,-0.0420561246573925,-0.05853790417313576,-0.07681486010551453,0.0018858418334275484,0.04861447587609291,-0.0681493952870369,-0.02045866847038269,-0.049757327884435654,0.026413829997181892,-0.01805487461388111,-0.004191202111542225,0.0032554783392697573,0.0030885154847055674,0.004635580815374851,-0.02804124914109707,-0.08521062880754471,0.071015365421772,0.022280734032392502,-0.002753851003944874,0.05828472226858139,-0.027287589386105537,-0.03900736942887306,-0.08442500978708267,0.03430915251374245,0.02062688022851944,-0.002931100782006979,0.01910650171339512,-0.07198651134967804,0.048611823469400406,0.0011412198655307293,-1.505402277041935e-32,-0.021838322281837463,0.0039301239885389805,-0.0428050197660923,0.039369139820337296,0.017479989677667618,0.09429700672626495,-0.08414299786090851,0.03826834633946419,0.02441888302564621,0.05085490643978119,-0.026209166273474693,-0.00870109349489212,0.025839831680059433,0.007077312096953392,0.008658117614686489,0.0031182141974568367,0.1014481633901596,0.03442747890949249,-0.028708575293421745,-0.04585406929254532,-0.025713738054037094,0.006877959705889225,-0.004767272621393204,-0.008859238587319851,-0.010670683346688747,-0.03886858746409416,0.06620234251022339,-0.024927785620093346,-0.10161612182855606,-0.05745872110128403,0.08499426394701004,0.011208092793822289,-0.016070622950792313,0.1067066416144371,-0.04854282736778259,-0.021268928423523903,0.14160053431987762,-0.0028193218167871237,-0.10162191092967987,-0.03618258982896805,0.01909736730158329,0.10544583201408386,0.16241022944450378,-0.006242416333407164,-0.0024697037879377604,-0.052422456443309784,-0.0641864687204361,0.00027659855550155044,-0.03984827548265457,-0.058108799159526825,0.017187055200338364,-0.10404934734106064,0.03491417318582535,-0.036323532462120056,0.008756060153245926,-0.06893738359212875,-0.01141003705561161,-0.05786136910319328,-0.027633095160126686,-0.027248959988355637,0.07130473852157593,0.006794674787670374,-0.012195597402751446,0.011914452537894249,0.0523490384221077,-0.04083430767059326,-0.04277660697698593,0.05285368859767914,0.03909347951412201,0.03885533660650253,0.05207950621843338,-0.06653165817260742,-0.1076708510518074,0.003029666841030121,0.04178757593035698,0.0460968054831028,0.04600153863430023,-0.04509948194026947,0.02790750563144684,-0.06358978897333145,-0.028003329411149025,-0.059030041098594666,-0.0019416410941630602,-0.0944967195391655,-0.06396570056676865,-0.050660327076911926,0.012713702395558357,-0.01799418032169342,0.01192911621183157,0.030035724863409996,-0.08011727780103683,-0.022238947451114655,0.041109345853328705,-0.059506408870220184,-0.03369622677564621,-4.48674768449564e-8,0.050359778106212616,-0.05012422427535057,-0.029803307726979256,0.05038398876786232,-0.011112889274954796,-0.05504121258854866,0.004281224217265844,-0.06049368157982826,-0.07379541546106339,0.0797920972108841,0.00993395410478115,-0.0123754208907485,0.013048889115452766,0.03930802270770073,0.023357488214969635,-0.0018779255915433168,0.1082606390118599,0.01980358362197876,-0.019575210288167,-0.05826934054493904,0.011808834969997406,-0.03594361990690231,-0.07959554344415665,-0.03716939315199852,0.0593479759991169,-0.020951278507709503,0.028669290244579315,-0.027527958154678345,-0.033456239849328995,0.056585654616355896,0.026072878390550613,0.06224321201443672,0.025523150339722633,-0.038431450724601746,0.024503109976649284,0.12135747820138931,0.05098021402955055,0.02261035330593586,0.009572944603860378,0.09378336369991302,0.06834016740322113,0.12707862257957458,0.08024145662784576,-0.03753203526139259,-0.01374063454568386,-0.01719772443175316,-0.007474962156265974,-0.04253898561000824,0.014202918857336044,-0.05669946223497391,0.02135239914059639,0.010275708511471748,-0.0007852588896639645,0.031069042161107063,-0.09145090728998184,-0.05310329422354698,0.0020390679128468037,-0.0707453116774559,-0.030794743448495865,-0.0027355498168617487,0.1450551450252533,0.03718660771846771,0.06031084060668945,0.027953660115599632]},{"text":"Velox amoenum saepe Lucretilem Mutat Lycaeo Faunus et igneam Defendit aestatem capellis Usque meis pluviosque ventos.","book":"Homage to Catalonia","chapter":5,"embedding":[0.02019336074590683,0.09389277547597885,-0.041765064001083374,-0.033175792545080185,0.004183613229542971,0.07539156079292297,0.08841005712747574,0.06690720468759537,0.023848729208111763,0.0541842058300972,-0.04700930416584015,-0.07959888875484467,0.0821656882762909,-0.033322773873806,-0.040160682052373886,-0.04160545766353607,-0.06486078351736069,0.1229020357131958,-0.022650858387351036,0.06622488796710968,0.08705276250839233,0.000871435331646353,0.0321400910615921,0.07776820659637451,-0.0377805233001709,0.02048037014901638,-0.047954656183719635,0.006175099406391382,0.05257696658372879,-0.04418737813830376,0.05524628609418869,0.060267191380262375,0.0677318274974823,0.02619154565036297,-0.010396561585366726,-0.0053476616740226746,-0.00651106471195817,-0.041486937552690506,-0.06841474771499634,0.04324783757328987,-0.06997007131576538,-0.035794321447610855,-0.022969046607613564,-0.06920336186885834,-0.07310260832309723,0.06528684496879578,0.008166794665157795,0.07658112049102783,-0.022473866119980812,0.005643889773637056,-0.07142136991024017,-0.0030450401827692986,-0.10470732301473618,-0.023209696635603905,-0.04191615805029869,0.02044786885380745,-0.0012157842284068465,-0.06245765462517738,0.030208639800548553,-0.06752128899097443,-0.0006730445893481374,0.041348639875650406,0.02026231586933136,0.057594891637563705,-0.0834745541214943,-0.003229859983548522,-0.043787386268377304,0.05728354677557945,0.023482603952288628,0.009200367145240307,0.1513461172580719,-0.06205839663743973,0.001868242397904396,0.003552451031282544,-0.026671886444091797,0.07964718341827393,0.022358719259500504,-0.02273271419107914,0.03480233624577522,-0.09773340821266174,-0.0005010089371353388,-0.028406180441379547,0.00007082975207595155,-0.027457213029265404,0.009701686911284924,-0.002839901950210333,0.06329774856567383,0.0037543601356446743,0.04603446647524834,0.04002605378627777,0.02311333641409874,-0.007547065615653992,0.02927502430975437,-0.019532039761543274,0.10289391130208969,0.04151405766606331,0.006068851333111525,-0.044287800788879395,0.007256001234054565,-0.03017755039036274,0.024060383439064026,-0.018671391531825066,-0.04256504401564598,0.040763888508081436,-0.11097876727581024,-0.10842684656381607,0.053393565118312836,-0.12866468727588654,0.01609697937965393,-0.004189849831163883,-0.02714187279343605,-0.10809275507926941,-0.06093411520123482,-0.046714719384908676,0.06281192600727081,0.024876167997717857,0.05453872308135033,-0.13674785196781158,-0.03235900029540062,-0.02003946341574192,0.027679147198796272,-0.04359208419919014,0.01744748465716839,-0.010800558142364025,0.08531296998262405,-0.0050027333199977875,-0.01088735368102789,1.4522539162742377e-32,-0.06396614015102386,-0.05130467191338539,-0.10688968747854233,0.06244935840368271,0.016471901908516884,-0.0068898992612957954,0.03287801146507263,-0.03588954731822014,-0.06763111054897308,0.0555916391313076,-0.1550748497247696,0.06876154243946075,-0.008746709674596786,0.05135637894272804,0.005107390694320202,-0.013515440747141838,0.07819435000419617,-0.03892972320318222,-0.04139820858836174,-0.05520293116569519,-0.012462751008570194,-0.004221668466925621,0.03527332842350006,-0.0370890274643898,0.002107728272676468,-0.030786892399191856,-0.021739289164543152,-0.012692201882600784,-0.04192488640546799,0.05806047469377518,0.10906018316745758,-0.061393920332193375,-0.0665803924202919,-0.012709894217550755,-0.043186962604522705,0.03713478520512581,-0.03906407952308655,-0.005360553041100502,-0.013781965710222721,-0.005423025693744421,-0.029241785407066345,0.04130840674042702,-0.03738619387149811,-0.008309900760650635,0.13849855959415436,-0.041366614401340485,-0.05008908361196518,0.03670161962509155,0.011470543220639229,-0.03532402589917183,0.013339709490537643,-0.028431639075279236,0.0016952952137216926,-0.058256085962057114,0.024166198447346687,-0.02043355442583561,-0.0885743498802185,0.043144434690475464,-0.06853044033050537,-0.023969219997525215,-0.03797822818160057,0.020926499739289284,0.02796391025185585,-0.03502756729722023,0.0443280003964901,-0.005026618018746376,-0.03309275582432747,-0.010010034777224064,0.039041295647621155,-0.03937903419137001,0.03088613599538803,-0.06095913052558899,0.005591361317783594,0.010797502472996712,-0.007287215907126665,0.027389859780669212,0.05241744592785835,0.03480491787195206,-0.03303351625800133,0.0215791966766119,-0.036425501108169556,0.025044728070497513,-0.02373155765235424,0.0763150006532669,0.11165885627269745,-0.07876276969909668,0.03302197530865669,0.02474866434931755,0.020169736817479134,0.08899703621864319,-0.0012435500975698233,-0.013255862519145012,0.05546889826655388,0.025476660579442978,-0.06259720772504807,-1.3506706332120527e-32,-0.07840059697628021,0.0054124281741678715,-0.10063216090202332,0.06232853978872299,-0.04528991878032684,0.017964355647563934,-0.05749020352959633,0.017200052738189697,-0.033663973212242126,-0.07768955081701279,-0.05731775984168053,-0.06903842836618423,0.08819714188575745,-0.06766845285892487,0.018078170716762543,0.013105113990604877,0.07490050047636032,-0.041368018835783005,0.017687074840068817,0.00014151593495626003,-0.07563701272010803,-0.020580707117915154,0.003713068552315235,-0.030064130201935768,-0.01821729727089405,0.012555534020066261,0.06898882985115051,-0.05946791544556618,0.020291874185204506,-0.03726167604327202,0.05589582398533821,0.010286414995789528,-0.02578684873878956,0.1067616268992424,0.013642494566738605,0.033964406698942184,0.12045960128307343,0.053729940205812454,-0.054189179092645645,-0.07633458077907562,0.044729847460985184,0.053952354937791824,0.06622754782438278,-0.022918133065104485,0.005568029824644327,-0.026122787967324257,-0.015300391241908073,-0.1225532814860344,-0.010387112386524677,-0.07484935969114304,0.03615622967481613,-0.10032371431589127,0.02923472411930561,-0.019640522077679634,0.07622311264276505,-0.0058432104997336864,-0.08035413920879364,0.033090509474277496,-0.07535017281770706,-0.003797776997089386,0.11538144946098328,0.002933203475549817,-0.0394611693918705,0.004467341583222151,0.08010507375001907,0.02466101385653019,-0.09126118570566177,0.012872740626335144,-0.06551893055438995,-0.0022798192221671343,0.06464853882789612,-0.04735153913497925,-0.11899938434362411,0.008821182884275913,-0.023648709058761597,-0.05443228408694267,-0.08622469007968903,0.04510030522942543,-0.005700513254851103,0.05885104462504387,-0.0032365364022552967,-0.0027895946986973286,-0.07834266871213913,-0.0529743917286396,-0.008801874704658985,-0.055406197905540466,0.04547468572854996,0.047852177172899246,0.04530879482626915,-0.038159940391778946,0.014023145660758018,0.013111798092722893,-0.01260578166693449,-0.06743175536394119,0.025490669533610344,-4.3640046243353936e-8,0.004099278710782528,-0.06459692120552063,0.06662673503160477,0.07015644758939743,-0.00897853821516037,-0.027899757027626038,-0.03378672897815704,-0.08190138638019562,-0.04014350846409798,0.012117506004869938,0.007569876033812761,-0.00815355870872736,0.09318223595619202,-0.00308561441488564,0.05256195738911629,0.014351315796375275,0.027809591963887215,-0.0018762495601549745,0.025461474433541298,-0.03644382208585739,-0.0023324452340602875,-0.02968384511768818,-0.0251975916326046,0.0023071703035384417,-0.025374285876750946,0.00165180629119277,-0.006287779659032822,-0.10060299932956696,0.025032609701156616,0.01428584661334753,0.03464559465646744,-0.006230313330888748,-0.00518516032025218,-0.009616311639547348,-0.03627759963274002,0.04471076279878616,0.0228632390499115,0.03003300540149212,-0.03219464793801308,-0.01918071322143078,0.041525501757860184,0.05706441402435303,0.13116489350795746,0.0019717745017260313,0.045341938734054565,-0.021612172946333885,-0.03743164986371994,-0.05048403888940811,0.02507859282195568,0.0007321422453969717,0.032241057604551315,-0.01698525808751583,0.07262466102838516,0.06236134096980095,0.0005673177656717598,-0.04927082359790802,0.046339407563209534,-0.029751695692539215,0.045089490711688995,0.031649790704250336,0.018758559599518776,0.09331417083740234,0.00854196585714817,0.008872144855558872]},{"text":"Di me tuentur, dis pietas mea Et Musa cordist.","book":"Homage to Catalonia","chapter":6,"embedding":[-0.07423145323991776,0.12413115054368973,-0.041933972388505936,-0.015500827692449093,-0.09378577768802643,-0.014874650165438652,0.1011560708284378,0.05075620114803314,0.06933925300836563,0.12314818799495697,0.12653641402721405,-0.09588507562875748,0.017354236915707588,-0.009488077834248543,-0.009329532273113728,-0.03427138924598694,-0.018741048872470856,0.05321139097213745,-0.06360387057065964,-0.017419323325157166,-0.004711900372058153,0.02811102755367756,-0.02587885782122612,0.025598110631108284,-0.057001031935214996,0.05353457108139992,0.02223239094018936,-0.06977961212396622,0.03476819023489952,-0.09771545231342316,0.012720322236418724,0.017001451924443245,0.07754769921302795,0.015024757944047451,0.006147335283458233,0.04064243659377098,0.09050549566745758,-0.11595304310321808,-0.00437333295121789,0.030580053105950356,0.048271700739860535,0.04654573276638985,0.01835172064602375,-0.08074867725372314,0.05362813547253609,-0.05056995898485184,-0.0558578297495842,0.0150459548458457,-0.01214626245200634,0.04853047803044319,-0.023770350962877274,0.0640912726521492,-0.0012720527593046427,-0.014564884826540947,0.04017334803938866,-0.056372515857219696,0.04727790877223015,0.08695650845766068,0.05285891145467758,-0.009968080557882786,0.08551626652479172,-0.06408946216106415,0.015423687174916267,-0.00008852811879478395,-0.03748340904712677,-0.07106156647205353,-0.02571694739162922,-0.04058180749416351,-0.038442760705947876,-0.004968385677784681,0.051667168736457825,-0.025824684649705887,-0.034375112503767014,0.011352475732564926,0.0069033484905958176,0.06476286798715591,0.06960827112197876,-0.05798410624265671,-0.09354160726070404,-0.036322642117738724,0.01199019979685545,-0.02293960191309452,-0.007028902415186167,-0.01386181078851223,-0.020548315718770027,0.014280050061643124,0.05308294668793678,-0.06081044673919678,0.009874915704131126,-0.10666375607252121,0.012572051025927067,0.023356901481747627,-0.05626530945301056,0.009337225928902626,0.001715747988782823,-0.06799545139074326,-0.10139933973550797,0.008086387999355793,-0.04552849754691124,0.035630326718091965,0.047008976340293884,-0.0056798928417265415,-0.04566003754734993,0.000765710836276412,-0.0724618136882782,0.011021314188838005,-0.047192201018333435,-0.09582425653934479,0.009278900921344757,0.09146545082330704,0.015859566628932953,-0.02342929132282734,-0.06305593252182007,-0.0035624189767986536,0.035236407071352005,0.05818046256899834,-0.07373848557472229,-0.051224272698163986,0.031535711139440536,0.046237844973802567,0.030887525528669357,-0.05862540379166603,0.002371673472225666,-0.010252557694911957,-0.007556948345154524,-0.06177704408764839,0.014482601545751095,1.0729231014924348e-33,-0.08604363352060318,-0.017886001616716385,-0.0059426031075417995,0.005641695577651262,0.06390000879764557,-0.04032284766435623,-0.09469009935855865,0.01444307155907154,0.019533470273017883,-0.06711927056312561,-0.06768172234296799,0.12610627710819244,-0.029068345203995705,0.04938472807407379,0.0197821706533432,0.012996835634112358,0.07252301275730133,-0.046259064227342606,0.009809799492359161,-0.044349465519189835,-0.03401061147451401,-0.020672598853707314,0.020175902172923088,-0.06886276602745056,0.04757537320256233,-0.07076385617256165,0.040303125977516174,-0.10871939361095428,0.029444925487041473,0.004060222301632166,0.0392354354262352,-0.04344326630234718,0.07529018819332123,-0.0405910387635231,-0.05047375336289406,0.011619196273386478,-0.002196449087932706,0.10986972600221634,-0.0486755445599556,0.0508759431540966,-0.01953252963721752,-0.04309401288628578,0.07478293031454086,0.019243227317929268,-0.04521610215306282,-0.01912139542400837,0.03464904800057411,-0.029169388115406036,0.003143373178318143,-0.016161872074007988,-0.01600949466228485,0.02553567849099636,0.03986425697803497,0.024491580203175545,0.07028717547655106,-0.06041985750198364,-0.04328518733382225,-0.0371309332549572,-0.007374904118478298,-0.061452314257621765,0.020996537059545517,-0.00008265900396509096,-0.07781188935041428,0.06559684872627258,-0.06511964648962021,0.0014926474541425705,0.03022606112062931,0.06881796568632126,0.08419095724821091,0.07600248605012894,-0.11064361780881882,0.010949141345918179,0.00989103876054287,-0.019184116274118423,-0.12317642569541931,0.043732114136219025,-0.013493680395185947,0.03571294993162155,-0.061463311314582825,0.017272239550948143,-0.08695483207702637,0.003670097328722477,-0.015292071737349033,0.018765348941087723,0.037139441817998886,0.08029334992170334,-0.00037207029527053237,0.039345212280750275,0.04908101260662079,0.06308277696371078,0.03325093165040016,0.15391327440738678,0.044123582541942596,-0.029385967180132866,-0.019903959706425667,-7.754975004664641e-34,-0.03262249007821083,0.08456572890281677,-0.028583096340298653,0.1128539964556694,0.011111929081380367,-0.03228181600570679,-0.007581999525427818,0.030089447274804115,-0.014395368285477161,-0.05717173218727112,-0.01000030618160963,-0.09856649488210678,0.10725635290145874,-0.038192544132471085,0.044888921082019806,0.05079298093914986,-0.03351028636097908,0.02013208717107773,0.0007041152566671371,-0.016839729622006416,-0.08561956882476807,0.018375825136899948,-0.03806707635521889,-0.09711789339780807,-0.03384830430150032,-0.020786186680197716,-0.00367299048230052,-0.02311130426824093,0.023763025179505348,-0.06295715272426605,-0.0030573843978345394,-0.07414449751377106,-0.060773566365242004,0.059089791029691696,-0.020892420783638954,0.12406142055988312,0.043799929320812225,0.037872638553380966,-0.02826477214694023,0.030011966824531555,-0.04088098928332329,0.05411272123456001,0.005039680283516645,0.012318923138082027,-0.04833319038152695,-0.00888425949960947,-0.06738497316837311,-0.008539779111742973,-0.07492917031049728,0.008519459515810013,0.03596489876508713,0.016928449273109436,0.038425859063863754,-0.060947567224502563,0.09146709740161896,0.05337041616439819,-0.022961659356951714,0.035210926085710526,-0.12741844356060028,0.024172410368919373,0.025419170036911964,-0.033554524183273315,0.04683405160903931,-0.05984855443239212,0.055649928748607635,0.05928735062479973,-0.023528212681412697,0.03216173127293587,0.01944657787680626,0.06892972439527512,0.04364243894815445,0.035308144986629486,-0.01728975586593151,-0.0426974855363369,-0.02265395037829876,0.024752942845225334,-0.05848078802227974,0.08354125171899796,0.08720967173576355,-0.004997089505195618,-0.06475107371807098,-0.02455219253897667,-0.02649756707251072,-0.00515610259026289,-0.012435730546712875,0.027824612334370613,0.006660425569862127,-0.02732265181839466,0.10417838394641876,0.03165331482887268,0.017706966027617455,-0.025295212864875793,0.05031288042664528,0.026886727660894394,0.00005617767965304665,-2.130243537123988e-8,-0.04336606711149216,-0.11677880585193634,-0.025608718395233154,0.04008077457547188,0.10818564891815186,-0.014271818101406097,-0.007222854997962713,-0.03615908697247505,-0.03826633840799332,0.01668820157647133,-0.03924808278679848,-0.017777685075998306,-0.027744075283408165,0.0019718073308467865,0.0010114992037415504,0.09699833393096924,0.049653008580207825,0.01610899716615677,0.02690085768699646,-0.043958261609077454,0.03766970336437225,-0.028825735673308372,0.010045019909739494,-0.016858497634530067,-0.041100289672613144,0.010439243167638779,0.011860985308885574,-0.01773742400109768,-0.03220366686582565,-0.014930234290659428,-0.02611377090215683,-0.004882749170064926,-0.08478477597236633,-0.027827218174934387,-0.03454938158392906,0.015855731442570686,-0.029986917972564697,0.025664204731583595,-0.04202670231461525,0.01984451524913311,0.11216066032648087,0.08281362056732178,-0.03373074531555176,0.005897641181945801,0.06201072037220001,-0.03916086629033089,0.06581015884876251,-0.015377693809568882,-0.008960441686213017,0.07201262563467026,-0.06191067770123482,0.038347914814949036,0.09272916615009308,0.07329107820987701,0.013125686906278133,0.011231070384383202,0.04628464952111244,0.02288474142551422,-0.028547439724206924,0.050568174570798874,0.038397327065467834,0.033470720052719116,0.03689116612076759,-0.06733962893486023]},{"text":"Hic in reducta valle Caniculae Vitabis aestus et fide Teia Dices laborantis in uno Penelopen vitreamque Circen; 20 Hic innocentis pocula Lesbii Duces sub umbra, nec Semeleius Cum Marte confundet Thyoneus Proelia, nec metues protervum Suspecta Cyrum, ne male dispari 25 Incontinentis iniciat manus Et scindat haerentem coronam Crinibus immeritamque vestem.","book":"Homage to Catalonia","chapter":6,"embedding":[-0.046683505177497864,0.05245601385831833,-0.06437665224075317,0.00423908606171608,-0.07505868375301361,0.015518930740654469,0.07429087162017822,0.040271956473588943,0.05078961327672005,0.049239035695791245,0.0564589686691761,-0.04694564267992973,0.02681499719619751,-0.011220413260161877,-0.08295875787734985,-0.1099502220749855,0.014858085662126541,0.06797905266284943,-0.06788352131843567,0.010459492914378643,0.06132849305868149,-0.005228122696280479,0.0066428170539438725,-0.009967142716050148,-0.13719889521598816,-0.09897887706756592,-0.04921581596136093,0.02734769880771637,0.008346909657120705,-0.07787749171257019,-0.009106977842748165,0.0705757737159729,0.05475414916872978,-0.08414789289236069,0.042160168290138245,-0.024940570816397667,0.004642434883862734,-0.1054902896285057,0.057707060128450394,0.053536634892225266,-0.002004939364269376,-0.04217404127120972,-0.11382711678743362,0.043011028319597244,-0.04390515014529228,0.01798001304268837,-0.021528927609324455,0.04550907015800476,0.035771239548921585,0.017033841460943222,-0.03637412190437317,-0.023212241008877754,-0.028533443808555603,0.062301479279994965,-0.09484079480171204,-0.04118959605693817,-0.08267005532979965,-0.07099641859531403,0.022562922909855843,-0.0694420263171196,-0.019058488309383392,0.07937829941511154,0.0024765918496996164,0.008937759324908257,-0.03405642881989479,-0.017024464905261993,-0.022874578833580017,0.019262786954641342,-0.0045970287173986435,-0.035202376544475555,0.09899667650461197,-0.06915537267923355,-0.08174408227205276,0.050730183720588684,-0.05172878876328468,0.0127108134329319,0.036551691591739655,-0.020350530743598938,-0.004807189106941223,-0.10079410672187805,0.009189439937472343,0.02866722270846367,0.020107166841626167,0.01923462189733982,0.041856881231069565,-0.034743163734674454,0.030461663380265236,-0.03593606874346733,0.038288265466690063,-0.035401612520217896,0.0035663950257003307,0.020891251042485237,-0.021264977753162384,-0.06435687094926834,0.027400769293308258,0.0016898749163374305,-0.02333787828683853,0.04792122542858124,-0.08997169137001038,0.02750438079237938,-0.03569620102643967,-0.02967122755944729,0.008638313040137291,0.04570022225379944,-0.09191359579563141,-0.02050289511680603,-0.014463188126683235,-0.05367084965109825,0.04938868060708046,0.06059090048074722,-0.09220905601978302,-0.06728264689445496,-0.01655433513224125,-0.07963019609451294,0.041722994297742844,0.006106246262788773,0.01976141333580017,-0.05389063432812691,-0.04963476583361626,-0.041555337607860565,0.020061416551470757,-0.05655401572585106,0.01306056883186102,-0.04144815728068352,0.05112696811556816,-0.05751369893550873,0.04602135345339775,2.125382536110183e-32,-0.033619362860918045,-0.056127265095710754,0.017519159242510796,0.052765972912311554,-0.004790806211531162,0.04633486643433571,0.0013456748565658927,-0.0016218082746490836,0.07586139440536499,-0.10302087664604187,-0.06383997946977615,-0.06739424914121628,-0.02852143906056881,-0.036236945539712906,-0.054338302463293076,0.04431125149130821,0.09676573425531387,-0.09493548423051834,-0.07404603809118271,0.061991434544324875,-0.05742470920085907,0.07672986388206482,0.05715681239962578,-0.021879322826862335,0.021538805216550827,-0.037224117666482925,-0.09136474132537842,-0.05771720036864281,0.017746908590197563,0.03386671468615532,0.10719280689954758,-0.04451829567551613,0.05697275698184967,-0.02250722050666809,-0.03429500758647919,0.07316361367702484,0.03013533726334572,-0.010099120438098907,-0.03580662980675697,0.015349343419075012,-0.0542885959148407,-0.0192488431930542,0.07834784686565399,0.017130468040704727,0.023024365305900574,-0.02328408509492874,0.017570406198501587,0.0062638456001877785,0.014623258262872696,0.015397789888083935,-0.005477318074554205,0.034116487950086594,0.004682824946939945,-0.049857817590236664,-0.0034572866279631853,0.027102330699563026,-0.06114928796887398,0.0695471465587616,-0.05817924812436104,0.022837458178400993,0.05364488065242767,0.01698680780827999,-0.02172667533159256,0.035352010279893875,-0.01731770671904087,-0.09322335571050644,-0.04942040517926216,0.0045279935002326965,0.08130959421396255,-0.01754244603216648,-0.13691994547843933,0.031206758692860603,-0.05114585906267166,0.04103459417819977,-0.026442425325512886,0.04343917593359947,0.03303467854857445,-0.05113283917307854,0.0037179954815655947,-0.09064538776874542,-0.03260858729481697,-0.02411291003227234,0.059346891939640045,0.06637008488178253,0.09087422490119934,0.01804872415959835,0.027275212109088898,0.03494628146290779,0.047626249492168427,0.04576024040579796,0.06385242193937302,0.0523664616048336,0.06222910061478615,-0.005734999664127827,0.08788023144006729,-2.1082502936941235e-32,0.032585110515356064,-0.03329440578818321,-0.0678272396326065,0.06925423443317413,0.024337509647011757,0.03728243708610535,-0.07099020481109619,0.05014890432357788,-0.0642845630645752,-0.023922499269247055,-0.03195588290691376,-0.09716165065765381,0.06955445557832718,-0.03240073844790459,-0.0002724087389651686,0.05269289016723633,0.02876926399767399,0.04666155204176903,-0.04604735225439072,0.02454456128180027,-0.08403291553258896,-0.01908598281443119,0.040064871311187744,-0.11694369465112686,0.002236628206446767,0.015792537480592728,0.04300506412982941,-0.023455848917365074,-0.07327002286911011,0.005470342002809048,0.00491207605227828,0.05254628509283066,-0.047490544617176056,0.06835345923900604,-0.00014068112068343908,-0.02132822759449482,0.058471955358982086,-0.016435837373137474,0.010701854713261127,-0.03835492953658104,0.030428502708673477,-0.050033506006002426,0.031385112553834915,-0.02648031711578369,-0.014727280475199223,-0.02499697543680668,0.03406575322151184,-0.0055365292355418205,0.0009253030875697732,0.031037183478474617,0.08984893560409546,-0.02631298452615738,-0.034983471035957336,0.05621933192014694,0.05807655677199364,-0.030510202050209045,-0.04110986366868019,-0.07098506391048431,-0.04180798679590225,0.028482692316174507,0.05875246971845627,0.085122250020504,-0.04683728888630867,0.021938839927315712,0.11566643416881561,-0.018150079995393753,-0.10958336293697357,0.11589749157428741,0.02094263583421707,0.011279311031103134,0.07750793546438217,-0.1174517348408699,-0.10070353001356125,-0.042662739753723145,-0.019615009427070618,-0.0299079492688179,-0.029243871569633484,-0.0281221866607666,0.015090109780430794,0.020025640726089478,-0.06267732381820679,-0.11321232467889786,-0.05951971560716629,-0.0154995983466506,-0.004072480835020542,-0.014044507406651974,0.06544801592826843,0.014757798984646797,-0.005721644964069128,0.02035476081073284,-0.045001350343227386,0.002535960404202342,0.04599538818001747,-0.03895961120724678,0.004662984982132912,-6.669696261951685e-8,0.027475111186504364,-0.04712313786149025,-0.01737494021654129,-0.03762736916542053,0.03207175433635712,-0.0837358832359314,0.0038931516464799643,-0.02713823691010475,-0.014185477048158646,0.11691238731145859,-0.03997758775949478,0.0004958422505296767,0.04707775264978409,-0.04229266941547394,0.05474747717380524,0.05628472566604614,0.1049942597746849,0.08785024285316467,-0.04284784197807312,-0.05329136922955513,0.05330350995063782,-0.018410522490739822,-0.0779409110546112,-0.00995619222521782,-0.06363958865404129,-0.05650252848863602,0.039732519537210464,0.0013124647084623575,-0.030493658035993576,-0.024859096854925156,0.020416200160980225,0.006285168696194887,0.011840447783470154,-0.10593250393867493,-0.003644374432042241,0.07333347946405411,0.04602421075105667,0.02285587601363659,0.06243535876274109,-0.05221850052475929,0.0024934839457273483,-0.005004480015486479,0.04747163504362106,-0.04813603311777115,0.033523060381412506,-0.06373564153909683,0.0012221225770190358,0.012210926972329617,-0.0011112021747976542,-0.030190762132406235,-0.07918839156627655,0.035685840994119644,0.10188133269548416,-0.0029260371811687946,-0.005229542031884193,-0.01871630549430847,0.08117633312940598,0.038194652646780014,-0.01558319665491581,0.025775721296668053,0.03581474348902702,0.038862526416778564,0.070855513215065,-0.013630283996462822]},{"text":"Siccis omnia nam dura deus proposuit neque Mordaces aliter diffugiunt sollicitudines.","book":"Homage to Catalonia","chapter":6,"embedding":[-0.02014932408928871,0.07719285041093826,-0.042571987956762314,0.022127050906419754,-0.12453906238079071,0.03587369993329048,0.0657951831817627,0.06314463168382645,0.06036972627043724,0.08942845463752747,0.06716657429933548,0.0037449290975928307,0.032982874661684036,-0.03443541377782822,-0.014522446319460869,-0.05194428190588951,-0.0666518434882164,0.08434000611305237,-0.036734551191329956,0.06530367583036423,0.059437379240989685,-0.031596358865499496,-0.06737865507602692,0.04484175890684128,-0.035909999161958694,0.05608215928077698,-0.026694826781749725,-0.043132659047842026,0.033602163195610046,-0.011242575012147427,0.07229281216859818,0.08513722568750381,0.06313040852546692,-0.027280807495117188,0.0611104853451252,-0.066555917263031,-0.020940767601132393,0.01899052783846855,-0.005101265385746956,0.08014962822198868,-0.03341223672032356,0.014799479395151138,-0.12024538964033127,-0.05301357060670853,0.029344674199819565,-0.016544247046113014,-0.01607414335012436,0.12053527683019638,0.04595512896776199,-0.00790812075138092,-0.07397786527872086,-0.021066637709736824,-0.038233958184719086,0.026809073984622955,-0.029218250885605812,-0.0803847685456276,0.03252963721752167,-0.011480134911835194,-0.01427640113979578,-0.009442521259188652,0.018713317811489105,0.08128613978624344,-0.028101278468966484,0.0018883825978264213,-0.010434598661959171,0.028617309406399727,0.012410661205649376,-0.051571354269981384,-0.021400760859251022,-0.01041383109986782,0.0451042614877224,-0.11052430421113968,0.040503427386283875,0.07430485635995865,-0.05419425666332245,0.007471947930753231,0.03022102825343609,0.002180016366764903,0.0263831727206707,-0.0697232112288475,0.043961185961961746,0.01825883239507675,-0.05476602539420128,0.003423341317102313,0.02386372722685337,-0.0059300875291228294,-0.0140214953571558,-0.02127622254192829,-0.002594255842268467,-0.05547255650162697,-0.059194013476371765,-0.06423009932041168,-0.080837681889534,-0.04865477234125137,0.0846635177731514,0.002696299459785223,-0.08827151358127594,-0.014496772550046444,0.05620083212852478,0.00009728335862746462,0.015540247783064842,0.0394660085439682,-0.06498570740222931,0.047329340130090714,-0.1069667637348175,-0.06693171709775925,0.03170830011367798,-0.06967238336801529,0.02610134333372116,0.1086466833949089,-0.0697476714849472,-0.05704591050744057,-0.0363193117082119,-0.02533741481602192,-0.008710256777703762,0.034916821867227554,0.0457393079996109,0.01701277680695057,-0.03809769079089165,-0.025208348408341408,0.03795735165476799,-0.06921155750751495,0.04336651787161827,-0.027230264618992805,0.04058362543582916,-0.06361490488052368,0.04257384315133095,8.264483480136962e-33,-0.01053703110665083,-0.15031063556671143,-0.0303947813808918,0.035921141505241394,0.003687735181301832,-0.03165372461080551,-0.020189013332128525,-0.027765952050685883,0.06845366209745407,-0.011628481559455395,-0.0647910088300705,0.004413713701069355,-0.02582414261996746,0.09518518298864365,-0.024334890767931938,0.06032243371009827,0.06384368985891342,0.039076048880815506,-0.030606627464294434,-0.01496282871812582,-0.0461660735309124,0.05008441582322121,0.020163804292678833,-0.021647930145263672,0.058741554617881775,-0.012792604975402355,-0.04926362633705139,-0.02390282414853573,-0.01966911554336548,0.000352089962689206,0.115818090736866,-0.03288929909467697,-0.04374729469418526,0.004447196144610643,-0.037983011454343796,-0.035814858973026276,0.01469168346375227,-0.00584395183250308,-0.0014889700105413795,-0.030907833948731422,-0.023946154862642288,0.03232326731085777,0.09179069101810455,0.0023588871117681265,0.08420910686254501,0.09728149324655533,0.030686866492033005,-0.001627830439247191,0.06402651220560074,0.029213136062026024,0.014713389798998833,0.040911559015512466,-0.009631646797060966,-0.006812419276684523,0.011302242986857891,-0.0029903301037847996,-0.04699194058775902,0.041765544563531876,0.014563665725290775,-0.022603727877140045,-0.03157775476574898,0.0751851350069046,-0.06333900988101959,-0.04850221425294876,0.00023362148203887045,-0.0414191372692585,-0.07554155588150024,0.00039579556323587894,0.09165345132350922,-0.00983896292746067,-0.12093003839254379,-0.01661086641252041,-0.1068655326962471,0.06099596619606018,-0.034704986959695816,-0.025104865431785583,0.019513489678502083,0.010727773420512676,-0.05777524784207344,-0.04308531805872917,-0.04372966289520264,-0.02749558538198471,0.00928888563066721,0.014173952862620354,0.074898362159729,0.048258211463689804,-0.00872044637799263,0.038372356444597244,0.01965293660759926,-0.01920175924897194,0.002265007933601737,0.08278140425682068,-0.02555028162896633,0.046941354870796204,0.08076328039169312,-9.115542124816267e-33,-0.001687583397142589,-0.04725024104118347,-0.06263621151447296,0.04984411224722862,0.017359156161546707,0.020170317962765694,-0.15283377468585968,0.012015245854854584,-0.0009054369293153286,-0.07698030024766922,-0.04235241934657097,-0.08679065853357315,0.09707499295473099,-0.0242770966142416,-0.096328966319561,0.06168564409017563,0.0684984028339386,0.0049750623293221,-0.06355970352888107,0.01589028909802437,-0.04393170773983002,0.08693719655275345,-0.02198203094303608,-0.12226615101099014,-0.005864507518708706,-0.07882174104452133,0.04789763689041138,-0.027797017246484756,-0.02865724079310894,-0.05940723791718483,0.05789991095662117,0.024640845134854317,-0.07105513662099838,-0.008848180994391441,-0.01824851706624031,0.012253389693796635,0.08687468618154526,-0.054517973214387894,-0.08820297569036484,-0.028023576363921165,-0.023759031668305397,0.029954485595226288,0.06705079972743988,-0.010675208643078804,0.015423621982336044,-0.05396181717514992,-0.052133265882730484,-0.10075782239437103,-0.0372454971075058,0.0157048087567091,0.13954035937786102,-0.04650336503982544,0.06183770298957825,-0.01351203303784132,0.07310102134943008,-0.03191123902797699,-0.022281697019934654,-0.023135676980018616,-0.06373409926891327,0.02583240531384945,0.129230335354805,0.0376027375459671,-0.021682631224393845,-0.0807080864906311,0.025424478575587273,0.045499470084905624,-0.06718041747808456,0.09748651832342148,0.0407569445669651,0.033412136137485504,0.058294132351875305,-0.11105748265981674,-0.02386053465306759,0.013815062120556831,-0.053192686289548874,-0.04012729600071907,-0.04606901481747627,0.009106840007007122,0.021413691341876984,0.05340446159243584,-0.01289877574890852,-0.11111783981323242,-0.02639399841427803,-0.04042298346757889,-0.04550669714808464,-0.0008623319445177913,-0.0171880591660738,-0.01605592481791973,-0.0016049762489274144,0.062103021889925,-0.05002035200595856,-0.018698375672101974,0.008031138218939304,0.032119475305080414,-0.028008107095956802,-3.417985183773453e-8,0.011674223467707634,-0.02588867023587227,-0.016634099185466766,0.03371068090200424,-0.03585180267691612,-0.10392222553491592,0.03460332378745079,-0.011277434416115284,-0.053772181272506714,0.01797456480562687,-0.006669734138995409,-0.0033233598805963993,0.00992170162498951,0.029386846348643303,0.018190637230873108,-0.0005089467740617692,0.11854372173547745,0.03448101505637169,0.012960820458829403,-0.02980286441743374,0.07412663102149963,-0.043957363814115524,-0.07450539618730545,-0.00797328632324934,0.02351735346019268,-0.022591564804315567,0.07758655399084091,-0.05377781763672829,0.0020169855561107397,0.025115270167589188,-0.00317525677382946,0.05739206075668335,0.05063626170158386,-0.05973607301712036,-0.06948607414960861,0.031615253537893295,0.008735007606446743,0.03720582276582718,-0.010725116357207298,0.0655440241098404,0.07323979586362839,0.0493401437997818,0.07342571765184402,-0.007766523398458958,0.014993617311120033,-0.0656532570719719,0.09296540170907974,0.016534730792045593,-0.015149607323110104,-0.0053600044921040535,0.0019500822527334094,0.047014545649290085,0.03997546061873436,0.060991182923316956,-0.026589611545205116,0.009315542876720428,0.019795887172222137,0.022367674857378006,-0.04460078105330467,0.028873952105641365,0.05806723237037659,0.03317003324627876,0.06443358212709427,0.000247553049121052]},{"text":"Ac ne quis modici transiliat munera Liberi, Centaurea monet cum Lapithis rixa super mero Debellata, monet Sithoniis non levis Euhius, Cum fas atque nefas exiguo fine libidinum 10 Discernunt avidi.","book":"Homage to Catalonia","chapter":6,"embedding":[-0.0471058152616024,-0.025037625804543495,-0.022409960627555847,-0.03985682874917984,-0.07593671977519989,0.03783449903130531,0.07751541584730148,0.029472405090928078,0.05669020861387253,0.04475568234920502,0.0915047749876976,-0.1446933150291443,-0.022909095510840416,-0.0034254491329193115,-0.07868887484073639,-0.07551699876785278,0.04323595389723778,0.05953267961740494,-0.1280524581670761,0.04770274460315704,0.05664379522204399,0.027854427695274353,-0.010310783982276917,0.07625767588615417,-0.05596630647778511,-0.049020737409591675,-0.03928268700838089,-0.010264427401125431,0.07279188930988312,-0.058084964752197266,-0.04962403327226639,0.1703852117061615,-0.06319665908813477,-0.02804497629404068,-0.010516256093978882,-0.055950526148080826,-0.04306635633111,-0.06946688890457153,0.1084837019443512,-0.020546700805425644,0.024974260479211807,-0.07176783680915833,0.012993942014873028,-0.03738545626401901,-0.04932555928826332,0.0066731637343764305,-0.03662683442234993,0.07069195806980133,0.027197960764169693,0.02960687316954136,-0.03035021387040615,-0.06581775099039078,0.02488146722316742,0.0691782608628273,-0.0533658042550087,-0.04920234903693199,0.02690979652106762,-0.023157993331551552,0.06561268121004105,-0.047364458441734314,-0.03292427584528923,0.08771643787622452,-0.03069303184747696,-0.0025144298560917377,-0.0618647038936615,0.005092234816402197,-0.05184042826294899,-0.02498660981655121,-0.08511795848608017,-0.006040533538907766,0.10746726393699646,-0.05802438408136368,-0.023450486361980438,0.060172297060489655,0.004279204644262791,0.0180576890707016,0.00986891146749258,-0.06267470121383667,-0.00809975154697895,-0.0801740363240242,-0.017591986805200577,0.015594505704939365,0.016503194347023964,-0.012541825883090496,-0.020894771441817284,-0.08020132035017014,0.0037648819852620363,-0.00047756527783349156,-0.04190782457590103,-0.022767897695302963,-0.0190974622964859,0.04717765003442764,-0.020285163074731827,-0.07237023860216141,-0.010468061082065105,0.08564059436321259,-0.03353085741400719,-0.025860752910375595,-0.039338015019893646,0.03539262339472771,0.04071462154388428,0.06833413243293762,-0.03597782924771309,0.024495642632246017,-0.16715452075004578,-0.02577948570251465,-0.009105308912694454,-0.030971482396125793,-0.0309993214905262,0.004763050004839897,-0.010778668336570263,-0.04455261304974556,-0.0030093882232904434,-0.10171010345220566,0.019013220444321632,-0.04558756947517395,-0.015772124752402306,-0.025705240666866302,0.0037124280352145433,-0.083658866584301,0.01848922111093998,-0.0466531477868557,0.007854721508920193,0.01634102873504162,0.06535102427005768,-0.044653043150901794,-0.013121193274855614,1.6634768798687622e-32,0.010712552815675735,-0.06980737298727036,0.007763764355331659,0.03155675530433655,0.04219665005803108,0.0008165726903825998,-0.1256164312362671,0.035658400505781174,-0.014513080008327961,-0.0896599218249321,-0.09220589697360992,-0.04138486832380295,-0.0685390755534172,-0.01939198561012745,0.07289974391460419,0.036115340888500214,0.09628812223672867,-0.11994924396276474,0.029779966920614243,-0.025291549041867256,-0.017679138109087944,0.08287728577852249,0.04084432125091553,0.007620502263307571,-0.025606097653508186,-0.0003471332311164588,0.02891431376338005,-0.09658363461494446,-0.06040292978286743,0.03701675310730934,0.048099879175424576,-0.0019161878153681755,-0.009874802082777023,-0.028852444142103195,-0.011414207518100739,0.03655454143881798,-0.009582461789250374,-0.003357418579980731,-0.029552388936281204,-0.012122693471610546,0.08300844579935074,0.032381728291511536,0.01661098748445511,-0.04053556174039841,0.02215070091187954,0.07386951893568039,0.008899129927158356,0.01919625885784626,0.051923464983701706,0.06403832882642746,-0.009524676017463207,0.021198198199272156,-0.04420889914035797,-0.03860273212194443,0.00408739410340786,0.030275555327534676,-0.0793110579252243,0.011716476641595364,0.013330118730664253,-0.06347110122442245,0.08620130270719528,-0.0371575728058815,-0.0392497256398201,0.015115701593458652,0.021388137713074684,-0.00001282809807889862,-0.0349595807492733,-0.041044581681489944,0.06953591853380203,-0.024338556453585625,-0.13847936689853668,-0.05335427448153496,0.05276781693100929,0.026951024308800697,0.03419242054224014,0.03287896141409874,-0.021896230056881905,-0.046457208693027496,-0.0013171586906537414,0.0017240835586562753,-0.02743423543870449,0.08792152255773544,0.037556782364845276,0.029945312067866325,0.06931367516517639,-0.010535208508372307,-0.05739837512373924,0.024569256231188774,0.08431266993284225,-0.025657832622528076,0.05128799006342888,-0.035772599279880524,0.0036058686673641205,-0.06138525530695915,-0.013646498322486877,-1.6115403068399687e-32,0.0231393501162529,-0.04888729751110077,-0.048958826810121536,0.06830742955207825,0.06631499528884888,0.01581336371600628,-0.04176977276802063,0.0335521399974823,0.060602497309446335,-0.017077626660466194,0.020185627043247223,-0.02402900718152523,0.04569009318947792,-0.0894555002450943,0.06195497140288353,0.06166120991110802,0.059919532388448715,0.04882797598838806,-0.0017968794563785195,-0.0040352256037294865,-0.017288165166974068,0.04584946483373642,0.0033462089486420155,-0.04269583523273468,-0.02058718353509903,-0.02606523036956787,-0.006259165238589048,0.09485927224159241,-0.04917801544070244,0.036550868302583694,0.02426717057824135,0.02950686402618885,-0.02340002730488777,-0.0071210674941539764,-0.023316895589232445,-0.08516941964626312,0.07084882259368896,0.029771750792860985,-0.007930374704301357,-0.014244524762034416,-0.007526567205786705,0.00818138848990202,0.06280399113893509,0.012349529191851616,0.0392083041369915,-0.11694136261940002,-0.08917181938886642,-0.013523237779736519,-0.03491683676838875,0.013230295851826668,0.08298101276159286,-0.012303815223276615,0.03488447889685631,-0.09584350883960724,0.08895395696163177,-0.06618881225585938,0.004136836621910334,-0.04653723165392876,0.05052467808127403,-0.011891826055943966,0.0006956746219657362,0.08310235291719437,0.01290688756853342,-0.008404582738876343,0.05921126902103424,0.045099031180143356,-0.07692805677652359,0.03651367872953415,0.030406488105654716,0.027813881635665894,0.10698629915714264,-0.07127605378627777,-0.0050111692398786545,-0.06516730040311813,-0.036116328090429306,-0.0042756665498018265,0.010417700745165348,0.04819301515817642,0.0321788489818573,0.02557453326880932,-0.01424368191510439,-0.09721700847148895,-0.04197465255856514,0.011927197687327862,-0.015004071407020092,-0.015261243097484112,0.009305080398917198,0.011058413423597813,0.0762607753276825,-0.026172975078225136,-0.04219430312514305,0.017808128148317337,0.0822339728474617,-0.07860058546066284,0.043542951345443726,-5.501772548655026e-8,-0.02424551732838154,-0.07975811511278152,-0.06326348334550858,0.03516647592186928,0.053550321608781815,0.01681593246757984,-0.012651287019252777,-0.00038394442526623607,-0.004627893678843975,0.03135506063699722,0.02082369104027748,-0.06305989623069763,-0.02388114109635353,0.027061427012085915,0.012209530919790268,0.08796606212854385,0.0790066197514534,0.09614739567041397,-0.030599666759371758,-0.0413949154317379,0.0584896020591259,0.02674521692097187,-0.004406172316521406,-0.01728300005197525,-0.08766050636768341,0.009764219634234905,0.01931833103299141,-0.16135312616825104,0.02527702786028385,-0.02507331408560276,0.03812069818377495,0.08135678619146347,-0.0065026250667870045,-0.07405798137187958,-0.052208639681339264,0.08566669374704361,-0.018872052431106567,0.016899891197681427,0.003799731843173504,0.010351859964430332,0.05733509361743927,0.051040176302194595,0.04890323057770729,-0.038584280759096146,0.02854425273835659,-0.06569923460483551,0.07640713453292847,0.006523180287331343,0.0018443510634824634,0.010631268844008446,-0.03206115961074829,0.054501332342624664,0.04557506740093231,0.006014015059918165,-0.03201989084482193,-0.062260642647743225,0.07178761065006256,-0.0027945528272539377,0.020430585369467735,0.004613242577761412,0.12024848908185959,0.04682984575629234,0.009456591680645943,0.008118473924696445]},{"text":"Saeva tene cum Berecyntio Cornu tympana, quae subsequitur caecus amor sui, Et tollens vacuum plus nimio gloria verticem 15 Arcanique fides prodiga, perlucidior vitro.","book":"Homage to Catalonia","chapter":6,"embedding":[-0.07930238544940948,0.028030360117554665,-0.026979384943842888,-0.015724919736385345,-0.15591003000736237,0.03149968758225441,0.06012865900993347,0.1265442818403244,0.032221004366874695,0.056351982057094574,0.07865428179502487,-0.07685910165309906,-0.011444797739386559,-0.001942033995874226,-0.13033170998096466,-0.05223982781171799,0.06888965517282486,0.1250186711549759,-0.07372387498617172,-0.02896229177713394,0.036834750324487686,-0.045983925461769104,0.005073965527117252,0.03443475440144539,-0.07342496514320374,-0.020416582003235817,-0.08509209007024765,-0.02275574766099453,0.044361453503370285,-0.06527125090360641,-0.022989800199866295,0.040832847356796265,0.022791612893342972,-0.039026904851198196,-0.004944302141666412,0.010047005489468575,-0.05756337568163872,-0.026358481496572495,0.007948561571538448,0.019166147336363792,0.01347443088889122,-0.09647903591394424,-0.07540597021579742,-0.03549322485923767,0.07581090182065964,-0.0023580966517329216,-0.02614350989460945,0.0581795759499073,0.03585647791624069,0.01780777797102928,-0.0741790384054184,-0.0506545789539814,-0.03608141466975212,0.06047533079981804,-0.08377812802791595,-0.05389003828167915,-0.0010625013383105397,-0.03621942549943924,-0.007187862880527973,-0.014125767163932323,-0.012416299432516098,0.07729769498109818,-0.025627659633755684,0.01531972922384739,-0.010465612635016441,-0.008718129247426987,0.011768437922000885,0.00005028948362451047,-0.025003662332892418,0.05069580674171448,0.12021834403276443,-0.040108922868967056,-0.05015596002340317,0.08130921423435211,-0.06307987868785858,0.09651625901460648,0.03132300823926926,-0.013375134207308292,0.009133843705058098,-0.07895848900079727,0.08395177870988846,0.0479288175702095,-0.013279320672154427,0.01678912714123726,-0.0276035163551569,0.04156972095370293,0.03886410966515541,-0.023632707074284554,0.006920975632965565,-0.006930736359208822,0.002440101932734251,0.024226706475019455,-0.06934463232755661,-0.06259054690599442,-0.018580667674541473,0.012248778715729713,-0.06608189642429352,-0.01908285543322563,0.006147035863250494,-0.00882667675614357,-0.01169490721076727,-0.04911155253648758,-0.01681804098188877,0.008420199155807495,-0.1034771129488945,0.027024708688259125,-0.0003049152728635818,-0.10322795063257217,0.0335785448551178,0.05715358257293701,-0.043318457901477814,-0.03784354403614998,-0.06104752793908119,-0.07302622497081757,0.05858822911977768,0.10345838218927383,0.016027772799134254,-0.027527784928679466,0.005949614103883505,-0.02906833402812481,0.021610885858535767,-0.05479009076952934,-0.02676284871995449,-0.08356286585330963,0.030287915840744972,-0.08824703097343445,0.11294004321098328,1.830185488702379e-32,-0.03199167549610138,-0.04805717244744301,-0.016224129125475883,0.070823535323143,0.014664760790765285,0.01829654723405838,0.004783100448548794,-0.012017613276839256,0.01796647347509861,-0.0803622305393219,-0.1425868421792984,-0.029330911114811897,-0.06964379549026489,-0.03413053974509239,0.0045707509852945805,0.03878046199679375,0.026131952181458473,-0.10130377113819122,0.038306791335344315,0.0022862793412059546,-0.05959054455161095,-0.030067086219787598,-0.01197631936520338,0.034826189279556274,-0.012900836765766144,-0.01969071663916111,-0.042590562254190445,-0.013860822655260563,-0.09517613053321838,0.030828533694148064,0.08583030849695206,0.023369770497083664,-0.04163264483213425,-0.0327870175242424,-0.010513362474739552,0.05059438198804855,0.07191289216279984,-0.0025318111293017864,-0.02700861543416977,0.001255701296031475,0.008886720985174179,0.05290435627102852,0.021342776715755463,-0.014914308674633503,0.07275553047657013,-0.040656670928001404,-0.04479223117232323,0.06185589358210564,0.12571410834789276,-0.016391778364777565,0.01778326742351055,0.01602112129330635,-0.013454723171889782,-0.07392755150794983,-0.007258831989020109,0.04409930109977722,-0.07530372589826584,0.05437671020627022,-0.02227454073727131,0.000601616338826716,-0.006895475555211306,0.018860936164855957,0.009524265304207802,0.031408220529556274,-0.014402122236788273,-0.020548280328512192,-0.04575122147798538,-0.020479826256632805,0.07208289951086044,-0.05362754315137863,-0.10589153319597244,-0.019359244033694267,-0.05241202935576439,0.016801565885543823,-0.044336870312690735,0.023384736850857735,0.0746748223900795,0.026430262252688408,0.04060625657439232,-0.05403883010149002,-0.015219081193208694,0.0026949248276650906,-0.006357180420309305,0.048111692070961,0.05969227850437164,0.06318890303373337,0.00725185452029109,0.033646464347839355,0.03105064108967781,0.022317592054605484,0.09375099092721939,0.017894450575113297,-0.00037383538438007236,0.00012336259533185512,-0.008036096580326557,-1.73553512438455e-32,0.024243557825684547,-0.0691007599234581,-0.08038859814405441,0.12146158516407013,0.06029732525348663,0.10415055602788925,-0.05942213162779808,-0.026475299149751663,-0.03451811149716377,-0.02404382824897766,-0.03826121240854263,-0.02818729169666767,0.10914783179759979,-0.07425250113010406,-0.010153942741453648,0.026494469493627548,0.008001795969903469,0.04246549680829048,-0.07426384836435318,0.03386446088552475,-0.06347385048866272,0.052642762660980225,0.0594901517033577,-0.05407697707414627,-0.005707074422389269,-0.005506968125700951,0.0212009996175766,0.020134711638092995,-0.012722490355372429,0.04806302860379219,0.028903750702738762,-0.029352623969316483,-0.07295273244380951,0.03982957452535629,0.017593828961253166,-0.04775988310575485,0.19482113420963287,0.02380181849002838,0.016653887927532196,-0.07137653976678848,-0.004858719650655985,0.04079749062657356,0.03895435109734535,-0.005556311924010515,-0.006699992809444666,0.025084206834435463,-0.035670604556798935,-0.0534140020608902,-0.029616843909025192,0.051111552864313126,0.08221152424812317,-0.055437102913856506,-0.014573504216969013,0.037018537521362305,0.000835746992379427,-0.005042325705289841,0.07974600046873093,-0.08763783425092697,-0.003425086149945855,0.05415092781186104,0.035031408071517944,0.015594679862260818,0.025979038327932358,-0.058495666831731796,0.10131464153528214,0.061578359454870224,-0.04737311601638794,0.09267866611480713,-0.02889322116971016,-0.024395601823925972,0.034379638731479645,-0.08543380349874496,-0.043140556663274765,-0.062216367572546005,-0.10048513859510422,-0.009216482751071453,0.03247677534818649,-0.04672488197684288,-0.00907649751752615,0.02029229700565338,-0.023992516100406647,-0.021047396585345268,-0.056178878992795944,-0.009564150124788284,-0.014815111644566059,-0.04604646936058998,-0.009038775227963924,0.027577484026551247,0.006864708382636309,0.04034053534269333,-0.06178056448698044,-0.021969303488731384,-0.03203463926911354,-0.10221082717180252,0.04970002919435501,-5.777898692826966e-8,0.009309796616435051,-0.015770817175507545,0.0006064092740416527,0.028196260333061218,0.030673639848828316,-0.06290186196565628,-0.05281617119908333,0.008886322379112244,0.04643517732620239,0.022387370467185974,-0.05576265975832939,0.10369685292243958,0.025269025936722755,0.0021489253267645836,0.03704404830932617,0.04352147504687309,0.05535740405321121,0.08084353804588318,-0.06901024281978607,-0.08321323990821838,0.043217264115810394,-0.04668756574392319,-0.019948426634073257,-0.05532810464501381,-0.031245429068803787,-0.010687674395740032,-0.012441552244126797,-0.054959915578365326,0.03559759631752968,-0.04528357833623886,0.020178575068712234,0.03059541992843151,0.07234007120132446,-0.08333507180213928,0.0018011975334957242,0.07798192650079727,0.04167844355106354,0.02067304588854313,-0.00044809389510191977,-0.025504672899842262,0.026412256062030792,-0.009203559719026089,0.04703216254711151,0.011658942326903343,-0.018651576712727547,-0.028792019933462143,0.016272446140646935,0.035322099924087524,-0.05191453546285629,0.04170297086238861,-0.026357809081673622,0.02027079090476036,0.07033023983240128,-0.020897358655929565,-0.10280981659889221,0.014415925368666649,0.10179608315229416,0.022896068170666695,0.02629464864730835,-0.017453359439969063,0.03556778281927109,0.0353853739798069,0.09443434327840805,-0.03280777484178543]},{"text":"Urit me Glycerae nitor, 5 Splendentis Pario marmore purius; Urit grata protervitas Et voltus nimium lubricus adspici.","book":"Homage to Catalonia","chapter":6,"embedding":[-0.047951385378837585,0.02367863617837429,0.005507729481905699,-0.014316334389150143,-0.05459313094615936,-0.02479940839111805,0.10390061140060425,0.052779484540224075,-0.008800610899925232,-0.028494849801063538,0.032694537192583084,-0.08221269398927689,-0.06286882609128952,-0.06694485992193222,-0.09243500977754593,-0.08267821371555328,0.020027782768011093,0.05514715611934662,-0.04907308146357536,0.04039841145277023,0.042941246181726456,-0.0338691808283329,-0.05337534472346306,0.050479449331760406,-0.11843698471784592,0.06338399648666382,0.004385459702461958,-0.03122827224433422,0.006058290600776672,-0.05957088991999626,-0.01715332828462124,-0.008511665277183056,0.07328582555055618,-0.04211527481675148,0.029092591255903244,0.0013469543773680925,-0.10731228440999985,-0.013075331225991249,0.03378857299685478,0.06438526511192322,0.036193083971738815,-0.05447407439351082,-0.0005746193346567452,-0.02978558838367462,-0.033433616161346436,-0.03758182376623154,0.009713433682918549,0.0794285386800766,-0.04900470748543739,0.007474508136510849,-0.10522492974996567,-0.040617574006319046,0.016102949157357216,0.0009493489633314312,-0.02436685748398304,-0.08389082551002502,-0.046252164989709854,-0.07242699712514877,-0.004330472555011511,0.0022832273971289396,0.062610924243927,0.03143029659986496,-0.04799330234527588,-0.0020837595220655203,-0.03506762161850929,-0.01293415017426014,0.03604075312614441,-0.06357063353061676,-0.11463622748851776,0.07430708408355713,0.05246030166745186,0.008746268227696419,-0.02100721187889576,0.06037956103682518,-0.065207339823246,0.028793424367904663,-0.003249117871746421,-0.05641902983188629,0.03491413593292236,-0.08235861361026764,0.003978397231549025,0.03776475787162781,0.0022948053665459156,0.07279501855373383,0.0027681076899170876,0.01631602644920349,0.0006700333906337619,0.015612439252436161,-0.01801702007651329,-0.05828343331813812,0.03657641261816025,0.0603104867041111,-0.04981154948472977,-0.018477721139788628,-0.09040815383195877,0.06992927938699722,-0.07721929997205734,-0.07341557741165161,-0.023333493620157242,0.005655974615365267,0.043529219925403595,-0.015447616577148438,0.02584071457386017,0.04164180904626846,-0.14395880699157715,0.002105236053466797,-0.07614024728536606,-0.0555444173514843,0.034967489540576935,0.08405303210020065,-0.1095861867070198,-0.016733232885599136,-0.04310200735926628,-0.051726046949625015,-0.01746063493192196,0.022147508338093758,-0.029128767549991608,-0.005193896126002073,0.014140652492642403,-0.008368006907403469,0.003997177351266146,0.01202452089637518,0.0004916817997582257,-0.02688397280871868,0.008021720685064793,-0.06008276343345642,0.03969602286815643,1.047956519835931e-32,-0.024317879229784012,-0.10351946949958801,0.027762511745095253,0.02886516973376274,-0.018802374601364136,-0.0650009736418724,-0.09072856605052948,-0.07672667503356934,0.025439852848649025,-0.07132384181022644,-0.09239675104618073,-0.028213107958436012,-0.02713281847536564,0.009426547214388847,-0.0020126693416386843,0.11527368426322937,0.08132777363061905,-0.04966744780540466,0.06706951558589935,-0.01255880482494831,-0.013680924661457539,0.014784465543925762,-0.010750994086265564,-0.022868338972330093,-0.01673370786011219,0.028013266623020172,0.015305922366678715,-0.09012981504201889,0.006295260041952133,0.030906984582543373,0.12507331371307373,-0.07914707064628601,-0.023865167051553726,0.018234511837363243,0.035711366683244705,0.038182031363248825,0.015062273479998112,0.008420180529356003,-0.06875313818454742,-0.0002371757582295686,-0.05045474320650101,0.015645325183868408,0.050839826464653015,0.07847271114587784,0.07864818722009659,0.08640964329242706,0.014735807664692402,0.07280848175287247,0.11845777183771133,0.012356710620224476,-0.010278965346515179,-0.0013463724171742797,0.03971245884895325,-0.03580375015735626,-0.046465735882520676,0.1018662378191948,-0.023618437349796295,0.0627899169921875,-0.055357396602630615,-0.04098254069685936,-0.022159449756145477,0.05607017129659653,0.0220187958329916,-0.048499420285224915,0.03365076333284378,0.06352907419204712,-0.05972684174776077,-0.04554930701851845,0.10606725513935089,0.00933628249913454,-0.08998424559831619,-0.023333504796028137,0.133662611246109,0.030515119433403015,-0.026674987748265266,0.04089328646659851,0.06788233667612076,-0.07854427397251129,-0.05808083340525627,0.012625240720808506,-0.11628549546003342,-0.011015784926712513,0.02427023835480213,-0.00565892131999135,0.030919412150979042,-0.0038406578823924065,-0.06148730218410492,0.008015806786715984,0.10960644483566284,0.03181557357311249,0.07519485801458359,-0.007351464591920376,-0.06302808970212936,-0.027014175429940224,-0.10240153968334198,-9.844764453452689e-33,-0.008764596655964851,-0.03689120337367058,0.005802593659609556,0.12264690548181534,0.011284654960036278,0.039749253541231155,-0.10766629874706268,0.05582786351442337,-0.025357093662023544,0.019783541560173035,-0.002767865313217044,-0.010182594880461693,0.06523384153842926,-0.05570998787879944,0.02968563884496689,0.14927467703819275,0.029312189668416977,0.054415781050920486,-0.009081114083528519,-0.07051408290863037,-0.04668590798974037,0.04364452511072159,-0.0286150723695755,-0.047943245619535446,0.010160259902477264,0.01097989734262228,0.10754796862602234,-0.02593008615076542,0.030139334499835968,-0.0037690994795411825,0.07398998737335205,0.022487912327051163,-0.0714457780122757,-0.046464353799819946,0.0260313730686903,0.004588237497955561,0.06194356456398964,-0.002960236044600606,-0.03757832944393158,-0.040794406086206436,-0.06770264357328415,0.03733213618397713,0.1494271159172058,0.1041235625743866,0.06667046248912811,-0.045387983322143555,-0.06658683717250824,-0.01919381134212017,-0.05839427933096886,0.039980385452508926,0.06300755590200424,0.005850607063621283,0.0003658361383713782,-0.042765043675899506,0.0851442962884903,-0.007277913857251406,0.041539065539836884,-0.0018554524285718799,-0.02634771727025509,0.01041231770068407,0.04223080724477768,0.048722319304943085,0.01904057338833809,-0.0005155345425009727,0.04134884476661682,-0.009809314273297787,-0.008873000741004944,0.06463488936424255,-0.04195671156048775,0.04292559251189232,0.029978467151522636,-0.08212460577487946,-0.02959727868437767,-0.025703897699713707,0.0297092292457819,0.026577673852443695,0.021687988191843033,0.03749343380331993,0.00994076021015644,0.06749501079320908,-0.0055809360928833485,0.03512449190020561,-0.01856369525194168,0.006446462124586105,0.009493190795183182,-0.04164890944957733,-0.0009082012693397701,0.06335469335317612,0.05745428800582886,0.009279990568757057,0.0069219814613461494,0.023918023332953453,-0.038584787398576736,-0.0513683445751667,-0.05051104351878166,-3.758488986704833e-8,0.0742863267660141,-0.07352232933044434,-0.01831488311290741,-0.000136471280711703,-0.010574118234217167,-0.004363874439150095,-0.013678372837603092,0.03828065097332001,0.0407479889690876,0.03656682372093201,-0.027755891904234886,0.022421715781092644,0.002241937443614006,0.01886572130024433,0.01709270104765892,0.05275028571486473,0.07158453017473221,-0.025570038706064224,-0.04151112586259842,-0.07529275864362717,0.0450139157474041,-0.022080272436141968,-0.05987688899040222,-0.008093134500086308,-0.03636375442147255,-0.032849110662937164,0.031937457621097565,-0.049003973603248596,-0.04795742407441139,-0.034178536385297775,-0.041198376566171646,0.09152306616306305,0.03176208958029747,-0.06625528633594513,0.027542632073163986,0.08726155757904053,-0.0458565279841423,0.01622137427330017,-0.011793181300163269,0.08143914490938187,0.0009255504701286554,-0.008628916926681995,0.07612314820289612,-0.029750008136034012,0.023487167432904243,-0.02494160272181034,-0.003801572136580944,0.025343716144561768,0.03452564775943756,0.0015134625136852264,-0.12455037236213684,-0.013446945697069168,0.0418446883559227,0.024567898362874985,-0.046712726354599,0.017787685617804527,0.0701645240187645,-0.0020392772275954485,-0.00927652046084404,-0.009861033409833908,0.03549628704786301,0.04289361089468002,-0.0304732583463192,0.04882833734154701]},{"text":"Hic vivum mihi caespitem, hic Verbenas, pueri, ponite turaque Bimi cum patera meri: 15 Mactata veniet lenior hostia.","book":"Homage to Catalonia","chapter":6,"embedding":[-0.0016834804555401206,0.02808332070708275,-0.023809464648365974,0.022483771666884422,-0.11357919126749039,-0.04053152725100517,0.02617291547358036,0.05940929055213928,-0.017286943271756172,0.0426836758852005,0.0691467896103859,-0.07485117018222809,-0.0002621028106659651,-0.06169158220291138,-0.01948852278292179,-0.029961654916405678,0.0173813346773386,0.0879066213965416,0.04303117096424103,0.046419378370046616,0.00977317150682211,-0.043191660195589066,-0.053162701427936554,0.02407625876367092,-0.0673133134841919,0.05514661595225334,-0.03634310141205788,0.05568980425596237,-0.014310536906123161,-0.035825420171022415,-0.010643732734024525,0.08715596050024033,0.14409086108207703,-0.03555206581950188,0.02811046689748764,0.02971801906824112,0.016757819801568985,-0.13583879172801971,-0.0275479294359684,0.0029810385312885046,-0.03437196835875511,-0.042775921523571014,-0.014684326946735382,0.017878534272313118,0.020224198698997498,-0.023223742842674255,0.003639646340161562,0.049417831003665924,-0.013870630413293839,-0.006879826076328754,-0.09263249486684799,0.018010109663009644,-0.03673708066344261,0.040108196437358856,-0.08328311890363693,-0.0369841530919075,0.022270934656262398,-0.1102360263466835,0.04791123420000076,-0.025817980989813805,-0.019050953909754753,0.029247170314192772,-0.08534567803144455,-0.051326777786016464,0.010011429898440838,-0.04494890570640564,-0.005222193896770477,0.017663296312093735,-0.05889572575688362,0.0712774470448494,0.03115461766719818,-0.05938812717795372,-0.06395509093999863,0.08323998749256134,-0.07116237282752991,0.00475550489500165,0.04276268184185028,-0.036285482347011566,0.048913419246673584,-0.050501495599746704,-0.02066865749657154,0.013308295048773289,-0.06292784214019775,0.012578483670949936,0.007993890903890133,-0.019460288807749748,-0.022875916212797165,0.00018016650574281812,0.01068075280636549,0.0322139598429203,-0.03651529923081398,0.0744769349694252,-0.029173601418733597,-0.08494868874549866,0.009863299317657948,-0.03365092724561691,-0.03176587074995041,-0.04301705211400986,0.043379541486501694,0.010392870754003525,-0.005818224512040615,-0.018938632681965828,-0.009392344392836094,0.027669120579957962,-0.10791584104299545,-0.023367920890450478,-0.005010326858609915,-0.02933454141020775,0.1129879429936409,0.05400221422314644,-0.07846289873123169,-0.018220610916614532,-0.04070459306240082,-0.10651601850986481,0.023896045982837677,0.10140600055456161,-0.027975058183073997,-0.0797969326376915,0.07927612215280533,-0.03884448856115341,0.03099917061626911,-0.028625069186091423,-0.01299512293189764,-0.07572814077138901,0.024303685873746872,-0.16285209357738495,0.060224298387765884,1.1947891355018753e-32,-0.005230344366282225,-0.053521960973739624,0.04834796115756035,0.05716024711728096,0.041550613939762115,0.03958204761147499,0.025349361822009087,-0.05488891527056694,0.02649654820561409,-0.04630214720964432,-0.057978540658950806,-0.0473150797188282,0.005235971417278051,-0.03951188176870346,-0.04107053950428963,0.027082474902272224,0.08380374312400818,-0.034965068101882935,-0.02739759534597397,0.03652332350611687,0.0017558466643095016,-0.015974996611475945,0.0709213986992836,-0.005284658167511225,0.0194819588214159,-0.0533643513917923,-0.041132234036922455,-0.04696932062506676,0.02620980516076088,0.03833106905221939,0.10309946537017822,-0.033101461827754974,0.023961123079061508,-0.07668392360210419,0.005203240551054478,-0.042112912982702255,0.027122650295495987,-0.02671295963227749,-0.051270872354507446,0.00965240690857172,-0.010837879031896591,0.012995603494346142,0.053949031978845596,0.006134233437478542,0.07286924123764038,0.019300132989883423,-0.03765151649713516,0.004200704861432314,0.0439058393239975,0.021593043580651283,-0.0072471508756279945,-0.011898314580321312,-0.09162228554487228,0.00017889076843857765,-0.020718064159154892,0.0806371346116066,0.011645407415926456,0.047970179468393326,-0.04254906252026558,-0.009197861887514591,0.04601245000958443,0.017100665718317032,0.026327278465032578,-0.0405043363571167,0.015307922847568989,-0.005300100892782211,-0.009987182915210724,0.012579423375427723,0.06679752469062805,0.08781523257493973,-0.012054921127855778,0.009524415247142315,-0.1083979532122612,0.027218196541070938,-0.020143501460552216,0.01683901809155941,0.013876010663807392,-0.0006942723994143307,0.006760948803275824,0.007830161601305008,-0.07681163400411606,0.021688485518097878,0.04397416114807129,0.03195551037788391,0.06994049996137619,0.0431402325630188,0.007799486164003611,0.020577535033226013,-0.012446507811546326,0.021044157445430756,0.07043144106864929,0.011000395752489567,0.13836097717285156,-0.05517397075891495,-0.0313066765666008,-1.1347592838676704e-32,0.033463407307863235,-0.02608591318130493,-0.11421074718236923,0.029851041734218597,-0.044030800461769104,-0.008298724889755249,-0.07881173491477966,0.010389474220573902,-0.08442019671201706,-0.05867515504360199,-0.028871038928627968,-0.0659734234213829,0.07248402386903763,-0.1123124361038208,-0.05721503123641014,0.1375907063484192,0.08910703659057617,-0.011566276662051678,-0.0501566119492054,-0.021732192486524582,-0.07347921282052994,-0.04084598645567894,0.13023139536380768,-0.025261912494897842,-0.03795569762587547,-0.10449517518281937,0.11419166624546051,-0.013376056216657162,-0.05026688799262047,-0.02418486215174198,0.05779295414686203,-0.02976403757929802,-0.015516878105700016,0.06398482620716095,-0.0035220051649957895,0.050654683262109756,0.08720701187849045,-0.0047711217775940895,0.03889015316963196,0.016498064622282982,-0.017852995544672012,-0.008855094201862812,0.07033582031726837,0.021584661677479744,-0.08575282245874405,0.019538825377821922,-0.058029212057590485,0.006093472242355347,-0.07697002589702606,-0.0021804722491651773,0.0931125357747078,-0.06437544524669647,-0.021037543192505836,0.00009244893590221182,0.006718316115438938,0.01040230318903923,-0.045281145721673965,-0.02836409956216812,0.0017114829970523715,-0.03913286700844765,0.06812068074941635,0.034407760947942734,-0.019350547343492508,-0.04638626426458359,0.06037864089012146,0.020931072533130646,-0.02103961817920208,0.07906430959701538,0.040734101086854935,-0.0033474485389888287,0.03767779469490051,-0.08139552921056747,-0.06199885904788971,0.000018726033886196092,-0.04303573817014694,0.004630699288100004,0.013902445323765278,0.05120980367064476,0.05438931658864021,0.00550037669017911,-0.029122741892933846,-0.03859731927514076,-0.041174788028001785,-0.010536116547882557,0.0021976707503199577,-0.008332820609211922,0.03233345225453377,0.008717584423720837,0.07448725402355194,0.07992012053728104,-0.029681112617254257,0.053667448461055756,0.054893508553504944,-0.04807619750499725,0.002944881096482277,-4.4359946826944e-8,-0.014323563314974308,-0.18010060489177704,-0.05681861937046051,0.031198900192975998,0.0274868942797184,-0.008218231610953808,-0.06424012780189514,-0.0026549934409558773,0.052003052085638046,0.05696704238653183,0.00198364001698792,-0.02803834341466427,-0.028539111837744713,-0.05106622353196144,0.02164640463888645,0.0538763627409935,0.11114068329334259,0.14111749827861786,-0.025250805541872978,-0.043629296123981476,0.0036665028892457485,0.026720670983195305,-0.06169050186872482,0.016612717881798744,-0.012873956002295017,-0.007112567313015461,-0.010707130655646324,-0.03883860632777214,0.010240163654088974,-0.035345934331417084,0.07172110676765442,0.05830307677388191,-0.020703723654150963,-0.06209194287657738,0.006771103013306856,0.08137288689613342,-0.01259689312428236,0.02417154051363468,-0.03101443685591221,-0.0393715463578701,0.03819296136498451,0.027065686881542206,0.010553799569606781,-0.01922297663986683,0.019050147384405136,0.020684169605374336,-0.02405436709523201,-0.013049687258899212,0.015089170075953007,-0.044667407870292664,-0.022762544453144073,0.0178542360663414,0.1444666087627411,0.06570209562778473,-0.034110598266124725,0.042766593396663666,0.10427023470401764,0.006231419742107391,0.04900545999407768,0.005617102142423391,0.0696302056312561,0.0967106893658638,0.006066207308322191,0.04758097976446152]},{"text":"Caecubum et prelo domitam Caleno Tu bibes uvam: mea nec Falernae 10 Temperant vites neque Formiani Pocula colles.","book":"Homage to Catalonia","chapter":6,"embedding":[-0.011793277226388454,0.016758399084210396,-0.04241033270955086,0.036570917814970016,-0.13156217336654663,0.04651038348674774,0.040902990847826004,0.06701097637414932,0.04550755396485329,0.05213165283203125,0.007761369924992323,-0.16639721393585205,0.0006829038029536605,-0.033870186656713486,-0.02540617436170578,-0.07284139096736908,-0.023541046306490898,0.07385043054819107,-0.02128065936267376,0.045855313539505005,0.04112153872847557,0.009093196131289005,-0.0739394947886467,0.048279181122779846,-0.0310232974588871,-0.0019377886783331633,-0.03944632411003113,0.0045600393787026405,0.08030973374843597,-0.00024166594084817916,0.04285209998488426,0.11349864304065704,0.09202894568443298,-0.00007463111978722736,-0.00010986145935021341,-0.03683789446949959,-0.029116610065102577,-0.06979503482580185,0.019037120044231415,0.05522272735834122,-0.05957260727882385,-0.019131068140268326,0.031686894595623016,-0.017382759600877762,-0.02259051986038685,0.05388149991631508,0.0038989989552646875,0.08232337981462479,-0.05630724877119064,0.0009230592404492199,-0.035101961344480515,-0.061583954840898514,-0.03848431631922722,0.06729879975318909,-0.060352813452482224,0.010706394910812378,-0.015291860327124596,-0.061063241213560104,0.0850970670580864,-0.03760280832648277,0.001152117969468236,0.06955273449420929,-0.03970993682742119,0.004238330293446779,-0.037478622049093246,0.03395567834377289,0.027059519663453102,-0.030272167176008224,-0.03968089073896408,0.08436897397041321,0.10028483718633652,0.003062321338802576,0.013928630389273167,0.017656762152910233,-0.049231454730033875,0.07458404451608658,-0.03327668830752373,-0.053141672164201736,0.023258157074451447,-0.09332244098186493,-0.013944461941719055,0.02738659270107746,-0.0034174430184066296,-0.02313578501343727,-0.0011242710752412677,0.012007085606455803,0.0716383308172226,0.040001995861530304,0.0016692782519385219,-0.011906570754945278,-0.0005067356396466494,0.06289581209421158,0.008792553097009659,-0.0189471747726202,-0.06653457880020142,0.07844763249158859,0.005350382998585701,0.052500270307064056,0.06839317828416824,-0.05557087063789368,0.028257941827178,0.009366710670292377,-0.09584492444992065,0.13721273839473724,-0.08473866432905197,-0.10661017149686813,-0.0063564167357981205,-0.06609153747558594,-0.0017123122233897448,0.012436718679964542,-0.06308721005916595,-0.03919142112135887,-0.061526067554950714,-0.10707605630159378,0.036244530230760574,0.010339844040572643,0.04265156760811806,-0.06960097700357437,0.0028148244600743055,-0.02290220744907856,-0.011964313685894012,0.011439541354775429,-0.005027891136705875,-0.00015469193749595433,0.05972359701991081,-0.06221046671271324,0.0701756700873375,1.1005402025048521e-32,-0.026918528601527214,-0.08732417970895767,0.017906950786709785,-0.0061376034282147884,0.02568095177412033,-0.030237749218940735,-0.11026900261640549,-0.07914761453866959,0.047366656363010406,-0.08158019930124283,-0.032800305634737015,0.04912222549319267,-0.038050971925258636,0.034394070506095886,0.0014182000886648893,0.048730894923210144,0.06216973811388016,-0.08353640139102936,0.021316923201084137,-0.023992696776986122,-0.06558456271886826,0.008840628899633884,0.06406432390213013,0.05325736850500107,-0.013857776299118996,0.061196159571409225,0.006289359647780657,-0.012550807558000088,-0.10980971157550812,0.020419323816895485,0.061428338289260864,-0.06004771962761879,-0.053361278027296066,0.01892895996570587,0.017545385286211967,-0.03823713958263397,-0.004011746030300856,0.05928325280547142,-0.027686627581715584,0.026307914406061172,0.04066437482833862,0.014973449520766735,0.09593404084444046,0.016092771664261818,0.1262621134519577,0.0006782861892133951,0.041851334273815155,0.07361584901809692,0.10162901878356934,0.03951316326856613,-0.016973379999399185,0.026017863303422928,0.032355811446905136,-0.04796044901013374,-0.008232422173023224,0.014393986202776432,-0.05682070553302765,0.06860693544149399,-0.06853394955396652,-0.04319963604211807,0.035314664244651794,-0.015133913606405258,0.014514775946736336,0.02225150726735592,-0.0655350461602211,-0.028862321749329567,-0.01899823173880577,0.013981512747704983,0.11925216764211655,-0.015198959037661552,-0.06024123728275299,0.010794684290885925,-0.01943637989461422,0.010209848172962666,0.031501654535532,0.05300552770495415,0.09046953171491623,-0.08985793590545654,-0.07660341262817383,-0.012534448876976967,-0.026313262060284615,0.0009318909724242985,0.010082099586725235,-0.024405179545283318,0.06780295073986053,-0.06936020404100418,-0.007545250002294779,0.07798603177070618,0.05714334174990654,0.06520095467567444,0.07868852466344833,-0.021878493949770927,0.013477930799126625,0.0680309608578682,-0.01014991570264101,-9.731882465627194e-33,0.03789106756448746,-0.04997528716921806,-0.08845334500074387,0.11800756305456161,-0.03185146301984787,0.02926461026072502,-0.05811682343482971,-0.007664074189960957,0.022365840151906013,-0.1027211919426918,-0.023049436509609222,-0.03387083858251572,0.09914307296276093,-0.07713229209184647,-0.0351945236325264,0.02480643428862095,0.0724349170923233,0.058938413858413696,-0.004922776482999325,-0.044011812657117844,-0.08744083344936371,-0.002552432008087635,-0.05810141935944557,-0.12648066878318787,-0.016648489981889725,0.0063982633873820305,0.0370609387755394,-0.021908923983573914,-0.019151490181684494,0.034784674644470215,0.047169603407382965,-0.006229540798813105,-0.0019311486976221204,0.02663290873169899,-0.04361572116613388,-0.007866838946938515,0.15425695478916168,0.016302743926644325,0.02049870975315571,-0.03983096405863762,-0.007840180769562721,0.04765310510993004,0.028213439509272575,-0.01889639161527157,0.006903878413140774,0.006345439702272415,0.021896876394748688,0.011455314233899117,-0.03687073662877083,0.051104169338941574,0.09372548013925552,-0.10488580167293549,-0.014703012071549892,-0.02447049878537655,0.04647107422351837,-0.027478350326418877,-0.028313681483268738,-0.02235342375934124,-0.019644131883978844,0.024470986798405647,0.03378747031092644,0.034782491624355316,0.007403492461889982,-0.03452537581324577,0.019397510215640068,0.01328937616199255,-0.061868637800216675,0.10535234957933426,-0.0031855322886258364,0.053155869245529175,0.11811529844999313,-0.03474767133593559,-0.13170962035655975,-0.06555753201246262,-0.019710401073098183,-0.02774936519563198,0.012316872365772724,0.03178698197007179,-0.0021844494622200727,0.004250846803188324,-0.11810273677110672,0.030531054362654686,-0.06396543234586716,0.014756906777620316,-0.038392722606658936,-0.020041123032569885,0.015173821710050106,-0.0519583597779274,0.021383345127105713,0.020978081971406937,-0.03750814124941826,-0.027376558631658554,0.019096005707979202,-0.046712618321180344,0.012347538955509663,-3.4851261432322644e-8,0.04622059687972069,-0.057962559163570404,-0.02736206166446209,0.010106918402016163,0.09933139383792877,-0.08257638663053513,0.012070203199982643,-0.013469587080180645,0.01900952309370041,0.11149023473262787,0.062195662409067154,0.02507796138525009,0.03744031488895416,0.002732779597863555,-0.004165190272033215,0.03829704597592354,0.0775044858455658,0.003956947475671768,-0.03425867483019829,-0.07637299597263336,0.0031955798622220755,-0.03542790561914444,0.0018273447640240192,-0.04810825735330582,0.001156797748990357,0.017954114824533463,0.01587941125035286,0.013490011915564537,-0.012022897601127625,0.006606788840144873,-0.024788158014416695,0.007889083586633205,-0.021209770813584328,-0.1197502538561821,-0.016875939443707466,0.04858867824077606,-0.026960287243127823,0.06720583885908127,-0.015490702353417873,0.012241091579198837,0.07119865715503693,0.0014311001868918538,-0.00688851997256279,-0.017084689810872078,-0.0001793866977095604,-0.0523359477519989,-0.07191106677055359,0.011134843342006207,0.0073302448727190495,-0.006358277518302202,-0.03020363859832287,0.04919573292136192,0.05537537485361099,0.04076806828379631,-0.08834335952997208,0.0012599638430401683,0.07381173968315125,-0.05389872565865517,-0.0025436740834265947,-0.008534467779099941,0.02568388544023037,0.045211922377347946,-0.0029797249007970095,-0.06218724697828293]},{"text":"Vos laetam fluviis et nemorum coma, 5 Quaecumque aut gelido prominet Algido, Nigris aut Erymanthi Silvis aut viridis Cragi; Vos Tempe totidem tollite laudibus Natalemque, mares, Delon Apollinis 10 Insignemque pharetra Fraternaque umerum lyra.","book":"Homage to Catalonia","chapter":6,"embedding":[0.023291869089007378,0.028953872621059418,-0.015592672862112522,-0.0007012267014943063,-0.08186285942792892,-0.0032557842787355185,0.054541610181331635,0.08217935264110565,0.0357527993619442,0.07024134695529938,0.062297578901052475,-0.08196504414081573,0.0019999979995191097,-0.014671044424176216,-0.08273807168006897,-0.028512969613075256,-0.043475836515426636,0.01991882361471653,-0.08154740929603577,0.07746271044015884,0.06118902564048767,0.030268289148807526,-0.010399253107607365,0.06781076639890671,-0.07507278770208359,-0.05301533639431,-0.08594843745231628,-0.002970198169350624,0.006137199699878693,-0.09886476397514343,-0.047131624072790146,0.04833795130252838,0.010713384486734867,-0.06541035324335098,0.02011357992887497,-0.012618138454854488,-0.043145015835762024,-0.10420092940330505,0.05347926914691925,0.019521430134773254,-0.030307428911328316,-0.04115811735391617,-0.04185288026928902,-0.03377111256122589,0.0103401904925704,0.013403424993157387,-0.019267015159130096,0.0817941352725029,0.08171165734529495,0.05114244669675827,-0.082452192902565,-0.07474521547555923,-0.0575130432844162,0.054900139570236206,-0.08184857666492462,0.015610783360898495,-0.015062328428030014,-0.05881422013044357,-0.03265277296304703,-0.03304114565253258,0.005347300786525011,0.07161551713943481,0.0337270051240921,0.02399466559290886,-0.05886493995785713,0.014735649339854717,-0.04617827385663986,-0.02309221774339676,-0.03829391300678253,0.05686759948730469,0.06362684071063995,-0.08192551136016846,-0.0016134181059896946,0.009169149212539196,-0.0029925184790045023,0.05058285966515541,0.01736101694405079,-0.040787845849990845,-0.004719437565654516,-0.035006165504455566,-0.007240129169076681,-0.021107971668243408,0.029164109379053116,-0.019008174538612366,-0.013923649676144123,-0.016825877130031586,0.008829019032418728,0.019657917320728302,0.07378406077623367,-0.05522053688764572,0.00672244094312191,0.03245371952652931,-0.09240452200174332,-0.022942353039979935,0.0020235260017216206,0.02389357052743435,-0.006135131698101759,-0.031014438718557358,-0.014216814190149307,0.0018548143561929464,-0.03276921808719635,-0.013711039908230305,0.0809452012181282,0.08142276853322983,-0.09220276772975922,-0.004085896536707878,-0.014844425022602081,-0.08273790776729584,-0.013878317549824715,-0.02146180160343647,-0.11820418387651443,-0.07473856210708618,0.037964340299367905,-0.025228701531887054,0.027706000953912735,0.022008689120411873,-0.0570872500538826,-0.14044934511184692,-0.0586879700422287,-0.018033549189567566,0.07534327358007431,-0.036239735782146454,0.01977844350039959,-0.03549402952194214,0.004607083275914192,0.011274988763034344,0.0475752092897892,2.3546293545858655e-32,-0.037431325763463974,-0.09198495000600815,-0.02618538588285446,0.04254357889294624,0.0942990779876709,-0.02113575115799904,-0.1118052527308464,0.0018337960354983807,0.0394420363008976,-0.08733858913183212,-0.06215309351682663,-0.09949969500303268,0.05267387628555298,-0.016127876937389374,-0.03535638004541397,0.047704748809337616,0.1212991401553154,-0.04862721636891365,0.006100509315729141,0.01678784377872944,-0.03662718087434769,0.04818291217088699,0.024710997939109802,-0.05558104068040848,0.022954164072871208,0.055256232619285583,-0.0366969034075737,-0.048401348292827606,-0.050280287861824036,0.04112214222550392,0.04057227447628975,-0.09409172832965851,-0.008923462592065334,-0.04423138126730919,-0.03402797877788544,0.12135248631238937,-0.043889760971069336,0.007050252519547939,-0.08648695796728134,0.0024846307933330536,0.027035962790250778,0.01659867912530899,0.06623388081789017,0.053163766860961914,-0.0020322431810200214,0.000025528346668579616,0.024263639003038406,0.0737825408577919,0.10935227572917938,-0.011421553790569305,0.034085970371961594,0.02190232276916504,-0.07967578619718552,-0.0752815306186676,0.01149964239448309,0.0576610304415226,-0.11137262731790543,-0.029335593804717064,-0.06705349683761597,-0.027428284287452698,0.059887588024139404,-0.06386907398700714,-0.01106139738112688,0.0014348520198836923,0.08684814721345901,-0.008533933199942112,-0.011410506442189217,0.002477481262758374,0.0692131444811821,-0.008734333328902721,-0.11193287372589111,-0.05567988008260727,-0.0037938347086310387,0.06521131843328476,-0.01637852191925049,0.01913706585764885,0.06367480009794235,-0.09747142344713211,-0.03112638369202614,-0.0070016453973948956,-0.05128276348114014,-0.05992751941084862,0.007855531759560108,0.021218901500105858,0.0616459846496582,-0.06797586381435394,0.011511657387018204,0.05461156368255615,0.07535947114229202,0.02733156643807888,0.04445983096957207,0.058360159397125244,0.004346037283539772,-0.02662418782711029,0.009790252894163132,-2.3215797431653215e-32,-0.002546105068176985,-0.01475145947188139,-0.08821045607328415,0.09660277515649796,0.039760444313287735,0.021072112023830414,-0.07986258715391159,0.06865617632865906,-0.03820014372467995,0.007878037169575691,-0.04773486778140068,-0.022898182272911072,0.015812724828720093,-0.09238125383853912,0.03582761064171791,0.05680350214242935,0.08275558799505234,-0.014342555776238441,0.04170628637075424,0.02372785098850727,-0.04407916218042374,-0.005624982062727213,-0.02890639379620552,-0.1097092404961586,-0.016269687563180923,0.08957775682210922,-0.005812264978885651,-0.0450134202837944,-0.03731357678771019,0.04316909238696098,-0.038932960480451584,0.0035549206659197807,0.019863110035657883,-0.015563437715172768,-0.0048600491136312485,0.07820382714271545,0.09516964852809906,-0.03228369727730751,-0.008963203057646751,-0.018047846853733063,0.08962357044219971,0.04620059207081795,0.07548229396343231,-0.03959299996495247,0.061679042875766754,0.007081048097461462,-0.06829380244016647,0.03052436001598835,-0.05697372555732727,-0.004580079577863216,0.09188765287399292,-0.0046869078651070595,0.01412714272737503,-0.033120837062597275,0.09452544152736664,0.007150563411414623,-0.031812865287065506,-0.06055445596575737,0.0037668845616281033,-0.001452531898394227,0.042157404124736786,0.01098168920725584,-0.04628951847553253,-0.05731109157204628,0.03419414907693863,-0.024039875715970993,-0.09414708614349365,0.007660449482500553,-0.044363103806972504,0.03880637139081955,0.06369152665138245,-0.010043061338365078,-0.09984935820102692,-0.006284275092184544,-0.016495898365974426,-0.021634399890899658,-0.053696535527706146,0.011370613239705563,0.019393380731344223,-0.02978893555700779,-0.022725896909832954,-0.02289912849664688,0.010749983601272106,-0.007226812653243542,-0.019235320389270782,-0.10876166820526123,-0.02515997178852558,0.05205449461936951,0.05420469492673874,-0.03303131088614464,0.013419651426374912,-0.07615231722593307,-0.035031113773584366,-0.022988205775618553,0.047907568514347076,-7.425893500112579e-8,0.04201524332165718,-0.02263755165040493,-0.022527795284986496,-0.023686153814196587,0.05109245702624321,-0.012770694680511951,-0.004484969191253185,0.059567827731370926,0.0023875527549535036,0.1331009864807129,0.006883429363369942,0.0759795606136322,-0.0019411237444728613,0.010353362187743187,-0.03136743605136871,0.06022612378001213,0.016619278118014336,0.059874504804611206,-0.07450153678655624,-0.048592016100883484,-0.01147510763257742,-0.01725713722407818,-0.09541627764701843,-0.08699601143598557,0.010149279609322548,-0.007383300922811031,0.018407020717859268,-0.012632026337087154,-0.030896000564098358,-0.07630088180303574,0.008727380074560642,0.04836465045809746,0.011254731565713882,-0.11356402933597565,-0.057639699429273605,0.008714012801647186,0.04175074025988579,0.02257220447063446,0.03504567593336105,-0.029829762876033783,0.016075527295470238,0.0265495702624321,0.026092346757650375,-0.0523870512843132,0.036729130893945694,-0.08140461146831512,0.0054592350497841835,0.027213308960199356,0.0033053667284548283,-0.050002411007881165,-0.02391708828508854,-0.031599659472703934,0.1136179268360138,0.0035887460689991713,-0.059985291212797165,-0.03289750590920448,0.05787001550197601,0.028853952884674072,-0.01698249951004982,0.02526627480983734,0.07852659374475479,0.10010724514722824,0.0812181755900383,-0.05491822212934494]},{"text":"Integer vitae scelerisque purus Non eget Mauris iaculis neque arcu Nec venenatis gravida sagittis, Fusce, pharetra, Sive per Syrtis iter aestuosas, 5 Sive facturus per inhospitalem Caucasum vel quae loca fabulosus Lambit Hydaspes.","book":"Homage to Catalonia","chapter":6,"embedding":[0.03451177477836609,0.04684128239750862,-0.04977475479245186,0.02763388678431511,-0.04924934357404709,0.05506063252687454,0.0643756091594696,0.038852155208587646,0.027717040851712227,0.046962618827819824,0.07356471568346024,-0.11134154349565506,0.02644895389676094,-0.017897959798574448,-0.11920934170484543,-0.1349572092294693,-0.007469340693205595,0.03357602283358574,0.03451838716864586,-0.008374318480491638,0.018028242513537407,0.010316540487110615,-0.05603298544883728,0.06933053582906723,-0.07209701836109161,0.024534588679671288,-0.11960272490978241,-0.057418495416641235,0.026178857311606407,-0.07936380058526993,-0.025149546563625336,0.034643106162548065,0.14001184701919556,-0.032628096640110016,0.039631523191928864,-0.008826037868857384,-0.02046087756752968,0.007794731296598911,0.03984283283352852,0.09793028980493546,-0.0695071741938591,-0.041141949594020844,-0.014605091884732246,-0.004708724562078714,0.009996101260185242,-0.028677305206656456,-0.054769862443208694,0.04888925701379776,0.007601027376949787,0.0565464161336422,-0.07545701414346695,-0.006296771578490734,-0.06984464824199677,0.015601227059960365,-0.0594748854637146,-0.06332974135875702,-0.02595800906419754,-0.03727353364229202,-0.02231377363204956,-0.05798274278640747,0.0020703745540231466,0.06948854774236679,-0.009104423224925995,-0.023059098049998283,0.0034184593241661787,0.005023021716624498,-0.044151727110147476,0.003457634011283517,-0.027654428035020828,0.06630261987447739,0.07625407725572586,-0.01903422176837921,-0.005446826573461294,0.07830574363470078,-0.02590007893741131,0.08164789527654648,0.07637445628643036,-0.04771428182721138,0.039686866104602814,-0.01997142843902111,-0.05148735269904137,-0.01570906490087509,-0.08294559270143509,0.025538664311170578,0.06686804443597794,-0.0011360590578988194,-0.030823349952697754,0.032310519367456436,0.03132180497050285,-0.02672865428030491,0.03826967254281044,0.026987051591277122,0.0011112530482932925,-0.0336344875395298,0.032150451093912125,0.030378861352801323,-0.0850803554058075,-0.050051216036081314,-0.0149728674441576,-0.03412489965558052,-0.007372681517153978,-0.040695223957300186,0.06827588379383087,0.07933676987886429,-0.07828008383512497,-0.026326753199100494,-0.012104199267923832,-0.07740096002817154,0.050536926835775375,0.02285163849592209,-0.09263627976179123,-0.04223141446709633,-0.023374581709504128,-0.06644637882709503,0.051708824932575226,-0.0006320825195871294,0.024069489911198616,-0.11173932999372482,0.01387623231858015,-0.03701922297477722,0.026300547644495964,0.000784988165833056,0.04119321331381798,-0.003329038852825761,-0.04674004018306732,-0.025258425623178482,0.0745592936873436,2.1479073588606396e-32,-0.1017008125782013,-0.04312841221690178,0.005565577186644077,-0.022455386817455292,-0.021162908524274826,-0.051850590854883194,-0.029136814177036285,-0.022230012342333794,0.08463375270366669,-0.03175261244177818,-0.10571269690990448,0.021474260836839676,0.03752848505973816,0.045914653688669205,0.02050979807972908,0.03726157918572426,0.143583282828331,-0.07277640700340271,0.0179323460906744,-0.049515221267938614,-0.02802828885614872,0.010929533280432224,0.020895706489682198,-0.00556110730394721,0.08282124251127243,-0.011222105473279953,-0.03063170611858368,-0.04716295376420021,-0.010052957572042942,0.020595604553818703,0.081257663667202,-0.03553289547562599,-0.03126049414277077,-0.08369815349578857,-0.03221294656395912,0.022805480286478996,0.019811389967799187,0.016896914690732956,-0.030783552676439285,-0.0028203921392560005,0.023081710562109947,0.05226162448525429,0.12287244200706482,0.06294072419404984,0.06939851492643356,0.03635093569755554,0.026202505454421043,0.07861204445362091,0.05213319882750511,0.01344300340861082,-0.027132902294397354,-0.017524760216474533,-0.031836625188589096,-0.050948258489370346,-0.007500070612877607,0.019612377509474754,-0.008622599765658379,0.05759201571345329,-0.07230830192565918,-0.014943388290703297,0.0158394705504179,-0.04616310074925423,0.03973119333386421,-0.08700330555438995,0.0145236412063241,-0.05077115446329117,-0.06428651511669159,-0.037084709852933884,0.06569092720746994,0.029687268659472466,-0.099288709461689,-0.011791395954787731,-0.029305629432201385,0.006885011214762926,-0.010082659311592579,-0.016742747277021408,0.012179581448435783,-0.03268786519765854,-0.04708613082766533,0.046507757157087326,-0.056354012340307236,0.007517652586102486,0.01703108847141266,0.027013350278139114,0.10864023864269257,0.036238670349121094,-0.031399454921483994,0.022780779749155045,0.12894786894321442,0.018285585567355156,0.04798420891165733,0.011952687986195087,0.029042402282357216,0.006298404186964035,0.000299681443721056,-1.9436511094730572e-32,-0.10141795873641968,-0.028206296265125275,-0.0752803161740303,0.1104053482413292,-0.053782764822244644,0.0535394586622715,-0.039356376975774765,0.0752987340092659,0.029213927686214447,-0.0371965691447258,-0.014685812406241894,-0.04577232897281647,0.033899664878845215,-0.07334108650684357,-0.04524262994527817,0.11130129545927048,-0.03269452229142189,0.038190510123968124,0.026718052104115486,0.01779952086508274,-0.038165383040905,0.06918139010667801,-0.002431616885587573,-0.01118402648717165,0.03919696807861328,0.0465078167617321,0.028400644659996033,-0.07536211609840393,-0.04095923900604248,-0.02702043019235134,0.0498322956264019,-0.02662145532667637,-0.08370953053236008,0.03417423740029335,-0.07285740971565247,-0.07703851908445358,0.08847960829734802,-0.022892499342560768,-0.07210579514503479,0.05052110552787781,0.04669798165559769,0.05492011457681656,0.13116654753684998,-0.01616751402616501,-0.0159685630351305,0.025482280179858208,0.012798069976270199,0.004085768945515156,-0.01568623073399067,0.02537883259356022,0.09848054498434067,-0.05922814458608627,-0.07130792737007141,0.040136463940143585,0.10832201689481735,-0.03267420083284378,-0.03794780746102333,0.00878321286290884,-0.028723247349262238,-0.06506659835577011,0.07625800371170044,0.0039234585128724575,-0.025066234171390533,-0.11640524864196777,0.06500890105962753,-0.029911281540989876,-0.053263962268829346,0.06345628201961517,-0.04006042703986168,-0.0341491736471653,0.08826766163110733,-0.0816410481929779,-0.09377462416887283,-0.07027173042297363,-0.0634758472442627,-0.024506347253918648,-0.03648539260029793,0.04797739163041115,0.05655510351061821,-0.02488487772643566,-0.020229779183864594,-0.013344104401767254,0.013018990866839886,0.024744031950831413,-0.04110075905919075,-0.060346491634845734,-0.007938611321151257,-0.0017546757590025663,0.035707805305719376,0.03764018043875694,-0.06798965483903885,0.005131858866661787,0.05067310482263565,-0.018242625519633293,0.005189727526158094,-6.064534829874901e-8,0.05894465744495392,-0.07155156880617142,-0.07800617069005966,0.00863827858120203,-0.021516935899853706,-0.018875349313020706,-0.07724069803953171,-0.038285817950963974,0.07206922024488449,0.07352106273174286,-0.01673213765025139,0.000866084301378578,0.012169713154435158,0.00320396083407104,0.008495748974382877,0.025192420929670334,0.10324470698833466,0.09226815402507782,-0.02434663474559784,-0.07190157473087311,0.02771170623600483,0.033211153000593185,-0.08119846135377884,-0.003836131887510419,0.01421292219310999,-0.011795208789408207,0.020479794591665268,-0.03118773363530636,0.043899036943912506,0.013009980320930481,-0.009671520441770554,-0.0008470808388665318,-0.006882752291858196,-0.08989342302083969,0.02641667239367962,0.07164055854082108,-0.002831223653629422,0.0195193849503994,0.02345450408756733,0.028799621388316154,0.03134460002183914,0.023149296641349792,0.02106422744691372,-0.019948119297623634,-0.036959290504455566,-0.05272117629647255,-0.020670834928750992,-0.0010377889266237617,0.011085771955549717,-0.0330314040184021,-0.08087015151977539,-0.038717273622751236,0.07008698582649231,0.054071180522441864,-0.034656766802072525,-0.08544273674488068,0.05949249863624573,-0.07353076338768005,0.022528572008013725,-0.019510796293616295,0.0989375039935112,0.025803741067647934,0.004778167698532343,0.015140900388360023]},{"text":"Pone me pigris ubi nulla campis Arbor aestiva recreatur aura, Quod latus mundi nebulae malusque Iuppiter urget; 20 Pone sub curru nimium propinqui Solis in terra domibus negata: Dulce ridentem Lalagen amabo, Dulce loquentem.","book":"Homage to Catalonia","chapter":7,"embedding":[0.01917112246155739,0.041176412254571915,0.09640723466873169,-0.03140728548169136,-0.08088000118732452,-0.06841269135475159,0.04591035842895508,-0.011851007118821144,-0.01147383451461792,0.026823358610272408,0.024006342515349388,-0.14482714235782623,-0.02388089895248413,-0.05725159868597984,-0.07542598992586136,0.01384843047708273,0.008142489939928055,0.047569215297698975,0.008704244159162045,0.04898703470826149,0.06831927597522736,0.018182678148150444,-0.0946158841252327,-0.016150247305631638,-0.052405305206775665,0.008303418755531311,-0.06318719685077667,-0.046578798443078995,0.034280695021152496,-0.064197838306427,0.02017737366259098,0.11119221895933151,0.040274638682603836,-0.015943998470902443,0.03356798738241196,0.0427933894097805,-0.022974170744419098,-0.07192541658878326,0.04080707207322121,0.05297725647687912,-0.0050721243023872375,-0.05248764529824257,0.010328791104257107,-0.012257025577127934,-0.0629911795258522,-0.03695324808359146,-0.00043081550393253565,-0.00762401195243001,0.027907246723771095,-0.022738544270396233,-0.08421455323696136,-0.08112595975399017,-0.09793096035718918,0.025675972923636436,0.050742365419864655,-0.026821259409189224,-0.00543957157060504,-0.09806124120950699,0.07601398229598999,-0.0659804493188858,0.043387413024902344,0.04953916743397713,-0.06477399915456772,-0.016925329342484474,0.08130792528390884,-0.00545460032299161,-0.0816451758146286,0.012469688430428505,-0.06624652445316315,-0.00003070204547839239,0.11016911268234253,-0.010393010452389717,-0.04522247985005379,0.02838141657412052,-0.104828841984272,0.030480695888400078,0.019060570746660233,-0.001375871361233294,0.0554240420460701,-0.07880644500255585,-0.029956281185150146,0.09574277698993683,0.07332629710435867,0.01255765650421381,-0.09831289201974869,-0.023534568026661873,-0.048104897141456604,0.011702055111527443,0.04544343799352646,-0.08663064241409302,0.05889512225985527,-0.004176275804638863,-0.10264552384614944,0.013575483113527298,-0.058585409075021744,0.05928627401590347,0.009029116481542587,-0.00840123649686575,0.006867850665003061,0.02381325699388981,0.09038163721561432,0.04788665100932121,-0.016899289563298225,0.007547060027718544,-0.14417997002601624,-0.06291305273771286,-0.024849506095051765,-0.05741981044411659,0.0057533481158316135,0.07968070358037949,-0.1030455231666565,-0.053129345178604126,-0.09153996407985687,-0.03891689330339432,0.004804970230907202,-0.0034889604430645704,0.008745912462472916,-0.007922057062387466,-0.07086504250764847,-0.045956313610076904,-0.011756222695112228,-0.027398014441132545,0.028354279696941376,0.03122895583510399,0.04441826418042183,-0.050692129880189896,0.03715400770306587,2.1246096485745172e-32,0.057252559810876846,-0.08024471998214722,0.022684192284941673,0.027037976309657097,0.10472925007343292,-0.059073757380247116,-0.11524038761854172,-0.05965650454163551,-0.01584703102707863,-0.06628641486167908,-0.06742934882640839,-0.03171603009104729,-0.09130673110485077,-0.025171378627419472,0.02048039808869362,0.04006229713559151,0.014157264493405819,-0.08706605434417725,-0.007489615585654974,-0.016669677570462227,-0.06551454216241837,0.01117715984582901,-0.013445018790662289,-0.042141035199165344,0.00400989456102252,-0.0019247957970947027,0.004088463727384806,-0.11983494460582733,-0.03953906521201134,0.040756672620773315,0.1143048107624054,0.019999824464321136,-0.04001455754041672,-0.0007181451073847711,-0.03146820515394211,-0.016916310414671898,-0.04786159470677376,0.06297288835048676,-0.021513251587748528,-0.02788395993411541,0.012269663624465466,-0.0032747210934758186,0.01921822503209114,0.02253280021250248,0.11955194175243378,-0.005710345692932606,0.057447969913482666,0.029796797782182693,0.08923336118459702,0.028310539200901985,0.015475585125386715,0.041684381663799286,-0.06726530194282532,-0.04083796590566635,0.02332966774702072,0.08817935734987259,0.04913690313696861,0.05046067386865616,-0.03493841364979744,0.04608229547739029,0.01281701773405075,-0.03517303615808487,0.08491948246955872,0.013392829336225986,-0.011382197961211205,0.02445349469780922,0.003746276255697012,0.017209388315677643,0.015628769993782043,-0.0011247277725487947,-0.10020266473293304,-0.06668252497911453,0.015762347728013992,0.02432260289788246,-0.04392785578966141,-0.03712517395615578,0.05771259590983391,-0.04327462241053581,-0.046200238168239594,-0.005367226433008909,-0.09559425711631775,-0.061051055788993835,-0.029718898236751556,0.004541441798210144,0.05694497004151344,-0.05304533988237381,0.014850001782178879,0.04174710065126419,0.05538281053304672,-0.0239891204982996,0.08345646411180496,0.05314312502741814,-0.018454210832715034,-0.08577504754066467,-0.006946923676878214,-2.0039846794601558e-32,-0.014595473185181618,-0.04593837633728981,-0.08110874146223068,0.05344320833683014,-0.021249176934361458,-0.018909165635704994,-0.1046583354473114,0.058412324637174606,-0.041640833020210266,0.017823820933699608,-0.0928029790520668,0.0524679459631443,0.010545900091528893,-0.10888253897428513,-0.0263132993131876,0.05986960977315903,0.09481638669967651,0.04902968928217888,-0.053972795605659485,-0.034780167043209076,-0.008080467581748962,-0.01858912594616413,-0.009593399241566658,-0.06895975023508072,0.0177935678511858,0.019068550318479538,0.04147923365235329,0.03772640973329544,-0.0042911069467663765,-0.006870575249195099,0.04394199699163437,0.021029116585850716,-0.0175023153424263,0.009732161648571491,-0.04091782495379448,-0.034934476017951965,0.11697106063365936,-0.04745810851454735,-0.041621193289756775,-0.014889780431985855,-0.011465230025351048,0.07113558053970337,0.03733072802424431,0.02138032577931881,-0.0014010393060743809,-0.03277520835399628,-0.029857341200113297,0.03603760898113251,-0.06782512366771698,0.014968739822506905,0.08189089596271515,-0.05283844843506813,0.07080115377902985,-0.0020744414068758488,0.02954893186688423,-0.0024962262250483036,-0.002395808696746826,0.04028509557247162,-0.014705389738082886,-0.047580063343048096,0.01793748326599598,0.04549170657992363,-0.03051329217851162,0.008487928658723831,0.008837432600557804,-0.03632855787873268,0.002699424047023058,0.0820218175649643,-0.052643246948719025,0.06164667755365372,0.036012109369039536,-0.03638121485710144,-0.1226939931511879,-0.0136874970048666,0.06936556100845337,0.08060380816459656,0.019499029964208603,0.020382020622491837,0.015012499876320362,-0.03165034204721451,-0.04876859858632088,0.054280783981084824,0.024924959987401962,-0.039235908538103104,0.0647091493010521,0.012330709025263786,0.031477440148591995,0.019499467685818672,-0.0014528121100738645,0.02946380153298378,0.030051372945308685,-0.016021650284528732,-0.023091314360499382,-0.001029321225360036,-0.004717415198683739,-6.414871478455098e-8,0.02985260635614395,-0.04260871931910515,-0.031239032745361328,0.022800900042057037,0.06978330761194229,-0.06364314258098602,0.04619285836815834,0.08657951653003693,0.0013429003302007914,0.08700306713581085,0.002356654964387417,0.010550347156822681,0.018756797537207603,0.037482816725969315,0.05632995814085007,0.0049250866286456585,0.11040515452623367,-0.040461111813783646,-0.07613431662321091,-0.020706215873360634,0.07506880164146423,0.043878182768821716,-0.03346945717930794,-0.004928371869027615,-0.01442223135381937,0.027428409084677696,0.02185436524450779,-0.020311100408434868,-0.014341958798468113,-0.0498613603413105,-0.0022267610765993595,0.06396861374378204,-0.03298479691147804,-0.11701586842536926,-0.001259277923963964,0.12373554706573486,0.027295004576444626,-0.021534370258450508,0.02597268857061863,-0.03262820839881897,0.02823442593216896,-0.007844367995858192,0.08622099459171295,-0.04651222750544548,0.00671775545924902,0.019622644409537315,-0.011535784229636192,-0.04196760803461075,0.06325596570968628,0.005758450832217932,-0.039808448404073715,-0.002985182451084256,0.08555508404970169,-0.07897517830133438,-0.066897451877594,0.015918897464871407,-0.053965628147125244,0.0421011745929718,0.03608275577425957,0.013459890149533749,0.0817398726940155,0.010635150596499443,-0.061273347586393356,-0.027757789939641953]},{"text":"Nam seu mobilibus veris inhorruit 5 Adventus foliis, seu virides rubum Dimovere lacertae, Et corde et genibus tremit.","book":"Homage to Catalonia","chapter":7,"embedding":[-0.0830504298210144,0.01437821052968502,-0.049091994762420654,0.0039000671822577715,-0.009299367666244507,-0.0014249359956011176,-0.018710732460021973,0.07914450019598007,-0.04669041931629181,0.01991027034819126,0.09403855353593826,-0.028591953217983246,-0.035206761211156845,-0.03469057008624077,-0.031735826283693314,-0.05024855211377144,-0.02238766849040985,0.07775716483592987,-0.07591953128576279,-0.014273112639784813,0.10909700393676758,0.023541487753391266,0.011942274868488312,0.04488607496023178,-0.09880708903074265,0.019831426441669464,-0.03221425414085388,-0.03422088176012039,0.03921087086200714,-0.08977319300174713,0.006229149643331766,0.13168643414974213,0.04790538549423218,-0.029133109375834465,-0.04214208573102951,0.017333893105387688,-0.07462044805288315,-0.06847034394741058,0.05977591127157211,0.038388386368751526,-0.02374166063964367,-0.04517924040555954,0.0026428333949297667,-0.05685580149292946,-0.04146882891654968,-0.013364876620471478,0.03250043839216232,0.07332690805196762,0.07655518501996994,0.06662954390048981,-0.07359305769205093,0.019379526376724243,-0.07106181979179382,0.01287065725773573,-0.05339647829532623,-0.06728461384773254,0.06846702098846436,-0.05423438921570778,-0.011043310165405273,-0.005319488234817982,0.0999554991722107,0.026242434978485107,-0.04083065688610077,0.01233639195561409,-0.07304041087627411,-0.0003647404082585126,-0.04316333681344986,-0.026221411302685738,-0.06785745173692703,-0.019112661480903625,0.07291623204946518,-0.0443192720413208,-0.0005672468687407672,0.10414683073759079,-0.09845512360334396,0.08008825778961182,-0.004996794741600752,-0.028642036020755768,-0.0033164378255605698,-0.04203939437866211,-0.044632188975811005,0.0355168879032135,0.03613768145442009,0.025586528703570366,-0.001860228949226439,0.06528382003307343,0.030760694295167923,-0.0302830021828413,-0.01666412129998207,0.03740144520998001,0.0025784270837903023,0.06951005756855011,-0.04887545853853226,-0.012793054804205894,-0.041853129863739014,0.053009096533060074,-0.05700512230396271,-0.054277703166007996,-0.03974829986691475,0.00926419161260128,-0.01072268933057785,-0.03133934363722801,-0.04699822887778282,0.04269733652472496,-0.13767081499099731,-0.0519353412091732,-0.050227005034685135,-0.06267954409122467,-0.0019743316806852818,0.024285800755023956,-0.02900342270731926,-0.03350512310862541,-0.0377514585852623,-0.06853815168142319,-0.021204981952905655,0.005071147345006466,0.016508104279637337,-0.0053163995034992695,-0.03333467245101929,-0.0014992818469181657,0.07252006977796555,-0.021077634766697884,0.03661276772618294,-0.025538507848978043,-0.009817459620535374,-0.05733378604054451,0.048033494502305984,1.2903316265635815e-32,-0.05049724876880646,-0.06916949152946472,-0.059793539345264435,0.00680907629430294,-0.05285809189081192,-0.030269188806414604,-0.09631015360355377,-0.033991094678640366,0.013619482517242432,-0.018093712627887726,-0.12849701941013336,-0.022767791524529457,0.003771693678572774,0.04579351842403412,0.031161034479737282,-0.014675430953502655,0.11009583622217178,-0.07878927141427994,0.05057140067219734,-0.03133142739534378,0.003907451406121254,0.03858320787549019,0.054557766765356064,-0.019632644951343536,0.050354886800050735,0.02421378716826439,0.04583768919110298,-0.07732073962688446,0.03961147740483284,0.029199143871665,0.09079291671514511,-0.05353919044137001,-0.03395867720246315,-0.017549235373735428,-0.030629025772213936,-0.006572352256625891,0.007933663204312325,-0.0020479378290474415,-0.08853092789649963,0.062282633036375046,0.06989838182926178,0.03567299619317055,0.028913848102092743,0.011546161025762558,0.04561522230505943,0.03718395531177521,-0.013013849034905434,0.039073605090379715,0.0775754302740097,0.008181666024029255,-0.023742172867059708,0.05563937500119209,0.08986080437898636,-0.025036098435521126,0.019430402666330338,-0.04770762100815773,-0.03739362582564354,0.0232495479285717,-0.07253938168287277,-0.01644517295062542,0.027603186666965485,-0.02023092284798622,0.04285123571753502,-0.020306626334786415,0.0034734001383185387,0.018548907712101936,-0.02152036875486374,0.015986435115337372,0.07121335715055466,-0.0539676770567894,-0.08025582134723663,0.012087256647646427,-0.013248872011899948,0.06422442942857742,-0.06025722622871399,0.030478347092866898,0.0376422181725502,-0.012960951775312424,-0.068574920296669,-0.002215862274169922,-0.1319112628698349,0.022972717881202698,0.05933915823698044,-0.02050100639462471,0.06849842518568039,0.013180955313146114,0.000014675426427857019,0.029526395723223686,0.06386816501617432,0.014687992632389069,0.02445235662162304,-0.008881314657628536,-0.014101189561188221,0.04765370488166809,0.019408393651247025,-1.1931161866354644e-32,-0.024972952902317047,-0.018959131091833115,-0.04250621423125267,0.07999002933502197,-0.0274188332259655,0.015861542895436287,-0.11337288469076157,0.0528407022356987,-0.061781372874975204,-0.026725945994257927,-0.05014393851161003,0.023525172844529152,0.07310657948255539,-0.07606946676969528,0.01503456849604845,0.040439993143081665,0.0342990942299366,0.04345700889825821,-0.0037412734236568213,-0.016442276537418365,-0.12715329229831696,0.08207707852125168,0.06036888808012009,-0.08219855278730392,-0.0026881354860961437,0.04728636518120766,0.013165268115699291,-0.08943507075309753,-0.09838970005512238,0.03691312298178673,0.10127443820238113,-0.027114754542708397,-0.0250394269824028,0.10188844799995422,0.0044889897108078,0.06398554146289825,0.12297271192073822,-0.062399059534072876,0.018934957683086395,0.007568422704935074,0.018718747422099113,0.09280160069465637,0.10731351375579834,0.02470208890736103,-0.02324288710951805,-0.09027517586946487,-0.12092281132936478,0.0569300577044487,-0.06504914164543152,0.019532697275280952,0.09346765279769897,0.03359518200159073,0.0005060508265160024,-0.06770224869251251,0.06809936463832855,-0.041330691426992416,0.036085426807403564,-0.008317966014146805,-0.04349250718951225,0.05161575973033905,0.028301842510700226,-0.05758196860551834,0.002719967160373926,-0.06919411569833755,0.08756616711616516,0.06364981085062027,-0.013798464089632034,0.058618608862161636,0.00498570129275322,0.05209290236234665,0.06817693263292313,-0.004961646161973476,-0.08271928876638412,0.003810382215306163,0.04497817903757095,0.017873520031571388,0.03448202461004257,0.028033163398504257,-0.01007020939141512,0.02762826532125473,-0.050727229565382004,-0.05617668479681015,-0.06499653309583664,-0.0239788219332695,-0.043605487793684006,-0.05309450998902321,-0.003395137144252658,0.0338020883500576,0.09215303510427475,-0.00465532997623086,-0.03688610717654228,-0.058566778898239136,0.014144844375550747,-0.018285544589161873,0.09357741475105286,-4.2437488190216754e-8,0.02898336760699749,0.0008031749166548252,-0.0027741745579987764,0.05475354194641113,0.04129340127110481,-0.029042568057775497,0.005567379295825958,-0.014067384414374828,0.023663775995373726,0.021713508293032646,-0.04721395671367645,0.07074616849422455,-0.005147057585418224,0.049885813146829605,0.028354015201330185,-0.01901465281844139,0.023421812802553177,0.09175626188516617,-0.02656671404838562,-0.018922658637166023,0.08024229109287262,-0.05402158200740814,-0.06628670543432236,-0.010843013413250446,-0.055141132324934006,-0.09268791973590851,-0.009219739586114883,-0.11934410780668259,0.010245324112474918,0.04295540973544121,0.05054563283920288,0.01858600787818432,0.03708093613386154,-0.06509481370449066,-0.0241207554936409,0.04695180058479309,0.020373350009322166,0.054394181817770004,0.03373106196522713,0.07670674473047256,0.02056235447525978,-0.07842942327260971,0.046042438596487045,-0.05512264743447304,-0.02553330734372139,-0.06740137189626694,0.04583404213190079,0.04141713306307793,-0.025163358077406883,-0.018184667453169823,-0.0631268247961998,0.02989283576607704,0.07303909957408905,0.005628667771816254,-0.042194195091724396,-0.04808102175593376,0.08029951900243759,0.030367976054549217,0.05958178639411926,-0.019037654623389244,-0.03989311307668686,0.014124314300715923,0.010883370414376259,-0.02172745391726494]},{"text":"Quis desiderio sit pudor aut modus Tam cari capitis?","book":"Homage to Catalonia","chapter":7,"embedding":[-0.09162583202123642,0.06754378229379654,0.009193425066769123,-0.011657854542136192,-0.047687042504549026,-0.008460713550448418,0.10341723263263702,0.1054498702287674,-0.019588949158787727,0.008813667111098766,0.07295224070549011,-0.1159568652510643,0.04856661334633827,0.006780521012842655,-0.10279764980077744,-0.11855146288871765,-0.09964922815561295,0.06735008955001831,0.04407409578561783,0.026746446266770363,0.03695240616798401,0.043960269540548325,-0.07972411811351776,0.05513875186443329,-0.06394592672586441,0.02557954378426075,0.03542742133140564,0.007114937994629145,-0.020884724333882332,-0.064048632979393,-0.03590300306677818,0.018439412117004395,0.06253215670585632,-0.10583721101284027,-0.03228503465652466,0.0050033568404614925,-0.0055413274094462395,-0.08897900581359863,0.10954830050468445,-0.020144537091255188,-0.09768199175596237,-0.012333637103438377,-0.032849401235580444,-0.049023643136024475,0.05720670893788338,-0.07542777806520462,0.03010622039437294,0.10060552507638931,0.03338068723678589,-0.03571074455976486,-0.02628759853541851,0.01217843871563673,0.07227325439453125,-0.021577564999461174,-0.05193360149860382,-0.018084317445755005,-0.02650575526058674,-0.005516417324542999,0.007409531623125076,0.018244892358779907,0.019783470779657364,-0.037091996520757675,-0.04237035661935806,0.023898212239146233,0.025370638817548752,-0.010098203085362911,0.04752526059746742,-0.044141314923763275,-0.03278665989637375,0.06918077170848846,0.03439520671963692,-0.038394853472709656,0.031229577958583832,-0.03879805654287338,-0.0341348722577095,0.025497853755950928,-0.05904212221503258,-0.023494567722082138,-0.00805085338652134,0.009729476645588875,0.015101983211934566,-0.02075042948126793,0.06227777898311615,0.04124021157622337,-0.012995644472539425,0.0032170070335268974,-0.007146941497921944,-0.026297416538000107,-0.032352425158023834,-0.020806575194001198,0.002951378468424082,0.05161725729703903,-0.07905178517103195,-0.011684156954288483,-0.037986960262060165,0.03547564521431923,0.01824836991727352,-0.031258441507816315,0.05429614707827568,0.07097326219081879,-0.003809154499322176,0.0013793299440294504,-0.025726934894919395,0.04459122195839882,-0.002521672286093235,-0.0015697279013693333,0.025554414838552475,-0.14438185095787048,-0.011384489946067333,0.01429894007742405,-0.08959057182073593,-0.04977806657552719,-0.10198065638542175,-0.09642091393470764,-0.051551055163145065,0.06221655011177063,0.06608507037162781,-0.09552200883626938,-0.013691396452486515,-0.06272626668214798,0.028735164552927017,-0.044706981629133224,-0.06362863630056381,-0.059743646532297134,0.05784640088677406,-0.04243382811546326,-0.013643303886055946,2.0052903230761332e-33,-0.06697625666856766,-0.043543048202991486,0.00029872244340367615,-0.0051126498728990555,0.07906043529510498,0.014689353294670582,-0.08659196645021439,-0.015327166765928268,-0.03628471493721008,-0.01596130058169365,-0.08191191405057907,-0.011773360893130302,0.009482395835220814,-0.036844123154878616,0.10927692800760269,0.006897112354636192,0.052332788705825806,-0.011221618391573429,0.000507549149915576,-0.08819104731082916,-0.04862123727798462,0.04207655042409897,0.032775674015283585,0.040341563522815704,0.06388408690690994,0.06918766349554062,-0.002776741748675704,-0.05879826843738556,0.03225250914692879,0.03320400416851044,0.0586358979344368,0.06222439929842949,-0.02384483814239502,-0.0017726735677570105,-0.025037605315446854,0.018671490252017975,-0.015424326062202454,-0.0038637055549770594,-0.014983365312218666,0.004379193764179945,0.08292747288942337,0.0679582729935646,0.011634919792413712,-0.05458559840917587,-0.029279636219143867,-0.005076311063021421,-0.030861781910061836,-0.008237618021667004,0.017207937315106392,0.01116633415222168,-0.012097924947738647,0.010999400168657303,-0.06629449874162674,-0.061360083520412445,0.04440571367740631,0.01069667935371399,-0.03392575681209564,0.060384128242731094,-0.01993967406451702,0.07530631870031357,0.10517013072967529,-0.060871921479701996,0.018455391749739647,-0.03384687379002571,0.007149007171392441,0.047528065741062164,-0.0068926140666007996,0.05123306065797806,0.09198084473609924,0.009753336198627949,-0.07265383005142212,0.010501201264560223,-0.0835874006152153,0.056108683347702026,-0.07785425335168839,0.03581931069493294,0.016342053189873695,0.04315023496747017,-0.045031629502773285,-0.014816265553236008,-0.07075854390859604,0.03340553864836693,0.06610091775655746,-0.010339084081351757,0.092227503657341,-0.004477311857044697,-0.046089451760053635,0.08394323289394379,0.010860701091587543,0.06414078176021576,-0.011354590766131878,0.07667768746614456,0.052153054624795914,0.006802306976169348,-0.01801905781030655,-4.092371910424466e-33,-0.04271252825856209,-0.040638260543346405,-0.06938596069812775,0.06269745528697968,-0.023402778431773186,0.037738557904958725,-0.0637250691652298,0.05036655440926552,0.05073314160108566,-0.03479376062750816,-0.03229305520653725,-0.0013751102378591895,0.06732653826475143,0.03048340231180191,-0.07171811163425446,0.13867837190628052,-0.005560059566050768,-0.004652020521461964,-0.0961618423461914,-0.05424226447939873,-0.001830156659707427,0.04112517088651657,0.053592499345541,-0.03045816347002983,-0.018877021968364716,-0.05483671650290489,0.010625509545207024,-0.021639524027705193,-0.08147872984409332,0.005521947052329779,0.021879196166992188,-0.03229440748691559,-0.049602631479501724,0.05759589746594429,-0.009464566595852375,0.03835608810186386,0.0503375306725502,0.012689609080553055,-0.0012505562044680119,0.0884125754237175,0.010527752339839935,-0.04072079807519913,0.08851902186870575,0.01868451200425625,0.06130150705575943,-0.0443568229675293,-0.020894909277558327,-0.08092980086803436,-0.07807017862796783,-0.05122556909918785,0.0653228610754013,-0.0028282382991164923,0.0441870354115963,0.013571378774940968,0.03154149651527405,-0.006095930002629757,0.028187863528728485,-0.04914889112114906,-0.07646319270133972,0.006108209490776062,0.12811127305030823,0.005688566714525223,-0.09588952362537384,-0.02484501339495182,0.0340176597237587,-0.056470837444067,-0.07455936819314957,-0.05151454359292984,0.04415339604020119,-0.010188903659582138,0.08217570185661316,-0.1299174726009369,-0.03217526152729988,0.038944803178310394,-0.11300373822450638,0.03311443701386452,-0.023967446759343147,0.058520521968603134,0.05443539470434189,0.02023557759821415,-0.06529304385185242,-0.023738915100693703,0.0014725050423294306,0.026744738221168518,-0.018847983330488205,-0.03178514540195465,0.016140276566147804,-0.07172137498855591,0.059960927814245224,0.0037611129228025675,0.0009899946162477136,0.008350285701453686,0.032300639897584915,-0.03960981220006943,-0.011914093047380447,-2.17211262310002e-8,0.07747068256139755,-0.10461845248937607,-0.09590166807174683,0.02526210993528366,0.01384876761585474,0.03717999905347824,-0.06072961911559105,-0.03017609193921089,-0.034686774015426636,0.009884483180940151,0.016099149361252785,0.01681319624185562,-0.0011414643377065659,0.024971377104520798,-0.01658080331981182,0.06595689058303833,0.06574613600969315,0.11073760688304901,-0.03403260558843613,-0.02521984651684761,-0.005319480784237385,-0.03098754584789276,-0.010690762661397457,0.002241464564576745,-0.00137828488368541,0.021610906347632408,0.03220096603035927,0.01764599233865738,0.008515013381838799,-0.024632848799228668,0.02224016562104225,0.058011673390865326,-0.0654393658041954,-0.1297128051519394,-0.06224270910024643,0.06584654003381729,0.07395970821380615,0.006945806555449963,-0.011307659558951855,0.05894540250301361,0.11470083147287369,0.043977975845336914,-0.01267743669450283,-0.030894288793206215,0.01603107899427414,0.038987550884485245,0.04966412112116814,0.037599559873342514,0.027429131790995598,-0.015249110758304596,-0.03415792062878609,0.020852619782090187,0.06887399405241013,0.04841908439993858,-0.05092566832900047,0.05780098959803581,0.09187597036361694,0.05097496137022972,0.021378979086875916,-0.012163156643509865,0.04288288205862045,0.08012008666992188,0.0243618655949831,0.00023168142070062459]},{"text":"Ergo Quintilium perpetuus sopor 5 Urget!","book":"Homage to Catalonia","chapter":7,"embedding":[-0.07803080976009369,0.045474838465452194,0.007836109958589077,-0.024783259257674217,0.03329196572303772,-0.04270383343100548,0.12546022236347198,0.017746897414326668,0.031410787254571915,0.011797647923231125,0.019825739786028862,-0.08526220917701721,-0.09015649557113647,-0.04323389008641243,-0.07909493148326874,-0.07689741253852844,-0.007545447442680597,0.04273134842514992,-0.05032677575945854,-0.04568389803171158,0.06344035267829895,-0.059776581823825836,0.026603765785694122,0.04089348763227463,-0.027227187529206276,-0.0379512682557106,-0.04168430715799332,0.032372113317251205,-0.003391389502212405,-0.10244732350111008,-0.03198912739753723,0.11295601725578308,0.001641236012801528,-0.06563736498355865,-0.03972601518034935,0.025087928399443626,-0.051264092326164246,-0.08037479221820831,0.014085118658840656,0.015509115532040596,-0.01245422475039959,-0.033828288316726685,-0.05893194302916527,0.021583782508969307,0.03545765578746796,-0.009737257845699787,-0.0851287990808487,0.0842781588435173,0.050539687275886536,0.026099294424057007,-0.04122117906808853,-0.07748765498399734,-0.005565453786402941,-0.017901243641972542,-0.07796543836593628,-0.02435608021914959,-0.0038933816831558943,-0.03707583621144295,0.030719319358468056,-0.00044873752631247044,0.05904629826545715,0.0334881953895092,-0.03143371641635895,-0.03385709971189499,-0.04650283232331276,0.045047104358673096,0.01594521477818489,-0.03274603560566902,-0.10947474092245102,0.06433983892202377,0.06850063055753708,0.025796521455049515,0.030159354209899902,0.008181001991033554,0.003726767376065254,0.0660577118396759,-0.0605342760682106,-0.050984952598810196,-0.035120658576488495,-0.010012064129114151,-0.0003981335903517902,0.08039043843746185,0.04870060831308365,0.005738372448831797,-0.054638080298900604,-0.018091406673192978,0.04950615391135216,-0.00003695416307891719,0.030016612261533737,-0.10893378406763077,0.029303956776857376,0.02289736084640026,-0.046300776302814484,-0.007113536354154348,-0.04248635098338127,0.11261908710002899,-0.11046259850263596,-0.11487896740436554,-0.046570245176553726,0.015971140936017036,0.03287043049931526,0.026820261031389236,0.07218395918607712,0.048901379108428955,-0.039580512791872025,0.060577236115932465,-0.018555764108896255,-0.010423448868095875,0.09786897152662277,0.021645665168762207,-0.0678226575255394,-0.08038611710071564,0.01777324639260769,-0.031010519713163376,0.01291608065366745,0.007857025600969791,-0.02243303321301937,-0.0481979064643383,0.01874934509396553,-0.03743527829647064,0.07359383255243301,0.017976252362132072,-0.05680927261710167,0.007641192525625229,0.07439114153385162,-0.0801958218216896,0.012330147437751293,4.668177165257209e-33,-0.010875843465328217,-0.06989368051290512,0.008926172740757465,0.04890904203057289,-0.02074064128100872,0.005475923884660006,-0.0531235970556736,-0.05892528221011162,-0.07628107070922852,-0.03645315766334534,-0.07927503436803818,-0.039839837700128555,-0.04510017856955528,0.022383913397789,0.007074208930134773,0.037015147507190704,0.07869838923215866,-0.03043508157134056,0.11146046966314316,0.028722459450364113,-0.023981867358088493,0.09256987273693085,-0.06712426245212555,-0.06559701263904572,0.0044481148943305016,0.06849569827318192,-0.011478383094072342,-0.03411206975579262,0.017026059329509735,0.010321020148694515,0.06837772578001022,-0.01059481780976057,-0.014312982559204102,0.05933820828795433,-0.05400305986404419,0.010346858762204647,0.012365448288619518,0.02494864910840988,-0.047521982342004776,0.01995358057320118,0.06206773221492767,0.0706971138715744,0.053688712418079376,-0.004505050368607044,0.03974102437496185,0.004553380887955427,0.0858854129910469,0.04746171832084656,0.061802420765161514,0.0014019334921613336,-0.06140093505382538,-0.035090122371912,-0.013559849001467228,0.0014706397196277976,-0.05228523537516594,-0.01640625111758709,-0.021294020116329193,0.0975252240896225,0.005578348413109779,-0.006080987397581339,0.030056511983275414,0.044947464019060135,-0.002083072206005454,-0.00631032744422555,0.0036306146066635847,-0.005088345613330603,-0.08476857841014862,-0.021916495636105537,0.0248094592243433,0.02860664576292038,-0.0921032503247261,0.02499416470527649,0.003029086161404848,-0.02881690301001072,-0.03502129763364792,-0.02396520972251892,0.02483990043401718,-0.018795588985085487,-0.03000461682677269,-0.007976509630680084,-0.015334556810557842,-0.084318608045578,0.001439835294149816,-0.01255222037434578,0.02423044666647911,0.062222596257925034,0.023182621225714684,-0.016872256994247437,0.094293013215065,0.048083845525979996,0.06493601948022842,-0.0007172973128035665,0.023564131930470467,0.040734268724918365,-0.00823400542140007,-3.7183850766324934e-33,0.02249148115515709,-0.08422078937292099,0.016176873818039894,0.13034097850322723,0.05341191962361336,0.04924270883202553,-0.06712841987609863,0.017552925273776054,-0.03695802390575409,-0.008706800639629364,-0.0018006452592089772,-0.04170149192214012,0.07259759306907654,-0.01551574096083641,-0.016008228063583374,0.05336553230881691,0.0703640878200531,0.03995034098625183,-0.013523896224796772,0.000757069094106555,-0.09392499923706055,0.00499036954715848,-0.03941456973552704,0.030819756910204887,0.00960940308868885,0.07225901633501053,0.13533468544483185,-0.08757220953702927,-0.09069699794054031,-0.02866753749549389,-0.05389132723212242,-0.05202794447541237,-0.06534809619188309,0.013786973431706429,0.07887768000364304,-0.049184177070856094,0.0653698518872261,0.055006690323352814,-0.0352751649916172,-0.010981344617903233,-0.07525850832462311,0.034372225403785706,0.02421719580888748,0.05277688056230545,-0.0049789175391197205,0.014247514307498932,-0.014309714548289776,0.006462095305323601,-0.0029812930151820183,0.026217199862003326,0.05663377419114113,-0.0526295006275177,0.05498109012842178,-0.03346601501107216,0.05624718964099884,-0.031046753749251366,0.05046111345291138,-0.010355239734053612,-0.0066117760725319386,0.07641617208719254,-0.007906392216682434,-0.005675437394529581,0.00189665996003896,0.011296438984572887,0.09042973071336746,-0.007794490084052086,-0.06712640821933746,0.04246972128748894,-0.008400527760386467,0.0789327621459961,0.045917659997940063,-0.006505824159830809,-0.08000469207763672,0.002738676266744733,-0.04625815153121948,0.034281328320503235,0.08683522790670395,-0.06387637555599213,0.0324302613735199,0.04321056976914406,-0.035883769392967224,0.01441882736980915,-0.0822511836886406,-0.026172107085585594,-0.07154842466115952,-0.11281197518110275,0.05910699442028999,0.11259546875953674,0.018439821898937225,0.056502796709537506,0.049826256930828094,0.020887957885861397,0.04314633831381798,-0.034470077604055405,0.09948229044675827,-2.0861527616489184e-8,0.014160157181322575,-0.002868983196094632,-0.047127336263656616,0.014885395765304565,0.06743335723876953,-0.09689256548881531,0.062385980039834976,-0.011809521354734898,-0.015261141583323479,0.07827949523925781,0.006627578753978014,0.07901851832866669,-0.01649136282503605,0.05193985253572464,0.05472432076931,0.03422442823648453,0.0934794619679451,0.05578909069299698,0.013443008065223694,-0.021392321214079857,0.0536629892885685,-0.08500593155622482,-0.0829901173710823,-0.13256393373012543,-0.012949161231517792,-0.05271023511886597,0.08373159170150757,-0.009032492525875568,0.008435150608420372,-0.04023298621177673,-0.0005453549674712121,0.006004258058965206,-0.082973912358284,-0.03610307723283768,0.0034589108545333147,0.07572831213474274,0.013373184017837048,0.07318106293678284,-0.0023678322322666645,-0.0520952045917511,-0.012661906890571117,-0.03695176914334297,0.024795791134238243,-0.0831037163734436,-0.03341056779026985,-0.1010073572397232,0.044542234390974045,-0.03257860615849495,0.039767876267433167,-0.0319056399166584,-0.03819333389401436,-0.04594089090824127,0.09775366634130478,0.039774686098098755,0.04305969551205635,0.005170416086912155,0.09875429421663284,0.022068994119763374,-0.03627220168709755,0.04198984056711197,0.052557915449142456,0.04455186426639557,0.03731953352689743,0.023747792467474937]},{"text":"Multis ille bonis flebilis occidit, Nulli flebilior quam tibi, Vergili. 10 Tu frustra pius heu non ita creditum Poscis Quintilium deos.","book":"Homage to Catalonia","chapter":7,"embedding":[-0.03096894919872284,0.06947219371795654,-0.08507314324378967,-0.04392772540450096,-0.0705525353550911,0.047814399003982544,0.06342706829309464,0.092268206179142,0.044651344418525696,0.016705431044101715,0.013751892372965813,-0.09280984848737717,0.0347815677523613,-0.006091469898819923,-0.09155261516571045,-0.07981707900762558,-0.07541224360466003,0.07627400010824203,-0.044057171791791916,0.035698939114809036,0.004820514936000109,-0.00933047290891409,0.06381526589393616,-0.014513102360069752,-0.0522117018699646,-0.007910138927400112,-0.0856991708278656,-0.05823593586683273,-0.02559894509613514,0.0011412084568291903,0.07725615799427032,0.13479362428188324,0.05212610214948654,-0.06359988451004028,0.030892787501215935,-0.059178467839956284,-0.020854217931628227,-0.025616928935050964,0.06783922761678696,0.030575556680560112,-0.07199317216873169,-0.00885540060698986,-0.0070142196491360664,-0.04523524269461632,-0.013890158385038376,0.00804431177675724,-0.020813634619116783,0.07852446287870407,0.04158316180109978,-0.011038729920983315,-0.09466658532619476,-0.019779648631811142,-0.059015192091464996,0.05437137186527252,-0.055833540856838226,-0.03867192566394806,0.008227633312344551,-0.029816217720508575,-0.03785265237092972,-0.051018889993429184,-0.00007743947207927704,0.03813648596405983,0.011188848875463009,0.05894177779555321,0.05883150175213814,0.08728550374507904,-0.09756310284137726,-0.02220168709754944,-0.12317224591970444,0.04698820412158966,0.08676135540008545,-0.03239443898200989,-0.019751613959670067,0.030196694657206535,-0.03551935777068138,0.06274595856666565,-0.04152105748653412,0.0572202242910862,0.0009370078914798796,-0.04593569412827492,0.024892406538128853,-0.04962984845042229,-0.001555534196086228,0.00032204369199462235,0.03241187334060669,-0.009007151238620281,-0.07362126559019089,-0.05217159166932106,0.0646207332611084,0.047074005007743835,0.005292801186442375,0.09171736240386963,0.021943895146250725,-0.04843248054385185,-0.015853315591812134,-0.014946531504392624,-0.06366586685180664,0.01747695356607437,-0.026869868859648705,0.026343924924731255,0.029697535559535027,-0.026655830442905426,0.0826079472899437,0.10074266791343689,-0.09310232847929001,0.01090356893837452,0.015165303833782673,-0.099552221596241,0.028453659266233444,-0.034217238426208496,-0.04492689296603203,-0.11182213574647903,0.003616215893998742,-0.13003748655319214,-0.02183806337416172,-0.008389690890908241,-0.025935744866728783,-0.019047975540161133,0.004809947218745947,-0.02394971251487732,-0.027635080739855766,-0.04479605704545975,0.02597329206764698,-0.039750080555677414,0.020211974158883095,-0.047640785574913025,0.01904592476785183,1.4333055350861578e-32,0.015242116525769234,-0.04499582201242447,0.025464847683906555,0.024525705724954605,0.03163885697722435,-0.01888623833656311,-0.07386604696512222,-0.06055185943841934,-0.038859281688928604,-0.04228542000055313,-0.02931721694767475,0.006606818176805973,0.006278740707784891,0.007254845462739468,0.017391297966241837,0.0380471870303154,0.07329364866018295,-0.057907212525606155,0.041351743042469025,-0.019088920205831528,0.020885594189167023,-0.010963101871311665,0.0607718862593174,-0.0013792383251711726,0.1279771327972412,0.034241482615470886,0.018670421093702316,-0.04545579105615616,-0.07710158824920654,0.06626379489898682,0.10617487877607346,0.007751449942588806,-0.007916257716715336,-0.022082285955548286,-0.015366327948868275,0.010557055473327637,-0.03521215543150902,0.005215423181653023,-0.028015268966555595,0.02586332894861698,0.04660068452358246,-0.022723767906427383,0.07789592444896698,0.00988808460533619,0.0727013424038887,0.01464087888598442,0.007369730621576309,0.06831661611795425,0.11233408749103546,0.014192749746143818,0.010702244937419891,-0.012327960692346096,-0.09595093131065369,-0.0015926234191283584,0.01996871829032898,-0.01650341972708702,-0.08874740451574326,0.10600025951862335,-0.01549008022993803,-0.012243877165019512,-0.0258383359760046,-0.023977400735020638,-0.059062037616968155,-0.01854119263589382,-0.02986905723810196,0.04705897346138954,-0.02146296203136444,-0.03141224756836891,0.11296360194683075,-0.045089561492204666,-0.034676358103752136,-0.056160762906074524,0.00029818949406035244,0.0681370422244072,0.027695799246430397,0.05044044926762581,0.09152239561080933,-0.08744484931230545,-0.06012118235230446,0.040823452174663544,-0.054414089769124985,-0.022146163508296013,0.050836145877838135,0.03239043802022934,0.07223932445049286,0.02865058183670044,0.004340191837400198,-0.004743217024952173,0.02710062824189663,0.03522276133298874,0.04671590402722359,-0.013820052146911621,0.03352515026926994,0.02033573016524315,0.015063201077282429,-1.2963523616916994e-32,-0.010842124000191689,-0.043113719671964645,-0.08769018203020096,0.041625868529081345,0.01368014793843031,-0.016985179856419563,-0.11459270119667053,-0.03966601938009262,0.06647685170173645,-0.04901561141014099,-0.01634807698428631,-0.05533972010016441,0.06350744515657425,-0.019785316661000252,-0.006811954081058502,0.10639742016792297,0.07367555052042007,-0.01583176478743553,-0.016431836411356926,-0.04113946482539177,-0.03388044983148575,-0.04838697984814644,0.05364241078495979,-0.07367643713951111,-0.03144693747162819,0.04332980886101723,0.02126689814031124,-0.09815745055675507,-0.015676310285925865,0.010418534278869629,0.009624716825783253,-0.022973855957388878,-0.018908075988292694,0.028145961463451385,0.031229564920067787,-0.001710064010694623,0.12015913426876068,-0.041234660893678665,-0.013401268981397152,0.04228375107049942,-0.0005864000413566828,0.05590616539120674,0.0632830485701561,-0.033001016825437546,-0.006895981263369322,0.0003268387808930129,-0.09936932474374771,-0.022165445610880852,-0.02796177752315998,0.006015284452587366,0.05199594423174858,-0.006511983927339315,-0.04763633385300636,0.016214627772569656,0.051358792930841446,-0.04230618104338646,0.012598836794495583,-0.009619547985494137,-0.07366202771663666,-0.053410522639751434,0.06464744359254837,-0.02215934731066227,-0.018410351127386093,0.04012194275856018,0.11254092305898666,0.025810377672314644,-0.04021846130490303,0.04789924621582031,-0.050739750266075134,0.005276021547615528,0.011231383308768272,-0.1648579239845276,-0.07807820290327072,-0.028624191880226135,-0.017016645520925522,0.061630986630916595,-0.04216507822275162,0.06589385867118835,-0.013844088651239872,0.04522192105650902,-0.06440359354019165,-0.021591098979115486,-0.04457436129450798,0.009347830899059772,-0.014892873354256153,-0.11783844977617264,0.03361984342336655,-0.035754892975091934,0.07393939048051834,0.02416570857167244,-0.004656714852899313,0.060785531997680664,0.0933908000588417,-0.07650548219680786,0.03602395951747894,-4.613483994830858e-8,0.051858361810445786,-0.051981810480356216,-0.07197925448417664,0.08415862172842026,0.0650787204504013,-0.03985447809100151,-0.03589065745472908,0.0051838611252605915,-0.022164642810821533,0.02523989789187908,-0.015380104072391987,0.018864652141928673,-0.004014594946056604,-0.04567957669496536,0.06512155383825302,-0.01662534847855568,0.021468646824359894,0.027399275451898575,-0.008513613604009151,-0.025132974609732628,0.0662604570388794,0.0028513965662568808,-0.020922530442476273,-0.03906949609518051,-0.09340314567089081,0.009352273307740688,0.0632038563489914,-0.11547121405601501,-0.0134116867557168,-0.010788117535412312,0.009838314726948738,0.09874006360769272,-0.014298241585493088,-0.08117064833641052,-0.08619580417871475,0.03609706833958626,0.040351103991270065,0.016722191125154495,-0.01213924027979374,0.010819205082952976,-0.006437176838517189,0.0692034587264061,0.019961433485150337,-0.024691082537174225,0.09856145083904266,-0.018642013892531395,-0.01232206728309393,0.06160357967019081,0.019607409834861755,-0.05967716872692108,-0.08108720928430557,0.07351590692996979,0.05986602604389191,0.07882613688707352,0.0010396206052973866,-0.020751455798745155,0.06918279826641083,0.049412500113248825,0.03439725190401077,-0.020792264491319656,0.019209325313568115,0.024007365107536316,-0.032593682408332825,-0.032634127885103226]},{"text":"Durum: sed levius fit patientia, Quidquid corrigerest nefas. 20 XXV.","book":"Homage to Catalonia","chapter":7,"embedding":[-0.06035984680056572,0.06730461865663528,-0.008232969790697098,-0.04024357348680496,-0.11992347985506058,-0.00043595570605248213,0.05508241802453995,0.05944995582103729,-0.04217955470085144,0.019524188712239265,0.08011122047901154,-0.09053512662649155,-0.018222320824861526,-0.03784928843379021,-0.04977705702185631,-0.03259151056408882,-0.03515636920928955,0.03845282644033432,-0.04888226091861725,-0.01559229101985693,-0.0004591185424942523,0.04753156006336212,-0.03510677069425583,0.04615289717912674,-0.11097942292690277,0.019610676914453506,-0.052139803767204285,-0.02884564734995365,0.017404239624738693,-0.09059997648000717,-0.0009819030528888106,0.07201217859983444,-0.08301111310720444,-0.011606119573116302,0.03923613950610161,-0.0026149465702474117,0.015056636184453964,-0.07908164709806442,0.0033416999503970146,0.09975997358560562,0.014051446691155434,-0.015130188316106796,-0.04034366086125374,0.00005885791688342579,-0.020338939502835274,-0.020871900022029877,-0.06255672127008438,0.09373361617326736,-0.00004915829413221218,0.044270411133766174,-0.10922037810087204,-0.040552642196416855,0.005315147340297699,0.027921967208385468,0.04344707727432251,-0.0033719094935804605,0.009731349535286427,-0.06548576802015305,-0.003313811030238867,-0.07057087868452072,0.012537848204374313,0.05499101057648659,0.019710471853613853,0.06075025349855423,0.0007408063975162804,-0.013224132359027863,-0.06838593631982803,-0.005376119632273912,-0.05555436387658119,0.0508568175137043,0.06519246101379395,-0.06962234526872635,-0.027447031810879707,0.06981456279754639,-0.07826611399650574,0.03345285728573799,0.02796773798763752,-0.05615783855319023,0.03517406806349754,-0.05857943370938301,-0.038169220089912415,0.01005915179848671,0.06789568811655045,-0.010268766433000565,-0.005950579419732094,-0.07239427417516708,0.03410312160849571,-0.06980784237384796,0.012307096272706985,-0.08500552177429199,0.032745569944381714,0.019668105989694595,-0.04395589232444763,-0.024389971047639847,-0.02223205752670765,0.04655835032463074,-0.055358488112688065,0.0028754419181495905,-0.025576509535312653,0.030682291835546494,-0.0060372306033968925,0.05787815898656845,0.06903111189603806,0.17214737832546234,-0.13983984291553497,-0.0576181635260582,0.048335056751966476,0.056675124913454056,0.04993194341659546,0.04042110592126846,-0.027761414647102356,-0.01733417995274067,0.003139795968309045,0.0011523626744747162,0.014596827328205109,0.0030941683799028397,0.029701657593250275,0.004388176836073399,-0.0003661830851342529,-0.042147792875766754,0.07531003654003143,-0.06809332221746445,-0.019761070609092712,-0.05352475494146347,0.07155488431453705,0.0733652338385582,-0.012744925916194916,3.940711833333282e-33,0.0008990064379759133,-0.02780674211680889,0.01277423556894064,-0.0026126268785446882,0.011711297556757927,-0.027004197239875793,-0.09474559873342514,-0.000420841301092878,-0.045366980135440826,0.0019513851730152965,-0.09049122780561447,-0.019699538126587868,-0.04475552588701248,0.08411996811628342,-0.04082260653376579,0.01699257642030716,0.022835971787571907,-0.06294932961463928,-0.02274407632648945,-0.03756216913461685,0.02070298045873642,0.1048913523554802,0.06100030243396759,0.006060616113245487,0.003160919761285186,-0.012562969699501991,-0.026990456506609917,-0.029140740633010864,-0.02197750099003315,0.026755405589938164,0.0817471519112587,-0.025760550051927567,-0.028590146452188492,-0.01909603923559189,-0.03959467634558678,0.05784299224615097,0.010516302660107613,-0.016214748844504356,-0.05898810923099518,-0.048260461539030075,0.06880194693803787,0.03960990160703659,0.12278254330158234,-0.06068739295005798,0.0030853617936372757,0.022700341418385506,0.09936205297708511,-0.023628003895282745,0.05995834246277809,-0.0014150142669677734,-0.0326848104596138,0.02442946657538414,-0.03411279246211052,-0.04025295004248619,0.033703286200761795,-0.009078550152480602,-0.07007778435945511,0.007097784895449877,0.05069708079099655,0.009405412711203098,0.054339610040187836,-0.029009681195020676,0.005563411861658096,-0.0074722361750900745,0.06576372683048248,-0.060906365513801575,0.026112137362360954,-0.08639159798622131,0.0631830170750618,-0.007918905466794968,-0.09253464639186859,0.009682418778538704,-0.02112167701125145,0.06255029141902924,-0.04828315228223801,-0.03540290892124176,0.03722183778882027,-0.0593901053071022,0.0063513582572340965,-0.03625566139817238,-0.015167342498898506,0.03309311345219612,0.0024433948565274477,-0.043492674827575684,0.08963508158922195,-0.08268699049949646,-0.009465386159718037,-0.005382935982197523,-0.025571199133992195,-0.07409421354532242,0.039185091853141785,0.07512343674898148,0.082567498087883,-0.04450133815407753,-0.022854972630739212,-5.4486330478322355e-33,-0.0164455845952034,-0.06464005261659622,-0.020888397470116615,0.07281701266765594,0.07410798221826553,0.05041404813528061,-0.02361903339624405,0.09536638110876083,-0.024868803098797798,-0.01865605264902115,-0.02381902001798153,0.047855645418167114,0.045410241931676865,-0.06410618871450424,-0.0032527579460293055,0.09709925949573517,0.04516986012458801,-0.005364849232137203,-0.03660118579864502,-0.07144375890493393,0.03947967663407326,0.0532103069126606,0.018685737624764442,0.007188132032752037,0.04477229341864586,0.014743497595191002,0.06178164854645729,-0.06789461523294449,-0.1414722055196762,-0.014024818316102028,-0.014704141765832901,0.001998704858124256,-0.043711546808481216,0.08335354924201965,-0.011600106954574585,-0.054886166006326675,0.04059502109885216,0.03259313106536865,-0.05647203326225281,-0.0056334263645112514,-0.04146985337138176,0.0238021370023489,0.040413208305835724,0.020202934741973877,0.04879681393504143,-0.12337442487478256,-0.11013945192098618,-0.004657385405153036,-0.08262404054403305,-0.012631737627089024,0.003053853288292885,-0.011689885519444942,0.02209474891424179,-0.005288088694214821,0.06446577608585358,-0.00025506908423267305,-0.010253716260194778,-0.01905752532184124,-0.05762627348303795,0.06398048251867294,0.07275962084531784,0.011511982418596745,-0.03839370235800743,-0.07135815173387527,0.09257664531469345,0.003489189315587282,-0.04298694059252739,0.023020127788186073,-0.020225754007697105,0.05341734737157822,0.016868742182850838,-0.05401722341775894,-0.10453035682439804,-0.04265208914875984,-0.07912970334291458,-0.0939134806394577,0.04206305369734764,0.06203307583928108,0.05511796474456787,0.044165436178445816,0.03288497030735016,-0.04943540692329407,-0.019912652671337128,0.06991315633058548,-0.021898500621318817,0.016142981126904488,0.05977374315261841,0.02766568586230278,0.030018048360943794,0.030575575307011604,-0.0344751812517643,-0.056720007210969925,0.0646071583032608,0.02356310561299324,0.03297059237957001,-2.899902362685225e-8,-0.002267478732392192,-0.001695304992608726,-0.023510515689849854,0.0702977329492569,0.05629868432879448,-0.04245954751968384,-0.08597966283559799,-0.06639754772186279,0.010389829985797405,0.06090225279331207,0.009488354437053204,0.026459019631147385,-0.015487573109567165,0.06966928392648697,0.03294956311583519,0.04379119724035263,-0.0587182454764843,0.13804247975349426,-0.08983180671930313,0.01809939369559288,0.04489254206418991,0.03968563303351402,-0.06306585669517517,0.014389894902706146,-0.008390134200453758,-0.04941568523645401,-0.005163225810974836,-0.1096469983458519,-0.024063892662525177,0.020544396713376045,-0.024380892515182495,0.06960612535476685,0.026370279490947723,-0.08646409958600998,-0.04032592102885246,0.01286333054304123,0.04165937006473541,0.02589932270348072,0.03094453178346157,0.028656819835305214,0.04710938781499863,0.014249931089580059,0.09315389394760132,-0.023344185203313828,0.04559037461876869,-0.06897825747728348,0.019981056451797485,-0.019129695370793343,-0.067325659096241,0.040634386241436005,0.040905144065618515,-0.017064807936549187,0.08900043368339539,0.03391077369451523,-0.07025095075368881,0.004561983048915863,0.012712458148598671,0.04913339391350746,-0.04358137771487236,0.044428180903196335,0.14841783046722412,-0.0007763494504615664,0.00995604507625103,0.037046462297439575]},{"text":"Audis minus et minus iam: 'Me tuo longas pereunte noctes, Lydia, dormis?' Invicem moechos anus arrogantis Flebis in solo levis angiportu, 10 Thracio bacchante magis sub inter- lunia vento, Cum tibi flagrans amor et libido, Quae solet matres furiare equorum, Saeviet circa iecur ulcerosum, 15 Non sine questu, Laeta quod pubes hedera virenti Gaudeat pulla magis atque myrto, Aridas frondes hiemis sodali Dedicet Hebro. 20 XXVI.","book":"Homage to Catalonia","chapter":7,"embedding":[0.025376038625836372,0.0736595019698143,0.018875114619731903,0.0038956482894718647,-0.05864156410098076,-0.0060882363468408585,0.07402323931455612,0.03444630652666092,0.009726556949317455,0.018681637942790985,0.04777849093079567,-0.07480799406766891,0.06823499500751495,-0.07575048506259918,-0.11409873515367508,-0.0888882651925087,-0.045777514576911926,-0.003363231662660837,-0.05553692579269409,0.004286575131118298,-0.023072747513651848,0.04098881781101227,-0.021184276789426804,0.0896654799580574,-0.03250187262892723,0.002116141142323613,-0.029270609840750694,-0.029476666823029518,-0.02302512153983116,-0.04045794531702995,0.06426049023866653,0.1301041692495346,0.12184551358222961,-0.05958029627799988,-0.007889796979725361,0.0028940800111740828,-0.020956840366125107,-0.1116986945271492,0.017406132072210312,0.03620187193155289,-0.00768686318770051,-0.07328426092863083,-0.01990775763988495,-0.03793364763259888,-0.10737212002277374,-0.021242719143629074,-0.018259933218359947,0.03925575315952301,0.03612569719552994,0.03965623676776886,-0.07717736810445786,0.06583094596862793,-0.08200973272323608,0.010628157295286655,-0.045232731848955154,-0.05967751517891884,-0.0005884775309823453,-0.04060353338718414,-0.031013494357466698,-0.04338010028004646,0.02487899921834469,0.05586429685354233,-0.07666785269975662,0.06321059912443161,-0.04943333566188812,-0.02327849343419075,-0.017773624509572983,0.01778724230825901,-0.04638795182108879,0.05984688922762871,0.07769051939249039,-0.07879169285297394,-0.02525257132947445,0.08131203055381775,-0.036775581538677216,0.0823412612080574,0.020837778225541115,-0.011672708205878735,-0.0032709247898310423,-0.08624096214771271,-0.03502717241644859,-0.025575442239642143,0.05276774242520332,-0.055518876761198044,-0.04490366578102112,0.03133212402462959,0.06631793826818466,-0.056656304746866226,0.04644648730754852,-0.06295120716094971,-0.00021059939172118902,-0.06413257122039795,-0.06565862894058228,-0.024732325226068497,0.061148885637521744,-0.016512596979737282,-0.005867502186447382,0.004298072773963213,-0.06953743100166321,0.024649666622281075,-0.003231164999306202,-0.012491859495639801,-0.018970144912600517,0.09390033781528473,-0.13069875538349152,-0.05250849574804306,-0.04631322622299194,-0.06085740774869919,0.00638152752071619,0.020723406225442886,-0.04331104829907417,-0.08487655967473984,-0.011914530768990517,-0.08198775351047516,0.049920499324798584,0.003072901861742139,0.03876478224992752,-0.08051677793264389,-0.05110659822821617,0.007065811660140753,0.025080300867557526,-0.053035251796245575,-0.026950879022479057,-0.004966906737536192,0.016198044642806053,0.011730380356311798,0.023994697257876396,2.370400080670085e-32,-0.05207054689526558,-0.010283270850777626,-0.014198724180459976,-0.030472135171294212,0.02239418961107731,-0.029502863064408302,-0.12196659296751022,-0.019616030156612396,0.05161851644515991,-0.0032471276354044676,-0.04470159485936165,0.05381891876459122,-0.006637201178818941,0.01621079072356224,0.05330319702625275,0.04910054802894592,0.1411811113357544,-0.07016634196043015,-0.028495412319898605,-0.04539532959461212,-0.04769514128565788,0.019623026251792908,0.037504225969314575,-0.03826539218425751,0.007735404651612043,-0.00461555877700448,0.06459715962409973,-0.06329493969678879,-0.0747542530298233,0.029464848339557648,0.07565236836671829,-0.03911370784044266,-0.00670969532802701,-0.020088981837034225,-0.0013898974284529686,0.02767346054315567,-0.036586154252290726,-0.016313321888446808,-0.022283682599663734,-0.005435503553599119,-0.01866057887673378,0.03381616622209549,0.12403000891208649,0.024284958839416504,0.038437943905591965,0.07296976447105408,0.032720912247896194,-0.0019491841085255146,0.07783406227827072,-0.020637741312384605,-0.03204553201794624,0.041273362934589386,-0.000357103010173887,-0.03879321739077568,0.027332551777362823,0.01608448475599289,-0.03325481340289116,0.053393393754959106,-0.021995775401592255,-0.07799085229635239,0.015499856323003769,-0.006409990601241589,0.06428327411413193,-0.043358273804187775,-0.017344195395708084,-0.06459292024374008,-0.0816556066274643,0.03723040968179703,0.10121571272611618,0.007502393797039986,-0.06357835233211517,-0.004331605974584818,0.0365966372191906,0.08716005831956863,-0.006346977315843105,0.05185437202453613,0.10216974467039108,-0.040359776467084885,-0.0031816763803362846,-0.022128373384475708,-0.024811549112200737,0.015999700874090195,-0.0127247404307127,0.029692742973566055,0.08494400233030319,-0.019570592790842056,0.01955806463956833,-0.010045712813735008,0.055838692933321,0.06437262892723083,-0.030351905152201653,0.1042991578578949,-0.022551842033863068,-0.012723887339234352,-0.05678631737828255,-2.3924502975763972e-32,0.02981194667518139,-0.01092076301574707,-0.08421656489372253,0.051543477922677994,0.014072955586016178,0.037817828357219696,-0.032933954149484634,0.11827778071165085,0.0116647370159626,-0.0453280508518219,-0.017349014058709145,-0.011174898594617844,0.048589613288640976,-0.09179310500621796,0.03729241341352463,0.029302112758159637,0.07335063815116882,-0.057757649570703506,-0.006600155960768461,-0.04581284895539284,-0.06495355069637299,0.047519881278276443,-0.0046640317887067795,-0.11170588433742523,-0.04941890388727188,-0.0299545805901289,0.055039070546627045,-0.0610039047896862,-0.09652891010046005,0.0071479850448668,0.0622049905359745,0.0047457534819841385,-0.09946856647729874,0.04505452886223793,0.005373407155275345,-0.019610386341810226,0.08833615481853485,0.01878574676811695,-0.08844346553087234,-0.03156716749072075,-0.011555209755897522,0.033109553158283234,0.1656142771244049,-0.03683549165725708,0.07480250298976898,-0.09119022637605667,-0.08211302012205124,-0.06467738002538681,-0.03978855162858963,-0.015019877813756466,0.07579341530799866,-0.011473208665847778,0.005830870009958744,0.0333566777408123,0.0849035382270813,-0.11280090361833572,0.04004465788602829,-0.03382744640111923,-0.08533822000026703,-0.021318906918168068,0.006830096244812012,0.003205630462616682,0.035548143088817596,-0.04867587238550186,0.034749582409858704,-0.010932842269539833,-0.09640159457921982,0.0070669748820364475,-0.03157970309257507,-0.011160913854837418,0.06535501033067703,-0.09089235961437225,-0.11350689083337784,-0.010714495554566383,-0.054319608956575394,0.01069489773362875,-0.056596025824546814,0.026365336030721664,0.009261159226298332,-0.023420527577400208,-0.031025584787130356,-0.038441915065050125,-0.06582500040531158,0.02349490486085415,-0.0283993910998106,-0.09654830396175385,0.01541188731789589,0.011721417307853699,0.05330532044172287,0.029132572934031487,0.05298776552081108,-0.00787729024887085,0.021298125386238098,-0.10551498085260391,-0.0036547561176121235,-7.930245971010663e-8,-0.02278156764805317,-0.023587049916386604,-0.026096539571881294,0.06395319849252701,0.02870689146220684,-0.03550950065255165,0.0017940126126632094,-0.015998447313904762,0.006157481111586094,0.0670161321759224,0.004309792071580887,0.006273315288126469,0.03284747526049614,0.01742764376103878,0.02674151211977005,0.06462344527244568,0.017595255747437477,0.06707850843667984,-0.05890869349241257,-0.061425723135471344,0.06944184005260468,0.010327119380235672,-0.0673443153500557,-0.018805067986249924,-0.06985124200582504,0.01244241651147604,0.04208182543516159,-0.05806102603673935,0.011791867204010487,-0.021012209355831146,0.003742497880011797,0.05511845275759697,-0.0023054450284689665,-0.08700597286224365,-0.02153077907860279,0.01930684968829155,0.017782827839255333,0.08828742802143097,0.01404372975230217,0.08688691258430481,-0.015460044145584106,-0.01596003770828247,0.05226507410407066,-0.01729229837656021,0.0071966261602938175,-0.03385939821600914,0.03273661807179451,0.018639152869582176,0.004098504316061735,0.006612330209463835,0.01250127051025629,0.07270084321498871,0.08974402397871017,0.03193791210651398,-0.006177402567118406,-0.05057841166853905,0.018000490963459015,-0.012673180550336838,-0.0069035314954817295,0.009806856513023376,0.07747586071491241,0.021075399592518806,-0.036158349364995956,-0.03158574923872948]},{"text":"O quae fontibus integris Gaudes, apricos necte flores, Necte meo Lamiae coronam, Pimplei dulcis.","book":"Homage to Catalonia","chapter":7,"embedding":[-0.0453859344124794,0.006667030975222588,-0.01832752861082554,0.031751107424497604,-0.03668739274144173,-0.0024214466102421284,0.07505057007074356,0.10689754784107208,-0.022994812577962875,0.035548433661460876,0.07046357542276382,-0.07820185273885727,-0.024444254115223885,0.03300483524799347,-0.02556847780942917,-0.046271488070487976,0.0017878772923722863,0.024775728583335876,-0.019130755215883255,0.013576998375356197,0.06535036116838455,0.0635787770152092,-0.003518596990033984,0.02778940461575985,-0.09680049866437912,0.01178459171205759,-0.05746999382972717,-0.01086738146841526,0.08380996435880661,-0.08047350496053696,0.018530767410993576,0.12305011600255966,0.05047643184661865,-0.06320235133171082,0.0537610724568367,-0.050331637263298035,-0.023573921993374825,-0.060637395828962326,0.0579913966357708,0.055611081421375275,-0.05610137805342674,-0.020450137555599213,-0.016954880207777023,-0.03850826993584633,0.015901334583759308,-0.001152649987488985,-0.03434627875685692,0.0942256897687912,0.068450428545475,-0.03366528078913689,-0.10145355761051178,-0.10172770172357559,-0.04136322811245918,0.06331413239240646,-0.07489752024412155,-0.0022361089941114187,0.01355148945003748,-0.024445733055472374,-0.03124706819653511,-0.020658299326896667,-0.03224882856011391,-0.03252264857292175,0.0037375723477452993,0.06838680803775787,-0.08912646770477295,0.03300097584724426,0.027979224920272827,-0.007412882521748543,-0.047472383826971054,0.05001339316368103,0.1006777361035347,-0.043334830552339554,-0.040328603237867355,0.046943388879299164,-0.02390797808766365,0.04721381515264511,-0.014478890225291252,-0.0409679189324379,-0.023074258118867874,-0.009969973005354404,-0.058497104793787,0.057954464107751846,0.0049982741475105286,0.029862158000469208,0.06731316447257996,-0.009788509458303452,0.00342579442076385,-0.021821262314915657,-0.01145761925727129,-0.008207639679312706,0.062257733196020126,0.021108677610754967,-0.07860022038221359,-0.009164756163954735,-0.05158741772174835,0.03433949127793312,0.06005238741636276,-0.033284351229667664,0.0012676215264946222,-0.006287680938839912,-0.026975462213158607,-0.1337391436100006,0.007926104590296745,0.036675889045000076,-0.06579066067934036,-0.04257477819919586,-0.040499232709407806,-0.09668506681919098,0.029749570414423943,0.03758222609758377,-0.07050708681344986,-0.11988398432731628,-0.08912734687328339,-0.03188273310661316,-0.011869153007864952,-0.05392887443304062,0.09934910386800766,-0.04073430225253105,-0.046311624348163605,-0.008937764912843704,-0.0030854674987494946,-0.058794714510440826,0.022603997960686684,-0.06364602595567703,-0.004484132397919893,-0.04781213402748108,0.014580353163182735,7.427238363447757e-33,-0.042651958763599396,0.0017833878519013524,-0.07766011357307434,0.00469707977026701,0.06368881464004517,-0.02504061348736286,-0.048101115971803665,-0.06153525039553642,0.05353919789195061,-0.09020665287971497,-0.10181992501020432,0.07334768772125244,-0.06315513700246811,0.0861084833741188,0.03621036559343338,0.07208245992660522,0.07210330665111542,-0.02349713444709778,-0.022640632465481758,-0.006785011384636164,0.04238331317901611,0.006416270509362221,0.022086482495069504,-0.03848252072930336,-0.025822097435593605,0.07213683426380157,-0.04977087676525116,-0.07528341561555862,-0.07985803484916687,0.01230141706764698,0.1156340092420578,-0.061103109270334244,0.019417747855186462,-0.035041600465774536,-0.01725378818809986,0.00028375026886351407,0.04530355706810951,-0.0185109730809927,-0.044450342655181885,0.04502066597342491,-0.03626317158341408,0.03642328456044197,0.05986432731151581,-0.03003617748618126,0.0854547843337059,0.03650522232055664,0.024036278948187828,0.04612864553928375,0.10261189937591553,0.030263932421803474,0.016146456822752953,-0.020563002675771713,-0.01231470424681902,-0.01250982191413641,0.033050037920475006,0.005786831025034189,-0.07026133686304092,-0.040112536400556564,-0.010862423107028008,-0.017612187191843987,0.022146571427583694,-0.010472165420651436,0.006647444795817137,-0.010391353629529476,-0.03135056421160698,-0.06445683538913727,-0.1046915277838707,0.03129233419895172,0.04117569699883461,-0.008591517806053162,-0.051202207803726196,-0.04873763397336006,-0.06286902725696564,0.05933987349271774,0.016522075980901718,0.0059068696573376656,0.017652004957199097,0.03783036023378372,-0.061189375817775726,0.03644699603319168,-0.011430271901190281,-0.030253054574131966,0.0627451166510582,-0.002321265870705247,0.08475437760353088,0.041166599839925766,0.03295127674937248,0.0570821575820446,0.07467897981405258,0.027073513716459274,0.00632604630663991,0.09144783020019531,0.02686130627989769,0.010126886889338493,-0.012899928726255894,-7.755314428658441e-33,-0.0029812350403517485,-0.040353141725063324,-0.04666867479681969,0.0316370353102684,-0.011333071626722813,0.06240922585129738,-0.11720121651887894,0.043030425906181335,0.10969100147485733,-0.07788422703742981,-0.05668311566114426,0.008532043546438217,0.060814693570137024,-0.05039454996585846,-0.05504390969872475,0.05539356917142868,0.021880533546209335,0.025902939960360527,-0.021549033001065254,-0.06263704597949982,-0.08371804654598236,0.011234043166041374,0.03514797240495682,-0.10799137502908707,0.06092693656682968,0.009951595216989517,-0.001472001662477851,-0.07657251507043839,-0.07707726955413818,0.0365319550037384,0.059259962290525436,-0.02384914457798004,-0.020891377702355385,0.033132266253232956,0.021626466885209084,0.01966552436351776,0.07222546637058258,-0.02062992751598358,-0.06786694377660751,0.05765970051288605,0.0544256791472435,-0.0285637229681015,0.13116496801376343,-0.006939623970538378,-0.02484527975320816,0.0047153811901807785,-0.08149248361587524,-0.030790822580456734,-0.0825306698679924,0.03273343667387962,0.10133302211761475,-0.00413384148851037,0.024324936792254448,0.0514821857213974,0.036823008209466934,-0.05677163228392601,-0.002998093143105507,-0.028756897896528244,-0.010256640613079071,-0.008857382461428642,0.08261585235595703,0.005799783393740654,-0.07880961894989014,-0.06392177194356918,0.09565534442663193,0.01501509826630354,-0.038425613194704056,-0.024423522874712944,0.010726396925747395,0.010415838100016117,0.0967201367020607,-0.04421777278184891,-0.11747685074806213,-0.03071342408657074,-0.02773698978126049,0.06770274043083191,-0.04037921503186226,0.026811150833964348,-0.011772161349654198,0.0064597236923873425,-0.005074316170066595,-0.03190100938081741,-0.017417654395103455,-0.04404802992939949,-0.07479974627494812,-0.06127595156431198,-0.05068603530526161,-0.06199028715491295,-0.0023493117187172174,-0.03314156457781792,-0.06786178052425385,0.04156126827001572,0.03222259506583214,0.025814279913902283,0.03491144999861717,-3.5019994015783595e-8,0.05646245554089546,-0.0980324000120163,-0.03864610940217972,-0.031280163675546646,0.03229886665940285,-0.11117859929800034,0.0037390023935586214,0.00695789884775877,0.04176630079746246,0.06291893869638443,-0.006211559753865004,0.060501717031002045,0.059960708022117615,0.007216206286102533,0.03444758802652359,0.002237550914287567,0.09848809242248535,0.02628067135810852,-0.029328858479857445,-0.05090300366282463,0.01695682853460312,-0.008649813011288643,-0.031417615711688995,-0.030146397650241852,-0.01691426895558834,-0.019467752426862717,0.06555436551570892,-0.01769447699189186,-0.01719372160732746,0.04228241369128227,0.023606479167938232,0.07235822081565857,0.034025195986032486,-0.017324872314929962,-0.004485120065510273,0.05605633184313774,0.04485655948519707,-0.035547517240047455,-0.029589975252747536,0.04521621763706207,0.03996184468269348,-0.0018238769844174385,0.0420386977493763,-0.042259056121110916,0.032148685306310654,-0.07386644929647446,0.06689698994159698,-0.03006136603653431,0.04240356385707855,-0.03577936813235283,0.02986076846718788,0.04011860489845276,0.0573226697742939,0.06232508271932602,-0.08151461184024811,-0.03130488842725754,0.11387162655591965,-0.0012649510754272342,0.029572343453764915,-0.017419973388314247,0.04356289654970169,0.039527542889118195,0.14290085434913635,0.03654026612639427]},{"text":"Natis in usum laetitiae scyphis Pugnare Thracumst: tollite barbarum Morem, verecundumque Bacchum Sanguineis prohibete rixis.","book":"Homage to Catalonia","chapter":7,"embedding":[0.050242070108652115,0.016533533111214638,-0.05292826145887375,-0.030812401324510574,-0.12181658297777176,0.027104735374450684,0.01754089817404747,0.03602852299809456,-0.023005567491054535,0.07881807535886765,0.01976458914577961,-0.09870857000350952,-0.012437955476343632,-0.067307248711586,-0.04715796932578087,-0.05855001136660576,-0.017706116661429405,0.05738497152924538,-0.004489351529628038,0.011387042701244354,0.030687883496284485,0.04475521296262741,0.003646282246336341,0.04256271570920944,-0.06857594102621078,-0.012094718404114246,-0.013676690869033337,-0.0388055220246315,0.056359291076660156,-0.1307915598154068,-0.047170042991638184,0.03340241685509682,0.014332453720271587,-0.045441146939992905,-0.03132454678416252,-0.04450887069106102,-0.03956824168562889,-0.013627384789288044,0.08787645399570465,0.013653178699314594,0.038558125495910645,0.004771334119141102,-0.02553783543407917,-0.005825288128107786,-0.0680430606007576,0.05069287493824959,-0.07114963233470917,0.09659997373819351,0.09703514724969864,-0.006537366658449173,0.016670240089297295,-0.03292017802596092,-0.037195369601249695,0.041405465453863144,-0.0809018537402153,-0.041642673313617706,0.08464943617582321,-0.07808651775121689,0.006233297288417816,0.002422630786895752,-0.0014672819525003433,0.00965955387800932,0.04889299347996712,0.023529352620244026,0.030637595802545547,0.07487227022647858,-0.06172183156013489,0.07956932485103607,-0.007788163144141436,-0.008788873441517353,0.11502913385629654,-0.008009643293917179,-0.039693791419267654,0.13785147666931152,-0.01488689985126257,-0.0721316710114479,-0.02011648193001747,0.012980975210666656,-0.032155707478523254,-0.0351940356194973,-0.03650462627410889,0.0008995758253149688,0.015229926444590092,0.008952940814197063,0.025913774967193604,-0.02517981082201004,-0.05297836661338806,-0.02007892355322838,0.026477333158254623,0.0168510302901268,0.017572646960616112,0.04548070952296257,-0.0540030412375927,-0.03244483098387718,-0.010312465019524097,0.0056769633665680885,-0.014506859704852104,-0.04867631569504738,-0.011299115605652332,-0.04081803560256958,0.04316980391740799,-0.02429737150669098,-0.0075730192475020885,-0.059426937252283096,-0.0372471958398819,0.002758932299911976,-0.06754733622074127,-0.11503125727176666,0.06723301857709885,0.04768820479512215,-0.039555586874485016,-0.09201833605766296,-0.028226863592863083,-0.0074427067302167416,-0.06117982417345047,-0.057161640375852585,0.06140561029314995,-0.07226146757602692,-0.03032921440899372,-0.16909298300743103,0.022565826773643494,0.024422140792012215,-0.009929033927619457,-0.09739908576011658,0.07226484268903732,-0.04135648533701897,-0.0005562760052271187,1.1576700361071815e-32,0.00024420200497843325,-0.11593540757894516,0.005758960265666246,0.031203532591462135,0.08066732436418533,0.017868688330054283,-0.07768592238426208,0.012530162930488586,-0.023976339027285576,-0.14490093290805817,-0.10898400843143463,-0.06883031129837036,-0.021180346608161926,-0.0031754469964653254,0.03980284929275513,0.08883225917816162,0.01975722797214985,-0.07813696563243866,0.024797389283776283,-0.042966991662979126,-0.10678815841674805,0.04387380927801132,0.036729153245687485,0.0345173254609108,0.0099282031878829,0.006982382386922836,0.057872481644153595,-0.07353348284959793,-0.03338990360498428,0.017275899648666382,0.08109743148088455,-0.025210771709680557,-0.021292226389050484,0.04030361399054527,0.07353079319000244,0.07611264288425446,0.046021681278944016,0.013344382867217064,-0.08355232328176498,0.003383230185136199,0.0207816194742918,-0.002647556597366929,0.024223055690526962,0.03331174701452255,0.080025814473629,-0.014147959649562836,-0.021818719804286957,0.027280358597636223,0.07518444955348969,0.05362890288233757,0.0008573248633183539,0.05401476100087166,0.017179036512970924,-0.017395934090018272,0.009482286870479584,0.024763422086834908,-0.016743795946240425,0.10116933286190033,-0.010318398475646973,-0.004375407472252846,0.03867564722895622,0.041762273758649826,0.056434035301208496,0.06915385276079178,0.03677947074174881,0.03496263921260834,-0.08576569706201553,0.010667664930224419,0.03200266510248184,-0.0839017927646637,-0.07489179819822311,-0.04045097902417183,-0.04971062391996384,0.09792983531951904,0.014617277309298515,0.03357727825641632,0.019579511135816574,-0.023150568827986717,0.015844469889998436,-0.020868295803666115,-0.07247129082679749,-0.0019703928846865892,0.004769267980009317,0.06041692942380905,0.06659626960754395,-0.014116209000349045,0.035794440656900406,-0.02963767759501934,0.032358136028051376,-0.0101262042298913,0.047773223370313644,0.035402219742536545,-0.07055014371871948,0.052167072892189026,-0.006718310061842203,-1.2658046430600868e-32,-0.045137692242860794,-0.0647459328174591,-0.03185456991195679,0.0938025489449501,0.012829803861677647,-0.1010330393910408,-0.08131615072488785,0.091976597905159,0.02036220021545887,-0.03485318273305893,-0.04675327241420746,-0.008295047096908092,0.05314595252275467,-0.03252208232879639,0.07212765514850616,0.04834397882223129,0.10542399436235428,0.04689164087176323,-0.05798513442277908,-0.09519969671964645,-0.013671659864485264,0.0036531032528728247,0.029620740562677383,-0.07776650041341782,0.0008933172794058919,-0.018292605876922607,0.04335705190896988,-0.006366276182234287,-0.037520814687013626,-0.05120933800935745,0.09917667508125305,0.04959655925631523,-0.005607411731034517,-0.026462577283382416,-0.07109542936086655,0.06193901225924492,0.13287672400474548,-0.03153924643993378,0.016896869987249374,-0.013040265999734402,0.03613007441163063,-0.014814518392086029,0.0446770004928112,-0.06465904414653778,0.06740685552358627,-0.023117054253816605,-0.10874500125646591,-0.00943765789270401,-0.09860881417989731,0.03313126415014267,0.11453553289175034,-0.018150925636291504,0.02095896750688553,0.02583971992135048,0.07121846824884415,-0.0702119767665863,-0.037203773856163025,-0.0029249524232000113,0.018250510096549988,-0.043702349066734314,0.026433011516928673,0.027969904243946075,-0.013597401790320873,-0.0064496262930333614,0.04895590990781784,0.0028762498404830694,-0.00716334069147706,0.03146126866340637,0.02042819932103157,0.0344841368496418,0.0034038403537124395,-0.010503080673515797,-0.06951428204774857,-0.03777582198381424,-0.04640839621424675,0.03283856809139252,-0.033998407423496246,-0.00944402813911438,-0.002076673787087202,0.011022473685443401,-0.03246481716632843,-0.0431661531329155,0.06967713683843613,0.022635729983448982,-0.008723362348973751,-0.018421579152345657,0.04121901094913483,0.02994546853005886,0.007133800536394119,0.0344424694776535,-0.04597683250904083,-0.029462076723575592,-0.09816540777683258,-0.02302625961601734,0.03651769086718559,-4.568058642462347e-8,0.09499219059944153,-0.01367826759815216,-0.05845044180750847,0.03189946338534355,0.038184404373168945,-0.03978072479367256,-0.004919662605971098,0.041708849370479584,-0.0740622878074646,0.0198966134339571,-0.033985234797000885,0.033542536199092865,0.009680182673037052,0.005515895783901215,0.04541751369833946,0.006609804462641478,0.03478901833295822,0.030109159648418427,-0.06986275315284729,-0.04050131514668465,-0.005570712499320507,-0.022472530603408813,-0.08193250000476837,0.04208764806389809,-0.10807017982006073,-0.030873600393533707,0.049357134848833084,-0.07039474695920944,0.047340959310531616,-0.07822877168655396,0.021723022684454918,0.05239083617925644,-0.02154375985264778,-0.07549868524074554,-0.0002962673606816679,0.01739906519651413,-0.018415488302707672,-0.003684642259031534,0.060694895684719086,0.0028093557339161634,0.0015826247399672866,-0.053097788244485855,0.00705648073926568,0.00399363087490201,0.02111944742500782,-0.06003451347351074,-0.024470513686537743,0.11283683031797409,-0.013347510248422623,-0.11788499355316162,-0.04239172488451004,0.011849640868604183,0.06070984527468681,-0.0024188573006540537,-0.06420223414897919,0.012376276776194572,0.020225226879119873,-0.003474942408502102,-0.0273965522646904,0.007006570231169462,0.055935636162757874,0.052783869206905365,0.0556766577064991,0.08950241655111313]},{"text":"Voltis severi me quoque sumere Partem Falerni?","book":"Homage to Catalonia","chapter":7,"embedding":[-0.013500981964170933,0.05072321370244026,-0.007710023783147335,-0.03177979215979576,-0.07854856550693512,0.007599660661071539,0.09084303677082062,0.08967690914869308,0.05076857656240463,-0.02995988354086876,-0.03753266856074333,-0.07283097505569458,0.025973977521061897,-0.06577136367559433,-0.1040155440568924,-0.10811126977205276,0.022961216047406197,0.10216160118579865,0.015353351831436157,-0.010850085876882076,-0.029427025467157364,-0.02651258371770382,-0.05710442736744881,-0.01097340788692236,-0.017915038391947746,0.011613513343036175,-0.051640599966049194,0.03995973616838455,0.05372709035873413,-0.018428631126880646,0.08003426343202591,-0.006059786304831505,0.05796412378549576,-0.05477238819003105,0.007106842938810587,-0.005308288615196943,0.01679113879799843,-0.10019531100988388,0.07321761548519135,0.0603582002222538,-0.05377618968486786,-0.023407448083162308,-0.07861370593309402,0.01714496873319149,0.023192431777715683,-0.010176217183470726,0.023642752319574356,0.049136362969875336,0.01120288111269474,0.001863722805865109,-0.08408787846565247,0.034815069288015366,-0.018964430317282677,0.06952010840177536,-0.03706527128815651,-0.06931642442941666,0.008228485472500324,0.002472261432558298,0.041628748178482056,-0.0921725332736969,0.0640292689204216,-0.035698723047971725,0.02937213145196438,0.018101124092936516,-0.03903737664222717,-0.0463874414563179,-0.009164882823824883,-0.06605399399995804,-0.03267902135848999,0.06323400139808655,0.12667666375637054,0.0009498748695477843,-0.030782096087932587,0.02360181137919426,-0.07878664880990982,0.03418254852294922,0.010541173629462719,-0.023859895765781403,0.04524063691496849,-0.02195698209106922,-0.008968153037130833,-0.05948253348469734,-0.021849380806088448,0.026229651644825935,-0.004442701116204262,-0.02555151656270027,0.05837932229042053,-0.014863593503832817,-0.019253866747021675,-0.054781462997198105,-0.0525493249297142,-0.00961348321288824,-0.01762276329100132,-0.04966704919934273,0.06418847292661667,-0.005902382545173168,-0.010631955228745937,0.004036823753267527,0.07247276604175568,0.0413566455245018,-0.03719869256019592,-0.019440537318587303,0.011239835061132908,0.018737679347395897,-0.11094153672456741,-0.032235532999038696,-0.014716940000653267,-0.026970768347382545,-0.00009513308032182977,0.09074673801660538,-0.022869864478707314,-0.07475034147500992,-0.054462455213069916,-0.05371886119246483,0.03437000513076782,-0.014753839001059532,0.09865687042474747,-0.052256274968385696,0.06579729169607162,-0.02889131009578705,0.11082115769386292,0.008743224665522575,-0.05746512860059738,0.0013089562999084592,0.0987124964594841,-0.08742554485797882,0.02815595082938671,3.2104892324727076e-33,-0.06683296710252762,-0.09400388598442078,0.028674663975834846,-0.002077196491882205,0.046288784593343735,0.004279905930161476,-0.01506417989730835,0.037674326449632645,0.011796856299042702,-0.009732615202665329,-0.03129522502422333,0.032027315348386765,-0.01928880251944065,-0.00013353304530028254,0.038478560745716095,-0.014680162072181702,0.08995255827903748,-0.1084321141242981,0.005228904075920582,-0.10747707635164261,0.015868207439780235,-0.014033242128789425,0.04035850986838341,0.08035694807767868,-0.010365876369178295,-0.11890176683664322,0.06158970296382904,-0.05902998894453049,-0.07353229820728302,0.024076445028185844,0.022789640352129936,-0.016578733921051025,-0.0140752661973238,-0.06427689641714096,0.021039415150880814,-0.026897944509983063,-0.0014102653367444873,0.0186733677983284,-0.05848248675465584,-0.026358895003795624,-0.03687737137079239,0.041110191494226456,0.05110596865415573,-0.09039634466171265,-0.009753597900271416,-0.017266828566789627,-0.011890672147274017,0.06986776739358902,0.06913670897483826,0.00015913751849438995,-0.06656012684106827,-0.06709468364715576,0.031305234879255295,-0.03687196224927902,0.010566193610429764,0.04490699619054794,-0.09943584352731705,0.00749827828258276,-0.015793681144714355,-0.055450860410928726,-0.03397874906659126,-0.01763301156461239,0.04293331131339073,0.009266434237360954,0.006617698352783918,0.027876773849129677,0.0564873069524765,-0.004031226970255375,0.11042983084917068,0.022934909909963608,-0.12820923328399658,0.02799232117831707,-0.027624649927020073,0.008472582325339317,-0.051445528864860535,0.05791192129254341,-0.035316694527864456,0.00396338663995266,-0.06289513409137726,-0.01285679079592228,-0.06937804818153381,-0.04064533859491348,0.03897055611014366,0.018937457352876663,0.08716922998428345,0.02018640749156475,0.014068027026951313,0.07941682636737823,0.05766293779015541,0.06095661595463753,0.030479339882731438,-0.042175788432359695,-0.024878406897187233,0.014461047947406769,-0.04099270701408386,-4.085042703147089e-33,-0.07354547083377838,-0.0668487623333931,-0.03452545404434204,0.07846558839082718,-0.015359943732619286,0.029456626623868942,-0.107078917324543,0.03207453340291977,-0.0045090243220329285,0.06002720817923546,-0.014692294411361217,-0.05720942094922066,0.10619940608739853,-0.037381336092948914,-0.0660138949751854,0.052204716950654984,-0.022637302055954933,0.002080733422189951,0.060591600835323334,0.02776305191218853,-0.0881427675485611,-0.0005669012316502631,0.08808154612779617,-0.08645357936620712,-0.013025380671024323,-0.022050177678465843,0.01553312037140131,-0.0063854362815618515,-0.09080619364976883,0.015450111590325832,0.050248585641384125,-0.029749838635325432,-0.04133313149213791,-0.017886249348521233,0.04187856987118721,0.04406635835766792,0.09641972929239273,0.05263117700815201,0.07336758077144623,-0.026265913620591164,-0.05137954279780388,-0.00843835435807705,0.1025632843375206,0.042194053530693054,0.04720278084278107,-0.04171326756477356,0.025910910218954086,-0.038201089948415756,-0.09897853434085846,-0.040489379316568375,-0.013063170947134495,-0.03639965504407883,-0.02966524101793766,0.02567875385284424,0.06958439946174622,0.009286588057875633,0.011098088696599007,-0.004635343793779612,-0.07558801025152206,-0.02475006692111492,0.09507403522729874,-0.0011793443700298667,-0.03447594493627548,-0.007277898024767637,0.12126181274652481,0.0016803668113425374,-0.09533160924911499,0.024415280669927597,0.02684153988957405,0.09282136708498001,0.07845847308635712,-0.02476143278181553,0.07602725923061371,0.038773179054260254,0.019307896494865417,-0.04806859418749809,-0.009660381823778152,0.052219636738300323,-0.004167621489614248,0.07799722254276276,-0.0359218455851078,-0.01846231333911419,-0.05018410086631775,-0.03221256285905838,-0.04138476774096489,-0.01602368988096714,-0.0194868016988039,0.0569426491856575,0.004656382370740175,-0.008591034449636936,-0.03686237335205078,0.03909117355942726,0.004443191457539797,-0.0804462879896164,0.0416170135140419,-2.4607418325217623e-8,0.03704140707850456,-0.023811552673578262,-0.09804579615592957,0.02919050119817257,0.0784001275897026,-0.09371443837881088,-0.05554598942399025,-0.00886491872370243,-0.06482814997434616,0.11333422362804413,-0.015400691889226437,-0.04624694958329201,0.05416262149810791,-0.01332656666636467,-0.020998859778046608,0.12333349138498306,0.061455775052309036,0.03031325899064541,-0.007473920471966267,-0.03406200557947159,0.08402688801288605,-0.015120888128876686,-0.012802534736692905,-0.02544189617037773,-0.0017491470789536834,0.024401167407631874,-0.02623170055449009,-0.08674696087837219,-0.028405440971255302,-0.03502359613776207,0.05604809150099754,0.11314007639884949,0.00841205008327961,-0.022273849695920944,-0.11053864657878876,0.01792006753385067,0.05870015174150467,0.06994184851646423,-0.023512884974479675,-0.016020147129893303,0.03668316826224327,0.025935685262084007,0.056425269693136215,-0.0013047447428107262,0.05966266989707947,-0.011455466039478779,-0.024832073599100113,0.05402446910738945,-0.035637784749269485,-0.01255957130342722,-0.02784932777285576,0.012915375642478466,0.0625237375497818,0.061997752636671066,0.01702732965350151,-0.009387348778545856,0.03276967629790306,-0.020308654755353928,0.016928786411881447,0.0013767143245786428,0.06990254670381546,0.0951085314154625,0.00821672659367323,-0.04256007820367813]},{"text":"Quae te cumque domat Venus, Non erubescendis adurit 15 Ignibus ingenuoque semper Amore peccas.","book":"Homage to Catalonia","chapter":8,"embedding":[-0.08732297271490097,0.05557623505592346,0.038426000624895096,0.013377186842262745,-0.054486192762851715,0.000997945899143815,0.06248115375638008,0.028377823531627655,0.09095396846532822,-0.035928502678871155,0.017462756484746933,-0.10704176127910614,-0.014065856114029884,-0.07201927155256271,-0.04151206836104393,-0.06701064109802246,-0.02426232397556305,0.06342644989490509,0.05571325495839119,0.0038343125488609076,0.012219219468533993,-0.07604021579027176,-0.0006409764755517244,0.07908409833908081,-0.0956931784749031,0.01005525141954422,-0.06598849594593048,0.015887733548879623,-0.020455677062273026,-0.01061182003468275,0.04991558566689491,0.05134359747171402,0.014717473648488522,-0.014969004318118095,-0.009363842196762562,0.012842286378145218,-0.09813237190246582,-0.07555852830410004,0.036175686866045,0.024192851036787033,-0.011697087436914444,-0.09594952315092087,-0.0819837898015976,0.021932847797870636,-0.03273307532072067,-0.0269167460501194,-0.024769876152276993,0.0870312750339508,0.004743384663015604,-0.05277792736887932,-0.07154794037342072,0.038093287497758865,-0.07574982196092606,0.0058860573917627335,-0.020877281203866005,-0.06240134686231613,0.05629454553127289,-0.07527942955493927,0.06672009825706482,-0.03899895027279854,0.03997977823019028,0.07060156017541885,-0.06416179984807968,0.03635358065366745,-0.06144942715764046,-0.008845272473990917,-0.04128533601760864,-0.007732693571597338,-0.1252390593290329,0.0933012068271637,0.051441870629787445,-0.03457188606262207,-0.09393559396266937,0.05514286458492279,-0.06996650248765945,0.08642890304327011,-0.015033972449600697,-0.019416416063904762,-0.048750534653663635,-0.06016642227768898,0.014235449954867363,-0.002299444517120719,-0.011123214848339558,0.01981065422296524,-0.013234728015959263,-0.017264995723962784,-0.03014301136136055,0.020260920748114586,0.015596922487020493,-0.011390968225896358,-0.04455038160085678,0.015789061784744263,-0.09022700786590576,0.005302216857671738,0.01593763194978237,0.05188623443245888,-0.04077775776386261,-0.04624154791235924,0.016983944922685623,-0.01898762956261635,-0.018542172387242317,0.08297589421272278,-0.09095962345600128,0.09897809475660324,-0.10314230620861053,-0.00021803924755658954,-0.006598943378776312,-0.06817664951086044,0.03532695025205612,0.0016717598773539066,-0.05387245863676071,-0.0922466367483139,0.03389304131269455,-0.13511624932289124,-0.016896884888410568,0.06538383662700653,-0.013779700733721256,-0.04610762000083923,0.04065388813614845,-0.04658648744225502,0.030921997502446175,-0.05048064514994621,0.036871299147605896,0.00019715988310053945,0.005863908678293228,-0.11121221631765366,0.02428760938346386,7.178326699977168e-33,0.024102497845888138,-0.0535094253718853,0.07199981063604355,0.05757468193769455,0.02062765508890152,0.05054921656847,-0.016373438760638237,-0.054640281945466995,-0.004533793311566114,-0.02284904196858406,-0.052685290575027466,-0.038151536136865616,-0.0033435227815061808,-0.023461371660232544,0.03791585937142372,0.04345643147826195,0.1223820149898529,-0.0737420916557312,0.031979020684957504,-0.04881543666124344,-0.03203210607171059,-0.010886602103710175,-0.020072920247912407,0.05301961675286293,-0.03020457923412323,-0.0056506553664803505,-0.06655731797218323,-0.010961601510643959,-0.02870364673435688,0.007314497604966164,0.011207160539925098,-0.020885832607746124,-0.04012510925531387,-0.013569705188274384,0.02081308141350746,-0.05438968166708946,0.07696964591741562,0.02391228824853897,0.031756334006786346,-0.03103853017091751,0.04342372715473175,-0.001980419037863612,0.11225706338882446,0.023093940690159798,0.022236302495002747,0.0875597596168518,0.006224341690540314,0.053783614188432693,0.12759517133235931,0.04105980321764946,-0.009028449654579163,0.007291284389793873,-0.06737123429775238,-0.006276111118495464,-0.03033333830535412,0.06539981067180634,-0.03446144610643387,0.0885329470038414,-0.04301726445555687,-0.023105427622795105,0.07001593708992004,-0.07764508575201035,0.015813643112778664,-0.04929336905479431,-0.02682752162218094,0.04468737542629242,0.015332438051700592,-0.0118575319647789,0.07086493074893951,0.012647333554923534,-0.08867474645376205,0.047970566898584366,0.10258162021636963,-0.021911676973104477,0.08640311658382416,0.04686293005943298,-0.015749353915452957,-0.06259404122829437,0.021909942850470543,0.01756180264055729,-0.13928598165512085,-0.037937670946121216,0.047606211155653,-0.0025643855333328247,0.08338142931461334,-0.0038748467341065407,-0.021407384425401688,0.07024803757667542,0.07630158960819244,0.07044513523578644,0.05306509509682655,-0.0691642090678215,0.02637680433690548,-0.0075624422170221806,-0.05027927830815315,-7.614850200574871e-33,-0.0013156221248209476,0.004936490673571825,-0.009700831957161427,0.06455020606517792,0.06322821229696274,-0.012606588192284107,-0.0765843465924263,0.08948216587305069,-0.028590496629476547,-0.01815786212682724,-0.035775914788246155,-0.05832495912909508,0.11728106439113617,-0.10845724493265152,-0.027324393391609192,0.09911579638719559,0.022540701553225517,0.029701152816414833,-0.06162536144256592,0.0823482796549797,-0.005024062003940344,0.00036314205499365926,0.0016198786906898022,-0.0400061309337616,0.007618536241352558,0.008015251718461514,0.06148632615804672,-0.0281121376901865,-0.028494546189904213,0.002584080910310149,0.0627739205956459,0.04083864390850067,-0.04677107557654381,0.03228718414902687,-0.022196738049387932,0.010265926830470562,0.13378921151161194,0.004200523719191551,-0.0012620537308976054,-0.008916237391531467,-0.008632602170109749,0.05871086195111275,-0.010632093995809555,0.01700693368911743,0.05527516081929207,0.0022310959175229073,-0.08731633424758911,0.028113143518567085,-0.0068346611224114895,0.03220152482390404,0.03458191826939583,0.005494755692780018,0.008947140537202358,0.04625893011689186,0.026093872264027596,-0.03664766997098923,0.022408898919820786,0.07282761484384537,-0.020428834483027458,0.032351087778806686,0.11268232762813568,0.02421921119093895,-0.02846965193748474,-0.0141755947843194,0.030428439378738403,-0.006045758258551359,-0.09924394637346268,0.09718109667301178,-0.018922552466392517,0.06706605106592178,-0.014487996697425842,-0.07100172340869904,-0.13244286179542542,-0.0218762569129467,-0.010499688796699047,0.003938710317015648,0.03224269300699234,-0.0402287133038044,0.06296371668577194,0.04281735047698021,-0.08995851874351501,0.04834630712866783,-0.03297233209013939,-0.012190151028335094,-0.04421398788690567,-0.009948396123945713,0.014688008464872837,-0.0179141853004694,-0.020657379180192947,-0.003664695890620351,-0.006311272736638784,-0.0010362784378230572,0.10007226467132568,-0.05998889356851578,0.029995862394571304,-2.994455883253977e-8,-0.0046971929259598255,-0.03174881637096405,-0.02879035286605358,-0.00948217324912548,0.05866902694106102,-0.06750436872243881,-0.020142409950494766,0.05066554248332977,0.05279264971613884,0.027781454846262932,-0.011897350661456585,-0.048774123191833496,0.01852935180068016,0.025033101439476013,0.026219215244054794,0.004681237507611513,0.1716931015253067,0.033004358410835266,-0.006329109892249107,-0.0517132394015789,0.09191540628671646,0.005645983852446079,-0.03316899761557579,-0.10031220316886902,-0.0638556033372879,-0.02911647967994213,0.006470904685556889,-0.08360064029693604,-0.01200290210545063,-0.02578882686793804,0.01849927008152008,0.008452372625470161,0.00010984208347508684,-0.02273712307214737,-0.0023687151260674,0.08752274513244629,-0.014039640314877033,-0.021696699783205986,0.027438703924417496,0.01614418253302574,0.05760330334305763,0.0007445890223607421,-0.0022347797639667988,-0.0394415482878685,0.010983489453792572,-0.013694460503757,-0.02301209233701229,-0.03228948637843132,-0.004436079412698746,0.04508049041032791,-0.008973016403615475,0.01352961640805006,0.06326533854007721,-0.06695010513067245,0.019086776301264763,-0.02605682983994484,-0.021522285416722298,0.07563818991184235,0.049253709614276886,0.00847488734871149,0.03545203432440758,0.07061576843261719,0.002775114495307207,-0.06074878200888634]},{"text":"A miser, Quanta laborabas Charybdi, Digne puer meliore flamma! 20 Quae saga, quis te solvere Thessalis Magus venenis, quis poterit deus?","book":"Homage to Catalonia","chapter":8,"embedding":[-0.09403088688850403,0.04787015542387962,0.01652611419558525,0.02009258046746254,-0.13541322946548462,0.025427833199501038,0.003336002118885517,0.037336066365242004,-0.004333774093538523,0.013908183202147484,0.02785380743443966,-0.033278949558734894,0.03764257952570915,-0.05212528258562088,-0.1330323964357376,-0.09231767058372498,-0.13529957830905914,0.07602282613515854,-0.02463800460100174,0.011848081834614277,-0.005739559419453144,-0.026538053527474403,-0.05366544425487518,0.06623220443725586,-0.030805028975009918,-0.06556599587202072,0.02598658762872219,-0.010088887065649033,-0.05727485567331314,-0.06341218203306198,0.15150277316570282,0.08834170550107956,-0.027765357866883278,-0.04432561621069908,-0.0016508919652551413,-0.006591700948774815,-0.003724637208506465,-0.01651412807404995,0.08008136600255966,0.030735908076167107,-0.05658099800348282,-0.024170294404029846,-0.047007858753204346,0.011495922692120075,0.011488804593682289,0.043822940438985825,0.0048170494846999645,0.08598136901855469,-0.017873656004667282,-0.01252515334635973,-0.08166928589344025,0.009821075946092606,-0.04203042760491371,0.04663222283124924,0.037312641739845276,0.003216484561562538,0.04006696119904518,-0.06594221293926239,0.01907818205654621,-0.07820011675357819,0.06814472377300262,0.039762359112501144,-0.0468597412109375,0.039118796586990356,-0.03179122135043144,-0.06319227814674377,-0.03267012909054756,-0.05137360095977783,-0.10905798524618149,0.005810398608446121,0.09525370597839355,-0.08070114254951477,-0.058919280767440796,-0.004431740380823612,-0.06399353593587875,0.03736657649278641,-0.02075641229748726,-0.026877667754888535,-0.030218569561839104,-0.04100664705038071,0.036515336483716965,-0.060065820813179016,0.0029758261516690254,0.037548601627349854,-0.029269641265273094,-0.01989741064608097,-0.04296453297138214,0.0014153501251712441,0.09329170733690262,-0.06896763294935226,-0.026820901781320572,0.01419324241578579,-0.07131985574960709,0.013913271948695183,0.01387112122029066,-0.012636572122573853,0.0054397848434746265,0.019743284210562706,-0.043097417801618576,0.01860939897596836,0.03536804020404816,-0.05945023149251938,-0.006776971276849508,0.04354739934206009,-0.04391121119260788,-0.015800006687641144,0.03376885503530502,-0.057083506137132645,0.006048697512596846,0.016299119219183922,0.04426448047161102,-0.07227432727813721,-0.02865433506667614,-0.056815918534994125,0.0943068340420723,0.033101391047239304,0.07649355381727219,-0.06213380768895149,-0.07015366852283478,-0.06818837672472,0.03310734033584595,0.03007696196436882,-0.044225063174963,-0.025367967784404755,-0.010231148451566696,-0.02854713797569275,0.028242068365216255,8.13347169600194e-33,-0.035392314195632935,-0.02805166505277157,-0.011682337149977684,0.010688276030123234,0.05045055225491524,0.0064674727618694305,-0.052103281021118164,-0.021362649276852608,0.05627180635929108,0.019472448155283928,-0.09252123534679413,0.024844300001859665,-0.07128360867500305,-0.017459668219089508,0.024967556819319725,0.03939175605773926,0.0589645653963089,-0.07936947047710419,-0.038550034165382385,-0.05594402551651001,-0.026506928727030754,-0.0005622267490252852,0.013523722067475319,0.0012119340244680643,0.08460249751806259,0.00003996494706370868,0.04986089468002319,-0.08433738350868225,-0.004873133264482021,0.02795523963868618,0.022488392889499664,-0.0701272115111351,-0.031217176467180252,-0.012237584218382835,-0.05966799333691597,-0.03197215870022774,-0.01652015745639801,0.06618465483188629,-0.0035381577908992767,-0.03955260291695595,-0.006004350259900093,-0.005393536761403084,0.03181406483054161,0.013459397479891777,0.0738348439335823,0.057837050408124924,0.06028849259018898,-0.03150396794080734,0.0733446255326271,0.06053607165813446,-0.018295370042324066,-0.07639682292938232,-0.028557252138853073,0.03401905670762062,0.07407096028327942,0.0017815972678363323,-0.09371685236692429,0.0020097275264561176,-0.012405240908265114,0.024379665032029152,0.09582790732383728,-0.0564974807202816,0.053197603672742844,-0.04530659690499306,0.04845508933067322,-0.013700190931558609,0.009486092254519463,0.03201620280742645,0.08856475353240967,0.05930379405617714,-0.057600297033786774,0.02519954741001129,-0.02303376980125904,0.023423779755830765,0.07529399544000626,-0.01566111296415329,0.09199798107147217,0.006891182623803616,-0.08492306619882584,-0.015628157183527946,-0.044183481484651566,-0.05549723654985428,-0.01018813531845808,0.03248867020010948,0.036570172756910324,0.03615954518318176,0.04737077280879021,0.037366993725299835,0.05981315299868584,0.06075064837932587,0.025831274688243866,0.005812399089336395,0.027868466451764107,0.06701254099607468,0.04496064782142639,-8.727853802339507e-33,0.003223681589588523,-0.07267307490110397,-0.050580840557813644,0.07909740507602692,0.027178840711712837,-0.0026999632827937603,-0.020595818758010864,0.013646184466779232,0.017176775261759758,-0.07164304703474045,-0.14489662647247314,-0.02530554123222828,0.06671812385320663,-0.036760780960321426,-0.011452978476881981,0.08473541587591171,0.0671367198228836,-0.011695473454892635,0.018631838262081146,0.023932714015245438,-0.06479191780090332,0.05768031254410744,-0.03153076767921448,-0.062482476234436035,0.026204677298665047,0.007024653721600771,0.05199458450078964,-0.036043908447027206,-0.044171735644340515,0.054129861295223236,0.07402732968330383,-0.038872040808200836,0.008375553414225578,0.02503199875354767,-0.06648950278759003,0.07681965082883835,0.14586961269378662,0.04497210681438446,-0.0015523312613368034,0.006334166973829269,-0.020940665155649185,0.0445871502161026,0.06582058221101761,-0.0009238658240064979,0.004402387421578169,-0.004230768885463476,-0.042746927589178085,-0.03773024305701256,-0.09567531198263168,0.005465080961585045,0.11744622886180878,-0.05599958449602127,0.03355952352285385,0.04707178473472595,-0.00022426730720326304,-0.0016806015046313405,-0.013415427878499031,0.0005956616369076073,-0.06510534882545471,0.030305564403533936,0.05606704205274582,-0.028444137424230576,0.028809355571866035,-0.07180414348840714,0.03435705602169037,-0.04046091437339783,-0.06310348212718964,0.07353947311639786,0.01747889071702957,0.02918414957821369,0.10215498507022858,-0.08138382434844971,-0.10181251168251038,-0.00942105334252119,0.04872515797615051,0.07724765688180923,-0.0504913292825222,0.034113235771656036,0.021119648590683937,-0.008954512886703014,-0.02428104169666767,0.014178301207721233,0.01074729859828949,-0.0026667146012187004,0.016756411641836166,-0.03685426712036133,0.04054130241274834,0.009641976095736027,-0.01449714694172144,-0.04908370599150658,0.016480538994073868,0.006719691678881645,0.07975079119205475,-0.09973179548978806,0.0705980435013771,-3.982987095696444e-8,0.01870158687233925,0.0013094490859657526,-0.1179538369178772,-0.03707922250032425,0.059135232120752335,-0.1098594143986702,-0.02005026303231716,0.04240582883358002,0.018807414919137955,0.03860851749777794,-0.019127363339066505,0.015527020208537579,0.05023492872714996,0.06296394020318985,0.026851005852222443,0.06277807801961899,0.028757181018590927,0.05683339759707451,-0.035317372530698776,-0.06305056810379028,0.12297753244638443,0.025279508903622627,-0.08527132868766785,-0.09160025417804718,-0.0994970053434372,0.07395964860916138,-0.005594409536570311,-0.0954650416970253,-0.04288245365023613,-0.016855677589774132,0.06180135905742645,0.061579301953315735,-0.054719552397727966,-0.04317241162061691,-0.017388196662068367,0.0365772470831871,-0.000288262905087322,0.020152488723397255,0.0012181595666334033,0.016553983092308044,-0.02136525698006153,-0.00022593226458411664,0.03444314002990723,-0.030717656016349792,-0.0488281175494194,-0.11057668179273605,0.044964443892240524,-0.016767015680670738,-0.012324203737080097,-0.01563267968595028,-0.006695618852972984,0.058309830725193024,0.0981188490986824,0.015194549225270748,0.02713090181350708,-0.05380171537399292,0.02963733673095703,0.05010417476296425,-0.05160484462976456,-0.023247651755809784,0.054629892110824585,0.08095838129520416,-0.011707644909620285,-0.0040532127022743225]},{"text":"Te maris et terrae numeroque carentis arenae Mensorem cohibent, Archyta, Pulveris exigui prope litus parva Matinum Munera, nec quicquam tibi prodest Aerias temptasse domos animoque rotundum 5 Percurrisse polum morituro.","book":"Homage to Catalonia","chapter":8,"embedding":[0.03886086493730545,0.05962689220905304,-0.01326457504183054,-0.039414502680301666,-0.09029989689588547,-0.015407814644277096,0.050613563507795334,0.03266729414463043,0.03497150167822838,0.06682083010673523,-0.02848316915333271,-0.11114253103733063,0.007950377650558949,-0.02635955438017845,-0.10241518169641495,-0.08039288222789764,-0.04984629526734352,0.04790407791733742,-0.035108327865600586,-0.010614103637635708,0.05091870576143265,-0.052328046411275864,-0.036964282393455505,0.03248397260904312,-0.1111159473657608,-0.009312333539128304,-0.07808548212051392,0.033660728484392166,0.03228035941720009,-0.06786938011646271,0.0047545176930725574,0.0871494933962822,0.04154300317168236,-0.01748577691614628,0.018647875636816025,0.027943367138504982,-0.05396619811654091,-0.09410977363586426,0.01321699284017086,0.0785917118191719,-0.04821447655558586,-0.05278230831027031,-0.03415714576840401,-0.03478630259633064,-0.06522658467292786,0.005825133062899113,0.0461638942360878,0.029934022575616837,0.020186681300401688,-0.04089367762207985,-0.07259706407785416,-0.02121557667851448,-0.08792991191148758,-0.014249959029257298,-0.04557488486170769,0.021819617599248886,0.03882849961519241,-0.0957813560962677,0.030664898455142975,-0.09098871052265167,-0.0033788045402616262,0.07205656915903091,-0.012204203754663467,-0.03259218484163284,-0.042293012142181396,-0.016860414296388626,-0.04388541355729103,0.02103189192712307,-0.07926101237535477,-0.029248813167214394,0.12678204476833344,-0.024664999917149544,-0.006858270149677992,0.0663645938038826,-0.05602335184812546,0.10870510339736938,-0.06425229460000992,-0.055693626403808594,0.024359945207834244,-0.09637489914894104,-0.00745989428833127,0.05274028703570366,0.02093212865293026,0.023234041407704353,-0.02561938390135765,-0.0017735789297148585,0.03316044807434082,0.032639265060424805,0.12126746773719788,0.012011033482849598,0.024662287905812263,0.05019623786211014,-0.04210209473967552,-0.029894724488258362,0.04435648024082184,0.0833090990781784,0.0010025919182226062,-0.022348422557115555,-0.04489203542470932,-0.03602752462029457,0.024490483105182648,-0.04720794036984444,-0.007570791523903608,0.005543064326047897,-0.10126455128192902,-0.05014453083276749,-0.038750823587179184,-0.036799848079681396,0.050298724323511124,0.03130973130464554,-0.1145714521408081,-0.08175917714834213,-0.06188663840293884,-0.04479029402136803,0.01467252429574728,0.022231316193938255,0.05357715114951134,-0.10724636912345886,-0.04249588027596474,-0.048306774348020554,0.012377413921058178,-0.03851955384016037,-0.008181359618902206,-0.012903189286589622,0.07311145216226578,-0.016342855989933014,0.07347378879785538,2.67255311589888e-32,-0.02691013738512993,-0.044761329889297485,-0.012649547308683395,0.06219641864299774,0.06366756558418274,0.007993536069989204,-0.05423109605908394,-0.029925981536507607,0.0184379480779171,-0.08286262303590775,-0.10261127352714539,0.03180646523833275,-0.0352456159889698,-0.04135435074567795,0.004090327303856611,0.006688571069389582,0.06475681066513062,-0.03748611733317375,-0.06313993036746979,0.006920250132679939,-0.08994298428297043,0.0543086901307106,-0.008551163598895073,0.028873559087514877,0.020264355465769768,0.050489045679569244,-0.0279813464730978,-0.09080849587917328,-0.055222801864147186,0.02157364971935749,0.05805162712931633,0.005670777056366205,-0.030673852190375328,-0.03143706172704697,0.031157953664660454,0.018095361068844795,0.03012135438621044,0.035015203058719635,-0.07782331854104996,0.030648045241832733,0.04837710037827492,0.026774531230330467,0.08986657112836838,0.05376502871513367,0.08619488030672073,-0.02278454601764679,0.05427069962024689,0.08541199564933777,0.12521520256996155,0.0031245467253029346,-0.02154364250600338,0.03802095726132393,-0.03870052471756935,-0.08774162083864212,0.037524472922086716,0.033227287232875824,-0.006431517191231251,0.10247426480054855,0.011099429801106453,-0.04993993043899536,0.00429437356069684,-0.023115087300539017,0.0251372791826725,-0.006567429285496473,0.028982877731323242,-0.061734363436698914,-0.05632270127534866,0.0493282675743103,0.06209564954042435,0.013517330400645733,-0.052023615688085556,-0.03377407044172287,-0.005727069452404976,0.09532400965690613,-0.033304065465927124,0.018956193700432777,0.032372597604990005,-0.05117912217974663,-0.008420056663453579,-0.04856957122683525,-0.11107847094535828,0.02765592373907566,0.020005514845252037,0.017176317051053047,0.06018950045108795,0.024313626810908318,0.020495055243372917,0.09154342114925385,0.010861839167773724,0.03839028999209404,0.05033363401889801,0.022300831973552704,0.012948854826390743,-0.017104731872677803,-0.013654831796884537,-2.5211091828314535e-32,-0.05414244905114174,-0.0583607517182827,-0.10691431909799576,0.1025727242231369,0.049724675714969635,-0.0031800668220967054,-0.1261042058467865,0.00580157246440649,0.05528605729341507,-0.06272701174020767,-0.06137050315737724,-0.016811750829219818,0.0922795906662941,-0.032843831926584244,-0.0135280080139637,0.045247938483953476,0.10331017524003983,-0.025285635143518448,-0.061190102249383926,0.018659843131899834,-0.05312943086028099,-0.014958844520151615,-0.012377816252410412,-0.01324219349771738,-0.04623458534479141,0.028888141736388206,0.044387612491846085,-0.06072991341352463,-0.04034988209605217,0.0035378485918045044,0.04545062407851219,-0.013613613322377205,0.01575850322842598,0.05337594822049141,-0.038040295243263245,-0.04580159857869148,0.13210514187812805,-0.05398816615343094,-0.030147036537528038,0.03801888972520828,0.04992017522454262,0.045625243335962296,0.08107659965753555,0.038236647844314575,-0.004381872713565826,-0.0447063185274601,-0.07575581222772598,-0.03271573409438133,-0.036152902990579605,0.009141378104686737,0.07419612258672714,-0.06716202944517136,0.002230701269581914,-0.04403773322701454,0.06551316380500793,-0.06667138636112213,-0.006436815485358238,0.0011254508281126618,-0.045175306499004364,0.014394855126738548,0.077706478536129,0.07550455629825592,-0.017648225650191307,0.0022137800697237253,0.0034617620985955,0.03830154612660408,-0.05980129539966583,0.03572005033493042,-0.07837022840976715,0.018347566947340965,0.08889873325824738,-0.08159831911325455,-0.14735274016857147,-0.01086774654686451,-0.005976744927465916,-0.019831867888569832,0.04054871201515198,0.13650327920913696,0.05791453272104263,-0.01813955418765545,-0.060497116297483444,-0.010834572836756706,-0.03449835628271103,-0.07916437089443207,-0.011151145212352276,-0.035645514726638794,0.00989588163793087,0.014257138594985008,0.01886686682701111,-0.007829704321920872,0.007554365321993828,-0.024512505158782005,0.001912145409733057,-0.08412012457847595,0.01927332952618599,-7.662747236736323e-8,0.019163554534316063,-0.0027125023771077394,-0.03017614036798477,0.05728776380419731,0.012713396921753883,-0.08513085544109344,0.0465075820684433,0.00024300605582538992,0.049660470336675644,0.06600817292928696,0.00750709930434823,-0.04137549176812172,0.032874781638383865,0.03199400007724762,0.07345089316368103,0.0528840497136116,0.030920037999749184,0.021007467061281204,-0.06464924663305283,-0.054502565413713455,0.018865209072828293,-0.04318796470761299,-0.0985395684838295,-0.04940924793481827,-0.0353630855679512,-0.012837246991693974,0.004893618635833263,-0.09225749969482422,0.0011701794574037194,0.0014419840881600976,0.00393326161429286,0.021408142521977425,-0.006560008507221937,-0.06427928060293198,0.013449039310216904,0.11320453882217407,0.009029454551637173,0.011919790878891945,0.01501743495464325,0.004303119145333767,0.03416593372821808,-0.0032762540504336357,0.033738743513822556,-0.07944193482398987,0.017229778692126274,-0.0017131681088358164,-0.04272518679499626,-0.007345814257860184,0.01388031430542469,-0.03466416150331497,-0.012802055105566978,-0.0031197392381727695,0.07010775804519653,0.0036162645556032658,-0.01943857967853546,-0.03163794055581093,0.0986827090382576,0.02907954715192318,-0.0024497441481798887,-0.040631361305713654,0.035088151693344116,0.028588948771357536,-0.016336504369974136,0.0023885685950517654]},{"text":"Sed omnes una manet nox 15 Et calcanda semel via leti.","book":"Homage to Catalonia","chapter":8,"embedding":[-0.05471264570951462,0.13957799971103668,0.05972248688340187,-0.06294309347867966,-0.03827803581953049,-0.025098009034991264,0.05214908346533775,0.055412329733371735,0.09178407490253448,0.012476046569645405,0.06557340919971466,-0.046559661626815796,-0.039756890386343,-0.014636503532528877,0.004796074237674475,-0.04365266487002373,-0.07236884534358978,0.06400375813245773,0.02094278484582901,-0.00932361651211977,0.06357090175151825,-0.04235812649130821,-0.0061254058964550495,0.04581939056515694,-0.04078371822834015,0.00298679550178349,-0.021365400403738022,-0.0007176027284003794,-0.06101357936859131,-0.08164200931787491,0.08907905220985413,0.06347290426492691,0.061478037387132645,-0.06052066758275032,-0.02461916022002697,-0.050709668546915054,0.010421755723655224,-0.1497664749622345,-0.04642103612422943,0.08178795129060745,-0.06661524623632431,0.022600900381803513,-0.1348697394132614,0.015877103433012962,-0.03574501350522041,-0.10553571581840515,-0.022236531600356102,0.05291882902383804,-0.05815736576914787,0.013971424661576748,-0.014389208517968655,-0.005464473739266396,0.021110745146870613,-0.03540902957320213,-0.009956090711057186,0.006890125572681427,0.025507893413305283,-0.00780085101723671,0.03580530360341072,0.012234065681695938,0.06602216511964798,0.018609732389450073,-0.11008857935667038,-0.016343167051672935,-0.025384237989783287,0.006694808602333069,0.002470888663083315,-0.0713052973151207,-0.1161205917596817,0.0759529322385788,0.057088930159807205,-0.037343669682741165,-0.015311479568481445,0.04952723905444145,-0.08206713944673538,0.019378289580345154,-0.00011204872862435877,-0.015340655110776424,0.0601821206510067,-0.00908807571977377,-0.03215720131993294,0.07400346547365189,-0.0684954822063446,-0.04525795951485634,0.006136489100754261,0.03861508145928383,0.05573013797402382,0.055399950593709946,0.0504465289413929,0.012083170004189014,-0.07302100211381912,0.04665612056851387,-0.04528151452541351,0.01409251056611538,0.055067479610443115,-0.045609548687934875,-0.004517388995736837,-0.004213482607156038,0.002735404297709465,0.008971589617431164,0.04677228257060051,0.052245862782001495,-0.01726418361067772,0.08457448333501816,-0.14633709192276,-0.01193211693316698,0.03241035342216492,-0.08436422795057297,-0.021694503724575043,0.03814036399126053,0.020284846425056458,-0.06993544101715088,-0.008860353380441666,-0.07911688089370728,-0.04237213358283043,0.015260566957294941,-0.0140323331579566,-0.06003072112798691,0.0055740405805408955,-0.05754062533378601,-0.006063749548047781,-0.03537885472178459,-0.045367661863565445,0.007538026198744774,0.034287720918655396,-0.05253640189766884,0.016083084046840668,3.678171047548878e-33,-0.0206440482288599,0.020289402455091476,-0.0649888664484024,-0.0045731388963758945,0.005303246900439262,-0.001473589800298214,-0.0167985986918211,-0.036292899399995804,0.0037301492411643267,-0.026472236961126328,-0.04698391258716583,0.015752794221043587,-0.031470417976379395,-0.03987119346857071,0.08148602396249771,0.022532111033797264,0.12342295050621033,-0.021540991961956024,0.0785411074757576,-0.017331687733530998,-0.011534114368259907,0.06170222535729408,-0.008833508007228374,-0.035951338708400726,0.03957150876522064,-0.01875627413392067,-0.06516559422016144,-0.014479865320026875,-0.017438896000385284,0.01991589553654194,0.04811062291264534,-0.03715873137116432,-0.004247723612934351,-0.006932564079761505,0.05196450278162956,-0.013051409274339676,0.10247321426868439,0.05972655490040779,-0.00803485605865717,0.036218881607055664,0.05576620623469353,-0.0037034437991678715,0.13206610083580017,0.0025030618999153376,0.056901995092630386,0.09936767816543579,-0.04038400575518608,0.08212830126285553,0.08859805017709732,-0.006500652525573969,-0.06876779347658157,0.021174302324652672,-0.029742738232016563,-0.030013030394911766,0.008531349711120129,0.06860562413930893,-0.13889265060424805,0.03611504286527634,-0.03779977932572365,0.018591735512018204,0.0779886469244957,-0.05272471159696579,0.05728204548358917,-0.005789654329419136,-0.0595296211540699,-0.002622750820592046,0.008727896958589554,-0.030368851497769356,0.09021753817796707,0.0625525563955307,-0.14411714673042297,0.09108996391296387,0.04001045599579811,0.0025298113469034433,-0.020796967670321465,0.03984544053673744,-0.036305755376815796,0.007235497236251831,0.04283115640282631,0.023142460733652115,-0.048739783465862274,-0.009484373964369297,-0.002106928965076804,-0.03694600611925125,0.08247766643762589,0.04360518977046013,-0.005380918737500906,0.0402977280318737,0.03374222666025162,0.06928626447916031,0.013348778709769249,-0.05945555493235588,0.016065893694758415,-0.005500582978129387,0.021256648004055023,-4.311099817701815e-33,0.017487861216068268,-0.08252297341823578,0.008777478709816933,0.020982185378670692,-0.0329267680644989,0.046018484979867935,0.005764917004853487,-0.0018934073159471154,-0.040176570415496826,-0.03423305228352547,-0.042275626212358475,-0.061650827527046204,0.05027908831834793,-0.08122657239437103,-0.010942799039185047,0.08953874558210373,0.05790408328175545,-0.03928371146321297,-0.09962116181850433,-0.03844847530126572,-0.07285753637552261,0.0157464649528265,-0.04761672765016556,0.031992021948099136,0.0683278888463974,-0.019905896857380867,0.0810631737112999,-0.020531535148620605,-0.06997837126255035,-0.01789829321205616,0.036070458590984344,-0.04152536764740944,0.026669733226299286,0.07424914836883545,0.005705336574465036,0.08493482321500778,0.09822902083396912,0.08470020443201065,0.013114461675286293,0.01572328992187977,-0.07495395839214325,0.006756924092769623,-0.010800642892718315,0.06545071303844452,0.01697768084704876,0.007800006307661533,-0.07686373591423035,-0.05929197371006012,-0.08177094161510468,0.020390233024954796,0.08731196820735931,-0.0388285368680954,-0.03080073744058609,-0.03519008308649063,0.02652875892817974,0.00015179917681962252,-0.0008176868432201445,-0.0435289666056633,-0.061913374811410904,-0.0005851692985743284,0.11323096603155136,0.05264962464570999,0.04390478506684303,-0.0008968631736934185,0.04541347548365593,-0.08968377113342285,-0.11080639064311981,-0.05855463817715645,0.04038158059120178,0.03093106672167778,0.05899925157427788,-0.07420849055051804,-0.10632266104221344,-0.0009799160761758685,-0.07709275931119919,-0.018081823363900185,0.015421314164996147,0.03785347938537598,-0.008620519191026688,0.06559696048498154,-0.07180531322956085,0.02661336399614811,-0.040939826518297195,0.011496699415147305,0.014161295257508755,0.07126138359308243,0.049885161221027374,-0.04505433514714241,0.02963917702436447,0.06283748894929886,0.00887915026396513,0.04025193303823471,0.02209722250699997,0.07510658353567123,-0.035753943026065826,-2.348377137195712e-8,0.004034673795104027,-0.09275032579898834,-0.0853072851896286,0.10244574397802353,0.03876979649066925,-0.03805798292160034,-0.009019028395414352,-0.04285929352045059,0.04659217596054077,0.028386801481246948,0.014957279898226261,0.04106726497411728,-0.0657617449760437,0.05503728613257408,0.026270635426044464,0.02188110165297985,0.09099245816469193,0.03621954470872879,-0.003577483119443059,-0.11329437792301178,-0.00187640858348459,0.02085362747311592,-0.00941796600818634,-0.027945756912231445,-0.01710558496415615,-0.015772365033626556,-0.06502673774957657,0.011043824255466461,0.03180505707859993,-0.025715071707963943,-0.022168105468153954,0.00766576686874032,-0.014281253330409527,-0.05139972269535065,-0.033276550471782684,0.05977882444858551,0.04909001290798187,0.030680056661367416,0.0031685344874858856,0.0028298229444772005,0.04245069995522499,0.04253729432821274,0.05722887068986893,-0.035069797188043594,0.023976126685738564,-0.06522777676582336,-0.006693426985293627,-0.03391752764582634,0.02775028720498085,0.04300650581717491,-0.024641921743750572,0.034622639417648315,0.013171848841011524,0.07341337203979492,0.028991032391786575,-0.0035131857730448246,-0.03183390200138092,-0.006920873187482357,-0.053699642419815063,0.056377630680799484,-0.021239208057522774,-0.0216571893543005,0.045674894005060196,-0.04000265523791313]},{"text":"At tu, nauta, vagae ne parce malignus arenae Ossibus et capiti inhumato Particulam dare: sic, quodcumque minabitur Eurus 25 Fluctibus Hesperiis, Venusinae Plectantur silvae te sospite, multaque merces, Unde potest, tibi defluat aequo Ab Iove Neptunoque sacri custode Tarenti.","book":"Homage to Catalonia","chapter":8,"embedding":[0.04628346115350723,0.07615873217582703,-0.007917302660644054,-0.021585479378700256,-0.02172117680311203,0.017653826624155045,0.018899837508797646,0.021640336140990257,0.03965292125940323,0.06494788825511932,-0.025710947811603546,-0.14650869369506836,0.004632867407053709,0.002257704734802246,-0.09752825647592545,-0.12245752662420273,-0.017079442739486694,0.05800977349281311,-0.015077793970704079,0.09708593785762787,0.03429965302348137,0.023361803963780403,0.006564266048371792,0.04301542416214943,-0.07984145730733871,0.025071458891034126,-0.1220088005065918,0.01947859115898609,0.029640376567840576,-0.08885681629180908,0.01653975620865822,0.05939082056283951,0.01580934040248394,0.00005068331302027218,0.02615547366440296,0.004740570671856403,-0.05644736438989639,-0.03720911964774132,0.07720204442739487,0.07512986660003662,-0.02006763219833374,-0.022398173809051514,-0.04511352255940437,0.011345509439706802,0.0017719053430482745,0.024171514436602592,-0.07029814273118973,0.06511750817298889,0.09523892402648926,-0.02976207248866558,-0.07040612399578094,-0.06237201765179634,-0.09771738201379776,0.00010183687118114904,-0.06440640985965729,-0.028966231271624565,0.024166971445083618,-0.04832960292696953,0.04928117245435715,-0.02105037122964859,0.06139668449759483,0.04492897540330887,-0.004282754845917225,0.04165864735841751,0.004150420892983675,-0.0326983742415905,-0.07127668708562851,-0.007997713051736355,-0.10201651602983475,0.03900075703859329,0.0718500167131424,0.0036409141030162573,-0.018504159525036812,0.04859037324786186,-0.0674159973859787,0.11578022688627243,0.006573153659701347,0.005554746370762587,0.023461904376745224,-0.019468756392598152,-0.016898320987820625,0.08004387468099594,0.04338015615940094,-0.012916503474116325,-0.06510841846466064,0.00432359054684639,-0.0046231928281486034,0.0022911205887794495,0.04381376504898071,-0.04145641252398491,0.01809602417051792,0.056402433663606644,-0.041872091591358185,-0.03487446904182434,-0.02342602051794529,0.032161470502614975,0.017995810136198997,-0.004213028121739626,0.04394649714231491,-0.023250248283147812,0.00823683850467205,-0.04225189611315727,0.010832814499735832,0.0333692766726017,-0.0926559716463089,-0.026820171624422073,-0.06147770211100578,-0.08369968086481094,0.03405647724866867,0.03182951733469963,-0.1095769852399826,-0.05229053273797035,-0.045942071825265884,-0.07558704912662506,-0.0025171868037432432,0.04037466645240784,-0.034368887543678284,-0.09044253081083298,-0.07874136418104172,-0.08643773943185806,-0.024556543678045273,-0.06945506483316422,0.014057349413633347,0.002582216402515769,0.07377038896083832,-0.019129253923892975,0.0028788058552891016,2.1230406574897572e-32,0.031620290130376816,-0.08050674945116043,0.033431436866521835,-0.014844649471342564,0.009374757297337055,-0.007800290361046791,-0.03816183656454086,-0.04844772443175316,-0.044850680977106094,-0.02330188639461994,-0.10599014908075333,-0.05361902713775635,0.00008679399616084993,0.035145848989486694,-0.010572614148259163,0.06085176393389702,0.10329825431108475,-0.07628905773162842,-0.05542117357254028,-0.047028813511133194,-0.021196790039539337,0.06334083527326584,0.05493779107928276,0.003435688093304634,0.013714756816625595,0.028793733566999435,-0.07653672248125076,-0.12432213127613068,-0.011395924724638462,0.007572845555841923,0.11307913064956665,-0.033516887575387955,-0.05712619796395302,0.03198537603020668,-0.04478897899389267,-0.02630114182829857,-0.023210937157273293,-0.02599473111331463,-0.055637143552303314,0.02433336339890957,0.07854828983545303,0.036247752606868744,0.1078687459230423,0.03658038750290871,-0.0002934850926976651,-0.028516242280602455,-0.011856951750814915,0.03882138803601265,0.09369295090436935,-0.00026085483841598034,-0.04113460332155228,0.08773800730705261,-0.02605266496539116,-0.053185366094112396,-0.008540481328964233,0.037120647728443146,-0.01917274482548237,0.044518519192934036,-0.039905183017253876,-0.006792088039219379,0.07679929584264755,-0.04876937344670296,0.008141477592289448,0.005988938268274069,0.032149940729141235,-0.010910069569945335,-0.03257561847567558,0.04578942805528641,0.11783953756093979,-0.012536921538412571,-0.11110745370388031,-0.023218637332320213,0.004525609314441681,0.053846050053834915,0.01070009171962738,0.02286531589925289,0.0400334894657135,-0.09060100466012955,-0.06570448726415634,0.00008619258005637676,-0.07097882032394409,-0.025669120252132416,-0.0167723186314106,-0.005608654581010342,0.05063304305076599,0.006739678792655468,-0.017376447096467018,0.0033270330168306828,0.03321220353245735,0.03687429055571556,-0.027974460273981094,0.005227059591561556,-0.04729367047548294,-0.042349737137556076,-0.002867182018235326,-2.021110162783698e-32,0.01835562102496624,-0.018310684710741043,-0.068760946393013,0.08557647466659546,-0.017269667237997055,0.005496537312865257,-0.15812763571739197,0.043804872781038284,-0.03625002130866051,0.001872578519396484,-0.06651441752910614,-0.003659528214484453,0.06009276583790779,-0.08915391564369202,-0.03431965038180351,0.04458250850439072,0.0634087324142456,0.04475979134440422,-0.03990526124835014,-0.03159146383404732,-0.07945902645587921,-0.001824379782192409,0.022091848775744438,-0.1502847671508789,-0.018272733315825462,0.030717099085450172,0.04361279681324959,-0.07078543305397034,-0.03872373327612877,0.027339758351445198,0.029894506558775902,0.07845565676689148,-0.051707301288843155,0.026083528995513916,-0.013964003883302212,-0.033289071172475815,0.05422021076083183,-0.10608949512243271,0.06690382212400436,0.05322861298918724,0.042564909905195236,0.03934994712471962,0.08346880972385406,0.014570798724889755,0.0440368577837944,-0.007735971361398697,-0.04978082701563835,0.04966447129845619,-0.022821180522441864,0.045200444757938385,0.07605133205652237,-0.0015043364837765694,0.015033280476927757,0.03733096644282341,0.1043112725019455,-0.039257969707250595,-0.03108665533363819,-0.026689477264881134,-0.010782587341964245,0.01528781559318304,0.09502026438713074,0.05926427245140076,-0.0807330310344696,-0.08566612005233765,0.04549200460314751,0.060777176171541214,-0.07417157292366028,0.10910175740718842,-0.0230129174888134,0.045943476259708405,0.040625687688589096,-0.10810382664203644,-0.08331150561571121,0.014522334560751915,0.015568260103464127,0.0232748594135046,-0.02513800375163555,0.0482112355530262,0.058833830058574677,0.051910366863012314,-0.05258248373866081,0.019886380061507225,-0.009109432809054852,-0.04147699475288391,0.06527247279882431,-0.005855373572558165,-0.030220862478017807,-0.0003220007929485291,-0.01706264168024063,-0.011392524465918541,-0.005526636727154255,-0.044941727072000504,0.08665086328983307,0.001627521007321775,0.045275039970874786,-6.769027294240004e-8,0.09471362084150314,-0.027916913852095604,-0.003900287440046668,-0.004232301842421293,0.017827250063419342,-0.02882300317287445,0.014402397908270359,0.027297217398881912,-0.015678394585847855,0.10129408538341522,0.002985571976751089,-0.04437163844704628,0.027200233191251755,-0.010954074561595917,0.04412112012505531,0.04810872673988342,0.05661097541451454,0.053741455078125,-0.055582195520401,-0.027639426290988922,0.01677008531987667,-0.05706828832626343,-0.056857623159885406,-0.033875156193971634,-0.07968834787607193,-0.04157169535756111,0.025349197909235954,-0.06708967685699463,-0.00030356511706486344,-0.015531099401414394,-0.006956329569220543,0.05112769082188606,0.02225632779300213,-0.12147568166255951,0.013196080923080444,0.0903380811214447,0.0028798584826290607,-0.004869787488132715,0.04011140763759613,0.00012855039676651359,0.06923259794712067,-0.03392479941248894,0.020305372774600983,-0.06718194484710693,-0.013984606601297855,0.01764225959777832,-0.0018251467263326049,0.030394837260246277,0.004822703078389168,-0.05050516501069069,-0.0690237507224083,0.030938703566789627,0.06714244186878204,0.00628010043874383,-0.07947506010532379,-0.01572776585817337,0.054953429847955704,-0.02203436940908432,0.04897492006421089,0.010988629423081875,0.014060666784644127,0.0035624911542981863,0.019505903124809265,-0.03185880929231644]},{"text":"Fors et Debita iura vicesque superbae Te maneant ipsum: precibus non linquar inultis, Teque piacula nulla resolvent.","book":"Homage to Catalonia","chapter":8,"embedding":[-0.07427160441875458,0.05288352444767952,0.004845636431127787,-0.07371839880943298,-0.1489667147397995,-0.015831736847758293,0.04972216859459877,0.12600596249103546,0.04547252133488655,0.05943598598241806,0.01670587621629238,-0.05214522033929825,0.0312381349503994,-0.04100434109568596,-0.06512223184108734,-0.07074634730815887,0.04019532352685928,-0.044022608548402786,0.09115021675825119,0.005205933470278978,0.09734135866165161,0.0152833741158247,-0.060652170330286026,0.025104746222496033,-0.08586835116147995,0.05969460681080818,-0.023225435987114906,-0.05022840201854706,0.058238424360752106,-0.08191678673028946,0.02068510092794895,0.1622430831193924,0.036999959498643875,-0.03978944569826126,0.03699060156941414,-0.01600412279367447,0.0016878705937415361,-0.005655287764966488,0.058839380741119385,-0.011130000464618206,0.014198275282979012,-0.009358406066894531,-0.04505373165011406,-0.10388077795505524,0.0060783876106143,-0.05363886430859566,-0.01193198375403881,0.10973958671092987,-0.01835581287741661,-0.09312659502029419,-0.0352906808257103,0.0597124844789505,0.020000524818897247,0.06614518165588379,0.03875816985964775,-0.009108183905482292,0.029604759067296982,-0.02528584934771061,-0.003803062019869685,0.01806148700416088,0.035901088267564774,0.04281962662935257,-0.00026690770755521953,0.01203063316643238,0.02808278612792492,0.05921701714396477,0.0292739886790514,-0.025517156347632408,-0.09527134895324707,0.05264779180288315,0.05674869939684868,-0.05559755489230156,-0.02201678976416588,0.09944089502096176,0.000866623071487993,0.018467212095856667,0.019941627979278564,-0.04451574385166168,-0.010237036272883415,-0.0799337700009346,-0.04326301068067551,-0.02801748923957348,-0.005902427714318037,-0.06905315816402435,0.051715441048145294,-0.01755189523100853,0.006980258505791426,-0.07166744023561478,0.11466892808675766,0.008810445666313171,-0.02897975593805313,0.05694599449634552,-0.04414106905460358,-0.036679938435554504,-0.019375663250684738,-0.0034160984214395285,0.011164833791553974,-0.0021008080802857876,0.057120922952890396,0.025530856102705002,0.10451336205005646,-0.03015993721783161,-0.11381286382675171,-0.044892940670251846,-0.13156457245349884,-0.031281087547540665,0.033216822892427444,-0.09201803803443909,0.04196332395076752,0.08197040110826492,-0.042111389338970184,-0.12123401463031769,0.025242649018764496,-0.09158484637737274,-0.09560859948396683,-0.021756796166300774,-0.023969080299139023,-0.03156633302569389,0.09904549270868301,-0.1817370355129242,0.053725097328424454,0.029307246208190918,-0.05267580226063728,0.0012911660596728325,-0.0028782119043171406,-0.04020044952630997,0.01514893677085638,8.39145597180897e-33,-0.055198874324560165,-0.05361529439687729,0.0158853679895401,-0.06172608584165573,-0.07863469421863556,-0.0021501348819583654,-0.015966419130563736,-0.007964727468788624,0.01950152963399887,-0.008550918661057949,-0.06208585575222969,0.05565373972058296,-0.04462400823831558,0.022926023229956627,0.025065358728170395,0.03734169155359268,0.06279940158128738,-0.04330798611044884,0.09177932143211365,0.036832667887210846,-0.017557742074131966,0.00349042983725667,0.028038933873176575,0.01207885891199112,0.0768975242972374,-0.00569432508200407,-0.013201740570366383,-0.013452141545712948,-0.06299545615911484,0.063385009765625,0.05648273974657059,-0.04048026353120804,-0.004794275388121605,-0.022857647389173508,-0.03904915228486061,-0.012806477025151253,0.020598994567990303,0.04262612760066986,-0.014982346445322037,0.015600714832544327,-0.01002777460962534,0.04242999851703644,0.011374755762517452,-0.03266620635986328,0.02511545829474926,0.00047043891390785575,0.041090089827775955,0.07228416204452515,0.10743651539087296,0.0033624896313995123,-0.033996857702732086,-0.051967281848192215,-0.06495355814695358,-0.05433550104498863,-0.018498843535780907,0.054058440029621124,-0.0526028610765934,0.03353933244943619,0.02723650261759758,-0.014391506090760231,-0.009420889429748058,-0.05690796300768852,-0.08778843283653259,-0.028830289840698242,-0.022017942741513252,0.006993085145950317,0.031444936990737915,0.0005836209747940302,0.012147558853030205,-0.030397623777389526,-0.06742513924837112,-0.02926228754222393,0.1298055499792099,0.06755612045526505,0.017798803746700287,0.050753794610500336,-0.03159782290458679,0.028223596513271332,-0.0013045744271948934,0.022483207285404205,-0.05696190893650055,-0.011202333495020866,0.02345442958176136,-0.004217531997710466,0.010943903587758541,0.027713900431990623,0.044014088809490204,0.0031046350486576557,0.0779043510556221,-0.015994848683476448,0.04352424293756485,0.007706602569669485,-0.031544070690870285,0.04616089537739754,0.0648052915930748,-1.003922648390922e-32,-0.027182916179299355,0.004905662499368191,-0.04085111618041992,0.034579575061798096,-0.027832984924316406,0.020525630563497543,0.04272593557834625,-0.0668150782585144,0.0158874299377203,-0.04236490651965141,0.015433074906468391,-0.042240940034389496,0.030787277966737747,-0.048757404088974,-0.017994938418269157,0.04521896317601204,0.05010375753045082,-0.026673980057239532,-0.039176810532808304,-0.026666836813092232,-0.005900171585381031,-0.01482080016285181,-0.00017102899437304586,-0.08372366428375244,-0.008809976279735565,-0.03389720246195793,0.03008435294032097,0.019558876752853394,-0.05720297247171402,0.00992204062640667,0.07079237699508667,-0.006026391871273518,-0.03686922416090965,-0.0017960630357265472,-0.04478976130485535,0.007444749586284161,0.07298524677753448,-0.020193418487906456,-0.023518286645412445,-0.024647604674100876,0.010122755542397499,0.05246410891413689,0.11029023677110672,0.028448978438973427,0.05267026647925377,-0.1128445640206337,-0.029100235551595688,-0.0697835236787796,0.004732771310955286,-0.020608117803931236,0.09772651642560959,0.011271659284830093,0.06495620310306549,-0.04687774181365967,0.0016049033729359508,-0.0000600033781665843,0.007776051759719849,-0.018295204266905785,0.05480850487947464,-0.040715720504522324,0.04595794901251793,0.03470394387841225,0.024576639756560326,0.0561053566634655,0.026562949642539024,-0.02256168983876705,-0.05747118964791298,0.017435668036341667,0.01848439872264862,-0.07256417721509933,0.07911901921033859,-0.04856930673122406,-0.0869884267449379,-0.05434736981987953,-0.05123640224337578,0.06359750032424927,-0.05059923604130745,0.03645113483071327,0.007509327493607998,0.07388313859701157,-0.08147502690553665,0.06580880284309387,-0.028781883418560028,-0.06067213788628578,-0.013352015055716038,-0.02384326606988907,0.0031338476110249758,-0.01853153482079506,0.0016708699986338615,0.007695197593420744,-0.04391753301024437,0.05890348181128502,0.013159716501832008,-0.019901912659406662,0.017633024603128433,-3.906334811176748e-8,-0.051102377474308014,-0.12325810641050339,-0.047924432903528214,0.05472862720489502,0.07509494572877884,-0.10832038521766663,-0.020181870087981224,-0.014623035676777363,0.005566237028688192,-0.023838147521018982,-0.004718264564871788,-0.033056966960430145,-0.05544833838939667,0.014395940117537975,0.06014082580804825,0.010985687375068665,0.016399063169956207,0.02014155313372612,-0.050169993191957474,-0.08223456144332886,0.07677988708019257,-0.007092215586453676,-0.0592413954436779,-0.12112666666507721,-0.011721866205334663,-0.023924028500914574,0.06396491080522537,-0.09474954754114151,0.02024111896753311,-0.008879200555384159,-0.0628756508231163,0.08102155476808548,0.0843045562505722,-0.09742041677236557,0.07511018961668015,0.04271194711327553,0.04639739543199539,0.07780151814222336,-0.05356039106845856,-0.0011380782816559076,0.02779177762567997,0.0033900411799550056,-0.02242095395922661,-0.06003111973404884,0.10105465352535248,-0.02377590537071228,-0.03566920757293701,0.08465395867824554,0.016054900363087654,-0.030193155631422997,-0.06053002178668976,0.022947711870074272,0.03560124337673187,0.04129640385508537,0.01997305266559124,-0.0058075743727386,-0.00832543894648552,-0.008891669102013111,0.007713985163718462,-0.020489905029535294,0.06930644810199738,0.0031634701881557703,0.0199777502566576,0.003174599725753069]},{"text":"Icci, beatis nunc Arabum invides Gazis et acrem militiam paras Non ante devictis Sabaeae Regibus, horribilique Medo Nectis catenas?","book":"Homage to Catalonia","chapter":8,"embedding":[-0.008046459406614304,0.056810472160577774,-0.13460730016231537,-0.04985161870718002,-0.07303985208272934,0.04409134015440941,0.044302910566329956,-0.04436936601996422,-0.0015618678880855441,0.06279385089874268,0.04106838256120682,-0.05098380520939827,0.09853775054216385,-0.069036565721035,-0.019186411052942276,-0.07896468788385391,-0.022908033803105354,0.07632473856210709,-0.0771322250366211,0.05195041000843048,-0.043737880885601044,0.00628630630671978,0.04802118241786957,0.04106224700808525,-0.04796842485666275,0.016950048506259918,0.02397388033568859,0.00025133477174676955,0.03862299770116806,-0.006840317975729704,0.07438758760690689,0.02704988420009613,-0.013191327452659607,0.011388611979782581,0.009340967051684856,0.03637218475341797,0.02342294342815876,-0.07067707180976868,0.06850644201040268,0.018561560660600662,0.0047925557009875774,-0.036653488874435425,-0.02394435927271843,-0.04650011658668518,-0.05229940637946129,0.009385861456394196,-0.04684565216302872,0.0755118727684021,0.038957927376031876,-0.02210664562880993,-0.08110655844211578,-0.05966798961162567,-0.06246482953429222,-0.007920848205685616,0.03271900862455368,-0.05817625671625137,-0.03537352755665779,-0.06397564709186554,0.03242810443043709,-0.02381121553480625,-0.016187146306037903,0.07144173234701157,-0.02131330966949463,0.07114312052726746,-0.02800707332789898,-0.01609889604151249,0.043615520000457764,-0.03412262722849846,-0.0016951673896983266,-0.004459134303033352,0.0572083406150341,-0.015402453951537609,-0.023740101605653763,0.041537895798683167,-0.0640123039484024,0.02803730219602585,-0.03712882474064827,0.012231295928359032,0.04160812869668007,-0.1296418309211731,-0.038952626287937164,-0.009082936681807041,0.03639930859208107,0.025409968569874763,0.04633154347538948,-0.04366402328014374,0.0631612166762352,-0.00041310707456432283,0.10397409647703171,0.01908884197473526,0.08704492449760437,0.052171990275382996,0.08492857962846756,-0.09154441952705383,0.05223767086863518,-0.028049355372786522,0.025852836668491364,-0.04405859112739563,-0.0469779297709465,0.0009683557436801493,0.00244487845338881,-0.0737028568983078,-0.03647153079509735,0.032779525965452194,-0.1148885190486908,-0.07296212017536163,-0.05047176778316498,-0.0036646099761128426,-0.06605570018291473,0.047544751316308975,-0.08472040295600891,-0.06323367357254028,-0.04192117229104042,-0.07309690117835999,0.011392805725336075,0.016663765534758568,0.054654285311698914,-0.12900562584400177,-0.01142608281224966,-0.053432054817676544,-0.011447513476014137,-0.08570320904254913,0.017125427722930908,-0.06764477491378784,0.1121443584561348,-0.00808306597173214,-0.020453089848160744,7.41070577008741e-33,-0.04909854009747505,-0.14387725293636322,-0.042873453348875046,-0.013738451525568962,-0.061852630227804184,0.016654137521982193,-0.052116792649030685,-0.015218767337501049,-0.03963318467140198,0.00021551248210016638,-0.06634844094514847,0.035931166261434555,0.04383103549480438,0.07679469138383865,0.0886942595243454,0.029715746641159058,0.0016889104153960943,-0.024506257846951485,0.0016294466331601143,0.009223053231835365,-0.02688262239098549,0.03877231851220131,0.049325037747621536,0.04289375990629196,0.026143917813897133,-0.016000596806406975,-0.003135454375296831,-0.05908219888806343,-0.03252246603369713,0.03584723174571991,0.08399196714162827,-0.07653529196977615,-0.0360296331346035,-0.05271132290363312,0.030133262276649475,0.025364696979522705,-0.018430406227707863,0.023158935829997063,-0.05548572912812233,-0.015625959262251854,0.0011134298983961344,0.02014135755598545,0.09866472333669662,0.013256867416203022,0.06657461822032928,0.03384311869740486,0.027627095580101013,-0.027151256799697876,0.042150042951107025,-0.002700722310692072,0.03312429040670395,0.022832736372947693,-0.0021998099982738495,-0.020576229318976402,0.03767452761530876,-0.005425779614597559,-0.1340181529521942,0.09681862592697144,-0.051166802644729614,-0.032619278877973557,0.035839494317770004,-0.012628919444978237,0.012043955735862255,0.06742189824581146,0.04817502200603485,-0.036685872822999954,-0.046967752277851105,-0.0010494703892618418,0.09303001314401627,-0.026911627501249313,0.008908374235033989,-0.0156761072576046,0.05167384073138237,0.1034894809126854,-0.0681825801730156,0.07004085928201675,0.0494801364839077,-0.05148199945688248,-0.04416497424244881,-0.0033636668231338263,-0.07727181166410446,-0.016008028760552406,-0.01214357279241085,0.11966054141521454,0.02748304232954979,-0.03564469888806343,-0.023434819653630257,0.004229797516018152,-0.011465851217508316,-0.054543450474739075,0.046461377292871475,0.029717907309532166,-0.007236810401082039,-0.016259070485830307,0.005280767101794481,-8.822459791745592e-33,0.026829125359654427,0.016102738678455353,-0.08442815393209457,0.05114493891596794,0.01406927965581417,0.02256026864051819,0.021776456385850906,0.030268870294094086,0.04478323459625244,-0.01961086131632328,0.03780202567577362,-0.039288658648729324,0.06903664022684097,0.03022134304046631,-0.01613176427781582,-0.016005048528313637,-0.002079552970826626,-0.0346982479095459,-0.01406038273125887,0.007860749028623104,-0.01379049476236105,0.036874957382678986,0.0911170095205307,-0.1167026087641716,0.07568920403718948,-0.027266182005405426,0.01704079657793045,0.02082185633480549,-0.1321060210466385,0.022453246638178825,0.1363750547170639,-0.01920497603714466,-0.09372830390930176,0.018962310627102852,-0.049382708966732025,-0.04001418501138687,0.08084581792354584,0.031012481078505516,-0.05321298912167549,-0.04453042522072792,0.001220628502778709,0.09154850989580154,0.0926613062620163,0.01946495659649372,-0.00935264490544796,-0.01606120727956295,-0.003002333687618375,-0.05273055657744408,-0.06212493032217026,-0.07929828017950058,-0.03420389071106911,0.03562769666314125,0.04504428803920746,-0.024137431755661964,0.1163310781121254,-0.016162395477294922,-0.05132385715842247,-0.04849960282444954,-0.008314020931720734,-0.01349545642733574,0.10279056429862976,0.0659463033080101,0.023950986564159393,-0.017692480236291885,0.05514488369226456,0.07543598115444183,-0.08715987950563431,0.003680724650621414,0.029305053874850273,0.03550364077091217,0.06284226477146149,-0.11021142452955246,-0.10637723654508591,0.01167923491448164,0.000024244947780971415,0.030809814110398293,-0.05662214756011963,0.048452239483594894,-0.022462569177150726,-0.011430976912379265,0.04120469093322754,-0.09012550115585327,-0.1259511560201645,-0.01836352050304413,0.0015295695047825575,-0.028231782838702202,0.027097059413790703,0.03357785940170288,0.0848248302936554,0.011192027479410172,-0.028848156332969666,-0.06740745157003403,0.031152574345469475,-0.009923238307237625,-0.01710725575685501,-3.786845326203547e-8,-0.03882882371544838,-0.0033806932624429464,-0.04098077863454819,0.009198833256959915,-0.0070006935857236385,-0.003728387411683798,-0.03002663515508175,-0.058439623564481735,-0.01385438907891512,0.025031862780451775,0.09175662696361542,-0.04625777527689934,-0.05503619834780693,0.03961004689335823,0.0035875982139259577,-0.011515368707478046,-0.004576030652970076,-0.03679194673895836,-0.07499455660581589,-0.11460269242525101,0.028158677741885185,-0.03744925931096077,-0.07962825894355774,0.012607824057340622,-0.031976763159036636,0.02502165175974369,-0.01913454197347164,-0.07692817598581314,0.030501792207360268,0.0424266941845417,0.036889053881168365,0.06307223439216614,-0.022818848490715027,-0.07746288180351257,-0.03615929186344147,0.06269627809524536,-0.028320960700511932,0.044579748064279556,0.004714799579232931,-0.027274541556835175,0.014588220044970512,0.055423080921173096,0.07683144509792328,-0.030041895806789398,0.07016398012638092,-0.021151313558220863,-0.009746498428285122,-0.006252643186599016,0.0438486710190773,-0.04315177723765373,0.047087766230106354,0.03710925579071045,0.03219493478536606,0.08827520161867142,0.028291936963796616,-0.055504005402326584,0.02329791523516178,0.011645159684121609,-0.0174711961299181,0.08002136647701263,0.04751287400722504,-0.01716097816824913,0.03239068761467934,0.012126276269555092]},{"text":"Puer quis ex aula capillis Ad cyathum statuetur unctis, Doctus sagittas tendere Sericas Arcu paterno?","book":"Homage to Catalonia","chapter":8,"embedding":[-0.040822431445121765,0.0644494891166687,-0.03723105043172836,0.017266087234020233,-0.09486356377601624,0.0017426012782379985,0.049460604786872864,0.07245736569166183,0.09337122738361359,0.055605120956897736,0.05727875232696533,-0.10475414991378784,0.010872866958379745,-0.06710387021303177,-0.11348801851272583,-0.13502702116966248,-0.07761689275503159,0.05417199805378914,0.0010176552459597588,0.0398453064262867,0.008226816542446613,-0.06305892020463943,-0.0343768447637558,0.08697821944952011,0.0422087162733078,0.038057759404182434,-0.06242288649082184,-0.011071151122450829,-0.026881787925958633,-0.03063492849469185,0.014521535485982895,0.05012582242488861,0.08328839391469955,-0.06948530673980713,0.061842504888772964,0.005940867122262716,0.042869772762060165,-0.01086413487792015,0.11600471287965775,0.0017800364876165986,-0.059239909052848816,-0.08594176173210144,-0.04249078407883644,-0.02539326436817646,0.04805324599146843,-0.01353234238922596,-0.006959628313779831,0.08843594789505005,0.022699248045682907,-0.0011665673227980733,-0.017770878970623016,-0.06119152903556824,-0.005055381450802088,-0.042979784309864044,-0.0313410721719265,0.030754541978240013,-0.03729470074176788,-0.03482309356331825,0.020884618163108826,-0.046466223895549774,-0.030308235436677933,0.020897476002573967,-0.10123252123594284,0.04130232706665993,0.028888698667287827,0.0223042331635952,-0.0386495441198349,-0.05331089347600937,-0.05299192667007446,0.05431002750992775,0.06915609538555145,-0.013960028998553753,-0.04932677373290062,-0.03366662934422493,-0.021804843097925186,0.08781763911247253,-0.00751685444265604,-0.014417721889913082,-0.05665268376469612,-0.057428061962127686,-0.005980503745377064,-0.02178766205906868,-0.03764767199754715,0.001217676093801856,-0.026883987709879875,0.02408413030207157,0.030687248334288597,0.009162400849163532,0.05256600305438042,-0.04457912966609001,-0.006983224768191576,0.005809228401631117,-0.03834778815507889,-0.04268042370676994,-0.003511992748826742,-0.0017233791295439005,0.018050266429781914,-0.028581634163856506,0.018836217001080513,0.041805438697338104,0.06168530881404877,0.0489053949713707,0.07352534681558609,0.015290474519133568,-0.05701300874352455,0.012880370020866394,-0.10933571308851242,-0.11585066467523575,0.0018421508138999343,0.017920775339007378,-0.11140991747379303,-0.11365685611963272,-0.11214304715394974,-0.03582987189292908,-0.003344336524605751,0.024620339274406433,0.014577372930943966,-0.09878400713205338,-0.030635841190814972,-0.09013764560222626,-0.013599487952888012,-0.07818938791751862,-0.03703048452734947,-0.019086040556430817,0.010069487616419792,-0.020945221185684204,0.025871412828564644,7.585024235474663e-33,-0.12665525078773499,-0.02885311469435692,0.0014168079942464828,-0.03106355480849743,-0.01672568917274475,0.04331566393375397,-0.06720292568206787,-0.03528342768549919,-0.03893235698342323,-0.02593880519270897,-0.10643278807401657,0.011523389257490635,0.02202511578798294,-0.03475353121757507,0.02945643477141857,0.049916982650756836,0.07795092463493347,-0.026420418173074722,-0.015981486067175865,-0.0030435831286013126,-0.04331005737185478,0.04141537845134735,0.024493277072906494,-0.016202667728066444,0.0036278420593589544,0.023125071078538895,0.007501258514821529,-0.04315675050020218,-0.00776523444801569,0.045494962483644485,0.08740609884262085,0.012908972799777985,0.01248124148696661,0.0004870772245340049,0.009681733325123787,0.07253540307283401,0.006966155022382736,-0.030837204307317734,0.0011316254967823625,0.007111541926860809,0.04239068925380707,0.04485098272562027,0.12602350115776062,0.045783352106809616,0.046000853180885315,0.03432994708418846,0.03421824052929878,-0.016673242673277855,0.11682016402482986,-0.032218992710113525,-0.036238376051187515,-0.0015498667489737272,-0.09792668372392654,-0.038486454635858536,0.02797561138868332,0.00021547167852986604,-0.0904514491558075,0.06749699264764786,-0.05043759196996689,-0.048496708273887634,0.038895901292562485,-0.032496266067028046,0.025016749277710915,-0.06907187402248383,-0.024782028049230576,0.05970950797200203,-0.027977202087640762,0.04867520183324814,0.07531971484422684,0.04448319226503372,-0.06024598702788353,0.009270609356462955,-0.0026295168790966272,0.06028134748339653,-0.024089911952614784,0.09469398856163025,0.10997852683067322,0.009798548184335232,-0.019398119300603867,0.017220642417669296,-0.08545616269111633,0.043203700333833694,0.036401085555553436,0.034968920052051544,0.10867281258106232,0.009883822873234749,-0.040985871106386185,0.0443301685154438,0.03442332148551941,0.04458623006939888,0.0371355339884758,0.012529296800494194,-0.01002278458327055,-0.010209591127932072,-0.014946183189749718,-7.76220282555426e-33,0.00297280284576118,-0.03984147310256958,-0.07008010894060135,0.07757008820772171,-0.031185034662485123,-0.02793673612177372,-0.09738819301128387,0.10436905175447464,0.03621850907802582,-0.07021000981330872,0.00400120485574007,-0.06706308573484421,0.05322246998548508,-0.024416843429207802,-0.035488784313201904,0.07286646962165833,0.08213748782873154,0.051474057137966156,-0.01959991827607155,-0.01708434708416462,-0.04082537814974785,0.07124966382980347,0.008575177751481533,-0.04240474849939346,0.024083001539111137,-0.043632857501506805,0.00933918822556734,-0.06374368071556091,-0.06459161639213562,0.006694464478641748,0.017410146072506905,-0.020018484443426132,-0.027300309389829636,0.02148590423166752,-0.0010326695628464222,0.013983034528791904,0.12166895717382431,0.00869128480553627,-0.0042589143849909306,0.026881534606218338,0.0015203700168058276,0.02436859905719757,0.05190599709749222,0.014074449427425861,0.09672249853610992,-0.028621835634112358,-0.04951678588986397,0.05233815312385559,-0.040576592087745667,0.056589022278785706,0.0909317135810852,-0.02800983004271984,0.029204227030277252,-0.009974454529583454,0.07179883122444153,0.03690533712506294,0.045509666204452515,-0.031354065984487534,-0.06635887920856476,-0.05790763720870018,0.11514963209629059,0.023167384788393974,-0.015348461456596851,-0.011383035220205784,0.029172038659453392,-0.0246703140437603,-0.07027546316385269,0.04957721754908562,-0.07713842391967773,0.0627739280462265,0.05089782550930977,-0.13948093354701996,-0.08959199488162994,-0.009189783595502377,-0.02562856860458851,0.02571258321404457,-0.0793129950761795,-0.008001036942005157,0.03532765433192253,-0.0006091529503464699,-0.1073160320520401,0.0023447915446013212,-0.01191815733909607,-0.007590298540890217,0.012891911901533604,-0.0707884430885315,0.030284490436315536,-0.015923716127872467,0.03645586967468262,-0.031038789078593254,0.013058184646070004,0.010711955837905407,0.05796217918395996,-0.022273939102888107,0.00038010900607332587,-3.1236073283480437e-8,0.06226811185479164,-0.03190388157963753,-0.062007807195186615,-0.0001889476552605629,0.023416582494974136,-0.037635888904333115,-0.030798599123954773,-0.034348227083683014,-0.040710389614105225,-0.00047947271377779543,-0.011162247508764267,0.021818457171320915,-0.05865350365638733,-0.016953419893980026,-0.011853860691189766,0.12228173017501831,0.10796710848808289,0.06032627075910568,-0.028288360685110092,-0.0969833955168724,0.07615943253040314,0.017248207703232765,-0.01918472722172737,-0.037656355649232864,-0.05867447331547737,0.005837650038301945,0.0518869049847126,0.0470016784965992,-0.04351865127682686,-0.055226877331733704,0.04816059768199921,-0.0052785929292440414,-0.03288400173187256,-0.09166597574949265,0.011486897245049477,0.08813682198524475,-0.011041729710996151,-0.002292071934789419,-0.012838304974138737,0.06914932280778885,0.06758183240890503,0.0383509062230587,0.022857483476400375,0.0063822572119534016,0.024893630295991898,-0.004747683648020029,0.07056201249361038,-0.015087146311998367,-0.00263902242295444,-0.04447607696056366,-0.09532275050878525,0.02180764079093933,0.07953190058469772,-0.0019033263670280576,0.023133989423513412,0.019162273034453392,0.10919400304555893,0.021873710677027702,-0.002788400510326028,0.025485126301646233,0.05251381918787956,0.03456275910139084,0.04106062650680542,0.013214658945798874]},{"text":"O Venus, regina Cnidi Paphique, Sperne dilectam Cypron et vocantis Ture te multo Glycerae decoram Transfer in aedem.","book":"Homage to Catalonia","chapter":8,"embedding":[-0.00991333182901144,-0.03218426927924156,-0.0005198681028559804,0.0037836977280676365,-0.05103420466184616,0.038065727800130844,0.04890929162502289,0.04109819233417511,0.0037576814647763968,0.04745394363999367,0.08378390222787857,-0.02996036969125271,-0.044135358184576035,-0.006699124351143837,-0.11934022605419159,-0.020793642848730087,-0.015858080238103867,0.09675675630569458,-0.01801789179444313,0.11888100206851959,0.020426971837878227,-0.04097791388630867,0.003699731081724167,0.05590568855404854,-0.07275883108377457,0.036200422793626785,-0.06211866810917854,0.029036670923233032,0.0844266265630722,-0.09004798531532288,0.02629314735531807,0.09958042949438095,-0.02561798132956028,0.012430202215909958,-0.04033338278532028,0.053933050483465195,-0.07699335366487503,-0.10491573065519333,0.04151082783937454,-0.0025133995804935694,0.07162509113550186,-0.04895627498626709,-0.0665399357676506,-0.009260948747396469,-0.01662135310471058,0.05059853196144104,0.017750583589076996,0.11247704923152924,0.025030234828591347,-0.06281957775354385,-0.06630608439445496,-0.0539158396422863,-0.13529619574546814,0.0048933494836091995,-0.08006531745195389,0.006747450679540634,-0.02432488091289997,-0.06421911716461182,0.0031489261891692877,-0.04059740900993347,-0.02394123561680317,0.07496674358844757,-0.0038063775282353163,0.07663092762231827,-0.06660070270299911,-0.01707068644464016,-0.02790997549891472,0.0486077181994915,-0.09912796318531036,0.0257057324051857,0.02986164391040802,-0.05935165286064148,-0.09725459665060043,0.04238429293036461,-0.05083329603075981,0.07733073830604553,0.008344361558556557,-0.04926694929599762,-0.0334341824054718,-0.011064511723816395,0.06140914559364319,-0.0008569615893065929,0.0007219712133519351,0.03816187381744385,-0.015880977734923363,0.025990454480051994,-0.02845698781311512,0.00680031580850482,-0.04032794013619423,0.0083870068192482,0.06768202781677246,0.03741251304745674,0.0026299282908439636,-0.052690956741571426,-0.04839053377509117,0.03078259900212288,0.03770945593714714,-0.04347992688417435,0.07337699830532074,-0.04413510113954544,-0.03936442732810974,0.03977809473872185,-0.05317872017621994,0.03461657091975212,-0.11409685015678406,-0.004904873203486204,0.0011190335499122739,-0.10029669851064682,0.02927672304213047,0.03415893018245697,-0.11556041240692139,-0.013233966194093227,-0.01325821503996849,-0.0252026729285717,-0.030132602900266647,0.05354774743318558,-0.03260098770260811,-0.04870893061161041,-0.03690061345696449,-0.051358096301555634,-0.04813731461763382,-0.05780146270990372,0.048744868487119675,0.018895862624049187,-0.013635728508234024,-0.027030227705836296,-0.012782560661435127,9.795996866256918e-33,-0.0020524528808891773,-0.08393809199333191,0.03727627918124199,0.05335868149995804,0.023437388241291046,0.019477011635899544,-0.026054659858345985,-0.04491084814071655,-0.009791077114641666,-0.08343104273080826,-0.1490248739719391,-0.12346912175416946,0.020699666813015938,0.04508308321237564,-0.021689293906092644,0.08974765241146088,0.042497940361499786,-0.042708735913038254,0.06993716210126877,-0.023740502074360847,-0.03472820669412613,0.05097773298621178,0.02415093593299389,-0.0043499707244336605,-0.006720583885908127,0.03480443358421326,-0.0694851353764534,-0.04737120121717453,0.014332709833979607,-0.01613682508468628,0.05866684764623642,-0.051246050745248795,-0.03877222537994385,0.03763151913881302,-0.026077933609485626,-0.0016694357618689537,0.01676100492477417,-0.10591083019971848,0.04437456279993057,0.03913214057683945,-0.02389729954302311,-0.017731746658682823,0.09371791779994965,-0.009487648494541645,0.022791191935539246,0.02138422802090645,-0.020364854484796524,-0.03322615474462509,0.0565895214676857,0.05602984502911568,0.015409394167363644,0.0028089904226362705,-0.033685773611068726,-0.0231583584100008,-0.016319306567311287,0.06685533374547958,-0.04002101346850395,0.06915808469057083,-0.03481534123420715,-0.012138372287154198,0.0038559723179787397,0.029331961646676064,0.01162639819085598,-0.039763662964105606,0.04158668592572212,0.06116967275738716,-0.12213008105754852,-0.02393556572496891,0.035261474549770355,0.02949386276304722,-0.07104821503162384,-0.059907276183366776,0.049501992762088776,0.028173306956887245,0.10315411537885666,0.07583043724298477,-0.014636633917689323,-0.08566098660230637,0.0040219621732831,0.013660745695233345,-0.11321436613798141,0.025044165551662445,0.006742559373378754,0.01865425519645214,0.08311676979064941,-0.021232757717370987,-0.010262773372232914,0.015392997302114964,0.07594683766365051,0.06320253759622574,0.10803268104791641,-0.04110877215862274,-0.03593967854976654,-0.04423544555902481,-0.03608037531375885,-9.727457464080317e-33,0.007414807565510273,-0.005013228859752417,-0.02032848261296749,0.11498498171567917,-0.024321477860212326,-0.008138667792081833,-0.10467906296253204,0.053548771888017654,0.022189946845173836,-0.0044373804703354836,-0.016692491248250008,-0.01062690932303667,0.08874942362308502,-0.12087413668632507,0.0018487301422283053,0.010994456708431244,0.07637158781290054,0.023831842467188835,-0.05909153074026108,-0.0463123582303524,-0.07087038457393646,-0.0035687400959432125,0.029296066612005234,-0.10140954703092575,0.030162498354911804,0.012740285135805607,0.026348663493990898,-0.0003886632912326604,0.020243721082806587,0.03141762688755989,0.030471203848719597,0.042202457785606384,-0.04562466964125633,0.04133283346891403,-0.004131419118493795,0.05322914943099022,0.10887198895215988,-0.007815598510205746,-0.012335536070168018,-0.0021353524643927813,-0.023863758891820908,-0.022722365334630013,0.03457922860980034,0.018326515331864357,0.08020247519016266,0.06326562911272049,-0.050692420452833176,0.01961614564061165,0.019958654418587685,0.03776892274618149,0.05746717005968094,0.0716155618429184,0.008179941214621067,0.039321016520261765,0.1171349510550499,-0.038160569965839386,0.056039031594991684,-0.018879326060414314,0.008457318879663944,-0.06409654021263123,0.12451568990945816,0.007133436389267445,-0.07105837017297745,-0.09221534430980682,0.04560551047325134,0.08308333903551102,-0.0115813622251153,0.07622653245925903,-0.017696982249617577,0.02046247571706772,0.07360073179006577,-0.042735565453767776,-0.06851857155561447,0.0034080559853464365,0.026730380952358246,0.030056118965148926,-0.05115794762969017,-0.03367152810096741,0.02033902145922184,0.08126793801784515,-0.05448460951447487,-0.007716438267379999,-0.004945695865899324,-0.0025148612912744284,0.035239532589912415,-0.02629462443292141,-0.015181198716163635,0.007802140433341265,-0.045681752264499664,-0.02357793040573597,-0.036707013845443726,-0.027758527547121048,0.04315727576613426,-0.05490957200527191,0.009360125288367271,-3.819328853182924e-8,0.025093546137213707,-0.07846958935260773,0.052180301398038864,-0.04218233749270439,0.06410208344459534,-0.006618035025894642,-0.00378570519387722,0.0674111619591713,-0.009098482318222523,0.03530081361532211,-0.07732122391462326,0.032110415399074554,0.053243111819028854,0.015700584277510643,0.06459000706672668,0.017536085098981857,0.09839921444654465,-0.024921685457229614,-0.04617384448647499,-0.09876476228237152,0.0009551028488203883,-0.020732805132865906,-0.09767468273639679,0.015871185809373856,-0.034004051238298416,-0.07452231645584106,0.08616169542074203,0.00041775000863708556,0.01528782956302166,-0.06400761008262634,-0.02889048308134079,0.005222383886575699,0.06172514334321022,0.004280260764062405,0.008423622697591782,0.05070723593235016,0.02163059078156948,0.01688384637236595,0.041337449103593826,0.018298223614692688,0.020067468285560608,-0.04206535220146179,-0.00009138634777627885,-0.0024579884484410286,0.038603950291872025,0.04309326037764549,0.012391407042741776,-0.031742163002491,-0.0007981917588040233,-0.03365202248096466,0.07581542432308197,0.013377189636230469,0.08932330459356308,-0.01897648349404335,-0.07614012062549591,-0.06750597804784775,0.023661082610487938,-0.021800419315695763,0.046529293060302734,-0.05289958044886589,-0.04348031431436539,0.045036133378744125,0.06194512918591499,-0.04107298702001572]},{"text":"Quid dedicatum poscit Apollinem Vates?","book":"Homage to Catalonia","chapter":8,"embedding":[-0.01896693743765354,0.05768952518701553,-0.049318812787532806,-0.11154161393642426,-0.08688851445913315,-0.00012248345592524856,0.15855473279953003,0.0986078754067421,0.05194740742444992,0.0995141789317131,0.07180941104888916,-0.029784806072711945,0.03421047329902649,-0.1004016175866127,-0.11102873086929321,-0.04179598391056061,-0.031133199110627174,0.10284257680177689,0.051833465695381165,0.022631363943219185,0.03199336677789688,0.03344977647066116,0.0007161440444178879,0.020883087068796158,-0.04132569208741188,0.0755869671702385,-0.05478507652878761,0.0008567387121729553,-0.02297789417207241,-0.08385427296161652,0.0719442069530487,0.04330285266041756,0.018473148345947266,0.012997398152947426,0.027660245075821877,0.029187338426709175,-0.025395812466740608,-0.008215201087296009,-0.012814123183488846,0.03510509431362152,-0.05962204188108444,0.05910014361143112,-0.07605018466711044,0.04368415102362633,0.007813558913767338,0.04034903645515442,-0.0033699909690767527,0.09538191556930542,-0.0473809652030468,0.014718594029545784,0.04341629147529602,0.016912680119276047,0.003959397319704294,-0.0034229138400405645,-0.07853512465953827,0.04824723303318024,0.004786726087331772,0.04292581230401993,-0.04092920571565628,-0.07382836937904358,-0.003698864486068487,0.016197780147194862,-0.0379648394882679,-0.0126723637804389,-0.013808264397084713,0.0008463692502118647,0.030777407810091972,-0.051516950130462646,-0.0781005248427391,-0.005487264133989811,0.022557413205504417,-0.004659748636186123,-0.009939825162291527,0.005853224080055952,-0.030687076970934868,0.10753292590379715,-0.11514441668987274,-0.10456225275993347,-0.017927030101418495,-0.07033591717481613,0.045843299478292465,-0.029066380113363266,-0.0421321764588356,0.04265729710459709,0.059320490807294846,-0.0037192031741142273,0.04264448583126068,-0.0021041089203208685,0.010176798328757286,-0.07563961297273636,0.014207114465534687,-0.010615923441946507,-0.03156279772520065,-0.022244032472372055,-0.03064884804189205,0.05123686045408249,-0.026572903618216515,-0.00027952290838584304,0.013272350654006004,0.043554648756980896,-0.021147647872567177,-0.0022978459019213915,0.018738068640232086,0.11253830790519714,-0.09234175086021423,-0.05191477760672569,-0.017934203147888184,-0.0505983904004097,0.10059351474046707,0.02969476766884327,-0.09163123369216919,-0.05696630850434303,-0.019615549594163895,-0.07562466710805893,0.056917037814855576,0.030171474441885948,0.04047030210494995,-0.10096327215433121,0.01992068812251091,-0.12394747883081436,0.04852164909243584,-0.05150659382343292,-0.060252293944358826,0.024171380326151848,-0.0207426305860281,-0.07656680792570114,0.04305271431803703,4.077985696280324e-33,-0.059495724737644196,-0.0880461037158966,0.05434050410985947,0.02233930677175522,-0.04854027181863785,0.0025019333697855473,-0.06452992558479309,-0.07788532227277756,0.030168838798999786,-0.0270986445248127,-0.07584840804338455,-0.03081371821463108,0.03747953847050667,0.0684523731470108,0.0037036617286503315,0.000013034103176323697,0.042241308838129044,0.02023979276418686,0.05289582163095474,0.00015194677689578384,-0.05914108082652092,0.09300591796636581,-0.005693396553397179,0.02340330369770527,0.05194307491183281,0.002138670766726136,0.006534956395626068,-0.0307319238781929,0.004260564688593149,0.021894095465540886,0.06070736423134804,-0.01625709980726242,-0.025407785549759865,0.013209332711994648,-0.03995618224143982,-0.02105657570064068,-0.0038792581763118505,0.0135897696018219,-0.012161529622972012,-0.03973675146698952,-0.031993623822927475,-0.027261005714535713,0.09017118066549301,-0.003087810706347227,0.04637068510055542,0.032387733459472656,0.052443020045757294,0.05712515488266945,0.022850677371025085,-0.00006658772326773033,0.02262183465063572,0.013029942288994789,-0.03637116402387619,-0.029995527118444443,0.00875498540699482,0.039889752864837646,-0.048330895602703094,0.028168151155114174,0.015474055893719196,0.011985184624791145,0.10039639472961426,0.04785795137286186,0.006085949018597603,-0.027128182351589203,0.06027604267001152,-0.023730970919132233,-0.053200893104076385,-0.043690089136362076,0.10659170895814896,0.09567729383707047,-0.0839262455701828,-0.028539182618260384,-0.015125210396945477,0.029663804918527603,-0.054304562509059906,0.08497688919305801,0.04636526107788086,0.05363134667277336,-0.10594860464334488,0.026358183473348618,-0.025592178106307983,-0.09582502394914627,-0.021340135484933853,-0.06388936936855316,0.04694005101919174,-0.018455801531672478,-0.014660435728728771,0.0014606076292693615,0.039675522595644,-0.004808730911463499,0.03185255825519562,0.07407941669225693,0.03854887932538986,0.03674950823187828,-0.011550272814929485,-4.0640715165864346e-33,-0.030591385439038277,-0.021597454324364662,-0.06947803497314453,0.10998276621103287,-0.02068149298429489,0.07950478792190552,-0.08313653618097305,0.04972810670733452,-0.024715106934309006,-0.043848663568496704,-0.06844688206911087,-0.057384975254535675,0.038448162376880646,-0.011858335696160793,-0.037992820143699646,0.0933418795466423,0.07631178945302963,0.006751128006726503,-0.03895466402173042,0.00938035361468792,-0.04672633111476898,0.08274312317371368,-0.004863556008785963,-0.03761351853609085,-0.04677413031458855,-0.03381619602441788,0.01134765800088644,-0.11603347957134247,-0.08988432586193085,-0.014147626236081123,0.028942011296749115,0.00717409560456872,0.03490021824836731,0.07602181285619736,-0.04179143160581589,-0.024833377450704575,0.10769817978143692,-0.020764878019690514,-0.060168251395225525,0.007865101099014282,-0.07106305658817291,0.021480830386281013,0.07727589458227158,-0.009088682010769844,0.04294764623045921,-0.03598426282405853,-0.04613647982478142,0.010955465957522392,-0.0242071021348238,0.011641647666692734,0.06819000840187073,0.04143843054771423,0.06593652814626694,-0.05211814492940903,0.08164136111736298,-0.009193731471896172,-0.033052265644073486,-0.03277195617556572,-0.018992068246006966,0.0077819316647946835,0.10179272294044495,0.030369922518730164,0.015132525004446507,-0.041217245161533356,0.05239351838827133,-0.02270498126745224,-0.058261822909116745,0.054069165140390396,-0.023281797766685486,0.053837645798921585,0.05623817443847656,-0.05108999088406563,-0.0573546402156353,0.016710182651877403,-0.0013159686932340264,0.03276464715600014,0.009759566746652126,0.022022174671292305,-0.0059651262126863,-0.005216192454099655,-0.10080040246248245,0.021959232166409492,-0.05141733959317207,-0.04665182903409004,-0.04281163588166237,-0.06278034299612045,-0.015303180553019047,-0.03444480895996094,0.0401286818087101,0.01197483204305172,-0.017023757100105286,-0.024061385542154312,0.033078670501708984,-0.01073112990707159,0.01925988681614399,-2.2619049744321273e-8,0.02133043110370636,-0.037571586668491364,-0.055106040090322495,0.02909412607550621,0.06411420553922653,-0.10240116715431213,0.04813285544514656,0.05207214131951332,-0.035012174397706985,-0.01314857229590416,0.06070919334888458,0.025739332661032677,-0.053132325410842896,0.08152709901332855,0.06327196955680847,0.08399058878421783,0.04845400154590607,0.06603340804576874,-0.03445466607809067,-0.05543963983654976,0.04370270296931267,0.02102775126695633,-0.061205845326185226,-0.010883758775889874,-0.0009110227692872286,0.04543022811412811,0.06506863236427307,-0.06607513129711151,0.014245299622416496,0.022406136617064476,0.04101928696036339,0.04822012409567833,-0.07239246368408203,-0.15486662089824677,-0.035400282591581345,0.0252305306494236,-0.002818124834448099,0.04742387309670448,-0.034539684653282166,0.04467986524105072,0.009659908711910248,0.019832978025078773,0.09694378823041916,0.0002503106079529971,0.02953144535422325,-0.001261450699530542,0.017463048920035362,-0.040612027049064636,-0.011645293794572353,-0.007744094356894493,-0.06175694242119789,0.06289658695459366,0.06191272661089897,0.0005373748717829585,-0.05466308072209358,-0.022997695952653885,0.059802375733852386,-0.08098525553941727,-0.0744675025343895,-0.07389378547668457,0.03904610872268677,0.04528732970356941,0.05793619528412819,0.026199884712696075]},{"text":"Non opimae Sardiniae segetes feracis, Non aestuosae grata Calabriae 5 Armenta, non aurum aut ebur Indicum, Non rura, quae Liris quieta Mordet aqua taciturnus amnis.","book":"Homage to Catalonia","chapter":9,"embedding":[0.03326313570141792,0.01247220765799284,-0.005699007771909237,0.04376529902219772,-0.0980207622051239,-0.04372549429535866,0.08793487399816513,-0.04305262863636017,0.012627278454601765,-0.029919883236289024,0.0816434919834137,-0.16495652496814728,0.012442989274859428,0.00842223595827818,-0.10792756080627441,-0.06605846434831619,0.07035553455352783,0.02263607643544674,0.020994389429688454,0.017550867050886154,-0.0005742600769735873,-0.023924143984913826,0.03172668442130089,0.047417979687452316,-0.051921017467975616,-0.0180647112429142,-0.01964988373219967,0.019240649417042732,0.004326372407376766,-0.05707556754350662,-0.008898223750293255,0.06190405413508415,0.10874782502651215,-0.04481218010187149,0.01915251649916172,0.020718500018119812,0.025502687320113182,-0.01887858659029007,0.06656359136104584,0.12432245910167694,-0.03907128423452377,-0.03993798419833183,-0.006858017761260271,0.0021313654724508524,-0.03457142040133476,-0.05387226119637489,-0.0029650412034243345,-0.03374775871634483,-0.01742555759847164,-0.040501512587070465,-0.08701740950345993,-0.02189597301185131,-0.1058816909790039,0.01882113702595234,-0.08071611821651459,-0.04151519015431404,0.0218650009483099,-0.022497693076729774,0.01218993030488491,-0.05025026574730873,0.05883830040693283,-0.013364609330892563,-0.008554460480809212,0.021005962044000626,-0.08131706714630127,0.1155230924487114,-0.10399036109447479,-0.022458432242274284,-0.05127514898777008,-0.06369519978761673,0.0775579884648323,-0.009722010232508183,0.028381451964378357,0.04904685169458389,-0.05101557821035385,0.04429392144083977,0.02285548858344555,-0.020148344337940216,-0.0430709533393383,-0.03792046383023262,-0.07044927030801773,-0.0486864410340786,-0.08329698443412781,0.04341006651520729,0.08593245595693588,0.006789689883589745,0.04194364324212074,0.004714954644441605,-0.011993909254670143,-0.004093026276677847,-0.044268086552619934,0.10587120801210403,-0.03825858235359192,-0.0810253843665123,0.06417763233184814,0.02627296932041645,-0.038714099675416946,-0.047177184373140335,-0.08890507370233536,0.024173932150006294,-0.0016106239054352045,-0.02752549760043621,0.040551140904426575,0.08219997584819794,-0.10873190313577652,-0.019858742132782936,-0.05396481975913048,-0.044462695717811584,-0.02869686484336853,-0.019742805510759354,-0.06917408853769302,-0.049610670655965805,-0.04891219362616539,-0.0672626718878746,0.016244687139987946,0.01884535700082779,0.021084433421492577,-0.09261059761047363,-0.009701849892735481,-0.0030962699092924595,0.046153564006090164,-0.0007689552148804069,0.002984649036079645,-0.010779604315757751,0.04140926152467728,0.010081524029374123,0.020740220323204994,1.6181091162091575e-32,0.030911387875676155,-0.042250629514455795,0.010699776001274586,-0.04284530505537987,0.021323684602975845,0.012351451441645622,-0.034207068383693695,-0.04796978831291199,-0.017924632877111435,-0.043446607887744904,-0.04185616225004196,-0.005385604687035084,0.010179504752159119,-0.01710621453821659,0.05654012784361839,0.06889573484659195,0.1249239444732666,-0.03426722437143326,-0.027588900178670883,-0.07899261265993118,-0.036250706762075424,0.09424810111522675,0.01531448308378458,-0.044314756989479065,-0.015930939465761185,-0.025531001389026642,0.0025370146613568068,-0.09213832765817642,-0.03196055442094803,0.009663918055593967,0.017950810492038727,-0.030160289257764816,0.03670557588338852,-0.006116833537817001,0.015133854001760483,0.00024880823912099004,-0.02322789654135704,0.017021728679537773,0.012867779470980167,0.04666079580783844,0.027793310582637787,0.008683796040713787,0.11748961359262466,-0.008062913082540035,0.08211807161569595,-0.05313677713274956,0.0012869066558778286,0.03429991006851196,0.09376693516969681,0.038254041224718094,0.08342201262712479,-0.026043830439448357,-0.04849283769726753,0.04572649300098419,0.013895601965487003,0.05503278598189354,-0.0751408264040947,0.05590501055121422,-0.07549694180488586,0.07226939499378204,0.06034175306558609,-0.05362873524427414,0.02031705714762211,-0.04375830292701721,0.017827097326517105,0.04633472487330437,-0.07503831386566162,-0.034874338656663895,0.06900178641080856,-0.042448535561561584,-0.04041624814271927,-0.08775069564580917,0.07549269497394562,0.10354124009609222,0.04006659612059593,-0.0004824118805117905,0.01490381732583046,-0.03829905763268471,-0.02997448854148388,0.004679333418607712,-0.025911927223205566,0.02650458924472332,0.0005130485515110195,0.07197436690330505,0.011555401608347893,0.06568414717912674,0.025142639875411987,0.009377699345350266,0.05710704252123833,0.04296579957008362,-0.018269961699843407,-0.01496809534728527,-0.014804026111960411,-0.06796708703041077,0.01967284269630909,-1.4709608803100174e-32,0.01303930301219225,-0.03022601641714573,-0.06900697201490402,-0.024652710184454918,-0.015704473480582237,0.0011494179489091039,-0.02152213267982006,0.07678824663162231,0.017993716523051262,0.02304227277636528,-0.009800158441066742,-0.05090497434139252,0.10471653938293457,-0.12282173335552216,-0.03691725805401802,0.0766325518488884,0.10157621651887894,0.023790152743458748,0.03504938632249832,-0.01104658655822277,-0.014641431160271168,0.0035939281806349754,0.07035553455352783,-0.023730119690299034,-0.04321569949388504,0.006247089244425297,-0.002130234381183982,0.001807640539482236,-0.10098843276500702,-0.023134693503379822,-0.03443225100636482,0.0631863996386528,0.029049275442957878,-0.04901453107595444,-0.031981948763132095,0.07042758911848068,0.007994725368916988,-0.08002059161663055,-0.016906285658478737,0.055293384939432144,-0.05758626386523247,-0.02772931009531021,0.14570850133895874,0.031595826148986816,0.043287284672260284,0.010961643420159817,-0.07047230750322342,0.020185960456728935,-0.04077453166246414,-0.0019915441516786814,0.018301762640476227,-0.045473363250494,-0.00696231983602047,0.0585731603205204,0.1009647324681282,-0.04903961345553398,-0.015424046665430069,0.014754893258213997,-0.03806322067975998,-0.033491820096969604,0.10981517285108566,0.015915721654891968,0.01999060809612274,-0.061988092958927155,0.06272141635417938,-0.03238220140337944,-0.13101932406425476,0.005310322158038616,-0.036723874509334564,0.05047367513179779,0.045949824154376984,-0.10701465606689453,-0.11005079746246338,-0.0413551963865757,-0.023180678486824036,0.03512374684214592,-0.08547373861074448,0.005277453456073999,0.008811289444565773,0.004213927313685417,-0.031375762075185776,0.05164038762450218,0.003449369454756379,0.0010469438275322318,-0.044061966240406036,-0.07193980365991592,-0.003457435639575124,-0.06395239382982254,0.06954816728830338,0.001535936607979238,0.004332120064646006,0.021334247663617134,0.06757184863090515,-0.00992752704769373,0.08300427347421646,-5.252703516589463e-8,0.09811756759881973,-0.021174127236008644,0.017959587275981903,0.05761207267642021,-0.023837145417928696,-0.06388179957866669,0.005989937577396631,-0.03542670980095863,-0.009061209857463837,0.04853341728448868,-0.037605393677949905,-0.05826741084456444,0.01721896603703499,-0.02721053548157215,0.0014133031945675611,0.04325474426150322,0.09170926362276077,0.03840489685535431,-0.03420068696141243,-0.09397801011800766,0.009065534919500351,0.03521769493818283,-0.0777374878525734,-0.045472562313079834,-0.04810044541954994,-0.02459256909787655,0.07234128564596176,-0.11387719959020615,0.008052530698478222,0.00420757383108139,0.08684378117322922,-0.02753513678908348,0.07267843186855316,-0.09647981077432632,-0.004260906483978033,0.08799176663160324,-0.06294946372509003,0.0335470549762249,-0.021879633888602257,-0.03089330531656742,-0.011622877791523933,0.026418909430503845,0.034401535987854004,-0.02629888616502285,0.038909219205379486,0.014098640531301498,-0.033362697809934616,-0.03651760518550873,0.01743561215698719,0.00991489365696907,0.031226998195052147,0.0028552066069096327,0.09096592664718628,0.00038367105298675597,-0.00793202593922615,0.0026353972498327494,0.047835662961006165,0.03425094857811928,0.04848131537437439,0.04694143310189247,-0.0038085002452135086,0.09107024222612381,0.007523162756115198,0.03727298974990845]},{"text":"Me pascunt olivae, 15 Me cichorea levesque malvae.","book":"Homage to Catalonia","chapter":9,"embedding":[0.04052385687828064,0.08462338149547577,0.00832058023661375,-0.0006785742589272559,-0.09491480141878128,0.01985127665102482,0.052839942276477814,0.11651083081960678,0.10758766531944275,0.027575476095080376,0.047440625727176666,-0.02649316005408764,0.009679942391812801,-0.04155844449996948,-0.055102672427892685,-0.06615033000707626,-0.02648087963461876,0.09106995165348053,-0.041977401822805405,-0.01884339191019535,-0.03246844932436943,-0.016615981236100197,-0.042442094534635544,0.023214614018797874,-0.07476126402616501,0.06961702555418015,-0.013135786168277264,-0.048634812235832214,-0.04542206972837448,-0.053198810666799545,0.059772197157144547,0.0027895490638911724,0.02589336223900318,-0.05892790108919144,-0.003362406510859728,-0.019110500812530518,-0.0290545467287302,-0.08524055033922195,0.034358181059360504,0.08220840990543365,-0.006151694338768721,-0.03337273746728897,-0.10011602193117142,-0.03735290467739105,0.001924079959280789,-0.10244984924793243,-0.08964212238788605,0.03545461222529411,0.03476683422923088,-0.03052150271832943,-0.09290145337581635,-0.008341030217707157,-0.03956671431660652,0.018273424357175827,0.03431360423564911,-0.055129557847976685,-0.007891194894909859,0.0164624210447073,0.029833942651748657,0.025953760370612144,0.04934564605355263,0.10069875419139862,-0.08391664922237396,0.03573572635650635,-0.04255811870098114,-0.009986176155507565,0.031215544790029526,-0.050551384687423706,-0.07865440845489502,0.023452898487448692,0.013035748153924942,-0.06012222170829773,-0.04397576302289963,0.020253309980034828,-0.018973752856254578,-0.02509292960166931,0.0032405853271484375,-0.003237370867282152,-0.004439588636159897,-0.03711714595556259,-0.01964820735156536,-0.022139010950922966,-0.02056722342967987,-0.030137479305267334,-0.015439138747751713,-0.04229947179555893,0.08303488790988922,0.03848174214363098,0.07941016554832458,0.05451872572302818,-0.022610852494835854,0.021617235615849495,-0.06980512291193008,-0.01553483959287405,0.0803547352552414,0.007491980213671923,-0.06322313100099564,-0.08367592096328735,-0.014464587904512882,0.001110134762711823,0.033577919006347656,0.011131222359836102,0.05799947679042816,0.10754252970218658,-0.1503428965806961,0.01225222460925579,0.06828508526086807,-0.04979722574353218,0.01203085109591484,0.006160168908536434,-0.006812273059040308,-0.10262162238359451,0.006340221967548132,-0.12342027574777603,-0.03771389275789261,0.07739096134901047,0.04080060496926308,-0.08007805794477463,0.049105774611234665,-0.011677251197397709,0.020036492496728897,-0.018731074407696724,0.018924172967672348,-0.04006130248308182,0.015288188122212887,-0.04830792546272278,0.07555755972862244,-7.159099469488554e-34,-0.03386508300900459,-0.10787782818078995,0.03490405157208443,0.056541554629802704,0.04446464404463768,0.0012808622559532523,0.03409357741475105,-0.012391460128128529,-0.06879395991563797,-0.08896618336439133,-0.024021675810217857,-0.06539186835289001,-0.03260888531804085,0.003454775083810091,0.044884417206048965,0.12743473052978516,0.05807831510901451,-0.011299771256744862,-0.020701196044683456,0.004265049006789923,-0.037694286555051804,0.025023989379405975,0.04838353395462036,0.014144077897071838,0.04274735227227211,-0.0006743932026438415,-0.07979272305965424,-0.020443299785256386,-0.044679779559373856,0.019363513216376305,0.098847895860672,0.07003778219223022,-0.07699432224035263,0.012629538774490356,0.02548981085419655,0.025604868307709694,0.1003788411617279,-0.03506552428007126,0.036414604634046555,-0.01615363545715809,0.12614524364471436,0.005759574007242918,0.13360726833343506,0.008924007415771484,0.07105741649866104,0.05259711667895317,-0.04132164269685745,-0.012895296327769756,0.07216772437095642,0.023351969197392464,0.01164984330534935,0.034531738609075546,-0.10852087289094925,-0.01137784868478775,-0.005613039713352919,0.09524863213300705,-0.11760444939136505,0.08718220889568329,0.05322735384106636,-0.016573453322052956,0.019199270755052567,0.05382046848535538,0.047173358500003815,-0.019298585131764412,-0.01091623306274414,-0.06438843160867691,0.039761513471603394,0.018994171172380447,0.05837932601571083,-0.006772175431251526,-0.08627215027809143,-0.022019267082214355,-0.030430635437369347,0.058043934404850006,0.01125029195100069,-0.011356672272086143,-0.028355618938803673,-0.02397303096950054,0.0075822980143129826,-0.0007661056588403881,-0.043084461241960526,-0.01820462942123413,0.012080102227628231,-0.014170989394187927,0.07404500246047974,0.04709289222955704,-0.029407627880573273,0.049680307507514954,-0.002366809407249093,0.03326384723186493,-0.011279458180069923,0.012964054010808468,0.031531669199466705,-0.03625889867544174,-0.009616859257221222,-1.969161320532618e-33,0.03531988710165024,-0.043845221400260925,0.0009216547477990389,0.027989963069558144,0.004577291663736105,-0.008455002680420876,-0.06171909347176552,0.00698537053540349,-0.006988338194787502,0.003380694193765521,0.007873201742768288,-0.059159308671951294,0.11212127655744553,-0.02359924279153347,-0.02149568311870098,0.056846845895051956,-0.02622806653380394,-0.0024355894420295954,-0.05316756293177605,-0.057736583054065704,-0.09148728102445602,0.0520075224339962,-0.0129921343177557,0.021522914990782738,0.024919215589761734,-0.03991920128464699,0.02827770635485649,-0.06319934129714966,-0.05422945320606232,0.019736817106604576,0.06706757098436356,-0.0025358812417834997,0.005599409341812134,0.04778685420751572,-0.06899149715900421,0.07279632240533829,0.10203094780445099,-0.06450816988945007,-0.026984939351677895,0.02406449243426323,-0.04935498163104057,0.04626728594303131,0.05267595872282982,-0.03965212032198906,-0.04451616108417511,0.008947562426328659,-0.03214767575263977,-0.12083863466978073,-0.07700875401496887,0.003971484024077654,0.07043581455945969,0.026404080912470818,-0.0355006605386734,0.012147441506385803,0.023763734847307205,0.022340042516589165,0.007196398451924324,-0.05886063724756241,-0.013149355538189411,-0.015068592503666878,0.08218273520469666,0.07125713676214218,-0.0010208617895841599,-0.01317669078707695,0.07825285196304321,-0.002506018616259098,-0.1055591031908989,0.05976804718375206,0.012007166631519794,-0.014778908342123032,-0.026145974174141884,-0.07205319404602051,-0.0484510213136673,0.03988192602992058,-0.07675907015800476,-0.04425770789384842,0.030981430783867836,0.07397446781396866,0.0401204414665699,0.019131947308778763,0.03249458596110344,-0.04962341487407684,-0.00840253196656704,-0.0644671618938446,-0.08450830727815628,-0.09165557473897934,0.025680113583803177,-0.013158265501260757,0.038232117891311646,0.07584693282842636,-0.00563266035169363,0.007181793916970491,0.01569002866744995,-0.009680117480456829,0.035041823983192444,-1.9896260639029606e-8,0.004241759888827801,-0.03951217979192734,-0.052065592259168625,0.057123973965644836,0.005681443959474564,-0.07933023571968079,-0.0523190014064312,-0.004211267922073603,-0.02324196882545948,0.04341328516602516,0.014810848981142044,-0.056660279631614685,-0.0023735088761895895,0.034579675644636154,0.03704371303319931,0.061511557549238205,0.08803381770849228,0.03333200886845589,-0.008074929937720299,-0.06612416356801987,-0.001644003321416676,0.017049118876457214,-0.015597214922308922,-0.05925632640719414,0.012184705585241318,0.007230237126350403,-0.0031075936276465654,0.022513654083013535,-0.055925603955984116,-0.03261551633477211,0.0038165305741131306,0.057209957391023636,0.06127534806728363,-0.11631163209676743,-0.11082322150468826,0.029937179759144783,0.011782156303524971,-0.0344679020345211,0.018967468291521072,0.0030045306775718927,0.10900597274303436,0.04042808338999748,0.030871855095028877,-0.05465836822986603,0.009117242880165577,0.0032261621672660112,0.02229120396077633,-0.030174287036061287,-0.011272150091826916,0.012017824687063694,-0.054719358682632446,0.041536565870046616,0.12347441166639328,0.006279037334024906,0.08926090598106384,-0.024041661992669106,0.01895029842853546,0.024379177019000053,-0.058212652802467346,-0.04878313094377518,0.10231184959411621,0.04499621316790581,0.06262274086475372,-0.07212761789560318]},{"text":"Siquid vacui sub umbra Lusimus tecum, quod et hunc in annum Vivat et pluris, age dic Latinum, Barbite, carmen, Lesbio primum modulate civi, 5 Qui ferox bello tamen inter arma, Sive iactatam religarat udo Litore navim, Liberum et Musas Veneremque et illi Semper haerentem puerum canebat, 10 Et Lycum nigris oculis nigroque Crine decorum.","book":"Homage to Catalonia","chapter":9,"embedding":[-0.005824604537338018,0.047394830733537674,-0.012171668000519276,0.016137726604938507,-0.05427441745996475,0.03879177197813988,0.04304846376180649,0.04611863195896149,0.053389932960271835,0.03490016609430313,0.061370737850666046,-0.12124820798635483,0.018933972343802452,-0.09455079585313797,-0.07063980400562286,-0.03414521366357803,0.0007129251025617123,0.07480428367853165,-0.05406147241592407,0.011776103638112545,0.0993637889623642,0.009997198358178139,0.005340293515473604,0.015562920831143856,-0.06760672479867935,0.022728031501173973,-0.10972388833761215,-0.02002742514014244,0.05804339051246643,-0.0629575178027153,0.04833901673555374,0.12116322666406631,0.10364806652069092,-0.03272695094347,-0.003746851347386837,-0.028090763837099075,0.00303208502009511,-0.10408691316843033,0.03304384648799896,0.06549981981515884,-0.0326884388923645,-0.05975213646888733,-0.06513206660747528,0.008129246532917023,-0.008791186846792698,-0.03917212411761284,0.007325940299779177,0.043228548020124435,-0.05126876011490822,0.038194440305233,-0.007753497455269098,-0.03326476365327835,-0.032229308038949966,0.02268867753446102,-0.059966910630464554,-0.09271377325057983,-0.02579685114324093,-0.07330287247896194,0.08320675045251846,-0.009916054084897041,-0.03238246589899063,0.11766240000724792,0.011227418668568134,0.00914409477263689,-0.048776280134916306,-0.036005016416311264,-0.003605899168178439,-0.0005914252833463252,-0.018442874774336815,0.014790008775889874,0.11588086932897568,-0.01164293009787798,-0.04616066813468933,0.10837756097316742,-0.030659422278404236,0.06303134560585022,0.04224325343966484,-0.033315520733594894,-0.004768550395965576,-0.1294064223766327,-0.04802471026778221,0.06527721136808395,-0.018344121053814888,-0.07837500423192978,-0.026048598811030388,-0.022300871089100838,-0.015443345531821251,-0.020394515246152878,-0.013474743813276291,-0.04391421005129814,0.02908938378095627,0.03686169162392616,-0.05273161828517914,0.024065669625997543,0.005773482844233513,-0.010367877781391144,-0.010657377541065216,-0.03736470639705658,-0.02446969412267208,-0.016107436269521713,-0.03086436539888382,0.05166010558605194,0.003437596606090665,0.04165951535105705,-0.12312044948339462,-0.06719233840703964,-0.026499245315790176,-0.02617664635181427,-0.01125488243997097,-0.0005812133313156664,-0.05276838690042496,-0.04567591845989227,-0.04243001714348793,-0.05889585614204407,-0.002245458774268627,0.016684183850884438,0.0019120984943583608,-0.07909183949232101,-0.007487517781555653,-0.03182084113359451,0.015705009922385216,-0.07734313607215881,-0.022089626640081406,-0.038412000983953476,0.04464758187532425,-0.08133307844400406,0.058463599532842636,2.305599485213068e-32,-0.04399126023054123,-0.08590584993362427,-0.03583885729312897,0.05194408819079399,-0.011855808086693287,-0.005457437131553888,-0.06051134318113327,-0.015445232391357422,0.033188145607709885,-0.06102057918906212,-0.08379928022623062,-0.015209805220365524,-0.042004987597465515,0.041723836213350296,0.05883604288101196,0.05061391368508339,0.029580216854810715,-0.12228070944547653,0.07537823170423508,0.007587173953652382,-0.0633821114897728,0.02738243341445923,0.0499279610812664,-0.005292518064379692,0.05764251574873924,0.061026010662317276,0.004259602632373571,-0.09067323803901672,0.00838665571063757,0.038367774337530136,0.08718722313642502,-0.026470834389328957,-0.0009275416377931833,-0.03753659501671791,-0.03619340807199478,0.044216446578502655,0.01859467104077339,0.004112829454243183,-0.07161901891231537,0.06846337020397186,0.017117392271757126,0.03467530757188797,0.10347475856542587,0.00211023329757154,0.07470175623893738,0.0017092992784455419,0.021343784406781197,0.05068081617355347,0.06391576677560806,0.024421775713562965,-0.031287193298339844,0.03369636833667755,0.008958248421549797,-0.060139354318380356,-0.03796475753188133,0.0015311309834942222,-0.06385226547718048,0.06554201990365982,-0.06677297502756119,-0.06438823789358139,0.07618802785873413,0.006850788835436106,0.038812875747680664,0.06830506771802902,-0.015466566197574139,0.021112611517310143,-0.021087201312184334,0.006160661578178406,0.10145910084247589,0.05236317962408066,-0.12492071837186813,-0.012138270772993565,-0.0817289724946022,-0.034120310097932816,-0.006311992183327675,0.0064201452769339085,0.07440997660160065,-0.06646022200584412,0.04394124820828438,0.0162541251629591,0.008566099219024181,0.023053904995322227,-0.008062019012868404,0.03987814486026764,0.11384885758161545,0.017342180013656616,-0.02113691344857216,0.08558625727891922,0.06422263383865356,0.07602578401565552,0.07729005068540573,0.04129009693861008,0.04196782782673836,-0.05252554267644882,-0.004171891137957573,-2.1664247744323492e-32,0.019471600651741028,-0.029534008353948593,-0.040304750204086304,0.10123960673809052,0.02734447829425335,0.013324503786861897,-0.1080799400806427,0.019395917654037476,-0.03096393309533596,-0.02123517170548439,-0.0053908973932266235,-0.08299736678600311,0.06510061770677567,-0.054947465658187866,0.015530743636190891,0.06140274181962013,-0.012190144509077072,0.04310259595513344,-0.037375859916210175,0.03424924612045288,-0.08940611034631729,0.015150032937526703,0.05690736323595047,-0.12224817276000977,-0.01610553078353405,-0.02080283872783184,-0.032762136310338974,-0.028516920283436775,-0.046871084719896317,-0.030404740944504738,0.018789134919643402,-0.05504816025495529,-0.058877430856227875,0.011711519211530685,-0.002885581459850073,-0.03700951859354973,0.11091915518045425,-0.013907942920923233,0.025287829339504242,0.01352786086499691,-0.00941551849246025,0.030946923419833183,0.08457369357347488,-0.01501027587801218,0.016424544155597687,-0.021771516650915146,-0.042222704738378525,-0.02774231880903244,-0.0525343157351017,0.051186222583055496,0.121698297560215,-0.027834728360176086,-0.05237342044711113,-0.02261778526008129,0.08571771532297134,-0.053037311881780624,-0.0009856466203927994,-0.01985710673034191,-0.045523207634687424,0.00952980201691389,0.02400328405201435,0.05843169987201691,-0.04440830647945404,-0.018707260489463806,0.06620942801237106,0.01314854621887207,-0.052100468426942825,0.0612170547246933,-0.02133028768002987,-0.013220291584730148,0.12340345233678818,-0.08383666723966599,-0.14473338425159454,-0.05113054811954498,-0.04059835895895958,0.039219003170728683,0.010325627401471138,0.02504006028175354,0.013111761771142483,0.008628935553133488,-0.06354455649852753,-0.013466939330101013,-0.051629628986120224,0.015616342425346375,-0.04607228934764862,0.01284688152372837,-0.03309544175863266,0.01262694876641035,0.07541010528802872,0.01970159076154232,-0.056169118732213974,-0.055162250995635986,0.028066329658031464,-0.08863436430692673,0.059950489550828934,-7.380755562280683e-8,-0.04840100184082985,-0.04292166978120804,-0.07769177854061127,0.03150172159075737,0.08750265091657639,-0.03455209732055664,-0.014570258557796478,-0.016018619760870934,-0.001172961201518774,0.07913153618574142,0.04817583039402962,0.04502144455909729,-0.004593024495989084,-0.03534075245261192,0.05813025310635567,0.0017478103982284665,0.05163680762052536,0.08114129304885864,-0.038346048444509506,-0.0024421331472694874,0.06997817754745483,0.032888367772102356,0.010890679433941841,-0.006125599145889282,-0.056425172835588455,-0.052535440772771835,-0.008550256490707397,-0.08494739979505539,-0.02144167199730873,-0.03300190716981888,0.07766716927289963,0.011935709044337273,-0.05410630255937576,-0.12208747118711472,-0.01878698542714119,0.024156369268894196,0.02311953343451023,0.020812971517443657,-0.007837926037609577,0.01938602142035961,0.04435104876756668,-0.0388939306139946,-0.030208097770810127,-0.032409895211458206,0.031441278755664825,-0.03535887226462364,-0.0035703934263437986,0.013743833638727665,-0.022757207974791527,-0.024777080863714218,-0.09234367311000824,-0.015485882759094238,0.08175648748874664,-0.030428994446992874,-0.03488834574818611,-0.040765468031167984,0.035823412239551544,0.006197731010615826,0.03721516206860542,-0.016722511500120163,0.07855197042226791,0.047582924365997314,0.022493844851851463,-0.030297776684165]},{"text":"Albi, ne doleas plus nimio memor Immitis Glycerae, neu miserabilis Decantes elegos, cur tibi iunior Laesa praeniteat fide.","book":"Homage to Catalonia","chapter":9,"embedding":[-0.027681097388267517,0.09495654702186584,-0.07607703655958176,-0.06904046982526779,-0.1333264410495758,0.02093338407576084,0.0555628277361393,0.007638367358595133,0.046631213277578354,0.02347409538924694,0.042698659002780914,-0.040193066000938416,0.08023422956466675,-0.021556254476308823,-0.035002365708351135,-0.012922313064336777,-0.033817779272794724,0.08176078647375107,-0.023308048024773598,-0.0032475581392645836,-0.03429960086941719,-0.04461459070444107,-0.04135662689805031,0.06862463057041168,-0.0669138953089714,-0.015233764424920082,-0.040177278220653534,-0.06625605374574661,-0.011510797776281834,-0.08926631510257721,-0.010972666554152966,0.03249257057905197,0.0729912519454956,0.0046683852560818195,-0.009967947378754616,-0.040036119520664215,-0.053568243980407715,0.030742935836315155,-0.01890689693391323,0.010074792429804802,-0.05369935557246208,-0.008695775642991066,-0.021754460409283638,0.03226061537861824,-0.009083517827093601,0.04361245036125183,-0.040716253221035004,0.06218064948916435,-0.03171639144420624,0.03340698778629303,-0.06834372133016586,0.009366454556584358,-0.053854890167713165,0.09783313423395157,-0.004820657428354025,-0.056719426065683365,-0.01264246366918087,0.02825780212879181,0.010541676543653011,-0.03615710511803627,0.04218549281358719,0.07919086515903473,-0.06663810461759567,0.034007612615823746,-0.06618975847959518,0.020390713587403297,0.01021093875169754,-0.0007052979781292379,-0.13924339413642883,0.1198725625872612,0.12683776021003723,-0.1163799837231636,-0.04495739936828613,-0.0117197185754776,-0.08219651132822037,0.05613839998841286,-0.005950169172137976,0.011315259151160717,-0.027297871187329292,-0.07830945402383804,-0.003444065572693944,0.016152355819940567,0.0016871708212420344,-0.012356933206319809,0.013192789629101753,-0.012741001322865486,-0.02574348822236061,-0.06880293786525726,0.06696180999279022,-0.03262113407254219,-0.038160428404808044,0.03906857222318649,-0.018194781616330147,-0.08108695596456528,0.03167559206485748,0.0035282187163829803,-0.004112319555133581,0.05720435455441475,-0.02344934642314911,0.02849976159632206,0.0548652708530426,0.0056021492928266525,-0.031146887689828873,0.030335919931530952,-0.07261719554662704,0.07059250771999359,0.06631071865558624,-0.056892357766628265,0.02986159548163414,0.0529375858604908,-0.04909694567322731,-0.011239071376621723,-0.02756546437740326,-0.08778724074363708,0.012367050163447857,-0.008333931677043438,0.013989182189106941,-0.0070382351987063885,0.0014166898326948285,0.05356292054057121,0.07286331057548523,-0.024321099743247032,0.021573185920715332,0.0017189837526530027,0.0023899858351796865,-0.03830549493432045,0.04986801743507385,1.1265166440113076e-32,-0.037769630551338196,-0.04375223442912102,-0.12560023367404938,0.049219418317079544,-0.0174312312155962,0.016257723793387413,-0.06791411340236664,-0.03545165807008743,-0.06731736660003662,-0.04165364429354668,-0.03574870899319649,0.047269873321056366,-0.0047938646748661995,0.060445256531238556,0.07853122800588608,0.04226158931851387,0.015603105537593365,-0.09204211831092834,0.10136812925338745,0.000810267636552453,-0.03928667679429054,0.01725100353360176,0.019296566024422646,-0.013127710670232773,0.06312829256057739,0.03927615284919739,-0.01959545910358429,-0.09497339278459549,-0.08427876234054565,0.037971820682287216,0.08209208399057388,-0.06361793726682663,-0.08990179747343063,-0.0007525636465288699,-0.012020769529044628,0.0041631171479821205,-0.005063306540250778,0.020562082529067993,0.02682461030781269,-0.09183445572853088,-0.0055701942183077335,0.02350376360118389,-0.003146663075312972,0.006553682032972574,0.06162581592798233,0.06300566345453262,0.0569833442568779,0.03332429751753807,0.1170731782913208,0.014814605936408043,0.008860246278345585,-0.08958758413791656,-0.09501731395721436,-0.03857564181089401,-0.013674035668373108,-0.010578599758446217,-0.1580175906419754,0.1291205734014511,-0.04931211099028587,0.012695083394646645,-0.00466584088280797,-0.005726484581828117,0.0008467760635539889,0.020014429464936256,-0.037045687437057495,-0.014755929820239544,-0.05786031112074852,0.002147282939404249,0.1477867066860199,-0.08058994263410568,-0.0826505571603775,-0.04096240550279617,0.015076544135808945,0.050309233367443085,-0.04498291015625,0.008657957427203655,0.12494471669197083,-0.06485916674137115,-0.02329341135919094,0.009437551721930504,-0.04346713051199913,-0.0400581993162632,0.05083439499139786,-0.02572564221918583,0.04282519221305847,0.06221262365579605,0.02724302001297474,0.006612684112042189,-0.006097396835684776,0.09798118472099304,0.01939968951046467,0.01780414767563343,0.05235274136066437,0.004805430769920349,0.003931970335543156,-1.1595144602120186e-32,-0.018504099920392036,-0.07954147458076477,-0.004699743818491697,0.04813568294048309,0.007479781750589609,-0.024904772639274597,-0.0906437337398529,0.0003058779111597687,0.032682787626981735,-0.04101826250553131,0.003493370022624731,-0.086705781519413,0.04419143870472908,0.003256285795941949,-0.06744419038295746,-0.018309887498617172,0.023970892652869225,-0.0020446209236979485,-0.015416418202221394,-0.0528365895152092,-0.024958839640021324,0.004435128066688776,-0.0019940126221626997,-0.03294428810477257,-0.002177758840844035,0.022130167111754417,-0.009417310357093811,0.015592179261147976,0.000623997941147536,0.025895752012729645,0.04911579564213753,0.019467150792479515,-0.05151310935616493,0.05214695259928703,-0.019919000566005707,-0.02970406413078308,0.05649879202246666,0.05219309777021408,0.004932310897856951,0.006758951116353273,0.016643887385725975,0.1050151064991951,0.01252633985131979,-0.005741516128182411,0.045458775013685226,-0.005953948479145765,-0.08639334887266159,0.013445203192532063,-0.040689047425985336,-0.050709694623947144,0.059622615575790405,-0.034395813941955566,-0.019080227240920067,0.014613708481192589,0.034047190099954605,0.04276474565267563,0.02962971106171608,-0.05742098018527031,-0.040274590253829956,0.046133801341056824,0.08532316982746124,0.04163723066449165,0.0060412525199353695,0.02432819828391075,0.03405175730586052,0.025152845308184624,-0.015178369358181953,0.10035675764083862,-0.058417245745658875,0.09766120463609695,0.08414142578840256,-0.09592320770025253,-0.15093399584293365,0.00006355606456054375,-0.07675853371620178,-0.010479913093149662,-0.05802130326628685,-0.022313447669148445,-0.07156119495630264,-0.019145751371979713,-0.04768081381917,-0.02208891324698925,-0.06864141672849655,0.011011575348675251,0.04665081575512886,0.009152261540293694,0.03924243524670601,0.01257792767137289,0.027012024074792862,0.01992492564022541,0.004791470244526863,-0.01561662182211876,0.046236392110586166,-0.04063048213720322,-0.05286668986082077,-4.187238644703939e-8,0.014106069691479206,-0.03071550652384758,0.011369899846613407,-0.003864057594910264,0.06501524150371552,0.000211600330658257,-0.056310996413230896,-0.055748265236616135,0.028690015897154808,0.03189454600214958,0.059981800615787506,-0.01530233584344387,-0.0824926421046257,-0.05255231261253357,0.07148933410644531,0.08745325356721878,0.10286467522382736,0.03332650661468506,0.019824599847197533,-0.062417276203632355,0.0878572165966034,-0.014431464485824108,-0.04769797995686531,-0.03664299473166466,-0.09995727241039276,0.01606227643787861,-0.004088768735527992,0.00984980445355177,0.0023333351127803326,0.046366412192583084,-0.010507189668715,0.09202303737401962,0.0731859877705574,-0.15040886402130127,0.005454974714666605,0.03988158330321312,0.09357913583517075,-0.011330438777804375,0.026580912992358208,-0.03335128724575043,0.016027742996811867,0.052529092878103256,0.04456764832139015,-0.010891539976000786,0.005535249598324299,-0.07613706588745117,0.025973020121455193,-0.026951799169182777,0.025269867852330208,0.010673767887055874,0.017689984291791916,0.04684605076909065,0.03520175814628601,0.07727640122175217,0.0027223015204072,0.00035035223118029535,0.0037421879824250937,0.03468930721282959,-0.04170186445116997,-0.034371230751276016,0.05599183589220047,0.05904661491513252,-0.0024539076257497072,-0.03962504863739014]},{"text":"Sic visum Veneri, cui placet impares 10 Formas atque animos sub iuga aenea Saevo mittere cum ioco.","book":"Homage to Catalonia","chapter":9,"embedding":[-0.11886449158191681,0.017217012122273445,-0.03351883962750435,0.008029349148273468,-0.06271272152662277,0.0672757476568222,-0.030334550887346268,0.14016133546829224,0.005484290886670351,0.02238030545413494,0.06230670213699341,-0.07198210060596466,0.06784628331661224,-0.02548614889383316,-0.0717155858874321,-0.01209758035838604,-0.03150566294789314,0.03307132050395012,-0.004021512810140848,0.004593879450112581,0.08139420300722122,-0.01108037494122982,-0.06334441155195236,0.013299022801220417,-0.00910304207354784,0.012505531311035156,-0.0029513679910451174,-0.05089191719889641,0.025484304875135422,-0.009561335667967796,0.017995042726397514,0.05697308108210564,0.046127401292324066,0.005080678034573793,-0.016712818294763565,-0.05753852054476738,-0.04928843677043915,-0.058598101139068604,0.0604017935693264,0.03154450282454491,-0.014502210542559624,-0.08266324549913406,-0.02168947644531727,-0.08342062681913376,0.011937683448195457,0.007886077277362347,0.026435013860464096,0.04065445438027382,0.015041639097034931,-0.018407385796308517,-0.061761949211359024,-0.03192583844065666,0.004158387891948223,-0.044805027544498444,-0.03443515673279762,-0.06659137457609177,0.019559143111109734,-0.04390024393796921,0.004410302732139826,-0.020422035828232765,0.05909968540072441,0.03940571844577789,-0.06161784008145332,0.05503273755311966,-0.02039777673780918,0.03443944826722145,-0.06933063268661499,-0.00388749735429883,-0.11156930774450302,0.04899879917502403,0.12183636426925659,-0.05878095701336861,-0.06566502153873444,0.07677938789129257,-0.061308830976486206,0.03534967079758644,0.06567453593015671,-0.015118693001568317,0.032501470297575,-0.07368472218513489,0.01637040637433529,0.029698705300688744,-0.007574437186121941,-0.02315436862409115,-0.07459104806184769,-0.02482219971716404,0.07134726643562317,-0.040128737688064575,0.007166770286858082,0.03128505498170853,-0.02172652818262577,0.014043240807950497,-0.013891780748963356,-0.01656624861061573,0.05337899178266525,0.013211796060204506,-0.021973568946123123,0.024398714303970337,0.02620234340429306,-0.0230112224817276,0.02590216137468815,0.04812484607100487,-0.03791240230202675,0.06036212667822838,-0.1116495430469513,-0.06466227769851685,0.01563408225774765,-0.07170649617910385,0.02790921926498413,0.05353328585624695,-0.030538704246282578,-0.046612970530986786,-0.0493650920689106,-0.07795765995979309,0.03389626741409302,0.017038609832525253,0.010563441552221775,-0.04175485670566559,-0.01483683567494154,-0.03476036339998245,0.029579559341073036,-0.0712892934679985,-0.02022584155201912,0.008045032620429993,0.07525648921728134,-0.0910639539361,0.028035786002874374,7.161254848583382e-33,-0.06561996042728424,-0.12860208749771118,-0.06784143298864365,0.06054670736193657,0.02291940711438656,-0.019780071452260017,-0.09334396570920944,-0.005823125131428242,-0.01287664845585823,0.01635427586734295,-0.06653030961751938,0.009159671142697334,-0.05600861459970474,0.06642638146877289,0.05496446415781975,0.014966387301683426,0.11025707423686981,-0.057957325130701065,-0.04629062861204147,-0.06513245403766632,-0.016001276671886444,0.02432134933769703,0.05494465306401253,-0.0424191989004612,-0.006326465867459774,-0.008672765456140041,0.026540784165263176,-0.0603632815182209,-0.11926361173391342,-0.002309143776074052,0.10191910713911057,0.042680226266384125,-0.026227880269289017,-0.011743656359612942,-0.045436371117830276,-0.055745381861925125,0.043638959527015686,0.043080754578113556,-0.005107939708977938,-0.02080855518579483,0.022026536986231804,0.009363090619444847,0.02201944775879383,-0.012379649095237255,0.06508008390665054,0.022305207327008247,0.017083389684557915,0.00018568901577964425,0.07177407294511795,-0.016904659569263458,-0.04554486647248268,0.07693617790937424,-0.051623642444610596,0.015996117144823074,0.011509567499160767,0.03683818131685257,-0.02409178949892521,0.06938404589891434,-0.004378114826977253,-0.10614220052957535,-0.032825302332639694,-0.0438348725438118,-0.010359984822571278,0.02103595808148384,-0.06063702702522278,0.01766740344464779,-0.02044813148677349,-0.024327129125595093,0.11310338973999023,0.03832891210913658,-0.033741552382707596,-0.0014784529339522123,-0.08799375593662262,-0.008474845439195633,-0.028989795595407486,0.049143850803375244,0.022310515865683556,0.016033263877034187,-0.07550029456615448,-0.00039375503547489643,-0.04966624826192856,0.05586159601807594,0.031615111976861954,0.06938809901475906,0.1352318525314331,0.05556519702076912,-0.024732360616326332,-0.0002866860886570066,0.05530374497175217,0.04805611073970795,0.04096788540482521,-0.02495390921831131,0.027139365673065186,-0.011344283819198608,0.06042872741818428,-8.090465500493138e-33,0.06085044518113136,-0.0939563736319542,-0.09661663323640823,0.0546865276992321,0.00120817800052464,0.011297585442662239,-0.05443345755338669,0.03941237926483154,-0.02952435240149498,-0.016843393445014954,-0.10138300061225891,0.06081297621130943,0.08911139518022537,-0.06488561630249023,-0.000568872201256454,0.08381155878305435,0.08044470846652985,0.023629946634173393,-0.0364425890147686,-0.07298539578914642,-0.018140971660614014,0.05844699218869209,0.07417133450508118,-0.10001198947429657,0.00883826520293951,-0.03239844739437103,0.0288710817694664,0.036935146898031235,-0.03520802780985832,-0.05066602677106857,0.014036843553185463,-0.045426756143569946,0.04213183745741844,0.0660676509141922,-0.022576099261641502,-0.01677650585770607,0.13723042607307434,0.017934488132596016,-0.04283421114087105,-0.005860799923539162,0.009235493838787079,0.015187633223831654,0.006406633649021387,-0.06322405487298965,0.03384087234735489,-0.10001455247402191,-0.04596710950136185,-0.06930946558713913,-0.05908999592065811,-0.033893514424562454,0.10606798529624939,-0.07938918471336365,0.07253667712211609,-0.0373830683529377,0.03185407817363739,-0.0053170896135270596,0.0026644142344594,-0.07193750143051147,0.027973441407084465,0.019420957192778587,0.07473830878734589,0.06791309267282486,-0.020762121304869652,-0.06498198211193085,0.021296612918376923,0.007117676082998514,-0.044999830424785614,-0.0014894483610987663,-0.004820388741791248,-0.015566163696348667,0.06005371734499931,-0.10654812306165695,-0.026368068531155586,0.03651564568281174,0.02157396450638771,-0.022219650447368622,0.014840567484498024,0.10610974580049515,0.007622155826538801,0.0204162560403347,-0.08870994299650192,-0.06930176168680191,-0.027262143790721893,0.007108364254236221,-0.0036394880153238773,-0.006909057032316923,0.035855937749147415,-0.03847506269812584,0.056084927171468735,0.011892527341842651,0.0031596957705914974,0.07639588415622711,0.06585612148046494,-0.02719828486442566,-0.025131821632385254,-3.264927528334738e-8,0.021832985803484917,-0.09315275400876999,0.035855069756507874,0.06482253968715668,0.09204244613647461,-0.10312897711992264,-0.010343345813453197,-0.05489347130060196,-0.022310378029942513,0.03239412233233452,0.022588657215237617,-0.09287033975124359,-0.003509568516165018,0.040662117302417755,0.06585874408483505,0.01264133770018816,0.038648467510938644,0.02565113827586174,-0.01774407923221588,-0.007942098192870617,0.022121021524071693,-0.0284055657684803,-0.05214407294988632,-0.008797661401331425,-0.026980502530932426,-0.020328544080257416,-0.04759180173277855,-0.04261616989970207,0.008331658318638802,-0.018602898344397545,-0.001022922690026462,0.09881888329982758,0.036632005125284195,-0.021754009649157524,-0.026392141357064247,0.09552031755447388,0.08127381652593613,0.018343761563301086,0.006859836168587208,0.03690138831734657,0.0843295082449913,0.014249845407903194,0.16494762897491455,0.007140284404158592,0.025277461856603622,0.019482120871543884,-0.023353690281510353,-0.027597377076745033,0.05324523523449898,-0.026997728273272514,-0.08371361345052719,0.06327574700117111,0.0014680272433906794,0.08304774761199951,-0.018587902188301086,-0.051509056240320206,0.029727688059210777,-0.02129463478922844,-0.009681113064289093,0.022642023861408234,0.07259110361337662,0.060124967247247696,-0.05692656338214874,-0.035857558250427246]},{"text":"Parcus deorum cultor et infrequens, Insanientis dum sapientiae Consultus erro, nunc retrorsum Vela dare atque iterare cursus Cogor relictos.","book":"Homage to Catalonia","chapter":9,"embedding":[-0.05399198830127716,-0.00026701923343352973,-0.07493700832128525,-0.007506472058594227,-0.058871202170848846,-0.03369414433836937,-0.049157749861478806,0.025177378207445145,0.07380408048629761,0.04020749777555466,0.05914345383644104,-0.06507305800914764,-0.043343160301446915,-0.043077029287815094,-0.10165844857692719,-0.08825944364070892,0.013487493619322777,0.06560507416725159,0.022968117147684097,-0.00511910067871213,-0.03396829217672348,0.034076716750860214,-0.03196530416607857,0.06944337487220764,-0.04456178843975067,-0.04967832192778587,-0.06771529465913773,-0.042550213634967804,0.05798898637294769,-0.0984838530421257,0.014612847939133644,0.07432059198617935,-0.030240502208471298,-0.001540145487524569,-0.028174379840493202,0.02534359320998192,0.008309990167617798,-0.04143102839589119,0.07165180146694183,0.005946486257016659,-0.02376640774309635,0.006278747692704201,-0.059157151728868484,-0.04740671440958977,-0.05097947269678116,0.028011903166770935,-0.03916594386100769,0.07497379183769226,0.0376289077103138,-0.01776266284286976,0.023213649168610573,-0.00005934676664764993,0.014315654523670673,-0.03279941901564598,-0.04686824604868889,0.015802226960659027,-0.00029583522700704634,-0.07271420955657959,0.033913563936948776,-0.012501685880124569,0.07354042679071426,0.01188067439943552,0.02099679410457611,0.03323882073163986,-0.12719866633415222,-0.017321262508630753,0.028758687898516655,0.04345478489995003,-0.04995328560471535,0.00009326711733592674,0.04675869643688202,-0.034152332693338394,-0.05866941809654236,0.05642402172088623,-0.07385390251874924,0.08040072023868561,-0.052285730838775635,-0.018463170155882835,-0.05450721085071564,-0.11180762201547623,0.03686244413256645,0.004779642913490534,-0.005543549079447985,0.024409402161836624,-0.01962459646165371,-0.035688720643520355,-0.0005997452535666525,-0.021228110417723656,0.07194878160953522,0.04094238951802254,0.026868239045143127,-0.0047545526176691055,-0.040111031383275986,-0.059168215841054916,-0.06528081744909286,0.010103433392941952,0.008391525596380234,-0.015543626621365547,0.04327535629272461,-0.003362002782523632,0.013212712481617928,-0.004030000418424606,-0.0332939475774765,0.034889109432697296,-0.08509598672389984,-0.09865614771842957,-0.0442207045853138,-0.08458290994167328,0.14807246625423431,0.06407994031906128,-0.07265473902225494,-0.015020716935396194,-0.04761981591582298,-0.04537660628557205,-0.002385921310633421,-0.023176774382591248,0.03678780421614647,-0.07538532465696335,-0.015670040622353554,-0.1114705502986908,0.05022690072655678,0.02211332507431507,0.018672894686460495,-0.013385334052145481,0.04600365459918976,-0.08827871829271317,0.08676013350486755,1.2545254808903592e-32,-0.02923554740846157,-0.05036607012152672,-0.052148062735795975,0.009047545492649078,0.05179636925458908,-0.008170191198587418,-0.03350415453314781,0.015184522606432438,0.02275281958281994,-0.07990416139364243,-0.05689900368452072,0.007054463028907776,-0.04097670689225197,0.03433924913406372,0.007545035798102617,0.06153741478919983,0.1031319722533226,-0.03274315595626831,0.03426465392112732,-0.01919740065932274,-0.06354058533906937,0.04877539724111557,0.021533209830522537,-0.030245130881667137,0.04100330173969269,0.02363353595137596,-0.0088194590061903,-0.04511922970414162,-0.0342358723282814,0.010899627581238747,0.14637920260429382,-0.08972491323947906,-0.004039828199893236,-0.02438507415354252,0.056550271809101105,0.005511768162250519,0.11264463514089584,-0.006389736197888851,-0.0066418894566595554,-0.03639901801943779,0.008299303241074085,0.029943736270070076,0.038615524768829346,0.019606294110417366,0.011937170289456844,0.04352486878633499,0.06488344073295593,0.005939777474850416,0.05804671347141266,-0.023131657391786575,0.01739688776433468,0.04624125733971596,0.004657542333006859,-0.04574158415198326,0.030056316405534744,0.03251033276319504,-0.0051289028488099575,0.06543959677219391,0.02081286907196045,-0.010025355964899063,0.021502723917365074,0.003102576360106468,-0.06731382757425308,0.03321342542767525,0.039900291711091995,-0.02741224505007267,-0.0805080309510231,0.004093778785318136,0.05755006521940231,0.014337309636175632,-0.08351260423660278,0.0001306930062128231,-0.12122831493616104,0.0024668490514159203,-0.03103632479906082,0.02746186964213848,-0.04632830619812012,0.010411499999463558,-0.04592224583029747,0.008413185365498066,-0.05772779509425163,-0.030146092176437378,-0.057500869035720825,0.0507049635052681,0.0398700051009655,0.058396175503730774,0.042249228805303574,0.07986636459827423,0.11066105216741562,0.02253030799329281,0.04934912919998169,-0.002230095211416483,0.015766650438308716,0.03321480005979538,0.04435853287577629,-1.4140938431634938e-32,0.0011059115640819073,-0.06748417764902115,-0.021680686622858047,0.10705351084470749,0.027687150985002518,0.05795982852578163,-0.1452842801809311,0.044816210865974426,-0.07881992310285568,-0.103277288377285,-0.11062692105770111,0.025925464928150177,0.011779045686125755,-0.02229595184326172,0.01718967966735363,0.0036537707783281803,0.043192777782678604,0.06015777587890625,-0.06776653230190277,0.010765640996396542,-0.04679001867771149,0.02626543492078781,0.026577657088637352,-0.08806398510932922,-0.04158779978752136,0.004965669009834528,0.06457143276929855,-0.02798740565776825,-0.08454947173595428,-0.05064694210886955,0.05557793751358986,-0.012320452369749546,0.040820714086294174,-0.0006175831658765674,0.0008693495183251798,0.03485429659485817,0.1129898875951767,-0.023275507614016533,-0.0835178792476654,-0.0023358184844255447,0.0422508604824543,0.06192512437701225,-0.0013610194437205791,-0.02749435044825077,0.004822978284209967,-0.0722111314535141,-0.12993112206459045,-0.0007475671591237187,-0.010432176291942596,0.05873117968440056,0.07218063622713089,-0.032307375222444534,0.09716156870126724,-0.04244616627693176,0.11042460054159164,-0.09927117824554443,-0.03732803836464882,-0.05496659874916077,0.02197863534092903,0.043693266808986664,0.05931340530514717,-0.015645135194063187,-0.06339594721794128,-0.0027658429462462664,0.04760465770959854,0.03809095919132233,-0.07646897435188293,0.09139779955148697,-0.07605158537626266,0.0017429871950298548,0.06178761273622513,-0.053974688053131104,-0.09220834076404572,-0.03718659281730652,0.02880745753645897,-0.002772323787212372,-0.03606010973453522,-0.04946032539010048,0.03790783882141113,0.02015354484319687,-0.08150815218687057,-0.08509329706430435,0.026781681925058365,-0.02006497234106064,0.014115517027676105,-0.06047965958714485,0.04085192456841469,0.023440733551979065,-0.00912274606525898,-0.04413655027747154,0.02599799819290638,-0.0589434988796711,0.023320456966757774,-0.02416226826608181,0.047486789524555206,-4.6618669813369706e-8,-0.02473387122154236,-0.05739673227071762,0.01890568621456623,0.01361238956451416,0.06963955610990524,-0.0996730849146843,0.036572035402059555,-0.007605739403516054,-0.058428701013326645,0.015117261558771133,-0.03590961545705795,0.024988485500216484,0.0393066331744194,0.04997343197464943,0.09693852066993713,0.005868571810424328,0.07997117936611176,0.023069828748703003,-0.02751639112830162,0.0227253008633852,0.01415188517421484,-0.004515965934842825,-0.016450965777039528,-0.1429702192544937,0.010584596544504166,0.000617385667283088,0.026932857930660248,-0.029226751998066902,0.09238099306821823,0.03500562161207199,0.01513578649610281,0.020676949992775917,-0.0036301210056990385,-0.02806657738983631,0.0489555262029171,0.02075091563165188,-0.014236262999475002,-0.021813813596963882,0.03014540672302246,0.010805242694914341,0.019627245143055916,-0.012533769942820072,0.018424103036522865,0.004649198614060879,-0.029506316408514977,0.007315702736377716,0.02167155221104622,0.06506321579217911,-0.04357769340276718,-0.06594416499137878,-0.006660351064056158,-0.04548494517803192,0.10044051706790924,0.0343758724629879,-0.08411457389593124,-0.08308962732553482,0.05945470929145813,0.04473285749554634,-0.06036907434463501,0.003969572950154543,0.10289093852043152,0.04121968895196915,0.05473392829298973,0.011482413858175278]},{"text":"Valet ima summis Mutare et insignem attenuat deus, Obscura promens; hinc apicem rapax Fortuna cum stridore acuto 15 Sustulit, hic posuisse gaudet.","book":"Homage to Catalonia","chapter":9,"embedding":[-0.07715542614459991,0.053711310029029846,-0.049650970846414566,-0.02606792189180851,-0.0579557940363884,0.011012781411409378,0.07211342453956604,0.17277419567108154,0.04752131924033165,0.03405359387397766,0.056526415050029755,-0.04606811702251434,0.05319061502814293,-0.04927794262766838,-0.052118003368377686,-0.08837942779064178,0.01941666193306446,0.08304576575756073,0.057185541838407516,0.0243381317704916,-0.014648830518126488,-0.061453159898519516,-0.005131533835083246,0.02777404524385929,-0.08248019218444824,0.05140264332294464,-0.005896382033824921,-0.017791680991649628,-0.03247951716184616,-0.07385984063148499,0.01912122778594494,-0.001976152416318655,0.055416084825992584,-0.002667232882231474,-0.018995685502886772,-0.0013719303533434868,-0.03834277391433716,-0.0647912248969078,0.05831536278128624,0.020957069471478462,-0.009519282728433609,-0.003107456024736166,-0.09903092682361603,-0.050235699862241745,0.024338146671652794,-0.018797513097524643,0.003906212281435728,0.05990089103579521,-0.00007408054079860449,0.043354593217372894,-0.06103506684303284,0.038912754505872726,-0.01774192787706852,-0.027590405195951462,-0.06282243877649307,-0.0500776506960392,0.016581838950514793,-0.05320630595088005,0.06081460788846016,-0.026412075385451317,0.02452825754880905,0.027411578223109245,-0.026731427758932114,0.0021821463014930487,-0.024656744673848152,-0.05472680553793907,-0.03361397236585617,0.01965833641588688,-0.06448744982481003,0.04328082129359245,0.15789483487606049,-0.0816560909152031,-0.0798126682639122,0.05673045292496681,-0.021233128383755684,0.10964026302099228,0.0015341462567448616,-0.014410698786377907,0.017829343676567078,-0.07439139485359192,-0.00026629824424162507,0.03705171123147011,-0.014539727941155434,0.026358800008893013,0.008709454908967018,-0.033456381410360336,0.00912389438599348,-0.03192094340920448,0.081487275660038,-0.02380635030567646,-0.004575290717184544,-0.010113689117133617,-0.051828961819410324,-0.010598343797028065,0.026101335883140564,0.005929606035351753,-0.06039430573582649,-0.008207389153540134,-0.07203076779842377,-0.0074815088883042336,0.002522901864722371,-0.04515404626727104,-0.031150951981544495,0.07275382429361343,-0.11450759321451187,-0.03456200286746025,0.059320565313100815,-0.11876648664474487,0.006761463824659586,0.03637203946709633,-0.04057807847857475,-0.12264556437730789,-0.03416848182678223,-0.09334029257297516,0.04985430836677551,0.07401317358016968,-0.012660601176321507,-0.04744593799114227,0.0014731304254382849,-0.03198741376399994,0.03545008599758148,0.009061936289072037,-0.00998660922050476,-0.03456312045454979,0.05124896392226219,-0.023532655090093613,0.07152324914932251,1.4009218412153546e-32,-0.0909113958477974,-0.07941397279500961,-0.018017331138253212,0.0832996591925621,0.04122995585203171,-0.03477957472205162,0.015479597263038158,-0.02319936268031597,0.06451079994440079,0.024475358426570892,-0.043033417314291,0.015642093494534492,-0.052373651415109634,0.01617375947535038,-0.12363310903310776,0.051080796867609024,0.18586602807044983,-0.033197350800037384,-0.027098720893263817,-0.03365180268883705,-0.03198995813727379,0.0021350833121687174,0.08602586388587952,0.05304618179798126,0.07756288349628448,-0.03727379068732262,-0.019120411947369576,-0.04719677194952965,0.010953296907246113,0.03299691155552864,0.04355078935623169,0.006326803471893072,-0.03711066022515297,0.012891896069049835,-0.030225859954953194,-0.0399499237537384,0.009995955973863602,-0.05209428071975708,-0.01915593259036541,0.005210826173424721,-0.03516232594847679,0.0037267671432346106,0.06990376114845276,-0.04521262273192406,0.022206084802746773,0.09204242378473282,0.028154337778687477,0.09879069030284882,0.06270487606525421,0.03077509067952633,-0.06661831587553024,0.007011475507169962,-0.0908963680267334,0.031045690178871155,-0.018012721091508865,0.056293267756700516,-0.12408292293548584,0.09123502671718597,0.01686149649322033,-0.019354449585080147,-0.001228224951773882,0.029832158237695694,0.000179006063262932,0.029223795980215073,0.0005948594771325588,-0.03210092708468437,-0.033261220902204514,0.0420222282409668,0.11111132055521011,0.028577666729688644,-0.048132505267858505,-0.0011804691748693585,-0.044442448765039444,0.09497672319412231,-0.005842598620802164,0.04605340212583542,0.003905549645423889,0.02140219882130623,0.0018975462298840284,-0.0638774037361145,-0.12710270285606384,0.027660159394145012,0.0042665814980864525,0.030531832948327065,0.04685763642191887,0.03256772458553314,0.05387037247419357,0.035289373248815536,0.04236212372779846,0.08522053062915802,-0.004835743922740221,0.035066328942775726,-0.051192719489336014,0.010619998909533024,-0.03741718456149101,-1.3952406770178305e-32,0.007414062041789293,-0.033600058406591415,-0.0920533686876297,0.030215751379728317,-0.02204662561416626,0.01882297359406948,-0.08806930482387543,0.013059689663350582,-0.03929132968187332,0.026100674644112587,-0.059222783893346786,-0.02889409102499485,0.038331855088472366,-0.07710829377174377,0.0028294213116168976,0.0505504310131073,0.015006172470748425,-0.049170635640621185,-0.02836640737950802,0.022342385724186897,-0.04045163094997406,-0.04071833938360214,0.008155199699103832,-0.07149390876293182,-0.03577595576643944,0.009434867650270462,0.026257872581481934,0.017102334648370743,-0.04666473716497421,-0.007571119349449873,0.0006644341046921909,0.02650955505669117,-0.017120182514190674,0.04358555004000664,-0.01894422061741352,0.007614071015268564,0.1482475847005844,0.03719913959503174,-0.047084398567676544,0.04601643979549408,-0.03524431213736534,-0.0019824057817459106,0.1023852601647377,-0.007252214942127466,0.044435348361730576,-0.05560637265443802,-0.08087985962629318,-0.11218491941690445,-0.01800718903541565,-0.014765591360628605,0.07176004350185394,-0.04306243732571602,0.059258487075567245,-0.02154705859720707,-0.03675774112343788,-0.1021561548113823,-0.008650705218315125,-0.013025134801864624,-0.008823809213936329,0.04159138724207878,0.1308034062385559,0.030552823096513748,-0.01073862798511982,0.0013354800175875425,0.07634574174880981,-0.055072471499443054,-0.08530344069004059,-0.026468029245734215,-0.0032448458950966597,0.01858041062951088,0.04150962457060814,-0.10609255731105804,0.014190872199833393,0.012996770441532135,-0.014703985303640366,0.00645665917545557,0.0352325439453125,0.005584436934441328,0.0701431930065155,-0.021888189017772675,-0.03816171735525131,-0.0817410945892334,-0.03022386133670807,-0.00599483959376812,-0.00577898696064949,0.037568915635347366,0.033441364765167236,0.00001735017758619506,0.04667726904153824,0.04599715769290924,-0.03802388533949852,-0.0030132303945720196,0.048693086951971054,-0.07632412016391754,-0.027959449216723442,-4.895432326179616e-8,-0.03245731443166733,-0.07395536452531815,-0.013901284895837307,0.0731629803776741,0.0036294092424213886,-0.11033971607685089,-0.07169285416603088,-0.03658776357769966,-0.008258325979113579,0.035036925226449966,-0.02517159841954708,-0.030715622007846832,0.027928577736020088,-0.006209901999682188,0.013790424913167953,0.05224855616688728,0.10597287118434906,0.033488836139440536,-0.0020496794022619724,-0.06382979452610016,-0.0022587254643440247,-0.021593308076262474,-0.10115434974431992,-0.033570513129234314,-0.0019400088349357247,-0.04734855517745018,-0.02742544747889042,-0.09530692547559738,-0.023494895547628403,0.01169675774872303,0.03929111734032631,0.059433724731206894,0.12860359251499176,-0.037519898265600204,0.027621107175946236,0.0649399682879448,0.024008125066757202,0.01658010482788086,0.007496261969208717,0.06183687597513199,0.010470537468791008,0.09936007857322693,0.009854933246970177,-0.08905750513076782,0.03626902028918266,-0.011710490100085735,0.008441903628408909,-0.028427669778466225,-0.036685459315776825,-0.015266374684870243,-0.04475019499659538,0.013220980763435364,0.0863657221198082,0.04140811413526535,0.02699124440550804,-0.03325674682855606,0.02225537784397602,0.020682837814092636,-0.02097630314528942,0.008542455732822418,0.024711521342396736,0.041688453406095505,-0.006877914536744356,0.00019841034372802824]},{"text":"Te Dacus asper, te profugi Scythae Urbesque gentesque et Latium ferox 10 Regumque matres barbarorum et Purpurei metuunt tyranni, Iniurioso ne pede proruas Stantem columnam, neu populus frequens Ad arma cessantis, ad arma 15 Concitet imperiumque frangat.","book":"Homage to Catalonia","chapter":9,"embedding":[-0.07079220563173294,0.01390907820314169,-0.09874482452869415,0.0256157498806715,-0.024876564741134644,0.0029379664920270443,0.03085137903690338,0.08644872903823853,0.010442289523780346,-0.00008657803118694574,0.037995025515556335,-0.07412659376859665,-0.029152723029255867,-0.03300962969660759,-0.14152248203754425,-0.09524425864219666,-0.011269599199295044,0.0314062237739563,0.018318334594368935,0.021130461245775223,0.07579782605171204,-0.00448801601305604,0.029894327744841576,-0.019842496141791344,-0.044551730155944824,0.0055925860069692135,-0.09319766610860825,0.01454122643917799,0.0547417551279068,-0.0744522362947464,0.014125668443739414,0.09680689126253128,0.09796073287725449,-0.028523564338684082,-0.011142133735120296,0.016072673723101616,-0.039409492164850235,-0.022668011486530304,0.07787460833787918,0.025608299300074577,-0.02088041417300701,-0.02705993689596653,-0.01677713356912136,-0.027996717020869255,-0.042599402368068695,-0.010251129977405071,0.020945098251104355,0.01949225552380085,0.004187978338450193,-0.02590114250779152,-0.10606107860803604,-0.014033949002623558,-0.0305975079536438,-0.016559375450015068,-0.06586495786905289,-0.05703546106815338,0.05703187733888626,-0.0836528018116951,0.04539170488715172,0.01753178797662258,0.01722823642194271,0.006686445325613022,-0.03524789586663246,-0.032843217253685,-0.017609890550374985,0.049664199352264404,-0.010642224922776222,-0.009219336323440075,-0.004212332423776388,0.027398420497775078,0.10958834737539291,0.0032912022434175014,-0.0170429777354002,0.08135047554969788,-0.0931357815861702,0.06317130476236343,-0.04855819419026375,0.004189742729067802,0.005278498865664005,-0.07936248183250427,-0.00927108246833086,0.031804222613573074,-0.006358552258461714,-0.04192307963967323,-0.017483647912740707,0.049835652112960815,-0.020121458917856216,0.04730916768312454,0.025236234068870544,0.022624343633651733,0.050307631492614746,0.07061558216810226,-0.05749155580997467,0.034383777529001236,-0.010375435464084148,0.061228495091199875,0.07441522181034088,-0.04654746875166893,-0.0030868926551193,-0.04981395602226257,0.030416201800107956,0.018538087606430054,0.0222367811948061,0.015049941837787628,-0.11131655424833298,-0.11249039322137833,-0.07386603206396103,-0.010048848576843739,0.015750089660286903,0.06434208899736404,-0.019909359514713287,-0.10245338082313538,-0.07259955257177353,-0.02183583565056324,-0.03822588548064232,-0.013910750858485699,0.020634718239307404,-0.1144651547074318,-0.027024736627936363,-0.04486982151865959,0.02235790714621544,0.020073598250746727,-0.028841448947787285,0.013894155621528625,0.015562644228339195,-0.04077305272221565,-0.01919533871114254,2.0090725128841024e-32,-0.03761691600084305,-0.03237742558121681,-0.07869875431060791,0.029610181227326393,-0.015902265906333923,-0.046706583350896835,-0.08430890738964081,-0.03410029783844948,0.07812090218067169,-0.07519277930259705,-0.11857186257839203,-0.028611009940505028,-0.03833973407745361,-0.018559804186224937,-0.004105516709387302,-0.0173953790217638,0.05640318989753723,-0.03377337381243706,0.05589976906776428,-0.01268106047064066,-0.06032266095280647,0.09478854387998581,0.016622398048639297,0.002150361193343997,0.03032759577035904,0.0007413982530124485,-0.05584487318992615,-0.045639876276254654,-0.04147505760192871,0.009879841469228268,0.1556134670972824,-0.10630679130554199,-0.04786255583167076,-0.021971963346004486,0.061504021286964417,0.000787601456977427,0.0080313915386796,-0.009210627526044846,-0.013754959218204021,0.027417024597525597,0.05585825443267822,0.0541408509016037,0.0482000857591629,0.07793530076742172,0.09760254621505737,0.03475308418273926,-0.023704394698143005,0.07831130176782608,0.014617189764976501,0.007072814740240574,-0.029497135430574417,0.08137395232915878,0.03188179433345795,-0.014443021267652512,0.011452113278210163,0.03232474625110626,-0.0728982537984848,0.08398590236902237,-0.013243921101093292,0.06093746796250343,0.04233181104063988,0.015430575236678123,0.02446657419204712,0.05163083225488663,-0.01573074609041214,-0.014091959223151207,-0.06689982116222382,0.11678857356309891,0.09213845431804657,0.021548064425587654,-0.08312720060348511,-0.03381151333451271,0.06711854785680771,0.07036739587783813,-0.029934391379356384,0.06541267037391663,0.01137776393443346,-0.03807235136628151,-0.09081754088401794,0.02703147567808628,-0.05001278966665268,0.043709706515073776,-0.049230124801397324,-0.03282635286450386,0.024117808789014816,0.055987145751714706,0.010140519589185715,0.03058849275112152,0.032598696649074554,-0.019527558237314224,0.07260452210903168,-0.0453733392059803,-0.07923026382923126,-0.0015998133458197117,0.01821870729327202,-1.9391832023823756e-32,-0.004033247008919716,-0.04652559384703636,0.015170600265264511,0.06823541969060898,-0.060423433780670166,0.011473958380520344,-0.12825946509838104,-0.028100762516260147,0.0063570719212293625,-0.03869681805372238,-0.014477823860943317,0.013691524043679237,0.0878545343875885,-0.12739777565002441,0.02428392507135868,0.04282072186470032,0.003943482879549265,0.03729527071118355,-0.05342062935233116,-0.01313092838972807,-0.07151801139116287,0.037776704877614975,0.03470136225223541,-0.07087764143943787,-0.0075024948455393314,0.020798208191990852,-0.00548767251893878,-0.05655262991786003,-0.024465737864375114,0.03672947734594345,0.16356885433197021,-0.04734138399362564,-0.05294289067387581,0.01292774360626936,-0.05270109698176384,-0.05659877881407738,0.1256256401538849,-0.0312558189034462,0.0236081313341856,0.026140544563531876,0.056000467389822006,0.062314387410879135,0.07068347930908203,0.008624736219644547,0.004459809046238661,-0.0341743528842926,-0.04953297600150108,-0.0416879802942276,-0.0074202329851686954,0.000350198766682297,0.07721719145774841,0.005708457436412573,-0.012818947434425354,-0.10824698954820633,0.05424334481358528,-0.07432914525270462,0.06215539202094078,0.0739617571234703,-0.09874218702316284,0.02883414924144745,0.052975382655858994,0.021966787055134773,0.04018407687544823,0.0036584362387657166,0.06615220755338669,0.06284564733505249,-0.05441679060459137,0.12687335908412933,-0.033633485436439514,0.06377212703227997,0.05239689350128174,-0.037274088710546494,-0.10534215718507767,-0.006242360454052687,0.021491291001439095,0.04823467507958412,-0.04593255743384361,0.05685766413807869,-0.05017166584730148,0.023449808359146118,-0.06955774873495102,-0.008380389772355556,-0.014447386376559734,-0.013379773125052452,-0.0316278301179409,-0.07888750731945038,-0.03096899949014187,-0.019729016348719597,-0.0008053661440499127,-0.049585971981287,-0.01731747016310692,-0.11298860609531403,-0.016180340200662613,-0.04591480642557144,0.06534642726182938,-6.369641880610288e-8,-0.00985934678465128,0.02028784342110157,0.02371842972934246,0.005877186078578234,0.02494763769209385,-0.08574705570936203,0.012959102168679237,-0.021954040974378586,-0.015389981679618359,-0.007771716918796301,-0.049743667244911194,-0.013762525282800198,-0.012425093911588192,-0.007948304526507854,0.05131859704852104,-0.0418827049434185,0.04093638435006142,0.04940851032733917,-0.017234772443771362,-0.05047351121902466,0.07484971731901169,-0.06126789748668671,-0.06104545295238495,0.021016357466578484,-0.0500984713435173,-0.03881685808300972,0.0060331872664391994,-0.0646829754114151,0.05052800104022026,0.030350755900144577,0.012247846461832523,-0.01796581596136093,0.03203264996409416,-0.06369374692440033,0.030470186844468117,0.007799550425261259,0.008632204495370388,-0.0385684110224247,-0.05755801498889923,0.08072075247764587,0.06681647896766663,-0.10667472332715988,0.009931758046150208,-0.022072087973356247,-0.033390216529369354,0.03563810512423515,-0.025536637753248215,0.06522995978593826,0.034295398741960526,-0.01352589949965477,0.0001355733402306214,0.04267662763595581,0.06875716894865036,0.026943469420075417,-0.04615313187241554,0.013419633731245995,0.023449111729860306,0.013637308031320572,0.008825298398733139,0.01743125729262829,-0.01510642096400261,0.03246209770441055,0.07491527497768402,-0.03263997659087181]},{"text":"At volgus infidum et meretrix retro 25 Periura cedit, diffugiunt cadis Cum faece siccatis amici Ferre iugum pariter dolosi.","book":"Homage to Catalonia","chapter":9,"embedding":[-0.0012410704512149096,0.06214910373091698,-0.019507892429828644,-0.022049838677048683,-0.09905809909105301,-0.023949485272169113,0.02332332916557789,0.10838782042264938,0.0831156000494957,0.02810305915772915,0.0541430227458477,-0.07776052504777908,0.08720070868730545,-0.030449548736214638,-0.07587504386901855,-0.1295659989118576,-0.0003564169164747,0.0763847753405571,0.003091217717155814,0.060748666524887085,0.026367882266640663,-0.02562442049384117,-0.059529855847358704,0.0022314295638352633,-0.03787584602832794,0.03455893695354462,-0.034884147346019745,-0.03751213476061821,-0.0184783935546875,-0.07432977855205536,0.057674307376146317,0.08284591883420944,0.028863297775387764,-0.021393710747361183,-0.03329972177743912,-0.012349551543593407,0.011555373668670654,-0.034803833812475204,0.12320912629365921,0.016861405223608017,-0.014382369816303253,-0.04704480245709419,-0.0812186598777771,-0.04478522017598152,0.02678084187209606,0.013915671966969967,-0.026416003704071045,0.07243357598781586,0.0024751469027251005,0.005531062837690115,-0.059943221509456635,0.04068164527416229,0.004984108731150627,0.018766801804304123,-0.08096183836460114,-0.12931661307811737,0.0928245410323143,-0.03634694591164589,0.0310825202614069,-0.05754649266600609,-0.017055198550224304,0.014530817978084087,-0.008157435804605484,-0.004840409848839045,-0.07240261137485504,-0.028216630220413208,-0.0008149181958287954,-0.010314124636352062,-0.02792821265757084,-0.00011885079584317282,0.0509532168507576,-0.07746631652116776,-0.0025144063401967287,0.040980543941259384,-0.012873378582298756,0.02736358530819416,0.0313238762319088,0.024154718965291977,0.021858152002096176,-0.0745687484741211,0.01484568789601326,0.05483236536383629,0.0025602146051824093,0.023022621870040894,0.01226183120161295,-0.018537374213337898,0.01588510535657406,-0.020399130880832672,0.02627670392394066,-0.047303423285484314,-0.0035525632556527853,0.030233658850193024,-0.08057145029306412,-0.02871009334921837,0.0035350266844034195,-0.03563930466771126,-0.020315812900662422,-0.014695324003696442,0.04178261011838913,-0.012682379223406315,-0.013448940590023994,-0.028076793998479843,-0.03365200757980347,0.033756956458091736,-0.13946633040905,-0.04188491031527519,0.026209454983472824,-0.05968954786658287,0.036635078489780426,0.00005604052421404049,-0.04988686740398407,-0.047123074531555176,-0.0477880984544754,-0.05480325594544411,0.020445095375180244,0.03870953246951103,0.013545617461204529,-0.008308285847306252,0.01553938165307045,-0.05653383582830429,-0.013065066188573837,-0.006458589807152748,-0.024314993992447853,0.02585415169596672,-0.04233413189649582,-0.05680309236049652,0.09843103587627411,1.2235314417474188e-32,-0.10318680107593536,-0.0946943387389183,-0.03268415853381157,0.06340955197811127,0.02585977502167225,-0.022701214998960495,-0.05796508118510246,-0.015448597259819508,0.05505918711423874,-0.07169075310230255,-0.0542837455868721,-0.035442251712083817,-0.04080556705594063,0.07936938107013702,-0.03218242526054382,-0.0032667333725839853,0.0829913318157196,-0.06594725698232651,0.005967593286186457,-0.032688040286302567,0.06928692758083344,-0.0055576711893081665,0.06660056859254837,-0.03375740721821785,0.09306371957063675,0.021597106009721756,0.022041628137230873,-0.0507424995303154,-0.026213329285383224,0.02377125807106495,0.10645093023777008,-0.033068910241127014,0.011221990920603275,-0.043520234525203705,-0.03373070806264877,-0.07218646258115768,0.033474721014499664,0.022293003275990486,-0.04364413768053055,-0.007685773074626923,-0.03202033415436745,0.09130153805017471,0.06021358445286751,-0.05048882216215134,0.030962074175477028,0.08328831940889359,0.056944526731967926,0.02254243567585945,0.10461310297250748,0.006574650760740042,-0.06882763653993607,0.04255402833223343,-0.010955709964036942,-0.06341185420751572,-0.024368366226553917,0.007747001014649868,-0.040953733026981354,0.022520514205098152,-0.008431942202150822,-0.008879818953573704,0.013564701192080975,0.02497529238462448,-0.006500310264527798,-0.007725190836936235,-0.0284187663346529,-0.01922384276986122,-0.027526577934622765,0.06610631197690964,0.09989457577466965,0.06606719642877579,-0.12372447550296783,-0.0014530278276652098,-0.020432673394680023,-0.04067608714103699,-0.02730049192905426,0.04351738467812538,-0.03320559486746788,-0.04029819369316101,-0.03340502455830574,-0.039618443697690964,-0.11190149933099747,-0.02167004905641079,-0.02841603010892868,0.0001912974548758939,0.1882273405790329,0.06502996385097504,0.03431010618805885,0.046603839844465256,0.05303496867418289,0.032353777438402176,0.06213792413473129,-0.003795889439061284,-0.014428145252168179,0.01658262312412262,0.08775288611650467,-1.242154137531924e-32,0.017030924558639526,-0.0038125880528241396,-0.058951810002326965,0.10823819041252136,0.003018331015482545,0.02895706333220005,-0.09198516607284546,0.0730830654501915,0.00831371359527111,0.0526406466960907,-0.06199413165450096,-0.018799487501382828,0.02704591117799282,-0.014976105652749538,-0.04307769238948822,0.11446066200733185,0.06847311556339264,-0.017853405326604843,-0.0714649185538292,-0.01776804029941559,-0.07542210072278976,-0.031846895813941956,0.007731544319540262,-0.10303587466478348,0.02272387221455574,0.021643217653036118,0.05183342099189758,0.003418327309191227,-0.031277287751436234,-0.06569413840770721,-0.019295336678624153,0.004119838587939739,-0.027896618470549583,0.0360892154276371,-0.0046762628480792046,0.008715737611055374,0.08963903784751892,0.021692592650651932,-0.033730365335941315,-0.002661315957084298,-0.03524560108780861,0.021741341799497604,0.051745522767305374,0.09562212973833084,0.012833344750106335,-0.042941272258758545,-0.11049564182758331,-0.03637469559907913,-0.017204556614160538,0.01630418188869953,0.08304443955421448,-0.02131137065589428,0.05902114138007164,-0.021207597106695175,0.023724757134914398,-0.08863352239131927,0.045028023421764374,0.025803523138165474,-0.09992795437574387,-0.028148487210273743,0.058904267847537994,0.024668391793966293,-0.005297760013490915,-0.0787445530295372,0.05742999166250229,0.01585901342332363,-0.10542469471693039,0.010847643949091434,0.018811291083693504,0.008428522385656834,0.11179361492395401,-0.13326825201511383,-0.049572356045246124,-0.08985620737075806,-0.0303021389991045,0.004095215816050768,0.03224590793251991,0.030298011377453804,0.0546625480055809,0.08756910264492035,-0.003973245155066252,-0.10699699819087982,-0.07305104285478592,-0.022777440026402473,-0.011967278085649014,-0.018205225467681885,0.020026514306664467,0.011149287223815918,0.03801504895091057,0.03108351118862629,-0.02109135314822197,0.029759803786873817,0.004208936356008053,-0.08153392374515533,0.020347045734524727,-4.2233061492424895e-8,-0.049434490501880646,-0.11515569686889648,-0.0241714995354414,0.0937461107969284,0.04057459160685539,-0.08677560091018677,-0.017978467047214508,0.010121773928403854,-0.03796597197651863,0.041468966752290726,0.0353819914162159,-0.009334306232631207,0.006378565449267626,-0.01600821688771248,0.055474910885095596,0.07921650260686874,0.03209356218576431,0.02421104907989502,-0.021353235468268394,0.011703791096806526,-0.00013637830852530897,-0.0021259041968733072,-0.05696199834346771,0.0010476778261363506,-0.013573134317994118,-0.01263781450688839,0.02191588096320629,-0.0786893293261528,-0.0050734905526041985,-0.032507460564374924,0.03864426910877228,0.019482357427477837,0.002018207684159279,-0.03126686066389084,-0.071330726146698,0.07727232575416565,0.012391733005642891,0.045890096575021744,0.025181304663419724,-0.021591121330857277,0.09234634786844254,-0.04320807382464409,0.061033762991428375,-0.028476247563958168,0.039960674941539764,-0.0023859848733991385,-0.03183692321181297,-0.01310320571064949,0.023329822346568108,0.0002875821082852781,-0.10889159142971039,0.03919904679059982,0.07141520828008652,0.07646062970161438,-0.05703591927886009,0.04260256141424179,0.019341427832841873,-0.02203073725104332,-0.006908171810209751,0.01634702831506729,0.08525259047746658,0.02301579900085926,0.07120569050312042,-0.048678234219551086]},{"text":"Eheu cicatricum et sceleris pudet Fratrumque.","book":"Homage to Catalonia","chapter":9,"embedding":[0.008926267735660076,0.026083964854478836,0.014244643040001392,0.0019859138410538435,-0.05283140391111374,0.07512972503900528,-0.02937256172299385,0.04850976541638374,0.0011999252019450068,0.03852222487330437,0.03215499222278595,-0.10456336289644241,0.03290979936718941,-0.11512947827577591,-0.1401115506887436,-0.10129015892744064,-0.08156032115221024,0.07580052316188812,0.04138931259512901,0.0405673123896122,-0.003371301805600524,-0.006382864434272051,-0.015840178355574608,0.04546055197715759,-0.04559949412941933,0.062268223613500595,-0.06674422323703766,-0.05483494699001312,-0.00819528941065073,-0.06342367827892303,-0.005320130381733179,0.06448465585708618,0.016853323206305504,-0.011659804731607437,0.003044313285499811,-0.04309992119669914,-0.052824702113866806,-0.04565965011715889,0.028465988114476204,0.06377441436052322,-0.06245476379990578,-0.0028643175028264523,-0.039234574884176254,-0.023569069802761078,-0.028767921030521393,-0.03851898014545441,-0.004941229708492756,0.05046062543988228,-0.09902489185333252,-0.010547195561230183,-0.08688507229089737,-0.08447634428739548,0.0585978738963604,-0.0023201981093734503,-0.014769806526601315,-0.00789893139153719,0.049287501722574234,-0.08344841003417969,-0.0011565119493752718,-0.04219488799571991,0.022700704634189606,0.022128473967313766,-0.0007115050102584064,-0.010604830458760262,0.006510538049042225,-0.048700522631406784,-0.007703785784542561,-0.028215112164616585,-0.024357765913009644,0.1102333590388298,0.05744650587439537,-0.03820452466607094,0.010172281414270401,0.015224361792206764,-0.028721164911985397,0.03747574985027313,-0.09335654973983765,-0.045428305864334106,0.027259081602096558,-0.049346476793289185,-0.003229050664231181,0.0017389327986165881,-0.03663270175457001,-0.050277721136808395,0.041847024112939835,-0.031730882823467255,-0.01353373471647501,0.005446978844702244,0.013478582724928856,0.009957650676369667,-0.01870056614279747,0.02097477950155735,-0.100270576775074,-0.03516353294253349,-0.03492534160614014,0.00453218212351203,-0.04838729277253151,-0.02132726088166237,0.05170667544007301,-0.025978103280067444,0.012804810889065266,0.03931156545877457,-0.00876079872250557,0.021594012156128883,-0.08803083747625351,-0.1006394699215889,-0.03787657618522644,-0.09543020278215408,0.029209749773144722,-0.0001092725433409214,-0.09796476364135742,-0.09639881551265717,-0.06770523637533188,-0.026947837322950363,0.013481470756232738,0.05617693439126015,0.03137597814202309,-0.12666046619415283,0.03924000635743141,-0.08023080229759216,0.08423444628715515,-0.05481733754277229,-0.038165245205163956,-0.028359273448586464,0.0600229911506176,-0.05012918636202812,-0.021221371367573738,3.149562625585619e-33,-0.06169664487242699,-0.09784208983182907,-0.02573949657380581,0.070315882563591,0.029157785698771477,-0.03808025270700455,-0.06492625921964645,-0.024044761434197426,-0.0065915281884372234,-0.040040016174316406,-0.032956164330244064,0.10980743169784546,0.027404936030507088,0.006871401332318783,-0.007848544977605343,-0.0014992691576480865,0.025268539786338806,-0.01697842963039875,0.040304556488990784,-0.08190857619047165,-0.060380686074495316,0.06074193865060806,0.040645189583301544,0.06175154447555542,0.05223916098475456,-0.0359887070953846,-0.0030661486089229584,-0.016758114099502563,0.01020412053912878,0.03113413415849209,0.09295426309108734,0.01661437377333641,-0.030438827350735664,-0.009331533685326576,0.035850442945957184,0.04528789594769478,0.05375978350639343,0.01807783544063568,-0.03877728804945946,0.06873895227909088,0.057292353361845016,-0.0230237003415823,0.060937318950891495,-0.060931045562028885,0.05400807410478592,0.05333907902240753,0.00704830652102828,0.027611352503299713,0.053829144686460495,-0.013062591664493084,0.025798017159104347,-0.02405688725411892,0.103737011551857,-0.020770717412233353,0.0667814314365387,0.0773826465010643,-0.043115127831697464,0.04847004637122154,-0.03574564680457115,-0.044985152781009674,-0.006496994756162167,-0.015348931774497032,0.002194426255300641,0.005052552558481693,0.045689698308706284,0.005222389008849859,-0.03257245197892189,-0.003156521823257208,0.07865111529827118,-0.013934444636106491,-0.049797024577856064,-0.001412886893376708,0.00160145852714777,0.012139592319726944,0.009060394018888474,0.004407947417348623,-0.09211201220750809,0.055479470640420914,-0.0875297337770462,0.007368580903857946,-0.08672982454299927,-0.043247681111097336,-0.03576670587062836,-0.028651060536503792,0.08793897181749344,-0.006780791096389294,-0.03385113924741745,0.08569355309009552,0.08972246944904327,0.06136442720890045,0.015539603307843208,-0.009660021401941776,0.0037316931411623955,0.047710809856653214,0.05294785276055336,-5.491207249167111e-33,-0.045729223638772964,-0.05014774575829506,-0.0652574896812439,0.10552271455526352,-0.019777504727244377,0.09813613444566727,-0.08055049180984497,0.05877211317420006,-0.02402625046670437,-0.04413502290844917,-0.021973876282572746,-0.011693649925291538,0.05881829932332039,-0.0577789768576622,0.0003366722376085818,0.03844583407044411,0.04854368418455124,-0.026444243267178535,-0.04047365114092827,-0.0005386295961216092,-0.0734839141368866,-0.05048748850822449,-0.007523404899984598,0.010771757923066616,0.029726916924118996,0.022166069597005844,0.044039536267519,-0.01266470830887556,-0.06098109856247902,-0.038776833564043045,0.03248489275574684,0.01364764291793108,-0.005929638631641865,-0.0017021610401570797,0.011791861616075039,0.054939307272434235,0.07613787055015564,0.036720991134643555,-0.004160909913480282,0.07370077073574066,-0.05801060423254967,0.04420594498515129,0.09167429059743881,0.05400991067290306,0.09974600374698639,-0.0015237056650221348,-0.07878238707780838,-0.07076366990804672,-0.04638758301734924,0.04355432465672493,0.07730159908533096,0.016186732798814774,0.05084424465894699,-0.01342319417744875,0.07808967679738998,0.03446811065077782,-0.04804043844342232,-0.02708677016198635,-0.04172292351722717,0.014991302974522114,0.11422311514616013,0.07684620469808578,-0.05822473019361496,-0.015409988351166248,0.05211426690220833,-0.05993718281388283,-0.1236574798822403,0.031278833746910095,0.0016637924127280712,0.05275465548038483,0.05797735974192619,-0.09247224032878876,-0.042940154671669006,0.013231566175818443,-0.037292446941137314,-0.017094166949391365,0.009380548261106014,0.07472880184650421,-0.016093315556645393,0.04010510444641113,-0.04373224824666977,-0.007184657268226147,0.005063595715910196,0.01616663672029972,-0.030085666105151176,-0.06937994807958603,-0.0034253455232828856,-0.052001241594552994,0.05224044248461723,-0.02300136536359787,0.004050147719681263,-0.03284234553575516,-0.005404045805335045,-0.06654782593250275,0.04116571694612503,-2.7000362834428415e-8,0.0256997961550951,-0.09805742651224136,-0.07837384939193726,0.04071357473731041,0.0795808658003807,-0.07963801175355911,-0.05903128162026405,-0.019682126119732857,-0.04934846982359886,0.057793550193309784,-0.03955777734518051,0.022324243560433388,0.012659318745136261,0.06234516575932503,0.020737051963806152,0.016707025468349457,0.06542865186929703,0.07464168220758438,0.015022692270576954,0.021526070311665535,-0.02433241903781891,-0.03446049615740776,-0.04109981283545494,-0.010235085152089596,-0.03511510789394379,0.01844566874206066,0.026372436434030533,-0.10151520371437073,-0.07904001325368881,-0.01909639686346054,-0.005927762016654015,0.05186242610216141,0.016572847962379456,0.0048562148585915565,-0.03095618635416031,0.07825431227684021,0.0714537650346756,-0.024492228403687477,0.018617773428559303,0.016783494502305984,0.0868675634264946,0.05627644807100296,0.05092629790306091,-0.10320214927196503,-0.006913303397595882,-0.05868310108780861,-0.015969254076480865,0.09943785518407822,0.07132229208946228,0.040284086018800735,-0.10933976620435715,0.037534747272729874,0.0049909199588000774,0.02739686332643032,0.03412213921546936,-0.02160012349486351,0.09222602844238281,-0.009416601620614529,-0.0383492186665535,-0.021311083808541298,0.09054186195135117,0.07431074231863022,0.09857459366321564,0.05508294701576233]},{"text":"O utinam nova Incude diffingas retusum in Massagetas Arabasque ferrum! 40 XXXVI.","book":"Homage to Catalonia","chapter":10,"embedding":[0.016226015985012054,0.040655214339494705,-0.018312806263566017,0.05912305414676666,-0.1391262710094452,0.013651220127940178,0.05273754894733429,0.0050240918062627316,-0.010920176282525063,0.059982072561979294,0.04601733013987541,-0.017289675772190094,0.029567105695605278,0.04007594287395477,-0.07920286804437637,-0.04818229004740715,0.06015331670641899,0.021816309541463852,-0.011140917427837849,0.05108847841620445,0.037681274116039276,0.029567161574959755,0.011106097139418125,-0.029410241171717644,-0.11418735235929489,0.013849358074367046,-0.043913036584854126,0.0297652930021286,0.0213914904743433,-0.11782656610012054,0.009313654154539108,0.0596892274916172,0.012541043572127819,-0.07144391536712646,0.017406219616532326,0.06201909855008125,-0.025825196877121925,-0.08402238041162491,0.09167683124542236,0.10575195401906967,-0.013528596609830856,-0.01588410511612892,-0.03279277682304382,0.0018297069473192096,0.09652135521173477,-0.0023171640932559967,-0.013093107379972935,0.08903612196445465,0.05365665629506111,0.03559112548828125,-0.07494673132896423,-0.09739986807107925,-0.03271768242120743,0.0705944150686264,0.03202737122774124,-0.0821876972913742,-0.005992691498249769,0.013995897956192493,-0.11539504677057266,-0.005898651201277971,-0.005270419642329216,0.0644933357834816,0.01933484524488449,-0.012991438619792461,-0.0343872606754303,-0.0625220239162445,0.00529862754046917,0.0006475872360169888,0.016460875049233437,-0.0029350267723202705,0.09615623950958252,-0.032977163791656494,0.010811083018779755,0.09862176328897476,-0.02224389836192131,0.02025780640542507,0.027850497514009476,0.011064964346587658,-0.010784371756017208,-0.02166724018752575,0.013955434784293175,-0.01983615942299366,0.014196526259183884,0.00789896585047245,-0.0340980589389801,-0.05515254661440849,0.046930547803640366,-0.07878415286540985,0.04864765703678131,-0.009594487957656384,0.018660759553313255,0.007208538241684437,-0.11547765135765076,-0.01540813036262989,0.015109259635210037,-0.014545499347150326,-0.06576555967330933,-0.00158933294005692,-0.052528947591781616,-0.0326954685151577,-0.029315363615751266,-0.04618391767144203,-0.0011669726809486747,0.028643561527132988,-0.1037638783454895,-0.054452233016490936,-0.0731525793671608,0.012594085186719894,-0.02375078573822975,-0.01741720549762249,-0.048272088170051575,0.03274942934513092,-0.035249073058366776,-0.014331203885376453,0.01538852322846651,-0.024154525250196457,0.09558036178350449,-0.11607269942760468,0.014823275618255138,-0.06844170391559601,0.03410598635673523,-0.049601491540670395,0.032325971871614456,-0.05704937130212784,-0.08965376764535904,-0.056007348001003265,-0.009140104986727238,6.323261088929497e-33,-0.06367101520299911,-0.046451713889837265,0.00712555879727006,0.06072153151035309,-0.024026446044445038,0.058933697640895844,-0.03369319438934326,-0.045008838176727295,0.02234969288110733,-0.03740667551755905,-0.07102625072002411,0.050744205713272095,0.0802319273352623,-0.02708948403596878,-0.049831245094537735,0.053990475833415985,0.04509509354829788,-0.04229879006743431,-0.03935808315873146,0.0015548793599009514,-0.006019841879606247,0.07649075239896774,0.021716006100177765,-0.039435289800167084,-0.05042147636413574,0.0623016394674778,-0.013543657027184963,-0.09772399812936783,-0.012735521420836449,0.00360031402669847,0.1380661576986313,-0.07780793309211731,-0.022603575140237808,-0.014163566753268242,-0.045692577958106995,0.010026524774730206,0.02364313043653965,-0.004846140276640654,-0.051935359835624695,0.0166563019156456,-0.030976351350545883,0.007814747281372547,0.08112262934446335,0.022976843640208244,0.05159014090895653,0.022328874096274376,0.0026075581554323435,-0.029825128614902496,0.07857967913150787,-0.006812218111008406,0.03539276123046875,0.09638600796461105,0.05253032594919205,-0.02333976700901985,-0.042088642716407776,0.009644211269915104,-0.03892109915614128,0.03636249527335167,-0.06746365875005722,0.04621712490916252,0.030909627676010132,-0.013183261267840862,-0.004283266607671976,-0.028658723458647728,-0.03553689643740654,-0.12832777202129364,-0.021527007222175598,0.04073486849665642,0.034644562751054764,0.0760871022939682,-0.049583759158849716,-0.0050664315931499004,0.03010372258722782,0.009078201837837696,-0.022770658135414124,-0.010383267886936665,0.0076673757284879684,0.057140033692121506,-0.017800113186240196,-0.01000118162482977,0.011039918288588524,0.004449529107660055,0.09380172193050385,0.05079663172364235,0.050197575241327286,0.08380492776632309,-0.027234189212322235,0.08236679434776306,0.05238315835595131,0.055925000458955765,0.03247765079140663,0.14134381711483002,0.04085473716259003,0.013176172971725464,0.09077027440071106,-6.783420842186359e-33,0.03777271509170532,-0.022415047511458397,-0.0385529100894928,0.060869887471199036,0.00020872063760180026,0.05794785916805267,-0.03472605720162392,0.11458666622638702,-0.09567192941904068,-0.0298966933041811,0.022210106253623962,-0.1172056570649147,0.042396239936351776,-0.03624005988240242,-0.04155002534389496,0.06165985018014908,-0.01638304814696312,0.03151265159249306,-0.06366509199142456,-0.015563049353659153,-0.08465563505887985,0.09411123394966125,0.03886093944311142,-0.02845967374742031,0.03415004163980484,0.005855251103639603,0.05396711453795433,-0.04269162192940712,-0.06750238686800003,-0.02465403825044632,0.0753513053059578,-0.025013385340571404,-0.06077086925506592,0.04726093262434006,-0.03797633573412895,-0.01214829832315445,0.03119179978966713,-0.01805061846971512,-0.038995467126369476,0.06389787048101425,0.044681720435619354,-0.014466481283307076,0.030502719804644585,0.053691599518060684,-0.014136933721601963,0.007710197940468788,-0.09728838503360748,0.00508487643674016,0.00395220797508955,0.06033806502819061,0.041023824363946915,-0.08224428445100784,-0.0426197424530983,-0.05072427913546562,0.04349078983068466,-0.020006397739052773,-0.033759910613298416,-0.05989091098308563,-0.022430384531617165,0.09352896362543106,0.10867223888635635,0.003398388624191284,0.01826452650129795,-0.07599828392267227,0.050984855741262436,0.061144594103097916,-0.00803942047059536,0.03839416801929474,0.010975919663906097,0.06836812943220139,0.060050249099731445,0.024378715083003044,-0.1325288563966751,0.008960986509919167,-0.04613349214196205,0.05891986936330795,0.005652737338095903,-0.02267780341207981,0.01377461850643158,0.02088603749871254,0.010903357528150082,-0.08853695541620255,0.0011906569125130773,0.016220731660723686,0.00752604054287076,-0.07047958672046661,0.02042105793952942,-0.01996186189353466,-0.08911650627851486,-0.019422881305217743,-0.047268643975257874,-0.04601360857486725,-0.03976907581090927,-0.024157961830496788,0.06098391115665436,-2.9896646935867466e-8,-0.039224639534950256,-0.043771546334028244,-0.059392888098955154,-0.006868366152048111,0.04692978411912918,-0.035436104983091354,-0.006580301094800234,0.02477279305458069,0.0025652849581092596,0.07273539900779724,-0.08476923406124115,0.007430279161781073,0.004558663349598646,0.09022025018930435,-0.018875570967793465,-0.0279396865516901,0.07540263235569,0.09553153067827225,-0.023721350356936455,-0.11020678281784058,0.02941359579563141,-0.04608423635363579,-0.06468195468187332,-0.0070571755059063435,0.03145327419042587,-0.044022269546985626,0.06106814742088318,0.03575202077627182,0.014218072406947613,-0.09002520889043808,-0.0015342236729338765,-0.035481858998537064,0.026454152539372444,-0.04272148385643959,-0.07741892337799072,0.023532547056674957,0.00932316668331623,0.019583702087402344,-0.04281650483608246,-0.014689845032989979,0.04553808644413948,-0.05187607929110527,0.07383793592453003,-0.03386138007044792,-0.01348266750574112,-0.09916181862354279,-0.001654924126341939,0.012868656776845455,-0.01989155076444149,-0.000004273485956218792,0.0626373291015625,-0.019332770258188248,0.13525952398777008,0.0194021575152874,-0.053226716816425323,0.02723809704184532,0.02501796931028366,-0.031181642785668373,0.022040734067559242,0.04382719472050667,0.06756129860877991,-0.021289251744747162,0.07431923598051071,-0.02762146107852459]},{"text":"Cressa ne careat pulchra dies nota, 10 Neu promptae modus amphorae Neu morem in Salium sit requies pedum, Neu multi Damalis meri Bassum Threicia vincat amystide, Neu desint epulis rosae 15 Neu vivax apium neu breve lilium.","book":"Homage to Catalonia","chapter":10,"embedding":[0.045057062059640884,0.015603559091687202,0.0034210362937301397,-0.022662637755274773,-0.09279242157936096,0.0026752206031233072,0.05039156600832939,0.011850442737340927,-0.015133350156247616,0.00990964099764824,0.079901784658432,-0.11316782236099243,0.052317064255476,-0.06146789714694023,-0.08823645859956741,-0.015203284099698067,-0.0015903247985988855,0.04991673305630684,-0.11397020518779755,-0.02187063917517662,0.05554362013936043,0.04620702564716339,-0.0034413221292197704,0.0549653060734272,-0.10370903462171555,0.011020100675523281,-0.09090093523263931,-0.062934510409832,0.06683807820081711,-0.11982420831918716,0.005301995202898979,0.08064980059862137,0.019075391814112663,-0.025476491078734398,0.02355012856423855,0.008779749274253845,-0.05247757211327553,-0.08940809965133667,0.013863160274922848,0.025714896619319916,-0.03895009309053421,-0.0010655063670128584,-0.09483229368925095,-0.027790674939751625,0.0158784668892622,-0.05324520170688629,-0.039799369871616364,0.0008923641289584339,0.057441361248493195,-0.019599592313170433,-0.0772348940372467,-0.051222942769527435,-0.07211639732122421,0.08364783972501755,-0.059984996914863586,-0.031833309680223465,0.0006505333003588021,-0.03206770122051239,0.0466240756213665,-0.045575257390737534,-0.016460753977298737,0.023282257840037346,-0.0012270677834749222,-0.049581192433834076,0.016357092186808586,-0.018793517723679543,-0.06793296337127686,-0.058338675647974014,-0.08499615639448166,-0.0034861513413488865,0.086719810962677,-0.061338622123003006,-0.032182808965444565,0.019724508747458458,-0.06113442778587341,0.04721958935260773,0.007192025892436504,-0.05555357411503792,-0.0011644208570942283,0.0005224928609095514,-0.08233869820833206,0.04250305891036987,0.05532148480415344,0.007654309272766113,0.0018229747656732798,-0.005718448664993048,-0.019955040886998177,-0.05295334756374359,-0.010859091766178608,-0.04527406394481659,0.01042802631855011,0.015388553962111473,-0.049179770052433014,0.013745815493166447,-0.06946176290512085,0.08991114795207977,-0.04825085774064064,-0.03338971734046936,0.011441263370215893,0.034163545817136765,0.011919149197638035,0.01203136332333088,-0.0516265444457531,-0.004589203745126724,-0.08624162524938583,-0.00583147956058383,-0.04554682970046997,-0.021466340869665146,0.008042226545512676,-0.011156467720866203,-0.059280406683683395,-0.03751136735081673,-0.004496217239648104,-0.07425004988908768,0.04402947798371315,-0.022395584732294083,0.01280405092984438,-0.0634530782699585,0.016105815768241882,-0.03803934529423714,0.05002998188138008,-0.09115229547023773,-0.029979780316352844,-0.0469377338886261,0.10624326020479202,-0.0288376584649086,-0.02480866014957428,2.4113952992182184e-32,0.014514508657157421,-0.08596157282590866,-0.017066864296793938,-0.011104496195912361,0.027362337335944176,-0.011047808453440666,-0.055673979222774506,0.04137205705046654,0.062056172639131546,-0.1279631108045578,-0.07838992029428482,-0.060388024896383286,-0.04371599480509758,-0.053981732577085495,-0.011751419864594936,-0.036434005945920944,0.024252276867628098,-0.08006500452756882,0.006236808840185404,0.030095864087343216,-0.0712970420718193,0.01648741029202938,0.008825806900858879,0.0016182473627850413,-0.01754400134086609,-0.007882276549935341,-0.0085108932107687,-0.02485351450741291,-0.018091756850481033,0.008681115694344044,0.13054706156253815,0.022132722660899162,-0.006661965977400541,0.006896707694977522,-0.0073485844768583775,0.03777112066745758,0.02946157194674015,0.0426141619682312,-0.08857745677232742,0.018758032470941544,0.00853351503610611,0.05006110668182373,0.060785986483097076,0.018524551764130592,0.08856520801782608,0.011687175370752811,0.06488924473524094,0.029224775731563568,0.04205882176756859,-0.00741105480119586,0.017881086096167564,0.07335518300533295,0.002727032406255603,0.00723252072930336,0.04235147312283516,0.05857016518712044,0.025715939700603485,0.07764195650815964,0.04280717670917511,-0.002615169156342745,0.008094334043562412,-0.01980256475508213,-0.009162729606032372,0.010674981400370598,-0.0035920822992920876,0.008403168059885502,-0.0530717596411705,0.006217868998646736,0.14238671958446503,-0.016484921798110008,-0.08893123269081116,-0.016549119725823402,-0.04975879192352295,0.05779179185628891,-0.03521835058927536,-0.03803427889943123,0.06862993538379669,-0.022920113056898117,0.02524426206946373,0.025867799296975136,0.04761379584670067,0.015416382811963558,-0.007889475673437119,0.03755482658743858,0.08767236024141312,-0.06869803369045258,-0.015849314630031586,0.02500784583389759,0.03071206621825695,0.030140789225697517,0.047789882868528366,0.0633748397231102,0.031218580901622772,-0.04233269393444061,0.0019053731812164187,-2.0509237851932222e-32,0.006377774756401777,-0.049495190382003784,-0.059443399310112,0.11457787454128265,0.017167726531624794,0.010384870693087578,-0.07609051465988159,0.027719911187887192,0.048814088106155396,-0.046257976442575455,0.0027601069305092096,0.022524302825331688,0.14888633787631989,-0.0172091294080019,0.009968515485525131,0.10817933082580566,0.04771323502063751,0.06765411049127579,-0.03581180050969124,-0.012686437927186489,-0.07164454460144043,0.12425519526004791,-0.0454271100461483,-0.03320702165365219,-0.036176569759845734,0.026613373309373856,-0.05072150006890297,-0.015771731734275818,-0.008189287036657333,-0.06255511194467545,0.07078089565038681,-0.07864201813936234,-0.027992496266961098,0.062296878546476364,-0.0757337212562561,-0.047415122389793396,0.1210315078496933,-0.03928450495004654,-0.009641165845096111,0.004492562729865313,0.08272885531187057,0.012444247491657734,0.1317652463912964,0.04830070212483406,-0.010310010984539986,-0.0862124040722847,-0.07734990119934082,0.04254976287484169,-0.101941779255867,0.04065057635307312,0.046273767948150635,-0.06081685051321983,0.014036671258509159,-0.027438635006546974,0.08773842453956604,-0.028024977073073387,-0.023603655397892,-0.06708315759897232,0.010028150863945484,0.02768111042678356,0.06473235785961151,0.033927131444215775,-0.04015319049358368,0.006954716518521309,0.02331688068807125,-0.02804081328213215,-0.03449593484401703,0.06453972309827805,-0.03751547262072563,0.04891837388277054,0.04306682199239731,-0.016405999660491943,-0.11598873883485794,-0.061992596834897995,-0.02492920123040676,0.00025781182921491563,-0.05462626367807388,0.03685330972075462,-0.0012459552381187677,0.01980653963983059,-0.015244245529174805,-0.01600787416100502,-0.014668910764157772,-0.022359183058142662,0.017805835232138634,0.014462802559137344,-0.05254581943154335,-0.01242081355303526,0.0427418127655983,-0.00922227744013071,-0.04025692120194435,0.02624638006091118,0.09172921627759933,-0.01721777580678463,0.06166648864746094,-6.227708126971265e-8,0.04939378425478935,-0.08627992868423462,-0.020998947322368622,-0.01623591221868992,0.11371193826198578,-0.11638609319925308,0.02243264764547348,-0.025201912969350815,-0.009584013372659683,0.06462299078702927,0.010090108029544353,0.013054531998932362,-0.032377418130636215,0.01643620803952217,0.041170258074998856,0.03109601140022278,0.15318593382835388,0.031407468020915985,-0.029600894078612328,-0.024571258574724197,0.049616582691669464,-0.014673874713480473,-0.008087682537734509,0.049407392740249634,-0.0024418802931904793,0.012343654409050941,0.0652427226305008,-0.0284549742937088,-0.012904985807836056,-0.002600789535790682,0.007950874045491219,0.038341060280799866,0.014604036696255207,-0.10047521442174911,0.03181876242160797,0.09617232531309128,0.06788402795791626,0.03832223638892174,0.006904491223394871,0.020297201350331306,0.05619699880480766,-0.061067864298820496,0.06902572512626648,-0.03374601900577545,0.030352754518389702,-0.00021381171245593578,0.00452272966504097,-0.08101105690002441,0.007690760772675276,-0.08520370721817017,0.01340069342404604,-0.03578080236911774,0.08373210579156876,0.023635540157556534,-0.06144995614886284,0.0026973404455929995,0.0852653980255127,0.027867740020155907,0.06644764542579651,0.002001979388296604,0.07949136942625046,0.10140790790319443,0.0071074566803872585,-0.01391868107020855]},{"text":"Nunc est bibendum, nunc pede libero Pulsanda tellus, nunc Saliaribus Ornare pulvinar deorum Tempus erat dapibus, sodales.","book":"Homage to Catalonia","chapter":10,"embedding":[-0.05962952971458435,-0.05247519910335541,-0.026682093739509583,-0.03863074257969856,-0.08079493045806885,0.03441839665174484,0.028414113447070122,0.050458841025829315,0.06714799255132675,-0.024998918175697327,0.018294034525752068,-0.06366682052612305,0.012123814783990383,-0.07559208571910858,-0.06560566276311874,0.014176756143569946,-0.061428021639585495,0.09869325906038284,0.09861555695533752,0.04252270236611366,0.05771484971046448,-0.0046694534830749035,-0.03126763179898262,0.09879238158464432,-0.00866784155368805,0.03635451942682266,0.05312570556998253,-0.030315479263663292,-0.03611006215214729,-0.08668626099824905,0.06346464157104492,0.07756933569908142,0.02671564556658268,-0.06543426960706711,-0.020386142656207085,-0.0352119505405426,0.05883077532052994,-0.0717344656586647,0.015658685937523842,0.032962922006845474,-0.0027507415506988764,-0.003745877183973789,-0.07343822717666626,-0.042222484946250916,0.0053770882077515125,0.03565579280257225,0.0061456505209207535,0.07680417597293854,0.0007222052663564682,-0.017404938116669655,0.013842270709574223,0.005501934792846441,-0.09032747149467468,-0.04963620752096176,-0.029078546911478043,0.025524087250232697,0.03579903393983841,-0.011731876991689205,0.026460139080882072,0.02269335649907589,-0.014987901784479618,0.07407838851213455,-0.008696719072759151,0.06435967981815338,-0.04270947724580765,0.014851725660264492,-0.04747487232089043,0.016916966065764427,-0.042893894016742706,0.020776331424713135,0.05339570716023445,-0.054634883999824524,0.06157061830163002,0.008637883700430393,-0.1043875589966774,-0.015416151843965054,0.004173355642706156,-0.07359150797128677,-0.008821294642984867,-0.01688377931714058,-0.08387579023838043,-0.02693244442343712,-0.041951924562454224,-0.02228175848722458,0.03232453018426895,0.008023697882890701,0.028043176978826523,-0.01630444824695587,0.015022700652480125,-0.00610103877261281,-0.01464808825403452,0.017025627195835114,-0.04120827093720436,0.011796283535659313,0.024806732311844826,-0.003483641194179654,0.021258223801851273,-0.019782664254307747,0.09265979379415512,-0.041668135672807693,0.011804403737187386,0.057987507432699203,-0.01543368399143219,-0.01968778669834137,-0.04527771472930908,-0.033860158175230026,0.0027490670327097178,-0.09276024997234344,0.11421092599630356,0.020153675228357315,-0.021521905437111855,-0.02386091835796833,-0.07942752540111542,-0.0685848519206047,-0.07845411449670792,0.008876622654497623,-0.010669371113181114,-0.1634068489074707,-0.057532262057065964,-0.05117543041706085,-0.05659055337309837,-0.019278904423117638,0.013115109875798225,0.07029695063829422,0.06191686913371086,-0.027417294681072235,0.09149322658777237,1.1885349178083253e-32,-0.08101039379835129,-0.08121121674776077,0.0351603664457798,0.05698523297905922,0.00019399760640226305,0.03504280745983124,-0.041556209325790405,-0.014498620294034481,0.05844582989811897,-0.057282209396362305,-0.035970333963632584,0.00474612507969141,-0.07644272595643997,0.08163456618785858,0.022730225697159767,0.01856500655412674,0.054173219949007034,-0.03205227479338646,0.012876413762569427,-0.04312396049499512,-0.08297845721244812,0.048710908740758896,0.044197577983140945,0.04291759058833122,0.06274836510419846,-0.004485612269490957,0.00852226559072733,-0.024391071870923042,-0.0010768533684313297,0.036979883909225464,0.11431460827589035,-0.03778839856386185,-0.0035047114361077547,-0.04342097043991089,-0.02635803259909153,-0.018746353685855865,0.023381873965263367,0.0692259669303894,-0.05072657763957977,0.04100920259952545,0.02210756577551365,-0.015980763360857964,0.041440993547439575,0.035268768668174744,0.050868213176727295,-0.002940090838819742,0.025946345180273056,0.048863861709833145,0.010266391560435295,0.016459684818983078,-0.05443013831973076,-0.039108678698539734,-0.05496389418840408,0.01640673354268074,0.017476946115493774,-0.003281806595623493,-0.07125873118638992,0.06900876015424728,0.00010047907562693581,-0.03851066157221794,0.04858674481511116,0.07150537520647049,0.030003126710653305,-0.043392643332481384,0.06267190724611282,-0.006424228195101023,0.00009707932622404769,0.02977895550429821,0.14513400197029114,-0.03745180368423462,-0.028249075636267662,0.004884581081569195,-0.05541042238473892,0.0015708175487816334,0.010336341336369514,0.0354219488799572,-0.02023474872112274,-0.018090158700942993,-0.02133176475763321,-0.04842275008559227,-0.026814186945557594,-0.038700900971889496,0.07370193302631378,0.005397062748670578,0.03354882448911667,0.05695222318172455,0.011874240823090076,0.0688813179731369,-0.006227774079889059,0.0546916127204895,0.013706513680517673,0.0782112330198288,0.08641231060028076,0.005120737943798304,0.053128309547901154,-1.1077559745773747e-32,-0.0018863341538235545,-0.10948200523853302,-0.028171321377158165,0.07702825963497162,0.004030158743262291,-0.005758673883974552,-0.15014657378196716,0.03673563525080681,-0.00845144223421812,-0.0346839465200901,-0.090996153652668,-0.05087057501077652,0.061670176684856415,-0.033620212227106094,-0.036166492849588394,0.0969482958316803,0.050221554934978485,0.025440536439418793,-0.0689055323600769,-0.016409380361437798,-0.0719049945473671,-0.027252020314335823,0.04587848484516144,-0.038126979023218155,-0.0752997025847435,0.03152081370353699,0.0703803226351738,-0.11001122742891312,-0.006060744635760784,-0.021370908245444298,0.0363471545279026,-0.011663125827908516,0.013811744749546051,0.10236969590187073,-0.05857755243778229,-0.05854467302560806,0.11159701645374298,0.057585638016462326,-0.014051703736186028,-0.016902729868888855,-0.01598525606095791,0.04474422335624695,-0.011395628564059734,-0.13843567669391632,-0.02503175102174282,-0.10113593190908432,-0.023594148457050323,-0.0479326993227005,0.0051269824616611,0.014718685299158096,0.09399868547916412,-0.04674563184380531,0.02375493198633194,-0.0006950066308490932,0.008657630532979965,-0.04299396649003029,-0.056645821779966354,-0.09163440763950348,0.05580011382699013,-0.04238509386777878,0.05838744714856148,0.041668206453323364,-0.04402398318052292,-0.04333893209695816,0.052581001073122025,-0.013882019557058811,-0.04061821103096008,0.15787586569786072,0.024423301219940186,-0.029991216957569122,0.07744132727384567,-0.07104283571243286,-0.06561767309904099,0.020709693431854248,-0.06907010078430176,-0.03538333997130394,-0.037715550512075424,-0.012989942915737629,0.050249408930540085,-0.01756650023162365,-0.07529959082603455,-0.06676308810710907,-0.04241853952407837,-0.02831410989165306,0.02017221227288246,-0.006021481938660145,0.02126615308225155,-0.07294195145368576,0.017553681507706642,-0.025705864652991295,-0.012111465446650982,-0.005534041207283735,0.039952751249074936,-0.06153326481580734,-0.0031993892043828964,-4.225857352935236e-8,0.03660168871283531,-0.042438358068466187,-0.06070903316140175,0.06932644546031952,0.04868978261947632,-0.11381376534700394,-0.0019148621940985322,-0.001503738691098988,-0.0057186889462172985,0.019444918259978294,0.0026347606908529997,0.01850220374763012,0.000955949944909662,0.023969419300556183,0.07381218671798706,0.0430055670440197,0.06812217831611633,0.028807183727622032,0.032108526676893234,-0.10544845461845398,0.03843573480844498,-0.009485765360295773,-0.03511068597435951,-0.01350449025630951,-0.05634751915931702,0.013272983953356743,0.026449032127857208,0.03813906013965607,0.08327122777700424,-0.005863025784492493,-0.0052276295609772205,0.07707244902849197,-0.0435912050306797,-0.04852398484945297,0.08787105977535248,0.03733126446604729,-0.007768998388200998,0.03493023291230202,-0.024916496127843857,0.11603694409132004,0.03828885778784752,-0.041767071932554245,0.07737650722265244,-0.056613627821207047,-0.02754148095846176,-0.05520566552877426,0.0984792709350586,-0.010534489527344704,0.05457901582121849,0.07491930574178696,-0.00798914022743702,0.025944888591766357,0.10068465024232864,0.023767249658703804,-0.06236548349261284,0.028268558904528618,0.02611873857676983,-0.05560634285211563,-0.026722174137830734,-0.03264005482196808,0.07808950543403625,0.033219028264284134,0.01903483085334301,0.025609903037548065]},{"text":"Sed minuit furorem Vix una sospes navis ab ignibus, Mentemque lymphatam Mareotico Redegit in veros timores 15 Caesar, ab Italia volantem Remis adurgens, accipiter velut Mollis columbas aut leporem citus Venator in campis nivalis Haemoniae, daret ut catenis 20 Fatale monstrum.","book":"Homage to Catalonia","chapter":10,"embedding":[0.059675876051187515,0.12183830887079239,0.034065816551446915,-0.011653047986328602,-0.045904871076345444,0.04913974925875664,0.012838197872042656,0.12315133959054947,0.009166387841105461,0.0387580431997776,0.05262422561645508,-0.13377763330936432,0.017027003690600395,-0.002557058585807681,-0.037289056926965714,-0.09450063854455948,-0.04820163920521736,0.07927709817886353,-0.08491163700819016,-0.035590704530477524,0.04724430292844772,-0.028453895822167397,-0.0312909334897995,0.01573546789586544,-0.05528298020362854,-0.015511932782828808,-0.059725336730480194,-0.016768276691436768,0.029066666960716248,-0.09288767725229263,0.00010352168465033174,-0.0011219982989132404,0.05367729067802429,-0.06158280000090599,0.021023010835051537,-0.008606131188571453,-0.010962674394249916,-0.07454247027635574,0.11581068485975266,0.04874593764543533,0.00008185859769582748,-0.07001970708370209,-0.02568994276225567,-0.009288405999541283,-0.008456109091639519,0.026261355727910995,-0.02070126309990883,0.0745329037308693,0.022994883358478546,0.005888411309570074,-0.049696847796440125,-0.05263036489486694,-0.043691687285900116,0.053485527634620667,-0.1031196191906929,-0.027922816574573517,0.025685777887701988,-0.06689219176769257,0.03511723503470421,-0.09253481775522232,-0.012643137015402317,0.0973655954003334,0.03185563534498215,0.014644800685346127,-0.07040707021951675,-0.029776662588119507,-0.02245231904089451,-0.012883600778877735,-0.0061469548381865025,0.05702921748161316,0.13145656883716583,-0.04613519087433815,-0.023169023916125298,0.010012388229370117,-0.05364863947033882,0.02263500727713108,0.04730815067887306,0.02324954979121685,0.06446217745542526,-0.0622817724943161,0.02755635976791382,0.02918289788067341,0.05832558870315552,-0.014887669123709202,0.012831263244152069,-0.03781895339488983,-0.01426856778562069,-0.03330745920538902,0.042138710618019104,-0.011506511829793453,-0.030548838898539543,0.06123782694339752,0.02756320871412754,-0.0021962663158774376,0.010801620781421661,-0.02481561340391636,-0.0011538497637957335,0.008366923779249191,-0.005067349877208471,0.00254373112693429,-0.013585747219622135,-0.031249910593032837,0.0006443664315156639,0.0618649460375309,-0.08560477942228317,-0.027232764288783073,-0.06275348365306854,-0.08645188808441162,0.032690271735191345,-0.01091853342950344,-0.08028148859739304,-0.09701555222272873,0.021640751510858536,-0.047158218920230865,0.044273391366004944,0.016297079622745514,-0.027538543567061424,-0.07958420366048813,-0.05817263200879097,0.006545280572026968,0.06557226181030273,-0.09500502049922943,-0.034944549202919006,-0.06709536164999008,0.10953907668590546,0.010033417493104935,-0.022357305511832237,2.6120777519057133e-32,0.010757173411548138,-0.08342023938894272,-0.028376109898090363,0.019671469926834106,0.011275909841060638,-0.006017074920237064,-0.0398559607565403,-0.02572811394929886,-0.07288738340139389,-0.04809040576219559,-0.06525272876024246,-0.10491466522216797,-0.00784920435398817,0.03842340037226677,0.015552491880953312,0.07702493667602539,0.12064740806818008,-0.0742252841591835,-0.09799929708242416,-0.005374731961637735,-0.0576777420938015,0.03207726404070854,0.0387255884706974,-0.03872406482696533,0.07160211354494095,0.07646813988685608,-0.03851593658328056,-0.06306140124797821,-0.023415759205818176,0.024807006120681763,0.08908862620592117,-0.05150352045893669,-0.03659053519368172,0.03441422060132027,-0.014833773486316204,0.08656173199415207,0.013575294986367226,-0.02477297931909561,-0.07066566497087479,0.06625497341156006,0.010293487459421158,0.041637301445007324,0.022304154932498932,-0.014957199804484844,0.042177025228738785,-0.01681334152817726,-0.0176518764346838,0.020368967205286026,0.09820164740085602,0.005141124129295349,0.0020892468746751547,0.03635428473353386,-0.021062646061182022,-0.027183812111616135,0.09320329874753952,0.05916395038366318,-0.13359972834587097,0.08281585574150085,-0.06448456645011902,0.023275595158338547,0.06636238843202591,0.023636693134903908,0.030337918549776077,0.06679029762744904,0.07642382383346558,-0.0761355310678482,0.015875397250056267,-0.011207634583115578,0.05751024931669235,-0.05258943885564804,-0.054302748292684555,-0.0010031090350821614,-0.030196525156497955,-0.019423292949795723,-0.05011877045035362,-0.014103678055107594,0.10731500387191772,-0.07102243602275848,-0.057023677974939346,-0.0048869759775698185,-0.019634658470749855,-0.021656528115272522,0.006792027503252029,0.0012549704406410456,0.07549086213111877,-0.013387228362262249,0.022492798045277596,0.03253753483295441,-0.0008049694006331265,0.0007940318319015205,-0.007665291894227266,-0.014948947355151176,-0.02373744174838066,0.026295462623238564,-0.06232990697026253,-2.366239859225731e-32,-0.024418069049715996,-0.027744842693209648,-0.05773372948169708,0.05106692388653755,-0.03294038027524948,0.0495317205786705,-0.03600259870290756,0.01190109271556139,-0.08047718554735184,0.029751978814601898,-0.07583647221326828,0.010173001326620579,0.08213861286640167,0.012495126575231552,-0.007679197005927563,0.0650140717625618,0.0795997902750969,-0.004255315754562616,-0.007016199175268412,0.004526940174400806,-0.06533993780612946,0.0019482300849631429,-0.023709220811724663,-0.04151242971420288,-0.033497169613838196,0.03882152959704399,0.012664154171943665,-0.02163231372833252,-0.13225054740905762,-0.07930749654769897,0.043627288192510605,0.03014816716313362,-0.03862093761563301,-0.0055831014178693295,0.01086722407490015,0.009754837490618229,0.03639610484242439,-0.04587547481060028,0.033118922263383865,0.023876482620835304,-0.010511649772524834,0.0037358093541115522,0.11785037815570831,0.012514720670878887,0.017403913661837578,-0.027261020615696907,-0.030575811862945557,-0.02589675784111023,-0.005534733179956675,0.03383037447929382,0.03878612443804741,-0.07095875591039658,0.00929187424480915,-0.00756501080468297,0.040242355316877365,-0.07968629151582718,-0.06494245678186417,-0.011190579272806644,-0.006144951097667217,-0.025836089625954628,0.07144585251808167,0.03185306489467621,-0.06082932651042938,0.031194237992167473,0.05231923609972,-0.018319105729460716,-0.09160416573286057,0.03186638653278351,-0.021488914266228676,-0.016509246081113815,0.09484471380710602,-0.05114026367664337,-0.09546110779047012,0.006958940997719765,-0.0504315011203289,0.001134127494879067,-0.05458522215485573,-0.00045524383313022554,0.07827364653348923,0.002717443276196718,-0.012093224562704563,-0.08554834872484207,-0.0006704329280182719,-0.01152027677744627,-0.02017251029610634,-0.07251948863267899,0.01667029969394207,0.03353288397192955,0.03624068573117256,-0.028840331360697746,-0.07087542116641998,-0.0644991472363472,0.037242643535137177,-0.022742053493857384,0.04842185974121094,-7.404843671565686e-8,0.10018087178468704,-0.08220668882131577,-0.060023561120033264,0.03166509047150612,0.01966768689453602,0.007471489254385233,-0.04016413912177086,-0.025120064616203308,0.0030035346280783415,0.07846390455961227,-0.05198349431157112,-0.007460897788405418,-0.0035708765499293804,-0.04232771322131157,0.05366634204983711,0.036284562200307846,0.08572394400835037,0.07559452950954437,-0.054373908787965775,-0.06248898804187775,-0.03441622480750084,0.009955891408026218,-0.0586702823638916,-0.06730954349040985,0.023181790485978127,-0.050607260316610336,0.08886007219552994,-0.033938631415367126,-0.04128265008330345,-0.03205377236008644,-0.04586367309093475,0.03795340284705162,0.022088544443249702,-0.10580742359161377,0.03843371570110321,0.06743654608726501,0.052606724202632904,0.018368562683463097,0.07721816003322601,-0.04676966741681099,0.06276651471853256,0.03646058961749077,0.07522522658109665,-0.0311142411082983,-0.05253628268837929,-0.06407948583364487,0.028719516471028328,-0.058039359748363495,0.03771694749593735,-0.12058823555707932,-0.04498632252216339,-0.004292033612728119,0.06862501800060272,0.05914046987891197,-0.04144977778196335,0.032703205943107605,0.07007275521755219,0.07731617242097855,0.007790945935994387,0.0652967020869255,0.02004695124924183,0.053261853754520416,0.0015804971335455775,-0.003603399731218815]},{"text":"Ausa et iacentem visere regiam 25 Voltu sereno, fortis et asperas Tractare serpentes, ut atrum Corpore combiberet venenum, Deliberata morte ferocior, Saevis Liburnis scilicet invidens 30 Privata deduci superbo Non humilis mulier triumpho.","book":"Homage to Catalonia","chapter":10,"embedding":[-0.015192690305411816,0.06743897497653961,-0.043763015419244766,-0.013400843366980553,-0.07893291115760803,0.010766644030809402,0.014929148368537426,0.06126946583390236,-0.03291459009051323,0.06852839142084122,0.009023487567901611,-0.10718002170324326,0.034183304756879807,-0.002026699250563979,-0.10227309912443161,-0.03321176394820213,0.011019567959010601,0.10286775976419449,-0.03905235975980759,0.04354375600814819,0.08291136473417282,0.007646510843187571,0.003688284195959568,0.0778651088476181,-0.06219350919127464,0.018961364403367043,-0.13128067553043365,0.04477224498987198,0.03891036659479141,-0.09146425873041153,0.021819336339831352,0.045903585851192474,0.0005931626074016094,-0.06037219613790512,0.050110746175050735,-0.06651704758405685,-0.08536014705896378,-0.05920423939824104,0.06688614189624786,0.06923934817314148,0.002084801672026515,-0.028001192957162857,-0.07955075800418854,-0.03622516244649887,-0.06690964102745056,-0.07339387387037277,-0.03075987845659256,0.007422488182783127,0.03880133107304573,-0.03445631265640259,-0.04799934849143028,-0.03108927421271801,-0.016137881204485893,-0.06516781449317932,-0.04099632427096367,-0.07579182833433151,0.005762035492807627,-0.09153426438570023,0.07089848816394806,-0.09505883604288101,0.09021248668432236,0.05642567574977875,-0.055964045226573944,0.0074395351111888885,-0.08310174942016602,-0.05618901550769806,-0.03202451020479202,-0.010888437740504742,-0.03284245356917381,0.01919310912489891,0.12030601501464844,-0.0668816864490509,0.036920007318258286,0.049623023718595505,-0.03527506813406944,0.06946209073066711,0.06888333708047867,0.0036350530572235584,-0.060362666845321655,-0.09374267607927322,-0.02273450791835785,0.05076469108462334,0.035885050892829895,-0.035604577511548996,0.07673181593418121,0.013384126126766205,0.022801320999860764,0.06715250015258789,0.0824786126613617,0.0311542060226202,0.02032352238893509,0.042085908353328705,-0.03279716148972511,-0.05468739569187164,0.03336905688047409,0.046349432319402695,0.0066805509850382805,-0.006481235846877098,-0.0013287793844938278,0.05382406339049339,-0.02185782603919506,-0.08993307501077652,-0.011766964569687843,0.10448173433542252,-0.0755072832107544,0.015464595519006252,-0.054488006979227066,-0.06103082746267319,0.04606710374355316,-0.0017164666205644608,-0.006590197794139385,-0.04529464244842529,-0.055875759571790695,-0.03972286358475685,0.02210051380097866,0.0012391606578603387,-0.05051964893937111,-0.011398587375879288,-0.026615485548973083,-0.0558028407394886,0.056925706565380096,-0.030112851411104202,-0.02526150271296501,-0.07232135534286499,0.06223853677511215,-0.012461218051612377,-0.025579171255230904,2.3818779013851015e-32,-0.09062043577432632,-0.06746012717485428,-0.02443920634686947,0.013543568551540375,0.0019234780920669436,-0.05944846570491791,-0.11709494143724442,-0.011188478209078312,0.05178004130721092,-0.017864584922790527,-0.12368777394294739,0.048849329352378845,-0.013021574355661869,-0.010072740726172924,-0.038793597370386124,0.010914798825979233,0.10396762937307358,-0.06421308219432831,-0.03076467476785183,-0.10842064023017883,-0.008899133652448654,0.014204910025000572,0.03479685261845589,0.03782060742378235,0.03872561827301979,-0.02631419338285923,0.024739090353250504,-0.09485059231519699,-0.043747927993535995,0.06737032532691956,0.027262812480330467,-0.060277581214904785,0.01330519001930952,0.036751843988895416,-0.021965043619275093,0.0012083071051165462,-0.022441191598773003,-0.027280716225504875,-0.028710396960377693,0.040026042610406876,-0.007495634723454714,0.035602886229753494,0.0009405128657817841,0.03794582188129425,-0.009047864936292171,0.06668495386838913,0.045634519308805466,0.07065295428037643,0.11273327469825745,0.018384667113423347,-0.044200554490089417,0.026888368651270866,-0.027040967717766762,-0.029706932604312897,-0.01908237673342228,0.02940179966390133,-0.08487629145383835,0.008763641119003296,0.0002540486748330295,-0.05063905566930771,0.05851062387228012,-0.028884628787636757,0.013423807919025421,-0.006846725009381771,-0.019608188420534134,-0.0129694240167737,0.0053232572972774506,0.016554752364754677,0.10548920929431915,-0.01689896732568741,-0.10688890516757965,0.04025736078619957,0.030238637700676918,-0.028262870386242867,0.0018329257145524025,0.016254795715212822,0.0320238396525383,-0.036424778401851654,-0.08023415505886078,0.01954101212322712,-0.11004338413476944,-0.011981172487139702,-0.021481627598404884,-0.023293571546673775,0.10143665224313736,0.06521684676408768,0.030966704711318016,0.03877599909901619,0.09187833219766617,-0.015483533032238483,0.03465000167489052,-0.0868290588259697,0.00306074065156281,-0.008585694245994091,0.011427284218370914,-2.1840325043133163e-32,-0.0007702803704887629,0.006971259601414204,0.0022456045262515545,0.1017632782459259,0.0015626698732376099,0.024737656116485596,-0.035696689039468765,0.022327378392219543,-0.10506904125213623,-0.03594721853733063,-0.029562458395957947,0.09370340406894684,0.08597259223461151,-0.06998076289892197,0.025834228843450546,0.036637142300605774,0.04471277818083763,-0.052375126630067825,-0.03281615674495697,-0.031776104122400284,-0.030835794284939766,0.001539031625725329,-0.04882587864995003,-0.13664449751377106,0.025361860170960426,0.018154148012399673,-0.031684499233961105,-0.0686010867357254,-0.04515034332871437,0.00917244702577591,0.04785029590129852,0.03351488336920738,-0.0010003227507695556,0.035477180033922195,-0.024276766926050186,0.018573129549622536,0.09692112356424332,-0.00939707551151514,-0.01767639070749283,0.03491009399294853,-0.03126712888479233,0.07737704366445541,0.09862896054983139,0.08832298964262009,-0.02351791225373745,-0.04889605566859245,0.0002998520212713629,-0.05776605382561684,0.03666423261165619,0.007540111895650625,0.11174652725458145,0.009442164562642574,0.037567079067230225,-0.015660032629966736,0.024630162864923477,-0.05616677924990654,0.007074869703501463,-0.0391550287604332,-0.0737515240907669,0.04798574000597,0.07222539186477661,0.03268706798553467,-0.014556952752172947,0.023008180782198906,0.05646157264709473,0.03901522979140282,-0.09168732166290283,0.012938815169036388,-0.01700475811958313,0.0383002944290638,0.056787021458148956,-0.05101718008518219,-0.0938936173915863,-0.059161294251680374,0.04134545102715492,0.017360443249344826,0.012979809194803238,0.019511286169290543,0.022500580176711082,0.05159284174442291,-0.05228724703192711,0.003915048204362392,-0.03626281023025513,0.000024169434254872613,-0.02618440054357052,-0.07141455262899399,-0.021626515313982964,0.017260396853089333,0.04723614081740379,-0.010704632848501205,-0.01202208362519741,-0.009694370441138744,0.06890390813350677,-0.025845594704151154,0.061824675649404526,-6.986002887288123e-8,-0.04482141137123108,-0.030291574075818062,-0.05847303569316864,0.07552310824394226,0.06598008424043655,-0.042773108929395676,-0.035266339778900146,0.009370949119329453,0.0055222660303115845,0.08436684310436249,0.027129530906677246,-0.032265108078718185,-0.02789509855210781,0.025313744321465492,-0.006454790011048317,0.020455360412597656,0.020392678678035736,0.08419118821620941,-0.051151033490896225,-0.08784446120262146,0.06378496438264847,-0.02497081086039543,-0.04241824150085449,-0.02456631138920784,-0.07511217147111893,-0.03901335597038269,-0.0326969213783741,-0.10060359537601471,-0.019297396764159203,-0.03847392648458481,-0.006741400808095932,0.04200144112110138,0.010103575885295868,-0.0733281672000885,-0.0006339011597447097,0.09649712592363358,-0.060195259749889374,0.06680963188409805,0.051458939909935,0.018969247117638588,0.08819469064474106,-0.05329926311969757,0.045033637434244156,-0.007239645346999168,0.005992671474814415,-0.012274317443370819,-0.06407465785741806,-0.008250454440712929,-0.027308743447065353,-0.024327952414751053,0.03576073423027992,0.030025577172636986,0.08761423081159592,0.04357210919260979,-0.04883046820759773,0.004648648668080568,0.05864645540714264,0.01284183282405138,-0.0645042285323143,0.018796712160110474,0.0463540256023407,-0.013593592680990696,0.0468868613243103,-0.051447849720716476]},{"text":"Simplici myrto nihil adlabores 5 Sedulus curo: neque te ministrum Dedecet myrtus neque me sub arta Vite bibentem.","book":"Homage to Catalonia","chapter":10,"embedding":[0.04228278249502182,0.05406872183084488,-0.007987267337739468,-0.019565125927329063,-0.08824341744184494,-0.02852652408182621,0.04255293309688568,0.17981858551502228,0.0013435918372124434,-0.009101581759750843,0.018488656729459763,-0.09215080738067627,0.03515073284506798,-0.027575183659791946,-0.06985824555158615,-0.033736612647771835,0.0874888077378273,0.09912313520908356,0.031329087913036346,-0.028664762154221535,0.011759942397475243,0.030465751886367798,-0.0843200832605362,-0.0073703075759112835,-0.06197435036301613,-0.011293936520814896,-0.07332488894462585,-0.002160155214369297,0.03967461735010147,-0.09696093201637268,0.02273261919617653,0.04126991704106331,0.13845451176166534,-0.02774590440094471,0.03134002164006233,-0.021728066727519035,-0.0736144632101059,-0.024315735325217247,0.03416843339800835,0.05080503597855568,-0.03470328077673912,0.015266070142388344,-0.10735251754522324,-0.026887431740760803,-0.00835907831788063,-0.022278478369116783,-0.03264511749148369,0.03206392005085945,-0.05198870599269867,0.014007345773279667,-0.09152864664793015,-0.017688877880573273,-0.0772729441523552,0.014157016761600971,0.01644717901945114,-0.0843411535024643,0.0016001495532691479,-0.08139979839324951,0.07542498409748077,0.033611275255680084,0.11003808677196503,0.030048342421650887,-0.004425279796123505,0.01486038975417614,0.01146947406232357,0.02256489172577858,0.01223682053387165,0.00537949288263917,-0.10465068370103836,0.07300835102796555,0.07795251160860062,0.014614294283092022,-0.028143683448433876,0.08765853941440582,-0.08196664601564407,0.06007157266139984,0.018682092428207397,-0.06372109800577164,0.013021137565374374,-0.06077708303928375,-0.0543266199529171,0.03845924139022827,-0.032542094588279724,-0.017868714407086372,0.023051738739013672,-0.035685718059539795,0.0529189258813858,-0.06196819618344307,0.021310653537511826,-0.06127029284834862,-0.004877710249274969,0.06589756906032562,-0.07439137995243073,-0.06164450943470001,-0.013424632139503956,-0.043075695633888245,-0.03443492576479912,0.019244050607085228,0.03467636927962303,-0.007964372634887695,0.06871183216571808,0.06367849558591843,-0.0010150937596336007,0.04645758494734764,-0.0952351838350296,-0.014743020758032799,0.022076772525906563,-0.07741094380617142,0.029126713052392006,0.0818011462688446,-0.11287642270326614,-0.020195618271827698,-0.03046279214322567,-0.06517869234085083,0.013220004737377167,0.08966180682182312,0.0418025404214859,-0.0044954451732337475,-0.009601040743291378,0.04405492544174194,0.017991259694099426,-0.0058872089721262455,-0.040981143712997437,-0.04027969390153885,-0.005447220057249069,0.01620265282690525,0.042911969125270844,1.2620559915753145e-32,-0.027867501601576805,-0.06325767189264297,-0.04769054427742958,0.06165383756160736,0.03533618152141571,-0.054045889526605606,-0.11932463198900223,-0.06503120809793472,-0.025193436071276665,0.003210811410099268,0.021655172109603882,-0.042910508811473846,0.02798531763255596,0.08827481418848038,-0.0002605693880468607,0.019085487350821495,0.07150159031152725,-0.09129517525434494,0.017218241468071938,-0.00747371232137084,-0.08203213661909103,0.021591827273368835,-0.005295146722346544,-0.028122611343860626,-0.013618290424346924,0.014083828777074814,-0.0017871606396511197,-0.09940255433320999,-0.02909800224006176,0.0007875513401813805,0.024838818237185478,0.03590230643749237,-0.03412908688187599,-0.006349863484501839,0.07291333377361298,-0.016988176852464676,0.06424105912446976,-0.0027961803134530783,-0.04714716225862503,0.0006147093372419477,0.02212413214147091,0.038341499865055084,0.06299927085638046,-0.06562446802854538,0.12099116295576096,0.0010353157995268703,0.0675547868013382,0.049570247530937195,0.012184959836304188,-0.011496980674564838,-0.03796530142426491,0.04135933518409729,-0.00028331350767984986,-0.036008115857839584,0.05186581611633301,0.002481970004737377,-0.031182780861854553,0.041129931807518005,0.02352037839591503,0.003301416989415884,-0.02974633313715458,-0.03677350655198097,-0.022139765322208405,0.014122460968792439,-0.017258115112781525,0.015223607420921326,-0.06073842570185661,-0.05758891627192497,0.1266409009695053,-0.048293180763721466,-0.08680014312267303,0.0011318603064864874,-0.021996229887008667,0.007337578106671572,0.0003740510728675872,0.010966533794999123,0.021532591432332993,-0.021499518305063248,-0.058056894689798355,-0.04764975607395172,-0.04903068020939827,0.04594036191701889,0.0008935975492931902,-0.0433896966278553,0.10425034165382385,-0.04860921576619148,0.033577896654605865,0.0681714341044426,-0.012932474724948406,0.03018796443939209,0.008116467855870724,0.009692443534731865,-0.029418114572763443,0.04879966378211975,0.053541820496320724,-1.1552892192363848e-32,-0.017504462972283363,-0.059760935604572296,0.024268921464681625,0.035392504185438156,-0.027669429779052734,0.012691945768892765,-0.010157553479075432,0.04538854956626892,-0.06450384110212326,0.03694245591759682,-0.034592412412166595,-0.024815069511532784,0.06072720140218735,-0.0343090184032917,-0.0256911963224411,0.06698667258024216,0.09334412217140198,-0.05340281501412392,0.011742313392460346,-0.03818187117576599,-0.05816543847322464,0.1108831912279129,-0.008821056224405766,-0.06319044530391693,0.050245773047208786,0.07703924924135208,0.028200695291161537,-0.040806833654642105,-0.0061659072525799274,-0.050108425319194794,0.03921569138765335,-0.021745814010500908,-0.03035532869398594,0.027454422786831856,0.009192461147904396,0.07630293071269989,0.0362221822142601,-0.04080568253993988,0.0040668826550245285,-0.0032841067295521498,-0.06854233145713806,0.13812094926834106,0.08151520788669586,-0.0555868037045002,-0.02997424826025963,-0.04439375549554825,-0.03517615422606468,-0.011358673684298992,-0.1101362556219101,-0.0074317255057394505,0.06011713296175003,-0.04269055649638176,0.005561534781008959,-0.061528198421001434,0.07357233017683029,-0.018479425460100174,0.04036403074860573,-0.017133355140686035,-0.03156112879514694,0.03705526515841484,0.06166137009859085,0.06731877475976944,0.00833007600158453,-0.09147860109806061,-0.014763608574867249,0.03145325928926468,0.005630054045468569,0.11970779299736023,-0.012159937061369419,0.0037537079770118,0.0057843346148729324,0.0501810722053051,-0.017049850896000862,-0.06618021428585052,-0.02249506674706936,-0.04958502948284149,-0.032511692494153976,0.13061344623565674,0.011987945064902306,0.043813638389110565,-0.06023145094513893,-0.012289118021726608,-0.0036619112361222506,-0.060662247240543365,-0.024655550718307495,-0.08167551457881927,-0.01595180109143257,0.029549848288297653,0.04757055267691612,-0.005464818328619003,-0.04601543769240379,-0.017050297930836678,0.025302408263087273,-0.03223240748047829,0.010089872404932976,-3.810600546216847e-8,0.06648257374763489,-0.08642280101776123,0.020036127418279648,0.029848294332623482,0.10797515511512756,-0.07591239362955093,-0.04227817431092262,-0.044127702713012695,-0.01363073568791151,0.10876021534204483,0.054777346551418304,-0.036923330277204514,-0.017314832657575607,0.012919475324451923,-0.0008112910436466336,0.05954548716545105,0.13008719682693481,-0.02461002953350544,0.02141294628381729,-0.05297485738992691,0.03435320034623146,-0.01316033210605383,-0.07310571521520615,-0.022534003481268883,-0.022685041651129723,-0.029430106282234192,0.06140246242284775,-0.0694977194070816,0.030031908303499222,-0.04932791367173195,-0.02503504790365696,0.1249040961265564,-0.015653319656848907,-0.034786123782396317,-0.04824582859873772,0.01724383793771267,0.01091761700809002,0.08080107718706131,-0.03889777511358261,0.010068776085972786,0.06693952530622482,-0.02882683277130127,0.0243366751819849,-0.032472606748342514,-0.03264068439602852,0.03815239295363426,-0.008861465379595757,-0.015829624608159065,0.011846915818750858,0.008862660266458988,-0.09686572104692459,-0.0023123719729483128,0.10486887395381927,0.06262525171041489,0.006255464628338814,-0.031144648790359497,0.05927937105298042,0.020158905535936356,-0.0640769973397255,0.0161301176995039,-0.030824659392237663,0.06893113255500793,-0.026248756796121597,-0.037157826125621796]},{"text":"Paullum severae Musa tragoediae Desit theatris; mox ubi publicas 10 Res ordinaris, grande munus Cecropio repetes cothurno, Insigne maestis praesidium reis Et consulenti, Pollio, Curiae, Cui laurus aeternos honores 15 Delmatico peperit triumpho.","book":"Homage to Catalonia","chapter":10,"embedding":[-0.018930578604340553,0.14093180000782013,0.006431411020457745,-0.053908612579107285,-0.09718454629182816,0.053867507725954056,0.08087790757417679,0.012132843025028706,0.028651203960180283,0.07350744307041168,0.06392676383256912,-0.10036219656467438,0.06224825605750084,-0.057551417499780655,-0.01402769424021244,-0.046833597123622894,-0.04386628419160843,0.12389744818210602,-0.06519705057144165,0.005607593804597855,0.07105077058076859,-0.02026917040348053,-0.035937193781137466,0.09288549423217773,-0.013660124503076077,-0.059629958122968674,-0.029937827959656715,-0.04425468668341637,-0.027098344638943672,-0.13368554413318634,-0.008431818336248398,0.00171570829115808,0.12919306755065918,-0.005552958697080612,-0.014321395196020603,0.035080261528491974,0.018280714750289917,-0.0550401508808136,0.018799932673573494,0.0662190243601799,-0.033726759254932404,0.0290547963231802,0.0007192239281721413,-0.035218916833400726,-0.01801595836877823,-0.07316364347934723,0.03302595019340515,0.06946394592523575,-0.006883207708597183,0.008580238558351994,-0.05034072324633598,-0.0556720606982708,-0.022869089618325233,0.018924571573734283,-0.04760686680674553,-0.00725126825273037,0.01541902031749487,-0.0659543052315712,0.03647947683930397,-0.09560778737068176,-0.0030966331250965595,0.03312139958143234,0.004071623086929321,0.0033486494794487953,-0.08167263120412827,-0.026607049629092216,-0.06740827113389969,-0.020053140819072723,-0.019894961267709732,0.00604541739448905,0.13094104826450348,-0.05313369259238243,-0.018932931125164032,0.002975157229229808,-0.10107103735208511,0.06110728532075882,-0.024542490020394325,-0.05328940227627754,-0.09654802829027176,-0.017610950395464897,-0.007726931478828192,0.05737463757395744,0.055443208664655685,-0.03965310752391815,0.031506072729825974,0.018728813156485558,-0.0043574851006269455,-0.005525238811969757,0.0006523712072521448,-0.03066484071314335,0.061330683529376984,0.05275613069534302,0.057064469903707504,0.006866983603686094,-0.016593236476182938,0.04624641314148903,-0.015789523720741272,-0.014045674353837967,0.00941719114780426,0.07806429266929626,0.0394914373755455,0.018426690250635147,-0.010573283769190311,0.07944082468748093,-0.05977266654372215,0.04038847237825394,-0.013750627636909485,-0.12051765620708466,0.025384798645973206,-0.03483008220791817,-0.05688634514808655,-0.08688101172447205,-0.08258330076932907,-0.020720429718494415,-0.00011091796477558091,0.08588691055774689,-0.01835409738123417,-0.008686373941600323,-0.01511466410011053,-0.042421795427799225,0.050282903015613556,-0.05275414511561394,-0.04306593909859657,-0.034946806728839874,0.006157564930617809,0.0574055090546608,0.01337276678532362,2.0016707188305622e-32,-0.06893918663263321,-0.0535987988114357,-0.06738157570362091,0.01258169673383236,0.06345060467720032,-0.033299148082733154,-0.05091157555580139,-0.04419516772031784,-0.03126006945967674,-0.1375998705625534,-0.10735277086496353,0.02812626212835312,0.008033243007957935,0.057175107300281525,-0.03664326295256615,0.011509152129292488,0.07774992287158966,0.012058604508638382,0.02749740518629551,-0.060075607150793076,0.003066478995606303,0.03967035561800003,-0.02155863493680954,-0.04558560252189636,0.06617552787065506,0.058124981820583344,0.021785063669085503,-0.056466709822416306,0.012696805410087109,0.04129587858915329,0.08139637112617493,-0.014715692028403282,-0.006118105258792639,-0.08175701647996902,0.0215317215770483,-0.005613386631011963,-0.01508986297994852,0.0029242364689707756,-0.022235076874494553,0.02375805377960205,-0.025898348540067673,0.0034270475152879953,0.018928375095129013,0.0639578104019165,0.06492993980646133,-0.016240591183304787,0.05019519478082657,0.057338397949934006,0.17484159767627716,0.03767171874642372,0.02522754855453968,0.046332549303770065,-0.05234837159514427,-0.05553991347551346,-0.004095083102583885,-0.0016285908641293645,-0.04736623167991638,0.1075802892446518,-0.04202611371874809,-0.026405062526464462,0.028797097504138947,-0.004107726272195578,0.026621241122484207,0.018477577716112137,-0.017377279698848724,0.032735031098127365,-0.07072082161903381,0.0238762479275465,0.111686572432518,-0.0008310346165671945,-0.0666409581899643,-0.009967965073883533,-0.02907831408083439,0.03157126531004906,-0.022103600203990936,-0.01856539398431778,0.052671607583761215,-0.08594484627246857,-0.022173868492245674,-0.004307206720113754,-0.08203975856304169,-0.005836445838212967,-0.025761494413018227,0.03660275787115097,0.0460892990231514,0.017566274851560593,0.013276983983814716,0.034014858305454254,0.11072036623954773,0.06164034828543663,0.04338982701301575,0.054704029113054276,-0.048427704721689224,0.024938689544796944,-0.0672786757349968,-1.681600945643328e-32,-0.01433740183711052,0.004541992675513029,-0.025615526363253593,0.048049915581941605,-0.04191622510552406,0.026557836681604385,-0.10532940924167633,0.03816359490156174,-0.05163513869047165,-0.0028217181097716093,-0.04022125527262688,-0.05985814705491066,0.01942046545445919,-0.061080340296030045,0.04516754299402237,0.021746395155787468,0.05188557878136635,0.06071941554546356,-0.08224133402109146,-0.023297086358070374,-0.03351709619164467,-0.03618919476866722,-0.05931506305932999,-0.07256286591291428,0.003125130431726575,0.0026413698215037584,0.04680539667606354,-0.041050687432289124,-0.010956955142319202,-0.08897137641906738,0.008157349191606045,-0.05320258066058159,-0.1024775579571724,0.0669446587562561,-0.01057837251573801,0.0230896957218647,0.07482616603374481,0.012934848666191101,0.01967262290418148,0.06055262312293053,-0.01958361640572548,0.058656319975852966,0.07675790041685104,0.053736791014671326,-0.009790347889065742,0.0239787045866251,-0.07557803392410278,0.01550442073494196,-0.01766333170235157,0.0023953041527420282,0.04601256921887398,-0.05610349029302597,0.09553618729114532,-0.04341455549001694,0.108601413667202,-0.009281536564230919,-0.0678587332367897,0.030524225905537605,-0.004196072928607464,-0.022922027856111526,0.0507822148501873,-0.031033586710691452,-0.031108008697628975,0.05335310846567154,0.07212774455547333,0.04109407216310501,-0.09828723222017288,0.035912610590457916,-0.06717976182699203,0.08346129208803177,-0.0028901167679578066,-0.09633255004882812,-0.11154282093048096,-0.08901671320199966,-0.03839832916855812,0.06899041682481766,-0.0726773664355278,-0.0032667922787368298,-0.01770532689988613,0.0025968817062675953,0.0010903511429205537,-0.011454134248197079,-0.06372004747390747,-0.08488045632839203,0.018490204587578773,-0.012422298081219196,0.04278463497757912,0.04585124924778938,0.08458205312490463,0.06817037612199783,-0.00311354361474514,-0.01829908974468708,0.09512893110513687,-0.04681072756648064,0.06128579378128052,-6.393234741608467e-8,0.016911469399929047,-0.021032875403761864,-0.041289590299129486,0.04385155066847801,-0.006341693457216024,-0.0099948076531291,-0.015101011842489243,-0.030993904918432236,-0.0012510840315371752,0.05028650909662247,-0.020619383081793785,-0.012599376030266285,-0.03232171759009361,0.017699457705020905,0.033039238303899765,-0.016659768298268318,0.08028581738471985,-0.00730662839487195,0.02124791406095028,-0.01777881570160389,0.009517387486994267,0.0016842870973050594,-0.019429968670010567,-0.0005799489445053041,-0.06101030856370926,0.03466874733567238,0.05939413607120514,0.08683422952890396,-0.017118636518716812,0.02453525923192501,0.0009255188633687794,-0.00055447913473472,-0.08494934439659119,-0.09205277264118195,0.013363019563257694,0.07528242468833923,-0.08976493775844574,-0.012958063744008541,0.009353706613183022,-0.0006617738399654627,0.06736450642347336,0.031766120344400406,0.030247217044234276,-0.0008643046021461487,0.037674542516469955,-0.058386705815792084,-0.011614891700446606,0.011455480940639973,0.00920006912201643,-0.018411528319120407,-0.0586397610604763,-0.07556770741939545,0.05058829486370087,0.037764716893434525,-0.0476340688765049,-0.045522041618824005,0.052801549434661865,0.031218234449625015,-0.04396052658557892,0.023447444662451744,0.0647290050983429,0.002392102498561144,0.05320924520492554,-0.0619555227458477]},{"text":"Iuno et deorum quisquis amicior 25 Afris inulta cesserat impotens Tellure victorum nepotes Rettulit inferias Iugurthae.","book":"Homage to Catalonia","chapter":10,"embedding":[-0.08457759022712708,0.09329336881637573,-0.027683299034833908,0.012321813963353634,-0.04704631492495537,-0.06059427931904793,0.07268910855054855,0.13935677707195282,0.07171281427145004,0.06814051419496536,0.04642171785235405,-0.10995014011859894,0.02772464230656624,0.026229241862893105,-0.12205334007740021,-0.04990549385547638,-0.01062496192753315,0.05461077764630318,-0.026518898084759712,-0.04803577810525894,0.06546986103057861,-0.03553347289562225,-0.09711267054080963,0.05604579672217369,-0.024204017594456673,-0.010017217136919498,-0.07884282618761063,-0.05121129751205444,-0.09568815678358078,-0.08269326388835907,0.01726059429347515,-0.003038883674889803,0.05700571462512016,-0.009509091265499592,0.0018202834762632847,0.018409594893455505,0.019274773076176643,0.018712470307946205,0.07638522237539291,0.04493556544184685,-0.07983431220054626,-0.06597668677568436,-0.03324227035045624,-0.005240926053375006,-0.07817187905311584,-0.023329325020313263,-0.10926779359579086,0.06618613749742508,0.006310720462352037,0.012264290824532509,-0.10646506398916245,-0.014303759671747684,0.01054314710199833,-0.006667258683592081,0.02503945119678974,-0.08801189064979553,-0.027029836550354958,-0.00374912703409791,0.020870104432106018,-0.008534475229680538,0.08925057202577591,0.04206499457359314,-0.009775998070836067,0.01686691865324974,-0.09775560349225998,0.025424864143133163,0.0286613367497921,0.03710530325770378,-0.09428413212299347,0.011313725262880325,0.14037446677684784,-0.0574360154569149,0.07406974583864212,-0.012961219064891338,0.004383360967040062,0.0018895039102062583,-0.016006993129849434,-0.054820138961076736,-0.01569938473403454,-0.09538646042346954,-0.02261594869196415,0.03020584024488926,-0.044894590973854065,-0.010485585778951645,-0.00865081511437893,-0.025713980197906494,0.023691432550549507,-0.002431348664686084,0.052835702896118164,0.023144518956542015,0.0037056226283311844,-0.07012759149074554,-0.11049401015043259,0.029265526682138443,0.046807315200567245,0.0487646646797657,0.007226171903312206,-0.01672290824353695,-0.022511998191475868,-0.027926288545131683,0.020126929506659508,-0.006475509610027075,-0.03393448516726494,0.003096834057942033,-0.07169920951128006,-0.03057130053639412,-0.027172569185495377,-0.10642099380493164,0.02549169771373272,0.03466502204537392,-0.08401405066251755,-0.08695771545171738,-0.020831989124417305,-0.04213133081793785,0.021552927792072296,0.06542345881462097,-0.01397390104830265,-0.02338840626180172,-0.01704631745815277,-0.03645200654864311,0.05037259683012962,0.036540012806653976,-0.032133396714925766,-0.01961447112262249,-0.014896540902554989,0.06293976306915283,0.04067932814359665,1.3968368514094533e-32,-0.046436525881290436,-0.036596354097127914,-0.0889676958322525,0.09520735591650009,-0.06523086875677109,-0.06512494385242462,-0.016092685982584953,0.009171109646558762,-0.03037334233522415,-0.08866459876298904,-0.09707534313201904,-0.05308080092072487,-0.058117832988500595,0.00626984890550375,-0.009288017638027668,0.06737767904996872,0.11752983182668686,-0.0763361006975174,-0.004466465208679438,0.028223881497979164,-0.028948159888386726,0.02828790992498398,-0.04125124216079712,-0.09891656041145325,0.03107399307191372,-0.006751313805580139,-0.015958815813064575,-0.06387177854776382,-0.06460601091384888,0.05211358889937401,0.07273004949092865,-0.02471749670803547,-0.03275217488408089,0.01281144842505455,-0.01612912304699421,-0.007924804463982582,0.03659423440694809,0.009349938482046127,0.002284018788486719,-0.0018852041102945805,-0.008817908354103565,0.04975321516394615,0.024037353694438934,-0.02463533543050289,0.10291090607643127,0.054516613483428955,0.08265506476163864,0.03763578087091446,0.03876775875687599,0.04791581258177757,-0.025117209181189537,0.028970560058951378,0.06971342861652374,-0.04277292266488075,0.04957083240151405,0.0562598891556263,-0.0683535784482956,0.0640617087483406,0.021012015640735626,0.0053966715931892395,-0.012300487607717514,-0.010415964759886265,-0.04016002640128136,-0.02418563887476921,0.010343444533646107,-0.035508893430233,-0.023643916472792625,0.0069650281220674515,0.04723864048719406,0.02504190057516098,-0.12427030503749847,-0.034094665199518204,-0.03753797709941864,0.03842303156852722,-0.03783959895372391,0.02617586776614189,0.004464658908545971,-0.0586455799639225,-0.08543762564659119,-0.0030189035460352898,-0.014071627520024776,-0.0332053117454052,-0.010350072756409645,-0.0073877074755728245,0.06366255134344101,0.07367080450057983,0.05560048669576645,-0.021163487806916237,0.0551435686647892,0.030148720368742943,0.036768071353435516,-0.028573865070939064,-0.0016195386415347457,-0.039181631058454514,0.021156664937734604,-1.458052776843638e-32,0.018643679097294807,-0.019003555178642273,-0.09734131395816803,0.10959041863679886,-0.038975540548563004,0.05623958632349968,-0.06676686555147171,0.03717275336384773,-0.019098365679383278,-0.08108256012201309,-0.08470703661441803,-0.024408742785453796,0.06240987032651901,-0.04004303738474846,-0.0975726917386055,0.0014702017651870847,0.004862847272306681,-0.007079268340021372,0.005038421135395765,-0.029257426038384438,-0.030227577313780785,0.014542857185006142,-0.024561388418078423,-0.08015476167201996,0.030310463160276413,0.021656984463334084,-0.019266802817583084,0.015318424440920353,-0.09579747915267944,-0.039676979184150696,0.06806884706020355,-0.007804593071341515,0.017222678288817406,0.04430736228823662,-0.028099313378334045,0.050037678331136703,0.11397035419940948,-0.053457096219062805,0.012385965324938297,0.007743495050817728,-0.008561442606151104,0.07376585155725479,0.025495504960417747,0.04576534032821655,-0.040190622210502625,0.020098578184843063,-0.0865044817328453,0.0024060357827693224,0.06219949200749397,-0.04929414391517639,0.014115777797996998,-0.04690297693014145,-0.0011103620054200292,-0.024298470467329025,0.05706861987709999,-0.04375012591481209,0.015619787387549877,0.011831054463982582,-0.02793756127357483,0.0646214410662651,0.004932747688144445,0.00868981797248125,-0.0025623610708862543,0.027194183319807053,0.0345306396484375,0.005324900150299072,-0.05872471258044243,0.033612705767154694,0.057562701404094696,0.07154636085033417,0.10078582912683487,-0.08335689455270767,-0.05823048949241638,-0.07363768666982651,0.03614632040262222,0.0018600161420181394,-0.060432322323322296,0.03176356479525566,-0.02013630047440529,-0.007378438487648964,0.01894986443221569,-0.06749088317155838,0.03242165222764015,-0.028478138148784637,-0.012446373701095581,-0.03761065751314163,0.07992853969335556,-0.0005457255756482482,-0.004264217335730791,0.01902318187057972,-0.029309900477528572,0.024409746751189232,0.021282410249114037,-0.04114686697721481,0.020375249907374382,-4.737697167911392e-8,0.07716305553913116,-0.0656433030962944,0.017767349258065224,0.02790403924882412,0.012551707215607166,-0.06426046788692474,0.03415600582957268,0.030724316835403442,-0.03989339619874954,0.08856653422117233,-0.06218557804822922,-0.05116419494152069,0.03696369752287865,0.055605433881282806,0.07093866169452667,-0.009869296103715897,0.14467790722846985,0.04907207936048508,-0.04731279984116554,0.016002925112843513,0.10248152911663055,-0.04320291429758072,-0.10446207225322723,-0.060683876276016235,0.031358323991298676,-0.002852796111255884,0.06420470029115677,-0.05659498646855354,-0.007881134748458862,0.07624826580286026,-0.0529048927128315,0.015070212073624134,0.01410625409334898,-0.05581439658999443,-0.01818602904677391,0.13013949990272522,-0.05922812968492508,0.042021919041872025,-0.058401357382535934,-0.03065645880997181,0.06046372279524803,0.019652526825666428,0.0008921188418753445,-0.03626282513141632,0.03287928178906441,-0.06328664720058441,-0.022836163640022278,0.0039898972027003765,0.015103109180927277,0.015023789368569851,-0.03111918270587921,0.029667550697922707,0.10153790563344955,0.06247211992740631,-0.0010769455693662167,-0.010176384821534157,0.05369076505303383,0.042934488505125046,0.0234360434114933,-0.007598044350743294,0.054029498249292374,0.037392981350421906,0.06335406750440598,-0.04523706063628197]},{"text":"Qui gurges aut quae flumina lugubris Ignara belli? quod mare Dauniae Non decoloravere caedes? 35 Quae caret ora cruore nostro?","book":"Homage to Catalonia","chapter":10,"embedding":[-0.06420786678791046,0.02233620546758175,-0.014191611669957638,-0.012058955617249012,-0.04943367466330528,0.002079699421301484,0.12266850471496582,0.06830041855573654,0.016604378819465637,0.044930219650268555,0.05157238990068436,-0.06304232031106949,0.002792634069919586,-0.03369956463575363,-0.10725408792495728,-0.036572907119989395,-0.07090391963720322,0.01652703247964382,-0.10555368661880493,0.029330790042877197,0.005346222780644894,-0.03870256245136261,0.012654196470975876,0.05562654882669449,-0.02151736058294773,0.0776178166270256,-0.049099624156951904,-0.019309714436531067,-0.027297182008624077,-0.028640681877732277,0.021559935063123703,0.08040062338113785,0.02661275491118431,-0.04088670387864113,-0.004945721942931414,-0.004586880095303059,-0.017076745629310608,-0.06067957356572151,0.04099647328257561,0.09632066637277603,-0.12456101179122925,0.002455134177580476,-0.08532052487134933,0.0026939241215586662,0.05945144221186638,-0.014771814458072186,-0.048256766051054,0.05971261486411095,0.02651047706604004,-0.02756587602198124,-0.0534050315618515,0.044288378208875656,-0.08389324694871902,0.040442027151584625,-0.0350651741027832,-0.08827880769968033,0.02536337822675705,-0.01622616872191429,-0.004739884287118912,-0.013974975794553757,-0.016780195757746696,0.03226105123758316,-0.01869179867208004,0.012065536342561245,-0.06540299206972122,-0.028263207525014877,-0.09321535378694534,-0.005540691781789064,-0.023210961371660233,0.019091486930847168,0.05157436057925224,-0.043638475239276886,-0.012682046741247177,0.01430554874241352,-0.015297225676476955,0.08242373168468475,-0.0018612092826515436,-0.02342229336500168,-0.056353021413087845,-0.023089565336704254,0.09127216786146164,-0.026831405237317085,0.046407829970121384,0.06281279027462006,0.06927956640720367,-0.0016444112407043576,0.03551037237048149,-0.04811304435133934,0.05365806818008423,-0.0020548729225993156,-0.011972445994615555,0.06979551166296005,-0.023396754637360573,-0.05449103191494942,-0.024139121174812317,0.01733984611928463,0.007636479567736387,0.019080452620983124,-0.02891874872148037,0.04038115218281746,0.024792803451418877,-0.045481327921152115,-0.04993049427866936,0.030414825305342674,-0.12433234602212906,-0.015645427629351616,-0.01434371992945671,-0.06411378085613251,0.018159395083785057,0.031747084110975266,-0.08064984530210495,-0.08699794113636017,0.0036697944160550833,-0.12167315185070038,0.0006099886377342045,0.02961835265159607,-0.006963079329580069,-0.08473517000675201,0.008176247589290142,0.003061274765059352,0.06201159209012985,-0.0538468137383461,-0.030039846897125244,0.0042439913377165794,0.058134112507104874,-0.021599557250738144,0.011049970984458923,1.0396545909832486e-32,-0.018195651471614838,-0.03958354517817497,-0.051110778003931046,0.03520543873310089,-0.0048839193768799305,-0.03283921629190445,-0.04838057607412338,-0.04265672713518143,-0.04823931306600571,-0.02139272913336754,-0.06109752878546715,-0.06303740292787552,-0.014666816219687462,-0.11388538032770157,-0.006814504507929087,0.08219913393259048,0.07361972332000732,-0.12194042652845383,-0.01023692637681961,-0.07184882462024689,0.012280121445655823,0.0721459835767746,-0.008556269109249115,0.0018275307957082987,0.011333879083395004,-0.04851264879107475,-0.03859507665038109,-0.06452123075723648,-0.02826707623898983,0.04543158411979675,0.02063065581023693,-0.039447151124477386,0.014784088358283043,0.004021684173494577,-0.09540610760450363,0.039078738540410995,-0.07630784809589386,-0.028887685388326645,-0.06566920876502991,-0.0011816915357485414,0.03593530133366585,0.06466042995452881,0.059968844056129456,0.04138617590069771,0.10932038724422455,0.06462697684764862,0.03555569052696228,0.03189917281270027,0.09130138903856277,-0.002459623385220766,0.00012347337906248868,0.016131585463881493,-0.040072642266750336,0.02796010486781597,0.0381033755838871,0.08024277538061142,0.018040472641587257,0.014682636596262455,0.009549636393785477,-0.005679983180016279,0.05803462490439415,0.01827232912182808,0.022740351036190987,-0.06369515508413315,0.06650453060865402,-0.03473161160945892,-0.018732991069555283,-0.0025965881068259478,0.08157108724117279,0.015544136054813862,-0.06399383395910263,-0.07955148816108704,-0.006039178930222988,0.038266610354185104,0.014521402306854725,-0.0012444992316886783,0.12936268746852875,-0.021996354684233665,-0.013600645586848259,-0.03186827152967453,-0.038335271179676056,-0.02169651910662651,-0.040948621928691864,0.023058854043483734,-0.010861197486519814,-0.02158673293888569,0.00935343001037836,-0.005612412933260202,0.021134089678525925,0.05688723549246788,0.03884292393922806,0.009353763423860073,0.045534566044807434,-0.06892403960227966,-0.013825842179358006,-8.419722937526399e-33,-0.03785961493849754,-0.016525007784366608,-0.05558406189084053,0.12149590998888016,-0.00934910960495472,0.03075818531215191,-0.13507148623466492,-0.006986959837377071,0.06202935427427292,0.03660138323903084,-0.025864027440547943,-0.07253555953502655,0.03767762333154678,-0.031119586899876595,-0.02523571439087391,0.0927557572722435,0.057179443538188934,0.028438227251172066,-0.07154832780361176,0.002530154539272189,-0.04831765964627266,0.07516161352396011,0.003033076412975788,-0.04928048700094223,-0.052829381078481674,0.040410496294498444,0.04990337789058685,-0.0023874107282608747,0.02189345844089985,-0.04938429966568947,-0.045891400426626205,0.00043598710908554494,-0.032382212579250336,0.03851744532585144,-0.07075373828411102,-0.03566167131066322,0.15745188295841217,-0.012408328242599964,-0.04835022613406181,-0.012868559919297695,-0.020899765193462372,0.06353036314249039,0.09035864472389221,0.0038825119845569134,-0.03133208304643631,-0.051525380462408066,-0.06784041970968246,-0.04092433676123619,-0.034913670271635056,-0.010867409408092499,0.09703429043292999,-0.011188467033207417,-0.05928707495331764,0.028063181787729263,0.06579730659723282,0.004325915593653917,-0.020288223400712013,-0.03158600255846977,-0.029850870370864868,0.06519140303134918,0.12631213665008545,-0.04062167927622795,-0.04271157830953598,-0.00726963160559535,0.0819491371512413,0.040712762624025345,-0.05160843953490257,0.12396194040775299,0.000917591096367687,-0.024154603481292725,0.05347609147429466,-0.06152525916695595,-0.06395164132118225,-0.015570146031677723,0.03655819967389107,-0.013353935442864895,-0.047429103404283524,0.03516862541437149,0.033784523606300354,0.03704371675848961,-0.021320031955838203,-0.032903045415878296,-0.05406958982348442,0.004920742940157652,0.020079834386706352,-0.09799600392580032,-0.02771620638668537,-0.01825758069753647,0.04324553534388542,0.016275929287075996,0.024320725351572037,0.005494917742908001,0.1374036967754364,-0.03127368167042732,0.03250887617468834,-3.4299382889457775e-8,0.011733428575098515,-0.014277049340307713,-0.03038642555475235,0.051502760499715805,0.03996651619672775,-0.07069718092679977,-0.008255108259618282,0.05121567100286484,-0.011670267209410667,0.08921872079372406,-0.00532533647492528,0.012633931823074818,0.016114529222249985,-0.004371108487248421,0.06010455638170242,0.0886642336845398,0.05282730981707573,0.046996597200632095,-0.05014080926775932,-0.03740658611059189,0.1264723390340805,0.041364606469869614,-0.060488510876894,0.00242399494163692,-0.0896204262971878,0.02854037843644619,0.07928307354450226,0.00148630584590137,0.003174268174916506,-0.005069265142083168,-0.06138560175895691,0.05444508045911789,0.0508742518723011,-0.1414593756198883,-0.046335503458976746,-0.034331656992435455,0.02018808200955391,-0.01326898206025362,-0.08044318854808807,0.020794034004211426,0.03865187242627144,0.017788615077733994,-0.027454923838377,-0.003922216594219208,0.0578342080116272,-0.006289896555244923,0.055412985384464264,-0.010074318386614323,-0.0005737075698561966,-0.006159110926091671,0.04275837913155556,0.01581326499581337,0.11734425276517868,0.08169380575418472,-0.04995793104171753,-0.03361755982041359,0.09877867996692657,0.09485190361738205,0.04417934641242027,-0.01921251229941845,0.05407744273543358,0.033684179186820984,0.03266417607665062,-0.0011203410103917122]},{"text":"Nullus argento color est avaris Abdito terris, inimice lamnae Crispe Sallusti, nisi temperato Splendeat usu.","book":"Homage to Catalonia","chapter":10,"embedding":[0.021381564438343048,0.05350515618920326,-0.01582782156765461,0.07420971244573593,-0.04599107429385185,0.06637527048587799,0.013849064707756042,-0.018011583015322685,0.03219814598560333,0.03602294996380806,0.019389601424336433,-0.08494346588850021,-0.0004847410600632429,-0.031058859080076218,-0.04821065068244934,0.014430589973926544,-0.03293398767709732,0.02896912954747677,-0.07837603986263275,-0.07277288287878036,0.02894185483455658,-0.03912666067481041,-0.019295109435915947,0.048019107431173325,-0.1333906501531601,-0.02099541760981083,0.0017246459610760212,-0.046996891498565674,-0.032327938824892044,-0.050804104655981064,-0.025101270526647568,0.0435764379799366,0.0897638276219368,-0.022845370694994926,0.0642101913690567,-0.047879189252853394,0.09018951654434204,-0.06468714773654938,0.01868313178420067,0.05921773612499237,-0.0351855531334877,0.03281426057219505,-0.016971619799733162,-0.008437770418822765,-0.0019813901744782925,-0.019747620448470116,-0.04202096909284592,0.08350614458322525,0.017637792974710464,-0.0726848915219307,-0.04701108857989311,-0.06006947532296181,-0.0439387783408165,0.030305108055472374,-0.06467042118310928,0.06556373834609985,0.03455587103962898,-0.06570915877819061,0.02490781620144844,0.028866251930594444,0.01423847209662199,0.03343500941991806,-0.03686260059475899,0.027157459408044815,0.022751251235604286,0.012864144518971443,0.04548453539609909,-0.023595180362462997,-0.0654631033539772,-0.05776575952768326,0.12197505682706833,0.007389644160866737,0.0750778391957283,0.0772513747215271,-0.0205617044121027,0.022921225056052208,0.039866600185632706,-0.004404058214277029,0.018656397238373756,-0.016975928097963333,-0.04300539195537567,-0.0465749055147171,-0.04347499832510948,0.03258699178695679,0.13993805646896362,0.05315420404076576,-0.018881790339946747,-0.003491399809718132,-0.001042750314809382,0.055005867034196854,-0.04352972283959389,0.03347015753388405,-0.06092369928956032,0.0047678290866315365,-0.04252319037914276,0.048135463148355484,0.024580921977758408,-0.046978868544101715,-0.03217433765530586,-0.029464419931173325,0.05010664463043213,-0.12120296061038971,-0.031277161091566086,0.02320322021842003,-0.05490592494606972,-0.03005206026136875,0.022696763277053833,-0.07621432840824127,-0.005806559696793556,0.030302057042717934,-0.03523050993680954,-0.06582490354776382,-0.02322644740343094,-0.05452360585331917,-0.013132208958268166,-0.06989564001560211,-0.014527307823300362,-0.049792736768722534,0.019483355805277824,-0.05621480941772461,0.06891316920518875,0.017966054379940033,-0.018829070031642914,0.016856607049703598,-0.003924586344510317,-0.014256364665925503,0.042984526604413986,6.880409411704767e-33,-0.005369056481868029,-0.046914130449295044,-0.0026031257584691048,-0.02086254581809044,-0.00140299741178751,-0.07296216487884521,-0.06626953184604645,-0.016187962144613266,-0.05908650904893875,-0.029348718002438545,-0.06697346270084381,-0.04793687164783478,-0.050376273691654205,0.04214002937078476,0.05317457765340805,0.060342080891132355,0.11486057192087173,0.041244424879550934,0.00012757723743561655,0.013455593027174473,-0.14454740285873413,0.08731229603290558,0.08809110522270203,0.004708401393145323,0.05446959659457207,-0.0008848378201946616,-0.047687873244285583,-0.10131535679101944,-0.060999710112810135,0.005597891751676798,0.09645675122737885,0.04116096347570419,-0.024546481668949127,0.027944423258304596,-0.10495451837778091,-0.0025296504609286785,0.03585045039653778,-0.026169974356889725,-0.004817605018615723,0.1502225399017334,0.026848306879401207,0.03669208288192749,0.08114392310380936,0.0011559046106413007,0.07678667455911636,-0.00948998425155878,0.04086839407682419,0.025483647361397743,0.08169399946928024,0.05976460501551628,-0.03297783061861992,-0.012685518711805344,0.06322761625051498,-0.05423983186483383,-0.0062775383703410625,0.06202267110347748,0.02443147450685501,-0.007411058992147446,0.010340563021600246,-0.019381055608391762,-0.01430528238415718,-0.001694014179520309,0.039493314921855927,-0.1625477522611618,0.01323011051863432,-0.023145128041505814,-0.03130762279033661,-0.010509178973734379,0.02098318375647068,-0.07103467732667923,-0.05919355899095535,0.016461312770843506,0.01596595160663128,-0.001180256949737668,0.035923026502132416,-0.01390833780169487,0.0997079461812973,-0.029983093962073326,0.043730683624744415,-0.029717884957790375,-0.01367164682596922,0.06092749163508415,-0.017170749604701996,0.012423904612660408,-0.0619877353310585,0.011580678634345531,0.01825055666267872,0.1043279767036438,0.020200882107019424,-0.0005213984986767173,0.010474118404090405,0.006424779072403908,-0.042597755789756775,0.003965770825743675,0.07608037441968918,-7.308287886036141e-33,-0.02991887927055359,-0.03730078786611557,-0.11757803708314896,0.0650574117898941,-0.024471299722790718,0.014202804304659367,-0.04528401046991348,0.06282663345336914,-0.004856612533330917,-0.05515190213918686,-0.026678074151277542,-0.0022357015404850245,0.02248556911945343,-0.025211036205291748,-0.034945543855428696,0.08127047121524811,0.035991743206977844,0.0621231272816658,-0.002417521784082055,-0.07554172724485397,-0.14699430763721466,0.015442289412021637,0.031962376087903976,-0.07304157316684723,-0.056181393563747406,0.004239022731781006,0.05333233252167702,0.06928472220897675,0.0006375262164510787,-0.0720745101571083,0.10012059658765793,-0.04668420925736427,-0.024903593584895134,0.017374105751514435,0.024877512827515602,0.06595779210329056,0.08667337894439697,-0.038972508162260056,0.021632028743624687,0.08307081460952759,0.014221933670341969,0.013848487287759781,0.04665994271636009,0.004148067440837622,0.021011261269450188,-0.012878968380391598,0.01849820651113987,-0.03084346279501915,-0.04068835452198982,-0.012131460011005402,0.08430923521518707,-0.06348852813243866,-0.017326241359114647,0.026039863005280495,0.06577195972204208,-0.10407433658838272,-0.07611040771007538,-0.015880396589636803,0.013681918382644653,-0.01824621669948101,-0.008902628906071186,0.07092855870723724,-0.05032024905085564,0.03138553351163864,-0.0019890565890818834,-0.03330906480550766,-0.09565851837396622,-0.03749629855155945,-0.004293487407267094,-0.04450491443276405,0.06703739613294601,-0.04806273430585861,-0.04770096763968468,-0.06189831718802452,0.00008676345169078559,-0.03947995603084564,-0.0019084709929302335,-0.0011671555694192648,0.04088018089532852,0.06656403094530106,-0.05176061764359474,0.01848956011235714,-0.0042326184920966625,0.006969533395022154,0.006360744591802359,0.04854769632220268,-0.004410000052303076,-0.016463983803987503,0.08987846225500107,-0.06527888774871826,-0.008087865076959133,0.04673667997121811,0.047607626765966415,-0.026176515966653824,-0.10685206949710846,-3.172302598386523e-8,0.1322585791349411,-0.06141568347811699,0.03766927868127823,0.05140141397714615,0.014649811200797558,-0.06098416447639465,-0.006100992672145367,-0.0820012018084526,0.06430336833000183,0.1045626625418663,-0.02605283446609974,-0.0029872283339500427,-0.007062793243676424,0.005408942699432373,-0.0028031030669808388,-0.010723929852247238,0.023791471496224403,0.027762725949287415,0.025338103994727135,0.0451907254755497,-0.02420223504304886,0.045052625238895416,-0.09890106320381165,-0.045874230563640594,-0.008205276913940907,-0.024468975141644478,-0.0024117741268128157,-0.06205835938453674,0.03391285613179207,0.020651744678616524,-0.06291513890028,0.06801702082157135,0.06120975315570831,-0.05113242194056511,0.031108304858207703,0.014905388467013836,-0.0075988974422216415,0.11229642480611801,0.0018845367012545466,-0.028297312557697296,0.036929622292518616,0.029994620010256767,0.056024227291345596,-0.053908124566078186,0.05676356703042984,-0.07417131215333939,0.003993276506662369,0.0020466982387006283,-0.021538985893130302,0.027249041944742203,-0.06482477486133575,-0.007867165841162205,-0.020536236464977264,0.0951990932226181,-0.11187856644392014,-0.0854635089635849,0.049769945442676544,0.01635781116783619,0.04800095409154892,0.042633943259716034,0.01614702306687832,-0.06630009412765503,-0.06692244112491608,0.07135377824306488]},{"text":"Latius regnes avidum domando Spiritum, quam si Libyam remotis 10 Gadibus iungas et uterque Poenus Serviat uni.","book":"Homage to Catalonia","chapter":11,"embedding":[-0.045401088893413544,0.034926414489746094,-0.015803677961230278,-0.06610506027936935,-0.04379298910498619,0.050051670521497726,0.0546124093234539,0.05142234265804291,0.04625236988067627,0.04898069426417351,0.0597725585103035,0.023788221180438995,0.0840262845158577,-0.07578662037849426,0.00658975075930357,-0.08548224717378616,-0.004676043055951595,0.09612514078617096,-0.062376298010349274,-0.02132793515920639,0.16356828808784485,-0.002014000667259097,0.07581298798322678,0.01380105223506689,-0.047740060836076736,0.01107727363705635,0.036562029272317886,-0.06337819993495941,0.08212825655937195,-0.021896064281463623,0.0874396562576294,0.09308452159166336,0.010386348702013493,-0.027643676847219467,0.06511574238538742,0.030940642580389977,-0.02495531737804413,-0.07897580415010452,-0.015460860915482044,0.059585247188806534,-0.03468163684010506,-0.037200283259153366,-0.0003346748126205057,-0.09033236652612686,-0.01679500937461853,-0.05959779769182205,0.011599448509514332,0.06831921637058258,-0.0251803919672966,-0.00008353005978278816,-0.02605011872947216,-0.029129622504115105,-0.009797562845051289,0.012018917128443718,-0.0699535682797432,-0.00014131517673376948,-0.06826420873403549,-0.04507008194923401,0.04921553283929825,-0.07087364047765732,-0.00470008235424757,0.08758441358804703,0.002975319279357791,0.057470206171274185,-0.07549502700567245,0.053730592131614685,-0.011296333745121956,-0.0037940670736134052,-0.028859378769993782,-0.0002927508903667331,0.0889112651348114,-0.08486195653676987,-0.056419048458337784,0.036303650587797165,-0.06849103420972824,-0.018055852502584457,-0.035932887345552444,-0.10649902373552322,-0.022119678556919098,-0.05443694442510605,-0.03192457929253578,0.008836961351335049,0.03237343952059746,-0.05189543962478638,-0.06977769732475281,-0.03631652891635895,0.021573800593614578,0.07250288873910904,0.04011869430541992,0.019833197817206383,-0.006458939053118229,-0.02482496201992035,0.014546437188982964,0.009048830717802048,0.010511379688978195,-0.0397956557571888,-0.011564244516193867,-0.014083672314882278,0.031459759920835495,0.018847104161977768,0.07158423960208893,-0.010276289656758308,-0.055851928889751434,0.08890970051288605,-0.06152518466114998,-0.000884032400790602,0.04618564248085022,0.0012660219799727201,0.011027712374925613,0.0036938011180609465,-0.10968222469091415,-0.017183147370815277,-0.06337125599384308,-0.08771252632141113,0.018088577315211296,0.022885022684931755,0.026213249191641808,-0.08505859225988388,-0.04565947875380516,-0.08280499279499054,0.0516129732131958,-0.10514438897371292,0.03224574401974678,-0.0515020526945591,0.1003672257065773,-0.062170810997486115,0.03866587579250336,1.0964633676910096e-32,-0.028922878205776215,-0.08028719574213028,-0.006375655997544527,0.05371129512786865,-0.04958464577794075,0.08450329303741455,-0.07598204910755157,-0.02272673323750496,-0.045651525259017944,-0.03327859193086624,-0.10944591462612152,0.0010693218791857362,-0.01741533726453781,0.018709147348999977,0.025190411135554314,0.04541758820414543,0.008413090370595455,0.020808961242437363,0.09304044395685196,0.00045357615454122424,-0.05479143187403679,0.04886501282453537,0.08752727508544922,-0.02249487116932869,0.002770280698314309,0.015822984278202057,-0.005382664501667023,-0.06359949707984924,0.03506433963775635,0.03832082450389862,0.08508320897817612,-0.024806154891848564,-0.047118086367845535,-0.02862197533249855,0.0337386392056942,0.03531908243894577,0.03742091357707977,0.06323646754026413,0.023606570437550545,-0.03867087513208389,-0.07324661314487457,-0.024284565821290016,0.008093183860182762,-0.059211406856775284,0.08044271171092987,0.019280359148979187,0.004572491627186537,-0.004213565960526466,0.0720195472240448,-0.04094834625720978,0.008555905893445015,0.05205593258142471,0.023635264486074448,0.0027446162421256304,0.04810398817062378,0.022187845781445503,-0.057334356009960175,0.10294736921787262,-0.057434119284152985,-0.02732587233185768,0.0727512538433075,0.021530797705054283,0.07315929234027863,0.013428137637674809,0.05531376227736473,0.014479120261967182,-0.016666945070028305,0.008937890641391277,0.07227826863527298,0.016301916912198067,-0.1079646572470665,-0.026921115815639496,0.02091177925467491,0.06080257520079613,0.05321630835533142,0.06885648518800735,0.011282001622021198,-0.06664250791072845,-0.06530670076608658,0.055901918560266495,-0.07424148917198181,-0.019483329728245735,-0.027827272191643715,0.03949621692299843,0.07618899643421173,-0.052736517041921616,-0.011214896105229855,-0.039018526673316956,0.03691182658076286,0.023396672680974007,0.09284981340169907,0.035982225090265274,0.0020157317630946636,0.11340004205703735,0.040588103234767914,-1.1930469059371628e-32,-0.023187732324004173,-0.007519245147705078,-0.020712288096547127,0.06949148327112198,-0.00831530336290598,-0.06479507684707642,0.009543207474052906,0.0021720458753407,-0.03326861187815666,-0.06476986408233643,-0.036949120461940765,-0.07411625236272812,0.056561604142189026,0.009225770831108093,-0.08562200516462326,0.08701341599225998,0.019198080524802208,-0.016189422458410263,-0.045324891805648804,-0.02027053013443947,-0.05595145747065544,-0.013645962812006474,-0.03338375687599182,-0.12628525495529175,-0.02953033149242401,0.051532041281461716,0.03152900189161301,0.030045293271541595,-0.021564768627285957,-0.07089723646640778,0.08606415241956711,-0.010853441432118416,-0.0373120941221714,0.026208404451608658,-0.037431586533784866,0.041024349629879,0.09794007241725922,0.04674775153398514,-0.019929729402065277,-0.06869206577539444,0.013051706366240978,0.03205694630742073,0.0373864509165287,-0.06716472655534744,0.033955078572034836,-0.05599568784236908,-0.027828199788928032,-0.07158977538347244,-0.07528194785118103,-0.058732666075229645,0.05891525000333786,-0.030298836529254913,0.018235942348837852,-0.0484464131295681,0.11576806753873825,-0.027056030929088593,-0.08623290807008743,0.02931518852710724,-0.003996432758867741,0.03766072541475296,0.05878741294145584,0.059327322989702225,-0.006136495620012283,-0.013545839115977287,0.041538022458553314,0.009677388705313206,-0.023573070764541626,0.06299377977848053,0.041756004095077515,0.05529344081878662,0.10007058829069138,0.0009008749038912356,-0.0877448171377182,-0.00006206078978721052,0.03818180412054062,0.026084715500473976,-0.056973423808813095,-0.06025319546461105,-0.015910547226667404,-0.06302907317876816,-0.04782939329743385,-0.08588764071464539,-0.055419083684682846,0.03836001828312874,-0.04065018147230148,-0.004149169195443392,0.07274243980646133,-0.00881021935492754,0.05298231169581413,-0.023669803515076637,-0.03729889169335365,0.059569068253040314,0.034865137189626694,-0.06551070511341095,-0.05330616980791092,-4.183225854603734e-8,-0.05799461156129837,-0.10231007635593414,-0.011178797110915184,0.03185867518186569,0.05119200795888901,-0.02033039554953575,-0.024465540423989296,-0.0628642812371254,-0.04239724576473236,0.03740615025162697,-0.014989533461630344,-0.08134064078330994,-0.002420996781438589,-0.021691597998142242,0.02274879440665245,0.02051352895796299,0.06335527449846268,0.06932654231786728,0.02577921561896801,-0.058335572481155396,0.09599927067756653,-0.04355737194418907,-0.052343010902404785,0.000040744798752712086,-0.04452097788453102,-0.056883569806814194,0.027955960482358932,-0.06286730617284775,0.013973334804177284,0.005236153025180101,0.03631582856178284,0.023858828470110893,-0.10465972125530243,-0.007193155121058226,-0.03269778564572334,0.03758326172828674,-0.1077224537730217,0.032630279660224915,0.019227946177124977,-0.05905827879905701,0.028626298531889915,0.05530902370810509,0.041752856224775314,-0.01951131783425808,0.08705344051122665,-0.06539018452167511,0.01389865018427372,-0.040374260395765305,0.006485654041171074,-0.00013679022958967835,-0.03156208246946335,0.016658121719956398,0.02853119745850563,0.030447904020547867,0.04974711686372757,-0.020438436418771744,0.050089672207832336,0.001550530199892819,0.005986401345580816,0.03216005116701126,-0.020537784323096275,0.02914845198392868,-0.05213281884789467,-0.08960524201393127]},{"text":"Redditum Cyri solio Phraaten Dissidens plebi numero beatorum Eximit Virtus populumque falsis Dedocet uti 20 Vocibus, regnum et diadema tutum Deferens uni propriamque laurum, Quisquis ingentis oculo inretorto Spectat acervos.","book":"Homage to Catalonia","chapter":11,"embedding":[-0.05746942758560181,-0.011015644297003746,-0.02178332395851612,-0.017686108127236366,-0.12003813683986664,0.027507612481713295,0.04241875186562538,0.06275174766778946,0.014067869633436203,-0.005738803651183844,0.01736242137849331,-0.05002076178789139,0.07028033584356308,-0.043965138494968414,-0.06420965492725372,-0.047667454928159714,-0.0005730553530156612,0.09155392646789551,-0.05364798754453659,0.03637062758207321,0.07195267826318741,-0.0021953140385448933,-0.028638608753681183,0.045959703624248505,-0.07246552407741547,0.06109295040369034,-0.03709176182746887,0.036109019070863724,-0.018414443358778954,-0.04040185362100601,0.07238873094320297,0.11987631022930145,0.10958585888147354,-0.04735209420323372,0.06004512310028076,-0.006645938381552696,-0.0673794373869896,-0.03444179520010948,0.0686085969209671,0.048808421939611435,-0.04262828081846237,-0.020469756796956062,0.01995646208524704,0.032591186463832855,0.022088654339313507,0.02807200327515602,-0.02348177134990692,0.04292132705450058,0.01893744058907032,-0.04935073480010033,-0.06903773546218872,-0.03229023143649101,-0.0882827639579773,0.046890441328287125,-0.04882512241601944,0.04552755877375603,-0.0774550586938858,-0.029998859390616417,0.060126978904008865,-0.07457767426967621,0.04558227211236954,0.10757140070199966,-0.017196420580148697,-0.016454681754112244,-0.061775099486112595,-0.017041606828570366,-0.05035488307476044,-0.03940724581480026,-0.0500958114862442,-0.002611011965200305,0.07465428858995438,-0.008926420472562313,0.02449021115899086,0.03818751499056816,-0.042705997824668884,0.07436511665582657,-0.03880181908607483,-0.02249073050916195,-0.07112349569797516,-0.0443388968706131,0.030969463288784027,0.0035068460274487734,0.01157758105546236,-0.02005165070295334,-0.006721331272274256,-0.0005588744534179568,0.045908886939287186,-0.024426203221082687,0.034776471555233,-0.029631169512867928,0.05207277089357376,0.032973505556583405,-0.07860355824232101,-0.034331560134887695,-0.0030481345020234585,0.007265686057507992,-0.03686075657606125,-0.0019355628173798323,0.05648672953248024,-0.023521682247519493,0.05525447428226471,0.019346021115779877,0.01152506098151207,-0.004784202668815851,-0.12890274822711945,-0.04720943048596382,-0.012915823608636856,0.002266910159960389,0.04144935682415962,0.06459589302539825,-0.05920877307653427,-0.08349118381738663,-0.02920275181531906,-0.0998789370059967,-0.011053413152694702,0.030735881999135017,0.013819361105561256,-0.043592970818281174,-0.01947762817144394,-0.05542949214577675,0.05407824367284775,-0.08121541887521744,0.01689947210252285,-0.022817222401499748,0.05626871436834335,-0.040510859340429306,-0.08047817647457123,2.3768134309113776e-32,-0.04345092177391052,-0.05692758411169052,-0.016085827723145485,0.03080219402909279,0.01639704778790474,-0.027559524402022362,-0.07252340763807297,-0.0830637738108635,0.04705408588051796,-0.09000632166862488,-0.12511682510375977,0.04544641077518463,-0.02456270158290863,-0.025910284370183945,-0.004251657519489527,0.05451304093003273,0.02710637077689171,-0.034979600459337234,-0.04105508700013161,-0.04038676619529724,-0.05496199429035187,-0.02996431663632393,0.021941371262073517,-0.05554160848259926,0.02971850149333477,0.0400419682264328,-0.02442193776369095,-0.08483657985925674,0.08050891011953354,-0.002915982622653246,0.13521428406238556,-0.08893858641386032,-0.05658416077494621,0.006681419909000397,-0.0021396148949861526,0.015097874216735363,-0.0212382934987545,-0.0032871519215404987,-0.011099669151008129,0.001796517986804247,-0.06245166063308716,0.0222630612552166,0.06938694417476654,0.034901175647974014,0.09905572980642319,-0.0031726479064673185,-0.0339939147233963,0.1037169024348259,0.09045781940221786,-0.02238297089934349,0.02740158885717392,-0.01488253753632307,0.011218751780688763,0.011219016276299953,0.0048928470350801945,0.019640373066067696,-0.018728576600551605,0.07862868160009384,-0.08439427614212036,0.007374023087322712,0.02952214702963829,0.034348029643297195,0.025003183633089066,-0.018074285238981247,0.029235225170850754,0.03839553892612457,-0.06720849871635437,-0.007277084514498711,0.040315985679626465,0.06425212323665619,-0.10035152733325958,-0.039560433477163315,-0.013872715644538403,0.033785365521907806,0.039413247257471085,-0.05449744686484337,0.0740470215678215,0.003986931871622801,-0.023559244349598885,0.02757539041340351,-0.05868304520845413,-0.0766139030456543,-0.015640493482351303,0.0332610197365284,0.06957081705331802,-0.013319500721991062,-0.027973337098956108,0.04105599224567413,0.06902290135622025,0.03715123236179352,0.08963858336210251,-0.0730394721031189,-0.07277969270944595,0.02477467991411686,-0.04239097982645035,-2.222745647516122e-32,-0.014464141800999641,0.010221710428595543,-0.06708633154630661,0.05402212589979172,0.003312718588858843,-0.0016033129068091512,-0.1095123365521431,0.01879967376589775,0.030437469482421875,-0.11201648414134979,-0.051576122641563416,0.006129520479589701,0.07438238710165024,-0.006950393319129944,-0.05626995489001274,0.06403196603059769,0.04794282838702202,0.06122801825404167,-0.08955912292003632,0.007144217845052481,-0.10173593461513519,0.012995565310120583,0.041725531220436096,-0.11214317381381989,0.02651846408843994,-0.009447745978832245,0.03569747135043144,-0.007923445664346218,-0.07103528082370758,-0.0003688806027639657,0.03697577863931656,-0.027428099885582924,-0.02945476770401001,-0.04776287078857422,-0.025570638477802277,0.011330945417284966,0.08247318863868713,-0.11877443641424179,0.02205265313386917,0.03446874022483826,-0.0021129106171429157,0.025593064725399017,0.10317183285951614,0.0366106741130352,0.005396970082074404,-0.0342891626060009,-0.09402088820934296,-0.023661265149712563,-0.03160988166928291,0.04723644256591797,0.12073938548564911,-0.0032572364434599876,0.03445662558078766,-0.04047808051109314,0.08834697306156158,0.01582920178771019,-0.04619260132312775,0.03442875295877457,-0.048568420112133026,-0.011577211320400238,0.048282742500305176,0.005593710578978062,-0.029196348041296005,-0.000691148336045444,0.08310356736183167,0.06817423552274704,-0.09058031439781189,0.09084448963403702,-0.05453968793153763,0.054264623671770096,0.05217033997178078,-0.059492941945791245,-0.07677429169416428,0.038199517875909805,-0.017581410706043243,-0.022729583084583282,-0.07690460979938507,0.039669785648584366,-0.01414883229881525,0.07362742722034454,-0.03373712673783302,-0.022123420611023903,-0.01985786482691765,-0.01899990253150463,-0.01830120012164116,-0.07924327254295349,0.024400262162089348,0.041243214160203934,-0.020440738648176193,-0.03546299785375595,0.04949355870485306,-0.047061026096343994,0.0631377175450325,-0.004607406910508871,0.028602339327335358,-6.739827540513943e-8,0.03380740433931351,-0.09413342922925949,-0.04793617129325867,-0.0020051368046551943,0.05130147561430931,0.04714478924870491,0.04886496439576149,-0.0099406149238348,-0.022077521309256554,0.05130362883210182,-0.005568364635109901,0.0030995169654488564,-0.030579375103116035,0.011926294304430485,0.03139951825141907,0.02004929631948471,0.05648854374885559,0.05004523694515228,-0.041893746703863144,-0.03785964846611023,0.09578670561313629,-0.023305164650082588,-0.07147160172462463,0.039733171463012695,-0.0006448303465731442,-0.049517467617988586,0.09294745326042175,-0.05746721103787422,-0.09502369910478592,0.003764319233596325,0.042200539261102676,0.003182159038260579,0.024751316756010056,-0.07217667996883392,-0.07087153196334839,0.06557105481624603,-0.009953205473721027,0.04952418431639671,-0.047598954290151596,-0.0061083161272108555,-0.02219938300549984,-0.026829836890101433,-0.03613492101430893,-0.05236838757991791,0.022886736318469048,-0.05653577297925949,-0.032691001892089844,-0.004575747065246105,0.049217529594898224,-0.0691281110048294,-0.0660216361284256,0.03267297148704529,0.09521891176700592,-0.03741956874728203,-0.04264918342232704,-0.013424236327409744,0.03900787979364395,0.08384785801172256,-0.013841355219483376,0.029132146388292313,-0.013314887881278992,0.08678491413593292,0.0853162631392479,0.015827270224690437]},{"text":"Quo pinus ingens albaque populus Umbram hospitalem consociare amant 10 Ramis?","book":"Homage to Catalonia","chapter":11,"embedding":[0.036997467279434204,0.03046947717666626,-0.01669924706220627,0.008357767947018147,-0.09314622730016708,-0.0199758131057024,0.05682145804166794,0.05699046328663826,0.10540846735239029,-0.008315321989357471,0.07906828075647354,-0.04242781177163124,-0.027798833325505257,-0.03834984079003334,-0.0877428725361824,-0.038332499563694,-0.06164281815290451,-0.027538780122995377,-0.0013649312313646078,0.03810728341341019,0.02167455479502678,-0.007037779316306114,0.011206415481865406,0.0285474993288517,-0.09551989287137985,-0.03895099088549614,-0.043209563940763474,-0.010162905789911747,0.08101347833871841,-0.0019113390007987618,0.0815204605460167,0.0917830690741539,0.11148590594530106,-0.01785581186413765,-0.028386570513248444,-0.006806816440075636,0.05212104693055153,-0.07059482485055923,-0.01963505521416664,0.12021039426326752,-0.03571498394012451,0.011188609525561333,0.01105037983506918,-0.03969559818506241,0.08445025980472565,-0.006595573388040066,0.004851587116718292,0.07221214473247528,0.04789217188954353,0.035856395959854126,-0.07323435693979263,-0.022931085899472237,-0.04439118504524231,0.00402453588321805,-0.020333988592028618,-0.029474036768078804,0.04934252053499222,-0.10213090479373932,-0.049544621258974075,-0.07673342525959015,0.06587222963571548,0.06627745181322098,-0.006002938840538263,0.07893335074186325,-0.0653238594532013,0.005199398845434189,-0.04063446819782257,0.005194374825805426,-0.006925913039594889,-0.012961470521986485,0.10143694281578064,-0.1479054093360901,0.03123728558421135,0.03179779276251793,-0.060985367745161057,0.059672463685274124,-0.02811991237103939,-0.02799467369914055,0.020512381568551064,-0.04210607334971428,-0.04639445245265961,-0.05403675138950348,-0.07349660247564316,-0.00745990127325058,-0.07543935626745224,-0.03161318972706795,0.06623174995183945,0.03015187941491604,-0.07085196673870087,-0.03665424510836601,-0.00587893184274435,0.029706673696637154,-0.04434764012694359,-0.04342086240649223,0.08211442828178406,0.025301696732640266,-0.04982377588748932,-0.07672547549009323,-0.0750299021601677,-0.005802153144031763,0.027330992743372917,0.036160506308078766,0.06950881332159042,0.0008408118737861514,-0.0981009379029274,-0.062410708516836166,0.002119960729032755,0.010242319665849209,0.03318747878074646,-0.027466971427202225,-0.0801963061094284,-0.05098215118050575,-0.01975405402481556,-0.04517017677426338,0.03442235291004181,-0.02687128446996212,0.018937446177005768,-0.11806375533342361,-0.016770899295806885,-0.015854351222515106,0.027841515839099884,-0.054983459413051605,-0.024885326623916626,-0.06732800602912903,-0.004336293321102858,-0.027614613994956017,0.02659693732857704,2.7559566074074304e-33,-0.008525052107870579,-0.11123292148113251,-0.002369195455685258,-0.0363336056470871,0.08651663362979889,-0.0017943705897778273,-0.07486055046319962,-0.04395551234483719,0.054820604622364044,-0.009943081997334957,-0.06085316836833954,-0.03900253400206566,0.009775988757610321,-0.03236927092075348,0.004709996748715639,0.041836049407720566,0.041069965809583664,0.04336469620466232,-0.05041450262069702,0.025092627853155136,-0.038864266127347946,-0.0031241083052009344,-0.017513426020741463,-0.02128683403134346,0.07380463182926178,0.01647287979722023,-0.035308923572301865,-0.08257447183132172,0.0454229898750782,0.021523237228393555,0.08206039667129517,0.00010487107647350058,-0.029264511540532112,-0.028628798201680183,-0.04634496942162514,0.005449043586850166,0.044303033500909805,-0.01067133154720068,-0.006579275242984295,-0.0375380665063858,0.04273809865117073,-0.006383833009749651,0.12357912957668304,0.07648659497499466,0.10222060233354568,0.07101572304964066,0.014661062508821487,0.01735050603747368,0.06727872043848038,-0.03092939406633377,0.03358537703752518,0.003217351855710149,-0.06530256569385529,-0.0010655374499037862,0.042642101645469666,0.027952661737799644,-0.06716476380825043,0.11098673939704895,-0.005678939633071423,-0.031981032341718674,0.05312449112534523,0.017253264784812927,-0.017783338204026222,-0.02513931319117546,0.043430816382169724,-0.04986060410737991,0.02630564197897911,-0.019377125427126884,0.06769648939371109,-0.013030187226831913,-0.11269620805978775,-0.013787993229925632,-0.07492157816886902,0.04967546463012695,-0.08070529997348785,0.03966053947806358,0.03727012872695923,-0.03220361843705177,-0.07577869296073914,0.0027723622042685747,-0.06952721625566483,0.05245625972747803,0.06277324259281158,0.07638686150312424,0.09307672828435898,0.02663532830774784,-0.008471413515508175,0.0492716021835804,-0.002422178629785776,0.06844175606966019,-0.007116084918379784,0.11072971671819687,0.03106885589659214,0.004020491149276495,-0.0010025919182226062,-4.015983879404218e-33,-0.06363462656736374,-0.04820233955979347,-0.12993668019771576,0.04455920308828354,-0.008897804655134678,-0.0005162701709195971,-0.061365749686956406,0.026541773229837418,0.005689987912774086,-0.08393362909555435,-0.05815683305263519,-0.06713844835758209,0.08251656591892242,-0.045020513236522675,-0.04360247030854225,0.041203953325748444,0.023014044389128685,0.00021464187011588365,-0.05048568919301033,-0.013204324059188366,-0.03078335151076317,0.0840887650847435,0.08928608894348145,-0.09267588704824448,-0.06810727715492249,0.0673123151063919,0.035073839128017426,-0.03997955098748207,-0.0499236173927784,-0.05535801500082016,0.040175601840019226,0.06625959277153015,-0.06073181703686714,0.0404122993350029,-0.04803955554962158,-0.012621095404028893,0.10515020787715912,-0.06900975853204727,-0.048589788377285004,0.044140301644802094,0.038915812969207764,-0.004277732223272324,0.04278155788779259,-0.024024156853556633,0.03685084730386734,-0.011286984197795391,-0.011270441114902496,-0.07208344340324402,-0.0328250415623188,-0.004798172507435083,0.05203859880566597,-0.0326710045337677,0.013085674494504929,0.04023578390479088,0.0799720510840416,-0.0377720408141613,-0.04267730563879013,-0.10436346381902695,-0.0328654944896698,-0.04799559712409973,0.06850206106901169,-0.042064119130373,0.012614200823009014,0.002938770456239581,0.04959568753838539,0.00253845751285553,-0.022633161395788193,0.08282724767923355,-0.062102191150188446,-0.00963374599814415,0.032081905752420425,-0.0206132885068655,-0.03839004784822464,0.02471703104674816,0.002517824759706855,0.032926496118307114,-0.008742893114686012,-0.04400596022605896,0.02611306495964527,0.01376719493418932,-0.1001121997833252,-0.0009054423426277936,-0.03403304144740105,-0.007801488041877747,-0.055323969572782516,-0.05923859402537346,0.03142542764544487,-0.047152698040008545,0.030350347980856895,-0.000049322050472255796,-0.05752411484718323,-0.001512539223767817,-0.03342481330037117,-0.13116833567619324,-0.0019579697400331497,-2.2833594570670357e-8,-0.02866673469543457,0.004808581434190273,0.00420200452208519,0.010820611380040646,0.033209145069122314,-0.07755228132009506,-0.06875724345445633,0.09604640305042267,-0.020154250785708427,0.05329708009958267,-0.008900665678083897,0.020316647365689278,-0.04978112131357193,0.033402182161808014,-0.015705417841672897,0.019112149253487587,-0.022376226261258125,0.0049357167445123196,0.004178956151008606,-0.09737236797809601,0.051605623215436935,-0.01204951386898756,-0.01760028302669525,0.017786690965294838,0.0034884577617049217,0.02197810262441635,0.024330051615834236,-0.02718585729598999,0.014766362495720387,0.03487255796790123,0.06936221569776535,0.0935685858130455,-0.038848064839839935,-0.0032734302803874016,-0.039228618144989014,-0.013707873411476612,0.047577548772096634,0.0799863338470459,0.032211095094680786,0.04485888406634331,0.07744703441858292,-0.04096858203411102,0.02537412941455841,-0.008801708929240704,0.021767372265458107,-0.05831605941057205,0.06836342811584473,0.10568071156740189,0.032628029584884644,-0.04882551357150078,-0.0020134684164077044,0.06395184993743896,0.10579709708690643,0.04404910281300545,-0.0013672030763700604,-0.0272270105779171,0.06990872323513031,0.025243883952498436,-0.04331524670124054,0.07224138081073761,0.05062856525182724,0.0567411333322525,0.014613240957260132,-0.009147430770099163]},{"text":"Huc vina et unguenta et nimium brevis Flores amoenae ferre iube rosae, Dum res et aetas et sororum Fila trium patiuntur atra. 15 Cedes coemptis saltibus et domo Villaque, flavus quam Tiberis lavit, Cedes, et exstructis in altum Divitiis potietur heres.","book":"Homage to Catalonia","chapter":11,"embedding":[-0.03857672959566116,0.030275845900177956,-0.021460644900798798,0.007269787136465311,0.00842567253857851,0.018389863893389702,0.05044844001531601,0.03416775166988373,0.017954496666789055,0.012613410130143166,0.0602174736559391,-0.12459717690944672,0.04529191181063652,-0.04275798052549362,-0.09420567750930786,-0.0837382897734642,-0.032381244003772736,0.06957104057073593,-0.06459514051675797,-0.004879364278167486,0.10996639728546143,0.0028091331478208303,0.009620323777198792,0.02230011485517025,-0.08991732448339462,0.08370265364646912,-0.03598608076572418,-0.06607597321271896,0.00923352874815464,-0.10524553805589676,0.023861756548285484,0.10776077210903168,0.0450778566300869,-0.056188035756349564,-0.018914254382252693,0.002628847025334835,-0.05279664322733879,-0.07497538626194,0.06450797617435455,0.057833392173051834,-0.04478857293725014,-0.03584553301334381,0.020980460569262505,-0.023683583363890648,-0.07338119298219681,-0.03629806637763977,-0.005300010088831186,0.009490856900811195,0.01816471666097641,-0.015831269323825836,0.007222204934805632,-0.021870562806725502,-0.056935932487249374,-0.011248800903558731,-0.04841059818863869,-0.025633007287979126,-0.027123209089040756,-0.08569458872079849,0.037639323621988297,-0.028212128207087517,0.09859875589609146,0.0433930978178978,0.03153457120060921,0.05411965027451515,-0.04127039387822151,0.012629114091396332,-0.012352630496025085,-0.0960250049829483,-0.07818849384784698,-0.04239436984062195,0.06704220920801163,0.020350495353341103,-0.022743918001651764,0.05760132148861885,-0.03485323488712311,0.08632909506559372,0.03702728450298309,0.0032289931550621986,-0.035631053149700165,-0.038947269320487976,-0.08188382536172867,0.09534933418035507,0.10602956265211105,-0.0017173313535749912,0.03846614062786102,-0.0008440567180514336,-0.00707752862945199,0.0015226114774122834,0.021865207701921463,0.005057952832430601,-0.002931322203949094,0.0362929105758667,-0.046833060681819916,0.010619327425956726,-0.09605839103460312,0.09137186408042908,-0.005377497058361769,-0.02099177986383438,-0.035165973007678986,-0.033557161688804626,0.03450651094317436,-0.042272891849279404,-0.027560202404856682,0.03418182581663132,-0.09427700936794281,-0.08731014281511307,-0.04668695107102394,-0.0993678867816925,-0.019159210845828056,0.05319280922412872,-0.03515582159161568,-0.0557246170938015,-0.06439690291881561,-0.04046417400240898,0.017051011323928833,0.02713910862803459,0.05883494392037392,-0.05216917768120766,-0.03352189436554909,-0.0605122335255146,0.020484281703829765,-0.06929553300142288,-0.01607331819832325,-0.002152367029339075,0.04628805071115494,-0.02124130353331566,-0.02297397144138813,2.392537284158358e-32,-0.012736445292830467,-0.06540650129318237,-0.011161157861351967,-0.024408871307969093,-0.03423938527703285,-0.07510064542293549,-0.04135103523731232,-0.029528331011533737,0.002436514711007476,-0.08670578896999359,-0.11165151000022888,0.10122562199831009,-0.004232262726873159,-0.06088670343160629,-0.04591028764843941,0.07830670475959778,0.07175197452306747,-0.07148522883653641,0.01189379207789898,-0.06858742982149124,-0.019891593605279922,0.06131207197904587,0.06399070471525192,0.008452619425952435,-0.02325071580708027,-0.005077008623629808,-0.012247221544384956,-0.09211765974760056,-0.0211932472884655,0.018865149468183517,0.08898989856243134,-0.09462641924619675,0.037092044949531555,0.05084647238254547,0.03751430660486221,0.0361715629696846,0.025894775986671448,0.009331687353551388,-0.062413476407527924,0.062565878033638,-0.050967372953891754,0.04874162748456001,0.08215948194265366,0.055076152086257935,0.07673469185829163,-0.015459967777132988,-0.033480096608400345,0.03951697051525116,0.10710622370243073,0.0524006262421608,-0.04289158061146736,0.008991860784590244,0.04622926190495491,-0.0290072038769722,0.02413925714790821,0.08162440359592438,-0.027010252699255943,0.0658101961016655,-0.08127600699663162,0.0029428324196487665,-0.003217770718038082,0.01425418071448803,0.030770987272262573,-0.013980941846966743,0.03389347717165947,0.03430461138486862,-0.03784141689538956,-0.03245430067181587,0.028497761115431786,-0.05936200171709061,-0.10474756360054016,-0.06078048050403595,-0.03344355523586273,0.06337641179561615,0.031313229352235794,0.0014152030926197767,0.07164694368839264,-0.04294763132929802,0.014772790484130383,0.03386860340833664,-0.03099583089351654,-0.03235755115747452,-0.009727843105793,0.020020047202706337,0.04082107916474342,-0.027864722535014153,-0.033830951899290085,0.03111056610941887,0.043006300926208496,0.03184301778674126,0.10057317465543747,0.06478982418775558,0.018775248900055885,-0.04975420609116554,0.024732137098908424,-2.1630926887581496e-32,-0.010406797751784325,-0.0033041618298739195,-0.09717977046966553,0.06268082559108734,0.011241368018090725,-0.01684975065290928,-0.1012277826666832,0.027036311104893684,-0.021193986758589745,-0.07426754385232925,-0.05005280673503876,-0.0074334223754704,0.050227221101522446,-0.08152425289154053,-0.024207649752497673,0.0245420653373003,0.09952660650014877,0.0964127629995346,-0.05421401932835579,-0.02630244381725788,-0.09952270984649658,0.05284600704908371,-0.0028802885208278894,-0.14447104930877686,-0.0004066450346726924,-0.0013151984894648194,0.011134964413940907,-0.04123382270336151,-0.09622668474912643,-0.03296947106719017,0.05712099373340607,0.045481014996767044,-0.0009910179069265723,0.001727813621982932,-0.006994206923991442,-0.030756385996937752,0.09398643672466278,-0.0739995464682579,-0.006147392559796572,-0.003880510339513421,-0.015161361545324326,-0.0012835903326049447,0.10828133672475815,0.01835215464234352,0.05726618319749832,-0.04967646673321724,-0.06785588711500168,-0.007683524861931801,-0.04333479702472687,0.09134449064731598,0.033285755664110184,-0.02762295864522457,-0.008946860209107399,0.0036964179016649723,0.06508995592594147,-0.08318989723920822,0.05035436153411865,0.027517054229974747,0.006498476956039667,0.01740306243300438,0.046382464468479156,0.012774724513292313,-0.0006780202966183424,-0.013342062942683697,0.07318586856126785,0.014295846223831177,-0.0703984722495079,0.017941512167453766,-0.022242242470383644,0.07273581624031067,0.10248590260744095,-0.08855193853378296,-0.09046168625354767,-0.02038617990911007,0.024880941957235336,-0.02913721837103367,-0.02356615848839283,0.0375446118414402,-0.006239804904907942,-0.01890932396054268,-0.06989724934101105,0.05698688328266144,0.010919285006821156,-0.03334479033946991,-0.00924061518162489,-0.04254401847720146,0.0033796706702560186,-0.028721587732434273,0.04770530015230179,-0.028151515871286392,-0.008008702658116817,-0.055109329521656036,-0.026191305369138718,-0.02915245294570923,0.07747624814510345,-6.89782027052388e-8,0.023130111396312714,-0.019025694578886032,-0.07937152683734894,0.02847059816122055,0.04835674539208412,0.01912854239344597,0.07686622440814972,-0.02507510781288147,0.023364072665572166,0.05570736527442932,0.015879251062870026,0.08744465559720993,0.11513770371675491,-0.011164824478328228,0.05745993182063103,0.01648484729230404,0.13174885511398315,0.022046469151973724,-0.02526760846376419,-0.001125884591601789,0.050981905311346054,-0.04059797525405884,-0.04634885489940643,-0.010657073929905891,-0.00035660111461766064,-0.04110225662589073,0.0023171461652964354,-0.044049426913261414,0.012972516939043999,-0.04427400603890419,-0.0047548688016831875,-0.01861138641834259,0.04866288974881172,-0.10384565591812134,0.038146767765283585,0.08111570030450821,0.00046579926856793463,0.05990085005760193,0.029440050944685936,0.0003289498563390225,-0.06760311871767044,0.03233904391527176,0.007047158200293779,-0.036241110414266586,0.03866543248295784,0.009879362769424915,-0.0015294062905013561,0.05999205633997917,0.028596891090273857,-0.04834911599755287,-0.08204672485589981,-0.02614884078502655,0.055982641875743866,-0.04424262419342995,-0.08650989830493927,-0.019765125587582588,0.0935681164264679,0.023308368399739265,-0.0038827848620712757,-0.025013668462634087,0.011113237589597702,0.023257337510585785,0.030221134424209595,-0.013945955783128738]},{"text":"Omnes eodem cogimur, omnium Versatur urna serius ocius 25 Sors exitura et nos in aeternum Exsilium impositura cumbae.","book":"Homage to Catalonia","chapter":11,"embedding":[-0.024108340963721275,0.04832468926906586,-0.0019803254399448633,0.018956592306494713,-0.06261882185935974,-0.05488055944442749,0.04582156240940094,0.06988975405693054,0.05512218549847603,0.009595555253326893,0.09115452319383621,-0.10332189500331879,-0.019277092069387436,-0.036915574222803116,-0.011349378153681755,-0.04884969815611839,-0.014118554070591927,0.08509139716625214,-0.04476943984627724,-0.030727583914995193,0.10527229309082031,-0.018856411799788475,0.014541232027113438,-0.008946990594267845,-0.07335300743579865,0.05330265685915947,-0.03979041054844856,-0.05082596838474274,0.10357509553432465,-0.13910919427871704,0.028530769050121307,0.05824889615178108,0.021125642582774162,-0.054128821939229965,-0.0016933312872424722,0.018823374062776566,-0.027055131271481514,-0.09582047164440155,0.05281359329819679,-0.005208407528698444,0.022659555077552795,0.006140454206615686,-0.005562406033277512,-0.010176876559853554,-0.06741242110729218,-0.015304138883948326,-0.04909680038690567,-0.03465594723820686,-0.0023223606403917074,-0.009692096151411533,-0.0827597826719284,-0.04023651406168938,-0.05478888377547264,0.015212384052574635,-0.05354684218764305,0.003959327936172485,-0.011002898216247559,-0.0731208324432373,-0.025813976302742958,-0.04205049201846123,0.030308974906802177,0.0799039676785469,0.007374866399914026,-0.02310544066131115,-0.03133232891559601,0.021801861003041267,0.012139729224145412,0.00027954071993008256,-0.03317645192146301,0.024724891409277916,0.10335936397314072,-0.025524478405714035,-0.021318865939974785,0.05840442329645157,-0.09182162582874298,0.04678342491388321,0.029256824404001236,-0.03178984671831131,-0.011020369827747345,-0.023593463003635406,-0.02430500090122223,0.07146400213241577,0.008711372502148151,-0.011813007295131683,-0.01938146911561489,0.001465939567424357,-0.0024878045078366995,0.014451133087277412,0.030330665409564972,-0.0064542158506810665,0.008076694793999195,0.010724160820245743,-0.09434127807617188,-0.0453062504529953,0.06343813985586166,0.013298762030899525,-0.055351149290800095,0.019008517265319824,0.04251374304294586,-0.03234582394361496,0.021733149886131287,0.02049202099442482,-0.04309080168604851,0.05451364815235138,-0.09356968104839325,-0.07797284424304962,-0.009928609244525433,-0.028654735535383224,0.09133284538984299,0.04168812930583954,-0.057152096182107925,-0.16057293117046356,0.009518691338598728,-0.08094550669193268,-0.005106174852699041,0.009005390107631683,0.021602831780910492,0.0009872751543298364,-0.02867761254310608,-0.03784240782260895,-0.018199127167463303,0.006488954182714224,0.014767947606742382,-0.001894292770884931,0.02497250586748123,-0.03993707150220871,0.03675127774477005,1.3686501131814673e-32,-0.061299435794353485,-0.12996287643909454,-0.019545502960681915,-0.031396932899951935,0.010427262634038925,-0.041920535266399384,0.0044911084696650505,-0.036995746195316315,0.0017027555732056499,-0.09560859948396683,-0.11282824724912643,-0.011549733579158783,-0.05625023692846298,-0.008997756987810135,0.01058992650359869,0.00717239361256361,0.08146949112415314,-0.032809872180223465,0.050806012004613876,-0.030008550733327866,0.0461743026971817,0.03574180603027344,0.028929583728313446,-0.056144412606954575,0.015047472901642323,0.0023585667368024588,0.02106117084622383,-0.06182268634438515,-0.015181491151452065,0.04443001374602318,0.12932482361793518,-0.030875999480485916,-0.026099279522895813,0.020830539986491203,0.008951351046562195,0.001603604992851615,-0.049250587821006775,0.03587987273931503,-0.02087130770087242,-0.023161595687270164,0.030674170702695847,0.04880007356405258,0.03711887076497078,0.04120451956987381,0.04280967265367508,-0.025706414133310318,0.05813336372375488,0.07902694493532181,0.13997186720371246,-0.002775887493044138,-0.04244612529873848,0.015879439190030098,-0.08152427524328232,-0.011015736497938633,-0.018599580973386765,0.00853030476719141,-0.056407034397125244,0.09619583189487457,-0.038844648748636246,0.000523032562341541,-0.02932126633822918,0.08393344283103943,-0.029608000069856644,0.05924692377448082,0.01163825299590826,-0.03446279838681221,-0.07265198975801468,-0.008578682318329811,0.07885316759347916,-0.002827691612765193,-0.09863492846488953,-0.09750693291425705,-0.04798994958400726,0.03188576176762581,-0.051732052117586136,0.04535377025604248,-0.06859170645475388,-0.11173529922962189,0.002307695336639881,-0.0026992775965481997,-0.04458862543106079,-0.011074080131947994,-0.031373441219329834,0.01746976189315319,0.05687067285180092,0.0620550662279129,0.014711888507008553,0.05998968705534935,0.07416912913322449,0.05277673527598381,0.08535657078027725,-0.05164119601249695,0.04825733229517937,0.03368918225169182,-0.043380141258239746,-1.382373421980142e-32,0.06781420111656189,-0.03049127757549286,0.005716979969292879,0.05334395170211792,0.02923600561916828,0.02383405715227127,-0.07549985498189926,0.04800264537334442,-0.02541310526430607,0.03340332955121994,-0.014193827286362648,0.0168643556535244,0.10265122354030609,-0.06796254217624664,-0.015818528831005096,-0.020855724811553955,0.10186699777841568,0.09614063799381256,0.0009954983834177256,-0.011599919758737087,-0.03912212327122688,0.029779251664876938,-0.033128537237644196,-0.05556219443678856,-0.005006637889891863,0.05471392720937729,0.11250066012144089,-0.08555436879396439,-0.11929702013731003,-0.03416271507740021,0.021581802517175674,0.01104960311204195,-0.00679721450433135,0.04108528420329094,-0.00570309441536665,-0.056080278009176254,0.14238929748535156,-0.05607527866959572,0.011814882047474384,-0.06464455276727676,-0.03666481748223305,0.07196959108114243,0.11725230515003204,0.06814098358154297,0.014980098232626915,-0.017120780423283577,-0.1269252449274063,0.007193122524768114,-0.07202452421188354,0.04392152652144432,0.029935548081994057,-0.039858292788267136,0.04323582723736763,-0.11315146088600159,0.029092369601130486,-0.07748865336179733,-0.03677373006939888,0.009890086948871613,-0.06119712442159653,0.03723478317260742,0.07629276812076569,-0.02451884187757969,0.046144064515829086,0.03665587678551674,0.0736735463142395,0.011793116107583046,-0.04234755039215088,0.1140022724866867,-0.03974622115492821,-0.028323747217655182,0.0067911772057414055,-0.056042980402708054,-0.11599978804588318,-0.046053968369960785,0.029034646227955818,0.03164229169487953,-0.004020459949970245,-0.07334437966346741,0.0159149169921875,-0.02752319909632206,-0.057284317910671234,-0.06490665674209595,-0.030079543590545654,-0.007596345618367195,-0.02050820365548134,-0.059349168092012405,0.027501149103045464,0.006849703844636679,0.01249799132347107,0.047807469964027405,-0.0784258097410202,-0.061837490648031235,0.008462556637823582,-0.05385700613260269,0.06589213013648987,-4.379715079494417e-8,-0.04017822444438934,-0.00882919505238533,0.058573830872774124,0.08400864899158478,0.04019668325781822,-0.07665745913982391,0.0093920286744833,0.057197947055101395,0.006926144007593393,0.07358456403017044,-0.022531505674123764,0.019407091662287712,0.019094271585345268,0.04790252819657326,0.05529971048235893,-0.044961124658584595,0.08282763510942459,0.04239732027053833,0.007994783110916615,-0.11495611071586609,0.02410675399005413,-0.05434031784534454,0.0037440096493810415,-0.01514858566224575,-0.04339367151260376,0.0006493552355095744,0.039502792060375214,0.016930246725678444,-0.03214032202959061,-0.01662300154566765,-0.007464359048753977,-0.010337195359170437,0.004678002092987299,0.021311940625309944,0.011776248924434185,0.0674833133816719,0.06703119724988937,0.0192845668643713,-0.02247658744454384,-0.015339563600718975,0.04114420711994171,-0.008102566003799438,0.0714430958032608,0.007637192495167255,0.06272285431623459,-0.0034984250087291002,0.053436290472745895,0.0019198623485863209,-0.04412788152694702,-0.037738144397735596,0.031599849462509155,-0.022982953116297722,0.01680060103535652,0.033801931887865067,-0.04121491312980652,-0.05319557338953018,-0.01101690623909235,0.042438674718141556,-0.011283684521913528,0.04299300163984299,0.09448849409818649,0.044167645275592804,0.061838436871767044,-0.02074728161096573]},{"text":"Prius insolentem Serva Briseis niveo colore Movit Achillem; Movit Aiacem Telamone natum 5 Forma captivae dominum Tecmessae; Arsit Atrides medio in triumpho Virgine rapta, Barbarae postquam cecidere turmae Thessalo victore et ademptus Hector 10 Tradidit fessis leviora tolli Pergama Grais.","book":"Homage to Catalonia","chapter":11,"embedding":[0.015063902363181114,0.08437778800725937,-0.011520939879119396,-0.018314070999622345,-0.09306535124778748,0.05202007666230202,0.10010547190904617,0.09419664740562439,0.004564487375319004,0.05428813397884369,0.0040071625262498856,-0.021781669929623604,0.0499679334461689,-0.10065937787294388,-0.06003107130527496,-0.014466800726950169,-0.055850740522146225,0.05254865065217018,-0.02240091562271118,-0.007868073880672455,0.029325133189558983,-0.07427490502595901,-0.028220338746905327,0.07579465210437775,-0.1494133025407791,0.054744113236665726,0.018504010513424873,0.0342390276491642,0.017892101779580116,-0.09695011377334595,-0.03685758262872696,0.038437046110630035,0.05143812671303749,0.0010127986315637827,-0.07141301780939102,0.022722668945789337,-0.014487594366073608,-0.07029034197330475,0.02694125659763813,-0.0095613868907094,-0.0012595150619745255,-0.06690582633018494,-0.07997610419988632,-0.0624159500002861,-0.007280078716576099,-0.01830134354531765,0.021456334739923477,0.09050220996141434,0.03522235155105591,-0.03605467453598976,-0.06343498826026917,-0.05266255885362625,-0.009466114453971386,-0.01137425284832716,-0.06018839776515961,-0.005752724129706621,0.05941828340291977,-0.10800474137067795,0.052584607154130936,-0.054162830114364624,0.02357991226017475,0.06874935328960419,-0.021290874108672142,0.049778640270233154,-0.039456285536289215,0.04327673837542534,-0.005343339405953884,0.0045478795655071735,-0.07965608686208725,0.0013736519031226635,0.10108387470245361,-0.04326857626438141,0.05580558627843857,0.05548173189163208,-0.10364718735218048,0.09421225637197495,0.004407220985740423,-0.023590683937072754,-0.04395640641450882,-0.07224319130182266,-0.04242158681154251,0.030237875878810883,0.01850002445280552,0.06152386963367462,0.04661845788359642,0.0250156931579113,-0.026326796039938927,-0.03772956505417824,0.048049088567495346,-0.03665654733777046,-0.011636554263532162,0.03474448248744011,-0.039507362991571426,-0.01164520438760519,-0.030873974785208702,0.04370826482772827,-0.07305148243904114,-0.10486984997987747,-0.04052901268005371,0.011325741186738014,-0.007681421935558319,0.02692260593175888,-0.023154156282544136,0.08924940973520279,-0.08733642101287842,-0.05546946078538895,0.006553252227604389,-0.04065564647316933,0.012173322029411793,0.026116911321878433,-0.08109065890312195,-0.08188260346651077,0.004251733887940645,-0.016356438398361206,0.029751280322670937,0.032679956406354904,-0.03153734281659126,-0.06035983934998512,-0.0017377829644829035,-0.012292512692511082,0.06598682701587677,-0.03542718291282654,-0.02853735163807869,-0.003904700046405196,0.04380103945732117,-0.039974190294742584,0.06241513416171074,2.6447976371608517e-32,-0.010285831056535244,-0.08688955754041672,0.04197559505701065,0.03252353146672249,0.07003746181726456,0.005274023395031691,-0.080862857401371,-0.025524428114295006,0.033152494579553604,-0.06148795038461685,-0.0836053341627121,-0.07453184574842453,-0.034991130232810974,0.021975716575980186,0.03876813128590584,0.047505173832178116,0.0772024393081665,-0.041547153145074844,-0.05445466563105583,-0.04496147111058235,-0.07406967133283615,0.054648611694574356,0.07006413489580154,0.007785072084516287,-0.036728762090206146,0.09522797167301178,0.007253636606037617,-0.039485134184360504,-0.002797109540551901,0.019538700580596924,0.0654788613319397,0.032230012118816376,-0.008447635918855667,-0.04657113552093506,-0.008857989683747292,0.011863680556416512,-0.023338979110121727,-0.03571983054280281,-0.06872573494911194,0.09525418281555176,-0.05206165835261345,0.029584670439362526,0.08709652721881866,-0.016465401276946068,0.04023418202996254,0.01033929456025362,0.03832890838384628,0.004783878568559885,0.10254844278097153,0.02318873628973961,-0.0407276414334774,0.04510723799467087,-0.03287295624613762,-0.07047940790653229,0.05305689200758934,0.03267365321516991,-0.07191502302885056,0.09804961085319519,-0.0013333605602383614,-0.033880434930324554,0.018158888444304466,0.006499391980469227,0.06992750614881516,-0.011308036744594574,-0.019778642803430557,-0.005947696976363659,-0.07313413918018341,0.00412993598729372,0.037414271384477615,0.009732124395668507,-0.07946180552244186,0.008976384066045284,-0.0640072301030159,0.0530235581099987,0.0026429281570017338,0.0036536746192723513,0.10747827589511871,-0.07970695197582245,0.06713062524795532,-0.01569930836558342,-0.07214231789112091,-0.004379808437079191,-0.002439110539853573,0.011308974586427212,0.06279876083135605,-0.03498925641179085,0.025037234649062157,0.010743106715381145,0.008927647024393082,0.044811129570007324,0.03248177841305733,0.08456167578697205,-0.04951831325888634,-0.03022226318717003,-0.06790077686309814,-2.688698236933836e-32,-0.04991864413022995,-0.04061569273471832,-0.06299099326133728,0.03002804145216942,0.0023452944587916136,-0.00269454182125628,-0.11720922589302063,0.025510020554065704,-0.0002891684416681528,0.042256057262420654,-0.023121703416109085,0.008599316701292992,0.059193797409534454,-0.00798855535686016,-0.0267071221023798,0.06974375993013382,0.06877049058675766,0.04385059326887131,-0.03219526633620262,-0.05438992753624916,-0.05867365375161171,0.05053773522377014,-0.01167437992990017,-0.08693604916334152,-0.026430945843458176,0.001794524840079248,0.029309969395399094,0.042328909039497375,-0.05817975848913193,-0.047174762934446335,0.07054860144853592,0.0008135703392326832,-0.060305383056402206,0.027134468778967857,0.019284341484308243,0.07467490434646606,0.12433896213769913,0.0025142873637378216,-0.007603255566209555,0.042628683149814606,-0.024730073288083076,-0.00956785213202238,0.1333707869052887,-0.04072646051645279,0.010274198837578297,-0.09611708670854568,-0.1237570196390152,-0.0642184466123581,-0.04382491111755371,0.022801052778959274,0.05992383882403374,-0.05012571066617966,0.010637780651450157,-0.039056338369846344,0.050314873456954956,-0.09616764634847641,-0.036138780415058136,-0.030116455629467964,-0.041563961654901505,0.03986702859401703,0.027387814596295357,0.028629185631871223,-0.06077142804861069,-0.002280780114233494,0.035642627626657486,-0.027931302785873413,-0.09098310023546219,0.033309243619441986,-0.011425168253481388,0.022711994126439095,0.05539000406861305,-0.10395647585391998,-0.12850449979305267,-0.03971623629331589,-0.022404629737138748,-0.056698668748140335,-0.008187873288989067,0.059192776679992676,-0.0279842521995306,-0.05689899995923042,-0.014006944373250008,-0.03738466650247574,-0.04385675489902496,-0.02440200001001358,-0.07318799942731857,-0.008046500384807587,0.012449567206203938,0.0353643000125885,0.07116640359163284,-0.0018667216645553708,0.02128596045076847,0.026491761207580566,0.016013750806450844,-0.10560183972120285,-0.04934260621666908,-7.818196223752238e-8,0.01537103857845068,-0.07565464079380035,0.061063479632139206,0.049539726227521896,-0.003791147144511342,-0.06511425226926804,0.021269695833325386,-0.0755235031247139,0.0006464142352342606,0.04495823010802269,-0.0353417694568634,0.04109656438231468,0.05503763630986214,0.01635604351758957,-0.020141595974564552,0.049391862004995346,0.03734307736158371,-0.008662917651236057,-0.06761179119348526,0.014224663376808167,-0.01396002247929573,-0.08734551072120667,-0.09116635471582413,-0.03790127485990524,-0.038636595010757446,-0.009000692516565323,0.01847231574356556,-0.09530419111251831,0.006047100760042667,0.020895717665553093,0.034818779677152634,0.07601285725831985,0.033058665692806244,-0.06252998113632202,-0.012372628785669804,0.09169080853462219,-0.01346502173691988,0.02095642313361168,-0.022505884990096092,-0.007085342425853014,0.01871338300406933,0.06277122348546982,0.051157984882593155,-0.02676452323794365,0.049171898514032364,-0.025411752983927727,-0.007792006246745586,0.001801985315978527,-0.004165649879723787,-0.08813941478729248,-0.055013153702020645,0.01722513884305954,0.06879265606403351,0.09847937524318695,-0.04029883071780205,-0.06205137073993683,0.056924983859062195,0.03201758489012718,0.014685763977468014,0.006153654307126999,0.0418018102645874,0.00821729376912117,0.0376448817551136,-0.03638702258467674]},{"text":"Crede non illam tibi de scelesta Plebe dilectam, neque sic fidelem, Sic lucro aversam potuisse nasci Matre pudenda. 20 Bracchia et voltum teretesque suras Integer laudo; fuge suspicari, Cuius octavum trepidavit aetas Claudere lustrum.","book":"Homage to Catalonia","chapter":11,"embedding":[0.06380725651979446,0.045123904943466187,-0.06696125864982605,-0.008913379162549973,-0.09255826473236084,0.06060422584414482,0.07313653826713562,0.06120612099766731,0.010151191614568233,0.023489728569984436,0.06867752224206924,-0.1157410591840744,0.046596210449934006,-0.0358692929148674,-0.0636686235666275,-0.10175547748804092,-0.0024882699362933636,0.05869489908218384,-0.00871465913951397,0.055640801787376404,0.03952700272202492,-0.023791387677192688,-0.06030203402042389,0.04583773761987686,-0.06559174507856369,0.024846337735652924,-0.027626771479845047,-0.011909754015505314,0.03536660224199295,-0.023989811539649963,0.03839339688420296,0.10390248149633408,0.06871425360441208,-0.002926633693277836,0.061491936445236206,-0.012084957212209702,-0.06394486129283905,-0.04575143754482269,0.02521822415292263,0.028340119868516922,-0.030270908027887344,-0.03473112732172012,-0.08354342728853226,0.02262992039322853,-0.0011400888906791806,0.033030327409505844,0.008199837058782578,0.11276105791330338,0.0008033363847061992,-0.06597757339477539,-0.052630163729190826,-0.014679060317575932,-0.07949621975421906,0.06938371807336807,-0.07742809504270554,-0.04248737916350365,0.0023465484846383333,-0.009811311028897762,0.07417310774326324,-0.036407146602869034,-0.016957396641373634,0.11101452261209488,-0.00275434460490942,-0.007249334827065468,-0.052295174449682236,-0.0033622034825384617,-0.05682213976979256,-0.030262921005487442,-0.1022506058216095,0.09119129180908203,0.15660391747951508,-0.036394741386175156,-0.0002172876411350444,0.02662563882768154,-0.05579544976353645,0.03874511271715164,-0.011103136464953423,-0.01776762492954731,0.011827627196907997,-0.0977618470788002,-0.06847897171974182,-0.01624651812016964,0.020553408190608025,-0.01722092181444168,-0.004822719842195511,0.00410514185205102,0.03263004124164581,-0.033119119703769684,0.08409412950277328,0.005394647363573313,0.052480317652225494,0.09641145169734955,-0.0332290455698967,-0.04811108857393265,0.012656333856284618,0.05774437636137009,-0.024702731519937515,-0.019261855632066727,-0.02126515656709671,0.0043038357980549335,0.008359258063137531,0.005434317048639059,-0.06099120154976845,0.11221720278263092,-0.09214720875024796,0.005053582601249218,0.01705516315996647,-0.04569705203175545,0.012240447103977203,0.013441246934235096,-0.059368737041950226,-0.06213276833295822,0.005753822159022093,-0.038573574274778366,0.05721495673060417,-0.050110623240470886,0.042001549154520035,-0.03888018801808357,-0.01382477767765522,-0.054597873240709305,0.04788093641400337,-0.015072098933160305,0.01655828393995762,-0.0425121895968914,-0.029833506792783737,-0.05590023845434189,-0.003017124254256487,2.6428533695045916e-32,-0.03858629986643791,-0.04841652140021324,-0.031109288334846497,-0.029237007722258568,-0.011029454879462719,-0.041181448847055435,-0.07023162394762039,-0.045521099120378494,0.0044556246139109135,0.02124919183552265,-0.096016064286232,-0.059675052762031555,-0.02501647174358368,0.05888935551047325,0.027560673654079437,0.01140694972127676,0.025181785225868225,-0.04078690707683563,0.05954281985759735,-0.0739339292049408,-0.07513892650604248,-0.0131820784881711,0.045133404433727264,-0.0022515892051160336,0.012901646085083485,-0.006762869656085968,0.040453314781188965,-0.06606370955705643,0.03307073190808296,0.03905179724097252,0.0525488518178463,0.020778784528374672,0.011322703212499619,-0.015032229945063591,0.00448325090110302,0.036738209426403046,-0.031262364238500595,0.013469766825437546,-0.04861104115843773,0.04027698189020157,0.051841288805007935,-0.016194790601730347,0.0919063538312912,0.004609298426657915,0.054278016090393066,0.01145096868276596,0.0661817118525505,0.05914165824651718,0.0874565914273262,-0.03494296967983246,-0.013317795470356941,-0.021346304565668106,-0.04872536286711693,-0.016096927225589752,0.04352044314146042,-0.007640078663825989,-0.036263421177864075,0.1200326532125473,-0.06826426088809967,-0.043389663100242615,-0.016209077090024948,0.016728786751627922,0.004339849576354027,-0.020834706723690033,-0.048006631433963776,-0.015534352511167526,-0.10907761752605438,-0.02182346023619175,0.11313898861408234,-0.0763532817363739,-0.09176751226186752,0.005090547259896994,-0.02531016618013382,-0.0004931212752126157,0.027230272069573402,-0.03551961109042168,0.07302636653184891,-0.021736953407526016,-0.013528150506317616,-0.005659861024469137,-0.062115468084812164,-0.044884249567985535,0.054000332951545715,-0.05986541137099266,0.09755805134773254,-0.04734257608652115,-0.0346117801964283,0.005266312509775162,0.03229961171746254,-0.003713918151333928,0.06819875538349152,-0.044655680656433105,-0.007701207417994738,0.03554423153400421,0.004164803307503462,-2.2426088571827294e-32,-0.09407345205545425,-0.03292407467961311,-0.011675375513732433,0.12435750663280487,-0.029847634956240654,-0.014512617141008377,-0.11489677429199219,-0.011680026538670063,0.006882816553115845,-0.08614140748977661,-0.04891258478164673,-0.030364999547600746,0.07987096905708313,-0.04747170954942703,0.0005339607014320791,0.07119382172822952,0.05421668291091919,-0.011865314096212387,-0.03225230425596237,-0.05694128945469856,-0.05446382239460945,-0.04085021838545799,-0.011478867381811142,-0.05318945273756981,0.05556461587548256,0.0445152223110199,0.056173037737607956,0.0008001342066563666,0.011492714285850525,0.019826194271445274,0.10442659258842468,0.009993592277169228,-0.042998556047677994,0.033516839146614075,-0.0026951360050588846,-0.049683019518852234,0.14475177228450775,0.004237516783177853,0.008096846751868725,0.010707041248679161,-0.029333142563700676,0.012997393496334553,0.0787944421172142,-0.016792338341474533,-0.018942371010780334,-0.016901088878512383,0.007537569385021925,0.019454309716820717,-0.013138765469193459,-0.0009780949912965298,0.09059924632310867,-0.04368123784661293,0.001856797724030912,0.03814525529742241,0.034938253462314606,-0.025414587929844856,-0.0013282601721584797,-0.006642613094300032,0.007732909172773361,-0.04153675585985184,0.1123930811882019,0.07154552638530731,0.005767851136624813,-0.023353515192866325,0.06333713233470917,0.004083042033016682,-0.06881045550107956,0.060623832046985626,-0.06234299764037132,0.029050813987851143,0.05074852332472801,-0.10376161336898804,-0.12440957129001617,-0.02016265131533146,-0.0696244090795517,-0.06119199097156525,-0.02163228578865528,0.06680352985858917,-0.011005624197423458,0.09145622700452805,0.020240716636180878,0.04116038605570793,-0.0482046902179718,0.020312992855906487,-0.030531596392393112,-0.06685593724250793,-0.037594813853502274,0.00563241820782423,0.016513869166374207,0.059043917804956436,-0.0518481470644474,-0.024957207962870598,0.07302387058734894,-0.04955160617828369,0.07034356892108917,-7.226387310765858e-8,0.004669351037591696,-0.06214476749300957,-0.04122861102223396,-0.0414094515144825,0.05562623217701912,-0.03452790156006813,-0.04108472168445587,-0.07523176819086075,0.010109196417033672,0.013098700903356075,-0.050277430564165115,-0.043716493993997574,0.018889421597123146,0.0291134025901556,0.044367097318172455,0.03845744952559471,0.13650263845920563,-0.0075295413844287395,-0.032347533851861954,-0.03326968848705292,0.06205068901181221,-0.03518877178430557,-0.004379013553261757,-0.04422920569777489,-0.07067955285310745,-0.0311569906771183,-0.02396034263074398,-0.027971895411610603,-0.031891435384750366,-0.002619291888549924,-0.020538723096251488,0.07519207149744034,0.06077209487557411,-0.10820405930280685,0.00473076943308115,0.1442188322544098,0.007160430308431387,0.04223181679844856,-0.024956248700618744,0.04250019043684006,0.08260855823755264,0.009217867627739906,0.04906672239303589,-0.053696759045124054,0.03427334874868393,-0.10302942991256714,-0.02286953292787075,0.05213675647974014,0.0016593700274825096,-0.032445088028907776,-0.04528867080807686,0.09706307202577591,0.04199742525815964,0.07232385128736496,0.017600737512111664,-0.04567834734916687,-0.007010774686932564,-0.00945225264877081,-0.006182907614856958,0.04432929679751396,0.04114335775375366,0.05411980301141739,0.02156359702348709,-0.021266544237732887]},{"text":"Circa virentis est animus tuae 5 Campos iuvencae, nunc fluviis gravem Solantis aestum, nunc in udo Ludere cum vitulis salicto Praegestientis.","book":"Homage to Catalonia","chapter":11,"embedding":[-0.04800451919436455,0.03435515984892845,-0.046541426330804825,0.041257891803979874,-0.022797027602791786,0.03639017418026924,-0.012386835180222988,0.09128320217132568,0.015751460567116737,0.05995512753725052,0.030040118843317032,-0.05236988887190819,-0.008214391767978668,-0.039829254150390625,-0.07191232591867447,-0.07197578996419907,-0.011215520091354847,0.1173095703125,-0.03339066728949547,0.04810665547847748,0.0432220883667469,-0.0020543287973850965,0.02244892157614231,0.00744128180667758,-0.09740150719881058,0.0004885712987743318,-0.020202290266752243,-0.02217603661119938,-0.018259216099977493,-0.07952979952096939,0.0012542803306132555,0.09545298665761948,0.022445354610681534,-0.03801705688238144,0.012939533218741417,0.022385045886039734,-0.009298368357121944,-0.09872755408287048,0.07698006182909012,0.043995846062898636,-0.07840956747531891,-0.019561173394322395,0.01976947858929634,-0.015797071158885956,-0.013725162483751774,-0.03083009272813797,0.006668124347925186,0.1170932948589325,0.08383210748434067,-0.0020512440241873264,-0.04919804632663727,-0.050420429557561874,-0.10516761243343353,0.01884792000055313,-0.10859279334545135,0.04212726280093193,-0.009886305779218674,-0.11030461639165878,-0.005770983640104532,0.018129311501979828,-0.008023028261959553,0.04797925427556038,0.03151204437017441,-0.009225715883076191,-0.04960457608103752,-0.014664880000054836,-0.012771420180797577,-0.010997764766216278,-0.045213717967271805,0.002467484911903739,0.020007560029625893,-0.053167928010225296,0.04604659602046013,0.07138393074274063,-0.056916799396276474,0.07567344605922699,-0.0005168564966879785,-0.020405035465955734,-0.02594982646405697,-0.0578463040292263,-0.009090135805308819,-0.024795450270175934,0.013417921960353851,0.03764725476503372,-0.004464237485080957,-0.031043892726302147,0.07047130167484283,-0.03446526452898979,0.0780789777636528,0.005210575647652149,-0.03900944069027901,0.03152666613459587,-0.06688828766345978,-0.038205526769161224,0.006891888566315174,-0.004888221155852079,-0.00614503538236022,0.024927711114287376,0.015202291309833527,0.0009046854102052748,-0.026261353865265846,-0.11241727322340012,-0.032569367438554764,0.05111990496516228,-0.06845557689666748,-0.048696644604206085,-0.07601885497570038,-0.08804392069578171,0.012552385218441486,-0.03115225024521351,-0.09824264049530029,-0.013632738962769508,-0.08058825135231018,-0.09065768122673035,0.0003588109102565795,-0.0021877784747630358,-0.028756823390722275,-0.09239070862531662,-0.00919699389487505,-0.0041323197074234486,0.0854971706867218,-0.019747698679566383,0.05830126255750656,-0.023855047300457954,0.039396047592163086,-0.032527923583984375,0.11119071394205093,1.1006587070290944e-32,-0.045433465391397476,-0.12347111105918884,0.031161298975348473,0.06146624684333801,-0.010819144546985626,0.026722561568021774,-0.0071264817379415035,-0.025372425094246864,-0.0013411694671958685,-0.080851249396801,-0.10782335698604584,-0.03237934038043022,0.004103527404367924,-0.021765677258372307,-0.014871696941554546,0.0840572640299797,0.09569913893938065,-0.0652831569314003,-0.04937197268009186,-0.026000285521149635,0.0003579426556825638,0.010114307515323162,0.033288996666669846,-0.0017448539147153497,-0.019387364387512207,0.020060034468770027,-0.05362894386053085,-0.09998727589845657,0.015256846323609352,0.036858148872852325,0.08360476791858673,0.03847011551260948,0.0012779372045770288,-0.003405120223760605,0.05975380912423134,0.07200416177511215,0.05017033964395523,0.0038944226689636707,-0.03984418883919716,0.02501155622303486,0.01396437082439661,0.043372832238674164,0.025094982236623764,0.0041157519444823265,0.08645638078451157,0.03252483159303665,0.01629183255136013,0.030573520809412003,0.10806715488433838,0.022171149030327797,-0.008107049390673637,0.010548491030931473,0.018180925399065018,-0.05460004508495331,-0.013545365072786808,0.011539274826645851,-0.007425406016409397,0.08705219626426697,-0.04768653213977814,-0.0074877552688121796,0.02060914784669876,-0.02239689975976944,0.007794821169227362,-0.043821390718221664,-0.031869906932115555,-0.00021672321599908173,0.011508661322295666,-0.021478336304426193,0.07492217421531677,0.05412377044558525,-0.06576627492904663,0.019072480499744415,-0.017462261021137238,0.05771927535533905,0.0054955570958554745,0.021924585103988647,0.07297109812498093,-0.006756845861673355,-0.03959925100207329,-0.04084690287709236,-0.07797487825155258,0.015302415937185287,-0.020753834396600723,0.05211859941482544,0.11396623402833939,-0.0022979804780334234,-0.04920246824622154,0.05841569975018501,0.057112570852041245,0.04299091175198555,0.07683659344911575,0.07803009450435638,0.008549803867936134,-0.04179449379444122,0.05819251760840416,-1.1932296953087157e-32,0.01580061763525009,-0.037770580500364304,-0.1419251561164856,0.1328849196434021,-0.020030200481414795,-0.009692642837762833,-0.13657768070697784,0.05133931338787079,-0.03460505232214928,-0.006352555006742477,-0.04933971166610718,-0.02601230889558792,-0.00486536230891943,-0.06807799637317657,-0.09742280840873718,0.053056828677654266,0.0835345983505249,0.007025709841400385,-0.013959509320557117,0.022744033485651016,-0.08025319129228592,-0.015533299185335636,0.06482908874750137,-0.11076966673135757,0.025437109172344208,-0.01231197826564312,0.06329726427793503,-0.013497970998287201,-0.0820944532752037,-0.029192466288805008,0.02983233705163002,0.013294598087668419,0.00969297531992197,0.01278722658753395,-0.033160608261823654,0.01978279836475849,0.09271068125963211,-0.060124386101961136,0.029080040752887726,0.037382010370492935,-0.011545195244252682,0.0673961341381073,0.10670530050992966,-0.03475826978683472,0.006903118919581175,-0.031589288264513016,-0.044303055852651596,0.027306105941534042,-0.05284324660897255,0.012190560810267925,0.08611448109149933,-0.04271889477968216,0.003620869480073452,-0.0259997621178627,0.03128816559910774,-0.04896560683846474,-0.06846751272678375,-0.08970984071493149,0.01415496226400137,0.06555861979722977,0.08327199518680573,0.0023936780635267496,-0.06655105948448181,-0.05252880975604057,0.05757142975926399,0.018526114523410797,-0.035613417625427246,0.07259257137775421,-0.014684508554637432,0.00980436336249113,0.09047383069992065,-0.0984669029712677,-0.0847926139831543,0.01608644612133503,-0.012650460936129093,-0.01147447805851698,-0.03765934705734253,0.018915420398116112,-0.006350874900817871,-0.014958009123802185,-0.08282813429832458,-0.07626165449619293,-0.012630714103579521,-0.08072612434625626,-0.027400430291891098,-0.011237338185310364,0.04438680037856102,-0.012125220149755478,0.044639285653829575,-0.017538469284772873,-0.04654526337981224,-0.03444378077983856,0.011332647874951363,-0.07085084915161133,-0.011520006693899632,-4.212493820432428e-8,0.04746655374765396,-0.0012439560377970338,-0.07390142977237701,0.030873998999595642,0.07321638613939285,-0.037608642131090164,-0.0098850904032588,0.052910201251506805,0.12462395429611206,0.08245550841093063,-0.0118112089112401,0.038085758686065674,0.06931263208389282,-0.022326715290546417,0.0649670884013176,0.04459646716713905,0.05445972830057144,0.06113017722964287,-0.028149215504527092,0.013977286405861378,0.03831521421670914,-0.038596879690885544,-0.04264574497938156,-0.08379469066858292,-0.03716444969177246,-0.01604999043047428,0.022279929369688034,-0.03643374517560005,0.026483122259378433,-0.023810353130102158,0.015577519312500954,0.04136422276496887,0.013830985873937607,-0.06064584478735924,-0.0750352144241333,0.04273366183042526,0.01758391410112381,-0.010676821693778038,-0.005634955130517483,0.019399743527173996,0.08053416758775711,-0.013422645628452301,0.06076783314347267,-0.038878701627254486,-0.003809788729995489,0.01025364175438881,0.07044202089309692,-0.041747964918613434,0.005469498224556446,-0.06128155067563057,-0.06737519055604935,0.017228759825229645,0.05614098906517029,0.05561002716422081,-0.06150076910853386,-0.046844739466905594,0.1217152550816536,-0.0036907067988067865,-0.022995276376605034,-0.06908523291349411,-0.03876642882823944,0.06510663777589798,0.005836229771375656,0.04793982580304146]},{"text":"Iam te sequetur: currit enim ferox Aetas, et illi, quos tibi dempserit, Adponet annos; iam proterva 15 Fronte petet Lalage maritum, Dilecta quantum non Pholoe fugax, Non Chloris, albo sic umero nitens Ut pura nocturno renidet Luna mari, Cnidiusve Gyges, 20 Quem si puellarum insereres choro, Mire sagacis falleret hospites Discrimen obscurum solutis Crinibus ambiguoque voltu.","book":"Homage to Catalonia","chapter":11,"embedding":[0.03012523241341114,0.05508981645107269,-0.029802745208144188,-0.02983565628528595,-0.07645131647586823,0.02852555178105831,0.0902012288570404,0.07620871812105179,0.006587752606719732,0.002755484776571393,0.05068683624267578,-0.09887649863958359,0.013335342518985271,-0.04969567060470581,-0.09023064374923706,-0.05589166283607483,-0.02362988516688347,0.043828077614307404,-0.0022612090688198805,0.06877477467060089,-0.01021610014140606,-0.0032579863909631968,-0.020951462909579277,-0.025657497346401215,-0.06995079666376114,0.07105644792318344,-0.037781745195388794,-0.017745984718203545,0.021594049409031868,-0.11767612397670746,0.043940529227256775,0.14428994059562683,0.08189700543880463,-0.053983092308044434,0.04500071331858635,-0.0037004922050982714,-0.09983113408088684,-0.06476961076259613,0.05231684818863869,0.04398541525006294,-0.07943592965602875,-0.025324903428554535,-0.11669255793094635,-0.0205515269190073,0.00582640478387475,-0.048415280878543854,0.09093087911605835,0.06653029471635818,0.015131838619709015,-0.019432248547673225,-0.12554162740707397,0.02580901049077511,-0.0804096907377243,0.023226263001561165,-0.06960500776767731,-0.057768914848566055,0.004242556169629097,-0.03724074363708496,-0.020690010860562325,-0.044875338673591614,0.03989425674080849,0.03277285769581795,-0.027906524017453194,0.05013342946767807,-0.012339457869529724,0.00454597407951951,-0.01617870293557644,-0.021688206121325493,-0.026853766292333603,0.013036999851465225,0.11166553944349289,0.009886723943054676,-0.02254360355436802,0.10500817000865936,-0.07178793102502823,0.09934104233980179,-0.004484080709517002,-0.009397042915225029,0.003255146089941263,-0.04768732190132141,0.0019478099420666695,0.005979564506560564,0.03808547183871269,-0.004913337528705597,0.034541964530944824,0.05895518139004707,0.006502147298306227,-0.03332613781094551,0.01183039229363203,0.00042286005918867886,0.05632492154836655,0.04496929049491882,-0.025809725746512413,0.017905011773109436,0.00828245934098959,0.0032257838174700737,-0.006118131801486015,-0.012800938449800014,-0.02077481709420681,-0.002717596245929599,0.009163285605609417,0.0026193992234766483,-0.011450855061411858,0.09983843564987183,-0.08547885715961456,-0.06965912133455276,0.0013685472076758742,-0.07194097340106964,0.007668354548513889,0.011842386797070503,-0.06221279501914978,-0.08744952827692032,-0.04307332634925842,-0.08800934255123138,0.048835188150405884,0.019586000591516495,0.04498709365725517,-0.04968036338686943,0.03700241073966026,-0.04620612412691116,-0.0039322348311543465,-0.01073802262544632,-0.05877513065934181,-0.03367422893643379,0.026348939165472984,-0.06462769210338593,-0.007515949197113514,2.518688252215935e-32,-0.006879142951220274,0.037693362683057785,0.00565307354554534,-0.01322669256478548,-0.014645393937826157,-0.03997516632080078,-0.052351463586091995,-0.08448918908834457,0.014075923711061478,-0.0688549280166626,-0.054074570536613464,0.0002235269348602742,-0.01835883967578411,0.02386452443897724,-0.005332559812813997,0.02660461701452732,0.0456966832280159,-0.07552780956029892,0.009660339914262295,-0.0509057380259037,-0.07250853627920151,0.04399736970663071,-0.024578971788287163,-0.03733769804239273,-0.058832861483097076,-0.001956437947228551,0.029092732816934586,-0.032991085201501846,-0.002550605684518814,0.03415216878056526,0.09160550683736801,-0.001364286639727652,-0.01717674732208252,-0.04874598607420921,0.023820629343390465,0.03754841536283493,0.04160992056131363,-0.024673137813806534,-0.03883040323853493,-0.015311362221837044,0.0023405083920806646,0.05661624297499657,0.07668440788984299,0.014052878133952618,0.08745002746582031,-0.011003218591213226,0.0021306700073182583,0.014889931306242943,0.05109469220042229,-0.008785219863057137,-0.03300299495458603,0.007834706455469131,0.027057411149144173,-0.021182546392083168,0.03473442792892456,0.03444017097353935,-0.0762404054403305,0.05691955238580704,-0.03896750509738922,0.013125518336892128,0.045766375958919525,-0.030073029920458794,0.014400459825992584,-0.020031942054629326,-0.010099241510033607,-0.06215345486998558,-0.07081158459186554,-0.039488255977630615,0.07175818085670471,0.0322447344660759,-0.10748499631881714,-0.0011228549992665648,0.028143925592303276,0.05721345916390419,0.048756469041109085,0.04285334795713425,0.001432987628504634,-0.03496308624744415,-0.01627947948873043,0.010116534307599068,-0.08337422460317612,-0.0022703763097524643,0.014685481786727905,-0.02362402342259884,0.04171858727931976,-0.02052289992570877,0.013816244900226593,-0.0030081612057983875,0.055608320981264114,0.0493382066488266,0.042989932000637054,0.016043297946453094,-0.018348200246691704,0.026586035266518593,-0.061189018189907074,-2.2425688903748014e-32,-0.04040952026844025,-0.0320390947163105,-0.07318351417779922,0.0859241634607315,-0.01594519056379795,0.004501244053244591,-0.09384698420763016,0.07404284179210663,0.03886869549751282,0.005024965386837721,-0.03770456090569496,-0.02633453719317913,0.07467008382081985,-0.11004918813705444,-0.06673470139503479,0.06887681782245636,0.053233977407217026,-0.005760872736573219,-0.0699932873249054,-0.005493477452546358,-0.118900828063488,0.07885809242725372,0.006864454131573439,-0.08466237783432007,0.02219550497829914,0.057508017867803574,0.086274154484272,-0.10911417752504349,-0.04540514945983887,-0.008920184336602688,0.07290573418140411,-0.05874648690223694,-0.05611694976687431,0.01270864624530077,-0.06664516031742096,0.014862319454550743,0.14133553206920624,-0.05182354897260666,-0.016215592622756958,-0.04388001561164856,-0.030278990045189857,0.03820784389972687,0.10668682307004929,-0.07793913781642914,0.016576547175645828,-0.0007926111575216055,-0.021666554734110832,0.029122624546289444,-0.0323357917368412,0.06964550912380219,0.0820562094449997,0.013058628886938095,0.017023630440235138,0.003804621985182166,0.08413311094045639,-0.07515133172273636,0.026695771142840385,-0.05071917176246643,-0.10553847253322601,0.05804569646716118,0.09386476129293442,0.0904708206653595,-0.021158859133720398,-0.06021928787231445,0.096073679625988,-0.001484114327467978,-0.10940391570329666,0.09992679208517075,0.021307537332177162,0.023548584431409836,0.03234315663576126,-0.08872814476490021,-0.10720178484916687,-0.04348314180970192,0.026563921943306923,-0.005502781365066767,-0.03605084493756294,0.03307434543967247,-0.022902874276041985,0.04316549748182297,-0.010572566650807858,-0.027377402409911156,-0.058654315769672394,0.035914864391088486,-0.045174285769462585,-0.006626407150179148,-0.05187965929508209,-0.016760554164648056,0.03678762912750244,0.01647990010678768,-0.01173013262450695,-0.02125396393239498,0.02487223595380783,-0.022074950858950615,0.04047045111656189,-7.469756013733786e-8,0.03569396585226059,-0.10651078820228577,-0.035540495067834854,-0.03390847146511078,0.01035862322896719,-0.05859881266951561,-0.029998740181326866,-0.02210232801735401,0.01495030615478754,0.022341130301356316,-0.023377537727355957,0.009991290047764778,-0.0018726157722994685,0.008968010544776917,0.03787128999829292,0.03731195256114006,0.13526490330696106,0.002161238342523575,-0.046006932854652405,-0.09552761167287827,0.07235045731067657,-0.007317471317946911,-0.058493733406066895,0.01741950400173664,-0.02206532470881939,0.028115898370742798,-0.0024684248492121696,-0.129307821393013,-0.03463820740580559,-0.0005867437575943768,-0.018465949222445488,0.04228169098496437,0.07190875709056854,-0.08033838868141174,-0.016847334802150726,0.04647244140505791,-0.002048083581030369,-0.02221476472914219,-0.01762251928448677,0.10953447222709656,0.06885547190904617,0.01766568422317505,0.08785880357027054,-0.014661821536719799,-0.007237870246171951,-0.019565913826227188,0.03943720459938049,0.044832780957221985,0.02957959659397602,-0.06660068035125732,-0.07423181086778641,0.04298214241862297,0.0843581035733223,0.006385772489011288,-0.0607001818716526,0.0214522834867239,0.04914461448788643,0.0492100790143013,0.04832114651799202,0.00042565265903249383,0.06694550067186356,0.01705808751285076,0.016924049705266953,-0.006156542804092169]},{"text":"Unde si Parcae prohibent iniquae, Dulce pellitis ovibus Galaesi 10 Flumen et regnata petam Laconi Rura Phalantho.","book":"Homage to Catalonia","chapter":11,"embedding":[0.02931804209947586,0.004845138639211655,-0.050879593938589096,-0.009531348943710327,-0.08860499411821365,0.010283227078616619,0.05712892860174179,0.1281939297914505,0.04744930565357208,-0.006637744605541229,0.04871709272265434,-0.04464488849043846,0.04034331068396568,0.018744656816124916,-0.01479963306337595,-0.07942294329404831,-0.059223536401987076,0.0973319262266159,-0.06695731729269028,-0.005179234314709902,0.06368760019540787,-0.04606723040342331,-0.0085843401029706,0.09899549186229706,-0.10779553651809692,-0.01754130981862545,0.03711661696434021,0.010152655653655529,-0.025119906291365623,-0.055191632360219955,0.009450550191104412,-0.00676326360553503,0.08572300523519516,-0.0275421142578125,0.003957409877330065,-0.03059954009950161,0.04427197203040123,-0.09315089881420135,0.0977993831038475,0.014258874580264091,-0.03980257734656334,-0.04185177758336067,-0.014519289135932922,-0.11823596805334091,0.039599113166332245,-0.02095489390194416,-0.00408933125436306,0.08732293546199799,0.03457989543676376,-0.025164414197206497,-0.04186023399233818,-0.042495641857385635,-0.00817914865911007,0.012799770571291447,0.02879563346505165,-0.04110337793827057,0.00620041461661458,-0.11785998195409775,-0.054248929023742676,0.033508770167827606,-0.001530856010504067,0.022095922380685806,-0.014750164933502674,0.03629353642463684,-0.06122783198952675,-0.019838184118270874,-0.049988433718681335,0.0047646393068134785,-0.027387341484427452,0.06206990033388138,0.06280885636806488,-0.007060897070914507,0.014345870353281498,0.056683093309402466,-0.003147481009364128,0.05543223023414612,0.011973729357123375,0.012358481995761395,-0.027359919622540474,-0.06566210091114044,0.03160960227251053,-0.05561910942196846,0.03945208340883255,0.01900615356862545,0.00038865316309966147,-0.04076344147324562,0.06353584676980972,-0.005399584770202637,0.03082316741347313,-0.021269984543323517,-0.008050675503909588,0.04459397867321968,-0.039354078471660614,-0.01420274656265974,-0.04028394818305969,0.001424305490218103,-0.031070774421095848,-0.07544247061014175,0.048947155475616455,0.03424510732293129,-0.061161208897829056,-0.12244768440723419,0.03885979950428009,0.03959428146481514,-0.11643680930137634,-0.10440798848867416,-0.022298188880085945,-0.08748909831047058,0.0627194494009018,0.026938894763588905,-0.04062766581773758,-0.10122166574001312,-0.02381535805761814,0.0012186934472993016,-0.07072465121746063,0.04230330511927605,-0.007110941223800182,-0.1038491278886795,0.007139765657484531,-0.040074802935123444,0.02011989988386631,-0.010826627723872662,0.017155403271317482,0.020732257515192032,0.03794681653380394,-0.008869457058608532,0.08378800749778748,1.115345333448268e-32,-0.059793852269649506,-0.06577485799789429,0.03236085921525955,-0.018017929047346115,0.07755889743566513,0.006819252856075764,-0.03561094403266907,-0.05249544978141785,0.028314994648098946,-0.12715645134449005,-0.0558168925344944,0.011959193274378777,-0.0037080494221299887,-0.012062564492225647,0.03102702647447586,0.10938623547554016,0.048816874623298645,-0.018133016303181648,-0.00382851785980165,0.01367858238518238,-0.023172421380877495,-0.003204621374607086,0.05032562091946602,0.029218405485153198,0.04412189871072769,0.02846861630678177,0.010556151159107685,-0.07336991280317307,-0.0025180522352457047,0.02908061072230339,0.12960465252399445,-0.017774730920791626,-0.06247590854763985,0.04442296549677849,-0.06376023590564728,0.03584680333733559,-0.011695741675794125,-0.017853310331702232,-0.025347117334604263,0.025057869032025337,0.0076541900634765625,-0.005726880393922329,0.03952283412218094,0.04121889919042587,0.05514083430171013,0.012664534151554108,-0.01583058014512062,0.06041834130883217,0.06519126147031784,0.027882197871804237,0.019869035109877586,0.05383633077144623,-0.04504665359854698,-0.006058826576918364,-0.04946517571806908,-0.020226024091243744,-0.05531196668744087,0.027096105739474297,0.0006214736495167017,0.03807525709271431,0.05682000890374184,0.004481111653149128,0.025046005845069885,0.006506608799099922,0.00800060573965311,-0.010363295674324036,0.011749562807381153,0.0610116608440876,0.07168395072221756,0.03632861003279686,-0.030864980071783066,-0.10715050995349884,-0.022237787023186684,0.011945847421884537,-0.047640543431043625,0.00012844394950661808,0.02699134685099125,-0.05371733009815216,-0.03565465286374092,0.029167886823415756,-0.07359867542982101,0.0023506132420152426,0.06297215074300766,0.0229714997112751,-0.033361099660396576,0.05038309842348099,-0.032609086483716965,0.0834827870130539,0.06397945433855057,0.006846229545772076,0.07677040994167328,0.07924014329910278,0.03155507892370224,0.06433402746915817,0.03675655648112297,-1.1978912650936953e-32,-0.005513451527804136,-0.018113134428858757,-0.012928677722811699,0.0639067143201828,0.0063887774012982845,0.0032964025158435106,-0.11540485918521881,0.04070672392845154,0.0354153998196125,-0.0013653803616762161,-0.045715589076280594,-0.09719309210777283,0.08085251599550247,-0.036721356213092804,-0.055834196507930756,0.10859209299087524,0.01168002374470234,0.061429738998413086,-0.021366974338889122,0.000699937401805073,-0.04671945795416832,0.06569205224514008,0.012237039394676685,-0.06883259862661362,-0.008223297074437141,0.005579703953117132,0.06318202614784241,0.005449518095701933,-0.0624302439391613,-0.07482142746448517,0.0524761937558651,0.0053749484941363335,-0.07218918204307556,0.021557655185461044,-0.059181611984968185,0.0033430135808885098,0.1375260055065155,-0.04784722626209259,0.03866534307599068,0.031638093292713165,-0.011919926851987839,0.06215554103255272,0.05437309667468071,-0.003151601878926158,0.02757398597896099,0.015348654240369797,-0.03268143907189369,-0.024952275678515434,-0.050773151218891144,-0.052814215421676636,0.0798097550868988,-0.019897688180208206,-0.05251966044306755,-0.02411757968366146,-0.009789605624973774,0.042457208037376404,-0.04471539705991745,-0.0012930050725117326,-0.03727278485894203,0.0028344111051410437,0.020748300477862358,-0.0135245556011796,-0.0644378513097763,-0.05180390179157257,-0.04322776198387146,-0.042765066027641296,-0.041761770844459534,-0.02689399942755699,0.043397121131420135,-0.011586816981434822,0.0481141097843647,0.001200367114506662,-0.09960312396287918,0.023043829947710037,-0.08868902176618576,0.06003152206540108,-0.054559074342250824,-0.034773774445056915,0.022684922441840172,0.051859911531209946,-0.036342132836580276,-0.07700225710868835,-0.013484056107699871,0.028660718351602554,-0.014660297892987728,-0.06258651614189148,0.03652673214673996,0.039195794612169266,0.013431843370199203,-0.01127529889345169,0.009552214294672012,0.02017870731651783,0.018892580643296242,-0.023539800196886063,0.04481733217835426,-4.1434311981447536e-8,0.10075906664133072,-0.1452447772026062,-0.14499861001968384,0.057355497032403946,0.08331768959760666,-0.10850078612565994,-0.06914079189300537,0.013342728838324547,0.025769386440515518,-0.009701207280158997,-0.07369627058506012,0.014028402045369148,-0.07361408323049545,0.025054844096302986,0.0015033497475087643,0.07683718204498291,0.08503705263137817,0.06341604143381119,-0.04541025683283806,0.03967294096946716,-0.011820404790341854,-0.034370504319667816,-0.06460011750459671,-0.04651133343577385,-0.04293952137231827,-0.039508603513240814,0.016488846391439438,-0.018579166382551193,-0.05029061809182167,-0.06612247228622437,-0.015043089166283607,0.012291456572711468,-0.0437014065682888,-0.05119612067937851,0.008823609910905361,0.054409194737672806,0.0639214813709259,0.02117038145661354,-0.0008601723820902407,-0.012775376439094543,0.11366808414459229,-0.0849466547369957,0.06441948562860489,-0.04550516977906227,0.012940958142280579,-0.025678139179944992,-0.07540949434041977,-0.019061919301748276,0.02056606486439705,-0.027156515046954155,-0.049694664776325226,-0.02721322327852249,0.12254057079553604,0.028006086125969887,-0.0591171570122242,0.039640843868255615,0.047020263969898224,-0.04275716096162796,0.0005844181287102401,0.04603186622262001,0.07520899921655655,0.001559421536512673,0.14613378047943115,-0.04175620153546333]},{"text":"O saepe mecum tempus in ultimum Deducte Bruto militiae duce, Quis te redonavit Quiritem Dis patriis Italoque caelo, Pompei, meorum prime sodalium, 5 Cum quo morantem saepe diem mero Fregi, coronatus nitentis Malobathro Syrio capillos?","book":"Homage to Catalonia","chapter":12,"embedding":[-0.001061496790498495,0.04075503721833229,-0.09625178575515747,0.00441576587036252,-0.0009827817557379603,-0.0035245337057858706,0.11175375431776047,0.11218670010566711,-0.01838296465575695,0.03719918057322502,0.015856293961405754,-0.11967567354440689,0.02832181192934513,-0.024565093219280243,-0.09453700482845306,-0.0874285101890564,0.0455755852162838,0.022139620035886765,-0.023063305765390396,0.011967958882451057,0.05648794025182724,-0.022497005760669708,-0.0021527616772800684,0.08253657072782516,-0.058124180883169174,0.07077902555465698,-0.022264523431658745,0.02146608754992485,0.0038165864534676075,-0.06447869539260864,-0.0015231859870254993,0.050173569470644,0.08259359002113342,-0.02747597172856331,0.023628128692507744,-0.009184906259179115,0.0056393807753920555,-0.0649770200252533,0.05319339781999588,0.04586995765566826,-0.028362449258565903,-0.022793790325522423,-0.044548697769641876,0.02740747667849064,0.010020283982157707,-0.009083730168640614,-0.05203709751367569,0.1355547308921814,-0.032625384628772736,-0.027085619047284126,-0.03228635713458061,-0.02452176995575428,-0.09473157674074173,-0.001869742525741458,-0.0602092407643795,-0.015816712751984596,0.05483803153038025,-0.034333497285842896,0.06921760737895966,-0.012041996233165264,0.014850599691271782,0.025222904980182648,-0.03021845407783985,0.055760420858860016,0.041219182312488556,-0.007369427941739559,-0.02766204997897148,0.0034458651207387447,-0.08046305179595947,-0.0075079528614878654,0.09182611852884293,0.0009573260904289782,0.027268707752227783,0.06566832214593887,-0.03931691125035286,0.10230283439159393,-0.0011750588892027736,-0.0007043021032586694,-0.045402321964502335,-0.0925244688987732,-0.03290162235498428,-0.015990188345313072,0.039829421788454056,0.008067293092608452,0.05412493273615837,0.012016345746815205,0.010334350168704987,-0.020988786593079567,0.07561779767274857,-0.08012247830629349,0.03482815995812416,0.048110976815223694,-0.03484698012471199,-0.03312990069389343,-0.08169300109148026,0.05139409005641937,0.007929937914013863,-0.03629392012953758,-0.033525191247463226,0.008452088572084904,0.0644858255982399,-0.04882688447833061,-0.041187237948179245,0.038113661110401154,-0.07420970499515533,0.0012694704346358776,-0.04696492478251457,-0.059158533811569214,0.019658857956528664,0.04492257162928581,-0.057565025985240936,-0.10883638262748718,-0.033450208604335785,-0.08407102525234222,0.041367001831531525,-0.00807102769613266,-0.019320650026202202,-0.09935034066438675,-0.012560754083096981,-0.033741164952516556,-0.016505427658557892,-0.06119176745414734,-0.05095219984650612,-0.06160324066877365,0.062192853540182114,0.018336297944188118,0.03117562085390091,1.8562395863043857e-32,-0.032198358327150345,-0.010972629301249981,-0.02494586445391178,-0.011378291063010693,0.01047088485211134,-0.0627068504691124,-0.07561051100492477,0.007023483980447054,-0.04471243917942047,-0.01313690934330225,-0.03779798373579979,0.020524589344859123,0.007743970490992069,-0.017717842012643814,0.02503390610218048,-0.011943019926548004,0.08044198900461197,-0.07730992138385773,0.03493503853678703,-0.05628710240125656,-0.12043505907058716,0.054644111543893814,0.007813090458512306,0.025266578420996666,0.01704411581158638,0.06811414659023285,-0.030892305076122284,-0.09028232842683792,-0.029036395251750946,0.03481808304786682,0.07308682799339294,0.01751604676246643,-0.02780580148100853,0.001642465009354055,0.015377693809568882,-0.03475303575396538,-0.049482762813568115,-0.013604934327304363,-0.05035969987511635,0.031071627512574196,0.04122641682624817,0.03520897403359413,0.07922139018774033,0.045334771275520325,0.06808247417211533,-0.03053782880306244,0.03140680864453316,0.0374443419277668,0.10512994229793549,-0.01979232020676136,-0.002356121316552162,0.01333845779299736,-0.02555396780371666,-0.011259258724749088,0.004228613805025816,0.027040556073188782,-0.11693933606147766,0.055755116045475006,0.04226294904947281,-0.03444399684667587,0.06557080149650574,-0.003715906525030732,-0.01675470359623432,0.01298447884619236,-0.007846838794648647,0.008460229262709618,-0.07133487612009048,0.027253028005361557,0.16509698331356049,-0.005320696160197258,-0.02072545886039734,0.0208347849547863,0.043737590312957764,0.04458894208073616,-0.013985694386065006,0.0696968361735344,0.14621101319789886,0.023239118978381157,-0.053454943001270294,-0.038741253316402435,-0.0159371979534626,-0.04700504615902901,0.027899984270334244,0.030528906732797623,0.03454921022057533,-0.002995572052896023,-0.0073001692071557045,0.005106766242533922,0.025382818654179573,0.05205199867486954,0.017340943217277527,-0.011883481405675411,0.009442753158509731,-0.060667041689157486,-0.008105669170618057,-1.5401171231472127e-32,0.018971849232912064,-0.004415867384523153,-0.07657059282064438,-0.014269505627453327,-0.05452578142285347,0.0005911989137530327,-0.06371839344501495,0.02289588563144207,0.030807584524154663,-0.04672011360526085,-0.008397925645112991,-0.03587429225444794,0.10721465200185776,-0.0927257090806961,-0.03256048634648323,0.09440136700868607,0.0256258063018322,-0.017795424908399582,0.011058836244046688,-0.04964723438024521,-0.08885568380355835,0.008784507401287556,0.06279583275318146,-0.062410641461610794,-0.008458631113171577,0.010905127972364426,-0.012260634452104568,-0.08379001915454865,-0.021952075883746147,0.014090546406805515,0.09020344167947769,-0.027560582384467125,-0.03862905874848366,0.03777877986431122,-0.09654652327299118,-0.038524724543094635,0.08522737771272659,0.0312916524708271,0.008527698926627636,0.04876460134983063,-0.037411414086818695,0.023945402354002,0.12696415185928345,0.0012226981343701482,0.0065613710321486,-0.024072013795375824,-0.03270970657467842,-0.05258503556251526,-0.08219939470291138,0.03817009925842285,0.09043076634407043,-0.023162227123975754,0.00752472598105669,-0.015470754355192184,0.05476769059896469,-0.04063355550169945,-0.005683127790689468,-0.05173519253730774,-0.06640836596488953,-0.057018380612134933,0.07853427529335022,0.06741075217723846,-0.029248064383864403,-0.022070903331041336,0.10919075459241867,-0.014990562573075294,-0.11575515568256378,0.07327573001384735,0.01225600577890873,0.06641580164432526,0.08727684617042542,-0.12132371962070465,-0.0838978961110115,-0.022318465635180473,-0.017924977466464043,0.02119501680135727,-0.004304348491132259,0.06438490003347397,-0.020882362499833107,0.02812240459024906,-0.08448627591133118,0.012139315716922283,-0.05395510792732239,-0.00598534382879734,-0.030845673754811287,-0.10488801449537277,0.04238565266132355,-0.01850704662501812,0.0772881731390953,-0.0037150592543184757,-0.023882968351244926,-0.030343448743224144,0.11084801703691483,-0.023167632520198822,0.04651143029332161,-5.581019024702982e-8,0.05383050814270973,-0.0827343538403511,-0.0721096619963646,0.09476055204868317,0.06444457173347473,-0.04357258230447769,-0.03394240513443947,-0.03326956927776337,-0.0077200098894536495,0.05636056512594223,0.011923407204449177,0.0018198754405602813,0.011808300390839577,-0.017220068722963333,-0.006923334673047066,0.06603670120239258,0.05434775352478027,-0.022998863831162453,-0.03854944556951523,-0.09011900424957275,0.052200574427843094,-0.011267637833952904,-0.02304074726998806,-0.03731527552008629,-0.05018153786659241,0.019472109153866768,0.004233414772897959,-0.1323716938495636,0.009875047951936722,0.0027789920568466187,-0.07578255981206894,0.036906711757183075,-0.005955295171588659,-0.1155838742852211,0.06647303700447083,0.06379561126232147,0.016761858016252518,0.05909428745508194,-0.0012303353287279606,0.014970550313591957,0.05499007925391197,0.04503025859594345,0.01885247230529785,-0.0032677436247467995,0.0059304144233465195,-0.04028793051838875,-0.02543487586081028,0.0049260756932199,0.08622469007968903,-0.03296780213713646,-0.05742210894823074,0.03943052515387535,0.030589239671826363,0.05111914128065109,-0.013851767405867577,-0.030705036595463753,0.0888201966881752,0.004813327454030514,-0.010150237008929253,-0.013268488459289074,0.00442777993157506,0.06473101675510406,0.06129031255841255,0.007131094578653574]},{"text":"Sed me per hostis Mercurius celer Denso paventem sustulit aere; Te rursus in bellum resorbens 15 Unda fretis tulit aestuosis.","book":"Homage to Catalonia","chapter":12,"embedding":[-0.03108658269047737,0.042884938418865204,-0.001811751164495945,0.02128523960709572,-0.020617831498384476,0.005599984433501959,0.036443088203668594,0.023321745917201042,0.051845815032720566,0.04317900910973549,0.020868122577667236,-0.02961650863289833,0.05282605439424515,-0.06505049020051956,-0.10178166627883911,-0.12234679609537125,-0.08007851243019104,0.06163189187645912,-0.01498847734183073,-0.0039203171618282795,-0.014929752796888351,-0.004391258582472801,0.00442854966968298,0.04011860117316246,-0.09592156857252121,0.03476302698254585,-0.03555503860116005,-0.05338088050484657,0.0790286585688591,-0.05403684824705124,0.048779524862766266,-0.004122965037822723,0.04590548947453499,-0.04580545425415039,-0.026736782863736153,0.020030297338962555,-0.021089401096105576,-0.10258990526199341,0.0360649935901165,-0.005552038550376892,0.005047291982918978,-0.026158317923545837,-0.08528539538383484,-0.037881039083004,-0.05467205122113228,-0.016304701566696167,-0.04857529699802399,0.09713290631771088,-0.00837953481823206,-0.036830395460128784,0.011719613336026669,0.0024253330193459988,-0.030956536531448364,-0.006225733086466789,-0.09327342361211777,0.03639804944396019,-0.05302460119128227,-0.11276164650917053,-0.006414012052118778,-0.07869547605514526,0.033940594643354416,0.08530478179454803,-0.004160310607403517,0.008864960633218288,-0.05396213382482529,0.007385480683296919,-0.001939539099112153,0.016199104487895966,-0.02884743921458721,0.060136280953884125,0.0320935994386673,-0.0013501152861863375,-0.037958282977342606,0.1090233102440834,-0.0630059614777565,-0.03281126543879509,-0.0015497342683374882,-0.10361005365848541,-0.06970235705375671,-0.022943461313843727,-0.009331260807812214,-0.008442927151918411,0.012970240786671638,-0.011266171000897884,0.026095552369952202,-0.044444624334573746,0.062319282442331314,-0.04947979375720024,0.008979647420346737,0.03202667087316513,0.02933623269200325,-0.05174853280186653,-0.02983103320002556,-0.022243143990635872,-0.04677408188581467,0.0173207838088274,-0.007793588098138571,0.025140248239040375,0.09369733929634094,-0.037963930517435074,-0.037815991789102554,-0.001939480658620596,0.026338232681155205,0.06081558018922806,-0.06816178560256958,-0.05480976775288582,-0.07689863443374634,-0.0876704752445221,0.025988802313804626,0.005674766376614571,-0.05829097703099251,-0.046895645558834076,0.01897388882935047,-0.09029625356197357,0.04742684215307236,0.006210604682564735,-0.005068890750408173,-0.09712566435337067,0.0024676513858139515,-0.0361848920583725,0.06184358894824982,-0.013630497269332409,-0.031994208693504333,-0.033080581575632095,0.06201283261179924,-0.04276285693049431,0.005685320124030113,1.0822411350088077e-32,0.013485962525010109,-0.1020229160785675,-0.0450734868645668,-0.023046862334012985,0.042554326355457306,0.058123521506786346,-0.02522055059671402,0.017172008752822876,-0.002920366358011961,-0.038978174328804016,-0.0939040258526802,-0.09359565377235413,0.04307239502668381,-0.021184934303164482,0.03187914565205574,0.0795741006731987,0.08543363213539124,-0.06290625780820847,-0.01752670854330063,-0.022708280012011528,-0.05145258828997612,0.006121738348156214,0.0487467423081398,-0.011885980144143105,0.03433768078684807,-0.049923669546842575,0.00241901190020144,-0.031595587730407715,0.049003589898347855,-0.014853534288704395,0.12651832401752472,-0.03630038723349571,-0.02313084900379181,0.03812417387962341,0.007007439620792866,0.07349050045013428,0.10128962993621826,0.0187409408390522,-0.040451087057590485,-0.010435625910758972,0.07222728431224823,0.03633921965956688,0.026027368381619453,0.0037705956492573023,0.06910762935876846,0.027206894010305405,0.01155706774443388,-0.0054353950545191765,0.11512298136949539,-0.009306671097874641,0.016627851873636246,0.00007598413503728807,0.029826361685991287,-0.04826784133911133,0.06617017835378647,0.06121603772044182,0.00842595286667347,0.024001657962799072,-0.06994106620550156,0.012264572083950043,0.001123119262047112,-0.06353092938661575,0.026084747165441513,-0.04401444271206856,0.06522650271654129,-0.01692042127251625,-0.04493401572108269,-0.03860520198941231,-0.029189424589276314,0.015966340899467468,-0.11822499334812164,-0.00137915532104671,0.022002676501870155,0.02050488069653511,-0.0037862660828977823,0.07528562843799591,-0.026145854964852333,-0.04377425089478493,0.010182474739849567,0.0004094658943358809,-0.10358127951622009,0.10346018522977829,0.009381639771163464,0.0732821673154831,0.03706101328134537,-0.005105407442897558,-0.036439016461372375,0.05327741429209709,0.07002762705087662,0.05487798899412155,0.08365637809038162,-0.02383480593562126,0.05338997766375542,-0.039310671389102936,-0.12375875562429428,-1.1280081259373103e-32,-0.029679646715521812,-0.009963169693946838,-0.0938601866364479,0.11488023400306702,0.03961193189024925,0.06958670914173126,-0.06857896596193314,0.12471351027488708,-0.029489291831851006,-0.07858572900295258,-0.02558121457695961,-0.015996862202882767,0.05400482937693596,-0.06107622757554054,0.0010127018904313445,0.11024928092956543,0.0697324350476265,0.05476729944348335,-0.07141847908496857,-0.03623533621430397,-0.03261931240558624,0.04333832487463951,0.03227637708187103,-0.08970003575086594,-0.004738021641969681,-0.026265542954206467,0.09919402748346329,0.01683470793068409,-0.10034891963005066,-0.034052524715662,0.029135189950466156,0.015119004063308239,-0.014408913441002369,0.05556565895676613,-0.057455603033304214,0.06754837930202484,0.08595596998929977,0.002540858928114176,-0.027039187029004097,-0.019423646852374077,0.017016621306538582,0.08679109811782837,0.0591852068901062,0.043743155896663666,0.10048791021108627,-0.039378199726343155,-0.05481310188770294,-0.002778266090899706,-0.06158982217311859,0.0026950016617774963,0.025215642526745796,-0.09441222995519638,0.045241184532642365,-0.015944428741931915,0.0720784142613411,-0.01412451732903719,-0.07777733355760574,-0.03424391523003578,-0.02823767438530922,0.021895434707403183,0.11355464160442352,0.00073095946572721,0.01727563701570034,0.00723714753985405,0.027748754248023033,-0.040557898581027985,-0.07644469290971756,0.08298482745885849,0.03029673732817173,0.021968306973576546,0.06361082196235657,-0.07615476101636887,-0.14913299679756165,-0.009759016335010529,0.03569812327623367,-0.042145051062107086,-0.07967495918273926,0.007635180838406086,0.004425480030477047,0.052292320877313614,-0.0652989000082016,0.028371568769216537,-0.02291603945195675,-0.0660729929804802,0.016407297924160957,-0.024814927950501442,0.031109659001231194,-0.021635765209794044,0.001782456529326737,-0.01867504231631756,-0.05197937414050102,-0.04592970386147499,0.029609883204102516,-0.02419208362698555,0.04119572788476944,-3.829612893468948e-8,0.01846565492451191,-0.05177219584584236,-0.07550358772277832,0.028755901381373405,0.05817827954888344,-0.020234905183315277,0.01700831577181816,-0.07527846097946167,-0.041372716426849365,0.06578362733125687,-0.04149315133690834,-0.02633567899465561,0.0099843330681324,-0.0021196436136960983,0.06500498950481415,0.023620303720235825,0.08157344162464142,0.06174652650952339,-0.05718124285340309,-0.08362288773059845,0.11098229885101318,0.039082612842321396,-0.052281469106674194,0.00010622720583342016,0.003476774087175727,0.012772120535373688,0.017621126025915146,-0.04385281354188919,-0.0255739763379097,-0.0201606135815382,-0.02020014449954033,0.03651280701160431,0.056405067443847656,-0.05930062755942345,0.08417963981628418,0.005611712578684092,-0.02394252084195614,0.04276864975690842,0.03405674919486046,0.07118654996156693,0.07144937664270401,0.038558635860681534,0.022610824555158615,0.03206735849380493,-0.00417889142408967,0.007324912119656801,0.0010338567662984133,0.004718742799013853,0.008211079984903336,-0.05008181557059288,0.052926499396562576,-0.016241054981946945,0.06994727998971939,0.012255112640559673,-0.08258835971355438,0.00437570083886385,0.04376303032040596,0.022968672215938568,-0.03281872346997261,-0.033347465097904205,0.04150407388806343,0.07327267527580261,-0.012834432534873486,0.03045845218002796]},{"text":"Quis udo Deproperare apio coronas Curatve myrto?","book":"Homage to Catalonia","chapter":12,"embedding":[-0.04963379725813866,0.07908042520284653,-0.0595160610973835,0.024314986541867256,-0.01659763790667057,-0.023342784494161606,0.02593788504600525,0.14768972992897034,-0.004798860289156437,0.01524805836379528,0.049889951944351196,-0.10054975003004074,0.0076377904042601585,-0.004419353790581226,-0.035545576363801956,-0.060718875378370285,-0.014824651181697845,0.008374890312552452,0.03334642946720123,0.022241346538066864,0.03389567881822586,-0.029876714572310448,-0.14930154383182526,0.06522846966981888,-0.036682192236185074,0.05854339897632599,-0.01587512344121933,0.013930421322584152,-0.014171459712088108,-0.06699258834123611,0.009147390723228455,0.0016556873451918364,0.0653127133846283,0.009582647122442722,0.02728368155658245,-0.01789766177535057,0.014530889689922333,-0.09777170419692993,0.046319618821144104,0.08744131773710251,-0.05016891658306122,-0.05775492265820503,-0.01120696309953928,-0.08250577002763748,0.09285324066877365,0.010225465521216393,0.0006690758164040744,0.1363167017698288,-0.017565352842211723,0.0002129519562004134,-0.07098297029733658,-0.039791908115148544,0.032349418848752975,-0.037016093730926514,0.008050346747040749,-0.0243932344019413,0.01392521895468235,-0.020743977278470993,-0.00032116609509103,-0.02102014422416687,0.03643491119146347,-0.05935340002179146,-0.055789586156606674,0.09998819977045059,-0.049252040684223175,-0.0063975052908062935,-0.01272326335310936,0.06168968230485916,-0.034439243376255035,0.07526365667581558,0.08895990252494812,0.014515518210828304,0.008509479463100433,0.043492190539836884,0.017371278256177902,0.07821378856897354,-0.031611453741788864,-0.011091071180999279,-0.019233843311667442,-0.11452843993902206,0.03947592154145241,0.012106266804039478,-0.0825241357088089,-0.024314196780323982,0.049452655017375946,0.08300432562828064,0.04057794809341431,-0.03290565311908722,-0.0010160699021071196,-0.04718586802482605,0.014417532831430435,0.002339897910133004,-0.09238089621067047,-0.013569223694503307,-0.02680196799337864,0.011038006283342838,0.04833453148603439,-0.06644726544618607,-0.012209681794047356,0.023836379870772362,0.03719152882695198,0.0021574979182332754,0.012484338134527206,0.04202691465616226,-0.0230221226811409,0.06979771703481674,-0.05655960366129875,-0.03649481013417244,0.02439735271036625,0.07714363932609558,-0.08045503497123718,-0.11951179802417755,-0.03479635342955589,-0.03763773664832115,0.049322765320539474,0.05757288262248039,0.0031278899405151606,-0.07514217495918274,-0.06033523380756378,-0.05589142069220543,0.05987585708498955,-0.10694091767072678,-0.02251875028014183,-0.005039612762629986,-0.04175274446606636,0.006800428498536348,0.08684010058641434,2.8984314818438842e-33,-0.05484607443213463,-0.0008898551459424198,-0.036611877381801605,0.019906774163246155,0.02279788814485073,-0.03629707917571068,-0.10075454413890839,0.014589253813028336,-0.013591598719358444,-0.05833660811185837,-0.10633567720651627,0.10171578079462051,0.02620263397693634,0.05022016912698746,0.003982065245509148,0.02414882369339466,0.07242432981729507,0.02373768575489521,-0.03269040212035179,0.0003653991734609008,-0.07885346561670303,0.010157142765820026,0.010080370120704174,0.005626076832413673,-0.006198840215802193,0.1217542290687561,0.0013779185246676207,-0.11890573054552078,-0.09395565092563629,0.03476418927311897,0.04264511540532112,-0.009972058236598969,-0.006464763078838587,-0.02465107850730419,-0.0011119768023490906,-0.032327499240636826,-0.042263563722372055,-0.006252084393054247,0.010328036732971668,0.04778680577874184,0.02331889420747757,0.02008974365890026,0.03239961713552475,0.022622987627983093,0.06725411862134933,0.010258730500936508,0.03256731480360031,-0.024945717304944992,0.038858648389577866,-0.03253277391195297,-0.015374869108200073,0.0006261623930186033,-0.09415329247713089,-0.08673181384801865,0.061038367450237274,-0.016945380717515945,-0.06530676782131195,-0.00015078573778737336,-0.01918739452958107,-0.04758267477154732,0.0027513597160577774,-0.025031033903360367,-0.037094566971063614,-0.02945534512400627,-0.10906130820512772,-0.01795330084860325,-0.015563731081783772,0.07075284421443939,0.12878486514091492,0.029666071757674217,-0.048119887709617615,0.005318169482052326,-0.008063058368861675,-0.0020600801799446344,-0.0006271279416978359,0.02749013714492321,0.01928265206515789,0.056378792971372604,-0.040038466453552246,-0.025131696835160255,-0.06911122798919678,0.047664839774370193,0.007372232619673014,-0.010859238915145397,0.06741674244403839,0.041006702929735184,0.018013933673501015,0.05664974823594093,0.017497872933745384,0.051716431975364685,-0.09919294714927673,0.10698685795068741,0.05532832443714142,-0.03949565440416336,0.034814126789569855,-5.086238057707309e-33,-0.02306019701063633,-0.023782994598150253,-0.013871661387383938,0.030445588752627373,-0.03282124176621437,0.048564840108156204,-0.06355644017457962,0.08841817080974579,0.025016235187649727,-0.04049941152334213,-0.06045415252447128,-0.08165659755468369,0.07204228639602661,-0.04008045420050621,0.0176656823605299,0.12972910702228546,-0.06192838400602341,-0.032678987830877304,-0.11185970902442932,-0.060832589864730835,-0.01137207355350256,0.0634905993938446,0.03846697509288788,-0.034579433500766754,0.012469322420656681,-0.009601757861673832,-0.02469741925597191,-0.0812099501490593,0.023099549114704132,0.0022830285597592592,0.02079443819820881,-0.03594798222184181,-0.07994289696216583,0.0924137681722641,-0.033890046179294586,0.07661449164152145,0.05355208367109299,0.056748125702142715,-0.05770859867334366,0.04946262761950493,-0.011780389584600925,0.05745498090982437,0.019700540229678154,-0.06848181039094925,0.029261423274874687,-0.0043329279869794846,-0.022500665858387947,-0.09953778982162476,-0.06469191610813141,-0.020894022658467293,0.12056591361761093,-0.027246180921792984,-0.02403935045003891,0.005194035358726978,0.014675106853246689,-0.0447552390396595,0.06520391255617142,-0.014736859127879143,-0.10517396032810211,0.007871564477682114,0.07686455547809601,-0.009503955021500587,-0.005177076440304518,-0.02479325234889984,-0.0005815349868498743,-0.019763605669140816,-0.027297424152493477,0.030403291806578636,-0.015921084210276604,0.019590891897678375,0.1420358270406723,-0.03210977464914322,-0.0726635530591011,0.0024491676595062017,-0.052656710147857666,-0.012269479222595692,-0.054544031620025635,0.06961527466773987,-0.010041695088148117,0.03906490281224251,-0.14292049407958984,-0.0193870160728693,0.022830070927739143,0.009601454250514507,-0.03927634656429291,-0.06487094610929489,0.046030644327402115,-0.055373650044202805,0.013204531744122505,0.03521525859832764,-0.023346533998847008,0.05915016680955887,-0.023305071517825127,-0.036345481872558594,0.02390855923295021,-2.4255301767084347e-8,0.039784543216228485,-0.045975543558597565,-0.005075234919786453,0.0737830251455307,0.032416000962257385,-0.07382041960954666,-0.054614461958408356,-0.013854041695594788,0.0017655945848673582,0.041948575526475906,0.036054424941539764,-0.008260446600615978,0.03809847682714462,-0.011499054729938507,-0.0324200876057148,0.058178629726171494,0.04693892225623131,0.04457659274339676,0.009131774306297302,-0.03862927109003067,0.06461887806653976,0.011855855584144592,-0.05008881539106369,-0.07966133207082748,-0.022040661424398422,-0.01761416532099247,0.04858425259590149,-0.0027249844279140234,-0.014292336069047451,-0.02904464676976204,-0.034080009907484055,0.011492193676531315,0.014570806175470352,-0.1188560202717781,0.04677264019846916,0.04576098173856735,0.014271263964474201,0.008448336273431778,-0.005953721236437559,0.012699241749942303,0.07571680843830109,0.05656718835234642,0.00895786751061678,-0.006927922833710909,0.019367629662156105,0.014780656434595585,0.05046084150671959,-0.02469530887901783,0.023588381707668304,0.06239667534828186,-0.08963826298713684,-0.01591699942946434,0.07951461523771286,0.02093329094350338,-0.028246287256479263,-0.008938352577388287,0.05159633606672287,-0.03163217008113861,-0.04574570432305336,-0.04110727459192276,0.09171933680772781,0.08089498430490494,0.04186234250664711,0.013687415048480034]},{"text":"Non ego sanius Bacchabor Edonis: recepto Dulce mihi furerest amico.","book":"Homage to Catalonia","chapter":12,"embedding":[-0.03294580429792404,0.10460013896226883,-0.01211766991764307,0.04418037086725235,-0.08748680353164673,0.01583044044673443,0.08052779734134674,0.06982304155826569,0.01927230693399906,0.03929814323782921,0.0702918991446495,-0.08802688121795654,0.041290272027254105,0.02519533969461918,-0.057712361216545105,-0.00493654003366828,-0.04969330132007599,0.13323251903057098,0.02841740846633911,0.1117907166481018,-0.0021542515605688095,-0.04210026562213898,-0.023069702088832855,0.08946161717176437,-0.08222454786300659,-0.060612116008996964,0.018711676821112633,-0.024196255952119827,-0.06142212450504303,-0.034946225583553314,-0.0020648667123168707,-0.009621086530387402,0.1519404500722885,-0.05245416983962059,0.04412427917122841,0.004527171608060598,0.013581356033682823,-0.006845215801149607,0.01994180679321289,0.033758390694856644,-0.10391630977392197,0.023020142689347267,-0.0016038675094023347,-0.049559857696294785,0.008027797564864159,-0.04128817841410637,-0.05527036637067795,0.013716130517423153,-0.03298422321677208,-0.015654070302844048,-0.14299915730953217,0.03304043412208557,-0.05312993377447128,0.04953201860189438,0.05008937045931816,-0.14567947387695312,-0.044825635850429535,-0.028318775817751884,-0.003483216045424342,-0.011101574636995792,0.03307783976197243,0.04854512959718704,-0.0003452821692917496,0.03826827183365822,0.003069138154387474,-0.007416096515953541,-0.02976820431649685,0.0012240767246112227,-0.04334007576107979,0.04257572069764137,0.10354740172624588,-0.08188199251890182,0.06151775270700455,0.010561020113527775,0.001166582922451198,-0.02452351525425911,-0.008611193858087063,0.024065647274255753,-0.04169857129454613,-0.042857393622398376,-0.05000884458422661,-0.06247323006391525,-0.06889354437589645,-0.013271702453494072,-0.015183597803115845,-0.02621701918542385,0.021540896967053413,-0.05304818972945213,0.010838896967470646,0.07961317151784897,0.011758695356547832,-0.026041310280561447,-0.07698244601488113,-0.07234418392181396,0.019706325605511665,-0.06923055648803711,-0.07500439882278442,0.03904864937067032,-0.03184464946389198,0.01563364639878273,-0.0355023629963398,0.05262415483593941,0.010812567546963692,0.022638270631432533,-0.05310055613517761,-0.06755054742097855,0.010529326274991035,-0.050735823810100555,-0.004201629664748907,-0.042883291840553284,-0.03686678782105446,-0.09017074853181839,-0.0898672565817833,-0.04949427396059036,-0.00039631384424865246,0.07641055434942245,-0.04540545493364334,-0.09358591586351395,-0.015159771777689457,-0.049040134996175766,0.06843029707670212,0.018743883818387985,0.013227473013103008,0.005096936132758856,-0.044682566076517105,-0.04958241805434227,0.038787659257650375,6.778455847922073e-33,-0.0470869205892086,-0.10759636759757996,0.022462353110313416,0.006617589388042688,-0.034028008580207825,-0.025634657591581345,-0.053707245737314224,-0.0323721244931221,0.03573217615485191,-0.07321038842201233,0.02523774839937687,0.03141514211893082,0.07533913850784302,0.04900459572672844,-0.037121716886758804,0.010918858461081982,-0.014087320305407047,-0.08672293275594711,0.07328740507364273,-0.00015812439960427582,0.005241496954113245,0.06356337666511536,0.006861685775220394,-0.039521750062704086,0.05728984251618385,0.02484661526978016,0.07240250706672668,-0.047100670635700226,-0.05328066274523735,0.08089212328195572,0.0777699425816536,0.007081684190779924,-0.03169454261660576,-0.009202798828482628,0.037009645253419876,-0.028643328696489334,0.03123513050377369,0.03883778676390648,0.01673360913991928,-0.0016530629945918918,-0.000941154605243355,0.0043970560654997826,0.01659184880554676,0.03239533305168152,0.025035375729203224,0.0604696124792099,0.07939378172159195,0.05228281021118164,0.04481884464621544,0.05988039821386337,0.008233524858951569,0.017001235857605934,-0.04818229004740715,-0.021961817517876625,-0.017996232956647873,-0.03120519034564495,-0.06494426727294922,0.023345841094851494,-0.08121088892221451,-0.011836046352982521,0.05683203786611557,0.024808764457702637,-0.06407517194747925,0.026908740401268005,-0.0030068184714764357,-0.05608611926436424,0.011230300180613995,0.020814212039113045,0.03771165385842323,-0.02142929472029209,-0.05635837838053703,0.014528624713420868,0.02434675395488739,-0.0009253312600776553,-0.10445044934749603,-0.0034888996742665768,0.013673589564859867,-0.0009071137756109238,-0.052521441131830215,0.018167275935411453,-0.0740639865398407,0.05983014032244682,0.023783553391695023,0.03663293272256851,0.04027552530169487,0.1183088943362236,0.029665036126971245,0.03915461152791977,-0.004047841764986515,0.17532508075237274,0.0613061748445034,0.04460420086979866,0.07928954064846039,0.046214278787374496,-0.08154183626174927,-7.516791931197214e-33,0.065696120262146,-0.049823734909296036,0.010464489459991455,-0.00975913554430008,-0.006450742483139038,-0.01756100170314312,-0.043511319905519485,0.07021045684814453,-0.008891292847692966,-0.048906050622463226,-0.04590795934200287,-0.051019806414842606,0.11648277193307877,-0.013754082843661308,-0.01723269373178482,0.06177438423037529,0.003851277055218816,0.013822796754539013,-0.06842321157455444,0.005083439406007528,0.046497948467731476,0.07032563537359238,0.03523186221718788,-0.09038974344730377,-0.06654742360115051,0.02772786282002926,0.03446163982152939,0.04810747131705284,-0.06631645560264587,-0.024462835863232613,0.014261492528021336,-0.06687770783901215,-0.0785350427031517,-0.06024333834648132,0.013158715330064297,0.06193310394883156,0.015180857852101326,-0.015855057165026665,0.011616830714046955,0.03553685545921326,-0.06405610591173172,0.05300974100828171,-0.04862256348133087,-0.002178475959226489,0.0852784812450409,-0.0012847735779359937,-0.01193169318139553,0.01197104249149561,-0.017598023638129234,0.008839063346385956,0.036833375692367554,-0.050367143005132675,0.04270461946725845,-0.055208299309015274,0.06125267595052719,-0.005966387689113617,-0.05518966168165207,-0.024370625615119934,-0.06808848679065704,0.03847665339708328,0.11850985884666443,-0.009580898098647594,0.013027334585785866,0.006871997378766537,-0.007204769644886255,0.022633027285337448,-0.009437881410121918,0.014950660988688469,0.014031133614480495,-0.0017544676084071398,0.016627755016088486,-0.11801784485578537,-0.12420342117547989,-0.01825476996600628,-0.07457397878170013,0.04817773029208183,-0.09320986270904541,-0.00661348644644022,0.03239088132977486,0.04524815455079079,-0.030275482684373856,0.018535595387220383,-0.029449066147208214,-0.0015441682189702988,0.016604064032435417,0.0006156092276796699,-0.05445794016122818,-0.033768534660339355,0.057048119604587555,0.005626544822007418,-0.0475379042327404,-0.0012114392593502998,0.019281869754195213,-0.00734673859551549,0.046885572373867035,-3.3328497295315174e-8,0.00918834749609232,-0.09207279980182648,-0.04717658832669258,0.03362560272216797,0.043481115251779556,-0.05152347683906555,-0.04066479951143265,-0.09615589678287506,-0.08125299960374832,0.03423260524868965,0.023722197860479355,0.050338368862867355,-0.02958586812019348,0.059905052185058594,0.028045790269970894,-0.08416888117790222,0.125166118144989,0.021102458238601685,-0.017858821898698807,-0.02677641063928604,0.0036054139491170645,-0.062151502817869186,-0.038066983222961426,-0.06395326554775238,-0.1072450503706932,0.01951826922595501,-0.009479299187660217,-0.08190242201089859,-0.07297448068857193,0.02803303673863411,0.06180114299058914,0.030753035098314285,-0.0700530931353569,-0.0850287526845932,0.03426560387015343,0.014254803769290447,-0.06028098985552788,-0.002575787715613842,-0.0008215560228563845,0.03737825155258179,0.084157295525074,0.0651087537407875,0.0766020342707634,0.07695191353559494,0.050185807049274445,-0.05487166717648506,0.01514072623103857,-0.009516931138932705,0.0031396173872053623,0.03592722862958908,0.033067841082811356,-0.004426381550729275,0.04919489100575447,0.012725397944450378,0.0052298493683338165,0.017944419756531715,0.03501306101679802,0.0694810077548027,-0.050893209874629974,0.04321466386318207,0.08422234654426575,0.04695737734436989,0.015507225878536701,-0.00021321995882317424]},{"text":"Sed tu simul obligasti 5 Perfidum votis caput, enitescis Pulchrior multo, iuvenumque prodis Publica cura.","book":"Homage to Catalonia","chapter":12,"embedding":[-0.0315827913582325,-0.0005003564292564988,-0.0383194200694561,-0.032082606106996536,-0.050169579684734344,0.009575963951647282,0.03856699541211128,0.08356284350156784,0.034957099705934525,0.06132680922746658,0.09006889164447784,-0.10040213912725449,0.020073169842362404,-0.04208049550652504,-0.049955278635025024,-0.04763996601104736,-0.04406119883060455,0.05414499342441559,-0.03736617788672447,0.04982319846749306,0.05682367458939552,-0.01182166114449501,-0.0402793362736702,0.021408341825008392,-0.06685959547758102,-0.013570974580943584,-0.013254317454993725,-0.07892047613859177,0.004488230682909489,-0.07537181675434113,0.06330977380275726,0.035643432289361954,0.05875968560576439,-0.03759278357028961,0.038546498864889145,0.02891434356570244,-0.04889290779829025,-0.06428369134664536,0.045018117874860764,0.08888449519872665,-0.04106856882572174,0.007460674736648798,-0.1459968388080597,-0.04078998044133186,-0.05531362071633339,-0.04544183984398842,0.03589174523949623,0.05798240378499031,-0.0403234139084816,0.028008071705698967,-0.011718184687197208,-0.0021348772570490837,-0.08783131092786789,-0.07654727250337601,-0.1272098869085312,-0.1042364165186882,0.007936706766486168,-0.04908556118607521,0.0013078745687380433,0.010253522545099258,0.0007776921847835183,-0.010319562628865242,-0.017502203583717346,0.005954399239271879,0.054484423249959946,-0.011021547019481659,-0.011326099745929241,0.01798378676176071,-0.06176650896668434,0.019593970850110054,0.07317958772182465,-0.016902944073081017,0.01222781278192997,0.05173566937446594,-0.059516165405511856,0.040024131536483765,-0.06160309910774231,-0.024578919634222984,0.04262172430753708,-0.04192156717181206,-0.0130608594045043,0.02312689647078514,-0.028287716209888458,0.03691690042614937,0.032093387097120285,0.0030620538163930178,-0.004511599894613028,0.009946826845407486,-0.020548049360513687,0.0010277923429384828,-0.010118573904037476,0.04734521731734276,-0.025583993643522263,-0.005923425778746605,-0.06954628229141235,-0.006604957394301891,-0.09379053115844727,-0.030461439862847328,0.032775331288576126,-0.030987009406089783,-0.032467976212501526,0.023304922506213188,-0.00490167923271656,0.04661206156015396,-0.10649634152650833,-0.04140008985996246,0.03574474900960922,-0.06887129694223404,0.008859768509864807,0.06056879460811615,-0.0346352718770504,-0.050348442047834396,-0.060611363500356674,-0.04912510886788368,0.08387189358472824,0.06404281407594681,0.0046585132367908955,-0.025612512603402138,0.05955569073557854,-0.10407719016075134,-0.028854314237833023,-0.05659027025103569,-0.00982731394469738,-0.08939158171415329,0.02860507369041443,-0.04549179598689079,0.05229177325963974,9.377440062127565e-33,-0.06196221709251404,-0.07401502877473831,0.007668290287256241,0.09722518175840378,-0.014484141021966934,0.02297520451247692,-0.04752945899963379,-0.0538269504904747,0.015415369533002377,0.01111222431063652,-0.028828928247094154,-0.028001487255096436,0.0063742706552147865,0.05686331167817116,0.05310900881886482,0.03248259425163269,0.07840878516435623,-0.006013231351971626,0.01658100076019764,-0.017771894112229347,0.0013852209085598588,0.05081105977296829,-0.006769372150301933,0.014263828285038471,0.07131325453519821,0.08018040657043457,-0.044321879744529724,-0.09069857746362686,0.03704572841525078,0.008974692784249783,0.13854534924030304,0.05841705948114395,0.02085377275943756,-0.029426168650388718,0.03811667487025261,-0.019163258373737335,0.052331604063510895,0.08299240469932556,-0.03323586285114288,0.013253076933324337,0.03198668360710144,0.013470642268657684,0.09509768337011337,0.009249936789274216,0.05290812999010086,-0.005139078013598919,-0.0013318065321072936,0.07148368656635284,0.023368673399090767,-0.005247879773378372,0.002648001303896308,0.051305435597896576,-0.012699788436293602,-0.017509477213025093,0.06450656801462173,0.012120370753109455,-0.016427211463451385,0.08957873284816742,-0.016074802726507187,0.014777031727135181,0.03136343136429787,0.0008141370490193367,-0.029916634783148766,0.02395777963101864,0.03217871114611626,0.03316517546772957,-0.006095352582633495,-0.016554897651076317,0.11021994799375534,0.032525405287742615,-0.06840696930885315,0.026887161657214165,-0.09811083227396011,0.07506007701158524,-0.03963059186935425,0.03238918259739876,-0.010001670569181442,0.012825184501707554,-0.020831620320677757,0.009978275746107101,-0.08195420354604721,-0.024326564744114876,0.0027809585444629192,0.02260797657072544,0.09649968892335892,0.001615843502804637,0.03752331808209419,0.046075087040662766,0.05778515338897705,0.07624480873346329,0.07816590368747711,0.03838132694363594,-0.013627836480736732,0.055437471717596054,0.004465417470782995,-9.832263805715663e-33,0.006814939435571432,-0.041476037353277206,-0.02059565857052803,0.09026753902435303,-0.0054702055640518665,0.05582289770245552,-0.13087716698646545,-0.019824858754873276,0.023432468995451927,0.018586179241538048,-0.08548685163259506,-0.03213580697774887,0.0581023208796978,0.035182755440473557,-0.041153207421302795,0.10453936457633972,0.011662887409329414,-0.0004106651758775115,-0.08990052342414856,-0.05073096975684166,-0.09790442883968353,0.016933828592300415,0.07794567197561264,-0.006871560122817755,0.047482676804065704,-0.001971721649169922,0.011828048154711723,-0.05197468400001526,0.003431613789871335,-0.041491009294986725,-0.008331827819347382,-0.04626168683171272,0.009119139052927494,0.04433846473693848,-0.056444741785526276,-0.019869694486260414,0.1374870240688324,0.03193003311753273,-0.020559748634696007,0.0641617402434349,-0.02939995937049389,0.0393364280462265,0.06705055385828018,-0.008563175797462463,-0.04804110899567604,-0.07992737740278244,-0.029288489371538162,-0.10923978686332703,-0.06563057005405426,0.019502755254507065,0.08184404671192169,-0.05272355675697327,0.028856629505753517,-0.0617474764585495,0.05467192083597183,-0.0064518749713897705,-0.033901914954185486,-0.05701718479394913,-0.009471035562455654,-0.027894485741853714,0.07887956500053406,0.06551060080528259,-0.05432092025876045,-0.01191491074860096,0.07111349701881409,-0.04168775677680969,-0.014038095250725746,0.057463135570287704,-0.03041868284344673,-0.02841690368950367,0.04755760356783867,-0.12037201970815659,0.012774179689586163,-0.02228347398340702,-0.009784999303519726,-0.02126304991543293,-0.005356552544981241,0.11727668344974518,0.05985184386372566,0.091973215341568,-0.06054443493485451,-0.08244334906339645,-0.05861646682024002,-0.06357910484075546,-0.01459721103310585,-0.05424685403704643,0.08706162124872208,-0.055959414690732956,0.03511491417884827,0.04925508052110672,-0.055072762072086334,0.02681843377649784,0.07677726447582245,0.0035058800131082535,-0.007732192985713482,-3.622994171337268e-8,0.04239322245121002,-0.11051338165998459,-0.010766994208097458,0.05463886633515358,0.05723429471254349,-0.05523424595594406,-0.040308110415935516,-0.07440521568059921,-0.03808556869626045,0.061938825994729996,0.02420518547296524,0.018019583076238632,-0.03230462223291397,0.03623593598604202,-0.019083160907030106,0.027537433430552483,0.1016722172498703,0.005506972316652536,0.005686871707439423,-0.06466832011938095,-0.049229372292757034,-0.02976236306130886,-0.0453266017138958,0.004167604260146618,-0.006530404090881348,-0.012815998867154121,0.04677513614296913,-0.04663529992103577,-0.010232234373688698,-0.0061167581006884575,-0.008820694871246815,0.029062874615192413,-0.010808249935507774,-0.08027477562427521,-0.07337958365678787,0.06597229093313217,0.0491693913936615,-0.009896921925246716,0.003052688902243972,0.15091581642627716,0.07379316538572311,0.009105946868658066,0.07978159934282303,-0.023766957223415375,0.04844484105706215,0.0001985663693631068,-0.060413800179958344,-0.036633267998695374,0.0022127022966742516,-0.018340501934289932,-0.1319534033536911,0.0015206265961751342,0.05945941060781479,0.03976856544613838,-0.07419564574956894,0.03211165964603424,0.029965097084641457,0.01821945793926716,-0.05948225036263466,-0.011385686695575714,0.0006649856804870069,0.05043094605207443,-0.012897403910756111,-0.04351447895169258]},{"text":"Ridet hoc, inquam, Venus ipsa, rident Simplices Nymphae ferus et Cupido, Semper ardentis acuens sagittas 15 Cote cruenta.","book":"Homage to Catalonia","chapter":12,"embedding":[0.017105160281062126,0.003653674153611064,-0.026163173839449883,0.04525866359472275,-0.06967759132385254,0.017728250473737717,0.0390314981341362,0.06747469305992126,0.06326000392436981,-0.007537815719842911,0.039728280156850815,-0.09082719683647156,-0.01867353357374668,-0.06401349604129791,-0.04443996399641037,-0.01530899852514267,0.0328519232571125,0.09072178602218628,0.04988206550478935,0.008630095049738884,-0.04602798447012901,-0.06795456260442734,-0.038342464715242386,0.12173433601856232,-0.04344424977898598,0.03552788868546486,-0.07216385006904602,0.040369898080825806,-0.0166630819439888,-0.052365463227033615,0.016769640147686005,0.11012030392885208,0.018850000575184822,0.01444599311798811,-0.05331364646553993,0.009727951139211655,-0.05608920007944107,-0.0582314170897007,0.08109336346387863,0.010515440255403519,-0.009972876869142056,-0.03832496330142021,0.015327565371990204,-0.04973215237259865,0.005894165486097336,-0.047128867357969284,-0.0228101946413517,0.06378868222236633,-0.0333322249352932,0.041053976863622665,-0.09348493069410324,-0.05648551508784294,-0.05334440618753433,0.01397204864770174,-0.022037401795387268,-0.06369666755199432,-0.01763376034796238,-0.04463456943631172,0.039899349212646484,-0.023429811000823975,0.038370292633771896,0.00878297071903944,-0.07883614301681519,0.07693234086036682,-0.11046142876148224,-0.04404955357313156,-0.042258165776729584,0.03545111045241356,-0.05456070229411125,0.055293306708335876,0.10238633304834366,-0.04078226909041405,-0.06595421582460403,0.0006508921505883336,-0.0560651496052742,0.08146931231021881,0.023932570591568947,-0.047986146062612534,-0.049506522715091705,-0.08172980695962906,-0.09281762689352036,0.02804465778172016,0.01826331578195095,-0.027279172092676163,0.04790637642145157,0.0336313433945179,-0.011902314610779285,0.02838164195418358,-0.006893350277096033,-0.04358464479446411,-0.030212530866265297,0.07231219857931137,-0.03620230406522751,0.02048448473215103,-0.11569251120090485,0.06220429018139839,0.030373360961675644,-0.027254046872258186,0.008937940932810307,0.006319357547909021,0.027512723580002785,0.06991354376077652,-0.02045920304954052,0.08940937370061874,-0.18222448229789734,0.030968355014920235,0.006121666170656681,-0.11112315207719803,0.015523802489042282,0.005040144082158804,-0.12512454390525818,-0.08824978023767471,-0.025977684184908867,-0.11652865260839462,-0.016681473702192307,0.08271482586860657,-0.05144088342785835,-0.020975396037101746,-0.031185409054160118,-0.026294611394405365,-0.0350300557911396,-0.02726641856133938,0.013743271119892597,-0.07547108829021454,-0.012320873327553272,-0.03567282855510712,0.03137077018618584,8.532644598286234e-33,-0.0049744341522455215,-0.0021705140825361013,0.05340922251343727,0.04286237806081772,0.002776351058855653,-0.02715170755982399,-0.01242799125611782,-0.050763629376888275,-0.05054018646478653,-0.03548738360404968,-0.07945124059915543,0.013384264893829823,-0.0011119681876152754,-0.04932970181107521,0.06767462939023972,-0.004328060895204544,0.06411996483802795,-0.07171386480331421,0.062005288898944855,-0.015278645791113377,-0.03859663009643555,0.024442410096526146,-0.017766941338777542,0.01921335607767105,0.022646671161055565,-0.010134728625416756,0.04996780678629875,0.013198183849453926,-0.035729482769966125,0.0694633275270462,0.0637502446770668,-0.016455575823783875,-0.055529139935970306,-0.0128193823620677,-0.04485759884119034,-0.05053801089525223,-0.020234068855643272,0.004949532449245453,-0.037169601768255234,0.03425122797489166,0.07262708991765976,-0.05624430254101753,0.04393427073955536,0.0038402194622904062,-0.011430623941123486,0.06766228377819061,0.04512840509414673,0.05125286802649498,0.10209336876869202,0.05471862852573395,-0.09454227238893509,0.038978587836027145,-0.05384690687060356,-0.03356136009097099,-0.039656322449445724,0.06652247905731201,-0.10867036134004593,0.009645081125199795,-0.08191683888435364,0.023819508031010628,0.009383070282638073,-0.049663376063108444,0.005524113774299622,-0.07020699977874756,-0.026880476623773575,0.047657474875450134,-0.016292210668325424,-0.059423718601465225,0.05056826025247574,0.0367337130010128,-0.05460713058710098,0.03518931195139885,0.02831277996301651,0.05440274626016617,0.113954558968544,0.04253624752163887,0.030596716329455376,-0.010029961355030537,-0.006832222919911146,0.03221562132239342,-0.09979191422462463,0.020906856283545494,0.004439737182110548,0.004525396507233381,0.03093923069536686,-0.05166315659880638,0.018576327711343765,0.013808082789182663,0.031034043058753014,0.04037841409444809,0.054848190397024155,-0.028521636500954628,0.06981074810028076,0.0025547442492097616,-0.03486185893416405,-8.8064422118477e-33,0.023731958121061325,-0.039597995579242706,-0.041560739278793335,0.08022265136241913,-0.02123154141008854,0.029350820928812027,-0.019408032298088074,0.03191487118601799,-0.04339964687824249,-0.057968273758888245,-0.04214153066277504,-0.025182904675602913,0.11107389628887177,-0.1018378809094429,-0.006190967746078968,0.023906532675027847,0.04415220022201538,0.02507181465625763,-0.05446538329124451,0.006024122703820467,0.04297158867120743,0.0210409052670002,-0.0008700455655343831,-0.06974616646766663,0.01397098321467638,0.008740995079278946,0.05772818252444267,-0.043166376650333405,-0.03312365710735321,0.0848383828997612,0.012199703603982925,-0.016987184062600136,-0.03796852380037308,0.06642553210258484,-0.04671702906489372,0.012381092645227909,0.07360660284757614,-0.020840691402554512,-0.047948919236660004,0.01616371050477028,-0.0048314291052520275,0.043503932654857635,0.026767926290631294,0.062452539801597595,0.12970153987407684,-0.0319729819893837,-0.040078531950712204,0.09129272401332855,-0.014090226963162422,-0.023236490786075592,0.05529249086976051,-0.044557251036167145,0.017070773988962173,0.0009904782054945827,0.16492967307567596,-0.01867598295211792,-0.007141789421439171,0.00503341481089592,-0.03676580637693405,-0.05168880522251129,0.08827102929353714,0.05480967462062836,-0.000959184835664928,-0.01387728564441204,0.024297239258885384,-0.09213007241487503,-0.07597485184669495,-0.009774508886039257,-0.021130116656422615,0.04006477817893028,0.023579291999340057,-0.1023220345377922,-0.06158158555626869,0.004893694072961807,0.010105983354151249,0.03732127696275711,0.01577240414917469,0.010041069239377975,0.02747984603047371,0.047692008316516876,-0.04008902609348297,0.03766264021396637,0.043842483311891556,-0.015483132563531399,0.034053653478622437,-0.002472751308232546,-0.03339404612779617,-0.0740472674369812,0.07297184318304062,0.01954047568142414,-0.008424796164035797,0.07720685005187988,0.09247776865959167,0.008058559149503708,0.0417984202504158,-3.600121090130415e-8,0.06553039699792862,-0.08304909616708755,0.00023045178386382759,-0.018595779314637184,0.02534470334649086,-0.07495465874671936,-0.02691509947180748,0.018703773617744446,0.022084852680563927,0.10929644107818604,0.07280859351158142,0.0024209979455918074,0.018764857202768326,0.032244596630334854,-0.015399287454783916,0.02600393258035183,0.09284237027168274,0.07037840038537979,-0.026967743411660194,-0.08615338057279587,0.012350577861070633,-0.01541490014642477,-0.014351706951856613,-0.06402397155761719,0.015577990561723709,-0.035891082137823105,0.0150339026004076,-0.04953008517622948,0.005555052775889635,-0.04136747866868973,-0.02857264317572117,0.0034282489214092493,0.05712847784161568,-0.12658566236495972,0.013154380954802036,0.07849789410829544,-0.05960153788328171,0.0947708860039711,0.060397472232580185,0.05027966573834419,0.060391705483198166,0.005319708958268166,0.04134228825569153,-0.02367386594414711,0.050824835896492004,-0.0032472226303070784,0.007136759348213673,-0.02528824284672737,-0.020130453631281853,-0.020646575838327408,-0.10275992006063461,-0.027247799560427666,0.11635416746139526,-0.037280697375535965,-0.018161633983254433,0.03489839658141136,-0.04014133661985397,0.027041049674153328,0.009734045714139938,-0.023879174143075943,-0.00972106121480465,0.02284170873463154,-0.0330352708697319,-0.011386683210730553]},{"text":"Non semper imbres nubibus hispidos Manant in agros aut mare Caspium Vexant inaequales procellae Usque, nec Armeniis in oris, Amice Valgi, stat glacies iners 5 Mensis per omnis, aut Aquilonibus Querceta Gargani laborant Et foliis viduantur orni: Tu semper urges flebilibus modis Mysten ademptum, nec tibi Vespero 10 Surgente decedunt amores Nec rapidum fugiente solem.","book":"Homage to Catalonia","chapter":12,"embedding":[-0.007337674498558044,0.056547969579696655,-0.019588563591241837,-0.023991500958800316,-0.06901853531599045,-0.021717432886362076,0.03881965950131416,0.11607123166322708,0.01348557323217392,-0.004761023912578821,0.0673188790678978,-0.14632746577262878,-0.002199840731918812,-0.03947725519537926,-0.05536620691418648,-0.048344679176807404,0.03879062831401825,0.06936528533697128,-0.05222925916314125,0.016246916726231575,0.027612561360001564,0.02283993735909462,-0.037927281111478806,0.002246126066893339,-0.06441160291433334,-0.04566655680537224,-0.10906726866960526,0.013649318367242813,0.019520478323101997,-0.04973670467734337,-0.03350280225276947,0.04814205318689346,0.13388937711715698,-0.049652185291051865,0.012831258587539196,-0.029572956264019012,0.0019607706926763058,-0.049035415053367615,0.058277614414691925,0.02944650501012802,-0.009161677211523056,-0.08792358636856079,-0.06157814711332321,-0.04395856708288193,-0.05605408549308777,0.010689434595406055,-0.005455005913972855,0.03829706087708473,0.07133613526821136,0.0625949501991272,-0.1357923150062561,-0.019443441182374954,-0.08550398051738739,0.03271090239286423,-0.05640959367156029,-0.0249329824000597,-0.005819062702357769,-0.031364671885967255,-0.04805503040552139,-0.027961082756519318,-0.022122886031866074,0.07187796384096146,0.02044812962412834,0.05276116728782654,0.006428481545299292,0.0612298920750618,-0.053864482790231705,0.006396519485861063,-0.028933459892868996,0.027958713471889496,0.15604974329471588,-0.06533616036176682,-0.0465097576379776,0.07724662125110626,-0.08492518216371536,0.08768587559461594,-0.024160519242286682,-0.006780815310776234,0.08371667563915253,-0.04830862581729889,-0.05903826281428337,-0.005210298113524914,0.016070833429694176,-0.01743532530963421,0.003162213834002614,-0.035636648535728455,0.009974583052098751,-0.053189001977443695,0.03437011316418648,0.025553883984684944,0.02342158742249012,0.02538396790623665,-0.07754424959421158,-0.01846941001713276,0.06934482604265213,-0.0017224374460056424,-0.016744019463658333,0.04177585989236832,-0.052992045879364014,-0.03289815038442612,-0.014602316543459892,-0.005263001658022404,-0.03215659782290459,0.009797951206564903,-0.07090528309345245,-0.02905239909887314,-0.03425858914852142,-0.11255516111850739,-0.007211401127278805,0.015102270990610123,-0.08176487684249878,-0.13020317256450653,0.01721995882689953,-0.1067805141210556,0.016713891178369522,0.053552232682704926,-0.023665767163038254,-0.07067319005727768,0.014814627356827259,-0.02073945477604866,-0.0010595278581604362,-0.025713326409459114,-0.012390858493745327,0.0033470855560153723,0.07937803119421005,-0.04922159016132355,0.005223837681114674,2.3518474002678507e-32,-0.021111125126481056,-0.07642776519060135,-0.00573023920878768,0.011452794075012207,0.038437724113464355,-0.017624177038669586,-0.07072963565587997,0.006150245666503906,-0.0021059419959783554,-0.06755813956260681,-0.05382746458053589,-0.009369594044983387,-0.007989470846951008,0.024514222517609596,0.036719489842653275,0.025929352268576622,0.10768425464630127,-0.09529397636651993,-0.02073518931865692,0.003132529789581895,-0.047075480222702026,-0.02733798325061798,-0.02438870631158352,-0.005866318009793758,-0.005288504529744387,0.04342634603381157,-0.03949480503797531,-0.06877822428941727,-0.0647071897983551,0.04541386291384697,0.03865782916545868,-0.09733583778142929,-0.004938855301588774,-0.07817093282938004,-0.02726312354207039,0.04363705590367317,-0.02632747031748295,-0.00023477048671338707,-0.10444796830415726,0.03592456132173538,-0.004648319445550442,0.03716447949409485,0.09328001737594604,0.029381174594163895,0.05876096710562706,0.0003731561591848731,-0.01923922821879387,0.06876211613416672,0.08330251276493073,0.024566207081079483,0.0584656298160553,0.008213389664888382,0.021676691249012947,-0.004096279852092266,0.05395812913775444,0.047736119478940964,-0.07300257682800293,0.0751664936542511,-0.03283103182911873,0.04872767999768257,0.044143982231616974,0.007458187639713287,0.02085834927856922,0.02322479896247387,0.07370727509260178,-0.034597743302583694,-0.06107538938522339,0.013917877338826656,0.031821057200431824,-0.010986371897161007,-0.043776459991931915,-0.02055661380290985,-0.083304762840271,0.03516305983066559,-0.02141341008245945,0.04120224714279175,0.058436665683984756,-0.07323171198368073,-0.0715126097202301,-0.062051307410001755,-0.035683970898389816,0.04043931886553764,0.010112444870173931,0.0033020724076777697,0.021558282896876335,0.005241970531642437,0.0243570264428854,0.06965487450361252,0.020104359835386276,0.04609533026814461,0.12863902747631073,0.013091068714857101,-0.05362240597605705,0.0006188770639710128,-0.034632083028554916,-2.217276072301746e-32,-0.05689625069499016,-0.06682956963777542,-0.08800707012414932,0.06726424396038055,-0.035441141575574875,0.03283550962805748,-0.006997981108725071,0.035596322268247604,0.05504331365227699,0.008928235620260239,-0.08178400248289108,-0.01904766820371151,0.10825581103563309,-0.045402999967336655,-0.04165516421198845,0.03217153251171112,0.011324597522616386,0.029510941356420517,0.02860156260430813,-0.007550807669758797,-0.03524326905608177,0.08645424246788025,0.07004593312740326,-0.020515048876404762,-0.03980746120214462,0.02489893138408661,-0.06353592127561569,-0.04134531319141388,-0.10732755810022354,0.007856640964746475,0.08130714297294617,0.008727039210498333,-0.05289221554994583,-0.006082701031118631,-0.01991116814315319,-0.007009182590991259,0.1256926953792572,-0.024849794805049896,0.022796455770730972,0.015528702177107334,0.013348376378417015,0.05637464299798012,0.0628998801112175,-0.04452277719974518,0.012246535159647465,-0.003845928004011512,-0.035935178399086,-0.012067240662872791,-0.0016835973365232348,0.04107275232672691,0.05163570120930672,0.0006490811938419938,-0.012246032245457172,-0.0021315787453204393,0.06301712244749069,-0.06443283706903458,-0.012833310291171074,-0.08265963196754456,-0.05757755786180496,-0.0013514109887182713,0.09156933426856995,-0.02030792087316513,-0.01833655685186386,0.014114892110228539,0.05620278790593147,0.04212218523025513,-0.08931712806224823,0.024983227252960205,-0.026899797841906548,0.018977077677845955,0.05633513629436493,-0.07593976706266403,-0.13941462337970734,-0.027248183265328407,-0.003588204737752676,0.019619690254330635,0.0373716875910759,-0.016058441251516342,0.03819236531853676,-0.01453853864222765,-0.08586790412664413,-0.06520131975412369,0.022520724684000015,-0.021588735282421112,-0.07811625301837921,-0.06532785296440125,-0.00001738176797516644,-0.00442273635417223,0.05383924022316933,0.011020123958587646,-0.053771842271089554,-0.06022445112466812,-0.01651071012020111,-0.04354820027947426,0.015630504116415977,-7.090062581482925e-8,0.07545918971300125,-0.027821771800518036,-0.009699125774204731,-0.006753283552825451,0.04340134933590889,-0.03201236575841904,-0.024826351553201675,-0.008590180426836014,0.012901728972792625,0.0937047079205513,-0.029645675793290138,0.02214708738029003,-0.018243324011564255,-0.022203652188181877,0.09969288855791092,-0.015823543071746826,0.18163681030273438,0.031165508553385735,-0.06492546945810318,-0.07926221191883087,0.020844493061304092,0.01601443625986576,-0.055913716554641724,-0.05994795635342598,-0.001215212163515389,-0.02576526626944542,0.0636536255478859,-0.07681869715452194,0.04604616388678551,0.009236544370651245,-0.004793839063495398,0.03703606501221657,0.0194992758333683,-0.13317984342575073,-0.028393590822815895,0.029133712872862816,-0.02446039393544197,0.05311669781804085,0.01665223389863968,-0.005323291290551424,0.02092690020799637,-0.03507835790514946,0.02742999978363514,-0.04755604639649391,0.018929732963442802,0.0022402440663427114,0.07401036471128464,0.002590780844911933,-0.016262197867035866,-0.023095782846212387,-0.02091938816010952,0.008870573714375496,0.11192570626735687,0.01948130503296852,-0.03622209653258324,-0.05562574043869972,0.03900451213121414,0.04061620309948921,0.032446425408124924,0.0007680341950617731,0.07646862417459488,0.07238464802503586,0.06728105247020721,-0.02178129553794861]},{"text":"Desine mollium Tandem querellarum, et potius nova Cantemus Augusti tropaea Caesaris et rigidum Niphaten, 20 Medumque flumen gentibus additum Victis minores volvere vertices, Intraque praescriptum Gelonos Exiguis equitare campis.","book":"Homage to Catalonia","chapter":12,"embedding":[-0.0021568359807133675,0.00595925934612751,-0.0326177179813385,-0.016460303217172623,-0.08385185152292252,0.009840847924351692,0.045213546603918076,0.041425857692956924,0.03038560412824154,0.024675263091921806,0.08355134725570679,-0.04128256440162659,0.0359095074236393,0.03468846157193184,-0.0891861617565155,-0.08509612083435059,-0.029043754562735558,0.07427217066287994,-0.01565699093043804,0.016246451064944267,0.11327707022428513,0.05785944312810898,-0.003036160720512271,0.035167526453733444,-0.0958266407251358,0.00567431328818202,-0.11179355531930923,0.02857067435979843,0.05665389075875282,-0.14582154154777527,-0.04545189067721367,0.04345269873738289,0.024219265207648277,-0.03834367170929909,0.0983460322022438,-0.04473203048110008,-0.009555467404425144,-0.038152676075696945,0.11519826203584671,0.07453028857707977,-0.031155167147517204,0.047267574816942215,0.021295791491866112,-0.011495575308799744,-0.038555338978767395,-0.01818406581878662,-0.07659507542848587,0.10962294787168503,0.02709314599633217,-0.013049108907580376,-0.05888861045241356,-0.09303025156259537,-0.05207008495926857,-0.0021370472386479378,0.00413226755335927,-0.030960366129875183,-0.05758855491876602,-0.07430198788642883,0.005942047107964754,-0.011466720141470432,0.029416248202323914,0.09323618561029434,0.025903265923261642,0.004766714293509722,-0.08424007892608643,-0.03221336752176285,-0.0075891632586717606,-0.012178395874798298,-0.004063179716467857,0.009526156820356846,0.09282946586608887,0.0016753000672906637,0.04618947207927704,0.0884743332862854,-0.06740225106477737,0.07881351560354233,0.02982792817056179,-0.026144878938794136,0.025099946185946465,-0.05100943520665169,-0.0682120993733406,0.007193024270236492,-0.014170781709253788,-0.00883518811315298,0.010313596576452255,-0.027996379882097244,-0.005607071332633495,0.004247492644935846,0.05146992951631546,-0.028148949146270752,0.03808625414967537,0.0043998658657073975,-0.02540753036737442,-0.010416506789624691,-0.09165763854980469,0.04854701831936836,0.010576996952295303,-0.022003114223480225,-0.03347519785165787,0.005146484822034836,-0.0080952737480402,-0.11615337431430817,0.07222387194633484,0.022836217656731606,-0.0950092002749443,-0.07837069779634476,-0.03993654251098633,-0.11088282614946365,0.05405633524060249,0.004190970212221146,-0.12037446349859238,0.0008973164367489517,-0.033299755305051804,-0.017042065039277077,-0.02820602059364319,-0.04090786352753639,0.02389700710773468,-0.06790376454591751,-0.009502764791250229,-0.05815432220697403,0.011501094326376915,-0.062133029103279114,-0.002255144063383341,-0.010677692480385303,0.019971497356891632,0.050850480794906616,0.0003477553545963019,1.57646311460105e-32,0.017442654818296432,-0.08106949180364609,-0.010288377292454243,0.02819453552365303,0.08498506247997284,-0.05484127998352051,-0.023200301453471184,-0.046946704387664795,-0.01560131274163723,-0.05321865156292915,-0.11166910082101822,-0.036281075328588486,-0.007452711928635836,-0.0066708847880363464,-0.040107935667037964,0.03187325596809387,0.06892523914575577,-0.05043257027864456,-0.03010328859090805,0.014857050031423569,0.012024025432765484,0.08200769871473312,0.04139930382370949,-0.006252261344343424,0.056456051766872406,0.06655620783567429,-0.032394733279943466,-0.07107964158058167,0.06144966185092926,0.04643987491726875,0.10697675496339798,-0.127303808927536,-0.08346651494503021,-0.014653542079031467,0.038595885038375854,0.04501834139227867,0.0026138711255043745,-0.028844760730862617,-0.07371745258569717,-0.009198542684316635,-0.05674569308757782,0.0334312729537487,0.017531894147396088,0.03189431130886078,0.026336561888456345,-0.046055495738983154,0.01873350702226162,0.10791140794754028,0.05855947360396385,-0.06581363826990128,0.04431331530213356,0.05343801900744438,0.010528646409511566,-0.08177025616168976,-0.0275893397629261,0.06814948469400406,-0.013474038802087307,0.021239370107650757,-0.045170072466135025,0.05267136171460152,0.053371235728263855,-0.004919208120554686,-0.007235387805849314,-0.036161769181489944,0.05644853785634041,-0.036611154675483704,-0.06645535677671432,0.01507245097309351,0.13016629219055176,-0.040563590824604034,-0.10065615922212601,-0.06777689605951309,0.035206086933612823,0.000873706245329231,-0.05401069298386574,0.009318885393440723,0.08012085407972336,-0.08873216807842255,-0.009589810855686665,-0.019258812069892883,-0.03566962108016014,-0.028220457956194878,-0.01920255646109581,0.008826824836432934,-0.0033045485615730286,-0.0360351987183094,-0.035080838948488235,0.0844825878739357,0.04073899984359741,0.04658392816781998,0.047995902597904205,0.0025001801550388336,-0.003270472167059779,0.006743771489709616,-0.017216045409440994,-1.5882208499083562e-32,-0.019112329930067062,-0.013532699085772038,0.008421266451478004,0.03480486199259758,-0.006379877217113972,0.020426444709300995,-0.11743848770856857,0.05466970428824425,-0.027243174612522125,-0.07739225775003433,-0.07116208225488663,-0.026807328686118126,0.06110745295882225,-0.04991526156663895,-0.02055197022855282,0.07353708148002625,0.020753290504217148,0.0543033629655838,-0.03237605467438698,-0.03394608944654465,-0.0864124521613121,0.035251766443252563,0.010719601064920425,-0.12513048946857452,-0.014978106133639812,0.047874387353658676,-0.010972659103572369,-0.009377671405673027,-0.10125552117824554,0.012182369828224182,0.050509531050920486,-0.0404493510723114,-0.0031446057837456465,-0.006319055333733559,-0.02661190554499626,-0.02545805275440216,0.04601370170712471,-0.07633340358734131,0.051848623901605606,-0.023802485316991806,0.019347965717315674,0.011051971465349197,0.13656392693519592,0.13779380917549133,0.06123821809887886,0.012064601294696331,-0.03173913434147835,-0.034503597766160965,-0.03520948439836502,0.09881352633237839,0.06516246497631073,-0.03126046806573868,-0.041590675711631775,-0.013201551511883736,0.06250803917646408,-0.08273401111364365,-0.026390722021460533,-0.006847015116363764,-0.03530297428369522,0.05304223299026489,0.042954087257385254,-0.02826840430498123,-0.08840211480855942,0.02134878560900688,0.0716983899474144,0.01712072268128395,-0.10113462060689926,0.05333162471652031,-0.03195277228951454,-0.00008733745926292613,-0.0034846896305680275,0.014943450689315796,-0.07959084957838058,-0.010643351823091507,0.012410157360136509,0.013181614689528942,-0.09242504090070724,-0.0516606867313385,0.016675366088747978,0.009862679056823254,-0.06673049181699753,-0.013200835324823856,-0.040749866515398026,-0.011550620198249817,0.03852096572518349,-0.015038752928376198,0.06346447020769119,0.053121417760849,0.039554938673973083,0.015538247302174568,0.014372709207236767,-0.04211802780628204,0.03898213431239128,0.0027300857473164797,0.08400343358516693,-5.470434771837063e-8,0.03812475875020027,-0.019601795822381973,-0.06608643382787704,0.0019249658798798919,0.03546353429555893,-0.06761754304170609,-0.03607083112001419,0.029499318450689316,0.013155144639313221,-0.003037117188796401,0.006829502061009407,0.08135350048542023,-0.02502480149269104,0.00367567571811378,0.04104163497686386,0.045908473432064056,0.003980860114097595,0.024607384577393532,-0.045647744089365005,-0.03659871965646744,0.017448842525482178,0.001129529089666903,-0.06053470820188522,0.04189732298254967,-0.03977235406637192,-0.00047831350821070373,0.04754802584648132,-0.02701006643474102,-0.018667742609977722,0.040476005524396896,0.010180210694670677,0.01654895581305027,-0.05413564667105675,-0.10245794802904129,-0.024508703500032425,0.04456309974193573,0.006621948909014463,0.01941494457423687,0.0023957917001098394,0.008932377211749554,0.06400341540575027,-0.051749639213085175,-0.0023981700651347637,-0.020378844812512398,0.02847979962825775,0.02965548262000084,-0.05864883214235306,0.06233372166752815,-0.020140424370765686,-0.058278437703847885,-0.03161616250872612,-0.05976257100701332,0.08705703169107437,-0.0027581166941672564,-0.1003151386976242,-0.022751174867153168,0.08416811376810074,0.04085884243249893,0.00841254647821188,0.04679175093770027,-0.016947275027632713,-0.004363451153039932,0.09686138480901718,0.044650234282016754]},{"text":"Auream quisquis mediocritatem 5 Diligit, tutus caret obsoleti Sordibus tecti, caret invidenda Sobrius aula.","book":"Homage to Catalonia","chapter":12,"embedding":[0.06159059330821037,0.04710127040743828,-0.0437336191534996,0.04493836313486099,-0.04685737565159798,0.012240847572684288,0.05697024613618851,0.0004473357112146914,0.05297274887561798,0.02433888427913189,-0.01725863479077816,-0.033196549862623215,-0.010390087030827999,-0.06023004278540611,0.004063684493303299,-0.04177277535200119,-0.06345920264720917,0.04030892997980118,-0.08321430534124374,0.014036829583346844,-0.00013616913929581642,0.001372992410324514,0.030361415818333626,0.0845758467912674,-0.09073227643966675,0.03328503295779228,-0.029151510447263718,-0.10243439674377441,0.03982365503907204,-0.0458296500146389,0.07966464012861252,0.061305101960897446,0.024932116270065308,-0.03328414633870125,-0.05987418815493584,0.07552926987409592,-0.09728138893842697,-0.028960946947336197,0.025648944079875946,-0.03828139975667,-0.01193195953965187,0.023396313190460205,-0.045298729091882706,0.030260954052209854,0.029695414006710052,0.00856191199272871,-0.07201334834098816,0.053653910756111145,0.04039286449551582,0.016136514022946358,-0.13490304350852966,-0.06197813153266907,-0.10156761854887009,0.021666988730430603,-0.09140008687973022,-0.035914141684770584,-0.017448794096708298,-0.01862078160047531,-0.03780331835150719,-0.03386744111776352,0.0329996757209301,0.031443677842617035,0.010258859023451805,0.028470734134316444,-0.056533776223659515,0.014481661841273308,-0.040325239300727844,0.0162130706012249,-0.016162190586328506,0.053529396653175354,0.040391698479652405,-0.0848146453499794,0.05696835741400719,0.07277808338403702,-0.058070506900548935,-0.029840674251317978,-0.004530576057732105,-0.095253586769104,0.010024072602391243,-0.029831090942025185,0.015413988381624222,0.013539958745241165,-0.019142091274261475,0.021721215918660164,-0.053464263677597046,-0.008463775739073753,-0.03674616292119026,-0.02890244871377945,0.06053604558110237,-0.018877731636166573,0.06262482702732086,0.04157302528619766,-0.09611339122056961,-0.04442158341407776,-0.008640768006443977,-0.024328339844942093,-0.023281676694750786,-0.014253562316298485,-0.022594207897782326,0.022126801311969757,0.012308250181376934,-0.02467789128422737,0.021874483674764633,0.11795606464147568,-0.05904560163617134,-0.014404156245291233,-0.05394597351551056,-0.10686208307743073,0.07622651010751724,0.013553663156926632,-0.11027111113071442,-0.06955825537443161,-0.02323666401207447,-0.02997913397848606,0.02327168732881546,0.06868743151426315,-0.008684190921485424,-0.03418475016951561,0.01820646971464157,0.0017703764606267214,0.04215259477496147,-0.02897072397172451,0.06206003576517105,-0.06062877178192139,0.057059288024902344,-0.11056653410196304,0.03306743502616882,9.136676778560082e-33,0.02883133850991726,-0.10625302046537399,0.02439216524362564,0.08680564165115356,0.008304528892040253,-0.01288153138011694,0.03623105213046074,-0.05432456359267235,0.06856650114059448,-0.05735747516155243,-0.0424799881875515,-0.09167446196079254,0.024234171956777573,0.06509958207607269,-0.00829787366092205,-0.026911377906799316,-0.01535339280962944,0.015814388170838356,-0.027343178167939186,0.004074630793184042,0.03068556636571884,-0.01221693679690361,-0.03361992910504341,-0.026737798005342484,0.020586377009749413,-0.006656717974692583,0.014185848645865917,0.004500967916101217,0.04469623044133186,0.02996031753718853,0.07997723668813705,0.03398717939853668,-0.05288683623075485,-0.07581834495067596,-0.04081878811120987,0.05053645744919777,0.06879453361034393,0.05848799645900726,-0.014690135605633259,-0.07551891356706619,0.0717913806438446,0.033968180418014526,0.08816342055797577,-0.006719022989273071,0.045065466314554214,0.0021269377321004868,0.02538575604557991,0.03099564090371132,0.08564720302820206,0.05057527497410774,0.038267917931079865,-0.04361758008599281,0.0010443535866215825,-0.07483125478029251,-0.0035632490180432796,0.05700194090604782,0.031613584607839584,0.10202530771493912,-0.03475412726402283,-0.0455438531935215,0.019425906240940094,-0.08663104474544525,0.002071209717541933,-0.012378758750855923,0.05474544316530228,0.013248534873127937,-0.031827159225940704,-0.05393423140048981,0.062430284917354584,0.05448228120803833,-0.12660391628742218,0.014763625338673592,-0.05741474777460098,0.0406465083360672,-0.060220424085855484,0.0031905630603432655,0.03606107085943222,-0.025394417345523834,-0.06955878436565399,0.03222467377781868,-0.017222905531525612,0.028612418100237846,0.02253391034901142,0.05007784068584442,0.08695846050977707,-0.03825978562235832,0.012176166288554668,0.036381449550390244,0.029863938689231873,0.03243875876069069,0.05451088398694992,0.08511373400688171,0.0873803198337555,-0.01177936140447855,0.00914351548999548,-8.500016548527254e-33,-0.003843923332169652,-0.03443409129977226,-0.08190125226974487,0.15705831348896027,0.042886972427368164,0.008213553577661514,-0.10673034191131592,0.006708701141178608,0.009889179840683937,-0.018230793997645378,0.011567964218556881,0.023070940747857094,0.10785693675279617,0.07021568715572357,-0.10008054971694946,0.07572875916957855,0.0923285260796547,0.028633130714297295,-0.02872183546423912,-0.004468130879104137,-0.043190401047468185,0.008734168484807014,-0.02943146973848343,-0.08104412257671356,0.037387121468782425,0.007025509141385555,0.057780925184488297,-0.06895767897367477,0.01475207693874836,-0.06873715668916702,0.024650555104017258,0.002970234490931034,-0.022176658734679222,0.042930249124765396,-0.010031772777438164,0.0015959374140948057,0.06843195110559464,0.05649716034531593,-0.12657442688941956,-0.03006032481789589,0.032479893416166306,0.014733157120645046,0.012472031638026237,0.03377821296453476,-0.03562908619642258,-0.07598797976970673,-0.015287593007087708,-0.011924026533961296,-0.07003428786993027,0.00670238770544529,0.06228954717516899,-0.07505403459072113,-0.03499064967036247,-0.022836139425635338,0.12392789870500565,-0.045821867883205414,-0.036532025784254074,-0.08559440076351166,-0.038523655384778976,-0.09243066608905792,0.08804592490196228,-0.011156227439641953,-0.00669350940734148,-0.09087354689836502,0.030316198244690895,0.038967154920101166,-0.05320611596107483,0.08601801097393036,0.003969098441302776,0.06090448424220085,0.04360941797494888,-0.03979288041591644,-0.08162779361009598,-0.01070187333971262,-0.018033191561698914,-0.0031769047491252422,0.03255762904882431,-0.011121146380901337,0.04296870529651642,0.03865639492869377,0.02147611230611801,-0.06599272042512894,0.03402397409081459,-0.0557510145008564,-0.09044795483350754,-0.05825481563806534,0.015042373910546303,0.05477447435259819,0.002737171482294798,0.06595903635025024,-0.07302935421466827,-0.0075762164779007435,0.08232110738754272,-0.05992479994893074,-0.03517352417111397,-3.479262389305404e-8,-0.007408185862004757,-0.10055410116910934,-0.04895687848329544,0.023497430607676506,-0.002083987696096301,-0.005688353441655636,-0.03312071040272713,-0.030450621619820595,-0.03157895803451538,-0.008606364950537682,-0.04056239873170853,-0.09096070379018784,0.029831141233444214,0.030985046178102493,0.04657554626464844,-0.024305962026119232,0.05061223730444908,0.08535651862621307,-0.0436103530228138,-0.006898584775626659,0.022678015753626823,-0.020954269915819168,-0.014862796291708946,-0.04614844173192978,0.05902436748147011,0.013792254962027073,0.017624303698539734,-0.01313302107155323,0.006460167001932859,-0.03320939093828201,-0.016113875433802605,0.10264640301465988,0.02088184654712677,-0.03882254287600517,-0.03749997913837433,0.0010694412048906088,0.03844643384218216,0.0260239876806736,-0.0034973854199051857,0.07899683713912964,0.05818995460867882,0.029035096988081932,0.05366988852620125,-0.0033562073949724436,0.04851070046424866,-0.0480467863380909,0.058457717299461365,-0.04682444408535957,0.012472471222281456,-0.08439985662698746,-0.061982765793800354,0.035435255616903305,0.06863497942686081,0.07272402197122574,-0.04032205417752266,0.06227495148777962,0.0061867134645581245,0.05144752562046051,-0.08749048411846161,-0.011341291479766369,0.05197501555085182,0.0804988443851471,0.03736056759953499,0.002790742553770542]},{"text":"Sperat infestis, metuit secundis Alteram sortem bene praeparatum Pectus.","book":"Homage to Catalonia","chapter":12,"embedding":[0.03716583177447319,0.08920508623123169,-0.030845757573843002,0.015101177617907524,-0.06199059635400772,-0.01950899511575699,0.02983403205871582,0.06608235090970993,0.004471980966627598,0.05396837741136551,0.09635704010725021,-0.10833323746919632,0.003840554039925337,0.023510703817009926,-0.036330826580524445,-0.033237993717193604,-0.0014911139151081443,0.060581739991903305,0.08961315453052521,0.004555200692266226,0.035682354122400284,0.02876259945333004,-0.02403412200510502,-0.0013921749778091908,-0.1421288698911667,-0.034373290836811066,-0.06579522788524628,0.011865977197885513,0.003185893641784787,-0.11046717315912247,-0.03082142397761345,0.10799716413021088,0.03172203153371811,-0.031266722828149796,0.00952370185405016,-0.0075358618050813675,0.017503369599580765,-0.04629620537161827,0.0870196744799614,0.07719413936138153,-0.012774062342941761,0.050724372267723083,-0.022621795535087585,-0.06693649291992188,-0.0867893174290657,-0.038660380989313126,-0.06903928518295288,0.10397888720035553,0.022760065272450447,-0.03750176355242729,-0.01821877621114254,-0.05775614082813263,-0.03670873865485191,0.06000237911939621,-0.050005894154310226,0.015605439431965351,0.0013567062560468912,-0.05213889852166176,0.04201760143041611,-0.09369507431983948,0.02577376551926136,0.029206380248069763,-0.054987143725156784,0.0420495830476284,-0.011918817646801472,-0.049990247935056686,-0.0036429138854146004,-0.0016237386735156178,0.00604107603430748,0.033099085092544556,0.09980994462966919,-0.05001832917332649,-0.07409396767616272,0.0532410703599453,-0.07287357747554779,0.004754231311380863,-0.00003197422483935952,0.004210086539387703,-0.016063198447227478,-0.025256894528865814,-0.03355475142598152,0.09833010286092758,-0.021586667746305466,-0.04331883043050766,0.08711601793766022,-0.04318353906273842,-0.0020143508445471525,-0.026459958404302597,-0.009499832056462765,-0.026278961449861526,0.029193436726927757,0.049988970160484314,-0.047426119446754456,-0.024820782244205475,0.054975979030132294,0.03857113793492317,-0.03371763229370117,-0.00281212804839015,-0.041140366345644,0.005929787177592516,-0.002840797882527113,-0.07516398280858994,-0.055833593010902405,0.05717191845178604,-0.01724734529852867,-0.07868492603302002,-0.020550446584820747,-0.10830331593751907,0.09008289873600006,0.022947680205106735,-0.048393573611974716,-0.05519430339336395,0.019304102286696434,-0.06712159514427185,0.02556724287569523,0.01880303956568241,0.014378507621586323,-0.05136031284928322,0.003435799852013588,-0.04248883202672005,0.051525965332984924,-0.011282257735729218,-0.015432736836373806,-0.026553800329566002,0.08298144489526749,-0.029088696464896202,-0.01892780512571335,4.35732282697004e-33,0.00922075193375349,-0.12008438259363174,-0.015011481009423733,0.0021030090283602476,0.07394062727689743,0.024550998583436012,-0.00809547957032919,-0.054562319070100784,0.014174070209264755,-0.03403940424323082,-0.10007856786251068,0.02430056780576706,-0.01885145530104637,0.019929124042391777,0.010811582207679749,0.009965687058866024,0.08408597856760025,0.033501036465168,-0.00829342007637024,-0.04058365896344185,-0.05690761283040047,0.049513254314661026,0.007584494072943926,-0.0032222175505012274,0.03165057301521301,0.0907980427145958,-0.018864700570702553,-0.06450224667787552,0.021694529801607132,-0.010243916884064674,0.13788242638111115,0.00027712679002434015,-0.050586998462677,0.07218458503484726,-0.07005290687084198,-0.004351267125457525,0.07246050238609314,-0.03002329170703888,-0.023488115519285202,-0.015038919635117054,0.03170299530029297,-0.010407881811261177,0.10535052418708801,0.010020180605351925,0.036287784576416016,-0.01344146579504013,-0.00003022198325197678,-0.02297631837427616,0.07656393200159073,0.03258644416928291,0.03067304939031601,0.020770981907844543,0.023479651659727097,-0.007043615914881229,-0.06850377470254898,0.028359290212392807,-0.04243134334683418,0.058091744780540466,-0.030907070264220238,0.011900314129889011,0.04844390228390694,0.01994735561311245,0.02599998563528061,-0.009464539587497711,0.010053443722426891,-0.08098487555980682,-0.03333841636776924,0.024161575362086296,0.006564862094819546,0.01086330134421587,-0.10965102165937424,0.013036955147981644,-0.030554838478565216,0.0171518474817276,-0.014799266122281551,0.01440869364887476,-0.022989315912127495,0.007860108278691769,-0.0931333601474762,-0.029700294137001038,-0.10136420279741287,-0.00375241506844759,0.05524060130119324,0.033451180905103683,0.05616788566112518,0.0076621342450380325,-0.003098537912592292,0.07622397691011429,0.08727335929870605,0.03911212086677551,0.04055522382259369,0.04027167335152626,-0.0337337926030159,0.0790562704205513,0.014038960449397564,-4.494558853692665e-33,-0.06176365911960602,-0.03507973253726959,-0.011866974644362926,0.0389033667743206,-0.018589451909065247,0.09972711652517319,-0.12210225313901901,0.1310715526342392,-0.050103962421417236,-0.08079241216182709,-0.11055150628089905,0.0534493587911129,0.026710687205195427,-0.09167671203613281,0.0021295263431966305,0.09905128180980682,0.05606257915496826,0.016599304974079132,-0.056876808404922485,-0.026485124602913857,-0.07572644203901291,0.05683967471122742,0.007939549162983894,-0.11159475892782211,-0.0020846996922045946,0.005196358542889357,0.1366957724094391,-0.029103880748152733,-0.035388536751270294,-0.06236844137310982,0.060369763523340225,0.04257689043879509,-0.07013348489999771,0.09983004629611969,-0.022308459505438805,-0.02642769366502762,0.036890171468257904,-0.05777892470359802,-0.010617014020681381,0.003741692518815398,-0.03552159294486046,0.04405751824378967,0.04208390787243843,0.05700886249542236,0.08367475122213364,0.0017282402841374278,-0.04919642582535744,-0.031985342502593994,-0.03495115786790848,0.0581444688141346,0.004573313053697348,-0.02923218533396721,0.06940359622240067,-0.017023995518684387,0.02355206571519375,-0.07533925026655197,-0.052852220833301544,-0.01130591332912445,0.040181998163461685,0.03910241276025772,0.06793341785669327,0.02589326538145542,-0.04549723491072655,-0.05032865330576897,0.043571826070547104,0.08075133711099625,-0.11755960434675217,0.07861976325511932,0.02689082734286785,0.0661238431930542,0.04038254916667938,-0.029956184327602386,-0.13866238296031952,-0.0637408122420311,-0.04425090178847313,-0.015765434131026268,0.023167939856648445,-0.010990006849169731,0.03819679468870163,0.06533554196357727,-0.032677602022886276,-0.026379147544503212,0.04574902355670929,-0.020702974870800972,-0.03380656614899635,-0.031378768384456635,0.021264374256134033,-0.023371048271656036,-0.0020626834593713284,0.003898445051163435,-0.06561748683452606,-0.012172685004770756,0.0684681311249733,-0.02618207037448883,-0.026322556659579277,-2.4451233926470195e-8,0.02884829416871071,-0.06450188905000687,-0.04744094982743263,0.039598993957042694,0.07336355000734329,-0.06394965946674347,-0.030837558209896088,-0.011675477027893066,0.009527377784252167,0.01004499290138483,-0.09893519431352615,-0.046023715287446976,0.044988397508859634,0.024691861122846603,0.060294266790151596,0.010521951131522655,0.047896288335323334,0.025067873299121857,-0.03180582821369171,-0.04204588010907173,-0.039620134979486465,0.030594924464821815,-0.0234366562217474,0.05978676304221153,-0.029038049280643463,-0.015476818196475506,0.08683020621538162,0.004681789316236973,0.04091008007526398,0.06984733790159225,-0.033052947372198105,0.060446321964263916,-0.00027435540687292814,0.03985130414366722,-0.006855354178696871,0.03306228667497635,0.0014421195955947042,0.0038779079914093018,0.07399191707372665,0.02510196715593338,0.08732129633426666,-0.0699600875377655,0.07885685563087463,-0.026957936584949493,-0.05510750412940979,-0.06342142820358276,0.0011191860539838672,-0.06967230141162872,0.05657154694199562,-0.033834245055913925,-0.004010082688182592,0.04277939349412918,0.029166584834456444,0.019380219280719757,-0.060886628925800323,-0.012771341018378735,0.08390877395868301,-0.042896684259176254,-0.017186317592859268,0.020785577595233917,0.01169686671346426,0.021831220015883446,0.02010187692940235,0.08680515736341476]},{"text":"Non, si male nunc, et olim Sic erit: quondam cithara tacentem Suscitat Musam neque semper arcum Tendit Apollo. 20 Rebus angustis animosus atque Fortis appare; sapienter idem Contrahes vento nimium secundo Turgida vela.","book":"Homage to Catalonia","chapter":13,"embedding":[0.02017967961728573,0.05825367197394371,-0.0639553889632225,0.0375094898045063,-0.07654508948326111,-0.0021535875275731087,0.02916686050593853,0.039111923426389694,0.051915787160396576,0.06725884228944778,0.09975046664476395,-0.11092177778482437,0.04364655539393425,-0.0646882951259613,-0.08351115882396698,-0.049549393355846405,0.0026948307640850544,0.10105449706315994,0.01788521185517311,-0.02269621007144451,-0.03638383001089096,0.010415226221084595,-0.05356753617525101,0.020180897787213326,-0.115353524684906,0.019526388496160507,-0.08460546284914017,-0.027942117303609848,-0.032116323709487915,-0.026645060628652573,-0.007215479854494333,0.03262166306376457,0.004507414996623993,-0.013490172103047371,-0.031003769487142563,0.01770962029695511,-0.07880247384309769,-0.03889385983347893,0.057512927800416946,0.06605330854654312,-0.029846878722310066,-0.06466866284608841,-0.0487060472369194,-0.04866286739706993,0.021414604038000107,0.04940348491072655,-0.009121050126850605,0.020671529695391655,0.022963562980294228,0.04660153388977051,-0.05590870603919029,-0.020137613639235497,-0.0594015009701252,0.008959673345088959,-0.06898856163024902,-0.04919009655714035,0.01031066570430994,-0.07203605026006699,0.05849183350801468,-0.03310774266719818,0.06354007869958878,0.028157826513051987,0.005460317246615887,0.013735374435782433,-0.04032658785581589,0.032340437173843384,-0.025502154603600502,-0.010058024898171425,-0.019830673933029175,0.04479946196079254,0.17211908102035522,-0.06283853203058243,0.00495868269354105,0.04242042079567909,-0.0507308766245842,0.046087395399808884,0.021268898621201515,0.012523896060883999,0.047909315675497055,-0.09973979741334915,-0.02046799287199974,0.009910153225064278,-0.025503812357783318,-0.011301420629024506,0.024184539914131165,0.032352663576602936,0.053988512605428696,-0.0376625582575798,0.01613721437752247,0.005796448327600956,-0.0011383478995412588,0.048530854284763336,-0.0048650153912603855,-0.04763196036219597,0.12710697948932648,-0.028318341821432114,-0.06492495536804199,0.045627351850271225,-0.08674472570419312,-0.024817094206809998,0.03839914873242378,0.08435887843370438,-0.07359381765127182,0.0700320228934288,-0.0990205630660057,-0.0410853736102581,-0.0294956024736166,-0.1037931889295578,0.02930845506489277,0.04691237583756447,-0.02627192623913288,-0.08407358080148697,-0.05658410117030144,-0.06083790212869644,0.08820299059152603,0.037385500967502594,-0.017826691269874573,-0.10354737937450409,-0.03136184439063072,-0.03319196775555611,0.04069788008928299,-0.09086595475673676,-0.07993032783269882,-0.032612767070531845,0.017157873138785362,-0.04661078751087189,0.04138517379760742,2.1152663786638001e-32,-0.030215749517083168,-0.031908031553030014,0.00038472440792247653,-0.023960627615451813,0.056572325527668,-0.015361041761934757,-0.005748169496655464,-0.06944063305854797,0.013144315220415592,-0.0600396953523159,-0.08284027129411697,0.007565855979919434,-0.06298165768384933,0.013546462170779705,-0.024376552551984787,0.061254143714904785,0.09419471770524979,-0.09651363641023636,-0.025253688916563988,-0.05595145374536514,-0.0587737038731575,0.08846090734004974,-0.012953638099133968,-0.05335088446736336,0.05465564504265785,-0.058753494173288345,-0.02302422560751438,-0.07337396591901779,-0.06106926128268242,0.022289207205176353,0.038454338908195496,-0.030964847654104233,0.018575238063931465,-0.03284173458814621,0.04485633969306946,-0.03601093590259552,-0.008355854079127312,0.07586270570755005,-0.08029674738645554,0.0009748089942149818,0.00463799899443984,0.06940678507089615,0.054733578115701675,0.07295465469360352,0.024186762049794197,0.01629752479493618,-0.0013231664197519422,0.05559438094496727,0.08732594549655914,-0.03840810805559158,-0.013055871240794659,0.07586751878261566,-0.018398424610495567,-0.05757909640669823,0.06546546518802643,-0.03124268725514412,-0.06673899292945862,0.09542560577392578,-0.04834338277578354,-0.03562002629041672,-0.031116463243961334,-0.0457155741751194,0.0005237017758190632,0.053929246962070465,-0.04228338599205017,-0.03155761957168579,-0.07312588393688202,0.018502697348594666,0.08373361080884933,-0.03134841099381447,-0.06101462244987488,-0.004171587992459536,-0.05819361284375191,0.009528035297989845,-0.027913043275475502,0.054057274013757706,0.01711876317858696,0.009280946105718613,-0.07911475747823715,-0.0445491224527359,-0.07648801803588867,0.04097311571240425,-0.01518204901367426,0.06642966717481613,0.08175098150968552,0.008936221711337566,0.004698792938143015,0.04148886725306511,0.0556676983833313,0.06450460851192474,0.1257101148366928,0.07888031750917435,-0.030399734154343605,0.0664781704545021,0.002162220887839794,-1.8974419857318516e-32,-0.032633982598781586,-0.01855900138616562,-0.11494991928339005,0.049629874527454376,-0.025816308334469795,-0.012490358203649521,-0.06073679029941559,0.06497350335121155,-0.053212955594062805,-0.03954797983169556,-0.007897990755736828,-0.005640042945742607,0.07418788969516754,-0.007812559604644775,-0.01428716629743576,0.0344606414437294,0.07134124636650085,0.10761305689811707,-0.056392818689346313,0.013586471788585186,0.03482678905129433,0.011794599704444408,0.05028584599494934,-0.0811348482966423,-0.00880061462521553,0.06580598652362823,0.0402674600481987,-0.03881114721298218,-0.06947124749422073,-0.05880693718791008,0.03584623336791992,0.01687273010611534,-0.049718935042619705,-0.0007981446105986834,-0.007340575568377972,-0.010279753245413303,0.11485470831394196,0.009390422143042088,-0.02082444541156292,0.06730643659830093,0.021153243258595467,0.11087244004011154,0.05579717457294464,0.02345493622124195,0.02111688442528248,-0.00327245588414371,0.012559819035232067,-0.003981088753789663,-0.05315787345170975,0.00514128478243947,0.04900412634015083,-0.10624873638153076,0.051990192383527756,-0.06470531970262527,0.11347165703773499,-0.06142354756593704,-0.03997044637799263,-0.01340030413120985,-0.06204358488321304,0.012744096107780933,0.07346189767122269,0.02934846095740795,-0.011852804571390152,-0.07558850944042206,0.022662030532956123,0.019539060071110725,-0.018898939713835716,0.043623000383377075,-0.02913031540811062,0.001126173185184598,0.061469223350286484,-0.10548274964094162,-0.059909600764513016,-0.039250995963811874,-0.02919960394501686,-0.06227128952741623,0.0028343091253191233,0.0374712310731411,0.017351318150758743,0.033820223063230515,-0.0780833438038826,-0.005073187872767448,-0.0006800841656513512,-0.006183683406561613,-0.007668373174965382,-0.0032927037682384253,0.018307657912373543,0.003705528797581792,0.04390812665224075,0.03705599531531334,-0.00011639023432508111,-0.046689342707395554,-0.011529717594385147,-0.05730164423584938,0.04302605614066124,-6.480073722059387e-8,0.002812100574374199,-0.05939815193414688,-0.007206543814390898,-0.017705311998724937,0.06027667224407196,-0.029716206714510918,0.013981313444674015,-0.04935431852936745,-0.0021798168309032917,0.056931234896183014,-0.043058447539806366,0.03138585016131401,-0.01227068156003952,0.02341967076063156,0.003773057833313942,0.03910838067531586,0.0916878804564476,0.04335496574640274,-0.002100076526403427,-0.1166328489780426,0.049975574016571045,-0.0447709783911705,-0.027315009385347366,-0.004582551773637533,0.008173825219273567,-0.0070085469633340836,0.025065165013074875,-0.06219998747110367,-0.017819203436374664,-0.04419839382171631,0.010308798402547836,-0.0077760848216712475,0.006790680345147848,-0.09658244252204895,-0.018514323979616165,0.08141762763261795,0.08351121097803116,0.06559962779283524,0.017502618953585625,-0.07618401944637299,0.0004158660303801298,-0.008582152426242828,0.06432332843542099,0.01469217799603939,0.005729085300117731,-0.03751672804355621,0.014159295707941055,0.03666563332080841,-0.01610591821372509,-0.051006022840738297,-0.021748201921582222,-0.0288999006152153,0.1291460245847702,0.020986663177609444,-0.029447956010699272,-0.07417038828134537,0.028106670826673508,0.06164413318037987,-0.00010337650019209832,-0.02610461227595806,0.08258914202451706,0.06583418697118759,-0.02258075214922428,0.012882474809885025]},{"text":"Fugit retro 5 Levis iuventas et decor, arida Pellente lascivos amores Canitie facilemque somnum.","book":"Homage to Catalonia","chapter":13,"embedding":[-0.023437416180968285,0.1295456439256668,0.05323072895407677,0.02488034963607788,-0.05437984690070152,0.018239859491586685,0.0981205403804779,-0.02401788905262947,0.016957364976406097,-0.014748870395123959,0.030980857089161873,-0.05093659833073616,-0.007847175002098083,-0.07136549055576324,-0.0009558387100696564,-0.035001061856746674,-0.017781421542167664,0.11124614626169205,-0.016610581427812576,0.05245388671755791,0.10111895203590393,-0.08924924582242966,-0.00661682803183794,0.08428189158439636,-0.07797954231500626,0.01330962497740984,-0.03082956187427044,0.03578037768602371,-0.025125764310359955,-0.10621685534715652,0.014872855506837368,0.11100157350301743,-0.05365398898720741,-0.0015594861470162868,-0.0018226751126348972,0.04556931182742119,-0.04822378605604172,-0.09208983182907104,0.010186218656599522,0.040081217885017395,-0.06952590495347977,-0.06826480478048325,-0.043802209198474884,-0.0237406175583601,-0.025617236271500587,-0.004158579278737307,0.01997758448123932,0.0598892979323864,0.015655353665351868,0.03368142247200012,-0.034044474363327026,0.034649837762117386,-0.043425481766462326,-0.07788150757551193,0.005389000289142132,-0.008135768584907055,0.00018336121866013855,-0.05763690173625946,-0.00569545105099678,-0.027384096756577492,0.04398772865533829,0.038573477417230606,-0.081046923995018,0.009147386066615582,-0.0476064458489418,-0.012276768684387207,-0.0711904764175415,0.012796702794730663,-0.0015320411184802651,0.03847659006714821,0.14318670332431793,-0.1068786010146141,0.025972219184041023,0.04223846644163132,-0.028395261615514755,0.011262180283665657,-0.03911130502820015,-0.02026267722249031,-0.07033491879701614,-0.10760550200939178,0.024612832814455032,-0.01887620985507965,0.04736268147826195,-0.027869807556271553,-0.03242364525794983,-0.003495281096547842,-0.01919809728860855,-0.010641735047101974,0.05670320615172386,0.0052473824471235275,0.03771510347723961,-0.0016095759347081184,-0.0783105120062828,-0.019480448216199875,0.009454850107431412,-0.0019244070863351226,-0.04043007269501686,-0.023080209270119667,0.01324392668902874,0.03765801712870598,0.0012341949623078108,0.04024013876914978,0.06596466153860092,0.14114977419376373,-0.03654387965798378,-0.05239875987172127,0.011015286669135094,-0.05856708064675331,-0.0049130418337881565,-0.01706092432141304,-0.09093138575553894,-0.09496937692165375,-0.018034549430012703,-0.11421788483858109,-0.006409831810742617,0.026745347306132317,0.044346097856760025,-0.04803294688463211,0.0235439483076334,-0.04997568577528,0.057867806404829025,0.006992400623857975,0.043021392077207565,0.03177834674715996,-0.020026445388793945,-0.03168192505836487,0.024602018296718597,5.720301547250774e-33,-0.03414853289723396,-0.008934405632317066,-0.01228652149438858,0.05114005133509636,0.005909057799726725,-0.09092777222394943,0.016503265127539635,-0.0790281891822815,0.009117448702454567,-0.023956989869475365,-0.0509142242372036,-0.015277694910764694,0.0012569091049954295,0.050727106630802155,0.0641375407576561,-0.018917901441454887,0.07968021929264069,-0.08223987370729446,0.05202263221144676,-0.08228011429309845,-0.0581418015062809,0.02148575894534588,0.03178156539797783,-0.05839936062693596,-0.030774742364883423,0.057083610445261,0.03227465972304344,0.020858999341726303,0.014885821379721165,0.03431382402777672,0.08196942508220673,-0.013368362560868263,0.030386023223400116,-0.08866181969642639,-0.011071823537349701,0.030830370262265205,-0.012744629755616188,0.037772759795188904,0.03123054839670658,0.06246745213866234,0.04391361400485039,-0.0025885712821036577,0.07412067800760269,0.01354929618537426,0.028328698128461838,0.1397254765033722,0.08270112425088882,0.09920675307512283,0.10989849269390106,0.014760288409888744,0.019361749291419983,-0.005772649310529232,-0.09441959857940674,-0.005368397105485201,-0.0026895359624177217,0.010030033998191357,-0.048656683415174484,0.057374466210603714,-0.03973179683089256,-0.05167434737086296,0.08280906826257706,-0.041447438299655914,-0.005065585020929575,-0.05141637101769447,0.036210037767887115,-0.005333108361810446,0.03941464424133301,0.022435221821069717,0.04444248601794243,0.041860684752464294,-0.0804353654384613,-0.033056072890758514,0.04714261740446091,0.059635091572999954,-0.006162344943732023,0.06114073097705841,0.01901315525174141,-0.08371270447969437,-0.04329944774508476,0.015050331130623817,-0.10736633092164993,-0.014443491585552692,0.011842207051813602,0.026940716430544853,0.01576496846973896,0.044763751327991486,0.07133135944604874,-0.002888241782784462,0.03806307911872864,0.049437522888183594,-0.0002666491491254419,0.01002830732613802,0.07200892269611359,-0.04118635877966881,-0.03776484727859497,-6.84351652150421e-33,0.00520750368013978,-0.014717762358486652,-0.042769547551870346,0.12834054231643677,0.006195765919983387,-0.002689376240596175,-0.09920753538608551,0.03759578987956047,-0.053109779953956604,0.07086800783872604,-0.08920666575431824,-0.04178681969642639,0.055801115930080414,-0.09840317070484161,-0.059107616543769836,0.08679412305355072,0.028270471841096878,0.07165718823671341,-0.011115365661680698,0.019948838278651237,-0.013438651338219643,0.1088728979229927,-0.0014992880169302225,-0.04471113532781601,-0.06845446676015854,0.03270548954606056,0.07681076228618622,-0.06347839534282684,-0.03489474952220917,0.016270741820335388,0.034829530864953995,-0.045768529176712036,0.017558259889483452,0.024638861417770386,0.047179821878671646,-0.0036055087111890316,0.09584599733352661,0.014965714886784554,-0.06748342514038086,-0.01949916034936905,-0.006159110460430384,0.0325469933450222,0.08168530464172363,0.008611563593149185,0.06597340106964111,-0.07462900131940842,-0.12464763224124908,-0.009211083874106407,-0.03423580527305603,-0.03624935820698738,0.0724962055683136,-0.05588894709944725,-0.005450786091387272,-0.06392621994018555,0.005497215315699577,-0.04124411940574646,0.06250613927841187,0.009321005083620548,-0.012675095349550247,0.033941853791475296,0.046789031475782394,-0.010034999810159206,0.03509735316038132,-0.08951984345912933,0.09635709971189499,0.046164046972990036,-0.06717276573181152,-0.03903437405824661,-0.04468221217393875,0.03926929831504822,0.02126261405646801,-0.08717186003923416,-0.12812452018260956,-0.02316025085747242,-0.061904989182949066,0.03239542245864868,0.04918506368994713,0.1055072769522667,0.03331472724676132,0.01277933269739151,-0.025661099702119827,-0.039751481264829636,-0.05746056139469147,0.044719353318214417,-0.037684813141822815,-0.048392683267593384,-0.0029069697484374046,0.005864770617336035,0.06525612622499466,0.022013384848833084,0.01776142045855522,-0.005403646267950535,0.05668533220887184,-0.04556436091661453,-0.021341074258089066,-2.9283128810675407e-8,0.004306247923523188,-0.08305880427360535,-0.04045680910348892,0.03613080456852913,-0.013443714939057827,0.012593970634043217,-0.03369918465614319,-0.05087515711784363,-0.017200836911797523,0.020526237785816193,-0.04601952061057091,0.03518730401992798,-0.02779911644756794,0.09671563655138016,-0.010534931905567646,0.01622171327471733,0.04912226274609566,0.03865491598844528,-0.06454335153102875,-0.04170330613851547,0.014870916493237019,0.02283085696399212,-0.054702017456293106,-0.05322736129164696,-0.059979986399412155,0.03226105868816376,0.024373574182391167,-0.0009147545206360519,0.011151016689836979,0.0029126121662557125,0.023073779419064522,-0.0044921888038516045,-0.02714725024998188,-0.0709780678153038,-0.030850745737552643,0.07706843316555023,-0.021624764427542686,0.0003885874175466597,-0.02233167551457882,0.06916426122188568,0.022662458941340446,-0.026174286380410194,0.08838019520044327,0.0010614556958898902,0.015603211708366871,-0.10763298720121384,-0.0032451695296913385,-0.020113630220294,-0.03664370998740196,0.0574612021446228,-0.06152872368693352,-0.02978997491300106,0.026113459840416908,0.02561246044933796,-0.08433118462562561,-0.057214558124542236,-0.0046321009285748005,0.049834806472063065,0.019421977922320366,0.003149868454784155,0.09500809013843536,0.02105591632425785,-0.031217364594340324,-0.0593334399163723]},{"text":"Cur non sub alta vel platano vel hac Pinu iacentes sic temere et rosa Canos odorati capillos, 15 Dum licet, Assyriaque nardo Potamus uncti?","book":"Homage to Catalonia","chapter":13,"embedding":[-0.04211130365729332,-0.037924427539110184,-0.033400725573301315,0.0009820811683312058,-0.005478075239807367,-0.018049664795398712,0.020142192021012306,0.004594690166413784,0.019861966371536255,-0.03840414807200432,0.08632956445217133,-0.10170586407184601,-0.03486873582005501,-0.00613726582378149,-0.12634293735027313,-0.008632357232272625,-0.04833124205470085,0.06871774047613144,0.024375678971409798,-0.001696440507657826,0.026378031820058823,0.006575212348252535,0.0708642452955246,0.0573982298374176,-0.08560255169868469,-0.010143013671040535,-0.013026994653046131,-0.017618322744965553,-0.011632747948169708,-0.05131836608052254,0.06774014234542847,0.03149985149502754,0.08031462877988815,-0.05075256526470184,-0.002207149751484394,-0.008996816352009773,0.02726752683520317,-0.1131315752863884,0.062415119260549545,0.029536938294768333,-0.11200284212827682,-0.08666811138391495,-0.0871272087097168,0.021044615656137466,-0.0027865988668054342,0.05860476940870285,0.027570491656661034,-0.00008925951988203451,0.008494946174323559,-0.020851505920290947,0.014670341275632381,0.03029777482151985,-0.030550416558980942,-0.02641928195953369,-0.05933346226811409,-0.034230317920446396,0.01591789722442627,-0.013164583593606949,0.024588285014033318,0.005218207836151123,0.025611363351345062,0.05024885758757591,-0.059159696102142334,0.028325343504548073,0.0041428362019360065,0.04263720288872719,-0.009487186558544636,0.030539585277438164,-0.049759939312934875,-0.005270941648632288,0.10352878272533417,-0.06640038639307022,-0.025586161762475967,0.0169171541929245,-0.033566031605005264,0.06564424186944962,-0.004828873090445995,0.02359168604016304,0.04225950688123703,-0.0613459013402462,-0.047925252467393875,0.033558305352926254,-0.04473384469747543,0.06605888158082962,-0.01650153659284115,-0.03657571226358414,-0.03823082521557808,-0.01361820288002491,-0.02029551938176155,-0.01039983332157135,0.05784156173467636,0.023815276101231575,-0.03489569202065468,-0.050728943198919296,0.0358637273311615,-0.03971681371331215,0.004040705505758524,-0.009827668778598309,-0.04694424569606781,-0.015400153584778309,0.023574452847242355,0.08599056303501129,-0.06654223054647446,-0.02291962318122387,-0.10286378115415573,-0.009764233604073524,-0.010886107571423054,-0.06460949778556824,-0.011416188441216946,0.06570122390985489,0.0119867455214262,-0.09184011071920395,-0.052804071456193924,-0.07887304574251175,0.0513836145401001,-0.02645649015903473,0.0604001060128212,-0.08659489452838898,0.004081737250089645,-0.05318249389529228,-0.07416729629039764,-0.0704072043299675,0.03597790747880936,-0.020198646932840347,0.03920047730207443,-0.06076059117913246,-0.00876210629940033,1.0719828896827693e-32,-0.1014285609126091,-0.018494490534067154,-0.04084541276097298,-0.009750910103321075,-0.043718013912439346,-0.03303554654121399,-0.020452700555324554,-0.018229462206363678,0.010459991171956062,0.024280432611703873,-0.055371131747961044,0.010869394056499004,-0.03315495327115059,-0.05279570445418358,0.09792555868625641,0.04376488924026489,0.1345803588628769,-0.013496127910912037,-0.037345413118600845,-0.06480821967124939,-0.0855022743344307,0.10309748351573944,0.04788045585155487,-0.02330135367810726,-0.005461202934384346,0.0025349860079586506,-0.04803595319390297,-0.05318045988678932,-0.0027079947758466005,0.0028650725726038218,0.11644459515810013,0.06683246791362762,0.015027329325675964,0.013607289642095566,-0.008980954065918922,0.016153469681739807,0.022795794531702995,0.01595662534236908,-0.01355125941336155,-0.03925564885139465,0.014224356040358543,0.04413030296564102,0.16320359706878662,0.015897873789072037,0.048770517110824585,0.09860116988420486,-0.023715130984783173,0.011544077657163143,0.04221523180603981,-0.07166917622089386,-0.022164596244692802,0.018900632858276367,-0.09447304904460907,-0.012030093930661678,0.08214210718870163,0.07613474875688553,-0.0986417755484581,0.08106265962123871,0.0290190652012825,-0.013192127458751202,0.008735967800021172,0.03622358292341232,0.02627202495932579,-0.0026063660625368357,-0.02498173899948597,0.005626842845231295,-0.04979994520545006,0.0051285456866025925,0.11369843780994415,0.009226101450622082,-0.03204624354839325,0.008785514160990715,-0.020471438765525818,0.07502581179141998,-0.04892873764038086,0.07730186730623245,0.029532449319958687,0.00787834171205759,0.020817948505282402,-0.0248482096940279,-0.10223305225372314,-0.08344205468893051,0.026826495304703712,0.08762647956609726,0.08462636172771454,0.02076069265604019,0.025825731456279755,0.01883169822394848,0.031630076467990875,0.06197001039981842,-0.05724763125181198,-0.012999926693737507,0.017562970519065857,-0.07440879940986633,0.018764855340123177,-1.0533008314335476e-32,0.0529387928545475,-0.05077190324664116,-0.09008622914552689,0.007785265799611807,-0.07741104066371918,-0.029305363073945045,-0.09711823612451553,0.03128352016210556,0.009824504144489765,0.04376577213406563,-0.004718342330306768,-0.03284066170454025,0.0771453008055687,-0.06110500544309616,-0.015873782336711884,0.09372130036354065,0.0409448966383934,0.03610345348715782,-0.0494571216404438,-0.0270979106426239,-0.10758424550294876,0.04481019824743271,0.019026637077331543,-0.04881105199456215,-0.07780691236257553,0.024245256558060646,-0.0022879482712596655,-0.032286204397678375,-0.0350232869386673,-0.04358644783496857,0.05228050798177719,-0.01032327488064766,0.03296241909265518,0.05503753572702408,0.007955973036587238,-0.0358663946390152,0.11097664386034012,-0.017471659928560257,0.010159800760447979,0.027429822832345963,0.0227230004966259,0.039848070591688156,0.08449340611696243,-0.07052323967218399,0.005152999423444271,-0.060202423483133316,-0.08331974595785141,-0.1072959452867508,-0.057670168578624725,-0.004246003460139036,0.10464370250701904,-0.017297063022851944,-0.02318498119711876,0.012659284286201,0.030072521418333054,0.009467415511608124,0.013926033861935139,-0.056543461978435516,-0.04301124066114426,-0.03732457756996155,0.08099706470966339,0.022869031876325607,-0.02223234809935093,-0.06481511145830154,0.11879223585128784,-0.06402182579040527,-0.09344211965799332,0.028805876150727272,0.011925410479307175,-0.022756241261959076,0.05041133612394333,-0.10320891439914703,-0.0009623103542253375,-0.03776703029870987,-0.06525488942861557,-0.04733274132013321,0.008686347864568233,0.024099260568618774,0.03291897475719452,-0.08315756171941757,-0.07946881651878357,-0.032520294189453125,-0.010774248279631138,-0.005509675480425358,0.0478607676923275,-0.034309420734643936,0.020562337711453438,-0.04197383299469948,0.08319950848817825,0.038440003991127014,0.0063575152307748795,0.004156235605478287,0.033378954976797104,-0.018999049440026283,0.02426130697131157,-4.17894803206309e-8,-0.003258619923144579,-0.060879483819007874,0.0014485659776255488,0.07649274915456772,0.05580301210284233,-0.018512867391109467,-0.036900218576192856,0.003654703265056014,-0.0719524398446083,0.061788275837898254,-0.02090090699493885,0.02099434845149517,-0.09359822422266006,-0.003026135265827179,-0.001336882938630879,0.044712748378515244,0.07861916720867157,0.015055711381137371,-0.007286314852535725,-0.09486797451972961,0.015091885812580585,0.04859529808163643,-0.021986817941069603,-0.019492780789732933,-0.09335669130086899,-0.022405486553907394,0.014699893072247505,-0.043949395418167114,0.04645497351884842,-0.05846516415476799,0.03608863428235054,0.03900803253054619,0.04476601257920265,-0.06510581821203232,0.07247072458267212,0.05455993488430977,0.026260308921337128,-0.006193914916366339,-0.048576243221759796,0.03191133588552475,0.024097414687275887,0.007998142391443253,0.03264378756284714,-0.005448433570563793,0.07206863164901733,-0.05489347130060196,-0.018370389938354492,0.04759886488318443,0.042690031230449677,0.0807124450802803,-0.024538595229387283,0.04882645606994629,0.0935535877943039,0.07997361570596695,0.017868399620056152,-0.03003624454140663,0.003004244063049555,0.03781340643763542,0.031268924474716187,0.062082864344120026,0.1364476978778839,0.0667438954114914,-0.005908360704779625,-0.04490022733807564]},{"text":"Eburna, die age, cum lyra Maturet, in comptum Lacaenae More comam religata nodum.","book":"Homage to Catalonia","chapter":13,"embedding":[0.1188170462846756,-0.022497456520795822,-0.07707980275154114,-0.04801727086305618,-0.030367715284228325,0.06748222559690475,-0.048898473381996155,0.06164931505918503,-0.034295421093702316,0.052673231810331345,0.09742274135351181,-0.13348083198070526,-0.03502797707915306,0.005143140442669392,-0.0042615896090865135,-0.02428230457007885,-0.02997247315943241,-0.0036825670395046473,-0.03384559974074364,-0.04941946640610695,0.08663353323936462,0.060120590031147,0.03637992963194847,0.05228596553206444,-0.024278316646814346,-0.05972075089812279,-0.08484169095754623,-0.004987963475286961,0.004960265941917896,-0.10757075250148773,-0.01824718341231346,0.06591969728469849,0.043146684765815735,0.003672077553346753,-0.026825906708836555,-0.013194967061281204,-0.02450449764728546,-0.029297323897480965,0.09243103861808777,0.05389887094497681,-0.0374198779463768,0.014242289587855339,-0.006658762693405151,-0.0012642072979360819,-0.02764449268579483,0.020334070548415184,-0.011192567646503448,0.08134221285581589,-0.0030732916202396154,0.027454717084765434,-0.04085058718919754,-0.15272067487239838,-0.1380581110715866,0.07954247295856476,-0.01055569015443325,0.02526457980275154,-0.017076293006539345,-0.01863173581659794,0.05027526617050171,-0.0381079763174057,-0.0038798488676548004,0.013112468644976616,0.02743714116513729,0.003110927063971758,-0.044553764164447784,-0.009438764303922653,0.021977679803967476,-0.015079338103532791,-0.005057361908257008,-0.015816375613212585,0.0450093038380146,-0.03226872533559799,-0.07462366670370102,0.06140356510877609,-0.07009052485227585,0.014039036817848682,0.016393670812249184,-0.025321463122963905,-0.04108811914920807,0.0006092212861403823,-0.07568282634019852,0.06018174812197685,-0.06715105473995209,0.0005446258001029491,-0.037990305572748184,-0.049962207674980164,-0.012449293397367,0.020861810073256493,0.026283802464604378,-0.032965004444122314,0.01756773144006729,0.10574793070554733,-0.08714794367551804,0.01929890736937523,-0.03662101924419403,0.03705877810716629,0.02138378843665123,-0.0663101077079773,-0.027258554473519325,-0.03801717236638069,-0.06088045611977577,-0.04435703158378601,-0.05108976736664772,0.040048591792583466,-0.1602233648300171,-0.010993416421115398,-0.004592737648636103,-0.021270645782351494,-0.006880764849483967,-0.029823193326592445,-0.04321572184562683,-0.073826864361763,-0.006031156051903963,-0.026836585253477097,-0.0008746180683374405,0.030818700790405273,0.011157920584082603,-0.08829715847969055,-0.0036656365264207125,-0.06111688166856766,0.09216070920228958,-0.02468305267393589,0.062365077435970306,-0.00018513973918743432,0.03863275423645973,-0.10026669502258301,0.009782618843019009,3.409458549080673e-33,0.010107162408530712,-0.05898870900273323,-0.021448107436299324,0.0628853514790535,0.1178629994392395,0.042223669588565826,-0.005414179060608149,-0.01434717420488596,-0.05098964646458626,-0.0599161833524704,-0.10134707391262054,-0.027290862053632736,-0.0337381474673748,-0.07924004644155502,-0.03785806894302368,0.0978207141160965,0.022872159257531166,0.04627130180597305,-0.03292137756943703,0.026177873834967613,-0.024189984425902367,0.08718131482601166,0.06285326927900314,-0.02942720800638199,0.05579468607902527,-0.0028040860779583454,0.03748776763677597,-0.005396805703639984,-0.005542993079870939,-0.006419540382921696,0.1217365711927414,-0.09346631169319153,-0.04186438396573067,0.032621197402477264,-0.013939513824880123,0.03463612496852875,-0.04339486360549927,0.025111867114901543,-0.0274271871894598,0.011816447600722313,0.0147905508056283,0.06819314509630203,0.04383498802781105,0.035410284996032715,0.03879588469862938,-0.06823217868804932,0.014548717066645622,0.017617778852581978,0.0356140211224556,-0.0123380646109581,0.0411277674138546,0.024127265438437462,-0.0027525743935257196,-0.015189907513558865,-0.0424722395837307,0.05630415678024292,-0.06480126082897186,0.10833942890167236,-0.015066197142004967,0.019222470000386238,0.0773942694067955,-0.004019026644527912,-0.02244640700519085,0.020529214292764664,0.05893952026963234,0.0322999469935894,-0.061037011444568634,-0.025580620393157005,0.0890459343791008,-0.014216589741408825,-0.044048063457012177,-0.08141466975212097,-0.0008925454458221793,0.0201250147074461,-0.023099176585674286,-0.009470242075622082,0.027982652187347412,-0.05567032843828201,-0.0656386986374855,-0.01803717203438282,-0.019098998978734016,-0.0385918952524662,-0.08842693269252777,0.027537724003195763,0.03505997359752655,-0.004272067453712225,-0.026770498603582382,0.03846042603254318,0.11049249768257141,0.04495464265346527,0.0294183436781168,-0.0032241935841739178,0.03982389718294144,0.031249456107616425,0.0722464919090271,-3.259907382323261e-33,0.06764650344848633,-0.039889056235551834,-0.07251737266778946,0.11484828591346741,0.05182239040732384,-0.0074261389672756195,-0.05700543150305748,0.06993909925222397,-0.03414250165224075,-0.06178468093276024,0.02294263243675232,0.007592493202537298,0.004789907950907946,-0.02510414645075798,0.06330448389053345,0.018042095005512238,0.10934149473905563,0.09136976301670074,-0.02411280944943428,0.009096119552850723,-0.0039398809894919395,0.07277020812034607,-0.04823431000113487,-0.07364407926797867,0.016296815127134323,0.050762683153152466,-0.03068060241639614,0.05707322433590889,-0.03789081051945686,-0.002339309314265847,0.040067799389362335,-0.003956564236432314,0.011284206993877888,-0.05376762896776199,-0.059662289917469025,-0.015231987461447716,0.04701066017150879,-0.07652439922094345,0.0501180924475193,0.016952762380242348,0.06603731960058212,0.038667190819978714,0.06440281122922897,0.038344260305166245,0.04162657633423805,-0.0448639839887619,-0.0158399511128664,0.043739352375268936,0.02289503440260887,0.05654218792915344,0.06502027809619904,-0.06918874382972717,0.01166881900280714,-0.04001793637871742,0.07190394401550293,-0.016042465344071388,-0.004749158397316933,0.010280626825988293,0.05200562626123428,0.017757227644324303,0.04251938313245773,-0.020465943962335587,-0.04257938638329506,-0.025463586673140526,0.031133396551012993,0.012537934817373753,-0.06450694799423218,0.01848292350769043,-0.007497518323361874,0.10399255156517029,0.10626915842294693,-0.04864013195037842,-0.10877759754657745,0.03125031292438507,-0.03289380297064781,-0.015396068803966045,-0.02078862488269806,0.00982704758644104,0.01994532160460949,0.03263628110289574,-0.061210379004478455,0.014442052692174911,0.030621277168393135,-0.002285381779074669,0.031093522906303406,-0.08156022429466248,-0.02583637833595276,-0.04647093266248703,0.006252503953874111,-0.01586730219423771,-0.036563243716955185,-0.13260693848133087,0.009535402990877628,-0.017586173489689827,0.04670374095439911,-2.4809668985881217e-8,0.06655435264110565,-0.0450306162238121,-0.04813637211918831,-0.0259036086499691,0.07166406512260437,-0.09130481630563736,0.03736311197280884,0.0780348926782608,0.05128463730216026,0.004308810457587242,0.0450378954410553,0.03551793470978737,0.1045537069439888,0.01231975294649601,0.06427596509456635,0.040452659130096436,0.017823727801442146,0.04856828972697258,-0.043836601078510284,-0.022330421954393387,0.014094999991357327,-0.03499104082584381,-0.00743508106097579,-0.013141118921339512,-0.0672704353928566,-0.056072451174259186,0.08081673085689545,0.09555034339427948,-0.03151904419064522,-0.059333935379981995,0.017453132197260857,0.031631506979465485,0.14353792369365692,-0.0759015828371048,-0.022274188697338104,0.036084286868572235,0.0011666109785437584,0.0758637934923172,0.0008098200196400285,-0.0050325836054980755,-0.008824883960187435,-0.07745791971683502,0.07156526297330856,-0.051479119807481766,0.0005548071349039674,-0.08945288509130478,0.022146010771393776,-0.012696842662990093,0.00005622402022709139,-0.052318960428237915,0.01545972004532814,-0.033791638910770416,0.07379715889692307,-0.038028012961149216,-0.03616058826446533,-0.04985223338007927,0.030868299305438995,0.010518698953092098,0.026829442009329796,0.01018805243074894,0.06556060910224915,0.0121241994202137,0.10219376534223557,-0.04524623975157738]},{"text":"Ille et nefasto te posuit die, Quicumque primum, et sacrilega manu Produxit, arbos, in nepotum Perniciem opprobriumque pagi; Illum et parentis crediderim sui 5 Fregisse cervicem et penetralia Sparsisse nocturno cruore Hospitis; ille venena Colcha Et quidquid usquam concipitur nefas Tractavit, agro qui statuit meo 10 Te triste lignum, te caducum In domini caput immerentis.","book":"Homage to Catalonia","chapter":13,"embedding":[-0.0201092716306448,-0.006897386629134417,-0.01611507125198841,-0.05109665170311928,-0.06939615309238434,-0.023189816623926163,0.12089789658784866,0.17923496663570404,0.04965544492006302,0.0790947675704956,0.0870632529258728,-0.09503814578056335,0.031618766486644745,-0.01057029701769352,-0.1652139127254486,-0.10416994988918304,0.0019254271173849702,0.015992997214198112,0.020981770008802414,0.010850395075976849,-0.012410788796842098,0.03414526209235191,-0.04150852560997009,-0.048394761979579926,-0.10840034484863281,0.03387989103794098,-0.06799844652414322,-0.018336789682507515,0.05696564540266991,-0.01762409508228302,0.007004427257925272,0.08323219418525696,-0.006752298679202795,-0.06422456353902817,0.029796920716762543,-0.042055245488882065,-0.0805363804101944,-0.07254818826913834,0.037497300654649734,0.020181870087981224,0.03467733412981033,-0.022021638229489326,-0.0926106795668602,-0.06661750376224518,0.02308151125907898,0.04237973317503929,-0.011997134424746037,0.08493393659591675,0.004260622896254063,-0.0040266974829137325,-0.04855004698038101,-0.031025726348161697,0.005522702354937792,0.06370506435632706,-0.05388754606246948,-0.049161896109580994,0.000013482736903824843,-0.032565467059612274,-0.01144061703234911,0.062396470457315445,-0.07787415385246277,0.054446496069431305,0.02285965532064438,-0.02291228622198105,-0.006539449095726013,0.011594254523515701,0.009931371547281742,-0.008512796834111214,-0.05061696469783783,0.10573332011699677,0.12224096059799194,0.01933753304183483,-0.012273200787603855,0.05761009082198143,-0.026831403374671936,0.1142626479268074,-0.020953448489308357,-0.0674433782696724,0.0026259159203618765,-0.08320361375808716,-0.003264514496549964,0.08322081714868546,0.05102486535906792,0.016772480681538582,-0.016588009893894196,-0.03735522925853729,0.04250548407435417,0.00016149495786521584,0.0928300991654396,-0.03158341348171234,0.024703044444322586,0.032598622143268585,-0.06245026737451553,-0.038434915244579315,-0.026454558596014977,0.030979013070464134,-0.048603352159261703,-0.026686031371355057,-0.05964236333966255,-0.05095866695046425,-0.029736248776316643,-0.04101570323109627,-0.041733548045158386,-0.01909991353750229,-0.10441228002309799,0.0018688066629692912,-0.03289409354329109,-0.06516696512699127,0.01517879031598568,0.08917740732431412,-0.06408959627151489,-0.017056500539183617,0.01624692976474762,-0.11077538132667542,-0.03357483819127083,0.024170443415641785,0.03889729455113411,-0.09403210133314133,0.016212014481425285,-0.09798496961593628,-0.0026454098988324404,-0.08055413514375687,-0.005744514521211386,-0.046316783875226974,0.057468805462121964,-0.05892598628997803,0.07575356215238571,2.0432798393034125e-32,-0.0747896209359169,-0.06351322680711746,0.008293499238789082,0.021464059129357338,-0.019028998911380768,0.030607108026742935,-0.08328145742416382,-0.040292318910360336,0.06558914482593536,-0.10113897174596786,-0.037041403353214264,-0.055174846202135086,-0.02389831468462944,0.019653109833598137,-0.06289803236722946,0.04558708518743515,0.07878109067678452,-0.04833107814192772,0.008691154420375824,0.026531808078289032,-0.06647877395153046,0.04304269701242447,-0.003757297992706299,0.0044563631527125835,0.021246150135993958,0.05988088622689247,0.009756654500961304,-0.06726288050413132,-0.04307064414024353,-0.01536928303539753,0.09263536334037781,0.026772959157824516,-0.006001737434417009,0.027803538367152214,0.009928576648235321,0.03739595785737038,0.015934864059090614,0.008436188101768494,-0.07171304523944855,0.05576521158218384,-0.021035529673099518,0.04169911891222,0.09630490094423294,0.0014190641231834888,0.09665439277887344,-0.03812577575445175,0.0002831120800692588,0.030009865760803223,0.048396941274404526,-0.008809955790638924,0.049476515501737595,0.06362518668174744,0.02417312189936638,-0.04364250972867012,-0.01420275866985321,0.00045927363680675626,-0.0704546794295311,0.10378570854663849,0.04805988073348999,-0.0009909437503665686,0.04729004576802254,-0.014300291426479816,-0.04819362983107567,0.03708842769265175,-0.00782837625592947,-0.011364445090293884,-0.09438907355070114,-0.030114585533738136,0.0915021151304245,0.021421514451503754,-0.06569287925958633,0.0009265652042813599,-0.00022838928271085024,0.023971419781446457,-0.011192775331437588,0.05955369397997856,0.025217967107892036,-0.014823030680418015,-0.054757531732320786,-0.03553125634789467,-0.06445205956697464,-0.04580749198794365,0.01647064834833145,-0.016674546524882317,0.03335520625114441,-0.009696309454739094,-0.022342277690768242,0.10555063188076019,0.049103669822216034,0.0013300784630700946,0.10172072798013687,0.04228465259075165,-0.055347561836242676,0.05412757024168968,-0.033227451145648956,-1.9200076569109993e-32,-0.0556500144302845,-0.026206158101558685,-0.020053353160619736,0.07353552430868149,0.005305120255798101,0.03956540673971176,-0.06427916884422302,0.06546022742986679,0.031378429383039474,-0.05144958570599556,-0.033432736992836,-0.008777481503784657,0.03141893073916435,-0.04421273618936539,-0.022699343040585518,0.05533381178975105,0.006770635023713112,0.03273412957787514,-0.02312975935637951,-0.03586449846625328,-0.05450785905122757,0.03637957200407982,-0.006421257276087999,-0.050066493451595306,-0.01561072375625372,0.05324970558285713,-0.01706317439675331,-0.04940583556890488,-0.08510447293519974,0.018506815657019615,0.045351818203926086,0.025765007361769676,-0.015081718564033508,0.03652399405837059,0.0037301199045032263,-0.011129828169941902,0.0905073806643486,-0.03805455565452576,-0.006568645592778921,-0.04786183312535286,-0.027950070798397064,0.013105163350701332,0.1325010508298874,0.009775198064744473,0.018997278064489365,-0.06019486486911774,-0.08282070606946945,-0.030313365161418915,0.0011088985484093428,0.042859964072704315,0.04967151954770088,0.019798537716269493,0.014086658135056496,-0.045013152062892914,0.0339883491396904,-0.01859198324382305,-0.021621564403176308,-0.09441730380058289,-0.04648331552743912,0.033882904797792435,0.08543865382671356,0.03721316531300545,0.005570641253143549,-0.0300925150513649,0.039443597197532654,0.06289062649011612,-0.03714846074581146,0.07983677089214325,0.0017358395271003246,0.023289069533348083,0.04488160461187363,0.0314292386174202,-0.10793771594762802,-0.10201121121644974,-0.0075824810191988945,-0.0002008103474508971,0.018243858590722084,0.06364079564809799,0.008818276226520538,0.029897574335336685,-0.050638120621442795,-0.05420512333512306,-0.021630464121699333,-0.02386007271707058,-0.09239954501390457,-0.0339055173099041,-0.015562918968498707,-0.021909812465310097,0.03422417491674423,-0.0003542470221873373,-0.048164524137973785,-0.029514586552977562,-0.006449336186051369,-0.06865298748016357,0.04625364765524864,-6.506152061547255e-8,0.019520483911037445,-0.06760464608669281,-0.041090913116931915,-0.01587538793683052,0.033810075372457504,-0.13067738711833954,-0.013897106051445007,0.02140713296830654,0.01685173250734806,0.09977176040410995,-0.005372790154069662,0.045789048075675964,-0.04607430845499039,-0.029069602489471436,0.06632151454687119,0.0455123633146286,0.059650130569934845,0.034891627728939056,-0.06928455084562302,-0.065800741314888,0.06711608916521072,-0.01825806125998497,-0.055196747183799744,-0.04981425032019615,-0.07181616872549057,-0.03823870047926903,0.0989282950758934,-0.06178814545273781,-0.05841879919171333,-0.041758883744478226,-0.03480789437890053,0.02866138145327568,-0.0075508905574679375,-0.06510115414857864,0.017507828772068024,0.042593616992235184,0.020877063274383545,0.04351729527115822,-0.007904617115855217,-0.016055434942245483,0.042883776128292084,0.023281363770365715,0.021055296063423157,-0.07449983060359955,-0.018727382645010948,-0.022635018453001976,-0.03595577925443649,0.04585626721382141,0.039549123495817184,-0.005684175528585911,-0.02070661634206772,0.04735943302512169,0.05380330979824066,-0.004452008754014969,-0.07100237160921097,-0.0066064028069376945,0.07289153337478638,-0.030450861901044846,0.004739158786833286,0.005086718592792749,0.032175783067941666,0.022289127111434937,0.11278975754976273,0.031501404941082]},{"text":"Quid mirum, ubi illis carminibus stupens Demittit atras belua centiceps Auris, et intorti capillis 35 Eumenidum recreantur angues?","book":"Homage to Catalonia","chapter":13,"embedding":[0.013065150007605553,0.019606631249189377,-0.0010248386533930898,-0.0218645129352808,-0.10251712799072266,0.01871757209300995,0.05192115157842636,0.07370408624410629,-0.010737649165093899,0.08840473741292953,0.05979057401418686,-0.12342872470617294,0.00748682813718915,-0.06436611711978912,-0.11750524491071701,-0.13830415904521942,-0.04610373452305794,0.06699568033218384,-0.013798492960631847,0.025501670315861702,0.049638792872428894,0.019109036773443222,-0.0015632329741492867,0.0343749076128006,-0.03617200255393982,0.03764276206493378,-0.02039395086467266,-0.0597306452691555,0.010852157138288021,-0.10240493714809418,-0.014320861548185349,0.04503427445888519,0.058014173060655594,-0.11259441822767258,0.004650680813938379,-0.012914706952869892,-0.02158191055059433,-0.005723677575588226,0.08750829845666885,0.02468010224401951,-0.006226683035492897,-0.045505866408348083,-0.05538645386695862,0.01091398112475872,-0.009611837565898895,0.005625121295452118,-0.050244901329278946,0.05642262473702431,-0.008200321346521378,0.02295295149087906,-0.03637529909610748,-0.03082210011780262,0.02746819332242012,-0.02727801725268364,-0.12116075307130814,-0.002699222881346941,-0.015321186743676662,-0.026523007079958916,-0.0016959421336650848,-0.01062034536153078,0.01220938004553318,0.006189003586769104,0.02783554419875145,-0.012186946347355843,-0.01806946098804474,-0.018476251512765884,-0.035696305334568024,-0.02421438694000244,-0.06736202538013458,0.0026414457242935896,0.1371975541114807,-0.07296764105558395,-0.09079146385192871,0.014771537855267525,0.007067588623613119,0.021253835409879684,-0.024180011823773384,-0.023624911904335022,0.029730794951319695,-0.04666426405310631,-0.00011233743862248957,0.02792542055249214,0.033788468688726425,0.024052860215306282,0.021903108805418015,-0.023180555552244186,0.03940041363239288,0.015378526411950588,0.021229006350040436,-0.02856646291911602,-0.01689838245511055,0.017331860959529877,-0.009711255319416523,0.026067465543746948,0.011888437904417515,0.017987459897994995,0.01404134277254343,-0.0534246563911438,0.019835377112030983,-0.010267725214362144,0.04458944872021675,0.027427369728684425,-0.0350915752351284,0.04331822320818901,-0.13893090188503265,-0.026904648169875145,-0.03300504758954048,-0.13019438087940216,0.027256106957793236,-0.036763399839401245,-0.04210526496171951,-0.08667413890361786,-0.05513167381286621,-0.051094796508550644,0.03851214796304703,0.005169437732547522,0.009312769398093224,-0.08476826548576355,0.012514973990619183,-0.14790579676628113,0.04549529403448105,-0.05809101089835167,-0.007004833314567804,-0.019854195415973663,0.0676475539803505,-0.026308191940188408,0.027004864066839218,9.440553088507183e-33,-0.11030223220586777,-0.06961032003164291,-0.06701276451349258,0.028767850250005722,-0.056743323802948,-0.007182560861110687,-0.11021141707897186,-0.020940465852618217,-0.03136211261153221,-0.11758895963430405,-0.10090075433254242,-0.018343232572078705,-0.004345654509961605,0.011703047901391983,0.0018041711300611496,0.05388035252690315,0.10845912247896194,0.01702159270644188,0.00002139826574421022,-0.05666814744472504,-0.0665619820356369,0.07393601536750793,0.019477687776088715,0.007740894798189402,0.11348910629749298,0.03758002445101738,-0.0023993265349417925,-0.041603464633226395,0.07497343420982361,0.031169703230261803,0.1090908795595169,0.01899242214858532,-0.06879956275224686,0.0011467770673334599,-0.02320440672338009,0.03387926518917084,0.017837010324001312,0.04373310133814812,-0.09986136108636856,0.006280447822064161,0.02131449431180954,0.06364437937736511,0.08738710731267929,0.005785816349089146,0.04534340649843216,0.03272213041782379,0.04866684228181839,0.0038907078560441732,0.09957879036664963,0.02651950530707836,-0.03496143966913223,0.05302846431732178,0.0029914556071162224,-0.055487439036369324,0.013309750705957413,0.038911063224077225,-0.06237006559967995,0.11075792461633682,-0.07000584155321121,-0.0010146372951567173,0.07047513872385025,-0.004423959646373987,0.03456853702664375,0.02692045085132122,0.02422577701508999,0.06115303188562393,-0.015120693482458591,-0.020212827250361443,0.07440415024757385,0.0441269613802433,-0.1005132794380188,-0.0038825685624033213,-0.0013320789439603686,0.04299694299697876,-0.06575506180524826,0.0422854982316494,0.04668243229389191,-0.008486809208989143,-0.06801395863294601,-0.025957617908716202,-0.09097100794315338,-0.027672825381159782,-0.06579618155956268,-0.020414479076862335,0.11772044003009796,-0.028779221698641777,-0.0031955463346093893,0.030987627804279327,0.14710739254951477,0.05035574734210968,0.04273463413119316,0.012616878375411034,0.004873729310929775,0.06069926172494888,-0.0272265262901783,-9.428451374165467e-33,-0.024497179314494133,0.00966622307896614,-0.09446419775485992,0.15593144297599792,-0.011312331072986126,0.036621276289224625,-0.0799526646733284,0.06934855878353119,-0.001823186525143683,-0.0475647859275341,-0.0392269529402256,-0.02089979499578476,0.016185076907277107,-0.000017289967217948288,0.005017789080739021,0.053679365664720535,0.10834524035453796,-0.01388732623308897,-0.06738223880529404,-0.06778020411729813,-0.03710589557886124,0.02328047901391983,0.03920493274927139,-0.08223630487918854,-0.029166610911488533,0.033600371330976486,-0.025414109230041504,-0.10642446577548981,-0.07225847989320755,-0.030364394187927246,0.022852882742881775,0.007341491058468819,-0.07270322740077972,0.05359579622745514,-0.06992436945438385,-0.007290664594620466,0.10166087746620178,-0.010136893950402737,-0.029068641364574432,0.025147346779704094,-0.018877804279327393,0.042831942439079285,0.06291524320840836,0.044286005198955536,0.03710249438881874,-0.06961756199598312,-0.07341793179512024,0.0035740965977311134,-0.03556292504072189,0.0052045113407075405,0.10660555213689804,0.002082513179630041,0.05435602739453316,-0.0569145530462265,0.07307061553001404,-0.009098217822611332,0.05429649353027344,-0.015544394962489605,-0.013065283186733723,0.022094910964369774,0.027772720903158188,-0.01569240354001522,0.007402372546494007,-0.03929406777024269,0.028754109516739845,-0.014770847745239735,-0.09274294227361679,0.037038154900074005,0.0009134758147411048,0.05139606446027756,0.07137743383646011,-0.07564748823642731,-0.014537952840328217,-0.01316150277853012,0.0010848144302144647,0.023797905072569847,0.010120434686541557,-0.021945981308817863,0.030392570421099663,-0.007485377136617899,-0.03678423538804054,-0.028607774525880814,0.025888457894325256,-0.04621759057044983,-0.062089819461107254,-0.04777839407324791,0.05143097788095474,-0.009696006774902344,0.03752516955137253,0.06147019565105438,-0.0067096310667693615,-0.05903152376413345,0.0620662160217762,-0.016448840498924255,-0.0006050613592378795,-3.698821515740747e-8,0.052562516182661057,-0.012693080119788647,-0.030317680910229683,0.0441221185028553,0.012924104928970337,-0.04424883425235748,-0.041877154260873795,0.06228351220488548,-0.028210049495100975,0.011654471047222614,-0.023179758340120316,0.027691073715686798,0.0069136000238358974,0.07733169943094254,0.07732181251049042,0.06530215591192245,0.07176508754491806,0.04594786837697029,-0.04232088848948479,-0.06020214036107063,0.04840468987822533,-0.014955118298530579,-0.04563918337225914,-0.013956988230347633,-0.08919762820005417,-0.021696187555789948,0.02552112005650997,-0.010333456099033356,-0.025517502799630165,-0.04215215519070625,-0.007019835989922285,0.06457436829805374,0.036094535142183304,-0.06628799438476562,0.02785583771765232,0.02619798108935356,0.00517030106857419,0.058706704527139664,-0.012805715203285217,0.029020417481660843,0.051837433129549026,-0.021657191216945648,-0.002539122710004449,-0.013830135576426983,0.04597128555178642,-0.028537053614854813,0.0041181365959346294,0.02785472571849823,0.031078359112143517,-0.025464192032814026,-0.12283647805452347,-0.0038719677831977606,0.0999579131603241,0.037984754890203476,0.017562005668878555,-0.006383079569786787,0.050535719841718674,-0.0072892801836133,-0.03966152295470238,-0.0011131474748253822,0.019430458545684814,0.07633138447999954,0.025449972599744797,0.004311538767069578]},{"text":"Eheu fugaces, Postume, Postume, Labuntur anni, nec pietas moram Rugis et instanti senectae Adferet indomitaeque morti; Non si trecenis quotquot eunt dies, 5 Amice, places inlacrimabilem Plutona tauris, qui ter amplum Geryonen Tityonque tristi Compescit unda, scilicet omnibus, Quicumque terrae munere vescimur, 10 Enaviganda, sive reges Sive inopes erimus coloni.","book":"Homage to Catalonia","chapter":13,"embedding":[0.030991192907094955,0.06001513823866844,-0.01107589341700077,-0.0581599697470665,-0.13177816569805145,-0.014888235367834568,0.04384276643395424,0.029386261478066444,0.039274346083402634,0.07030492275953293,0.08143460005521774,-0.11946482956409454,-0.02674146369099617,-0.0531073696911335,-0.07488596439361572,-0.042398832738399506,-0.012445176020264626,0.07666394859552383,-0.02572060562670231,-0.016395077109336853,0.05135951191186905,0.00582169322296977,0.04744291305541992,0.028673080727458,-0.05691654980182648,-0.027173316106200218,-0.1162559762597084,-0.03805562108755112,0.006141386926174164,-0.05312596261501312,-0.01745988056063652,0.09203169494867325,0.0769919827580452,-0.002912699244916439,0.11419329047203064,0.01959112659096718,-0.022120876237750053,-0.07989630103111267,0.05853809788823128,0.074321448802948,-0.05241309106349945,-0.025806842371821404,-0.05935358628630638,-0.06691166758537292,-0.009115977212786674,-0.024785729125142097,-0.007590118795633316,0.03562409430742264,0.012881278991699219,-0.015541577711701393,-0.07460234314203262,0.016709186136722565,-0.10645497590303421,0.010835625231266022,-0.03906227648258209,-0.006230315659195185,0.03793027997016907,-0.06127706170082092,0.012705336324870586,-0.06180690973997116,0.08204706013202667,0.0647597536444664,-0.06858989596366882,-0.02307346649467945,-0.04118184372782707,-0.00711103156208992,-0.016538919880986214,-0.0467219203710556,-0.00481385225430131,0.06857866048812866,0.12682612240314484,-0.00018614131840877235,-0.0322733111679554,0.06973188370466232,-0.05779988691210747,0.07055585086345673,-0.049674347043037415,0.0050428337417542934,-0.0797235295176506,-0.12545527517795563,-0.035225819796323776,0.02624654397368431,0.041582997888326645,-0.030232500284910202,-0.030195610597729683,-0.007571761962026358,-0.023260531947016716,-0.0016641417751088738,0.06308199465274811,-0.04192638769745827,0.017557727172970772,-0.0047349766828119755,-0.05725361034274101,-0.028552720323204994,0.07114358246326447,0.014574896544218063,0.01848616637289524,0.04509677365422249,0.003159282263368368,-0.02968708425760269,0.02176973596215248,-0.07526211440563202,-0.0597865916788578,0.03436750918626785,-0.11825156211853027,-0.017142403870821,-0.08053117990493774,-0.09977127611637115,0.05608934164047241,-0.005303414072841406,-0.07483667135238647,-0.06495971232652664,0.009200943633913994,-0.04884850233793259,0.014273984357714653,-0.007251877337694168,0.004998388234525919,-0.06614812463521957,0.0980815440416336,-0.01981649547815323,0.005633104592561722,-0.010377192869782448,0.00983120035380125,-0.018081218004226685,0.044990576803684235,-0.028998935595154762,0.02354614995419979,2.0582303642043458e-32,0.028492659330368042,-0.041010532528162,0.023216066882014275,-0.01781638152897358,0.031842511147260666,-0.09697765856981277,-0.09816458076238632,-0.029927344992756844,0.015176246874034405,-0.06884665787220001,-0.06626132875680923,0.005553264170885086,-0.005379804410040379,0.04073916748166084,0.017020050436258316,0.03409532085061073,0.11349451541900635,-0.015646353363990784,0.03513820469379425,-0.05737406015396118,-0.10578370839357376,0.006722452584654093,0.0003634004679042846,-0.00828199926763773,0.019341766834259033,0.004543999210000038,-0.025029368698596954,-0.06154214218258858,-0.0684189572930336,0.0458645299077034,0.018950173631310463,-0.04759065434336662,0.0307605117559433,-0.0595388300716877,-0.04268251731991768,0.0730619803071022,-0.0027351398020982742,0.004190194886177778,-0.04503514617681503,0.04868216812610626,0.06518088281154633,0.0333777479827404,0.06552291661500931,0.06628768146038055,0.023703930899500847,0.02164711058139801,0.016104215756058693,0.026858873665332794,0.1379675418138504,0.06064607575535774,-0.015672599896788597,-0.013430705294013023,-0.025985635817050934,-0.03390205651521683,-0.04534217342734337,0.025195913389325142,0.005807230249047279,0.03185319900512695,-0.020459825173020363,0.011830992996692657,0.024662932381033897,-0.026233194395899773,0.010505110025405884,-0.010923058725893497,0.043242063373327255,-0.015644852072000504,-0.04847947508096695,0.056882403790950775,0.06795164942741394,0.01000642403960228,-0.1464393436908722,0.013824407942593098,-0.013578813523054123,0.051116038113832474,0.023497560992836952,0.054733145982027054,-0.002740620169788599,-0.10624381899833679,-0.10489451885223389,0.0156509131193161,-0.04773195832967758,-0.06659949570894241,-0.03710727021098137,-0.008655622601509094,0.04263864457607269,0.0077957212924957275,0.011168835684657097,0.04272377863526344,0.08813191950321198,0.00975132267922163,0.02791331335902214,0.01780305616557598,-0.017865890637040138,-0.020226482301950455,-0.00985883828252554,-1.9912927200175337e-32,-0.09511817991733551,0.009528863243758678,-0.12078682333230972,0.1007305160164833,-0.06435361504554749,0.0059973387978971004,-0.08645910024642944,0.04718511179089546,0.026960624381899834,-0.0360124371945858,-0.047403041273355484,-0.039652176201343536,0.11253469437360764,-0.03962923213839531,-0.03705338388681412,0.0046236468479037285,0.01902320794761181,0.0071057905443012714,0.00950517226010561,0.020052911713719368,-0.03806888684630394,-0.026221677660942078,-0.031141269952058792,-0.0658998191356659,0.00974500272423029,0.039506711065769196,-0.0312084648758173,-0.059189729392528534,-0.06496813893318176,0.020419320091605186,0.061257753521203995,-0.004818373825401068,0.02939232811331749,0.041785627603530884,0.005573474336415529,-0.015527130104601383,0.1442798376083374,-0.04589974507689476,-0.01657479628920555,0.0296171847730875,-0.015812987461686134,0.03135727345943451,0.16370967030525208,0.049046970903873444,0.004844794515520334,-0.005200093612074852,-0.04812047258019447,0.017470065504312515,-0.051904402673244476,0.08487579971551895,0.1091434434056282,0.03278161957859993,0.025369536131620407,-0.02465847320854664,0.08641666173934937,-0.058066777884960175,-0.0682435855269432,0.0050203194841742516,-0.05025922879576683,-0.00322210555896163,0.038320381194353104,0.05379028990864754,0.01627575233578682,-0.01773972250521183,0.10843391716480255,0.021060165017843246,-0.09592995792627335,0.03119334578514099,-0.09599913656711578,-0.01428572554141283,0.06313628703355789,-0.0890621691942215,-0.11764127761125565,-0.02421575039625168,-0.04262252897024155,-0.001223238417878747,0.004621212836354971,0.053507834672927856,0.0048696729354560375,0.05969375744462013,-0.08658921718597412,0.008016177453100681,-0.02341732569038868,-0.02262442372739315,-0.00041812588460743427,-0.009508715011179447,-0.0345895029604435,0.0066286358051002026,0.01781257428228855,0.02200029417872429,0.010469990782439709,-0.005955848842859268,0.05241026356816292,-0.05831686034798622,0.00421252753585577,-7.187606598790808e-8,0.03887641429901123,-0.049725402146577835,-0.03917693719267845,0.034015484154224396,0.029953667894005775,-0.08401861041784286,0.06461600214242935,0.07921579480171204,0.027398524805903435,0.0487508662045002,-0.016072576865553856,0.022916199639439583,-0.0342223197221756,0.03598954528570175,0.031180350109934807,-0.039351288229227066,0.05920838564634323,-0.012423954904079437,-0.03221931308507919,-0.036914702504873276,0.019345823675394058,0.007070488762110472,-0.049812208861112595,-0.07528921961784363,-0.03810003027319908,-0.019555849954485893,0.07085622847080231,-0.044172223657369614,-0.024402262642979622,-0.045558881014585495,0.0009607556276023388,0.015254678204655647,-0.02551255002617836,-0.041376929730176926,-0.018382621929049492,0.06796543300151825,0.0030645905062556267,0.052409376949071884,-0.029701868072152138,-0.02145979180932045,0.050028569996356964,-0.038619667291641235,0.005786779802292585,-0.05849712714552879,0.07465595006942749,-0.04704242944717407,0.01141410693526268,0.013205946423113346,0.03585173562169075,-0.050925564020872116,-0.08128189295530319,0.03774436190724373,0.07590562850236893,0.016621075570583344,-0.025951839983463287,-0.016337323933839798,0.029955606907606125,0.023331860080361366,0.0444025844335556,0.06729472428560257,0.07490464299917221,0.02434537559747696,0.03314393013715744,-0.02204439975321293]},{"text":"Absumet heres Caecuba dignior 25 Servata centum clavibus et mero Tinguet pavimentum superbo, Pontificum potiore cenis.","book":"Homage to Catalonia","chapter":13,"embedding":[-0.031854402273893356,0.09114938974380493,-0.02573128417134285,-0.07674603164196014,-0.0643165186047554,-0.011639785021543503,-0.030979104340076447,0.12681175768375397,0.013846137560904026,0.0838584303855896,-0.011972608044743538,-0.13313259184360504,0.002721962286159396,-0.0533154271543026,-0.10314475744962692,-0.08847799897193909,-0.03186973184347153,0.06830893456935883,-0.002234660554677248,0.024272166192531586,0.04069972410798073,-0.012582976371049881,-0.007391105405986309,0.053440503776073456,-0.10093283653259277,0.11558952182531357,-0.04820437729358673,-0.015085761435329914,0.04560746252536774,-0.06704985350370407,0.011415166780352592,0.08506564795970917,0.0072407713159918785,-0.07212324440479279,-0.03492376580834389,-0.009907208383083344,-0.00024927814956754446,-0.05006737262010574,0.0580236092209816,-0.04999089613556862,0.011742718517780304,-0.04263057932257652,-0.003565531922504306,-0.0007750386721454561,0.03306496515870094,0.04509248584508896,-0.037694625556468964,0.05323716253042221,0.04940143972635269,0.001999740954488516,-0.009518998675048351,-0.06996572017669678,-0.03370530158281326,-0.02300390414893627,-0.055748045444488525,0.010540319606661797,0.0027027411852031946,-0.055097538977861404,0.058105047792196274,-0.04996466264128685,0.027102375403046608,0.05344124883413315,-0.012977773323655128,0.023827653378248215,0.024772275239229202,-0.07251131534576416,-0.0367293506860733,-0.00850347988307476,-0.10742858797311783,-0.016027363017201424,0.11115999519824982,-0.04206831380724907,0.056184254586696625,0.043226663023233414,-0.07189292460680008,0.02958439104259014,0.02494709938764572,-0.01278391107916832,-0.03977878764271736,-0.052643366158008575,-0.010417905636131763,0.0047799404710531235,0.020456727594137192,-0.019630005583167076,-0.019548337906599045,-0.03236285224556923,0.031088387593626976,0.01214542891830206,0.06650745868682861,-0.027062907814979553,0.04708239808678627,0.09203756600618362,-0.054155804216861725,-0.03271661698818207,0.02289838157594204,0.07539170980453491,-0.1293599158525467,-0.004362083971500397,0.011007850989699364,-0.03430331498384476,0.06961718946695328,0.0332011841237545,-0.002843060763552785,-0.04101505130529404,-0.1142362654209137,0.021634560078382492,-0.03793660178780556,-0.11157374083995819,0.015818802639842033,0.0013570591108873487,-0.05728469416499138,-0.06781055778265,-0.08131638169288635,-0.07753153890371323,-0.013559876009821892,0.03162286430597305,0.019720951095223427,-0.055709607899188995,-0.0012542207259684801,-0.08865801244974136,-0.0038750814273953438,-0.05814669653773308,-0.014526807703077793,-0.05719433352351189,0.00987206306308508,-0.03451431170105934,0.048697005957365036,9.693357107646932e-33,-0.08645268529653549,-0.10596778988838196,0.027194278314709663,0.01746627688407898,-0.009415565989911556,-0.02728959172964096,-0.02178299054503441,0.03302023187279701,-0.05294637382030487,-0.06361114233732224,-0.03778158500790596,0.012121818959712982,-0.0005455710925161839,-0.06515050679445267,0.011610247194766998,0.040074422955513,0.08287903666496277,-0.07429948449134827,-0.07729808986186981,-0.0386686772108078,-0.05181891471147537,-0.02347796969115734,0.05117660388350487,-0.015282178297638893,0.08186212927103043,0.030364608392119408,0.02511434070765972,-0.05568874254822731,-0.033808186650276184,0.03524086996912956,0.05951039120554924,-0.020748764276504517,-0.011654621921479702,0.014284617267549038,0.0010277904802933335,-0.0038452432490885258,0.06603075563907623,0.05464440584182739,-0.11815065890550613,0.06055022031068802,0.01911328174173832,-0.04912060126662254,0.018444184213876724,0.0545961931347847,0.04723973944783211,0.009500933811068535,0.05111299082636833,-0.006999180652201176,0.14022158086299896,0.021831287071108818,-0.033780258148908615,-0.027237990871071815,-0.09284810721874237,-0.040326543152332306,0.0055770957842469215,0.017781943082809448,-0.0653291866183281,0.05321909114718437,-0.06724093109369278,-0.015339750796556473,-0.013175154104828835,-0.026129527017474174,-0.013327866792678833,-0.05007786303758621,0.014992858283221722,-0.047231145203113556,-0.03172167390584946,0.01876359060406685,0.05247737094759941,0.022119881585240364,-0.03453587368130684,-0.054096389561891556,-0.003254359820857644,0.05634059011936188,0.03774651512503624,0.049606796354055405,0.03813504800200462,0.016085807234048843,-0.05428842082619667,0.03814924135804176,-0.07828713208436966,0.036970656365156174,0.039792612195014954,-0.012756702490150928,0.11925413459539413,0.018090980127453804,-0.04277363419532776,0.056769877672195435,0.017477156594395638,-0.00042678110185079277,0.07423219829797745,0.004191173706203699,0.08770189434289932,0.007002661004662514,-0.0542416013777256,-1.1167094211740004e-32,-0.025587575510144234,0.02020186372101307,-0.07432638853788376,0.10774219781160355,0.02975107729434967,0.0031534614972770214,-0.09746157377958298,-0.0040078056044876575,-0.06074266508221626,-0.032213348895311356,-0.0612076111137867,-0.018178993836045265,0.11458885669708252,-0.02568165399134159,0.03102557174861431,0.09067142009735107,0.0713730901479721,0.019277114421129227,-0.09135666489601135,-0.011086085811257362,0.013987992890179157,0.02607000432908535,0.03580298647284508,0.004282629117369652,0.011993281543254852,0.026659036055207253,0.027224324643611908,-0.018095631152391434,-0.01561892218887806,0.03190270811319351,-0.039634838700294495,-0.026418490335345268,-0.01913701742887497,0.09756256639957428,-0.07354242354631424,0.021100817248225212,0.15418612957000732,-0.0030986981000751257,-0.01687481999397278,0.05959459766745567,-0.03358025476336479,0.11045202612876892,0.025319278240203857,-0.007484897971153259,-0.028512051329016685,-0.11163725703954697,-0.008656814694404602,0.007763700559735298,-0.04620510712265968,0.013857840560376644,0.08884696662425995,-0.033166829496622086,0.05498923733830452,-0.008142220787703991,0.04801398888230324,0.01968010514974594,-0.05148464813828468,0.03363237902522087,0.013836458325386047,0.019673116505146027,0.06457196921110153,-0.028651360422372818,-0.020368296653032303,-0.03278294578194618,0.08623334765434265,0.016292806714773178,-0.03015996515750885,0.06064558029174805,-0.08053518086671829,0.05849543586373329,0.0007906981627456844,-0.016392329707741737,-0.10147745907306671,-0.094760961830616,-0.02398841083049774,0.05053967982530594,0.06685991585254669,-0.04010755568742752,0.04260898381471634,-0.005988869350403547,-0.017402667552232742,0.005439372733235359,0.03586728498339653,-0.11991254985332489,0.020499777048826218,-0.021020259708166122,-0.040384791791439056,-0.0669422373175621,0.02090417593717575,-0.023829957470297813,-0.028317028656601906,-0.03324079513549805,-0.03260933235287666,-0.0438905693590641,0.005413958337157965,-3.8140935743058435e-8,0.03914650157094002,-0.07480435073375702,-0.10320084542036057,0.05539804324507713,0.08701805770397186,-0.05025992542505264,0.011659402400255203,0.02091771364212036,-0.021035680547356606,0.06112358719110489,-0.04815967381000519,-0.05792544409632683,0.051728662103414536,0.035813622176647186,0.0716330036520958,0.05415144935250282,0.030412541702389717,0.08464876562356949,-0.026201538741588593,-0.01618281379342079,0.07253402471542358,-0.02833712473511696,-0.03712552785873413,0.0019935541786253452,-0.04879706725478172,0.005030990578234196,0.04945767670869827,-0.035222601145505905,-0.025752492249011993,-0.022548314183950424,-0.019556516781449318,0.05986739695072174,-0.006589370779693127,-0.051374081522226334,0.03895101696252823,0.040009453892707825,0.048445578664541245,0.03264407813549042,-0.06600330024957657,0.030583737418055534,0.07333192974328995,0.04038795456290245,0.01484698336571455,0.011843327432870865,0.053748831152915955,-0.02778645232319832,0.06159215047955513,-0.0005094656953588128,-0.028448054566979408,-0.08190019428730011,-0.015733959153294563,0.004649981390684843,0.0896032303571701,0.036197006702423096,-0.027029061689972878,0.023841233924031258,0.042867328971624374,0.002385939471423626,-0.05593504011631012,0.023025715723633766,0.03885485604405403,0.04391912743449211,0.07113071531057358,0.0015147981466725469]},{"text":"Non ita Romuli 10 Praescriptum et intonsi Catonis Auspiciis veterumque norma.","book":"Homage to Catalonia","chapter":13,"embedding":[-0.06338249891996384,0.06085994839668274,-0.09306702017784119,-0.006696729455143213,-0.10416208207607269,0.06466656178236008,0.031301066279411316,0.11790584027767181,0.03752049058675766,0.0768786370754242,0.07780405879020691,-0.04600255936384201,0.008727357722818851,0.04113614186644554,-0.07576044648885727,-0.07687386870384216,-0.07007795572280884,0.10272838175296783,-0.03804225102066994,0.09340839833021164,-0.009803476743400097,0.021480048075318336,0.029663702473044395,0.08259347826242447,-0.045524489134550095,0.059710465371608734,-0.025314154103398323,-0.04246184602379799,-0.004667387809604406,0.0026978685054928064,-0.04050881043076515,0.10101247578859329,0.05080265924334526,-0.010358878411352634,0.07100343704223633,-0.07678411900997162,-0.025831613689661026,-0.11744469404220581,0.04003547504544258,0.02967546135187149,-0.028288908302783966,-0.026327671483159065,-0.026282837614417076,-0.05055992677807808,-0.038515884429216385,-0.019011838361620903,0.03318774327635765,0.07466859370470047,0.028353272005915642,0.019357241690158844,-0.0930224135518074,-0.028008898720145226,0.007915038615465164,-0.02671847678720951,-0.05378756299614906,-0.00452897185459733,-0.01013952400535345,-0.03287069499492645,-0.014163791202008724,-0.10357920080423355,0.002421241719275713,0.04537313058972359,-0.02855030819773674,0.0390046201646328,-0.029703998938202858,0.042762964963912964,-0.07065284997224808,-0.0351874977350235,-0.05925990268588066,0.05002102628350258,0.07653184980154037,-0.07683964818716049,0.014771508052945137,0.039776623249053955,-0.04617201164364815,0.04669510945677757,0.08207125961780548,-0.015766657888889313,-0.01396047230809927,-0.1597183495759964,-0.013130639679729939,-0.0007689334452152252,-0.038085006177425385,0.03338431566953659,-0.004992555361241102,0.013706506229937077,0.07170359790325165,0.017181282863020897,0.0419723242521286,0.026293816044926643,-0.01742604933679104,0.00762321287766099,-0.004636000841856003,-0.08447664976119995,0.019636444747447968,0.0022152792662382126,-0.04632559046149254,-0.017215318977832794,0.0207302737981081,-0.008815604262053967,0.04082997143268585,0.009462934918701649,-0.008747018873691559,0.057341042906045914,-0.12404053658246994,-0.03944677859544754,-0.04438546299934387,-0.06372269243001938,0.040965329855680466,0.01277357991784811,-0.02041967585682869,-0.039280761033296585,-0.044837772846221924,-0.11722858250141144,-0.0030829417519271374,0.026506468653678894,0.08745329082012177,-0.05533628538250923,0.020640581846237183,-0.08403128385543823,0.013983952812850475,-0.10098535567522049,0.013243160210549831,-0.0011022636899724603,0.021598834544420242,-0.044728685170412064,0.03112730383872986,4.1375549745341975e-33,-0.10847143083810806,-0.12111790478229523,-0.058131422847509384,-0.014824172481894493,0.014165432192385197,-0.01588875614106655,-0.058138951659202576,-0.062027834355831146,-0.005685853306204081,-0.06439557671546936,-0.10540962219238281,0.05197913199663162,-0.014109558425843716,-0.020486176013946533,0.04294820502400398,-0.0011986610479652882,0.07862608134746552,-0.021609915420413017,0.015196279622614384,0.01619694009423256,-0.03054254688322544,0.053177762776613235,0.05872088670730591,0.03684018924832344,-0.020803363993763924,0.010057182051241398,0.02715149149298668,-0.09270749241113663,-0.031575318425893784,0.01677771471440792,0.10160539299249649,-0.025543367490172386,-0.04906085506081581,-0.029829636216163635,0.022024109959602356,0.022229604423046112,0.08557344228029251,0.042567115277051926,0.02692306600511074,0.042376819998025894,0.03672857582569122,-0.003974252380430698,0.050836000591516495,0.02020283415913582,0.09804446995258331,0.0068338471464812756,0.056608933955430984,0.06272315979003906,0.06274426728487015,-0.011260423809289932,0.05692004784941673,0.010349402204155922,0.006746637634932995,-0.0028926937375217676,-0.0111125772818923,0.0385139174759388,-0.04001456871628761,0.08305785059928894,-0.04571973532438278,-0.005862378515303135,0.06732843816280365,-0.021402783691883087,0.018481886014342308,0.01310863345861435,-0.0002929824113380164,-0.0032659308053553104,0.02878819778561592,-0.03959377855062485,0.12042108923196793,0.017524145543575287,-0.07265689969062805,0.033449042588472366,-0.04691452160477638,0.09636583179235458,-0.0015134147834032774,0.06096519157290459,0.028068242594599724,-0.03271455317735672,-0.0506698414683342,-0.03429730609059334,-0.08478803932666779,0.039893705397844315,-0.013860771432518959,0.03653645142912865,0.053142063319683075,0.044805027544498444,-0.0461234487593174,0.0218330230563879,0.05302228406071663,0.004864280112087727,0.07316721230745316,0.017795074731111526,-0.0007228087051771581,0.011194814927875996,0.011170143261551857,-5.8119364746851565e-33,-0.0812474712729454,-0.0808066725730896,-0.10427981615066528,0.060519084334373474,-0.06584924459457397,0.049682628363370895,-0.08205240219831467,0.06145505979657173,0.007720200810581446,-0.035132043063640594,-0.017192978411912918,0.007976197637617588,0.08609529584646225,-0.10122425854206085,-0.03526563569903374,0.060416270047426224,0.006812730338424444,0.06446520984172821,-0.037447236478328705,-0.06603452563285828,0.0065269167535007,-0.018096955493092537,-0.006048928014934063,-0.016345640644431114,-0.04077397659420967,0.023587802425026894,-0.02923879586160183,0.017504235729575157,-0.03386407345533371,-0.04488812014460564,0.036274004727602005,0.0007761837914586067,-0.007572215050458908,0.017641441896557808,-0.012295035645365715,-0.0007305946201086044,0.10854431241750717,0.015974784269928932,-0.03492775931954384,0.006260988302528858,-0.09053771942853928,0.06786570698022842,0.00016991437587421387,0.007720757741481066,-0.026393020525574684,-0.0419299378991127,-0.041131045669317245,-0.06982263922691345,-0.09384409338235855,0.07819396257400513,0.0830712541937828,-0.03900359570980072,0.0685206949710846,-0.04419095814228058,0.010967297479510307,0.009076272137463093,-0.03446728736162186,-0.04795080050826073,-0.038478463888168335,0.08875736594200134,0.1094890832901001,0.049499958753585815,0.014964920468628407,0.04250131547451019,0.05713702365756035,0.003337259404361248,-0.05650225281715393,-0.015928547829389572,-0.0068886675871908665,-0.0025307831820100546,0.06627415865659714,-0.04890761151909828,-0.09236962348222733,0.04004858061671257,-0.005197383463382721,-0.01076966430991888,0.05153806135058403,0.017761170864105225,0.020171405747532845,0.011783805675804615,-0.09114938229322433,-0.06378674507141113,-0.018016358837485313,-0.01464090496301651,-0.023922793567180634,-0.036550432443618774,0.08540897071361542,0.00811904389411211,0.038661155849695206,-0.006427438464015722,0.0358957014977932,-0.018495911732316017,0.047819361090660095,-0.07509715855121613,-0.009891190566122532,-2.673550092424648e-8,-0.0318421870470047,-0.0952686220407486,-0.03557750582695007,0.03368157148361206,0.059582993388175964,-0.04129566252231598,-0.05894862487912178,0.0033187882509082556,-0.016396665945649147,0.010908248834311962,-0.033676501363515854,-0.019805600866675377,-0.04897665977478027,0.04586862400174141,0.020190460607409477,0.05465951934456825,0.11706814169883728,0.04075676202774048,-0.04102880507707596,-0.020828159525990486,0.02018626406788826,0.023747863247990608,-0.08228911459445953,-0.10779549926519394,-0.03797661513090134,-0.025579730048775673,-0.008824389427900314,-0.025588173419237137,-0.050147879868745804,-0.02127745933830738,0.02853740006685257,0.027817990630865097,-0.03683854639530182,-0.07421240210533142,-0.10388641804456711,0.07144007086753845,0.07824712246656418,0.022418079897761345,0.015320268459618092,0.017969464883208275,0.07245288789272308,-0.020983947440981865,0.05458654463291168,0.0013466732343658805,-0.0025774368550628424,-0.03958534821867943,0.007079468108713627,0.022759737446904182,0.012979479506611824,-0.02946561574935913,0.005761211737990379,0.12182055413722992,0.03571531921625137,-0.03676682338118553,-0.10426076501607895,0.0021200822666287422,0.06399085372686386,0.005989555269479752,-0.043463461101055145,0.026941917836666107,0.046742215752601624,0.03345906361937523,0.011910848319530487,-0.0004664669104386121]},{"text":"Otium divos rogat in patenti Prensus Aegaeo, simul atra nubes Condidit lunam neque certa fulgent Sidera nautis; Otium bello furiosa Thrace, 5 Otium Medi pharetra decori, Grosphe, non gemmis neque purpura ve- nale nec auro.","book":"Homage to Catalonia","chapter":13,"embedding":[-0.03234433755278587,0.001014320063404739,-0.01704537868499756,0.014356398023664951,-0.04473017901182175,-0.03283972293138504,0.05447123944759369,0.08926673233509064,-0.010540363378822803,-0.002729003317654133,0.0511179193854332,-0.009839377366006374,0.0012500962475314736,-0.01495346613228321,-0.07185754179954529,-0.024111730977892876,0.05633898079395294,0.01117098517715931,-0.011347932741045952,0.02609376050531864,0.11367455869913101,-0.0035383119247853756,0.0703723281621933,0.0547582171857357,-0.1011115089058876,0.050120797008275986,-0.0007061177166178823,-0.025806544348597527,0.055966563522815704,-0.1545736938714981,0.018237480893731117,0.07755160331726074,0.06927713751792908,-0.10234382003545761,-0.04937968775629997,-0.012673716992139816,-0.07094436138868332,-0.01403116900473833,0.046640828251838684,0.06573019176721573,-0.034895069897174835,-0.012919250875711441,-0.05366400256752968,-0.03974122181534767,0.044489264488220215,-0.03313272073864937,-0.03696313127875328,0.031412944197654724,0.07363869994878769,0.05609597638249397,0.02421514317393303,-0.00785677321255207,-0.011025468818843365,0.01335218921303749,-0.12904274463653564,-0.005646779667586088,-0.008526772260665894,-0.0034211408346891403,-0.04906097427010536,0.023272152990102768,0.08958551287651062,0.01237649004906416,0.06009170785546303,-0.021249942481517792,0.021681437268853188,0.07881542295217514,-0.045105092227458954,-0.05641615390777588,0.0006449765060096979,-0.028090547770261765,0.11980848014354706,-0.052318938076496124,0.0013738315319642425,0.02866433374583721,-0.0723646730184555,0.08002682775259018,0.06576496362686157,-0.01571621373295784,-0.020015010610222816,-0.07073494046926498,-0.040437567979097366,0.024770641699433327,-0.01874137669801712,0.03951277956366539,0.017980018630623817,0.0678328424692154,0.013009057380259037,-0.04304632171988487,0.03074447624385357,-0.02096632495522499,0.06369978934526443,0.017233049497008324,-0.034295596182346344,-0.05340731143951416,0.009526672773063183,0.03977372497320175,-0.050500452518463135,0.01043859962373972,-0.0007749336655251682,-0.001226960215717554,0.07896602153778076,-0.04794050753116608,-0.032999005168676376,-0.03759561851620674,-0.09793343394994736,-0.036153484135866165,-0.029095474630594254,-0.1237047016620636,-0.005400251597166061,0.03670382872223854,-0.023930858820676804,-0.053035009652376175,0.05869239196181297,-0.029889294877648354,-0.005528039764612913,0.009896933101117611,0.002018374390900135,-0.005140515509992838,0.012747772969305515,0.005401416216045618,0.07402128726243973,-0.041764937341213226,-0.007673499174416065,-0.040096964687108994,0.06076375022530556,-0.03851327672600746,0.049442753195762634,1.9726249881057127e-32,-0.03189960494637489,-0.06816086173057556,-0.08548083901405334,0.007418273948132992,-0.004016716964542866,-0.0051774149760603905,-0.016082288697361946,-0.05907921865582466,-0.026446526870131493,-0.042086489498615265,-0.14510303735733032,0.020711597055196762,-0.04058064520359039,-0.010506684891879559,-0.04239118844270706,0.015293996781110764,0.09934157878160477,-0.049194928258657455,-0.0065371026284992695,-0.060263074934482574,-0.052681565284729004,0.018286800011992455,-0.020636331290006638,0.020624782890081406,-0.06235834211111069,0.07464201003313065,-0.07089916616678238,-0.11137224733829498,-0.058054644614458084,-0.010070998221635818,0.11174198240041733,-0.01833844929933548,0.023588379845023155,0.04985968396067619,-0.032613739371299744,0.04343343898653984,-0.05216091126203537,-0.010707792825996876,-0.0326143279671669,0.009304980747401714,0.02945181168615818,0.06191688030958176,0.017919693142175674,0.05192512646317482,0.08770107477903366,-0.01444970816373825,-0.04187685623764992,0.10742288082838058,0.12499099224805832,-0.017401231452822685,0.050156593322753906,-0.006344607565551996,-0.017762131989002228,-0.0766429528594017,0.04950404539704323,0.01940418966114521,-0.059189025312662125,0.04307837784290314,0.023967627435922623,0.05582420527935028,-0.01745552569627762,0.06777102500200272,-0.011692424304783344,-0.0017607633490115404,-0.08194517344236374,0.004672802519053221,0.020338304340839386,-0.03204350918531418,0.04223589226603508,-0.08474032580852509,-0.06164915859699249,-0.005473969038575888,-0.021871183067560196,0.10346827656030655,-0.03346560522913933,0.02411985583603382,0.04877921938896179,-0.02152779884636402,0.005219224840402603,-0.018221285194158554,-0.058971554040908813,-0.03289169445633888,0.06477722525596619,0.03932340070605278,0.07841289043426514,0.04306578263640404,-0.08706884831190109,0.006000099703669548,0.07860812544822693,0.08764795958995819,0.06362717598676682,0.02294938825070858,-0.05503131076693535,0.0007703725132159889,0.009127568453550339,-1.6412496041258574e-32,-0.0306708924472332,-0.0720854103565216,-0.041015300899744034,0.017232587561011314,-0.04002402722835541,0.07171223312616348,-0.11920548975467682,-0.03404449298977852,0.011231853626668453,-0.013967329636216164,0.03700762614607811,-0.012476385571062565,0.05914247781038284,-0.08523382991552353,0.03664204478263855,0.09163249284029007,0.08828771114349365,0.07689261436462402,0.007531797979027033,-0.01729770004749298,-0.05375783517956734,0.06349162757396698,-0.02927495539188385,-0.042570654302835464,0.016808874905109406,0.037714939564466476,0.04406784474849701,-0.040197860449552536,0.026712188497185707,-0.02488170936703682,-0.004876312334090471,0.015382644720375538,-0.01732228882610798,0.03856129199266434,0.022361358627676964,-0.04590015113353729,0.1035149097442627,-0.07527927309274673,-0.05982039496302605,-0.03384300321340561,-0.05301477760076523,0.03011339344084263,0.09738536924123764,-0.048733536154031754,-0.01159761194139719,-0.07515589892864227,-0.10873014479875565,-0.05092771723866463,-0.04019217938184738,0.0643797293305397,0.10676426440477371,-0.07461472600698471,0.06180169805884361,-0.08767960965633392,0.05299973487854004,0.015670813620090485,-0.08657252788543701,-0.06308320164680481,0.05351358279585838,0.039129454642534256,0.11752652376890182,-0.044378358870744705,-0.03678130358457565,0.004993353970348835,-0.01817561499774456,0.06785716861486435,-0.032994989305734634,0.05336979404091835,-0.057939622551202774,-0.039307594299316406,0.05377073213458061,-0.0210739616304636,-0.018976345658302307,-0.05646254122257233,-0.027821987867355347,0.024325206875801086,-0.03940856084227562,-0.0011224707122892141,0.010733255185186863,-0.0310865119099617,-0.056192174553871155,0.04794176667928696,-0.01956016756594181,-0.0340241864323616,-0.013985282741487026,-0.04556944593787193,-0.04355749115347862,0.0233335942029953,0.0398622490465641,0.032410893589258194,-0.03262335807085037,-0.0006989535177126527,0.008101286366581917,-0.01127064973115921,0.09794078022241592,-5.8891046705866756e-8,0.06282109022140503,-0.05532311648130417,0.023739513009786606,-0.005161486100405455,0.025951119139790535,-0.027033982798457146,0.05428868532180786,0.003347272053360939,-0.06556402891874313,-0.007168755400925875,-0.028686678037047386,0.08820060640573502,-0.03146853297948837,-0.027328019961714745,0.040823403745889664,0.051529817283153534,0.06253670901060104,0.08499743044376373,-0.031234176829457283,-0.06493290513753891,0.09623714536428452,-0.005467464681714773,-0.019478922709822655,-0.023675942793488503,0.004032935481518507,-0.008577492088079453,0.10418935865163803,0.008893365040421486,0.05452210456132889,-0.00333907431922853,0.008294757455587387,-0.025995610281825066,0.06044779345393181,-0.08692830801010132,0.0005606754566542804,0.011556996032595634,0.01960752159357071,0.05334868282079697,-0.05386173725128174,0.0147476214915514,-0.035734985023736954,-0.014955461025238037,0.03031552955508232,-0.056233327835798264,-0.002420866396278143,-0.05378969758749008,-0.012181057594716549,0.001856679329648614,0.014526107348501682,-0.04970633611083031,-0.024221358820796013,0.013219327665865421,0.07258044928312302,0.025645771995186806,-0.0640595331788063,-0.0004237704270053655,0.08724086731672287,-0.02086620032787323,-0.04695804789662361,-0.04384297877550125,-0.012770753353834152,0.045831769704818726,0.1267058253288269,0.016276756301522255]},{"text":"Vivitur parvo bene cui paternum Splendet in mensa tenui salinum Nec levis somnos timor aut cupido 15 Sordidus aufert.","book":"Homage to Catalonia","chapter":14,"embedding":[-0.016177305951714516,0.07570753246545792,-0.023238511756062508,0.013689960353076458,-0.015125357545912266,0.029569149017333984,0.02287551760673523,0.10201478749513626,0.006795656401664019,0.01349661871790886,0.09425392001867294,-0.104451484978199,-0.05277353152632713,0.009697130881249905,-0.021913742646574974,-0.10380472242832184,-0.03458324819803238,0.07470694929361343,-0.012273471802473068,-0.0020305882208049297,0.07294513285160065,-0.127980038523674,-0.06749578565359116,0.021685989573597908,-0.05423951894044876,0.08358307182788849,-0.03389061614871025,-0.06861270219087601,0.08536621183156967,-0.07958254963159561,0.009085808880627155,0.08034271746873856,-0.0037372561637312174,-0.03356923535466194,-0.04330136626958847,-0.02618521638214588,0.02806246653199196,-0.056980200111866,0.07485080510377884,-0.005995519924908876,-0.01261531375348568,-0.057715240865945816,-0.0036131388042122126,-0.08655703067779541,0.04336057975888252,0.00973880011588335,0.022694723680615425,0.06466516107320786,0.03193577751517296,0.027038641273975372,-0.03946034982800484,0.010797514580190182,0.04153231903910637,-0.010607482865452766,-0.06414030492305756,-0.02518497221171856,0.04057047888636589,-0.08459839969873428,-0.0219589713960886,-0.08418072015047073,0.01394284050911665,0.010224493220448494,-0.08785222470760345,-0.023544738069176674,-0.015662096440792084,-0.00327224750071764,-0.0347910150885582,-0.04155956581234932,-0.0066903564147651196,0.03674337640404701,0.08904846757650375,-0.004953923635184765,0.025159737095236778,0.08301130682229996,-0.03816155344247818,0.09458454698324203,0.0019518446642905474,-0.02690254896879196,0.03412028029561043,-0.058541733771562576,0.05917906388640404,0.06453263014554977,-0.032839298248291016,-0.004027793649584055,0.00550577137619257,-0.005759197752922773,0.05542074516415596,-0.019958624616265297,0.029815640300512314,0.015149001032114029,-0.02064024657011032,0.05010876804590225,0.030674880370497704,-0.013725435361266136,0.02472005970776081,0.04294474795460701,-0.07127813249826431,-0.011385465040802956,-0.022878842428326607,-0.020453158766031265,0.01633555442094803,-0.02869795635342598,-0.01737917587161064,0.09996341913938522,-0.030849726870656013,0.019646212458610535,-0.08280754834413528,-0.06363186985254288,0.12392256408929825,0.03916867449879646,-0.06795019656419754,-0.06433612108230591,-0.0763358324766159,-0.08342133462429047,-0.02412794716656208,0.02714916318655014,0.04629417881369591,-0.05549653246998787,-0.043265413492918015,-0.03467069938778877,0.03340659663081169,-0.09315158426761627,-0.034664303064346313,-0.06181885302066803,0.07306982576847076,-0.07701736688613892,0.06620315462350845,1.381214678423819e-32,-0.004655294585973024,-0.10182549804449081,0.023841707035899162,-0.018891001120209694,-0.015523316338658333,-0.0038775228895246983,-0.011783763766288757,-0.009816356003284454,0.0032406598329544067,-0.10410331189632416,-0.09729387611150742,-0.12193641811609268,-0.018731506541371346,-0.001404973678290844,0.046293389052152634,0.005435859318822622,0.08889368176460266,-0.07932506501674652,-0.012459518387913704,-0.03130119666457176,-0.04383205622434616,-0.030969081446528435,0.012936576269567013,-0.020454751327633858,0.04455793648958206,0.03095179982483387,-0.039754003286361694,-0.05961919575929642,-0.005051460582762957,0.01422693207859993,0.11363194137811661,0.0042768376879394054,0.020653309300541878,0.03979106247425079,0.0048522865399718285,0.04495599865913391,0.06111884489655495,-0.034392815083265305,-0.011506072245538235,0.047750361263751984,0.044187337160110474,-0.0024342078249901533,0.11403443664312363,0.0022610300220549107,0.016024459153413773,-0.011429148726165295,0.019118472933769226,0.034514740109443665,0.071946881711483,0.04277963936328888,-0.016944075003266335,0.07423701137304306,-0.06017078086733818,-0.024168992415070534,0.09267935901880264,0.06091215834021568,-0.03314223140478134,0.13290037214756012,-0.029022760689258575,-0.045835088938474655,0.03677736222743988,-0.0679955780506134,0.041840553283691406,0.06205759197473526,0.009833921678364277,-0.03918220102787018,0.011836900375783443,0.024060461670160294,0.11293263733386993,-0.043224938213825226,-0.10982785373926163,-0.0292911808937788,-0.12113891541957855,-0.004259476903825998,-0.022171005606651306,0.05655418708920479,0.05901116877794266,-0.020790914073586464,-0.020977411419153214,-0.004779329057782888,-0.057926904410123825,0.07218973338603973,0.041382692754268646,-0.02399720437824726,0.06546852737665176,0.053546443581581116,0.015462645329535007,0.0033648055978119373,0.03725703805685043,-0.03774752840399742,-0.010459324344992638,-0.00875168852508068,0.025038693100214005,-0.02351885475218296,0.00841442123055458,-1.2459327641226422e-32,-0.0035824731457978487,-0.0508764386177063,-0.054040633141994476,0.06008372828364372,0.000923209183383733,-0.01987253502011299,-0.08354588598012924,0.04836505278944969,-0.04768311232328415,0.035294126719236374,-0.07466074079275131,-0.054704539477825165,0.07227475196123123,-0.01659446768462658,-0.06498666852712631,0.11361950635910034,0.09208172559738159,0.03704958036541939,-0.0020126323215663433,-0.00956558808684349,-0.061186712235212326,0.04709531366825104,-0.0009087380021810532,-0.00925590842962265,-0.013589851558208466,-0.03139162063598633,0.06409309059381485,-0.055487941950559616,-0.07094906270503998,-0.05639202520251274,0.05123288556933403,-0.0036493840161710978,0.010904781520366669,0.07818745821714401,0.03321653977036476,-0.03578169271349907,0.14268682897090912,0.029030898585915565,0.006574429105967283,-0.015202535316348076,-0.03669477626681328,0.046308260411024094,0.06108340993523598,0.028136437758803368,-0.01305248960852623,-0.07802776247262955,-0.06107892841100693,-0.00920236948877573,-0.06651786714792252,0.0035102479159832,0.043614424765110016,-0.08376564830541611,0.03425594046711922,-0.015578357502818108,0.014699099585413933,-0.027469182386994362,0.017083726823329926,0.01795824058353901,-0.000592836644500494,-0.05585066229104996,0.04606882855296135,0.014100751839578152,-0.05437832325696945,-0.01134039368480444,0.08197242021560669,0.0410383939743042,-0.024593310430645943,0.02687835320830345,0.01488519087433815,-0.025419143959879875,0.021670376881957054,-0.0761430561542511,-0.06648120284080505,0.02626386284828186,-0.08972876518964767,-0.02207280695438385,0.030151262879371643,0.050783246755599976,0.06999436020851135,0.032268840819597244,-0.02800559252500534,-0.11815734952688217,-0.01610473357141018,-0.04429222643375397,-0.002748415106907487,-0.021247925236821175,0.08922825008630753,-0.00603284128010273,0.035769782960414886,0.027170700952410698,-0.05002657696604729,-0.011110102757811546,0.02633499726653099,-0.0671922117471695,0.02238156832754612,-3.9899493486927895e-8,0.058355607092380524,-0.09118767827749252,-0.11905685067176819,0.05259868502616882,-0.0021809095051139593,-0.002830512821674347,0.005708876997232437,-0.08090879768133163,-0.019285425543785095,0.01737161912024021,-0.03208054229617119,-0.06508684903383255,-0.04155895859003067,-0.008695571683347225,0.07473140209913254,-0.010143906809389591,0.04701473191380501,0.11184702813625336,-0.06463737785816193,-0.025373179465532303,-0.00929183792322874,0.013975072652101517,-0.03258272260427475,0.00961476843804121,0.01848812773823738,0.0313403345644474,0.06977972388267517,-0.06715941429138184,0.05636552348732948,0.014146143570542336,0.00544014573097229,0.023680826649069786,0.03856377303600311,-0.07600302249193192,0.014192376285791397,0.0988035649061203,0.08039567619562149,0.04313813894987106,0.060870956629514694,0.028646841645240784,0.08472586423158646,0.06945797801017761,0.03969397768378258,-0.01843228004872799,0.01373087428510189,-0.03489028662443161,-0.009696326218545437,-0.0016326865879818797,0.0015331838512793183,-0.04363634064793587,-0.07298282533884048,-0.00418414082378149,0.010747207328677177,0.014685380272567272,-0.055201586335897446,0.005123880226165056,0.035828396677970886,-0.004784057382494211,-0.018632797524333,0.03271949291229248,0.056277014315128326,0.0827849730849266,0.024380361661314964,0.022296994924545288]},{"text":"Quid terras alio calentis Sole mutamus?","book":"Homage to Catalonia","chapter":14,"embedding":[-0.07621162384748459,0.14316286146640778,0.03313477337360382,0.012449679896235466,-0.02229214832186699,-0.055110953748226166,0.09382111579179764,0.0068595390766859055,0.05524951592087746,0.007610450964421034,0.06562026590108871,-0.14140643179416656,0.005258727353066206,-0.06240043789148331,-0.08844273537397385,-0.04925305023789406,-0.08905505388975143,0.06359989941120148,-0.03534667193889618,-0.0008059645188041031,-0.021863576024770737,-0.05199407786130905,-0.0067322771064937115,0.08847198635339737,-0.10871732980012894,0.01718750409781933,-0.02568495087325573,0.060839179903268814,0.06167794391512871,-0.026599140837788582,0.01709497720003128,0.09871254116296768,0.023329634219408035,-0.028860853984951973,0.013053592294454575,0.03873131796717644,0.04308965429663658,-0.08775892108678818,0.014796433970332146,0.06913220137357712,-0.039580073207616806,-0.04623889550566673,-0.019043058156967163,-0.03840526565909386,-0.037393759936094284,0.0032311135437339544,0.04197682440280914,0.08022799342870712,0.004474188666790724,0.01948222517967224,-0.07002674788236618,-0.052293676882982254,-0.06723436713218689,-0.016314804553985596,0.05013605207204819,0.002170921303331852,-0.04084213823080063,-0.005390493664890528,0.02643122896552086,-0.05980818346142769,0.055748943239450455,0.030477983877062798,-0.05470268055796623,0.010973971337080002,-0.0040602353401482105,-0.03793765604496002,-0.049356162548065186,-0.041689205914735794,-0.023000992834568024,-0.0179652851074934,0.0795062705874443,-0.03356386721134186,0.020820407196879387,-0.006433964241296053,-0.051478296518325806,0.03340035304427147,-0.020776765421032906,-0.06534398347139359,-0.08546895533800125,-0.11787892878055573,-0.03584637865424156,0.000807538628578186,0.037704743444919586,-0.04815622791647911,0.02197789028286934,0.0337911956012249,0.034672364592552185,0.044280800968408585,0.029019959270954132,-0.05998414009809494,0.04711942747235298,0.03436373174190521,-0.05015813186764717,-0.07724688202142715,-0.0036990304943174124,0.10442797839641571,-0.007918833754956722,-0.03545099124312401,-0.04031769558787346,0.0551467165350914,0.05939507484436035,0.034068889915943146,-0.012636050581932068,0.0366574190557003,-0.08169542253017426,-0.010245485231280327,-0.03768742084503174,-0.05588845536112785,-0.03200628608465195,0.06269630789756775,-0.0823267325758934,-0.09231673926115036,-0.045656949281692505,-0.02758902683854103,0.014010009355843067,0.006343361921608448,-0.00694293575361371,-0.04436085373163223,-0.004701068624854088,-0.04983348771929741,0.026844052597880363,-0.03139415383338928,-0.012304207310080528,0.01960931159555912,-0.036707084625959396,-0.018003666773438454,0.07906655222177505,8.592842582346805e-34,0.001467853900976479,-0.013971482403576374,-0.04534106329083443,-0.01910710148513317,0.048556044697761536,0.03432485833764076,-0.1021910011768341,0.006698186509311199,-0.0821964219212532,-0.017110038548707962,-0.09617458283901215,-0.008130746893584728,-0.04316836968064308,-0.024235928431153297,0.04319458827376366,0.013737689703702927,0.022834274917840958,-0.058374855667352676,0.02587272785604,-0.08376836031675339,-0.06734161078929901,0.06185377389192581,0.03470102325081825,-0.021755211055278778,0.05858621001243591,0.05703594908118248,0.022968526929616928,-0.070852130651474,-0.03379514813423157,0.029062330722808838,0.09013258665800095,-0.02694559469819069,-0.03828815370798111,-0.003763158805668354,-0.07739298790693283,0.08690863847732544,-0.0293626319617033,0.04603566601872444,-0.06608341634273529,0.024633163586258888,0.03182961791753769,-0.019252849742770195,0.09698336571455002,-0.008492226712405682,0.04400789737701416,0.028107739984989166,0.07642122358083725,0.009346340782940388,0.13901618123054504,-0.002628097077831626,-0.036921627819538116,-0.00777606014162302,-0.047886867076158524,-0.06523647159337997,0.02252601832151413,0.011783530004322529,-0.010786368511617184,-0.030033119022846222,-0.042502738535404205,0.007730953861027956,0.051974378526210785,0.00029674783581867814,0.028331492096185684,-0.018251698464155197,0.009828662499785423,0.004547736141830683,-0.06742554903030396,0.06490781158208847,0.06490619480609894,0.026896940544247627,-0.06713956594467163,-0.045437950640916824,0.04316582903265953,0.03465413674712181,-0.04243699461221695,0.01403128169476986,0.051586590707302094,-0.055264778435230255,-0.07026113569736481,0.03902488946914673,-0.07608138024806976,0.010075302794575691,0.046502839773893356,0.07252316921949387,0.0017354929586872458,0.01081343088299036,-0.0258282870054245,0.11032329499721527,0.09019394963979721,0.02301037311553955,-0.08538214862346649,-0.01632784679532051,0.035750314593315125,-0.06759016960859299,-0.058655597269535065,-9.955950423335138e-34,-0.019690748304128647,0.004484822973608971,-0.030222088098526,0.13746535778045654,-0.013076388277113438,-0.02812918834388256,-0.03074405901134014,0.10188068449497223,-0.03722025454044342,-0.03809318318963051,-0.010019110515713692,-0.062032509595155716,0.06632602214813232,-0.04180338233709335,0.028906041756272316,0.07415115833282471,0.054466016590595245,0.0034521089401096106,-0.016598278656601906,-0.023007415235042572,-0.05030403658747673,0.027271922677755356,-0.0310220904648304,-0.023451820015907288,-0.047866709530353546,0.014377537183463573,0.09125499427318573,-0.05298156291246414,-0.0981156975030899,0.0511564239859581,-0.024679575115442276,-0.017235167324543,-0.07528752833604813,0.07170660048723221,-0.03850288316607475,-0.02083737403154373,0.06141149625182152,0.04326475411653519,-0.07932666689157486,0.05072027072310448,0.010536449030041695,0.05349656939506531,0.09281904250383377,0.11273634433746338,0.02946527861058712,0.030040374025702477,-0.012120908126235008,0.007836838252842426,-0.021857719868421555,0.012925689108669758,0.10823481529951096,-0.007458492647856474,0.007345857098698616,0.003655817359685898,0.10175119340419769,-0.037677597254514694,-0.0710299089550972,0.041593827307224274,-0.08305125683546066,-0.022708706557750702,0.07366494834423065,0.00717162573710084,-0.010501629672944546,-0.05270290747284889,0.06799975782632828,0.03700847178697586,-0.09409748017787933,0.05883025377988815,-0.0452478788793087,0.030966313555836678,0.10298845171928406,-0.10875140130519867,-0.09193325787782669,-0.07657252997159958,-0.04246335104107857,0.0586387924849987,0.03394806385040283,0.033364713191986084,0.06477759778499603,0.019032981246709824,-0.08733201026916504,-0.0312713161110878,-0.05546817183494568,-0.01586160436272621,-0.011525670066475868,0.0011838783975690603,0.026603829115629196,0.013870764523744583,0.11072250455617905,0.0016052024438977242,-0.0025988591369241476,0.04455820098519325,0.04567503556609154,-0.023499950766563416,0.037892021238803864,-1.9477203849760372e-8,-0.017803875729441643,0.014736684039235115,-0.02263927273452282,0.05660543963313103,0.04192109405994415,-0.016665060073137283,0.05151238664984703,0.03902440145611763,-0.0006979064201004803,0.07357637584209442,0.013220361433923244,-0.028508180752396584,0.008039942942559719,0.0833083987236023,0.031729746609926224,0.053627047687768936,0.007945187389850616,0.060052402317523956,-0.022921213880181313,-0.042912036180496216,0.05411425977945328,0.02154356986284256,-0.03441960737109184,-0.031124355271458626,-0.021586330607533455,-0.015377253293991089,-0.025092927739024162,-0.040405306965112686,-0.017424095422029495,0.049827415496110916,0.004317240323871374,0.014729307033121586,0.013671759516000748,-0.11925351619720459,0.003885260783135891,0.007120152935385704,-0.059461843222379684,0.057428646832704544,-0.040525536984205246,-0.05523994192481041,0.0910564661026001,0.05564570799469948,0.05021248385310173,-0.025598740205168724,0.03099263831973076,-0.007111980114132166,0.010403977707028389,0.0007718251436017454,-0.006137414835393429,0.07680220901966095,-0.04103202372789383,-0.0035279146395623684,0.10896655172109604,0.018477244302630424,0.010572238825261593,-0.041748352348804474,0.08741126209497452,-0.05232615023851395,-0.028919080272316933,0.0037107481621205807,0.035096216946840286,-0.013228737749159336,0.004356712568551302,-0.016265153884887695]},{"text":"Laetus in praesens animus quod ultrast 25 Oderit curare et amara lento Temperet risu; nihil est ab omni Parte beatum.","book":"Homage to Catalonia","chapter":14,"embedding":[-0.06191563978791237,0.04287717491388321,-0.07381131500005722,0.00540959183126688,-0.02985549531877041,0.003068898105993867,0.030844228342175484,0.044516898691654205,0.04043843224644661,0.030791103839874268,0.0029739667661488056,-0.08444623649120331,0.0005004934500902891,-0.10201466083526611,-0.03135242685675621,-0.10304934531450272,0.029586154967546463,0.08662096410989761,-0.0747172087430954,-0.011366359889507294,-0.017190927639603615,-0.03302900865674019,0.04345592483878136,0.09602721780538559,-0.05056522786617279,0.009725646115839481,-0.03736549988389015,-0.006312364246696234,0.02660810388624668,-0.07378235459327698,0.04590478166937828,0.033661846071481705,0.057853538542985916,-0.014996977522969246,-0.005759779829531908,-0.00811053067445755,-0.035773515701293945,-0.08953613042831421,-0.024620044976472855,-0.00698045315220952,0.02286204881966114,-0.05104838311672211,0.006124551873654127,-0.027628449723124504,-0.030255721881985664,-0.007895656861364841,-0.05844360217452049,0.11587906628847122,0.01912682317197323,-0.03880055248737335,-0.002200701739639044,-0.0773269310593605,-0.0036774706095457077,-0.0034194206818938255,-0.0951283797621727,-0.0007552638999186456,0.006362935993820429,-0.04265309497714043,0.033914729952812195,-0.05280690640211105,0.028525132685899734,0.06929631531238556,-0.015350879170000553,0.043711502104997635,-0.04354431852698326,-0.028539327904582024,0.053084664046764374,-0.03749822825193405,-0.09210702776908875,0.010342886671423912,0.1264217644929886,-0.01988369971513748,0.02452893927693367,0.013712420128285885,-0.0012725609121844172,0.10138528048992157,0.018033254891633987,-0.06800032407045364,-0.06299521774053574,-0.07251707464456558,-0.04122108221054077,0.020872673019766808,0.05105137079954147,-0.019060472026467323,-0.05918489024043083,0.045616067945957184,0.08763200789690018,0.04146048054099083,0.0679660215973854,-0.07381581515073776,0.018917523324489594,0.0336342416703701,-0.07857023924589157,0.03235533833503723,0.03478455916047096,0.057131052017211914,-0.050435710698366165,0.08116171509027481,-0.02846507355570793,-0.05931965634226799,0.01945647969841957,0.039071224629879,-0.031314074993133545,0.09646732360124588,-0.08437568694353104,-0.02515474520623684,-0.02747908979654312,-0.050194066017866135,-0.0027387929148972034,-0.005097337067127228,-0.018236275762319565,-0.05456458404660225,-0.027169449254870415,-0.07494145631790161,0.04367316514253616,-0.03512470796704292,0.023772088810801506,-0.05260779708623886,-0.03478828817605972,-0.02663317136466503,0.04190816357731819,-0.0356297641992569,-0.0308795515447855,-0.015996292233467102,-0.023266443982720375,0.017961585894227028,0.01833982765674591,1.1540067548996377e-32,-0.022501463070511818,-0.07648853212594986,-0.0009141218033619225,-0.06394513696432114,-0.033912401646375656,-0.01837189868092537,-0.10632561147212982,-0.031782567501068115,0.030555278062820435,0.0019967006519436836,-0.10639838874340057,-0.004534163046628237,0.0110426414757967,0.009054500609636307,0.041627489030361176,0.0050329663790762424,0.08248896151781082,-0.0064041707664728165,0.013894076459109783,-0.04591677710413933,-0.1071091741323471,0.10109326243400574,-0.035613059997558594,-0.018042389303445816,0.013264247216284275,0.03836832568049431,0.0753738135099411,-0.04775905981659889,-0.06593220680952072,0.029877418652176857,0.05067594349384308,-0.0564686581492424,-0.027322964742779732,0.07459322363138199,0.05413223057985306,0.02277565933763981,-0.03940090909600258,0.06750135868787766,-0.008778286166489124,0.056767433881759644,0.061776671558618546,-0.003828250803053379,0.02616744302213192,-0.006904760841280222,0.06772995740175247,0.00478160148486495,0.00947406142950058,0.11520510166883469,0.0712868869304657,0.00005646709178108722,-0.0048538995906710625,0.08367800712585449,0.011862264946103096,-0.059504441916942596,-0.013627724722027779,0.020568963140249252,-0.04269728437066078,0.043629348278045654,-0.005148560740053654,-0.01817854307591915,-0.050080958753824234,-0.03152906894683838,0.04828865826129913,0.050527866929769516,-0.06293667107820511,0.040263134986162186,-0.08793751150369644,-0.041428595781326294,0.09861218929290771,0.032151833176612854,-0.10509227961301804,0.019493943080306053,0.05056903511285782,0.05109459534287453,0.04255123436450958,0.032568830996751785,0.0740123763680458,0.014872384257614613,-0.039881233125925064,0.004879373125731945,-0.0971704050898552,0.02229761704802513,-0.06902274489402771,-0.0018653803272172809,0.03955196589231491,0.02979791909456253,-0.03918110206723213,0.07567345350980759,0.037524934858083725,0.057688575237989426,0.036637142300605774,-0.05888732895255089,-0.07179219275712967,-0.027804894372820854,-0.00466917734593153,-1.1164617592079615e-32,0.04015957564115524,-0.031816884875297546,-0.06004725769162178,0.04230152815580368,0.032405637204647064,-0.03873050585389137,-0.10618811100721359,0.10027826577425003,0.018025124445557594,-0.004373311996459961,0.0557633601129055,0.0036857661325484514,0.041909489780664444,-0.09321089088916779,-0.012530004605650902,0.07090331614017487,0.014438126236200333,-0.017173338681459427,-0.0039585125632584095,-0.0004739144060295075,-0.07664739340543747,-0.04252023249864578,0.06334511190652847,-0.06558412313461304,0.017664199694991112,-0.004830182995647192,-0.03464852645993233,0.021139657124876976,-0.05326469615101814,-0.023458139970898628,0.0464441142976284,-0.03242801874876022,-0.007521556690335274,0.04059911146759987,-0.013079938478767872,-0.02321988344192505,0.12090518325567245,0.009166518226265907,0.08619838207960129,-0.036781515926122665,-0.013069416396319866,0.05912415310740471,0.1031268909573555,0.04241081327199936,0.054990820586681366,-0.02349601313471794,-0.07084047794342041,-0.030364176258444786,-0.11037382483482361,0.022871986031532288,0.06690433621406555,-0.037884727120399475,0.12825925648212433,0.011772902682423592,0.08432695269584656,-0.06678169220685959,-0.08702288568019867,0.013335440307855606,-0.07582001388072968,0.01580582745373249,0.07209829241037369,0.011981392279267311,0.025658879429101944,0.060859136283397675,0.07299892604351044,-0.030418848618865013,-0.06708939373493195,0.04793756082653999,-0.025582602247595787,0.06538376957178116,0.03263372182846069,-0.05087309330701828,-0.07662282884120941,0.0009335860377177596,-0.05796005576848984,-0.04453638568520546,0.0010514312889426947,-0.00034258485538885,0.04879776015877724,0.005445894785225391,-0.09426429867744446,0.018226265907287598,-0.029349880293011665,-0.06824816018342972,0.05883745476603508,-0.02863384410738945,0.018098436295986176,0.05707908049225807,0.06333065778017044,-0.04205063730478287,0.01786107011139393,-0.047630246728658676,0.009307115338742733,-0.02475125715136528,0.03190235793590546,-4.072869685955993e-8,0.06142532452940941,-0.04089068993926048,-0.04783831536769867,0.08941575139760971,0.08900774270296097,-0.03247729688882828,-0.04628982022404671,-0.03425866365432739,-0.01482884306460619,0.10425285249948502,0.019896432757377625,0.03886581212282181,0.004120156168937683,-0.032023973762989044,-0.021844759583473206,0.004665005952119827,0.02427380532026291,-0.013955723494291306,-0.02519206516444683,-0.0766669437289238,0.07913535833358765,0.02750067412853241,0.013228287920355797,-0.054607030004262924,-0.07185401022434235,0.059359047561883926,0.011630769819021225,-0.11409208923578262,0.02228550612926483,-0.04041173309087753,0.0032718803267925978,0.009666169993579388,0.013933046720921993,-0.10050461441278458,0.008263613097369671,0.05877016484737396,0.05236630141735077,0.090853750705719,-0.012725712731480598,0.027917804196476936,0.029675282537937164,-0.040738288313150406,0.06920178234577179,-0.08457977324724197,-0.022419529035687447,-0.08581588417291641,-0.027101140469312668,0.032853227108716965,-0.015311811119318008,0.05555616319179535,-0.05401967465877533,0.039659034460783005,0.029165510088205338,0.00642483402043581,-0.0671776607632637,-0.06794460862874985,-0.010726279579102993,0.004641632083803415,-0.061764009296894073,0.031205596402287483,0.03265600651502609,0.04716217890381813,0.018719621002674103,0.07657373696565628]},{"text":"Te greges centum Siculaeque circum Mugiunt vaccae, tibi tollit hinnitum Apta quadrigis equa, te bis Afro 35 Murice tinctae Vestiunt lanae; mihi parva rura et Spiritum Graiae tenuem Camenae Parca non mendax dedit et malignum Spernere volgus. 40 XVII.","book":"Homage to Catalonia","chapter":14,"embedding":[0.041338007897138596,0.09643952548503876,-0.03586301580071449,-0.02549501322209835,-0.15460368990898132,0.00007717464177403599,0.053120121359825134,0.05680954083800316,0.0334869809448719,0.06876373291015625,0.05793045461177826,-0.1469775140285492,0.06738229840993881,0.00039497981197200716,-0.030666081234812737,-0.09503791481256485,-0.022605614736676216,0.10740398615598679,-0.04271893948316574,0.019458483904600143,0.012815670110285282,-0.0034872316755354404,0.007879124023020267,0.03769140690565109,-0.05767446383833885,0.04771420732140541,-0.036253880709409714,-0.011389289051294327,0.04623836651444435,-0.07067497819662094,-0.009102258831262589,0.12224192917346954,0.024157436564564705,-0.013817557133734226,-0.020275892689824104,-0.04791576787829399,-0.019660605117678642,0.024758899584412575,0.0882001593708992,0.04367063194513321,-0.051212213933467865,-0.048986662179231644,-0.06709273904561996,-0.029106352478265762,0.00041021883953362703,0.03939024358987808,0.01932981051504612,0.10048007220029831,0.0344143807888031,-0.04053209722042084,-0.012336346320807934,0.0008336517494171858,-0.06377135962247849,0.0357491634786129,-0.07587569206953049,-0.07914548367261887,0.03795536980032921,-0.006422257982194424,0.03654178977012634,-0.033639322966337204,0.057147253304719925,0.012659629806876183,-0.026399148628115654,0.05134613439440727,-0.04754893109202385,-0.02859281189739704,-0.027582276612520218,-0.06664935499429703,-0.10404477268457413,-0.057789046317338943,0.12724299728870392,-0.05494275316596031,-0.07744769752025604,0.049379508942365646,-0.0338226780295372,0.061701495200395584,0.01820787787437439,0.0016483935760334134,-0.0016649351455271244,-0.05937939137220383,-0.02137644961476326,0.09793292731046677,0.08590764552354813,0.036104243248701096,-0.022538479417562485,0.020482724532485008,0.051832713186740875,0.008738713338971138,0.020756607875227928,-0.06102938950061798,-0.008926265873014927,0.10694316029548645,-0.00877152569591999,-0.036779019981622696,0.04909827560186386,0.03499132767319679,-0.07937479019165039,-0.00441731559112668,-0.047076817601919174,0.01746607944369316,0.05865253135561943,-0.08100468665361404,-0.031957659870386124,0.09909024834632874,-0.1114758551120758,-0.023647353053092957,-0.003298309864476323,-0.09072361141443253,0.011361929588019848,-0.01902952790260315,-0.03200111538171768,-0.01913706585764885,-0.061421338468790054,-0.0672256201505661,0.0014083426212891936,-0.033213891088962555,0.05509422719478607,0.013450738973915577,-0.0037751924246549606,-0.028195124119520187,-0.015170648694038391,-0.022478602826595306,-0.03312770277261734,-0.0757007747888565,0.03408130258321762,-0.0394766591489315,0.08431820571422577,2.2903596417650385e-32,-0.05950421467423439,-0.03160887584090233,-0.016495339572429657,-0.0063742371276021,0.026082448661327362,-0.011720818467438221,-0.06710772216320038,-0.05389461666345596,0.012052820064127445,-0.10927219688892365,-0.049660246819257736,-0.007916293106973171,-0.017687955871224403,0.019133836030960083,-0.021557897329330444,0.06964948028326035,0.04624941945075989,-0.0878983736038208,-0.03901307284832001,-0.06967169791460037,-0.05940743163228035,0.03993909806013107,0.06222522631287575,0.021617623046040535,0.020382670685648918,0.004055358935147524,0.01718508079648018,-0.07854209095239639,-0.027781957760453224,0.01333207730203867,0.028112607076764107,-0.042939383536577225,0.03954162821173668,-0.024539295583963394,-0.03883761167526245,0.001628722297027707,0.054249636828899384,-0.0137131093069911,-0.062439292669296265,0.03861881047487259,0.01344925258308649,0.028279278427362442,0.11186284571886063,0.014918573200702667,0.01652103289961815,0.011737887747585773,0.004591537173837423,0.016905825585126877,0.06270816922187805,0.026065349578857422,-0.007655023597180843,0.06898647546768188,-0.0005333612207323313,-0.043216556310653687,-0.010056989267468452,-0.014240352436900139,-0.03648003563284874,0.08535598963499069,-0.03159347176551819,-0.010867427103221416,0.06892760097980499,0.01531335897743702,0.03587227314710617,-0.00473256129771471,-0.005135335959494114,-0.06557811051607132,-0.09051790088415146,-0.009632145054638386,0.11292558163404465,-0.037936531007289886,-0.1058260127902031,-0.030758343636989594,0.02142813615500927,0.030253268778324127,-0.0007337846327573061,0.004522356670349836,0.04457265883684158,-0.06995537132024765,-0.027857864275574684,-0.040243733674287796,-0.10361321270465851,0.022884145379066467,-0.02483021467924118,-0.022953351959586143,0.10120787471532822,-0.025481879711151123,-0.009788514114916325,-0.020212672650814056,0.014278050512075424,-0.006630823481827974,-0.0005556654650717974,0.057179369032382965,0.015812786296010017,0.06778211891651154,0.001470954273827374,-2.0467791390490166e-32,-0.032173287123441696,0.0012516871793195605,-0.037304844707250595,0.14471660554409027,0.03205949813127518,-0.043706830590963364,-0.09549129754304886,0.02028498612344265,-0.01001819595694542,-0.009326916188001633,-0.005733737256377935,-0.012888442724943161,0.09429620951414108,-0.023952919989824295,0.015464144758880138,0.051624275743961334,0.12397261708974838,0.034909941256046295,-0.08435773849487305,-0.05929845571517944,-0.031738173216581345,0.011208241805434227,-0.03161359578371048,-0.1165594831109047,-0.017105167731642723,0.019733775407075882,0.05448285862803459,-0.056689560413360596,-0.027103649452328682,-0.008132065646350384,0.01113039255142212,-0.01798403635621071,-0.029105868190526962,0.05111445114016533,0.012248530052602291,-0.03942021355032921,0.16544410586357117,-0.029318803921341896,-0.04123891517519951,-0.0042969645000994205,-0.021883442997932434,0.011448848061263561,0.04254535213112831,0.06097554415464401,0.0192406065762043,-0.07169969379901886,-0.02187131904065609,0.0363461971282959,-0.057007625699043274,0.02198106423020363,0.09968694299459457,-0.00911642238497734,0.029316335916519165,0.011629318818449974,0.05285976454615593,-0.044147051870822906,-0.0042626275680959225,0.010257966816425323,-0.035896677523851395,0.03327348455786705,0.02448933757841587,0.04443740099668503,-0.0007925890968181193,-0.042344409972429276,0.06462543457746506,0.0470401793718338,-0.08341562002897263,0.05913190916180611,-0.042805783450603485,0.035735927522182465,0.06295200437307358,-0.08643118292093277,-0.13218346238136292,-0.053318463265895844,-0.01567399688065052,0.0315689817070961,0.05450243130326271,0.03240714222192764,0.0196079071611166,0.06644248962402344,-0.04862579330801964,-0.04323652386665344,-0.053892865777015686,-0.005963803268969059,0.0318635031580925,-0.03269951418042183,-0.005615514703094959,0.006971176713705063,0.06913617253303528,0.009859621524810791,0.02479158528149128,-0.000005945798875472974,0.02408674918115139,-0.04049764573574066,0.050981804728507996,-6.453645795545526e-8,0.021424435079097748,-0.08875419199466705,-0.021597295999526978,0.028568603098392487,0.03790823370218277,-0.03692268952727318,0.02455553598701954,-0.01042267121374607,-0.020729415118694305,0.0546690933406353,-0.022026309743523598,-0.012962804175913334,-0.03395313397049904,0.024774610996246338,0.06784845143556595,0.09555701166391373,0.062069304287433624,0.03381294757127762,-0.050256650894880295,-0.0583638958632946,0.05876343697309494,-0.0740581676363945,-0.04188726469874382,-0.022299857810139656,-0.09218908846378326,-0.05444047972559929,0.0032961417455226183,-0.05839136615395546,-0.024512935429811478,-0.0217225793749094,0.034012842923402786,0.05806734785437584,0.0006349652539938688,-0.09474315494298935,-0.0583496168255806,0.016360970214009285,0.015200753696262836,0.06561584025621414,0.029567763209342957,-0.03321821242570877,0.024490123614668846,-0.06254375725984573,0.07953673601150513,-0.043054573237895966,0.00859981682151556,-0.021528592333197594,-0.021193381398916245,0.05195209011435509,-0.01061660423874855,-0.09872858226299286,-0.009998154826462269,0.05609885975718498,0.09209821373224258,0.04821120947599411,-0.07056911289691925,-0.004121021833270788,0.08232349157333374,-0.0003967145166825503,0.03390015289187431,-0.0006729268352501094,0.018774794414639473,0.016093183308839798,-0.015350671485066414,-0.05412029102444649]},{"text":"Nec dis amicumst nec mihi te prius Obire, Maecenas, mearum Grande decus columenque rerum.","book":"Homage to Catalonia","chapter":14,"embedding":[0.019198184832930565,0.0358818955719471,0.01610017754137516,-0.0032023682724684477,-0.0807933583855629,-0.0321028009057045,0.01045080553740263,0.15195347368717194,0.004667492117732763,0.04160737618803978,0.03566192090511322,-0.0908624678850174,-0.001483840518631041,0.028546463698148727,-0.036873068660497665,-0.04831419140100479,0.04167334362864494,0.0415196418762207,-0.034046951681375504,0.06177586317062378,0.0764736607670784,-0.00936118233948946,-0.07297758013010025,0.021720176562666893,-0.08347668498754501,-0.004866011906415224,-0.03681762143969536,0.04147360473871231,0.1155296191573143,-0.05930543690919876,0.05625605210661888,0.051981501281261444,0.09766390174627304,0.01807248778641224,0.00045476199011318386,-0.04792362451553345,0.007064653094857931,-0.15545789897441864,0.01031696330755949,0.07011149823665619,-0.07807604223489761,0.05310842767357826,-0.08237019926309586,-0.007329363375902176,0.08435998857021332,-0.0482761412858963,-0.042172204703092575,0.06664295494556427,0.010946794413030148,0.002722377423197031,-0.03526173532009125,-0.019388528540730476,-0.11616403609514236,0.11758062243461609,-0.01892908476293087,0.0068528978154063225,0.06297942996025085,-0.04603898152709007,-0.004799353890120983,-0.0396529845893383,-0.0215983297675848,0.03913480415940285,-0.015783175826072693,-0.04234812408685684,-0.07733265310525894,0.04184230789542198,-0.046694763004779816,0.013909862376749516,-0.0735432505607605,0.08186870068311691,0.05622052028775215,-0.09136472642421722,-0.08297047764062881,0.03370717912912369,-0.041202280670404434,0.018509667366743088,0.007016862276941538,-0.05690428987145424,-0.062185488641262054,-0.06318571418523788,-0.035734713077545166,-0.009979796595871449,-0.04623602330684662,-0.08040440082550049,0.07713071256875992,-0.04377654194831848,0.014886676333844662,-0.005460986867547035,0.11555150896310806,0.0015323113184422255,-0.03220389783382416,0.04595122113823891,-0.09634028375148773,0.008263945579528809,0.013304167427122593,0.09322094917297363,-0.025304337963461876,0.011845621280372143,0.007981342263519764,-0.01883692294359207,-0.0503762848675251,-0.01678112894296646,-0.05776681378483772,-0.03464626893401146,-0.13014347851276398,0.08080201596021652,-0.0075109973549842834,-0.047585416585206985,0.011719033122062683,0.022235913202166557,-0.06171711906790733,-0.10191617161035538,-0.08881790935993195,-0.03899449482560158,-0.036720313131809235,0.01461562979966402,-0.029230179265141487,-0.06474229693412781,0.026767101138830185,-0.03623434901237488,0.005538248922675848,-0.0032071012537926435,0.031611423939466476,-0.047202907502651215,0.07172954082489014,-0.034194108098745346,0.028834674507379532,6.979275098764645e-33,-0.08099315315485,-0.0306596327573061,-0.05530492588877678,0.03743414580821991,0.03553619980812073,-0.008538199588656425,-0.061415404081344604,0.0008002358372323215,0.07908269762992859,-0.04567580670118332,-0.08913108706474304,0.0014577426481992006,-0.026278188452124596,-0.039507269859313965,0.002476923633366823,0.011350682005286217,0.036068227142095566,-0.06117117777466774,-0.02995237521827221,0.024089312180876732,-0.01973254606127739,0.020504681393504143,0.02535693533718586,-0.05080220848321915,0.03676038235425949,-0.006878278683871031,-0.005523073021322489,-0.08489004522562027,0.007152582984417677,0.03830120339989662,0.06118280813097954,-0.04073204845190048,-0.02612222731113434,-0.0019501163624227047,-0.01706710457801819,0.09908955544233322,0.01177290454506874,0.014255711808800697,-0.05687776580452919,-0.031091054901480675,0.03130048140883446,0.04202086478471756,0.09649393707513809,-0.001404401147738099,0.06865626573562622,0.045375630259513855,0.0650097206234932,0.0113729452714324,0.0890401229262352,0.006922232452780008,-0.01710614562034607,-0.03340630605816841,-0.02149912901222706,-0.024769360199570656,0.005232405848801136,0.04107826575636864,-0.09327494353055954,0.05673113465309143,0.025408297777175903,-0.011391946114599705,-0.027352480217814445,-0.03091835044324398,-0.03691019490361214,0.054458167403936386,0.0086662033572793,-0.04505963996052742,-0.062139417976140976,0.0583837516605854,0.11401611566543579,0.017582273110747337,-0.09024056047201157,-0.03770345449447632,-0.01245356909930706,0.06693967431783676,-0.02479211427271366,0.015663135796785355,0.029183391481637955,-0.012180284596979618,-0.03304949030280113,-0.0034214628394693136,-0.07589952647686005,0.05486481264233589,-0.04525372013449669,0.05344527214765549,0.0926101878285408,0.02606680803000927,0.01738792471587658,0.0969669297337532,0.0979786291718483,0.06998412311077118,0.06467709690332413,0.09645392000675201,0.05797608941793442,-0.01786729134619236,0.023654941469430923,-6.330632907877091e-33,-0.034764982759952545,-0.025393418967723846,-0.05745460093021393,0.14776650071144104,0.013946402817964554,0.008119916543364525,-0.06770557165145874,0.012924802489578724,0.029180211946368217,-0.03213774040341377,-0.023896826431155205,-0.07498983293771744,0.05048669874668121,-0.054136231541633606,-0.0732249841094017,0.042204294353723526,0.03630350902676582,-0.022160034626722336,-0.014135384932160378,-0.014482065103948116,-0.03810013085603714,0.03457020968198776,-0.000022956317479838617,-0.04695785045623779,0.008518218994140625,0.023295490071177483,-0.005927033256739378,0.0019283300498500466,-0.046322911977767944,0.006294339429587126,0.06854385882616043,-0.02823489159345627,-0.03395885229110718,0.04551536589860916,-0.01727914623916149,0.007898579351603985,0.06310534477233887,-0.037859681993722916,-0.04651555418968201,0.016645343974232674,0.016559334471821785,0.03906204178929329,0.04728478938341141,0.05308210849761963,-0.032194219529628754,0.0014506058068946004,-0.04551089555025101,-0.021180598065257072,0.020459067076444626,-0.02526034042239189,0.11741429567337036,-0.08171860128641129,0.01267619151622057,-0.029419446364045143,0.04573635384440422,-0.08666304498910904,-0.007541507016867399,-0.07750330120325089,0.0032797022722661495,0.01396414265036583,0.14689703285694122,0.044831782579422,-0.03947020694613457,-0.03030855394899845,0.012942827306687832,-0.026788409799337387,0.04896290600299835,0.03551444411277771,-0.03660561144351959,0.03734314441680908,0.05140746384859085,-0.06562577188014984,-0.11096470803022385,-0.04065271466970444,-0.009906895458698273,0.012518969364464283,-0.02612164244055748,0.0041970498859882355,0.011075736954808235,-0.02596336044371128,0.01737753488123417,-0.05470520257949829,-0.05618695914745331,-0.007792655844241381,0.030917497351765633,-0.0452946238219738,-0.08586230874061584,0.025847412645816803,0.049709539860486984,0.020192231982946396,-0.0402013398706913,0.011036818847060204,0.08903235197067261,0.011822741478681564,-0.008741533383727074,-3.333005693662017e-8,-0.01939280889928341,-0.07203078269958496,-0.026832083240151405,0.013168444857001305,-0.015378094278275967,-0.1194063201546669,-0.009095988236367702,-0.03065536729991436,-0.010096937417984009,0.03818449378013611,0.047481004148721695,-0.0177865382283926,-0.0494692288339138,0.062109410762786865,0.03344385698437691,0.026846501976251602,0.03681667521595955,0.07049503922462463,-0.013547347858548164,-0.07356593757867813,-0.005421892739832401,-0.0006675882032141089,-0.06641367077827454,-0.020682068541646004,0.02997834049165249,0.007587813772261143,0.060788922011852264,-0.010881919413805008,0.049307744950056076,0.009693391621112823,0.03780887648463249,0.06889940053224564,0.010495411232113838,-0.012104102410376072,-0.08516818284988403,0.04290971904993057,0.02597442828118801,0.07067664712667465,0.022991754114627838,-0.009149197489023209,0.07569365203380585,0.06719958037137985,0.049542441964149475,-0.07291945070028305,0.018934031948447227,-0.043895162642002106,-0.009441484697163105,-0.017496010288596153,-0.013374200090765953,-0.020327990874648094,-0.009166140109300613,-0.07444710284471512,0.10471096634864807,0.06804187595844269,0.023895904421806335,0.020878953859210014,0.05757026746869087,-0.006778902839869261,0.016747282817959785,-0.05876438692212105,0.08998364210128784,0.05642823129892349,0.07493773102760315,0.02847660519182682]},{"text":"Ille dies utramque Ducet ruinam.","book":"Homage to Catalonia","chapter":14,"embedding":[-0.024015938863158226,0.07091119140386581,0.04589764401316643,-0.06730042397975922,-0.11683248728513718,0.02072388492524624,0.11512833088636398,0.12455911934375763,0.06966108828783035,0.07811477780342102,-0.0300211813300848,-0.044415976852178574,-0.003102457383647561,-0.06245426833629608,-0.08421767503023148,-0.01810673624277115,-0.05073656886816025,0.1522497534751892,-0.022189121693372726,0.04460366070270538,0.05508015304803848,0.005868419539183378,0.009541402570903301,0.01636677235364914,-0.10166937857866287,-0.0013781057205051184,0.05526893213391304,0.0132718775421381,0.0016009729588404298,-0.07051282376050949,0.022797418758273125,0.029677465558052063,-0.02493833377957344,-0.058761853724718094,0.009905233979225159,0.012695086188614368,0.02492079883813858,-0.0778011903166771,0.005254797637462616,0.011840995401144028,0.011260440573096275,0.05135774984955788,-0.060800112783908844,0.012036100961267948,0.0650373324751854,-0.037956517189741135,-0.05236022174358368,0.0917297899723053,0.10372629016637802,-0.013728641904890537,0.04068974778056145,-0.006018268875777721,0.01344773918390274,-0.001714992569759488,0.03860084339976311,-0.03638321906328201,-0.036413125693798065,0.05229378864169121,-0.012913759797811508,0.040586475282907486,-0.020094238221645355,0.07353831082582474,-0.004399063065648079,-0.0004729173379018903,-0.0017241353634744883,-0.034425243735313416,0.017899559810757637,0.029310520738363266,-0.1095505952835083,0.06592739373445511,-0.009954633191227913,-0.1139790341258049,-0.08064143359661102,-0.012327542528510094,-0.10063360631465912,0.056717950850725174,-0.03837857395410538,-0.03217117488384247,-0.07812011986970901,-0.12225352227687836,-0.0007004492217674851,-0.025571636855602264,0.09230739623308182,-0.05525261536240578,0.0640845000743866,-0.029147880151867867,0.03923993185162544,0.013635358773171902,0.08211011439561844,0.02388344332575798,-0.029240861535072327,-0.020172640681266785,-0.0448940135538578,0.004361670929938555,0.043866343796253204,0.00856116320937872,0.003461477579548955,0.046013377606868744,-0.0678517147898674,0.03289882838726044,-0.006862573325634003,0.027510633692145348,0.017621351405978203,0.042580194771289825,-0.051499415189027786,-0.00180272466968745,-0.00014481967082247138,-0.02038879506289959,0.058701857924461365,-0.052774831652641296,-0.11539466679096222,-0.006135278381407261,0.02386431209743023,-0.037682801485061646,0.08315207809209824,-0.04086911305785179,0.015312272123992443,-0.031011106446385384,-0.04358025640249252,-0.034195996820926666,0.026863453909754753,-0.0041008926928043365,-0.030489826574921608,0.000657151045743376,-0.0440872497856617,-0.052768319845199585,0.07178813219070435,5.286930024552206e-34,-0.09472382068634033,-0.040012601763010025,0.032150253653526306,0.03448595106601715,-0.04545097053050995,-0.01778058335185051,-0.06955031305551529,-0.002778188791126013,-0.07208100706338882,-0.022228483110666275,-0.024394255131483078,-0.0972534567117691,-0.054373838007450104,0.0001686131436144933,0.02918500080704689,0.019253825768828392,0.038604602217674255,0.01313057541847229,0.03968504071235657,-0.1003398448228836,-0.09987909346818924,0.07098811119794846,0.06618930399417877,-0.041873134672641754,0.05102125555276871,0.007432116195559502,0.04615866765379906,-0.0059259249828755856,-0.09850192815065384,0.013520232401788235,0.008774232119321823,0.016725124791264534,-0.05571063980460167,0.058385610580444336,-0.050358593463897705,0.050342440605163574,-0.03614242374897003,0.025375014171004295,-0.03266731649637222,0.03657257929444313,0.009398011490702629,-0.08381745964288712,-0.02400938794016838,-0.01057015173137188,0.004888210911303759,-0.02124231681227684,0.022799598053097725,0.047229886054992676,0.029743116348981857,0.029015827924013138,-0.027526354417204857,-0.008948680013418198,-0.08256300538778305,0.02915910817682743,-0.02047513984143734,0.04787394404411316,-0.02453223429620266,0.02214026264846325,0.03342530131340027,0.00085371860768646,0.08420419692993164,-0.014329028315842152,-0.07576760649681091,0.023430539295077324,-0.0892380103468895,-0.025316286832094193,-0.04484734311699867,-0.0381794199347496,0.016928458586335182,0.007341249380260706,-0.04639330506324768,0.026123039424419403,0.010857203043997288,0.04607091844081879,-0.04854027181863785,0.03992952033877373,-0.03013271652162075,0.028078176081180573,-0.07672836631536484,0.05368147790431976,-0.0397990420460701,-0.04920237511396408,0.013594552874565125,-0.025174105539917946,0.059871502220630646,0.04361329972743988,0.05275672674179077,0.001810912392102182,-0.03283282369375229,0.09709661453962326,0.036739613860845566,-0.0460691899061203,0.009921401739120483,0.01903817430138588,0.02559054270386696,-1.5858127762622998e-33,0.050302013754844666,0.00828884169459343,-0.0652145966887474,0.08240171521902084,-0.01652122661471367,-0.039022915065288544,-0.050477080047130585,0.0766378790140152,-0.10918474197387695,-0.12488220632076263,0.005700206384062767,-0.03229842707514763,0.08814284950494766,0.02647600881755352,-0.05523696914315224,0.055850379168987274,0.12123502790927887,-0.013402869924902916,-0.022166118025779724,-0.07503118366003036,-0.050127625465393066,-0.005484922789037228,-0.07298263907432556,-0.005857694894075394,-0.07572519779205322,0.029291318729519844,-0.0022185666020959616,0.01650790497660637,-0.0586119219660759,0.014280587434768677,0.06391877681016922,-0.01408358197659254,0.019195744767785072,0.03751080110669136,-0.019641391932964325,0.11246535927057266,0.09450756758451462,-0.010716402903199196,-0.010006717406213284,0.02144473046064377,-0.009025964885950089,-0.009005949832499027,0.014357457868754864,0.03908462077379227,0.09330563247203827,0.010132359340786934,-0.02900736592710018,-0.035956971347332,0.07830356061458588,-0.022763609886169434,0.0802636593580246,0.03804388269782066,0.02469002828001976,0.040280696004629135,0.05608512461185455,-0.05683685466647148,-0.007637494709342718,-0.10047727078199387,-0.08009064197540283,-0.012838275171816349,0.028733545914292336,0.1108941063284874,-0.010470578446984291,-0.04487061873078346,0.04804903641343117,-0.03653811663389206,-0.047543175518512726,0.07738788425922394,0.03833061084151268,0.016286436468362808,0.13642258942127228,-0.01872839406132698,-0.10322646051645279,-0.010158499702811241,-0.06003539636731148,-0.006455683149397373,-0.0216345377266407,0.05036188289523125,0.035806767642498016,0.009892160072922707,-0.022533059120178223,-0.07262323051691055,-0.029460091143846512,0.026237644255161285,-0.06083754822611809,-0.030595045536756516,0.011543498374521732,-0.04199700430035591,-0.029815124347805977,-0.05335010960698128,0.04483873024582863,-0.07321041077375412,0.043079350143671036,0.019423222169280052,0.001561149605549872,-1.8128664791561278e-8,0.010380703024566174,-0.06072019785642624,-0.06502674520015717,-0.05465453863143921,-0.0014270326355472207,-0.07748539000749588,-0.026149898767471313,0.06109952554106712,-0.023397697135806084,0.05371537804603577,0.04095233604311943,-0.013073903508484364,0.02537044882774353,0.05943729355931282,0.06300093978643417,0.07154275476932526,0.03244500607252121,0.0532081201672554,0.016240175813436508,-0.06455732882022858,-0.022735634818673134,-0.03240770846605301,0.01805170811712742,-0.10393152385950089,0.02511870488524437,-0.01070830225944519,0.016984062269330025,-0.06602370738983154,0.003393263788893819,0.04706883057951927,-0.019490044564008713,0.08866453915834427,0.018228549510240555,-0.04117659851908684,0.02937942184507847,0.06724771857261658,0.027626726776361465,0.00006112048868089914,0.018532752990722656,0.029234522953629494,0.037776846438646317,0.0721539780497551,0.0648280531167984,-0.04720894992351532,0.09509680420160294,0.022841686382889748,0.08917567133903503,-0.01268906332552433,-0.010823478922247887,-0.09130631387233734,0.008990325964987278,0.06879343837499619,0.09478041529655457,-0.009866306558251381,0.05040057376027107,0.03531663119792938,-0.008354823105037212,0.0066726249642670155,0.03509518876671791,0.029944900423288345,0.03228020295500755,0.042689818888902664,0.044324032962322235,-0.048221156001091]},{"text":"Me nec Chimaerae spiritus igneae Nec, si resurgat, centimanus Gyas Divellet umquam: sic potenti 15 Iustitiae placitumque Parcis.","book":"Homage to Catalonia","chapter":14,"embedding":[0.03999917209148407,0.03186031058430672,-0.020893074572086334,-0.06555038690567017,-0.06026575341820717,0.012280680239200592,0.016750246286392212,0.11202038824558258,-0.020489780232310295,0.025550726801156998,0.049893639981746674,-0.13351863622665405,-0.01924787275493145,-0.02140633389353752,-0.02452530339360237,-0.05432445928454399,0.011193284764885902,0.05512503534555435,-0.08122605085372925,-0.025158599019050598,0.04778719320893288,0.04465238004922867,-0.031618427485227585,0.0333985798060894,-0.06743941456079483,0.027078235521912575,-0.02746535837650299,-0.004217581357806921,0.046095527708530426,-0.1546880453824997,0.011283972300589085,0.05545372888445854,0.021939029917120934,0.004336914047598839,0.040880512446165085,0.01552205067127943,0.010645436123013496,-0.0448962040245533,0.03233306482434273,0.08043039590120316,-0.05920025706291199,-0.019652554765343666,-0.027632322162389755,-0.0023277958389371634,0.03246188908815384,-0.009863638319075108,-0.09663529694080353,0.0767127275466919,0.03253772854804993,0.04395802691578865,-0.06689415872097015,0.0035417182371020317,-0.05847010016441345,0.09251048415899277,-0.02987382933497429,-0.053945448249578476,0.06732159107923508,-0.0006571761914528906,0.034167710691690445,-0.06952808797359467,-0.02692423388361931,0.016648728400468826,-0.06012341380119324,-0.0022051173727959394,-0.05099865049123764,-0.04742451012134552,-0.018978001549839973,-0.05984979867935181,-0.055374301970005035,0.05806152895092964,0.10813331604003906,-0.08980473130941391,-0.052335869520902634,0.04754871502518654,-0.07781022787094116,0.02069312334060669,-0.0113754253834486,-0.021659811958670616,0.02602403797209263,-0.009636202827095985,-0.006713229697197676,0.07675164937973022,-0.04991507530212402,-0.06386274099349976,-0.03785540536046028,0.010136059485375881,-0.04854154214262962,0.010052359662950039,0.034149572253227234,0.0028145844116806984,-0.00412857998162508,0.024306468665599823,-0.01458238810300827,-0.012187942862510681,0.06114838272333145,0.054408930242061615,-0.021722348406910896,-0.034783463925123215,0.0035947386641055346,0.0005402084207162261,0.011798792518675327,-0.04450279474258423,-0.08264394104480743,-0.011944263242185116,-0.1436292678117752,0.008077209815382957,-0.053457338362932205,-0.03559707850217819,0.013224819675087929,0.002710183849558234,-0.03001449443399906,-0.020314957946538925,-0.060326699167490005,-0.11786250025033951,0.030082980170845985,0.04719175398349762,0.024892430752515793,-0.0885021910071373,-0.03256138786673546,-0.06563577800989151,0.014482660219073296,-0.0160413458943367,-0.011973108164966106,-0.03058159351348877,-0.008339544758200645,-0.09252044558525085,0.028233228251338005,1.1666217194622809e-32,-0.0661524161696434,-0.03568752110004425,-0.029430849477648735,0.028683673590421677,0.00957548338919878,-0.08281639963388443,-0.04377530887722969,-0.033286821097135544,0.009170160628855228,-0.06611068546772003,-0.07777271419763565,0.013507348485291004,-0.10659035295248032,-0.006497170310467482,-0.05490075796842575,-0.010958612896502018,0.12816265225410461,-0.009488082490861416,-0.044598400592803955,-0.10592134296894073,-0.021023746579885483,0.05026997998356819,0.04592280462384224,-0.022776996716856956,0.05371910706162453,0.05896688625216484,0.015041627921164036,-0.09526537358760834,-0.04279530420899391,0.01640697754919529,0.11997666954994202,0.04950442165136337,-0.05068131536245346,-0.0195314921438694,-0.032287172973155975,-0.0005773426964879036,0.020180657505989075,-0.026351645588874817,-0.05637773126363754,0.0018809812609106302,0.04226287826895714,0.06723646074533463,0.047719165682792664,0.0025001708418130875,0.10098890215158463,-0.007507665082812309,-0.005763002671301365,0.06314525008201599,0.12566588819026947,0.0033781612291932106,-0.02642616257071495,0.01224111020565033,0.007126141805201769,-0.022033778950572014,-0.0014955531805753708,0.022819949313998222,-0.034452155232429504,0.01113941241055727,-0.005005558021366596,-0.06819331645965576,-0.013957506977021694,0.009680932387709618,-0.01640031859278679,0.008869463577866554,-0.03288771212100983,-0.04719549044966698,-0.09090658277273178,0.02171039767563343,0.12073823809623718,0.020260024815797806,-0.0831993967294693,-0.05118066817522049,-0.03759846091270447,0.05157727375626564,0.026108162477612495,-0.014670799486339092,0.030665308237075806,0.0337945893406868,-0.07411269843578339,0.003268832340836525,-0.041304633021354675,0.03847437724471092,-0.07068915665149689,-0.013423925265669823,0.10809970647096634,-0.010023192502558231,0.010746903717517853,0.00799306109547615,0.03693089634180069,0.058992378413677216,-0.03039928525686264,0.019771387800574303,0.056159909814596176,0.06346194446086884,-0.03462159261107445,-1.1262564924177913e-32,0.002315003424882889,-0.07412194460630417,-0.01051819697022438,0.1650318205356598,0.03484513238072395,-0.0007234188378788531,-0.08031825721263885,0.003839187789708376,0.0016576079651713371,-0.03226485848426819,-0.08553417026996613,-0.020606210455298424,0.04607371613383293,-0.033850204199552536,-0.010337377898395061,0.10254760086536407,0.026502851396799088,-0.0057955472730100155,-0.04948720708489418,0.00951607245951891,-0.06621532142162323,0.03146599605679512,0.017088908702135086,-0.07643476128578186,0.014267646707594395,0.032682158052921295,0.03595845401287079,-0.020477281883358955,0.01345766056329012,0.008013278245925903,0.09999974071979523,-0.012645325623452663,-0.046226438134908676,0.030464844778180122,-0.05960090830922127,-0.06202307716012001,0.15936928987503052,0.012792873196303844,-0.040706612169742584,0.037214495241642,0.008406623266637325,0.09811027348041534,0.047489456832408905,0.11904985457658768,-0.06739858537912369,-0.051585596054792404,0.034504421055316925,-0.08329872786998749,-0.04779598116874695,-0.030034450814127922,0.13050617277622223,-0.06736563891172409,0.04069594293832779,0.030949575826525688,0.06785032153129578,-0.016230139881372452,-0.010748932138085365,-0.05478087067604065,-0.009139934554696083,-0.03563471883535385,0.08209796249866486,0.04740547761321068,-0.03399556130170822,-0.01573484018445015,0.10847572982311249,-0.003650791710242629,-0.017716869711875916,0.042996060103178024,-0.04467158392071724,0.024176692590117455,0.04866594448685646,-0.07567039132118225,-0.02787484973669052,0.03194161131978035,0.027896998450160027,0.0063934363424777985,0.02306433767080307,0.009014058858156204,0.01792732998728752,0.05227169394493103,-0.03620535135269165,-0.02652912400662899,-0.0801592767238617,0.02629409357905388,0.05644708499312401,-0.021951710805296898,0.05622474104166031,0.05862707644701004,0.02627350576221943,0.018538327887654305,-0.02925746887922287,0.033568721264600754,0.09821714460849762,0.01205519586801529,0.05406775325536728,-4.251065988114533e-8,0.006754381116479635,-0.05749807506799698,-0.03270726650953293,0.025848878547549248,0.022096799686551094,-0.09123702347278595,-0.014810116030275822,0.005826274864375591,-0.03484107926487923,0.025585496798157692,0.004634825047105551,0.004371746443212032,0.012606889009475708,0.02343965508043766,0.06948438286781311,-0.003336027730256319,0.03476124256849289,0.09409470111131668,-0.0050518750213086605,-0.06999246031045914,0.03411751613020897,-0.0026713230181485415,-0.0000836249309941195,-0.022301414981484413,-0.04700581356883049,0.023530663922429085,0.04654962942004204,-0.026114901527762413,-0.02857287973165512,0.05279349535703659,-0.053639885038137436,0.09921524673700333,0.029652776196599007,-0.08727168291807175,-0.057726409286260605,0.03930794075131416,0.017630338668823242,0.045502398163080215,-0.005748007446527481,-0.0459870807826519,0.06139542907476425,0.04893505945801735,0.04123668745160103,-0.03576425835490227,-0.0322444885969162,-0.08590863645076752,-0.01568710431456566,0.02670988440513611,0.005934989079833031,0.009501953609287739,-0.05590025708079338,-0.012703221291303635,0.07266242057085037,0.007269791793078184,0.021708279848098755,0.011307911016047001,0.036147259175777435,0.003650539554655552,0.02633495256304741,-0.03699785843491554,0.1525498777627945,0.03327659144997597,-0.008365447632968426,-0.012429130263626575]},{"text":"Te Iovis impio Tutela Saturno refulgens Eripuit volucrisque Fati Tardavit alas, cum populus frequens 25 Laetum theatris ter crepuit sonum; Me truncus inlapsus cerebro Sustulerat, nisi Faunus ictum Dextra levasset, Mercurialium Custos virorum.","book":"Homage to Catalonia","chapter":14,"embedding":[-0.015840524807572365,0.04804391413927078,0.0003259231452830136,-0.017500927671790123,-0.010900636203587055,-0.013280170038342476,0.09372951090335846,0.1312110871076584,0.05074518918991089,0.03380177915096283,0.05297442898154259,-0.07360541075468063,0.03959948197007179,-0.05153990536928177,-0.07094712555408478,-0.1065300926566124,0.021266333758831024,0.028540752828121185,-0.025278335437178612,0.0037429986987262964,0.05192997679114342,0.011691722087562084,-0.0021785194985568523,0.0007370468229055405,-0.05447930842638016,0.08196716755628586,-0.09560690820217133,-0.03936800733208656,0.0697677955031395,-0.12013397365808487,-0.00657121604308486,0.10567168146371841,0.026875438168644905,-0.05142398178577423,-0.031048081815242767,0.010953555814921856,-0.03419487923383713,-0.03686022013425827,0.03572564199566841,0.051315031945705414,-0.04110510274767876,0.02727242186665535,-0.029997266829013824,-0.01831074059009552,-0.0008111068163998425,0.0063456944189965725,-0.04515876621007919,0.04610142484307289,-0.00427317526191473,0.04217014089226723,-0.0579364188015461,-0.04497897997498512,-0.040043026208877563,0.06936825811862946,-0.0780559778213501,-0.002224228112027049,-0.006728346459567547,-0.07143534719944,0.025048770010471344,-0.02143697999417782,0.008310055360198021,0.04623469337821007,0.0162563044577837,-0.03398601710796356,-0.012447941116988659,0.05926378443837166,-0.025351108983159065,-0.00008122331200866029,-0.0525713786482811,0.01199914701282978,0.1218051090836525,0.0002492758212611079,-0.009779772721230984,0.1041446328163147,-0.025051414966583252,0.041749805212020874,-0.011218353174626827,-0.05314890295267105,0.0301355067640543,0.0006005996838212013,-0.06372722238302231,0.03701429069042206,-0.043074075132608414,-0.0016056302702054381,-0.013601748272776604,-0.0028850676026195288,0.01911238022148609,-0.02731410786509514,0.003397903870791197,0.018451465293765068,0.055024366825819016,-0.02022201381623745,-0.01679125428199768,-0.04027491807937622,-0.00313950190320611,0.0589662566781044,-0.08340749889612198,-0.06536401063203812,0.017058134078979492,-0.041691847145557404,0.06844675540924072,-0.00656517781317234,0.021868353709578514,0.07874637842178345,-0.1469910740852356,-0.07768220454454422,-0.023543868213891983,-0.09652029722929001,0.05088509991765022,0.014655139297246933,-0.0591660812497139,-0.08892595022916794,-0.039511483162641525,-0.09401624649763107,0.00031973342993296683,-0.009290200658142567,-0.014643706381320953,-0.04984710365533829,-0.010357905179262161,-0.0359623096883297,0.015415924601256847,-0.01740082912147045,-0.020072167739272118,-0.030229248106479645,0.04085955396294594,-0.1126260757446289,-0.012751569040119648,2.3494937667039168e-32,-0.01920747570693493,-0.031385380774736404,-0.0037526548840105534,-0.007511128205806017,0.024153031408786774,-0.05416380241513252,-0.07808654755353928,-0.051690611988306046,0.06092502549290657,-0.060348670929670334,-0.138461634516716,-0.010342169553041458,-0.04400267452001572,-0.018114274367690086,-0.0527389794588089,0.04280022904276848,0.07500879466533661,-0.008749883621931076,0.003965533338487148,-0.05363461747765541,-0.09327501058578491,0.03697456791996956,0.05355329066514969,-0.06557527929544449,0.01447442639619112,0.015255763195455074,-0.035754695534706116,-0.02164551056921482,0.009197082370519638,0.023598596453666687,0.1443956047296524,0.011640649288892746,-0.03844749182462692,0.015008371323347092,0.03941437602043152,0.011775334365665913,0.0036249090917408466,-0.02772338315844536,-0.04006447270512581,0.020761847496032715,0.039004307240247726,0.0838249996304512,0.03618540242314339,0.052417825907468796,0.09656277298927307,0.0025143118109554052,0.04379313439130783,0.040975600481033325,0.13069182634353638,-0.050201792269945145,0.046769410371780396,0.014247596263885498,0.0036608828231692314,-0.08174078911542892,0.01636429689824581,0.08979979157447815,-0.03339115530252457,0.09312079846858978,-0.027816109359264374,-0.01712990738451481,0.007417337037622929,-0.013953871093690395,0.01843232847750187,0.023172535002231598,-0.009414401836693287,-0.03110949881374836,-0.13547846674919128,-0.040655408054590225,0.04231543466448784,0.002275353530421853,-0.0883784145116806,-0.05861610546708107,-0.04137247055768967,0.07479864358901978,0.01571374386548996,0.011028015986084938,0.004096233751624823,-0.03816736862063408,-0.08482512086629868,-0.028153354302048683,-0.07115912437438965,-0.01526508666574955,-0.0004587240982800722,-0.00772869773209095,0.050991613417863846,0.018666734918951988,0.014815683476626873,0.025339635089039803,0.11998702585697174,0.028884220868349075,0.04770391434431076,0.011018860153853893,0.01837250590324402,-0.014748486690223217,-0.020068436861038208,-2.0745769355836744e-32,-0.007247314788401127,-0.08652724325656891,-0.035780612379312515,0.08781066536903381,-0.00655365502461791,0.03926766663789749,-0.10259493440389633,0.03180592507123947,0.03409229591488838,-0.01912863925099373,-0.01847732812166214,-0.018807340413331985,0.019040964543819427,-0.10917049646377563,0.00396673334762454,0.05396866798400879,0.09159325808286667,0.08463632315397263,-0.016949230805039406,-0.03648499771952629,-0.08104918897151947,-0.03848991170525551,0.03265835717320442,-0.05562432110309601,-0.05908825248479843,0.04079381003975868,-0.005741557572036982,-0.109907366335392,0.008046435192227364,-0.0356268510222435,0.06332840770483017,-0.01930098980665207,-0.04851539060473442,0.04564738646149635,-0.019269483163952827,-0.03732746094465256,0.11272570490837097,-0.08339836448431015,-0.03914415091276169,-0.007595684379339218,-0.006598122417926788,0.0363425575196743,0.15115731954574585,0.00234563322737813,0.00405530072748661,-0.07140684127807617,-0.054171573370695114,0.009462183341383934,-0.055989231914281845,0.05941985920071602,0.11472702026367188,-0.03301876783370972,0.004752093460410833,-0.05883746221661568,0.09494496881961823,-0.009050927124917507,-0.06189923360943794,-0.009430842474102974,0.019315985962748528,-0.004556120373308659,0.040972210466861725,-0.015316157601773739,-0.020533820614218712,-0.06670814752578735,0.10120625048875809,0.014917056076228619,-0.05722739174962044,0.07900025695562363,-0.0077156927436590195,0.09672217071056366,0.050659384578466415,-0.059834547340869904,-0.12200511246919632,-0.05827485769987106,0.018473632633686066,0.016414925456047058,-0.018011977896094322,0.011452531442046165,0.012609140947461128,-0.01051641721278429,-0.015546039678156376,-0.0017172462539747357,-0.046435676515102386,-0.061243437230587006,-0.0663931667804718,-0.029896577820181847,-0.02892637439072132,0.021952316164970398,0.04026070237159729,0.013943836092948914,-0.048226453363895416,-0.05122799053788185,0.031974658370018005,-0.0031020650640130043,0.0068373968824744225,-6.64684023377049e-8,0.028452228754758835,-0.02208671160042286,-0.02624172903597355,0.0658997893333435,-0.00001953786522790324,-0.06560420989990234,0.035414017736911774,-0.002258456079289317,-0.0171666219830513,-0.018497437238693237,-0.06382131576538086,0.010296273976564407,0.06257317960262299,-0.04676659777760506,0.0570647194981575,0.022539105266332626,0.07280004769563675,0.038312796503305435,-0.01821020431816578,-0.005278096534311771,0.11090215295553207,-0.021283788606524467,-0.02956056036055088,-0.012544781900942326,-0.010474521666765213,0.03212017938494682,0.06433796137571335,-0.0014184311730787158,0.0015690666623413563,0.0836179330945015,0.000019815328414551914,-0.0007188509334810078,0.01324911043047905,-0.12301715463399887,-0.016746854409575462,0.05990130081772804,0.039706774055957794,0.011035728268325329,0.0045641278848052025,0.011938441544771194,0.08697332441806793,0.03667934238910675,0.0329291969537735,-0.007335204631090164,-0.03609723597764969,-0.0410209521651268,-0.00002102010512317065,0.03629433363676071,-0.007417460437864065,-0.045207470655441284,-0.05827322229743004,-0.019109774380922318,0.04761586710810661,0.06262556463479996,-0.027752764523029327,-0.03999686241149902,0.09639950096607208,-0.012695959769189358,0.003295391798019409,-0.03027607686817646,0.04774552956223488,0.05972031131386757,0.08458831906318665,0.02795173041522503]},{"text":"Non ebur neque aureum Mea renidet in domo lacunar, Non trabes Hymettiae Premunt columnas ultima recisas Africa, neque Attali 5 Ignotus heres regiam occupavi, Nec Laconicas mihi Trahunt honestae purpuras clientae.","book":"Homage to Catalonia","chapter":14,"embedding":[0.04421526566147804,-0.02799912542104721,-0.07201643288135529,0.002888553077355027,-0.04263158142566681,-0.01667230948805809,0.031128866598010063,0.06323467940092087,-0.002916673431172967,0.06988488137722015,0.12210870534181595,-0.13854993879795074,-0.029865818098187447,-0.0095781609416008,-0.1109798476099968,-0.07595720142126083,-0.01569453813135624,0.030229009687900543,0.001355782151222229,-0.03207382932305336,0.04162149131298065,0.007275059353560209,0.001189291593618691,0.039037302136421204,-0.02691863663494587,-0.019040144979953766,-0.036645758897066116,-0.024031447246670723,0.026518573984503746,-0.11169219017028809,-0.027835730463266373,0.046484269201755524,0.015435414388775826,0.013650490902364254,0.009786007925868034,-0.002090903464704752,-0.06497034430503845,-0.02030986361205578,0.08393649756908417,0.01940424181520939,0.0171411894261837,-0.0920812338590622,0.007303925231099129,-0.0387861505150795,0.004312758333981037,-0.01673930510878563,-0.026020614430308342,0.11584285646677017,-0.02077140100300312,0.001138318795710802,-0.06135006248950958,-0.0011724794749170542,-0.08547244220972061,0.034421421587467194,-0.043537311255931854,-0.032726604491472244,0.012542486190795898,-0.06785518676042557,0.06916747987270355,-0.043855469673871994,0.0034939483739435673,0.058997780084609985,0.015748364850878716,-0.0002644106571096927,0.009530473500490189,0.027242187410593033,0.0061597093008458614,0.014720846898853779,-0.03310924395918846,0.04366454854607582,0.11319687962532043,-0.1021452248096466,0.015046612359583378,0.05308286473155022,-0.040844839066267014,0.08116234838962555,0.020232999697327614,-0.005790074821561575,0.0955415740609169,0.030613230541348457,-0.04443032667040825,-0.038126587867736816,-0.0035662588197737932,0.049846891313791275,-0.0015265672700479627,-0.05042563006281853,0.00501300860196352,-0.03341110795736313,0.022363072261214256,-0.042452942579984665,-0.04376257583498955,0.06499879062175751,-0.022464776411652565,-0.020440923050045967,-0.0750080794095993,-0.015339422971010208,-0.028239702805876732,0.04629705101251602,-0.0011133920634165406,-0.009825176559388638,-0.036551766097545624,-0.0657651424407959,-0.03117995895445347,0.026793112978339195,-0.14024007320404053,-0.02928660251200199,-0.005030682776123285,-0.050551362335681915,0.09938783943653107,0.04702572897076607,-0.182045117020607,-0.016897685825824738,-0.07755649834871292,-0.06881996989250183,0.03008013404905796,0.035771071910858154,0.05794245004653931,-0.11913339793682098,-0.014306805096566677,-0.03635796159505844,0.01011545117944479,-0.02523559145629406,0.004791134037077427,-0.05702150985598564,0.04377821832895279,-0.06998591870069504,0.09153419733047485,1.7429773260563997e-32,-0.015779096633195877,-0.05864335969090462,0.027911288663744926,-0.051088616251945496,0.020308634266257286,0.012416166253387928,-0.10817568749189377,0.013621359132230282,0.0018784815911203623,-0.05418560653924942,-0.03672083094716072,-0.0016302167205139995,-0.03889188542962074,0.01907098852097988,0.035657890141010284,0.01657829061150551,0.1187426745891571,-0.04570343345403671,-0.035886529833078384,0.058110158890485764,-0.06678320467472076,0.05790283903479576,0.04049183428287506,0.020326046273112297,0.01663420908153057,0.0011397053021937609,-0.07186426222324371,-0.0832783505320549,-0.03166469931602478,0.031960953027009964,0.11356328427791595,-0.051513735204935074,-0.06167101860046387,-0.035713858902454376,-0.024308249354362488,0.010671393014490604,-0.018548356369137764,0.02354251593351364,-0.06557172536849976,-0.0299860667437315,0.0034589231945574284,0.04617811366915703,0.06555572897195816,0.031846873462200165,0.09465343505144119,0.004176129121333361,0.019794799387454987,-0.026610195636749268,0.01813293620944023,0.04693245515227318,0.006898381281644106,0.0018248199485242367,-0.0447697788476944,0.020363986492156982,0.06700616329908371,0.04363337531685829,-0.08326692879199982,0.11533043533563614,0.0912008062005043,-0.0002435394562780857,0.07455195486545563,-0.029337966814637184,-0.020498167723417282,-0.03930402174592018,0.012811182998120785,-0.05279195308685303,-0.04730989411473274,-0.02488773502409458,0.07190065830945969,-0.07044902443885803,-0.054992448538541794,-0.04606357589364052,-0.015102590434253216,0.10202019661664963,-0.01515753660351038,0.057566385716199875,0.004555250518023968,-0.004136447329074144,-0.02169027179479599,-0.031763844192028046,-0.06305620819330215,-0.000754930661059916,-0.03359908610582352,0.016755644232034683,0.03995585814118385,0.013310994952917099,-0.01189383864402771,0.04706345498561859,0.03505353257060051,0.0028192608151584864,0.07754001766443253,0.030786734074354172,-0.024429576471447945,-0.03547446429729462,0.03180822357535362,-1.728552247130284e-32,0.0024021209683269262,-0.0703628808259964,-0.06462772190570831,0.04290935397148132,-0.008340544067323208,-0.02652614749968052,-0.07323448359966278,0.07762118428945541,0.05292091518640518,-0.07546205073595047,0.01636822335422039,-0.10439533740282059,0.10236155241727829,-0.021856697276234627,0.018163077533245087,0.044218067079782486,0.04303057864308357,0.06638636440038681,0.015578811056911945,0.009549029171466827,0.05351744219660759,0.05179816856980324,0.0017343313666060567,-0.06050620973110199,-0.08768951892852783,0.049555640667676926,-0.02805965580046177,-0.049747660756111145,-0.09723645448684692,-0.037898145616054535,-0.0006061266758479178,0.07001052796840668,-0.021299898624420166,-0.0370650552213192,-0.08270824700593948,-0.04763774573802948,0.0899246409535408,-0.0008494312060065567,-0.021804634481668472,-0.04387615621089935,0.05666016787290573,0.08177582174539566,0.032107871025800705,0.017649073153734207,-0.0063385264948010445,-0.017340973019599915,-0.06531481444835663,-0.02664262428879738,-0.011951237916946411,0.06201346218585968,0.07935881614685059,-0.037076711654663086,0.031048431992530823,-0.04627553001046181,0.06675546616315842,0.05716352537274361,0.0063764723017811775,-0.048731546849012375,0.01772725209593773,0.04564695060253143,0.024335840716958046,0.0875769630074501,-0.0501084178686142,-0.03697337210178375,0.07505598664283752,-0.015925278887152672,-0.09827537834644318,0.06855127215385437,0.022081099450588226,-0.040727775543928146,0.013189004734158516,-0.023046541959047318,-0.1450987607240677,0.013407023623585701,0.004145269747823477,-0.013515625149011612,-0.07090849429368973,-0.01732104830443859,0.021582599729299545,-0.05818354710936546,-0.10396784543991089,-0.005330973770469427,0.032351355999708176,0.03902799263596535,-0.012559279799461365,-0.08533834666013718,-0.007265984546393156,-0.07990498840808868,0.029419369995594025,0.01694926992058754,-0.030305853113532066,-0.024457687512040138,0.01866833306849003,0.016399504616856575,0.012733830139040947,-5.7665740627044215e-8,0.02622285857796669,-0.07967691868543625,0.022608159109950066,0.021936021745204926,0.08336672931909561,-0.05041874945163727,-0.05109623819589615,0.008241824805736542,0.037204254418611526,0.07205738127231598,0.025306059047579765,0.041834756731987,-0.009788040071725845,-0.04094906896352768,0.03482436388731003,0.04650193825364113,0.11278210580348969,0.022019680589437485,-0.0524878166615963,-0.06286917626857758,0.02188742719590664,0.007985809817910194,-0.031732793897390366,-0.03542802482843399,0.02035996876657009,-0.019132720306515694,0.08852856606245041,-0.014550684951245785,-0.02858109027147293,-0.01843441091477871,0.016385860741138458,0.0759432464838028,0.06550730019807816,-0.0869993194937706,0.0035936736967414618,0.04577874392271042,-0.005113283172249794,-0.03295755013823509,-0.06099310889840126,-0.059843759983778,0.0022192092146724463,-0.03046259470283985,0.03233800083398819,-0.05298323929309845,0.031746622174978256,-0.013859827071428299,-0.008388405665755272,-0.01205585990101099,-0.0038205550517886877,-0.08756455779075623,-0.03804182633757591,-0.03727604076266289,0.054841477423906326,0.03649411350488663,-0.007285378873348236,-0.03200839087367058,0.09226744621992111,0.0017774495063349605,0.08967428654432297,0.0003870614746119827,0.09465714544057846,0.021159213036298752,0.014626634307205677,0.015435201115906239]},{"text":"Truditur dies die, 15 Novaeque pergunt interire lunae: Tu secanda marmora Locas sub ipsum funus, et sepulcri Immemor struis domos, Marisque Bais obstrepentis urges 20 Submovere litora, Parum locuples continente ripa.","book":"Homage to Catalonia","chapter":14,"embedding":[0.03980693593621254,-0.011456462554633617,-0.0008473325869999826,-0.045074883848428726,-0.06645594537258148,-0.005363586824387312,0.053909461945295334,0.06050076335668564,0.0038025840185582638,0.03737011179327965,0.0422477163374424,-0.11945784837007523,-0.048743005841970444,-0.03736105188727379,-0.05095053091645241,-0.05826485902070999,-0.0409441776573658,0.05417224392294884,-0.08539937436580658,-0.020352456718683243,0.07428909838199615,-0.04698420315980911,0.0033591764513403177,0.08538836240768433,-0.0440460629761219,-0.07352335751056671,-0.03684861212968826,-0.0411442369222641,0.013843082822859287,-0.04306960850954056,-0.005687484983354807,0.038164835423231125,0.05076831206679344,-0.05795403569936752,0.006303905043751001,-0.05431676656007767,-0.02062036097049713,-0.0743415430188179,0.05629532411694527,0.08022504299879074,-0.019202863797545433,-0.046196069568395615,-0.026718663051724434,-0.0009270900627598166,-0.023430636152625084,-0.0628608912229538,-0.04999295622110367,0.04246804118156433,0.005982826929539442,0.041147805750370026,-0.052923426032066345,-0.02573079988360405,-0.04934772849082947,0.04769444465637207,-0.052854880690574646,-0.08629925549030304,0.03217166289687157,-0.030214617028832436,0.09703676402568817,-0.022958017885684967,0.010420049540698528,0.037428583949804306,-0.03799361363053322,-0.021145474165678024,-0.017464227974414825,-0.07456530630588531,-0.016361482441425323,0.05715539678931236,-0.07470729202032089,0.09459863603115082,0.05249251797795296,-0.08413097262382507,-0.06230558082461357,0.10492447763681412,-0.07905036956071854,0.04746625944972038,-0.013896274380385876,-0.0703066736459732,-0.06794290989637375,-0.04421495273709297,0.006899508647620678,0.009727559052407742,0.01657811924815178,-0.04551989212632179,0.01347008254379034,-0.08257222175598145,0.07704052329063416,-0.0007481215870939195,0.04534078761935234,0.014906992204487324,-0.04828091710805893,0.038931939750909805,-0.04137430712580681,0.026601282879710197,-0.07555167376995087,0.03441328555345535,-0.03243705630302429,-0.047030217945575714,0.009689902886748314,-0.00912914052605629,0.03631535544991493,0.00737548666074872,-0.0035521266981959343,0.02128705196082592,-0.10881583392620087,-0.004642869345843792,-0.017783530056476593,-0.05575570836663246,0.03736249729990959,0.05274854972958565,-0.06628450006246567,0.016274746507406235,-0.0422220379114151,-0.031839415431022644,0.08329121768474579,0.054515939205884933,0.018824417144060135,-0.054164402186870575,0.02486971765756607,-0.039468225091695786,-0.003483552485704422,-0.0404176227748394,-0.0030079775024205446,0.002944714855402708,0.053159601986408234,-0.031856101006269455,0.04250456765294075,1.8607191014017817e-32,0.009457558393478394,-0.05498748645186424,-0.04140052944421768,0.10716976225376129,0.040238767862319946,-0.09120723605155945,-0.02815866284072399,-0.013171314261853695,-0.10803860425949097,0.00410132110118866,-0.08824697881937027,-0.05359945073723793,-0.0502019077539444,-0.07958541065454483,0.041758060455322266,0.007445664145052433,0.1037081629037857,-0.004122990183532238,0.004506025929003954,-0.09706705063581467,-0.061434511095285416,0.05644937977194786,0.03463666886091232,-0.05751854181289673,0.05280795320868492,0.022787336260080338,-0.006261487025767565,-0.030588306486606598,-0.044890955090522766,0.057494670152664185,0.02602774277329445,0.018613189458847046,0.03186238929629326,-0.04501556232571602,0.07355164736509323,-0.05956116318702698,0.033708710223436356,0.03667227551341057,-0.033136095851659775,-0.012055430561304092,0.07204995304346085,-0.01783215068280697,0.04418265447020531,0.006917440332472324,0.09318450838327408,0.0077392407692968845,0.03670435771346092,0.03702269122004509,0.11516749858856201,0.11159766465425491,-0.05768892168998718,0.009204634465277195,-0.07601897418498993,-0.03371088579297066,0.016157057136297226,0.07132390141487122,-0.07223543524742126,0.027614805847406387,0.08299596607685089,-0.054119352251291275,0.0301558468490839,-0.013386129401624203,0.019769174978137016,-0.008260195143520832,-0.008619165048003197,0.05381293222308159,-0.03795523941516876,-0.01729513891041279,0.07200296223163605,-0.02984612248837948,-0.10960207879543304,-0.053171347826719284,-0.05406288430094719,0.04457952454686165,0.01743297092616558,-0.006277364678680897,0.014993074350059032,0.006993645802140236,-0.01715804450213909,0.0065308804623782635,-0.07138004899024963,0.023183511570096016,-0.0032692470122128725,0.019206438213586807,0.051586516201496124,0.02703651785850525,0.050308506935834885,0.012976866215467453,0.028628824278712273,0.025488829240202904,0.015345101244747639,-0.04918145760893822,0.026748623698949814,-0.029676157981157303,0.025356793776154518,-1.6251288745986805e-32,0.04304303228855133,-0.06605460494756699,-0.09610451757907867,0.04360472410917282,-0.007745115086436272,-0.06402361392974854,-0.09045569598674774,0.043654054403305054,-0.009804296307265759,0.03773291036486626,-0.03849470615386963,-0.03788670152425766,0.06579117476940155,-0.04755726829171181,-0.029271190986037254,0.005275072064250708,0.10475878417491913,-0.05867999419569969,-0.0478682704269886,-0.033581651747226715,-0.09245643019676208,-0.04591311514377594,0.014576741494238377,-0.003132358891889453,-0.025588508695364,0.043680865317583084,0.08819493651390076,-0.013154003769159317,-0.01819642074406147,-0.018304502591490746,0.07322416454553604,0.020282870158553123,0.032325368374586105,0.08176210522651672,-0.030762776732444763,-0.02463993802666664,0.16210654377937317,0.05372476577758789,-0.023605579510331154,-0.011534557677805424,0.012055705301463604,0.03448761999607086,0.06078531965613365,0.0245322585105896,-0.01292168814688921,-0.03998434171080589,-0.016708960756659508,-0.05181974172592163,-0.09177066385746002,-0.0031772726215422153,0.05635407194495201,-0.024751432240009308,0.06540023535490036,-0.0025893880520015955,0.06722674518823624,-0.041182808578014374,-0.08177921921014786,0.0007395432330667973,-0.03676309436559677,-0.061605874449014664,0.07356701046228409,0.05423452705144882,-0.029177824035286903,-0.04373707249760628,0.14490820467472076,0.008547626435756683,-0.12695834040641785,0.05037233978509903,-0.04269788786768913,0.06327840685844421,0.030440039932727814,-0.05378056317567825,-0.11676530539989471,-0.0020087980665266514,-0.013035601004958153,0.013902230188250542,-0.05792950838804245,-0.020467234775424004,0.026702912524342537,0.07929281145334244,-0.04933515191078186,-0.03926258161664009,-0.07114839553833008,-0.07498020678758621,-0.039887286722660065,-0.019898517057299614,-0.027693742886185646,0.04857353866100311,0.013143780641257763,-0.017259085550904274,0.023946598172187805,-0.03664141520857811,0.10291976481676102,-0.0985879972577095,-0.011523045599460602,-5.803770974921463e-8,0.03241550177335739,-0.011366247199475765,-0.0653480589389801,0.0905669629573822,0.017292266711592674,-0.0428755022585392,-0.03626864403486252,0.033110931515693665,0.05516768991947174,0.15369480848312378,0.0004728781059384346,-0.03848731145262718,0.053682781755924225,0.032947804778814316,0.0010112316813319921,0.03153003007173538,0.07486380636692047,0.06324809789657593,-0.016384819522500038,-0.025166518986225128,0.06218480318784714,0.046571116894483566,-0.020892178639769554,-0.06307332962751389,-0.00657615577802062,0.06716834753751755,0.021509209647774696,0.025157077237963676,-0.03934311494231224,-0.0554933063685894,0.008069144561886787,0.013794835656881332,-0.028933674097061157,0.015060817822813988,-0.028973054140806198,0.0935901328921318,-0.002090398920699954,0.032365523278713226,-0.05038633197546005,0.05924258753657341,0.11317814886569977,0.0006783275748603046,0.008571818470954895,-0.03450506925582886,0.001042822957970202,0.041500624269247055,0.027764402329921722,0.03476694971323013,0.02658931165933609,0.012654292397201061,-0.04208754375576973,-0.010059467516839504,0.07229795306921005,0.015037113800644875,0.05686773732304573,-0.03658389672636986,0.0344846211373806,0.04058212786912918,0.007830235175788403,0.07404063642024994,0.05419337376952171,0.019020460546016693,-0.003385306568816304,-0.01897609420120716]},{"text":"Pellitur paternos In sinu ferens deos Et uxor et vir sordidosque natos.","book":"Homage to Catalonia","chapter":15,"embedding":[-0.04269091412425041,0.06862704455852509,-0.08784262835979462,-0.013573464937508106,-0.009754963219165802,0.030808590352535248,-0.019397597759962082,-0.004357337951660156,0.030591029673814774,-0.0330364927649498,0.06699059903621674,-0.0030236151069402695,-0.05494599789381027,-0.017055470496416092,-0.014116221107542515,-0.08588359504938126,-0.054416634142398834,0.04273387789726257,0.029633257538080215,-0.020418237894773483,-0.03705792501568794,-0.08823857456445694,0.05867758393287659,0.010015172883868217,-0.08606278151273727,0.030771534889936447,0.03378952294588089,-0.025282973423600197,0.028525758534669876,0.011580183170735836,0.035613395273685455,0.04099706932902336,0.042367689311504364,-0.025943705812096596,-0.022167006507515907,-0.014926617965102196,0.05049644038081169,0.03507557511329651,0.03235573694109917,0.025993438437581062,-0.056524671614170074,-0.07048298418521881,0.032888807356357574,-0.024906639009714127,-0.035674601793289185,-0.017746713012456894,-0.04245307296514511,0.10584720969200134,-0.004417634103447199,0.08916664868593216,-0.013879582285881042,-0.01723160594701767,-0.0003027955535799265,-0.030580764636397362,0.03075322136282921,-0.009371662512421608,-0.047407835721969604,-0.08322659879922867,-0.023115651682019234,-0.040949560701847076,-0.0021146018989384174,0.036709319800138474,-0.12641853094100952,0.0036001538392156363,-0.003596819704398513,0.008198854513466358,0.10807853937149048,-0.004235758911818266,-0.03846871852874756,0.0274068471044302,0.10913816094398499,0.01333673670887947,-0.04484965652227402,0.06929221749305725,-0.03565129265189171,0.06951891630887985,-0.02801482006907463,-0.01602812483906746,0.008981718681752682,-0.11682842671871185,0.01983748748898506,0.07805585861206055,0.01063837856054306,-0.05175462365150452,0.028516137972474098,-0.0006834178348071873,0.04041615501046181,-0.025391392409801483,-0.0023822160437703133,0.07125438004732132,-0.029158759862184525,-0.03245573118329048,0.005052808206528425,-0.040980614721775055,0.03397480398416519,0.012894485145807266,0.05323856696486473,0.057481564581394196,-0.027350224554538727,0.020140014588832855,0.03552188724279404,-0.032919250428676605,-0.02047099359333515,0.05474215745925903,-0.08580385893583298,0.03028050996363163,-0.07064177095890045,-0.051128532737493515,0.05144327133893967,0.08884283155202866,-0.10239643603563309,-0.06699824333190918,-0.04845335707068443,-0.09756089746952057,-0.03470471128821373,-0.01807340793311596,0.014805988408625126,-0.0760708898305893,-0.019374174997210503,-0.02686007134616375,0.03641456738114357,-0.02555237151682377,-0.06384379416704178,0.06599172949790955,0.07725678384304047,-0.07646499574184418,0.04559718444943428,5.931796123508736e-33,-0.06722041219472885,-0.06904155015945435,0.01354818232357502,0.04816269502043724,-0.09049315750598907,0.046663764864206314,0.01233676914125681,-0.06407152861356735,-0.07550287991762161,-0.028255414217710495,-0.13585731387138367,-0.003802339779213071,0.05774753540754318,-0.024868058040738106,0.016041349619627,-0.035678502172231674,0.08450667560100555,0.024457601830363274,0.07608417421579361,0.048942796885967255,-0.0014586487086489797,0.03990272060036659,0.05776509642601013,-0.02904234081506729,0.11245308071374893,0.017534423619508743,-0.047309450805187225,-0.004002060275524855,-0.07333768904209137,0.028325218707323074,0.04859823361039162,-0.02517794817686081,-0.014891345985233784,-0.03311504051089287,0.05837220698595047,0.0023001409135758877,0.024192729964852333,-0.05144977197051048,-0.014448770321905613,0.03592217341065407,0.0127997025847435,-0.02299610711634159,-0.0439659059047699,0.027681568637490273,0.051481034606695175,-0.04145653545856476,-0.005793942138552666,0.005378380883485079,-0.00008653762051835656,0.011020575650036335,-0.031739406287670135,0.017117099836468697,-0.10770626366138458,-0.07833033800125122,-0.012078776024281979,0.05437988415360451,-0.05605817213654518,0.08009270578622818,-0.08251697570085526,-0.06289587169885635,0.03098664991557598,-0.05191490799188614,0.028779691085219383,-0.031266823410987854,0.016072280704975128,-0.02498636022210121,-0.06394835561513901,0.08323681354522705,0.09440429508686066,-0.01597607135772705,-0.01572425477206707,-0.007523214444518089,0.026362692937254906,-0.03065134584903717,0.030212892219424248,0.11199602484703064,0.032561566680669785,0.004353166092187166,0.015116880647838116,-0.018664207309484482,-0.13015079498291016,0.07877755910158157,0.11724887788295746,0.026004988700151443,0.019643764942884445,0.03459346294403076,0.00646008038893342,0.032515957951545715,0.010733451694250107,0.07223077863454819,-0.06730978190898895,-0.014966696500778198,0.02890774793922901,-0.05280694365501404,0.038221344351768494,-8.400482299055346e-33,0.01033768616616726,-0.02065780758857727,0.019337330013513565,-0.020118150860071182,-0.01716357283294201,-0.013607342727482319,-0.03207951411604881,0.09863691031932831,-0.04967896267771721,0.013712692074477673,0.0273622814565897,-0.13788121938705444,0.08018602430820465,-0.09490504860877991,-0.04069417342543602,0.0950731486082077,0.01949414797127247,0.05069764703512192,0.024266650900244713,-0.013205529190599918,-0.051234714686870575,-0.01612379215657711,0.035670433193445206,0.00526476139202714,0.02494152821600437,-0.08322253078222275,0.04044745862483978,-0.03939836472272873,-0.051319848746061325,-0.023366563022136688,0.00774170458316803,-0.003993513062596321,0.010029712691903114,0.09529711306095123,0.113362155854702,0.118609219789505,0.07031372934579849,0.08682535588741302,0.041447803378105164,0.026172544807195663,-0.03997444733977318,0.04952210560441017,-0.035036467015743256,0.05573383346199989,-0.02031180076301098,-0.013385426253080368,-0.027557620778679848,-0.003464597975835204,-0.061242472380399704,-0.059230826795101166,0.019684545695781708,0.0036021240521222353,-0.019182438030838966,-0.014385053887963295,0.04899574816226959,0.0788993313908577,0.008097837679088116,0.0007665536249987781,0.012040242552757263,0.02438735030591488,0.03393159806728363,-0.0002976195828523487,-0.03792529180645943,0.009762694127857685,0.06202414631843567,-0.045468222349882126,-0.14977216720581055,0.09480632841587067,0.034886959940195084,0.059539228677749634,0.08569183200597763,-0.05392170697450638,-0.07634226232767105,-0.0011155962711200118,-0.044238220900297165,-0.07821769267320633,0.007695688400417566,-0.03271904215216637,-0.03421621769666672,0.04661015793681145,-0.03772273287177086,-0.056140512228012085,-0.06398609280586243,0.03646698594093323,-0.04475054144859314,-0.05442516505718231,0.14727428555488586,0.014814126305282116,-0.0042739505879580975,-0.0202208049595356,-0.011418662033975124,-0.037366606295108795,-0.007541831117123365,-0.05815834552049637,0.005679125897586346,-3.1234453246042904e-8,-0.0006096247234381735,-0.012878880836069584,-0.06317570060491562,0.06675852835178375,-0.024274781346321106,-0.05950126424431801,0.03279658034443855,-0.05902247130870819,-0.07012224942445755,0.050813548266887665,-0.0734112337231636,-0.020539555698633194,-0.05209307000041008,-0.07269643247127533,0.08368401974439621,-0.018569152802228928,0.022797156125307083,0.06568960100412369,-0.022364795207977295,-0.08155977725982666,0.03199276700615883,0.010608644224703312,-0.0979970246553421,-0.011811195872724056,-0.06807933747768402,0.01564643904566765,0.05903125926852226,-0.04033108055591583,-0.014711550436913967,0.05120466649532318,0.003917759750038385,-0.06740061938762665,-0.07548102736473083,-0.06859525293111801,0.09038127958774567,0.04308922588825226,-0.013229976408183575,0.004797657951712608,0.02578684501349926,0.01680072210729122,0.012662883847951889,0.08980874717235565,0.013796495273709297,0.020649585872888565,0.007686010096222162,-0.011110235936939716,0.0026606235187500715,0.016998210921883583,-0.030367037281394005,0.025824958458542824,-0.046658843755722046,0.042562924325466156,-0.008456693962216377,-0.03455500677227974,0.017357010394334793,0.0258525088429451,0.05388882756233215,-0.0012970282696187496,0.02858625538647175,0.032521624118089676,-0.0061420570127666,0.04226474463939667,0.11733687669038773,-0.044335875660181046]},{"text":"Aequa tellus Pauperi recluditur Regumque pueris, nec satelles Orci Callidum Promethea 35 Revexit auro captus.","book":"Homage to Catalonia","chapter":15,"embedding":[-0.060855716466903687,-0.03141068294644356,-0.020605241879820824,-0.04210768640041351,-0.10494198650121689,-0.006785635836422443,-0.011791490018367767,0.022743312641978264,0.02092871628701687,0.04450450837612152,0.04288715869188309,-0.07321525365114212,-0.046402707695961,-0.012283598072826862,-0.06498954445123672,-0.0780472680926323,-0.065828338265419,0.05624570697546005,-0.012326901778578758,-0.018746009096503258,0.12404586374759674,0.01735086180269718,-0.010754258371889591,-0.0037334871012717485,-0.041239552199840546,0.016613652929663658,-0.07437288761138916,0.02166244573891163,0.09723487496376038,-0.17399057745933533,-0.007712055463343859,0.08054257929325104,0.05137352645397186,-0.05913201719522476,0.021916402503848076,0.006007568445056677,0.0041612181812524796,-0.07822062075138092,0.02625255286693573,-0.04571429267525673,0.0316552110016346,-0.021310750395059586,-0.02218622714281082,-0.01466144435107708,-0.06398391723632812,-0.013681512326002121,-0.06774207949638367,0.07561211287975311,0.06260982155799866,-0.038175713270902634,0.028085162863135338,-0.04314630106091499,-0.01716509647667408,0.04958682879805565,-0.04178537800908089,0.051600053906440735,0.024466829374432564,-0.08696670830249786,0.010582482442259789,-0.0365823358297348,-0.017748821526765823,0.007486546877771616,0.009646824561059475,-0.03967379033565521,-0.08025120198726654,0.05176044628024101,-0.0462297648191452,-0.03431257978081703,-0.02585921436548233,0.07155411690473557,0.044911421835422516,-0.003777446923777461,-0.015681350603699684,0.06462231278419495,-0.05657772719860077,0.07172614336013794,-0.013032005168497562,-0.0807497650384903,0.01585417613387108,-0.05323837324976921,-0.06983857601881027,0.04001903906464577,0.012351593933999538,0.05098051577806473,0.03091488964855671,-0.038143958896398544,-0.00817599706351757,-0.024925420060753822,0.022459346801042557,-0.001956490334123373,0.036165498197078705,-0.041212938725948334,0.024495311081409454,-0.009777183644473553,-0.014655712060630322,0.06689076870679855,0.03523395210504532,-0.04376426339149475,0.0005594441317953169,-0.03911500796675682,-0.025730440393090248,0.02367526665329933,-0.008939262479543686,-0.04879584163427353,-0.07984187453985214,-0.05085013061761856,-0.04591216519474983,-0.07561451941728592,0.002622269792482257,0.02343716099858284,-0.09102603048086166,-0.0726977288722992,0.0015475716209039092,-0.02418435737490654,-0.04171869158744812,0.014162135310471058,0.03404596820473671,-0.12012723833322525,-0.0658227801322937,-0.08650082349777222,-0.022401824593544006,0.0167759507894516,-0.0010738857090473175,0.03621762618422508,0.012329020537436008,-0.07849133759737015,0.01170181855559349,1.4653816902474272e-32,-0.0030559618026018143,-0.03058742545545101,-0.01615910232067108,0.05335499718785286,0.040561214089393616,-0.018049120903015137,-0.05185561254620552,0.023901568725705147,0.025956274941563606,-0.06061992049217224,-0.12734942138195038,-0.0268986988812685,-0.035318367183208466,0.018858805298805237,0.003161888336762786,-0.012374705635011196,0.0845048576593399,-0.0068124765530228615,-0.0183283481746912,-0.052378274500370026,-0.056624885648489,0.0864776000380516,-0.005087556783109903,-0.033348578959703445,0.10197512060403824,0.0017340999329462647,0.004532156977802515,-0.09172326326370239,0.049088284373283386,0.01132940873503685,0.0881408229470253,-0.07807878404855728,-0.0409884937107563,-0.004666138906031847,0.03236375004053116,0.07362903654575348,0.014942346140742302,0.023551639169454575,-0.1257917732000351,0.03942640870809555,0.015297265723347664,0.04155018553137779,-0.009750711731612682,0.012397145852446556,0.08075476437807083,-0.08240023255348206,0.0732615739107132,0.014881031587719917,0.1272822916507721,0.016357559710741043,0.006042559631168842,0.02860991470515728,-0.013301181606948376,-0.07451124489307404,-0.006577696651220322,-0.02443741075694561,0.005151140503585339,0.09186923503875732,-0.03158428519964218,0.009883745573461056,0.10414251685142517,0.043951645493507385,0.01403131801635027,0.03509059548377991,0.015164186246693134,0.04537808150053024,-0.11252188682556152,-0.042136769741773605,0.03076259233057499,0.024848878383636475,-0.07092055678367615,-0.03588688373565674,-0.019433073699474335,0.034717679023742676,0.031545769423246384,0.05717058479785919,-0.02472982183098793,-0.012896179221570492,-0.009634953923523426,-0.0756680965423584,-0.05261131748557091,-0.025272024795413017,-0.032853033393621445,0.0370793379843235,0.03852244094014168,-0.003944436553865671,0.018738992512226105,0.06354600936174393,0.043591756373643875,-0.004959593527019024,0.1020829826593399,-0.024080008268356323,-0.020372798666357994,0.030175253748893738,-0.03212203457951546,-1.4221138003087727e-32,0.004726523533463478,-0.08161724358797073,-0.021033838391304016,0.10252660512924194,-0.003170729847624898,0.03032001480460167,-0.08387618511915207,0.05154090374708176,0.09758871793746948,-0.014390731230378151,-0.05847359448671341,-0.02163519337773323,0.08011946082115173,-0.08153045177459717,0.07053329050540924,0.09757736325263977,0.018107891082763672,0.046437133103609085,-0.06891967356204987,-0.023093579337000847,-0.09915901720523834,0.09608851373195648,0.08608543872833252,-0.08329007029533386,-0.0036880262196063995,0.06675126403570175,0.03906551003456116,-0.017325004562735558,-0.037600476294755936,-0.02236912213265896,0.022238189354538918,-0.036827538162469864,-0.05119309201836586,0.03344334661960602,-0.011617378331720829,-0.0673166960477829,0.14348028600215912,-0.0028373575769364834,-0.039189063012599945,-0.04499000683426857,-0.024260951206088066,0.039125602692365646,0.0890163853764534,0.07919596135616302,0.027175135910511017,-0.09231238067150116,-0.09806209057569504,-0.022592660039663315,0.003058861242607236,-0.04557838290929794,0.08239492774009705,-0.08128112554550171,0.05173758044838905,0.028205085545778275,0.07477619498968124,-0.052959080785512924,-0.017426900565624237,-0.042916856706142426,0.02737916074693203,-0.01441033836454153,0.030842896550893784,0.012037225998938084,-0.00991834420710802,0.02720993012189865,0.06568912416696548,0.0019859427120536566,-0.08589977771043777,0.014149394817650318,-0.11239372938871384,0.0379759706556797,0.028874235227704048,-0.04662866145372391,-0.10163123905658722,-0.0065598078072071075,0.03820960223674774,0.016122940927743912,-0.03363581374287605,-0.010175024159252644,0.026643892750144005,-0.02114434354007244,-0.05744824931025505,-0.0567350871860981,-0.03164847567677498,0.024112805724143982,0.029997071251273155,-0.06837087124586105,0.02062225714325905,0.061455145478248596,0.005170806311070919,0.06733550131320953,-0.001393345301039517,-0.061990369111299515,-0.0015973474364727736,-0.004859492648392916,0.06290402263402939,-4.6957385535506546e-8,0.04891105741262436,-0.020904473960399628,-0.01556097250431776,0.017500463873147964,0.029767770320177078,-0.08564062416553497,-0.005136563442647457,0.030019840225577354,0.02031088061630726,0.011555330827832222,-0.030056292191147804,0.02996719628572464,0.03458763659000397,0.006771785672754049,0.0712350606918335,0.04608076810836792,0.06023076921701431,0.023813564330339432,-0.020188380032777786,-0.03904742747545242,-0.0039884960278868675,-0.07578656822443008,-0.023102130740880966,-0.029146939516067505,0.020711343735456467,0.022668661549687386,0.08823993802070618,-0.03744436055421829,0.028290651738643646,0.00983565952628851,0.04080604389309883,0.06241678446531296,0.03431893512606621,-0.027906298637390137,0.01572648249566555,0.06765132397413254,0.05857350677251816,-0.006163680925965309,-0.034825991839170456,0.06508863717317581,0.025053078308701515,-0.06257753819227219,-0.026925424113869667,-0.04808739200234413,0.052573490887880325,-0.021318424493074417,-0.0121760880574584,0.034473758190870285,-0.009562909603118896,-0.05177220702171326,-0.03264264762401581,-0.04552455618977547,0.10472828894853592,0.004252866841852665,-0.06548851728439331,-0.015096443705260754,0.06165711581707001,-0.004207600373774767,0.04374049976468086,0.03250141814351082,0.09766493737697601,0.09806463867425919,0.07688683271408081,0.04644738510251045]},{"text":"Bacchum in remotis carmina rupibus Vidi docentem, credite posteri, Nymphasque discentis et auris Capripedum Satyrorum acutas.","book":"Homage to Catalonia","chapter":15,"embedding":[0.03210889920592308,-0.01115366630256176,-0.055301543325185776,0.04433117061853409,-0.11118604987859726,0.09681341797113419,0.02919473685324192,0.02132154442369938,0.0077896323055028915,0.04147501289844513,0.07700937986373901,-0.07602271437644958,0.013696592301130295,0.02210480161011219,-0.0986962541937828,-0.0799555554986,0.011441816575825214,0.0897132083773613,-0.039822056889534,0.05139956623315811,0.040476035326719284,0.028065336868166924,0.04207447171211243,0.06820599734783173,-0.03978772461414337,0.01751748099923134,-0.051137540489435196,-0.03280538693070412,-0.020133301615715027,-0.09560485184192657,-0.05755031108856201,0.09473197162151337,0.09054052084684372,-0.08107698708772659,0.047251876443624496,0.014781687408685684,-0.02780088596045971,0.0312529131770134,0.10113617032766342,-0.008659636601805687,-0.004910898860543966,-0.02948981150984764,0.006126988213509321,0.03485315665602684,-0.04889311641454697,0.01657211035490036,-0.028188468888401985,0.06640032678842545,0.07038518041372299,-0.02356342226266861,-0.09250850230455399,-0.008388275280594826,-0.060915328562259674,0.060897041112184525,-0.04815668612718582,-0.038309741765260696,-0.009110149927437305,-0.06776068359613419,0.03537750616669655,-0.006149154156446457,0.0016753944801166654,0.05140016973018646,0.0344676747918129,0.005674839485436678,0.00522587588056922,-0.0280587300658226,-0.06805137544870377,0.009360709227621555,-0.04757685959339142,0.044442642480134964,0.08029939234256744,-0.019181210547685623,-0.003146589733660221,0.051898837089538574,-0.08588816970586777,-0.010912777855992317,-0.060565900057554245,-0.09543082863092422,0.005434364080429077,-0.016608163714408875,-0.04915735870599747,-0.013670147396624088,-0.04325367510318756,0.03979117050766945,-0.05400440841913223,-0.019810231402516365,0.0375564880669117,-0.016589822247624397,-0.07047439366579056,-0.009327993728220463,0.00919937901198864,-0.020487777888774872,-0.032309286296367645,-0.03491617366671562,-0.08547737449407578,-0.01537280809134245,-0.02707958221435547,0.0023366210516542196,0.06990198791027069,-0.07067826390266418,-0.011550149880349636,-0.06776059418916702,-0.03094787523150444,0.03144943341612816,-0.10702460259199142,-0.05669550225138664,-0.059687815606594086,-0.09660247713327408,0.04153740406036377,-0.028588304296135902,-0.11280164867639542,-0.059204090386629105,-0.062144793570041656,-0.015165042132139206,-0.026731692254543304,0.04008936509490013,0.05161437392234802,-0.05979006364941597,-0.07003851979970932,-0.046789638698101044,0.015635767951607704,-0.02759021893143654,0.049468040466308594,-0.008679507300257683,0.06393075734376907,-0.15403632819652557,0.054973769932985306,1.1600321920051588e-32,-0.015527475625276566,-0.08305918425321579,-0.02253110148012638,0.10581408441066742,0.051337841898202896,0.00517460098490119,-0.09652341157197952,-0.00010781644959934056,-0.04521447792649269,-0.04978103190660477,-0.03576058894395828,-0.04512176290154457,0.011260086670517921,0.05666321516036987,-0.028936758637428284,0.10491583496332169,0.027004936710000038,-0.07356707006692886,-0.019334087148308754,-0.030026288703083992,-0.03725859150290489,0.11677136272192001,0.025461824610829353,0.032529883086681366,0.009534440003335476,0.015260712243616581,-0.007645031902939081,-0.06136409938335419,0.050171881914138794,0.03604511171579361,0.16531220078468323,0.0013822501059621572,-0.10814415663480759,0.05129360035061836,-0.004667042754590511,0.06913158297538757,-0.035561371594667435,-0.022266434505581856,-0.09516248852014542,0.04282836243510246,-0.011259816586971283,0.03965897858142853,-0.014735966920852661,-0.0549079068005085,0.05164433643221855,-0.03375629335641861,-0.03177046403288841,0.03715384006500244,0.05081783980131149,0.12031868100166321,0.02607845887541771,0.05970726162195206,0.06668586283922195,-0.04624735563993454,0.03743060678243637,0.013681682758033276,0.012027569115161896,0.09565886855125427,-0.04627786576747894,0.04706037789583206,0.03719596564769745,0.0241533350199461,-0.06338954716920853,-0.02918247878551483,0.04999581724405289,0.0430501326918602,-0.021014617756009102,-0.01096341386437416,0.04136522114276886,-0.00324677093885839,-0.0865030288696289,-0.03241964057087898,-0.056692108511924744,0.08498689532279968,-0.05793987587094307,0.017320698127150536,-0.006640068255364895,-0.03639046847820282,-0.03762606531381607,-0.021028446033596992,-0.07813026010990143,0.030401848256587982,-0.005480888765305281,-0.0009719870868138969,0.027488045394420624,0.002297677332535386,-0.04893537238240242,0.02237674780189991,0.049143485724925995,0.055004071444272995,0.08400043845176697,0.027176477015018463,-0.0539696104824543,0.057011187076568604,-0.020653992891311646,-1.1837661576322301e-32,0.035101115703582764,-0.04249300807714462,-0.05985965579748154,0.04609352722764015,-0.061665233224630356,0.00046084297355264425,-0.047173354774713516,0.07004309445619583,-0.006771475542336702,-0.06041155755519867,-0.025086980313062668,-0.019187090918421745,0.01948891393840313,0.05903071537613869,0.02353139966726303,0.04187466576695442,0.11481554806232452,0.008881987072527409,-0.026248324662446976,-0.03336858004331589,-0.1059281975030899,0.08239172399044037,0.01821191981434822,-0.084285669028759,0.007230034098029137,0.0014480393147096038,0.07010257244110107,0.0878547728061676,-0.04312717542052269,-0.026417436078190804,0.07202517241239548,-0.01287374459207058,-0.10520410537719727,-0.02452225238084793,-0.019206007942557335,0.02766796573996544,0.04560566693544388,-0.006714323069900274,-0.027688607573509216,-0.011708319187164307,0.004941001534461975,0.04797402024269104,-0.02219560369849205,-0.016735587269067764,0.08435801416635513,-0.0625494122505188,-0.07289042323827744,0.03848673030734062,-0.005836390890181065,0.022154685109853745,0.03389180079102516,-0.08333048969507217,0.04953894019126892,-0.08894939720630646,0.059981655329465866,-0.05657421052455902,-0.04480985924601555,-0.02495567314326763,0.056488122791051865,-0.042356010526418686,0.060534071177244186,0.038216546177864075,0.01973939687013626,-0.019718103110790253,-0.04732033982872963,0.05730085074901581,-0.0531497485935688,0.03891214355826378,0.0403982512652874,0.009334158152341843,0.05138509348034859,-0.028912916779518127,-0.07142261415719986,0.026385247707366943,-0.03152306005358696,0.03154895454645157,-0.046210821717977524,0.018383130431175232,0.00885863695293665,0.013744036667048931,-0.026891229674220085,0.013783352449536324,0.00985654629766941,0.015931516885757446,0.06869257986545563,0.001483882195316255,-0.04701967537403107,0.004513234831392765,0.0854438990354538,0.013952485285699368,-0.005199061241000891,-0.05290258303284645,0.021951748058199883,0.013853141106665134,0.0397954136133194,-4.3540506311501304e-8,0.05546615645289421,-0.028688518330454826,-0.014583826065063477,-0.006942974869161844,0.07960160821676254,-0.007714556530117989,0.03574751317501068,-0.023333394899964333,-0.01784047670662403,0.0750974789261818,-0.052437569946050644,0.06050409749150276,0.004332258831709623,0.055217139422893524,0.036573801189661026,0.06501652300357819,0.09638924896717072,0.022060342133045197,-0.00971922930330038,0.00695412652567029,0.007124214433133602,-0.054640863090753555,-0.043411124497652054,0.0534597672522068,-0.10318120568990707,-0.022556649520993233,0.07108400762081146,-0.11168675869703293,0.0004648909089155495,-0.05509918928146362,0.03596984222531319,0.07273728400468826,0.012589812278747559,-0.05400009825825691,0.022232720628380775,0.012095420621335506,-0.03809312731027603,0.020998017862439156,-0.007787270005792379,0.007693646475672722,0.09807413816452026,0.007794874720275402,0.02468275837600231,-0.044484104961156845,0.09802063554525375,-0.02581035904586315,-0.03500856086611748,0.003926907666027546,-0.02285820059478283,-0.0560823455452919,-0.028896480798721313,0.005055123940110207,0.028652679175138474,0.043298058211803436,-0.07633116841316223,-0.020907405763864517,0.06926362961530685,-0.009974704124033451,-0.04063348099589348,0.011164234019815922,-0.016967326402664185,0.09211640805006027,0.04190364107489586,-0.021710339933633804]},{"text":"Euhoe, parce Liber, Parce gravi metuende thyrso.","book":"Homage to Catalonia","chapter":15,"embedding":[-0.008850100450217724,-0.012003020383417606,-0.030957212671637535,-0.10220521688461304,-0.051212843507528305,-0.0014465360436588526,0.012469950132071972,0.0818755254149437,0.01474724244326353,0.06607528775930405,-0.00010156610369449481,-0.06167425960302353,-0.039390966296195984,-0.06465555727481842,-0.052856918424367905,-0.12471754103899002,-0.07048256695270538,-0.008539714850485325,0.02816632203757763,0.04213923588395119,-0.026629062369465828,-0.004506175871938467,0.006016175728291273,0.0012330508325248957,-0.06784649938344955,0.03431587293744087,0.0372140146791935,-0.047594014555215836,0.0336165577173233,-0.05258173123002052,0.019511753693223,-0.03349599987268448,0.024212323129177094,-0.041488952934741974,0.056540753692388535,-0.019511714577674866,-0.04156007990241051,-0.03700989484786987,-0.05235903337597847,0.019358765333890915,-0.016864150762557983,-0.09865593165159225,-0.035500623285770416,-0.044296007603406906,0.026260647922754288,0.03477246314287186,0.0063325208611786366,0.06603319197893143,-0.052428606897592545,0.03758269175887108,0.027938218787312508,-0.03476979210972786,-0.0218963623046875,-0.00524419080466032,-0.03612831234931946,-0.006077498663216829,-0.005714358761906624,0.017201293259859085,0.029795557260513306,-0.034329693764448166,-0.02475188486278057,0.028168892487883568,-0.10339201241731644,0.014912206679582596,-0.002268869196996093,-0.08448965102434158,0.048278193920850754,-0.0035476305056363344,-0.028731582686305046,0.08264075964689255,0.09119581431150436,-0.0432385616004467,-0.05394281819462776,0.0432320237159729,-0.032778169959783554,0.022623680531978607,0.011838332749903202,-0.005710848607122898,-0.0011458934750407934,-0.09839226305484772,0.08223304152488708,0.060935236513614655,-0.04806054010987282,0.0036146242637187243,0.011786234565079212,-0.018831396475434303,0.003981704358011484,-0.007575471419841051,0.16425821185112,-0.056395262479782104,0.022051574662327766,0.02452416904270649,-0.0783410593867302,-0.031405527144670486,-0.10430999845266342,0.07308651506900787,0.03129418566823006,-0.06337420642375946,0.018471037968993187,0.041528500616550446,-0.003909501247107983,0.00796455331146717,-0.018880635499954224,0.03574315086007118,-0.09306296706199646,-0.04249139130115509,0.03685281053185463,-0.016156943514943123,-0.006405057851225138,0.06351815164089203,-0.025602523237466812,-0.05678100883960724,0.04720095545053482,-0.09653645753860474,-0.03382212668657303,-0.019525647163391113,0.07350265979766846,-0.10742928832769394,0.020920373499393463,-0.0044867913238704205,-0.003698042593896389,-0.05733095109462738,0.048865653574466705,0.02142748422920704,0.08646711707115173,-0.008513321168720722,0.07073324918746948,-1.587185900600854e-33,-0.03372444212436676,-0.13091403245925903,0.012009941041469574,0.04123007878661156,-0.01723198965191841,0.033791568130254745,-0.05288892239332199,-0.008398525416851044,0.007845606654882431,-0.023881562054157257,-0.05495435744524002,-0.041945718228816986,0.015747494995594025,-0.008767102845013142,-0.012516064569354057,0.11132404208183289,0.0817449614405632,0.007563380990177393,0.03662387281656265,0.008589248172938824,-0.030710328370332718,0.05340570956468582,0.06061708182096481,0.03297549858689308,0.05427661910653114,-0.01711621880531311,-0.0042070550844073296,-0.0365518294274807,-0.05868964269757271,0.03610032796859741,0.050844550132751465,-0.015287262387573719,0.0027404234278947115,0.03856964781880379,0.028800157830119133,0.027873340994119644,-0.010327293537557125,-0.0024785257410258055,0.0011135033564642072,0.037184104323387146,0.01771317422389984,-0.031277433037757874,0.03842146322131157,-0.02247254177927971,0.06689909845590591,0.05215289443731308,0.05665810406208038,-0.015130572021007538,-0.03943890333175659,-0.005551245994865894,-0.003973265178501606,0.06279102712869644,-0.07456869632005692,-0.004925441462546587,-0.03534141555428505,0.06024450436234474,-0.11110996454954147,-0.008471271023154259,-0.021870329976081848,0.015846576541662216,0.03851602226495743,0.06619182974100113,0.007914155721664429,-0.03589404746890068,0.027447162196040154,-0.11089062690734863,-0.004145849496126175,-0.016267871484160423,0.08751235902309418,0.028237298130989075,-0.07241595536470413,-0.09071090817451477,0.07322771847248077,0.069264717400074,0.027592064812779427,0.03486223146319389,-0.06650237739086151,0.011708126403391361,-0.02538246661424637,-0.05139399319887161,-0.08491651713848114,-0.06646211445331573,-0.009314016439020634,0.09307336807250977,0.03634579852223396,0.023308871313929558,-0.016073327511548996,0.01816548779606819,-0.005010673310607672,-0.109735406935215,-0.013413866050541401,-0.014798542484641075,0.06342615932226181,-0.07693176716566086,-0.007499214261770248,-1.771284478986948e-33,-0.02110668458044529,0.010013769380748272,-0.058965034782886505,0.07490836828947067,0.04400843754410744,0.0304645337164402,-0.13906942307949066,-0.018022453412413597,-0.08629526197910309,0.060297973453998566,-0.002359620062634349,-0.06362489610910416,-0.011589258909225464,-0.026853540912270546,0.06610745936632156,0.1279989629983902,0.032907236367464066,-0.04224381968379021,-0.08301812410354614,-0.030903445556759834,0.009263907559216022,-0.06730522215366364,0.09016731381416321,0.016393521800637245,0.014914631843566895,-0.08194781839847565,0.14417143166065216,-0.003489713417366147,-0.017649278044700623,0.02936737611889839,-0.026656540110707283,0.05996305122971535,0.018434932455420494,0.0608496367931366,0.01803743466734886,-0.005740866996347904,0.10743401199579239,0.01695246249437332,-0.02304745651781559,0.01686195097863674,0.030515620484948158,0.028615020215511322,0.07042576372623444,-0.03845791518688202,0.03764381632208824,-0.07051263004541397,-0.055825937539339066,0.006212543696165085,-0.04343819618225098,-0.03438636660575867,0.07303506135940552,-0.024388954043388367,0.017924046143889427,-0.01100884284824133,0.04321201890707016,-0.020010702311992645,-0.016222074627876282,-0.033465515822172165,-0.047804925590753555,0.05131109058856964,0.07040656358003616,0.05843771621584892,-0.010273655876517296,0.001966167939826846,0.0829281434416771,-0.017996443435549736,-0.0388566292822361,0.07943326234817505,-0.0649961531162262,0.03489332273602486,0.018348578363656998,-0.08973736315965652,0.05422069504857063,-0.005399116314947605,-0.02668723464012146,-0.06356476247310638,0.0885293185710907,-0.01067610364407301,0.07052557915449142,-0.05193571373820305,-0.04329445958137512,-0.05573689565062523,0.03744889050722122,-0.007008880842477083,-0.020379817113280296,-0.004112991504371166,-0.03407842665910721,-0.037621837109327316,0.017329057678580284,0.030535060912370682,-0.025650542229413986,0.026838209480047226,0.047144241631031036,0.012717211619019508,-0.03147541359066963,-2.0981332227165694e-8,0.011221793480217457,-0.042381253093481064,-0.12432621419429779,0.05776309594511986,0.03466887027025223,-0.04562195762991905,-0.0892467126250267,0.010012976825237274,-0.03174632415175438,0.09959739446640015,0.05222053825855255,0.015716802328824997,-0.0031803809106349945,0.0783960297703743,0.050776612013578415,0.14838576316833496,-0.025479756295681,0.06260497123003006,-0.08652841299772263,-0.005611021537333727,-0.0028394863475114107,0.025283800438046455,-0.07365691661834717,-0.10583275556564331,-0.04317747429013252,-0.01549574825912714,-0.025543715804815292,-0.048784688115119934,0.041212428361177444,-0.09338601678609848,-0.01871109940111637,0.05654500797390938,0.03915945068001747,-0.03638409450650215,0.038079749792814255,0.025428123772144318,0.04062195494771004,0.011558939702808857,-0.037032581865787506,0.07884958386421204,0.03916288912296295,0.08630327880382538,0.09616803377866745,-0.052598413079977036,0.030183544382452965,-0.010417926125228405,0.0029845682438462973,0.041157081723213196,0.011364420875906944,0.04601813852787018,-0.08651767671108246,0.030739422887563705,0.055922914296388626,-0.018839547410607338,-0.0008429794106632471,-0.0175897479057312,-0.01985410787165165,-0.08332940191030502,-0.020187245681881905,0.01462090015411377,0.04821673035621643,0.08580697327852249,0.018220923840999603,0.04415444657206535]},{"text":"Tu flectis amnis, tu mare barbarum, Tu separatis uvidus in iugis Nodo coerces viperino Bistonidum sine fraude crinis. 20 Tu, cum parentis regna per arduum Cohors Gigantum scanderet impia, Rhoetum retorsisti leonis Unguibus horribilique mala; Quamquam choreis aptior et iocis 25 Ludoque dictus non sat idoneus Pugnae ferebaris; sed idem Pacis eras mediusque belli.","book":"Homage to Catalonia","chapter":15,"embedding":[-0.05689346045255661,0.06333401799201965,-0.04867977276444435,-0.023819774389266968,-0.06681999564170837,-0.03838668018579483,0.06967652589082718,0.003260566620156169,-0.01395859383046627,0.05552392825484276,0.01616160199046135,-0.08168993145227432,0.1008465364575386,-0.011110479012131691,-0.13980317115783691,-0.06530480831861496,-0.00200844369828701,0.012118668295443058,-0.03856709599494934,-0.006470751017332077,0.06179119646549225,0.041499845683574677,0.02211865596473217,0.04005270078778267,-0.13362281024456024,-0.01100218016654253,-0.06251270323991776,-0.01725153811275959,-0.016572419553995132,-0.08443227410316467,-0.01971900463104248,0.066288523375988,0.08118636161088943,-0.08240441232919693,0.01927965134382248,-0.061184708029031754,-0.05242934077978134,-0.013944381847977638,0.09567346423864365,0.09990095347166061,-0.016796598210930824,-0.004264478571712971,-0.013695711269974709,-0.02303737960755825,-0.05053136125206947,-0.020109478384256363,-0.04961186647415161,0.07808519154787064,0.11640903353691101,-0.020668985322117805,-0.07377017289400101,-0.003712948178872466,-0.10346712917089462,0.056400686502456665,-0.021961553022265434,-0.013485400006175041,-0.002444014884531498,-0.04739917814731598,0.013579313643276691,-0.026593662798404694,0.08662015944719315,0.12157294154167175,0.03696822002530098,0.047547440975904465,-0.04869407042860985,0.027955541387200356,-0.09377256780862808,0.003319829935207963,0.037038978189229965,-0.02641732431948185,0.12614217400550842,-0.035090863704681396,-0.07142981886863708,0.06739099323749542,-0.04211728647351265,0.02676781266927719,0.07381322234869003,-0.0003135734295938164,0.003895594272762537,-0.024606646969914436,-0.1441105753183365,-0.020407721400260925,0.04167475551366806,-0.09214264899492264,0.05599263310432434,0.01915096305310726,-0.0013020361075177789,-0.026885880157351494,0.03661922365427017,0.0115157226100564,0.06366660445928574,-0.006228078156709671,0.020296698436141014,-0.06566324084997177,0.0422201082110405,-0.06341052055358887,0.0611979179084301,-0.02400852181017399,0.010677103884518147,-0.023392122238874435,-0.0036029776092618704,-0.03677087649703026,-0.029878534376621246,0.011769316159188747,-0.06677653640508652,-0.06093481928110123,-0.025213608518242836,-0.047547418624162674,0.027730649337172508,-0.017846576869487762,-0.0820990651845932,-0.03269548714160919,0.0038574766367673874,-0.018745893612504005,0.03643535450100899,0.062363460659980774,0.020812904462218285,-0.01393520925194025,-0.024536455050110817,-0.06301016360521317,0.012162361294031143,-0.019600363448262215,-0.034750763326883316,-0.057982802391052246,0.013830102048814297,-0.01807289384305477,-0.06425422430038452,2.051006804481749e-32,-0.07801621407270432,-0.06564996391534805,-0.04959665983915329,0.02388356253504753,0.00005717435487895273,-0.009945893660187721,-0.13557179272174835,-0.02058502286672592,0.018499450758099556,-0.020615382120013237,-0.10745712369680405,-0.01739739626646042,-0.00873435940593481,0.026360949501395226,-0.00022485376393888146,0.08090091496706009,0.0671815425157547,-0.039559248834848404,-0.0577409565448761,-0.03875773772597313,-0.02691555768251419,0.05832504481077194,0.061621006578207016,-0.08862381428480148,0.056676119565963745,0.0496746189892292,-0.030216475948691368,-0.07912655174732208,-0.02641325630247593,0.038140669465065,0.0943877100944519,-0.07633210718631744,-0.008473848924040794,0.01435305830091238,-0.03540785610675812,0.0669747069478035,0.003068051300942898,-0.07280660420656204,-0.07604504376649857,0.046831853687763214,-0.011264944449067116,-0.010950664058327675,0.043197691440582275,0.057727936655282974,0.05399016663432121,0.014712873846292496,-0.004546132404357195,0.002496073255315423,0.11856134980916977,0.03402208909392357,0.013948388397693634,0.06918258219957352,0.10982204228639603,-0.04877186566591263,-0.020183147862553596,0.017240243032574654,0.010068620555102825,0.00948272179812193,0.010234278626739979,-0.004268345423042774,-0.014130358584225178,-0.0199448149651289,0.026900261640548706,0.022422892972826958,-0.00593360373750329,-0.024448778480291367,-0.04700518026947975,0.010421568527817726,0.0904894769191742,-0.03638717904686928,-0.0791907012462616,0.014701612293720245,-0.0406745970249176,-0.02699066326022148,-0.005501734558492899,-0.006146584637463093,0.03997800499200821,-0.04116745665669441,-0.08010595291852951,0.01271297037601471,-0.04037373885512352,0.009298273362219334,0.060267217457294464,-0.0046248226426541805,0.08043096214532852,0.07986041158437729,0.0478661023080349,0.014984055422246456,0.11696607619524002,0.08727534115314484,0.06051091477274895,0.004278338979929686,-0.015660732984542847,0.01042014267295599,0.07179991900920868,-1.838584542775798e-32,-0.014153416268527508,-0.05357382073998451,-0.02669716812670231,0.016067365184426308,-0.04863504692912102,-0.03922317922115326,-0.05490248277783394,0.06180768087506294,0.05646469071507454,-0.07725528627634048,-0.08643332868814468,-0.009261362254619598,0.06278050690889359,-0.05944366380572319,0.03884602338075638,0.009662513621151447,0.10656704753637314,-0.005307420622557402,-0.008545292541384697,-0.050177548080682755,-0.030469505116343498,0.011312270537018776,0.04981004819273949,-0.1491459608078003,-0.029058141633868217,0.021696889773011208,-0.04714313521981239,-0.03925531730055809,-0.002222236944362521,-0.039810046553611755,0.04096074029803276,0.05766931548714638,-0.017604904249310493,0.06731726974248886,0.018102753907442093,-0.07431157678365707,0.059053268283605576,-0.022673502564430237,-0.003785739652812481,0.0010375955607742071,0.036759231239557266,0.0016297950642183423,0.020447833463549614,0.038572266697883606,0.01266159676015377,-0.006218623369932175,-0.022473346441984177,0.06503905355930328,-0.015966661274433136,0.0716983899474144,0.06527197360992432,-0.03995497524738312,0.0274973101913929,0.006845918484032154,0.11783292144536972,-0.04534098878502846,-0.025982096791267395,0.0209080521017313,-0.029925711452960968,0.04469833895564079,0.0484379380941391,-0.001818150165490806,-0.08144551515579224,0.00029746952350251377,0.07738669216632843,0.08108952641487122,-0.038053881376981735,0.04229193925857544,0.0038657893892377615,-0.015463612042367458,0.05496571585536003,-0.09749805182218552,-0.08073843270540237,-0.03957405686378479,0.04206498712301254,0.02158430777490139,-0.07679896056652069,0.027360331267118454,0.00792045146226883,0.038149867206811905,-0.027941297739744186,-0.037526410073041916,0.05233411490917206,0.0017860017251223326,-0.03564050793647766,-0.0583442784845829,-0.030293729156255722,-0.041377220302820206,0.016733990982174873,-0.0884702205657959,-0.018771864473819733,-0.01652495749294758,0.054231785237789154,-0.10895407199859619,0.04568382725119591,-6.033388189052857e-8,0.025781720876693726,-0.007991067133843899,-0.0005571216461248696,0.02990053780376911,0.08203388750553131,-0.0399051159620285,-0.019678767770528793,-0.008679813705384731,-0.01566777378320694,0.05802813172340393,-0.05676203593611717,-0.022171111777424812,0.03915506973862648,-0.06105419248342514,0.02616003528237343,-0.03175213187932968,0.03654734045267105,-0.010811789892613888,0.0013007522793486714,-0.03843216970562935,0.003550674533471465,0.008128183893859386,-0.048021990805864334,-0.005410786718130112,-0.11762868613004684,-0.028223266825079918,0.07941412180662155,-0.024406664073467255,-0.024779941886663437,0.01711134798824787,-0.03147861361503601,-0.028426770120859146,0.02631417103111744,-0.05000841245055199,0.01597706414759159,0.03876056894659996,0.025233518332242966,0.04653355851769447,0.04823325574398041,-0.04670971632003784,0.04118361696600914,0.013518746010959148,0.05088452622294426,-0.029141683131456375,-0.04052666947245598,-0.04521217942237854,0.01514921709895134,0.04275181144475937,0.05914412811398506,-0.11345460265874863,0.0067332093603909016,-0.005325502250343561,0.11072206497192383,-0.04789338260889053,-0.05363539606332779,-0.03480319678783417,0.0658789873123169,-0.019463276490569115,0.0009641970391385257,0.06790591031312943,0.03950107470154762,-0.022811248898506165,0.07266181707382202,-0.011002304963767529]},{"text":"Non usitata nec tenui ferar Penna biformis per liquidum aethera Vates, neque in terris morabor Longius invidiaque maior Urbis relinquam.","book":"Homage to Catalonia","chapter":15,"embedding":[0.06713000684976578,0.01722331903874874,-0.035338956862688065,0.007704772520810366,-0.09757933765649796,0.04507523030042648,-0.007328059058636427,0.014121035113930702,0.02116643264889717,-0.014240426942706108,0.05043409764766693,-0.09142066538333893,-0.05167270451784134,0.0448312871158123,-0.09402839094400406,-0.1091739758849144,0.00532665615901351,0.0861261785030365,-0.05179135873913765,0.006657132878899574,0.11344477534294128,-0.02391052059829235,0.024887986481189728,-0.0011499349493533373,-0.1289176195859909,0.012561091221868992,-0.022371629253029823,0.0035434365272521973,0.08000829815864563,-0.12204736471176147,-0.03444493189454079,0.09569589793682098,0.04861275106668472,-0.09105625748634338,0.03906214237213135,0.003715546103194356,0.0018186672823503613,-0.020627925172448158,0.04603473097085953,0.06880965083837509,-0.03167353942990303,-0.047858212143182755,0.016634508967399597,-0.016312986612319946,-0.040839895606040955,-0.027590332552790642,-0.044640012085437775,0.027054715901613235,0.043768372386693954,0.044733189046382904,-0.1228807121515274,-0.003165524685755372,-0.08286774158477783,0.06980600208044052,-0.06948117911815643,-0.04387635365128517,0.054660994559526443,-0.011258277110755444,-0.01784525439143181,-0.029021000489592552,0.0013894123258069158,0.0896984115242958,-0.00062002387130633,-0.02148228883743286,-0.013424528762698174,0.05952475219964981,-0.06891977041959763,0.015379897318780422,-0.0383489653468132,-0.04895834997296333,0.09846147894859314,-0.01055942289531231,-0.07262241095304489,0.07207110524177551,-0.11537694931030273,0.01233158353716135,-0.016872664913535118,-0.027362989261746407,0.034566525369882584,0.004847056232392788,-0.06021146848797798,-0.007374754175543785,0.0021603747736662626,0.005210419651120901,0.10152392089366913,0.010781917721033096,-0.06155318766832352,-0.08267431706190109,-0.031270116567611694,0.010963509790599346,0.015835491940379143,0.041134148836135864,-0.04811275005340576,-0.00860757939517498,0.020381806418299675,0.04745515435934067,-0.010981185361742973,-0.011585953645408154,0.018803974613547325,-0.06092584878206253,0.03263062238693237,-0.04927225783467293,-0.02968965843319893,-0.011888997629284859,-0.053458087146282196,-0.0567571222782135,0.007774344179779291,-0.05288160219788551,0.04305539280176163,0.03490068390965462,-0.10184299945831299,-0.06564795225858688,-0.02966620773077011,-0.0635102391242981,-0.013255747966468334,-0.022474920377135277,-0.04627661034464836,-0.08392944186925888,-0.06353377550840378,-0.058265570551157,0.0018158444436267018,-0.016084030270576477,-0.03854069486260414,-0.0022249582689255476,0.07058189064264297,-0.04141839221119881,0.05932806059718132,1.1926650172099394e-32,-0.00961963552981615,-0.0813499465584755,-0.012885384261608124,0.054445382207632065,-0.004997209645807743,-0.010904303751885891,-0.02033158950507641,-0.02076736092567444,-0.03382426127791405,-0.09644702821969986,-0.07531961053609848,0.043171852827072144,-0.06952443718910217,-0.01642768271267414,-0.04033120349049568,-0.02915031835436821,0.09473153203725815,-0.047095995396375656,0.04946553707122803,0.019878633320331573,0.02279593236744404,0.09532853960990906,0.018127653747797012,-0.04818575829267502,-0.007655825465917587,-0.03584718704223633,-0.06074551120400429,-0.05792124569416046,-0.09445320814847946,0.019750289618968964,0.0480489544570446,-0.009085561148822308,-0.01342787966132164,-0.030716557055711746,0.0010150151792913675,-0.05447763204574585,0.025526827201247215,-0.013365733437240124,-0.06987883150577545,0.10142137110233307,0.037532299757003784,-0.00012248315033502877,0.1296694427728653,-0.022340698167681694,0.057342708110809326,-0.021567005664110184,0.016360146924853325,0.08677012473344803,0.07130444049835205,-0.027659375220537186,0.06540445238351822,0.02855285070836544,-0.029071742668747902,0.0014876207569614053,-0.027260763570666313,-0.00041641906136646867,-0.009189358912408352,0.04090738296508789,-0.05758311226963997,0.0685843825340271,0.008940462954342365,0.057197537273168564,-0.013427527621388435,-0.03066374734044075,0.014194874092936516,-0.06382285803556442,-0.08945997804403305,0.019452162086963654,0.10188215225934982,-0.03225823864340782,-0.0582943893969059,-0.015561617910861969,-0.0043260264210402966,0.07431929558515549,0.05150444805622101,0.007954475469887257,0.032759059220552444,-0.009858418256044388,0.05015035346150398,0.017120590433478355,0.011552705429494381,0.05776270851492882,0.020554153248667717,0.07310366630554199,0.05759445205330849,0.02477840706706047,0.000025492801796644926,0.04732688516378403,0.040720608085393906,-0.004129916429519653,0.06650983542203903,0.022438382729887962,-0.005271675996482372,-0.0335119254887104,0.10372056066989899,-1.24257922567654e-32,-0.004162303172051907,-0.06621835380792618,-0.06174052879214287,0.09538289159536362,0.018572775647044182,0.04035472124814987,-0.027471881359815598,0.0715104341506958,0.02241358533501625,-0.04887314513325691,-0.031640611588954926,-0.05313548818230629,0.12417057901620865,-0.07809467613697052,-0.0485142283141613,0.057195596396923065,0.03280134126543999,0.038997381925582886,0.03235374018549919,-0.08661706745624542,-0.14110098779201508,0.045129358768463135,0.004209211096167564,-0.08259423822164536,-0.07940974086523056,0.026672715321183205,0.03959517553448677,-0.07331034541130066,-0.06357390433549881,0.02369929477572441,0.05135219171643257,-0.060923513025045395,-0.04033854231238365,0.02729230560362339,-0.04268403723835945,-0.010509143583476543,0.08030309528112411,-0.07015535235404968,0.003926512785255909,-0.002851801458746195,0.012880480848252773,-0.0320587120950222,0.07587016373872757,0.02040097489953041,0.06803341954946518,-0.01456443965435028,-0.023480447009205818,-0.05071686953306198,-0.05808861553668976,0.048056911677122116,0.10225588083267212,-0.03726635128259659,-0.03082391247153282,0.03459138050675392,0.04568805173039436,-0.08150763064622879,-0.05841130390763283,-0.001873451634310186,-0.02134869433939457,0.04451053962111473,0.04254107549786568,0.09890812635421753,-0.02810293436050415,-0.007164442911744118,0.03139635547995567,0.029001720249652863,-0.06140358746051788,0.09797456860542297,-0.0061386944726109505,-0.0366915762424469,0.10133866220712662,-0.02882382646203041,-0.0005735420272685587,-0.03874941170215607,0.020391089841723442,0.006971799768507481,0.019297467544674873,0.04357384890317917,0.022481491789221764,0.04179072007536888,-0.0581071674823761,-0.008519701659679413,-0.09087510406970978,-0.02782796137034893,-0.009670075960457325,-0.05158176273107529,0.041159581393003464,-0.0434233695268631,0.009684360586106777,0.012726104818284512,-0.022166265174746513,-0.05677465721964836,-0.013480709865689278,-0.018965471535921097,0.07208313792943954,-4.14177101504265e-8,0.03672591596841812,-0.039471469819545746,-0.018813658505678177,0.01601933129131794,0.03845040872693062,-0.05961807817220688,0.01094356831163168,0.03663266450166702,0.03073507733643055,0.1318218857049942,0.030174821615219116,-0.0336046926677227,-0.021372629329562187,-0.0185348279774189,0.025374896824359894,0.02378653734922409,0.09651767462491989,0.08675608038902283,-0.0009647756814956665,-0.0036197721492499113,-0.0019861827604472637,0.004411852918565273,-0.10740235447883606,-0.03954733535647392,-0.08527064323425293,-0.045077864080667496,0.07330536842346191,-0.11614792793989182,0.027171194553375244,-0.029051586985588074,-0.03000890463590622,0.057629458606243134,-0.005576923955231905,-0.0452401265501976,-0.03219342976808548,-0.012627054937183857,0.01561876479536295,0.035791054368019104,0.01939779706299305,0.009246977046132088,0.033164191991090775,-0.01577780582010746,0.018270689994096756,-0.03190620243549347,0.10212834924459457,-0.005374068859964609,-0.059530626982450485,-0.003770010080188513,0.016501182690262794,0.00021786574507132173,-0.0330624133348465,0.03663098067045212,0.1065308153629303,0.019452989101409912,-0.013072434812784195,0.048563092947006226,0.044927120208740234,-0.004287808667868376,0.0480264350771904,0.017154406756162643,0.026905223727226257,0.02437364123761654,0.04695803299546242,0.022874653339385986]},{"text":"Iam iam residunt cruribus asperae Pelles et album mutor in alitem 10 Superne, nascunturque leves Per digitos umerosque plumae.","book":"Homage to Catalonia","chapter":15,"embedding":[-0.03326667100191116,0.006100022699683905,-0.05129016563296318,-0.054435428231954575,-0.13449567556381226,0.05822853744029999,0.034890688955783844,0.11034832894802094,0.053467027842998505,-0.03420742228627205,0.04610566422343254,-0.06032078340649605,0.03611314669251442,-0.08656367659568787,-0.1014365404844284,-0.08672737330198288,-0.05884590372443199,0.07483647018671036,0.009163664653897285,-0.06060543656349182,0.06300963461399078,0.007515655364841223,0.007039801683276892,0.03918220475316048,-0.12045103311538696,0.007996617816388607,-0.057979095727205276,-0.037927933037281036,0.04548321291804314,-0.03940717130899429,0.050559449940919876,0.08663905411958694,0.031064527109265327,0.03415892645716667,-0.035836637020111084,-0.009397209621965885,-0.029804164543747902,-0.08050164580345154,0.015811484307050705,0.07116831839084625,-0.013998414389789104,-0.003605686128139496,-0.04619181528687477,-0.09377897530794144,-0.010289065539836884,-0.01644233614206314,-0.033117786049842834,0.06361514329910278,-0.04957651346921921,0.06790748983621597,-0.0370367132127285,0.018274571746587753,-0.03135603666305542,0.02201707847416401,-0.0077087050303816795,-0.035510893911123276,-0.029471613466739655,-0.008714690804481506,0.05288633704185486,-0.006663554348051548,0.06458045542240143,0.014605263248085976,-0.04419507086277008,-0.031064733862876892,-0.028442256152629852,0.06707261502742767,-0.04059293866157532,0.012169605121016502,-0.017214737832546234,0.009262345731258392,0.13039728999137878,-0.013266773894429207,-0.004786695819348097,0.05809762328863144,0.006752142682671547,0.04148654639720917,-0.07061290740966797,-0.043796077370643616,-0.04275786876678467,-0.06299123167991638,0.016203992068767548,-0.06472759693861008,0.034973759204149246,-0.10646471381187439,-0.012325202114880085,-0.02224811539053917,0.06625207513570786,0.03448331356048584,-0.030595891177654266,-0.0644989088177681,0.017310727387666702,0.03138727322220802,-0.054831862449645996,0.0038122907280921936,0.014535311609506607,0.01894206367433071,-0.010056956671178341,0.027271302416920662,0.026002727448940277,0.025993339717388153,0.06003124266862869,0.053465913981199265,-0.020153289660811424,0.02513684518635273,-0.10353150963783264,-0.06172426417469978,0.0179324708878994,-0.014027048833668232,-0.01673191785812378,-0.04069659113883972,-0.036052338778972626,-0.04204520583152771,-0.027608703821897507,-0.04042249917984009,0.0646858885884285,-0.04013281688094139,-0.018153982236981392,-0.04419340938329697,0.02283383719623089,-0.0690840482711792,-0.01961573213338852,0.00883191917091608,-0.09426508098840714,-0.03516382351517677,0.006469323765486479,-0.023585593327879906,0.04221494123339653,1.0670768170728186e-32,-0.09819946438074112,-0.041477520018815994,0.018620634451508522,-0.027472002431750298,0.015897871926426888,-0.08221054822206497,-0.09213369339704514,0.024465447291731834,0.028750097379088402,-0.09120327979326248,-0.03420685976743698,0.017890555784106255,-0.04567095637321472,-0.004589001182466745,0.02649054303765297,0.017850659787654877,0.041091885417699814,0.024198750033974648,0.019058696925640106,-0.05803631618618965,-0.07266156375408173,-0.02353084832429886,0.07303956151008606,0.0028360956348478794,0.026024851948022842,0.01703893020749092,-0.010154282674193382,-0.01894613541662693,0.057983484119176865,0.00781263131648302,0.08336125314235687,0.013076487928628922,0.005984949879348278,-0.03899307921528816,-0.03100261464715004,0.06656470894813538,0.025978559628129005,0.010637248866260052,-0.06836763024330139,-0.03378739207983017,0.03683197870850563,0.04095057398080826,0.03834252059459686,0.004155202303081751,0.010047104209661484,0.07133419811725616,0.041116729378700256,0.054535266011953354,0.14136436581611633,-0.011577297933399677,-0.0545453317463398,0.014191868714988232,-0.08690117299556732,-0.011941839940845966,0.07999112457036972,-0.014541571959853172,-0.05368764325976372,0.03789873048663139,-0.0019149536965414882,-0.031671859323978424,0.0675853043794632,-0.007577991113066673,0.03410474210977554,-0.01804734766483307,0.006055355072021484,0.01064612902700901,-0.010292064398527145,0.0021260979119688272,0.10168163478374481,0.02594049461185932,-0.1091885045170784,-0.030313145369291306,0.029617726802825928,0.03676055744290352,0.005840746220201254,0.09759687632322311,0.02123524621129036,-0.058171991258859634,-0.08210339397192001,0.07277169078588486,-0.0675346702337265,0.04106052964925766,0.00937050674110651,0.06296534091234207,0.07461822032928467,0.03896497189998627,0.042131517082452774,0.004192762076854706,0.07627152651548386,0.09694547951221466,0.025180721655488014,0.03837425634264946,-0.04839219152927399,0.013909606263041496,0.0047903829254209995,-9.975889378918976e-33,-0.008987356908619404,-0.05942046642303467,-0.07193654775619507,0.07373997569084167,-0.024375267326831818,0.022035470232367516,-0.033072616904973984,0.09459222853183746,0.03477822616696358,-0.08221262693405151,-0.030331479385495186,-0.02363237552344799,0.08862075954675674,-0.10643337666988373,-0.036052405834198,-0.016845596954226494,0.0440116822719574,0.02861361764371395,-0.014895944856107235,0.004061701241880655,-0.0224924199283123,0.12093281745910645,0.06329972296953201,0.006872574798762798,-0.0295109823346138,0.028569800779223442,0.033565618097782135,0.02877074107527733,0.02844722755253315,-0.00930977426469326,0.0748184397816658,-0.08417636156082153,-0.03361251950263977,0.019119787961244583,-0.10409735888242722,-0.04262609779834747,0.18493099510669708,0.0276864692568779,-0.011004897765815258,0.028919456526637077,-0.03218131512403488,0.08437803387641907,-0.03212565928697586,0.00018697614723350853,0.016786660999059677,-0.05206989496946335,-0.005480644293129444,0.009093298576772213,-0.0696914941072464,-0.05221746861934662,0.08280675858259201,-0.03247762471437454,-0.011095529422163963,-0.06398112326860428,0.0916978269815445,0.08271052688360214,-0.030842076987028122,-0.04759982228279114,-0.002072155475616455,0.02606973983347416,0.010842730291187763,0.03403715044260025,-0.04392551630735397,-0.07388131320476532,0.021158302202820778,-0.02518155798316002,-0.08351309597492218,0.056643303483724594,-0.05296775698661804,0.03312359377741814,0.07245498150587082,-0.049520984292030334,-0.06113126873970032,-0.002828369615599513,-0.08217212557792664,-0.04788447916507721,-0.06382915377616882,0.08268634229898453,-0.0013409595703706145,0.003913674037903547,-0.09694716334342957,-0.009699219837784767,-0.05656781792640686,0.02845604158937931,-0.011724523268640041,0.015947597101330757,0.055672917515039444,-0.04126208648085594,0.06146116182208061,-0.044981006532907486,0.018001269549131393,0.0056985714472830296,0.003987631294876337,-0.03404918685555458,-0.0020701191388070583,-3.7220573290142056e-8,-0.001995022874325514,-0.031817007809877396,0.05290542542934418,-0.00717150280252099,0.07384592294692993,-0.03721652925014496,-0.010881572030484676,0.05266217887401581,-0.06702274829149246,0.03367367759346962,0.0033728289417922497,-0.12033523619174957,-0.0712650865316391,0.04005541652441025,-0.013699084520339966,0.03541932627558708,0.0893501415848732,0.058197345584630966,-0.028900103643536568,-0.04655760899186134,-0.004127685911953449,0.00424488540738821,0.02762402594089508,-0.07852957397699356,-0.005105211865156889,0.03544720262289047,0.06182928755879402,-0.08279650658369064,-0.0695217102766037,-0.024697216227650642,0.00596994161605835,0.007117355242371559,0.0875273197889328,-0.055295929312705994,0.04866601526737213,0.053793102502822876,0.028420468792319298,0.0858779326081276,-0.038123637437820435,0.02432416006922722,0.10045263916254044,-0.0107067646458745,0.010496309958398342,0.046560388058423996,0.026632100343704224,-0.07106079161167145,0.02980825863778591,0.020693857222795486,0.04245952144265175,0.03075137734413147,-0.03678039461374283,-0.007120254449546337,0.053263209760189056,0.007701387628912926,-0.027615629136562347,-0.07338609546422958,0.018626317381858826,-0.012474802322685719,-0.04641410708427429,0.08571051806211472,0.10223368555307388,0.026543639600276947,-0.02888157032430172,-0.049077216535806656]},{"text":"Me Colchus et qui dissimulat metum Marsae cohortis Dacus et ultimi Noscent Geloni, me peritus Discet Hiber Rhodanique potor. 20 Absint inani funere neniae Luctusque turpes et querimoniae; Compesce clamorem ac sepulcri Mitte supervacuos honores.","book":"Homage to Catalonia","chapter":15,"embedding":[-0.04703182354569435,0.030976422131061554,-0.04136861115694046,0.01297399215400219,-0.05705234408378601,-0.012019682675600052,0.1074809655547142,0.09982562810182571,0.020548010244965553,0.004336354322731495,0.04314063861966133,-0.04277443885803223,0.05248090624809265,-0.048543088138103485,-0.13304612040519714,-0.13964708149433136,0.05382222309708595,0.07114413380622864,-0.11710159480571747,0.011867676861584187,0.005339702125638723,0.04280141368508339,-0.022426361218094826,0.06026969105005264,-0.07812681049108505,0.055604755878448486,-0.05037638545036316,-0.054722413420677185,0.017757372930645943,-0.005365442484617233,0.03055713325738907,0.04502847418189049,0.058803241699934006,0.005085320211946964,0.024934176355600357,0.025753570720553398,-0.06950020045042038,-0.02564522810280323,0.11512118577957153,0.049042683094739914,0.003420148976147175,-0.05697203800082207,0.03585634380578995,-0.03568713366985321,0.03127133101224899,-0.021262217313051224,-0.08932603895664215,0.04370274767279625,0.02959172986447811,0.04078702628612518,-0.0682472512125969,-0.008499409072101116,-0.010486521758139133,0.0648839995265007,-0.09321372210979462,-0.029096482321619987,-0.0702262818813324,-0.059778861701488495,-0.0334816537797451,-0.03520810976624489,-0.02901071310043335,-0.048328697681427,0.04395897313952446,-0.005267379805445671,-0.11826953291893005,-0.05968007445335388,-0.03344881907105446,-0.004443191457539797,0.03613245487213135,0.0043893721885979176,0.11146321892738342,0.028966199606657028,0.022560283541679382,-0.009976821020245552,-0.010389295406639576,0.05445888638496399,0.018689649179577827,-0.04695861041545868,0.017306778579950333,-0.08190327882766724,0.0986468642950058,0.050002388656139374,0.060318104922771454,0.016925498843193054,0.004037516191601753,0.025910191237926483,0.05015896260738373,-0.006328884977847338,0.016781296581029892,-0.011439974419772625,0.005769676994532347,0.06583523005247116,-0.06103892624378204,-0.0709981694817543,-0.09400886297225952,-0.02971198968589306,0.001404913840815425,-0.011491225101053715,-0.08168783783912659,0.04579191282391548,-0.0018189785769209266,-0.05283920094370842,-0.005909404251724482,-0.013054931536316872,-0.08832358568906784,-0.05779155716300011,-0.04050350934267044,-0.1153542771935463,0.05016865208745003,0.0366658978164196,-0.006017232779413462,-0.10948505252599716,-0.07358761131763458,-0.09226632863283157,0.017716843634843826,0.08885949105024338,0.09988671541213989,-0.09753172099590302,-0.02129886858165264,-0.13128453493118286,-0.014015479944646358,-0.04827393591403961,0.05002306029200554,-0.06268647313117981,-0.005672280676662922,-0.0235462486743927,0.0458187498152256,1.775009694053101e-32,-0.10225582122802734,-0.027608457952737808,-0.034092698246240616,0.004370539914816618,-0.01562577672302723,-0.03115837462246418,-0.1056724339723587,-0.04617513716220856,0.04771615192294121,-0.10202135890722275,-0.06861186772584915,0.05817262828350067,-0.02873660810291767,0.002507356461137533,-0.023003799840807915,0.055708687752485275,0.0836302861571312,-0.07974132150411606,0.025126153603196144,-0.05508933961391449,0.03488874062895775,0.05457790195941925,-0.003480617655441165,-0.002009752206504345,-0.030735306441783905,-0.012736516073346138,-0.013798129744827747,-0.10570749640464783,0.015259011648595333,0.019209938123822212,0.13006052374839783,0.007676522713154554,0.032532598823308945,0.01811242662370205,-0.039737217128276825,0.05358131602406502,-0.0648614913225174,-0.001542450743727386,0.008006078191101551,-0.026940712705254555,0.005429198499768972,0.011014225892722607,0.058383744210004807,-0.03454825282096863,0.06925234943628311,0.037061549723148346,-0.015828626230359077,0.08033305406570435,0.02525017037987709,0.011662688106298447,0.021407032385468483,0.05464237555861473,0.04736093804240227,0.02014089561998844,-0.049359459429979324,0.006732190493494272,-0.04046042636036873,0.03622555360198021,-0.0035409017000347376,-0.018845319747924805,0.015242569148540497,-0.044986724853515625,-0.04740067198872566,0.06508840620517731,-0.04979953169822693,-0.02677178382873535,-0.07439485937356949,0.04449974372982979,0.09394428133964539,0.032977890223264694,-0.04943651705980301,-0.008631650358438492,0.009247791953384876,-0.0017294305143877864,-0.017620710656046867,0.006428204011172056,0.10145243257284164,0.028424089774489403,-0.046263691037893295,0.021121777594089508,-0.04938659071922302,-0.00955585390329361,-0.026984214782714844,0.04698147252202034,0.05145515128970146,0.01616791822016239,0.02965140901505947,0.03902110457420349,0.10002781450748444,-0.005643255542963743,0.08974438160657883,-0.04742567986249924,0.01400603074580431,0.02904120832681656,-0.019353283569216728,-1.634481695400998e-32,0.054591234773397446,-0.059960197657346725,-0.0560910739004612,0.07716727256774902,0.023726902902126312,0.025179816409945488,-0.04065313562750816,0.031924474984407425,-0.013604620471596718,-0.055136360228061676,-0.02627909742295742,0.008345462381839752,0.04373796284198761,-0.04584399610757828,0.05247458443045616,0.0250735841691494,0.06204668805003166,0.04779890552163124,0.04360963776707649,0.023708682507276535,-0.09712587296962738,-0.012401707470417023,0.0009937246795743704,-0.060742441564798355,-0.013445890508592129,0.009694203734397888,0.11087347567081451,-0.04388571158051491,-0.07591709494590759,0.018490176647901535,0.06995072215795517,0.019405895844101906,-0.010288849472999573,-0.0011740470072254539,-0.02134612947702408,-0.002176369074732065,0.06184263527393341,-0.06589389592409134,-0.04892495274543762,0.002825106494128704,0.00888726208359003,-0.007518804632127285,0.016260989010334015,0.08235209435224533,0.03208048641681671,-0.04351329058408737,-0.057118844240903854,0.017128046602010727,-0.11184921115636826,0.006843911483883858,0.04344454035162926,-0.055900782346725464,0.02127312310039997,-0.042585957795381546,0.036524448543787,-0.0052142976783216,-0.06280377507209778,0.002999327378347516,-0.032918866723775864,-0.007628454826772213,0.05307449400424957,-0.0252812709659338,-0.07982505857944489,0.003570044878870249,0.05505581200122833,0.025103744119405746,-0.08399813622236252,0.07945647090673447,-0.060822710394859314,0.046968456357717514,0.08185911923646927,-0.021415041759610176,0.0012732595205307007,-0.02322317846119404,0.03270113840699196,-0.020753007382154465,0.006406253669410944,-0.015534471720457077,0.005513641983270645,0.028923939913511276,-0.14057983458042145,-0.038834329694509506,-0.02677636593580246,0.01460636779665947,-0.0689917653799057,-0.010723130777478218,0.0037253277841955423,0.08097685128450394,-0.041006602346897125,-0.027203360572457314,-0.02437027543783188,0.03449692949652672,0.052022792398929596,-0.025055399164557457,0.050211723893880844,-5.575804351565239e-8,0.08114420622587204,-0.02864396944642067,-0.007953581400215626,0.051344696432352066,0.020964227616786957,-0.03766800835728645,-0.009459766559302807,-0.02582874521613121,-0.049615826457738876,0.10559782385826111,-0.041271649301052094,0.05312659591436386,0.003533431328833103,-0.03440171852707863,-0.05248786881566048,0.08513329923152924,0.032900240272283554,0.07071542739868164,-0.046766497194767,-0.057668671011924744,-0.025238730013370514,-0.015074988827109337,0.015481632202863693,-0.08832170069217682,-0.10776396095752716,0.04606898874044418,0.06162809580564499,-0.06250392645597458,-0.03817695751786232,-0.07630717754364014,0.00861770287156105,0.014546053484082222,0.026674924418330193,-0.07573192566633224,0.014091765508055687,0.029116980731487274,0.017085473984479904,0.02241242676973343,0.004718369338661432,-0.00792213249951601,0.05911045894026756,-0.01567746326327324,0.03878122568130493,-0.026424385607242584,-0.027236565947532654,-0.027961747720837593,0.04654928296804428,0.024621745571494102,0.04516835883259773,0.025702133774757385,-0.10660429298877716,0.022291958332061768,0.04163451865315437,-0.0007020082557573915,-0.050364911556243896,-0.038386013358831406,0.04390859976410866,0.06670127063989639,-0.01421518623828888,-0.007106128614395857,0.032439012080430984,0.06302440911531448,0.004923946224153042,0.04105086624622345]},{"text":"Favete linguis: carmina non prius Audita Musarum sacerdos Virginibus puerisque canto.","book":"Homage to Catalonia","chapter":15,"embedding":[0.005111202597618103,0.1354813575744629,-0.04712861776351929,0.013252003118395805,-0.05479361116886139,0.06916387379169464,0.06369296461343765,0.0013045582454651594,0.06586343795061111,0.09872211515903473,0.10914663970470428,-0.06182730570435524,0.05210922658443451,-0.00015757590881548822,-0.10564642399549484,-0.10816629976034164,-0.0030742858070880175,0.029539356008172035,0.012863961048424244,0.11079356074333191,0.004546009004116058,-0.05300869792699814,-0.044713396579027176,-0.012741616927087307,-0.04995019733905792,-0.029640432447195053,-0.03683488443493843,-0.058791227638721466,0.013095609843730927,-0.12812112271785736,-0.05227310210466385,0.01547294482588768,0.06012986972928047,0.03163597732782364,0.03519370034337044,-0.027082154527306557,0.023979438468813896,-0.041237764060497284,0.0216448362916708,0.06614868342876434,-0.06606177985668182,-0.040463026612997055,-0.06602542847394943,-0.07521849870681763,-0.053584370762109756,-0.013435481116175652,0.027128787711262703,0.04933730512857437,-0.0018821961712092161,-0.0448329895734787,-0.12053706496953964,-0.0762699693441391,0.005703645292669535,-0.018069999292492867,-0.046617165207862854,-0.09032439440488815,-0.03802335634827614,-0.014327585697174072,-0.00942755863070488,-0.04468696564435959,0.007221322972327471,0.07659613341093063,-0.0425390787422657,0.011374645866453648,-0.01965242251753807,0.03489575907588005,-0.044445592910051346,0.04021374508738518,-0.080638088285923,0.05567361041903496,0.06403354555368423,-0.05466477945446968,0.010488713160157204,0.03496367111802101,-0.07270663231611252,-0.011999404057860374,-0.005447294097393751,0.02292534150183201,0.008458539843559265,-0.11151409149169922,-0.012862264178693295,-0.02049691416323185,-0.03457984700798988,-0.009717549197375774,-0.019037233665585518,-0.035141512751579285,0.02412225306034088,-0.04083027318120003,-0.001986050745472312,-0.005410127807408571,0.021420380100607872,-0.017886564135551453,0.016029883176088333,-0.0069119855761528015,0.024190498515963554,0.0009159193723462522,-0.0504961721599102,-0.006585454568266869,0.10409572720527649,0.009215774945914745,0.017988625913858414,0.05667136237025261,0.02354239858686924,-0.002288565970957279,-0.07432212680578232,-0.03455556929111481,-0.08128758519887924,-0.08108805865049362,0.09735264629125595,0.006093243137001991,-0.041642360389232635,0.03915702551603317,-0.052654627710580826,-0.05450833961367607,-0.002177534392103553,0.021084021776914597,-0.011965705081820488,-0.050325632095336914,-0.017507685348391533,0.002800550078973174,0.07205250859260559,-0.012709583155810833,-0.017157478258013725,-0.0558488629758358,0.06509088724851608,-0.03865361213684082,0.06307337433099747,7.744125926490521e-33,-0.06316974759101868,-0.057031482458114624,-0.020184895023703575,-0.027445299550890923,0.014473605901002884,0.005592540837824345,-0.070701465010643,-0.00446718093007803,0.048707280308008194,0.012426111847162247,-0.008939194492995739,0.025920014828443527,-0.00374676869250834,-0.057080525904893875,0.08238328248262405,0.08314912766218185,-0.006085225846618414,-0.0173975620418787,0.016717320308089256,-0.0040143197402358055,-0.030058162286877632,-0.008506362326443195,0.05609480291604996,-0.006155127193778753,0.020218294113874435,-0.027443861588835716,0.04404783993959427,-0.12652111053466797,0.012345632538199425,0.05292404070496559,0.07659387588500977,-0.013329043984413147,0.020307408645749092,0.017911503091454506,-0.035831090062856674,0.01685311086475849,0.058510951697826385,-0.002656698226928711,-0.011822158470749855,0.005092274397611618,-0.05104124918580055,-0.009409929625689983,0.053271763026714325,0.013209482654929161,-0.00002749854866124224,0.048217885196208954,0.002334467601031065,0.028600044548511505,0.0779581293463707,0.06572693586349487,-0.00040892863762564957,-0.007855042815208435,-0.02111923322081566,0.013044332154095173,0.05762680619955063,0.08755470812320709,-0.043917931616306305,0.0811794325709343,-0.05060248076915741,-0.07313272356987,0.054551973938941956,0.04754156991839409,0.009947662241756916,-0.0028114630840718746,-0.08202512562274933,-0.06098001077771187,-0.05052066966891289,-0.03065834939479828,0.09290889650583267,-0.010539116337895393,-0.11049262434244156,-0.03814547508955002,-0.08061356097459793,0.046114712953567505,-0.03016149252653122,0.01848418638110161,0.010006940923631191,-0.014598805457353592,-0.004536649212241173,-0.009404974058270454,-0.100357785820961,-0.005066215060651302,0.04443986341357231,0.016714250668883324,0.06279324740171432,0.10211112350225449,-0.013509910553693771,0.02440500259399414,0.0820109024643898,0.059237122535705566,0.01716996729373932,0.0671226978302002,0.01608719676733017,0.0011621975572779775,-0.02687719278037548,-9.452410887771103e-33,-0.06522960215806961,-0.04701085761189461,-0.03170476853847504,0.05891487002372742,0.024181129410862923,-0.0064177922904491425,-0.10679177939891815,0.048468250781297684,-0.026733532547950745,-0.04278884828090668,-0.13015569746494293,-0.07979833334684372,0.08299895375967026,-0.008669565431773663,-0.027405092492699623,0.05448411777615547,0.051316216588020325,0.012968940660357475,-0.0871099978685379,-0.020707495510578156,-0.029487811028957367,0.01588382013142109,-0.006820068694651127,-0.008648471906781197,-0.018816495314240456,0.000729403633158654,0.033242713660001755,-0.008224769495427608,-0.04550216346979141,-0.04355958476662636,0.05545889958739281,0.026015952229499817,-0.05318719148635864,0.02820000983774662,-0.026655061170458794,-0.054164279252290726,0.12815415859222412,-0.0031610680744051933,-0.0044130063615739346,0.040516447275877,-0.014328252524137497,0.051028501242399216,0.051911015063524246,-0.04510777071118355,-0.017306378111243248,-0.054252296686172485,-0.06222480535507202,-0.03674186393618584,0.020632656291127205,0.025531474500894547,0.06205178052186966,-0.015495594590902328,0.0533120334148407,-0.03661075234413147,-0.04272308200597763,0.002299156039953232,0.024720950052142143,-0.06190979480743408,-0.017484938725829124,0.07492008060216904,0.10266344994306564,0.057802245020866394,-0.04760923981666565,0.019109899178147316,0.05150780454277992,-0.0035833155270665884,-0.04395541921257973,0.01577410101890564,0.03042096085846424,0.037333860993385315,0.027984997257590294,-0.11979923397302628,-0.12768277525901794,0.03712400421500206,-0.04006759822368622,0.12801159918308258,-0.019461622461676598,-0.0921306237578392,0.024000439792871475,0.0004416643350850791,0.007617497351020575,-0.03147168084979057,-0.013919518329203129,-0.027669651433825493,0.007492076139897108,-0.007565735839307308,-0.027346447110176086,-0.0419590063393116,0.017196238040924072,0.017726367339491844,-0.06639916449785233,-0.0707433894276619,0.004116117022931576,-0.031037157401442528,0.0612802654504776,-3.647889812441463e-8,-0.01803656853735447,-0.09924083203077316,-0.00979519635438919,-0.03130432963371277,0.033727921545505524,-0.08418557047843933,-0.04010237380862236,-0.057854343205690384,-0.038973238319158554,-0.016289638355374336,-0.012452269904315472,0.011189041659235954,-0.012382416054606438,0.042659539729356766,0.001680660992860794,-0.049970515072345734,0.16268295049667358,0.07850798964500427,-0.046027157455682755,-0.004769197199493647,0.03169598430395126,0.017250852659344673,-0.08677208423614502,-0.009725021198391914,-0.045484259724617004,0.0032555030193179846,0.07024744153022766,0.06057453528046608,-0.03162644803524017,0.013808291405439377,0.012260743416845798,0.1252312809228897,0.012718158774077892,-0.04390912503004074,-0.1003938540816307,0.06997064501047134,0.023074498400092125,0.03686833009123802,-0.024387959390878677,0.034188296645879745,0.09993667155504227,-0.030738096684217453,0.03417336940765381,-0.006938961800187826,-0.03333534300327301,-0.07444333285093307,0.009317506104707718,-0.012863828800618649,-0.0012350872857496142,0.010103642009198666,-0.004764482844620943,-0.04161255434155464,0.05967487394809723,0.06322389096021652,-0.027000360190868378,-0.00044944294495508075,0.07012735307216644,0.04562193900346756,-0.049616217613220215,0.020813889801502228,0.13890591263771057,0.018057283014059067,0.1068265289068222,0.007821062579751015]},{"text":"Est ut viro vir latius ordinet Arbusta sulcis, hic generosior 10 Descendat in Campum petitor, Moribus hic meliorque fama Contendat, illi turba clientium Sit maior: aequa lege Necessitas Sortitur insignis et imos; 15 Omne capax movet urna nomen.","book":"Homage to Catalonia","chapter":15,"embedding":[-0.029796114191412926,0.03331490233540535,0.00022052458371035755,-0.06252245604991913,-0.0378633588552475,0.03632378578186035,0.0568695142865181,0.13261140882968903,-0.004236796870827675,0.06473276019096375,0.0803932249546051,0.010594586841762066,-0.0020429890137165785,-0.07019434869289398,-0.05603988468647003,-0.03020830824971199,-0.057099755853414536,0.11756595969200134,-0.006721564568579197,-0.029828254133462906,0.01635643094778061,-0.021323008462786674,-0.001245215185917914,0.019052958115935326,-0.04559585452079773,0.009380368515849113,-0.02178863249719143,-0.025860778987407684,-0.0030009178444743156,-0.05247205123305321,0.008327851071953773,0.08921009302139282,0.02579664997756481,-0.03701338917016983,0.004374303855001926,-0.019647935405373573,-0.025173138827085495,-0.14799414575099945,0.02456030249595642,-0.0006322560366243124,-0.016703268513083458,0.010921851731836796,-0.0020132234785705805,-0.0204691793769598,-0.029242753982543945,0.02723982185125351,-0.004079717677086592,0.014095651917159557,-0.0011821002699434757,0.012890607118606567,-0.08488830924034119,0.012859669514000416,0.06296932697296143,0.0057404302060604095,-0.05771665647625923,-0.019792849197983742,-0.048357587307691574,-0.14016644656658173,0.0762028768658638,-0.009105944074690342,0.013600279577076435,0.08173996955156326,-0.009034516289830208,-0.06659701466560364,-0.052573926746845245,-0.011617696844041348,-0.013641757890582085,-0.10378047823905945,-0.0483718179166317,0.015581224113702774,0.09554935991764069,-0.08383455872535706,-0.10596064478158951,0.05067699775099754,-0.09166271239519119,-0.02020762860774994,0.007666570134460926,0.02507236786186695,0.023172298446297646,-0.05761885270476341,-0.010994832962751389,0.06048564985394478,0.02778284065425396,0.011934727430343628,-0.06383708864450455,-0.02266441285610199,0.04098879173398018,-0.01621328294277191,0.036846328526735306,0.05084524676203728,0.037063341587781906,-0.01484654936939478,-0.05501671880483627,-0.008143884129822254,-0.010781263001263142,-0.05413664132356644,0.0026041774544864893,-0.003589215688407421,-0.04571966826915741,0.015626849606633186,0.029639916494488716,-0.014203008264303207,-0.040732491761446,0.08294934034347534,-0.12948459386825562,-0.05115658789873123,0.032436080276966095,-0.10011852532625198,-0.0036852755583822727,0.008172382600605488,-0.09114279597997665,-0.08887816220521927,-0.033002372831106186,-0.02452646754682064,-0.039850395172834396,0.051526546478271484,0.00341050885617733,-0.05951692909002304,-0.11030091345310211,-0.057577360421419144,0.008784137666225433,-0.05962197110056877,0.03834650292992592,0.008545511402189732,-0.0013402635231614113,-0.06293483078479767,0.015117272734642029,2.1640276475774349e-32,-0.0316431038081646,-0.05535242334008217,0.0062582422979176044,0.024918828159570694,0.008435949683189392,-0.04618072882294655,-0.09779389202594757,-0.02492443099617958,-0.006823480594903231,-0.08101556450128555,-0.09809965640306473,-0.10351645201444626,-0.01770913414657116,0.0316358357667923,-0.0011921533150598407,0.003858448937535286,0.0893101692199707,-0.05384163558483124,-0.007211082149296999,-0.03713876008987427,-0.0883697122335434,0.023387232795357704,0.03179831802845001,-0.02933788299560547,0.0211806483566761,0.03757079690694809,-0.031938619911670685,-0.08651328086853027,-0.009391626343131065,0.0487213172018528,0.07230361551046371,-0.03878803551197052,0.01880759559571743,0.015098609030246735,0.037415552884340286,-0.004302565939724445,0.1019861176609993,-0.0025004104245454073,-0.02549389936029911,0.01467991340905428,-0.013619011268019676,0.015294957906007767,0.051231902092695236,0.021213453263044357,0.11606008559465408,0.03717317059636116,0.0888642966747284,0.02448510192334652,0.014506886713206768,0.014283739030361176,-0.07891234010457993,0.08665048331022263,-0.046057820320129395,-0.047263309359550476,0.01830749213695526,0.01651071012020111,-0.05649008974432945,0.07936545461416245,-0.058415453881025314,0.04450159892439842,0.044200725853443146,-0.046513065695762634,-0.0035373514983803034,-0.03161168843507767,-0.018431734293699265,-0.07201433181762695,0.011589051224291325,-0.000985305872745812,0.11894642561674118,0.045689016580581665,-0.01577318087220192,-0.027823442593216896,-0.026662161573767662,0.06735570728778839,0.027960749343037605,0.09517443180084229,0.03061320260167122,0.013436946086585522,-0.03588525578379631,-0.04181862249970436,-0.06689774245023727,0.015448015183210373,0.02249469980597496,0.05487900599837303,0.12414388358592987,-0.04507595673203468,-0.007681072223931551,0.018936702981591225,0.021540675312280655,0.08127053827047348,0.012804298661649227,-0.02500641904771328,0.04151369631290436,0.012302979826927185,0.06439264863729477,-1.9963761453376647e-32,0.018235594034194946,-0.05570431798696518,-0.07718700915575027,0.030171697959303856,-0.08267691731452942,-0.006851935293525457,-0.050756823271512985,0.03495949134230614,0.0025337752886116505,0.004089782480150461,-0.09275136142969131,0.017027059569954872,0.06702449917793274,-0.1130012646317482,0.04260066896677017,0.07545719295740128,0.06398054957389832,-0.00342469266615808,-0.05760892853140831,-0.021313009783625603,0.03319891169667244,-0.011373444460332394,-0.004369546193629503,-0.09928392618894577,-0.009404990822076797,0.036250509321689606,0.040204185992479324,0.04205578565597534,-0.05879255011677742,-0.043584465980529785,0.0013396932044997811,-0.01979975774884224,0.026445422321558,0.03503948450088501,-0.02195598930120468,0.032726507633924484,0.16963247954845428,0.006701700855046511,-0.07982860505580902,0.013281571678817272,-0.005343467462807894,0.043839890509843826,0.05735812336206436,-0.07277363538742065,0.03434936702251434,-0.08050643652677536,-0.0764155462384224,-0.024439511820673943,-0.06431961059570312,-0.03039993904531002,0.05707051232457161,-0.029703162610530853,0.08851014822721481,-0.000893359596375376,0.05414150655269623,-0.0632612332701683,0.008776377886533737,-0.025202639400959015,-0.06427022814750671,0.0006278106011450291,0.12737980484962463,0.05172473192214966,0.004821211099624634,0.010869971476495266,0.0366193950176239,-0.0053092800080776215,-0.06439070403575897,0.040906645357608795,-0.08987441658973694,-0.007794683799147606,0.006550839636474848,-0.11201015114784241,0.01199053879827261,0.04116101190447807,-0.018289314582943916,-0.04934148117899895,0.04170200973749161,0.07375164330005646,0.07035093754529953,-0.04524550586938858,-0.07717089354991913,-0.07327327877283096,-0.038904741406440735,-0.06705859303474426,-0.002844837959855795,0.028223805129528046,0.0498427152633667,0.057946763932704926,0.07431276887655258,-0.023500259965658188,-0.004756647627800703,-0.012261752970516682,0.035525400191545486,-0.06367135792970657,-0.025709940120577812,-6.634013516304549e-8,-0.01819787360727787,-0.09959980100393295,-0.027736812829971313,0.044181182980537415,0.024734750390052795,0.004128588829189539,0.00444280169904232,0.0920213907957077,-0.0057938252575695515,0.0909382775425911,-0.03680743649601936,0.04758518934249878,0.007894092239439487,0.014951096847653389,0.06300477683544159,0.02984525077044964,0.07692403346300125,0.016503341495990753,-0.03777138143777847,-0.046995859593153,0.002989738015457988,0.0023528540041297674,-0.01034009363502264,0.011592735536396503,-0.08228208869695663,-0.07466249912977219,0.05385056510567665,-0.019461646676063538,0.00506164226680994,-0.049209002405405045,-0.00004213477222947404,0.08423825353384018,-0.012482431717216969,-0.07788332551717758,0.025399047881364822,0.08763418346643448,0.036167651414871216,0.01306531298905611,0.015780767425894737,0.000875724945217371,-0.004037768114358187,0.012487770058214664,0.012100232765078545,-0.03021184355020523,0.0749887228012085,-0.000376159354345873,0.01803380250930786,-0.02592684142291546,0.008071967400610447,-0.08420990407466888,-0.017097070813179016,0.021157341077923775,0.08279753476381302,0.05616399645805359,-0.03182687237858772,0.014660135842859745,0.014805321581661701,0.005810254719108343,-0.0052150581032037735,0.03482172638177872,0.055168408900499344,0.09314482659101486,-0.02334572561085224,0.019729554653167725]},{"text":"Somnus agrestium Lenis virorum non humilis domos Fastidit umbrosamque ripam, Non zephyris agitata tempe.","book":"Homage to Catalonia","chapter":16,"embedding":[0.06600679457187653,0.05673453211784363,-0.10433800518512726,0.03891806676983833,0.02774139679968357,-0.0018825369188562036,0.03391241654753685,0.007652869913727045,0.02576024830341339,0.0572560615837574,0.14345456659793854,-0.02318357676267624,0.005897792987525463,-0.04579063504934311,-0.025737546384334564,-0.03458220511674881,0.08245502412319183,0.029636459425091743,-0.08991754800081253,-0.002686731982976198,0.052415888756513596,0.058716751635074615,0.02867032214999199,0.03722305968403816,-0.024084722623229027,-0.04348430410027504,-0.07197317481040955,0.05242551863193512,0.03855084627866745,-0.08569516986608505,-0.028474515303969383,0.07376641780138016,0.093412846326828,0.03338570520281792,-0.017967183142900467,-0.020097361877560616,-0.045166678726673126,-0.09777333587408066,-0.0265655480325222,0.10401317477226257,-0.04067784920334816,0.026598449796438217,0.0005363032105378807,-0.042793381959199905,-0.10522394627332687,0.02236400730907917,-0.09783795475959778,0.02600494585931301,0.003415279323235154,0.01270999014377594,-0.09626540541648865,-0.013623856008052826,-0.10948043316602707,0.009080559946596622,-0.06321362406015396,0.02999628335237503,-0.01688334345817566,-0.03665543347597122,-0.06505510956048965,0.006879507564008236,0.05466485768556595,-0.03133474662899971,-0.027255553752183914,-0.006552485283464193,-0.01284739002585411,0.06364654749631882,-0.01834784634411335,0.008982516825199127,-0.006057309452444315,-0.0004451704735402018,0.06582872569561005,-0.07402259856462479,-0.02502543479204178,0.09829026460647583,-0.06041507050395012,0.01115142647176981,-0.038634952157735825,0.00634385272860527,0.053366757929325104,-0.04720910266041756,-0.05928952991962433,0.043676234781742096,-0.03203694522380829,0.030206872150301933,-0.04357040300965309,0.08637555688619614,0.013103771023452282,0.06528781354427338,0.014724631793797016,-0.03392438217997551,0.05309126898646355,0.02174648642539978,-0.03954167291522026,-0.04769767448306084,-0.053378548473119736,0.09875889122486115,0.09043503552675247,-0.09462051838636398,-0.051439546048641205,-0.05214584991335869,0.08426262438297272,-0.08584727346897125,0.014239360578358173,0.021713124588131905,-0.0653257668018341,-0.026028886437416077,-0.06404680758714676,-0.0640382468700409,0.08052937686443329,0.06303495168685913,-0.05225319415330887,-0.030168035998940468,-0.048068106174468994,-0.062302980571985245,-0.030368193984031677,-0.006954534444957972,0.03676750138401985,-0.07497724890708923,-0.017391301691532135,-0.02646498754620552,0.0036076721735298634,-0.013937395066022873,0.06679559499025345,0.033832088112831116,0.058347150683403015,-0.018350379541516304,0.028659073635935783,1.0019681686274891e-32,-0.022227978333830833,-0.050998393446207047,-0.027994580566883087,-0.036850254982709885,0.02684232033789158,-0.013915070332586765,-0.0009389634360559285,-0.020260917022824287,0.056902263313531876,-0.04859986901283264,-0.13858474791049957,-0.05010974034667015,-0.010929410345852375,-0.02448749542236328,0.02276037260890007,0.017339415848255157,0.034643251448869705,-0.013242165558040142,0.030486254021525383,0.006678872741758823,-0.0005527769681066275,0.04656616598367691,0.032831061631441116,-0.006235175766050816,0.003473952179774642,0.007771429605782032,0.030950170010328293,-0.07678496837615967,0.0144191924482584,-0.0029884139075875282,0.10354362428188324,-0.032948654145002365,-0.08562517911195755,-0.04535858705639839,0.027972498908638954,-0.005643423181027174,-0.07397907972335815,-0.005583419464528561,-0.047793641686439514,0.008004482835531235,-0.010292860679328442,0.05787871778011322,0.1146315336227417,0.02131838910281658,0.04246348515152931,-0.00974852591753006,-0.017001938074827194,0.12710674107074738,0.06568161398172379,0.041507016867399216,-0.0059244027361273766,0.01372094452381134,0.07021541893482208,0.02515098825097084,-0.016939448192715645,0.10225606709718704,-0.011431718245148659,0.0803198367357254,-0.053845666348934174,-0.0026787680108100176,0.00029240481671877205,0.012386413291096687,-0.003697090782225132,0.026180319488048553,-0.041389547288417816,-0.0153917595744133,-0.13825450837612152,0.0015478358836844563,0.059796251356601715,-0.016504833474755287,-0.01135793887078762,-0.06697755306959152,-0.02456602267920971,0.0853579044342041,-0.020312931388616562,-0.0009508092189207673,0.05573168396949768,-0.010273694060742855,-0.04326670244336128,-0.014807585626840591,-0.021367957815527916,0.014303633943200111,0.012147723697125912,-0.024546334519982338,-0.01087313424795866,-0.017066486179828644,-0.02877868339419365,-0.01349114440381527,0.07957353442907333,0.08402937650680542,0.0789090245962143,0.012139525264501572,-0.03106115572154522,0.002782295923680067,0.018545066937804222,-8.88678137325465e-33,0.040701281279325485,-0.07000324130058289,0.017918866127729416,0.06895310431718826,0.060861553996801376,-0.0010954843601211905,-0.11495804786682129,0.08196502923965454,-0.0457632839679718,-0.07801439613103867,-0.006356202065944672,0.06613387167453766,0.04544581100344658,-0.06988013535737991,-0.0016224270220845938,0.05074426904320717,0.12615981698036194,0.07989982515573502,0.017421066761016846,0.0010695711243897676,-0.10389812290668488,0.015699272975325584,-0.0009752115001901984,-0.053580235689878464,-0.008191626518964767,-0.023262590169906616,0.05323772504925728,-0.09474243223667145,-0.05110551789402962,-0.00418830057606101,0.1455998420715332,0.029583808034658432,-0.04821260645985603,0.04730617627501488,-0.016708582639694214,-0.012010704725980759,0.09362788498401642,-0.058091215789318085,-0.02651389315724373,0.00364394742064178,0.02187730371952057,0.009820434264838696,0.11249273270368576,0.04269333928823471,0.0655045360326767,-0.034962017089128494,-0.10655393451452255,-0.02130686677992344,-0.03596186265349388,0.08081375062465668,0.0744904950261116,-0.06917551904916763,0.030960824340581894,0.008569998666644096,0.09822136163711548,-0.09073910117149353,-0.030238190665841103,-0.04582845792174339,-0.13254565000534058,-0.019837530329823494,0.05027523264288902,-0.004658353514969349,-0.037152715027332306,-0.04991907998919487,0.0900702103972435,0.05648146942257881,-0.059998366981744766,0.028502486646175385,-0.04509728029370308,0.02961953543126583,0.07516219466924667,-0.044157180935144424,-0.09610123932361603,-0.04759446159005165,0.010646642185747623,0.009509223513305187,-0.011111878789961338,0.05572153255343437,-0.03339632228016853,-0.02938671223819256,0.019516214728355408,-0.01677696220576763,0.01424477156251669,0.0016915106680244207,-0.06416667252779007,-0.008727196604013443,0.026585763320326805,0.03507138788700104,-0.01948259025812149,-0.012500879354774952,-0.04988788440823555,-0.027127446606755257,-0.010165161453187466,0.04824325069785118,0.06800410896539688,-3.229376588365085e-8,-0.030724937096238136,-0.028682056814432144,-0.026515955105423927,-0.0008674091077409685,-0.020679468289017677,-0.029239075258374214,0.043230216950178146,0.014545063488185406,0.040885575115680695,0.02549220249056816,-0.06172725930809975,0.059765685349702835,-0.03505823761224747,0.046643637120723724,-0.001705465605482459,-0.09417688101530075,0.02590974047780037,0.07412233203649521,0.0018121963366866112,-0.04369639977812767,-0.0259815976023674,-0.018020451068878174,-0.04610050842165947,-0.006868781056255102,-0.00528933759778738,-0.02723141387104988,0.07624010741710663,-0.03108167089521885,0.11809197068214417,0.00658963480964303,-0.029022950679063797,-0.0063768173567950726,-0.013304636813700199,-0.03291378542780876,-0.028568385168910027,-0.007012905552983284,0.03423596918582916,0.06689637899398804,0.045209113508462906,0.008548992685973644,0.018640771508216858,-0.013864041306078434,0.02868395857512951,-0.006262322887778282,0.01680569536983967,-0.050478704273700714,-0.0020846028346568346,0.014675243757665157,0.02059347927570343,-0.06937094032764435,-0.003959335386753082,0.0059157926589250565,0.028694313019514084,0.0172144565731287,-0.09823688864707947,-0.049420882016420364,0.09358015656471252,0.00965077430009842,0.027384642511606216,-0.003753491910174489,-0.00248392834328115,-0.014835312962532043,0.054106008261442184,0.08599407225847244]},{"text":"Contracta pisces aequora sentiunt Iactis in altum molibus: huc frequens Caementa demittit redemptor 35 Cum famulis dominusque terrae Fastidiosus.","book":"Homage to Catalonia","chapter":16,"embedding":[-0.020342539995908737,0.012275416404008865,-0.011037868447601795,-0.015163630247116089,-0.14025884866714478,0.05363426357507706,0.06300535798072815,0.054909419268369675,0.07945411652326584,0.08823453634977341,0.046111639589071274,-0.07470373064279556,0.052247773855924606,-0.04028099775314331,-0.0910315215587616,-0.13441431522369385,-0.04904133081436157,0.07399463653564453,-0.03350651264190674,0.00636027567088604,0.01654442586004734,-0.020399831235408783,-0.022617215290665627,0.05586474388837814,-0.08836909383535385,-0.004893774166703224,-0.07481548935174942,-0.09350598603487015,-0.00204912549816072,-0.04533221200108528,-0.021384168416261673,0.11845185607671738,0.09513649344444275,0.008500594645738602,0.02273094840347767,0.06344490498304367,0.033047739416360855,-0.10663555562496185,-0.002019990235567093,0.01796543039381504,-0.040360111743211746,-0.015414713881909847,0.011355754919350147,0.0006982878549024463,-0.0506100170314312,0.038813844323158264,0.00009149683319265023,0.07905624061822891,0.009769950993359089,-0.011384938843548298,-0.054405901581048965,0.012003248557448387,-0.08141933381557465,0.03608228638768196,-0.06491558998823166,0.07859236001968384,-0.03408440575003624,-0.08249642699956894,0.019523411989212036,-0.0109098544344306,-0.047994181513786316,0.08247581124305725,-0.013746386393904686,0.02157154306769371,0.0013180184178054333,0.02797185443341732,-0.03692948445677757,-0.06669237464666367,-0.07815176248550415,0.034188609570264816,0.05261564627289772,-0.029255643486976624,-0.07391200959682465,-0.008156626485288143,-0.01832723803818226,0.04967343434691429,-0.023171741515398026,-0.015477140434086323,0.002995801158249378,-0.14004336297512054,-0.03014744445681572,0.01982889138162136,-0.027327707037329674,0.024596018716692924,0.01625758223235607,-0.03936745226383209,0.005982961505651474,-0.059705980122089386,0.0428626649081707,-0.033370163291692734,0.0446036122739315,-0.01722503826022148,0.00002676952863112092,-0.05085941404104233,-0.06036194786429405,-0.019640745595097542,0.006310977041721344,-0.012910929508507252,-0.014360452070832253,0.001235402189195156,0.03228610381484032,-0.031034227460622787,-0.025894373655319214,0.06620500236749649,-0.11308883130550385,-0.051803428679704666,-0.027917860075831413,-0.09295902401208878,-0.006100997794419527,0.08850625902414322,-0.12184004485607147,-0.06259434670209885,-0.03388325497508049,-0.06785497069358826,0.011407655663788319,0.048566702753305435,-0.02248111180961132,-0.10449890047311783,-0.017628518864512444,-0.031434834003448486,0.009049231186509132,-0.022956933826208115,-0.0076685412786901,-0.030217068269848824,-0.0185711570084095,-0.09180783480405807,0.060691025108098984,1.436458357871857e-32,0.005914549808949232,-0.09863279014825821,0.020423373207449913,-0.004304707515984774,-0.006227106787264347,0.03573274612426758,-0.06225651130080223,-0.004503569565713406,0.028141122311353683,-0.04338783398270607,-0.07555252313613892,0.004014657810330391,-0.02649950608611107,0.07697885483503342,0.004212652333080769,0.03224748373031616,0.08025391399860382,-0.04573434591293335,-0.015345988795161247,0.04012027382850647,-0.06581882387399673,0.03961346670985222,0.09487906843423843,-0.04044782742857933,0.05573985353112221,-0.05667896196246147,-0.025536343455314636,-0.05099843814969063,-0.02597912959754467,0.04857828468084335,0.047150593250989914,0.002851671539247036,-0.02097250334918499,-0.031362056732177734,-0.005538132507354021,0.017049631103873253,0.0874515101313591,-0.018993772566318512,-0.049405910074710846,-0.01014419924467802,-0.0030533724930137396,0.006474944297224283,0.02251061610877514,0.00788775086402893,0.09963199496269226,0.058850012719631195,0.05296145752072334,0.004300015512853861,0.14014679193496704,0.013744989410042763,-0.002527523087337613,0.02788478694856167,-0.03379465267062187,-0.03691364452242851,-0.0006970945396460593,-0.014042030088603497,-0.06855253875255585,0.028504012152552605,-0.07383543998003006,0.019168509170413017,0.02232189103960991,-0.02109069749712944,0.07085676491260529,0.01127687655389309,0.0018706490518525243,-0.04283054172992706,-0.08683203160762787,0.013853793032467365,0.041339337825775146,0.01881352625787258,-0.08918466418981552,-0.0062962970696389675,0.000270896969595924,0.04851032420992851,-0.0021588157396763563,0.013327926397323608,0.0311281718313694,-0.013040605932474136,-0.044412821531295776,0.007048733998090029,-0.08110017329454422,0.0130601292476058,0.02996206469833851,0.028838368132710457,0.13301770389080048,-0.010721277445554733,0.030056092888116837,0.06550227105617523,0.057955168187618256,0.047527771443128586,0.00205229758284986,-0.025783471763134003,0.03474805876612663,0.032606884837150574,0.032990336418151855,-1.5844257663967264e-32,0.021482883021235466,-0.06529290229082108,-0.04276024550199509,0.048512089997529984,-0.002349581802263856,-0.000378200231352821,-0.115223228931427,0.09249965846538544,-0.01326235942542553,-0.04697183892130852,-0.05165143311023712,-0.03951418399810791,0.14612096548080444,-0.06383277475833893,0.03313319385051727,-0.01660754904150963,0.03320056200027466,-0.018066158518195152,-0.024808349087834358,0.04332699254155159,-0.03786240890622139,-0.059403154999017715,-0.006218565162271261,-0.07099166512489319,0.030849723145365715,-0.058165036141872406,-0.012136837467551231,0.0014160864520817995,-0.13821664452552795,-0.016257043927907944,-0.007671073079109192,0.011873318813741207,-0.10868614166975021,0.06796123832464218,-0.04321565851569176,-0.0021290811710059643,0.121429443359375,0.003799978643655777,-0.06230686232447624,-0.02079250104725361,0.044608794152736664,0.004105719272047281,0.10019858926534653,-0.023667998611927032,0.020358067005872726,-0.06799248605966568,-0.09530874341726303,-0.033906251192092896,-0.04827873408794403,0.056410886347293854,0.11548862606287003,0.005470136180520058,0.008291182108223438,-0.06366430222988129,0.0942586213350296,-0.04542263224720955,-0.08705004304647446,-0.01227828860282898,-0.016180584207177162,0.0019140193471685052,0.0914522334933281,0.009458196349442005,-0.03503716364502907,-0.018503878265619278,0.12760470807552338,-0.036543190479278564,-0.07389117032289505,0.04036959260702133,0.012990813702344894,0.04056115075945854,0.06238353252410889,-0.06863705813884735,-0.10121307522058487,0.061991412192583084,0.07638716697692871,-0.03760511800646782,-0.0101546049118042,-0.015358446165919304,0.013630805537104607,0.04975094646215439,-0.037408072501420975,-0.026782797649502754,0.0025413811672478914,-0.025762958452105522,-0.0007484701345674694,-0.004252848215401173,0.03220805898308754,-0.030928874388337135,0.02986740507185459,-0.00908986758440733,-0.026021866127848625,-0.02422601915895939,0.01788162998855114,-0.06583426892757416,-0.005755419842898846,-4.942274145491865e-8,-0.005784872453659773,-0.021248845383524895,-0.020209137350320816,0.043742675334215164,0.018939269706606865,-0.03628518804907799,0.024165650829672813,0.023461179807782173,-0.03588099405169487,0.019464613869786263,-0.014261451549828053,0.0009317962103523314,0.06117875874042511,-0.004102105740457773,0.06341949850320816,0.03624892234802246,0.08773928880691528,0.028571054339408875,-0.01858377456665039,-0.015838123857975006,0.04303566738963127,0.01583489403128624,-0.026513226330280304,-0.014895271509885788,-0.12241006642580032,-0.008995178155601025,0.08285178244113922,0.015565038658678532,-0.06639847904443741,0.07560325413942337,0.02020397037267685,-0.04980941489338875,0.02529204823076725,-0.09829886257648468,0.06864123791456223,0.026957957074046135,0.0016934997402131557,0.01942114718258381,0.026637639850378036,0.03777598217129707,0.04163104668259621,0.08990748226642609,0.05384640023112297,-0.014141392894089222,0.030653666704893112,-0.014893561601638794,-0.0017126449383795261,0.019204124808311462,0.03973134607076645,-0.011525632813572884,-0.030607976019382477,0.01358472928404808,0.0881105437874794,-0.017901960760354996,-0.02494557574391365,-0.054307445883750916,0.0885460153222084,-0.034541841596364975,-0.017434539273381233,0.006811607629060745,0.04342905059456825,0.06024280562996864,-0.0020481448154896498,0.0006231091101653874]},{"text":"Cur valle permutem Sabina Divitias operosiores?","book":"Homage to Catalonia","chapter":16,"embedding":[-0.010947097092866898,0.0590856596827507,-0.03431205451488495,0.03287142887711525,-0.14350150525569916,-0.03264881670475006,0.0142419608309865,0.05425678938627243,0.03932511806488037,-0.029177138581871986,0.09253264218568802,-0.07939058542251587,0.0046858093701303005,-0.048958681523799896,-0.06868143379688263,0.032412339001894,-0.007565279025584459,0.10868324339389801,0.0032263032626360655,0.0542403943836689,-0.035018499940633774,-0.047612112015485764,-0.06475571542978287,0.0773501768708229,-0.0723036527633667,0.01268003974109888,-0.04016493260860443,0.06930964440107346,0.09412247687578201,-0.07218576967716217,0.04382532835006714,0.0996839702129364,0.08942238986492157,0.011471007019281387,0.003966082818806171,0.04767578840255737,-0.03359042853116989,-0.01437242329120636,0.0011019399389624596,0.02662624791264534,-0.054066456854343414,0.0002578854910098016,-0.015355406329035759,-0.009261708706617355,-0.0003035689878743142,-0.020344600081443787,0.04207433760166168,0.02064046636223793,-0.017902921885252,-0.036587927490472794,-0.06630521267652512,-0.07263068109750748,-0.06283609569072723,0.010350139811635017,-0.05490662530064583,-0.047003716230392456,-0.0551818385720253,-0.07536762952804565,0.07805976271629333,-0.08400478959083557,0.06708962470293045,0.03962395712733269,-0.14112138748168945,0.0429595522582531,-0.062298599630594254,-0.0156997162848711,0.06519071012735367,-0.021308712661266327,-0.05350342392921448,0.015184475108981133,0.11384838819503784,-0.04846864566206932,-0.04690072685480118,0.005323409102857113,-0.015030904673039913,0.009927768260240555,0.015432706102728844,-0.0650419145822525,-0.07225564867258072,-0.06902389973402023,-0.032437313348054886,-0.006558012217283249,0.022093165665864944,0.022197233512997627,0.07345506548881531,0.021306602284312248,-0.024328848347067833,-0.02084464766085148,0.04835943877696991,-0.07024455070495605,-0.028003478422760963,0.00355731975287199,-0.08440122753381729,-0.03405863791704178,-0.04718667268753052,0.017395038157701492,-0.008420553058385849,0.012462317012250423,0.05732167139649391,0.04363317787647247,0.036411624401807785,0.03843355178833008,-0.05018105357885361,0.05538187921047211,-0.09512670338153839,0.01643546111881733,0.044999390840530396,0.0011407971614971757,-0.017505843192338943,0.06128370389342308,-0.0788712427020073,-0.05945153161883354,-0.020741332322359085,-0.052472032606601715,-0.00246853637509048,-0.008544744923710823,0.053953491151332855,-0.01854325830936432,0.0519382506608963,0.008587446063756943,-0.01513355877250433,-0.05362454801797867,-0.047823477536439896,0.0015600677579641342,0.0571257658302784,-0.037007734179496765,0.017789430916309357,2.9007718176279745e-33,-0.07296624034643173,-0.08332830667495728,-0.016989123076200485,0.03906499594449997,0.10043565183877945,-0.017403552308678627,-0.017287520691752434,-0.09315940737724304,-0.03753572329878807,-0.0778198316693306,-0.09683144837617874,-0.02799922227859497,-0.04347908869385719,-0.021332252770662308,0.08142852038145065,-0.015915799885988235,0.08041181415319443,-0.060311514884233475,-0.023257113993167877,-0.03897895663976669,-0.009671877138316631,0.08008282631635666,0.01144422311335802,-0.0038813112769275904,0.04110461100935936,0.00775158079341054,0.031591396778821945,-0.03950728476047516,-0.04186888784170151,0.03915081545710564,0.06602533906698227,0.0029155705124139786,0.022273223847150803,-0.012713040225207806,-0.005899095442146063,0.12569239735603333,-0.051463533192873,-0.010940155945718288,-0.0015436419053003192,0.03143484517931938,0.008547011762857437,-0.025787757709622383,0.04171530902385712,0.03371356427669525,0.06758574396371841,0.010918639600276947,0.027814583852887154,0.05859494209289551,0.06002962589263916,0.024571482092142105,-0.01142714824527502,0.047752197831869125,-0.12230438739061356,0.021058999001979828,0.023165149614214897,0.04685410484671593,-0.08107580989599228,-0.0025873412378132343,-0.027881646528840065,0.10005151480436325,0.033683892339468,0.08174267411231995,0.023416485637426376,-0.00016020120528992265,0.08253740519285202,-0.098493292927742,0.0021198021713644266,0.019036410376429558,0.05571877956390381,-0.019546883180737495,-0.10841725766658783,-0.009854167699813843,0.02567567117512226,0.07694121450185776,-0.025897802785038948,0.05061768367886543,-0.045819465070962906,-0.008568204939365387,-0.015864379703998566,-0.012540568597614765,-0.07992912083864212,-0.009796610102057457,-0.031169451773166656,0.03077496960759163,-0.006048396695405245,-0.022300705313682556,0.01604112796485424,-0.023071439936757088,0.048998769372701645,0.02514953352510929,-0.013954495079815388,0.012612096965312958,0.009387950412929058,-0.031066080555319786,0.005258573684841394,-3.112456677033975e-33,-0.07122505456209183,-0.0390583835542202,0.01269130501896143,0.12563836574554443,-0.0719400942325592,0.02565176971256733,-0.015054128132760525,0.047541167587041855,-0.03737052530050278,-0.02014445699751377,-0.0540463887155056,-0.053650904446840286,0.09012192487716675,-0.07242225110530853,-0.03076520934700966,0.05066539719700813,0.10806676745414734,0.0659320279955864,-0.04208231717348099,-0.06714653223752975,-0.05387875437736511,0.13424324989318848,0.002067308174446225,-0.03940153494477272,-0.0427682027220726,0.023867003619670868,0.0791093036532402,0.0030406913720071316,-0.034610725939273834,0.019100120291113853,0.017098966985940933,-0.025976212695240974,-0.0019553815945982933,0.00021113589173182845,-0.07608208805322647,0.07232105731964111,-0.011883547529578209,0.02008064277470112,0.018771400675177574,0.032812852412462234,0.028351593762636185,0.0118697639554739,0.05134500190615654,0.0775320827960968,0.006111331284046173,0.03518172353506088,0.027302931994199753,0.01618385873734951,0.0644441768527031,-0.08530869334936142,0.07869201898574829,-0.014003302901983261,0.05850427970290184,0.024659445509314537,0.1434239000082016,-0.052115678787231445,0.00221828930079937,-0.041183989495038986,0.004895284306257963,-0.05113838240504265,0.08795870840549469,0.04817856103181839,-0.022096039727330208,-0.013510645367205143,0.06789233535528183,0.0016347243217751384,-0.05764199048280716,0.001906967256218195,-0.02308293804526329,0.03853297233581543,0.02046082727611065,-0.06787627190351486,-0.08768268674612045,-0.022008897736668587,-0.058374643325805664,0.016889026388525963,-0.007810214534401894,-0.01988748461008072,0.013677856884896755,0.011860411614179611,-0.11619511246681213,-0.07902444154024124,-0.0063901315443217754,0.013459566049277782,-0.03395649418234825,-0.04157949611544609,0.04224783554673195,-0.053611692041158676,0.07864546775817871,0.010290276259183884,-0.003678150475025177,0.019746849313378334,0.022860731929540634,-0.09669036418199539,0.05546075850725174,-2.2096854124242782e-8,0.06484244763851166,-0.06512203812599182,-0.04116206243634224,-0.00992032140493393,-0.00140773958992213,-0.03558790683746338,0.05326823517680168,0.04236587882041931,-0.07593796402215958,0.14427056908607483,0.036127567291259766,0.03292869031429291,0.007796484977006912,0.0044480664655566216,0.0250883549451828,0.09412559866905212,0.13836467266082764,0.01437071617692709,-0.021587219089269638,-0.10527831315994263,0.006955272052437067,-0.001258690026588738,0.015156923793256283,-0.05282200500369072,-0.05554189160466194,-0.021895071491599083,0.01300121657550335,-0.009332868270576,0.02605455182492733,-0.040016647428274155,0.029480135068297386,0.02441607415676117,0.038318365812301636,-0.11667074263095856,0.005220702383667231,0.00019738651462830603,-0.044953037053346634,0.0011313464492559433,0.025321241468191147,-0.014896651729941368,0.02785298600792885,0.04795994237065315,0.09041876345872879,0.056206114590168,0.017483312636613846,-0.021557243540883064,0.033089905977249146,0.002161741955205798,-0.012824705801904202,-0.050225529819726944,-0.004590604454278946,0.012088957242667675,0.11008370667695999,0.025824280455708504,-0.04231496900320053,-0.023904357105493546,0.005215625744313002,0.001027233200147748,-0.04088519141077995,0.01673443429172039,0.013009650632739067,0.03432818502187729,-0.011730749160051346,-0.045444972813129425]},{"text":"Illum ex moenibus hosticis Matrona bellantis tyranni Prospiciens et adulta virgo Suspiret, eheu, ne rudis agminum Sponsus lacessat regius asperum 10 Tactu leonem, quem cruenta Per medias rapit ira caedes.","book":"Homage to Catalonia","chapter":16,"embedding":[-0.003382744500413537,0.009786919690668583,-0.01591862179338932,0.02857300452888012,-0.054911695420742035,0.00022096681641414762,0.08748273551464081,0.05851849541068077,0.048200029879808426,0.028240766376256943,0.10388649255037308,-0.028925612568855286,-0.0007371592801064253,-0.0488588847219944,-0.05350402370095253,-0.1519145518541336,-0.06447270512580872,0.08179336786270142,-0.07954756170511246,0.07560420781373978,0.0042335293255746365,-0.0380171500146389,0.010537846013903618,0.019345909357070923,-0.0754055380821228,0.025170862674713135,0.00238882377743721,-0.06234637647867203,0.0682571530342102,-0.0463719516992569,0.01283569261431694,0.012495439499616623,0.01371278427541256,-0.018542248755693436,0.030842797830700874,-0.01113110315054655,-0.06493130326271057,-0.05979769676923752,0.025632750242948532,0.0023865201510488987,-0.007621834985911846,-0.08658667653799057,-0.03444633632898331,-0.08495339006185532,0.002444853074848652,-0.05290232598781586,-0.041050784289836884,0.08620492368936539,-0.023255031555891037,0.01405287068337202,-0.11352337151765823,-0.052883174270391464,-0.04635808244347572,0.06946096569299698,-0.05608399212360382,-0.054392315447330475,-0.026250379160046577,-0.07624586671590805,0.04220302402973175,-0.038764696568250656,0.0425528883934021,0.06732232868671417,-0.04305334761738777,-0.03497033938765526,-0.0914807990193367,0.03478601202368736,-0.023174487054347992,0.02048785239458084,-0.059084899723529816,0.012393016368150711,0.11049462109804153,-0.043926890939474106,-0.046705134212970734,0.10382511466741562,-0.024635208770632744,0.04777349904179573,-0.01812257245182991,-0.08720719814300537,0.03934276103973389,-0.03440796956419945,0.041744306683540344,0.019382819533348083,-0.02039107121527195,-0.010317218489944935,0.005387583747506142,0.003062846837565303,0.026287440210580826,0.038079723715782166,0.06524446606636047,0.0008365476387552917,-0.045499417930841446,0.045255597680807114,-0.009034733287990093,-0.03695802763104439,-0.06899823248386383,-0.008511370979249477,-0.009661819785833359,-0.036387890577316284,0.024309568107128143,0.04492137208580971,-0.030217071995139122,-0.030277017503976822,0.039512749761343,0.10065674036741257,-0.13616707921028137,-0.02501104585826397,-0.0054189348593354225,-0.05341045930981636,0.03347161039710045,0.009537664242088795,-0.07073017954826355,-0.059977345168590546,-0.08691641688346863,-0.10128195583820343,0.054967232048511505,0.011351756751537323,-0.010571028105914593,-0.015867777168750763,-0.01564926840364933,-0.0666155070066452,0.026494618505239487,-0.03192733973264694,0.004647319205105305,-0.05270962789654732,0.04658064991235733,-0.048894841223955154,0.043924614787101746,2.0806730492870388e-32,-0.03913719207048416,-0.046182237565517426,-0.06021763011813164,0.019002487882971764,0.06741958856582642,0.038627367466688156,-0.12381519377231598,-0.028345391154289246,-0.0069407313130795956,-0.09674467891454697,-0.06119979918003082,-0.05346197634935379,-0.06934616714715958,0.035033270716667175,0.04541400447487831,0.10671722143888474,0.09491711109876633,-0.026048587635159492,0.0004202584968879819,0.05226101726293564,-0.021346529945731163,-0.0055243344977498055,0.052438583225011826,0.008130707778036594,0.03001033328473568,0.02310192584991455,-0.0027912422083318233,-0.05915956571698189,0.014347098767757416,0.013009532354772091,0.09305913001298904,-0.04090980812907219,-0.007089799735695124,-0.049691375344991684,0.018752634525299072,0.07575362920761108,0.0578620620071888,0.04012449458241463,-0.03594342619180679,0.01013695728033781,0.027903946116566658,0.02776956558227539,0.03930826485157013,0.0021277826745063066,0.021023182198405266,0.05242538824677467,0.09601904451847076,0.015654737129807472,0.11623817682266235,-0.021511975675821304,0.008512920700013638,0.023292461410164833,-0.01303642988204956,-0.014059716835618019,0.043532319366931915,0.027369925752282143,-0.06762295216321945,0.057080257683992386,0.012036439031362534,-0.03943419083952904,0.0970698744058609,-0.08395301550626755,0.030685417354106903,0.006004778202623129,0.02584526129066944,-0.06004379317164421,-0.018465373665094376,-0.016383739188313484,0.05143601819872856,-0.03085547499358654,-0.09451836347579956,-0.03453975170850754,-0.04745325446128845,0.05125255882740021,-0.06311003118753433,0.07382647693157196,0.020643888041377068,-0.053712841123342514,-0.0262693390250206,0.0465276874601841,-0.11470632255077362,0.038198456168174744,0.04165260121226311,0.00023155329108703882,0.025131279602646828,0.011161398142576218,-0.008242557756602764,-0.007680056616663933,0.07518412917852402,0.017430203035473824,0.03165758028626442,0.058435916900634766,-0.010785243473947048,0.04209347069263458,-0.044002410024404526,-1.9314142132809972e-32,-0.0012981586623936892,-0.020070761442184448,-0.11479222029447556,0.0547185055911541,0.006235363893210888,0.05174890160560608,-0.04515421390533447,0.045386698096990585,0.013801009394228458,-0.057752907276153564,-0.02689954824745655,-0.04739603400230408,0.06163458526134491,-0.02421163208782673,-0.01688048429787159,0.028739912435412407,0.09715959429740906,-0.016884073615074158,-0.020321302115917206,-0.008952527306973934,-0.05914098769426346,0.07506126165390015,-0.021541783586144447,-0.07220008969306946,-0.0046581365168094635,0.04749515652656555,0.06596015393733978,0.018245119601488113,-0.14815403521060944,-0.0029773081187158823,0.07678245007991791,-0.007915717549622059,-0.01369161531329155,-0.00026237790007144213,0.024792823940515518,0.09578775614500046,0.1413479596376419,-0.024383602663874626,-0.04695507884025574,0.005639813374727964,0.02220115065574646,0.061198603361845016,0.05118877440690994,0.05093763396143913,0.007882393896579742,-0.02944539114832878,-0.05901424214243889,0.03012627549469471,-0.022140394896268845,-0.00559270242229104,0.09529415518045425,-0.0579085648059845,0.025837382301688194,-0.03906552866101265,0.041329652070999146,-0.07930955290794373,-0.010146587155759335,-0.017401782795786858,-0.06824425607919693,0.005302335601300001,0.04129980131983757,0.0061325374990701675,-0.04359797015786171,-0.031977228820323944,0.020932868123054504,-0.001127689960412681,-0.03874072805047035,-0.007741314359009266,-0.04609701409935951,-0.014714688993990421,0.06135566905140877,-0.06218859553337097,-0.13385027647018433,0.019254837185144424,-0.04256953299045563,0.011583820916712284,-0.02377784065902233,0.0008698387537151575,0.031628575176000595,-0.01499370951205492,-0.026333998888731003,-0.03482171520590782,-0.043151792138814926,-0.02560023032128811,-0.07511685788631439,0.01427529938519001,0.03708861023187637,-0.017258834093809128,-0.003251918824389577,0.01861143857240677,-0.027138514444231987,-0.007241398096084595,0.018419405445456505,-0.028771203011274338,0.06275475025177002,-6.198243340804765e-8,0.008653893135488033,-0.0724012553691864,-0.03068491443991661,-0.03837122768163681,-0.011683805845677853,-0.04935058206319809,-0.012414775788784027,-0.05291023477911949,0.07816127687692642,0.0804537832736969,-0.056267619132995605,-0.015170386992394924,0.00010556774213910103,0.0006728583830408752,0.025197014212608337,0.01296594925224781,0.06492219120264053,0.11582125723361969,-0.07782025635242462,-0.048208218067884445,0.10375865548849106,0.013468563556671143,-0.009118480607867241,-0.10989468544721603,-0.05703665316104889,-0.07215116918087006,0.06019512191414833,-0.11404843628406525,-0.03652187064290047,0.01584232784807682,0.0332067497074604,0.040468018501996994,0.060173410922288895,-0.07909008115530014,0.017592929303646088,0.06941623985767365,-0.02942110225558281,0.023970380425453186,0.027604885399341583,0.028982341289520264,0.05851145461201668,-0.01087573729455471,0.04490255191922188,-0.04345954582095146,-0.046108439564704895,0.0017761189956218004,0.021285206079483032,-0.019787533208727837,0.0320918932557106,0.021183138713240623,-0.012154377065598965,0.021998796612024307,0.1138414666056633,-0.0007684272713959217,-0.06514944136142731,-0.009642628021538258,0.08352138847112656,0.10143953561782837,-0.021640902385115623,0.029607241973280907,0.06196151301264763,0.02883973903954029,-0.03688085824251175,-0.023258235305547714]},{"text":"Virtus repulsae nescia sordidae, Intaminatis fulget honoribus, Nec sumit aut ponit securis Arbitrio popularis aurae. 20 Virtus recludens immeritis mori Caelum negata temptat iter via, Coetusque volgaris et udam Spernit humum fugiente penna.","book":"Homage to Catalonia","chapter":16,"embedding":[0.025453470647335052,0.03714372217655182,-0.030146952718496323,0.0034952755086123943,-0.05905068665742874,-0.001381155103445053,0.025793619453907013,0.054480474442243576,-0.008401477709412575,0.02340724505484104,0.05416834354400635,-0.08749422430992126,0.00899729784578085,0.04952211305499077,-0.11893647909164429,-0.07908819615840912,0.07914428412914276,0.04773574322462082,-0.01424507424235344,-0.03304019570350647,0.012533015571534634,0.06674984842538834,0.0043015857227146626,-0.05589565634727478,-0.12906014919281006,-0.007977948524057865,-0.09427471458911896,-0.03321463242173195,0.0675937682390213,-0.10172874480485916,-0.025700177997350693,0.0073521737940609455,0.09487538784742355,0.006379242055118084,-0.022318173199892044,-0.005691909696906805,-0.0050046187825500965,-0.046694185584783554,0.03757501393556595,0.07974006235599518,-0.1049022451043129,0.09720750153064728,-0.04173993691802025,-0.013698973692953587,-0.04375763610005379,0.02409825660288334,-0.06499814242124557,0.0017813844606280327,0.05089240148663521,-0.010136475786566734,-0.014720412902534008,-0.019195497035980225,0.00822530873119831,0.05340120568871498,-0.0157002042979002,0.00429490115493536,-0.09034869074821472,-0.08820721507072449,-0.028997790068387985,-0.009845500811934471,0.022345945239067078,0.03139195591211319,0.07343105226755142,-0.03310815989971161,-0.09351378679275513,0.014680193737149239,-0.01691916398704052,0.040562793612480164,-0.01536792702972889,-0.023809902369976044,0.05135691910982132,0.0011981407878920436,-0.08509476482868195,0.012965246103703976,-0.05585035681724548,0.08049745857715607,-0.01769707351922989,-0.0721299946308136,0.07123791426420212,0.019825834780931473,-0.03663191199302673,-0.0269579216837883,0.0007968235877342522,0.048726968467235565,0.05285744369029999,-0.09119098633527756,0.019139178097248077,-0.06457357853651047,0.023270821198821068,-0.010428757406771183,0.08519060909748077,-0.02484302967786789,0.009773381985723972,-0.0580948181450367,0.03572563827037811,-0.00033779311343096197,-0.0635620579123497,-0.04816596955060959,-0.05247100815176964,-0.018027765676379204,-0.049931611865758896,-0.10549356043338776,-0.010775081813335419,0.029965374618768692,-0.03135127201676369,0.004568754695355892,-0.02638840675354004,-0.029726002365350723,0.09740620106458664,0.025144997984170914,-0.08888695389032364,-0.02926740236580372,-0.02690858207643032,-0.07387527823448181,0.04921400547027588,0.043396737426519394,-0.049018751829862595,-0.009248973801732063,-0.013050301000475883,-0.06789915263652802,0.07547890394926071,0.03255745768547058,-0.010876704938709736,-0.054668277502059937,0.03694057837128639,-0.04094146564602852,0.009948033839464188,1.6981849668815226e-32,-0.030939986929297447,-0.03669428452849388,-0.04850476607680321,-0.029676923528313637,-0.015107136219739914,-0.05584373697638512,-0.03229239583015442,0.022197799757122993,0.033575549721717834,-0.06607620418071747,-0.05576800927519798,0.022438405081629753,0.012406290508806705,0.04398415982723236,-0.00984178762882948,0.015400842763483524,0.0933566689491272,-0.01863292045891285,-0.00209982437081635,-0.045820076018571854,-0.0055733066983520985,0.07458285242319107,0.07951907813549042,-0.041910912841558456,0.01185435801744461,-0.036936499178409576,0.01876022107899189,-0.07132399827241898,0.04697805643081665,-0.011006821878254414,0.09986796230077744,-0.03347569704055786,-0.05516067519783974,0.010642590001225471,-0.018451780080795288,0.08789355307817459,0.09071031212806702,-0.01250302791595459,-0.0531192384660244,0.015327207744121552,0.026611492037773132,0.034460559487342834,-0.03625717759132385,0.01727820560336113,0.06414932012557983,-0.05770255997776985,-0.005799066741019487,0.0025282646529376507,0.05409643426537514,0.0009673737804405391,-0.007860960438847542,0.07214032858610153,0.023477008566260338,-0.04073821380734444,-0.07207759469747543,0.04457918554544449,0.0511489063501358,0.10953252762556076,-0.06618408858776093,-0.00542599568143487,0.0035002920776605606,-0.03342093154788017,0.012100976891815662,-0.02488788403570652,0.021783167496323586,-0.047051455825567245,-0.058608509600162506,0.027159199118614197,-0.07321396470069885,0.040214501321315765,-0.10903193801641464,0.056458499282598495,-0.08979079872369766,-0.06314563006162643,-0.0073837763629853725,-0.013679859228432178,-0.037880219519138336,-0.016420498490333557,-0.029560619965195656,-0.04788226634263992,-0.10833907127380371,-0.0017384800594300032,0.029214924201369286,0.08148050308227539,0.08606051653623581,-0.08773244172334671,-0.0010066023096442223,0.02278481423854828,0.12088003754615784,0.034177377820014954,0.016546523198485374,0.02976321615278721,0.012198664247989655,0.12387611716985703,0.03917635977268219,-1.6242208052126703e-32,-0.054980162531137466,-0.03608110547065735,-0.10215389728546143,0.06948725879192352,-0.0006110715912654996,0.13998615741729736,-0.0341535322368145,0.09986837953329086,-0.057440415024757385,-0.084488146007061,-0.12981535494327545,0.015517364256083965,-0.009134674444794655,-0.046169813722372055,-0.03724333643913269,0.034749530255794525,0.03669704124331474,0.09994301199913025,-0.017010437324643135,-0.08724243938922882,-0.08209064602851868,0.07350979000329971,0.12054123729467392,-0.0952276885509491,-0.004693358205258846,0.06613243371248245,0.08469238132238388,-0.05516756325960159,-0.07072962820529938,0.004959943238645792,0.1385507434606552,0.023526066914200783,-0.008542687632143497,0.06704992800951004,-0.007468641735613346,0.04333652928471565,0.08410162478685379,-0.06639141589403152,0.015112781897187233,0.024075577035546303,-0.03437962383031845,0.01565830036997795,0.05561777576804161,0.022310495376586914,0.016383225098252296,-0.014756464399397373,-0.08689982444047928,-0.02142220363020897,-0.028630126267671585,0.007832394912838936,0.07890034466981888,0.000265942100668326,-0.014777660369873047,0.029404474422335625,0.040057118982076645,-0.04267708957195282,-0.0483754463493824,-0.0214603953063488,0.007413520477712154,0.015831097960472107,-0.01891803927719593,-0.0057584666647017,-0.018274247646331787,-0.09736069291830063,0.06741988658905029,0.01461411640048027,-0.02133173681795597,0.022882739081978798,0.0561048723757267,-0.02367125265300274,0.0758913978934288,0.007702894043177366,-0.04935140162706375,-0.03529069200158119,0.022366004064679146,-0.0015300215454772115,0.003348825965076685,0.013912973925471306,0.06586682796478271,0.042076900601387024,-0.02878643572330475,-0.018673034384846687,0.07620178163051605,-0.01215109508484602,-0.03449493646621704,-0.03661803528666496,0.03327216953039169,-0.014215330593287945,0.03467745706439018,-0.03747013956308365,-0.009508417919278145,-0.03300946205854416,0.04847174882888794,-0.04491601511836052,0.0038352771662175655,-5.503436995013544e-8,0.067148856818676,-0.04248654469847679,-0.05056150630116463,0.04828419163823128,0.031266745179891586,-0.04782762750983238,-0.03236119821667671,0.023520810529589653,-0.0036868618335574865,0.0012033353559672832,0.0024846286978572607,0.00799822062253952,-0.00038322724867612123,-0.032081086188554764,0.07764064520597458,-0.029034500941634178,0.014552580192685127,0.07317715883255005,-0.01522675808519125,0.013970059342682362,-0.0401177741587162,-0.03520182520151138,-0.06593462824821472,-0.02634657360613346,-0.039920106530189514,-0.06356289982795715,0.04645729064941406,-0.09671677649021149,0.015972932800650597,0.06896820664405823,0.00439629377797246,0.06773225218057632,-0.0367434099316597,-0.07622329890727997,-0.007477932143956423,0.004657005425542593,0.04826096072793007,-0.012598437257111073,0.04192974045872688,0.0032212166115641594,0.03344736993312836,-0.024336092174053192,0.0226522758603096,-0.026958340778946877,0.0008633309043943882,-0.03779797628521919,0.01731863059103489,-0.000761623727157712,0.05479519069194794,-0.09223241358995438,-0.03490041568875313,-0.005719279404729605,0.04446854442358017,0.07886886596679688,-0.11249328404664993,-0.01537497341632843,0.07000426203012466,-0.02271866425871849,0.0042952136136591434,-0.026587774977087975,0.0339517816901207,0.01049791183322668,0.077050119638443,0.0494498610496521]},{"text":"Iustum et tenacem propositi virum Non civium ardor prava iubentium, Non voltus instantis tyranni Mente quatit solida, neque Auster, Dux inquieti turbidus Hadriae, 5 Nec fulminantis magna manus Iovis; Si fractus inlabatur orbis, Impavidum ferient ruinae.","book":"Homage to Catalonia","chapter":16,"embedding":[0.008649740368127823,0.05362367257475853,-0.030666667968034744,-0.013630826957523823,-0.02107124775648117,-0.017709428444504738,0.046999428421258926,0.060265008360147476,-0.0005359621718525887,0.08552729338407516,0.020714398473501205,-0.11504025012254715,0.02499247156083584,-0.057562947273254395,-0.0645797923207283,-0.09274837374687195,0.02973414584994316,0.03672229126095772,-0.011506490409374237,0.04677046462893486,0.0915091261267662,0.07481533288955688,-0.019670553505420685,-0.006763785146176815,-0.08288397639989853,0.027004877105355263,-0.085369773209095,-0.010068616829812527,0.07775793224573135,-0.108763188123703,-0.02369753271341324,0.06983640789985657,0.08147566765546799,-0.022124988958239555,-0.00007582192483823746,-0.02605409547686577,-0.08209983259439468,-0.06374435871839523,0.03614630922675133,0.010950515978038311,-0.054950352758169174,-0.044978927820920944,-0.003453882411122322,-0.033120084553956985,-0.04278409481048584,-0.016916193068027496,-0.05405433848500252,0.057111505419015884,0.03846188262104988,0.037451453506946564,-0.07487472146749496,-0.018198136240243912,-0.040418706834316254,0.08265156298875809,-0.0220164991915226,-0.05605466663837433,0.012814299203455448,-0.06126726418733597,0.0046936143189668655,-0.06739900261163712,0.026114745065569878,0.11881320178508759,0.037758372724056244,-0.008330062963068485,-0.022763408720493317,0.03756428509950638,-0.014713715761899948,-0.020314980298280716,-0.05703168734908104,0.0814117044210434,0.125483900308609,-0.05131559818983078,-0.030327262356877327,0.030474554747343063,-0.048803508281707764,0.03744087740778923,-0.03356226906180382,-0.05629456415772438,0.005518958903849125,-0.027667464688420296,-0.07484403252601624,0.07678244262933731,-0.0029905540868639946,-0.02318328060209751,-0.014931811951100826,0.046347230672836304,-0.029968788847327232,0.03170565888285637,0.013677832670509815,0.015771256759762764,0.01778855174779892,0.059338804334402084,-0.0044823260977864265,-0.04174136742949486,0.04907137155532837,0.0510738231241703,-0.010214297100901604,-0.01195500697940588,-0.01591462455689907,-0.050312649458646774,0.022934680804610252,-0.028418805450201035,-0.07488439977169037,0.0199507437646389,-0.10728821158409119,-0.05040249601006508,-0.04688972979784012,-0.08527562767267227,0.059946585446596146,0.06643764674663544,-0.05349219590425491,-0.08840664476156235,-0.05878470838069916,-0.12912188470363617,-0.00046090036630630493,0.008174600079655647,0.05006170645356178,-0.06832840293645859,-0.04203341156244278,-0.04770787060260773,0.03460247814655304,-0.05767493695020676,0.018587881699204445,-0.0107886316254735,0.021481147035956383,-0.05173188075423241,-0.01718619279563427,1.8662371657581293e-32,-0.0605301670730114,-0.05951555818319321,-0.005937647540122271,0.058676499873399734,0.022114109247922897,-0.025868386030197144,-0.06889509409666061,-0.04272952675819397,0.04431414604187012,-0.08283444494009018,-0.10657437145709991,-0.005284739192575216,-0.06539608538150787,-0.013049229048192501,-0.023540277034044266,0.008490178734064102,0.0923369824886322,-0.07653286308050156,0.0009584245854057372,-0.014496367424726486,-0.03886716440320015,0.05292221158742905,0.0077973101288080215,0.007996203377842903,0.04035547003149986,0.06552004814147949,0.005370785482227802,-0.09322035312652588,-0.043199121952056885,0.00893291924148798,0.09998875856399536,-0.019675329327583313,-0.061005495488643646,-0.011764544993638992,0.0163596048951149,-0.020342297852039337,0.0003479004662949592,0.006652704440057278,-0.08483069390058517,0.011738819070160389,-0.019351812079548836,0.015090608038008213,0.06739840656518936,-0.022317755967378616,0.10028178244829178,-0.022322528064250946,0.04460540786385536,0.11313576996326447,0.05059175565838814,-0.02152407541871071,0.019734958186745644,0.05162832885980606,0.005665831733494997,-0.05054835230112076,-0.029965540394186974,0.038218677043914795,0.028712237253785133,0.08548670262098312,-0.05881645902991295,0.04550550878047943,0.006799163296818733,-0.017424067482352257,0.02636832557618618,0.048306483775377274,-0.028136709704995155,-0.02053416147828102,-0.10120736807584763,0.008644173853099346,0.08505727350711823,0.0013804141199216247,-0.06968110799789429,-0.03612295165657997,-0.03517790883779526,0.054184745997190475,0.010808665305376053,0.0360075868666172,-0.0009467523777857423,-0.03534941002726555,-0.039029017090797424,-0.018838506191968918,-0.03055611066520214,-0.018758704885840416,-0.007375796791166067,-0.052418988198041916,0.05349011346697807,-0.0004802704497706145,-0.0020388939883559942,0.012638422660529613,0.0893617793917656,0.03636077791452408,0.05640174448490143,-0.012824337929487228,0.005433247424662113,0.0011384462704882026,-0.040914058685302734,-1.836969707411356e-32,-0.06156482920050621,-0.06428386270999908,-0.059244487434625626,0.12413579970598221,0.009373425506055355,0.05139368027448654,-0.1327267736196518,0.03562597185373306,0.021714700385928154,-0.03795740008354187,-0.014154971577227116,0.023853441700339317,0.05993276834487915,-0.07979694753885269,-0.01174659188836813,0.08986726403236389,0.060843512415885925,0.011887439526617527,0.002786822384223342,-0.01443116832524538,-0.07540664821863174,-0.034399066120386124,0.01319518219679594,-0.1194678470492363,-0.0320429764688015,0.03565444052219391,-0.0025740349665284157,-0.0533842071890831,-0.01462310180068016,0.027676651254296303,0.0748826339840889,0.013905254192650318,-0.06199423223733902,0.02312336303293705,-0.010521995835006237,-0.030799809843301773,0.12539468705654144,-0.030168961733579636,0.0005144479218870401,-0.00523320771753788,-0.033359114080667496,0.04240719601511955,0.12407882511615753,0.015578233636915684,-0.010349724441766739,-0.05057523399591446,-0.052108511328697205,0.000760580413043499,-0.048700448125600815,0.05061726272106171,0.13005755841732025,-0.058952949941158295,0.035295240581035614,-0.021403908729553223,0.06623175740242004,-0.016503116115927696,-0.0224087405949831,0.02039830945432186,0.04895632341504097,0.021893931552767754,0.04426390305161476,0.08365494757890701,-0.016475092619657516,0.0018381704576313496,0.03858816996216774,0.0005852910107932985,-0.03526632487773895,0.10787171125411987,-0.04141983389854431,0.03360052406787872,0.08495030552148819,-0.04764965549111366,-0.07289179414510727,-0.044776786118745804,0.03243512287735939,0.018480053171515465,0.05729620158672333,0.0249903853982687,0.023162279278039932,-0.002955141244456172,-0.03165796399116516,-0.015703905373811722,-0.045764196664094925,-0.03191016986966133,-0.02672692760825157,-0.0525054857134819,0.04387442767620087,0.018842877820134163,0.037427663803100586,0.037557199597358704,-0.07197429984807968,0.031070148572325706,0.0031633665785193443,-0.05680586025118828,0.01821863278746605,-6.005068087233667e-8,0.01817304827272892,-0.0835740938782692,-0.03549987077713013,-0.010745062492787838,0.057734690606594086,-0.11355158686637878,0.03132598474621773,-0.0009191825520247221,0.038765501230955124,0.08279577642679214,-0.00036454907967709005,-0.021887382492423058,0.008093656040728092,-0.016639674082398415,0.05968720093369484,-0.01145645510405302,0.0501270554959774,0.04408169165253639,-0.04832035303115845,-0.030030332505702972,0.03768414631485939,-0.0200005155056715,-0.059434544295072556,-0.05134030804038048,0.004406347405165434,-0.02734624221920967,0.07012662291526794,-0.13631516695022583,-0.020769411697983742,0.08620786666870117,-0.06404498964548111,0.07067225128412247,-0.07072094827890396,-0.1082017719745636,-0.05385538935661316,0.0721716433763504,0.04242432489991188,0.015688562765717506,0.03785976767539978,-0.011056319810450077,0.004857630003243685,0.01023103203624487,0.021609999239444733,-0.06824269145727158,0.009618672542273998,-0.04312409833073616,-0.05320993438363075,0.023129211738705635,0.022254696115851402,-0.05579307675361633,-0.0597807839512825,0.03408367186784744,0.05287335440516472,0.014208375476300716,-0.04303191974759102,-0.014830540865659714,0.10324497520923615,0.039800409227609634,0.06901885569095612,-0.023012682795524597,0.06597509980201721,0.009530715644359589,0.08454965054988861,-0.0029849321581423283]},{"text":"Hac te merentem, Bacche pater, tuae Vexere tigres, indocili iugum Collo trahentes; hac Quirinus 15 Martis equis Acheronta fugit, Gratum elocuta consiliantibus Iunone divis: 'Ilion, Ilion Fatalis incestusque iudex Et mulier peregrina vertit 20 In pulverem, ex quo destituit deos Mercede pacta Laomedon, mihi Castaeque damnatum Minervae Cum populo et duce fraudulento.","book":"Homage to Catalonia","chapter":16,"embedding":[-0.009618058800697327,0.0876040831208229,-0.009405304677784443,-0.04355412349104881,-0.08451065421104431,-0.039088454097509384,0.10297513008117676,0.08385100960731506,0.05766378343105316,0.08062514662742615,0.05402776598930359,-0.04770463705062866,0.020176490768790245,-0.05915357917547226,-0.15067227184772491,-0.03383622691035271,-0.015334582887589931,0.07597088068723679,-0.017780501395463943,-0.011411863379180431,0.05030308663845062,0.007825605571269989,-0.033549923449754715,0.031490352004766464,-0.07414001226425171,0.0043127452954649925,-0.07107573002576828,-0.011653758585453033,0.023353181779384613,-0.057985540479421616,-0.05092238262295723,0.07942525297403336,0.06163626164197922,-0.003129390301182866,0.0010769469663500786,-0.03953184187412262,0.03192727640271187,-0.10658640414476395,0.049305208027362823,-0.004517409950494766,-0.00905200932174921,-0.029186490923166275,-0.05221860855817795,-0.014512632973492146,-0.13170556724071503,-0.03376377373933792,-0.018040817230939865,0.07494048774242401,0.006476540118455887,-0.0025756903924047947,-0.032680194824934006,-0.011797420680522919,-0.0530674085021019,-0.02293124794960022,-0.06059599295258522,-0.0378594771027565,0.005422675050795078,-0.016832275316119194,0.02809247374534607,-0.01848364993929863,0.008339883759617805,0.16598641872406006,0.0038631479255855083,0.008925381116569042,-0.049767203629016876,0.010209597647190094,-0.014104818925261497,0.007178408559411764,-0.03486606106162071,0.06853067129850388,0.15140633285045624,-0.06435661762952805,-0.025620317086577415,0.0278032086789608,-0.09546990692615509,0.05078065022826195,-0.029644863680005074,0.014038733206689358,-0.046275947242975235,-0.08343391120433807,-0.07011858373880386,0.04392993822693825,0.04610877111554146,-0.06623996794223785,-0.017773045226931572,-0.008632645942270756,-0.012991051189601421,-0.006438475102186203,0.04700867831707001,-0.07508201897144318,0.0344550684094429,-0.0025591314770281315,-0.04074648395180702,-0.018707213923335075,0.07106318324804306,0.012353157624602318,-0.04575105011463165,0.011074754409492016,0.0019202202092856169,-0.03756164386868477,0.04979778453707695,0.01997978240251541,-0.05953232944011688,-0.008026122115552425,-0.09313371777534485,-0.05421663075685501,-0.09234904497861862,-0.09899501502513885,0.015297072939574718,0.00037959826295264065,-0.11104941368103027,-0.026176588609814644,-0.02547452412545681,-0.015698514878749847,0.0326806902885437,0.06621833890676498,0.014233328402042389,-0.04557080194354057,-0.026740698143839836,-0.08322012424468994,-0.022619377821683884,-0.042778246104717255,-0.08115009218454361,0.0014985272428020835,0.01028511393815279,-0.07808659225702286,0.0201905257999897,2.72387784411807e-32,-0.03248939290642738,-0.02614337019622326,0.005528945475816727,-0.018419746309518814,-0.004976504947990179,-0.058475252240896225,-0.03277454897761345,-0.0314287431538105,-0.01160492654889822,0.015928659588098526,-0.0837666243314743,-0.12598760426044464,-0.06208275631070137,-0.06185159459710121,0.002554345643147826,0.060445692390203476,0.06907544285058975,-0.07071893662214279,-0.011287327855825424,-0.01942543126642704,-0.05855472758412361,0.04723154753446579,0.038932353258132935,-0.06759178638458252,-0.01129057351499796,0.06805658340454102,-0.03055206686258316,-0.05016396567225456,0.014233630150556564,0.03727174922823906,0.06462643295526505,-0.033292971551418304,0.0598883256316185,0.005016237497329712,-0.007235679309815168,0.01790825091302395,-0.008186195977032185,-0.04702446237206459,-0.026523970067501068,0.06767857819795609,0.013143404386937618,0.03255150839686394,0.05733285844326019,0.045503050088882446,0.10659109055995941,0.03713885694742203,-0.005303500220179558,0.03798435628414154,0.08019524812698364,0.025556305423378944,-0.04323519393801689,-0.004762229043990374,-0.008600919507443905,-0.029935451224446297,-0.0047284928150475025,0.019082877784967422,-0.07744768261909485,0.07284682244062424,-0.0110874492675066,0.017186518758535385,0.0065700518898665905,-0.03258613497018814,0.005569793283939362,0.015595654956996441,-0.01568911410868168,-0.058902308344841,-0.05017748847603798,0.027963580563664436,0.038373835384845734,0.028859293088316917,-0.07223417609930038,-0.0010544313117861748,-0.054847657680511475,-0.005349219776690006,0.018953949213027954,-0.004722586367279291,0.0664294883608818,-0.03362594544887543,-0.0439426489174366,0.013460827991366386,-0.030204806476831436,0.013660110533237457,0.02907152660191059,-0.017616210505366325,0.04902017489075661,0.004632963333278894,0.0466025210916996,0.027527745813131332,0.04465228319168091,0.11932031810283661,0.022160420194268227,-0.012106158770620823,-0.02896244078874588,-0.01672341302037239,-0.0002561433066148311,-2.511294098875675e-32,-0.060304898768663406,-0.035882119089365005,-0.06554578989744186,0.05254108086228371,-0.03655115142464638,-0.05445479974150658,-0.10976700484752655,0.035059649497270584,0.022293146699666977,-0.027700437232851982,-0.04236304759979248,-0.05896063894033432,0.06190377101302147,-0.05234881490468979,-0.026892632246017456,0.004450343083590269,0.08432119339704514,0.02179781347513199,-0.015363546088337898,-0.004725452978163958,-0.036165885627269745,-0.05589577183127403,0.04749789834022522,-0.13355812430381775,-0.013591689988970757,-0.0038293758407235146,0.028036320582032204,-0.03657291457056999,-0.0630260705947876,-0.02857230044901371,0.09522277861833572,0.01834484189748764,-0.038515493273735046,0.045129913836717606,-0.0010937652550637722,-0.09678050130605698,0.16463200747966766,0.025939278304576874,0.03874652087688446,-0.11035239696502686,-0.03243608400225639,0.04685080051422119,0.09462352097034454,0.043410513550043106,-0.02897951379418373,0.006908405106514692,-0.039238858968019485,-0.005345935467630625,-0.013035167008638382,0.04101303964853287,0.04668217897415161,0.009132609702646732,0.05647016689181328,-0.007167465053498745,0.05645963177084923,-0.07232172042131424,-0.024181531742215157,-0.023774024099111557,-0.04505656659603119,0.005959126632660627,0.028285134583711624,0.05909370630979538,-0.05798662081360817,0.024557581171393394,0.10998005419969559,-0.001728047151118517,-0.07972890883684158,0.10797160118818283,-0.0022412713151425123,0.04097101837396622,0.02952553704380989,-0.10065663605928421,-0.1351815164089203,0.005864367354661226,-0.005887753330171108,0.001864024088717997,-0.002292627701535821,0.025186987593770027,0.016803978011012077,0.0438615158200264,-0.0038544549606740475,-0.021825727075338364,-0.04663468152284622,-0.04059002920985222,0.041896574199199677,0.000034285247238585725,0.015940625220537186,0.08975150436162949,0.06095879152417183,-0.003861401230096817,-0.015598406083881855,-0.028412139043211937,0.041358646005392075,-0.0981832966208458,0.011429695412516594,-8.078071545014609e-8,-0.01584043726325035,-0.04484063386917114,-0.0548943430185318,0.028163136914372444,0.03533952310681343,-0.09288535267114639,0.04016002640128136,0.08231792598962784,-0.07649573683738708,0.05837427079677582,-0.025019191205501556,-0.004505628254264593,-0.017574699595570564,-0.0757075697183609,0.043553486466407776,-0.01538577489554882,0.09566809982061386,-0.016133667901158333,0.010799877345561981,-0.04480113834142685,0.04989435151219368,0.003289490006864071,-0.03295815363526344,-0.021297942847013474,-0.05308302119374275,0.016300851479172707,0.11415161192417145,-0.04543662816286087,-0.02146473526954651,0.018994150683283806,-0.012597288936376572,-0.00515369325876236,-0.0206990297883749,-0.027783261612057686,0.028593065217137337,0.07872574776411057,-0.009148803539574146,0.06350166350603104,0.01218124944716692,-0.05968758836388588,0.05913911759853363,0.08271773904561996,0.044145405292510986,-0.03114435449242592,0.04421474039554596,-0.04124540090560913,-0.006988240871578455,0.009575464762747288,0.09558428078889847,-0.01778484135866165,-0.05597948655486107,0.03878339007496834,0.0627288967370987,-0.0015598067548125982,0.0013051253044977784,-0.07655147463083267,0.06279867142438889,0.02336476556956768,0.04046826437115669,0.013752075843513012,0.07588323950767517,0.0088600879535079,0.0826781764626503,0.011798244901001453]},{"text":"Protinus et gravis 30 Iras et invisum nepotem, Troica quem peperit sacerdos, Marti redonabo; illum ego lucidas Inire sedes, ducere nectaris Sucos et adscribi quietis 35 Ordinibus patiar deorum.","book":"Homage to Catalonia","chapter":16,"embedding":[-0.0499875470995903,-0.007386961951851845,-0.11327280849218369,-0.0036478659603744745,-0.03753083944320679,0.008246548473834991,0.11524245142936707,0.11805195361375809,0.040725819766521454,0.04986264184117317,0.06324716657400131,-0.07104240357875824,0.00010354209371143952,-0.07340910285711288,-0.061647601425647736,-0.055103302001953125,0.03231612220406532,0.05200240761041641,0.024353528395295143,-0.006772803608328104,0.04103756695985794,-0.06800141930580139,-0.0006904854672029614,0.07092470675706863,-0.11907599121332169,0.030554791912436485,-0.024838922545313835,-0.020242275670170784,-0.02903120219707489,-0.13385380804538727,0.049304332584142685,0.04518262669444084,0.15126772224903107,-0.04507461562752724,0.023000147193670273,0.00966167077422142,-0.05650723725557327,-0.10657485574483871,0.05209176614880562,-0.0015610895352438092,0.017782587558031082,-0.039330363273620605,-0.08079925924539566,-0.09176900237798691,-0.06669002771377563,-0.05055084824562073,-0.0372844934463501,0.10790559649467468,0.061408933252096176,-0.013891059905290604,-0.09981372207403183,-0.05202199146151543,-0.04699542000889778,0.0063261669129133224,-0.03777817636728287,-0.011021917685866356,0.03105279617011547,-0.07613039016723633,0.025830212980508804,-0.04167696461081505,0.0781048834323883,0.003347598947584629,-0.03295496106147766,-0.013938349671661854,-0.06737629324197769,-0.014387132599949837,-0.011124411597847939,0.025726519525051117,-0.04955776035785675,0.06752008944749832,0.12298750877380371,-0.0017262917244806886,-0.056195832788944244,0.04567880183458328,-0.03594905510544777,0.054733287543058395,0.004027277696877718,-0.08050902187824249,-0.04834703356027603,-0.10426031053066254,-0.003771411720663309,0.013471058569848537,-0.012211047112941742,-0.012935328297317028,-0.003936734050512314,0.02897646278142929,0.057463690638542175,-0.022204706445336342,0.0869586393237114,-0.027017567306756973,-0.01725635677576065,0.024033796042203903,-0.04177859425544739,-0.010945226065814495,-0.007560198660939932,0.014286492019891739,-0.026977719739079475,-0.06316988170146942,0.015695571899414062,0.011294648982584476,-0.002841394627466798,-0.033919770270586014,0.01780981384217739,0.005812716204673052,-0.13456471264362335,-0.0005326785612851381,-0.018857799470424652,-0.038253288716077805,0.006809851620346308,0.08007722347974777,-0.04826047271490097,-0.07578454166650772,-0.01547546312212944,-0.04836927726864815,-0.026052182540297508,0.042880695313215256,-0.0057088895700871944,-0.0703875869512558,-0.022905882447957993,-0.043812330812215805,0.06837925314903259,0.002594271209090948,0.012516486458480358,-0.03300842270255089,0.04744213446974754,-0.0021335408091545105,0.038121744990348816,1.9002115973591827e-32,-0.05278736725449562,-0.06787057965993881,-0.021317481994628906,0.024516383185982704,0.03826950490474701,0.0026949646417051554,-0.07748938351869583,-0.011858456768095493,0.03551378473639488,-0.08789952844381332,-0.15231113135814667,-0.007802010513842106,0.009813075885176659,0.02357509545981884,0.07109308987855911,0.02851245366036892,0.09222371876239777,-0.006750836037099361,0.08822952955961227,-0.03613952174782753,-0.08997537940740585,0.03599398583173752,-0.0003564480575732887,-0.023251505568623543,0.04472031816840172,0.02370598539710045,0.028758643195033073,-0.06118795648217201,-0.04383814334869385,0.014627757482230663,0.07716814428567886,-0.02160956710577011,0.018837139010429382,0.04854804649949074,0.029774367809295654,0.02841000445187092,0.011117854155600071,0.02588069438934326,-0.07683824747800827,0.021652523428201675,0.008969560265541077,0.05119327828288078,0.018260907381772995,0.04815594479441643,0.014207221567630768,-0.003974821884185076,0.030108682811260223,0.07011624425649643,0.1348709613084793,0.04857823997735977,-0.013692800886929035,-0.0017948693130165339,-0.00522954436019063,-0.00011957329843426123,-0.02025711163878441,0.05858270451426506,-0.09009066969156265,0.0692233145236969,-0.013691701926290989,-0.028469813987612724,0.04644857347011566,-0.0466926209628582,0.056817926466464996,0.011772341094911098,0.04390699416399002,0.05879375338554382,-0.06762606650590897,0.005895563866943121,0.0516793467104435,0.033840056508779526,-0.11834263056516647,0.0019104203674942255,0.098856121301651,0.019186200574040413,-0.04138094559311867,0.060934536159038544,-0.022162767127156258,-0.06432953476905823,-0.06686188280582428,0.022772010415792465,-0.06687847524881363,0.011033809743821621,-0.034462299197912216,0.0554875023663044,0.02608402632176876,0.02865375205874443,-0.03202304616570473,0.022648625075817108,0.0573553703725338,0.042763687670230865,0.02419385127723217,0.008385526947677135,-0.04238525778055191,-0.02814319357275963,-0.030802592635154724,-1.8193800507560328e-32,-0.010380237363278866,0.008474064990878105,-0.04710632935166359,0.0800417810678482,0.02399606630206108,0.04162682220339775,-0.0711706280708313,0.024150356650352478,-0.08411747962236404,-0.052645958960056305,-0.04272041469812393,-0.021235467866063118,0.051952555775642395,-0.07197852432727814,-0.027498776093125343,0.08308600634336472,0.029980190098285675,0.028030183166265488,-0.07626205682754517,-0.04108663275837898,-0.03831300884485245,-0.008058384992182255,0.02509405091404915,-0.07435906678438187,-0.014921176247298717,0.007644937839359045,0.02016502246260643,0.012203141115605831,-0.06055742874741554,0.0019640179816633463,0.09442014247179031,0.03868577629327774,-0.05800800770521164,0.027113324031233788,-0.0024987810757011175,0.07216621190309525,0.07462429255247116,-0.012741918675601482,0.03026295267045498,0.000710507680196315,-0.04223890230059624,0.0545852892100811,0.09395869821310043,-0.017447413876652718,0.04716860130429268,-0.05164327844977379,-0.0707014873623848,-0.04621995612978935,-0.07960794121026993,-0.04377211630344391,0.0489073246717453,-0.07033635675907135,-0.01785152405500412,-0.01632915623486042,0.06732255220413208,-0.03962303325533867,-0.03475024923682213,0.005037233233451843,-0.03335241228342056,-0.020016320049762726,0.057478442788124084,0.029912684112787247,0.04484649375081062,0.01585564576089382,0.03806472569704056,-0.006646226160228252,-0.045145485550165176,0.04358959197998047,-0.010689233429729939,0.08314453810453415,0.06958544999361038,-0.08072110265493393,-0.1506175398826599,0.02311721071600914,-0.04703589156270027,0.03235878050327301,-0.011471131816506386,0.01441398449242115,0.009649564512073994,0.0035566724836826324,-0.04935141280293465,-0.015132695436477661,-0.020031385123729706,-0.0192087572067976,-0.0032856562174856663,-0.018901469185948372,-0.00880930945277214,0.019803356379270554,0.07429618388414383,0.08334802836179733,-0.005371644161641598,-0.017849551513791084,0.04662461206316948,-0.02782841958105564,0.0533054918050766,-6.084096781933113e-8,0.030710743740200996,-0.06202158331871033,-0.017603199928998947,0.0850401297211647,0.08484116941690445,-0.07055307924747467,-0.06022471934556961,-0.061212871223688126,0.0196720939129591,0.061448026448488235,-0.004419585689902306,-0.02895713970065117,-0.02165035530924797,0.031665753573179245,0.05726389214396477,0.05058673024177551,0.060876645147800446,0.02790747582912445,-0.0508975125849247,-0.07624181360006332,0.011559593491256237,-0.00734567828476429,-0.08818969875574112,-0.10203340649604797,-0.005088083911687136,-0.0694112703204155,0.020711129531264305,-0.06941058486700058,-0.04356295242905617,0.008154655806720257,0.022228917106986046,0.046587955206632614,0.016612214967608452,-0.10084687918424606,0.1025698184967041,0.06467119604349136,-0.0055251773446798325,0.05017368122935295,-0.02101287618279457,0.013665438629686832,0.036329008638858795,0.01292964443564415,0.00025107807596214116,-0.049029551446437836,0.0069923014380037785,-0.007453366182744503,-0.057466212660074234,0.03488136827945709,0.014523817226290703,0.02401503548026085,-0.08564089238643646,0.07914619147777557,0.030470043420791626,0.03487749770283699,-0.03247484192252159,-0.0026896358467638493,-0.004932761657983065,0.005406596697866917,-0.04509473219513893,0.023820364847779274,0.08598453551530838,0.034987013787031174,0.034275613725185394,-0.01930045895278454]},{"text":"Horrenda late nomen in ultimas 45 Extendat oras, qua medius liquor Secernit Europen ab Afro, Qua tumidus rigat arva Nilus.","book":"Homage to Catalonia","chapter":16,"embedding":[-0.022546423599123955,0.0978810116648674,-0.08952812850475311,0.005300253164023161,-0.04577505588531494,0.0738765224814415,0.019314443692564964,0.027355318889021873,-0.03302954137325287,-0.03438272699713707,0.11287708580493927,-0.022486306726932526,-0.034913916140794754,-0.03530816361308098,-0.004214290529489517,-0.0787847638130188,-0.03569906949996948,0.03412485122680664,-0.015475128777325153,-0.07514094561338425,0.02844587340950966,0.0030881159473210573,0.05125453695654869,0.014846362173557281,-0.02946331538259983,0.07164129614830017,-0.033188868314027786,-0.0706750825047493,0.07303539663553238,-0.0483970083296299,0.020842893049120903,0.0092686852440238,-0.039784323424100876,-0.030603909865021706,0.042160701006650925,-0.07390298694372177,-0.05559832230210304,-0.017107460647821426,0.0028854445554316044,0.04239591211080551,0.024703748524188995,-0.04090460017323494,-0.11208898574113846,0.059100545942783356,-0.02114131674170494,-0.01257677748799324,-0.0937923714518547,0.038444843143224716,-0.013357901945710182,0.06377864629030228,-0.017823517322540283,-0.014409051276743412,-0.00990697555243969,0.02710687927901745,-0.023807905614376068,-0.14695163071155548,-0.016198555007576942,-0.03505174070596695,-0.027332792058587074,0.0193779356777668,-0.0049226959235966206,0.054423633962869644,-0.08105618506669998,-0.0326278917491436,0.011058070696890354,-0.0018042308511212468,0.0014978876570239663,-0.05402680113911629,-0.09492681920528412,0.02160342037677765,0.10317695140838623,-0.12393230944871902,-0.0647072121500969,0.06388041377067566,-0.03821737319231033,-0.030771885067224503,0.01008053682744503,-0.029966942965984344,-0.05317250266671181,0.019108451902866364,0.006587295327335596,0.04884481057524681,-0.004362338688224554,0.06106201559305191,-0.017840078100562096,-0.03740013390779495,0.009074964560568333,0.008472040295600891,0.023862332105636597,0.002520523266866803,-0.05024287849664688,-0.04717753455042839,-0.03931407257914543,-0.07967054098844528,0.1307365596294403,0.00820743665099144,-0.052722543478012085,0.052524976432323456,-0.013937817886471748,0.028443053364753723,-0.0080287866294384,-0.011695252731442451,-0.05375092849135399,0.04663961008191109,-0.1033296138048172,0.04508636146783829,-0.017431102693080902,-0.01230699848383665,0.0011669460218399763,0.029377862811088562,-0.07680798321962357,-0.05994979664683342,-0.016265949234366417,-0.1453627645969391,-0.0045842682011425495,0.03404023125767708,0.01657988876104355,-0.047206755727529526,-0.012599829584360123,-0.006486677564680576,0.013430751860141754,-0.0024051584769040346,0.006786948535591364,0.050139401108026505,0.03914284333586693,0.0728716254234314,0.057588089257478714,9.710223247529324e-33,-0.06260574609041214,-0.15798205137252808,-0.046785566955804825,0.016738997772336006,0.0014454632764682174,-0.02612358145415783,-0.06030732020735741,-0.056951768696308136,-0.009069791994988918,-0.03683114051818848,-0.046740323305130005,-0.012337330728769302,-0.08221203088760376,-0.04042135179042816,-0.005687052849680185,-0.004356358200311661,0.1563669741153717,-0.036654032766819,0.005360072944313288,0.015108766034245491,-0.040263764560222626,0.019534777849912643,-0.0045049856416881084,0.03164428472518921,0.034939464181661606,0.03543752804398537,0.0031363682355731726,-0.06207731366157532,-0.020578619092702866,0.005474483128637075,0.06741439551115036,-0.02340378239750862,-0.018368525430560112,-0.026553835719823837,0.002878539264202118,0.08216367661952972,0.031073326244950294,0.02604026533663273,-0.10977474600076675,-0.0465630479156971,0.034621208906173706,0.025755109265446663,0.08570936322212219,-0.00022366437769960612,0.05714234337210655,0.02759208157658577,-0.009387188591063023,0.004878902342170477,0.008607964031398296,0.02044936828315258,0.010077156126499176,0.05165395885705948,-0.07909052819013596,0.021223336458206177,-0.021240968257188797,0.022379480302333832,-0.04094051197171211,0.07315987348556519,-0.03778444975614548,-0.041853148490190506,0.017943015322089195,-0.03140809014439583,0.002017329214140773,-0.006928213872015476,0.040180809795856476,-0.0497356541454792,-0.034413810819387436,-0.0106071000918746,0.06530313193798065,-0.014311389997601509,-0.10430631041526794,-0.01933136209845543,0.00433125626295805,0.09560240060091019,-0.045389559119939804,0.061644233763217926,0.031571321189403534,0.06702178716659546,0.03023124299943447,-0.046128176152706146,-0.08367905765771866,-0.045895688235759735,0.05207144096493721,0.07597816735506058,0.09331303089857101,0.020510787144303322,0.01763288863003254,-0.019460685551166534,0.058313462883234024,-0.0007990359445102513,-0.02932066097855568,0.02545003592967987,0.05234344303607941,0.0548875592648983,0.019856484606862068,-1.0132707672158362e-32,0.048496365547180176,-0.05204157531261444,-0.0380127988755703,0.05079062655568123,0.05141191929578781,0.055121392011642456,-0.09391961991786957,0.06503010541200638,0.019039174541831017,0.03172679245471954,0.02979385294020176,-0.040072184056043625,0.06860143691301346,-0.04549233987927437,0.04212946072220802,0.061764877289533615,0.09116487205028534,0.1066659614443779,-0.01699589192867279,0.03236912935972214,-0.05522967129945755,0.09180647879838943,0.02577020600438118,-0.08021532744169235,-0.02128802426159382,0.023895079270005226,0.06120724603533745,-0.01419899519532919,-0.09268670529127121,-0.0347345769405365,0.022865504026412964,0.001999170985072851,0.002243516966700554,0.014898941852152348,0.00018807924061547965,0.02260470576584339,0.1336679756641388,0.05990472435951233,-0.06375367194414139,-0.04084588587284088,0.00024986290372908115,0.0669676810503006,0.058089811354875565,0.05342406406998634,-0.008414380252361298,-0.01658318191766739,-0.052572883665561676,-0.03260407596826553,-0.08797253668308258,-0.018309274688363075,0.092528335750103,0.004584288224577904,0.0492379404604435,0.011753436177968979,0.05199635773897171,-0.023263614624738693,-0.008471918292343616,-0.08276667445898056,0.011136160232126713,0.03703305125236511,0.07749547809362411,0.09667161107063293,0.001005215453915298,-0.038581594824790955,0.05774270370602608,-0.03802035376429558,-0.1488424390554428,0.06789807975292206,-0.05347032845020294,-0.002670103684067726,-0.003919483162462711,-0.1021430641412735,-0.05875089019536972,0.07176235318183899,-0.014884766191244125,-0.02304002456367016,0.004392722621560097,0.025973644107580185,0.061305370181798935,-0.04923116788268089,-0.06452862173318863,-0.07687678933143616,-0.1263209879398346,0.034316468983888626,-0.008757534436881542,-0.004249501042068005,0.102688267827034,-0.01165901031345129,0.05223364382982254,0.03091692551970482,-0.014503536745905876,0.03400885686278343,-0.011633070185780525,0.03903328254818916,-0.04972556233406067,-3.738735188107967e-8,0.021431777626276016,0.0003377630200702697,-0.04890824109315872,0.09120843559503555,-0.02287810482084751,-0.08942867070436478,0.024427343159914017,-0.03429928421974182,-0.04760598763823509,0.050980523228645325,-0.02016366459429264,0.037589721381664276,0.030884109437465668,-0.025808921083807945,0.04624752700328827,-0.013166971504688263,0.06223650276660919,0.002334756776690483,-0.01621430553495884,-0.002445823047310114,0.026616141200065613,-0.015465100295841694,0.038922857493162155,-0.02728431299328804,-0.10878225415945053,-0.0054163336753845215,0.08238978683948517,0.016273178160190582,0.07457409054040909,0.03396044299006462,-0.019473636522889137,0.10664064437150955,-0.03075358457863331,-0.05789553001523018,-0.014528128318488598,0.014569421298801899,0.05532655864953995,-0.011309615336358547,-0.02873039059340954,0.033276211470365524,-0.0063068256713449955,-0.0718892514705658,0.046814657747745514,-0.04309757053852081,-0.0023465603590011597,-0.012788436375558376,0.04707455635070801,-0.03924573212862015,-0.030816596001386642,0.011593499220907688,-0.01689532771706581,0.05698671564459801,0.08640754967927933,0.012596209533512592,-0.03514612093567848,-0.03528798371553421,0.09796562790870667,0.014072681777179241,-0.02392234466969967,-0.040007468312978745,0.042771417647600174,-0.03972527012228966,-0.0032659978605806828,0.0615813322365284]},{"text":"Sed bellicosis fata Quiritibus Hac lege dico, ne nimium pii Rebusque fidentes avitae Tecta velint reparare Troiae. 60 Troiae renascens alite lugubri Fortuna tristi clade iterabitur, Ducente victricis catervas Coniuge me Iovis et sorore.","book":"Homage to Catalonia","chapter":16,"embedding":[0.0276588574051857,0.00084357475861907,-0.034204330295324326,0.03504517674446106,-0.10980676859617233,0.010064741596579552,0.04404519498348236,-0.008456357754766941,-0.015123206190764904,0.04617783799767494,0.09205937385559082,-0.056658413261175156,-0.012649677693843842,-0.022330816835165024,-0.10243406891822815,-0.10788336396217346,-0.02768372930586338,0.013783308677375317,-0.04779373109340668,0.0020535618532449007,0.006385714281350374,-0.00684922793880105,0.02553810365498066,0.04394097253680229,-0.13104961812496185,-0.044757816940546036,-0.05732863396406174,-0.032038792967796326,-0.022847622632980347,-0.03637978062033653,-0.0536789670586586,0.05052664503455162,0.07251480221748352,-0.04253771901130676,-0.01548277959227562,-0.02901175059378147,0.026410585269331932,-0.07490730285644531,0.08082243800163269,0.06411194801330566,-0.05757293105125427,-0.04004201292991638,-0.08516398072242737,0.005666455719619989,-0.066374272108078,-0.05440907925367355,-0.038415659219026566,0.09846941381692886,-0.009502547793090343,-0.031452327966690063,-0.05798531696200371,-0.01672041043639183,-0.06450699269771576,-0.012920876033604145,-0.06569863110780716,0.02652716636657715,0.03869710862636566,-0.06953425705432892,0.05097629129886627,0.01785069704055786,0.0861886665225029,0.07504801452159882,-0.01783350110054016,0.002193240448832512,-0.024306345731019974,-0.052704792469739914,-0.04996133968234062,0.02613137662410736,-0.0007532354211434722,-0.030406473204493523,0.10228364914655685,-0.0029365774244070053,-0.09638199210166931,0.10807214677333832,-0.1001398116350174,0.05383686348795891,-0.011544832028448582,-0.045903079211711884,-0.014723523519933224,-0.04396349564194679,-0.05852191522717476,0.02522166445851326,0.05926002189517021,0.009747384116053581,0.05539004132151604,-0.021211329847574234,-0.06908918917179108,-0.024804212152957916,-0.0822862833738327,0.04665246233344078,0.05812017619609833,0.020809374749660492,0.023215850815176964,-0.03449074923992157,-0.02388240583240986,0.08397775143384933,-0.00711316242814064,-0.002777574583888054,0.0840764194726944,-0.0030167766381055117,0.014423646964132786,-0.10507290810346603,0.020608697086572647,0.03694260120391846,-0.05366702377796173,-0.06174973398447037,-0.0368233248591423,-0.11710406839847565,0.0786609798669815,0.00127316580619663,-0.06293667107820511,-0.03764348849654198,0.02734481729567051,-0.032813820987939835,-0.006772735621780157,0.0036530611105263233,-0.008342592976987362,-0.024447111412882805,-0.024843037128448486,-0.022897902876138687,0.017008190974593163,-0.0710463672876358,-0.05518927425146103,-0.05144432187080383,0.07941196113824844,-0.06952990591526031,-0.007398542948067188,2.145848774378762e-32,0.021412044763565063,-0.09477891027927399,-0.03948432579636574,-0.010186971165239811,0.08064267784357071,-0.014461561106145382,-0.025120064616203308,-0.06131909415125847,-0.08527778834104538,-0.011327982880175114,-0.03304964676499367,-0.024717392399907112,-0.035243310034275055,-0.030871445313096046,-0.008707089349627495,0.08001173287630081,-0.024730343371629715,0.008669491857290268,0.028638241812586784,-0.00026447110576555133,-0.023357359692454338,0.030982134863734245,0.05417114496231079,-0.03624362498521805,0.03366154804825783,0.003526683198288083,-0.05424455925822258,-0.11788658052682877,-0.009167841635644436,0.03704194352030754,0.06932475417852402,-0.04296926036477089,0.03936200588941574,-0.10022344440221786,0.013372371904551983,-0.07955373078584671,0.09689319878816605,-0.03301669657230377,-0.09217609465122223,-0.018549086526036263,0.09266390651464462,0.02992776408791542,0.06670721620321274,0.027049949392676353,0.057222649455070496,0.10173237323760986,0.029828839004039764,-0.012220416218042374,0.08018158376216888,-0.006826900411397219,0.02041327767074108,-0.03202960267663002,0.09349003434181213,-0.04877004027366638,0.01499925646930933,-0.011783425696194172,-0.04284209758043289,0.07114417105913162,0.05869187042117119,0.03261901065707207,0.05589756742119789,0.01000603660941124,0.04079410433769226,-0.03422102704644203,0.050445813685655594,-0.047503285109996796,-0.12673693895339966,-0.005648517515510321,0.03944113105535507,0.0206892229616642,-0.03628644719719887,-0.044002387672662735,-0.05858686566352844,0.002892598044127226,0.024844994768500328,-0.01834382861852646,0.006964175496250391,-0.04490920528769493,-0.041953034698963165,-0.04897938296198845,-0.022663652896881104,0.07772336155176163,0.01658344827592373,0.005538059398531914,0.036714836955070496,0.01711134985089302,-0.025444095954298973,0.004576044622808695,0.07915762811899185,0.024171331897377968,-0.0009097947622649372,0.051735781133174896,0.02272983454167843,-0.014552119188010693,0.028111375868320465,-1.918263223294379e-32,-0.010862440802156925,-0.04258834198117256,-0.03522161394357681,0.019507193937897682,0.0219598226249218,0.050617966800928116,-0.13262107968330383,0.040014106780290604,0.01890266127884388,-0.049356039613485336,-0.024942468851804733,-0.04783416539430618,0.07299001514911652,-0.02303612232208252,-0.01677149534225464,0.11255556344985962,0.04317834973335266,-0.03451765328645706,-0.07592981308698654,-0.058077674359083176,-0.06310582160949707,-0.09746131300926208,0.016206011176109314,-0.06335704028606415,-0.03724926710128784,0.03850092738866806,0.059018295258283615,0.02759983390569687,-0.05171968787908554,-0.0029852448496967554,0.035855185240507126,0.03334132954478264,-0.01689915545284748,0.0474870502948761,-0.08692345768213272,-0.02613009139895439,0.06636184453964233,-0.026485983282327652,0.01919136568903923,-0.003340559545904398,0.011922366917133331,0.0050908951088786125,0.10589447617530823,0.007423135451972485,0.025058940052986145,-0.049392301589250565,0.02127077616751194,-0.017662853002548218,-0.04453748092055321,-0.011136691085994244,0.100150927901268,-0.04941288381814957,-0.0010335323167964816,0.0522020161151886,0.10699809342622757,-0.007725569419562817,-0.04853615537285805,0.03206371143460274,-0.07284371554851532,-0.01778676174581051,0.03693334013223648,0.03335133194923401,0.002715901006013155,0.024873951449990273,0.14516493678092957,0.06014477089047432,-0.06417141854763031,0.07882417738437653,-0.014907320030033588,0.006937465164810419,0.024406904354691505,-0.028093544766306877,-0.07452724128961563,-0.015865610912442207,0.04247588291764259,0.042261432856321335,-0.0817764550447464,0.021280299872159958,-0.02886217087507248,0.13727444410324097,-0.02437647618353367,-0.052652083337306976,-0.055236708372831345,-0.036742713302373886,-0.012518498115241528,-0.07135161757469177,0.025626393035054207,0.030091170221567154,-0.03755244240164757,0.03829429671168327,-0.04124723747372627,-0.030989382416009903,0.07719454914331436,-0.07146985828876495,0.03984234109520912,-6.123325846374428e-8,0.018714822828769684,-0.05857974663376808,-0.0024364523123949766,0.03956763446331024,-0.00131712865550071,-0.007722698617726564,0.05498705059289932,0.004799516871571541,0.012849380262196064,0.08084005117416382,-0.045069195330142975,0.0011514342622831464,0.05555687099695206,0.05504313111305237,0.04736530780792236,0.015466202981770039,0.04382447153329849,0.017330095171928406,-0.04971881955862045,0.01936669647693634,0.0418274886906147,0.03305913135409355,-0.05427499860525131,0.04521845281124115,-0.10021542012691498,-0.04498104751110077,0.01827147603034973,-0.048692602664232254,0.03584239259362221,-0.003955726977437735,-0.028224268928170204,0.046528104692697525,-0.006511670537292957,-0.07168850302696228,0.05627938359975815,-0.02380155399441719,-0.02302231267094612,0.011794471181929111,-0.0008121253922581673,0.02241532877087593,0.09560871124267578,0.05118674784898758,-0.01486162282526493,-0.006792101543396711,0.016537323594093323,-0.07149682939052582,-0.05567198246717453,0.05109182745218277,0.06902818381786346,-0.006210262421518564,0.029106682166457176,0.0032919172663241625,0.05716107785701752,0.02582714706659317,-0.07994085550308228,-0.049522388726472855,0.10037998110055923,0.052310243248939514,-0.01667979545891285,0.07114756107330322,0.026994328945875168,0.007933814078569412,0.09379709511995316,-0.025786567479372025]},{"text":"Desine pervicax 70 Referre sermones deorum et Magna modis tenuare parvis.","book":"Homage to Catalonia","chapter":17,"embedding":[-0.030955776572227478,0.07653495669364929,-0.03899766504764557,-0.09498889744281769,-0.0364585779607296,0.049744073301553726,0.0598701536655426,0.05892554298043251,-0.003383565926924348,0.0651526227593422,0.009564969688653946,0.024854766204953194,0.03572224825620651,-0.02103177271783352,-0.01065853051841259,-0.06655262410640717,-0.04090336337685585,0.05396945774555206,0.019021376967430115,0.006848919205367565,0.08103685081005096,0.07483278214931488,-0.052120037376880646,0.06661361455917358,-0.022962315008044243,0.039516326040029526,-0.026260703802108765,-0.024126682430505753,0.03139306232333183,-0.026690838858485222,-0.02147185429930687,0.054152995347976685,0.09817968308925629,-0.03114275261759758,-0.04268600791692734,0.02613869123160839,0.03908636420965195,0.0008363316301256418,-0.030212320387363434,0.06778024137020111,-0.07328999042510986,0.08148159831762314,-0.055216703563928604,-0.038076359778642654,-0.05080276355147362,-0.05007617175579071,-0.047077476978302,0.044758040457963943,0.015255180187523365,0.011689990758895874,-0.05587943270802498,0.020606650039553642,0.009506655856966972,-0.009521226398646832,-0.06714103370904922,-0.0062109618447721004,0.0011880926322191954,-0.027737360447645187,-0.00459576491266489,-0.03983441740274429,-0.037650272250175476,0.012314090505242348,-0.08614259213209152,0.009943889454007149,-0.015147092752158642,-0.04476327449083328,0.0017048579175025225,-0.02462630532681942,-0.11370644718408585,0.009030644781887531,0.04512546584010124,-0.06875655055046082,0.07286373525857925,-0.03353739529848099,-0.088399738073349,-0.0028311789501458406,-0.09631171077489853,-0.09282350540161133,-0.09022466093301773,-0.1706630140542984,0.006356789730489254,0.0157345999032259,0.016577526926994324,-0.04148241505026817,-0.06387866288423538,-0.004645311739295721,0.03859009966254234,-0.005331972613930702,0.0862407311797142,-0.029903074726462364,0.021156717091798782,-0.008938714861869812,-0.09017735719680786,0.014418776147067547,-0.009513016790151596,0.05701807886362076,-0.014399229548871517,-0.10492973029613495,0.029310211539268494,0.06515565514564514,0.050562676042318344,0.08530990779399872,0.009362461976706982,0.07012297213077545,-0.03227345645427704,-0.05580122023820877,-0.06971120089292526,-0.009312535636126995,0.019867464900016785,-0.03475198149681091,-0.05967385321855545,0.03873277083039284,-0.00605299137532711,-0.04148605838418007,0.07869336009025574,-0.025278067216277122,0.12791365385055542,-0.049361854791641235,0.0017451704479753971,-0.058252643793821335,0.032993901520967484,-0.00904576200991869,0.08115674555301666,0.020065084099769592,0.07186535000801086,-0.01859310269355774,0.06663022190332413,3.2643676487006625e-33,-0.028705809265375137,-0.05944330245256424,-0.02033640630543232,0.0539482906460762,-0.02494468353688717,0.026784900575876236,-0.0814710408449173,-0.0004916803445667028,0.061618395149707794,-0.08203157782554626,-0.03470249101519585,0.060797471553087234,-0.030330713838338852,0.00040675810305401683,-0.004146459512412548,0.00917412806302309,0.04435652121901512,0.011364930309355259,0.03704816848039627,-0.07271848618984222,-0.022279750555753708,0.06296472251415253,0.010444656014442444,0.0317348949611187,0.09075862914323807,0.03212485834956169,0.05415700748562813,-0.007349727209657431,0.022194957360625267,0.02351943776011467,0.05996108800172806,0.029073163866996765,-0.03599219396710396,-0.06175048276782036,0.0859949141740799,0.03435191884636879,-0.021017825230956078,0.018842751160264015,0.05299327149987221,0.007374341133981943,-0.008878150023519993,-0.018239300698041916,0.05770430713891983,-0.03866998478770256,0.040998101234436035,0.04922889918088913,0.03566643223166466,0.07425760477781296,-0.005876675248146057,0.007570928893983364,-0.016166003420948982,0.01418820209801197,-0.0038024811074137688,-0.10651812702417374,-0.02330959215760231,-0.008898526430130005,-0.08155209571123123,0.09204436838626862,0.023930754512548447,-0.05648721754550934,0.08171584457159042,-0.03426792472600937,-0.006398236844688654,-0.002452544867992401,0.028670404106378555,-0.024792566895484924,-0.0244552381336689,-0.02396591566503048,0.11082590371370316,0.07112918794155121,-0.15580619871616364,0.0023462523240596056,0.04417221620678902,0.014960912056267262,0.013564622029662132,0.007339019328355789,-0.06927143037319183,-0.04590617120265961,0.005119586829096079,0.011347596533596516,-0.06688738614320755,0.020961690694093704,-0.03974907845258713,0.04801780730485916,0.12024643272161484,-0.016206657513976097,0.05353746935725212,0.03487714007496834,0.020639844238758087,0.049122244119644165,0.025538748130202293,0.04321926087141037,-0.026838233694434166,-0.039964329451322556,0.020185774192214012,-4.767553457675725e-33,-0.03581051900982857,-0.040086403489112854,-0.10846924036741257,0.16094374656677246,-0.0009500191081315279,0.04890833795070648,-0.04478370398283005,0.06472379714250565,-0.007219560910016298,-0.095759317278862,-0.05780191347002983,-0.06871756166219711,0.09364915639162064,-0.01426020823419094,-0.05151335522532463,0.04821063578128815,-0.05968793109059334,0.057955190539360046,-0.08090772479772568,0.016374457627534866,-0.06750074028968811,0.0009714011684991419,-0.013997793197631836,-0.058056559413671494,0.04155673459172249,-0.05489678680896759,-0.024552306160330772,0.04119522124528885,-0.037313759326934814,-0.04975518584251404,0.060972943902015686,0.04914817214012146,-0.07099519670009613,-0.0009005289175547659,-0.03897198289632797,0.05239264294505119,0.10116975009441376,0.05874429643154144,0.012282238341867924,-0.02477601170539856,-0.025600342079997063,0.019856519997119904,0.1016320139169693,-0.052636995911598206,-0.00011396215995773673,-0.03796190023422241,-0.011820620857179165,-0.05803409591317177,-0.039831772446632385,0.01878681220114231,0.011963310651481152,-0.07652617990970612,0.04857920482754707,-0.056785933673381805,0.055417031049728394,-0.07960495352745056,-0.05052286386489868,-0.0337819866836071,-0.018138302490115166,0.01773522049188614,0.005134378094226122,0.010589185170829296,-0.028422614559531212,0.07608656585216522,0.0691884234547615,-0.07255398482084274,-0.0015067871427163482,0.0922347754240036,-0.006971902679651976,0.041056472808122635,0.00837627798318863,-0.10189574211835861,0.051875557750463486,-0.002192638348788023,-0.029602931812405586,0.02159089781343937,0.020548172295093536,-0.02358592487871647,-0.006146049592643976,-0.012405921705067158,0.015516058541834354,-0.015229074284434319,-0.10453958809375763,-0.019418034702539444,-0.04264434427022934,0.004977433010935783,0.0646820217370987,0.005802770610898733,-0.011787623167037964,-0.000872291624546051,0.022273868322372437,-0.015364499762654305,0.05783545598387718,-0.06257564574480057,0.07191698998212814,-2.414209276935253e-8,-0.018376700580120087,-0.02807830274105072,-0.0380023755133152,0.03767281025648117,0.09403637051582336,-0.06324317306280136,0.03933440521359444,-0.017350172623991966,-0.05911846086382866,0.011553993448615074,0.056016433984041214,0.0077407993376255035,-0.012470642104744911,0.06860275566577911,0.014838142320513725,0.01979026198387146,0.07233013212680817,-0.031850576400756836,0.018092431128025055,-0.027862805873155594,0.06252067536115646,-0.00679418258368969,0.05673683062195778,-0.08599299937486649,-0.05461185798048973,0.05164417251944542,0.00903461966663599,-0.06316982954740524,0.012401271611452103,0.003833768656477332,0.01061880961060524,0.043126728385686874,-0.10881030559539795,-0.09339176118373871,-0.04469379410147667,0.06147606670856476,-0.02725481614470482,0.00513842748478055,0.035986222326755524,0.017098134383559227,0.11894680559635162,0.033675990998744965,-0.02209426276385784,-0.0074271345511078835,0.04975183308124542,-0.03247758373618126,-0.024409258738160133,0.09790538996458054,0.03386522829532623,-0.021801160648465157,-0.052094459533691406,0.041940659284591675,0.10492454469203949,-0.040373947471380234,-0.012286151759326458,-0.030884576961398125,0.03450046479701996,-0.016687558963894844,-0.022609101608395576,-0.03540583699941635,0.006156576797366142,0.04579104483127594,-0.032342199236154556,-0.08094674348831177]},{"text":"Auditis, an me ludit amabilis 5 Insania?","book":"Homage to Catalonia","chapter":17,"embedding":[-0.0854429379105568,0.051714085042476654,-0.03451785817742348,-0.002140539698302746,0.017163287848234177,-0.04037249833345413,0.13690324127674103,0.018184350803494453,0.01025328878313303,0.05228010192513466,0.0276471097022295,-0.03499031811952591,0.0022764750756323338,-0.03210670128464699,-0.14190101623535156,-0.03192988783121109,-0.03679124638438225,0.013617295771837234,-0.02550053782761097,0.07964269071817398,-0.017405223101377487,-0.045760758221149445,-0.012783973477780819,-0.04019235819578171,-0.08712898939847946,0.009558213874697685,0.0028203902766108513,0.03504777327179909,-0.05222100391983986,-0.12103831768035889,0.009724884293973446,0.029353519901633263,0.05824112519621849,-0.000027301697627990507,-0.017507677897810936,0.016134213656187057,0.019516004249453545,-0.04811202734708786,0.07180372625589371,0.07800859212875366,-0.05616750195622444,-0.045492131263017654,-0.035969328135252,-0.05644147843122482,-0.024008488282561302,-0.06114518642425537,-0.09118353575468063,0.05887578800320625,0.025070035830140114,0.003539106110110879,-0.11677619069814682,0.01642327569425106,-0.03134560585021973,-0.021502498537302017,-0.02285253070294857,-0.059403181076049805,-0.0025436680298298597,-0.0005317298346199095,0.0057231164537370205,-0.03678051009774208,0.04018804430961609,0.06977412104606628,-0.018518181517720222,0.03195038065314293,-0.029269590973854065,0.031441137194633484,-0.04528215527534485,0.014168290421366692,-0.022890901193022728,0.020741771906614304,0.03310595825314522,-0.08398602902889252,-0.04860450327396393,-0.008059883490204811,-0.04033692181110382,-0.003537211799994111,0.015005321241915226,-0.05221935734152794,-0.06417093425989151,-0.06647608429193497,-0.07123450189828873,-0.0030923103913664818,-0.00871964730322361,-0.0019215702777728438,0.013340817764401436,0.016081390902400017,0.023047059774398804,-0.031357020139694214,0.02928820624947548,0.01542319729924202,0.044786471873521805,-0.03345372900366783,-0.045628078281879425,-0.04905451834201813,0.07478929311037064,-0.02042638324201107,-0.015418018214404583,-0.025612397119402885,0.001064279698766768,0.07984668016433716,0.04413207247853279,0.054981816560029984,-0.06227610260248184,0.021035999059677124,-0.1351311057806015,-0.047175850719213486,0.06816515326499939,-0.028316758573055267,-0.014018130488693714,-0.01445307582616806,-0.04445328935980797,-0.06579158455133438,-0.022575827315449715,-0.13071128726005554,0.04419568553566933,0.05378959700465202,0.004493393003940582,-0.0034335257951170206,-0.027213087305426598,-0.01755673810839653,0.05816752836108208,0.035924576222896576,-0.014150970615446568,-0.018077602609992027,-0.026123352348804474,-0.05833597853779793,0.05862977355718613,-1.5315545284222354e-33,-0.058746445924043655,-0.011674170382320881,-0.03547617048025131,0.08471563458442688,-0.011966298334300518,0.07382424175739288,-0.06039853021502495,0.07072098553180695,-0.06596603244543076,0.008195719681680202,-0.09306235611438751,0.06496599316596985,-0.003221955383196473,-0.03732449561357498,0.06920693814754486,0.06597782671451569,0.05160539597272873,0.026065625250339508,0.013580222614109516,-0.022235428914427757,0.024087030440568924,-0.06828712671995163,0.055131010711193085,-0.040272943675518036,0.0957714393734932,0.04537281394004822,0.05708857253193855,-0.07503744959831238,0.060749299824237823,0.08140956610441208,-0.031018558889627457,0.004953884985297918,0.02534712292253971,-0.002748682629317045,-0.014704697765409946,0.02484619989991188,-0.019860588014125824,0.01631861738860607,0.018587501719594002,-0.028377296403050423,-0.023955386132001877,0.02974570542573929,0.04154442623257637,0.03158140182495117,0.004354818258434534,0.1196046844124794,0.06382086873054504,0.03699158504605293,0.12046222388744354,-0.030275342985987663,-0.04800402745604515,-0.02657172828912735,0.0010783987818285823,-0.005176649894565344,0.007025230210274458,0.03517657890915871,-0.040718212723731995,0.08656229823827744,0.019878040999174118,0.021936897188425064,0.0856454074382782,0.04645358771085739,-0.0170136708766222,-0.009634883143007755,-0.01745939627289772,0.04118126630783081,-0.030911123380064964,-0.012103993445634842,0.14623163640499115,0.005494288634508848,-0.1001671701669693,-0.051871974021196365,0.0426710769534111,0.09853355586528778,0.010211797431111336,0.04213725030422211,0.013425924815237522,-0.02392202615737915,-0.039241235703229904,0.0319463387131691,-0.1410965621471405,-0.030593721196055412,0.07366426289081573,-0.01427407469600439,0.08716420829296112,0.042418718338012695,-0.0028833576943725348,-0.00843960139900446,0.03132643550634384,0.04376150295138359,0.04472184181213379,0.017483193427324295,0.039511505514383316,-0.036013007164001465,-0.02483653463423252,-1.1009324686431413e-33,-0.05192473903298378,-0.05557146295905113,-0.05557260289788246,0.03211003541946411,-0.04270311817526817,0.0009837248362600803,-0.08615059405565262,0.03207821398973465,-0.01692790538072586,0.10090808570384979,-0.05508444458246231,-0.05800183117389679,0.037141650915145874,-0.025568397715687752,0.010322904214262962,0.045889563858509064,0.041969966143369675,-0.05196363851428032,-0.0038143673446029425,-0.01738477125763893,-0.0002185324701713398,0.03944523259997368,0.04939178004860878,-0.0557837039232254,0.007811183109879494,0.07033056765794754,0.09241539984941483,-0.09061674028635025,-0.043034009635448456,0.04477355256676674,-0.05252895876765251,-0.027877599000930786,-0.04992822930216789,0.05301929637789726,0.004700490739196539,-0.030771944671869278,0.08604825288057327,-0.03689160197973251,-0.06503117829561234,-0.0034295402001589537,-0.04842669516801834,0.08467727899551392,0.09525910019874573,0.025899698957800865,0.017748871818184853,-0.0786958858370781,-0.07076674699783325,0.08255939930677414,0.020516972988843918,-0.013309714384377003,0.033120185136795044,-0.033933501690626144,-0.005663757212460041,-0.00273865251801908,-0.054274480789899826,-0.05158077925443649,0.030359486117959023,-0.020711245015263557,-0.03996801748871803,0.10191937536001205,0.06490712612867355,0.032967887818813324,-0.034386951476335526,0.03418050706386566,0.0681682899594307,-0.0035855486057698727,0.02895224094390869,0.05556267127394676,-0.020865177735686302,-0.07354367524385452,0.06112462654709816,-0.1510307937860489,-0.07669898122549057,0.0008232691325247288,-0.0026388729456812143,0.0737394392490387,-0.013870017603039742,-0.018906621262431145,0.017679376527667046,-0.0008662415202707052,-0.03434990346431732,-0.02332265116274357,-0.008851921185851097,-0.0197280403226614,-0.023059548810124397,-0.06436499953269958,0.0517398901283741,-0.04034239798784256,0.04887176677584648,0.04985654726624489,-0.0078320587053895,0.06718968600034714,0.038143254816532135,-0.1020762026309967,-0.007339530624449253,-2.0679214784991018e-8,0.006108763627707958,-0.038806889206171036,0.04136233031749725,0.041515644639730453,0.04781482368707657,-0.11573684960603714,-0.0853148102760315,0.02905290573835373,-0.015040118247270584,0.02582370489835739,0.03986072167754173,-0.006473212502896786,0.01509669329971075,0.005615358240902424,0.03321019932627678,-0.04663374647498131,0.03972329944372177,0.074812151491642,-0.04927690327167511,-0.0025188883300870657,0.08672347664833069,-0.01872715726494789,-0.03907343000173569,-0.06344687193632126,-0.020985588431358337,-0.0669669508934021,-0.005797999911010265,-0.010405851528048515,-0.024906039237976074,-0.024862511083483696,0.0027624848298728466,0.05227183550596237,0.003178901970386505,-0.054869648069143295,-0.11269666999578476,0.06151186302304268,-0.03927994146943092,-0.03164142742753029,-0.03598571941256523,-0.02140026167035103,0.02410789579153061,-0.023130815476179123,0.06708507984876633,0.011197688058018684,-0.02918436750769615,-0.032029006630182266,-0.039638593792915344,-0.0645861104130745,0.039308104664087296,-0.031036660075187683,-0.1010516881942749,-0.040340274572372437,0.14698149263858795,0.06762894243001938,0.049615342170000076,-0.04724007099866867,0.03954461216926575,0.02706190012395382,-0.0026283664628863335,0.011405029334127903,0.1307065337896347,0.054976899176836014,0.02247483842074871,0.01158748846501112]},{"text":"Me fabulosae Volture in Apulo Nutricis extra limen Apuliae 10 Ludo fatigatumque somno Fronde nova puerum palumbes Texere, mirum quod foret omnibus, Quicumque celsae nidum Acherontiae Saltusque Bantinos et arvum 15 Pingue tenent humilis Forenti, Ut tuto ab atris corpore viperis Dormirem et ursis, ut premerer sacra Lauroque conlataque myrto, Non sine dis animosus infans. 20 Vester, Camenae, vester in arduos Tollor Sabinos, seu mihi frigidum Praeneste seu Tibur supinum Seu liquidae placuere Baiae.","book":"Homage to Catalonia","chapter":17,"embedding":[0.04093838110566139,0.004563889466226101,0.010680698789656162,0.0036982479505240917,-0.08352366089820862,0.021015478298068047,0.07883802056312561,0.044103942811489105,0.017617011442780495,0.038597118109464645,0.06262373924255371,-0.12293864041566849,0.008981073275208473,-0.03245897218585014,-0.13039065897464752,-0.05438809096813202,0.0242769755423069,0.004135506693273783,-0.06144038215279579,-0.033453717827796936,0.029546072706580162,0.04016239196062088,0.022884264588356018,0.025765378028154373,-0.09134171903133392,-0.011416973546147346,-0.09877381473779678,-0.034657955169677734,0.04056961089372635,-0.07254448533058167,0.011538069695234299,0.07650928944349289,0.09304787218570709,-0.030662180855870247,0.032103657722473145,0.009573234245181084,-0.04153597727417946,-0.05557696521282196,0.05075671523809433,0.06719675660133362,-0.014089592732489109,-0.03177962452173233,-0.018354877829551697,0.0009240895742550492,-0.10159426182508469,0.004145216196775436,-0.000466133002191782,0.03357779234647751,0.047457776963710785,-0.006226768717169762,-0.05553530901670456,-0.032806769013404846,-0.08534972369670868,-0.003662019968032837,-0.09033520519733429,-0.0392775721848011,0.014785741455852985,-0.06418666243553162,-0.012472797185182571,-0.04000840336084366,0.010663897730410099,0.04619327560067177,-0.02726706676185131,0.02446732111275196,-0.04110156372189522,0.01699010841548443,-0.05093011260032654,-0.011858724057674408,0.026448436081409454,0.0039840275421738625,0.12058134377002716,-0.0013973090099170804,-0.054007839411497116,0.15463459491729736,-0.0681818500161171,0.03834998607635498,-0.010956697165966034,-0.01210341602563858,-0.019741589203476906,-0.05214312672615051,-0.08422113209962845,0.050983358174562454,0.03012300282716751,-0.06206049397587776,-0.020323527976870537,0.004674757365137339,-0.013715030625462532,0.0016749802744016051,-0.024363262578845024,-0.01631065644323826,0.0727112665772438,0.016676105558872223,-0.055800095200538635,-0.03994739428162575,0.05935259535908699,0.04786836728453636,0.03777026757597923,-0.04990524798631668,-0.01627742499113083,-0.041096873581409454,0.003290098626166582,-0.10450521111488342,0.022787148132920265,0.02098262496292591,-0.0941171869635582,-0.07922929525375366,-0.09946298599243164,-0.0788118988275528,0.027641937136650085,0.024170782417058945,-0.05123796686530113,-0.04119427874684334,-0.01550076063722372,-0.05447970703244209,0.008152296766638756,-0.01497533917427063,0.012603502720594406,-0.042369384318590164,0.020395390689373016,0.02014184556901455,-0.026672709733247757,-0.015833480283617973,-0.02662937343120575,-0.008507299236953259,0.04342370480298996,-0.07813560217618942,-0.05223756656050682,2.4409453170195707e-32,-0.02132861129939556,-0.08814423531293869,-0.03481660038232803,0.024365875869989395,0.029864750802516937,-0.014360664412379265,-0.07148361206054688,-0.07487799972295761,0.05558910220861435,-0.08580751717090607,-0.059775691479444504,-0.02392679639160633,-0.03476562350988388,-0.007714084815233946,-0.03657473251223564,0.03923618420958519,0.10204062610864639,-0.037765223532915115,0.02470947802066803,-0.07762953639030457,-0.05913123860955238,0.006665998138487339,0.028919236734509468,-0.04714806750416756,-0.05214408040046692,-0.011218314059078693,0.011107726022601128,-0.10271801799535751,-0.027835866436362267,0.016147654503583908,0.09680211544036865,-0.04556252062320709,-0.024330437183380127,-0.015849314630031586,-0.013282175175845623,0.024130061268806458,0.049323514103889465,-0.04452744126319885,-0.09701285511255264,0.014794125221669674,0.04910397157073021,0.030739454552531242,0.07470385730266571,0.08792509883642197,0.07809318602085114,0.00037957518361508846,-0.051219698041677475,0.048114113509655,0.071843221783638,0.03580267354846001,0.055076271295547485,0.03002161532640457,0.09505043923854828,-0.013981438241899014,-0.02692214399576187,0.04337936267256737,-0.017849043011665344,-0.03179781511425972,-0.08519668877124786,-0.017976246774196625,0.0454842709004879,0.07690387964248657,0.028065882623195648,-0.010751319117844105,0.00949771422892809,-0.07317328453063965,-0.10005539655685425,-0.0057384781539440155,0.10374697297811508,0.03261072561144829,-0.06368829309940338,-0.03045378439128399,0.011244096793234348,0.03682275116443634,0.012695040553808212,0.020106559619307518,0.014532352797687054,-0.023885253816843033,-0.051405295729637146,0.017385229468345642,-0.005691599566489458,0.008514661341905594,-0.002655190182849765,-0.0014181857695803046,0.0534970797598362,0.041983023285865784,0.005712082609534264,-0.00465741939842701,0.10302077978849411,0.06257480382919312,0.07509011030197144,0.02939113974571228,-0.030999664217233658,-0.01000498328357935,-0.05889055132865906,-2.2056824653931734e-32,-0.021010424941778183,-0.021208740770816803,-0.02678717114031315,0.10026294738054276,0.021368663758039474,0.014084363356232643,-0.07704675942659378,0.11178252846002579,0.02474016509950161,-0.09566973149776459,-0.06824208050966263,0.02144867181777954,0.0920666754245758,-0.09236211329698563,0.01077920850366354,0.040952421724796295,0.061987705528736115,0.07413944602012634,0.0020677559077739716,-0.025609558448195457,-0.1443859487771988,0.0016702982829883695,0.015439390204846859,-0.06576085090637207,-0.042993251234292984,-0.0021344858687371016,0.02481633983552456,-0.02764945663511753,-0.04879317432641983,-0.019314242526888847,0.111088328063488,0.01648259162902832,-0.0141366645693779,-0.026586534455418587,-0.017705218866467476,-0.0649304986000061,0.09842841327190399,-0.04088282957673073,-0.047309380024671555,0.03259728476405144,0.01501461397856474,0.013416444882750511,0.11263202130794525,-0.0012341015972197056,0.026448991149663925,-0.005681529175490141,0.004926594905555248,-0.0165846049785614,-0.05253539979457855,0.05987846851348877,0.08402613550424576,-0.0152167659252882,0.02571834623813629,0.005966306664049625,0.11125743389129639,-0.05677849426865578,-0.035226549953222275,-0.013051928021013737,-0.04713128134608269,-0.0002505000156816095,0.026455290615558624,0.006236484739929438,-0.03618583455681801,0.012764321640133858,0.13231036067008972,0.05044672638177872,-0.06577415019273758,0.06747153401374817,-0.0881461575627327,0.05171790346503258,0.029343249276280403,-0.09645999222993851,-0.08698241412639618,-0.06301170587539673,0.07659190148115158,0.0120296785607934,-0.0018272945890203118,0.015093469992280006,-0.012448817491531372,0.012246611528098583,-0.0857350304722786,0.0237021092325449,-0.028071215376257896,-0.0028530999552458525,0.02145574800670147,-0.07717429846525192,-0.017039548605680466,0.03117920085787773,0.030056755989789963,0.019907090812921524,-0.002327441005036235,-0.029989570379257202,0.017761006951332092,-0.07799077779054642,0.12163815647363663,-6.807712793488463e-8,0.037590038031339645,-0.007903609424829483,-0.05403285101056099,0.046029701828956604,0.06256524473428726,-0.04050097241997719,0.03754429519176483,0.03439170867204666,0.011844201944768429,0.0348295159637928,-0.09640739858150482,0.02331537753343582,0.00807568896561861,0.009267309680581093,0.07196905463933945,0.022125504910945892,0.05266501009464264,0.029729636386036873,-0.035581331700086594,-0.0467764176428318,0.013340955600142479,0.03694439306855202,-0.033267661929130554,0.013273836113512516,-0.09714369475841522,0.005284092854708433,0.06388475745916367,-0.04946701601147652,0.006294492166489363,0.021334663033485413,0.013716679997742176,0.0303785540163517,0.013182494789361954,-0.08918295800685883,0.004800896160304546,0.03384824097156525,0.020321005955338478,0.04830131307244301,0.04554721340537071,0.058764223009347916,-0.012648831121623516,-0.06368838995695114,0.06169823184609413,-0.014092709869146347,0.0009877814445644617,-0.05308075621724129,-0.017831651493906975,0.07113441824913025,0.0177322905510664,-0.0743330717086792,-0.013703501783311367,0.07911213487386703,0.0744321346282959,0.0008267801022157073,-0.08369819074869156,-0.0483035147190094,0.07174535095691681,-0.0017738065216690302,0.015483736991882324,0.0389256477355957,0.0367552824318409,-0.016981588676571846,-0.0015161405317485332,0.021060066297650337]},{"text":"Utcumque mecum vos eritis, libens Insanientem navita Bosporum 30 Temptabo et urentis arenas Litoris Assyrii viator; Visam Britannos hospitibus feros Et laetum equino sanguine Concanum; Visam pharetratos Gelonos 35 Et Scythicum inviolatus amnem.","book":"Homage to Catalonia","chapter":17,"embedding":[0.03304705396294594,0.017871126532554626,-0.0009002042934298515,0.004372405353933573,-0.0008190969820134342,-0.0026671721134334803,0.10708664357662201,0.06141896918416023,0.02104385569691658,0.025255022570490837,0.05861075222492218,-0.08357738703489304,-0.011252880096435547,0.001955650979653001,-0.10895601660013199,-0.06044258922338486,-0.021661218255758286,0.07228171825408936,-0.023556813597679138,0.028919164091348648,0.0054193949326872826,0.05593588948249817,0.02310366742312908,0.07908748835325241,-0.077921561896801,0.017259055748581886,-0.03764766827225685,-0.0019241500413045287,-0.0015844041481614113,-0.08434564620256424,-0.037051934748888016,0.07743861526250839,0.10267779976129532,-0.0666591078042984,-0.005734903737902641,-0.0048129977658391,-0.0667794719338417,-0.09968999773263931,0.04734450951218605,0.04088740050792694,-0.015133026987314224,-0.06227310001850128,-0.015216173604130745,0.006933877710253,-0.02718779258430004,0.05858767032623291,-0.014214429073035717,0.07554671168327332,0.037294913083314896,0.04689135402441025,-0.05474067106842995,-0.040510281920433044,-0.06889615207910538,0.027805712074041367,-0.08014748990535736,0.03897794336080551,-0.06329315155744553,0.00716444244608283,-0.005164286121726036,-0.04284866526722908,0.053827155381441116,0.03152284771203995,0.0038555737119168043,0.04971690475940704,-0.09659375995397568,0.01971389353275299,-0.04115084186196327,0.05042807757854462,-0.0078078764490783215,0.02707511931657791,0.11442612111568451,-0.010882405564188957,-0.03915439546108246,0.05090561881661415,-0.03605123236775398,0.05371546745300293,-0.03023083508014679,-0.02633228525519371,-0.0069009000435471535,-0.06785999238491058,-0.016713183373212814,0.024673424661159515,0.0533473826944828,-0.038574136793613434,0.030535679310560226,0.01433477271348238,0.015363812446594238,0.0032949650194495916,0.034225545823574066,-0.03733418136835098,-0.0023966943845152855,-0.012213713489472866,-0.07728759199380875,-0.05021544173359871,0.020662831142544746,0.004660367034375668,0.0529320128262043,-0.005716508254408836,0.035462331026792526,0.01799633353948593,0.004635101184248924,-0.02532029338181019,-0.023069730028510094,0.027191367000341415,-0.1074809804558754,-0.08585147559642792,-0.06225065141916275,-0.10528460890054703,0.0323886014521122,0.022393018007278442,-0.05210162699222565,-0.08135109394788742,0.020366692915558815,-0.10474013537168503,0.006268026772886515,-0.010312216356396675,0.049267929047346115,-0.08220898360013962,-0.036828186362981796,-0.02207750268280506,0.0060978601686656475,-0.016289396211504936,0.07621407508850098,-0.051769472658634186,0.017826389521360397,-0.02978198044002056,0.07494957000017166,1.8938789154177154e-32,-0.05214183032512665,-0.08096546679735184,-0.05229629948735237,0.0476083867251873,0.05353185907006264,0.014603715389966965,-0.10216686874628067,-0.03503153473138809,0.02322801761329174,-0.14348945021629333,-0.1103893294930458,-0.01687098667025566,0.028399311006069183,-0.061084624379873276,0.016110286116600037,0.10558949410915375,0.08045157790184021,-0.0017360212514176965,0.043394479900598526,-0.005223989952355623,-0.05488189309835434,0.010276242159307003,0.038877278566360474,-0.03256583586335182,-0.022135263308882713,-0.026613926514983177,-0.030970145016908646,-0.11436046659946442,0.00043140730122104287,0.024332646280527115,0.08583678305149078,-0.0990213081240654,-0.04819102585315704,-0.004315124358981848,-0.011518547311425209,0.08085459470748901,-0.028826357796788216,-0.008367795497179031,-0.040545299649238586,-0.031617552042007446,0.007716769818216562,0.03654713183641434,0.027761105448007584,0.037024740129709244,0.0826791375875473,0.04097334295511246,0.008692948147654533,0.06486222892999649,0.12129610776901245,-0.0011184884933754802,-0.023844029754400253,0.03955286368727684,0.05938196927309036,-0.1332588493824005,-0.016541246324777603,0.06594286113977432,-0.012675551697611809,0.06832502037286758,-0.05154368653893471,0.02002398855984211,0.06127718463540077,0.05188711732625961,0.014514602720737457,-0.06376691907644272,0.04304191842675209,-0.09070520848035812,-0.05791882798075676,0.04135695844888687,0.052311722189188004,0.023554528132081032,-0.07014462351799011,-0.07121527940034866,0.011265695095062256,0.03727450221776962,-0.039220426231622696,0.04318491742014885,0.0617983303964138,-0.06063907966017723,-0.05864892154932022,-0.05215967819094658,-0.11253844946622849,-0.0425364188849926,0.009746462106704712,0.05603095889091492,0.008391954936087132,0.03306050971150398,-0.020776960998773575,0.052802931517362595,0.03471338748931885,0.036675162613391876,0.07653075456619263,0.02184212952852249,-0.052820198237895966,-0.007262267172336578,-0.02185232751071453,-1.7787746555219908e-32,-0.02940983511507511,-0.020567256957292557,-0.06444583088159561,0.13704326748847961,0.0047730752266943455,0.007141380105167627,-0.047553688287734985,0.08816929161548615,0.02336607128381729,-0.0027887120377272367,-0.005878588650375605,-0.04420362040400505,0.019343115389347076,-0.0653843805193901,-0.03061452880501747,0.013552728109061718,0.058233655989170074,0.06770330667495728,0.007428559008985758,-0.0205977875739336,-0.08770652115345001,0.021649859845638275,0.002322418848052621,-0.09696986526250839,-0.06464783847332001,0.10304846614599228,-0.022170964628458023,-0.09362524747848511,-0.0807875245809555,0.008540826849639416,0.016095852479338646,0.0030767396092414856,-0.03982104733586311,0.05285242944955826,-0.05623538792133331,0.041908327490091324,0.06737043708562851,-0.06868772953748703,-0.054488033056259155,-0.0037203992251306772,0.038165632635354996,0.025255225598812103,0.037060923874378204,-0.0035823637153953314,0.05685216933488846,-0.019465884193778038,-0.06086301803588867,0.033727820962667465,-0.02580433338880539,0.03979479521512985,0.11894838511943817,-0.012555546127259731,-0.012739825993776321,-0.03901557996869087,0.07158414274454117,-0.03003614768385887,-0.04424268379807472,-0.06234034150838852,-0.07931346446275711,0.04693702608346939,0.06433851271867752,0.010340685024857521,-0.021792666986584663,-0.03193655237555504,0.010839239694178104,0.005770164541900158,-0.08288823068141937,0.09597178548574448,-0.010988601483404636,0.011498368345201015,0.032860320061445236,-0.00973433069884777,-0.1451587975025177,-0.044815365225076675,-0.006004806142300367,0.03631817176938057,0.037489283829927444,-0.0014668283984065056,0.01189428474754095,-0.03526251018047333,-0.06018160656094551,-0.03631841763854027,-0.03671550378203392,0.0632702186703682,0.01622886210680008,-0.031270578503608704,-0.029572928324341774,0.03892025351524353,0.046724800020456314,0.031037526205182076,0.011293122544884682,0.020815158262848854,-0.033356744796037674,-0.003119570668786764,0.03135336935520172,-6.06144467951708e-8,0.024117732420563698,-0.040843281894922256,-0.02558130957186222,0.0027942536398768425,0.03677278757095337,-0.07143552601337433,-0.03652191162109375,0.057798080146312714,0.016338059678673744,0.07101824134588242,-0.024645427241921425,0.012173826806247234,-0.021705683320760727,0.018968576565384865,0.06359248608350754,0.05135244131088257,0.045515742152929306,0.10490310937166214,-0.08307278156280518,-0.09385651350021362,0.009890969842672348,-0.0016256208764389157,-0.027616973966360092,-0.07506009191274643,-0.028579430654644966,-0.09311164915561676,0.029344698414206505,0.003518118290230632,0.034230735152959824,-0.08231677860021591,0.008134636096656322,0.017764151096343994,-0.017411109060049057,-0.06507411599159241,-0.011154063045978546,0.015486452728509903,-0.06600774824619293,0.04368503764271736,-0.013779762201011181,-0.010525815188884735,-0.012844305485486984,-0.00440636882558465,0.02364843524992466,-0.018903596326708794,-0.03984173387289047,-0.03916051983833313,0.017986057326197624,0.07081310451030731,0.018828177824616432,-0.0634823814034462,-0.06528883427381516,-0.011892643757164478,0.13032878935337067,0.0059606279246509075,-0.06693941354751587,-0.005309273023158312,0.054468799382448196,-0.03220692649483681,0.03884280100464821,-0.0361272469162941,-0.0077086458913981915,0.0717257633805275,0.027689747512340546,0.0014149978524073958]},{"text":"Scimus, ut impios Titanas immanemque turmam Fulmine sustulerit caduco Qui terram inertem, qui mare temperat 45 Ventosum et urbis regnaque tristia Divosque mortalisque turbas Imperio regit unus aequo.","book":"Homage to Catalonia","chapter":17,"embedding":[0.031062310561537743,0.09075203537940979,0.005097276996821165,0.019329925999045372,-0.04332625865936279,-0.025955690070986748,0.08076026290655136,0.0458168126642704,-0.03985625132918358,0.09346789866685867,0.02602520026266575,-0.14234402775764465,0.07082849740982056,-0.046886906027793884,-0.03577425330877304,-0.0710880383849144,-0.026298370212316513,0.05220450088381767,-0.06420139968395233,0.014838150702416897,0.02201293408870697,0.022244170308113098,-0.04376179724931717,0.12228529155254364,-0.08418703824281693,0.0133468983694911,-0.08508893102407455,0.044865403324365616,-0.01702398993074894,-0.04244431480765343,-0.05566120892763138,0.04352482408285141,0.010552747175097466,-0.02002919837832451,0.011200075037777424,-0.00403446052223444,-0.06200895458459854,-0.12506739795207977,-0.025409027934074402,0.05389409884810448,-0.0820208489894867,-0.051581285893917084,-0.01100356224924326,-0.026900194585323334,-0.02470814436674118,0.0375172421336174,0.021992800757288933,0.006816517561674118,0.08444525301456451,0.008020134642720222,-0.0786561518907547,0.007221306674182415,-0.039090391248464584,0.06682528555393219,-0.06875912100076675,0.012895027175545692,-0.020348988473415375,-0.053362101316452026,-0.010509626008570194,-0.08971302211284637,0.028628384694457054,0.08961537480354309,-0.04323188588023186,0.008845420554280281,-0.01738247647881508,0.009988646022975445,-0.00868196040391922,0.01474974025040865,-0.005306129809468985,0.056575410068035126,0.16756771504878998,-0.05908516049385071,0.03194256126880646,0.0000642587838228792,-0.01962462067604065,0.06608051806688309,0.025712210685014725,0.003321717493236065,0.02707671746611595,-0.09085260331630707,0.015796411782503128,-0.024983469396829605,-0.010000165551900864,-0.021928800269961357,0.020602522417902946,0.07796312123537064,0.02297436073422432,0.0125053022056818,0.07159923017024994,0.015985889360308647,0.015228158794343472,0.03882529214024544,-0.047033440321683884,-0.03766053169965744,0.0348440520465374,0.06398595869541168,0.019206199795007706,-0.01006440632045269,0.029256461188197136,-0.04958239942789078,0.005553561262786388,-0.03515723720192909,-0.05469707399606705,0.07981671392917633,-0.07317814975976944,-0.037004414945840836,-0.007764420472085476,-0.060598134994506836,0.023083975538611412,0.054330527782440186,-0.06504813581705093,-0.07579492032527924,0.01371719129383564,-0.01534024067223072,0.023586416617035866,0.0685739740729332,0.007500356528908014,-0.10266876220703125,-0.04332661256194115,-0.0580526627600193,0.019796617329120636,-0.015653766691684723,0.037729982286691666,0.030301399528980255,0.027410615235567093,-0.009984460659325123,-0.006622333079576492,1.9849362343154622e-32,-0.04664194956421852,-0.03373056277632713,0.03655916824936867,0.017072655260562897,-0.0025734591763466597,-0.043333426117897034,-0.09468897432088852,-0.03715778514742851,-0.011938138864934444,-0.037277743220329285,-0.14443300664424896,0.026877950876951218,-0.0067503987811505795,0.00365428626537323,-0.029348237439990044,-0.0001703677698969841,0.0667668879032135,-0.041366953402757645,-0.027590900659561157,-0.0353163443505764,-0.12854522466659546,0.039381787180900574,0.021262217313051224,-0.034918900579214096,0.0270006712526083,0.022899597883224487,-0.028966575860977173,-0.0514717660844326,-0.10225318372249603,0.02172149531543255,0.0885920524597168,-0.05657355859875679,-0.03009958192706108,0.023021787405014038,-0.009134474210441113,-0.0035309246741235256,-0.04373237490653992,0.04901909828186035,-0.02957739681005478,0.0653209239244461,0.044934388250112534,0.02775764837861061,0.05751141160726547,0.028843412175774574,0.07727332413196564,0.004732615780085325,0.0202938299626112,0.07819550484418869,0.10628722608089447,-0.0028375007677823305,-0.006386928725987673,0.06746987998485565,-0.01664578542113304,-0.1005876362323761,0.049031153321266174,0.043974362313747406,0.00037224171683192253,-0.024271288886666298,-0.08265728503465652,-0.009672220796346664,-0.017957087606191635,-0.004550381097942591,0.05021960660815239,-0.011277545243501663,0.025937261059880257,-0.02309056743979454,-0.08140520751476288,0.025147151201963425,0.06985367089509964,0.042806487530469894,-0.11527800559997559,-0.006656282115727663,-0.07406896352767944,0.06276750564575195,0.007747409865260124,-0.004811502993106842,0.06539572030305862,-0.06842949986457825,-0.09600674360990524,0.04075944423675537,-0.06660594046115875,-0.037720609456300735,-0.032557230442762375,-0.0007835613214410841,0.0500018447637558,0.012328834272921085,0.009589268825948238,0.05073070898652077,0.08760044723749161,0.06188207492232323,0.017949001863598824,-0.05180880427360535,-0.018430933356285095,0.006359603721648455,-0.029681049287319183,-1.911883227705291e-32,-0.049670346081256866,-0.03241777420043945,-0.06431587040424347,0.14697329699993134,0.0016531655564904213,-0.0037952016573399305,-0.11185649782419205,0.029493335634469986,-0.0013281286228448153,-0.0158036220818758,0.006796360481530428,-0.023063084110617638,0.09823579341173172,-0.06555787473917007,0.034136343747377396,0.07197078317403793,-0.015951039269566536,-0.04562901332974434,-0.034677814692258835,0.030498310923576355,-0.07356052845716476,-0.025728389620780945,0.010175744071602821,-0.08353672176599503,-0.07875607162714005,0.01873505488038063,-0.028944315388798714,-0.02491256408393383,0.0008024621638469398,0.01574677601456642,0.028371252119541168,0.056640636175870895,-0.039474908262491226,0.062295544892549515,-0.014018766582012177,-0.002023837296292186,0.11579970270395279,-0.02489585243165493,0.013545168563723564,0.02102782391011715,0.02673197165131569,0.05599048733711243,0.07225347310304642,0.034403834491968155,0.012036902830004692,-0.007950610481202602,-0.0021228750701993704,-0.03572366014122963,-0.05283953994512558,0.018628153949975967,0.1265307366847992,-0.09600784629583359,0.01996656507253647,-0.017265653237700462,0.10546401888132095,-0.09242124855518341,-0.08604738861322403,-0.0012574826832860708,-0.07071742415428162,-0.009780162014067173,0.1380334496498108,0.0035964588169008493,-0.005853879731148481,-0.01994812674820423,-0.010925446636974812,0.008135373704135418,-0.06192749738693237,0.07687090337276459,-0.07314698398113251,0.0857095718383789,0.08242951333522797,-0.05826816335320473,-0.10325463861227036,-0.006526073440909386,0.0075338915921747684,0.014313253574073315,0.0030362114775925875,0.042424771934747696,0.03882093355059624,0.02397844009101391,-0.07387617975473404,0.03257186338305473,-0.011740895919501781,-0.0065206983126699924,-0.03312014788389206,-0.009236326441168785,-0.0761466771364212,0.07080205529928207,0.02912202663719654,-0.014969151467084885,-0.0349140428006649,-0.01548265665769577,0.0018000903073698282,-0.04285420477390289,0.02329259179532528,-6.008598063544923e-8,0.027953604236245155,-0.027593513950705528,-0.02038668654859066,0.07442732900381088,-0.02524477057158947,0.00640601571649313,0.024780284613370895,-0.05316125974059105,-0.0034835166297852993,0.09709373861551285,-0.03890499100089073,0.029944276437163353,0.06684910506010056,0.001353890635073185,-0.057244352996349335,0.032208044081926346,0.024047955870628357,0.08092603087425232,-0.005557423457503319,-0.0671788826584816,0.05260150879621506,-0.040316928178071976,-0.056094374507665634,-0.04343874379992485,0.0024708076380193233,-0.023645270615816116,0.008309632539749146,-0.04143821448087692,-0.028700606897473335,-0.020534992218017578,-0.0438738614320755,-0.06973787397146225,-0.04632459580898285,-0.13165265321731567,-0.03505201265215874,0.04649767279624939,-0.002827971475198865,0.05870600789785385,-0.037313904613256454,-0.03489503636956215,0.04677179455757141,0.03349718078970909,0.004450794775038958,-0.04836445674300194,-0.04032352939248085,-0.06245313584804535,0.03470170125365257,-0.02099693939089775,0.006568402051925659,0.00886851828545332,0.011459759436547756,0.011130258440971375,0.11701947450637817,0.00802796334028244,-0.05771460384130478,0.0009340542601421475,0.05519267916679382,0.04462186619639397,-0.027468230575323105,0.018356487154960632,-0.005804701242595911,0.02974659763276577,-0.03140616416931152,-0.02856685407459736]},{"text":"Sed quid Typhoeus et validus Mimas, Aut quid minaci Porphyrion statu, Quid Rhoetus evolsisque truncis 55 Enceladus iaculator audax Contra sonantem Palladis aegida Possent ruentes?","book":"Homage to Catalonia","chapter":17,"embedding":[-0.022026801481842995,0.07931594550609589,-0.02904880791902542,-0.08890922367572784,-0.09094176441431046,-0.006706461310386658,0.08786974847316742,0.04236030951142311,0.017663268372416496,0.10800471156835556,0.07318519800901413,-0.03709230199456215,0.030474349856376648,-0.02735970728099346,-0.04650487005710602,-0.06418805569410324,-0.05526433885097504,0.04564353823661804,-0.02863529697060585,0.03873234614729881,0.06561888754367828,-0.01711241528391838,0.003695381572470069,-0.005834098905324936,-0.03589895740151405,0.03680064529180527,-0.03750906139612198,-0.04314809292554855,0.018350858241319656,-0.0476444773375988,0.04409405216574669,0.06013188138604164,0.053604856133461,-0.07301564514636993,0.04796811193227768,-0.02120635099709034,0.06837838888168335,-0.03756393492221832,0.08297684043645859,0.056214068084955215,-0.07355019450187683,-0.09295278787612915,-0.06328746676445007,0.013398271054029465,-0.057446159422397614,-0.035410504788160324,-0.012971056625247002,0.11247935891151428,-0.021997816860675812,0.030344050377607346,-0.017388487234711647,-0.03551683574914932,-0.017146509140729904,0.016880718991160393,-0.02403256483376026,-0.01062838640064001,0.0249775517731905,-0.059971705079078674,0.026799621060490608,-0.08003562688827515,0.037907492369413376,0.10527316480875015,-0.01682724989950657,-0.0008903650450520217,-0.021643247455358505,-0.09400729835033417,-0.07149581611156464,-0.05650816485285759,-0.028357625007629395,0.04900035634636879,0.09847719967365265,-0.023593910038471222,-0.05469749495387077,0.002708177315071225,-0.0627465695142746,0.06843050569295883,0.002609743271023035,-0.08912359178066254,0.025271030142903328,-0.08708491921424866,-0.05547966808080673,0.030542729422450066,0.03554457798600197,-0.033466022461652756,0.0307636596262455,-0.02373606152832508,0.014390038326382637,0.02119860239326954,0.05365307256579399,-0.00300941476598382,0.07815932482481003,-0.026463856920599937,0.006392867770045996,-0.03235712647438049,0.010405554436147213,-0.013529788702726364,-0.03175697475671768,0.007250486873090267,-0.015223197638988495,0.010037524625658989,0.0077999006025493145,0.020343085750937462,0.013374888338148594,0.05901819095015526,-0.08980929106473923,0.002282771049067378,-0.04858432337641716,-0.01247340627014637,0.07063397020101547,-0.0117190508171916,-0.03262673318386078,-0.10348301380872726,-0.02792578563094139,-0.01064507570117712,-0.030135542154312134,-0.0075654457323253155,-0.036212362349033356,-0.030330227687954903,-0.024483155459165573,-0.04697032645344734,0.06492697447538376,0.017307542264461517,-0.0006956763681955636,0.04438161104917526,0.06257882714271545,-0.021595202386379242,0.023947356268763542,1.7727314390644134e-32,-0.029157748445868492,-0.03169718757271767,-0.050094470381736755,0.018296854570508003,-0.04748519882559776,0.012545985169708729,-0.03848331421613693,-0.007725860923528671,-0.004078670870512724,-0.016492580994963646,-0.16066361963748932,0.0059931292198598385,-0.0049979472532868385,0.022424951195716858,0.004044963512569666,0.06220829114317894,0.04656163230538368,-0.06438407301902771,0.02198810875415802,0.012384007684886456,-0.006142844446003437,0.05172424390912056,0.03453311324119568,-0.022606030106544495,0.09754998981952667,0.01357979141175747,0.007747672498226166,-0.02818773314356804,0.025450078770518303,0.04008420929312706,0.11290501803159714,-0.09126641601324081,-0.009851127862930298,0.042822521179914474,0.006799215916544199,0.030522439628839493,0.08261738717556,-0.018219348043203354,-0.12604281306266785,-0.061743948608636856,-0.06479217857122421,0.02806740812957287,0.12190917134284973,0.038982413709163666,0.0386863574385643,0.006264274939894676,0.0358261875808239,0.016031786799430847,0.08850166946649551,0.007720275782048702,-0.0268854983150959,-0.018083833158016205,-0.023426271975040436,-0.015089305117726326,-0.013630255125463009,-0.0213264562189579,-0.11628483980894089,0.12077353149652481,0.02573407255113125,-0.009557701647281647,0.05656269192695618,0.001282694167457521,0.054883621633052826,0.005035502836108208,0.010722328908741474,-0.029421115294098854,0.006922195199877024,-0.05906732752919197,0.046403855085372925,0.07007620483636856,-0.060336604714393616,-0.0501406267285347,0.014977330341935158,0.022745992988348007,-0.018245691433548927,-0.008355916477739811,0.048790983855724335,-0.062426067888736725,-0.06874354928731918,-0.04431246966123581,-0.08649669587612152,-0.034234419465065,-0.012347658164799213,0.004322972614318132,0.10232411324977875,-0.02672330103814602,-0.04044223576784134,-0.01887613534927368,0.03819991275668144,0.0638546347618103,-0.006637762766331434,0.038946617394685745,-0.017559893429279327,0.019042985513806343,-0.019865108653903008,-1.6767048647353592e-32,-0.056313544511795044,-0.032746464014053345,-0.09991515427827835,0.06906113773584366,-0.05535244196653366,0.051567450165748596,-0.044683437794446945,0.021324606612324715,-0.02565508894622326,-0.07918605208396912,-0.06992274522781372,-0.048289764672517776,-0.0038521389942616224,-0.02762294001877308,-0.03498409315943718,0.023147257044911385,0.06670031696557999,-0.009635246358811855,-0.03530018776655197,0.032601963728666306,-0.09692229330539703,-0.004603898618370295,0.007234485354274511,0.02203441597521305,0.018594302237033844,-0.019616728648543358,0.05082743987441063,-0.0718320906162262,-0.09854213148355484,-0.004207083024084568,0.03480178490281105,-0.006561180576682091,-0.0213035698980093,0.1250116527080536,-0.06418325752019882,-0.004632093943655491,0.13230325281620026,-0.01049896888434887,-0.02303880825638771,0.05256112664937973,-0.0038753454573452473,0.03783384710550308,0.10376469790935516,0.02693222463130951,-0.026893790811300278,-0.07308036834001541,-0.11837153136730194,-0.014652249403297901,-0.04088109731674194,0.003119470551609993,0.10011056810617447,-0.053760726004838943,0.04590604081749916,-0.028592834249138832,0.060804110020399094,-0.002007602946832776,0.029858911409974098,-0.01642777770757675,-0.01642746478319168,0.04961608350276947,0.10849707573652267,0.08331429958343506,0.018051689490675926,-0.005409885663539171,0.08299104869365692,0.00986836850643158,-0.0981154590845108,0.10304002463817596,-0.002257785527035594,0.09111320227384567,0.07284019142389297,-0.11241687089204788,-0.13317997753620148,-0.016067026183009148,0.021997220814228058,-0.004795417655259371,-0.02041735127568245,-0.018561914563179016,0.05103461816906929,-0.022259851917624474,0.013157681562006474,-0.035804104059934616,-0.021002426743507385,-0.0423663929104805,-0.020844921469688416,-0.07546234130859375,0.03532450646162033,0.06226246431469917,0.020941076800227165,0.048499055206775665,0.04028113931417465,-0.01655072346329689,0.031010480597615242,-0.061743851751089096,0.0318666473031044,-5.352920950940643e-8,-0.019178351387381554,-0.06963688880205154,-0.023531481623649597,0.03230850771069527,-0.004643653519451618,-0.06779111176729202,0.05317533761262894,-0.06005485728383064,-0.02474392205476761,0.003644486190751195,0.049670375883579254,-0.00889541395008564,-0.05179332196712494,-0.03626973181962967,0.07798337191343307,0.0306053776293993,0.024103300645947456,0.06815292686223984,-0.08435449749231339,-0.05722489580512047,0.06708592921495438,0.02880801446735859,-0.12295151501893997,-0.001957671018317342,-0.015506196767091751,-0.021178392693400383,0.030120324343442917,-0.02322658896446228,0.027095286175608635,-0.000813039019703865,-0.02164020575582981,0.036420900374650955,-0.028196966275572777,-0.06609656661748886,0.03390063717961311,0.06596970558166504,-0.03805369511246681,0.01744122989475727,-0.009575667791068554,0.040420688688755035,0.004817503038793802,0.021313020959496498,-0.0018600967014208436,-0.0992092564702034,0.03251756355166435,-0.06087534502148628,-0.035469524562358856,-0.00938565656542778,-0.008161602541804314,-0.0007996703498065472,-0.024969279766082764,0.031216749921441078,0.09960277378559113,0.027517791837453842,-0.07871195673942566,-0.0031159145291894674,0.027280472218990326,-0.0018374916398897767,-0.04004734754562378,-0.018132284283638,0.11037947237491608,0.06054959446191788,0.07036516070365906,-0.03753119707107544]},{"text":"Vis consili expers mole ruit sua: 65 Vim temperatam di quoque provehunt In maius; idem odere viris Omne nefas animo moventis.","book":"Homage to Catalonia","chapter":17,"embedding":[-0.02236376702785492,0.07113787531852722,-0.024377407506108284,0.08319833874702454,-0.053805842995643616,0.044764913618564606,0.051669202744960785,0.09308768808841705,-0.016855189576745033,0.011770353652536869,0.053085993975400925,-0.12579943239688873,0.02801807038486004,-0.027080226689577103,-0.055210769176483154,-0.0930372029542923,-0.010203741490840912,0.06142931804060936,-0.011444294825196266,-0.013446350581943989,-0.013002236373722553,-0.06848278641700745,-0.010962674394249916,0.029770147055387497,-0.07273168861865997,0.040309470146894455,-0.024160923436284065,0.01720864698290825,0.04483219236135483,-0.011375085450708866,-0.02085679955780506,0.07764364778995514,0.027027906849980354,-0.00845703948289156,0.004028103780001402,0.03360111266374588,-0.028117673471570015,-0.07482379674911499,-0.005413203965872526,0.024229517206549644,-0.035943128168582916,-0.03921164199709892,-0.07024354487657547,-0.017741093412041664,-0.012155003845691681,-0.007889161817729473,-0.0723521038889885,0.058991849422454834,0.03276239335536957,-0.0809604823589325,-0.14037363231182098,0.029481466859579086,-0.035195015370845795,0.0710822194814682,-0.08588679879903793,-0.07744640111923218,0.04154794663190842,-0.06061486899852753,0.04543427750468254,-0.026090141385793686,0.09284080564975739,0.04814460873603821,-0.02667827531695366,-0.028535516932606697,-0.031129933893680573,-0.029005005955696106,0.07901318371295929,-0.0062416610307991505,-0.04320301115512848,0.09981013089418411,0.06528192013502121,-0.030012473464012146,-0.033157676458358765,0.01421028096228838,-0.012183164246380329,0.0032522850669920444,-0.0245092511177063,-0.014034055173397064,0.010479371063411236,-0.10206452757120132,0.05027031898498535,-0.010490592569112778,-0.008374960161745548,-0.019255122169852257,0.002575282007455826,0.0025097664911299944,0.07085686177015305,-0.013284995220601559,0.04657231643795967,-0.03608454391360283,-0.03502878174185753,0.0416092574596405,-0.11344162374734879,-0.06820313632488251,0.07197301834821701,0.011700189672410488,-0.10450667142868042,0.012377009727060795,0.09216051548719406,-0.023634295910596848,-0.03711934760212898,-0.017981618642807007,-0.10674779862165451,0.09839511662721634,-0.08574436604976654,-0.047667764127254486,-0.005924206227064133,-0.037027664482593536,-0.008587208576500416,0.09633693844079971,-0.04155781865119934,-0.09301389753818512,0.023932117968797684,-0.010600685141980648,0.06404837965965271,0.012259052135050297,-0.03924238309264183,-0.00133509561419487,-0.03339841961860657,0.031007764860987663,0.10900601744651794,0.018024083226919174,0.004581183660775423,0.01749403588473797,0.01519741304218769,-0.05141538381576538,0.05721525847911835,9.62388024872555e-33,0.004612678661942482,-0.09520888328552246,-0.02598228119313717,0.020278355106711388,-0.014921307563781738,-0.01485331729054451,-0.06649833172559738,-0.0339183434844017,-0.010419821366667747,0.024477487429976463,-0.014111489057540894,0.0182510856539011,-0.015053605660796165,0.002780182985588908,0.028422502800822258,0.07238247245550156,0.129005566239357,-0.004900375381112099,0.0024812831543385983,-0.06784803420305252,-0.06800269335508347,0.015376664698123932,0.018214324489235878,-0.042729008942842484,0.014122730121016502,0.003929046913981438,-0.02758406475186348,-0.0024435461964458227,-0.037103667855262756,-0.012771399691700935,0.07148642838001251,0.01642805151641369,-0.020820163190364838,0.0437123104929924,-0.052587587386369705,-0.010327204130589962,-0.0418584942817688,-0.049662571400403976,-0.01762249879539013,-0.003324443707242608,0.03849676251411438,0.0692019909620285,0.05726541206240654,-0.009299308061599731,0.018611084669828415,0.08568171411752701,0.02449808642268181,-0.0013756736880168319,0.042417194694280624,0.017038963735103607,-0.013445861637592316,0.03277091681957245,-0.09695697575807571,-0.05921958014369011,0.02807730622589588,0.007853968068957329,-0.02280392311513424,0.07012787461280823,-0.05520862713456154,0.010633358731865883,-0.08755014091730118,0.0008318473701365292,0.0049050794914364815,0.009047562256455421,-0.016995958983898163,-0.044297877699136734,-0.08814051002264023,0.02499973773956299,0.022166181355714798,0.053410373628139496,-0.10123088210821152,0.0316799022257328,-0.03218715637922287,-0.0031457103323191404,-0.03740202262997627,-0.013470972888171673,0.06687348335981369,-0.0167720764875412,-0.06811394542455673,0.008177708834409714,-0.0911877229809761,-0.0036926274187862873,-0.01763933151960373,-0.03673027083277702,0.0754099190235138,0.016976872459053993,-0.04144100099802017,0.004438976291567087,0.06102827936410904,0.05230095237493515,0.016212118789553642,-0.08336462825536728,-0.00627588527277112,0.06124159321188927,0.018120940774679184,-1.1397236169163837e-32,0.0038488907739520073,0.01678774133324623,-0.07723324745893478,0.11096654087305069,-0.01956062577664852,0.048801228404045105,-0.03081558831036091,0.06709873676300049,-0.033978886902332306,-0.06973947584629059,-0.038185808807611465,-0.0344439335167408,0.07508491724729538,0.010924648493528366,-0.012820030562579632,0.04545403644442558,0.08496072888374329,0.010042163543403149,0.011436494998633862,0.014202916994690895,-0.061005719006061554,0.0138859236612916,0.03952141851186752,0.06144832819700241,-0.002870537806302309,-0.03777766972780228,0.08708669245243073,-0.043713413178920746,-0.1537167727947235,-0.022037407383322716,0.06405181437730789,-0.04685373976826668,-0.07235691696405411,0.0534469373524189,0.012620287947356701,-0.061975013464689255,0.16026371717453003,-0.05562848970293999,0.030941031873226166,0.016060015186667442,-0.053041987121105194,0.09804019331932068,0.11159849911928177,-0.012627020478248596,0.014479936100542545,-0.02676362544298172,0.056282203644514084,-0.02803243137896061,-0.060625359416007996,-0.05335330218076706,0.0958348736166954,-0.05737283080816269,0.00009971547842724249,-0.06027868762612343,0.012596530839800835,-0.07600807398557663,-0.042782265692949295,0.015170502476394176,-0.04571954905986786,0.013685251586139202,0.18115895986557007,0.07030010968446732,-0.0390457920730114,0.010955427773296833,-0.022699542343616486,0.011452377773821354,-0.0310846995562315,-0.0056906635873019695,0.04184940829873085,-0.028981897979974747,0.08152056485414505,-0.08915980160236359,-0.0615723580121994,0.030691396445035934,-0.07472050189971924,-0.07011225074529648,0.010457124561071396,0.003853917820379138,0.013190999627113342,0.06172027066349983,-0.056154292076826096,0.05478089675307274,-0.07142539322376251,-0.009562143124639988,-0.014231192879378796,0.0018389602191746235,0.02210688218474388,-0.0006186178070493042,0.05534465238451958,0.00031718017999082804,-0.02564825676381588,-0.06892433762550354,0.029803330078721046,-0.07169736921787262,0.03760920464992523,-4.0960745906204465e-8,0.039690110832452774,-0.0398867130279541,0.003011561231687665,0.033802371472120285,0.07027828693389893,-0.05557636544108391,-0.04651929438114166,-0.07141408324241638,0.0031799422577023506,0.06173321232199669,0.024581987410783768,-0.027947159484028816,-0.006294844672083855,0.04926536604762077,0.009540676139295101,0.0002605970366857946,0.044415298849344254,0.0488252192735672,-0.02673901803791523,-0.03336626663804054,0.0789160430431366,-0.06040242686867714,-0.027615806087851524,0.00835561752319336,-0.012340019457042217,-0.0025198261719197035,0.00945421401411295,-0.06326568126678467,-0.005324672441929579,-0.02550019882619381,-0.017696555703878403,-0.027310218662023544,0.0639306977391243,-0.009720963425934315,0.03640349209308624,0.033871497958898544,0.1175292432308197,0.08805805444717407,-0.018081963062286377,0.05900241807103157,0.06475136429071426,-0.02063271403312683,0.06097607687115669,-0.013486575335264206,-0.09664768725633621,0.027605732902884483,-0.03323189541697502,-0.04753855615854263,-0.014937871135771275,0.024048401042819023,0.06297808885574341,0.013729631900787354,0.04263206943869591,0.12824945151805878,-0.02878987044095993,-0.01752919703722,0.027874814346432686,0.044264208525419235,-0.018676752224564552,-0.00664002588018775,0.031065506860613823,0.004808567464351654,-0.04088225215673447,0.02749830298125744]},{"text":"Iniecta monstris Terra dolet suis Maeretque partus fulmine luridum Missos ad Orcum; nec peredit 75 Impositam celer ignis Aetnam.","book":"Homage to Catalonia","chapter":17,"embedding":[0.02880457602441311,0.11251553148031235,0.034182824194431305,0.006557502783834934,0.04070897027850151,-0.046753447502851486,0.043241169303655624,0.08697632700204849,0.01796960085630417,0.08301572501659393,0.055481672286987305,-0.11790864169597626,-0.01756053790450096,-0.015607567504048347,-0.0629153922200203,-0.05019551143050194,-0.031455349177122116,0.06733489781618118,-0.05946534499526024,0.03530435264110565,0.044435951858758926,0.04848795384168625,-0.029697904363274574,0.05385400727391243,-0.0683380588889122,-0.025324534624814987,-0.12485210597515106,0.04206428676843643,0.020236074924468994,-0.10823868960142136,-0.006951611023396254,0.10162336379289627,0.026245655491948128,0.022138172760605812,0.03877914324402809,-0.0018532357644289732,-0.004743897821754217,-0.10999613255262375,0.07288308441638947,0.014613119885325432,-0.07882615178823471,-0.006565045565366745,-0.06239601969718933,-0.01064816489815712,-0.07695168256759644,0.026615940034389496,-0.05049419775605202,0.06216779723763466,0.043740250170230865,-0.05557621642947197,-0.045696921646595,-0.06872062385082245,-0.03223496302962303,0.05906771495938301,-0.0347977951169014,0.04369458556175232,0.009779312647879124,-0.04342785105109215,-0.016427066177129745,-0.06989935785531998,-0.04135294258594513,0.06683695316314697,-0.022654587402939796,-0.022174887359142303,-0.043690964579582214,0.02677578292787075,-0.01783694326877594,0.0021979797165840864,-0.022159362211823463,-0.04001058638095856,0.1440306305885315,-0.014794837683439255,0.003942298237234354,0.08747994899749756,0.008077030070126057,0.07109182327985764,0.043240901082754135,0.002322298474609852,0.03421575576066971,-0.09492422640323639,-0.04336471110582352,0.03137892484664917,-0.0354299396276474,-0.035604141652584076,0.014895123429596424,-0.031843192875385284,-0.008624962531030178,0.049663741141557693,0.09084983170032501,0.004654210060834885,-0.01109436433762312,0.023636391386389732,-0.009782473556697369,0.003141582477837801,0.01491667702794075,0.07545611262321472,0.03378594294190407,-0.03380464017391205,0.040630973875522614,-0.016356343403458595,-0.0023889632429927588,-0.012920761480927467,-0.060343630611896515,0.024140169844031334,-0.0930069088935852,-0.0930231511592865,-0.000501145317684859,-0.08027725666761398,0.030928030610084534,0.03499686345458031,-0.07307573407888412,-0.0942498967051506,0.008557156659662724,-0.08352597057819366,-0.008447500877082348,-0.07463959604501724,0.0519687756896019,-0.046880900859832764,-0.026896098628640175,-0.05977870523929596,0.05691586434841156,-0.009069838561117649,-0.01526786107569933,0.030362967401742935,0.028548745438456535,-0.06156118959188461,0.04010915383696556,1.5109107905066821e-32,-0.019926654174923897,-0.07808765023946762,-0.005099473521113396,0.09016235917806625,0.04200901463627815,0.004977571312338114,-0.04231110215187073,-0.02791954018175602,-0.023278454318642616,-0.0715307891368866,-0.15391121804714203,-0.08024575561285019,-0.10225119441747665,0.004841313231736422,-0.014107825234532356,0.002351097296923399,0.10549081861972809,-0.05342939868569374,-0.06250418722629547,0.007281493861228228,-0.05889465659856796,0.025444861501455307,-0.03456041216850281,-0.029497450217604637,0.09063578397035599,0.050864819437265396,-0.03928389772772789,-0.12076971679925919,-0.024506743997335434,0.04246823489665985,0.09327968209981918,-0.062258921563625336,-0.08530870825052261,0.017776593565940857,-0.05064237117767334,0.014514243230223656,-0.00546489330008626,-0.030716145411133766,-0.09214653819799423,0.01928587816655636,0.01615607924759388,0.06244894117116928,0.04899052903056145,0.0057094525545835495,0.0852418839931488,0.04991341382265091,0.08797971904277802,0.07246395945549011,0.12540054321289062,0.05335018038749695,0.014500311575829983,0.005365241318941116,-0.002420734614133835,-0.06644498556852341,0.009325169958174229,0.06858207285404205,-0.048692118376493454,-0.02719849906861782,-0.02472628839313984,0.034405142068862915,0.05820547044277191,0.02764885500073433,0.0013803881593048573,-0.04714403674006462,0.010275177657604218,-0.0823206827044487,-0.034810733050107956,-0.000801016460172832,0.04637174680829048,0.011681896634399891,-0.128037229180336,-0.06429126113653183,-0.04377653822302818,0.06390459090471268,-0.06473886221647263,0.047329407185316086,0.05358503386378288,-0.07483523339033127,-0.0713697150349617,-0.024567093700170517,-0.05684511363506317,-0.06702499091625214,-0.0560210682451725,0.014460011385381222,0.05787719786167145,0.04684247076511383,0.01870967075228691,0.0402887687087059,0.07001803815364838,0.011738693341612816,0.011356527917087078,-0.01574927754700184,-0.02358287014067173,-0.02710595726966858,-0.03395218774676323,-1.493484821439711e-32,-0.029245106503367424,-0.0723114088177681,-0.01607161946594715,0.10219328105449677,-0.01400261651724577,-0.02338317595422268,-0.10483238101005554,0.04457604140043259,0.038340531289577484,-0.017519643530249596,-0.0637250617146492,-0.0703200176358223,0.05703092738986015,-0.06030670180916786,-0.048314936459064484,0.09691506624221802,0.04478250816464424,-0.02195671945810318,0.0000612132134847343,0.056907542049884796,-0.09406153112649918,0.044791270047426224,0.02258775383234024,-0.04159077629446983,-0.043429285287857056,0.024205930531024933,-0.004414436873048544,-0.017164532095193863,-0.03286445513367653,0.012133199721574783,0.0464375838637352,0.028056925162672997,0.02112692967057228,0.0007825769716873765,-0.012865609489381313,-0.03206772729754448,0.13869008421897888,-0.056301847100257874,-0.0007413669372908771,-0.03154943883419037,-0.004672137554734945,0.03786942735314369,0.07847733050584793,0.025754038244485855,-0.013471793383359909,-0.014354187995195389,-0.024863723665475845,0.00588515680283308,0.008169848471879959,0.06053915247321129,0.10415411740541458,-0.043503593653440475,0.0336109884083271,0.010456188581883907,0.07515375316143036,-0.11145161092281342,-0.045258719474077225,-0.011888689361512661,-0.04339686408638954,0.009572670795023441,0.09233544766902924,0.024842487648129463,-0.058264218270778656,0.041442759335041046,0.029350539669394493,0.010174049064517021,-0.08678808063268661,0.028744753450155258,-0.0053007230162620544,-0.014093071222305298,0.023617709055542946,-0.053743500262498856,-0.11701936274766922,-0.049232494086027145,0.003982654307037592,0.04627075418829918,-0.01763167418539524,-0.017030149698257446,0.07090717554092407,0.028518786653876305,-0.04317501559853554,-0.013328195549547672,-0.039594803005456924,-0.01747286505997181,-0.021750636398792267,-0.05897805094718933,0.014031903818249702,0.042055729776620865,-0.013512617908418179,-0.01834780164062977,-0.037007834762334824,0.01627136766910553,0.0698961541056633,0.010067691095173359,0.0035642378497868776,-4.838998535205974e-8,0.04582710191607475,0.00960477814078331,0.009922199882566929,0.005762490443885326,0.05527772009372711,-0.06231927126646042,0.03323782980442047,0.05842350050806999,0.0021451320499181747,0.08469206094741821,-0.055007703602313995,0.0326298326253891,0.025120198726654053,0.003336099209263921,0.06942695379257202,-0.016779910773038864,0.002998181153088808,0.04336966574192047,-0.0404038280248642,-0.03243022412061691,0.021081145852804184,0.016102004796266556,-0.09607741981744766,-0.04765492305159569,0.009025699459016323,0.00567759620025754,0.046091847121715546,-0.027558457106351852,0.03372436389327049,0.016351139172911644,0.021694008260965347,0.021305909380316734,0.02073611132800579,-0.050743501633405685,-0.011560200713574886,0.05085252225399017,0.004079318605363369,0.018325673416256905,-0.036980900913476944,-0.010222461074590683,0.07358228415250778,-0.019983496516942978,0.1175435334444046,-0.07110787183046341,0.014984584413468838,-0.05996386334300041,-0.015088646672666073,0.01901005581021309,-0.0054406956769526005,-0.033936891704797745,0.01856895536184311,-0.033617742359638214,0.041950635612010956,0.04179583862423897,-0.02611602656543255,-0.04743295535445213,0.06730068475008011,0.001061324612237513,0.025419006124138832,0.01181380357593298,0.026514753699302673,0.023631146177649498,0.0594252347946167,0.03816736117005348]},{"text":"Caelo tonantem credidimus Iovem Regnare; praesens divus habebitur Augustus adiectis Britannis Imperio gravibusque Persis.","book":"Homage to Catalonia","chapter":17,"embedding":[0.016997484490275383,0.058491140604019165,-0.03460301458835602,0.025650424882769585,-0.15157978236675262,0.016413485631346703,0.09173461049795151,0.08147264271974564,0.014208918437361717,0.10070691257715225,0.05746548995375633,-0.08344504982233047,0.03795639052987099,-0.026631368324160576,-0.10628144443035126,-0.044710684567689896,0.027592653408646584,0.06514491140842438,-0.03378339484333992,0.015848007053136826,0.027169693261384964,0.013314870186150074,0.03905163332819939,0.07054971903562546,-0.11660435050725937,0.046130262315273285,-0.05682404339313507,0.03365478292107582,0.06299398094415665,-0.08163207769393921,-0.08051780611276627,0.04430392384529114,0.08807840943336487,0.001832689973525703,0.007481251377612352,0.033829838037490845,-0.029953178018331528,-0.0440959669649601,0.013293939642608166,0.018253810703754425,-0.047620415687561035,-0.053483571857213974,-0.01012580469250679,-0.0032715678680688143,-0.06803290545940399,-0.026271263137459755,-0.04036547243595123,0.12757307291030884,0.012267198413610458,0.03381705656647682,-0.027075739577412605,-0.07967522740364075,-0.05891071632504463,0.032511286437511444,-0.06405554711818695,0.051642972975969315,-0.007727699354290962,-0.015144485980272293,0.020155275240540504,-0.09932500869035721,-0.007917314767837524,0.07586269080638885,-0.02576703391969204,0.03084718994796276,-0.07280047237873077,-0.005410636309534311,-0.03804962709546089,-0.001723499153740704,0.015053261071443558,0.03690250590443611,0.12318292260169983,-0.08401467651128769,-0.029579298570752144,0.010530753992497921,0.0025341766886413097,0.014151757583022118,-0.002632375806570053,-0.0475425086915493,-0.03680972009897232,-0.0692201629281044,-0.02347424253821373,0.040399760007858276,0.008580583147704601,-0.01905917376279831,0.026775652542710304,-0.008086705580353737,-0.019687410444021225,-0.03962138667702675,-0.010151400230824947,-0.06976134330034256,-0.02093685045838356,-0.010700516402721405,-0.014497601427137852,-0.05050170049071312,-0.005484182853251696,0.10156174749135971,-0.03536268696188927,-0.03802990913391113,-0.0072947535663843155,-0.022984487935900688,0.04011903330683708,0.01416765246540308,0.026735732331871986,0.10640843957662582,-0.0451999269425869,-0.04063485562801361,-0.06953941285610199,-0.021488260477781296,0.010650127194821835,-0.05586567893624306,-0.03705480322241783,-0.059781573712825775,0.00419383030384779,0.03750818595290184,0.045810211449861526,-0.010377611964941025,-0.00805368646979332,-0.014810366556048393,-0.008826833218336105,-0.03083181008696556,-0.0038169999606907368,-0.022343598306179047,-0.04432755708694458,-0.13715335726737976,0.045781489461660385,-0.009842745028436184,-0.0066815330646932125,1.6299989476941373e-32,-0.030366327613592148,-0.06580782681703568,-0.05741073936223984,-0.029561489820480347,-0.017197713255882263,-0.054126664996147156,-0.053681887686252594,0.026411814615130424,0.02156965620815754,-0.058067403733730316,-0.08660777658224106,-0.029482992365956306,0.0017284288769587874,0.03351464867591858,0.014741829596459866,0.08077843487262726,0.055518604815006256,-0.03228190541267395,0.0213799886405468,0.011010533198714256,-0.061919063329696655,0.051762163639068604,0.050071824342012405,-0.05718560516834259,0.011387825943529606,0.06681724637746811,0.0371733196079731,-0.01750701107084751,-0.012391180731356144,-0.009024916216731071,0.12343958020210266,0.017308494076132774,-0.031458888202905655,-0.008156265132129192,0.001473937532864511,0.0207521952688694,0.08307381719350815,-0.01894460991024971,-0.09324668347835541,0.015074006281793118,0.0008816475747153163,0.02189144678413868,0.014414514414966106,-0.06641793996095657,0.07433114945888519,-0.006822998635470867,-0.006900146137923002,0.0018723212415352464,0.08767899125814438,0.05268101394176483,0.0569215752184391,0.03487164527177811,0.029090994969010353,-0.022086892277002335,-0.021977320313453674,0.06826969236135483,-0.02517489530146122,0.058332670480012894,-0.02111569419503212,-0.04573462903499603,0.0207519568502903,0.02435758337378502,0.10222647339105606,0.08408214896917343,0.07790526747703552,-0.05995037406682968,-0.08062862604856491,-0.07211828976869583,-0.0027064355090260506,0.010961106047034264,-0.07982631027698517,-0.04889179766178131,-0.03398684039711952,0.049554795026779175,0.02580290101468563,-0.004309770185500383,0.056069329380989075,-0.0622643381357193,-0.06272067874670029,-0.0026737984735518694,-0.06336260586977005,0.015000018291175365,0.040306854993104935,0.02173677645623684,0.11336740106344223,-0.03860989212989807,-0.048923950642347336,-0.03193367272615433,0.12462678551673889,0.044974200427532196,-0.025330090895295143,0.011942380107939243,-0.09519847482442856,0.016580596566200256,-0.07583140581846237,-1.4448722525614553e-32,-0.015137975104153156,-0.031113941222429276,-0.03308357670903206,0.14056576788425446,0.008362273685634136,0.04802592471241951,-0.15898531675338745,0.08578766882419586,0.025910992175340652,-0.050923313945531845,-0.0019493034342303872,0.004409542307257652,0.06349730491638184,-0.005930234678089619,0.027063002809882164,0.06195523589849472,0.013788004405796528,0.00875911209732294,-0.049779847264289856,0.025066467002034187,-0.04064740985631943,-0.010303271934390068,-0.020119328051805496,-0.06619592010974884,-0.017886219546198845,-0.01826636493206024,0.03946596756577492,-0.04102480039000511,-0.09828390181064606,-0.0043612634763121605,0.07212203741073608,0.04044729843735695,-0.01297079585492611,0.007102014031261206,-0.045723140239715576,-0.00378611171618104,0.05706434324383736,-0.014845947735011578,0.011131112463772297,0.02931615337729454,0.005697847809642553,0.006920340936630964,0.12501388788223267,0.012578771449625492,0.06384419649839401,-0.052459392696619034,-0.026502273976802826,0.007295491173863411,-0.06324154138565063,0.05270905792713165,0.06118365377187729,-0.013204744085669518,0.0015252662124112248,-0.006398746278136969,0.1192830353975296,-0.01928119920194149,-0.04028969630599022,-0.03667912259697914,0.02223951369524002,0.005034757312387228,0.04668525978922844,0.005774627905339003,-0.030817868188023567,-0.03338741138577461,0.12927909195423126,0.058210354298353195,-0.07131841033697128,0.06547025591135025,-0.010962552390992641,0.060610584914684296,0.08071602880954742,-0.10784313082695007,-0.10405002534389496,0.04462660476565361,-0.005394685082137585,0.025289712473750114,-0.07290181517601013,-0.01502345222979784,0.03407527133822441,0.030995430424809456,-0.01486128382384777,-0.05963699892163277,0.058891311287879944,-0.0038592973724007607,-0.05240966007113457,-0.01680208370089531,-0.030938122421503067,-0.008658506907522678,-0.003306302707642317,0.005135467275977135,0.057944875210523605,-0.02047950029373169,0.005908171646296978,-0.08949104696512222,0.04312894120812416,-4.9566320825533694e-8,0.053509727120399475,-0.02767973579466343,-0.004298023879528046,0.02262800559401512,0.018728338181972504,-0.039401907473802567,0.03684525191783905,-0.003576861461624503,0.007453200872987509,0.05635669454932213,-0.09482013434171677,-0.04636178910732269,-0.008814730681478977,0.036998871713876724,0.01607087440788746,0.05267547816038132,0.03764056786894798,0.05755654722452164,-0.08056646585464478,-0.021628720685839653,0.0004974394687451422,-0.03429951146245003,0.0035099489614367485,0.00012258302012924105,-0.00944571290165186,-0.06992774456739426,0.05278049409389496,-0.05719725415110588,-0.00722395209595561,0.020581461489200592,-0.017632385715842247,0.090787872672081,-0.0025392475072294474,-0.0919942706823349,-0.016312621533870697,0.050725508481264114,0.0982101559638977,-0.010307151824235916,0.014832718297839165,-0.036616869270801544,0.0389164499938488,0.027761472389101982,0.0599011667072773,-0.014560946263372898,-0.009717364795506,-0.06771473586559296,0.013820904307067394,-0.023033615201711655,0.020605960860848427,-0.12789222598075867,-0.034621208906173706,0.008339190855622292,0.10270481556653976,-0.008854944258928299,-0.07819493860006332,0.00973898358643055,0.08795272558927536,-0.0048944721929728985,-0.010472390800714493,0.014469772577285767,0.052191924303770065,0.0855276808142662,0.0041313571855425835,-0.0422808863222599]},{"text":"Consenuit socerorum in armis Sub rege Medo Marsus et Apulus, Anciliorum et nominis et togae 10 Oblitus aeternaeque Vestae, Incolumi Iove et urbe Roma?","book":"Homage to Catalonia","chapter":17,"embedding":[0.0031847518403083086,0.11467926949262619,-0.008942576125264168,0.00611847871914506,-0.103338822722435,-0.03402701020240784,0.05419659614562988,0.035312049090862274,0.050308309495449066,0.04997533932328224,0.06678665429353714,-0.035004641860723495,0.001561201410368085,-0.04863610863685608,-0.081818126142025,-0.044499993324279785,-0.008586579002439976,0.06351814419031143,0.016064895316958427,0.05838923901319504,-0.008819309994578362,0.017617985606193542,0.010170443914830685,0.019475214183330536,-0.06800279021263123,-0.03482901677489281,-0.08085918426513672,0.030074454843997955,0.046990640461444855,-0.0452231727540493,-0.024272819980978966,0.09477195143699646,0.09685415029525757,-0.014824599027633667,0.02399827539920807,0.044910673052072525,-0.007309108506888151,-0.0774005874991417,0.04025862365961075,0.04688091203570366,0.013446875847876072,-0.02303565852344036,0.007510720752179623,-0.060719218105077744,-0.03971605375409126,0.05198061093688011,-0.07857917249202728,0.04355008155107498,0.022164102643728256,0.002800776856020093,-0.061266351491212845,-0.08049821108579636,-0.03616585209965706,-0.010855806060135365,-0.038516707718372345,-0.059470996260643005,-0.00950288400053978,-0.08639957010746002,-0.04253828525543213,-0.02984280325472355,0.07597273588180542,0.03116351179778576,-0.016947265714406967,0.07476582378149033,-0.07747182250022888,0.04016531631350517,-0.01601409539580345,-0.03879117593169212,-0.019443098455667496,-0.015080036595463753,0.15101252496242523,-0.07055266201496124,-0.04619092121720314,0.028709005564451218,-0.028284961357712746,0.14927203953266144,0.026752285659313202,-0.060223061591386795,-0.05374142900109291,-0.14308100938796997,-0.03029007650911808,0.02514604479074478,0.02936839498579502,-0.04512392729520798,0.009190792217850685,-0.0010475593153387308,0.04331909120082855,-0.005692146718502045,0.015639713034033775,-0.008995421230793,0.008043348789215088,0.03026611916720867,-0.0319296233355999,-0.08793739974498749,0.08868663758039474,0.0288146510720253,-0.022118574008345604,-0.03466305136680603,-0.07244996726512909,-0.009160839021205902,-0.005520325619727373,0.0029100505635142326,0.05510801821947098,0.0669035091996193,-0.11998318880796432,-0.07343095541000366,-0.009532505646348,-0.09044449031352997,0.028676189482212067,-0.014240432530641556,-0.11735709011554718,-0.07712292671203613,-0.04856547713279724,-0.030099403113126755,-0.0167064405977726,-0.0062386710196733475,0.02382475882768631,-0.030363820493221283,0.027282781898975372,0.006614806596189737,0.036373648792505264,0.002378326840698719,-0.05060708150267601,-0.013330435380339622,0.05101485177874565,-0.004546439275145531,-0.06430401653051376,8.339980339502492e-33,-0.03266437351703644,-0.021592572331428528,-0.03517277538776398,-0.038731373846530914,0.008223637007176876,-0.026287280023097992,-0.042102593928575516,-0.11018358916044235,0.03924150392413139,-0.06887315958738327,-0.1337091475725174,0.014770561829209328,0.03570304811000824,0.027496419847011566,0.010774225927889347,0.012530416250228882,0.1075456440448761,-0.021190771833062172,0.032520998269319534,0.012851550243794918,-0.024940837174654007,0.04924502596259117,0.02058595046401024,-0.01343874353915453,0.05096554756164551,0.017119118943810463,-0.010561084374785423,-0.06047559157013893,-0.015615809708833694,0.023528970777988434,0.05335113778710365,-0.05385615676641464,-0.08953429013490677,-0.0101221464574337,0.03311847895383835,0.009578490629792213,0.07044408470392227,0.04633816331624985,-0.07205905765295029,0.05576472729444504,-0.0029765372164547443,0.028863688930869102,0.04001159965991974,0.0146394744515419,0.11452831327915192,-0.029697801917791367,0.033765777945518494,-0.014312629587948322,0.05315219238400459,0.04209368675947189,-0.02025606669485569,0.036544784903526306,0.03756836801767349,-0.02244730107486248,-0.0183889027684927,0.00005292765126796439,-0.042203839868307114,0.06600088626146317,-0.0708785206079483,0.00863589160144329,0.10977926850318909,0.023796411231160164,0.04859468713402748,-0.023237494751811028,0.016216909512877464,0.033615902066230774,-0.04748072475194931,-0.01806490868330002,0.05807621404528618,-0.02159235253930092,-0.04945746809244156,-0.03796077519655228,-0.02901432476937771,0.1061052605509758,-0.048134539276361465,0.06250472366809845,-0.031089700758457184,-0.08804155886173248,-0.010073368437588215,-0.023751622065901756,-0.05251212418079376,0.07324723899364471,0.04134818911552429,0.11417252570390701,0.06706839054822922,-0.028763752430677414,0.011862626299262047,0.0718742236495018,0.03556205332279205,0.01978176459670067,0.1273409128189087,0.09581528604030609,0.0015244620153680444,-0.0011259124148637056,-0.02943626418709755,-9.54292248341648e-33,-0.02651682123541832,-0.01978682354092598,-0.0567740797996521,-0.010026765055954456,-0.06884702295064926,0.06802253425121307,-0.06694275885820389,0.0164495836943388,-0.026771683245897293,0.012021723203361034,-0.011798307299613953,-0.06552331149578094,0.056643616408109665,-0.11229050904512405,-0.013163513503968716,0.009512463584542274,0.0207537654787302,0.09421606361865997,-0.030936846509575844,0.00953876506537199,0.0009959188755601645,0.03839059919118881,0.10722099244594574,-0.08179984241724014,0.015525998547673225,0.0064136190339922905,0.05378099903464317,-0.02448458783328533,-0.09069651365280151,-0.07257585227489471,0.021598361432552338,0.0034029691014438868,-0.0006354558281600475,-0.031031716614961624,0.056508868932724,0.026080433279275894,0.06456886976957321,-0.021075135096907616,-0.011325061321258545,-0.01064135879278183,0.04062443599104881,0.03979294002056122,0.07319746166467667,0.03091404028236866,0.07771724462509155,-0.07516877353191376,-0.05100683495402336,-0.024399522691965103,-0.06548724323511124,0.006253102794289589,0.0456254743039608,-0.054293595254421234,0.07984655350446701,-0.07911412417888641,0.06854289025068283,-0.07123609632253647,-0.008602811954915524,0.020233016461133957,-0.06534630060195923,0.030280055478215218,0.09985645115375519,-0.01855321042239666,-0.0541934035718441,0.024113085120916367,0.09183590114116669,0.04647825285792351,-0.06169377267360687,0.015417391434311867,-0.09194925427436829,0.06094808503985405,0.020780405029654503,-0.08297546207904816,-0.11407376825809479,-0.017519406974315643,0.039915211498737335,-0.011369616724550724,-0.019832471385598183,-0.0715782567858696,0.02806990034878254,-0.03999338671565056,-0.10912888497114182,-0.04286159202456474,0.004978944547474384,0.021473458036780357,-0.029225459322333336,-0.038515400141477585,-0.008740393444895744,0.0503690168261528,-0.021249722689390182,-0.004822242073714733,0.00222971779294312,-0.04659571871161461,0.0010082852095365524,-0.010226082988083363,0.02482285536825657,-3.9067103330125974e-8,0.10737496614456177,-0.022770162671804428,-0.011465180665254593,0.013590478338301182,0.032658398151397705,-0.04134629666805267,-0.004336440470069647,-0.04682809114456177,0.055825334042310715,0.07003375142812729,-0.07834434509277344,-0.003550325520336628,0.04543781653046608,0.012397730723023415,-0.001251534908078611,-0.0017939653480425477,0.06403908133506775,0.021150121465325356,-0.04970819875597954,-0.07926525175571442,0.04685810208320618,-0.028426824137568474,-0.06906184554100037,-0.060874104499816895,-0.0029130568727850914,-0.09033967554569244,-0.03334107622504234,-0.02766266278922558,-0.012175473384559155,-0.01409137062728405,0.00987248681485653,0.012996160425245762,-0.04413570463657379,-0.09613285958766937,0.007150648627430201,0.03168579563498497,0.03301263228058815,0.02432667464017868,0.044979363679885864,-0.011952179484069347,0.02278182841837406,-0.012473068200051785,0.04442191496491432,-0.041188549250364304,0.023426281288266182,-0.015115928836166859,0.03799658641219139,0.007671783212572336,-0.02420402131974697,-0.09389092773199081,0.0019547422416508198,0.01697130873799324,0.09313350170850754,0.016507472842931747,-0.056462619453668594,-0.05622580647468567,0.0843173936009407,0.03338654339313507,-0.0017044298583641648,0.014987720176577568,0.034280531108379364,0.051043808460235596,-0.02495311014354229,-0.021021224558353424]},{"text":"Auro repensus scilicet acrior 25 Miles redibit.","book":"Homage to Catalonia","chapter":18,"embedding":[-0.009837841615080833,0.009650388732552528,-0.07314969599246979,0.010173623450100422,-0.041499532759189606,-0.007900452241301537,0.03900866210460663,0.10197612643241882,-0.005656399764120579,0.010379437357187271,0.08278173953294754,-0.06810847669839859,-0.050434429198503494,-0.003091553458943963,-0.08553611487150192,-0.02427835576236248,-0.02549830451607704,0.00981489010155201,-0.03767002746462822,-0.032045628875494,0.00002898108505178243,-0.007015547249466181,0.013299772515892982,0.08193644136190414,-0.05783739686012268,0.018635649234056473,-0.057300865650177,0.03265912085771561,-0.07265990972518921,-0.11441086232662201,0.03371049836277962,-0.00013146222045179456,0.012947936542332172,-0.007951232604682446,-0.013099279254674911,-0.0015909770736470819,-0.04367067292332649,-0.006971520371735096,0.022188499569892883,0.042514342814683914,-0.05141907185316086,-0.0925702154636383,-0.0006813026848249137,0.07934966683387756,-0.034004032611846924,0.010077962651848793,-0.03890721872448921,0.10662969946861267,0.13182498514652252,0.03755216673016548,-0.05699670687317848,0.00588285131379962,-0.07066179811954498,-0.0010949568822979927,-0.03745473548769951,0.04209795594215393,0.009319155476987362,0.0014866272686049342,0.04963688179850578,-0.10951755940914154,0.0867256224155426,-0.03332456573843956,-0.13128122687339783,-0.01518967840820551,-0.09646882116794586,-0.04440595209598541,-0.0414438396692276,-0.04219932109117508,0.010171681642532349,0.011410429142415524,0.10394158214330673,0.00013515911996364594,0.01424668449908495,-0.00006599366315640509,-0.024481194093823433,0.06308098882436752,0.07239340990781784,0.04106456786394119,0.019519345834851265,-0.042852044105529785,-0.03888675570487976,0.04362808167934418,0.018845336511731148,0.028717467561364174,0.05694051831960678,-0.0008210634696297348,0.03267917409539223,-0.020604433491826057,0.02588181383907795,0.004860246554017067,-0.02768278308212757,-0.0382130965590477,-0.0447082594037056,-0.07735926657915115,-0.05605705827474594,0.007722117006778717,0.00888926163315773,-0.09302762150764465,-0.017108986154198647,0.03452267497777939,0.06970547884702682,0.02670893445611,-0.009266585111618042,0.050131943076848984,-0.07446262985467911,0.0032117890659719706,-0.0399993434548378,0.0018983549671247602,0.0431571826338768,0.05540724843740463,-0.021951882168650627,-0.03256326541304588,-0.01450373325496912,-0.009107707068324089,0.01460364367812872,0.09686826169490814,-0.004984220955520868,0.00396916177123785,-0.04217414930462837,-0.015702376142144203,-0.003211553208529949,-0.03331921622157097,-0.04141951724886894,-0.01676417700946331,0.08863433450460434,-0.1046057865023613,0.08228601515293121,3.847327990710067e-33,-0.05519206449389458,0.010742418467998505,-0.04246287792921066,0.09136752039194107,0.020748602226376534,0.025456661358475685,-0.15421313047409058,0.03453405201435089,-0.03751447796821594,-0.0246102437376976,-0.023562273010611534,0.01432177796959877,0.03608885779976845,-0.014877640642225742,0.028074702247977257,0.044931404292583466,0.03138812258839607,0.015291879884898663,-0.1132379025220871,-0.033562496304512024,-0.04896491393446922,-0.0016723180888220668,-0.008034656755626202,0.019866032525897026,-0.0022788848727941513,-0.02992379292845726,-0.04985154792666435,-0.033458344638347626,-0.03188783675432205,0.04090764746069908,-0.015396987088024616,0.03690674528479576,-0.0010959968203678727,0.08494432270526886,-0.027455898001790047,-0.002512965351343155,0.019370712339878082,-0.06558124721050262,-0.032631825655698776,0.019316066056489944,0.0842592716217041,0.023836631327867508,-0.026059430092573166,0.07778218388557434,0.1442723274230957,-0.022739645093679428,0.06691834330558777,0.049726638942956924,0.0720730572938919,0.0381837822496891,-0.03841833025217056,0.011707531288266182,-0.002718478674069047,-0.05162142589688301,0.016952769830822945,0.08629193156957626,-0.07738477736711502,0.028411976993083954,-0.02112179435789585,0.03282368183135986,0.10159210860729218,0.08961397409439087,0.08077926188707352,-0.032778300344944,0.004406409338116646,0.0006149626569822431,-0.010186035186052322,-0.013145326636731625,0.02456640638411045,0.03408901393413544,-0.06644192337989807,-0.011956858448684216,0.07547558844089508,0.02153915911912918,-0.010472727008163929,0.010491003282368183,0.06882672756910324,0.013650142587721348,-0.04347782954573631,-0.07142385095357895,-0.18066942691802979,-0.0023895970080047846,-0.004375713411718607,0.03022972121834755,0.052935466170310974,-0.05199644714593887,-0.013393505476415157,0.010730219073593616,0.01469531748443842,-0.02398286946117878,0.05588869750499725,-0.03036690503358841,-0.09907519072294235,-0.06776713579893112,0.016659697517752647,-4.054836539092787e-33,-0.0029434356838464737,-0.056153737008571625,0.009355882182717323,0.09568963944911957,0.016539162024855614,0.00494864908978343,-0.04266845062375069,0.16380546987056732,-0.06603186577558517,-0.0563776008784771,-0.06788799166679382,-0.041658349335193634,0.09461309760808945,-0.03705497831106186,0.038474686443805695,0.08906634151935577,0.11437074095010757,0.0129829877987504,-0.08363021165132523,0.021331798285245895,-0.027686206623911858,0.018448105081915855,0.038141559809446335,-0.020981259644031525,-0.005844940897077322,0.05625404790043831,0.011973162181675434,-0.07248876243829727,-0.1180923581123352,-0.04221118614077568,-0.003659601788967848,0.010251987725496292,-0.07077313959598541,-0.02710822969675064,-0.04074898734688759,0.08745194971561432,0.04522290825843811,-0.003073647851124406,-0.0660145953297615,-0.0058279866352677345,0.0148349953815341,-0.0023216644767671824,0.02324621006846428,0.07550022751092911,0.034094154834747314,-0.1015249639749527,-0.029887326061725616,-0.010390779934823513,0.016466272994875908,-0.0009459845023229718,0.08007412403821945,-0.04477588087320328,-0.032413627952337265,0.07233244180679321,0.039011016488075256,-0.018974024802446365,-0.035016946494579315,-0.0251946859061718,-0.072677843272686,0.07094785571098328,0.02087375707924366,0.016649778932332993,-0.021625924855470657,0.09092841297388077,0.08408468961715698,-0.06583079695701599,-0.06977597624063492,0.09369271248579025,0.03766699135303497,0.08500494807958603,0.09502077847719193,0.048090193420648575,-0.03957154229283333,-0.006269939709454775,-0.02597259171307087,0.016422059386968613,0.0895061269402504,-0.05075166001915932,-0.007961214520037174,0.02903650887310505,-0.054285820573568344,-0.014340960420668125,0.047523077577352524,0.011870168149471283,-0.030713675543665886,-0.0260529275983572,0.020044922828674316,-0.04066221043467522,0.024099290370941162,0.017136555165052414,0.04521258547902107,0.032647959887981415,-0.0019381996244192123,-0.019447803497314453,-0.025860318914055824,-2.3241288005237948e-8,0.06430847942829132,0.09929079562425613,-0.028714468702673912,0.052074674516916275,0.04069016873836517,-0.008475090377032757,0.01891360618174076,-0.005853130016475916,-0.14243479073047638,0.05204341188073158,-0.003464758163318038,-0.0009611361310817301,0.020790748298168182,0.0771208181977272,0.015789464116096497,-0.014760862104594707,0.033964842557907104,0.10846838355064392,-0.06641750037670135,0.014394496567547321,-0.020114516839385033,0.0016003329074010253,-0.03534398227930069,-0.01359974779188633,-0.0034636552445590496,-0.01915050856769085,0.08022414892911911,-0.02094387821853161,0.06818611174821854,-0.04476151242852211,-0.0016876242589205503,0.025934092700481415,0.0017570883501321077,-0.046505406498909,-0.03184031322598457,-0.0020052141044288874,-0.028726821765303612,0.049600765109062195,-0.05417460575699806,0.0010568503057584167,0.03125932812690735,0.02065741829574108,-0.030601609498262405,0.040397319942712784,-0.045079100877046585,-0.03859416022896767,-0.037844326347112656,-0.09678110480308533,-0.019781574606895447,-0.05920669808983803,-0.024727068841457367,0.03675886616110802,0.024476200342178345,0.009732327423989773,0.019950788468122482,0.03885418921709061,0.025769470259547234,-0.05030813440680504,-0.09123441576957703,0.04480225592851639,-0.044110748916864395,0.0114432442933321,-0.015550632029771805,0.013058585114777088]},{"text":"Hic, unde vitam sumeret inscius, Pacem duello miscuit.","book":"Homage to Catalonia","chapter":18,"embedding":[-0.11864020675420761,0.09725814312696457,-0.019693003967404366,-0.02503158710896969,-0.09639526158571243,0.05358334630727768,0.06676991283893585,0.08915998041629791,-0.007198434788733721,-0.0017918894300237298,0.09867247939109802,-0.09041233360767365,0.017140770331025124,-0.09616635739803314,-0.023297643288969994,-0.03546939045190811,0.012912711128592491,0.1485360562801361,0.0744873508810997,0.02809186838567257,-0.06873607635498047,-0.05979492887854576,-0.01271875761449337,0.08090374618768692,-0.02423689514398575,-0.024625523015856743,0.008686152286827564,0.08775782585144043,-0.034193798899650574,-0.07612913101911545,0.0449557788670063,0.060583535581827164,-0.016265301033854485,-0.06777497380971909,0.04508674517273903,0.0014474462950602174,0.010728365741670132,-0.10352745652198792,-0.001749745337292552,0.07524508237838745,-0.024876335635781288,0.061405375599861145,-0.060086075216531754,-0.006833519786596298,-0.004572936799377203,-0.006343158893287182,-0.029238902032375336,0.018705368041992188,-0.0442890003323555,0.019349969923496246,-0.15649887919425964,0.06158607080578804,-0.019096169620752335,0.022936223074793816,0.003702194197103381,-0.03410607948899269,0.0275436881929636,0.022604752331972122,-0.0016179707599803805,-0.01146983727812767,-0.05263099446892738,-0.019319038838148117,-0.027520105242729187,0.061300087720155716,-0.0686509907245636,0.00679177837446332,0.02091166563332081,0.0545160248875618,-0.04501738399267197,0.055456891655921936,0.11478998512029648,-0.13251054286956787,0.0069383117370307446,-0.03563208132982254,-0.10127072036266327,-0.0035305265337228775,-0.07843092828989029,-0.025272896513342857,-0.1015818864107132,-0.07331525534391403,-0.01428165938705206,0.06590235233306885,-0.0031915404833853245,-0.01194246206432581,0.04238899052143097,0.017178954556584358,-0.0036881035193800926,-0.011240115389227867,0.042307570576667786,-0.0497923381626606,0.014272631146013737,0.0377185232937336,-0.03414320573210716,0.004860899411141872,0.042974215000867844,-0.021758371964097023,-0.02403278462588787,0.0569227933883667,-0.007539698388427496,0.020043078809976578,0.06055354326963425,0.008449443615972996,-0.030644888058304787,0.11949030309915543,0.004021720960736275,0.01614006981253624,-0.010492458008229733,-0.035801615566015244,0.07675985246896744,0.08040151745080948,0.015805169939994812,-0.03785198926925659,-0.05907707288861275,-0.07048793137073517,0.04108455404639244,0.024786487221717834,0.04538997635245323,-0.06380874663591385,-0.01017959788441658,-0.013773689046502113,0.08198803663253784,-0.03931494429707527,0.058607347309589386,-0.06960367411375046,-0.016465483233332634,-0.09519541263580322,0.06377562135457993,7.737377486890847e-34,-0.06525736302137375,-0.044440798461437225,0.026857243850827217,0.05987578630447388,-0.07220156490802765,0.014972399920225143,-0.016421034932136536,0.011912696994841099,-0.030334440991282463,-0.029723601415753365,-0.09762286394834518,0.03988678380846977,0.010426563210785389,0.1034654825925827,-0.041760291904211044,-0.01576096937060356,0.08872797340154648,-0.03347163647413254,0.07618192583322525,-0.09021900594234467,-0.027567103505134583,0.021450906991958618,0.06626568734645844,-0.0026389413978904486,0.027943145483732224,0.03585156798362732,0.06170070171356201,-0.07269357144832611,-0.022813331335783005,0.022973909974098206,0.10420119017362595,-0.07623019069433212,0.018045809119939804,0.009344787336885929,0.03549962863326073,0.012187820859253407,-0.04637577757239342,0.051955901086330414,0.006201388780027628,0.04672732204198837,-0.03362119570374489,0.00915150623768568,0.05611336603760719,-0.0496884249150753,-0.011215775273740292,0.019140416756272316,0.06861119717359543,0.027896011248230934,0.04237254336476326,-0.01850832812488079,-0.04892965033650398,-0.01917368546128273,-0.008977208286523819,0.014131661504507065,-0.003891809843480587,0.01787487231194973,-0.08821997046470642,0.09476372599601746,-0.06126020848751068,-0.011232291348278522,0.013135628774762154,-0.019716857001185417,-0.04166293144226074,0.028150154277682304,-0.026253115385770798,0.001878341194242239,-0.07142175734043121,-0.004879222251474857,0.08919651061296463,0.020099014043807983,-0.05972220376133919,-0.027019396424293518,-0.02035956084728241,0.025918619707226753,0.020785287022590637,0.04224975034594536,-0.018740689381957054,-0.006972050294280052,-0.11026090383529663,-0.04332219436764717,-0.0541553795337677,-0.06688959151506424,-0.03184866905212402,0.029040709137916565,-0.005254645831882954,-0.0057654473930597305,0.05281374603509903,0.05377526581287384,-0.005048301070928574,0.09391774237155914,0.027185091748833656,0.034978557378053665,0.06997328251600266,0.052083831280469894,-0.008990929462015629,-1.908480281762256e-33,0.005296844057738781,0.010297801345586777,-0.05611521378159523,0.03140577673912048,-0.013790100812911987,0.04657859355211258,-0.06452830880880356,0.07669803500175476,-0.11825768649578094,0.05365118756890297,-0.03882260620594025,-0.0732889324426651,0.07228489965200424,-0.02858807146549225,-0.11101318895816803,0.04704569652676582,0.0006005340837873518,0.02959461882710457,-0.013926982879638672,-0.02106616459786892,-0.011302130296826363,-0.01454676128923893,0.008230723440647125,-0.0663851648569107,-0.02816900797188282,0.061120111495256424,0.06762386858463287,-0.04328537732362747,-0.058080729097127914,0.05903289467096329,0.06277205049991608,0.00875086523592472,-0.05706840381026268,0.0706041157245636,0.06161483749747276,0.09907429665327072,0.05980316549539566,0.009752224199473858,-0.044297706335783005,0.049087364226579666,-0.05959947407245636,0.027767177671194077,0.0410691536962986,-0.008351930417120457,0.05316067487001419,0.019268371164798737,-0.06771603971719742,-0.03927002102136612,-0.07693956792354584,0.01573804020881653,-0.0070799486711621284,-0.039796579629182816,0.004121537785977125,-0.006336620077490807,-0.014773654751479626,-0.07690035551786423,-0.04379773885011673,-0.016807204112410545,-0.08378729224205017,-0.041540734469890594,0.10128986835479736,0.016981232911348343,0.022769268602132797,-0.019015654921531677,0.10499469935894012,-0.004669140558689833,-0.022666390985250473,0.04107854142785072,0.005793753545731306,0.013834129087626934,0.0764973983168602,-0.04012702777981758,-0.002824165392667055,-0.027631230652332306,-0.08710252493619919,0.024851741269230843,-0.045479219406843185,-0.021459555253386497,-0.0036763367243111134,0.03093636967241764,0.0069096568040549755,-0.1019289419054985,0.012889967299997807,0.06467960774898529,-0.09738851338624954,0.01914869248867035,0.03287686035037041,-0.05812888965010643,0.0206543430685997,-0.021744439378380775,0.06791149824857712,0.009507529437541962,0.023465227335691452,-0.0133778415620327,-0.024385567754507065,-2.502561180506291e-8,0.030197495594620705,-0.10576994717121124,-0.053029850125312805,0.06035876274108887,0.009095019660890102,-0.11367195099592209,-0.03833350911736488,-0.057876646518707275,0.018907831981778145,0.13087894022464752,0.020004557445645332,-0.009167962707579136,-0.03403070196509361,0.054098498076200485,0.029459120705723763,0.010931120254099369,0.02532137557864189,0.06649988144636154,0.021432166919112206,-0.021788937970995903,0.07903189212083817,-0.02815292589366436,0.016577111557126045,-0.09033482521772385,-0.023450184613466263,-0.018678611144423485,-0.010749085806310177,-0.030369369313120842,-0.006411456502974033,-0.051996633410453796,-0.00006564659997820854,0.04655347019433975,-0.02720014564692974,-0.027983708307147026,-0.048603810369968414,0.06857900321483612,-0.00483686150982976,0.08695044368505478,0.02502444200217724,0.011779342778027058,-0.003766209352761507,0.027077937498688698,0.031304895877838135,-0.029257098212838173,0.04158138483762741,-0.06078992038965225,0.04145268723368645,-0.008569524623453617,0.03881654515862465,0.01722719334065914,-0.027976667508482933,0.028758035972714424,0.09918304532766342,-0.0008992655784823,-0.022020025178790092,0.04419184476137161,0.0065732793882489204,0.018186582252383232,-0.0330016128718853,-0.06866586208343506,0.029583707451820374,0.0445634089410305,0.031193207949399948,-0.027582833543419838]},{"text":"Atqui sciebat quae sibi barbarus Tortor pararet; non aliter tamen 50 Dimovit obstantis propinquos Et populum reditus morantem, Quam si clientum longa negotia Diiudicata lite relinqueret, Tendens Venafranos in agros 55 Aut Lacedaemonium Tarentum.","book":"Homage to Catalonia","chapter":18,"embedding":[-0.08364684879779816,0.06813332438468933,-0.06262948364019394,-0.018764648586511612,-0.09792402386665344,0.03242954984307289,0.04637651517987251,0.07724587619304657,0.015395717695355415,0.03389230743050575,0.02849149890244007,-0.057690251618623734,-0.02398327924311161,-0.016814416274428368,-0.15297609567642212,0.005765547975897789,-0.04294874891638756,0.0603054016828537,-0.017123786732554436,-0.002561531262472272,0.024297822266817093,0.046453963965177536,0.021487120538949966,0.03885708004236221,-0.08929412066936493,-0.017767898738384247,-0.057265520095825195,0.008283610455691814,0.06683015823364258,-0.09277943521738052,0.006011699326336384,0.05890916287899017,-0.044639550149440765,-0.016800982877612114,0.04186989367008209,0.011182011105120182,-0.03864622488617897,-0.027728645130991936,-0.005672778002917767,0.1026170626282692,0.034492529928684235,0.006416363641619682,-0.048587873578071594,-0.00749514764174819,-0.03378484398126602,0.011402829550206661,-0.03366100415587425,0.06365732103586197,-0.012930157594382763,-0.011692230589687824,-0.06986881047487259,-0.012351708486676216,-0.06018738076090813,0.04304993152618408,-0.028696706518530846,-0.0606275349855423,0.015715861693024635,-0.008031100034713745,0.012466232292354107,-0.036797307431697845,0.057773932814598083,0.07696285098791122,-0.030841227620840073,-0.05380619317293167,-0.008310854434967041,0.005445581860840321,-0.029188044369220734,0.04294196143746376,0.012401700951159,-0.01044689305126667,0.1049976721405983,-0.04646604135632515,-0.01699383556842804,0.06863436102867126,-0.06956905871629715,-0.02304527536034584,-0.0050462535582482815,0.025755932554602623,0.0276747215539217,-0.07091978937387466,-0.05557043477892876,0.03139200061559677,0.026226574555039406,-0.01625119149684906,-0.002945272484794259,0.01289703231304884,-0.06292945146560669,0.026506751775741577,0.05078164488077164,0.028299711644649506,0.06175260990858078,0.02855740860104561,-0.051109105348587036,-0.08107951283454895,0.06536200642585754,0.04941561073064804,0.020723896101117134,-0.04824373498558998,-0.03549334406852722,-0.0019264305010437965,0.08566796034574509,-0.06164245679974556,-0.0818500965833664,-0.001004667836241424,-0.06531285494565964,-0.036579377949237823,-0.016216687858104706,-0.020740248262882233,-0.006290494464337826,0.09213192015886307,-0.04230540618300438,-0.02679618075489998,0.01699676737189293,-0.07804391533136368,-0.035459231585264206,-0.03532346710562706,0.017308859154582024,0.012417184188961983,-0.013223025016486645,-0.048454929143190384,0.05096553638577461,0.007585379760712385,-0.025490762665867805,-0.0027306145057082176,0.04567790403962135,-0.02198933996260166,-0.011952950619161129,2.5408427942458827e-32,0.023696498945355415,-0.1030779704451561,-0.07610109448432922,0.034186359494924545,-0.02695624902844429,0.021371785551309586,-0.06464627385139465,-0.03139515966176987,0.009020203724503517,-0.018772050738334656,-0.1593918353319168,-0.0314115509390831,-0.05461578443646431,-0.027361733838915825,0.005234842654317617,0.03834649175405502,0.10766736418008804,-0.01617714948952198,0.0008039691019803286,-0.09029428660869598,-0.05272902175784111,0.04776759445667267,0.03788085654377937,-0.041968416422605515,0.006602513138204813,-0.016498329117894173,0.05478169396519661,-0.10511464625597,-0.0875876173377037,0.015762148424983025,0.11521207541227341,-0.05726763233542442,-0.09209807962179184,0.019169537350535393,-0.01747576892375946,0.014616820961236954,0.022694062441587448,-0.011726290918886662,-0.10450656712055206,0.015240744687616825,0.011219031177461147,0.0356765054166317,0.05979263409972191,0.018171213567256927,0.08950822800397873,-0.004120755009353161,0.02132626622915268,0.06742067635059357,0.027634255588054657,0.010874801315367222,-0.03039470687508583,0.028024351224303246,0.08515708893537521,-0.023113707080483437,0.002735806629061699,0.01914488524198532,-0.014269784092903137,0.03854221850633621,-0.04915178567171097,0.023185521364212036,0.013806103728711605,0.06359045207500458,-0.009024348109960556,-0.003162110922858119,0.05724392831325531,-0.026423880830407143,-0.046307582408189774,0.023490628227591515,0.013984909281134605,-0.02885786071419716,-0.0662456527352333,-0.02420233003795147,0.0025081865023821592,0.058418646454811096,-0.04173913225531578,-0.03081735409796238,0.02078758180141449,-0.007309875451028347,-0.016857873648405075,-0.04659562185406685,-0.014479335397481918,-0.11766809225082397,-0.0019327300833538175,0.06247377395629883,0.02490147203207016,0.008946309797465801,0.029434729367494583,0.03533902391791344,0.05164112150669098,0.06709452718496323,0.09896863251924515,-0.0024864415172487497,-0.056210584938526154,0.03625728562474251,0.016287624835968018,-2.2459960441546238e-32,0.023996056988835335,-0.026323694735765457,-0.05417666211724281,0.07632283866405487,0.022337011992931366,0.017508067190647125,-0.10978148877620697,0.056920647621154785,-0.022839438170194626,-0.12364321947097778,-0.027747467160224915,0.0019190318416804075,0.07204613834619522,-0.014291314408183098,0.03473668918013573,0.06222930923104286,-0.0101138511672616,0.03674532473087311,-0.0054472265765070915,-0.04823406785726547,-0.11255402863025665,-0.042249806225299835,-0.03242137283086777,-0.03684608265757561,0.005842948332428932,-0.026819726452231407,0.049813706427812576,0.007816183380782604,-0.09866787493228912,-0.032878436148166656,0.12320410460233688,-0.07036788761615753,-0.04707978293299675,-0.05129307880997658,-0.04942300543189049,0.0224305372685194,0.15727649629116058,-0.009010404348373413,-0.015095818787813187,0.004062529653310776,0.054975710809230804,0.012587491422891617,0.068390853703022,0.0038001742213964462,-0.019609522074460983,-0.018047036603093147,-0.07556217163801193,-0.0927978903055191,-0.01569814793765545,0.014090681448578835,0.1310999095439911,-0.005379295442253351,0.0946173369884491,-0.01255569327622652,0.07475299388170242,-0.05340025573968887,-0.1121959537267685,0.03270602226257324,-0.06552781909704208,0.03220469132065773,0.11484384536743164,0.0016239745309576392,-0.021599791944026947,-0.0179233867675066,0.12901392579078674,0.0202426016330719,-0.04870497062802315,0.00494529539719224,-0.06662005186080933,0.015254346653819084,0.08885587751865387,-0.0284110177308321,-0.008540339767932892,-0.010006597265601158,0.02989441528916359,-0.006249133963137865,0.04565925523638725,-0.06374353170394897,0.041108790785074234,-0.03376808762550354,0.02240590751171112,-0.062339093536138535,0.01929580792784691,-0.02134724333882332,-0.04638494551181793,-0.007002910133451223,0.06821233779191971,0.07818849384784698,-0.009395147673785686,0.01722615584731102,0.03413371741771698,-0.05924117565155029,-0.01527396123856306,0.05090997368097305,0.0945836752653122,-6.958356379982433e-8,0.05335158109664917,-0.023550957441329956,-0.08420006185770035,-0.005618782714009285,-0.0007576360367238522,0.04617799445986748,0.05687549337744713,0.038337431848049164,-0.053727008402347565,0.03571796044707298,-0.06243813782930374,0.03330161049962044,0.016195017844438553,0.05589316785335541,0.08785783499479294,-0.054314881563186646,-0.000432356697274372,0.026513513177633286,-0.06050809472799301,-0.039906345307826996,0.06833263486623764,-0.011427724733948708,-0.06328965723514557,0.00863002147525549,-0.0484689399600029,-0.05179661512374878,0.03307202830910683,-0.04525918886065483,0.09202133119106293,-0.0008950968622229993,0.006338517647236586,0.02535458654165268,0.014335231855511665,-0.08973673731088638,-0.025780335068702698,0.1130077913403511,-0.01847922056913376,0.04610403999686241,0.056190744042396545,-0.004373347386717796,-0.03396551311016083,-0.04502919688820839,-0.026467295363545418,-0.041609760373830795,-0.009738213382661343,-0.09463297575712204,-0.02676643244922161,0.04796307161450386,-0.08028733730316162,-0.07054417580366135,0.05162752419710159,0.06690840423107147,0.10303828865289688,0.010035580024123192,-0.06650582700967789,0.00013554577890317887,0.06193562224507332,0.006316798739135265,0.010167492553591728,0.02772623673081398,0.012001060880720615,-0.031415171921253204,-0.004602781031280756,0.03309975937008858]},{"text":"Dis te minorem quod geris, imperas: 5 Hinc omne principium, huc refer exitum.","book":"Homage to Catalonia","chapter":18,"embedding":[-0.05605730414390564,0.10335931926965714,0.03841377794742584,-0.0021949170622974634,0.013090794906020164,-0.02386557310819626,0.03274128586053848,0.12438259273767471,0.03282761573791504,0.05055316165089607,0.050537124276161194,0.0009983978234231472,-0.017908865585923195,-0.06763321906328201,-0.06513912230730057,-0.03289816156029701,-0.05209554359316826,0.07680771499872208,-0.0379374735057354,0.04879409819841385,0.03302948549389839,-0.018191086128354073,-0.004660630598664284,0.05417071655392647,-0.029071029275655746,0.007808867376297712,-0.007347147446125746,0.07128237932920456,0.029325205832719803,-0.04735564440488815,0.05019243061542511,0.08126585930585861,0.035163965076208115,-0.03258369863033295,-0.004949338734149933,0.002726270817220211,-0.01935688965022564,-0.09000001102685928,0.027119843289256096,0.06920406967401505,-0.0448707677423954,0.017714541405439377,-0.13859187066555023,0.06776472181081772,0.00951513834297657,-0.0162626001983881,-0.07985956221818924,0.008410809561610222,-0.05402161553502083,-0.044011425226926804,-0.0460234209895134,-0.0224891547113657,-0.021787213161587715,0.04053651914000511,-0.08860401064157486,-0.06170038506388664,-0.022107038646936417,-0.08323103934526443,0.053460828959941864,-0.011815895326435566,-0.0067039793357253075,-0.009993001818656921,-0.029245201498270035,-0.04983982816338539,-0.022816408425569534,0.03976582735776901,0.05587891489267349,-0.06854288280010223,-0.08117730170488358,0.06340215355157852,0.06774719804525375,-0.06376590579748154,-0.019663387909531593,0.06089378148317337,0.002737015951424837,0.03619610518217087,-0.007892366498708725,-0.023449625819921494,0.015207975171506405,-0.08357955515384674,0.033932168036699295,0.049368906766176224,-0.06412740051746368,0.006340792402625084,0.02627570927143097,0.023209592327475548,0.012547674588859081,-0.008265109732747078,0.04697275906801224,-0.04920293018221855,-0.057738617062568665,0.004828291479498148,-0.08860346674919128,-0.0514419861137867,0.01831510104238987,-0.023384297266602516,-0.05245291441679001,0.02039153315126896,-0.0037393358070403337,-0.03254929557442665,0.0813637375831604,0.057687219232320786,-0.05988005921244621,0.029931755736470222,-0.1124650314450264,-0.020671870559453964,0.06819885224103928,-0.05375848710536957,0.06035108119249344,0.06288432329893112,-0.07851885259151459,-0.07078254967927933,-0.029561640694737434,-0.09922643005847931,-0.010660103522241116,-0.009456401690840721,0.015886055305600166,-0.09493471682071686,0.02327301725745201,-0.09259989112615585,-0.023991484194993973,0.025498349219560623,-0.003364563686773181,0.0029925580602139235,-0.004330883268266916,-0.05024253949522972,0.02237272635102272,4.047479413824578e-33,-0.05835077539086342,-0.06623653322458267,-0.05945604294538498,0.08679237216711044,-0.027617592364549637,0.060091882944107056,-0.04604767635464668,-0.09879252314567566,-0.0237647145986557,-0.042155664414167404,-0.03839215263724327,-0.0514749251306057,-0.003076433204114437,-0.08079416304826736,-0.06150919571518898,0.042210470885038376,0.08752983063459396,0.017872948199510574,0.03431345149874687,0.020051395520567894,-0.06770560145378113,0.12328141182661057,0.01247095875442028,0.03380732238292694,0.10646072030067444,-0.019867172464728355,-0.07301714271306992,-0.043702587485313416,-0.00991608202457428,0.017753751948475838,0.06078439578413963,0.006647633854299784,-0.007023062091320753,-0.006472858600318432,-0.014223668724298477,0.007845176383852959,0.07229072600603104,0.03935931622982025,0.005783858709037304,-0.06793317943811417,-0.02257799729704857,0.025909513235092163,0.08504070341587067,0.06518059968948364,0.08307681232690811,0.011037305928766727,0.04458838328719139,0.1002119854092598,0.015036777593195438,-0.018711041659116745,-0.0726458877325058,-0.029546251520514488,-0.0454743318259716,-0.032376404851675034,-0.011164508759975433,0.06006341427564621,-0.04927028715610504,0.044613488018512726,0.0435839481651783,0.013131635263562202,0.002757058711722493,0.08183963596820831,-0.07194478064775467,0.06235869228839874,0.005016218405216932,-0.026294613257050514,-0.10600341111421585,0.02566850557923317,0.12426096200942993,0.13060486316680908,-0.02212626114487648,-0.01563585363328457,-0.01561322994530201,0.07895094901323318,-0.06377493590116501,0.04353532940149307,0.009559286758303642,-0.07045150548219681,-0.018374372273683548,0.01500448677688837,-0.07850708812475204,-0.04453982785344124,0.0013816517312079668,0.034286558628082275,0.07289580255746841,0.0643567442893982,0.01915041171014309,-0.08210155367851257,-0.004268772434443235,0.09841640293598175,0.04466075450181961,-0.0074049546383321285,-0.0071771531365811825,-0.0389435812830925,0.010696189478039742,-3.648480264299015e-33,0.027891434729099274,-0.03271301090717316,-0.018032779917120934,0.06150927022099495,-0.048020973801612854,0.06063961237668991,-0.09591580927371979,0.005607041530311108,-0.026482990011572838,-0.03548993542790413,0.03217214345932007,-0.04026821255683899,0.06299147754907608,-0.031219208613038063,-0.04125465452671051,0.0475451834499836,0.0334663949906826,0.002656233264133334,0.059813547879457474,0.047872718423604965,0.010130620561540127,0.017482411116361618,-0.016242148354649544,0.03511814400553703,0.01804019883275032,0.0050958385691046715,0.057739704847335815,-0.04357769712805748,-0.01986788772046566,-0.04971252754330635,-0.024728482589125633,-0.023565515875816345,-0.0019339093705639243,0.0593130886554718,0.01658749021589756,-0.002186868339776993,0.09133753925561905,-0.025112241506576538,-0.06668927520513535,-0.059321895241737366,-0.15572279691696167,-0.021773075684905052,0.04196607694029808,0.0009489114163443446,-0.00829593650996685,0.03652408346533775,-0.00009551890252623707,0.030779313296079636,-0.0753127783536911,0.028283212333917618,0.05733023211359978,-0.005836049094796181,-0.018074583262205124,0.014654015190899372,0.001962898997589946,-0.08595969527959824,-0.00845454540103674,-0.016548095270991325,-0.024800041690468788,-0.0004960983642376959,0.17748063802719116,0.06774850934743881,-0.024632010608911514,-0.03577468916773796,0.07766752690076828,-0.04231785610318184,-0.06349258124828339,0.11680828034877777,0.019151145592331886,-0.014071216806769371,0.02295345440506935,-0.020334217697381973,-0.02292146347463131,-0.0765712708234787,-0.04486684128642082,0.0072639500722289085,-0.015345529653131962,0.0539710633456707,0.0643935576081276,0.07060151547193527,-0.029242413118481636,-0.0029250318184494972,-0.08613240718841553,-0.0042015304788947105,-0.018296541646122932,-0.005124114919453859,0.025008581578731537,0.027821537107229233,0.05280763655900955,0.03446703031659126,-0.012681073509156704,0.0356501005589962,0.01824401505291462,-0.007042305078357458,-0.007587852887809277,-2.7348935560667087e-8,-0.0009211963624693453,-0.031347207725048065,-0.024212148040533066,0.0436641164124012,0.04747301712632179,-0.12100006639957428,-0.01913166232407093,-0.04542689025402069,-0.035307809710502625,0.10414613038301468,0.008024980314075947,0.024373561143875122,-0.01387070957571268,-0.013024622574448586,0.036842867732048035,-0.005543519742786884,0.10475540161132812,0.06302914023399353,0.008038218133151531,-0.0343918539583683,0.024378439411520958,0.0022196522913873196,-0.06636090576648712,0.008485876955091953,-0.0013318065321072936,-0.06555120646953583,0.06233951821923256,-0.03739282488822937,0.012314636260271072,-0.07678873836994171,0.028785018250346184,-0.0049035451374948025,0.0043001011945307255,-0.03553883358836174,-0.01373877190053463,0.1090778186917305,0.01909050904214382,0.03253461793065071,-0.008447866886854172,0.0445546880364418,0.03186562657356262,0.008341873064637184,0.006384300999343395,-0.037019096314907074,-0.08577501773834229,-0.026014437898993492,-0.0038660126738250256,-0.016605498269200325,0.004184381105005741,-0.018001116812229156,-0.01576409675180912,-0.017255019396543503,0.07119040191173553,0.0638248473405838,0.043012797832489014,0.006116858683526516,0.08653093129396439,-0.011335814371705055,-0.04284830763936043,-0.006418538745492697,0.07318519800901413,0.13562282919883728,0.061925314366817474,0.06364507228136063]},{"text":"Iam bis Monaeses et Pacori manus Non auspicatos contudit impetus 10 Nostros et adiecisse praedam Torquibus exiguis renidet.","book":"Homage to Catalonia","chapter":18,"embedding":[0.022495536133646965,0.024311967194080353,-0.06279081106185913,0.019691521301865578,-0.020938269793987274,0.07811502367258072,0.07380964607000351,0.10057666897773743,0.03988341614603996,0.02785058319568634,0.032209958881139755,-0.04439571127295494,-0.017577700316905975,-0.0032860382925719023,-0.02980463020503521,-0.10381940007209778,-0.11285252124071121,0.12307582795619965,0.019779670983552933,0.0021527097560465336,0.07221005111932755,0.050451915711164474,0.06430612504482269,0.06216925382614136,-0.11726744472980499,0.013813676312565804,-0.04779297858476639,-0.030730590224266052,0.0736473798751831,-0.043181125074625015,0.07196155190467834,0.04006709158420563,0.02782173454761505,-0.07327870279550552,-0.006460641045123339,-0.038114920258522034,-0.0435405895113945,-0.053517650812864304,0.032032545655965805,0.025673676282167435,-0.005634828470647335,0.002360512036830187,-0.05190076678991318,-0.05836282670497894,0.03457571193575859,0.04538436233997345,0.015521228313446045,0.0688854530453682,-0.026017440482974052,0.031979065388441086,-0.06536564230918884,-0.018021246418356895,-0.014068325981497765,-0.023962080478668213,-0.0019403460901230574,-0.10549002885818481,0.02849670499563217,-0.04219710826873779,0.005322843790054321,-0.1100798100233078,0.07194161415100098,0.05046548321843147,-0.03657066822052002,0.05216216668486595,-0.0874025896191597,0.009140942245721817,0.019157877191901207,-0.015925973653793335,0.05998640134930611,0.044256825000047684,0.0857534408569336,-0.0913175418972969,0.012598618865013123,-0.012683004140853882,-0.0877504050731659,0.041878730058670044,0.022689126431941986,-0.00016943621449172497,0.034762147814035416,-0.02598767913877964,0.0484747588634491,-0.081639863550663,-0.024375872686505318,0.02470213919878006,0.011214862577617168,0.029919302091002464,0.038564130663871765,-0.0365908220410347,0.003445972688496113,-0.015467620454728603,-0.04626498743891716,0.03208885341882706,0.04610353708267212,0.010313020087778568,0.004246021155267954,-0.062207091599702835,-0.04783375933766365,0.053802140057086945,-0.08761183172464371,0.03222476318478584,0.016125962138175964,0.022260643541812897,-0.10998973250389099,0.016686588525772095,-0.08880989253520966,-0.03113796003162861,-0.05430474504828453,-0.050521593540906906,0.03502453863620758,0.06826917827129364,-0.0876714289188385,-0.040644142776727676,-0.049126558005809784,-0.09484357386827469,0.03840554878115654,0.05282900109887123,0.01926368474960327,-0.09758486598730087,-0.030340909957885742,-0.07240874320268631,-0.02641315571963787,-0.07700975239276886,-0.01586800254881382,-0.053865548223257065,0.049650270491838455,-0.024918988347053528,0.039751216769218445,1.0106562473744167e-32,-0.03564605861902237,-0.11057034879922867,0.013411196880042553,-0.0570891909301281,0.01965571753680706,-0.0693022757768631,-0.06451886147260666,-0.0679643377661705,0.054681748151779175,0.013201558031141758,-0.005406423471868038,0.03161820396780968,-0.05718925595283508,-0.017068762332201004,0.013319785706698895,0.009151202626526356,0.10342398285865784,0.016018465161323547,-0.0026615113019943237,-0.053871430456638336,-0.0685773640871048,0.062453657388687134,-0.015432682819664478,0.005933331325650215,0.054121457040309906,0.042446136474609375,-0.0007202398264780641,-0.05004042387008667,-0.03194987028837204,0.0417720265686512,0.11006104201078415,0.0002033766359090805,-0.14627687633037567,-0.009896702133119106,-0.05393190309405327,-0.06502895057201385,0.003299144795164466,0.014191427268087864,-0.055299337953329086,-0.016463011503219604,-0.003899837378412485,0.06672968715429306,0.080424003303051,-0.040011387318372726,0.08443178981542587,0.034847550094127655,0.0004892760189250112,0.09007415920495987,0.08531943708658218,0.003187427995726466,0.040139902383089066,0.030896473675966263,-0.0036114694084972143,0.010857665911316872,0.0260587390512228,0.011124258860945702,-0.08119036257266998,0.04980963468551636,-0.03385750576853752,-0.0010790165979415178,0.018586087971925735,-0.03602595999836922,0.0025814056862145662,0.007842990569770336,0.010940502397716045,0.037765294313430786,0.027034364640712738,-0.03291040658950806,0.07886169105768204,-0.007892430759966373,-0.08743714541196823,-0.016973827034235,-0.0051293447613716125,0.0015777182998135686,-0.024980459362268448,0.016948522999882698,0.02196137234568596,-0.011862635612487793,-0.08066228777170181,-0.02608593925833702,-0.0852583721280098,-0.014989239163696766,-0.0009816813981160522,0.022371407598257065,0.08273018896579742,-0.023211462423205376,-0.04132220894098282,0.06916216760873795,0.029647711664438248,0.06523224711418152,-0.005650999955832958,0.08183589577674866,-0.01762690395116806,0.11985517293214798,-0.0034332191571593285,-1.1314827403015472e-32,-0.0011326114181429148,-0.024751605466008186,-0.0910721942782402,0.04203598573803902,-0.042051397264003754,0.05378397926688194,-0.09436982125043869,0.03310948237776756,0.027611592784523964,-0.09456643462181091,-0.045272327959537506,-0.040698956698179245,0.09601724147796631,-0.00932366494089365,-0.05063968896865845,0.003140225075185299,0.053733259439468384,-0.019129009917378426,-0.07473413646221161,-0.00817626528441906,0.009031704626977444,0.038968492299318314,-0.04643331840634346,-0.08644495904445648,-0.0510500967502594,0.04068237170577049,0.02981008030474186,-0.015704110264778137,0.02917982079088688,-0.04690691456198692,0.043066222220659256,0.05471060425043106,-0.07581807672977448,0.0033502622973173857,-0.049053337424993515,-0.026617540046572685,0.09951163083314896,0.07770911604166031,-0.04872767627239227,-0.009525599889457226,-0.02797873131930828,0.1243923082947731,0.05476941168308258,-0.023018941283226013,0.03176511079072952,-0.08486460149288177,-0.0405074879527092,-0.12987761199474335,-0.035202138125896454,0.04718641936779022,0.0825885683298111,-0.05209300294518471,-0.007411001715809107,0.0031970618292689323,0.060108523815870285,0.07887585461139679,-0.030059704557061195,-0.08091996610164642,-0.02829994075000286,0.029583174735307693,0.09323052316904068,0.043710093945264816,-0.022111553698778152,-0.009176336228847504,0.037058304995298386,0.011116037145256996,-0.11061856895685196,0.0021620539482682943,0.0584038645029068,-0.012896264903247356,0.0569429025053978,-0.04224524646997452,-0.02278102934360504,0.08524572104215622,-0.05566171556711197,-0.0074237133376300335,0.010665614157915115,-0.013983448036015034,0.04448669031262398,0.0166037455201149,-0.008744270540773869,-0.004172464832663536,-0.030640244483947754,0.0027126967906951904,-0.07391677051782608,-0.049910008907318115,0.005438362713903189,-0.05226580426096916,0.07773560285568237,0.017838576808571815,-0.03743848577141762,-0.027571354061365128,0.05638017877936363,-0.042109496891498566,-0.03373892977833748,-3.863833697437258e-8,-0.0123191699385643,-0.05300266295671463,0.0057490007020533085,0.11433835327625275,-0.022545481100678444,-0.04056704789400101,-0.08090461790561676,-0.003282736288383603,-0.06791426241397858,-0.029640421271324158,0.03382420912384987,0.09786347299814224,-0.011684387922286987,0.09009131044149399,0.014248191379010677,-0.00004932878437102772,0.04177276790142059,-0.0038143740966916084,-0.024952102452516556,-0.1356712132692337,-0.020968811586499214,-0.07838982343673706,-0.019761227071285248,-0.04530005156993866,0.02227955497801304,-0.015265985392034054,0.024265436455607414,-0.03764694556593895,-0.036975596100091934,0.023016873747110367,-0.08456497639417648,0.06383390724658966,0.0255518089979887,-0.06718149781227112,0.004821954295039177,0.05914299935102463,0.014597201719880104,0.012522838078439236,-0.021912721917033195,0.03604183718562126,0.05248624458909035,0.0015285179251804948,0.04219614714384079,0.01274812687188387,0.0641007274389267,-0.039780087769031525,0.035013843327760696,0.027974069118499756,0.0044683609157800674,0.05778783559799194,0.028343575075268745,0.03712292015552521,0.036392562091350555,0.012828857637941837,-0.04554888606071472,0.043642815202474594,0.007514368277043104,-0.005661007482558489,0.007629585452377796,-0.010996866039931774,0.047059133648872375,-0.012118689715862274,0.00894194096326828,-0.026975009590387344]},{"text":"Fecunda culpae saecula nuptias Primum inquinavere et genus et domos Hoc fonte derivata clades In patriam populumque fluxit. 20 Motus doceri gaudet Ionicos Matura virgo et fingitur artibus Iam nunc et incestos amores De tenero meditatur ungui.","book":"Homage to Catalonia","chapter":18,"embedding":[-0.030458785593509674,0.029739756137132645,-0.06547781825065613,0.01872830092906952,-0.04291636496782303,0.047449156641960144,-0.03931550309062004,-0.010368025861680508,0.07689408957958221,-0.004402033984661102,0.05601004138588905,-0.10061769187450409,-0.04357592761516571,-0.04678049683570862,-0.06817978620529175,-0.09685021638870239,-0.06774348765611649,0.008941353298723698,0.02988383360207081,0.10683872550725937,0.021435562521219254,0.007637854665517807,0.04000919312238693,0.03168122470378876,-0.06445426493883133,-0.011561528779566288,-0.05911950767040253,-0.01698857918381691,-0.04199998080730438,-0.05796614661812782,-0.029190003871917725,0.032758742570877075,0.039394691586494446,-0.013168553821742535,0.022211479023098946,-0.000627586676273495,-0.054920416325330734,0.061909958720207214,0.08962850272655487,0.06602092832326889,-0.041150521486997604,-0.034449294209480286,0.0005609946674667299,-0.005473258439451456,-0.06376450508832932,-0.05222577601671219,-0.026853695511817932,0.09476078301668167,0.02772507630288601,0.004106196574866772,-0.06297285109758377,-0.10647627711296082,-0.11600801348686218,0.04659183323383331,-0.009771168231964111,0.030401697382330894,-0.0018574756104499102,-0.16026608645915985,0.008048401214182377,0.009400331415235996,0.05333330109715462,0.12321729958057404,-0.02457096055150032,0.048149753361940384,-0.04954225942492485,0.030676955357193947,0.043486375361680984,-0.01472188625484705,0.018904216587543488,-0.023722579702734947,0.1325218677520752,-0.0020983885042369366,0.001896862406283617,0.03015693835914135,-0.10006173700094223,0.08752433955669403,-0.0008143791928887367,0.030755218118429184,0.011890420690178871,-0.11066536605358124,-0.08438538759946823,0.06475310027599335,0.03057681769132614,-0.03882677108049393,0.055976614356040955,-0.046876922249794006,-0.05160679295659065,-0.047672439366579056,-0.017713043838739395,-0.03739850968122482,0.02906745672225952,0.038554467260837555,-0.017422500997781754,-0.016136813908815384,0.029687536880373955,0.02172142267227173,0.0008419696823693812,0.022437823936343193,0.032351866364479065,0.0009483859175816178,0.045381419360637665,-0.009273248724639416,0.00570411654189229,0.04386395961046219,-0.10065221041440964,-0.05317902937531471,-0.04554309695959091,-0.0678572729229927,-0.01399554219096899,-0.013251308351755142,-0.058430127799510956,-0.015898248180747032,-0.024057433009147644,-0.036398448050022125,-0.005518264137208462,-0.017520928755402565,-0.0030638151802122593,-0.058458223938941956,0.000512247730512172,0.013143224641680717,-0.020288923755288124,-0.031149473041296005,-0.006971999537199736,-0.032085176557302475,0.01781691424548626,0.044378720223903656,-0.006177681032568216,1.3910916227698094e-32,0.003663260955363512,-0.04171855375170708,-0.0202163252979517,0.004632476717233658,0.04489561915397644,0.007882820442318916,-0.0558185875415802,-0.03080599196255207,-0.08757870644330978,-0.0367056168615818,-0.08456364274024963,-0.013321710750460625,-0.07066326588392258,-0.06780017167329788,0.013536842539906502,0.07293771952390671,0.08349983394145966,-0.034891609102487564,-0.000645234773401171,-0.025933779776096344,-0.060868263244628906,0.08507894724607468,0.07211145013570786,-0.06883510202169418,0.017679104581475258,0.037743452936410904,-0.07270633429288864,-0.058415915817022324,-0.08209821581840515,0.03956985846161842,0.07929874956607819,-0.09045129269361496,-0.011843047104775906,-0.023330600932240486,-0.0024364632554352283,0.011074146255850792,0.0025576180778443813,-0.08614795655012131,-0.024793649092316628,0.069970041513443,-0.006882072426378727,0.05732351168990135,0.04090549051761627,-0.032404739409685135,0.048002295196056366,0.05936213210225105,0.045038238167762756,0.055477019399404526,0.08504366874694824,0.0496651753783226,-0.029563406482338905,0.01804322749376297,-0.026650989428162575,-0.006709549576044083,-0.08045417070388794,-0.0229448601603508,-0.04045708850026131,0.044941551983356476,-0.06445257365703583,0.022706788033246994,0.08968591690063477,-0.024075547233223915,0.029686234891414642,-0.03569295257329941,0.024653734639286995,-0.07204294204711914,-0.043122533708810806,0.10512516647577286,0.0584312342107296,0.05113866925239563,-0.0815540999174118,0.013840699568390846,-0.054677847772836685,-0.020289288833737373,0.07583460211753845,-0.01357141975313425,0.008804588578641415,-0.08485519140958786,-0.0031691216863691807,-0.0028077145107090473,-0.04234544187784195,0.05878342315554619,0.07908198237419128,-0.022374877706170082,-0.001426753238774836,-0.0327104777097702,-0.026456832885742188,0.1179480031132698,0.06658558547496796,0.02647211216390133,0.039683692157268524,0.09959138184785843,-0.044466979801654816,-0.07788719236850739,0.029232148081064224,-1.427249829001103e-32,-0.061096590012311935,-0.02853013575077057,-0.04201593995094299,0.0000508992925460916,-0.04498676955699921,0.015431984327733517,-0.09414643049240112,0.017163634300231934,-0.061462122946977615,-0.05711159482598305,-0.012799737975001335,-0.015597142279148102,0.11700040102005005,-0.1617080271244049,0.03857830911874771,-0.02416275255382061,0.013525278307497501,0.07840415090322495,0.012812692672014236,-0.025045121088624,-0.013340269215404987,-0.015063856728374958,0.01938721165060997,-0.151420459151268,0.06012421473860741,-0.02514530159533024,-0.00041424750816076994,0.07214172184467316,-0.027219392359256744,-0.03300768509507179,0.07181547582149506,0.03518948704004288,-0.00814917590469122,0.002477392554283142,-0.036190107464790344,-0.02996373176574707,0.05141526460647583,0.01902429200708866,0.06343653798103333,0.021950801834464073,0.07258284837007523,0.07985369116067886,0.07430902868509293,0.0048860665410757065,0.001453986158594489,-0.05687178671360016,-0.04880796745419502,0.06993058323860168,0.030181189998984337,0.02341988869011402,0.06744073331356049,-0.10271650552749634,0.025484494864940643,-0.04068123176693916,0.05778877064585686,-0.02589784376323223,0.002084298525005579,0.01162669062614441,-0.004065796732902527,0.013504586182534695,0.06975092738866806,0.014388700015842915,-0.04010240361094475,0.007199681829661131,0.08198996633291245,-0.003867357736453414,-0.12527520954608917,0.11143943667411804,-0.03378580883145332,0.049718957394361496,-0.01436231005936861,-0.05396883562207222,-0.12531642615795135,-0.024578707292675972,-0.030764851719141006,-0.008001326583325863,-0.014613308943808079,-0.01777023635804653,0.06582702696323395,-0.0105521185323596,0.023397281765937805,0.009976622648537159,0.01092394720762968,-0.016329118981957436,-0.009751210920512676,-0.03942460939288139,0.028799984604120255,0.021420249715447426,0.009608825668692589,-0.003084236290305853,-0.03823229670524597,-0.035414282232522964,0.021004995331168175,-0.059583839029073715,0.013400677591562271,-4.964561739484452e-8,0.07597912102937698,-0.03757293149828911,-0.011807339265942574,-0.01927594281733036,0.03338974341750145,-0.060829807072877884,-0.03854609280824661,-0.03135780617594719,0.011372997425496578,0.06286817044019699,0.014786762185394764,0.019214613363146782,0.09942731261253357,-0.01696857064962387,0.031006192788481712,0.033812832087278366,0.07938919961452484,0.05507110431790352,-0.0417962446808815,0.004373482894152403,0.01257197093218565,0.03612060099840164,-0.04294969514012337,0.0008593863458372653,-0.05040036514401436,-0.018734466284513474,0.06283282488584518,0.02330050803720951,0.04870403930544853,-0.014942718669772148,-0.02620689943432808,-0.01021228265017271,-0.005919163580983877,-0.09661754220724106,0.04398331046104431,0.06493037194013596,-0.07517236471176147,-0.02955630049109459,0.0612635612487793,0.03881604224443436,0.05479712784290314,-0.0076289912685751915,0.05130366235971451,-0.02115599438548088,-0.021185625344514847,-0.09362364560365677,0.037461284548044205,0.03084567002952099,-0.023548413068056107,0.002086895052343607,-0.08007794618606567,0.004743254743516445,0.0697140321135521,-0.027176465839147568,-0.05753333121538162,-0.06713975965976715,0.05134136974811554,0.015232384204864502,-0.03588186576962471,-0.01400643028318882,0.04931769520044327,-0.004870365373790264,0.08935916423797607,-0.03455088660120964]},{"text":"Non his iuventus orta parentibus Infecit aequor sanguine Punico Pyrrhumque et ingentem cecidit 35 Antiochum Hannibalemque dirum; Sed rusticorum mascula militum Proles, Sabellis docta ligonibus Versare glaebas et severae Matris ad arbitrium recisos 40 Portare fustis, sol ubi montium Mutaret umbras et iuga demeret Bobus fatigatis amicum Tempus agens abeunte curru.","book":"Homage to Catalonia","chapter":18,"embedding":[-0.0005620998563244939,0.06277793645858765,0.005401461850851774,-0.006456627044826746,-0.0838591456413269,0.011769658885896206,0.022649994120001793,0.043514683842659,-0.01982344500720501,0.09357861429452896,0.09539525955915451,-0.1372801959514618,0.04388585314154625,-0.029290836304426193,-0.06570693105459213,-0.015621267259120941,0.017814524471759796,0.04125684127211571,-0.004774412605911493,0.004141243174672127,0.04617784917354584,0.04561007395386696,0.027441561222076416,-0.03913073614239693,-0.04053710401058197,0.05540421977639198,-0.07190697640180588,-0.04099658504128456,0.0157991461455822,-0.1030917838215828,-0.003657830646261573,0.03451696038246155,0.08593253791332245,-0.040085092186927795,0.02663571573793888,0.02198886126279831,-0.0003735195205081254,-0.03269260749220848,0.0897006168961525,0.11239409446716309,-0.011708077043294907,0.012570472434163094,-0.04300082102417946,-0.009662951342761517,-0.08044814318418503,0.00861328188329935,-0.01952054537832737,0.05921482294797897,0.06222846359014511,0.014454461634159088,-0.09417018294334412,-0.04010535031557083,-0.05839681997895241,0.017726806923747063,-0.03253103420138359,-0.012030679732561111,-0.0021245041862130165,-0.07419048249721527,-0.01568092592060566,-0.05056091398000717,-0.026044435799121857,0.07084684073925018,-0.0034793755039572716,0.032271865755319595,-0.09298434108495712,0.0054894243367016315,-0.0212248545140028,-0.029102977365255356,-0.050060372799634933,0.02962138131260872,0.12426923960447311,-0.0036027063615620136,-0.054976869374513626,0.07713570445775986,-0.07709287106990814,0.033302389085292816,0.015283062122762203,-0.02929789386689663,0.040768977254629135,-0.08059873431921005,-0.15596234798431396,0.023325888440012932,-0.007857494987547398,-0.009140362963080406,-0.030020451173186302,-0.04046807438135147,0.036773454397916794,-0.04978489875793457,-0.005624697078019381,0.010501202195882797,0.029658477753400803,-0.0645081177353859,-0.05528710409998894,-0.030096737667918205,-0.007093220017850399,0.0004847358795814216,0.00903281755745411,0.025847522541880608,-0.03542844206094742,-0.04132875055074692,-0.027238715440034866,-0.06199665367603302,-0.006182398647069931,0.06148133426904678,-0.12387760728597641,-0.06107775866985321,-0.10667064040899277,-0.08047086000442505,0.040063221007585526,0.030420254915952682,-0.10370325297117233,-0.048541974276304245,-0.049605853855609894,-0.008414126001298428,0.0015410390915349126,0.003201062325388193,0.02069995552301407,-0.043098896741867065,-0.0011912498157471418,-0.027758227661252022,0.02923176810145378,0.010031276382505894,0.03204342722892761,0.02787843346595764,-0.03848961740732193,-0.008846666663885117,0.041456885635852814,2.1986835720283775e-32,-0.036543771624565125,-0.12167774885892868,-0.05181200057268143,-0.011220450513064861,0.00034344749292358756,0.027496477589011192,-0.07631839066743851,-0.010564467869699001,0.013267917558550835,-0.0973920226097107,-0.06898155063390732,-0.02969665639102459,-0.010527809150516987,0.015488226898014545,0.001431334880180657,0.0699697956442833,0.0241229310631752,-0.05504634231328964,0.02633541449904442,-0.04538818821310997,-0.08644867688417435,0.0526072196662426,0.04010715335607529,-0.03968929499387741,0.053955528885126114,0.0013388321967795491,0.04705428332090378,-0.05207320302724838,-0.06680794060230255,0.021528424695134163,0.08392935246229172,-0.09219431132078171,-0.057663388550281525,-0.10235659778118134,-0.026796285063028336,0.030962849035859108,0.010522850789129734,-0.03659507632255554,-0.08508320152759552,0.021350737661123276,-0.030345361679792404,-0.00917085912078619,0.04994567856192589,0.01454133540391922,0.058973804116249084,0.01937922276556492,0.028359804302453995,0.02664734236896038,0.060396790504455566,0.011882631108164787,0.05577942356467247,0.0491517037153244,0.1018732562661171,-0.041274938732385635,-0.011546225287020206,0.07644376903772354,-0.014197376556694508,0.06045648828148842,-0.03747795522212982,0.02384304627776146,0.12655721604824066,0.051905084401369095,0.05824161693453789,-0.035560254007577896,0.010020097717642784,-0.031245166435837746,-0.020828716456890106,0.010427632369101048,0.02759428508579731,-0.0624888651072979,-0.06614302098751068,-0.040518227964639664,-0.011817937716841698,-0.011670701205730438,-0.08192266523838043,0.04456087201833725,0.0227998998016119,-0.05386647209525108,-0.03503428399562836,-0.0709412544965744,-0.04908444732427597,-0.05049888789653778,0.025723455473780632,0.005723133683204651,0.03933216631412506,-0.029972027987241745,-0.02818291448056698,0.011548057198524475,0.05287036672234535,0.07435443997383118,0.040921811014413834,-0.0020909386221319437,-0.03472970798611641,-0.008828538469970226,0.028989968821406364,-2.1363760531526606e-32,-0.05636731907725334,-0.05846777185797691,-0.021668769419193268,0.08671729266643524,-0.0182759128510952,-0.012936373241245747,-0.05650602653622627,0.13074243068695068,0.013156427070498466,-0.049219924956560135,-0.1062011793255806,-0.009699275717139244,0.05016166716814041,-0.14741486310958862,0.05850867182016373,0.05700993910431862,0.058317773044109344,0.10760229080915451,-0.02071688324213028,-0.054311834275722504,-0.04770747572183609,0.04308849573135376,0.022208228707313538,-0.08836788684129715,0.025974562391638756,0.012828600592911243,-0.005946583114564419,-0.013340995647013187,-0.07318531721830368,-0.03496939316391945,0.09623012691736221,0.033986400812864304,0.00107806536834687,0.019805505871772766,-0.016411982476711273,-0.042715154588222504,0.08731681853532791,-0.060187336057424545,0.028222452849149704,-0.004714858252555132,0.02858293615281582,0.0495268739759922,0.1324441283941269,0.06678245961666107,0.010096398182213306,-0.011494185775518417,-0.08210185915231705,-0.009139115922152996,0.0027314303442835808,0.09447037428617477,0.017036911100149155,-0.014942154288291931,0.028411677107214928,-0.042895350605249405,0.05421832948923111,-0.04046855494379997,-0.01690729334950447,-0.03898031637072563,0.0002391471789451316,-0.012367798015475273,0.05487259849905968,-0.001676524174399674,-0.021571969613432884,-0.008999939076602459,0.05459217727184296,0.050729356706142426,-0.11456477642059326,0.035026587545871735,-0.07659745961427689,0.05019700527191162,0.054795894771814346,-0.10210027545690536,-0.13927605748176575,-0.026906484737992287,0.03884328156709671,0.05956258624792099,-0.01457425206899643,0.030664881691336632,-0.00538675906136632,-0.0007263789302669466,-0.03386588767170906,-0.032001793384552,0.006449902430176735,-0.018598418682813644,0.009032721631228924,-0.08275307714939117,-0.010048657655715942,-0.018814895302057266,0.030336234718561172,-0.0009737336076796055,-0.0028632176108658314,-0.04691678658127785,0.022958524525165558,-0.03478693589568138,0.0884489044547081,-6.233383942344517e-8,0.029144104570150375,-0.05721971392631531,0.03823021426796913,0.015215069986879826,0.06537710130214691,-0.08113963156938553,0.010350292548537254,0.014542526565492153,-0.0033221289049834013,0.037607572972774506,-0.05816636234521866,0.08100859820842743,0.019229905679821968,0.01706891879439354,0.09235367178916931,-0.012807045131921768,0.08209472894668579,-0.025652281939983368,-0.04018063843250275,-0.0467514768242836,0.04088352248072624,-0.022365663200616837,-0.0432373508810997,0.02599853277206421,-0.08187556266784668,-0.04621773213148117,0.0841221734881401,-0.007095541805028915,0.02860315330326557,0.0032184089068323374,-0.006905077025294304,0.06927009671926498,-0.003937236499041319,-0.08791907876729965,0.015161086805164814,0.02139175496995449,-0.020602881908416748,0.029551014304161072,0.01627010479569435,0.02433173544704914,0.0065784999169409275,-0.023471595719456673,0.058621615171432495,-0.03034626878798008,0.058670274913311005,-0.007089662365615368,-0.025379467755556107,0.054039694368839264,-0.011343712918460369,-0.04599006474018097,-0.026560764759778976,0.011169404722750187,0.07291773706674576,0.0014188861241564155,-0.09049927443265915,-0.03772557154297829,0.04794149473309517,0.015738151967525482,0.06497351080179214,0.038983337581157684,0.05390579253435135,0.0011461750837042928,0.08345257490873337,0.004478276241570711]},{"text":"Quid fles, Asterie, quem tibi candidi Primo restituent vere Favonii Thyna merce beatum, Constantis iuvenem fide, Gygen?","book":"Homage to Catalonia","chapter":18,"embedding":[-0.009813518263399601,0.08894208073616028,-0.057328540831804276,-0.028399130329489708,-0.08512648195028305,0.06768236309289932,0.011858602054417133,0.06320858001708984,-0.048147160559892654,0.02501964010298252,0.02578495815396309,-0.045400220900774,0.06030004099011421,-0.12163175642490387,-0.04857343062758446,-0.11259803920984268,-0.023971136659383774,0.05995911732316017,-0.08982355892658234,0.03352051600813866,-0.10005474835634232,-0.06078123673796654,0.04017342999577522,-0.0062310704961419106,-0.05686238780617714,-0.004823320545256138,-0.011303934268653393,0.0044032493606209755,0.03743667155504227,-0.03911842033267021,-0.013345482759177685,0.020132407546043396,0.018937934190034866,0.03332378342747688,-0.028292734175920486,-0.03151826560497284,0.01768890582025051,-0.08123143762350082,0.042070817202329636,0.04293117672204971,-0.026185818016529083,-0.07654675096273422,-0.08292196691036224,0.018158117309212685,-0.02240191400051117,0.01710180565714836,0.018835121765732765,0.09242121875286102,-0.009569484740495682,-0.02522103488445282,-0.03513312339782715,0.011087758466601372,-0.06804130971431732,-0.007499690633267164,-0.023219184949994087,0.00020143913570791483,0.03177546337246895,-0.0582917146384716,0.002857625251635909,-0.030777707695961,0.005759631283581257,0.06570979952812195,-0.036313287913799286,0.02201569825410843,-0.014422936365008354,-0.04337925463914871,-0.006505810655653477,0.023089274764060974,-0.02885841391980648,0.047860339283943176,0.07734528928995132,-0.08520561456680298,-0.06324339658021927,0.05760306119918823,-0.02252153493463993,0.05612889304757118,-0.07181628048419952,-0.01563594676554203,0.015182909555733204,-0.015340311452746391,0.01885322667658329,-0.06358756124973297,0.0730995312333107,0.035786256194114685,0.029832186177372932,-0.010601266287267208,0.06023354455828667,0.06278382986783981,0.13078901171684265,0.010981511324644089,0.0003105711075477302,0.06729718297719955,-0.01534641720354557,-0.05496235564351082,0.004567902535200119,0.03658406436443329,0.0269942469894886,-0.010251009836792946,-0.006205486599355936,0.010180804878473282,0.06301192194223404,-0.016449032351374626,-0.01634790375828743,0.11867783963680267,-0.0681292712688446,0.005637620110064745,0.016928378492593765,-0.03636041656136513,0.10179397463798523,0.018219400197267532,-0.053814779967069626,-0.13150520622730255,-0.013418292626738548,-0.07705697417259216,-0.021257642656564713,-0.014955556020140648,0.02582125924527645,-0.027649234980344772,0.030414845794439316,-0.0787489265203476,0.07720345258712769,-0.002220983849838376,-0.0005583344027400017,-0.06816519051790237,0.07034514844417572,-0.07390324771404266,0.011594453826546669,7.648440686333587e-33,-0.014310222119092941,-0.04283963888883591,-0.0035644923336803913,0.03344333544373512,0.02773992158472538,0.054622724652290344,-0.06730063259601593,-0.008911765180528164,0.022934170439839363,-0.0030668876133859158,-0.1019069254398346,0.00909279566258192,-0.07349365204572678,0.029810931533575058,-0.037541963160037994,0.05074029788374901,0.032049018889665604,-0.10549296438694,0.006066450849175453,-0.0728435292840004,-0.02294624038040638,0.014767124317586422,0.086034394800663,0.048788756132125854,0.04616103693842888,-0.023770615458488464,0.01806180737912655,0.023387989029288292,-0.01846073567867279,-0.0034640789963304996,0.07372084259986877,-0.10245552659034729,-0.006703807972371578,-0.020131520926952362,-0.03126658871769905,-0.03339127078652382,-0.03760507330298424,0.011012383736670017,-0.010462967678904533,-0.025065980851650238,0.021435651928186417,-0.009472241625189781,0.035213954746723175,-0.009520241990685463,-0.013150794431567192,0.036140091717243195,0.002176266396418214,-0.018975920975208282,0.031679701060056686,-0.005215437617152929,-0.008601784706115723,0.017365170642733574,-0.08501100540161133,0.01423853449523449,0.011695846915245056,0.030526738613843918,-0.08163432031869888,0.13837607204914093,-0.06714288890361786,-0.03673936799168587,0.019887028262019157,-0.005867566913366318,0.11966819316148758,0.08649434894323349,-0.006349602714180946,0.06578141450881958,-0.13257195055484772,-0.0058994656428694725,0.1294407844543457,0.05715646222233772,-0.001057927031069994,-0.018472587689757347,-0.02918815426528454,0.008130748756229877,0.04585384577512741,0.03227810189127922,0.0786517933011055,-0.007714714854955673,-0.0531354658305645,-0.049899253994226456,-0.12416776269674301,-0.03744009882211685,-0.037436146289110184,0.04100367799401283,0.007655758410692215,0.004412665497511625,0.0428490936756134,-0.035776399075984955,0.027408387511968613,0.048732880502939224,0.015408189035952091,0.012880561873316765,0.04610090330243111,-0.021950019523501396,0.01206053327769041,-7.759989957438837e-33,0.03382239490747452,-0.04236973449587822,0.0005342680378817022,0.060526587069034576,0.0519014447927475,0.01966286264359951,-0.057271722704172134,0.01383857149630785,0.02043464034795761,-0.07036765664815903,-0.014834935776889324,-0.017628822475671768,0.09911513328552246,0.013157420791685581,-0.024902379140257835,0.08612905442714691,0.05182679742574692,-0.013367733918130398,-0.021109098568558693,-0.016193363815546036,-0.056479327380657196,-0.004957763943821192,0.05729331076145172,-0.00748787634074688,0.036687541753053665,-0.06215095892548561,0.07998732477426529,-0.01135735772550106,-0.04623560234904289,0.017278404906392097,0.11200108379125595,0.01651667058467865,0.010378447361290455,0.0009265976259484887,0.00739319808781147,0.01873611845076084,0.1658359169960022,0.057454776018857956,-0.03392898663878441,0.010013309307396412,-0.021179448813199997,-0.01937730796635151,-0.02677798829972744,0.05425399914383888,0.05902388319373131,-0.02998090162873268,-0.11193646490573883,-0.06116531789302826,-0.026766272261738777,-0.002680311445146799,0.08696851134300232,-0.03558029234409332,-0.02822713553905487,-0.044357944279909134,0.044544536620378494,0.020393548533320427,0.02744963951408863,-0.01928733102977276,-0.11223683506250381,0.0035804794169962406,0.07732439786195755,0.007320390082895756,0.01297685131430626,-0.03436492756009102,0.07175604999065399,-0.0055031850934028625,-0.06755652278661728,0.052073441445827484,0.036759961396455765,0.11209292709827423,0.07588230818510056,-0.056154921650886536,-0.049717869609594345,0.09370070695877075,-0.029393838718533516,0.01665879413485527,0.01606394350528717,0.06824696809053421,-0.006710561458021402,0.06271578371524811,-0.07229819148778915,-0.050339311361312866,-0.046279728412628174,-0.0052170585840940475,-0.07100429385900497,-0.09528563916683197,0.07891473174095154,0.019974807277321815,0.00503774918615818,0.03411862999200821,0.03835814446210861,0.00817564595490694,-0.014597434550523758,-0.03565574437379837,-0.007606347557157278,-3.835736706037096e-8,0.03228042647242546,-0.06210670247673988,-0.049045220017433167,0.09906475991010666,0.046571388840675354,-0.03515978530049324,-0.0739741176366806,-0.11168187856674194,0.03312930092215538,0.003569369437173009,-0.02036593109369278,0.041524678468704224,0.013673564419150352,-0.013844333589076996,-0.02780499868094921,0.0732026994228363,-0.045124687254428864,0.03581388294696808,-0.0661039724946022,-0.07494328916072845,-0.005856887903064489,0.022285236045718193,-0.05737391859292984,-0.030606839805841446,-0.07238064706325531,-0.011090044863522053,-0.025824282318353653,-0.07121257483959198,-0.01884688250720501,-0.0456717312335968,0.03501487895846367,0.029579317197203636,0.05935843661427498,-0.11062861233949661,-0.07796584814786911,0.05036795139312744,0.05764182284474373,-0.005942138377577066,-0.020488442853093147,0.009401112794876099,0.10786847770214081,0.03289617970585823,0.05541369691491127,-0.03646092861890793,-0.05663923919200897,-0.06941952556371689,0.02706904523074627,0.051117222756147385,0.0036291133146733046,0.005082008428871632,0.009542607702314854,0.09033742547035217,0.04232398793101311,0.025829307734966278,0.024471327662467957,0.01823420822620392,-0.013779498636722565,0.05688020959496498,-0.05788884311914444,0.002568986499682069,-0.0021619738545268774,0.03507059067487717,0.06904152780771255,-0.056967686861753464]},{"text":"Atqui sollicitae nuntius hospitae, Suspirare Chloen et miseram tuis 10 Dicens ignibus uri, Temptat mille vafer modis.","book":"Homage to Catalonia","chapter":18,"embedding":[-0.06635279953479767,-0.007875476963818073,0.01384254265576601,-0.005462208297103643,-0.06381648778915405,0.044117093086242676,0.11652208119630814,0.061337150633335114,0.032024603337049484,-0.010996941477060318,0.0449814535677433,-0.026253297924995422,0.029012762010097504,-0.10064218193292618,-0.07029382139444351,-0.06301816552877426,-0.08770950138568878,0.0931222140789032,-0.05262329801917076,-0.016123495995998383,0.08321602642536163,-0.051767498254776,-0.027779413387179375,0.01643235608935356,0.01315624825656414,0.011435137130320072,-0.01588883437216282,-0.0001333703112322837,-0.0011280366452410817,-0.017407923936843872,0.09900860488414764,0.1281329095363617,-0.047306835651397705,0.010811036452651024,0.06390513479709625,0.028928661718964577,-0.06122143194079399,-0.06682661175727844,0.05768778547644615,0.06267707794904709,-0.03811609372496605,-0.050590939819812775,-0.014087806455790997,-0.047698333859443665,-0.04480540752410889,-0.027796892449259758,-0.020272882655262947,0.061440691351890564,0.02557552233338356,0.02806376852095127,-0.09197168797254562,0.01865941472351551,-0.007534460164606571,-0.02182072214782238,-0.04601532593369484,-0.027537427842617035,-0.0022759309504181147,-0.11564185470342636,0.059741195291280746,-0.07110010087490082,-0.021693740040063858,0.054901815950870514,-0.047133587300777435,0.04433107748627663,-0.04861580207943916,0.02365122176706791,-0.024703476577997208,-0.046109363436698914,-0.05438666790723801,-0.016543176025152206,0.0627710223197937,-0.028728172183036804,-0.024287374690175056,0.06018722802400589,-0.06108878552913666,0.009060555137693882,0.06226158142089844,-0.07505510747432709,-0.04450778663158417,0.010193309746682644,0.04884753003716469,0.052149999886751175,0.06971403956413269,-0.011926380917429924,-0.026430204510688782,-0.06686370819807053,0.011980480514466763,-0.0029963075648993254,0.12446816265583038,0.010824429802596569,-0.09300360828638077,0.05406545102596283,-0.018941162154078484,0.010797874070703983,-0.015927715227007866,0.026267090812325478,0.016946638002991676,0.006057578604668379,-0.04746587574481964,0.039311107248067856,0.01418460812419653,-0.008193443529307842,-0.03704031556844711,0.1368248015642166,-0.03200504183769226,-0.057817086577415466,0.08283216506242752,-0.027483083307743073,0.024111345410346985,0.03263217210769653,-0.022447960451245308,-0.09544070810079575,0.018444256857037544,-0.10503062605857849,0.03285213187336922,0.021885909140110016,0.03693923354148865,-0.02929520606994629,-0.04653194546699524,-0.07380316406488419,0.05597579479217529,0.018197735771536827,-0.005631644278764725,-0.0167741309851408,0.0596901960670948,-0.006337327882647514,0.024163903668522835,1.1084694261799269e-32,0.013484599068760872,-0.03930748626589775,0.03790678828954697,0.07279844582080841,-0.008279870264232159,-0.06787679344415665,-0.0017705784412100911,0.021072637289762497,0.003581554861739278,-0.046022944152355194,-0.11980659514665604,-0.025844983756542206,-0.10956547409296036,0.03170592337846756,0.04663418233394623,0.03500600904226303,0.09772279113531113,0.014866185374557972,0.052435293793678284,-0.06598975509405136,-0.02215123176574707,-0.04025273025035858,0.07197866588830948,-0.023271437734365463,0.0016741449944674969,-0.06890535354614258,-0.007980110123753548,-0.008723817765712738,0.05125712975859642,0.023240061476826668,0.14373955130577087,0.022134311497211456,-0.006138763390481472,-0.02833135984838009,-0.037262823432683945,0.007336805574595928,0.010002905502915382,0.05541027709841728,-0.031277306377887726,0.031270209699869156,-0.02213776297867298,0.05435752496123314,0.1122204065322876,-0.01198181975632906,0.09599215537309647,0.0050155771896243095,0.0624074786901474,-0.01751474291086197,0.07090736925601959,-0.005643941927701235,-0.031208520755171776,-0.014953701756894588,-0.014481905847787857,0.021435562521219254,0.06605804711580276,0.03524572774767876,-0.035493142902851105,0.059312451630830765,-0.007694710046052933,0.009555206634104252,-0.00647977739572525,-0.05943232774734497,0.016023041680455208,-0.031320154666900635,0.04616689309477806,0.017582369968295097,0.0681404247879982,-0.042828138917684555,0.08727966994047165,0.016086967661976814,-0.1487428992986679,-0.007858464494347572,-0.05584318935871124,0.0440392941236496,0.030832206830382347,0.019596753641963005,0.018611561506986618,-0.028943857178092003,-0.028336986899375916,0.005817742086946964,-0.023445582017302513,-0.051060862839221954,-0.03200541436672211,0.09896621853113174,0.07136238366365433,-0.10377021878957748,-0.0019448924576863647,0.004442532081156969,-0.011590716429054737,-0.027929821982979774,0.015195042826235294,-0.013537858612835407,-0.00799298845231533,0.007675424683839083,0.00481318449601531,-1.081742725404059e-32,-0.009989336133003235,-0.056371163576841354,-0.08729862421751022,0.09543182700872421,-0.02806328609585762,0.04303793981671333,-0.005985958967357874,0.03416501730680466,-0.03918984532356262,-0.042481258511543274,-0.06877452880144119,-0.032408203929662704,0.09876922518014908,-0.08463989198207855,-0.11834672093391418,0.05716385319828987,0.0524565726518631,0.024763673543930054,-0.05133826658129692,-0.005066831596195698,-0.02434312179684639,0.017328733578324318,-0.02303735911846161,-0.1376623809337616,-0.009090792387723923,-0.0022566879633814096,0.09152514487504959,-0.01516815833747387,-0.10005150735378265,-0.015851059928536415,0.06117045134305954,-0.009663301520049572,0.028524817898869514,0.061951205134391785,-0.02860979549586773,0.08022071421146393,0.10064321011304855,-0.03431286662817001,-0.03487623482942581,0.01103978231549263,0.019423991441726685,-0.01794736087322235,0.08217872679233551,-0.010882222093641758,0.01983817107975483,-0.03055252879858017,-0.062453050166368484,-0.11271163821220398,0.0064414371736347675,0.023237140849232674,0.09541979432106018,-0.039562031626701355,-0.01655794307589531,0.003038564929738641,0.057071540504693985,-0.0786132737994194,-0.06724374741315842,-0.005868811160326004,-0.045327071100473404,-0.016342690214514732,0.09455733001232147,0.08946865797042847,0.0059440541081130505,-0.008703536354005337,0.05223932862281799,-0.0372261106967926,-0.10971197485923767,0.03860499709844589,0.014082835055887699,-0.02356228418648243,0.03557942062616348,-0.12243114411830902,-0.02584417350590229,-0.041267696768045425,0.03017902374267578,-0.021259348839521408,-0.06405019760131836,0.024046124890446663,-0.003828204469755292,0.009907481260597706,-0.029601940885186195,-0.08437944203615189,-0.02178707718849182,0.02586444467306137,-0.051509302109479904,0.06509044766426086,0.15943871438503265,-0.00534825399518013,0.03847096860408783,0.015184730291366577,0.023143943399190903,0.019622381776571274,0.1268196702003479,-0.03341697156429291,-0.03346150368452072,-4.015798182877006e-8,0.01978662796318531,-0.011516844853758812,-0.04255761578679085,0.03331690654158592,0.01251688040792942,0.02439316362142563,-0.0199755746871233,-0.039322350174188614,-0.028787756338715553,0.06061632186174393,-0.01811901107430458,-0.01187012530863285,-0.02068149298429489,0.03211555629968643,0.06442073732614517,-0.03756109997630119,-0.006898494902998209,0.029788723215460777,-0.035276852548122406,-0.06759814918041229,0.01408508699387312,-0.016751082614064217,-0.02647765725851059,-0.02765147015452385,0.03607635200023651,-0.03430979698896408,0.010783076286315918,-0.07308777421712875,-0.0012085291091352701,-0.027947206050157547,-0.03344058617949486,0.006098615005612373,-0.032393451780080795,-0.03308709338307381,-0.054738808423280716,0.10721997171640396,-0.07088339328765869,-0.05001666024327278,0.015568283386528492,0.017065925523638725,0.06146704778075218,0.03633749485015869,0.045384421944618225,-0.03693775460124016,-0.02553384006023407,0.01655588671565056,0.058821190148591995,-0.014140852726995945,0.014446594752371311,-0.028985096141695976,-0.03673318028450012,-0.00819326937198639,0.01929333060979843,0.020528258755803108,0.022018801420927048,-0.0019213436171412468,0.02220146358013153,0.030287720263004303,0.023774350062012672,0.03944149613380432,0.03711108863353729,0.0770319402217865,-0.1033366471529007,-0.0013088453561067581]},{"text":"At tibi Ne vicinus Enipeus Plus iusto placeat cave; Quamvis non alius flectere equum sciens 25 Aeque conspicitur gramine Martio, Nec quisquam citus aeque Tusco denatat alveo.","book":"Homage to Catalonia","chapter":18,"embedding":[0.02309451811015606,0.03770431876182556,-0.05791228637099266,-0.022970661520957947,-0.05394929647445679,-0.005506179295480251,0.04655631259083748,0.05748581513762474,-0.0018008965998888016,0.06810449063777924,0.02173423208296299,-0.15471228957176208,-0.019532300531864166,-0.03290807828307152,-0.06762584298849106,-0.05532214418053627,0.023700430989265442,0.05039474740624428,0.04049748182296753,-0.017853636294603348,0.027986347675323486,-0.03008744679391384,-0.028488483279943466,0.019751902669668198,-0.11937437951564789,0.013180309906601906,-0.11173302680253983,-0.011127527803182602,0.046258486807346344,-0.09239452332258224,-0.0009519047453068197,0.09445438534021378,0.09537617117166519,-0.029883725568652153,0.040952831506729126,-0.024163149297237396,-0.027364568784832954,-0.036320071667432785,0.07730913162231445,0.02780197374522686,-0.042133815586566925,0.04059967026114464,0.014110090211033821,-0.02290765941143036,0.001486259512603283,-0.03788470849394798,-0.04770364612340927,0.08127705752849579,0.047783881425857544,-0.010638045147061348,-0.035412803292274475,-0.019477088004350662,-0.05539057403802872,0.058878231793642044,-0.06864738464355469,-0.043251026421785355,-0.03572538495063782,-0.0990884080529213,-0.011750081554055214,-0.06227540969848633,0.0831557959318161,0.07284064590930939,-0.010094335302710533,0.027192560955882072,-0.07077059894800186,-0.0023475224152207375,-0.04352593049407005,-0.041347406804561615,-0.045438386499881744,0.08241397142410278,0.09005981683731079,-0.03313877061009407,-0.03393237292766571,0.018909651786088943,-0.060610756278038025,0.05726809427142143,0.048734139651060104,-0.007712331600487232,-0.010069775395095348,-0.0661027804017067,-0.03628014400601387,0.01637999154627323,-0.00585438497364521,0.0036757199559360743,-0.012782307341694832,-0.006818919908255339,0.02827555313706398,0.01252985093742609,0.08917158097028732,0.004949131514877081,0.04387620463967323,0.01974666304886341,-0.1074005663394928,-0.02112901583313942,0.040841713547706604,0.006339761428534985,0.01909366250038147,0.06177978590130806,-0.06190689280629158,0.010270334780216217,0.013899576850235462,-0.008059298619627953,-0.02640487253665924,0.010414248332381248,-0.03424271568655968,0.003953164909034967,0.006547603756189346,-0.03689901530742645,0.01568102464079857,-0.008091769181191921,-0.08534922450780869,-0.0986577570438385,0.029825421050190926,0.01706807129085064,-0.03567015752196312,0.021445849910378456,-0.005470802076160908,-0.08911332488059998,0.0013023545034229755,0.005765898618847132,0.03173568844795227,0.03110021911561489,-0.02671041712164879,-0.011371497064828873,0.006825708784162998,-0.03946647420525551,0.049692168831825256,1.8192707297814063e-32,0.010808377526700497,-0.1051192358136177,-0.01972166821360588,-0.04380491003394127,0.035372935235500336,0.034521233290433884,-0.04653098061680794,0.016723910346627235,-0.010762598365545273,-0.006791129242628813,-0.12088452279567719,-0.030722633004188538,0.011749915778636932,0.019518448039889336,0.008601230569183826,0.06988083571195602,0.05927510932087898,-0.07463697344064713,-0.021649368107318878,-0.07753073424100876,-0.08351920545101166,-0.02319864183664322,-0.04710916429758072,-0.033056117594242096,-0.003516243305057287,0.06736259162425995,-0.005125085823237896,-0.12094239890575409,-0.020103540271520615,0.05712982267141342,0.060029346495866776,0.023401761427521706,-0.024949997663497925,0.038716837763786316,0.008865412324666977,0.014966119080781937,0.10675229877233505,0.027811601758003235,-0.07610897719860077,0.023019390180706978,0.04817759245634079,0.04817863181233406,0.06850246340036392,-0.026328224688768387,0.012664332054555416,-0.0784122571349144,0.03253240883350372,0.04985231161117554,0.14131443202495575,0.019055934622883797,-0.026404259726405144,0.03182477131485939,-0.01334447879344225,-0.0611857995390892,0.04990828037261963,0.026438504457473755,-0.03309014439582825,0.09031542390584946,-0.09753552079200745,0.03196946531534195,-0.001811962341889739,-0.0696425810456276,0.03890743851661682,-0.023181457072496414,-0.010323098860681057,-0.04692128673195839,-0.07521900534629822,-0.04649696871638298,0.018412690609693527,-0.022450802847743034,-0.10146935284137726,-0.039551232010126114,-0.012102864682674408,0.024495601654052734,-0.031953535974025726,0.0002603154571261257,0.04516053944826126,0.007552802097052336,-0.04663756862282753,0.02567102015018463,-0.04786401987075806,-0.05683862790465355,-0.011049981229007244,0.05373182147741318,0.06540694832801819,0.01682652346789837,0.0012184020597487688,0.06367916613817215,0.08972995728254318,0.04569009691476822,-0.030551975592970848,0.015791844576597214,-0.03229253739118576,-0.04196413978934288,0.031665727496147156,-1.687550563363221e-32,-0.06926194578409195,-0.010177495889365673,-0.10583195835351944,0.09629326313734055,-0.058201707899570465,0.0696011334657669,-0.07434215396642685,0.024956267327070236,0.03811286389827728,-0.02133711613714695,-0.08545944839715958,0.011643650010228157,0.10937321931123734,-0.09996972233057022,0.01693158969283104,0.06910060346126556,0.045619331300258636,-0.004141570534557104,-0.05058034136891365,-0.06636427342891693,-0.07405697554349899,-0.018773837015032768,-0.029490288347005844,-0.1263444423675537,0.019623199477791786,0.060563769191503525,0.003720755223184824,0.00047437654575333,-0.12005611509084702,0.0072730970568954945,0.011527215130627155,-0.010425320826470852,-0.040076058357954025,0.10595680773258209,0.008492552675306797,0.047163885086774826,0.1311206966638565,-0.09271826595067978,-0.03404378890991211,0.08227767795324326,0.0038241606671363115,0.06541594862937927,0.0572737455368042,0.030416008085012436,0.05305798351764679,0.01652880758047104,-0.10023487359285355,-0.0008391328155994415,-0.007326342165470123,0.029794273898005486,0.08939225971698761,-0.03600010275840759,0.004296323750168085,0.02612026408314705,0.05112120881676674,-0.04129297658801079,-0.0694698840379715,-0.008245318196713924,-0.0972602516412735,0.007608457002788782,0.09330528229475021,0.09209862351417542,-0.07465138286352158,-0.0420575886964798,0.02850872091948986,0.021417612209916115,-0.1046295166015625,0.13368505239486694,-0.07186006009578705,0.02243347465991974,0.062284428626298904,-0.08704737573862076,-0.06903250515460968,-0.0274107214063406,0.023636728525161743,0.03055415488779545,0.060730066150426865,0.0061327023431658745,0.05267171561717987,-0.007825743407011032,0.020474212244153023,0.008896086364984512,0.04000956937670708,0.017475450411438942,-0.019182970747351646,0.025508493185043335,-0.056218117475509644,0.023813698440790176,0.0059477114118635654,0.03125469386577606,-0.0412924624979496,0.014895293861627579,0.015041645616292953,-0.0017216318519786,0.06872270256280899,-5.2811799378105206e-8,0.021646853536367416,-0.03053429163992405,-0.07666899263858795,0.10094340890645981,-0.03580731153488159,-0.031080212444067,0.01049372274428606,-0.008437860757112503,0.0010724103776738048,0.04699656367301941,-0.015771735459566116,-0.02899917960166931,0.009079337120056152,0.058677468448877335,0.03766496106982231,0.054470621049404144,0.05261968821287155,-0.01298999972641468,-0.04894990101456642,-0.03416690230369568,-0.01903700642287731,-0.023273227736353874,-0.007828845642507076,-0.055894628167152405,-0.05758608505129814,-0.027319278568029404,0.03692981228232384,-0.050171684473752975,0.02988026849925518,0.06263075023889542,-0.022346867248415947,0.021642573177814484,-0.02747909538447857,-0.04350811615586281,0.026398416608572006,0.06930144131183624,-0.059173934161663055,0.008680715225636959,0.0014739932958036661,0.024734092876315117,0.028917957097291946,0.020041290670633316,-0.007244478445500135,-0.06839065253734589,0.02109592594206333,0.007236107252538204,0.013561169616878033,0.025793636217713356,-0.027827449142932892,-0.04398735612630844,-0.07432755082845688,0.03459259495139122,0.10993038862943649,0.04022586718201637,-0.017812183126807213,0.01249094307422638,0.05148426443338394,-0.04221385344862938,0.06702356040477753,0.043840888887643814,-0.018064221367239952,0.08417585492134094,-0.026934999972581863,0.014429558999836445]},{"text":"Martiis caelebs quid agam Kalendis, Quid velint flores et acerra turis Plena miraris positusque carbo in Caespite vivo, Docte sermones utriusque linguae? 5 Voveram dulcis epulas et album Libero caprum prope funeratus Arboris ictu.","book":"Homage to Catalonia","chapter":19,"embedding":[0.035337258130311966,0.0330488421022892,-0.0005724590737372637,0.01455431617796421,-0.08118130266666412,0.05867157131433487,0.050114359706640244,0.010989421047270298,0.06553420424461365,0.07331562042236328,0.032260045409202576,-0.0968596339225769,-0.010721110738813877,-0.06441497802734375,-0.03570687770843506,-0.08169666677713394,-0.020678719505667686,0.0630379393696785,0.005956979934126139,0.02026520110666752,0.0393633209168911,0.0356350913643837,-0.012489600107073784,0.05422089621424675,-0.06772003322839737,-0.00027496967231854796,-0.10187965631484985,-0.08381762355566025,-0.002478435868397355,-0.06457478553056717,0.022664187476038933,0.07645094394683838,0.11369605362415314,-0.044200412929058075,-0.04699619859457016,0.03722655028104782,0.019562166184186935,-0.06432632356882095,-0.00822888221591711,0.08711327612400055,-0.05736350640654564,0.06760998070240021,-0.033858176320791245,-0.04252732917666435,-0.01363326795399189,-0.09905682504177094,-0.08935881406068802,0.03232119232416153,0.010510960593819618,0.047597505152225494,-0.10357121378183365,-0.07966138422489166,-0.02474960684776306,-0.02038104645907879,-0.05809181183576584,0.025947721675038338,0.023690761998295784,-0.032856762409210205,0.014268721453845501,0.03740241751074791,0.026156889274716377,-0.014699586667120457,-0.05162452533841133,0.03499198332428932,-0.05116062983870506,-0.0029553610365837812,-0.05929461121559143,0.039452746510505676,-0.0774516761302948,0.05841752886772156,0.034683071076869965,-0.029985185712575912,0.009879766032099724,0.0471932478249073,-0.0738905668258667,0.01546308770775795,-0.0336935818195343,-0.08576443046331406,-0.0053291600197553635,-0.06795602291822433,-0.021581262350082397,-0.004661515820771456,-0.004510809667408466,-0.03688729926943779,-0.062205709517002106,0.01746528223156929,0.005968112964183092,0.005518263205885887,-0.004476473666727543,-0.05023990198969841,-0.005238265264779329,-0.0012966175563633442,-0.0916745662689209,-0.0315544456243515,-0.049351245164871216,0.002206189092248678,-0.01740134134888649,-0.07194960862398148,0.019310299307107925,0.02747749350965023,0.056699324399232864,0.028324740007519722,0.07528453320264816,0.0022025727666914463,-0.126914381980896,-0.030581140890717506,-0.16227814555168152,-0.0349617637693882,-0.013980261981487274,-0.020449930801987648,-0.03197862207889557,0.023664426058530807,-0.07956043630838394,-0.006418309174478054,0.046022143214941025,0.03371545672416687,0.03195631131529808,-0.09942524880170822,0.008792383596301079,-0.05102761462330818,0.036217499524354935,-0.0173533633351326,0.04505108669400215,-0.05253416299819946,0.0659814178943634,-0.05782438814640045,0.14457203447818756,2.2041410984256577e-32,0.02875438705086708,-0.07209865003824234,0.00546960299834609,0.0034699414391070604,0.10768789798021317,-0.05791352689266205,-0.06070486828684807,-0.09587085247039795,0.037787966430187225,-0.06899982690811157,-0.09064290672540665,0.048425257205963135,0.007250624243170023,-0.0016063912771642208,0.01074166875332594,0.05096987262368202,0.028198322281241417,-0.021916277706623077,0.03419479355216026,-0.08146913349628448,-0.013697102665901184,0.016744550317525864,0.029470054432749748,-0.017032792791724205,0.05677808076143265,0.05145316943526268,0.03346237540245056,-0.1170182079076767,0.0034746879246085882,0.022770768031477928,0.06383349746465683,0.03238682448863983,-0.055513136088848114,-0.041796084493398666,0.006824045442044735,0.03854627162218094,0.03516659885644913,-0.004420450888574123,-0.014570421539247036,0.01750585064291954,0.0667242705821991,0.006243040319532156,0.10374066233634949,0.047799866646528244,-0.0036104079335927963,-0.001134033314883709,0.02239862270653248,0.06693070381879807,0.08186420798301697,0.0468592531979084,-0.03576664999127388,0.001097405795007944,0.03597516193985939,-0.004856935702264309,0.01860152930021286,0.08047272264957428,-0.01793803460896015,0.03148604556918144,-0.03256865590810776,-0.05975969508290291,0.08172374218702316,-0.0182004664093256,0.055094629526138306,-0.020555995404720306,0.009132614359259605,-0.02012716233730316,-0.05248569697141647,-0.03859829902648926,0.10401918739080429,0.028699729591608047,-0.07415731996297836,-0.05649932101368904,0.034449659287929535,0.023985756561160088,0.022608403116464615,-0.005779196973890066,-0.013322476297616959,0.004098215606063604,-0.047071605920791626,0.05794907361268997,-0.03953840211033821,-0.02215171977877617,-0.0005815672921016812,0.07163073867559433,0.051394760608673096,-0.006329342722892761,0.012052511796355247,0.04524756222963333,0.03038010559976101,0.07462228834629059,0.00019990785222034901,0.1082615852355957,0.019257908686995506,-0.024401748552918434,0.00908312201499939,-2.136553258926047e-32,0.010646120645105839,-0.015484885312616825,-0.05291879177093506,0.11047203838825226,-0.026060568168759346,0.06813467293977737,-0.07605945318937302,0.04829363524913788,-0.025093330070376396,-0.10103586316108704,-0.08253142982721329,-0.0229593925178051,0.04392711818218231,-0.08864083886146545,-0.029098505154252052,0.05550962686538696,0.04768405482172966,0.048326194286346436,-0.06294826418161392,-0.02989761158823967,-0.10737445205450058,-0.027718311175704002,0.0005680173635482788,-0.0589611679315567,0.08818856626749039,-0.07654508948326111,0.04981293901801109,-0.04232330247759819,-0.08811882883310318,-0.06119468808174133,0.09270264208316803,0.003250782610848546,-0.06657590717077255,0.01345085073262453,-0.026863303035497665,0.04178367927670479,0.08113382756710052,-0.02345271222293377,-0.04835657402873039,0.08381255716085434,-0.0038075766060501337,0.016663886606693268,0.0777883529663086,0.028542116284370422,0.012574652209877968,-0.04658883437514305,-0.08412282168865204,-0.019913049414753914,-0.06790047138929367,0.05648987740278244,0.05492141842842102,-0.0480494424700737,-0.025631390511989594,-0.027813782915472984,0.07888296991586685,-0.02985461987555027,-0.02144063077867031,-0.08216962218284607,-0.09736476093530655,-0.016255442053079605,0.025592267513275146,0.009587794542312622,-0.04236387461423874,-0.05390353873372078,0.049264516681432724,-0.01874038204550743,-0.0700143575668335,0.06220655143260956,-0.03192375972867012,0.06888876855373383,0.08214922994375229,-0.0949440598487854,-0.06739159673452377,-0.004007378593087196,-0.03375500068068504,0.06898565590381622,-0.04669836908578873,0.01893327385187149,-0.009656050242483616,0.010569258593022823,0.02084072306752205,-0.03580872341990471,-0.012396352365612984,0.004137437790632248,-0.031069016084074974,-0.02688639797270298,0.016741512343287468,0.01140509732067585,0.015044166706502438,0.04549254849553108,-0.025987861678004265,-0.04030194506049156,0.0038261304143816233,-0.015122548677027225,0.058512769639492035,-6.283865161549329e-8,0.012679139152169228,-0.05918131396174431,-0.08927067369222641,0.012889389880001545,0.01101598609238863,-0.04573152959346771,-0.0001603157288627699,0.02531941421329975,-0.03157549723982811,-0.0033927762415260077,-0.04684463515877724,0.025148605927824974,0.040638357400894165,0.078172467648983,0.024736100807785988,0.08211249113082886,0.11513001471757889,0.057128410786390305,-0.044696662575006485,-0.041271645575761795,0.00950203463435173,-0.014073314145207405,0.013147791847586632,-0.05400210991501808,-0.06870413571596146,0.02270280383527279,0.008290410973131657,-0.016303425654768944,-0.00019556144252419472,0.020583104342222214,-0.022510791197419167,0.06068633496761322,-0.10012899339199066,-0.07710201293230057,0.10998623073101044,0.0680295005440712,-0.0227639339864254,-0.00549160735681653,0.01022152416408062,0.042112696915864944,0.02973013184964657,-0.00921173207461834,0.029982756823301315,-0.009268413297832012,-0.018842458724975586,-0.00991986133158207,-0.020638970658183098,0.050832733511924744,0.03860116004943848,-0.0155330840498209,-0.09518294781446457,0.0151975741609931,0.08447933197021484,0.011668283492326736,-0.07917575538158417,0.026816094294190407,0.08458530902862549,-0.034814346581697464,0.027671655640006065,0.01148507185280323,0.008637242950499058,0.05562606826424599,0.006449069362133741,-0.028975501656532288]},{"text":"Sume, Maecenas, cyathos amici Sospitis centum et vigiles lucernas Perfer in lucem; procul omnis esto 15 Clamor et ira.","book":"Homage to Catalonia","chapter":19,"embedding":[0.04601404815912247,0.05615301802754402,-0.0014927639858797193,-0.008084495551884174,-0.02517000213265419,0.029182448983192444,0.013001573272049427,0.08276215195655823,-0.012002518400549889,0.007986904121935368,0.05079882591962814,-0.028617199510335922,0.01365947350859642,0.0005292383139021695,-0.1589769721031189,-0.016782499849796295,-0.012416661716997623,0.056500114500522614,0.0006836965912953019,0.01787654124200344,0.06964462995529175,0.00678839348256588,-0.00850109662860632,-0.007717731408774853,-0.08735434710979462,0.022665783762931824,-0.07700854539871216,-0.030744874849915504,-0.005137580446898937,-0.0572182759642601,-0.008236877620220184,0.08472073823213577,0.052320681512355804,0.02446705661714077,-0.053615130484104156,-0.008465859107673168,-0.009498663246631622,-0.04385998100042343,0.03629288077354431,0.054789863526821136,-0.043141040951013565,-0.044862423092126846,-0.07959748059511185,-0.021150559186935425,-0.015977615490555763,-0.017011424526572227,-0.029009966179728508,0.02699452079832554,0.065253347158432,-0.025291983038187027,-0.12123021483421326,-0.03571392223238945,-0.05464697629213333,0.050908055156469345,0.006428806111216545,-0.004629130475223064,-0.08611299842596054,-0.06322987377643585,-0.030005140230059624,-0.057251084595918655,0.031137166544795036,-0.017688028514385223,0.006035075522959232,0.014246666803956032,-0.0383777916431427,0.004601840395480394,0.0346253402531147,-0.002569028874859214,0.005782036576420069,-0.024632899090647697,0.08888525515794754,-0.025666654109954834,-0.008584949187934399,0.13353687524795532,-0.002135713817551732,0.1112048402428627,-0.0038729673251509666,-0.04082385450601578,0.04851037263870239,-0.058408018201589584,-0.0032623629085719585,0.029805801808834076,0.09079113602638245,0.03521290794014931,-0.026505105197429657,-0.04008485749363899,0.0721544623374939,-0.058643948286771774,0.1187952384352684,-0.008094734512269497,0.019626066088676453,0.004371022805571556,-0.06609203666448593,-0.021758027374744415,0.05856102705001831,0.03727622702717781,0.015283002518117428,-0.0251417625695467,-0.017682988196611404,-0.007696823682636023,0.014497216790914536,-0.04197864979505539,-0.0015757112996652722,0.0027294056490063667,-0.09180693328380585,-0.012006018310785294,0.0036978789139539003,-0.06889749318361282,0.031581129878759384,0.033544592559337616,-0.0362689234316349,-0.003397216321900487,-0.039420392364263535,-0.10666436702013016,-0.032458093017339706,0.011692065745592117,0.09516005963087082,-0.06646151095628738,0.008058389648795128,-0.0016222764970734715,0.03317730501294136,0.02433750033378601,0.00022185774287208915,-0.028702275827527046,0.07630638033151627,0.022110002115368843,-0.04355901479721069,8.312326100215429e-33,-0.03336181119084358,-0.021991681307554245,-0.05566990002989769,-0.05595847964286804,-0.03258060663938522,-0.029797347262501717,0.01683892495930195,0.03593376651406288,0.022429704666137695,-0.13367226719856262,-0.13308121263980865,0.010098759084939957,-0.010495122522115707,-0.046460896730422974,0.05727259814739227,0.036396730691194534,0.07738669961690903,-0.019029388204216957,-0.006204773671925068,-0.039751965552568436,-0.01303152646869421,0.0034141847863793373,0.023576175794005394,-0.019497228786349297,0.014977052807807922,0.0018607397796586156,0.005752858705818653,-0.06222886964678764,0.023567507043480873,0.02511398307979107,0.10712988674640656,-0.02273503504693508,0.004703747108578682,-0.015055621974170208,0.0170539952814579,0.06196164712309837,-0.013155649416148663,0.023715225979685783,-0.03192736580967903,-0.009621880017220974,-0.04201040044426918,0.07038618624210358,0.08506657183170319,0.004979842342436314,0.02371237613260746,-0.023972034454345703,-0.10717587918043137,0.09142415225505829,0.04924454540014267,0.029795458540320396,0.012673607096076012,-0.0035523304250091314,-0.048974063247442245,0.01913023553788662,0.01152805332094431,0.08680414408445358,-0.057846128940582275,0.04708467051386833,-0.016596419736742973,-0.048322297632694244,0.0463126003742218,-0.026287399232387543,0.023115800693631172,-0.011402523145079613,0.03621196374297142,-0.08788426220417023,-0.02954593487083912,0.050334759056568146,-0.02524065412580967,0.0384838841855526,-0.05977354943752289,0.004625364672392607,-0.014786685816943645,0.051931969821453094,-0.06761644780635834,0.004506021738052368,0.034819867461919785,-0.06435664743185043,-0.007172654382884502,0.007970450446009636,-0.05702280253171921,-0.054678741842508316,0.015475786291062832,0.02488153800368309,0.04349682107567787,0.04458571597933769,-0.011615308932960033,0.013654278591275215,0.011530255898833275,0.05010581016540527,0.12905623018741608,0.06655554473400116,-0.0415848083794117,0.00018861147691495717,-0.09206292033195496,-8.659575947655964e-33,-0.08610280603170395,-0.06446604430675507,-0.08656170219182968,0.05211783945560455,0.013964681886136532,0.045680683106184006,-0.04967907443642616,0.0030733407475054264,0.0037899320013821125,0.0023588519543409348,-0.07895763963460922,-0.08323481678962708,0.0345165990293026,-0.09032704681158066,-0.13434267044067383,0.05234577879309654,0.02197490632534027,0.0771019235253334,-0.04500165581703186,0.007264276966452599,-0.0819680392742157,0.0947694331407547,0.04721074923872948,-0.025116566568613052,0.018970053642988205,-0.013496830128133297,0.05406637862324715,-0.0111183300614357,-0.1662268340587616,0.05829969421029091,0.11802086979150772,-0.023779314011335373,0.020133618265390396,0.01584644801914692,-0.019897714257240295,0.05468651279807091,0.07596934586763382,-0.14144934713840485,0.05039231479167938,0.009635028429329395,-0.007963786832988262,-0.0012860437855124474,0.04731769859790802,-0.0007785785128362477,0.04183582589030266,-0.00037342868745326996,-0.08878955245018005,0.01011078990995884,-0.004671747330576181,-0.02694128267467022,0.021036429330706596,0.012911655940115452,0.035744503140449524,0.013892292976379395,-0.023922273889183998,-0.04950258880853653,-0.005428014323115349,0.001413400867022574,-0.04174187034368515,0.02487218752503395,0.03812782093882561,0.025285203009843826,-0.07697929441928864,-0.03335121273994446,0.12188633531332016,0.026591893285512924,-0.09812923520803452,0.036498211324214935,-0.03256428241729736,-0.018783506006002426,0.0804748684167862,-0.10240549594163895,-0.08528506010770798,-0.01959981396794319,-0.018847567960619926,0.02396686002612114,-0.01724104769527912,0.05541757494211197,-0.03566848114132881,0.03927303105592728,-0.008211536332964897,-0.009001386351883411,0.04794425144791603,0.009516363963484764,-0.07144053280353546,-0.037674739956855774,0.04402473568916321,0.05369162932038307,-0.05996124818921089,0.01693447306752205,0.020205464214086533,-0.01793881319463253,-0.014195345342159271,-0.03196164593100548,0.04020451009273529,-3.5534437614614944e-8,0.038991983979940414,-0.0785839855670929,-0.05374728888273239,0.07257745414972305,0.05989929661154747,-0.04569459334015846,-0.0330035425722599,0.08374567329883575,-0.007882755249738693,0.07079702615737915,-0.03894791007041931,0.05253767967224121,-0.06933701783418655,-0.000539089203812182,0.12493856251239777,-0.090480275452137,0.04879690706729889,0.10230482369661331,-0.06565029919147491,-0.0797397792339325,-0.02910328283905983,-0.02087227813899517,-0.07721386104822159,-0.003940761089324951,0.03381069749593735,-0.029576392844319344,0.041396476328372955,-0.029768360778689384,0.00811464712023735,0.0018071206286549568,0.010183194652199745,0.0326535627245903,0.03827021270990372,-0.04738544300198555,-0.052816253155469894,0.07740091532468796,0.013524635694921017,0.005291484761983156,0.03256114572286606,0.11638087034225464,0.03563496842980385,-0.01489908155053854,0.04576173424720764,-0.043113239109516144,-0.043427594006061554,-0.007373328320682049,-0.007667567580938339,0.013683794997632504,0.08044923096895218,-0.10046390444040298,0.0320398174226284,-0.02823287434875965,0.09037529677152634,0.011020475998520851,-0.04860109090805054,-0.04204363375902176,0.05765826255083084,-0.005262178834527731,0.044439952820539474,-0.02764217182993889,0.057684775441884995,0.01374115515500307,0.061632975935935974,0.06089583411812782]},{"text":"Neglegens ne qua populus laboret, 25 Parce privatus nimium cavere; Dona praesentis cape laetus horae, Linque severa.","book":"Homage to Catalonia","chapter":19,"embedding":[-0.05251283198595047,0.09801703691482544,-0.0708254873752594,-0.017595166340470314,-0.07009024918079376,-0.033349085599184036,0.06830296665430069,0.06703750789165497,0.03197035565972328,0.07193699479103088,0.0461280532181263,-0.09313144534826279,-0.013337106443941593,-0.019363831728696823,-0.020582234486937523,-0.05548792704939842,-0.029176095500588417,0.04257410392165184,0.028229035437107086,-0.029973162338137627,0.01682686246931553,0.006151055451482534,0.016773128882050514,-0.051628872752189636,-0.10216396301984787,-0.031098829582333565,-0.07366988807916641,-0.0016493590082973242,0.05984834209084511,-0.04086528345942497,0.02419564500451088,0.057993024587631226,0.03438118100166321,-0.061222340911626816,0.0759831964969635,-0.032898299396038055,-0.06114745885133743,-0.01687796041369438,-0.04363827034831047,0.07536707073450089,-0.014466528780758381,0.04238474741578102,-0.043183356523513794,-0.019175833091139793,-0.08597071468830109,0.0009552111732773483,-0.0754072293639183,0.05920765548944473,-0.021804669871926308,0.008464746177196503,-0.01297821756452322,-0.06853402405977249,-0.024186361581087112,-0.009423243813216686,-0.05040186271071434,-0.007404110860079527,0.016591353341937065,-0.08965130895376205,0.016658680513501167,-0.06202912703156471,0.05134887248277664,0.021514520049095154,-0.06327694654464722,0.010303267277777195,0.0038307886570692062,0.022590847685933113,-0.006707139778882265,-0.029088100418448448,-0.10576660931110382,-0.03468969091773033,0.08241860568523407,-0.060341641306877136,0.008657424710690975,0.0050158267840743065,-0.05124356970191002,0.019172808155417442,-0.017125055193901062,-0.01623089611530304,-0.05889398977160454,-0.05575864389538765,-0.033460669219493866,0.02650797739624977,-0.03028189390897751,0.03525317832827568,-0.009859791025519371,0.03624092414975166,-0.002740532159805298,0.0385875403881073,0.03653564676642418,-0.05800088122487068,-0.017245665192604065,0.02281680516898632,-0.05900963768362999,-0.010924899019300938,0.016267556697130203,0.06595341861248016,-0.07426003366708755,-0.05346181243658066,-0.03379712998867035,-0.006617916747927666,0.05410588160157204,-0.02919779345393181,0.061103224754333496,0.03387570381164551,-0.08592651784420013,-0.026378722861409187,-0.014628012664616108,-0.018300769850611687,0.0810890942811966,0.0913737490773201,-0.07341494411230087,-0.06082848832011223,0.0035525611601769924,-0.016095446422696114,-0.001210403279401362,-0.017290012910962105,-0.0015863905427977443,-0.018261663615703583,-0.008142229169607162,-0.09927012026309967,0.05726312845945358,0.013635559938848019,-0.04144307225942612,-0.06771577149629593,0.046466849744319916,0.01262937393039465,0.034361377358436584,8.147374120752322e-33,-0.0156179778277874,-0.10005054622888565,0.04413828253746033,0.0024211755953729153,0.07564003765583038,0.014488843269646168,-0.017774105072021484,-0.06780446320772171,0.11466780304908752,0.020760448649525642,-0.1062541976571083,-0.07217390090227127,0.03324339911341667,-0.0498121976852417,-0.07814989238977432,0.10018463432788849,0.11537503451108932,-0.07185135036706924,0.008675230666995049,0.016736237332224846,-0.013634973205626011,0.05771508440375328,0.003017616458237171,0.02830064855515957,0.06403281539678574,-0.0181882381439209,-0.03447042405605316,-0.09773743152618408,-0.05837809666991234,0.014298743568360806,0.08683750033378601,-0.06868087500333786,-0.028542960062623024,-0.016061313450336456,0.029860952869057655,-0.007597409188747406,0.07832478731870651,-0.00006682815728709102,-0.06777938455343246,-0.02115677110850811,0.03271391615271568,-0.04390711709856987,0.10612595081329346,0.035649921745061874,0.063768170773983,-0.035398174077272415,0.02298397198319435,0.08466716855764389,0.10805915296077728,0.05867045372724533,-0.011062059551477432,0.03451530635356903,-0.05865444988012314,0.012013249099254608,-0.026976577937602997,0.06411468982696533,-0.038894735276699066,0.0722392275929451,0.03394768759608269,-0.009203528985381126,0.061032406985759735,0.0156780444085598,0.027728091925382614,-0.06498759239912033,0.0679132491350174,0.010754425078630447,-0.06288167089223862,-0.012657304294407368,-0.0034352492075413465,-0.03192618116736412,-0.06683745235204697,-0.029634447768330574,-0.020011043176054955,0.04946305975317955,-0.0026316065341234207,0.052163176238536835,0.06633066385984421,-0.01894555054605007,-0.03188301995396614,-0.03931776061654091,-0.05647377669811249,-0.017110170796513557,-0.02409188449382782,0.024277642369270325,0.06699983775615692,-0.001329785562120378,-0.014782601036131382,0.05379209294915199,0.10246597975492477,0.007937665097415447,0.10190504044294357,0.0035854815505445004,-0.08717197179794312,-0.0006508671795018017,-0.04296518489718437,-7.223318746254891e-33,-0.06304069608449936,-0.012201978825032711,-0.06827152520418167,0.054493822157382965,0.06263899803161621,0.028810640797019005,-0.07103680074214935,0.060340654104948044,-0.031019631773233414,-0.051268093287944794,-0.07820335775613785,0.01783047616481781,0.06485749036073685,-0.08060721307992935,0.003991030156612396,0.10489889234304428,0.02370530180633068,0.039977215230464935,0.013512899167835712,-0.03197163715958595,-0.11129622161388397,0.029910659417510033,0.032002318650484085,-0.035138241946697235,0.027782293036580086,0.029550641775131226,0.08673837780952454,-0.009534853510558605,-0.03761390224099159,-0.04172837361693382,0.03427095338702202,0.06005198881030083,-0.0020450178999453783,-0.0126030957326293,0.009880058467388153,-0.05567138269543648,0.12347576022148132,-0.031810540705919266,0.01558209303766489,-0.050335824489593506,-0.0158294178545475,0.009834356606006622,0.08707214146852493,0.04728702828288078,0.06567703932523727,-0.03685974329710007,-0.08059456199407578,-0.040838178247213364,-0.06203299015760422,0.0888969898223877,0.09292750060558319,0.012957862578332424,0.07910802215337753,-0.00597695866599679,0.09426991641521454,-0.043764714151620865,-0.08961201459169388,-0.023357460275292397,0.053191959857940674,-0.04703691601753235,0.06298672407865524,0.05256678909063339,-0.04687121883034706,0.08823581784963608,0.08116480708122253,-0.03597106412053108,-0.04810119420289993,0.12537649273872375,-0.0379418283700943,0.036580026149749756,0.03465830907225609,-0.012822452001273632,-0.04945050925016403,-0.08902214467525482,-0.04890478402376175,0.0129701541736722,0.03432821109890938,0.03872717171907425,0.051476962864398956,-0.03738481551408768,0.007217357866466045,0.01777040958404541,0.022573325783014297,-0.03641363978385925,-0.033664271235466,0.01213869173079729,0.005905034951865673,-0.02007007971405983,0.049854379147291183,-0.034620560705661774,-0.03998161852359772,-0.003106483956798911,-0.031265631318092346,0.02672298066318035,0.03978656977415085,-3.4674879856311236e-8,0.05924759805202484,0.021990451961755753,-0.0651642233133316,0.042206767946481705,0.03250109776854515,-0.11083147674798965,0.027462230995297432,0.04097761958837509,-0.0015123245539143682,0.08345182240009308,-0.051883094012737274,0.025514015927910805,0.024726606905460358,0.012180585414171219,0.014238055795431137,0.10117346793413162,0.050786565989255905,0.03934360295534134,-0.029841599985957146,-0.05521770566701889,0.09591502696275711,-0.01792818494141102,-0.07332894206047058,0.010439985431730747,-0.06793975830078125,0.0020587630569934845,0.034320659935474396,-0.06850839406251907,0.03259209915995598,-0.09080759435892105,-0.0354100801050663,0.11180311441421509,-0.04569678381085396,-0.04838506132364273,-0.0503569170832634,0.05772235244512558,0.05576302856206894,-0.0037022230681031942,-0.006333673372864723,0.006714969873428345,0.004108063410967588,0.003112677251920104,0.06171539053320885,-0.0673820972442627,-0.05113222822546959,-0.06054595857858658,-0.010746536776423454,0.02639487013220787,0.03530263155698776,-0.02200981043279171,-0.07617660611867905,0.06819949299097061,0.042647432535886765,0.033943966031074524,-0.03620556741952896,-0.01741046831011772,0.03512457385659218,0.008687848225235939,0.006514605134725571,0.07074485719203949,0.004083568695932627,0.02490122988820076,0.024970674887299538,0.039168864488601685]},{"text":"Extremum Tanain si biberes, Lyce, Saevo nupta viro, me tamen asperas Porrectum ante foris obicere incolis Plorares Aquilonibus.","book":"Homage to Catalonia","chapter":19,"embedding":[0.03558278828859329,0.0025728296022862196,-0.04129297658801079,-0.04581630229949951,-0.11525741219520569,0.04652979597449303,0.07047323137521744,0.1442265808582306,0.04451398178935051,0.050279535353183746,0.06544173508882523,-0.020975256338715553,0.030629316344857216,0.007781440392136574,-0.03266335651278496,-0.05335818603634834,0.05068065598607063,0.043286602944135666,-0.07226326316595078,0.02574063278734684,0.10935933142900467,0.00013538110943045467,-0.042377274483442307,0.0200485996901989,-0.08011132478713989,-0.025235921144485474,-0.026681046932935715,-0.016797443851828575,0.03562069684267044,-0.09187410026788712,0.019796596840023994,0.09556164592504501,0.1566917449235916,-0.02635185979306698,0.02758277952671051,0.02444666437804699,-0.0061371647752821445,-0.04598506912589073,0.05692214518785477,-0.008944063447415829,-0.1441178321838379,-0.010485876351594925,-0.05189650133252144,-0.06396447867155075,-0.03684696927666664,0.006623769178986549,-0.0315304771065712,-0.008894459344446659,0.02795441821217537,-0.049939051270484924,-0.08480928838253021,-0.02057744190096855,-0.10496010631322861,-0.011249931529164314,-0.09528548270463943,-0.032191820442676544,-0.01060352474451065,-0.0672113224864006,0.002241033362224698,0.016680127009749413,0.049204759299755096,0.028394779190421104,-0.018955176696181297,0.03334128111600876,0.0190469678491354,-0.011532681994140148,0.054889727383852005,-0.015444819815456867,-0.05573634058237076,0.06745447218418121,0.06720716506242752,-0.06882057338953018,0.018296364694833755,0.002009602030739188,0.012620224617421627,0.06402558088302612,0.03469087556004524,-0.012969422154128551,0.0018022696021944284,-0.08084095269441605,0.01615871675312519,0.033625949174165726,-0.018740249797701836,-0.015224645845592022,-0.022265104576945305,-0.0532868355512619,-0.00233547855168581,-0.01723606139421463,0.1482151597738266,0.017844608053565025,-0.03985757380723953,0.08933626860380173,-0.12875045835971832,0.003347486723214388,0.016524648293852806,0.006831861566752195,-0.015856483951210976,-0.026768343523144722,0.03660956025123596,0.019895972684025764,0.019505029544234276,0.012294696643948555,0.013521322049200535,0.02591640129685402,-0.07145632058382034,-0.0791589617729187,-0.01214656513184309,-0.12734216451644897,0.0748729556798935,-0.0032755646388977766,-0.07526854425668716,-0.09312807023525238,0.024803591892123222,-0.04840680956840515,-0.003093980485573411,0.0132267065346241,0.05277113988995552,-0.10307183116674423,-0.0015854693483561277,-0.02893843501806259,0.06525608897209167,-0.01939590834081173,-0.054071780294179916,0.04471885412931442,-0.004843225236982107,0.022609585896134377,0.054628901183605194,1.0034372426924293e-32,-0.036169156432151794,-0.054363638162612915,0.01929597370326519,-0.004290516022592783,0.0014793718000873923,0.0023869865108281374,-0.049165427684783936,-0.026154546067118645,-0.023302186280488968,-0.042261067777872086,-0.07640677690505981,-0.006936695426702499,-0.02116510272026062,0.05920206010341644,0.010352329351007938,0.032656989991664886,0.09454454481601715,0.0022090363781899214,-0.036812923848629,-0.0024240135680884123,-0.033475667238235474,-0.012310650199651718,0.0018369863973930478,-0.04200593754649162,0.02590850181877613,-0.02216673456132412,0.05536291375756264,-0.04001691937446594,-0.028566977009177208,-0.004224409349262714,0.10364870727062225,0.0022631497122347355,-0.06669323891401291,-0.014720723032951355,0.036255039274692535,0.006871734745800495,-0.00931124109774828,0.08352425694465637,0.00819523073732853,0.010325010865926743,-0.008586457930505276,0.05461856350302696,0.06007875129580498,0.052811119705438614,0.13068275153636932,0.020526647567749023,0.002123364247381687,0.03797492757439613,0.0277335736900568,-0.007482519838958979,-0.05404176563024521,0.015880880877375603,-0.019435107707977295,-0.04932660236954689,-0.012139049358665943,0.008682302199304104,-0.12549962103366852,0.04706185683608055,-0.11078779399394989,0.04189517721533775,0.0026581010315567255,0.002521405927836895,0.022450312972068787,0.019258791580796242,0.012236250564455986,-0.08189907670021057,-0.03542908653616905,-0.038010310381650925,0.10468170791864395,-0.00006947682413738221,-0.08668780326843262,0.009095610119402409,-0.009700892493128777,0.027905408293008804,-0.029178407043218613,-0.032212525606155396,0.06746350973844528,0.04123620316386223,-0.05206820368766785,-0.009963979944586754,-0.04825342819094658,0.009061439894139767,0.03363727778196335,0.024879181757569313,0.0339454784989357,-0.013192812912166119,0.0025993192102760077,0.009071195498108864,0.03371872007846832,0.04280466213822365,-0.018227383494377136,0.012241372838616371,-0.06755069643259048,0.04738074541091919,0.05721893161535263,-1.1458710115608027e-32,0.07587917894124985,-0.03384396806359291,-0.09255025535821915,0.02966831810772419,-0.03349265083670616,0.10393934696912766,-0.04987133666872978,0.011173238977789879,-0.09639241546392441,-0.09733914583921432,-0.03358130902051926,-0.01413801684975624,0.1167788878083229,-0.03132639825344086,-0.014842884615063667,0.046142272651195526,0.04482380300760269,-0.03073565848171711,-0.02395874820649624,0.008867548778653145,-0.050563208758831024,0.09069722145795822,-0.010115433484315872,0.00923900492489338,0.037481147795915604,-0.05548422038555145,0.03841867670416832,0.012312762439250946,-0.09574345499277115,0.01519868429750204,0.12496911734342575,0.0016380774322897196,-0.018135422840714455,0.009637135080993176,-0.026261204853653908,0.023492909967899323,0.14179657399654388,-0.07567231357097626,-0.02733835019171238,0.026990417391061783,0.04195534065365791,0.08591125160455704,0.07138269394636154,-0.052538711577653885,-0.01506367139518261,-0.033932410180568695,-0.054276689887046814,-0.07522261887788773,-0.06833302974700928,-0.012516780756413937,0.04614861309528351,-0.07179126888513565,-0.01075756922364235,-0.07610482722520828,0.06975200027227402,-0.09146542847156525,-0.037953976541757584,-0.04962188005447388,-0.06035211309790611,-0.009639272466301918,0.08177347481250763,0.043372560292482376,-0.052451666444540024,-0.031273216009140015,0.04815395176410675,-0.014339722692966461,-0.03200406953692436,0.02216167189180851,0.00889657624065876,0.01916135661303997,0.04362862929701805,-0.019714172929525375,-0.03348744660615921,-0.011872632429003716,-0.03717697039246559,0.004176713060587645,-0.03776269406080246,-0.05082128942012787,-0.028245484456419945,-0.006651705596596003,-0.05673898756504059,-0.06470361351966858,0.05184140056371689,-0.0217610951513052,-0.04641411080956459,-0.01902177929878235,0.004458706825971603,0.015059041790664196,0.0289677232503891,-0.016774192452430725,-0.07561839371919632,-0.09712837636470795,-0.026018017902970314,-0.0860150083899498,-0.007597098592668772,-4.278228260545802e-8,0.08021717518568039,-0.04360488802194595,-0.04848794266581535,-0.02230020798742771,-0.00041934780892916024,-0.009505636990070343,0.029391368851065636,0.031378161162137985,-0.06428568065166473,0.02211020141839981,-0.04305974021553993,-0.0071301329880952835,0.011371824890375137,0.06919018179178238,0.016449229791760445,0.019704464823007584,0.11995332688093185,0.08938681334257126,-0.023282285779714584,-0.07399963587522507,-0.02037298120558262,-0.01454815175384283,-0.059154219925403595,-0.02181321382522583,0.029631851240992546,0.018170757219195366,0.06787852942943573,-0.006365912966430187,0.06798581033945084,-0.026914525777101517,-0.013045630417764187,0.038363054394721985,0.07214301079511642,-0.0582793727517128,-0.009098473936319351,0.04815705120563507,0.012178451754152775,0.06793820112943649,-0.07342582195997238,0.06349680572748184,0.03484836593270302,0.014955451712012291,0.037545934319496155,-0.03307897970080376,-0.026421189308166504,-0.036769017577171326,0.037440698593854904,0.03251669928431511,0.05912281572818756,-0.058420125395059586,0.007072601933032274,0.0713857039809227,0.05856591835618019,0.04025890678167343,-0.05011109262704849,-0.03006155602633953,0.04593553766608238,0.06372836977243423,-0.05328577011823654,0.0024989554658532143,0.07293804734945297,0.0911499634385109,0.004878534469753504,-0.028753092512488365]},{"text":"Ingratam Veneri porie superbiam, Ne currente retro funis eat rota: 10 Non te Penelopen difficilem procis Tyrrhenus genuit parens.","book":"Homage to Catalonia","chapter":19,"embedding":[-0.05500334873795509,0.06386732310056686,-0.011380665004253387,-0.06790982186794281,-0.06920137256383896,0.009362158365547657,0.005386041942983866,0.08584509789943695,-0.0490386039018631,0.03834490105509758,0.1018490195274353,-0.043337978422641754,-0.0025316630490124226,-0.01813698373734951,-0.0738132894039154,-0.0786939263343811,0.032350409775972366,0.06306273490190506,-0.005840586498379707,-0.026858078315854073,0.006827093195170164,-0.004543947521597147,0.04378302022814751,0.08014876395463943,-0.13425114750862122,-0.04853358492255211,0.016154788434505463,-0.02956158109009266,-0.052692629396915436,-0.07854614406824112,0.03501409664750099,0.12862040102481842,-0.03907788544893265,-0.05806589871644974,0.004262018017470837,-0.04714186489582062,0.01423455961048603,-0.08093079179525375,0.07415395975112915,-0.0038074522744864225,-0.048922259360551834,-0.02390252612531185,-0.08683083951473236,-0.10919113457202911,0.021825972944498062,0.008968564681708813,-0.0009963033953681588,0.06985300034284592,0.047692373394966125,0.03555378317832947,-0.03670582175254822,-0.0032514953054487705,0.007959220558404922,0.02864234708249569,-0.020367862656712532,0.009331956505775452,0.02945074811577797,-0.03427974507212639,0.007476910017430782,-0.009586619213223457,0.04870904982089996,0.02515549398958683,0.0025637587532401085,-0.04895050823688507,-0.041140489280223846,-0.06446095556020737,-0.032386381179094315,-0.037123825401067734,-0.12558580935001373,-0.007171222940087318,0.02570859156548977,-0.10238251090049744,-0.032121092081069946,0.0008724221843294799,-0.09125006943941116,0.08181845396757126,-0.0008758812327869236,-0.014215388335287571,-0.003512041876092553,-0.10277778655290604,0.00835934467613697,0.00852434802800417,0.08161905407905579,-0.01502213254570961,0.0534186065196991,0.010870514437556267,-0.020257562398910522,0.026777539402246475,0.05996793136000633,0.02584831416606903,-0.009164519608020782,-0.04084797948598862,0.03608587384223938,-0.018482519313693047,0.013621145859360695,-0.020264336839318275,-0.06646917760372162,-0.06351540237665176,-0.03283529728651047,0.04470646753907204,-0.03929511085152626,-0.043515194207429886,0.06361504644155502,0.04657147452235222,-0.07229944318532944,-0.0316803865134716,0.0028920667245984077,-0.07325746864080429,0.07341556996107101,0.012423454783856869,0.00037369169876910746,0.008247924968600273,0.028885208070278168,-0.07988004386425018,0.0030554167460650206,-0.028522951528429985,0.0032336190342903137,-0.05049608647823334,0.027278296649456024,-0.02743195928633213,0.06237303838133812,0.05766383931040764,0.01651558093726635,0.04855082556605339,0.04688475653529167,-0.0025837223511189222,0.08540457487106323,1.0558956617445909e-32,-0.03875333443284035,-0.06933221966028214,-0.019343094900250435,0.028385154902935028,0.036845613270998,-0.017386972904205322,-0.04282676428556442,0.031605761498212814,0.08107995986938477,-0.13532193005084991,-0.08973951637744904,-0.06885484606027603,-0.0033532555680722,0.021193942055106163,0.009568779729306698,0.06679561734199524,0.0155763179063797,-0.03455507010221481,0.05957125499844551,0.004183996934443712,-0.01878759264945984,0.001115518738515675,0.06969592720270157,-0.08673347532749176,0.01938633993268013,-0.01897539012134075,-0.030675267800688744,-0.06797274947166443,-0.08362489938735962,0.001918793423101306,0.09599636495113373,-0.07504328340291977,0.0064707049168646336,-0.013708628714084625,0.003461041720584035,-0.04581405222415924,0.07375969737768173,-0.008731991983950138,-0.057995982468128204,-0.004568977281451225,-0.0045516155660152435,-0.010704556480050087,0.02435160055756569,0.016301294788718224,0.02893359400331974,0.02638774737715721,0.12294947355985641,0.10802361369132996,0.0804096981883049,-0.005612126551568508,0.02724212221801281,0.020277412608265877,-0.026998154819011688,-0.04049191251397133,-0.011272487230598927,0.0395534485578537,0.02970254421234131,0.026995891705155373,0.0916515663266182,-0.008057118393480778,0.08475833386182785,0.02669391967356205,-0.026854364201426506,-0.025742044672369957,-0.013128350488841534,0.019219527021050453,-0.019115477800369263,0.02506283111870289,0.05497938394546509,0.032887279987335205,-0.03980456292629242,-0.050975214689970016,0.054740358144044876,0.055211834609508514,-0.013065796345472336,0.048412200063467026,0.05779770016670227,-0.033521611243486404,-0.03955995291471481,-0.03206735476851463,-0.03686496615409851,0.006857899483293295,0.010038468986749649,0.040901921689510345,0.02598702907562256,0.05786346644163132,0.020557710900902748,-0.019477004185318947,0.0862560123205185,0.038129087537527084,0.06080663576722145,-0.013477091677486897,0.0012055638944730163,0.047359149903059006,0.04565216600894928,-9.905873996648124e-33,-0.047725860029459,-0.01577357016503811,-0.15744295716285706,0.07139085978269577,-0.008742283098399639,0.027959251776337624,-0.11762178689241409,0.03780563548207283,0.026725642383098602,-0.1355351358652115,-0.06132253259420395,0.0070424266159534454,0.06524509191513062,-0.05243754759430885,-0.007218394428491592,0.08707572519779205,-0.015616292133927345,0.05735739320516586,0.02316424250602722,-0.034115731716156006,-0.04937460273504257,0.04795527458190918,-0.05949801206588745,-0.0761156901717186,-0.028140101581811905,0.025760391727089882,0.11576307564973831,0.06921994686126709,-0.0531240850687027,-0.01038356963545084,0.03444678336381912,-0.04105202481150627,0.03822612389922142,0.01842566207051277,0.02856101654469967,0.03755504637956619,0.05502781644463539,-0.04195684939622879,-0.041228096932172775,-0.009372618049383163,-0.005580562632530928,0.02157834731042385,-0.003938556648790836,0.03621157258749008,-0.025186508893966675,-0.009713067673146725,-0.09416767954826355,-0.11447847634553909,-0.0031053100246936083,0.03863000497221947,0.15199756622314453,-0.005743036046624184,0.015819121152162552,-0.07348746806383133,0.01678209751844406,-0.05740303918719292,0.004890106618404388,-0.012132858857512474,-0.0008969002519734204,0.021384667605161667,0.036593466997146606,0.08134516328573227,0.005505022592842579,-0.030045701190829277,0.049058448523283005,-0.015587815083563328,-0.13573509454727173,0.023311574012041092,-0.005664074327796698,0.02758554369211197,0.05192294716835022,-0.03805818408727646,0.0003233801980968565,-0.012082445435225964,-0.018048789352178574,0.0008380847284570336,-0.015550265088677406,0.05157695710659027,0.07683427631855011,0.057512249797582626,-0.0885215625166893,-0.07151256501674652,0.016110727563500404,-0.018056679517030716,-0.03980174660682678,0.01759607531130314,-0.05502966791391373,0.022927138954401016,0.017805026844143867,-0.0003827524196822196,0.07614224404096603,0.04379693791270256,0.06460423022508621,-0.03307780995965004,0.06313814967870712,-3.736649745178511e-8,0.11711854487657547,-0.10747826844453812,-0.019350212067365646,0.0562305822968483,0.0487152524292469,-0.09487387537956238,0.011467541567981243,-0.011090335436165333,0.005075111519545317,0.025741133838891983,-0.05454668030142784,0.0032542299013584852,-0.02489391900599003,0.0017540716798976064,0.018782462924718857,0.08995085209608078,0.05145246535539627,0.059878647327423096,-0.05413143336772919,-0.018114786595106125,0.013174398802220821,0.04792136326432228,-0.07013857364654541,-0.14032875001430511,-0.04751821979880333,-0.019412921741604805,0.053122133016586304,-0.07301333546638489,0.0200252253562212,-0.07731416076421738,0.010410329326987267,0.05152763053774834,-0.03125804290175438,-0.08980242162942886,-0.04124192148447037,0.05647207796573639,-0.005213269032537937,0.047603342682123184,-0.011294362135231495,0.01191014889627695,-0.0005969291087239981,-0.03762239217758179,0.05512868985533714,-0.05213988199830055,-0.04520579054951668,-0.008039156906306744,0.0012877237750217319,-0.027017809450626373,-0.014155646786093712,-0.033247243613004684,-0.02127007208764553,0.05808405205607414,0.0871795192360878,0.04322683438658714,-0.028466252610087395,-0.022425903007388115,0.04983338713645935,-0.03362952545285225,0.010701929219067097,0.023324936628341675,0.06664922833442688,0.0635882094502449,0.013027922250330448,0.020419690757989883]},{"text":"Non hoc semper erit liminis aut aquae Caelestis patiens latus. 20 XI.","book":"Homage to Catalonia","chapter":19,"embedding":[-0.055262479931116104,0.07390666007995605,0.007981431670486927,-0.0646631047129631,-0.021080845966935158,0.022275084629654884,0.0658668726682663,0.05066172033548355,0.05808866769075394,0.005447917152196169,0.09643734246492386,-0.16367925703525543,-0.008182198740541935,-0.030588822439312935,-0.09836655855178833,-0.06612656265497208,-0.09696292132139206,0.07550816237926483,0.003705993527546525,-0.028869668021798134,-0.02698214165866375,0.055174387991428375,-0.02917403168976307,0.05101541057229042,-0.08248678594827652,0.047882214188575745,-0.048263754695653915,-0.006967366673052311,0.05652438476681709,-0.01776598021388054,0.02311239391565323,0.06648388504981995,0.05495404824614525,-0.017046447843313217,-0.003003261983394623,-0.023378243669867516,-0.07003826647996902,-0.08679543435573578,0.01417587324976921,0.08825806528329849,-0.036952871829271317,0.014599193818867207,-0.021178776398301125,-0.009289917536079884,-0.0807056650519371,-0.028508206829428673,-0.015487938188016415,0.048580773174762726,-0.059532832354307175,0.05714428424835205,-0.05135299637913704,-0.04016795754432678,-0.07395599782466888,-0.026436490938067436,-0.07478158921003342,-0.052574023604393005,-0.03622586652636528,-0.04291822016239166,-0.0027552759274840355,-0.1155628189444542,0.06240366771817207,0.05545765534043312,-0.0011658456642180681,0.03509286791086197,-0.025971785187721252,-0.028987832367420197,-0.06353366374969482,0.005485786125063896,0.006196728441864252,0.08358339220285416,0.04746858775615692,-0.02542644366621971,0.027894599363207817,0.11815250664949417,-0.07181811332702637,0.0038810076657682657,-0.037001412361860275,-0.030800318345427513,-0.020236732438206673,-0.07756781578063965,-0.04653102159500122,-0.03155795857310295,0.03914613649249077,0.022513411939144135,0.04896806180477142,-0.003217736491933465,-0.000040437676943838596,0.001709216507151723,-0.032160546630620956,-0.05371404439210892,0.01966714859008789,0.018402768298983574,-0.04185715690255165,-0.047757621854543686,0.06321816146373749,0.00031490204855799675,-0.01853216253221035,-0.027014024555683136,-0.009879231452941895,-0.03436313197016716,-0.002527358243241906,0.005864678882062435,0.0387282557785511,0.08055958151817322,-0.03383733704686165,-0.09245715290307999,-0.06341719627380371,-0.035975001752376556,0.045813191682100296,-0.007089938502758741,-0.032238125801086426,-0.04249577596783638,0.020533036440610886,-0.04704544320702553,0.0027497161645442247,0.04919205233454704,-0.007558826822787523,-0.09628129005432129,0.01634763740003109,-0.015243610367178917,0.022572733461856842,-0.04363274574279785,-0.031087910756468773,-0.04507110267877579,0.036770544946193695,0.021834010258316994,-0.037843506783246994,4.149179511637876e-33,-0.00019256786617916077,-0.09129466116428375,-0.029632531106472015,-0.0712294727563858,-0.005877251271158457,-0.014499513432383537,-0.0030002109706401825,-0.03936627507209778,-0.024645447731018066,-0.04765358567237854,-0.0426039919257164,0.043839290738105774,0.020299391821026802,0.005471660289913416,0.09504369646310806,0.012328065000474453,0.09290476143360138,-0.04934295639395714,-0.004713814705610275,-0.0834115520119667,-0.010747652500867844,-0.03356492519378662,0.038131821900606155,0.07125094532966614,0.004968477413058281,-0.05570073053240776,0.006847008131444454,-0.0454084612429142,-0.005199092905968428,0.016689326614141464,0.09103448688983917,-0.031016608700156212,-0.05511142686009407,0.0696670189499855,0.05586964637041092,0.025502771139144897,0.05425338074564934,0.014692096039652824,-0.017917651683092117,0.04225257784128189,0.018497517332434654,-0.011363732628524303,0.1314479410648346,-0.0034755761735141277,0.09499731659889221,-0.025883886963129044,-0.04353855177760124,0.05183057114481926,0.06317034363746643,0.046751510351896286,0.03097398579120636,0.0027840854600071907,-0.04129648581147194,0.022268831729888916,-0.0018207586836069822,0.03308866545557976,-0.09426382929086685,0.05338531732559204,-0.16277414560317993,0.016700226813554764,0.043162547051906586,-0.0029718580190092325,-0.002995600923895836,0.013930066488683224,0.02825676091015339,0.03447374701499939,-0.025765346363186836,-0.06813029199838638,0.05262037739157677,-0.00935282837599516,-0.04782894626259804,0.007152921054512262,0.05375859886407852,-0.023790154606103897,0.005196683574467897,0.035547006875276566,0.06133429706096649,-0.011798967607319355,-0.08539877086877823,0.0020485068671405315,-0.09274949133396149,0.027745826169848442,0.039684344083070755,0.0382523275911808,-0.028147215023636818,-0.015885038301348686,0.01673244684934616,0.11583679914474487,0.08895669132471085,0.05794766545295715,0.06678109616041183,-0.03391944617033005,-0.00023110864276532084,-0.035033490508794785,-0.05298716574907303,-4.4107365555874354e-33,-0.043799784034490585,0.0019982201047241688,-0.08584781736135483,0.04115241765975952,0.053322818130254745,0.013347579166293144,-0.013224751688539982,0.14253410696983337,-0.004462043754756451,-0.11564812809228897,-0.05162326991558075,0.06356266885995865,0.07249699532985687,-0.03477340564131737,-0.053876809775829315,0.029255254194140434,0.06387448310852051,0.059026286005973816,0.022620977833867073,-0.06024395301938057,-0.013510268181562424,0.00817238911986351,0.10616268217563629,-0.031053146347403526,0.020426655188202858,-0.00998915359377861,0.030471142381429672,-0.021325264126062393,-0.11395391076803207,-0.005001078359782696,0.029120465740561485,0.05750003829598427,0.010813427157700062,0.0350412055850029,0.019666584208607674,-0.007830115966498852,0.05757967755198479,0.017009755596518517,0.0033271003048866987,0.07259836792945862,-0.009362616576254368,-0.04034655541181564,0.0707429051399231,0.06409982591867447,0.10701717436313629,0.03040280193090439,-0.005061738193035126,-0.019827451556921005,-0.11221583187580109,0.02055288478732109,0.045067522674798965,-0.034644730389118195,0.04233965650200844,-0.01546056754887104,0.0645621046423912,0.0007973606116138399,0.009666034020483494,-0.019646454602479935,-0.07036937028169632,0.009528533555567265,0.1250045895576477,0.017532523721456528,-0.014780187048017979,-0.02392026223242283,0.06125897914171219,-0.03547574579715729,-0.09187579154968262,0.036536313593387604,0.030478782951831818,0.04829021543264389,0.08245093375444412,-0.1061883419752121,-0.07118229568004608,-0.030011238530278206,0.007116443943232298,-0.0800681859254837,-0.07114556431770325,0.01639282889664173,0.01676805317401886,-0.018111731857061386,-0.12305524200201035,0.08218690007925034,0.04858023673295975,-0.011179265566170216,0.005455975420773029,-0.054146867245435715,-0.04565451666712761,-0.027618004009127617,-0.00019761994190048426,0.026986226439476013,-0.0207844041287899,-0.1069449782371521,-0.03231180086731911,-0.007153110112994909,0.040750160813331604,-2.5515891621807896e-8,0.10072270035743713,-0.04038801044225693,-0.07854937016963959,0.08650887757539749,0.08590096235275269,0.02189020626246929,0.01722250133752823,-0.018830671906471252,0.037885308265686035,0.07295852154493332,-0.029504993930459023,0.008428508415818214,-0.008126622997224331,0.03595440462231636,0.04907654598355293,-0.004337932448834181,0.08271531760692596,0.03541731461882591,-0.06516768038272858,-0.09768228232860565,-0.009384586475789547,0.031406983733177185,-0.05384209752082825,0.018923424184322357,-0.05541573464870453,-0.004163086414337158,0.015838230028748512,-0.0787140503525734,0.03430173173546791,-0.0008634538971818984,-0.011307268403470516,0.04341848939657211,0.02581062540411949,-0.0735342726111412,0.05757826194167137,0.04583120718598366,-0.01273308414965868,0.036471087485551834,0.02942655421793461,0.06656398624181747,-0.008001446723937988,0.0011884995037689805,0.05584965646266937,-0.013396170921623707,0.04509845748543739,-0.02464429661631584,0.030618825927376747,-0.0024477532133460045,0.023138977587223053,-0.036471664905548096,-0.02336171269416809,0.0010568259749561548,0.03174374997615814,0.026630669832229614,-0.07352805882692337,0.031057987362146378,0.030835844576358795,-0.06297750771045685,-0.02634013257920742,-0.0008086201269179583,-0.02523174323141575,0.087964728474617,0.025099419057369232,0.07376736402511597]},{"text":"Tu potes tigris comitesque silvas Ducere et rivos celeres morari; Cessit immanis tibi blandienti 15 Ianitor aulae Cerberus, quamvis furiale centum Muniant angues caput, eius atque Spiritus taeter saniesque manet Ore trilingui. 20 Quin et Ixion Tityosque voltu Risit invito; stetit urna paullum Sicca, dum grato Danai puellas Carmine mulces.","book":"Homage to Catalonia","chapter":19,"embedding":[-0.003561738645657897,0.07374277710914612,-0.025412598624825478,-0.031928014010190964,-0.05480227246880531,0.007065553218126297,0.08452752232551575,0.05548126995563507,0.040428973734378815,0.028661994263529778,0.0479571558535099,-0.1528451144695282,0.025858009234070778,-0.005826906766742468,-0.10224442929029465,-0.09210427105426788,-0.002718572271987796,0.10278825461864471,-0.06208809092640877,0.0022508890833705664,0.012820356525480747,-0.07151985168457031,-0.02351357415318489,0.04502733051776886,-0.06138976290822029,0.032333001494407654,-0.027562113478779793,-0.015577015466988087,0.02801535651087761,-0.053214240819215775,-0.006709493696689606,0.1127413883805275,0.05016229301691055,0.005155524704605341,-0.01795377768576145,0.004490119870752096,-0.018139971420168877,-0.03684869408607483,0.08778862655162811,0.07914787530899048,-0.029447022825479507,-0.024381589144468307,-0.05367745831608772,-0.06550265848636627,0.012934982776641846,-0.03790752962231636,0.0018403029534965754,0.06779620796442032,0.039142075926065445,-0.058630216866731644,-0.020460963249206543,-0.03229318931698799,-0.018623055890202522,-0.05411642789840698,-0.05022589489817619,-0.04696403071284294,0.043228838592767715,-0.05530354380607605,0.02716704271733761,0.001140632200986147,0.061056893318891525,0.029728107154369354,-0.01377137005329132,0.03429839387536049,-0.07661499083042145,-0.034604109823703766,-0.05072439834475517,0.0060684275813400745,-0.0807778611779213,-0.04434604197740555,0.11452597379684448,-0.06428143382072449,-0.05795467272400856,0.06409861147403717,-0.0477575920522213,0.07629796117544174,0.011781785637140274,0.013631760142743587,-0.08768347650766373,-0.13651339709758759,-0.06271091848611832,0.05733456835150719,0.08874139934778214,-0.022883107885718346,-0.012201412580907345,0.01145962718874216,0.00023561323178000748,0.014672433026134968,0.05161208659410477,-0.022636687383055687,0.043310049921274185,0.09070198237895966,-0.053733691573143005,-0.005023349076509476,0.03025108389556408,0.0405588336288929,0.03690662235021591,0.005825761705636978,-0.025224223732948303,-0.011694172397255898,0.03517109528183937,-0.009215922094881535,-0.018909940496087074,0.023614779114723206,-0.08684759587049484,-0.025624046102166176,0.003213187912479043,-0.09410269558429718,-0.03495646268129349,-0.02892173081636429,-0.02991519868373871,-0.05597246438264847,-0.08428139239549637,-0.047117024660110474,0.022713299840688705,-0.003957174718379974,0.029708445072174072,-0.024418743327260017,-0.038031674921512604,-0.055740438401699066,0.006610517390072346,-0.06279364973306656,-0.07777104526758194,-0.06541330367326736,0.01331963948905468,-0.06507096439599991,0.0666920617222786,3.069431159336781e-32,-0.040072083473205566,0.03145295009016991,-0.05399928614497185,0.034948550164699554,0.051021724939346313,-0.019499562680721283,-0.02805234305560589,-0.06116095185279846,-0.004291723947972059,-0.04387491196393967,-0.08594068139791489,0.021216779947280884,-0.0789659321308136,0.02353658527135849,-0.01690637320280075,0.05005766823887825,0.08299486339092255,-0.08368650078773499,-0.013732705265283585,-0.11303495615720749,-0.07261187583208084,0.052252285182476044,-0.006601704750210047,0.010322888381779194,0.014344502240419388,0.061417654156684875,0.007215216755867004,-0.12902992963790894,0.007357057649642229,0.017656810581684113,0.096418097615242,0.033137351274490356,0.05343513563275337,0.0016658023232594132,-0.06155122071504593,0.046001601964235306,0.02851267345249653,-0.014821533113718033,-0.020603355020284653,0.03970654308795929,0.040714431554079056,0.016499068588018417,0.06517841666936874,0.047287002205848694,-0.04012332856655121,0.037766989320516586,-0.016765637323260307,0.014636697247624397,0.08709210902452469,0.017101392149925232,-0.020901506766676903,0.03655841574072838,-0.026283159852027893,-0.007610766217112541,-0.006903181783854961,-0.0032898029312491417,-0.05394021421670914,-0.015742069110274315,-0.07012304663658142,-0.037767596542835236,-0.013973454013466835,-0.03850055858492851,0.006326810922473669,0.006711480673402548,0.006670533213764429,-0.04157204553484917,-0.07653997838497162,-0.029536597430706024,0.09741394966840744,-0.011277171783149242,-0.14397597312927246,0.015618996694684029,-0.007284526247531176,-0.005121082067489624,0.013143978081643581,-0.015329145826399326,0.023050492629408836,0.0009704694384709001,-0.016438666731119156,0.012510729022324085,-0.10075877606868744,0.03176569938659668,0.027855312451720238,0.0035288596991449594,0.08520530164241791,0.01583239622414112,0.016224710270762444,0.054753098636865616,0.07071883231401443,0.09520697593688965,-0.03285716101527214,0.05507984757423401,-0.003928544465452433,0.026489902287721634,-0.04921664670109749,-2.7322317885957765e-32,-0.005614969879388809,0.024992050603032112,-0.10110579431056976,0.1500435620546341,0.0031299751717597246,-0.02521052211523056,-0.1455991417169571,0.008914334699511528,0.022678321227431297,-0.05559523031115532,-0.015821466222405434,-0.053745437413454056,0.039035603404045105,-0.029726333916187286,-0.04050665721297264,0.031622596085071564,0.08243238925933838,0.05321764945983887,-0.09983900189399719,-0.06018228828907013,-0.06136245280504227,-0.04514589160680771,-0.035290975123643875,-0.1399564892053604,-0.02067597024142742,0.04382443428039551,-0.007859241217374802,-0.0655408501625061,-0.050366614013910294,0.022912267595529556,0.0645289197564125,-0.01841542311012745,0.0013719169655814767,0.04020097851753235,0.05434004217386246,0.036189571022987366,0.1483568400144577,-0.03337932005524635,-0.03834908828139305,0.10249198228120804,-0.0016875133151188493,-0.026752281934022903,0.07811354845762253,0.03254673629999161,-0.004300994798541069,-0.03757963329553604,-0.03821888938546181,0.002708622720092535,-0.08591991662979126,0.022439019754529,0.11665049940347672,-0.022501345723867416,0.021282847970724106,0.038166679441928864,0.027032095938920975,-0.028001686558127403,-0.009629462845623493,-0.007096431218087673,-0.046713002026081085,-0.029738593846559525,0.05055338889360428,0.07631777971982956,-0.056089386343955994,-0.034823622554540634,0.05577355995774269,0.0370016023516655,-0.08397821336984634,0.053366128355264664,0.02110609970986843,-0.009536894969642162,0.08278943598270416,-0.12664294242858887,-0.06055844575166702,-0.04040692001581192,-0.029519224539399147,-0.04332118481397629,0.0004925354733131826,0.023984270170331,0.0574338324368,-0.008036386221647263,-0.021706966683268547,0.009832149371504784,-0.047870784997940063,-0.030442044138908386,0.004601529333740473,0.0248087290674448,0.008522452786564827,0.02503013238310814,0.07802101969718933,-0.04408789053559303,0.023721208795905113,-0.000253608770435676,0.05721083655953407,-0.04702391102910042,0.09861347824335098,-8.249208605093372e-8,-0.006709964945912361,-0.022711168974637985,-0.07538004219532013,0.07520809769630432,0.04315495118498802,-0.028924282640218735,0.036306798458099365,0.01339542306959629,-0.029985280707478523,0.10103525966405869,-0.01840883493423462,-0.00970759429037571,-0.02273743227124214,-0.0006070001400075853,0.057254549115896225,0.07023169845342636,0.05219295993447304,0.022969193756580353,0.004942362662404776,-0.029994184151291847,0.025603868067264557,-0.02534647099673748,-0.04547753185033798,-0.04379104822874069,-0.07528676092624664,-0.015314366668462753,-0.02787880040705204,-0.04076556861400604,-0.020519882440567017,0.03966911509633064,0.03579588979482651,0.028929242864251137,0.022965770214796066,-0.025164121761918068,0.06765934079885483,0.058118321001529694,-0.04603100195527077,-0.003227041568607092,0.03498813509941101,-0.029668934643268585,0.0024804563727229834,-0.0005456575891003013,0.037299588322639465,-0.04086170345544815,-0.02886371500790119,-0.05361806973814964,0.031478896737098694,0.0371754914522171,0.046498239040374756,-0.035279903560876846,-0.059685349464416504,0.02804340049624443,0.10370291024446487,0.023698454722762108,-0.07998525351285934,-0.012676842510700226,0.06321099400520325,0.04719340428709984,0.02808252163231373,0.01314725261181593,-0.020870402455329895,0.024361468851566315,-0.018209025263786316,-0.025693390518426895]},{"text":"Impiae, (nam quid potuere maius?) 30 Impiae sponsos potuere duro Perdere ferro.","book":"Homage to Catalonia","chapter":19,"embedding":[-0.0498478002846241,0.053855109959840775,-0.03543298691511154,-0.023878006264567375,-0.044739603996276855,0.03167270869016647,0.0990179255604744,0.11663416028022766,0.014219999313354492,0.04304293543100357,0.08254269510507584,-0.0495477095246315,-0.0335598848760128,0.037192970514297485,-0.07379914075136185,-0.004386670887470245,-0.07764416933059692,0.04476776346564293,-0.028339030221104622,0.03439847379922867,-0.010857615619897842,-0.014524932950735092,-0.04117908701300621,0.033473797142505646,-0.10425462573766708,0.016986938193440437,0.015585615299642086,0.00961282942444086,-0.051993198692798615,-0.009292326867580414,-0.016052160412073135,0.10836759209632874,0.07289551198482513,0.00336122652515769,-0.0020840559154748917,-0.06363245844841003,0.0009375521913170815,-0.045342352241277695,0.03144780918955803,0.093103788793087,-0.09083905816078186,-0.0406288281083107,-0.053996868431568146,-0.06349072605371475,-0.04332995042204857,-0.020203787833452225,-0.002253772923722863,0.13534419238567352,0.04531256482005119,-0.047370631247758865,-0.08151309937238693,-0.008040341548621655,-0.01344040036201477,0.012998238205909729,0.032945144921541214,-0.010496127419173717,-0.031180936843156815,-0.041058752685785294,0.021137047559022903,-0.0009334171190857887,-0.1036408543586731,0.057944659143686295,-0.09043463319540024,0.0869540199637413,-0.026585200801491737,-0.03591085970401764,0.059999383985996246,0.0357794463634491,-0.09627934545278549,0.030152389779686928,0.09376026690006256,-0.057792264968156815,-0.004812163766473532,-0.028213612735271454,-0.05583256110548973,0.016808826476335526,0.004545116331428289,-0.062457405030727386,-0.010573114268481731,-0.057911768555641174,-0.07405747473239899,-0.012640180997550488,0.012036063708364964,-0.07054290175437927,0.02499295212328434,-0.03321279212832451,0.001916132285259664,0.02945786900818348,0.010292335413396358,-0.03223082423210144,-0.04671629145741463,0.06680288165807724,-0.106856569647789,0.01778002455830574,0.015216066502034664,0.10712401568889618,0.02161078341305256,-0.025477487593889236,-0.029348647221922874,-0.0247773677110672,0.026569422334432602,0.018547452986240387,-0.03595327213406563,0.05806771293282509,-0.07183732837438583,-0.046028390526771545,0.009079276584088802,0.023187926039099693,-0.001131439465098083,0.084876149892807,-0.045065153390169144,-0.009950652718544006,-0.039419591426849365,-0.06684955209493637,0.018755992874503136,-0.04673561453819275,0.06940005719661713,-0.06435182690620422,-0.0017525152070447803,-0.027296142652630806,0.010316658765077591,0.0070032174699008465,-0.022067740559577942,-0.0012461607111617923,-0.0033807605504989624,-0.0058596390299499035,0.06543704867362976,4.2256138277481875e-33,-0.053604237735271454,-0.0015273476019501686,-0.0049219876527786255,0.06489696353673935,0.005270460154861212,-0.02223759889602661,-0.02193356864154339,-0.021016355603933334,-0.03675638884305954,-0.03782906383275986,-0.11263523995876312,-0.012264925986528397,-0.0345519557595253,-0.062205858528614044,-0.030979683622717857,0.07317160069942474,0.13387775421142578,-0.02302011102437973,0.08436652272939682,0.002362586557865143,-0.005260275676846504,0.08532624691724777,0.03273221105337143,-0.03534495458006859,0.08953473716974258,-0.014084895141422749,0.0362631194293499,-0.07309477776288986,-0.024980798363685608,0.02308765798807144,0.14214444160461426,0.020423561334609985,-0.03447723016142845,-0.035133928060531616,-0.056589193642139435,-0.07156524807214737,0.019015591591596603,-0.007983862422406673,-0.07301505655050278,0.01106733363121748,-0.022705620154738426,-0.038965798914432526,0.004732639528810978,0.02585075981914997,0.056661393493413925,-0.01693030446767807,0.06287086009979248,0.09359585493803024,0.09037818759679794,0.12329164892435074,-0.021807625889778137,0.019836902618408203,-0.10439527779817581,0.05315586179494858,-0.03672240674495697,0.03701917454600334,-0.06540057063102722,-0.01716587133705616,0.033845093101263046,0.043205272406339645,0.008726784959435463,0.024238310754299164,0.019215378910303116,0.02228992059826851,0.05041263625025749,-0.11163271963596344,-0.08713943511247635,0.004386435728520155,0.15016046166419983,0.06551869958639145,-0.06931663304567337,-0.07079657167196274,-0.00948144681751728,0.005497278645634651,0.018991218879818916,-0.020603006705641747,0.012830306775867939,-0.052098896354436874,-0.012540577910840511,0.02691020257771015,-0.0627591535449028,-0.03142276033759117,0.031236961483955383,-0.0061232238076627254,0.04136641323566437,0.06700767576694489,-0.026649096980690956,-0.002159318421036005,0.026969226077198982,-0.011577799916267395,0.044254399836063385,-0.02334904670715332,0.02204907312989235,-0.04288347810506821,0.05141673609614372,-4.28273330230655e-33,0.058742623776197433,-0.026322118937969208,-0.05007017403841019,0.08665061742067337,0.017843149602413177,-0.009051719680428505,-0.060961220413446426,0.01722399704158306,0.0015907413326203823,-0.068641297519207,-0.07541224360466003,-0.05078301206231117,0.09048666059970856,-0.06295278668403625,-0.12029442936182022,0.1009063720703125,0.011232622899115086,-0.0004860403423663229,-0.051854684948921204,0.00201109959743917,-0.08952922374010086,-0.03328189253807068,0.006360532715916634,0.006843647453933954,-0.03864362835884094,0.001375422696582973,0.04505264014005661,-0.07649347931146622,-0.05156480520963669,-0.0009688258287496865,0.06896039843559265,-0.020458295941352844,0.02425515651702881,0.04058763012290001,-0.01117315236479044,-0.028129220008850098,0.11500019580125809,0.01709781214594841,0.0417993925511837,0.044121675193309784,-0.024537302553653717,0.04575946927070618,-0.029115797951817513,0.04696517437696457,-0.06616119295358658,-0.026599930599331856,-0.04161110147833824,-0.024950489401817322,0.036580462008714676,-0.04717520624399185,0.07274642586708069,-0.01875266619026661,-0.005220808554440737,-0.04087505489587784,0.0715334564447403,-0.07575532048940659,0.018333349376916885,-0.026134487241506577,-0.026014572009444237,0.022162599489092827,0.051849979907274246,0.022187987342476845,-0.033354319632053375,-0.056197941303253174,0.07410037517547607,-0.0072382353246212006,-0.03683541342616081,0.11159613728523254,0.08289672434329987,0.04388854652643204,0.02865542657673359,-0.05088508874177933,-0.07033237814903259,-0.018786903470754623,-0.026097148656845093,-0.014779210090637207,0.032878365367650986,0.01335456594824791,0.07663306593894958,0.08825167268514633,0.025712985545396805,-0.08469957858324051,-0.07125306874513626,-0.0023381724022328854,-0.09148713946342468,-0.045918263494968414,0.03395487740635872,-0.029947998002171516,-0.015198982320725918,-0.013375329785048962,0.00972903985530138,0.0449419841170311,0.0573069229722023,0.015914371237158775,0.0077345771715044975,-2.821745148651189e-8,0.06408026814460754,-0.050353001803159714,-0.08578918129205704,0.06930402666330338,0.04441067948937416,-0.1135053038597107,-0.010882113128900528,-0.015979798510670662,-0.010297056287527084,0.06403138488531113,-0.008151005022227764,-0.03563223034143448,0.018012814223766327,0.07006347179412842,0.08576051145792007,0.02111983671784401,0.03005109168589115,0.05700388923287392,-0.019466480240225792,-0.0061316718347370625,0.04370701313018799,0.043259669095277786,-0.10754266381263733,-0.0021684335079044104,-0.026974458247423172,0.03321033716201782,0.007914697751402855,-0.01128616277128458,-0.02052037976682186,0.0009607989923097193,-0.0312882699072361,0.06744278222322464,-0.05483699589967728,-0.016300152987241745,0.03746534138917923,0.07634604722261429,0.02409840002655983,0.006038310471922159,-0.08232679218053818,0.040922749787569046,0.06833796203136444,0.013798713684082031,0.053941547870635986,-0.04385845735669136,0.030061086639761925,-0.03793869912624359,-0.02183154784142971,0.019393322989344597,-0.005017071031033993,-0.017209960147738457,-0.00764204328879714,0.05929587781429291,0.07595286518335342,0.08507581055164337,-0.01012688223272562,0.06999961286783218,0.03572753444314003,-0.013484046794474125,-0.039154302328825,0.018003707751631737,0.04541505500674248,0.06435462087392807,-0.012197032570838928,-0.01378548052161932]},{"text":"Ego illis Mollior nec te feriam neque intra Claustra tenebo.","book":"Homage to Catalonia","chapter":19,"embedding":[-0.04641243442893028,0.07158271968364716,0.004096896853297949,-0.03253936767578125,-0.022403523325920105,-0.06354232877492905,0.08021277189254761,0.10196816176176071,0.0693032369017601,-0.013795328326523304,0.03647956624627113,-0.07823117822408676,0.027205292135477066,0.030384162440896034,-0.009509196504950523,-0.11482671648263931,-0.06314760446548462,0.05989658087491989,-0.03388619422912598,0.043873295187950134,0.06706519424915314,-0.05010262876749039,-0.022584782913327217,-0.021504834294319153,-0.11148513108491898,-0.03535979241132736,-0.04626958817243576,-0.02968926541507244,0.01164205837994814,-0.019636787474155426,0.038874078541994095,0.07943745702505112,0.05327615141868591,-0.013799356296658516,0.026424499228596687,-0.07288387417793274,0.009372557513415813,-0.011946872808039188,-0.05222245678305626,0.005244237370789051,-0.053699228912591934,-0.03497679531574249,-0.0800401121377945,-0.08253240585327148,-0.019057130441069603,0.0006936541176401079,-0.03779495507478714,0.0644008070230484,-0.060966845601797104,-0.04072365537285805,-0.08780605345964432,-0.034126248210668564,-0.01014374103397131,0.08218012005090714,-0.04674065485596657,-0.012064010836184025,0.012100371532142162,-0.02843857929110527,-0.01521727442741394,-0.03185771033167839,0.05674099549651146,0.06708448380231857,-0.04600677639245987,0.04386524483561516,0.015937061980366707,0.02909504994750023,0.028685815632343292,-0.07230140268802643,-0.11643960326910019,0.03950146213173866,0.10804518312215805,-0.088922880589962,-0.01428669597953558,-0.026460612192749977,0.012540645897388458,0.04399750754237175,0.005285776220262051,-0.03196677565574646,0.007177968043833971,-0.01942468248307705,0.05416509136557579,0.06467784941196442,0.020890826359391212,-0.06844810396432877,0.005718955770134926,-0.05705295503139496,0.02728389762341976,-0.006653934251517057,0.02831421047449112,0.02707572653889656,-0.06453680992126465,-0.031009897589683533,-0.09932208806276321,0.00482981326058507,0.07876773178577423,-0.0009788835886865854,-0.02454228699207306,0.06575234234333038,-0.03679357469081879,0.007173942402005196,0.01605365425348282,0.008151332847774029,-0.08492255955934525,0.1003309041261673,-0.03654704615473747,-0.0055513083934783936,0.08577132225036621,-0.077524833381176,-0.004809343721717596,-0.007006289903074503,-0.09085629880428314,-0.09853678196668625,0.043409563601017,-0.14885368943214417,0.03619835898280144,-0.016152534633874893,0.005823227111250162,0.0063415090553462505,0.04044884443283081,-0.04402248561382294,0.0254345890134573,0.022748857736587524,-0.023861227557063103,0.02126994915306568,0.05925460904836655,-0.018808621913194656,0.06503241509199142,3.0003415156013994e-33,-0.04119005426764488,-0.03233778104186058,-0.03102906420826912,-0.020512588322162628,0.05709726735949516,0.008243128657341003,-0.054129134863615036,0.011849386617541313,0.049465361982584,-0.06249406188726425,-0.005672785919159651,0.013943232595920563,-0.06452902406454086,0.027585165575146675,0.027407657355070114,0.01125558465719223,-0.005865876562893391,-0.049717050045728683,0.06268125772476196,0.010776431299746037,-0.024412160739302635,0.045463092625141144,0.0294899083673954,0.014155631884932518,0.009893734008073807,0.048761285841464996,-0.06639065593481064,0.007713756989687681,-0.07799495756626129,0.046594299376010895,0.06800094246864319,-0.0571255162358284,-0.013690351508557796,0.0007557153003290296,-0.004569498356431723,0.04750370979309082,0.0419212281703949,0.048268500715494156,0.017847437411546707,-0.04168659448623657,0.012110598385334015,0.002932933159172535,0.05373407155275345,-0.008029108867049217,-0.006065453868359327,-0.01936470717191696,0.06696672737598419,0.07589621096849442,0.09160026907920837,-0.0052256048657000065,-0.006619691848754883,-0.031826864928007126,-0.05820176377892494,-0.07889374345541,0.022813400253653526,0.05207457020878792,-0.06557240337133408,0.112473264336586,0.03169194981455803,-0.05757254362106323,0.021448953077197075,-0.04450567439198494,-0.022792376577854156,0.020624682307243347,0.008263060823082924,-0.019582729786634445,0.0035451387520879507,-0.02645425871014595,0.14441612362861633,-0.011951932683587074,-0.09079354256391525,0.015681130811572075,0.01402832567691803,0.025963671505451202,-0.015556193888187408,0.06766720861196518,0.050449687987565994,-0.07650339603424072,-0.02291250042617321,-0.009992548264563084,-0.028653757646679878,0.0004076809564139694,0.02719060145318508,0.05716071277856827,0.08278056234121323,0.009869767352938652,-0.03999137133359909,0.028673207387328148,0.02342708222568035,0.13240864872932434,0.014121606014668941,-0.0011967197060585022,-0.020036086440086365,0.021294880658388138,0.024350333958864212,-3.6646374341510674e-33,0.04787734895944595,-0.04485500976443291,-0.037363119423389435,0.03834211081266403,-0.038667622953653336,0.05906207486987114,-0.06299740821123123,0.013616738840937614,0.02167711965739727,-0.043125007301568985,-0.10204282402992249,-0.026203209534287453,0.13226929306983948,-0.02330585941672325,-0.0635007992386818,0.061721689999103546,0.06817277520895004,-0.00250133965164423,0.008050782606005669,0.004360864870250225,-0.034513041377067566,0.08235358446836472,-0.09725549072027206,-0.01960138790309429,-0.022219594568014145,0.03098534233868122,0.06588350981473923,0.05474475026130676,-0.13092084228992462,-0.03387102857232094,0.027908703312277794,-0.03776869177818298,-0.023553812876343727,-0.04372023791074753,0.015483145602047443,0.02686091512441635,0.07510970532894135,-0.016320262104272842,-0.05122344568371773,-0.04916253685951233,-0.025202611461281776,-0.00621667318046093,-0.012713577598333359,-0.02242075651884079,0.024200361222028732,-0.010647851042449474,-0.09225993603467941,-0.06410841643810272,0.04123540595173836,0.08186505734920502,0.045110274106264114,-0.014162013307213783,-0.013683500699698925,-0.03775233030319214,0.011737726628780365,-0.045629240572452545,-0.05068846791982651,-0.04867728054523468,-0.03620883449912071,0.006152318790555,0.07371249794960022,0.0914449542760849,-0.019865460693836212,0.011756143532693386,0.03035113774240017,0.01204663049429655,-0.06404651701450348,0.09216119349002838,0.051626481115818024,-0.013766718097031116,0.08330610394477844,-0.056377094238996506,-0.07612299919128418,-0.06864457577466965,-0.038238681852817535,0.020931649953126907,0.018636254593729973,0.06468705832958221,0.00030723511008545756,0.060887210071086884,-0.0736408680677414,-0.022055193781852722,-0.018444957211613655,0.0058059063740074635,-0.03510076552629471,-0.0023299732711166143,0.02878526784479618,-0.011654081754386425,-0.005223724525421858,-0.007593877613544464,0.06367343664169312,0.03784457966685295,0.00799765344709158,-0.02851111814379692,-0.02157789096236229,-2.2400255872412345e-8,0.057729292660951614,-0.05928703770041466,0.006722846068441868,0.05512557923793793,0.07349595427513123,-0.13103801012039185,0.001661007641814649,-0.07973872125148773,-0.025108207017183304,0.08622889220714569,0.046936389058828354,0.0168591495603323,-0.012486938387155533,0.02274106815457344,0.03807187080383301,0.03226286545395851,0.06041198596358299,-0.006655627395957708,-0.0070756166242063046,-0.08325827121734619,-0.009178285486996174,-0.0030596363358199596,-0.027840619906783104,-0.11109230667352676,0.002272684359923005,0.01791868917644024,0.014503216370940208,-0.11728546023368835,0.019571812823414803,0.029236411675810814,-0.03918395936489105,0.08766019344329834,-0.03424509987235069,-0.06932610273361206,-0.041879765689373016,0.06532106548547745,0.0255194753408432,-0.0002502573188394308,-0.023805707693099976,-0.05785565450787544,0.13139507174491882,0.09158676117658615,0.10696130245923996,-0.055599626153707504,0.009913398884236813,-0.02340688370168209,-0.04359549656510353,0.047069232910871506,0.05549384281039238,0.010517141781747341,-0.038706373423337936,0.033436767756938934,-0.02687172032892704,0.07854894548654556,0.05129386857151985,-0.03365189582109451,0.04945133253931999,0.021440330892801285,0.009285294450819492,0.03565315157175064,0.07180021703243256,0.0978076234459877,-0.008347662165760994,-0.08643662929534912]},{"text":"I pedes quo te rapiunt et aurae, Dum favet nox et Venus, i secundo 50 Omine et nostri memorem sepulcro Scalpe querellam.' XII.","book":"Homage to Catalonia","chapter":19,"embedding":[-0.04115419462323189,0.0376310795545578,0.04025372862815857,-0.03726476430892944,-0.08607374876737595,0.02633284032344818,0.0920935645699501,0.03426806628704071,0.10573001950979233,0.02181491255760193,0.015198949724435806,-0.05578816682100296,0.04278409481048584,-0.051419876515865326,-0.04862583801150322,-0.08180946856737137,-0.1076008602976799,0.07271809130907059,0.03788319602608681,0.05337289720773697,0.023645391687750816,-0.030274156481027603,0.004189088940620422,0.08014426380395889,-0.011953064240515232,0.050897225737571716,-0.042130839079618454,-0.013113591820001602,0.046707551926374435,0.0034911262337118387,0.0706903487443924,0.03505672514438629,-0.02258453704416752,0.005296254064887762,-0.04661776125431061,-0.029957111924886703,-0.04930233955383301,-0.11371861398220062,-0.026866093277931213,0.02915579453110695,-0.007656533736735582,-0.03118850104510784,-0.08647295087575912,-0.01300794817507267,0.03558540344238281,0.06359352916479111,-0.03693561628460884,0.055135250091552734,0.002435948932543397,0.005083736963570118,-0.10017646104097366,0.01171121932566166,-0.0011092893546447158,-0.020151978358626366,-0.022821836173534393,0.0032142559066414833,0.08076775819063187,-0.027653541415929794,0.00912419706583023,-0.006058203987777233,-0.02684600278735161,-0.01378514152020216,-0.04329220578074455,0.0675971657037735,-0.029245667159557343,0.020845714956521988,-0.008889399468898773,0.0349583774805069,-0.11983726173639297,0.0953611433506012,0.07825280725955963,-0.058768097311258316,-0.06731139123439789,0.04902924224734306,-0.016683531925082207,0.08828317373991013,-0.0557510107755661,-0.0345810241997242,-0.049605593085289,-0.08821389079093933,0.0013258245307952166,0.04689230024814606,-0.00686268275603652,0.00579189183190465,-0.016957411542534828,0.011235407553613186,0.07031944394111633,0.04409988597035408,-0.03960226848721504,-0.035551752895116806,0.00488449539989233,0.005584551487118006,-0.0845765545964241,-0.004327842965722084,0.09541091322898865,0.004268669988960028,0.010081958025693893,0.06402002274990082,-0.0002969617198687047,-0.021132957190275192,0.05436794087290764,0.02176949381828308,-0.10020431876182556,0.05383157730102539,-0.1476864218711853,0.014107060618698597,-0.028375577181577682,-0.07310841977596283,-0.027757318690419197,0.021541303023695946,-0.06658943742513657,-0.05332927405834198,-0.07015903294086456,-0.0575467050075531,-0.0697089359164238,-0.031742196530103683,-0.009143874980509281,-0.06942596286535263,0.04802514240145683,-0.01625748910009861,-0.022320255637168884,-0.03955395519733429,-0.023325566202402115,0.019026851281523705,0.004734485875815153,-0.10233636200428009,0.024404020980000496,6.838161410052245e-33,-0.09661968052387238,0.011557543650269508,0.0019814097322523594,-0.02488492801785469,0.047003913670778275,-0.007490651216357946,-0.06987281888723373,-0.03247179463505745,0.0011139875277876854,-0.0047394102439284325,-0.07622405886650085,0.031523946672677994,-0.0033774059265851974,0.013647593557834625,0.0421232245862484,-0.007124153431504965,0.10429441928863525,-0.02947360835969448,0.04790113866329193,-0.06159711256623268,-0.004780528601258993,0.0478019043803215,0.08643428981304169,0.05207851156592369,-0.03312886133790016,0.009773531928658485,-0.005289227701723576,-0.05147971212863922,-0.08767802268266678,0.05244928225874901,0.04093262180685997,-0.06215251237154007,0.035278286784887314,-0.05197547376155853,-0.0028441406320780516,-0.006256334949284792,0.010522032156586647,-0.03623818978667259,-0.04032888635993004,0.008493640460073948,0.01597343385219574,0.049403876066207886,0.08915535360574722,-0.0007044667727313936,-0.023138243705034256,0.07721196860074997,0.01789557933807373,0.03339443728327751,0.018297743052244186,-0.01496155560016632,0.010227339342236519,0.008269482292234898,-0.01871626265347004,-0.034131065011024475,0.03748483583331108,0.05299723893404007,-0.11003107577562332,0.055134426802396774,0.02559148706495762,-0.08576253801584244,0.04778677970170975,-0.025511419400572777,0.030842365697026253,-0.02453264221549034,-0.048513032495975494,0.06399683654308319,-0.04221808537840843,0.028867198154330254,0.10893408209085464,0.043033450841903687,-0.05964319407939911,-0.0011475819628685713,-0.005579572636634111,0.0680312067270279,0.09119104593992233,0.07843311876058578,-0.017891116440296173,-0.038161490112543106,-0.005781528539955616,-0.09122554957866669,-0.09763355553150177,-0.03580639883875847,0.0426228791475296,0.034303463995456696,0.13114380836486816,-0.018751036375761032,-0.021148117259144783,0.08203520625829697,-0.034680094569921494,0.14952325820922852,0.0722547397017479,-0.015092840418219566,0.07464181631803513,-0.005775451194494963,-0.05678628385066986,-7.165494709770004e-33,-0.007770821917802095,0.008917323313653469,-0.05036814510822296,0.0691407322883606,-0.034991294145584106,0.006450153421610594,-0.09403853863477707,0.058481037616729736,0.017764011397957802,-0.02366216853260994,0.011784032918512821,-0.026247821748256683,0.06723429262638092,-0.08440370112657547,-0.04968983680009842,0.07272620499134064,0.014764093793928623,0.02242044173181057,-0.03379001095890999,0.010395803488790989,-0.06571038067340851,-0.01061188243329525,0.011710211634635925,-0.026753142476081848,-0.012141713872551918,0.020844051614403725,0.06704990565776825,0.013181774877011776,-0.01672765426337719,-0.033742744475603104,0.020719928666949272,-0.06582529097795486,-0.03880852833390236,0.0723571628332138,-0.019254421815276146,0.057843685150146484,0.11956370621919632,0.03549540042877197,-0.024904098361730576,0.031152915209531784,-0.0211295448243618,0.06553198397159576,0.03814072534441948,-0.03126472979784012,0.037145648151636124,-0.018063481897115707,-0.12234832346439362,-0.033242858946323395,-0.047392114996910095,-0.02346600964665413,0.05430721491575241,0.03189064562320709,0.014220299199223518,-0.03350764885544777,0.005382456351071596,-0.06677324324846268,-0.03305916115641594,-0.04456399008631706,-0.062136661261320114,-0.06656461954116821,0.11719527095556259,0.03522743284702301,0.010168947279453278,0.0016689017647877336,0.08931013196706772,-0.019394030794501305,-0.08926540613174438,0.07985734194517136,-0.06443482637405396,0.049527477473020554,0.052552755922079086,-0.0492776595056057,-0.13148494064807892,0.01379072293639183,-0.042464807629585266,0.03265012055635452,-0.007164821028709412,0.010953088290989399,0.02119188942015171,0.08582337200641632,-0.02996951714158058,-0.04793231934309006,-0.08821936696767807,0.03264879807829857,-0.0026317331939935684,0.0076430547051131725,0.0019312143558636308,-0.03503350168466568,0.0052869380451738834,-0.033041391521692276,-0.0037242399994283915,0.02725951373577118,0.03010561317205429,-0.049014266580343246,0.02863047830760479,-3.564679929013437e-8,0.0354732982814312,-0.061432693153619766,-0.006391928996890783,0.014297756366431713,0.07890663295984268,-0.12080540508031845,-0.08872082084417343,-0.014778348617255688,-0.016764428466558456,0.032038357108831406,0.015352655202150345,-0.083384670317173,-0.019488999620079994,-0.0022496634628623724,-0.001857107039541006,0.06234712526202202,0.054182447493076324,0.009253589436411858,-0.00855470634996891,-0.07515157759189606,0.0340702161192894,0.017273562029004097,-0.022308416664600372,-0.007982217706739902,0.012722006998956203,-0.04975929111242294,0.04637719690799713,-0.046492498368024826,-0.007925319485366344,-0.04327134042978287,-0.0339188426733017,0.045378945767879486,-0.022601153701543808,-0.015473968349397182,-0.05965970456600189,0.08241855353116989,-0.010098990052938461,0.08164282143115997,0.07412523776292801,0.02716485597193241,0.08453159034252167,-0.016843300312757492,0.03054618462920189,-0.02469475567340851,0.007452312391251326,0.03464304283261299,0.06510400772094727,-0.020429212599992752,-0.028231579810380936,0.02487126924097538,0.021957386285066605,0.08200661092996597,0.06663411855697632,0.06821461021900177,-0.043178342282772064,0.024029089137911797,0.023951658979058266,0.024137353524565697,0.014847482554614544,-0.07854311168193817,0.08288658410310745,0.03243282809853554,0.026454852893948555,-0.06757113337516785]},{"text":"Tibi qualum Cythereae puer ales, tibi telas Operosaeque Minervae studium aufert, Neobule, 5 Liparaei nitor Hebri Simul unctos Tiberinis umeros lavit in undis, Eques ipso melior Bellerophonte, neque pugno Neque segni pede victus; Catus idem per apertum fugientis agitato 10 Grege cervos iaculari et celer arto latitantem Fruticeto excipere aprum.","book":"Homage to Catalonia","chapter":20,"embedding":[0.03792322054505348,0.0342305526137352,-0.048394929617643356,-0.010840038768947124,-0.152993306517601,0.0209905244410038,0.04272150620818138,0.0299378652125597,-0.02681782655417919,0.04862358793616295,0.040495190769433975,-0.13247069716453552,0.05318149924278259,-0.014152893796563148,-0.10017161816358566,-0.05443774536252022,-0.00517017999663949,-0.020798804238438606,-0.014987584203481674,-0.004910530988126993,-0.019639110192656517,0.02229282073676586,-0.020775597542524338,-0.024982675909996033,-0.0937030017375946,-0.009747552685439587,-0.11028081923723221,-0.061330705881118774,-0.02649475634098053,-0.04916993901133537,-0.02297048829495907,0.08060605078935623,0.07479505985975266,-0.045408982783555984,-0.03569530323147774,-0.051092687994241714,-0.049307405948638916,-0.024265488609671593,0.024242032319307327,0.056007567793130875,-0.050582025200128555,-0.017117608338594437,-0.07847490161657333,-0.052397821098566055,-0.014480519108474255,0.048746030777692795,0.015121015720069408,0.009914309717714787,0.0851011797785759,-0.0532955527305603,-0.054420385509729385,-0.044646069407463074,-0.054910413920879364,0.014269158244132996,-0.04179985821247101,-0.03917841613292694,-0.01409165095537901,-0.0730220153927803,-0.05913297459483147,-0.006534277927130461,0.008314554579555988,0.06994964927434921,0.00743554811924696,0.025917615741491318,-0.01627885363996029,0.03796423226594925,-0.1065901443362236,-0.020481837913393974,-0.012569373473525047,-0.013983571901917458,0.10340151935815811,-0.0426289364695549,-0.05934341624379158,0.08539129793643951,-0.0936834067106247,0.09705061465501785,0.009328936226665974,0.040773577988147736,0.00964233186095953,-0.07109203189611435,-0.07608088105916977,0.01794378086924553,0.06595383584499359,0.07117924094200134,0.0049826521426439285,0.103631392121315,0.030166450887918472,-0.020427072420716286,-0.020366452634334564,0.021520080044865608,0.05776680260896683,0.1012580394744873,-0.06411523371934891,0.028168652206659317,0.04336446523666382,-0.023623840883374214,0.030003894120454788,-0.009294645860791206,-0.006182100623846054,-0.03799324110150337,0.025840800255537033,-0.05783545970916748,-0.02172127738595009,0.028653858229517937,-0.14602026343345642,-0.07644810527563095,-0.0511074922978878,-0.12016678601503372,0.012545074336230755,0.018840353935956955,-0.07845639437437057,-0.04999765008687973,-0.06724563986063004,-0.02061767689883709,-0.01322103664278984,0.004333355464041233,0.031141994521021843,-0.04826066270470619,0.03196568042039871,-0.03384198620915413,-0.007247807923704386,-0.018259838223457336,0.03725530952215195,-0.021762944757938385,0.042765747755765915,-0.05411197617650032,-0.02444302663207054,2.5262275791085215e-32,-0.05931338295340538,-0.049933359026908875,0.0021421085111796856,0.01304596196860075,0.04910358041524887,0.029355432838201523,-0.047773607075214386,-0.0511266328394413,0.048988182097673416,-0.07722621411085129,-0.12096792459487915,0.004829620011150837,0.014132129959762096,-0.03771911934018135,0.014769619330763817,0.05351315811276436,0.020880529657006264,-0.037568215280771255,-0.016153620555996895,-0.009942352771759033,-0.09422481060028076,0.016337592154741287,0.010446279309689999,0.01930193230509758,-0.05975165218114853,0.04535934329032898,0.015005051158368587,-0.10014428198337555,-0.05458775907754898,0.03031386435031891,0.046213194727897644,-0.0904935970902443,-0.0038881702348589897,-0.0486244298517704,-0.03189128264784813,0.015660300850868225,0.0580906942486763,-0.029127737507224083,-0.0806443840265274,0.030087780207395554,0.06807218492031097,-0.001059330883435905,0.08974086493253708,0.08295989781618118,0.02311432547867298,0.026583677157759666,-0.05762733519077301,0.05532628670334816,0.062272071838378906,0.013336965814232826,0.019234543666243553,0.034050341695547104,0.05319925770163536,-0.05202193558216095,0.02215065062046051,-0.01620624214410782,-0.0488712452352047,0.0642724335193634,-0.06771721690893173,0.02584807761013508,0.017835397273302078,0.03840268403291702,-0.000015351222828030586,0.04427504539489746,-0.006667932495474815,-0.004286626819521189,-0.13516616821289062,0.0073651825077831745,0.011831119656562805,0.008089096285402775,-0.05225202813744545,-0.021823296323418617,0.03561757132411003,0.007594375405460596,0.049938689917325974,0.0101754330098629,0.06141423061490059,-0.0206659734249115,-0.027517445385456085,0.025385143235325813,-0.02190607599914074,-0.014850270003080368,0.0056270696222782135,-0.03398311138153076,0.05056476593017578,0.017464056611061096,0.0037377860862761736,0.015138969756662846,0.06963734328746796,0.12876275181770325,0.06307293474674225,0.049966681748628616,-0.06587544828653336,0.025750858709216118,-0.04068870469927788,-2.3805344582789055e-32,-0.03256533667445183,-0.03051900863647461,-0.05529431998729706,0.025553710758686066,0.04129166901111603,0.025313211604952812,-0.09822501987218857,0.02979857847094536,0.08615235984325409,-0.04673130437731743,-0.047933179885149,0.01010744646191597,0.12878534197807312,-0.02653578855097294,-0.00622906070202589,0.04482516646385193,0.04936525225639343,0.0072914352640509605,-0.05761364847421646,-0.03132238984107971,-0.09296765178442001,-0.02708600088953972,-0.007243532687425613,-0.12674984335899353,-0.009319181554019451,0.038241684436798096,-0.021197998896241188,0.006128087639808655,-0.04445163533091545,-0.05794933810830116,0.11339763551950455,-0.037924714386463165,-0.009730048477649689,0.06514129787683487,0.008656012825667858,0.04336245730519295,0.13538700342178345,-0.09639085084199905,0.03709931671619415,0.07054904103279114,-0.023795107379555702,-0.01911879889667034,0.052802007645368576,-0.039772119373083115,0.046312104910612106,-0.008776091039180756,-0.096045583486557,-0.015865487977862358,-0.05250774696469307,0.05799463018774986,0.09970419853925705,-0.021078765392303467,0.0324690043926239,0.02397303283214569,0.04561906307935715,-0.00977233424782753,0.042391907423734665,0.003877353621646762,-0.0588039830327034,0.04969564080238342,0.13529236614704132,-0.007768353912979364,-0.03295481204986572,0.046915505081415176,0.009769164957106113,0.03344866260886192,0.004961417056620121,0.04968272149562836,-0.06100461632013321,0.0359405018389225,0.04866630584001541,-0.04166414961218834,-0.10194185376167297,-0.02679320052266121,0.002400059951469302,0.0521731935441494,0.018296431750059128,0.04787109047174454,-0.034963056445121765,0.03143053501844406,-0.0656382367014885,0.022354790940880775,0.034406449645757675,-0.031800009310245514,0.0009754032362252474,-0.01737847924232483,-0.025569144636392593,0.03150154650211334,0.017964573577046394,-0.023832743987441063,-0.012599978595972061,-0.014235521666705608,-0.03841777890920639,-0.051782138645648956,0.07067932188510895,-7.283274783276283e-8,0.028363941237330437,-0.07033610343933105,-0.03196972236037254,0.02856026031076908,0.023271363228559494,-0.03245486691594124,0.03153679892420769,-0.005970247555524111,0.017770398408174515,0.010316109284758568,-0.04527215287089348,0.03937282785773277,-0.024207178503274918,0.015079762786626816,0.07383912801742554,0.01629200577735901,0.11085423827171326,-0.012154935859143734,0.0005030860775150359,-0.017604874446988106,-0.015292417258024216,-0.06233575940132141,-0.05048752203583717,-0.030199609696865082,-0.12405389547348022,-0.10001356899738312,0.04590819403529167,-0.026939235627651215,-0.03087037056684494,-0.0007209359318949282,0.034584563225507736,0.03180668130517006,0.038589704781770706,-0.08659187704324722,-0.01732054352760315,0.0036658586468547583,0.026081053540110588,0.00396591704338789,0.019188478589057922,0.08172540366649628,0.02583572454750538,-0.011083371937274933,0.003891360480338335,-0.03179177641868591,0.010698992758989334,-0.07067380845546722,-0.012828194536268711,0.006954809185117483,0.028844140470027924,-0.06904309242963791,-0.05063407123088837,0.12361694127321243,0.08556735515594482,-0.0004776880668941885,-0.07649702578783035,-0.009994233027100563,0.04321639612317085,0.011730050668120384,-0.018566476181149483,0.038385048508644104,-0.015457133762538433,0.022334055975079536,0.0860014408826828,0.01896788366138935]},{"text":"Te flagrantis atrox hora Caniculae Nescit tangere, tu frigus amabile 10 Fessis vomere tauris Praebes et pecori vago.","book":"Homage to Catalonia","chapter":20,"embedding":[-0.0434253104031086,0.0922936350107193,-0.07755544036626816,0.0085220355540514,0.002367368433624506,-0.0001444822846679017,0.09680585563182831,0.04732006415724754,0.025289608165621758,0.018142275512218475,0.07480268180370331,0.003392690559849143,-0.0385228656232357,0.01756923459470272,-0.0716448426246643,-0.07519762963056564,-0.030426323413848877,0.04985194653272629,-0.028920911252498627,0.04232175648212433,0.04633933678269386,-0.04137811064720154,0.043671928346157074,0.03269719332456589,-0.10238749533891678,-0.007237098179757595,-0.1088828295469284,-0.0015225796960294247,-0.013520374894142151,-0.07237200438976288,0.02147725597023964,0.18315854668617249,-0.025401785969734192,-0.02038929983973503,-0.00008964836888480932,-0.03410669043660164,0.011494727805256844,-0.029748460277915,0.07662905752658844,0.03320411220192909,-0.08298425376415253,-0.00973088014870882,-0.03803511708974838,-0.05638305842876434,-0.05755900219082832,-0.021541276946663857,0.0013246572343632579,0.06767342239618301,0.048054806888103485,-0.027659401297569275,-0.06434503197669983,-0.004945375490933657,0.023722287267446518,-0.07043112069368362,-0.036637261509895325,0.05366678908467293,-0.01062766183167696,-0.13855291903018951,-0.01070566475391388,0.0006812098436057568,-0.016365140676498413,0.00221761642023921,-0.06455046683549881,0.03103766217827797,-0.05446595326066017,0.020045798271894455,-0.06804169714450836,0.023559821769595146,-0.026835165917873383,0.027927178889513016,0.11875010281801224,-0.006492733955383301,-0.05075358971953392,0.07122526317834854,-0.007886946201324463,0.09388483315706253,-0.017925124615430832,-0.011963152326643467,-0.004664168693125248,-0.09301053732633591,0.020716821774840355,-0.017844663932919502,-0.03771957382559776,-0.026049917563796043,0.06967080384492874,-0.07233886420726776,0.019171422347426414,0.01453880500048399,0.0738738402724266,0.008136133663356304,-0.017696648836135864,0.08932765573263168,-0.020681360736489296,-0.05147352069616318,0.023109033703804016,0.015993114560842514,0.037912338972091675,-0.03850426524877548,-0.019547848030924797,0.016188383102416992,0.036926668137311935,-0.06918469816446304,0.04945185407996178,0.08862825483083725,-0.09106162935495377,-0.08016195893287659,-0.040673382580280304,-0.11346106231212616,-0.0010467793326824903,0.0415501594543457,-0.0634496882557869,-0.046511463820934296,-0.015338386408984661,-0.04814772307872772,0.04905330389738083,0.013251068070530891,0.015936486423015594,-0.07392425090074539,0.0037213910836726427,-0.09397168457508087,0.00932004302740097,0.00428707804530859,-0.0274379700422287,-0.030667727813124657,0.061226148158311844,-0.0008662517066113651,0.08532104641199112,1.3453626884709146e-32,-0.02284735068678856,-0.0005456088110804558,-0.08325695246458054,-0.01753203570842743,0.023203957825899124,-0.030953222885727882,-0.062084805220365524,-0.0537230409681797,0.013530673459172249,0.010818622075021267,-0.08943475782871246,0.04045229032635689,-0.019396429881453514,0.0531778410077095,0.04240108281373978,0.04038503021001816,0.12054816633462906,-0.030085986480116844,-0.017231598496437073,-0.018356094136834145,-0.026054570451378822,0.07695595920085907,0.02855134941637516,-0.013912494294345379,-0.015877950936555862,-0.015808185562491417,-0.05351162329316139,-0.049398649483919144,-0.0331924706697464,0.04329095035791397,0.14436186850070953,-0.029521821066737175,0.027233252301812172,-0.020430395379662514,-0.03914209455251694,0.04133665934205055,-0.00402857968583703,-0.014797096140682697,-0.0034623299725353718,0.03404362127184868,0.057744741439819336,0.039100054651498795,0.07392170280218124,0.05385543778538704,0.045435287058353424,0.05542309209704399,0.07022695988416672,0.03746910020709038,0.1061215028166771,0.036008693277835846,-0.010435243137180805,-0.0026195647660642862,0.01790419965982437,-0.019960304722189903,-0.01211247593164444,0.0443158783018589,-0.011274700053036213,0.05718977376818657,-0.037251297384500504,-0.004378387704491615,0.03148086369037628,-0.0032447283156216145,0.007645909674465656,-0.016999192535877228,0.004039033781737089,-0.0030828919261693954,-0.02801557444036007,0.000028034910428687,0.07610581070184708,0.030962275341153145,-0.06397466361522675,0.005597570911049843,-0.02541600912809372,0.05135524645447731,0.05291078984737396,0.05027095228433609,-0.026647284626960754,-0.033733777701854706,-0.040413130074739456,-0.00022841051395516843,-0.09413789957761765,-0.0000593390068388544,-0.022534171119332314,0.07660740613937378,0.08231797814369202,0.013401255942881107,0.025873014703392982,0.05922892689704895,0.026964101940393448,0.029870687052607536,0.036052510142326355,0.04879220202565193,0.03353608772158623,-0.013703719712793827,0.063635915517807,-1.3066930385590893e-32,-0.002510959981009364,-0.024767108261585236,-0.05169237032532692,0.02232752926647663,-0.04098021239042282,0.0746460035443306,-0.08063405007123947,0.05696282535791397,-0.04429711028933525,-0.1281660497188568,-0.07960959523916245,-0.09491851180791855,0.10797330737113953,-0.05665593221783638,-0.04825560376048088,0.03156990557909012,0.004712717607617378,0.09628687798976898,-0.01442900113761425,-0.01711566001176834,-0.09059445559978485,-0.009259304963052273,0.005226231180131435,-0.029499629512429237,0.014584725722670555,-0.025452299043536186,0.0907873809337616,-0.06704992800951004,-0.08019080013036728,-0.06164707615971565,0.06909366697072983,-0.0010847420198842883,0.03998317942023277,0.03585725650191307,0.03899146243929863,0.022082801908254623,0.14280812442302704,-0.016583699733018875,-0.00658420892432332,0.01868959702551365,-0.022277070209383965,0.015533141791820526,0.07945390790700912,-0.05657108500599861,-0.01820083148777485,0.01595473475754261,-0.11033134162425995,-0.07870576530694962,-0.06936781853437424,0.052842285484075546,0.08013571798801422,-0.03063557669520378,0.01935071125626564,-0.07508879154920578,0.062460094690322876,-0.053307875990867615,-0.04846708104014397,-0.07376617938280106,-0.05562204867601395,0.012644640170037746,0.053819190710783005,-0.00850129034370184,-0.05109807476401329,-0.029575850814580917,0.11662952601909637,0.02324226126074791,-0.13139916956424713,-0.010768582113087177,0.02502322755753994,0.039993077516555786,0.06514131277799606,-0.05838382616639137,-0.09600174427032471,-0.012571902014315128,-0.014056069776415825,0.06393903493881226,-0.04610355943441391,0.03279722109436989,0.02983526699244976,0.0012354657519608736,-0.07232421636581421,-0.06536877155303955,-0.034949254244565964,-0.009472684934735298,-0.025730503723025322,-0.03767284378409386,0.019520312547683716,-0.028665293008089066,0.07038628309965134,0.024762066081166267,0.02977798320353031,0.01617532968521118,0.03914881497621536,-0.07172901183366776,0.02905215695500374,-4.4409858901417465e-8,0.05028507485985756,-0.09846312552690506,-0.03739774227142334,0.07604394853115082,0.03032981976866722,0.05917120724916458,0.04823034629225731,-0.12534809112548828,-0.023062745109200478,0.0006260473746806383,-0.05508926510810852,0.0234022606164217,0.009232748299837112,-0.0015043684979900718,-0.011256448924541473,0.016254188492894173,0.06977897882461548,0.044940900057554245,-0.01032998040318489,-0.02109663188457489,-0.003194573102518916,0.012225259095430374,-0.0779406875371933,0.016420044004917145,-0.07746913284063339,-0.013247756287455559,0.04531529173254967,-0.04798891767859459,0.05930967628955841,-0.04145263880491257,-0.010433408431708813,-0.03189674764871597,-0.018817603588104248,-0.029528681188821793,-0.050882767885923386,0.05738939717411995,-0.01758984662592411,-0.023383216932415962,0.029315827414393425,0.007238870952278376,0.07928832620382309,0.032932814210653305,-0.0034083083737641573,-0.053575851023197174,0.024092648178339005,-0.045766256749629974,-0.033970728516578674,0.01181192509829998,-0.019057031720876694,-0.04297472909092903,-0.04165220633149147,0.048875465989112854,0.05264097824692726,0.025253452360630035,-0.0884181335568428,-0.0038339155726134777,0.03562457859516144,0.007109915371984243,0.0029676100239157677,0.001694093574769795,0.03653589263558388,0.07261189073324203,0.03851921483874321,0.0008114968077279627]},{"text":"Herculis ritu modo dictus, o plebs, Morte venalem petiisse laurum, Caesar Hispana repetit penatis Victor ab ora.","book":"Homage to Catalonia","chapter":20,"embedding":[0.00557400519028306,0.02188742533326149,-0.07245762646198273,0.0087888790294528,-0.12468183040618896,0.010065722279250622,-0.02249949611723423,0.06290300190448761,0.011748046614229679,0.08003515750169754,0.03436090052127838,-0.04754934832453728,-0.004004489630460739,0.03906433284282684,-0.015141790732741356,-0.027874192222952843,0.0008147403714247048,0.09205501526594162,-0.03911839798092842,0.040092699229717255,0.08156104385852814,-0.020041780546307564,0.009992413222789764,0.034392088651657104,-0.10058282315731049,0.034914977848529816,-0.03883886709809303,0.024263976141810417,0.03323057293891907,-0.09496722370386124,-0.009924815036356449,0.04319120571017265,0.05222785100340843,-0.09185223281383514,0.033742379397153854,-0.016386957839131355,-0.032927993685007095,-0.06516700237989426,0.04888550564646721,0.00717602064833045,-0.06954631209373474,0.05516503378748894,0.015705043449997902,0.016469020396471024,-0.023633044213056564,-0.05918603762984276,-0.00902315229177475,0.11262284219264984,0.0586942657828331,-0.049698054790496826,-0.01469697616994381,-0.07188620418310165,-0.10037638247013092,-0.0028452433180063963,-0.06419520080089569,-0.039931125938892365,-0.03868139907717705,-0.08969435840845108,0.044185344129800797,-0.10601918399333954,0.01903807558119297,0.10166717320680618,0.00413680961355567,0.05773855373263359,-0.05569842457771301,-0.010738912969827652,0.010507673025131226,0.006892544217407703,-0.04359612986445427,0.02176845259964466,0.05591628700494766,-0.06227683275938034,0.10377617180347443,0.11598412692546844,-0.04220955818891525,-0.016076937317848206,0.027007369324564934,0.0043833451345562935,0.02971489541232586,-0.09152702242136002,-0.06876195222139359,0.021292787045240402,0.023492317646741867,0.025983648374676704,-0.0035724437329918146,-0.009928997606039047,-0.02062501572072506,-0.06007286533713341,0.08820433914661407,-0.021006416529417038,0.03282633423805237,-0.005252979230135679,0.01037057489156723,-0.07476788014173508,0.005555407609790564,0.03536556288599968,-0.044876474887132645,-0.037762925028800964,0.04574763774871826,-0.004310849122703075,0.034559767693281174,0.0019786907359957695,-0.0023474646732211113,0.012853465043008327,-0.03916159272193909,0.04366717115044594,-0.01350806001573801,-0.07731354236602783,0.025695715099573135,0.06877545267343521,-0.08286312967538834,0.01417633704841137,-0.03900696709752083,-0.11122868955135345,-0.01654570922255516,0.0401361919939518,0.015736231580376625,-0.061728548258543015,-0.03944439813494682,-0.009677540510892868,-0.022406797856092453,-0.07055357098579407,-0.010544749908149242,-0.0019680603872984648,0.014234629459679127,-0.0775810182094574,-0.025093819946050644,8.813220406148129e-33,-0.014995088800787926,-0.09125780314207077,-0.04760662093758583,-0.013202906586229801,0.08048093318939209,0.016584711149334908,0.013120749033987522,-0.03502499684691429,0.011655347421765327,-0.027332305908203125,-0.10421887785196304,-0.03942934423685074,-0.0103764608502388,0.003710811259225011,-0.012389370240271091,0.05276196822524071,0.08246305584907532,-0.051656730473041534,-0.061749912798404694,-0.006276682950556278,-0.005659622140228748,0.04628850519657135,0.03619000315666199,0.009189954027533531,0.06767534464597702,0.06866849213838577,-0.005376263055950403,-0.06964553892612457,-0.001813716720789671,0.02428339049220085,0.1148512065410614,-0.01999489590525627,-0.0041291057132184505,-0.009567157365381718,-0.07068049907684326,-0.009932403452694416,-0.001978168962523341,-0.022672003135085106,-0.0734485387802124,0.09627734869718552,0.07000091671943665,0.009624090045690536,0.01639489270746708,0.04374920204281807,0.039173465222120285,-0.04878890886902809,0.02359953336417675,0.0576135590672493,0.039782099425792694,0.056960996240377426,0.042627424001693726,-0.006137937773019075,-0.06012050434947014,-0.07965409755706787,-0.05909140035510063,0.04010233283042908,-0.02723851427435875,0.025783956050872803,-0.00030499804415740073,0.02153046429157257,0.08177914470434189,0.001530339359305799,-0.003788894508033991,-0.01858632266521454,0.006042505614459515,-0.06141940504312515,-0.010030301287770271,0.04010229557752609,0.05403267219662666,-0.012126579880714417,-0.09865067899227142,-0.06662343442440033,-0.05674125254154205,0.031426526606082916,-0.06759369373321533,0.03814630210399628,-0.015959709882736206,-0.010999277234077454,-0.01643446460366249,-0.008711759001016617,-0.08015114068984985,0.08849035203456879,0.05688127875328064,0.0004668832407332957,0.11315178871154785,0.04209999367594719,-0.0072001381777226925,-0.013707110658288002,0.007941029034554958,0.021874282509088516,0.023502502590417862,0.08391453325748444,0.10003437101840973,-0.024704299867153168,0.040298767387866974,-9.32548321182122e-33,-0.08583902567625046,-0.05844789370894432,-0.062368590384721756,0.0771099254488945,0.024073008447885513,-0.03576454147696495,-0.13785722851753235,0.052943889051675797,0.014465328305959702,-0.07745645195245743,-0.08170878887176514,-0.08027120679616928,0.07630482316017151,-0.05449019372463226,0.014910101890563965,0.10097438842058182,0.04407389834523201,0.049648478627204895,-0.05338370054960251,0.017037654295563698,-0.05467706918716431,0.016233131289482117,0.02788989059627056,-0.057205673307180405,-0.007790623232722282,-0.01063522044569254,0.049552254378795624,-0.06309551000595093,0.006549340672791004,0.007356551941484213,0.016524899750947952,0.00875059049576521,-0.032113634049892426,0.014087897725403309,0.0058392491191625595,-0.01788937672972679,-0.014984686858952045,-0.04397690296173096,-0.010760940611362457,0.014334958977997303,0.042078807950019836,0.00904093962162733,0.058381687849760056,0.05669688060879707,-0.06340357661247253,-0.01259496808052063,-0.06635481119155884,0.01203877292573452,0.029649505391716957,0.025572357699275017,0.05194607377052307,-0.10916387289762497,0.02944798395037651,-0.01091550849378109,0.11496978998184204,-0.028871219605207443,-0.009755603969097137,-0.038660772144794464,-0.033617548644542694,0.023570366203784943,0.033809974789619446,0.022419186308979988,-0.03385523334145546,0.03734084218740463,0.07413051277399063,0.08159195631742477,-0.06200516223907471,-0.020350906997919083,-0.0556589812040329,0.03374496474862099,0.02171928994357586,-0.09853809326887131,-0.13281391561031342,-0.01635362021625042,-0.04060665890574455,0.056224606931209564,-0.0008115511736832559,-0.002556806430220604,0.03917670622467995,0.08948482573032379,-0.02211596816778183,-0.04631873220205307,0.01572437770664692,-0.004985658917576075,-0.0013390970416367054,-0.06786268204450607,0.006954592652618885,-0.013370823115110397,0.03264259919524193,0.03655771538615227,0.033103395253419876,-0.028627514839172363,0.12641221284866333,-0.044222939759492874,0.05390189588069916,-3.671402737381868e-8,-0.011717518791556358,-0.08976288139820099,-0.00438189459964633,0.05391266196966171,0.05170214921236038,-0.04261646792292595,-0.029336342588067055,-0.04853074252605438,-0.038980256766080856,0.08714163303375244,0.007834170944988728,-0.0017373538576066494,0.004959966987371445,-0.01346930768340826,0.04253891482949257,0.06283925473690033,0.0957362949848175,0.07317779958248138,-0.01743370294570923,-0.0801781490445137,-0.029845189303159714,-0.02657497674226761,0.0548558235168457,-0.018487626686692238,0.023391876369714737,-0.03394562751054764,0.04048305004835129,-0.029260221868753433,0.01839313842356205,-0.011493631638586521,-0.009642686694860458,0.03047352284193039,-0.002154093934223056,-0.13972966372966766,-0.04747699946165085,0.06419412046670914,0.06693029403686523,-0.020485419780015945,0.041489843279123306,-0.007142713759094477,0.12915357947349548,0.014981363900005817,0.037189703434705734,-0.013083911500871181,0.07216004282236099,-0.021005455404520035,-0.021016800776124,0.028404271230101585,-0.03648705407977104,-0.11486335843801498,-0.027438126504421234,-0.007590704597532749,0.08255014568567276,-0.03494195267558098,-0.02995222993195057,-0.003503343090415001,0.09908917546272278,0.06473228335380554,0.03150366619229317,0.054714418947696686,0.04717588424682617,0.03973622992634773,0.05026915669441223,-0.040188927203416824]},{"text":"Vos, o pueri et puellae 10 Iam virum expertae, male ominatis Parcite verbis.","book":"Homage to Catalonia","chapter":20,"embedding":[0.025313952937722206,0.05825129896402359,-0.06517644226551056,-0.012340364046394825,-0.05198182910680771,0.014120322652161121,0.036570072174072266,0.06197628751397133,-0.024113772436976433,0.03819999843835831,0.034913841634988785,-0.07654465734958649,-0.04996159300208092,-0.016640495508909225,-0.04675185680389404,-0.057719551026821136,-0.06426431238651276,0.09143909811973572,0.022077985107898712,0.01714481972157955,0.04189852997660637,0.04722742736339569,-0.014407164417207241,-0.027478886768221855,-0.07141067832708359,0.01860049180686474,-0.04366350173950195,0.0005192781682126224,0.062013085931539536,-0.056722305715084076,0.01554680522531271,0.025241833180189133,0.08942975103855133,-0.019055046141147614,-0.015367789193987846,-0.06435271352529526,-0.06420142203569412,-0.1174447312951088,0.023516038432717323,0.04494380205869675,-0.053922396153211594,-0.011425682343542576,-0.030398132279515266,-0.01402849331498146,-0.029632993042469025,0.07947857677936554,0.05495800822973251,0.08290379494428635,-0.021141545847058296,-0.022668149322271347,-0.07352840900421143,-0.10822311043739319,0.07237108796834946,-0.03763122484087944,-0.08642815798521042,-0.06024155393242836,0.009613581001758575,-0.10173551738262177,-0.03328752517700195,-0.07590615749359131,0.024587595835328102,0.013936497271060944,-0.024173201993107796,0.0397249311208725,-0.0554630346596241,0.025176232680678368,-0.0014140184503048658,0.007109739817678928,-0.06253375113010406,0.07675117999315262,0.08584792166948318,-0.0035943009424954653,-0.07278187572956085,0.10637684911489487,-0.05438750609755516,0.09436061978340149,-0.00910978578031063,-0.029615169391036034,0.04714518412947655,-0.06736930459737778,0.04313267394900322,-0.002460904885083437,-0.07944399118423462,0.03607882186770439,-0.025794630870223045,-0.004221462178975344,0.059359367936849594,0.03170715272426605,-0.006182742305099964,-0.046133797615766525,-0.03150781989097595,-0.014533777721226215,-0.0029941380489617586,-0.029080163687467575,-0.000652166607324034,0.04881901666522026,-0.012946623377501965,-0.01152630802243948,-0.058460161089897156,-0.0027172048576176167,-0.050969164818525314,-0.06909080594778061,0.036855146288871765,0.1289687603712082,-0.12669508159160614,-0.013762633316218853,-0.014741222374141216,-0.0590226836502552,0.06416458636522293,0.04141174629330635,-0.04610788822174072,-0.010940764099359512,-0.07069210708141327,-0.08409488201141357,0.0309443362057209,0.011419433169066906,0.04123539477586746,-0.08478759229183197,0.04610908031463623,-0.044598616659641266,-0.02005673199892044,0.004221345763653517,-0.009283039718866348,0.015517222695052624,0.0573028065264225,-0.025959983468055725,0.05880390480160713,1.8503298619240236e-33,-0.07315462082624435,-0.03380835801362991,-0.015154927037656307,-0.006851710844784975,0.030244506895542145,-0.0023681074380874634,-0.010942913591861725,-0.08271661400794983,0.06965295225381851,-0.07456167787313461,-0.08621358871459961,-0.05720258504152298,0.007292946334928274,-0.0035777511075139046,0.008428772911429405,0.030172061175107956,0.15054690837860107,-0.02438664436340332,-0.026704179123044014,-0.013926145620644093,0.011844227090477943,0.06345928460359573,0.0083842221647501,0.03821245953440666,0.00827685184776783,-0.007378534879535437,0.051512595266103745,-0.0634891539812088,0.027717681601643562,0.007579304743558168,0.09421859681606293,-0.035582635551691055,-0.004185472149401903,-0.04199991747736931,0.02547120302915573,0.02127789333462715,0.02120370790362358,0.04185391589999199,-0.014605369418859482,0.02492666244506836,-0.0017218022840097547,0.006111389957368374,0.009012809954583645,0.0029778582975268364,0.07067152112722397,-0.043574925512075424,-0.014060206711292267,0.06660664826631546,-0.019187891855835915,-0.020370397716760635,-0.05644243210554123,0.04467184096574783,-0.006593567319214344,-0.015697339549660683,0.05260498821735382,0.042625945061445236,0.012185413390398026,0.05193591117858887,-0.029955031350255013,-0.02027834765613079,0.0922093391418457,0.005496641155332327,0.03300052136182785,-0.020096035674214363,-0.06623369455337524,0.01949734054505825,-0.009861714206635952,-0.010356038808822632,0.12014871835708618,0.06384994834661484,-0.10905837267637253,-0.022323815152049065,-0.01824072375893593,0.00009473721729591489,-0.015583408065140247,0.06749039143323898,-0.07332568615674973,-0.03831127658486366,0.007027733605355024,0.0053953505121171474,-0.11570726335048676,0.010769427753984928,0.010123179294168949,0.04838833585381508,0.08305281400680542,-0.03720775619149208,-0.039212170988321304,0.045128170400857925,0.055156294256448746,0.03933447226881981,0.08111968636512756,0.03528410196304321,0.06325279176235199,0.043115999549627304,0.02824348397552967,-3.994432292507845e-33,-0.051104553043842316,-0.008351422846317291,-0.04430735856294632,0.08234495669603348,0.02544385939836502,0.06155393272638321,-0.09627515077590942,0.08273719251155853,-0.041276343166828156,-0.03557877987623215,-0.06914844363927841,-0.027379287406802177,0.005518058314919472,-0.1006646528840065,-0.02496187575161457,0.0948089212179184,-0.03153454139828682,0.05050446838140488,-0.040715523064136505,0.002588663948699832,-0.0999181717634201,0.02397012896835804,0.04659193381667137,-0.051186125725507736,0.021403441205620766,-0.02654249407351017,0.1434864103794098,-0.012663297355175018,-0.0426514558494091,0.009913015179336071,0.0641309916973114,-0.0076098316349089146,-0.02600698359310627,0.0750683918595314,0.0028855742421001196,0.04044884070754051,0.11805606633424759,0.05058569461107254,0.05525681748986244,0.010792572051286697,-0.04752597585320473,0.03298090025782585,0.04333089292049408,-0.02670828253030777,-0.026839729398489,0.0051026614382863045,-0.04571762681007385,-0.009859553538262844,-0.06563513725996017,-0.018008844926953316,0.07166481763124466,0.010124268010258675,0.021148771047592163,-0.034250929951667786,0.04069102555513382,-0.052768535912036896,0.010860776528716087,-0.06175347417593002,-0.04250193014740944,0.006511754356324673,0.019315052777528763,0.03586030751466751,-0.03330131992697716,0.06469294428825378,0.03820317983627319,-0.03693833947181702,-0.10805439203977585,0.07927974313497543,-0.01821465976536274,-0.03348473086953163,0.02171185426414013,-0.09062295407056808,-0.06698253750801086,0.00016793540271464735,0.02558083087205887,0.017787739634513855,-0.04312345013022423,-0.026481343433260918,0.06002851203083992,-0.02229960635304451,-0.1061362773180008,-0.0953269675374031,-0.015325583517551422,0.016526907682418823,-0.023335428908467293,0.008165301755070686,0.010921291075646877,-0.01507124025374651,0.031562648713588715,0.03639984130859375,0.017619306221604347,0.013756467029452324,-0.009051267988979816,-0.06910233199596405,0.0365830659866333,-2.5773490008873523e-8,-0.02222701907157898,-0.11208983510732651,-0.03768656775355339,-0.0033536346163600683,0.08138865977525711,-0.09009937942028046,-0.10937845706939697,0.0353325754404068,0.08814658969640732,0.038054537028074265,-0.04323679581284523,-0.015422584488987923,0.019602103158831596,0.003887447528541088,0.06112661212682724,0.013615995645523071,0.08324018120765686,0.08624870330095291,-0.01516258716583252,-0.02095017395913601,0.052975356578826904,-0.021717246621847153,-0.07720163464546204,-0.02658110111951828,0.017161613330245018,-0.020386887714266777,0.013526391237974167,-0.03780115023255348,-0.0494471937417984,-0.03258400782942772,0.03593369573354721,0.09086080640554428,-0.06504072993993759,-0.01080271601676941,-0.016477087512612343,0.05990707874298096,0.08977598696947098,0.003707422176375985,-0.00045056306407786906,0.014353352598845959,0.08922845870256424,-0.04901192709803581,0.0847548171877861,-0.05389365926384926,0.012613637372851372,0.03899119421839714,0.021243784576654434,0.02444944530725479,0.008538980036973953,-0.052718453109264374,-0.06656242161989212,0.04405735060572624,0.04895000532269478,0.07548338919878006,-0.03096616081893444,-0.044176459312438965,0.05974307656288147,-0.043599724769592285,-0.009672625921666622,-0.004431630950421095,0.12110479921102524,0.039551109075546265,0.04723922163248062,-0.004166432656347752]},{"text":"I, pete unguentum, puer, et coronas Et cadum Marsi memorem duelli, Spartacum si qua potuit vagantem Fallere testa. 20 Dic et argutae properet Neaerae Murreum nodo cohibere crinem; Si per invisum mora ianitorem Fiet, abito.","book":"Homage to Catalonia","chapter":20,"embedding":[0.009124059230089188,0.028708970174193382,0.011087465099990368,-0.02521359547972679,-0.08179432153701782,0.0019182449905201793,0.06059549003839493,0.08695671707391739,0.003081707749515772,0.05750459060072899,0.08315049111843109,-0.13086649775505066,-0.00581951392814517,-0.0036506308242678642,-0.12332127243280411,-0.08336114883422852,-0.020252825692296028,0.11223762482404709,0.014455843716859818,0.028350673615932465,0.046458594501018524,0.040742866694927216,0.006437312811613083,0.058375731110572815,-0.04739963635802269,0.033229246735572815,-0.07176895439624786,-0.007410907186567783,0.02009643241763115,-0.04137413948774338,-0.007164879702031612,0.12090998888015747,0.036756325513124466,0.019999291747808456,0.06792746484279633,0.0021486030891537666,-0.028493409976363182,-0.03450445830821991,0.07525718957185745,0.0755542516708374,-0.05286390706896782,-0.006740313023328781,-0.031792428344488144,-0.0730300098657608,-0.036324042826890945,0.05660484358668327,-0.010215033777058125,0.0682627335190773,0.002868304494768381,0.025788111612200737,-0.04761485755443573,0.002734854118898511,-0.01965961419045925,0.015054319053888321,-0.06245886906981468,-0.008737733587622643,0.06193239986896515,-0.03368620574474335,0.011135057546198368,-0.03391517698764801,0.020145077258348465,-0.003166496055200696,-0.05899469554424286,-0.00832814909517765,-0.04248687997460365,0.04213564470410347,-0.007602821569889784,0.04125601053237915,-0.04741670563817024,0.03171560540795326,0.1321011781692505,-0.0050702462904155254,-0.016689229756593704,0.06969746947288513,-0.09039657562971115,0.09027774631977081,-0.04605776444077492,-0.059929341077804565,0.031824301928281784,-0.06381796300411224,0.0023558437824249268,0.06861525028944016,0.024726681411266327,-0.08358228206634521,0.024488307535648346,0.05588071793317795,-0.001088050426915288,-0.033774323761463165,-0.016658363863825798,-0.05334080755710602,0.01638973504304886,0.04174692928791046,-0.04749187454581261,-0.05360230430960655,0.04303007945418358,0.029251983389258385,0.019034894183278084,-0.01640203408896923,0.0050214724615216255,-0.017284277826547623,0.02934066765010357,0.0033802844118326902,-0.08408842980861664,0.002879603998735547,-0.09554900974035263,-0.04340427368879318,-0.00877647940069437,-0.12494933605194092,0.07024029642343521,0.04231809824705124,-0.08003482967615128,-0.03339080885052681,-0.045762158930301666,-0.061745382845401764,-0.004879466723650694,0.03371528163552284,0.008095846511423588,-0.04157451167702675,-0.09410721063613892,-0.024437742307782173,-0.02448263205587864,-0.07709567248821259,-0.029078101739287376,-0.04372238367795944,0.04411981627345085,-0.06754901260137558,0.03621919825673103,2.0740933665951048e-32,-0.011298642493784428,-0.09076577425003052,0.029246123507618904,0.025725973770022392,0.02276907116174698,-0.036351803690195084,-0.10250665992498398,-0.06055399030447006,0.017506446689367294,-0.09785779565572739,-0.08081350475549698,-0.031240833923220634,-0.038565799593925476,0.014454156160354614,-0.0013070530258119106,0.07594707608222961,0.06376331299543381,-0.1061752438545227,0.02134261466562748,-0.004360958933830261,-0.05374004691839218,0.01589272916316986,0.04061342030763626,-0.02093616873025894,-0.02971152402460575,-0.0029912241734564304,0.023875359445810318,-0.05655265226960182,-0.06312507390975952,0.03530115261673927,0.058956533670425415,-0.031430259346961975,-0.024059636518359184,-0.02071586810052395,-0.009026954881846905,0.02046005055308342,-0.0019585969857871532,0.04657115414738655,-0.11177579313516617,0.002854494843631983,0.006689893081784248,0.029845833778381348,0.05639388784766197,0.015989534556865692,0.06922753900289536,-0.05684250593185425,-0.027608297765254974,-0.0047343759797513485,0.12709327042102814,0.019110869616270065,0.0022352184168994427,0.032943230122327805,0.0006455782568082213,-0.039212893694639206,0.02892305515706539,0.027780339121818542,-0.053544074296951294,0.03481924533843994,-0.026953663676977158,0.027746165171265602,0.03276411071419716,-0.005069156177341938,-0.011123006232082844,0.031460706144571304,-0.06366823613643646,-0.007197897415608168,-0.11829926818609238,0.010901648551225662,0.07425471395254135,0.009092853404581547,-0.08011190593242645,-0.07951264083385468,-0.051995065063238144,0.05677406117320061,-0.03757626190781593,0.020980408415198326,0.029024938121438026,0.01829124242067337,-0.06285422295331955,-0.05872594565153122,0.026037856936454773,0.0017276067519560456,0.0035653093364089727,0.003314574249088764,0.02892010472714901,-0.003986451309174299,0.015020111575722694,0.040853727608919144,0.0629500225186348,0.01182057149708271,0.09106524288654327,0.03416810184717178,0.01895245350897312,0.028823373839259148,0.005093174055218697,-1.9373774961227187e-32,0.026506103575229645,-0.01014880184084177,-0.0828661322593689,0.10932347923517227,-0.021795719861984253,0.034190475940704346,-0.10967443883419037,0.002749205334112048,-0.022730903699994087,-0.0515621080994606,-0.07250013947486877,-0.008740697987377644,-0.0033689590636640787,-0.037452153861522675,0.033163972198963165,0.04657716676592827,0.08418404310941696,0.04385438933968544,-0.03689558804035187,-0.02256290800869465,0.009572993963956833,-0.02680683135986328,0.037292081862688065,-0.13814042508602142,-0.04107049107551575,0.033193014562129974,-0.021965917199850082,-0.03655548021197319,-0.03868015110492706,0.003867192892357707,0.051111191511154175,0.019267138093709946,-0.012032266706228256,0.07040635496377945,-0.014074921607971191,-0.06356853991746902,0.14248758554458618,-0.022347239777445793,-0.036816470324993134,0.04297526180744171,-0.008683208376169205,0.11122170835733414,0.05304140970110893,0.06699689477682114,0.034548185765743256,-0.017472457140684128,-0.020624669268727303,-0.03923224285244942,-0.07139906287193298,-0.014319583773612976,0.05598077178001404,-0.04505090042948723,-0.002220703288912773,-0.02803076058626175,0.10268720984458923,-0.03032129444181919,-0.05582936480641365,-0.015843821689486504,-0.06140808388590813,0.04459875449538231,0.032436303794384,0.07161137461662292,-0.06085821986198425,-0.006223669275641441,0.10152897238731384,0.02325734868645668,-0.06946456432342529,0.09118238091468811,-0.03948947414755821,0.049095164984464645,0.051492489874362946,-0.12542624771595,-0.10333724319934845,-0.009603598155081272,-0.011943002231419086,-0.012700062245130539,-0.0340815968811512,0.08020191639661789,-0.011219591833651066,0.005522975232452154,-0.09305316209793091,-0.07083841413259506,-0.07217645645141602,0.049302391707897186,0.01434248685836792,-0.018914643675088882,-0.0012474290560930967,-0.08263803273439407,0.01183364074677229,0.018592698499560356,0.010955686680972576,-0.014951766468584538,0.04899899661540985,-0.08281300216913223,0.03241024911403656,-6.687617570833027e-8,0.037269171327352524,-0.10524478554725647,-0.03745356202125549,0.0810680165886879,0.03960128873586655,-0.09996974468231201,-0.0004003249341621995,0.02021295391023159,-0.0015553152188658714,0.03135921061038971,-0.019786236807703972,-0.02436397224664688,0.0014399620704352856,0.022927159443497658,0.015671228989958763,0.05071807652711868,0.03726774454116821,0.0588003508746624,-0.055638715624809265,0.01876743510365486,0.030947577208280563,-0.02029842510819435,-0.030422940850257874,0.013119050301611423,-0.07605944573879242,0.024148717522621155,0.07219582051038742,-0.010726128704845905,-0.031998760998249054,0.02935473434627056,0.005165948998183012,0.028752589598298073,0.005444168113172054,-0.1142178401350975,-0.010328448377549648,0.08742254972457886,0.015003851614892483,0.054301146417856216,-0.0006316494545899332,-0.057135630398988724,-0.00203733635134995,-0.03481461480259895,0.04921145737171173,-0.04645590856671333,0.0664885938167572,-0.013830105774104595,0.0033849531318992376,0.010023888200521469,0.03957569599151611,-0.03765081986784935,-0.055629875510931015,0.03218652307987213,0.12197943776845932,0.03935634344816208,-0.07958816736936569,0.004134325310587883,0.07338591665029526,-0.043629296123981476,0.03300600126385689,-0.04901277273893356,0.0756850391626358,0.017392000183463097,-0.021837405860424042,0.01717195101082325]},{"text":"Uxor pauperis Ibyci, Tandem nequitiae fige modum tuae Famosisque laboribus: Maturo propior desine funeri Inter ludere virgines, 5 Et stellis nebulam spargere candidis.","book":"Homage to Catalonia","chapter":20,"embedding":[0.0030583355110138655,0.018604233860969543,0.011758734472095966,-0.008004245348274708,-0.10148067772388458,-0.007223922293633223,0.009601705707609653,0.02174649015069008,0.03967835009098053,0.0468527190387249,0.07380527257919312,-0.12765304744243622,-0.0381951630115509,0.012305539101362228,-0.05407949537038803,-0.10510440170764923,-0.042633675038814545,0.06173989549279213,-0.05206415429711342,0.025352049618959427,0.09369403123855591,-0.04095587134361267,-0.04377637058496475,-0.018811432644724846,0.016598938032984734,-0.07023346424102783,-0.059216685593128204,-0.013056186959147453,0.020503303036093712,-0.15284082293510437,0.008381125517189503,0.08748243004083633,0.02062241919338703,-0.05469346046447754,0.03713124990463257,0.01685577630996704,0.012933267280459404,-0.04438008740544319,0.12963852286338806,0.038824453949928284,-0.05072226747870445,-0.06927371770143509,-0.011743799783289433,-0.042092327028512955,-0.0777486264705658,0.012377372942864895,0.011914646252989769,0.05450362712144852,0.05304570496082306,-0.015025023370981216,-0.050149284303188324,-0.06959293782711029,0.0016744885360822082,0.06412920355796814,0.05375804379582405,0.005201241932809353,0.03973246365785599,-0.1453099101781845,0.05726131051778793,-0.08653721958398819,0.02151317335665226,0.058663707226514816,-0.0004188668681308627,-0.0006235053297132254,-0.07009396702051163,-0.047497816383838654,-0.014527631923556328,-0.02439763769507408,-0.03465775027871132,0.012579582631587982,0.11443684250116348,-0.060180749744176865,-0.07642742991447449,0.09299573302268982,-0.02967066317796707,0.052286360412836075,-0.012290400452911854,-0.06221456080675125,0.019821489229798317,-0.07803589105606079,-0.008689364418387413,-0.00576299661770463,0.03794241324067116,0.0097725261002779,-0.030504301190376282,-0.0352373830974102,0.003916872665286064,-0.022496487945318222,0.043759819120168686,-0.03788043186068535,0.0019979679491370916,0.0032420826610177755,-0.010644875466823578,0.03880949318408966,-0.02901316247880459,-0.007576093077659607,0.0462946891784668,0.027182303369045258,-0.049602024257183075,0.028306767344474792,0.013481135480105877,-0.05855850875377655,0.030521078035235405,0.06568017601966858,-0.08532541990280151,-0.0944514125585556,-0.013469318859279156,-0.0632866770029068,0.036608729511499405,0.015284781344234943,-0.09555284678936005,-0.03038029372692108,-0.022019872441887856,-0.019497474655508995,-0.03399152308702469,-0.002718705916777253,0.04118364304304123,-0.05278468877077103,-0.038011934608221054,-0.07736917585134506,0.05449937656521797,0.03471300005912781,-0.014263014309108257,0.003717919811606407,0.06112008914351463,-0.06861450523138046,0.029104871675372124,1.4011548829704052e-32,-0.005946256220340729,-0.06214139237999916,-0.00876203365623951,0.086288683116436,0.09406045824289322,-0.04626677185297012,-0.12627066671848297,-0.054245900362730026,0.03262334316968918,-0.09152986109256744,-0.15544036030769348,0.025717057287693024,-0.07502135634422302,0.06330656260251999,-0.012413750402629375,0.045500967651605606,0.11502594500780106,-0.08881223946809769,0.01815750077366829,-0.007539877202361822,-0.04967200756072998,0.0733446255326271,0.024460406973958015,0.015769654884934425,0.051143769174814224,0.026597438380122185,0.014653101563453674,-0.060850515961647034,0.017681008204817772,0.04682858660817146,0.06868749111890793,-0.0696522518992424,-0.01666703261435032,-0.0004942694213241339,-0.01669885404407978,0.08261338621377945,0.0246452484279871,-0.020676804706454277,-0.09390116482973099,0.04472433030605316,-0.002030904171988368,-0.008635531179606915,0.021537041291594505,-0.029793821275234222,0.06036138907074928,-0.016677167266607285,0.031039772555232048,-0.005041797645390034,0.04505796730518341,0.049579232931137085,-0.0005954000516794622,0.04257039725780487,0.007161988876760006,0.010362544097006321,0.010874935425817966,-0.013612315990030766,-0.10243898630142212,0.0032379701733589172,-0.03521130606532097,0.028596162796020508,0.08554331213235855,-0.016758708283305168,0.011969342827796936,0.06392909586429596,0.020738009363412857,0.04323742538690567,-0.028513073921203613,-0.006373753771185875,0.020740166306495667,0.02387159690260887,-0.14618974924087524,-0.009281444363296032,0.03160860016942024,-0.006535443011671305,-0.0056568593718111515,-0.01936239004135132,0.04019710421562195,-0.052697546780109406,-0.05284542962908745,-0.016392521560192108,-0.041973210871219635,-0.06093928590416908,0.02109011821448803,0.023731548339128494,0.016691872850060463,-0.0036584637127816677,0.04424348846077919,0.08198150247335434,0.10523387789726257,0.014368833042681217,-0.014315908774733543,0.011627333238720894,-0.08140557259321213,0.005277586169540882,0.04115203768014908,-1.3679135190338832e-32,0.01356351189315319,-0.062319643795490265,-0.003964019939303398,0.07871050387620926,-0.017504969611763954,0.058694370090961456,-0.026869555935263634,0.024205585941672325,-0.035745859146118164,-0.0492723248898983,-0.08377450704574585,-0.05378154292702675,0.052513521164655685,-0.07626130431890488,0.012878022156655788,0.05401597172021866,0.025861946865916252,0.030546167865395546,-0.0052734920755028725,-0.0020125878509134054,-0.04643307253718376,0.07022899389266968,-0.005626091733574867,-0.1398499310016632,0.020415686070919037,0.0006383401341736317,-0.0054939743131399155,0.03535250201821327,-0.12529660761356354,-0.003406259696930647,0.058591581881046295,-0.03477193042635918,0.005389293190091848,-0.03744357451796532,-0.005605823826044798,0.05384695157408714,0.06018099933862686,0.003665042808279395,-0.017604585736989975,-0.014451069757342339,-0.06820138543844223,-0.009860150516033173,0.04039100185036659,0.0454842746257782,0.07083208858966827,0.006061903666704893,-0.07851649075746536,-0.0076726283878088,0.03306975215673447,0.0026351739652454853,0.11073239147663116,-0.019900323823094368,-0.032135672867298126,-0.013183247298002243,0.061293356120586395,-0.07813181728124619,0.023252492770552635,0.013430559076368809,0.023032324388623238,0.016915161162614822,0.037200927734375,0.010916859842836857,0.01659923791885376,-0.012255838140845299,0.08642799407243729,-0.0018674888415262103,-0.0629965290427208,0.07663820683956146,0.007017381954938173,0.03428223729133606,0.0932692363858223,-0.024999182671308517,-0.058452505618333817,0.023288918659090996,0.08872977644205093,0.07200466841459274,-0.0834195539355278,0.004628432914614677,0.018056413158774376,0.026958579197525978,-0.04498764127492905,-0.06705833971500397,0.03041299432516098,0.046368636190891266,-0.06070263683795929,0.0056152259930968285,0.05580931156873703,0.05559784546494484,0.014650687575340271,-0.03521140664815903,0.0020285514183342457,-0.03651617094874382,0.034723762422800064,-0.025326643139123917,0.08875494450330734,-4.9647177036149515e-8,0.05679682269692421,-0.001966677373275161,-0.06941349059343338,-0.054279740899801254,0.06539258360862732,-0.06095907464623451,-0.019440243020653725,0.0277987252920866,0.03356476500630379,0.06049121916294098,-0.053483765572309494,0.03332843258976936,0.05735671892762184,0.0028768470510840416,0.07505327463150024,0.02700740657746792,0.05138319358229637,0.06588547676801682,-0.04871696978807449,-0.02978302724659443,0.060637325048446655,0.001823596772737801,-0.048054229468107224,-0.04039487987756729,-0.07480733096599579,-0.011705945245921612,0.05667809396982193,-0.02236226201057434,-0.026615124195814133,-0.032194994390010834,0.04161982983350754,0.033138856291770935,-0.0024637486785650253,-0.06980027258396149,-0.013098706491291523,0.0939754918217659,-0.07385414093732834,-0.005779658909887075,0.02033475786447525,0.037715308368206024,0.032739315181970596,-0.11001751571893692,0.03460679203271866,-0.05230386555194855,0.01998218335211277,-0.017298435792326927,-0.036896225064992905,-0.017357345670461655,-0.019298572093248367,-0.03755870833992958,-0.023123228922486305,0.025225507095456123,0.10106667131185532,-0.0221873689442873,-0.07725633680820465,-0.08183161169290543,0.022181477397680283,0.020827196538448334,-0.006480606272816658,-0.03358076885342598,0.10090743005275726,0.0227200947701931,-0.006800634320825338,-0.02370133437216282]},{"text":"Inclusam Danaen turris aenea Robustaeque fores et vigilum canum Tristes excubiae munierant satis Nocturnis ab adulteris, Si non Acrisium virginis abditae 5 Custodem pavidum Iuppiter et Venus Risissent: fore enim tutum iter et patens Converso in pretium deo.","book":"Homage to Catalonia","chapter":20,"embedding":[0.012952974066138268,0.036673758178949356,-0.061419084668159485,0.022155635058879852,-0.01637405715882778,-0.007891659624874592,0.005899956449866295,-0.028617965057492256,-0.004346767906099558,0.04380996152758598,0.06618878245353699,-0.10418037325143814,0.017924612388014793,-0.05094536393880844,-0.11724711954593658,-0.079849474132061,0.00656235171481967,0.057736217975616455,-0.002956158947199583,0.04546549543738365,-0.003973586019128561,0.045434001833200455,-0.0145261874422431,0.03427750617265701,-0.08393323421478271,0.0012641992652788758,-0.1310710310935974,0.018221396952867508,0.06090298667550087,-0.08903486281633377,-0.019232608377933502,0.020911449566483498,0.033214740455150604,0.012286512181162834,-0.006084896624088287,0.00998871959745884,-0.06974291056394577,-0.060028064996004105,0.08658523112535477,0.04142952337861061,-0.016007358208298683,-0.07142823934555054,-0.055191922932863235,-0.015230899676680565,-0.06699137389659882,-0.01726507395505905,-0.07179531455039978,0.06373696029186249,0.07911671698093414,-0.07131980359554291,-0.015696492046117783,-0.06434156000614166,-0.057262130081653595,-0.018490370362997055,-0.0743318721652031,-0.033762138336896896,-0.035849060863256454,-0.08409739285707474,-0.01623661071062088,-0.0749683827161789,0.08275298774242401,0.04314793646335602,0.005158361047506332,0.06923969835042953,-0.04181983694434166,0.054192136973142624,-0.053476523607969284,-0.0025612744502723217,-0.010464872233569622,0.004861571826040745,0.06556053459644318,0.011919275857508183,-0.07508186995983124,0.08489371091127396,-0.06920196861028671,0.0931185856461525,0.03130974993109703,-0.01981355994939804,0.008217811584472656,-0.008897608146071434,-0.04247313737869263,0.0625799149274826,-0.04825669527053833,-0.018066123127937317,-0.01820586435496807,-0.020462272688746452,-0.019871052354574203,-0.0011663626646623015,0.0003184721863362938,-0.010093698278069496,0.02546047791838646,0.010537516325712204,0.0007301399600692093,0.011668161489069462,0.01749332994222641,0.08213339000940323,0.029704958200454712,-0.03542928770184517,-0.030263161286711693,-0.06776037812232971,0.00922367163002491,0.0005027332226745784,-0.010862139984965324,0.06723272800445557,-0.14738987386226654,-0.062225185334682465,-0.06257887929677963,-0.10859544575214386,-0.002404671162366867,-0.0007962873205542564,-0.11938496679067612,-0.05163314566016197,0.019099697470664978,-0.06141434237360954,-0.025341259315609932,0.010532623156905174,-0.0012266275007277727,-0.0741797462105751,-0.031573764979839325,-0.06740530580282211,-0.012438399717211723,-0.05793168768286705,0.002902108244597912,-0.011306047439575195,0.06767144799232483,-0.021980976685881615,0.036292266100645065,1.6993620775370773e-32,-0.00958746112883091,-0.07791519910097122,0.019563376903533936,0.03107094205915928,0.05644824355840683,0.011328563094139099,-0.06677617132663727,-0.05045129731297493,-0.06576691567897797,-0.046585191041231155,-0.07397796213626862,-0.03473839536309242,0.004589666612446308,-0.05485229939222336,0.041963789612054825,0.06632189452648163,0.1213056668639183,-0.023629313334822655,-0.004427546635270119,-0.005936494097113609,-0.08102093636989594,0.037116456776857376,0.023833684623241425,0.02723712846636772,-0.018112216144800186,0.07127253711223602,0.002113078022375703,-0.1334724873304367,-0.04889322817325592,0.007863244041800499,0.111202672123909,-0.07332403212785721,-0.06213264539837837,0.034833844751119614,0.002381277736276388,0.029941044747829437,0.035682108253240585,-0.0028714733198285103,-0.04929345101118088,0.01752847619354725,0.011838871985673904,0.05346428602933884,0.11505380272865295,0.03767404332756996,0.027637381106615067,-0.000057219727750634775,-0.011491579003632069,0.032384198158979416,0.06404483318328857,0.018198231235146523,0.018153229728341103,0.07066567987203598,-0.027476979419589043,-0.07471884042024612,0.012139850296080112,0.06997514516115189,0.012360436841845512,0.11867236346006393,-0.08449356257915497,-0.026192711666226387,0.013272829353809357,-0.006815467029809952,0.010269563645124435,0.0016516582109034061,-0.03440861776471138,-0.002723757643252611,-0.09731397032737732,0.012694692239165306,0.05132612586021423,0.03411269560456276,-0.12852628529071808,-0.01358040515333414,-0.02509882301092148,0.015246013179421425,0.03769175335764885,0.03843539580702782,-0.011768564581871033,-0.09821642935276031,0.007671918720006943,-0.030415618792176247,-0.050915442407131195,0.035750612616539,0.04261654242873192,0.028499459847807884,0.03361443430185318,-0.032219626009464264,-0.07956485450267792,0.09810984879732132,0.09519816935062408,0.013964387588202953,0.07727864384651184,0.04974079132080078,-0.012555841356515884,-0.024650217965245247,-0.023128695785999298,-1.7289472132321603e-32,0.022694919258356094,-0.017758984118700027,-0.05672198534011841,0.03955285996198654,0.017993753775954247,0.03235068544745445,-0.1400458812713623,0.09794721007347107,-0.01116334181278944,-0.06703612953424454,-0.06131042167544365,0.008497736416757107,0.049443431198596954,-0.09719419479370117,0.059596989303827286,0.052978407591581345,0.040209684520959854,0.03398721292614937,-0.07429354637861252,-0.03178682550787926,-0.060111694037914276,-0.03523973375558853,0.02454582042992115,-0.18361306190490723,-0.024514973163604736,0.04469144344329834,-0.023102950304746628,-0.018432771787047386,-0.058198776096105576,0.0055581191554665565,0.06478732824325562,0.03083544410765171,-0.005341832526028156,0.07640773057937622,-0.02898593433201313,-0.03163827955722809,0.07814398407936096,-0.06746459752321243,-0.0006787152378819883,0.014367626048624516,0.00978896114975214,0.057834405452013016,0.07408402860164642,-0.003949613310396671,0.04026265814900398,-0.01383267529308796,-0.01935141161084175,0.012110087089240551,-0.03508161008358002,0.04542602598667145,0.050934575498104095,-0.0330105759203434,0.025650382041931152,0.04549924284219742,0.11872507631778717,-0.02171824313700199,-0.03071732632815838,-0.008100869134068489,-0.004258051514625549,0.0034752856008708477,0.09704060107469559,0.02327333204448223,-0.0902012288570404,0.013758416287600994,0.01737608015537262,0.026190999895334244,-0.09965785592794418,0.08881720155477524,-0.05645504593849182,0.02015993557870388,0.04305655509233475,-0.08039028197526932,-0.1342315971851349,-0.03062087669968605,0.060913074761629105,0.013861066661775112,-0.03473547846078873,-0.03319559991359711,0.029969369992613792,0.06526824086904526,-0.11295107752084732,0.010458420030772686,-0.013449744321405888,0.0073605491779744625,0.039810989052057266,-0.016948502510786057,0.025078723207116127,-0.00353739270940423,-0.031601231545209885,-0.006846908014267683,-0.03281153738498688,-0.005735476966947317,0.006061443593353033,-0.050637535750865936,0.05874137207865715,-5.468899644256453e-8,0.002926610177382827,-0.02118232473731041,-0.02261023223400116,-0.00013144526747055352,0.05432546138763428,-0.037167008966207504,0.016585029661655426,0.012932371348142624,0.006115414202213287,0.04079274833202362,-0.030585912987589836,-0.07123611867427826,0.07005351781845093,-0.0006832573562860489,0.07204873114824295,0.0036707755643874407,0.08445046097040176,0.005694865249097347,-0.04933824762701988,-0.03299384564161301,0.041857749223709106,-0.026122039183974266,-0.06554364413022995,-0.008346127346158028,-0.04515726491808891,-0.011320849880576134,0.06571780890226364,-0.04952874407172203,0.012755763716995716,0.05167486146092415,-0.037538304924964905,0.0027300238143652678,0.05140937864780426,-0.047277387231588364,0.006939816754311323,0.08303810656070709,0.016243787482380867,0.03222307935357094,0.05844210088253021,0.009356644935905933,0.0019215068314224482,-0.009507223032414913,0.0037496606819331646,-0.01857050694525242,0.01595955714583397,0.037544362246990204,0.013948341831564903,0.026870016008615494,-0.02027767151594162,-0.03658662736415863,-0.01865614950656891,-0.042722634971141815,0.11607298254966736,0.0030053332448005676,-0.05064394325017929,-0.04484275355935097,0.0777587816119194,0.020333293825387955,0.007818948477506638,0.032772745937108994,0.0071025751531124115,0.008094839751720428,0.024108072742819786,0.02518904022872448]},{"text":"Crescentem sequitur cura pecuniam Maiorumque fames.","book":"Homage to Catalonia","chapter":20,"embedding":[0.017991065979003906,0.057838551700115204,-0.0598505474627018,-0.025943635031580925,-0.18542411923408508,0.024470563977956772,0.02007334679365158,0.06966983526945114,0.026467284187674522,0.024417508393526077,0.00632157688960433,-0.11033953726291656,0.03088921308517456,-0.10453251004219055,-0.02458028681576252,-0.04171137884259224,-0.02998877875506878,0.09692371636629105,0.024934861809015274,0.008713138289749622,-0.037018753588199615,-0.09912955015897751,-0.029189256951212883,0.058603812009096146,-0.07864837348461151,0.06989425420761108,-0.006378138903528452,-0.013515481725335121,0.03836888447403908,-0.09088654816150665,0.03152868151664734,0.13167211413383484,0.01571000926196575,-0.011237750761210918,0.03236543387174606,0.02317524142563343,-0.02231348678469658,-0.0370698906481266,0.047361165285110474,-0.02414453774690628,0.02431425452232361,-0.02081998437643051,-0.04986032843589783,-0.03775811195373535,0.05064576864242554,-0.08021017163991928,0.02707902528345585,0.06202565133571625,-0.055166881531476974,-0.001682873466052115,-0.005789467133581638,-0.009627186693251133,-0.029113659635186195,0.00625634053722024,-0.013082144781947136,-0.106317438185215,0.05409466102719307,-0.007813505828380585,0.029605098068714142,-0.046331360936164856,0.01599135808646679,0.021926909685134888,-0.09286270290613174,0.002553574973717332,-0.06577051430940628,-0.05151762068271637,-0.03434716537594795,0.032224223017692566,-0.09003870189189911,0.07815992087125778,0.0786224827170372,-0.06463120132684708,-0.037965767085552216,0.0669555515050888,-0.011039311066269875,-0.003940794616937637,-0.04176633059978485,-0.020343726500868797,-0.029863882809877396,-0.09000589698553085,0.0804375559091568,0.04240040481090546,-0.05049978196620941,0.003930830862373114,0.008886692114174366,-0.001879024668596685,-0.005929415579885244,-0.006101108156144619,0.05252572521567345,-0.07507377117872238,0.05462225154042244,0.018398184329271317,-0.06251900643110275,-0.030715713277459145,0.02157592587172985,0.02344636432826519,-0.05405547469854355,-0.08441448956727982,0.0808698982000351,0.01945345476269722,-0.013918344862759113,0.08155593276023865,-0.016518589109182358,0.06675034761428833,-0.07172482460737228,0.0008731863345019519,0.011273783631622791,0.011772479861974716,0.01872393861413002,0.05667022615671158,-0.0756903737783432,-0.04999487102031708,-0.08093035966157913,-0.033707037568092346,0.005544379353523254,0.0865573137998581,0.039004042744636536,-0.03151349350810051,0.03768661618232727,-0.11474907398223877,-0.0030155060812830925,-0.07674965262413025,-0.004061440005898476,-0.01854649931192398,0.05550714582204819,-0.005117034073919058,0.027371378615498543,2.7210626086162478e-33,-0.06991837173700333,-0.047095462679862976,0.023668667301535606,0.02115454711019993,0.06128924340009689,-0.018124325200915337,-0.021504519507288933,-0.024605579674243927,0.021822528913617134,-0.04747534170746803,-0.0571177713572979,-0.024805458262562752,-0.00483359582722187,0.02512596920132637,0.07731422036886215,0.06663409620523453,0.040423113852739334,-0.0717940554022789,0.007619729731231928,-0.05424722656607628,-0.052054326981306076,0.03676273301243782,0.04760156199336052,0.016459956765174866,0.04375399276614189,-0.0049282279796898365,-0.0075865453109145164,-0.023195667192339897,-0.018159598112106323,0.04461897164583206,0.09329181164503098,-0.015592413023114204,0.004788307938724756,-0.07869122922420502,0.054572638124227524,0.04963645711541176,-0.025614211335778236,-0.010578827001154423,0.02019825018942356,0.04938303306698799,0.02798205427825451,-0.02948921173810959,0.09114520996809006,-0.046467844396829605,-0.013872291892766953,0.07777326554059982,0.06710613518953323,0.01042646262794733,0.08353923261165619,0.025647208094596863,0.015992313623428345,0.036330696195364,-0.09916703402996063,-0.013031239621341228,0.014024504460394382,0.005844781640917063,-0.10043499618768692,0.008023669011890888,-0.03728945925831795,-0.0796453058719635,0.07394231855869293,-0.02080588974058628,-0.01550276204943657,0.030867040157318115,0.04395139589905739,-0.031489159911870956,0.02595609799027443,0.08195798844099045,0.08205495029687881,0.01444904413074255,-0.0804378092288971,-0.04378105700016022,-0.08611501753330231,-0.009661306627094746,-0.05540255457162857,0.0618070624768734,-0.03910611569881439,0.019146166741847992,-0.014477894641458988,0.04024503752589226,-0.05154209956526756,0.013563396409153938,-0.007820960134267807,-0.01739075966179371,0.06531297415494919,0.027046529576182365,0.02783353440463543,0.01690254546701908,0.04184791073203087,0.025942286476492882,-0.024147357791662216,0.018714705482125282,0.04680083692073822,0.04697748273611069,-0.06567100435495377,-3.929679818850815e-33,-0.03436380997300148,-0.04154880717396736,-0.014568774960935116,0.11938222497701645,0.042042482644319534,-0.013499516062438488,-0.11219822615385056,0.056117426604032516,-0.07594536989927292,0.03731066361069679,-0.055255088955163956,-0.03159106522798538,0.04043413698673248,-0.0697784423828125,-0.014452253468334675,0.05611112713813782,0.06470364332199097,0.035010989755392075,-0.10194745659828186,0.02185235731303692,-0.049449048936367035,-0.016903232783079147,0.015884527936577797,-0.07277366518974304,-0.036014314740896225,0.005918505135923624,0.04879249259829521,-0.007386510726064444,-0.02435138262808323,-0.006542690098285675,0.023445002734661102,0.020539352670311928,-0.008695991709828377,-0.00361744430847466,-0.00630806153640151,0.01552166510373354,0.11031705141067505,-0.003832609159871936,-0.017134664580225945,0.008998481556773186,0.019961034879088402,0.08856948465108871,0.005126706790179014,0.029802601784467697,0.02662489376962185,-0.04430665820837021,-0.012768457643687725,0.020362507551908493,-0.06514528393745422,0.008573244325816631,0.08746074140071869,-0.025084363296628,0.09439017623662949,0.01723122037947178,0.10911281406879425,0.025807330384850502,-0.017348701134324074,0.004457194358110428,-0.017822014167904854,-0.0028412530664354563,0.06594005972146988,0.048585668206214905,-0.016858242452144623,-0.01910877227783203,0.07993801683187485,0.030229277908802032,-0.04600038006901741,0.1033351719379425,-0.09864005446434021,0.04323854297399521,0.025265557691454887,-0.0677030086517334,-0.14213718473911285,-0.0256158709526062,-0.15614300966262817,0.01096617616713047,-0.03519415482878685,0.021702315658330917,0.035294223576784134,0.04074125736951828,-0.029624611139297485,-0.05283496528863907,-0.05911526829004288,-0.00024705423857085407,-0.03693689778447151,0.01940063200891018,-0.000797295302618295,-0.035086408257484436,0.050958871841430664,0.013630927540361881,0.033852044492959976,-0.03842557966709137,0.025744808837771416,-0.016540594398975372,0.018902337178587914,-2.4377571961053945e-8,-0.03109004907310009,-0.05818953737616539,-0.08796066790819168,0.05126278102397919,0.030832167714834213,-0.10472441464662552,-0.015444993041455746,-0.019137481227517128,-0.04538385197520256,0.03366042673587799,-0.010568013414740562,-0.07069739699363708,-0.012138080783188343,0.03899892047047615,-0.0021596939768642187,0.022762861102819443,0.0829257220029831,0.016164477914571762,-0.020604489371180534,-0.01829945482313633,0.04840920493006706,-0.014251131564378738,-0.010596342384815216,-0.07904770970344543,-0.03831463307142258,0.019454393535852432,0.003146206261590123,-0.07873819023370743,0.021057046949863434,-0.006719933822751045,0.012874861247837543,0.055177126079797745,0.03847084194421768,-0.05662868544459343,0.002186988480389118,0.006952160969376564,0.05597134679555893,-0.09665075689554214,-0.01699456200003624,0.030744247138500214,0.11635612696409225,0.043217334896326065,0.11658845096826553,-0.010725956410169601,0.07977242022752762,0.007895405404269695,0.08123157918453217,0.032401446253061295,-0.005758992861956358,0.008712558075785637,-0.08729471266269684,0.0353078730404377,0.0835137888789177,-0.01483221910893917,-0.06467245519161224,-0.04374915361404419,0.000758209906052798,0.05177363008260727,0.0012165025109425187,0.020705921575427055,0.11680542677640915,0.022110920399427414,0.018977493047714233,-0.015605689026415348]},{"text":"Nil cupientium Nudus castra peto et transfuga divitum Partis linquere gestio, Contemptae dominus splendidior rei, 25 Quam si quidquid arat impiger Apulus Occultare meis dicerer horreis, Magnas inter opes inops.","book":"Homage to Catalonia","chapter":20,"embedding":[-0.027331145480275154,0.060761936008930206,0.021569103002548218,0.01654350571334362,-0.09131117165088654,-0.07457704842090607,0.0832938551902771,0.05568496882915497,0.05017489567399025,0.0185699500143528,-0.017915036529302597,-0.10057491064071655,0.022339219227433205,-0.02954556606709957,-0.13264046609401703,-0.08847476541996002,0.04016442969441414,0.0714450255036354,0.029198724776506424,0.02098722569644451,0.0034789431374520063,-0.0021873717196285725,-0.03054756671190262,0.04478057846426964,-0.10954464972019196,0.03663921728730202,-0.08898268640041351,-0.029403990134596825,0.07626248896121979,-0.15806101262569427,0.0007794450502842665,0.09831299632787704,-0.0039017358794808388,-0.0358545146882534,-0.03797449916601181,0.03221171721816063,0.014822105877101421,-0.06187323480844498,0.06253552436828613,-0.013437251560389996,-0.030863121151924133,-0.02551286853849888,0.006932960357517004,-0.03609529882669449,-0.024441128596663475,0.041292544454336166,-0.08505629003047943,0.01358561310917139,0.032719507813453674,-0.05914346128702164,-0.06461863219738007,-0.03237892687320709,0.007292899768799543,0.027988094836473465,-0.05557592958211899,-0.04892951250076294,0.0077322195284068584,-0.07640481740236282,0.00947532244026661,-0.010902998968958855,-0.007603896781802177,0.0548483245074749,-0.00661719124764204,0.024161988869309425,-0.06164642795920372,0.022818323224782944,-0.03327310457825661,0.014986495487391949,-0.10098545253276825,0.0021454941015690565,0.11602973192930222,-0.04040371626615524,0.020891090855002403,-0.0001204139189212583,-0.03507116436958313,0.05289028212428093,0.026732634752988815,-0.041231315582990646,0.028152894228696823,-0.12570340931415558,-0.023654839023947716,0.11098632961511612,0.004866843111813068,0.010890533216297626,-0.008818916976451874,0.001619134214706719,0.02529405802488327,0.01194054912775755,0.029930083081126213,0.024475552141666412,0.010082791559398174,0.031094379723072052,-0.02980751357972622,0.017030086368322372,0.02479518949985504,0.06173184514045715,-0.018219808116555214,-0.012333898805081844,-0.003180762054398656,0.016668472439050674,0.08896449953317642,0.033151786774396896,-0.11643944680690765,0.01879945769906044,-0.16400158405303955,-0.04028904065489769,-0.04144744575023651,-0.07881322503089905,0.08285320550203323,0.035245396196842194,-0.0741247683763504,-0.09492151439189911,-0.021999849006533623,-0.11128842085599899,-0.04304031282663345,-0.0057531241327524185,0.03048626147210598,-0.040910977870225906,-0.01869102381169796,-0.12563082575798035,0.05408162623643875,-0.04514307156205177,-0.02641180343925953,-0.01919330656528473,0.0190234687179327,-0.029666723683476448,0.07719513773918152,2.2019161814931388e-32,-0.04180004075169563,-0.06578400731086731,-0.06673163175582886,0.03537094220519066,0.004831073340028524,-0.02396586537361145,-0.017612366005778313,-0.00976239051669836,-0.05450034141540527,-0.06594999879598618,-0.10052270442247391,-0.000621928193140775,-0.0563586987555027,-0.04175042733550072,-0.0024794877972453833,0.020762884989380836,0.09689053893089294,-0.014031581580638885,0.0017733873100951314,-0.02457178384065628,-0.07395600527524948,0.02686248905956745,-0.03752986714243889,0.06568567454814911,-0.0016069919802248478,0.04540397971868515,-0.06673140823841095,-0.10531602799892426,-0.036682505160570145,0.03411121293902397,0.15570111572742462,-0.010477869771420956,-0.020948031917214394,0.04240100085735321,-0.013281521387398243,0.005028335377573967,0.024813227355480194,-0.0039817835204303265,-0.05137282982468605,-0.004252548795193434,-0.009369093924760818,0.04499606415629387,0.01097218319773674,0.0535677969455719,0.020487487316131592,-0.005613591056317091,0.04838163033127785,0.03986157849431038,0.056703027337789536,-0.01689690537750721,-0.002633405616506934,0.011572319082915783,-0.007006593514233828,-0.051345597952604294,0.0012812900822609663,0.010900154709815979,-0.012595809996128082,0.0938786119222641,0.03927454724907875,-0.04591122269630432,-0.015040485188364983,0.0034192099701613188,0.01686147227883339,0.006864132825285196,0.01961231604218483,-0.01725194975733757,-0.0945214033126831,-0.02460036799311638,0.04644026234745979,0.05641550198197365,-0.06715486198663712,-0.018432678654789925,-0.025566570460796356,0.003399687586352229,0.04799267277121544,0.017716417089104652,0.03410440310835838,-0.04495929554104805,0.013491486199200153,0.014475464820861816,-0.08050879091024399,-0.008933473378419876,-0.02281482145190239,0.02902556210756302,0.082321897149086,0.02670534886419773,0.018518295139074326,0.049744248390197754,0.07307140529155731,0.03349265456199646,0.023494215682148933,-0.007295507006347179,-0.006006469018757343,-0.04808978736400604,-0.022056827321648598,-1.943788054564928e-32,-0.016530895605683327,-0.04100599139928818,-0.047770071774721146,0.056603770703077316,-0.036726973950862885,0.003447385737672448,-0.12759841978549957,0.024542754516005516,0.03822476416826248,0.006067327689379454,0.02572624385356903,0.019466502591967583,0.08232972025871277,-0.014840519987046719,-0.05078362300992012,-0.0063039883971214294,0.10234654694795609,0.05547536909580231,-0.04376063123345375,-0.015315852127969265,-0.026166534051299095,0.004705436993390322,-0.06491991877555847,-0.027550598606467247,0.016221458092331886,0.08643309772014618,0.023868141695857048,-0.03921831026673317,-0.038775235414505005,-0.06645037233829498,0.05280209705233574,0.020053908228874207,-0.004369095433503389,0.03586084768176079,-0.005687836091965437,-0.019099712371826172,0.14421936869621277,0.014589972794055939,-0.09105788916349411,-0.04937145113945007,-0.0723624899983406,0.07067133486270905,0.09965026378631592,0.04676336050033569,-0.0015542852925136685,-0.061832964420318604,-0.07917245477437973,0.00902744010090828,0.001371948979794979,0.10429484397172928,0.0732826516032219,-0.004051596857607365,0.059994686394929886,0.02806512452661991,0.046681053936481476,-0.05208142101764679,-0.04991051182150841,-0.010251324623823166,0.0036325384862720966,-0.014874723739922047,0.08434349298477173,0.023141002282500267,-0.02186080813407898,0.047676026821136475,0.05721885710954666,0.06641209125518799,-0.0931624323129654,0.11087113618850708,-0.0012476658448576927,-0.023142822086811066,0.06280206143856049,-0.02339845709502697,-0.014772742055356503,-0.0821303054690361,0.02703673392534256,0.017780428752303123,0.06274893879890442,0.014718524180352688,0.030142154544591904,0.05351783707737923,-0.0007352498359978199,-0.009917155839502811,-0.02527463436126709,-0.019885338842868805,0.008083704859018326,-0.019910059869289398,0.028940267860889435,0.008194783702492714,-0.020408356562256813,-0.022619301453232765,-0.028368167579174042,0.03214684873819351,0.0261482335627079,-0.10449589788913727,0.025132352486252785,-6.343777414485885e-8,-0.00016821935423649848,-0.08106465637683868,-0.06980234384536743,0.020391879603266716,0.04241057112812996,-0.04153430461883545,-0.02427772246301174,-0.034345921128988266,-0.05391354113817215,0.020032620057463646,0.018878819420933723,0.0035393189173191786,0.039752885699272156,-0.0415351502597332,0.08366593718528748,0.049261707812547684,0.07033286988735199,0.023869790136814117,-0.05365471914410591,-0.006801287177950144,0.043155621737241745,-0.019461024552583694,-0.00977842602878809,-0.03162869065999985,-0.03314599022269249,-0.03911880776286125,0.0679420456290245,-0.14392204582691193,0.04116959124803543,-0.03197257220745087,-0.023245936259627342,0.04800942912697792,0.030952924862504005,-0.043007057160139084,0.05984961614012718,0.13408251106739044,-0.020343685522675514,0.031564440578222275,0.009491784498095512,0.017525216564536095,0.013264072127640247,-0.0021866592578589916,0.04760316014289856,-0.02616468071937561,-0.031423408538103104,-0.030787697061896324,-0.044027313590049744,-0.010397753678262234,0.005984431132674217,-0.03883206099271774,-0.048838723450899124,0.01242528110742569,0.06717465817928314,0.04979775846004486,-0.04545099660754204,-0.020721349865198135,0.09335488826036453,-0.009801053442060947,-0.030559513717889786,0.021958863362669945,0.08176586776971817,0.05483227223157883,0.10771737992763519,0.03320514038205147]},{"text":"Quamquam nec Calabrae mella ferunt apes, Nec Laestrygonia Bacchus in amphora Languescit mihi, nec pinguia Gallicis 35 Crescunt vellera pascuis; Importuna tamen pauperies abest, Nec si plura velim tu dare deneges.","book":"Homage to Catalonia","chapter":20,"embedding":[0.023609865456819534,-0.010595399886369705,-0.004497349727898836,0.040130842477083206,-0.10510129481554031,0.03430115804076195,0.01601462997496128,-0.0003094308194704354,-0.02287512831389904,0.12531472742557526,0.06380737572908401,-0.17604827880859375,-0.017728891223669052,0.08500486612319946,0.03372730687260628,-0.010010535828769207,0.04354145750403404,0.04543229192495346,0.0026622717268764973,-0.02571379579603672,0.0508006289601326,0.005694725550711155,0.025667859241366386,0.022734975442290306,-0.06990210711956024,-0.04193848744034767,-0.1354876011610031,-0.045294858515262604,0.07887736707925797,-0.05898439511656761,-0.08215786516666412,0.034896232187747955,0.07473716884851456,-0.014391615986824036,0.03740599751472473,-0.05739429593086243,-0.0143749313428998,-0.04825012758374214,0.07181964814662933,0.015937790274620056,-0.04230700060725212,0.03587519749999046,-0.028648344799876213,-0.04659489169716835,-0.05373792722821236,-0.021447425708174706,-0.06645727902650833,0.048127200454473495,0.056393880397081375,-0.0029677466955035925,-0.055063098669052124,-0.041483137756586075,-0.09788964688777924,0.08342480659484863,-0.08165153861045837,-0.05761343985795975,-0.007746727205812931,-0.0793142169713974,0.030946748331189156,-0.05465622618794441,0.022857023403048515,0.04258553311228752,-0.014591017737984657,-0.015579848550260067,-0.02093774639070034,0.040083177387714386,-0.07310599088668823,-0.010282360948622227,-0.033501408994197845,0.050156645476818085,0.10267359763383865,-0.050120484083890915,-0.055052999407052994,0.07382810115814209,-0.08893319964408875,0.00250473665073514,0.015683041885495186,-0.01760447584092617,-0.03637765720486641,-0.07997934520244598,-0.10253384709358215,0.0106412498280406,-0.021337103098630905,0.024445395916700363,0.04523332417011261,0.01673266664147377,-0.04326975345611572,-0.004759249743074179,-0.01217421144247055,-0.030934469774365425,-0.023250780999660492,0.0671609491109848,-0.07458478957414627,-0.035427868366241455,0.009941909462213516,0.07562167942523956,-0.022076942026615143,0.0489010252058506,-0.032716505229473114,0.017028871923685074,-0.04175231605768204,-0.03797682374715805,0.007814825512468815,-0.031400151550769806,-0.002935093129053712,-0.0031799874268472195,-0.12939929962158203,-0.029441416263580322,0.043113771826028824,0.007023470010608435,-0.06061779335141182,-0.03687319904565811,0.042912181466817856,0.06335452198982239,0.030677221715450287,-0.012152718380093575,0.03637494891881943,-0.08180105686187744,-0.00617797439917922,0.04313739389181137,-0.02867654711008072,0.002199287060648203,0.022525880485773087,-0.047828178852796555,0.0607890821993351,-0.07326120883226395,-0.031758807599544525,1.9394515089679508e-32,0.1180894523859024,-0.08206373453140259,0.035575587302446365,-0.00782711710780859,0.09784569591283798,0.0019889099057763815,-0.013515246100723743,-0.0017242961330339313,0.010248539038002491,-0.06174953281879425,-0.08900640159845352,-0.04630453512072563,-0.026606766507029533,-0.03486844524741173,-0.008668899536132812,0.03322327509522438,0.053556062281131744,-0.05366981029510498,-0.008518536575138569,-0.03514943644404411,-0.03262526914477348,0.07233519852161407,0.029106250032782555,-0.01568237692117691,0.014878592453897,0.06407444924116135,-0.04609495773911476,-0.06435298919677734,-0.03292965516448021,0.0580986812710762,-0.016059959307312965,-0.05866314098238945,-0.061640117317438126,-0.06876793503761292,-0.03508280590176582,-0.02121199294924736,0.005319366697221994,-0.0794885978102684,-0.0877162367105484,0.02979285828769207,0.05147871747612953,0.02189735323190689,0.09030605852603912,0.02810184471309185,0.04064371436834335,0.06492919474840164,0.053015582263469696,0.03496265038847923,0.09056944400072098,0.06891130656003952,-0.06772183626890182,0.025193845853209496,-0.016781752929091454,-0.08032218366861343,-0.016199249774217606,0.03526132553815842,0.005216758232563734,0.002439945936203003,-0.059544287621974945,0.0224562119692564,0.07862833887338638,-0.034325066953897476,-0.02545204386115074,0.003137329127639532,0.029901040717959404,-0.10954047739505768,-0.06866603344678879,0.013283736072480679,0.027856631204485893,-0.049085553735494614,-0.07825972884893417,-0.06171929091215134,-0.03146142512559891,0.051911402493715286,0.057006094604730606,-0.0470518060028553,0.10828251391649246,-0.03235594555735588,-0.043368954211473465,-0.036179352551698685,0.026583822444081306,0.036448437720537186,-0.024211052805185318,0.04271817207336426,0.06461790204048157,0.019075486809015274,0.03362336382269859,0.01270817406475544,0.09482330083847046,-0.03498000651597977,0.0035388667602092028,-0.015613322146236897,-0.04763198271393776,-0.016186300665140152,-0.05638788267970085,-1.698477958848465e-32,-0.03364173322916031,-0.04262716695666313,-0.04343502223491669,0.0860140472650528,-0.030214812606573105,-0.00862746499478817,-0.08325547724962234,0.0454181469976902,0.03309085592627525,-0.01684347540140152,-0.0367615669965744,-0.07225637137889862,0.11386753618717194,0.008148116059601307,-0.01573757454752922,-0.005155986174941063,0.06737354397773743,-0.020748857408761978,-0.011581610888242722,-0.03524218127131462,-0.046097323298454285,0.029348354786634445,-0.00213623302988708,-0.06969192624092102,0.04948284476995468,0.0314241498708725,-0.05034574121236801,0.05527213215827942,-0.06840325146913528,0.018879137933254242,0.06549101322889328,-0.015886599197983742,-0.004966229200363159,-0.015542290173470974,-0.01196239423006773,-0.09500320255756378,0.0859270691871643,-0.0414341501891613,0.02857174351811409,-0.0029568872414529324,0.06476874649524689,0.03375285491347313,0.017119230702519417,0.060513801872730255,0.05241931974887848,-0.013682805001735687,-0.009207859635353088,-0.0034062175545841455,-0.05314943194389343,-0.0020170360803604126,0.09811650216579437,-0.12033034861087799,-0.0028414051048457623,0.02241881936788559,0.0586029477417469,-0.10053884238004684,-0.06131600961089134,0.000021240370188024826,0.055899228900671005,-0.014153451658785343,0.037518564611673355,0.03424734249711037,-0.03402167931199074,-0.0003182188083883375,0.016453180462121964,0.03910558298230171,-0.02848753146827221,0.08232688158750534,-0.034335214644670486,0.05558577552437782,0.03636299818754196,-0.09584099054336548,-0.10666928440332413,-0.04731588065624237,0.01970168948173523,0.10107862204313278,0.0007883785292506218,0.004806625656783581,0.007740396074950695,0.022647053003311157,-0.025111645460128784,-0.013010869733989239,-0.02714519016444683,0.055724259465932846,0.03824421390891075,-0.007173316553235054,-0.00816007424145937,0.07160118967294693,0.02633209154009819,0.07450501620769501,-0.0790819600224495,0.021345995366573334,0.10199467092752457,0.03472503274679184,-0.0281380582600832,-5.7250375107287255e-8,0.03167089819908142,0.06679731607437134,-0.04090399295091629,0.01356557011604309,0.03781203553080559,-0.005952680483460426,0.020867563784122467,-0.017702193930745125,0.0050285798497498035,0.09828696399927139,-0.007701870985329151,-0.018614478409290314,0.04521958529949188,0.06667041033506393,0.032689955085515976,0.043622616678476334,0.10376444458961487,0.06288007646799088,0.00043669433216564357,-0.0019379685400053859,-0.060431379824876785,0.01759236305952072,0.04902157932519913,0.012433819472789764,-0.015341829508543015,-0.03880675137042999,0.051509905606508255,-0.033777691423892975,0.022858818992972374,0.07127145677804947,-0.050072938203811646,0.06839186698198318,-0.0013948701089248061,-0.06927696615457535,-0.015579620376229286,0.02653053216636181,-0.06269199401140213,0.015598851256072521,0.008664567954838276,-0.03314287215471268,0.026022467762231827,0.018369628116488457,0.0065247733145952225,-0.03040122427046299,0.07400118559598923,-0.05116182938218117,-0.018224187195301056,-0.024257715791463852,-0.03448443114757538,-0.09907969832420349,-0.08412344753742218,-0.006298523861914873,0.09070922434329987,0.020489174872636795,-0.02181013859808445,-0.07079736888408661,0.04229089245200157,-0.03917330875992775,0.03679920732975006,0.02800776995718479,0.11535559594631195,0.06003761664032936,-0.009316453710198402,0.04070865362882614]},{"text":"Multa petentibus Desunt multa: benest, cui deus obtulit Parca quod satis est manu.","book":"Homage to Catalonia","chapter":21,"embedding":[-0.04288651794195175,0.06446751207113266,-0.03149062395095825,-0.1150977611541748,-0.03303952515125275,-0.034250251948833466,0.08192059397697449,0.05388708412647247,0.014992096461355686,0.01287316344678402,-0.034948065876960754,-0.06168195605278015,0.04276729002594948,-0.08088173717260361,-0.054162681102752686,-0.08144805580377579,-0.06232032552361488,0.11516522616147995,0.05236705020070076,0.036111019551754,0.051638927310705185,-0.04197258502244949,-0.05061587318778038,0.0105174221098423,-0.0523516982793808,0.042351361364126205,0.010915149934589863,-0.018220189958810806,0.013564560562372208,-0.01294560544192791,0.06318701803684235,0.11058177798986435,0.058108359575271606,-0.07605307549238205,0.04644624516367912,-0.02025909535586834,-0.009364011697471142,-0.0686228796839714,-0.017431624233722687,-0.04317622631788254,-0.014498686417937279,-0.01967012882232666,-0.0289427749812603,-0.02907886914908886,0.020446987822651863,-0.061148203909397125,-0.06487472355365753,0.03369125723838806,-0.005536351818591356,0.016087621450424194,-0.04270992428064346,0.020032066851854324,0.025669598951935768,-0.07267560064792633,-0.007845751941204071,-0.06554047018289566,-0.008213082328438759,-0.02520161122083664,0.021241165697574615,-0.03426491469144821,-0.032957758754491806,0.02596605010330677,-0.01706519164144993,0.014002745039761066,0.030912701040506363,-0.02589445374906063,0.00036640584585256875,-0.04589734971523285,-0.07281365245580673,0.09054075181484222,0.08160700649023056,0.014348134398460388,-0.022422317415475845,-0.047664545476436615,-0.05153465270996094,-0.04034602642059326,-0.025160038843750954,0.003494040807709098,-0.0008956956444308162,-0.08239325135946274,0.011500845663249493,0.04043988510966301,-0.002377248601987958,-0.01382655929774046,0.05809455364942551,-0.03965531289577484,-0.0042001232504844666,0.022158624604344368,0.05670768395066261,-0.03180199861526489,0.009344997815787792,0.03510543704032898,-0.10319039970636368,0.01953556202352047,0.02740103378891945,0.01552516222000122,-0.07391341030597687,-0.042850520461797714,-0.0006495637935586274,0.026685059070587158,-0.021004322916269302,0.05157709866762161,-0.012942919507622719,0.02080821432173252,-0.05569576844573021,-0.020553315058350563,0.01214783638715744,-0.09199131280183792,-0.025193771347403526,-0.01251345593482256,-0.08245711028575897,-0.05777272209525108,-0.06921795010566711,-0.06907405704259872,-0.0016660192050039768,0.012976789847016335,0.010640743188560009,-0.05911517143249512,-0.05223880708217621,-0.14115634560585022,-0.004401624668389559,0.021230561658740044,-0.03405127301812172,-0.0009724715491756797,0.04664413258433342,-0.061825331300497055,0.06893882155418396,6.402634875600833e-33,-0.03405684977769852,-0.09744749218225479,0.031776681542396545,0.004254290368407965,-0.018696395680308342,0.0013914565788581967,-0.05566684156656265,-0.024343693628907204,-0.04433908313512802,0.012323934584856033,-0.034612398594617844,-0.0676373839378357,-0.03094097599387169,0.07051851600408554,0.1368352472782135,-0.002738041803240776,0.0855342373251915,-0.08171165734529495,0.09251444786787033,-0.04088377580046654,-0.057218171656131744,0.08482258766889572,0.02587716095149517,-0.027141626924276352,0.04298686981201172,0.023307856172323227,-0.026906151324510574,-0.03688953444361687,-0.01483706384897232,0.05505596473813057,0.07030629366636276,-0.03804833069443703,-0.022896258160471916,0.038315944373607635,-0.03385986387729645,0.02041013538837433,-0.03250669315457344,0.08561430871486664,-0.0504327192902565,0.005244057159870863,0.03166618198156357,-0.0054362318478524685,0.0261344313621521,0.01861407794058323,-0.01971518248319626,0.02998536080121994,0.04784483462572098,-0.03701920434832573,0.06618881225585938,0.02840869314968586,-0.054143741726875305,0.033510491251945496,-0.036944299936294556,-0.12506280839443207,-0.0008366467664018273,-0.05651724338531494,-0.027875689789652824,0.05790610983967781,-0.07737304270267487,0.02066645957529545,0.006668607704341412,-0.05981671065092087,0.017647596076130867,0.02323414757847786,-0.03959988057613373,-0.0382363386452198,0.003968300297856331,0.006849178113043308,0.11975499987602234,0.0011846405686810613,-0.10322169214487076,0.00705055333673954,-0.044613368809223175,0.006253250874578953,0.025814522057771683,0.04203256219625473,-0.001160903717391193,0.03268524259328842,-0.03993783891201019,-0.004846587311476469,-0.05431005358695984,-0.0004879447806160897,-0.01137613970786333,-0.015956243500113487,0.07693403214216232,0.071387380361557,0.007086305879056454,0.011821848340332508,0.014401676133275032,0.02706054039299488,0.03008616901934147,0.010002258233726025,0.04967842996120453,0.09901490807533264,0.03406267985701561,-8.878447852991289e-33,-0.05119982734322548,0.033043235540390015,-0.03289327397942543,0.08294259011745453,-0.07771731168031693,0.03624192997813225,-0.07951405644416809,0.00010721005673985928,-0.03447895869612694,0.021868402138352394,-0.0933372750878334,-0.06377962976694107,0.001496916520409286,-0.013809452764689922,-0.04517927020788193,0.12710168957710266,0.015724457800388336,-0.00922579225152731,-0.09422439336776733,-0.0012100966414436698,-0.0010074441088363528,0.07056339085102081,0.09913544356822968,-0.13665884733200073,0.03060031868517399,0.02191120758652687,0.07192663848400116,-0.025821223855018616,0.03157617896795273,-0.02490168623626232,-0.031045181676745415,0.05557289719581604,-0.07491829991340637,0.06351037323474884,0.026966309174895287,-0.019323719665408134,0.14192034304141998,0.029183022677898407,-0.041071321815252304,0.057663869112730026,-0.013755053281784058,0.13720057904720306,0.020198503509163857,-0.0022041117772459984,0.05033304542303085,0.022941138595342636,0.01617124304175377,-0.035270169377326965,-0.08701037615537643,-0.008600713685154915,0.005891268141567707,0.005082505755126476,0.04770897701382637,0.024699095636606216,0.12333130836486816,-0.07331207394599915,-0.0455680750310421,-0.003948303405195475,-0.06866633892059326,-0.07438642531633377,0.06478575617074966,0.01870466209948063,-0.07063696533441544,0.005463932175189257,0.04201574996113777,0.060695331543684006,0.014162322506308556,0.048852913081645966,-0.029178092256188393,0.04011772945523262,-0.009053354151546955,-0.09774847328662872,-0.04386189952492714,0.010653204284608364,-0.06227802112698555,0.0064358189702034,-0.01424872875213623,0.029152540490031242,0.0011865898268297315,0.020510368049144745,-0.04819418117403984,-0.029008816927671432,-0.0455733984708786,-0.05169261246919632,0.006434349808841944,-0.008359934203326702,-0.0007677691173739731,-0.0559375137090683,0.055508315563201904,0.011705858632922173,0.0013323368038982153,0.031610213220119476,0.04088636860251427,-0.022981155663728714,-0.02362518198788166,-3.549752136677853e-8,-0.03113497421145439,-0.08774827420711517,-0.1865086555480957,-0.01670954003930092,0.08433521538972855,-0.08981065452098846,-0.07353109866380692,0.023522205650806427,-0.007062265649437904,0.09507732838392258,-0.035805512219667435,0.0016583739779889584,-0.005461427383124828,0.009622839279472828,-0.024224111810326576,0.1319027990102768,0.03488535434007645,-0.05767974257469177,0.024857787415385246,-0.036081086844205856,0.04214330390095711,-0.03917992487549782,-0.024605048820376396,0.04089478403329849,-0.05995933338999748,-0.0051415772177278996,0.007633015513420105,-0.08180514723062515,0.0469755083322525,-0.01926501840353012,0.0163783710449934,0.09620773792266846,-0.013495052233338356,-0.06775863468647003,0.029281150549650192,0.03833075240254402,0.08284655213356018,0.05835527554154396,0.04963809251785278,0.057807546108961105,0.06752278655767441,0.0153735913336277,0.038946300745010376,-0.03714839741587639,0.06916932761669159,-0.00040657527279108763,0.03323839604854584,0.03665626794099808,-0.005003525875508785,0.026079216971993446,-0.050091471523046494,-0.010038609616458416,0.10920209437608719,0.013396979309618473,0.006462401244789362,0.0265529565513134,0.006270631216466427,-0.0014987521572038531,0.0630354955792427,-0.006511976011097431,0.04580605402588844,0.08505694568157196,-0.03902709111571312,0.0023634135723114014]},{"text":"Dum potes, aridum Compone lignum: cras Genium mero Curabis et porco bimenstri 15 Cum famulis operum solutis.","book":"Homage to Catalonia","chapter":21,"embedding":[0.03765645995736122,0.003552781417965889,-0.017100870609283447,0.024584749713540077,0.00014204929175321013,0.011480399407446384,0.029985465109348297,-0.008347205817699432,0.011282693594694138,0.004859414882957935,0.057624563574790955,-0.1030399277806282,0.05236002802848816,-0.052659083157777786,-0.07626685500144958,-0.04083605855703354,0.007895592600107193,0.03446393460035324,0.024654855951666832,0.01582285761833191,0.026755772531032562,0.02536863461136818,-0.032668061554431915,0.028990773484110832,-0.0436747707426548,0.08442238718271255,-0.021338719874620438,0.007320326287299395,0.030672775581479073,-0.06874164193868637,0.013107234612107277,0.15292580425739288,0.0690506249666214,-0.024236610159277916,0.0104675916954875,0.0008674180717207491,-0.07061417400836945,-0.03468291833996773,0.02555539458990097,0.03274418041110039,0.0025466326624155045,-0.07117993384599686,0.04072793200612068,-0.03809288144111633,-0.03242115676403046,-0.0013851121766492724,0.012187130749225616,0.028081631287932396,0.03313186764717102,0.025075653567910194,0.025817861780524254,-0.0388094000518322,-0.08345543593168259,0.05100899934768677,-0.05488428846001625,-0.02147979661822319,0.00861840508878231,0.023808766156435013,0.010897913947701454,0.00413677329197526,-0.06150534376502037,0.05345677211880684,-0.06466317921876907,-0.01849808171391487,0.05042978748679161,-0.008464504033327103,-0.02360987477004528,0.000165621837368235,-0.04686287045478821,0.014329792000353336,0.1066536158323288,0.01807098090648651,0.03037274070084095,0.028539638966321945,-0.07045526802539825,0.07237766683101654,-0.025658193975687027,-0.017639366909861565,-0.05033237487077713,-0.05695598945021629,-0.030510589480400085,0.09182077646255493,0.009033874608576298,-0.04937497898936272,-0.048504941165447235,-0.006633879151195288,0.020347880199551582,-0.05530747398734093,0.13079872727394104,-0.0759938657283783,0.020881598815321922,0.03948262333869934,-0.02362828142940998,-0.0184579249471426,0.0016684596193954349,0.07726004719734192,0.020484559237957,-0.0550355464220047,0.018978862091898918,-0.03364739567041397,0.027260463684797287,0.04274045675992966,0.013428845442831516,-0.019687501713633537,-0.11065427958965302,-0.038184355944395065,-0.08923230320215225,-0.0052985805086791515,-0.007380328606814146,0.05585060268640518,-0.011049496941268444,-0.031139779835939407,0.01130679901689291,-0.0778614729642868,0.016598321497440338,-0.013601948507130146,0.04707346856594086,-0.08368489146232605,-0.03802637383341789,-0.0709516629576683,-0.017184020951390266,-0.09883507341146469,0.017426462844014168,0.009981166571378708,0.08275090903043747,-0.036967914551496506,0.021749895066022873,1.0762394281954937e-32,-0.06870311498641968,-0.11037680506706238,-0.010600468143820763,0.08848746120929718,0.011242772452533245,-0.04378185421228409,-0.04737327992916107,-0.08747339993715286,-0.02349293790757656,-0.09879546612501144,-0.08195436745882034,0.07819994539022446,-0.024036940187215805,0.010390006937086582,-0.03780297562479973,0.021558521315455437,0.07173175364732742,-0.019757797941565514,0.02890346199274063,0.0017505214782431722,-0.08504005521535873,0.023996824398636818,0.04566533863544464,-0.01978016085922718,-0.02454068697988987,0.03215062990784645,0.11897397041320801,-0.0935804471373558,-0.0360611230134964,-0.01753404177725315,0.12719497084617615,-0.021694160997867584,-0.023468289524316788,0.023307669907808304,0.03160053864121437,0.04157782718539238,-0.024163762107491493,0.028485072776675224,-0.08754216134548187,0.026823077350854874,0.026500720530748367,0.04258666932582855,0.10818102210760117,0.01957640051841736,0.12908890843391418,-0.02586851827800274,0.03653198853135109,0.04780501127243042,0.0296868197619915,0.037226635962724686,0.01583658903837204,0.07022221386432648,-0.031153026968240738,-0.022691864520311356,-0.05661295726895332,-0.002824597293511033,-0.037240974605083466,0.016556648537516594,-0.02757793478667736,0.02859756536781788,0.04476016014814377,0.020949356257915497,-0.02852698788046837,-0.00529378280043602,0.007044138386845589,-0.05447477847337723,-0.07940496504306793,0.07574515044689178,0.11105180531740189,0.05756375193595886,-0.016170542687177658,-0.061127886176109314,-0.017827780917286873,0.10588692128658295,0.007146264426410198,0.012971321120858192,0.07177403569221497,-0.026169519871473312,-0.039929959923028946,-0.005022760946303606,-0.05082562938332558,0.017140939831733704,-0.02092859148979187,0.03254798427224159,-0.047456204891204834,-0.0032671773806214333,-0.08150961995124817,0.10509657114744186,0.035645581781864166,-0.03234897181391716,0.08424725383520126,0.03353213891386986,0.0023593453224748373,0.01721060834825039,-0.03612285107374191,-9.772221023643599e-33,0.03574301674962044,-0.023663969710469246,-0.05084538087248802,0.10598838329315186,-0.0027779496740549803,-0.046199534088373184,-0.10497185587882996,0.029329555109143257,-0.004296740051358938,-0.04149192199110985,-0.022889697924256325,0.021195515990257263,0.07696238160133362,-0.09379291534423828,0.020407499745488167,0.04408373311161995,0.09289570897817612,0.0471339151263237,-0.10470549017190933,0.008107357658445835,-0.08597499877214432,0.09041371941566467,0.04627637192606926,-0.11528956890106201,-0.04222578555345535,-0.015713542699813843,0.006417369470000267,-0.03638429567217827,-0.07239601761102676,0.06445520371198654,0.06153986230492592,-0.019851308315992355,-0.0360209122300148,0.0618572011590004,-0.04518551006913185,-0.03282551467418671,0.08407337218523026,-0.05079871416091919,-0.0321042574942112,0.006349821574985981,0.028895556926727295,0.05770999938249588,0.09307797253131866,-0.028026049956679344,0.04321272298693657,-0.07571438699960709,-0.055331628769636154,0.025613145902752876,-0.01431233435869217,0.044651877135038376,0.1031959131360054,-0.011157256551086903,-0.03224659711122513,-0.08169419318437576,0.07392755895853043,-0.06170195713639259,-0.028058914467692375,0.04036985710263252,-0.10560613870620728,0.016372879967093468,0.07123994827270508,0.07590795308351517,0.03890494257211685,-0.04195127636194229,0.04710672050714493,0.03880951553583145,-0.04490632936358452,0.08738246560096741,-0.04073420166969299,0.09158355742692947,0.05366068333387375,0.010623681358993053,-0.06446733325719833,0.004006832838058472,0.08242965489625931,0.01631377637386322,0.029961762949824333,0.057525672018527985,-0.015303222462534904,0.011836477555334568,-0.017253054305911064,-0.06939373165369034,0.013298345729708672,-0.04088404402136803,-0.037406329065561295,-0.019419195130467415,-0.008567542769014835,-0.07907485961914062,0.07324640452861786,0.031406108289957047,0.003698621643707156,-0.0901595801115036,0.013477949425578117,0.010809121653437614,0.020040974020957947,-3.6786282464618125e-8,-0.04744425415992737,-0.024441581219434738,-0.04615013673901558,0.0397663377225399,0.029715755954384804,-0.08832649141550064,0.016490137204527855,0.034038349986076355,0.0031263786368072033,0.05069965869188309,-0.03927583247423172,-0.01743285544216633,-0.016762083396315575,0.04806467145681381,0.03736582025885582,0.035569675266742706,0.029461249709129333,0.05690956860780716,-0.08203627914190292,-0.06882809102535248,0.049660731106996536,-0.02029963582754135,-0.04689563810825348,0.054730579257011414,0.0014066046569496393,-0.033496733754873276,-0.007380231283605099,-0.022813335061073303,-0.0044230264611542225,-0.015196557156741619,0.036762215197086334,-0.019350355491042137,-0.02964082919061184,-0.08164107799530029,0.01450169738382101,0.041534218937158585,0.022718895226716995,0.03604317829012871,-0.034384071826934814,0.0655488669872284,0.004085630178451538,-0.08085761964321136,0.06962323933839798,-0.0629163384437561,-0.06409423053264618,0.0036224951036274433,-0.05844087526202202,-0.01162288710474968,-0.00449319276958704,-0.01050464529544115,0.041346363723278046,-0.03896324709057808,0.10660939663648605,-0.02499997988343239,-0.018151042982935905,-0.08109048753976822,0.06991744041442871,-0.09082341194152832,0.03225379064679146,-0.04215863347053528,0.007928332313895226,0.05888775736093521,0.05370744317770004,0.0024304562248289585]},{"text":"Ludit herboso pecus omne campo, Cum tibi Nonae redeunt Decembres; 10 Festus in pratis vacat otioso Cum bove pagus; Inter audacis lupus errat agnos; Spargit agrestis tibi silva frondis; Gaudet invisam pepulisse fossor 15 Ter pede terram.","book":"Homage to Catalonia","chapter":21,"embedding":[-0.024105874821543694,0.034380510449409485,-0.033763762563467026,-0.01484982855618,0.04847816377878189,0.016588488593697548,0.06086084619164467,0.1079072505235672,0.041517265141010284,0.04427602142095566,0.10733417421579361,-0.02981463260948658,-0.0009447217453271151,-0.02248452603816986,-0.07000996917486191,-0.002089851535856724,-0.037901975214481354,0.05827592685818672,-0.009439847432076931,-0.031671565026044846,0.012663088738918304,0.006464864127337933,0.015466081909835339,0.027351388707756996,-0.07009043544530869,0.007424036506563425,-0.0765148401260376,0.01945647969841957,-0.007476294878870249,-0.06659989804029465,0.031116997823119164,0.12085181474685669,0.06844843924045563,0.01379977073520422,-0.04516103118658066,0.01492089033126831,-0.03694021701812744,-0.021784082055091858,0.05851295217871666,0.02686181850731373,0.021827587857842445,-0.018773622810840607,0.008609117940068245,-0.1041334718465805,0.03323139250278473,0.013338128104805946,-0.055708371102809906,0.09694173187017441,0.023028118535876274,-0.04201681911945343,-0.030968016013503075,-0.08079300075769424,-0.05447500944137573,0.08254653215408325,-0.07496651262044907,-0.06842628866434097,-0.00258839875459671,-0.06507597118616104,-0.03937793895602226,-0.010932802222669125,-0.047850675880908966,0.030816348269581795,-0.09083698689937592,-0.04047270119190216,-0.0441540852189064,-0.03403379023075104,-0.051930561661720276,0.0476607047021389,-0.035262275487184525,0.07664081454277039,0.11647952347993851,-0.011764904484152794,-0.08852280676364899,0.04003000631928444,-0.08359764516353607,0.07043881714344025,-0.015238872729241848,0.035358358174562454,-0.007490926887840033,-0.08018586784601212,0.04056151956319809,0.06372753530740738,0.08013744652271271,-0.024796437472105026,0.026446089148521423,0.02734389156103134,0.0040070172399282455,0.04942255839705467,-0.0008004779228940606,-0.04115767404437065,0.03682743385434151,0.016777876764535904,-0.05311153829097748,0.05990474671125412,-0.010591482743620872,0.04507312551140785,0.007094685919582844,-0.054727036505937576,-0.05363321304321289,0.014825679361820221,0.01702660694718361,-0.07270902395248413,0.033866796642541885,-0.027093570679426193,-0.10874281823635101,-0.027702679857611656,-0.008842959068715572,-0.03568268194794655,-0.017984582111239433,-0.008551537059247494,-0.009284250438213348,-0.045908138155937195,-0.07415322959423065,-0.08481692522764206,-0.01999404840171337,0.019976172596216202,-0.026938466355204582,-0.05493851378560066,-0.008476982824504375,-0.0010991916060447693,0.019643735140562057,0.007211075630038977,-0.004752557259052992,-0.017784301191568375,0.020898040384054184,-0.08520124852657318,0.012071216478943825,1.947011994758852e-32,0.010881218127906322,-0.10573603212833405,-0.0883222371339798,0.0592140294611454,0.0076831914484500885,0.0676136389374733,-0.0040300507098436356,-0.014372674748301506,-0.010360496118664742,-0.0983181968331337,-0.13156865537166595,0.016950590535998344,0.008940494619309902,0.0493428073823452,-0.0010941093787550926,0.050961531698703766,0.10492974519729614,-0.025994136929512024,-0.004156336188316345,-0.036266837269067764,-0.029510507360100746,-0.03996511176228523,-0.06663373857736588,-0.055176179856061935,0.07763440907001495,0.051895447075366974,-0.059868086129426956,-0.12922115623950958,0.030976466834545135,0.030390020459890366,0.0787632167339325,-0.04296882078051567,0.027914315462112427,0.08264494687318802,-0.0255927462130785,0.03186611458659172,0.0017970260232686996,-0.07836609333753586,-0.026629218831658363,-0.03630372881889343,0.032179929316043854,0.04217425361275673,0.03649896755814552,0.05442129820585251,0.08342652022838593,0.0499129518866539,-0.010921561159193516,-0.011784602887928486,0.08304976671934128,0.08315426111221313,0.050169799476861954,0.0432320162653923,0.053679972887039185,-0.01140238530933857,0.001884958823211491,0.021462516859173775,-0.049618061631917953,0.06267990916967392,-0.008655242621898651,0.030554277822375298,0.05161093547940254,0.01368279755115509,-0.01914937049150467,-0.016679951921105385,0.02627721056342125,-0.036972466856241226,-0.08568791300058365,0.012887869961559772,0.00008985417662188411,0.05359320342540741,-0.09576383233070374,-0.060745969414711,0.028103772550821304,0.003807217814028263,-0.006371428724378347,-0.0015030354261398315,0.10922183841466904,-0.05130064859986305,-0.05491715669631958,0.06014065816998482,-0.07106154412031174,-0.03405343368649483,-0.0380929596722126,0.05092385783791542,0.028918558731675148,0.06590015441179276,-0.01008710078895092,0.04513825103640556,0.01191110908985138,0.023294808343052864,0.08572832494974136,0.08111250400543213,-0.022423766553401947,0.01592363975942135,-0.03919203579425812,-1.6654008702474705e-32,0.01496414840221405,0.0211784765124321,-0.0718708261847496,0.100678950548172,-0.021626904606819153,0.05073480308055878,-0.03890373185276985,0.018799928948283195,0.0675346702337265,0.011652877554297447,-0.04243747517466545,-0.020328151062130928,0.02038615383207798,-0.05523910000920296,-0.012092516757547855,0.038421381264925,-0.002314704703167081,0.0669228732585907,-0.010970212519168854,0.031028548255562782,-0.10949323326349258,0.10324705392122269,0.04188162088394165,-0.0738421380519867,-0.0022867636289447546,-0.021886076778173447,0.051415398716926575,-0.005130974110215902,-0.03732419013977051,-0.07483643293380737,0.014952786266803741,-0.052104368805885315,-0.054418131709098816,0.04069019481539726,-0.037185925990343094,0.03923097625374794,0.13944554328918457,-0.04297512769699097,0.004468491300940514,0.03933682292699814,-0.004508449696004391,0.020000003278255463,0.027075618505477905,0.010581609793007374,0.04296489804983139,-0.0248074010014534,-0.08579760789871216,0.044306330382823944,-0.035339534282684326,0.022885041311383247,0.08078885823488235,-0.008720043115317822,0.0024837604723870754,0.031310271471738815,0.04699840024113655,-0.172429621219635,-0.024917829781770706,-0.01885875314474106,-0.12657979130744934,0.009732989594340324,0.045901499688625336,0.0091728949919343,-0.03317159786820412,0.04650760069489479,0.07213030010461807,0.0302869975566864,-0.06710974872112274,0.046090248972177505,-0.04443684592843056,0.07294094562530518,0.06105291470885277,-0.056779105216264725,-0.15936407446861267,0.004960973747074604,0.0066285389475524426,0.07283619046211243,-0.018453804776072502,0.03597614914178848,-0.025558235123753548,-0.014220203272998333,0.005005215294659138,-0.061703115701675415,0.0025531838182359934,-0.04161985591053963,0.003305892227217555,-0.05110006406903267,-0.042358651757240295,0.02071981690824032,0.06039954349398613,0.032726842910051346,0.015194395557045937,0.00960430409759283,0.0557306632399559,0.015328391455113888,0.05333144590258598,-5.5734037829324734e-8,0.03623945638537407,-0.041215680539608,-0.02306865155696869,0.0022145246621221304,0.0434504970908165,-0.05592750757932663,0.04692179709672928,0.020107176154851913,0.025547681376338005,0.07883429527282715,-0.07836619019508362,0.016516562551259995,-0.02325904741883278,-0.0024694243911653757,0.07445546239614487,0.02737036533653736,0.04570789635181427,0.014257713221013546,-0.02272035740315914,-0.045894742012023926,0.0011034508934244514,0.052773039788007736,-0.0567084364593029,-0.04661311209201813,-0.044090636074543,-0.05680124834179878,0.03271711245179176,-0.06365035474300385,0.007646608166396618,-0.053006164729595184,0.040269847959280014,0.05874311923980713,-0.008318411186337471,-0.06938206404447556,-0.04669830575585365,0.044970110058784485,0.0203375443816185,-0.012279483489692211,-0.002841378329321742,0.002765760524198413,0.029467368498444557,0.016656283289194107,0.04474710673093796,-0.08244509994983673,-0.04617675021290779,-0.04219195246696472,0.06168273463845253,-0.051489464938640594,0.06901974231004715,-0.11097775399684906,-0.04440220072865486,0.08639896661043167,0.03318637236952782,0.0015743758995085955,-0.103273406624794,-0.018756333738565445,0.022668512538075447,-0.033285822719335556,0.08055200427770615,-0.042415279895067215,-0.02288571186363697,0.047463711351156235,0.026445496827363968,0.05378514900803566]},{"text":"Da lunae propere novae, Da noctis mediae, da, puer, auguris 10 Murenae: tribus aut novem Miscentur cyathis pocula commodis.","book":"Homage to Catalonia","chapter":21,"embedding":[-0.029490934684872627,0.013679872266948223,0.038886088877916336,-0.06171536073088646,-0.1502813845872879,-0.01750103011727333,0.024282867088913918,0.04051801562309265,-0.0023083919659256935,0.025754354894161224,0.103069007396698,-0.04624838009476662,0.033994417637586594,-0.043057166039943695,-0.12048003077507019,-0.1017073318362236,-0.0199789609760046,0.12915384769439697,-0.023679105564951897,0.0043621975928545,0.01936487853527069,-0.0188415739685297,0.009807130321860313,0.018864253535866737,-0.07796725630760193,0.03892971947789192,-0.028130844235420227,-0.07723192125558853,0.007938755676150322,-0.10633916407823563,0.062460675835609436,0.11412863433361053,-0.01558998879045248,-0.02598942071199417,0.0017961610574275255,-0.007579687982797623,0.00023653074458707124,-0.038484010845422745,0.06647482514381409,0.061080507934093475,-0.04082823917269707,-0.06033153459429741,-0.058920856565237045,-0.08769813179969788,-0.04788869246840477,0.03407302498817444,-0.01786445453763008,0.03294607251882553,0.012001813389360905,-0.024915937334299088,-0.041772063821554184,-0.04596441239118576,-0.047625582665205,0.014312676154077053,-0.04760384187102318,-0.0690581202507019,-0.01282302662730217,-0.0006515930290333927,0.022266335785388947,-0.05559339374303818,0.04149608314037323,0.02235426940023899,-0.022359291091561317,0.027607204392552376,-0.025343509390950203,0.06351097673177719,-0.04220246151089668,-0.025174077600240707,-0.1165652722120285,0.0037205717526376247,0.06614598631858826,-0.029771817848086357,-0.0035065338015556335,0.027475828304886818,-0.07791762799024582,0.03766592964529991,-0.036373138427734375,-0.07327820360660553,-0.02109440416097641,-0.01122966967523098,0.06605178117752075,0.09397031366825104,-0.006372832227498293,-0.03283162787556648,0.0005446947179734707,0.02820388786494732,0.0300982017070055,0.020562978461384773,0.021285811439156532,-0.022075451910495758,-0.019521662965416908,0.03874250128865242,-0.02583758533000946,0.03622453659772873,0.0018340266542509198,-0.030159052461385727,-0.04849496856331825,-0.03269021213054657,-0.015660645440220833,-0.02649790421128273,0.024801678955554962,0.04658623784780502,0.002409825101494789,0.042515840381383896,-0.10648944228887558,-0.09866475313901901,0.006809319835156202,-0.1226930096745491,0.055898670107126236,0.07019924372434616,-0.053203895688056946,-0.061836306005716324,-0.08275879919528961,-0.04865778610110283,-0.01543074194341898,-0.011144576594233513,-0.015101310797035694,-0.0632975772023201,-0.03326990082859993,-0.08178500086069107,0.006695793010294437,-0.055269643664360046,-0.05949960649013519,-0.0048513514921069145,0.07428427040576935,-0.019623082131147385,0.017830749973654747,7.8910796180746e-33,-0.045892491936683655,-0.025723552331328392,0.0025709972251206636,0.03753025457262993,0.02544640377163887,-0.03214247524738312,-0.07238107174634933,-0.056674424558877945,0.019819166511297226,-0.07931121438741684,-0.0983664020895958,0.02230803482234478,-0.055062249302864075,0.030105140060186386,0.015239095315337181,0.07998357713222504,0.06991962343454361,-0.005296582356095314,0.005682053975760937,-0.008908423595130444,-0.023049181327223778,0.07114831358194351,-0.028505293652415276,-0.010661923326551914,0.04120346158742905,0.030582783743739128,-0.0393093042075634,-0.07580902427434921,0.007102996576577425,0.01703648641705513,0.05049609765410423,-0.10266682505607605,0.08784288913011551,0.03014253079891205,0.01828506961464882,-0.028605656698346138,0.02655615657567978,0.04594189301133156,-0.0015193737344816327,0.016563743352890015,-0.012857713736593723,-0.007051055319607258,0.03655172139406204,0.02412223629653454,0.08695038408041,0.012375249527394772,0.03726208582520485,0.01565648801624775,0.05628374591469765,0.011501152068376541,0.02314096875488758,0.03077544830739498,-0.02928565815091133,0.00422188825905323,-0.005483392626047134,0.0005346123944036663,-0.06376569718122482,0.03538331389427185,-0.014775685966014862,-0.06050160899758339,0.0783310979604721,-0.07178205996751785,0.04131119325757027,-0.053352247923612595,-0.008208257146179676,-0.04476785659790039,-0.039065081626176834,0.010348760522902012,0.07502851635217667,0.04898824170231819,-0.12615564465522766,-0.03711186721920967,-0.027472078800201416,0.061318594962358475,0.046222489327192307,0.021788889542222023,0.10560397058725357,-0.020367542281746864,-0.015346270985901356,0.022167857736349106,-0.04804437980055809,0.02732529118657112,-0.004487345460802317,0.01549376081675291,0.06959472596645355,0.012542109936475754,-0.009252910502254963,0.10960367321968079,0.04282694682478905,0.036374785006046295,0.07746561616659164,0.06219378858804703,-0.01591884344816208,0.007361913099884987,-0.021397866308689117,-7.713527073854648e-33,0.029477838426828384,-0.039501164108514786,-0.06121290847659111,0.08637338876724243,-0.003299884730949998,0.034197334200143814,-0.04883866757154465,0.03196287900209427,0.050483837723731995,-0.029326945543289185,-0.09091883897781372,-0.026315368711948395,0.06348951905965805,-0.05147465690970421,-0.006149434484541416,0.07659187912940979,0.07048063725233078,0.05318139120936394,-0.0065429676324129105,0.0007122454117052257,-0.018547164276242256,0.04258172959089279,-0.01088496670126915,-0.08275091648101807,-0.008343426510691643,0.026478970423340797,-0.006530937273055315,-0.047119155526161194,-0.006331620737910271,0.0364750511944294,0.019342685118317604,-0.05693109706044197,0.029662199318408966,0.012931117787957191,-0.013105927966535091,0.0322907492518425,0.15913274884223938,-0.031187085434794426,-0.10883813351392746,0.00402177544310689,-0.025964466854929924,0.027935100719332695,-0.012128489091992378,0.034993160516023636,-0.0055425879545509815,-0.011295188218355179,-0.04368098825216293,0.0034136020112782717,-0.06830897927284241,0.019188107922673225,0.08938924223184586,0.0013549418654292822,0.029637297615408897,-0.010822138749063015,0.10275004059076309,-0.009346071630716324,-0.0011500570690259337,-0.017311351373791695,-0.07939538359642029,0.00958841573446989,0.059917155653238297,-0.017039479687809944,-0.02986166998744011,-0.017041563987731934,0.002254016697406769,0.02606489136815071,-0.06733566522598267,0.0969240739941597,-0.019079355522990227,-0.01215424481779337,0.03179582580924034,-0.09252342581748962,-0.1270923912525177,-0.0657181441783905,0.013646027073264122,-0.010402901098132133,-0.06572031229734421,0.04294009506702423,0.06868643313646317,0.06096845492720604,-0.11128696799278259,0.0014634374529123306,-0.041748568415641785,-0.0107401292771101,-0.00899688620120287,0.05293118208646774,0.08257821947336197,-0.011024067178368568,-0.0034081360790878534,-0.035842202603816986,0.04659378528594971,0.043389223515987396,0.0662907138466835,0.007423992268741131,-0.02192854695022106,-3.681420324141982e-8,0.0574164092540741,-0.09874260425567627,-0.004216768313199282,0.013790222816169262,0.05804981663823128,-0.09816490113735199,0.027688393369317055,0.06255244463682175,-0.04900142177939415,0.0539996400475502,0.015276008285582066,-0.06070574373006821,-0.01736072078347206,0.00756480498239398,0.1082729622721672,0.08042639493942261,0.07755983620882034,0.08075742423534393,-0.05593408644199371,-0.04856707900762558,0.032357536256313324,0.06768869608640671,-0.012734592892229557,-0.022959133610129356,-0.07798366248607635,0.057727646082639694,0.11284288763999939,-0.04939034953713417,-0.04917379096150398,-0.04248703271150589,0.047881241887807846,0.014006541110575199,-0.020301226526498795,-0.11666154861450195,-0.05624903738498688,0.048240888863801956,0.024207737296819687,0.05471014976501465,0.01807541586458683,-0.0004058003250975162,0.03115815855562687,0.029127411544322968,0.06736012548208237,0.010625328868627548,0.040924321860075,0.033718179911375046,0.02694019488990307,-0.030602438375353813,0.04277082160115242,-0.036591194570064545,-0.04468322917819023,0.07028870284557343,0.038794148713350296,0.03151889890432358,-0.03449421748518944,-0.05536405369639397,0.05431132763624191,0.0012891433434560895,-0.034159768372774124,-0.010501048527657986,0.08171416819095612,0.13525962829589844,0.0076735178008675575,0.030000289902091026]},{"text":"Insanire iuvat: cur Berecyntiae Cessant flamina tibiae?","book":"Homage to Catalonia","chapter":21,"embedding":[-0.03512430936098099,0.06449081748723984,-0.09199077636003494,0.022475069388747215,-0.07374748587608337,0.001805441570468247,0.03729615733027458,0.060859356075525284,-0.011868095025420189,0.03844099119305611,0.06557818502187729,-0.11688774079084396,0.016975540667772293,-0.01915539987385273,-0.08582855015993118,-0.11864981055259705,-0.054087065160274506,0.03395658731460571,-0.039149314165115356,0.02606821246445179,-0.04411974921822548,-0.01557437889277935,0.0037953623104840517,0.020839424803853035,-0.0606372095644474,-0.008656803518533707,-0.09925471991300583,-0.06594722718000412,0.10136042535305023,-0.03107992187142372,0.07076764106750488,0.10230450332164764,0.032195795327425,-0.05554323270916939,0.02628442645072937,0.01966923102736473,-0.02424228936433792,-0.07032712548971176,0.013295789249241352,0.04602687805891037,-0.10782787203788757,-0.011656384915113449,-0.057316068559885025,-0.07184581458568573,0.03601332753896713,0.03179742395877838,-0.06598295271396637,0.06620631366968155,-0.007918156683444977,0.03438635542988777,-0.05590397119522095,-0.006561911664903164,-0.04908781871199608,0.011253674514591694,-0.0311849657446146,-0.07901974022388458,-0.0036331566516309977,-0.04070533812046051,-0.030489662662148476,-0.018634891137480736,0.09331740438938141,0.04013844579458237,-0.014346569776535034,0.033122967928647995,-0.047840796411037445,-0.024184459820389748,-0.006807693745940924,-0.05417272076010704,0.012997201643884182,-0.01090963650494814,0.11420483887195587,-0.06478796899318695,-0.03921941667795181,0.08700215071439743,-0.043077677488327026,0.03344111889600754,-0.020960019901394844,0.03196069970726967,-0.07244985550642014,-0.04048288241028786,0.022383451461791992,-0.0006893593817949295,0.022013284265995026,-0.017877034842967987,0.029687654227018356,-0.005087133031338453,0.022214142605662346,0.0068339877761900425,-0.0068890671245753765,0.030344394966959953,0.049314144998788834,0.05217086896300316,-0.11160257458686829,-0.04542706534266472,0.00010299379209754989,0.02807086706161499,-0.016468366608023643,-0.012829549610614777,0.02994113229215145,-0.013226001523435116,-0.01452481560409069,-0.04584253951907158,0.0025592471938580275,0.09463316947221756,-0.12708331644535065,-0.07213198393583298,0.012926396913826466,-0.0877646952867508,0.06071038544178009,0.02616330236196518,-0.044231437146663666,-0.10642896592617035,0.0019901434425264597,-0.03232273831963539,0.0004839786561205983,0.09221426397562027,-0.0023724487982690334,-0.03724461421370506,0.050249505788087845,-0.01607067696750164,0.053465958684682846,0.01416280772536993,0.0642084851861,-0.00010018490138463676,0.039464712142944336,-0.07868245989084244,0.05890331417322159,3.742821400134181e-33,-0.040377192199230194,-0.020977217704057693,-0.007946937344968319,-0.01248545479029417,0.045126255601644516,-0.0034069560933858156,-0.07914620637893677,-0.020918283611536026,0.03956204652786255,-0.09747723489999771,-0.08004287630319595,0.024842800572514534,0.0002091272035613656,-0.09783487766981125,0.04467225819826126,-0.007057595998048782,0.014411509037017822,-0.06553435325622559,-0.015127231366932392,-0.04151609539985657,0.0062858946621418,0.024062473326921463,0.06107359007000923,0.03218380734324455,0.03161638602614403,0.01598605513572693,-0.024729261174798012,-0.03726610168814659,-0.08496592193841934,0.04035283625125885,0.11613009870052338,-0.09173282235860825,-0.00958828441798687,-0.019780494272708893,0.000027154355848324485,0.005070364568382502,0.0490204319357872,-0.01147380843758583,0.0030463524162769318,0.058198265731334686,0.018961260095238686,-0.0023369358386844397,0.11230018734931946,0.06454893201589584,0.03279303386807442,0.021845050156116486,0.0438019335269928,-0.008732590824365616,0.03915558382868767,-0.02867504395544529,0.01696399785578251,0.016943152993917465,-0.0026128115132451057,-0.07578135281801224,-0.013628416694700718,0.032306354492902756,-0.08695834130048752,0.050093527883291245,-0.06154665723443031,0.014125082641839981,0.04616095498204231,0.020015688613057137,-0.030025674030184746,-0.04052317142486572,-0.001384262228384614,-0.06289314478635788,-0.0440865196287632,0.017046824097633362,0.07771670818328857,-0.04494943842291832,-0.120277039706707,-0.06356841325759888,0.0311104878783226,0.07765825092792511,-0.013949135318398476,0.035426657646894455,0.03377802297472954,0.004454484675079584,-0.0736580342054367,-0.023745503276586533,-0.07138332724571228,0.013568934053182602,0.007720433175563812,0.03957505151629448,0.0764470174908638,-0.0007948522688820958,-0.005221222061663866,0.010168962180614471,0.07485821098089218,0.06363345682621002,0.02021067775785923,0.02429071255028248,0.036998093128204346,-0.03422311320900917,0.004741549026221037,-5.2764848388901885e-33,-0.034664396196603775,-0.008733435533940792,-0.06745471805334091,0.0653618648648262,0.007339886389672756,0.01818380132317543,-0.09544084966182709,0.050818827003240585,-0.008829347789287567,-0.08411839604377747,-0.04120821878314018,-0.07999373972415924,0.0343930684030056,-0.03174431622028351,-0.012352216057479382,0.036515191197395325,0.016758596524596214,0.04886845126748085,-0.045597419142723083,0.03582541644573212,-0.035307761281728745,0.009002548642456532,0.015818515792489052,-0.16198812425136566,-0.017367862164974213,0.05011136457324028,0.04822699353098869,-0.09374354779720306,0.0026934705674648285,0.03465192764997482,0.018877122551202774,-0.005264755804091692,-0.050029169768095016,-0.00779156107455492,-0.0014959704130887985,-0.014674626290798187,0.12084934860467911,-0.038650207221508026,-0.04921568185091019,0.007758887484669685,0.06489736586809158,0.0811573788523674,0.02972951903939247,0.010430453345179558,0.03948172554373741,0.006313811521977186,-0.019507577642798424,0.02270279824733734,-0.05747734382748604,0.01872856728732586,0.07136363536119461,-0.013622472994029522,0.037395935505628586,0.04089470952749252,0.06488993763923645,-0.08033676445484161,0.04443567991256714,-0.03776964545249939,-0.10863956063985825,0.035236142575740814,0.12348657101392746,-0.02634139358997345,-0.008564482443034649,-0.006875128485262394,0.09846564382314682,0.023394618183374405,-0.03500017523765564,0.10078071057796478,-0.006441415287554264,0.0056302291341125965,0.022556627169251442,-0.1556817591190338,-0.05173473805189133,-0.016057293862104416,-0.05330171063542366,-0.002298243110999465,-0.00968637689948082,-0.0005077597452327609,0.03351762890815735,-0.00931019987910986,-0.09042707085609436,0.006348143797367811,-0.0164167582988739,-0.06903717666864395,0.021853825077414513,-0.06834819167852402,-0.02802971377968788,-0.035428792238235474,0.051487430930137634,-0.020511619746685028,-0.009967842139303684,0.017490442842245102,0.027186691761016846,-0.05108879879117012,0.06420547515153885,-2.7395378410233207e-8,0.019735803827643394,-0.014574714936316013,-0.03194066882133484,0.036499734967947006,0.12032214552164078,-0.07532591372728348,0.018174828961491585,-0.04556338116526604,-0.09346970915794373,-0.013421735726296902,-0.015988025814294815,0.02588122896850109,0.06541401147842407,-0.03142596781253815,0.04536200314760208,0.02663828246295452,0.11794261634349823,0.05491498485207558,-0.0038934170734137297,-0.012302295304834843,0.015583326108753681,-0.05809181556105614,-0.029104964807629585,-0.06361258029937744,-0.09661897271871567,0.011755785904824734,0.010619275271892548,-0.028573911637067795,0.0201000664383173,-0.00646308483555913,-0.02202712930738926,0.03248969092965126,0.1053592786192894,-0.0801142081618309,0.004281480796635151,-0.026592444628477097,0.01884656772017479,0.038487568497657776,-0.027024758979678154,0.0024033323861658573,0.03800339624285698,0.09451671689748764,0.04238399863243103,0.053120724856853485,0.07773208618164062,-0.020238030701875687,0.054668277502059937,0.04628470167517662,0.03317338228225708,-0.027443552389740944,-0.04871227219700813,-0.01733444631099701,0.08804260939359665,0.022837232798337936,-0.016196835786104202,0.012994716875255108,0.03124423138797283,0.07921901345252991,-0.06238824874162674,-0.007652903441339731,0.04315890371799469,0.060614507645368576,0.06833261996507645,-0.013271985575556755]},{"text":"Spissa te nitidum coma, 25 Puro te similem, Telephe, Vespero Tempestiva petit Rhode; Me lentus Glycerae torret amor meae.","book":"Homage to Catalonia","chapter":21,"embedding":[-0.001406637136824429,0.004818817600607872,0.005157070234417915,-0.01158907264471054,-0.06703859567642212,-0.001218810910359025,0.08158168196678162,0.08967072516679764,0.004918365739285946,0.035956285893917084,0.030163312330842018,-0.04970128461718559,-0.03845566511154175,-0.03236854821443558,-0.08117461949586868,-0.051723625510931015,-0.0175746139138937,0.016245028004050255,0.01313704065978527,0.08627142757177353,0.07020687311887741,0.020061904564499855,-0.06862718611955643,0.07342501729726791,-0.0444183349609375,0.018739622086286545,-0.09085540473461151,-0.013626419939100742,0.013832161203026772,-0.06246667355298996,-0.015413402579724789,0.15639519691467285,0.07500182092189789,-0.008968676440417767,-0.03232111781835556,0.03181294724345207,-0.05028241127729416,-0.04342484474182129,-0.014361360110342503,0.005401866044849157,-0.027074415236711502,-0.042283426970243454,-0.07911764830350876,0.024350130930542946,-0.0024138346780091524,-0.06573314964771271,-0.006995728705078363,0.0499170646071434,-0.01627611368894577,0.04873577877879143,-0.1514693945646286,0.026778699830174446,-0.058804020285606384,0.05787660926580429,-0.013028554618358612,0.046848781406879425,-0.017145434394478798,0.011917777359485626,0.06065467372536659,-0.023774731904268265,0.018611973151564598,0.036759864538908005,0.016816716641187668,0.0023484101984649897,0.019137302413582802,0.039114534854888916,0.03405790030956268,0.010117948055267334,-0.07908833026885986,-0.019725119695067406,0.12822148203849792,-0.04026109725236893,-0.01805979199707508,0.0866565927863121,-0.1317019760608673,0.05183720961213112,0.013777977786958218,-0.06031736359000206,-0.02741429954767227,-0.015180040150880814,-0.05183327570557594,-0.005416464060544968,-0.004882564768195152,-0.0045300982892513275,-0.06928059458732605,0.04273747280240059,-0.000901986553799361,-0.0033295652829110622,0.06512169539928436,-0.0384233258664608,-0.028644438832998276,0.05744576454162598,-0.050614070147275925,-0.062070075422525406,0.0021510047372430563,0.04363417997956276,-0.06161702796816826,-0.08536156266927719,0.0009311047615483403,0.025613244622945786,0.059200335294008255,0.05124044045805931,-0.014855178073048592,0.08714175224304199,-0.09106826037168503,0.015221958048641682,0.04159567505121231,-0.11699557304382324,0.023428291082382202,-0.007245241664350033,-0.02894705720245838,0.03374682366847992,0.016594504937529564,-0.05417080223560333,0.014747712761163712,0.03500464931130409,-0.015594540163874626,-0.02215901017189026,0.09639312326908112,0.0009110836545005441,0.03737882897257805,-0.007064559031277895,-0.05795815587043762,-0.04079929366707802,-0.048057522624731064,-0.02052847109735012,0.05596676841378212,8.330073860860937e-33,0.03382061421871185,-0.010404294356703758,0.011167937889695168,0.06329134106636047,0.07162173092365265,-0.03586241975426674,-0.05966426804661751,-0.038429129868745804,-0.007833419367671013,-0.06355910003185272,-0.06535188853740692,-0.0381489098072052,-0.03363421931862831,0.014921889640390873,-0.05755964666604996,0.045081332325935364,0.08493464440107346,-0.06091833487153053,-0.010811452753841877,-0.009028421714901924,-0.043151143938302994,0.03152589872479439,-0.010526265017688274,-0.035084743052721024,-0.05465729162096977,-0.02660481259226799,-0.003825207706540823,-0.018280133605003357,0.024941163137555122,0.01522970013320446,0.0603327676653862,0.05670638754963875,0.02150985784828663,-0.03204161301255226,0.016727911308407784,-0.06511241942644119,-0.005766550078988075,-0.009119010530412197,-0.020037366077303886,0.054368868470191956,-0.0005990727804601192,0.04568976163864136,0.04361898824572563,0.09297899901866913,0.011863445863127708,-0.02355540730059147,0.05059973895549774,0.04363521933555603,0.12566784024238586,0.007901149801909924,-0.032728731632232666,-0.03677422180771828,-0.0899420976638794,-0.09870036691427231,0.013417412526905537,0.06528721004724503,-0.06868281215429306,0.05205124244093895,0.033063411712646484,0.022657230496406555,0.03313267230987549,-0.07537615299224854,0.03762220963835716,-0.03447563946247101,0.06282012909650803,-0.003386781318113208,-0.10448137670755386,-0.037865329533815384,0.11965534090995789,-0.0457133986055851,-0.09299612790346146,-0.017501190304756165,0.03928682953119278,0.009249389171600342,0.045584049075841904,0.003922485280781984,0.08842397481203079,-0.022010255604982376,-0.04496592655777931,-0.030770137906074524,-0.054191067814826965,0.02342498116195202,0.009068801999092102,0.06485229730606079,0.09856940805912018,0.00005491212141350843,-0.012403723783791065,-0.030139045789837837,0.004841136280447245,0.04399891197681427,-0.031854987144470215,0.028604445978999138,0.06481693685054779,-0.1028258353471756,-0.02875189110636711,-8.08654081872933e-33,0.019517796114087105,-0.054355621337890625,-0.07641248404979706,0.07265754789113998,0.0054332539439201355,0.0009265550179407,-0.04915187880396843,0.11236681044101715,-0.0004896793980151415,-0.03501991182565689,-0.06250395625829697,-0.009806914255023003,0.09687930345535278,-0.03377360850572586,-0.034126926213502884,0.11056859791278839,0.15292391180992126,-0.025315741077065468,-0.03988702967762947,-0.03673955053091049,-0.07110682874917984,0.0019104867242276669,-0.00898519903421402,0.006579762324690819,0.03154973313212395,0.03478504344820976,0.011637943796813488,-0.04582463577389717,-0.07367968559265137,-0.07160572707653046,0.10868026316165924,-0.0002724049554672092,-0.018325407058000565,0.0788235291838646,-0.03407138213515282,0.04067656397819519,0.12950830161571503,-0.013053510338068008,-0.03447087109088898,-0.04065525904297829,-0.030597727745771408,0.02409909851849079,0.11947941780090332,-0.014124411158263683,-0.026707611978054047,-0.03232980892062187,-0.03549163043498993,-0.03661525249481201,-0.06293297559022903,0.037572626024484634,0.09551982581615448,-0.014545160345733166,-0.02399039827287197,0.0022744284942746162,0.07685171067714691,-0.11011149734258652,-0.020448237657546997,-0.04169293865561485,-0.04604468494653702,-0.007818126119673252,0.08359014987945557,-0.021457500755786896,-0.053952693939208984,-0.07965769618749619,0.04032045602798462,0.004498090595006943,0.0026709558442234993,0.04433464631438255,-0.026857974007725716,0.044416382908821106,0.038497474044561386,-0.1152433454990387,-0.1039067953824997,-0.03419121727347374,-0.03141987696290016,-0.005315703805536032,-0.009690502658486366,0.00415793526917696,0.0069595817476511,0.0019847021903842688,0.014750797301530838,-0.017072172835469246,-0.07323736697435379,-0.013690555468201637,0.002841377630829811,-0.008021289482712746,0.026986008509993553,0.03486334905028343,0.06570962071418762,-0.01897689513862133,-0.014322195202112198,0.002542956732213497,-0.006592182442545891,-0.09990134090185165,0.015984371304512024,-3.8490487241915616e-8,0.09016714245080948,-0.06483569741249084,-0.07486633211374283,0.035828813910484314,0.006081238389015198,-0.06604469567537308,-0.012523911893367767,-0.0076598371379077435,0.010731329210102558,-0.006008712574839592,-0.0533638522028923,-0.05422810837626457,0.03335602954030037,-0.03399021178483963,0.08157168328762054,0.03875122219324112,0.031881172209978104,0.06743542104959488,-0.023105861619114876,-0.01620117574930191,0.05627024546265602,-0.024201346561312675,-0.03429132699966431,0.011530039831995964,-0.03464346006512642,0.008668007329106331,0.055995162576436996,-0.09807874262332916,0.01183741632848978,-0.0567750446498394,-0.014553667977452278,0.05948243290185928,0.01952146552503109,-0.04426481947302818,-0.024496953934431076,0.04183885455131531,0.02263626828789711,0.013075108639895916,0.04966968297958374,0.019607901573181152,0.07850562781095505,0.005440475419163704,0.07068942487239838,0.009741711430251598,0.01566949300467968,-0.08325168490409851,-0.004098675213754177,-0.013181755319237709,0.017036424949765205,-0.05288190022110939,-0.03847971931099892,0.044029947370290756,0.06029610335826874,0.047466669231653214,-0.01454605907201767,-0.03456444293260574,0.07268711924552917,0.038114216178655624,-0.016741333529353142,-0.019768718630075455,0.09101877361536026,0.0929865688085556,-0.042358703911304474,-0.054962605237960815]},{"text":"Dura post paullo fugies inaudax Proelia raptor, Cum per obstantis iuvenum catervas 5 Ibit insignem repetens Nearchum: Grande certamen, tibi praeda cedat Maior an illi.","book":"Homage to Catalonia","chapter":21,"embedding":[0.020324887707829475,0.05486660078167915,-0.03287217393517494,0.00934266671538353,-0.1136779934167862,0.02164001204073429,0.08253180235624313,0.10798534750938416,0.04290883243083954,0.030192185193300247,0.08962474763393402,-0.12933099269866943,0.06786341220140457,-0.08475030958652496,-0.04103454202413559,-0.05631241574883461,-0.00932432059198618,0.04389036446809769,-0.03707538917660713,-0.026950689032673836,-0.03161507472395897,-0.019038774073123932,0.010997711680829525,0.053120385855436325,-0.14350509643554688,0.022235283628106117,-0.02878311462700367,0.008647732436656952,-0.016741635277867317,-0.09030663222074509,0.004182215314358473,0.0465925894677639,0.017880123108625412,-0.00981023907661438,-0.004523887299001217,0.0067320032976567745,-0.085514135658741,-0.02930622175335884,0.05187855660915375,0.007816283032298088,-0.00588145200163126,-0.03799596056342125,-0.05964936316013336,-0.05272023007273674,-0.004504179581999779,0.020404014736413956,-0.012348423711955547,0.060366347432136536,-0.007586681749671698,0.0035103028640151024,-0.06149481236934662,0.017768781632184982,0.03355924040079117,0.007661410141736269,0.007755436468869448,-0.11512730270624161,0.03247483819723129,-0.10480807721614838,0.013012902811169624,-0.03835534676909447,-0.019385062158107758,0.06044425442814827,-0.03025655448436737,0.008411386050283909,-0.000009335853974334896,-0.045384667813777924,-0.015883401036262512,0.07461230456829071,-0.023411430418491364,0.04553164169192314,0.16316016018390656,-0.0778053030371666,-0.09039651602506638,0.03288112208247185,-0.0606391616165638,0.007184525951743126,0.0008811659063212574,-0.02301243506371975,0.015132970176637173,-0.00801920983940363,-0.019653502851724625,0.05214255303144455,0.03632493317127228,-0.01745772361755371,0.018219787627458572,0.024008361622691154,0.050540633499622345,0.024164743721485138,0.001275709131732583,-0.04856806620955467,0.046950727701187134,0.049982767552137375,-0.0696575865149498,-0.02858538180589676,0.053112417459487915,-0.02864512801170349,-0.027737922966480255,-0.046434611082077026,0.000257661595242098,0.025529177859425545,0.020427415147423744,-0.033983875066041946,-0.039879534393548965,0.04187823086977005,-0.08559104800224304,-0.017928048968315125,0.027278555557131767,-0.06635991483926773,0.049319926649332047,0.02285328507423401,-0.06394722312688828,-0.0994974672794342,-0.1012556180357933,-0.0324087031185627,0.03264439478516579,0.04648849740624428,0.0166965089738369,0.034217141568660736,0.04272313416004181,-0.09193149954080582,-0.0017785198288038373,-0.021960020065307617,0.0017365203239023685,-0.021368462592363358,0.00842203851789236,-0.028888436034321785,0.0014514005742967129,1.281593736243538e-32,-0.07000456005334854,-0.15377511084079742,-0.018720701336860657,0.064374640583992,0.026753069832921028,-0.06434551626443863,-0.02354951575398445,-0.09542842209339142,0.061699867248535156,-0.07056786864995956,-0.07367952913045883,0.008220219053328037,-0.035686589777469635,0.06836381554603577,-0.019306838512420654,-0.01761605404317379,0.06292691081762314,-0.04772089049220085,-0.02714429795742035,-0.03897726908326149,-0.01818777061998844,0.0109024066478014,0.06422349065542221,0.013574960641562939,0.0007722192676737905,0.08324987441301346,0.03035122901201248,-0.09617362171411514,0.008897167630493641,0.019473286345601082,0.03821131959557533,-0.04405200108885765,0.006591948214918375,-0.04676724225282669,0.015966834500432014,0.03578634187579155,0.0009903589962050319,-0.018326668068766594,-0.08350760489702225,-0.023027269169688225,0.0075536142103374004,-0.040087226778268814,0.013944349251687527,0.0018990581156685948,0.03265899047255516,0.09366107732057571,0.008220971561968327,-0.05249395966529846,0.05496394634246826,0.00561507698148489,0.015902824699878693,0.06696191430091858,-0.002291623502969742,-0.08937845379114151,0.007575077936053276,0.02355518937110901,-0.037162717431783676,0.04349062591791153,-0.0003705570998135954,0.023085225373506546,0.0031307535246014595,0.009842636995017529,0.02111808769404888,0.023824473842978477,0.052398331463336945,-0.036155689507722855,-0.052402716130018234,0.02045164443552494,0.10023928433656693,0.011279062367975712,-0.10921710729598999,0.018585722893476486,-0.015416408888995647,0.03705591708421707,-0.008915203623473644,0.08676940947771072,-0.023101920261979103,-0.04140261560678482,-0.055860914289951324,-0.006148329470306635,-0.10686426609754562,-0.08426070958375931,-0.037398070096969604,0.04936699941754341,0.13057386875152588,0.006925998721271753,-0.008728529326617718,0.01803664304316044,0.05892935022711754,0.11580920219421387,0.014108342118561268,0.08409173041582108,0.004556173458695412,0.05422549322247505,0.021989069879055023,-1.3810063220501357e-32,0.007645002566277981,-0.01316303201019764,-0.039116740226745605,0.07763578742742538,-0.002250007353723049,-0.00511952443048358,-0.10605813562870026,0.07774115353822708,-0.004868749529123306,-0.002239110181108117,-0.11356665939092636,-0.01991863362491131,0.08578420430421829,-0.024640368297696114,-0.007021036930382252,0.09309937804937363,0.04285682737827301,0.06628212332725525,-0.07520230859518051,0.03500191867351532,-0.02341289259493351,0.0363360233604908,0.009151604026556015,-0.0519113689661026,-0.055026229470968246,0.04101846367120743,0.10296988487243652,-0.06019970774650574,-0.018178405240178108,-0.05552767962217331,0.07683806121349335,0.0201894398778677,-0.008531913161277771,-0.0162289347499609,0.014584633521735668,-0.013112593442201614,0.16100196540355682,-0.04939202591776848,0.011566718108952045,0.04968549311161041,0.007906470447778702,0.06316661834716797,0.07285140454769135,0.012103907763957977,0.030752990394830704,-0.04952790588140488,-0.09088049083948135,-0.03664717078208923,-0.03502870723605156,0.0383232943713665,0.05065647140145302,-0.011141116730868816,-0.02246999368071556,-0.04667620733380318,0.062218714505434036,-0.10082104802131653,0.02775253728032112,-0.052011676132678986,-0.06626831740140915,-0.0048053935170173645,-0.003570553148165345,-0.0030589073430746794,0.03348270803689957,-0.07608612626791,0.06500865519046783,-0.0017397922929376364,-0.03082883730530739,0.01918826997280121,-0.028783123940229416,-0.00042811522143892944,0.0967893898487091,-0.09073363989591599,-0.09602788090705872,-0.06921211630105972,-0.06409785896539688,0.0328645296394825,-0.00768673000857234,0.07571882009506226,0.051471564918756485,0.06387875974178314,-0.008229834027588367,-0.04694438725709915,0.0021831602789461613,-0.027893930673599243,-0.018155815079808235,0.0018869135528802872,0.05465290695428848,-0.052842918783426285,0.05757004767656326,-0.009391475468873978,0.020497608929872513,0.025770969688892365,0.03994858264923096,-0.06673566997051239,-0.051889002323150635,-5.072014630513877e-8,0.00011738600733224303,-0.07399871200323105,-0.0654866099357605,0.04613880440592766,0.020498374477028847,-0.04948406666517258,-0.04967323690652847,-0.01432387251406908,0.0006848910707049072,0.05466261878609657,-0.006797918118536472,-0.017324604094028473,-0.01109861209988594,-0.022031763568520546,0.009057462215423584,0.03302978724241257,0.012833787128329277,0.00969483982771635,-0.01634068228304386,-0.08348441123962402,-0.0059326388873159885,-0.03523455560207367,-0.009234856814146042,-0.03155231475830078,-0.0842168852686882,-0.03769524022936821,-0.011006704531610012,-0.05833907052874565,0.01290285773575306,-0.06347426772117615,0.04103711247444153,0.07770511507987976,0.016886884346604347,-0.037261974066495895,-0.027204543352127075,0.06882605701684952,0.10433134436607361,-0.0009150785626843572,0.010965707711875439,0.031309984624385834,0.013934112153947353,-0.041411761194467545,0.08590333163738251,-0.04771723970770836,0.021235646679997444,-0.03742311894893646,0.04920613393187523,-0.025668393820524216,-0.0012258647475391626,-0.04220324754714966,-0.0837119072675705,0.03233196958899498,0.09562217444181442,0.11942825466394424,-0.013561399653553963,0.06399654597043991,-0.00919763371348381,0.03764522448182106,0.01762455143034458,0.021843858063220978,0.05357447266578674,0.03775762394070625,0.0180034339427948,-0.0027266324032098055]},{"text":"O nata mecum consule Manlio, Seu tu querellas sive geris iocos Seu rixam et insanos amores Seu facilem, pia testa, somnum, Quocumque lectum nomiue Massicum 5 Servas, moveri digna bono die, Descende, Corvino iubente Promere languidiora vina.","book":"Homage to Catalonia","chapter":21,"embedding":[-0.005190534051507711,0.015487631782889366,-0.007091928739100695,-0.020996002480387688,-0.12420983612537384,-0.018447596579790115,0.014483021572232246,0.05541813001036644,0.026870669797062874,0.0564756914973259,0.08289726078510284,-0.07620710134506226,-0.011635538190603256,-0.03088383749127388,-0.04910255968570709,-0.05200379341840744,-0.018835745751857758,0.09734749794006348,0.011513110250234604,-0.0019774020183831453,0.07111169397830963,-0.02165367268025875,-0.055154360830783844,0.04764719679951668,-0.10664795339107513,0.029436782002449036,-0.030088622123003006,-0.03404191508889198,0.04992280900478363,-0.05914926528930664,0.018569590523838997,0.11178658902645111,0.08216927200555801,-0.03882179036736488,0.021766522899270058,0.04212666302919388,0.02312678098678589,-0.136001318693161,0.052711568772792816,0.05168202146887779,0.0012823613360524178,-0.01825754903256893,-0.01858852058649063,0.0026760408654809,-0.0049024405889213085,-0.05135923996567726,0.009562084451317787,0.012748058885335922,-0.010271238163113594,0.0013250516494736075,-0.11658232659101486,0.005366541910916567,-0.07051872462034225,0.01668432727456093,-0.07713859528303146,0.02650403417646885,0.10988491028547287,-0.04487095773220062,0.041467130184173584,0.0015804070280864835,0.04925694689154625,-0.02032497152686119,0.04157973825931549,0.06426103413105011,-0.038736701011657715,0.020368346944451332,0.003814907278865576,-0.04734942317008972,-0.08147689700126648,0.04752856120467186,0.10439574718475342,-0.08153510093688965,-0.01351937185972929,0.08346007019281387,-0.053216882050037384,0.04702046886086464,-0.05747291445732117,-0.022832855582237244,0.0044391462579369545,-0.07309138774871826,0.002605386544018984,0.0047755311243236065,-0.026820629835128784,-0.035988565534353256,-0.03149816766381264,0.03448401018977165,-0.01456721406430006,-0.015359065495431423,0.018163537606596947,-0.028440674766898155,0.0023586631286889315,0.002874186960980296,-0.10626625269651413,-0.03555731102824211,-0.03057856112718582,0.007591451983898878,-0.06274154037237167,-0.012018729001283646,-0.011634320951998234,-0.008174845017492771,0.024526428431272507,0.05607231706380844,-0.10476068407297134,0.05440787971019745,-0.10947016626596451,0.04583325982093811,-0.03470863029360771,-0.1094607561826706,0.06828241795301437,0.08199472725391388,-0.09625722467899323,-0.05236070975661278,-0.08497984707355499,-0.05791101232171059,-0.014134344644844532,-0.02690822072327137,0.04143039509654045,-0.050278499722480774,-0.02024921029806137,-0.011343095451593399,0.04039142280817032,-0.07310795783996582,-0.028582265600562096,-0.06189759820699692,0.027050890028476715,-0.07200008630752563,-0.00011240124877076596,1.781917486605708e-32,-0.015641527250409126,-0.02062932960689068,0.026873759925365448,-0.020845962688326836,0.00169025466311723,-0.04762212187051773,0.012541663832962513,0.03312893956899643,-0.02347031980752945,-0.06059526279568672,-0.05369047075510025,0.006570000667124987,-0.0036931962240487337,0.019719809293746948,-0.05593196302652359,0.044683706015348434,0.06740230321884155,-0.0748954713344574,0.03029525838792324,-0.0383111797273159,0.0032123832497745752,0.010259376838803291,0.000559172302018851,-0.03562052547931671,0.054973166435956955,0.03913743421435356,-0.024187559261918068,-0.05514869838953018,0.024444006383419037,0.013958818279206753,-0.005690294783562422,-0.02163114957511425,-0.013951718807220459,-0.03811041638255119,0.023013075813651085,-0.009790096431970596,-0.017427518963813782,-0.005908128805458546,-0.029615946114063263,0.008736232295632362,-0.01604670099914074,0.06114518269896507,0.08191665261983871,0.024342797696590424,0.031902533024549484,0.043970540165901184,0.034472279250621796,0.027721311897039413,0.1308412104845047,-0.0035794288851320744,-0.028669625520706177,-0.02899697795510292,-0.0703759416937828,-0.02610105462372303,0.07389790564775467,0.010804255492985249,-0.07726802676916122,0.13010792434215546,-0.039990026503801346,-0.047978825867176056,0.044831473380327225,-0.07117527723312378,-0.003651999169960618,0.04135981574654579,0.06347349286079407,-0.005765505600720644,-0.07413982599973679,0.038794152438640594,0.10909362882375717,0.020889895036816597,-0.0745856910943985,-0.03797424957156181,-0.08790837973356247,0.074099101126194,-0.03582216054201126,0.030291425064206123,0.06899251788854599,-0.03129170089960098,-0.032643869519233704,-0.025452738627791405,-0.02059859037399292,-0.04030511528253555,0.031045272946357727,-0.012940424494445324,0.10647481679916382,0.04713856801390648,0.03823670744895935,0.006341585889458656,0.06666775792837143,0.0366998054087162,0.1103096678853035,0.0020983596332371235,0.05463472753763199,-0.020986096933484077,-0.034994274377822876,-1.6316918064961152e-32,-0.0244621429592371,-0.010033094324171543,-0.0450432114303112,0.07581227272748947,-0.01318531297147274,-0.05635072663426399,-0.07133784890174866,0.018898582085967064,-0.044183362275362015,0.007237148005515337,-0.07949573546648026,-0.04064659774303436,0.1459343433380127,-0.06979206949472427,-0.0579998716711998,0.051546432077884674,0.09100443124771118,-0.0026056382339447737,-0.00028079297044314444,-0.013624892570078373,-0.016076451167464256,0.08031871914863586,-0.004527818411588669,-0.05691509693861008,-0.06853349506855011,-0.0012590092374011874,0.0475228987634182,-0.030650006607174873,-0.04841812700033188,0.040181178599596024,0.035609934478998184,-0.0029074016492813826,-0.07267376780509949,0.07103084027767181,0.04439983144402504,0.07498973608016968,0.05163085460662842,0.03983476012945175,0.03056429512798786,0.05027167499065399,-0.07035625725984573,0.10602789372205734,0.09930983930826187,0.000816687592305243,0.025133928284049034,-0.03763042762875557,-0.06428351998329163,-0.009587014093995094,-0.10624159127473831,0.019106170162558556,-0.004017157014459372,-0.0025820445735007524,-0.05556502938270569,-0.06175859645009041,0.06095443665981293,-0.05003001540899277,0.02443736046552658,-0.06698795408010483,-0.04538185894489288,-0.035024262964725494,0.10137203335762024,0.03310973942279816,-0.02724424935877323,-0.02900593727827072,0.046482205390930176,0.062190402299165726,-0.07200178503990173,0.08085190504789352,-0.09625208377838135,0.08600291609764099,0.06793549656867981,-0.10342562198638916,-0.08755230903625488,-0.012139818631112576,-0.034045204520225525,-0.005389024503529072,-0.07005195319652557,0.028878245502710342,-0.004617633298039436,-0.009912277571856976,-0.06655243039131165,-0.07082711905241013,-0.06442402303218842,0.026311345398426056,-0.026362191885709763,-0.006161980796605349,-0.010038037784397602,0.02219350077211857,0.04572581127285957,0.03865911439061165,-0.02675420045852661,-0.009771506302058697,0.05660334974527359,-0.08178148418664932,0.02999705821275711,-6.034655797293453e-8,-0.0270377304404974,-0.0868353471159935,0.0237952321767807,0.02316952310502529,0.04391904175281525,-0.0639532133936882,-0.08088622242212296,-0.033905256539583206,0.043380096554756165,0.06005706265568733,-0.04503941535949707,-0.008997691795229912,0.005082954186946154,0.013821019791066647,0.04051902890205383,0.05263202637434006,0.10526518523693085,0.03870096430182457,-0.011984164826571941,-0.029601233080029488,0.008149873465299606,-0.008414375595748425,-0.01582457683980465,-0.03347865492105484,-0.014305347576737404,0.04466499388217926,0.053811196237802505,-0.01864120177924633,-0.018237099051475525,-0.033126190304756165,0.004586056340485811,-0.004026250913739204,-0.01520422101020813,-0.0669257640838623,0.013272386975586414,0.09597883373498917,0.015185503289103508,0.057256896048784256,0.03244077041745186,0.001252850634045899,0.03463856875896454,0.03046669065952301,0.026661669835448265,0.018920578062534332,0.0300215482711792,-0.015006111934781075,0.014973417855799198,0.010149141773581505,0.023001719266176224,-0.025938725098967552,-0.03307701274752617,-0.0505925789475441,0.010633854195475578,0.04127967730164528,0.004794950596988201,-0.033335719257593155,0.0019958133343607187,0.12107571959495544,0.005362159572541714,0.007536592427641153,0.024227619171142578,0.07365136593580246,0.09348441660404205,-0.086820587515831]},{"text":"Tu lene tormentum ingenio admoves Plerumque duro; tu sapientium Curas et arcanum iocoso 15 Consilium retegis Lyaeo; Tu spem reducis mentibus anxiis Virisque et addis cornua pauperi, Post te neque iratos trementi Regum apices neque militum arma. 20 Te Liber et, si laeta aderit, Venus Segnesque nodum solvere Gratiae Vivaeque producent lucernae, Dum rediens fugat astra Phoebus.","book":"Homage to Catalonia","chapter":21,"embedding":[-0.01648624800145626,-0.0016202976694330573,-0.02564733661711216,0.013679071329534054,-0.05580742284655571,0.019207749515771866,0.028369203209877014,0.00934380479156971,-0.028356468304991722,-0.015896974131464958,0.050162747502326965,-0.08212075382471085,0.008920861408114433,-0.07259770482778549,-0.10569454729557037,-0.024424640461802483,0.005490107461810112,0.09325513243675232,-0.003697166917845607,-0.01861564815044403,0.07245256006717682,0.060580141842365265,-0.042056385427713394,-0.00453560333698988,-0.0914844498038292,0.005944493226706982,-0.0964033380150795,-0.010885002091526985,0.02398621290922165,-0.1100827232003212,-0.013832553289830685,0.1243697926402092,0.02073105052113533,-0.0003361197013873607,-0.013437370769679546,0.036546606570482254,-0.05091572180390358,-0.10124556720256805,0.03935980796813965,0.010740241967141628,0.005296825896948576,-0.021222062408924103,-0.03132547065615654,0.00010723124432843179,-0.043617960065603256,-0.022361593320965767,-0.060895465314388275,0.032453298568725586,0.05236855521798134,-0.048569586127996445,-0.031537193804979324,-0.04276599362492561,-0.05662192776799202,0.024223586544394493,-0.05794353783130646,0.01449691690504551,0.012733066454529762,0.03005414642393589,0.0512906089425087,-0.006463171914219856,0.04097951203584671,0.04165922850370407,-0.008979782462120056,-0.026581648737192154,-0.016503145918250084,-0.007936016656458378,-0.06938618421554565,-0.02695828303694725,-0.04361528903245926,-0.018490057438611984,0.08013057708740234,-0.0019320540595799685,-0.03137574344873428,0.09759506583213806,-0.0926704853773117,0.11439437419176102,-0.01072726771235466,0.0058672321029007435,-0.006981628015637398,-0.03963674232363701,0.020850814878940582,0.08585894852876663,0.03771548718214035,0.0073994481936097145,-0.024540482088923454,0.028740201145410538,-0.008067321963608265,-0.03421233221888542,0.10095976293087006,0.014805080369114876,0.03530377894639969,0.07161418348550797,-0.07583313435316086,-0.02852613478899002,-0.023584209382534027,0.059393636882305145,0.0075387246906757355,-0.0380159392952919,-0.049138784408569336,-0.011291846632957458,-0.00584854232147336,-0.033125001937150955,-0.041947998106479645,0.008784030564129353,-0.13843326270580292,-0.08611045032739639,-0.07252828776836395,-0.075973279774189,0.03825750574469566,0.043016593903303146,-0.07604062557220459,-0.05136018618941307,-0.024024128913879395,-0.11087615042924881,-0.023458097130060196,-0.027743728831410408,-0.01276883389800787,-0.10952445864677429,-0.028377000242471695,-0.09330181032419205,0.0434674471616745,-0.0009848295012488961,0.008996112272143364,-0.06922464072704315,0.05091799795627594,-0.03852291405200958,0.008900171145796776,2.505654664727605e-32,0.021240120753645897,-0.05208677053451538,-0.015133037231862545,0.01316810492426157,0.03076986037194729,0.002116752788424492,-0.08230666816234589,0.026071611791849136,0.014576980844140053,-0.10376589745283127,-0.1360003799200058,-0.032263558357954025,-0.044866178184747696,0.005559091456234455,-0.002091930480673909,0.03641141206026077,0.11492777615785599,-0.02982081100344658,0.0275769904255867,-0.024873998016119003,-0.07955051958560944,0.020590635016560555,0.009174149483442307,0.010848605073988438,-0.06207563728094101,0.0003010903892572969,0.005918713286519051,-0.10015842318534851,0.00771126477047801,-0.007532623130828142,0.036297041922807693,-0.03542494401335716,-0.007701739203184843,-0.012513622641563416,-0.025908032432198524,0.013271399773657322,-0.039190806448459625,-0.011095975525677204,-0.04456249251961708,-0.005952618550509214,0.018192119896411896,0.08681392669677734,0.07269226014614105,0.04536256939172745,0.08829531818628311,0.01709035411477089,-0.01373414695262909,0.05336650460958481,0.060591310262680054,-0.020712193101644516,-0.016466666013002396,0.07804597169160843,0.05581890419125557,0.01790442503988743,-0.0064763654954731464,0.02187180705368519,-0.007106834091246128,0.041195206344127655,-0.012942330911755562,0.008665304630994797,0.0393570214509964,0.007993876934051514,0.012033531442284584,0.05538816750049591,0.00919889472424984,0.04857286438345909,-0.0817440077662468,0.0054809534922242165,0.09357678890228271,0.01004429068416357,-0.07064773887395859,-0.07025542110204697,0.040618572384119034,0.004838532768189907,0.005101801361888647,0.006597012281417847,0.055744804441928864,-0.050961174070835114,-0.04421544075012207,-0.016578959301114082,-0.09065570682287216,-0.07742591947317123,0.03479543328285217,0.006135417148470879,0.0529458150267601,-0.004207212943583727,-0.07492268830537796,0.03576408326625824,0.08590088784694672,0.01832299306988716,0.08981584012508392,0.005296861287206411,-0.05402680113911629,0.03737936168909073,-0.01934976875782013,-2.223288725906202e-32,-0.024593746289610863,-0.018069954589009285,-0.05958705395460129,0.024809302762150764,0.029042020440101624,-0.01712282933294773,-0.11499722301959991,-0.004982475657016039,-0.013085522688925266,-0.03998926281929016,-0.06499052792787552,0.004043896216899157,0.06836550682783127,-0.018047336488962173,-0.02215861715376377,0.05907411873340607,0.08932563662528992,0.0668182298541069,-0.04467752203345299,-0.00728566711768508,-0.07079735398292542,0.10097524523735046,-0.020695656538009644,-0.08451006561517715,-0.021339111030101776,-0.02634788118302822,0.037619635462760925,-0.021284088492393494,-0.07297655940055847,0.011767426505684853,0.1412842571735382,-0.021184494718909264,-0.029262490570545197,0.06552404165267944,0.03042607009410858,-0.012599717825651169,0.13282828032970428,-0.10705187171697617,0.03884444758296013,0.033483028411865234,-0.016073711216449738,0.06049872189760208,0.023901989683508873,0.018462058156728745,0.07626212388277054,-0.055025432258844376,-0.10497207194566727,-0.006828418467193842,-0.06003681570291519,0.04982805624604225,0.10562647134065628,-0.0005018693627789617,-0.022669360041618347,-0.05576396360993385,0.019058750942349434,-0.08298511803150177,0.0011770628625527024,-0.029944125562906265,0.000253811216680333,0.03973908722400665,0.057834696024656296,-0.0093513960018754,-0.048407770693302155,0.004181059077382088,0.04327983781695366,0.06876913458108902,-0.01086699403822422,0.11719630658626556,-0.0933220162987709,0.07693439722061157,0.05736939236521721,-0.0005613401881419122,-0.08738302439451218,0.021882593631744385,-0.010601354762911797,0.018619412556290627,0.011869192123413086,0.03129656985402107,-0.005848890636116266,0.0526009164750576,-0.08344820886850357,-0.015606032684445381,0.003690409241244197,-0.01223989948630333,-0.007617513183504343,-0.03663839399814606,-0.024538319557905197,0.03511805459856987,-0.021393688395619392,0.04470273107290268,-0.03884681686758995,-0.09637245535850525,0.014736184850335121,-0.004031815100461245,0.11889722943305969,-6.9549500381072e-8,0.01867610029876232,-0.012406883761286736,-0.009125559590756893,0.03267970681190491,0.0928373858332634,-0.0501960851252079,0.034928929060697556,0.08690867573022842,-0.01468245405703783,-0.019046401605010033,-0.05129712447524071,0.009060585871338844,-0.005552252754569054,0.06780585646629333,0.08440712839365005,0.03074726276099682,0.12198469787836075,0.07841368019580841,-0.06167537719011307,-0.04297761246562004,0.0562705360352993,-0.005617869086563587,-0.059691425412893295,-0.04781202971935272,-0.06841235607862473,-0.0732526183128357,0.05119986832141876,-0.03724779188632965,-0.01087544858455658,-0.018339049071073532,0.03906964510679245,0.0021804405841976404,0.05841439962387085,-0.06432840973138809,-0.01683220826089382,0.07520987093448639,0.026068726554512978,0.016631057485938072,0.0014470494352281094,0.05462464317679405,-0.010756433010101318,-0.00328635866753757,0.04757530987262726,-0.05166773870587349,-0.022857241332530975,-0.032613616436719894,-0.04549780115485191,-0.012879712507128716,0.04183295741677284,-0.050027571618556976,0.008719904348254204,0.015012889169156551,0.077269047498703,-0.032959818840026855,0.013827917166054249,-0.08333395421504974,0.03354540467262268,0.02969929575920105,0.027471423149108887,0.015092954970896244,0.03562196344137192,0.028515752404928207,0.1133807823061943,0.011545490473508835]},{"text":"Caelo supinas si tuleris manus Nascente luna, rustica Phidyle, Si ture placaris et horna Fruge Laris avidaque porca, Nec pestilentem sentiet Africum 5 Fecunda vitis nec sterilem seges Robiginem aut dulces alumni Pomifero grave tempus anno.","book":"Homage to Catalonia","chapter":21,"embedding":[-0.01904013380408287,0.03255274146795273,-0.08397428691387177,-0.03382344916462898,-0.08505068719387054,0.0012844157172366977,0.02616703137755394,0.02126654051244259,-0.03354594111442566,0.07511760294437408,0.11842890083789825,-0.05955795571208,-0.02188851311802864,-0.03969398885965347,-0.11610474437475204,-0.09693731367588043,-0.018206562846899033,0.03844345733523369,-0.02387906238436699,-0.01104020792990923,0.017069637775421143,0.006974146235734224,0.004091961774975061,-0.02374986931681633,-0.13910497725009918,-0.01749461703002453,-0.11278029531240463,0.015864476561546326,0.026915809139609337,-0.09268298000097275,-0.021869029849767685,0.141423761844635,0.02306276559829712,-0.08933335542678833,-0.012669757939875126,0.05302244797348976,-0.03129710629582405,-0.04967794194817543,0.051946524530649185,0.033719196915626526,-0.008321946486830711,-0.017251690849661827,-0.032353613525629044,0.06775813549757004,-0.05510745942592621,-0.051165249198675156,-0.024704856798052788,0.004301893059164286,0.06668961048126221,-0.016228627413511276,-0.03791838511824608,-0.05556277185678482,-0.007267633453011513,0.05518489331007004,-0.12050992250442505,-0.03338540717959404,0.03405396640300751,-0.07529070973396301,-0.022447792813181877,-0.02785317972302437,-0.00784592516720295,0.07428056001663208,0.022559551522135735,-0.027471503242850304,-0.0051036193035542965,0.0010187115985900164,-0.03093799017369747,-0.01702323742210865,0.020334577187895775,0.025780089199543,0.11197953671216965,-0.03454847261309624,-0.006278390996158123,0.09154730290174484,-0.0878780409693718,0.08994773030281067,-0.0007851585396565497,-0.04437760263681412,-0.014280772767961025,-0.06164570152759552,-0.04226582869887352,-0.002107293112203479,0.0020888573490083218,-0.02037781849503517,0.02025066688656807,0.02498428151011467,-0.017250750213861465,0.007427898235619068,0.017856189981102943,0.04689837992191315,0.03411710262298584,0.05047757923603058,-0.00453625712543726,-0.048734743148088455,-0.024140851572155952,0.012109410017728806,-0.03079666569828987,-0.029314039275050163,-0.03935662657022476,-0.02266615815460682,-0.0344759002327919,-0.05292191728949547,0.05430716276168823,-0.0012319202069193125,-0.09211963415145874,-0.043206751346588135,-0.025490762665867805,-0.11199695616960526,-0.025117238983511925,0.04303043708205223,-0.07152031362056732,-0.031060444191098213,-0.035438064485788345,-0.046010036021471024,0.011787855066359043,0.023595012724399567,0.016202745959162712,-0.06893561035394669,0.0037366836331784725,-0.05421203002333641,0.047914810478687286,-0.03238331526517868,-0.033616647124290466,-0.09461688995361328,0.010169981978833675,-0.11159858852624893,0.025974702090024948,2.414097613793965e-32,-0.04063884913921356,-0.00311883888207376,-0.01744845323264599,0.04038050025701523,0.053904417902231216,-0.014907115139067173,-0.010090640746057034,0.0060190786607563496,0.050529636442661285,-0.04262002557516098,-0.11493678390979767,-0.041490089148283005,0.012266676872968674,-0.019557496532797813,-0.017304256558418274,0.09212925285100937,0.06050993874669075,-0.0443686880171299,-0.004191667772829533,0.05697766691446304,-0.023275021463632584,0.06979508697986603,-0.03242317587137222,-0.0373070128262043,0.04170423001050949,0.05280153453350067,-0.09334197640419006,-0.06941422820091248,-0.007238964084535837,0.016457632184028625,0.14402955770492554,-0.01263477560132742,0.0001852961868280545,-0.030484994873404503,0.06175379455089569,0.054753419011831284,0.02223099209368229,0.003318972187116742,-0.04875698313117027,0.03137988597154617,0.0624200776219368,0.02744879573583603,0.06901378184556961,0.0690222755074501,0.040731724351644516,0.00533243827521801,-0.046167872846126556,0.027291899546980858,0.10979469865560532,0.00663389079272747,0.046636808663606644,0.03184057027101517,-0.015663322061300278,-0.01866815611720085,0.037581540644168854,0.0467635914683342,0.010134190320968628,0.04844169318675995,-0.04424477741122246,-0.021365350112318993,0.06343086063861847,-0.006894566118717194,0.03984624147415161,-0.018720578402280807,0.037092044949531555,-0.12494950741529465,-0.02515565976500511,-0.0009731712052598596,0.0017234492115676403,-0.036935754120349884,-0.10569154471158981,-0.02598884329199791,-0.09914235025644302,0.01828007958829403,-0.015323112718760967,0.04700670391321182,0.053808361291885376,-0.02982933819293976,-0.04796163737773895,-0.025412127375602722,-0.038834348320961,0.018303411081433296,0.0075683887116611,-0.0035015956964343786,0.07393310964107513,0.040889009833335876,0.0004971842281520367,0.12639793753623962,0.0659106895327568,0.07207221537828445,0.08498909324407578,0.04388723894953728,0.0015625235391780734,-0.0019222773844376206,-0.019050030037760735,-2.3114394880847469e-32,-0.02303328551352024,-0.060656994581222534,-0.026697304099798203,0.049196477979421616,-0.018146652728319168,0.016804613173007965,-0.06225064396858215,0.023276297375559807,-0.020978892222046852,0.001009328872896731,-0.05027073621749878,-0.015320483595132828,0.08547792583703995,-0.049306321889162064,-0.015434656292200089,0.07234997302293777,0.030410990118980408,0.0384516604244709,-0.01002698577940464,-0.02598702162504196,-0.1259499341249466,0.09091965854167938,0.06367973238229752,-0.09007319808006287,-0.020174819976091385,-0.0014267234364524484,0.020106397569179535,0.02878796122968197,-0.0925215408205986,0.026113389059901237,0.08323879539966583,-0.020578229799866676,-0.00798935629427433,0.047282736748456955,-0.02346891537308693,0.013841422274708748,0.14575442671775818,-0.04059698060154915,0.03634747117757797,0.06214123219251633,-0.0107983173802495,0.004116171970963478,0.06765943020582199,0.016268925741314888,-0.029756953939795494,-0.05088173598051071,-0.06186992675065994,0.012841051444411278,-0.09420028328895569,0.06400883197784424,0.1148068979382515,-0.013068243861198425,-0.044851213693618774,-0.04157135263085365,0.06445153802633286,0.007521056570112705,-0.034823473542928696,-0.08745355904102325,-0.009893665090203285,0.03620966896414757,0.10045742988586426,-0.011797833256423473,-0.07749050855636597,0.013989386148750782,0.05682361125946045,0.03374357894062996,-0.039920683950185776,0.09669110178947449,-0.038039665669202805,0.012605130672454834,0.037185318768024445,-0.026784885674715042,-0.08781296759843826,-0.024712376296520233,-0.02420627512037754,-0.000767324585467577,-0.0318155512213707,0.029103336855769157,0.04550129920244217,-0.013100194744765759,-0.05528503656387329,-0.08232671022415161,0.012549925595521927,0.015383517369627953,-0.005999152548611164,-0.04032273218035698,-0.0005889578023925424,-0.02284330502152443,0.014722571708261967,-0.04024956375360489,-0.0410400815308094,-0.034028060734272,0.021585697308182716,-0.04658663645386696,0.04813351109623909,-6.821954201541303e-8,0.04557142034173012,-0.055325716733932495,-0.047182463109493256,-0.014353783801198006,0.018890568986535072,-0.042637165635824203,-0.07657796144485474,-0.035291142761707306,0.05823953449726105,0.059135276824235916,-0.09555935859680176,0.013998701237142086,-0.000750164792407304,-0.006771289277821779,0.057559844106435776,0.053149908781051636,0.045588668435811996,0.07065268605947495,-0.049952395260334015,-0.05691679194569588,0.04549108073115349,-0.005323105491697788,-0.06049094349145889,0.01296571921557188,-0.015797046944499016,0.031318772584199905,0.08403649181127548,-0.05782553553581238,0.01008486095815897,-0.023940224200487137,0.016198551282286644,-0.015935979783535004,-0.03672996535897255,-0.10395265370607376,0.028600966557860374,0.05774881690740585,0.027664614841341972,-0.038543034344911575,0.05634661391377449,-0.025950424373149872,0.053521327674388885,-0.00038776014116592705,-0.00501231336966157,-0.01178736798465252,0.008494656533002853,-0.027321942150592804,0.013970201835036278,0.015407731756567955,-0.00956644769757986,-0.09594328701496124,-0.053980983793735504,0.00490213930606842,0.09309767931699753,0.037944771349430084,-0.08228784054517746,-0.07063132524490356,0.08964399248361588,0.07970105111598969,0.019639544188976288,0.0017300412291660905,0.00938709732145071,0.06607068330049515,0.0808405727148056,-0.033261869102716446]},{"text":"Immunis aram si tetigit manus, Non sumptuosa blandior hostia Mollivit aversos Penatis Farre pio et saliente mica. 20 XXIV.","book":"Homage to Catalonia","chapter":22,"embedding":[0.03933577239513397,0.08867223560810089,-0.06810181587934494,0.008134648203849792,-0.07965622842311859,-0.03284737467765808,0.11020506918430328,0.0700860545039177,0.030038127675652504,0.04012430086731911,0.037771180272102356,-0.018461128696799278,0.05359220132231712,0.043912116438150406,-0.06288228183984756,-0.06434550881385803,-0.05487010255455971,0.032129812985658646,0.08686420321464539,-0.04734458401799202,-0.0030348990112543106,0.014389456249773502,-0.012840058654546738,-0.058930713683366776,-0.1944172978401184,0.008029447868466377,-0.0766117200255394,-0.006645097862929106,0.03765054792165756,-0.049094103276729584,-0.040313612669706345,0.0545918308198452,0.04475323483347893,-0.026235956698656082,-0.007174783386290073,-0.026814255863428116,-0.05628712475299835,-0.03563952073454857,0.023907069116830826,0.032509226351976395,0.011586206965148449,-0.031185735017061234,0.028730176389217377,-0.048400554805994034,-0.017784349620342255,0.029737455770373344,-0.037161774933338165,0.06920816749334335,0.03589441254734993,-0.0050838240422308445,-0.06729882955551147,-0.030972491949796677,-0.059509553015232086,0.09428586065769196,-0.053479623049497604,-0.11668862402439117,-0.018631162121891975,-0.055157370865345,-0.05918854475021362,-0.03791596367955208,-0.015354093164205551,0.01831618882715702,0.08586357533931732,0.03756109997630119,-0.021105695515871048,-0.014204020611941814,-0.015741489827632904,-0.015326221473515034,-0.00825672596693039,-0.018083909526467323,0.04723381996154785,0.0077024237252771854,-0.021929021924734116,0.09671679139137268,-0.034942492842674255,0.010915598832070827,-0.009188958443701267,-0.009630275890231133,0.08454190939664841,0.02974090538918972,0.002066756598651409,0.03645797446370125,-0.016079269349575043,0.06960578262805939,0.02673002891242504,-0.016878770664334297,0.0049860067665576935,0.01000204123556614,-0.030959421768784523,-0.00971797201782465,0.03570647910237312,0.014018898829817772,-0.006307883653789759,-0.04089944064617157,0.04091659560799599,-0.028618622571229935,-0.011692382395267487,-0.04868006333708763,-0.06249092146754265,0.024125028401613235,-0.054355014115571976,-0.1038765236735344,0.019266488030552864,-0.007403231225907803,-0.025618134066462517,0.035366084426641464,-0.022418329492211342,-0.15420998632907867,0.045058026909828186,0.039735160768032074,-0.0670761987566948,-0.01856626383960247,-0.05575944110751152,-0.07670746743679047,0.047182563692331314,0.006110742222517729,0.05151992663741112,-0.05102527141571045,0.05712755396962166,-0.054038822650909424,0.07269120961427689,-0.059044212102890015,-0.016979500651359558,-0.037839338183403015,0.0610477514564991,0.03879237174987793,0.05559983476996422,9.447441485403001e-33,-0.05257442593574524,-0.010177369229495525,-0.04544712230563164,0.01720457710325718,0.014763403683900833,0.06290862709283829,0.10877017676830292,-0.04751715064048767,0.04617324098944664,-0.024025795981287956,-0.06680023670196533,-0.07671769708395004,0.04670875146985054,0.036087293177843094,0.023498432710766792,0.08304660767316818,0.08290070295333862,-0.020113931968808174,-0.040616367012262344,0.02130138874053955,-0.02802722342312336,0.04574287310242653,0.0037469062954187393,-0.05238409712910652,0.11123334616422653,0.07977233082056046,-0.06017730012536049,-0.060529422014951706,0.001249918364919722,-0.03768858686089516,0.11810949444770813,0.037223681807518005,-0.06152452528476715,0.025358188897371292,0.020463252440094948,0.0025604479014873505,0.049800049513578415,-0.008263498544692993,-0.006326801609247923,-0.026310663670301437,0.04894378408789635,0.006229533348232508,0.04596754163503647,0.004757578484714031,0.11022510379552841,-0.02621798776090145,-0.06791698932647705,-0.015755631029605865,0.0658201053738594,0.04408927634358406,0.03054538555443287,0.006690030451864004,-0.04452219977974892,-0.0765770748257637,-0.004053376615047455,-0.013322853483259678,-0.0007621695986017585,0.056212056428194046,-0.0542207732796669,0.05488892272114754,-0.04013438895344734,-0.08269645273685455,0.03234776854515076,0.0067345560528337955,0.013483630493283272,-0.04645182192325592,-0.07524311542510986,-0.05465230345726013,-0.023974861949682236,0.006573560647666454,-0.011797303333878517,-0.0755339115858078,-0.04653279110789299,-0.04043067991733551,-0.0557832345366478,0.0072000958025455475,0.06322116404771805,-0.05846334621310234,-0.07478059083223343,0.04008544236421585,-0.018796812742948532,0.039301302284002304,0.05598475784063339,0.03127974644303322,0.016621308401226997,0.012449168600142002,0.013648077845573425,0.025212571024894714,0.04104316979646683,0.017194388434290886,0.0916396751999855,0.10974055528640747,-0.06336137652397156,0.089643694460392,-0.037237558513879776,-1.1309941754619867e-32,-0.0442214198410511,-0.024584325030446053,-0.07965682446956635,-0.00803313683718443,-0.05532379075884819,0.04283784702420235,0.01768113300204277,0.12580694258213043,0.03521113470196724,-0.005087858997285366,0.004656472243368626,-0.07244796305894852,0.024452051147818565,-0.02266881801187992,-0.0208462905138731,0.06733128428459167,-0.009187339805066586,0.06724280118942261,0.011115576140582561,0.03528483211994171,-0.0841185674071312,0.10050664842128754,0.08458799123764038,-0.09687874466180801,0.04730278253555298,-0.007970761507749557,0.029490742832422256,-0.003605892648920417,-0.07535579055547714,-0.0761973112821579,0.09023638814687729,-0.018508754670619965,-0.05277491360902786,0.009855493903160095,0.04023163393139839,-0.02194252796471119,0.13890574872493744,-0.04998103529214859,0.017304163426160812,0.002884854096919298,0.05363858863711357,-0.025479622185230255,0.09514036029577255,0.03962836042046547,0.0552377812564373,0.039059728384017944,-0.03376777097582817,-0.007084016688168049,-0.007133983075618744,0.03456420078873634,0.009073348715901375,-0.08417654037475586,-0.027592241764068604,-0.03501463308930397,0.008425844833254814,-0.03913995251059532,-0.04524703323841095,-0.04557469114661217,-0.021600794047117233,-0.040846534073352814,0.041620783507823944,-0.04943216219544411,-0.0479285903275013,-0.01590895839035511,0.03815397992730141,0.06522104889154434,0.0033182171173393726,-0.03795658424496651,0.05685143545269966,-0.0026873897295445204,-0.018542855978012085,-0.07021118700504303,-0.07893206924200058,-0.08583390712738037,-0.006500364281237125,-0.004559377208352089,-0.06583214551210403,0.06121736764907837,0.059769969433546066,-0.01785227283835411,-0.013762039132416248,-0.05914245545864105,0.045414119958877563,-0.03923388570547104,-0.02472655475139618,-0.0357738621532917,-0.017376724630594254,0.019196417182683945,-0.0060294196009635925,0.02104315161705017,-0.021115539595484734,0.039225585758686066,-0.024765219539403915,-0.09451320767402649,-0.017773138359189034,-4.166384925952116e-8,0.1351710706949234,-0.11268924921751022,-0.0772203877568245,-0.04384133219718933,-0.0065927025862038136,-0.0303803738206625,-0.05291109159588814,-0.04177894443273544,0.09043131023645401,0.05988175421953201,-0.07220767438411713,0.01748564839363098,0.008938830345869064,-0.04605763033032417,0.07798666507005692,-0.00850148405879736,-0.01938353106379509,0.008116637356579304,-0.011542069725692272,-0.07088497281074524,0.044355448335409164,-0.0455094538629055,-0.09023047238588333,-0.017834288999438286,0.002977551892399788,-0.04249781370162964,0.05817840248346329,-0.02938462421298027,-0.0069599938578903675,-0.035661593079566956,-0.033972665667533875,0.06215343996882439,-0.03455230966210365,-0.03150177374482155,0.06143497675657272,0.03354516997933388,0.05725797265768051,0.0026425293181091547,0.06453041732311249,-0.04592055454850197,0.03478286415338516,0.03601476177573204,0.03366066887974739,-0.046272553503513336,0.011478611268103123,-0.048064231872558594,-0.014979453757405281,-0.02561190165579319,0.0451030470430851,-0.14693275094032288,0.00036111706867814064,-0.018986983224749565,0.06471791118383408,0.0014340103371068835,-0.08828538656234741,-0.03983471542596817,0.051800552755594254,-0.012436549179255962,0.04135662689805031,-0.012426581233739853,-0.021696634590625763,0.05373150855302811,0.004779950249940157,0.018629632890224457]},{"text":"Campestres melius Scythae, Quorum plaustra vagas rite trahunt domos, 10 Vivunt et rigidi Getae, Immetata quibus iugera liberas Fruges et Cererem ferunt, Nec cultura placet longior annua, Defunctumque laboribus 15 Aequali recreat sorte vicarius.","book":"Homage to Catalonia","chapter":22,"embedding":[0.043611932545900345,0.0279224906116724,-0.04551980644464493,-0.00576791213825345,-0.038166940212249756,0.04971643164753914,-0.0003759979736059904,0.04629427194595337,0.019786298274993896,0.06682105362415314,0.021443620324134827,-0.12797769904136658,-0.043962351977825165,0.04028584063053131,-0.07080762833356857,-0.08893681317567825,0.0019326573237776756,0.09685908257961273,-0.078953817486763,0.022928914055228233,0.04564662650227547,0.0028982225339859724,0.00032493521575815976,0.029780767858028412,-0.058724671602249146,-0.01434698048979044,-0.08956644684076309,-0.06324569135904312,0.03200586140155792,-0.09420651197433472,-0.02914234809577465,0.07777527719736099,0.07120811194181442,-0.04062458500266075,0.09056584537029266,0.014071130193769932,-0.0511198416352272,-0.07623901963233948,0.07610660046339035,0.048689913004636765,-0.05534074828028679,-0.0010885108495131135,0.018889853730797768,-0.03621144965291023,-0.10647792369127274,0.010543962009251118,0.0032180456910282373,0.039255883544683456,-0.013478187844157219,-0.0022180548403412104,-0.08460351079702377,-0.05111859366297722,-0.025249872356653214,0.035529881715774536,-0.0881536677479744,-0.043360598385334015,0.024252142757177353,-0.03741554170846939,0.0450703389942646,-0.03270791471004486,0.0785210132598877,0.07023762911558151,-0.0188533216714859,0.0059781670570373535,-0.09811701625585556,-0.038853079080581665,-0.04452509060502052,0.020831070840358734,-0.05653901398181915,-0.020889874547719955,0.12338802963495255,-0.043162066489458084,-0.026967357844114304,0.029930084943771362,-0.06278873234987259,0.026533382013440132,-0.015289882197976112,-0.023863421753048897,-0.010152112692594528,-0.11599650233983994,-0.053758539259433746,0.015013121999800205,0.018612021580338478,-0.0009281276725232601,-0.06482916325330734,-0.013734064996242523,0.01685125194489956,0.021463541314005852,0.06762658059597015,0.0009950954699888825,0.031023792922496796,0.025146344676613808,-0.07661980390548706,-0.004366077482700348,-0.012456770054996014,0.060877036303281784,-0.00377418240532279,0.01076525542885065,-0.024371281266212463,-0.0008589306962676346,0.008939078077673912,-0.03657694160938263,-0.00017316231969743967,0.03285442292690277,-0.1183212399482727,-0.07890698313713074,-0.0648711696267128,-0.04952409863471985,0.022472314536571503,-0.00789243821054697,-0.046969372779130936,-0.03189843147993088,-0.03970130905508995,-0.014394461177289486,0.030321253463625908,-0.012871942482888699,0.019433898851275444,-0.07992537319660187,-0.0033134121913462877,0.008802063763141632,0.027429325506091118,-0.055583372712135315,0.03674276918172836,-0.04109566658735275,0.02493678778409958,-0.0007247346802614629,0.04793741554021835,2.2110522705245235e-32,-0.008803182281553745,-0.07731133699417114,-0.015383978374302387,-0.010384319350123405,0.07525493204593658,-0.05126497149467468,-0.07477599382400513,-0.05546871945261955,0.015359153971076012,-0.06444364041090012,-0.11487066000699997,-0.014886459335684776,-0.029745059087872505,-0.04412728548049927,-0.04926593601703644,-0.006538233254104853,0.0518341027200222,-0.03090939112007618,-0.07121069729328156,-0.002708815038204193,-0.028277486562728882,0.07175575196743011,0.036136336624622345,-0.03178280591964722,0.03004884161055088,-0.06679990142583847,0.0020481529645621777,-0.05190509557723999,-0.00784045085310936,0.039639364928007126,0.11725658178329468,-0.10328412801027298,-0.032181814312934875,-0.038305480033159256,0.021260343492031097,0.02245103009045124,0.06553028523921967,-0.020854627713561058,-0.05165516957640648,-0.054266124963760376,0.0006552378763444722,0.04642960801720619,0.04943331703543663,0.06205363571643829,0.08159901946783066,0.052151940762996674,0.054178934544324875,0.07538249343633652,0.07558079063892365,0.0175767932087183,-0.04202184081077576,0.04155613109469414,0.01838649809360504,-0.05381619185209274,-0.00691843731328845,0.014318324625492096,-0.05793960765004158,0.0795220360159874,-0.0054550315253436565,-0.013120600022375584,0.040748655796051025,0.004140116274356842,0.01952243037521839,-0.029874248430132866,0.04467711225152016,-0.06938880681991577,-0.03500833362340927,0.003338345093652606,0.07603491097688675,-0.03398719057440758,-0.1093793585896492,-0.0019225740106776357,-0.001042215502820909,0.06830800324678421,-0.028317570686340332,0.008392442017793655,0.05168607831001282,-0.06505904346704483,-0.08163058012723923,-0.002690592547878623,-0.059738293290138245,-0.016923297196626663,-0.006717216689139605,0.0005143774324096739,0.05115806683897972,-0.016058459877967834,-0.021077319979667664,0.017740650102496147,0.04926930367946625,-0.01456428226083517,0.04890570417046547,0.023386603221297264,0.011323652230203152,-0.005443409085273743,0.024108925834298134,-1.9922644130352822e-32,-0.028055936098098755,-0.02734481915831566,-0.038125067949295044,0.10556551069021225,0.02416698820888996,0.027547171339392662,-0.1563698798418045,0.0034559695050120354,-0.001752696349285543,-0.045139726251363754,-0.084295354783535,0.003976105246692896,0.08277986943721771,-0.057487618178129196,-0.024417249485850334,0.014473412185907364,0.10820594429969788,-0.04792217165231705,-0.04398561269044876,-0.01710331439971924,-0.06059650331735611,-0.007140193600207567,-0.07680411636829376,-0.09163424372673035,0.023787636309862137,0.06017998605966568,-0.011225737631320953,0.030596865341067314,-0.08897501230239868,-0.03570237383246422,0.13590824604034424,0.010252107866108418,-0.030671315267682076,0.030397161841392517,-0.03516320139169693,-0.04459770768880844,0.10516928881406784,-0.0201729703694582,0.009516255930066109,0.035606905817985535,0.07173637300729752,0.06311873346567154,0.11228042840957642,0.028616230934858322,0.003158197971060872,-0.022409692406654358,-0.08659358322620392,-0.004478042013943195,-0.013335222378373146,0.013196664862334728,0.01622423157095909,-0.057551734149456024,-0.011648614890873432,-0.04635549336671829,0.13662098348140717,-0.058015476912260056,-0.06931675970554352,0.044485997408628464,-0.03961915522813797,-0.0007740751025266945,0.06695912033319473,0.0016783081227913499,0.0502265989780426,0.03757186606526375,0.07212001830339432,0.0038187848404049873,-0.08222515136003494,0.06744908541440964,-0.04253750294446945,0.08312494307756424,0.013557260856032372,-0.049995508044958115,-0.10093659907579422,0.02519550733268261,-0.013602081686258316,0.01717507094144821,0.02226535975933075,0.005712984595447779,0.009816721081733704,-0.010567836463451385,0.049915630370378494,-0.0419580340385437,-0.02011973224580288,-0.08175162971019745,0.07914183288812637,-0.03107413835823536,0.05146680772304535,0.033045608550310135,0.039992161095142365,0.02383778616786003,-0.02657533623278141,-0.07688833773136139,0.05891485512256622,-0.03048691898584366,0.06011374294757843,-6.61603820617529e-8,0.03788493946194649,-0.07940813899040222,-0.02008586749434471,0.034853577613830566,0.020980508998036385,-0.10038939863443375,0.047748103737831116,0.035880133509635925,-0.013424373231828213,0.06010807305574417,-0.052058566361665726,-0.031241383403539658,0.058302924036979675,0.0712176114320755,0.08069109171628952,0.04823010787367821,0.06851543486118317,0.024102918803691864,-0.03425033390522003,-0.008270814083516598,0.023045696318149567,-0.04558801278471947,-0.03157605230808258,-0.012328293174505234,-0.02978675812482834,-0.00794244185090065,0.03666090965270996,-0.045862723141908646,0.033081136643886566,-0.04371150583028793,0.046373430639505386,0.10004696249961853,0.029451118782162666,-0.07046603411436081,-0.0369807630777359,0.11405754089355469,-0.07183045893907547,0.02757769450545311,-0.032866090536117554,0.03251397982239723,0.0780721977353096,-0.0045018563978374004,0.044363029301166534,-0.04755207523703575,0.0478794164955616,-0.043454065918922424,0.028933435678482056,0.03274523839354515,-0.0022159647196531296,-0.08104275912046432,-0.057955190539360046,0.017463641241192818,0.07809244096279144,0.07330057770013809,-0.008168808184564114,-0.027370981872081757,0.040682267397642136,0.07638214528560638,0.004839350003749132,0.018157707527279854,0.009829060174524784,0.039259400218725204,0.02563859336078167,-0.008009159937500954]},{"text":"O quisquis volet impias 25 Caedis et rabiem tollere civicam, Si quaeret pater urbium Subscribi statuis, indomitam audeat Refrenare licentiam, Clarus post genitis: quatenus, heu nefas! 30 Virtutem incolumem odimus, Sublatam ex oculis quaerimus invidi.","book":"Homage to Catalonia","chapter":22,"embedding":[-0.03696503862738609,0.07102470099925995,-0.0460827499628067,-0.016058441251516342,-0.12961651384830475,0.02513980306684971,0.04221135377883911,0.10712496191263199,0.03640925511717796,0.06857845187187195,0.06219586357474327,-0.07215738296508789,0.040496062487363815,0.028093963861465454,-0.14147739112377167,-0.002028208924457431,-0.03749117627739906,0.02454323321580887,-0.01597306691110134,-0.056117501109838486,-0.00536455400288105,0.08742824196815491,-0.011037634685635567,-0.013713611289858818,-0.1065843477845192,0.043026842176914215,-0.027639634907245636,0.0194482933729887,0.05965519696474075,-0.0459756925702095,0.04930611327290535,0.06338001042604446,0.045268233865499496,-0.06645385175943375,-0.02087470144033432,-0.022458484396338463,-0.04243912175297737,-0.0844043493270874,0.0806831419467926,0.011550200171768665,-0.02806512638926506,-0.013433660380542278,-0.05665373429656029,0.00326246558688581,-0.0134195014834404,0.07434024661779404,-0.055884312838315964,0.11440511047840118,0.043396275490522385,-0.0024680292699486017,-0.04087529331445694,-0.04551178216934204,0.04541456326842308,0.03691896051168442,-0.009851871989667416,-0.03861856460571289,-0.009166146628558636,-0.06959131360054016,-0.009866278618574142,-0.042704593390226364,-0.03143211081624031,0.053395576775074005,-0.019428281113505363,-0.0031730723567306995,-0.06022359058260918,0.004358217120170593,-0.046966712921857834,-0.0028656928334385157,-0.09460554271936417,0.08049257099628448,0.027159743010997772,-0.0033582672476768494,-0.010552133433520794,0.06951776146888733,-0.07179847359657288,0.09326206147670746,-0.011129080317914486,-0.06367779523134232,0.03467516601085663,-0.046852584928274155,-0.025887083262205124,0.005357630085200071,0.0008674669661559165,0.026927506551146507,-0.004326322581619024,-0.0374874621629715,0.06969274580478668,-0.030039967969059944,0.0025865917559713125,-0.021532464772462845,-0.003988323733210564,-0.014583447948098183,0.053224071860313416,-0.07359688729047775,0.022573502734303474,0.010852881707251072,-0.009064871817827225,-0.02941635064780712,-0.06262765824794769,-0.016621524468064308,0.009010295383632183,-0.052193690091371536,-0.012708617374300957,0.06903214752674103,-0.1442597359418869,-0.009873752482235432,-0.013422620482742786,-0.053513314574956894,0.03942739591002464,0.0524287223815918,-0.09348121285438538,-0.027938779443502426,-0.000865182897541672,-0.10580466687679291,0.007307504769414663,0.025753924623131752,0.036469217389822006,-0.019301380962133408,-0.036388374865055084,-0.05689997225999832,0.01123829372227192,-0.03792005032300949,0.006967704743146896,-0.01389428973197937,0.050688695162534714,-0.02340659685432911,0.04431803524494171,1.8950886460415053e-32,-0.04913024976849556,-0.07813693583011627,-0.015311120077967644,0.007812597788870335,0.004647198133170605,-0.022246161475777626,-0.020579060539603233,-0.0284077450633049,0.04322012513875961,-0.12232748419046402,-0.10661975294351578,-0.018198953941464424,0.0343264564871788,-0.005107236094772816,0.030485698953270912,0.08759253472089767,0.03861243650317192,-0.04102460294961929,-0.01962551288306713,0.030490798875689507,-0.020661666989326477,0.026227254420518875,0.05500508472323418,0.0006327274604700506,0.04455113783478737,-0.011082562617957592,0.06660280376672745,-0.07266736030578613,-0.02012793719768524,0.023213503882288933,0.07807672768831253,0.06365956366062164,-0.09778065234422684,-0.035477571189403534,-0.03884531185030937,0.03425699844956398,0.031092306599020958,-0.009219419211149216,-0.11675770580768585,-0.007216110825538635,0.031103892251849174,0.020671533420681953,0.0638541653752327,0.01440439373254776,0.06439438462257385,-0.028300343081355095,-0.03245346248149872,0.032822638750076294,0.047855816781520844,0.03409110754728317,-0.0024447005707770586,0.052559129893779755,-0.060130853205919266,-0.0802372619509697,-0.0002875894133467227,0.02469785325229168,-0.03215863183140755,0.043674107640981674,-0.04154901206493378,-0.07956065237522125,0.008992877788841724,-0.03848796710371971,0.00011606964835664257,0.012369273230433464,-0.022961566224694252,-0.06754571199417114,-0.06148523464798927,0.032158590853214264,-0.0004238953988533467,0.053663741797208786,-0.0019891129340976477,-0.07425915449857712,-0.11595481634140015,0.040429480373859406,-0.08638334274291992,0.028231527656316757,0.08470402657985687,-0.01589851826429367,-0.034201957285404205,-0.0061101452447474,-0.07809530943632126,0.015580706298351288,0.0514245480298996,-0.048689018934965134,0.15016745030879974,-0.07904103398323059,-0.04552631452679634,0.03622977063059807,0.032488834112882614,0.0495765246450901,0.07661130279302597,0.025965003296732903,-0.029291069135069847,0.06944604963064194,-0.019098039716482162,-1.853066339304341e-32,-0.019594445824623108,-0.007876623421907425,-0.08852768689393997,0.06823929399251938,0.013617901131510735,0.003457266604527831,-0.05644503980875015,0.09648975729942322,0.01911705918610096,-0.019755985587835312,-0.11204835772514343,0.039489492774009705,0.04696434736251831,-0.04065825790166855,-0.011107164435088634,0.027263218536973,0.049682553857564926,0.06871380656957626,-0.05035156384110451,0.0014171394286677241,-0.07672995328903198,0.03537498414516449,0.045968491584062576,-0.0642780214548111,-0.007268123794347048,0.05098967254161835,0.05302225425839424,-0.026720454916357994,-0.09150192886590958,-0.04857649281620979,0.05013204365968704,-0.010138209909200668,0.004648041445761919,0.06183415278792381,0.001626327051781118,0.0455353781580925,0.1774779111146927,-0.044040497392416,-0.021344097331166267,0.0069086989387869835,-0.036874350160360336,0.05370582267642021,0.060204196721315384,0.04053620621562004,0.030751435086131096,-0.053048279136419296,-0.06741820275783539,-0.02818078175187111,-0.07693670690059662,-0.04093324765563011,0.05515008419752121,0.022313857451081276,0.03809451684355736,0.01380452886223793,0.028591860085725784,-0.07074844092130661,-0.019929882138967514,-0.0037720948457717896,0.01128113828599453,0.04281628131866455,0.054277464747428894,0.0380571149289608,-0.03632277995347977,-0.11065348982810974,0.05658917501568794,-0.008276700973510742,-0.03250236064195633,0.060851432383060455,0.021052923053503036,-0.037322476506233215,0.04781953990459442,-0.11279544979333878,-0.08361706137657166,-0.05393053963780403,-0.0008187188068404794,-0.01570172607898712,-0.023777807131409645,0.07185608893632889,0.04453249275684357,0.05290047824382782,-0.006355265621095896,-0.0533137172460556,0.017666390165686607,0.016106950119137764,-0.06781750917434692,-0.08258610963821411,0.04547020047903061,0.015615357086062431,-0.0015790780307725072,-0.007934111170470715,-0.008163375779986382,0.030105246230959892,0.008589028380811214,-0.04983494058251381,0.025655312463641167,-6.028158594517663e-8,0.05927040055394173,-0.050474248826503754,-0.02588772028684616,0.04759792983531952,0.020462581887841225,-0.05328964442014694,-0.0903569683432579,-0.00210931827314198,0.017198143526911736,0.038093794137239456,-0.04922201484441757,0.010823467746376991,-0.0260752085596323,0.04983871057629585,0.05544188618659973,0.019163984805345535,0.01641230657696724,0.05675191432237625,-0.0521511547267437,-0.01592719927430153,0.021872475743293762,-0.01730210706591606,-0.02593807876110077,0.05085989460349083,-0.03157131001353264,-0.033449556678533554,0.06672456115484238,-0.11268331110477448,0.015944702550768852,-0.0037779074627906084,-0.03094109706580639,0.0926651582121849,-0.03526721149682999,-0.05621396377682686,-0.03316885232925415,0.0674576386809349,0.0716438964009285,0.03366830572485924,0.038909927010536194,-0.006428396329283714,0.06738191843032837,0.0008258299785666168,0.002350551076233387,-0.03004264645278454,-0.0010195157956331968,-0.005678849760442972,-0.025959821417927742,0.006046911235898733,-0.04925110936164856,-0.11625692993402481,-0.05562455207109451,0.0005497779347933829,0.099497489631176,0.06546750664710999,-0.07995405048131943,-0.028414132073521614,0.06435409933328629,-0.03375086188316345,0.007415603380650282,-0.011175565421581268,0.0845649316906929,0.06697061657905579,0.04211454465985298,0.05030100792646408]},{"text":"Vel nos in Capitolium, 45 Quo clamor vocat et turba faventium, Vel nos in mare proximum Gemmas et lapides aurum et inutile, Summi materiem mali, Mittamus, scelerum si bene paenitet. 50 Eradenda cupidinis Pravi sunt elementa et tenerae nimis Mentes asperioribus Formandae studiis.","book":"Homage to Catalonia","chapter":22,"embedding":[-0.004594715312123299,0.07549735903739929,0.009507028385996819,-0.028265755623579025,-0.04907900094985962,0.02784561738371849,0.024254195392131805,0.06550125777721405,-0.028660418465733528,0.017892979085445404,0.04123421758413315,-0.1615232527256012,0.051986511796712875,-0.07710366696119308,-0.06970255076885223,-0.10449779033660889,-0.034608326852321625,0.02595101110637188,-0.0031260105315595865,0.02675674855709076,0.000542112800758332,-0.006546457763761282,-0.017841003835201263,0.06807814538478851,-0.03514714166522026,0.08995380997657776,-0.0790790319442749,-0.005325645208358765,0.034428536891937256,-0.06878434866666794,-0.006884507369250059,0.05216430500149727,0.10325498133897781,-0.02129209041595459,0.00015539999003522098,-0.02627052366733551,-0.09284048527479172,-0.06027090921998024,0.022302133962512016,0.006429191678762436,0.026954572647809982,-0.09036566317081451,-0.020150043070316315,-0.008422678336501122,0.03268391638994217,0.009632533416152,0.01714668795466423,-0.004181590862572193,0.023447368294000626,0.03913899138569832,-0.05127694457769394,-0.07283362746238708,-0.047824013978242874,0.027255479246377945,-0.11568038165569305,-0.013877970166504383,0.04084671288728714,0.0023233338724821806,0.011064399965107441,-0.05019940063357353,0.018462801352143288,0.04039088264107704,0.004291950259357691,-0.012496266514062881,-0.0007940675131976604,0.01138778030872345,-0.017213935032486916,0.014452935196459293,-0.052778929471969604,0.07733894884586334,0.17010940611362457,-0.05049695074558258,-0.016325099393725395,0.005875414703041315,-0.06956374645233154,0.05247092247009277,-0.011755881831049919,-0.06152404099702835,0.03974108397960663,-0.06186201795935631,-0.051077619194984436,-0.00328526902012527,-0.004379310179501772,0.003101775888353586,-0.021574271842837334,0.035763002932071686,-0.005047100130468607,-0.06918232887983322,0.05358488857746124,-0.07893503457307816,0.003303166711702943,0.04355478659272194,-0.09013566374778748,0.00737843057140708,0.022800400853157043,0.08445198088884354,-0.06913082301616669,0.030389899387955666,0.013016820885241032,-0.021372782066464424,0.05692898854613304,0.02384776435792446,-0.07294780761003494,-0.03994514420628548,-0.14809992909431458,-0.002609221264719963,-0.041110310703516006,-0.0997697114944458,-0.04026466980576515,0.0169120691716671,-0.060499630868434906,-0.058057963848114014,-0.018564466387033463,-0.07345707714557648,-0.004183121956884861,0.030750704929232597,-0.020633233711123466,-0.10664369910955429,0.01618712954223156,-0.05412454903125763,0.018964242190122604,-0.0851297676563263,-0.025033794343471527,-0.046287551522254944,0.06542032957077026,-0.03975978493690491,0.0014833417953923345,1.8935901846177946e-32,-0.0982489362359047,-0.08698249608278275,0.009811600670218468,0.028452929109334946,0.015901098027825356,-0.03175175189971924,-0.06327924877405167,-0.04904751107096672,-0.03464842215180397,-0.08756846934556961,-0.06447261571884155,-0.036613915115594864,-0.025480015203356743,-0.07130958139896393,0.04232024773955345,-0.01688499189913273,0.09469705075025558,-0.08161697536706924,-0.008999332785606384,-0.04385277256369591,-0.06765712797641754,0.08217042684555054,-0.036845508962869644,-0.008695889264345169,0.028004134073853493,0.02280431240797043,0.0002959808334708214,-0.07154300063848495,-0.04763389378786087,0.04460054636001587,0.11646340042352676,-0.014384906738996506,-0.03141031786799431,0.03751656785607338,-0.03857677802443504,0.07024049758911133,-0.04695485532283783,-0.017376815900206566,-0.0488501712679863,0.02920653484761715,0.05179236829280853,0.03809097409248352,0.06391606479883194,0.06356433033943176,0.03245903179049492,0.0218301210552454,0.014765869826078415,0.07743442058563232,0.09348676353693008,-0.008440053090453148,0.02343151904642582,0.027618611231446266,-0.030793409794569016,-0.022703824564814568,-0.005621189251542091,0.04835982620716095,-0.08801687508821487,0.08769954741001129,-0.032341502606868744,0.05256183072924614,0.05735395476222038,0.03288022801280022,0.03695755824446678,0.07130159437656403,0.014890246093273163,0.04462818056344986,-0.04367077350616455,0.016151268035173416,0.08785414695739746,0.03268444910645485,-0.05924534052610397,-0.004809115547686815,0.01220994908362627,0.08137776702642441,0.0014209749642759562,0.06980220228433609,0.03572825342416763,-0.02804047428071499,-0.051333364099264145,0.013267231173813343,-0.10011030733585358,-0.029786957427859306,-0.06114586070179939,0.050153255462646484,0.054398346692323685,0.023411955684423447,-0.03583047538995743,0.014322803355753422,0.09964903444051743,0.0517365001142025,0.11541539430618286,-0.06002652272582054,-0.026883527636528015,0.017685797065496445,-0.09010371565818787,-1.7552484585214274e-32,-0.03505006432533264,-0.06556624919176102,-0.03158343955874443,0.07109203934669495,-0.004740836098790169,-0.014960055239498615,-0.0951547622680664,-0.027032488957047462,0.00042604756890796125,0.027315033599734306,0.024500582367181778,0.014374341815710068,0.04910409450531006,-0.09963332116603851,-0.0023409626446664333,0.05362284928560257,0.04643932357430458,0.01730397529900074,-0.018442794680595398,-0.016670091077685356,-0.046130988746881485,-0.024086471647024155,0.03623368218541145,-0.007275423966348171,0.005669233854860067,0.03386564552783966,-0.004302359186112881,-0.03741246089339256,-0.0008448450826108456,-0.011059099808335304,-0.0037302542477846146,-0.011024223640561104,-0.043854471296072006,0.06221006438136101,-0.047817129641771317,-0.0732426717877388,0.16194428503513336,-0.03564416617155075,0.02835608646273613,-0.013383125886321068,-0.017638230696320534,0.052372198551893234,0.08660432696342468,0.053459204733371735,0.012373099103569984,-0.040118180215358734,-0.02372523583471775,-0.038670238107442856,-0.05272621661424637,0.02344788797199726,0.10412196069955826,-0.0270849522203207,0.02294253371655941,-0.07924821227788925,0.10287178307771683,0.034386638551950455,-0.03880009055137634,-0.027671152725815773,-0.00038770659011788666,0.010877883061766624,0.0941653922200203,0.04952813312411308,-0.0413619801402092,0.05698639899492264,0.07039468735456467,0.01068766601383686,-0.09237074106931686,0.05687118321657181,-0.06895731389522552,0.044970810413360596,0.05037136375904083,-0.020550476387143135,-0.1168920174241066,-0.013565723784267902,-0.008016145788133144,0.029184846207499504,0.054963987320661545,0.03593035414814949,0.030859533697366714,0.01922304555773735,-0.040927622467279434,-0.026383915916085243,-0.03079705871641636,-0.019422205165028572,0.005636159330606461,0.0006065081106498837,-0.06266077607870102,0.07647987455129623,0.055953387171030045,-0.012819127179682255,-0.0618443638086319,-0.022719230502843857,0.028127994388341904,-0.0024184416979551315,0.0476110465824604,-5.944274050762033e-8,0.005494998302310705,-0.08370275795459747,-0.04763433709740639,0.0009575551375746727,0.037855468690395355,-0.02237471379339695,-0.04429059103131294,-0.0017017116770148277,-0.00910076592117548,0.06320362538099289,-0.04904063045978546,0.039935965090990067,-0.012327482923865318,-0.044326890259981155,-0.005911427084356546,0.055214520543813705,0.09242044389247894,0.00905708409845829,-0.05242215096950531,-0.06017650291323662,0.06996846199035645,0.004888172261416912,-0.015723420307040215,-0.025637608021497726,-0.05796617269515991,0.015446530655026436,0.0816965401172638,0.021815510466694832,-0.021529344841837883,-0.04147985950112343,-0.04596079885959625,0.008891686797142029,-0.006446817424148321,-0.08529708534479141,0.04581102356314659,0.06069481000304222,0.08894350379705429,-0.002947249449789524,0.016430126503109932,0.03501400724053383,-0.002165230456739664,-0.06722784042358398,0.06458964943885803,-0.05501892417669296,0.024369603022933006,0.02235567197203636,-0.012447488494217396,0.04924371466040611,0.05685040354728699,-0.06936226785182953,-0.049773212522268295,0.014607420191168785,0.05252155661582947,0.02062203921377659,-0.03889811411499977,0.022449064999818802,0.028602557256817818,0.005726439878344536,0.0035458796191960573,-0.0063209556974470615,0.07717413455247879,0.014729553833603859,0.1004091277718544,0.011283068917691708]},{"text":"Scilicet improbae Crescunt divitiae; tamen Curtae nescio quid semper abest rei.","book":"Homage to Catalonia","chapter":22,"embedding":[-0.08654502034187317,0.06056848168373108,-0.049311019480228424,0.04284950718283653,-0.07970475405454636,-0.010344830341637135,0.00336969131603837,0.16152982413768768,-0.012537023052573204,0.04455246776342392,0.043853893876075745,-0.06393042951822281,-0.03971770405769348,0.03653153032064438,-0.08791462332010269,-0.03646900877356529,-0.07997483760118484,0.11716721206903458,-0.004117813892662525,0.0818682461977005,-0.00325568625703454,-0.021971434354782104,-0.0054000006057322025,0.07371054589748383,0.0372442901134491,0.010147984139621258,-0.013353433459997177,0.011665298603475094,0.041251156479120255,-0.0801568478345871,0.06504501402378082,0.08664150536060333,-0.003478325204923749,0.0074500408954918385,0.07336708903312683,0.007162440102547407,0.01737126335501671,-0.02058047242462635,0.08682957291603088,0.07861766219139099,-0.06472648680210114,0.0034652065951377153,-0.084607794880867,-0.00644697854295373,0.028492731973528862,-0.004929624497890472,0.04371749982237816,0.056250765919685364,0.011681586503982544,0.0226594191044569,-0.0790693536400795,-0.018565068021416664,-0.03594467416405678,0.04430578276515007,-0.01768592931330204,-0.04757778346538544,0.10300625115633011,-0.00689477426931262,0.027600577101111412,-0.03361305221915245,0.043572861701250076,0.005412220023572445,-0.07926589995622635,-0.024700479581952095,-0.04067064821720123,-0.016681011766195297,-0.023542949929833412,0.021396566182374954,-0.028288139030337334,-0.061178408563137054,0.1331171989440918,-0.10059415549039841,-0.04401777312159538,0.009554611518979073,-0.050356220453977585,0.014910736121237278,0.005528930574655533,0.021132657304406166,-0.011500627733767033,-0.07471577823162079,0.025347353890538216,-0.0006590994307771325,0.00042215330176986754,-0.035292159765958786,0.04141252860426903,-0.030297106131911278,-0.019185587763786316,-0.04632912948727608,0.07880806177854538,-0.023027978837490082,-0.030584298074245453,-0.0020949291065335274,-0.05398797243833542,-0.04828464239835739,-0.013529447838664055,0.04888290539383888,-0.025573870167136192,-0.021175043657422066,0.03339037299156189,0.05806664004921913,0.00901965331286192,-0.0022271822672337294,-0.08476484566926956,0.07391411811113358,-0.10322478413581848,-0.09330672025680542,-0.0037853000685572624,-0.07139789313077927,0.02750117890536785,0.08677739650011063,-0.035116519778966904,-0.04147588834166527,-0.00253435131162405,-0.011389479972422123,0.00088076654355973,0.04809845983982086,-0.015548374503850937,-0.0455188974738121,0.064966581761837,-0.0080209756270051,0.05825435742735863,-0.030302831903100014,0.04285138472914696,0.018491141498088837,0.056160539388656616,0.009045414626598358,0.09195869415998459,8.729905039981692e-33,-0.06946376711130142,-0.06799288094043732,-0.07093480229377747,0.05283431336283684,0.013778290711343288,-0.005942892283201218,-0.09143633395433426,-0.01297468226402998,-0.014920905232429504,-0.08407196402549744,-0.06108332425355911,0.054117318242788315,0.03146493434906006,0.01725698821246624,-0.027623968198895454,-0.002929217414930463,0.06707366555929184,-0.052061837166547775,-0.015489945188164711,-0.05816766247153282,-0.05848059803247452,0.04585758596658707,0.05014460161328316,0.03499109297990799,0.020468078553676605,-0.09728126972913742,-0.05035663768649101,-0.037317413836717606,-0.002064294181764126,-0.0031698844395577908,0.06209072098135948,0.022011546418070793,-0.043007295578718185,-0.021863054484128952,-0.025609008967876434,-0.031195063143968582,-0.02846802957355976,-0.01980765536427498,-0.06600641459226608,0.042983341962099075,0.013001625426113605,-0.0044241431169211864,0.05747455731034279,-0.03139111027121544,0.12166769057512283,-0.002016390673816204,0.06785409152507782,0.032706186175346375,-0.009065493941307068,0.024232208728790283,-0.0417281873524189,0.011925233528017998,-0.03276500105857849,-0.00042141269659623504,-0.0017435194458812475,-0.00913574080914259,-0.05123691260814667,0.017250122502446175,0.050894200801849365,-0.04900915175676346,0.047857847064733505,0.045443788170814514,0.0544080026447773,-0.06416613608598709,0.03511485084891319,-0.030032187700271606,-0.011581134051084518,0.02669869363307953,0.09827392548322678,0.03177472576498985,-0.08676264435052872,-0.026544207707047462,-0.025038940832018852,0.019647005945444107,-0.058177098631858826,-0.011236623860895634,0.021661922335624695,0.06728347390890121,-0.007606135215610266,-0.0885859802365303,-0.11705446988344193,-0.03938674554228783,0.015361985191702843,0.022699134424328804,0.0626968964934349,0.03154374286532402,-0.019708510488271713,0.008016493171453476,0.041818782687187195,-0.02497926726937294,0.03578759357333183,0.012932452373206615,-0.0410013385117054,-0.039766352623701096,0.06435196846723557,-7.597859899101673e-33,-0.006415060721337795,-0.04946840554475784,-0.06708566844463348,0.06422040611505508,-0.04327966645359993,0.019513389095664024,-0.17709490656852722,0.027743469923734665,-0.02705216035246849,-0.0757296085357666,-0.04818213731050491,-0.07639215141534805,0.1135176569223404,-0.021144341677427292,-0.05266303941607475,0.044609636068344116,0.020766668021678925,0.005452919285744429,-0.005483871791511774,0.002509348327293992,0.020264552906155586,0.0313756987452507,-0.04335612431168556,-0.03285430744290352,-0.0050356448628008366,-0.012238171882927418,0.010602423921227455,-0.016462890431284904,-0.005614134948700666,-0.0303821861743927,0.06783567368984222,0.004338961094617844,-0.019431250169873238,0.011958292685449123,-0.0013522360241040587,0.08900020271539688,0.1227969378232956,0.02010859176516533,-0.018327312543988228,0.03134400397539139,-0.04923316836357117,0.07404399663209915,-0.01289722602814436,0.043726611882448196,0.02601672150194645,-0.01299238856881857,-0.07483439892530441,-0.022144101560115814,-0.009606568142771721,0.00626601604744792,0.14136916399002075,0.013909700326621532,0.0071688685566186905,-0.04967016354203224,0.023644573986530304,-0.053593866527080536,-0.0476505346596241,-0.014066815376281738,-0.08250927925109863,0.031105194240808487,0.10234292596578598,-0.020071346312761307,-0.002782910130918026,-0.0363839715719223,0.04393434152007103,-0.03893094137310982,-0.14697182178497314,0.08090144395828247,0.0349084809422493,0.06781243532896042,0.0832500085234642,-0.034048132598400116,0.008565766736865044,0.012798681855201721,-0.0028242291882634163,0.02425641193985939,0.03422342985868454,0.02197616547346115,0.01552712544798851,0.0473666749894619,-0.033942438662052155,-0.06296373903751373,-0.007791130803525448,0.02023719809949398,-0.06032298132777214,-0.03809770569205284,0.041588667780160904,-0.03941928595304489,0.034536369144916534,-0.04267457500100136,0.029771817848086357,-0.07035768777132034,0.09496412426233292,0.044998738914728165,0.061267364770174026,-3.2454011034133146e-8,0.07148133963346481,-0.06314927339553833,-0.0547671839594841,0.09536600857973099,0.09369605034589767,-0.08267422765493393,-0.027799030765891075,-0.06540033221244812,-0.10776259005069733,0.019280264154076576,-0.05040504410862923,-0.034524157643318176,-0.023495478555560112,0.09853033721446991,0.05234391987323761,0.09660664945840836,0.09095685929059982,0.07694416493177414,-0.044763315469026566,0.01796864904463291,0.09126432240009308,-0.04752829670906067,-0.03571741655468941,-0.018773794174194336,-0.009523691609501839,-0.0019028896931558847,0.0025464938953518867,-0.07266461104154587,-0.008355342783033848,-0.006725901737809181,-0.0017406016122549772,0.032461803406476974,0.049222543835639954,-0.046330712735652924,-0.05810356140136719,0.08995334059000015,0.02919737994670868,-0.006080792285501957,-0.09009727835655212,-0.00601617619395256,0.04469568654894829,-0.008522337302565575,0.04295174404978752,0.011280743405222893,0.005413902923464775,-0.0587228462100029,0.004148515872657299,-0.0380801260471344,0.00745146069675684,-0.016187189146876335,0.05443713814020157,0.015255707316100597,0.1113693043589592,0.03006233088672161,-0.008988107554614544,0.049156662076711655,0.017923694103956223,0.0125498678535223,-0.023874565958976746,-0.004091271664947271,0.01989014260470867,0.07182266563177109,0.01971767470240593,-0.016019245609641075]},{"text":"Quae nemora aut quos agor in specus, Velox mente nova?","book":"Homage to Catalonia","chapter":22,"embedding":[-0.0782032161951065,0.07048308849334717,-0.0003614990273490548,0.01087172981351614,-0.12422475963830948,-0.004125844221562147,0.04782184585928917,0.056119050830602646,-0.0024662360083311796,0.03660450875759125,0.0418085977435112,-0.09212261438369751,-0.05523936077952385,0.014439743012189865,-0.06924096494913101,-0.02186521701514721,-0.003137557301670313,-0.0020890075247734785,0.03581937775015831,0.03085695020854473,0.06174550577998161,0.030002880841493607,-0.03681422397494316,-0.00012566070654429495,-0.007955164648592472,-0.023228995501995087,-0.041041452437639236,0.03768014535307884,0.059021856635808945,-0.07474346458911896,0.031623225659132004,0.08305259048938751,0.08641374111175537,-0.0355663001537323,0.04936016723513603,-0.04497877508401871,0.05224226415157318,-0.08992816507816315,-0.015094705857336521,0.04836321622133255,-0.04812410846352577,-0.025829656049609184,-0.07178648561239243,0.013695578090846539,-0.037854958325624466,-0.031701795756816864,-0.02272707223892212,0.026714293286204338,0.0740913525223732,0.0005032928893342614,-0.1005694791674614,-0.06475333124399185,-0.0410120002925396,-0.00829645711928606,0.03810736909508705,0.07087957113981247,0.05696985870599747,-0.04150914400815964,0.06677904725074768,-0.07503435760736465,0.07597091048955917,-0.045477502048015594,-0.046042490750551224,0.03190832585096359,0.049435265362262726,-0.010607854463160038,0.01118175033479929,-0.0025991080328822136,-0.07370322942733765,0.06734172999858856,0.07717699557542801,-0.070387102663517,-0.0732775330543518,-0.02292442135512829,-0.13265739381313324,0.0776122584939003,0.037275757640600204,-0.08431099355220795,-0.041968751698732376,-0.033659808337688446,0.02389766089618206,0.0007109004072844982,-0.025698821991682053,0.03565853089094162,-0.01983441784977913,0.0083867646753788,-0.011382480151951313,-0.0031602103263139725,0.034183841198682785,-0.05394219607114792,-0.03967157378792763,-0.06504937261343002,-0.13288681209087372,-0.045492012053728104,0.04989076033234596,-0.03232915699481964,-0.049797773361206055,0.06167815253138542,0.07085736095905304,0.01676785945892334,0.09493015706539154,0.010341656394302845,0.0003336937807034701,0.050247400999069214,-0.09594020247459412,0.035578615963459015,0.007647858466953039,-0.011200600303709507,0.01590115949511528,0.10435780882835388,-0.09572210162878036,-0.060704153031110764,-0.06294671446084976,-0.005881668999791145,-0.015912676230072975,0.0169683787971735,0.08423840999603271,-0.022680211812257767,-0.04060492664575577,-0.02201216295361519,0.03280045837163925,-0.015397721901535988,-0.002030652482062578,0.08185700327157974,0.10216295719146729,-0.004942428786307573,-0.02181732840836048,2.2526398647570744e-33,-0.0098680155351758,0.01310681737959385,-0.06262793391942978,-0.00937314797192812,-0.00839396845549345,0.0071491459384560585,-0.045628249645233154,-0.015248682349920273,-0.04385998845100403,-0.059973832219839096,-0.05471843481063843,-0.013143648393452168,0.014538244344294071,-0.051334626972675323,0.011590910144150257,-0.003974079620093107,0.06782019138336182,-0.0682462602853775,-0.05814080685377121,-0.05187562480568886,-0.0050978087820112705,0.07006265968084335,-0.017004337161779404,-0.0723172202706337,-0.06173183396458626,-0.05372293293476105,0.01996716484427452,-0.061600785702466965,-0.06620454043149948,0.008692391216754913,0.04117763787508011,-0.03721993789076805,0.07777532935142517,0.04535654932260513,0.01841839589178562,0.06168334558606148,0.05014606565237045,-0.005195692181587219,-0.017117097973823547,-0.04798293486237526,0.03647778183221817,0.06214942783117294,0.09065023064613342,0.030689630657434464,0.0566447377204895,-0.09208309650421143,-0.013430020771920681,0.032052017748355865,0.0769549086689949,0.01560143195092678,-0.04574489966034889,-0.019843412563204765,-0.09442983567714691,-0.10005254298448563,0.016831889748573303,0.05568831041455269,-0.05161504074931145,0.010517393238842487,-0.04030238091945648,0.008647593669593334,0.052230775356292725,-0.06005289778113365,0.019355803728103638,-0.034641873091459274,0.03985995426774025,0.017652029171586037,-0.02291147969663143,-0.009816513396799564,0.04957990720868111,0.07802024483680725,-0.09694485366344452,0.035940270870923996,0.04600811377167702,0.03760560229420662,-0.037468280643224716,0.041953712701797485,0.018125053495168686,0.059426531195640564,-0.0903608500957489,-0.003652558196336031,-0.052308887243270874,-0.018505459651350975,-0.025560107082128525,0.06103133037686348,0.05427040159702301,-0.03458210080862045,0.05594984069466591,0.03468423709273338,0.07106754928827286,0.0307921189814806,0.048109959810972214,-0.043400198221206665,-0.02607899345457554,-0.06769875437021255,-0.05685524269938469,-2.541845637863928e-33,-0.05617114529013634,0.05592551454901695,-0.07344232499599457,0.11646617949008942,0.026836229488253593,0.00646980432793498,-0.054121971130371094,0.11614660173654556,-0.07486600428819656,-0.07392711192369461,-0.017323696985840797,0.010176347568631172,0.11856652796268463,-0.12502001225948334,0.015283818356692791,0.02790374681353569,0.054619576781988144,-0.019345035776495934,-0.009641903452575207,-0.04497736692428589,-0.028293628245592117,-0.003515911288559437,0.04836004599928856,-0.04189366474747658,0.015185614116489887,-0.0028096719179302454,0.06991015374660492,-0.015293712727725506,-0.12607350945472717,0.006479242816567421,0.03533252701163292,-0.05048537999391556,-0.04226669669151306,0.03308841958642006,0.053504642099142075,0.03796383738517761,0.07880444824695587,0.034393806010484695,0.03258547931909561,-0.0022101933136582375,-0.01762944459915161,0.09111958742141724,0.021367747336626053,-0.003481603227555752,-0.04833145812153816,0.051590703427791595,0.01593315787613392,0.03919336199760437,-0.03528980910778046,-0.06360826641321182,0.040617767721414566,-0.0412975437939167,0.054051078855991364,0.018116269260644913,0.049181919544935226,-0.0014554638182744384,0.009324022568762302,-0.04550662264227867,-0.05182760953903198,0.07652729004621506,0.11242225021123886,0.06822167336940765,-0.005663740914314985,-0.05264170467853546,0.03826025500893593,-0.014333494007587433,-0.12151423841714859,0.03657990321516991,-0.09769190102815628,0.08416670560836792,0.04641885682940483,-0.03669030964374542,-0.09620450437068939,0.013158246874809265,-0.020292609930038452,-0.06723267585039139,-0.08993701636791229,-0.044854406267404556,-0.02100234664976597,-0.027767658233642578,-0.03298277407884598,-0.024281194433569908,-0.04866476356983185,-0.004113028757274151,0.06586944311857224,0.011565863154828548,-0.008369998075067997,0.04902040585875511,0.0401223860681057,-0.027636855840682983,0.007878518663346767,0.01957741752266884,0.023020124062895775,-0.03733536973595619,0.014667981304228306,-2.1600806476840262e-8,0.05867256969213486,0.009955020621418953,-0.038491930812597275,0.0359535738825798,0.04419705644249916,-0.06187218800187111,0.020425857976078987,-0.020619351416826248,-0.01521663460880518,0.09349793195724487,0.000025136498152278364,-0.05266013368964195,-0.011337381787598133,-0.061536744236946106,0.02469884604215622,0.09488581120967865,0.07439106702804565,0.013036378659307957,-0.02967245504260063,-0.056791648268699646,0.09031783044338226,0.02629205398261547,-0.007326164748519659,-0.04689667746424675,-0.07117453217506409,0.08172538131475449,0.04056478291749954,-0.0005049658357165754,0.10671453922986984,-0.013639776967465878,0.030071841552853584,0.09175027906894684,-0.024094458669424057,-0.043440356850624084,-0.037045370787382126,0.007302361074835062,0.03848406299948692,0.08870713412761688,0.012462003156542778,0.03167601674795151,0.054251350462436676,0.02513669990003109,0.008692107163369656,0.03280511498451233,0.02955942414700985,0.03337503597140312,0.03899997100234032,-0.05784791707992554,-0.012933524325489998,-0.0008855589549057186,0.006432611495256424,0.027929047122597694,0.03508799150586128,0.03098832629621029,-0.05155868083238602,-0.031146863475441933,0.011863908730447292,0.010855167172849178,-0.009195242077112198,0.027302127331495285,0.045071832835674286,0.052980560809373856,-0.011915070004761219,0.010841552168130875]},{"text":"Dicam insigne, recens, adhuc Indictum ore alio.","book":"Homage to Catalonia","chapter":22,"embedding":[-0.0495004802942276,0.013079612515866756,-0.032415781170129776,0.008425243198871613,-0.015651732683181763,-0.0387931652367115,0.10381590574979782,0.10144609212875366,-0.016432693228125572,-0.021786432713270187,0.10431388765573502,-0.08191366493701935,-0.011042891070246696,-0.05336718261241913,-0.017215680330991745,0.012318036518990993,0.07869185507297516,0.08969239145517349,-0.06486053019762039,-0.006600787863135338,-0.012432148680090904,-0.05884043872356415,-0.03471595048904419,0.08022118359804153,-0.1003885567188263,0.021660396829247475,0.011378960683941841,0.034883446991443634,-0.017362793907523155,-0.16936522722244263,0.018132099881768227,0.07703706622123718,0.11196156591176987,-0.04386141151189804,-0.0034340526908636093,0.026871828362345695,0.00138152576982975,-0.05229322612285614,0.03112419880926609,0.06661508232355118,0.005455762147903442,0.05428796261548996,-0.03318226709961891,-0.06737370789051056,0.045907940715551376,-0.02553563006222248,-0.007182100787758827,0.0938141718506813,0.016597140580415726,0.02067028358578682,-0.03811433166265488,0.024033913388848305,-0.0989043116569519,0.007248466368764639,-0.05229866877198219,-0.0695282593369484,-0.03852522373199463,0.03377103805541992,0.0024192719720304012,-0.03246605396270752,0.04673323407769203,0.01163726206868887,-0.07852939516305923,0.06799867004156113,-0.1301109939813614,0.017620297148823738,0.000324032676871866,0.020144861191511154,0.010052497498691082,0.010978271253407001,0.07017049193382263,-0.05199515074491501,0.04037477448582649,0.03972947224974632,-0.015482441522181034,0.023709703236818314,0.030867140740156174,-0.04745412990450859,-0.05284504219889641,-0.08031615614891052,-0.008897874504327774,0.07627677172422409,0.06338680535554886,-0.03686550259590149,-0.002078402554616332,0.00023945678549353033,-0.0009982108604162931,-0.021990349516272545,0.02848782390356064,-0.03645498305559158,0.002785690361633897,0.03520930930972099,-0.0909096896648407,-0.03372092545032501,0.015814706683158875,-0.02140195108950138,0.00005644087650580332,-0.005278625525534153,-0.03797689080238342,0.045854393392801285,0.0783122330904007,0.03997180238366127,-0.04866680130362511,-0.0781092569231987,-0.06791933625936508,-0.029802368953824043,-0.016002744436264038,-0.06383227556943893,0.05802912637591362,0.0671328753232956,-0.07800072431564331,-0.029248906299471855,-0.016220854595303535,-0.06110088527202606,0.025399181991815567,0.02424810826778412,-0.04908398166298866,-0.09737063944339752,0.058514345437288284,-0.08005670458078384,0.037927158176898956,-0.04161461442708969,-0.023775003850460052,-0.03144435957074165,0.02459513396024704,-0.10915972292423248,0.10395730286836624,3.2414998754733535e-33,-0.09266092628240585,-0.055720727890729904,0.01693878136575222,0.03944871574640274,0.09386351704597473,-0.011476953513920307,-0.06937465816736221,-0.018628587946295738,-0.04025692120194435,-0.03145765885710716,-0.0672762468457222,0.006996236275881529,-0.00781599897891283,0.03879701718688011,0.018418435007333755,0.00524182477965951,-0.009059696458280087,0.028605815023183823,-0.017660290002822876,-0.03392082825303078,-0.041334014385938644,0.02808612957596779,-0.05334218591451645,0.055938102304935455,-0.01458027958869934,0.09012742340564728,0.043822597712278366,-0.08277919888496399,0.0017469661543145776,0.01884610205888748,0.09973396360874176,0.019124800339341164,-0.0030222348868846893,0.01805042289197445,-0.1493895947933197,0.005105199757963419,-0.04178057238459587,-0.0027116602286696434,-0.020476417616009712,0.014822985976934433,0.045083094388246536,0.07234598696231842,0.018098659813404083,0.022681163623929024,0.05851363390684128,-0.03177880868315697,0.013689007610082626,0.08469676226377487,0.08276358246803284,0.030308090150356293,-0.02135535143315792,0.018132206052541733,-0.016405435279011726,0.010679046623408794,-0.05622294917702675,-0.03492517024278641,-0.06471004337072372,0.054136842489242554,0.0041267480701208115,0.015202609822154045,0.021587014198303223,0.031278155744075775,-0.016370264813303947,0.02508416213095188,-0.0643618181347847,-0.059617314487695694,-0.06498703360557556,0.055050477385520935,0.07747973501682281,-0.011404365301132202,-0.09060876816511154,-0.029774073511362076,0.03677944839000702,0.019576705992221832,-0.059924934059381485,0.014301208779215813,0.012865561991930008,-0.019490733742713928,-0.02577834576368332,0.056103892624378204,-0.09408120065927505,0.005426141899079084,0.049960050731897354,0.06383144110441208,0.01695851795375347,0.05018952861428261,0.004273052327334881,0.051354315131902695,0.02143372781574726,0.07349059730768204,-0.04193480312824249,0.13455413281917572,-0.019857436418533325,-0.04984300211071968,0.045002926141023636,-3.282762665923093e-33,0.03344966098666191,-0.011938400566577911,-0.015840847045183182,0.04933004453778267,-0.01870553195476532,-0.002424943959340453,-0.039029620587825775,0.07488418370485306,0.09259480983018875,-0.06361419707536697,-0.015260694548487663,-0.14582300186157227,0.06582032144069672,-0.015406057238578796,-0.010966196656227112,0.08963027596473694,0.007620915304869413,0.03577258810400963,-0.031965360045433044,-0.01523065660148859,-0.038388192653656006,0.07734749466180801,-0.024554604664444923,-0.04370298609137535,0.012449410744011402,0.026556354016065598,-0.004057917278259993,-0.012674910947680473,0.046511709690093994,0.018501516431570053,-0.0056261708959937096,-0.02862609177827835,-0.061769694089889526,0.06129467859864235,-0.029212888330221176,-0.042284104973077774,0.03517511114478111,0.00005818987847305834,-0.06544389575719833,0.11630938947200775,-0.03810953348875046,0.028655849397182465,0.013403507880866528,0.12150388956069946,0.05526983365416527,0.0001155853460659273,-0.05113968625664711,-0.012396560050547123,-0.00040334343793801963,0.0025310837663710117,0.07337987422943115,-0.018999218940734863,-0.049939315766096115,0.03408820554614067,0.04466033726930618,0.00494106812402606,-0.0064528933726251125,-0.034696415066719055,-0.06982488930225372,-0.0019606533460319042,0.03169208765029907,0.03330504149198532,0.006769256666302681,-0.055193763226270676,0.04468778148293495,0.0758504569530487,0.02292514033615589,0.05422576889395714,0.002954954281449318,-0.011762664653360844,0.12135454267263412,-0.062376853078603745,-0.0656636506319046,-0.0620126836001873,-0.018449274823069572,0.001786047127097845,0.020745055750012398,0.03605177253484726,-0.009135259315371513,0.05074445530772209,-0.052030403167009354,-0.08202575892210007,0.00182049919385463,0.03646819293498993,-0.018059782683849335,0.042415034025907516,-0.021309716627001762,-0.06319022923707962,0.018044041469693184,0.03898047283291817,-0.050747986882925034,-0.016978759318590164,0.05043642595410347,0.04817311465740204,0.0005703997449018061,-2.3816300043222327e-8,-0.03371620923280716,-0.08649907261133194,-0.005003850907087326,0.08751215785741806,0.0044885254465043545,-0.02963448129594326,-0.02256130240857601,0.05611952021718025,-0.1076701208949089,-0.02514512464404106,0.044606778770685196,0.024622926488518715,-0.07104937732219696,0.06918329745531082,0.050848156213760376,0.02640610560774803,0.05599353089928627,0.06303296238183975,0.007328065112233162,-0.04944874718785286,-0.034777458757162094,-0.0318375863134861,0.03413556516170502,-0.09372912347316742,-0.055739350616931915,0.023575926199555397,0.02459561824798584,-0.04688208922743797,0.0472257062792778,-0.04136324301362038,0.011391016654670238,0.04129780828952789,0.06588228046894073,-0.0989050418138504,0.056736260652542114,0.03429115563631058,-0.058634914457798004,0.023902758955955505,-0.010589009150862694,-0.03761543333530426,0.02055766060948372,0.020413363352417946,0.021732758730649948,-0.014981760643422604,0.031219415366649628,-0.08906600624322891,0.04364445433020592,0.02183833345770836,0.06070944666862488,-0.06557536125183105,-0.10943705588579178,-0.010740638710558414,0.124654620885849,-0.029491253197193146,0.04486620053648949,0.031400833278894424,0.05703762173652649,-0.060904327780008316,0.006529004778712988,0.02827015332877636,0.025891659781336784,0.03654945641756058,0.048576660454273224,-0.03545598313212395]},{"text":"O Naiadum potens Baccharumque valentium 15 Proceras manibus vertere fraxinos, Nil parvum aut humili modo, Nil mortale loquar.","book":"Homage to Catalonia","chapter":22,"embedding":[-0.007103345822542906,0.03835074231028557,-0.013312849216163158,-0.01970735937356949,-0.04839625209569931,-0.013512483797967434,0.055973492562770844,0.09279540181159973,0.031286053359508514,0.047011226415634155,0.07094497978687286,-0.07056859135627747,-0.018691783770918846,0.024045035243034363,-0.09422197937965393,-0.04261672496795654,0.008466815575957298,0.10005959123373032,-0.04303906112909317,0.06006162613630295,0.046424154192209244,0.03357117623090744,-0.0028880732133984566,0.0865316390991211,-0.06115381419658661,0.07873085886240005,-0.004389890935271978,0.008436711505055428,0.08649876713752747,-0.07719417661428452,-0.024100419133901596,0.13343170285224915,0.09711436182260513,-0.09970267117023468,0.04884267598390579,0.014160789549350739,-0.050373926758766174,-0.01689329743385315,0.0327417217195034,-0.02169640175998211,-0.007023109123110771,-0.046448130160570145,-0.010852456092834473,-0.07298970967531204,-0.007404695730656385,-0.0117235342040658,0.027016576379537582,0.03577312082052231,0.04216412454843521,0.031653884798288345,-0.0742093026638031,-0.026097798720002174,-0.04430718719959259,0.08612386882305145,-0.030808815732598305,-0.08032964169979095,0.04439118877053261,-0.009695093147456646,-0.0014894971391186118,-0.025660157203674316,-0.049608465284109116,0.05500452592968941,-0.013576262630522251,-0.031260229647159576,0.04767245799303055,-0.012899873778223991,0.023570992052555084,0.020925775170326233,-0.12909698486328125,-0.03349075838923454,0.11948961764574051,-0.06324271112680435,0.06451354175806046,0.1119980439543724,-0.09400231391191483,0.07110167294740677,-0.039968401193618774,-0.02027723751962185,0.03803076967597008,-0.056126900017261505,0.004740821197628975,0.06012796238064766,0.03889014944434166,-0.005716645158827305,-0.023272261023521423,0.01777038723230362,-0.06386015564203262,0.015744835138320923,0.026967288926243782,-0.014356656931340694,0.0001380101457471028,0.0703989639878273,-0.03404280170798302,-0.06555330753326416,-0.03571547195315361,0.03374841809272766,-0.017131127417087555,-0.041134972125291824,0.039145130664110184,-0.017684750258922577,0.051278211176395416,0.030780011788010597,-0.07006905972957611,-0.0012396087404340506,-0.06360840052366257,-0.01747286319732666,-0.026012105867266655,-0.09565818309783936,0.0797102302312851,0.03840502351522446,-0.030264638364315033,-0.06796005368232727,-0.01749970205128193,-0.07392013818025589,0.015178577974438667,0.014024601317942142,-0.021332256495952606,-0.03678811714053154,-0.014361903071403503,-0.06491194665431976,-0.007104868534952402,-0.08266683667898178,0.04964597523212433,-0.08404743671417236,0.02545565739274025,-0.12232256680727005,0.030601389706134796,1.2587722481062925e-32,0.006725178565829992,-0.09599710255861282,-0.03138751909136772,0.03693525120615959,0.07309248298406601,-0.06357310712337494,-0.014814900234341621,-0.04184410721063614,-0.019105447456240654,-0.10327108949422836,-0.08615729957818985,-0.045459944754838943,-0.025153236463665962,-0.044986072927713394,0.04301447421312332,0.028617696836590767,0.05208676680922508,-0.0885029286146164,0.01122673787176609,-0.0030051488429307938,-0.006136766169220209,0.00894605740904808,-0.008803178556263447,0.058618053793907166,0.03232027590274811,0.06517297029495239,0.007804127875715494,-0.06221838295459747,-0.024345453828573227,0.05266992002725601,0.13166509568691254,-0.00015963803161866963,-0.05210787430405617,-0.053612954914569855,-0.01152951829135418,-0.003196912817656994,0.022907687351107597,0.02978820726275444,-0.08519186824560165,-0.000209356308914721,-0.011719980277121067,-0.03448089584708214,0.038410697132349014,0.03860917687416077,0.08651086688041687,0.010224636644124985,-0.016433309763669968,0.07926241308450699,0.06728538125753403,0.06176881492137909,-0.0010992512106895447,-0.0009036443661898375,-0.02328658476471901,-0.06939784437417984,0.034759484231472015,0.021933099254965782,-0.07368102669715881,0.02095993235707283,-0.016798552125692368,0.0235576294362545,0.018918080255389214,-0.008579765446484089,-0.030278507620096207,-0.007458411622792482,0.0022205922286957502,-0.020385194569826126,-0.0914187803864479,-0.040106385946273804,0.13719242811203003,0.013562696054577827,-0.05005732923746109,0.02248859405517578,-0.03565748408436775,0.08176033198833466,-0.02598697878420353,0.01633555255830288,0.04157419130206108,-0.03419852629303932,-0.019923167303204536,0.04142165184020996,-0.04201102629303932,0.029926715418696404,0.007462601643055677,0.025388862937688828,0.06370259076356888,0.0006234344327822328,0.0556463897228241,0.03918351233005524,-0.032789599150419235,0.023845836520195007,0.06660774350166321,-0.0017307474045082927,0.03532332926988602,0.01759752817451954,-0.02839658409357071,-1.1309330497557439e-32,0.07610486447811127,-0.042920298874378204,-0.11840735375881195,0.05804707854986191,-0.034349601715803146,-0.08016271144151688,-0.09406748414039612,0.06020102649927139,-0.006878483574837446,-0.0901172012090683,-0.0016581462696194649,-0.04610355943441391,0.08141091465950012,0.06575730443000793,-0.027929801493883133,0.08569379150867462,0.019939640536904335,0.0079294852912426,-0.03504108265042305,-0.02416106127202511,-0.06918296217918396,0.04211774468421936,0.00490967882797122,-0.07888636738061905,-0.02392435260117054,0.014429444447159767,-0.0100027434527874,-0.05659426003694534,-0.06981547921895981,0.07735678553581238,0.05264996364712715,0.0025235647335648537,-0.01982981339097023,-0.017240678891539574,-0.0173500906676054,-0.0014337741304188967,0.10982613265514374,-0.06325837969779968,-0.04141383245587349,-0.021388182416558266,-0.005664953961968422,0.08070432394742966,0.04400866478681564,-0.014322306029498577,-0.02852555736899376,-0.001362290233373642,-0.06256718188524246,-0.021748455241322517,0.03972217068076134,-0.02521738037467003,0.11893311142921448,-0.016032608225941658,0.02009405940771103,-0.03327454999089241,0.043866295367479324,-0.08920087665319443,-0.03542158380150795,-0.007251610979437828,-0.057417530566453934,0.011542817577719688,0.04362516105175018,0.017251942306756973,0.03495794162154198,-0.03183530271053314,0.054200224578380585,0.0447787381708622,-0.04344193637371063,0.0530698262155056,-0.024031100794672966,0.03793485835194588,0.06179272010922432,-0.07868160307407379,-0.01253352127969265,0.026148969307541847,-0.036016933619976044,0.022682826966047287,0.04688933864235878,0.07424689084291458,0.01141007337719202,0.024501392617821693,0.005105224438011646,-0.021511798724532127,-0.07710037380456924,-0.02462618425488472,-0.07937721163034439,-0.03791416808962822,0.05434485897421837,0.022146835923194885,0.01827104575932026,-0.030498595908284187,-0.05933694168925285,0.011404386721551418,0.02365482598543167,-0.025123314931988716,0.05643882974982262,-4.375957018964982e-8,-0.002122318372130394,-0.0948692187666893,-0.07746759802103043,0.027643337845802307,0.08114248514175415,0.028448019176721573,0.004848060198128223,-0.011755788698792458,0.015489593148231506,0.036664094775915146,0.03393033519387245,0.036730505526065826,-0.050238240510225296,-0.0012955991551280022,0.06999913603067398,0.009583508595824242,0.1046450063586235,0.057979799807071686,-0.025241240859031677,-0.12350323051214218,0.04544249549508095,-0.029627475887537003,-0.028329379856586456,-0.029698172584176064,-0.020739955827593803,-0.017237942665815353,0.012033747509121895,-0.17027345299720764,-0.05548945069313049,-0.014538196846842766,-0.0010953908786177635,0.06854838132858276,0.044672172516584396,-0.08865781128406525,-0.0016681370325386524,0.07904411107301712,-0.02686857245862484,0.0026123516727238894,-0.004465922247618437,0.024391187354922295,0.042374927550554276,-0.04921143129467964,-0.01695488765835762,-0.052959609776735306,0.04148079827427864,-0.043498266488313675,0.06052161380648613,-0.02618127316236496,-0.001902855234220624,-0.07922841608524323,-0.025383438915014267,0.0023304445203393698,0.08884112536907196,-0.013233222998678684,0.002927932422608137,0.0014594665262848139,0.09630166739225388,-0.002823906484991312,-0.010600589215755463,-0.025477206334471703,0.0779184103012085,0.05545626953244209,0.06839272379875183,0.0028739478439092636]},{"text":"Vixi puellis nuper idoneus Et militavi non sine gloria; Nunc arma defunctumque bello Barbiton hic paries habebit, Laevum marinae qui Veneris latus 5 Custodit.","book":"Homage to Catalonia","chapter":22,"embedding":[-0.040193043649196625,0.04750094562768936,-0.06074453517794609,-0.03499356657266617,-0.10537929087877274,0.03944559395313263,0.04110797122120857,0.05636981129646301,0.015056281350553036,0.03839674964547157,0.041770368814468384,-0.08265983313322067,0.021418079733848572,-0.0793311819434166,-0.07186321914196014,-0.07236985117197037,-0.0028922613710165024,0.07544896006584167,0.011712917126715183,0.05525631457567215,-0.008495992049574852,-0.007619654294103384,0.007080648560076952,0.05237096920609474,-0.05220133066177368,0.06864669919013977,-0.01787678152322769,-0.004522399045526981,-0.023328226059675217,-0.09542503952980042,-0.006334227509796619,0.0800844132900238,0.09840498119592667,-0.020392389968037605,0.031777046620845795,0.05400782823562622,-0.010937965475022793,-0.06149920076131821,0.07195349037647247,0.036907874047756195,-0.05613099783658981,-0.07537417858839035,-0.043127067387104034,-0.0318947359919548,-0.002695832634344697,-0.0021606148220598698,-0.03134481981396675,0.10573890060186386,0.04131696745753288,-0.038829389959573746,0.003140075132250786,-0.04986858740448952,-0.04437587410211563,-0.021112555637955666,-0.07206451892852783,-0.07870287448167801,0.008263046853244305,-0.07241222262382507,0.02994118630886078,0.018992699682712555,-0.0015060933073982596,0.09128298610448837,0.024875516071915627,0.00858349446207285,-0.08670240640640259,-0.005696101114153862,0.01857461780309677,0.05907193198800087,-0.08829400688409805,0.012159120291471481,0.09895634651184082,-0.053924642503261566,-0.04450875520706177,0.05436309799551964,-0.08318812400102615,0.030754784122109413,0.10305636376142502,0.0024260245263576508,0.033024732023477554,-0.11549566686153412,-0.006016891915351152,-0.010761404410004616,0.04330555349588394,0.01706852577626705,0.017535531893372536,0.023912573233246803,-0.022835638374090195,0.0023026529233902693,0.08305831253528595,0.04485876113176346,-0.044877853244543076,0.02756291627883911,-0.008027815259993076,-0.06076323240995407,0.08339055627584457,0.0029341215267777443,-0.030032599344849586,-0.024819256737828255,-0.020763441920280457,-0.025117289274930954,0.0365460142493248,0.010243221186101437,0.010745172388851643,0.0771305039525032,-0.017503771930933,-0.014938549138605595,0.057089053094387054,-0.09164293110370636,0.05008683726191521,-0.058599915355443954,-0.0773976743221283,0.010045736096799374,-0.05703591927886009,-0.10987168550491333,-0.010358667932450771,0.015979483723640442,0.02823684737086296,-0.06092645972967148,-0.044565506279468536,-0.09756544232368469,0.05408710613846779,-0.03351718187332153,-0.02286597341299057,-0.07293969392776489,0.005218358710408211,-0.00976607296615839,0.055417079478502274,1.4569652976323334e-32,-0.10454258322715759,-0.10802365839481354,0.0046394215896725655,0.06230258569121361,-0.021510111168026924,0.009905699640512466,-0.09013253450393677,-0.02696056105196476,0.02594578266143799,-0.04165561497211456,-0.14936168491840363,-0.09995325654745102,-0.019000614061951637,0.022604569792747498,0.09118963032960892,0.07017649710178375,0.06077738106250763,-0.02618391439318657,0.02544933743774891,-0.04391904175281525,-0.05322800576686859,0.0036722086369991302,0.013867045752704144,0.05856020003557205,0.054580673575401306,0.061033617705106735,0.05938104912638664,-0.03931412845849991,-0.03893078491091728,0.02287169173359871,-0.008968185633420944,-0.0028296513482928276,0.05165645107626915,-0.06547083705663681,0.05226768180727959,0.047785330563783646,0.027104919776320457,0.03641807287931442,-0.028057251125574112,0.05282414332032204,0.007659401278942823,0.02463076263666153,-0.012741495855152607,-0.004086637869477272,0.04728950187563896,-0.026350760832428932,0.023560160771012306,-0.004091984126716852,0.052558448165655136,0.01126620639115572,-0.057163190096616745,-0.011751789599657059,-0.03982163220643997,0.000002402910467935726,-0.0035036071203649044,0.04851989448070526,-0.04165991023182869,0.10498496145009995,-0.07059230655431747,-0.05042754113674164,0.03864706680178642,-0.023606644943356514,0.03216773271560669,0.027825742959976196,0.044195543974637985,0.061535026878118515,-0.029580727219581604,-0.0015217297477647662,0.06794845312833786,0.012563544325530529,-0.05161774158477783,0.0010896766325458884,-0.04491209238767624,-0.021205898374319077,0.010307826101779938,0.05472998693585396,0.029949989169836044,-0.06823648512363434,0.01706092432141304,-0.06611380726099014,-0.06041102856397629,0.03378433734178543,0.08635677397251129,0.05638613924384117,0.13471508026123047,0.02281913347542286,0.06998706609010696,-0.043527934700250626,0.013368473388254642,0.06330800801515579,-0.00542439566925168,0.016398154199123383,0.06904518604278564,0.0006768014281988144,-0.0038674850948154926,-1.4594423581031037e-32,0.008294173516333103,-0.007414922583848238,-0.07417090982198715,0.05312839895486832,-0.019026827067136765,0.04295004531741142,-0.07822266966104507,0.020513493567705154,-0.08501064032316208,-0.0485464408993721,-0.04290882125496864,-0.06064396724104881,0.010822193697094917,-0.04577592760324478,-0.004472885746508837,0.13409434258937836,0.06339722871780396,-0.007558427285403013,-0.06384952366352081,-0.0006292305188253522,-0.04320121183991432,-0.087469682097435,0.06320583075284958,-0.06528382748365402,-0.009649437852203846,0.0055303070694208145,0.05942852050065994,-0.024374686181545258,-0.05307940021157265,-0.03539522737264633,0.07583262026309967,-0.05055100470781326,0.013212787918746471,0.0403050035238266,-0.02459971234202385,0.06892573833465576,0.11860455572605133,0.011883491650223732,0.011933215893805027,0.003491767914965749,0.0006268703727982938,0.04818160831928253,0.08699385076761246,0.0006377826211974025,-0.05063134804368019,-0.02222115732729435,-0.07232873886823654,-0.038472846150398254,-0.08451852202415466,-0.025891728699207306,0.09084452688694,-0.06685177981853485,-0.016732435673475266,0.030128512531518936,-0.012141813524067402,-0.06608190387487411,-0.042470868676900864,-0.03750953450798988,-0.03246999531984329,-0.030436305329203606,0.04977550730109215,0.04899275675415993,-0.04295801743865013,0.02401207573711872,0.06894239783287048,-0.04623516649007797,-0.031589407473802567,0.13172981142997742,-0.08101961761713028,-0.04370606690645218,0.1125057190656662,-0.04520172253251076,-0.07660336792469025,0.03264747932553291,-0.055795371532440186,0.007565428968518972,-0.05706319212913513,-0.04466688632965088,0.017200244590640068,-0.0017782802460715175,-0.009707384742796421,-0.06680626422166824,-0.07536397129297256,0.003772037336602807,-0.08203598111867905,0.00838962011039257,0.057031042873859406,0.03567809239029884,0.02921491675078869,-0.015537814237177372,-0.01701659895479679,-0.027572056278586388,0.015117240138351917,-0.056240592151880264,-0.03382333740592003,-4.749858106833926e-8,0.029481489211320877,-0.03021523356437683,-0.08321163803339005,0.0013712700456380844,0.003273694310337305,-0.04923245310783386,-0.10426241904497147,-0.04393185302615166,0.06941433995962143,0.04074693098664284,-0.05791952833533287,-0.018635645508766174,0.0051169791258871555,-0.02354002371430397,-0.009016642346978188,0.03629748523235321,0.0762210339307785,0.030462518334388733,-0.00007797165017109364,-0.03009776398539543,0.04520637169480324,0.00441712373867631,-0.07488978654146194,-0.04643242806196213,-0.04309629648923874,-0.019313715398311615,-0.019808074459433556,-0.057447049766778946,0.032875869423151016,-0.015595925971865654,0.03551929444074631,0.10028813034296036,0.004523784387856722,-0.09031450748443604,-0.01909130997955799,0.0820465236902237,0.05389465391635895,-0.034480173140764236,-0.008348707109689713,0.013873337768018246,0.061440326273441315,0.03268008679151535,0.02017197571694851,-0.05088232457637787,-0.025517910718917847,-0.019316280260682106,0.02676556259393692,-0.02309250831604004,0.03505581617355347,-0.03748296946287155,-0.008441994898021221,0.028577076271176338,0.09203445166349411,0.07352099567651749,-0.024636942893266678,-0.0019496874883770943,0.0833742618560791,0.04734242707490921,0.02802969142794609,0.017378361895680428,0.06614900380373001,0.00837042648345232,0.0169339869171381,0.037144750356674194]},{"text":"Impios parrae recinentis omen Ducat et praegnans canis aut ab agro Rava decurrens lupa Lanuvino Fetaque volpes; Rumpat et serpens iter institutum, 5 Si per obliquum similis sagittae Terruit mannos: ego cui timebo, Providus auspex, Antequam stantis repetat paludes Imbrium divina avis imminentum, 10 Oscinem corvum prece suscitabo Solis ab ortu.","book":"Homage to Catalonia","chapter":22,"embedding":[-0.004873865749686956,-0.010784967802464962,-0.01625683158636093,0.01581842638552189,-0.07275436818599701,0.03071526251733303,0.06407884508371353,0.08564411103725433,0.06357019394636154,0.06255289167165756,0.04467853158712387,0.008390648290514946,-0.032822005450725555,0.027806272730231285,-0.10134369879961014,-0.0745723620057106,-0.010339665226638317,0.0497891940176487,0.011664466932415962,0.016295088455080986,0.08038272708654404,0.004035491030663252,-0.06160062551498413,0.02996804751455784,-0.04186129942536354,0.007758768741041422,-0.046547070145606995,-0.04283933341503143,0.04464660957455635,-0.05436845123767853,0.015465290285646915,0.015331604517996311,0.046823691576719284,-0.04888637363910675,-0.02494974248111248,0.041982345283031464,0.003780920524150133,-0.06095274165272713,0.05980408936738968,0.0284368097782135,-0.01926831156015396,-0.06235246732831001,-0.06046534702181816,-0.04298614338040352,-0.004026914946734905,-0.026869993656873703,0.008900712244212627,0.10142268240451813,-0.021478811278939247,-0.007891277782619,-0.06614939868450165,-0.07890662550926208,-0.01123899407684803,-0.0007910864660516381,-0.03428785130381584,-0.044855378568172455,-0.0714414045214653,-0.07113257050514221,-0.023137900978326797,-0.10100714862346649,-0.008172205649316311,0.07096293568611145,-0.01019743550568819,0.012015250511467457,-0.03506653755903244,0.028443554416298866,-0.01656199060380459,0.027190441265702248,-0.0026889084838330746,0.03366529196500778,0.06818198412656784,0.0015087724896147847,-0.012228822335600853,0.06798143684864044,-0.07417741417884827,0.03455645591020584,0.04505804181098938,0.03469184413552284,-0.012795327231287956,-0.07031384110450745,0.04815485328435898,0.032789211720228195,0.03895926475524902,-0.004738381132483482,0.03202872350811958,-0.02222609706223011,0.037142373621463776,-0.008257578127086163,0.03939881920814514,-0.05334740877151489,0.020203489810228348,-0.0245920829474926,-0.021594548597931862,-0.024133842438459396,0.0155109204351902,0.0005571393994614482,-0.09028398990631104,-0.06898609548807144,-0.01540505699813366,0.017710788175463676,-0.055024050176143646,0.006344628520309925,-0.015024957247078419,0.03212502598762512,-0.1237272098660469,-0.048983801156282425,-0.10429974645376205,-0.08901642262935638,0.01626662351191044,0.0696106031537056,-0.10502500832080841,-0.05050406977534294,-0.018175320699810982,-0.013469189405441284,0.01592423766851425,0.03080553188920021,-0.025003327056765556,-0.061147481203079224,0.025177396833896637,-0.06459543853998184,-0.014178366400301456,0.003567126113921404,0.0666060745716095,-0.037844907492399216,0.051178980618715286,-0.035103172063827515,0.055749110877513885,2.502412945181625e-32,-0.06231989711523056,-0.10881611704826355,0.02108404040336609,-0.03197164461016655,0.03115757927298546,-0.014797568321228027,-0.08362507075071335,-0.05384179577231407,0.0745726227760315,-0.10920387506484985,-0.05704313889145851,-0.024426085874438286,0.00629197945818305,-0.06709852069616318,-0.03065660409629345,0.04483766108751297,0.10469234734773636,0.03895379975438118,-0.009456302039325237,-0.015522832982242107,-0.08724416792392731,0.05069649964570999,0.008460584096610546,-0.05513798072934151,0.0299691092222929,-0.0010978563223034143,0.015788201242685318,-0.02376205287873745,-0.01296672597527504,0.0428607314825058,0.12237323820590973,-0.027251319959759712,-0.048434022814035416,-0.06771691143512726,-0.04141715168952942,0.018666082993149757,0.03629961982369423,-0.040353406220674515,-0.022793840616941452,0.008371093310415745,0.007448906544595957,-0.006032368168234825,0.043793946504592896,0.04367459565401077,0.09078316390514374,-0.0007020460325293243,0.036139801144599915,0.0025300648994743824,0.016818402335047722,0.036175817251205444,-0.01671232283115387,0.03491494804620743,-0.020174134522676468,-0.10011528432369232,-0.02269168570637703,0.004223636817187071,-0.04158150032162666,0.06919369101524353,-0.06422525644302368,-0.010893451981246471,0.03594270348548889,-0.005729874595999718,-0.006547434255480766,-0.10555464029312134,-0.05532945320010185,-0.05299883708357811,-0.05276741459965706,0.02334536239504814,0.06557796895503998,0.07494794577360153,-0.12388773262500763,-0.028792323544621468,-0.015579662285745144,-0.05322335287928581,0.02413044683635235,0.004285398870706558,0.09837211668491364,0.043699104338884354,-0.0003033360408153385,0.0058792028576135635,-0.0837811529636383,-0.05952740088105202,0.05235379934310913,0.036059536039829254,0.09184030443429947,0.0034983695950359106,-0.008188635110855103,0.045554257929325104,0.091922327876091,0.00040381509461440146,0.09684699028730392,0.06640751659870148,0.0019366564229130745,0.04182833805680275,-0.01660984195768833,-2.2859068691641237e-32,0.01557915285229683,-0.035782068967819214,-0.07707122713327408,0.13811932504177094,-0.011612676084041595,0.015325716696679592,-0.08349739015102386,0.09367945790290833,0.00041217077523469925,-0.07937386631965637,-0.06890106201171875,-0.05578785017132759,0.07074999809265137,-0.08611313253641129,-0.012619826011359692,0.08982684463262558,0.09666790813207626,0.03169682249426842,-0.04951424524188042,-0.03709463030099869,-0.03872015327215195,0.06977927684783936,0.0749935507774353,-0.11131131649017334,-0.011786289513111115,0.018908975645899773,0.0867033451795578,-0.0010636558290570974,-0.07031826674938202,-0.05209612846374512,0.07582666724920273,-0.0039781369268894196,-0.08651198446750641,0.002227035816758871,-0.0815785601735115,-0.035622961819171906,0.03835422918200493,-0.00007055675814626738,-0.036027174443006516,-0.01916418969631195,0.012315875850617886,0.025775393471121788,0.017610900104045868,-0.06073625013232231,-0.026616469025611877,-0.035660888999700546,-0.02576933428645134,0.0013339074794203043,0.028543077409267426,0.023584870621562004,0.0868360623717308,-0.06540940701961517,0.04730398580431938,0.010698596015572548,0.0939609631896019,-0.04317308962345123,-0.036512091755867004,-0.046782735735177994,-0.09628397226333618,0.08753029257059097,0.04351627454161644,0.0005127845797687769,0.05430879443883896,-0.04301445558667183,0.1027229055762291,-0.04523276537656784,-0.09321415424346924,0.06628139317035675,0.00497227581217885,0.0345553383231163,0.10249225050210953,-0.01850716769695282,-0.15871231257915497,0.037004485726356506,-0.025020066648721695,0.019609512761235237,-0.014321205206215382,-0.041102372109889984,0.004705308936536312,-0.027125947177410126,-0.11823787540197372,-0.0106752784922719,-0.06000348553061485,-0.014923760667443275,-0.03859340026974678,-0.007157420739531517,0.039084695279598236,0.01250004954636097,0.03743578493595123,0.02817809209227562,-0.04381943494081497,0.0015598220052197576,0.006648351438343525,0.02946094237267971,0.032394424080848694,-7.257577294694784e-8,0.029192836955189705,-0.07493314146995544,-0.022664954885840416,0.04841619357466698,0.04256027191877365,-0.07226922363042831,0.029728861525654793,0.0024925260804593563,-0.042306914925575256,0.03158542141318321,-0.04059377312660217,0.03813641890883446,0.08822941780090332,0.06189614534378052,0.058478452265262604,0.04561959579586983,0.11103887856006622,-0.013398039154708385,-0.07697293907403946,-0.0823540985584259,0.06446638703346252,-0.06683488190174103,-0.032159462571144104,-0.004021668341010809,-0.011668370105326176,-0.02474561519920826,0.03172815963625908,0.02392093650996685,-0.013613375835120678,-0.0060373833402991295,-0.02254290133714676,0.015384863130748272,0.0002554256934672594,-0.07791025191545486,-0.02045031450688839,0.04541623219847679,0.033119555562734604,0.029886476695537567,-0.017751773819327354,0.06088670715689659,0.06529717147350311,-0.029067019000649452,0.0892859473824501,0.016171110793948174,-0.028950026258826256,-0.03531952202320099,0.02973029762506485,0.028072454035282135,-0.006699780467897654,-0.050661586225032806,-0.006786602083593607,0.06632503122091293,0.04105160012841225,0.043721575289964676,-0.046042442321777344,-0.013004953972995281,0.014096884988248348,-0.017650321125984192,0.03222036734223366,-0.0034310598857700825,0.06979771703481674,-0.021367428824305534,0.0612410269677639,-0.00260248058475554]},{"text":"Sed vides quanto trepidet tumultu Pronus Orion.","book":"Homage to Catalonia","chapter":23,"embedding":[-0.08597171306610107,0.04479097202420235,-0.02095887064933777,-0.052657630294561386,-0.09542560577392578,0.0015855615492910147,0.052820682525634766,0.07492828369140625,0.013556953519582748,0.036751095205545425,0.07333742082118988,-0.06593447178602219,-0.07872962206602097,-0.10736873745918274,-0.018619438633322716,-0.04643964394927025,-0.08209915459156036,0.049659740179777145,0.009104268625378609,0.004343966953456402,-0.013543645851314068,0.039889074862003326,-0.01080046035349369,0.06292552500963211,-0.03641492500901222,-0.014589591883122921,-0.020919611677527428,-0.04502019286155701,0.047245413064956665,-0.045196011662483215,0.04336339607834816,0.05693816766142845,0.0012137399753555655,0.006250699050724506,0.06738579273223877,0.053677357733249664,0.00022160119260661304,-0.08310199528932571,-0.018202899023890495,0.07450997084379196,-0.07235002517700195,0.028001265600323677,-0.06609822809696198,-0.049380913376808167,-0.04380054026842117,-0.029404018074274063,-0.02850351110100746,0.07901176810264587,-0.0027804127894341946,0.06430990248918533,-0.03609367460012436,-0.04412001743912697,-0.07623045891523361,-0.007299806457012892,-0.006228805053979158,0.0340711884200573,0.010361840948462486,-0.08308634907007217,-0.013837339356541634,-0.03287595510482788,0.011728624813258648,0.05816666781902313,-0.04906176030635834,0.05432368814945221,0.010717104189097881,-0.060659922659397125,-0.08779031783342361,0.010611562989652157,-0.06811760365962982,0.07943752408027649,0.06525606662034988,-0.07489616423845291,-0.05486965551972389,0.0758361965417862,-0.09299904108047485,0.04266790673136711,0.017560677602887154,-0.07236774265766144,0.002221424365416169,-0.03557642921805382,0.03344552218914032,0.059080276638269424,-0.008107008412480354,0.00995275191962719,0.07239484041929245,-0.007239690516144037,0.028772728517651558,0.01899394765496254,0.00587837677448988,-0.018938034772872925,0.02974441833794117,-0.03193574771285057,0.003771659452468157,0.011068352498114109,-0.03475889191031456,0.03540053218603134,-0.018660858273506165,-0.10779199004173279,0.03996290639042854,0.04097285494208336,0.021893447265028954,-0.014548988081514835,-0.016148947179317474,0.06827819347381592,-0.13192325830459595,0.006846304051578045,-0.025193719193339348,0.003488140180706978,0.020200781524181366,0.0575191006064415,-0.005115853156894445,-0.07024698704481125,-0.031878404319286346,-0.08192136138677597,-0.014903729781508446,0.025934915989637375,-0.0990908220410347,-0.01911081187427044,0.01999981515109539,-0.05338609218597412,0.027669716626405716,-0.03197173774242401,0.04560065641999245,0.02207755297422409,0.043603893369436264,-0.013623740524053574,0.03788081556558609,2.157498474408388e-33,-0.021791154518723488,-0.13464854657649994,0.04565485939383507,0.01446666568517685,-0.04761761054396629,-0.014892336912453175,-0.07952021062374115,-0.04387322813272476,-0.0662180706858635,0.010520131327211857,-0.12638121843338013,-0.06205715984106064,0.007828634232282639,0.04898923262953758,0.06176811456680298,-0.016242384910583496,0.06468625366687775,-0.004950227681547403,-0.0006509479717351496,-0.01536778174340725,-0.04793364554643631,0.02370687760412693,0.04692590981721878,0.0013060923665761948,0.03721592202782631,-0.008024238049983978,-0.03930610045790672,-0.020993024110794067,-0.06726645678281784,0.05838281288743019,0.09824126213788986,-0.03699155151844025,-0.013601480983197689,0.006601476576179266,0.00008040464308578521,0.03581664711236954,0.0016956374747678638,0.017851801589131355,-0.07798771560192108,0.05250854417681694,0.02126978524029255,0.014856371097266674,0.023404717445373535,-0.060109518468379974,0.04763945937156677,0.011801015585660934,0.01880386285483837,0.03643696755170822,0.031691282987594604,0.013754178769886494,-0.03409567475318909,0.059304799884557724,-0.05421993508934975,-0.024862440302968025,0.044279906898736954,0.06704670190811157,-0.008594390004873276,0.07896141707897186,-0.030001947656273842,0.010306116193532944,-0.008744394406676292,-0.03410513699054718,0.003967724274843931,-0.0410081148147583,0.029613934457302094,0.02936977706849575,0.06473107635974884,-0.04766758531332016,-0.02004418708384037,0.06750257313251495,-0.15055792033672333,0.03516964241862297,0.036311276257038116,-0.050036340951919556,0.02378196083009243,0.0038412241265177727,-0.023568417876958847,0.011007538065314293,-0.09126082062721252,0.0014637457206845284,-0.08686257898807526,-0.016318462789058685,0.062378011643886566,0.022059157490730286,0.12003785371780396,-0.1260410100221634,0.020077640190720558,0.032946206629276276,0.0331612192094326,0.10587336122989655,0.00988190621137619,0.032456934452056885,-0.019492927938699722,0.02119731903076172,0.0026995555963367224,-3.953064442250501e-33,-0.05884605273604393,0.0003777479869313538,-0.04043764993548393,-0.00676009664312005,-0.04400277137756348,0.02210589312016964,-0.07083185017108917,0.07367506623268127,-0.11429055035114288,-0.04719281196594238,-0.08315210789442062,0.007608105894178152,0.0039446186274290085,-0.041124459356069565,-0.03304222226142883,0.07680754363536835,0.024674538522958755,0.027945727109909058,-0.07534226030111313,-0.07075466215610504,0.011567534878849983,-0.008587364107370377,0.06621049344539642,-0.035308778285980225,-0.024966463446617126,-0.03719436004757881,0.09804238379001617,-0.014204972423613071,-0.05790293589234352,-0.026287835091352463,0.05566978454589844,-0.03673005849123001,-0.038291867822408676,0.07971291244029999,-0.03596186637878418,0.08069179952144623,0.13261324167251587,0.003719769883900881,-0.05032011494040489,0.0436042845249176,-0.02777261659502983,0.10138178616762161,0.08823923766613007,-0.05127992480993271,0.0013339922297745943,-0.060242850333452225,-0.059409163892269135,0.00170604744926095,-0.12110144644975662,-0.03443031758069992,0.05494050309062004,0.0025568546261638403,0.13351275026798248,0.020014889538288116,0.06744709610939026,-0.0364638976752758,-0.07813256233930588,-0.07255237549543381,-0.04018534719944,0.05067402869462967,0.1091616302728653,0.0273775402456522,-0.01071255188435316,-0.0012347972951829433,0.08267293870449066,-0.0602932907640934,-0.07912962138652802,0.06701765954494476,0.0009466722258366644,0.05683201923966408,0.04610082507133484,-0.07187768816947937,-0.05420808866620064,-0.0006302304682321846,-0.04812079668045044,-0.05093524977564812,-0.019043227657675743,0.010213334113359451,0.06235004961490631,0.06328573077917099,-0.014334743842482567,-0.05295741558074951,0.015241886489093304,0.040338046848773956,-0.00905440654605627,0.015334608033299446,0.029928645119071007,-0.0036793984472751617,0.038056276738643646,0.05394553393125534,-0.03237151727080345,0.032663021236658096,0.05609416216611862,0.04092954471707344,0.04006430134177208,-2.194035886304846e-8,-0.00949641689658165,-0.027768118306994438,-0.0781736895442009,0.053838130086660385,0.03736765310168266,-0.01453328225761652,-0.04125729948282242,-0.038419466465711594,0.00214017229154706,0.0009264618856832385,-0.01385490782558918,0.04807199165225029,-0.05863090977072716,0.04415935277938843,0.018412012606859207,0.06430874764919281,0.0032478277571499348,0.02838602103292942,0.027142716571688652,-0.03614287078380585,0.06541261076927185,0.014521082863211632,-0.08041069656610489,-0.03866321220993996,-0.0915764793753624,0.02352111227810383,0.052487362176179886,-0.01480658259242773,0.029027922078967094,0.005949642509222031,-0.04697113856673241,0.04668456315994263,-0.05002204328775406,-0.03899525851011276,0.002335255965590477,0.013805696740746498,-0.01288154348731041,-0.0015248925192281604,0.02732972800731659,0.12077166885137558,0.1176149994134903,0.04953927546739578,0.09867285192012787,-0.035990990698337555,0.020647015422582626,0.05151873081922531,0.05832236260175705,0.03532101586461067,-0.001401265268214047,0.041717566549777985,-0.07783052325248718,0.028826717287302017,0.032261405140161514,0.03077821061015129,-0.03880207985639572,0.04117412865161896,0.057089097797870636,-0.010848610661923885,-0.06747597455978394,-0.03123500570654869,0.03840356692671776,0.04472140967845917,0.022824622690677643,0.03837385028600693]},{"text":"Sic et Europe niveum doloso 25 Credidit tauro latus et scatentem Beluis pontum mediasque fraudes Palluit audax: Nuper in pratis studiosa florum et Debitae Nymphis opifex coronae 30 Nocte sublustri nihil astra praeter Vidit et undas.","book":"Homage to Catalonia","chapter":23,"embedding":[-0.05256250873208046,0.036656878888607025,-0.05547132343053818,-0.06306792050600052,-0.02030145935714245,0.021689247339963913,0.08609022200107574,0.005862404126673937,0.037759970873594284,0.03433522209525108,0.03486866131424904,-0.03603620454668999,0.06316789239645004,0.019787371158599854,-0.09119468182325363,-0.12643155455589294,-0.01613304764032364,0.07022923976182938,0.02214493416249752,0.04075213521718979,0.017632415518164635,-0.030551305040717125,0.016151094809174538,0.02552720345556736,0.0038361363112926483,-0.04079269990324974,-0.0007851719856262207,-0.0723608210682869,-0.013911708258092403,-0.08475610613822937,0.020466892048716545,0.07548636198043823,0.0006259397487156093,-0.0633426308631897,0.05874583125114441,-0.0733657255768776,-0.02162824757397175,-0.05243505910038948,-0.006948959082365036,-0.006131292320787907,0.06597405672073364,-0.061580076813697815,-0.05453682318329811,-0.033951666206121445,-0.05629013851284981,-0.011088766157627106,-0.006397728342562914,0.16547691822052002,-0.02467425912618637,0.028133884072303772,-0.041512858122587204,-0.04918866232037544,-0.014214725233614445,-0.021612156182527542,-0.03386596590280533,-0.06468435376882553,0.03541473671793938,-0.012098782695829868,0.05715925246477127,-0.027908269315958023,0.0603083074092865,0.07210999727249146,-0.038319263607263565,0.027618033811450005,0.006997240241616964,0.04287375509738922,-0.04059050232172012,0.05490095540881157,-0.05490916967391968,-0.008841600269079208,0.15133629739284515,-0.11272455006837845,0.012687116861343384,0.05486090108752251,-0.036870285868644714,0.005616248585283756,-0.043028052896261215,-0.02935848757624626,-0.03078305721282959,-0.06489765644073486,0.022316042333841324,-0.026029078289866447,0.008312039077281952,-0.06382552534341812,0.04372783377766609,-0.056128017604351044,-0.005129240918904543,-0.02266559563577175,0.06677539646625519,-0.04105790704488754,-0.05597010627388954,0.009711957536637783,-0.01697046123445034,0.007572065573185682,0.03701377660036087,-0.024404574185609818,-0.019044043496251106,0.07653933018445969,0.07354287803173065,0.021422138437628746,0.0070493463426828384,0.0551484189927578,-0.017270252108573914,-0.004558488726615906,-0.07553230971097946,-0.07958834618330002,-0.006079964339733124,-0.050327397882938385,-0.022317487746477127,-0.02237623557448387,-0.11451953649520874,0.036949437111616135,-0.03445560485124588,-0.09841010719537735,0.10920843482017517,0.027421968057751656,0.0026700743474066257,0.013212979771196842,-0.06998942047357559,-0.09682486951351166,0.024146681651473045,0.054150983691215515,-0.0724521055817604,0.0038103805854916573,-0.009735774248838425,-0.043088991194963455,0.01639692485332489,2.0969728947659221e-32,-0.059817053377628326,-0.02184080332517624,-0.0657137855887413,0.040970951318740845,0.006916542537510395,-0.011829141527414322,-0.10869888216257095,-0.030485600233078003,0.023002756759524345,-0.01894293539226055,-0.006590511649847031,0.0025960523635149,-0.017422117292881012,-0.012271629646420479,0.035397838801145554,0.10189875215291977,0.11349059641361237,0.01793559081852436,-0.009133266285061836,-0.03381301090121269,-0.0030742499511688948,0.014776143245398998,0.06965803354978561,0.07765448093414307,0.005628965329378843,0.046772971749305725,-0.03351603448390961,-0.11222133040428162,0.015688011422753334,0.045916471630334854,0.051328275352716446,-0.00758918933570385,0.05001598224043846,0.0043989201076328754,0.06038505211472511,0.03700719028711319,-0.015152595937252045,-0.06603286415338516,-0.02368912287056446,0.02566630020737648,-0.05362530052661896,0.022863317281007767,0.04019194096326828,0.013673793524503708,-0.0014600002905353904,0.10097730159759521,0.06687957048416138,-0.07201949506998062,0.03484276682138443,0.06361918151378632,0.02788764052093029,0.01573926955461502,0.009362410753965378,0.014708793722093105,0.029594669118523598,0.04121169447898865,-0.04140520468354225,0.030148809775710106,0.0456392802298069,-0.10439901053905487,0.027824558317661285,0.046442851424217224,-0.013494487851858139,-0.0007674950757063925,-0.06571611762046814,-0.02417021617293358,0.013952950946986675,-0.015625091269612312,0.03481242433190346,0.007229083217680454,-0.06917993724346161,0.07944292575120926,-0.04009048268198967,0.03558693081140518,-0.016693061217665672,-0.010047522373497486,0.025275370106101036,0.03842273727059364,-0.03040267527103424,-0.013595706783235073,-0.06881582736968994,-0.04252070188522339,0.06339285522699356,-0.023777354508638382,0.018721867352724075,0.050977688282728195,0.05188415199518204,0.011408788152039051,0.07148159295320511,0.10866231471300125,0.022726576775312424,-0.0073713269084692,-0.007583292666822672,0.020428165793418884,-0.015749407932162285,-2.0308290031395029e-32,-0.10358195751905441,-0.027707282453775406,-0.10165462642908096,0.020407818257808685,-0.05126195028424263,-0.024169236421585083,-0.13182003796100616,0.019772153347730637,0.04590461775660515,-0.06721388548612595,-0.12069559842348099,-0.09485754370689392,0.06217939406633377,-0.00045053500798530877,-0.03966996446251869,-0.04411159083247185,0.15675733983516693,-0.022281641140580177,-0.09091416001319885,-0.05505962297320366,0.06244920566678047,-0.026613550260663033,-0.008199518546462059,-0.06977219134569168,0.0021080158185213804,0.03502970188856125,0.038528379052877426,-0.013025132939219475,0.003763623535633087,-0.033660516142845154,0.007004929706454277,0.09561652690172195,0.004857014864683151,0.04916274920105934,-0.020254982635378838,-0.00911977794021368,0.18069414794445038,0.0714430958032608,-0.027096116915345192,-0.06852342188358307,-0.005785553716123104,0.06566445529460907,-0.020558256655931473,-0.001370905083604157,-0.04932163655757904,-0.09670329838991165,-0.05392146483063698,-0.050588250160217285,0.013648442924022675,0.00025855330750346184,0.05336332321166992,-0.019304223358631134,0.04815893620252609,-0.03957867622375488,-0.026368971914052963,-0.007923190481960773,-0.0266936793923378,-0.07758112996816635,0.027909329161047935,0.07715414464473724,0.01793350651860237,0.04493412375450134,-0.0870337039232254,0.014801690354943275,0.05327905714511871,-0.0408705398440361,-0.11313702166080475,0.06587501615285873,-0.03423592448234558,0.02644866704940796,0.07647199183702469,-0.03172963485121727,-0.11009012907743454,-0.0013882460771128535,-0.044322505593299866,-0.030260754749178886,-0.00744892843067646,0.036389924585819244,0.0391136072576046,0.013885397464036942,0.036901697516441345,-0.05070315673947334,-0.00822846032679081,0.018413707613945007,0.01941782608628273,0.0164133720099926,0.0003750760806724429,-0.03599626198410988,-0.01245705783367157,-0.0746816098690033,0.00532498536631465,-0.07306972146034241,0.03932172805070877,-0.04192560538649559,-0.012382910586893559,-5.9499882354430156e-8,-0.04578064754605293,-0.03063109889626503,-0.0025730112101882696,0.08251286298036575,0.030234595760703087,-0.06807441264390945,0.005161924287676811,0.021445196121931076,-0.03880960866808891,-0.02054601162672043,-0.03434162959456444,-0.061925530433654785,0.047533269971609116,-0.09173364192247391,-0.0030790825840085745,-0.014033768326044083,0.07676859945058823,-0.013147258199751377,-0.03722840175032616,0.02270348183810711,0.09472567588090897,0.02303554117679596,0.017640575766563416,-0.044514529407024384,-0.08418871462345123,-0.019144052639603615,0.10339783132076263,0.005130854435265064,0.008784959092736244,-0.031266674399375916,-0.08170174062252045,-0.009922203607857227,0.0464010126888752,-0.012965593487024307,-0.01423208974301815,0.05464504659175873,0.027001861482858658,0.03336244076490402,-0.042078811675310135,-0.024954263120889664,0.0030102976597845554,-0.011672638356685638,0.0603923574090004,-0.025272784754633904,-0.02579287439584732,-0.011898704804480076,-0.03646431490778923,-0.04147001728415489,0.07348529249429703,-0.03962547332048416,-0.054879218339920044,-0.017636507749557495,0.06538818031549454,0.054828088730573654,-0.026654887944459915,-0.059518855065107346,0.09535841643810272,0.03330599516630173,-0.02056282013654709,0.010992659255862236,0.05417720600962639,-0.04754114896059036,0.016327252611517906,0.045004844665527344]},{"text":"Levis una mors est Virginum culpae.","book":"Homage to Catalonia","chapter":23,"embedding":[-0.039360225200653076,0.055523715913295746,-0.017483003437519073,0.031342361122369766,-0.021809488534927368,0.010012074373662472,0.09474433958530426,-0.021371440961956978,0.0748792514204979,0.021380625665187836,0.09547489881515503,-0.09806951135396957,-0.02694108337163925,-0.03315884619951248,-0.018373792991042137,-0.043801095336675644,-0.06878405064344406,0.05892942473292351,0.04417731240391731,0.01778065599501133,0.05481414869427681,-0.05715059116482735,-0.05171637982130051,0.11894625425338745,-0.050726380199193954,0.004308236762881279,-0.03231525793671608,0.006863157264888287,-0.015103111974895,-0.12169735878705978,-0.030266642570495605,0.020831750705838203,-0.047220628708601,-0.03952481225132942,-0.005710776429623365,0.03646109253168106,0.06741805374622345,-0.0872625932097435,0.010173528455197811,-0.033027924597263336,-0.04327724501490593,-0.01892385445535183,0.006685654167085886,0.05137935280799866,0.015284930355846882,0.014909203164279461,0.04220987856388092,0.09545176476240158,0.07152345776557922,-0.03357206657528877,0.0395524837076664,-0.11586745083332062,0.06356879323720932,0.10133596509695053,0.02207510732114315,0.0661289393901825,-0.010912971571087837,-0.09143901616334915,0.006121902260929346,-0.021179042756557465,-0.011561380699276924,0.08411945402622223,-0.01565469615161419,0.04632846266031265,-0.07326187938451767,0.027419226244091988,0.03778965398669243,-0.023018045350909233,-0.09421663731336594,0.03452913090586662,0.06027701124548912,0.005370918195694685,0.0657835453748703,0.08446916937828064,-0.030584292486310005,0.02868165448307991,-0.05958506837487221,-0.04626655578613281,-0.01239617820829153,-0.023143213242292404,-0.029646441340446472,-0.0233219675719738,-0.06813114881515503,-0.013120144605636597,0.034580133855342865,-0.030180830508470535,0.04593689367175102,-0.04387248679995537,0.039189454168081284,-0.01580515317618847,-0.03186802566051483,0.03143569082021713,-0.038765616714954376,-0.015939384698867798,0.1019216850399971,0.03829669579863548,-0.06894814968109131,-0.047696489840745926,-0.0347355380654335,0.04851130396127701,0.010164754465222359,0.03472845256328583,0.04518311843276024,0.11081207543611526,-0.04429781064391136,0.009882473386824131,0.011165915988385677,-0.026519613340497017,-0.04085753858089447,0.05297936871647835,-0.024372708052396774,-0.06199336051940918,0.009602186270058155,-0.04443605989217758,-0.006828904617577791,0.00825756136327982,0.07075536996126175,-0.08502693474292755,-0.031857140362262726,-0.041922613978385925,0.030017679557204247,0.01199391670525074,0.0006379599799402058,0.007146944757550955,0.04374902322888374,0.011251788586378098,0.015827758237719536,-9.009044724354668e-34,0.02795146219432354,-0.005056954920291901,-0.034807730466127396,-0.003051314502954483,0.02595323882997036,0.042229678481817245,-0.017657186836004257,0.015149420127272606,-0.005660225637257099,0.005564969498664141,-0.11765676736831665,-0.06269610673189163,-0.045044537633657455,0.00347381504252553,0.06175418943166733,0.03267378732562065,0.13870085775852203,-0.03821029141545296,0.07585266977548599,-0.0981547012925148,-0.12662124633789062,0.07380205392837524,0.029722372069954872,-0.01811833493411541,-0.033280208706855774,-0.025273974984884262,-0.040127914398908615,-0.048123862594366074,-0.06591755896806717,0.0332365557551384,0.04950694739818573,0.060018014162778854,0.05431545898318291,0.03215165436267853,0.041457775980234146,0.08105622231960297,0.0479021891951561,0.03526045382022858,0.01780509389936924,0.05934306979179382,0.06901922076940536,-0.015845030546188354,0.0720713883638382,-0.08644256740808487,0.02726825885474682,-0.011898168362677097,0.014558332972228527,0.01963186077773571,0.024389134719967842,0.023924678564071655,-0.013698482885956764,0.013820220716297626,-0.06123315170407295,-0.07143790274858475,0.07873363047838211,0.03672131150960922,-0.0741666927933693,0.05730030685663223,-0.08469153940677643,-0.039373889565467834,0.0474470853805542,-0.040353819727897644,-0.08630481362342834,-0.022621983662247658,-0.0687132254242897,-0.020842811092734337,0.035890594124794006,0.012053374201059341,-0.009601069614291191,0.025457561016082764,-0.10370354354381561,-0.0693780705332756,-0.06855517625808716,0.06947600096464157,-0.03189283236861229,0.03008384257555008,-0.022890636697411537,-0.04224622994661331,0.030343342572450638,-0.04876776412129402,-0.018705323338508606,0.03371075540781021,0.014486757107079029,0.01961866021156311,0.024126434698700905,0.0539899542927742,0.0683123767375946,0.05933146923780441,0.06692715734243393,-0.06553752720355988,-0.010199632495641708,0.05833647772669792,0.032316312193870544,-0.09132931381464005,-0.03253641352057457,-4.606381243563489e-34,-0.06956351548433304,-0.019837113097310066,-0.03735939785838127,0.08346030116081238,-0.012526655569672585,-0.003672002349048853,-0.08715493977069855,0.04378395527601242,-0.026322467252612114,-0.04123297706246376,-0.10124598443508148,-0.05044366419315338,0.005633488763123751,-0.09170739352703094,0.05788709968328476,0.060966555029153824,0.030213700607419014,0.0048895832151174545,-0.01879223808646202,-0.02833918295800686,-0.058377090841531754,0.05433128401637077,0.06869674474000931,-0.02816990576684475,0.018094545230269432,-0.05644315481185913,0.07207511365413666,0.12312988191843033,-0.028100276365876198,-0.06565912812948227,0.01836835779249668,-0.00879979133605957,0.03770345076918602,0.01677766628563404,0.034654490649700165,0.02703363075852394,0.07993988692760468,0.0391775444149971,0.033107489347457886,-0.006994374096393585,-0.0007612359477207065,0.0047447578981518745,0.02653777040541172,-0.08966407924890518,0.03389652445912361,0.021033423021435738,-0.06503351032733917,-0.036783616989851,-0.054591551423072815,-0.03079856000840664,-0.03097815066576004,-0.058228977024555206,0.030022699385881424,-0.00569672416895628,0.026825105771422386,-0.09631108492612839,-0.03812897205352783,-0.00857264082878828,0.06178932636976242,0.000338803103659302,0.061046626418828964,0.022254036739468575,-0.033998873084783554,-0.031289033591747284,0.04614865407347679,-0.03819015994668007,-0.07560589909553528,0.027717605233192444,0.0007445163791999221,0.11216051131486893,0.03235490992665291,-0.07552099227905273,-0.15045472979545593,-0.0636017918586731,-0.11612182855606079,-0.07900934666395187,-0.04531998932361603,0.015259924344718456,0.06245970353484154,-0.04995330050587654,0.02344939485192299,-0.017639178782701492,0.019660955294966698,0.013887845911085606,0.00524928467348218,-0.018459973856806755,0.05577031522989273,0.02098195254802704,0.0393575057387352,-0.004778060596436262,-0.002493474632501602,-0.08234404027462006,0.02689013071358204,-0.05115148797631264,0.014408555813133717,-1.814962757862304e-8,-0.0053369030356407166,0.02569419890642166,-0.06259200721979141,-0.0009097610600292683,0.04046320542693138,-0.004046465270221233,-0.014967930503189564,0.01274193450808525,0.06592705845832825,0.03757304698228836,-0.04110569879412651,-0.0177446398884058,0.052622318267822266,0.038726747035980225,0.0026693763211369514,0.073777936398983,-0.01449485681951046,0.07923050969839096,0.002390134148299694,0.017130689695477486,0.05501414090394974,0.033089298754930496,-0.022750739008188248,-0.06368080526590347,-0.02860085293650627,-0.00941720325499773,0.04327741265296936,-0.01963037997484207,-0.0011700516333803535,0.04066277667880058,-0.006752714514732361,0.04822069779038429,0.01812645234167576,-0.06408806145191193,-0.06608962267637253,0.03822450339794159,-0.02490532398223877,0.0178233589977026,0.027457332238554955,0.019483933225274086,0.10551732778549194,0.06431709229946136,0.07491835951805115,-0.06866829842329025,0.05924401804804802,-0.08534153550863266,0.043258003890514374,0.058542072772979736,-0.04851623997092247,0.04444374516606331,0.051033865660429,-0.0022174573969095945,0.017680665478110313,0.05579232797026634,-0.04596974700689316,-0.13824968039989471,0.04434448853135109,-0.00921254325658083,-0.030667021870613098,-0.014162730425596237,0.08120507746934891,0.050296440720558167,0.06225940212607384,-0.04985806345939636]},{"text":"Meliusne fluctus Ire per longos fuit, an recentis Carpere flores?","book":"Homage to Catalonia","chapter":23,"embedding":[0.04502515494823456,0.09529643505811691,0.0028913519345223904,0.037752263247966766,0.007646402809768915,-0.021185345947742462,0.006278361193835735,0.04598505422472954,-0.015293634496629238,0.013374611735343933,0.06732223182916641,-0.10792471468448639,-0.04385842755436897,0.04094793274998665,-0.0930519700050354,-0.07030893862247467,-0.06231694296002388,0.017903946340084076,-0.04507870227098465,0.07223806530237198,-0.03400005027651787,0.023530030623078346,-0.008670804090797901,0.04240263253450394,-0.09893672168254852,-0.05310940742492676,-0.09277169406414032,-0.010262709110975266,-0.022742673754692078,-0.09794770181179047,-0.045791178941726685,0.13990089297294617,0.06590015441179276,-0.03704814985394478,-0.02870454639196396,-0.02526429295539856,0.008878660388290882,-0.044813305139541626,0.04804689809679985,0.048801030963659286,-0.06785736978054047,-0.020418375730514526,0.07591407001018524,-0.0275427158921957,-0.06067746505141258,-0.010221661999821663,-0.05383989214897156,0.05146656557917595,0.12298713624477386,0.07225923985242844,-0.09410784393548965,-0.010628278367221355,-0.03641831874847412,0.06068176031112671,0.035449083894491196,0.014523697085678577,-0.0500960610806942,-0.087562695145607,-0.001173452939838171,-0.016697758808732033,0.020162397995591164,0.01257837563753128,-0.07618308067321777,0.04325231537222862,-0.014320899732410908,-0.03309445455670357,-0.0669628232717514,-0.11164649575948715,0.02251281589269638,0.008759049698710442,0.07318813353776932,-0.022343948483467102,0.013840124011039734,-0.05151452496647835,0.009983019903302193,0.1371581107378006,0.06172919273376465,0.019287876784801483,-0.007203931454569101,-0.08098500967025757,0.011264839209616184,0.03547273203730583,0.09627509862184525,0.013784283772110939,0.02141496166586876,0.038315966725349426,0.029438471421599388,-0.0017704572528600693,-0.02626023255288601,-0.06098993495106697,0.03979628533124924,0.002851610304787755,-0.05173598974943161,-0.05311746150255203,-0.06784932315349579,-0.00032866987749002874,-0.02855413220822811,-0.01692284643650055,-0.05522255226969719,0.08795876801013947,-0.009161131456494331,-0.09088481962680817,0.060378171503543854,0.07666029781103134,-0.0896393358707428,-0.028096849098801613,-0.06403786689043045,-0.04489998146891594,-0.006312106270343065,-0.05410948395729065,-0.040910035371780396,0.02982989512383938,-0.04804582893848419,-0.008285506628453732,0.021885614842176437,-0.038613274693489075,-0.01147614698857069,-0.08082222938537598,-0.007950098253786564,-0.02647791989147663,0.06459702551364899,-0.05137700214982033,-0.03471755236387253,-0.02120663970708847,-0.014036588370800018,0.026114778593182564,-0.0037823442835360765,3.003661552458503e-33,0.015379133634269238,-0.027084292843937874,0.04891868308186531,-0.009758695028722286,0.030613455921411514,-0.03883618488907814,-0.05038907006382942,-0.038539279252290726,0.006074976641684771,-0.06295163929462433,-0.10494614392518997,0.053991708904504776,0.0020549832843244076,-0.0008795580361038446,-0.02596270851790905,0.00994389783591032,0.07623757421970367,0.008874340914189816,-0.05511915311217308,-0.08547694236040115,0.05531751736998558,0.06589023023843765,0.02281280979514122,-0.03642069548368454,0.04338305816054344,0.03001621551811695,-0.007122111972421408,-0.04539131373167038,-0.0175882987678051,0.03641628846526146,0.05870705842971802,-0.013111692853271961,0.01241456437855959,0.044401463121175766,-0.009455768391489983,-0.004269828554242849,0.010955915786325932,-0.05339264124631882,-0.012591569684445858,0.009457685053348541,0.0030316277407109737,0.06598591804504395,0.06678742915391922,0.0870399922132492,-0.008092100732028484,-0.030842239037156105,-0.007819755002856255,0.028927788138389587,0.10210723429918289,0.11536522954702377,-0.001374654471874237,0.01544609759002924,-0.0657811388373375,-0.030364712700247765,-0.021484149619936943,0.002235443564131856,-0.03531311824917793,-0.03099544160068035,-0.04004436731338501,0.034864235669374466,0.06473109126091003,0.015874266624450684,-0.010245481505990028,-0.027419328689575195,0.023599933832883835,0.006642977707087994,-0.062088001519441605,-0.008191592991352081,0.06407386809587479,-0.001963773276656866,0.012313764542341232,-0.018974514678120613,0.07435008138418198,-0.008159853518009186,-0.04441261291503906,0.025622695684432983,0.0477299839258194,-0.04275820404291153,-0.06542079150676727,0.020632358267903328,-0.09475279599428177,0.011790208518505096,-0.01686873659491539,0.057582832872867584,-0.013479387387633324,-0.011979298666119576,-0.028216974809765816,0.01992935687303543,0.08595191687345505,0.049567703157663345,-0.028677403926849365,0.049963682889938354,0.04743366315960884,-0.0807199627161026,-0.0303113404661417,-2.515469932354376e-33,-0.012995949946343899,0.02228461019694805,-0.04453832283616066,0.0627545490860939,0.01499344315379858,0.013277205638587475,-0.05753173306584358,0.19787687063217163,0.003483796026557684,-0.07477638125419617,-0.0369415357708931,0.015727579593658447,0.06465393304824829,-0.0823230892419815,0.006457491312175989,0.05898720398545265,0.0896163135766983,0.03011741302907467,-0.034366343170404434,-0.013635310344398022,-0.09124437719583511,0.07055438309907913,-0.03516462817788124,-0.014718323945999146,0.01641080714762211,0.06340889632701874,0.07528703659772873,-0.08910206705331802,-0.1585679054260254,-0.03700903803110123,-0.007646630052477121,0.0007224803557619452,-0.05879930779337883,0.037665899842977524,0.03536241129040718,0.01578633114695549,0.07061716914176941,-0.02926051616668701,-0.006424881052225828,0.044396642595529556,0.006344794295728207,0.04494539275765419,0.16385196149349213,0.05743863433599472,0.0768018588423729,0.00811419915407896,-0.05646442994475365,0.036347147077322006,0.04275694489479065,0.04349936544895172,0.025925287976861,-0.014724677428603172,0.022760463878512383,0.008688677102327347,0.019056368619203568,-0.10045508295297623,0.0033026195596903563,-0.04236014187335968,-0.06365619599819183,0.015789708122611046,0.04903393238782883,-0.04388108476996422,-0.0513811893761158,-0.07100897282361984,0.07574785500764847,0.022373007610440254,-0.06281976401805878,-0.01499653048813343,0.0024980457965284586,0.06446880847215652,0.13320110738277435,-0.010061103850603104,-0.044692207127809525,0.03898942098021507,-0.05516303330659866,0.03493132069706917,0.012434187345206738,-0.04064728692173958,0.03662102669477463,0.07934179902076721,-0.04004272073507309,-0.0030289050191640854,-0.0003551692934706807,-0.03650768846273422,-0.03987559303641319,-0.06646780669689178,0.02536015212535858,-0.05756175145506859,0.04213588312268257,-0.040079955011606216,-0.016536304727196693,-0.010206159204244614,-0.010709586553275585,-0.04729745164513588,0.05777818337082863,-2.123200815162818e-8,0.09932348132133484,0.014005430042743683,-0.12238738685846329,0.030363015830516815,0.04904162138700485,-0.004516185261309147,0.0380387045443058,0.01332176849246025,0.04775471240282059,0.06149822100996971,0.0016168974107131362,0.09750580042600632,0.05884399637579918,-0.028242040425539017,-0.009315324015915394,-0.0004953572642989457,0.06841979920864105,0.03003907948732376,-0.05787625536322594,-0.02739417366683483,0.010875415988266468,0.02952970191836357,0.0028268296737223864,-0.03968939185142517,-0.042947493493556976,-0.02084663324058056,0.03497045487165451,-0.00860411673784256,-0.032184451818466187,0.018599605187773705,0.0010527591221034527,0.05755996331572533,-0.07209997624158859,-0.05205986276268959,-0.009614553302526474,0.005345263052731752,-0.013805840164422989,0.020527241751551628,-0.0015781898982822895,0.05662930756807327,0.06609014421701431,0.07577253878116608,0.005106090102344751,0.01998589001595974,-0.014429411850869656,-0.057807087898254395,0.014517271891236305,-0.0358814038336277,-0.007628695107996464,-0.049358613789081573,-0.005501125007867813,0.008007638156414032,0.08364610373973846,0.008205639198422432,-0.11951813846826553,-0.04846775531768799,0.08176076412200928,0.03865229710936546,-0.039996061474084854,-0.0013926366809755564,-0.005584231112152338,-0.025047749280929565,0.06852899491786957,0.034650541841983795]},{"text":"Impudens liqui patrios Penatis, Impudens Orcum moror.","book":"Homage to Catalonia","chapter":23,"embedding":[-0.040528956800699234,0.04612213745713234,0.034065306186676025,-0.01141706109046936,-0.03192085027694702,-0.04406522959470749,0.05964362993836403,0.024445436894893646,0.058400072157382965,-0.0031216898933053017,0.17414213716983795,-0.021304205060005188,0.03601644188165665,0.04020880535244942,-0.04711475968360901,-0.04433336853981018,-0.01711069419980049,0.0340883694589138,0.002822250360623002,0.06552418321371078,0.06669758260250092,0.1275678426027298,0.0007207728922367096,0.007997867651283741,-0.1578771024942398,0.06324698030948639,0.011095188558101654,-0.03041071817278862,0.08114082366228104,-0.014934221282601357,-0.015072153881192207,0.039942193776369095,0.030709315091371536,0.022097259759902954,0.021315835416316986,-0.07526081800460815,-0.010420404374599457,-0.016425108537077904,0.04506443068385124,0.08494749665260315,-0.06140907108783722,-0.03924687206745148,-0.013857418671250343,-0.022538650780916214,-0.02561565861105919,-0.07711707800626755,-0.011627173982560635,0.0635792687535286,0.0814271792769432,-0.06613633781671524,-0.03895493969321251,-0.04952680692076683,0.040118370205163956,0.012965540401637554,0.030604178085923195,-0.1037343293428421,-0.12652520835399628,-0.02844330109655857,-0.0435161329805851,0.0031365042086690664,-0.03218439966440201,0.09263370931148529,-0.03170076012611389,0.020644141361117363,-0.05218169465661049,0.05631425976753235,0.028681598603725433,0.06356529891490936,0.041540518403053284,0.10115258395671844,0.056932106614112854,-0.043627794831991196,-0.017374375835061073,0.056037552654743195,-0.06280141323804855,-0.02386578731238842,0.010018808767199516,0.004160122014582157,-0.02523936703801155,-0.09955590218305588,-0.10584370791912079,-0.05787703022360802,0.016800619661808014,0.02418208122253418,0.029246877878904343,-0.05899950489401817,0.008784922771155834,0.017991717904806137,0.02517126500606537,-0.010011443868279457,-0.006231973413378,-0.0720282793045044,0.004520953167229891,-0.07323428243398666,0.04824603721499443,0.03419031947851181,0.008645462803542614,-0.0698191225528717,-0.10967480391263962,0.05051247775554657,-0.022778097540140152,0.039385102689266205,-0.05989658832550049,-0.027264652773737907,-0.05343177169561386,0.006930408999323845,-0.015437639318406582,-0.06566499173641205,0.06016157940030098,0.030815524980425835,-0.001370150363072753,-0.0014196939300745726,0.002866696333512664,-0.03717423975467682,-0.013543887063860893,-0.013691363856196404,0.050601016730070114,-0.06186549365520477,0.06667990982532501,-0.030455050989985466,-0.026233775541186333,-0.017964666709303856,-0.04745624586939812,0.10495465993881226,0.030879341065883636,-0.07029780745506287,-0.02869357354938984,3.0019835342727043e-33,-0.03242676332592964,0.00917336717247963,-0.01799757592380047,0.033579520881175995,-0.01771022006869316,-0.057487502694129944,-0.028876643627882004,-0.039812859147787094,0.03746214136481285,-0.037058308720588684,-0.04168938845396042,-0.06274756789207458,-0.05364814028143883,0.009626166895031929,0.03328165039420128,0.04239922761917114,0.021518271416425705,0.004152233712375164,0.008232752792537212,0.017531445249915123,0.0042018466629087925,0.03134479001164436,0.03831571340560913,-0.008564669638872147,-0.054599862545728683,-0.0009535087738186121,-0.027591625228524208,-0.10234907269477844,0.0037333157379180193,0.014891832135617733,0.12336251139640808,-0.03154889494180679,0.038007088005542755,0.025307049974799156,-0.04744346812367439,0.04478970915079117,0.07776850461959839,0.02203274704515934,-0.11047564446926117,0.042471591383218765,-0.02718425542116165,-0.0031739186961203814,0.008791004307568073,0.05454212799668312,0.12522800266742706,-0.04437429457902908,0.0452193021774292,0.04409235715866089,0.0002189252554671839,0.10514461249113083,0.06880803406238556,-0.006139907520264387,-0.015772508457303047,-0.07466784119606018,-0.0822804719209671,-0.009101389907300472,-0.004842012654989958,-0.06042350083589554,-0.0394827164709568,0.019674668088555336,0.07861169427633286,-0.0003242622478865087,-0.04712087661027908,-0.03598036244511604,-0.04261856898665428,-0.09000594168901443,-0.009897725656628609,0.023838045075535774,0.03765779361128807,0.013799138367176056,-0.11312349885702133,-0.017468983307480812,0.0010872629936784506,0.05697058513760567,-0.025226008147001266,0.05138522759079933,-0.04464816302061081,-0.01794532872736454,0.005317011848092079,0.01001406367868185,-0.08746467530727386,-0.06262128800153732,0.08484049886465073,-0.008641554974019527,-0.007231707684695721,0.11281722784042358,0.04876847565174103,-0.034335847944021225,0.06443779170513153,0.047893721610307693,0.024334443733096123,0.07032903283834457,0.0023872957099229097,-0.03682921081781387,-0.00018771810573525727,-3.763741893500956e-33,-0.08201244473457336,-0.04065511003136635,-0.053380466997623444,0.05582604557275772,-0.02543453313410282,0.003911194857209921,-0.03874342516064644,0.114947110414505,0.06595034897327423,-0.08653221279382706,-0.10642752796411514,-0.10148108750581741,0.10146472603082657,-0.046359267085790634,-0.008250943385064602,0.09773247689008713,0.01570192165672779,0.03289725258946419,-0.06207423657178879,-0.01636207476258278,-0.05824533849954605,0.049654532223939896,0.06569553166627884,0.0530611015856266,-0.05343933030962944,0.03837886080145836,0.029830550774931908,-0.011052011512219906,-0.09635355323553085,0.014116393402218819,0.07526754587888718,0.03563850000500679,-0.020239844918251038,-0.007188025861978531,-0.04307001829147339,0.060497671365737915,0.0025419907178729773,0.0025868790689855814,-0.07662848383188248,-0.01300852932035923,-0.011148947291076183,-0.018871355801820755,-0.037290818989276886,0.029192768037319183,-0.09009476006031036,-0.02355985902249813,-0.016027705743908882,-0.024078069254755974,0.004127098247408867,0.0005026275757700205,0.0679778903722763,0.055807098746299744,0.01842031441628933,0.0343620739877224,0.08288989216089249,-0.047896336764097214,-0.06394416838884354,-0.07529156655073166,-0.07057972997426987,0.026355084031820297,0.006198481656610966,0.06429928541183472,-0.07464110851287842,0.03714628145098686,0.13359980285167694,-0.0036029231268912554,-0.05678928643465042,0.07026021927595139,0.025576487183570862,0.020839370787143707,0.025962036103010178,-0.05623254552483559,-0.0708002969622612,-0.07112568616867065,0.014918793924152851,0.05803282558917999,0.023676177486777306,-0.04073626920580864,-0.028237219899892807,0.010101412422955036,-0.014309093356132507,-0.0615304559469223,-0.028731195256114006,-0.031639497727155685,-0.08157093822956085,0.014855820685625076,0.019809557124972343,-0.013844246044754982,0.0029278036672621965,0.02482461929321289,0.00548690976575017,0.04181476682424545,0.006938358768820763,-0.032548416405916214,-0.012519573792815208,-2.304352442195068e-8,-0.02134869061410427,0.009863097220659256,-0.06749255210161209,0.0479886569082737,0.020596805959939957,-0.07147052884101868,-0.0009247895795851946,0.05271763727068901,-0.0284105334430933,0.024197641760110855,-0.014270135201513767,0.01904107816517353,0.012412779033184052,-0.026117268949747086,0.06657620519399643,-0.01845904439687729,0.072464719414711,0.09731488674879074,-0.054104872047901154,-0.08343162387609482,-0.028681820258498192,-0.0066798715852200985,-0.027140937745571136,-0.03637104853987694,0.0014707917580381036,-0.04487886279821396,-0.008198503404855728,0.007430975325405598,0.07221183180809021,0.09287068247795105,-0.01814187690615654,0.016725223511457443,-0.04648257791996002,-0.10347983986139297,0.02584383450448513,0.049456238746643066,0.025346726179122925,-0.04258105531334877,0.0003322918782941997,0.01029600203037262,0.011657982133328915,0.023099754005670547,0.05923348665237427,-0.015964560210704803,0.01875399239361286,-0.0882013812661171,0.0011565882014110684,0.016798529773950577,0.056883204728364944,-0.053278274834156036,0.027153311297297478,0.005149632692337036,0.07291063666343689,0.025734789669513702,-0.008475765585899353,-0.009323378093540668,0.0786994993686676,0.023374468088150024,-0.019342949613928795,0.042882949113845825,0.049193717539310455,0.04274085909128189,0.11084260791540146,0.05138058960437775]},{"text":"Antequam turpis macies decentis Occupet malas teneraeque sucus Defluat praedae, speciosa quaero 55 Pascere tigris.","book":"Homage to Catalonia","chapter":23,"embedding":[0.020879678428173065,0.07633934915065765,-0.0721128061413765,0.008866911754012108,-0.03419952839612961,-0.036754392087459564,0.05938896909356117,0.029950793832540512,-0.0030482830479741096,0.10053860396146774,0.09438444674015045,-0.05663864687085152,0.0026401756331324577,0.008042175322771072,-0.0017908798763528466,0.024175653234124184,0.0337841659784317,-0.0012961865868419409,-0.03252541273832321,-0.06536764651536942,0.04531843587756157,-0.015266768634319305,-0.06430219858884811,-0.018549229949712753,-0.13122984766960144,-0.010810273699462414,-0.06413275748491287,0.008062884211540222,-0.019263887777924538,-0.0535673089325428,-0.01702488586306572,0.03283603861927986,0.04721241071820259,-0.01754012145102024,0.04961970075964928,0.034907594323158264,-0.03915207460522652,-0.04374061897397041,0.03402167186141014,0.06947188079357147,-0.022395554929971695,0.03330589830875397,-0.018703769892454147,-0.14008653163909912,-0.13794738054275513,-0.03754372522234917,-0.023228567093610764,0.07526280730962753,0.08221853524446487,-0.05911402404308319,-0.056085579097270966,-0.07962237298488617,-0.05159216374158859,0.028925085440278053,-0.013288114219903946,0.011372287757694721,-0.01916792429983616,-0.13750703632831573,0.0020047249272465706,-0.08231497555971146,-0.005685159005224705,0.04978359490633011,-0.008372296579182148,0.022146860137581825,-0.06283152848482132,0.06812243908643723,-0.05803242325782776,0.02485351637005806,-0.009488284587860107,0.008768999949097633,0.08535917848348618,-0.0020026820711791515,-0.0472128801047802,0.08040156215429306,-0.03210563212633133,0.014359778724610806,0.022815855219960213,-0.03293045982718468,-0.06381434947252274,-0.07385358959436417,-0.0797877162694931,0.01409158855676651,-0.02189525030553341,-0.05687365680932999,0.057661667466163635,0.00672357901930809,0.0031690960749983788,-0.03008255735039711,0.023801296949386597,-0.007497915532439947,0.010915818624198437,0.043681930750608444,0.010828572325408459,-0.03786550462245941,0.014324122108519077,-0.0022987776901572943,-0.06773382425308228,-0.028064044192433357,-0.0762801319360733,0.017185542732477188,0.04459479823708534,-0.04326263815164566,0.026076968759298325,-0.022677021101117134,-0.10301528126001358,-0.03844394534826279,-0.029775073751807213,-0.018669506534934044,0.0637672170996666,0.0008163800812326372,-0.037099290639162064,-0.06261186301708221,-0.0005304375081323087,0.03657525032758713,0.0002714777656365186,-0.008977062068879604,-0.06517422199249268,-0.02577812783420086,0.016628291457891464,-0.12231475859880447,0.07772642374038696,0.01178059633821249,-0.013561206869781017,-0.03667891398072243,0.1293456107378006,0.008864224888384342,-0.05240095034241676,1.1360906046883736e-32,-0.01240974199026823,-0.03436325490474701,0.0005902125267311931,-0.06234428659081459,0.12350375205278397,-0.06573908776044846,-0.02447178028523922,-0.06329744309186935,0.01557979267090559,0.02020116336643696,-0.06815984845161438,0.06491513550281525,-0.04899504408240318,-0.051589202135801315,0.028318636119365692,0.04745332524180412,0.0962521955370903,0.07701091468334198,-0.022500580176711082,0.044493623077869415,-0.06225922703742981,0.0038803580682724714,0.021076664328575134,-0.0805632621049881,0.0323110967874527,0.08557508140802383,0.020922977477312088,-0.05579999089241028,-0.016749724745750427,0.02572624199092388,0.12505482137203217,-0.0013513976009562612,-0.02979925274848938,0.02641960047185421,-0.006760460324585438,-0.054133761674165726,0.025732381269335747,-0.026113495230674744,-0.04637911170721054,0.006941451225429773,0.027128279209136963,-0.03487932309508324,0.05651138722896576,0.08703155070543289,0.08321015536785126,-0.05415054038167,-0.04927966371178627,0.04091929644346237,0.10391442477703094,0.01152768637984991,0.0227002315223217,-0.0002470187610015273,0.054721392691135406,-0.010360343381762505,-0.01379626989364624,0.0017787145916372538,-0.032728563994169235,0.008437888696789742,-0.015555358491837978,-0.013316943310201168,0.020998381078243256,-0.0180034376680851,-0.02985045127570629,-0.06479780375957489,0.03497111052274704,-0.04768378287553787,-0.0571625679731369,0.0114968903362751,-0.01027538813650608,0.05291939154267311,-0.04309020936489105,0.016409028321504593,-0.03915119171142578,0.008233016356825829,0.08326788991689682,-0.04918534681200981,0.05509639158844948,-0.013983573764562607,-0.06114419922232628,0.04564148187637329,-0.07800004631280899,0.009515895508229733,-0.00747084803879261,0.06452436000108719,0.004043213091790676,0.010963632725179195,-0.038697417825460434,0.0586322620511055,0.13151544332504272,0.07605048269033432,0.015522604808211327,0.039226192981004715,-0.08660241216421127,0.026001807302236557,-0.004640091676265001,-1.0355803275632985e-32,-0.06467100977897644,0.04200933501124382,-0.10976344347000122,0.1097993478178978,-0.028958385810256004,0.04434584453701973,-0.02900449000298977,0.1318545937538147,0.02851506695151329,-0.10052895545959473,-0.09646052122116089,0.05256824567914009,0.014782124198973179,-0.0934763178229332,0.03324373811483383,0.001175431883893907,0.01708555780351162,0.014816243201494217,0.005422472953796387,-0.0662982165813446,-0.06652788072824478,0.026229457929730415,0.08297743648290634,-0.09896298497915268,0.0054421089589595795,-0.020839236676692963,0.00026648215134628117,0.048882532864809036,-0.04272240772843361,-0.05550174042582512,0.051871661096811295,0.012551683001220226,-0.005491210613399744,0.01599068194627762,-0.08208824694156647,-0.03384429216384888,0.046362146735191345,-0.062279701232910156,0.09571513533592224,0.08007039874792099,-0.022323735058307648,-0.022512340918183327,0.009937027469277382,0.0011957647511735559,-0.012712004594504833,0.005212183576077223,-0.05096236988902092,-0.008226380683481693,-0.04002545773983002,-0.0005608999636024237,0.07681626826524734,0.03770396113395691,0.06162235140800476,-0.023951470851898193,0.050931692123413086,-0.04540479928255081,-0.08535037189722061,0.04059213772416115,-0.009573409333825111,-0.014472178183495998,0.007069874554872513,0.004436320625245571,0.00062720593996346,0.08072687685489655,0.029639026150107384,0.02597062848508358,-0.05130863934755325,0.03334388509392738,-0.02290276437997818,0.057007864117622375,-0.0010186705039814115,-0.05739115923643112,-0.09908566623926163,-0.08144672214984894,-0.009349274449050426,0.007539388723671436,-0.07880420237779617,0.03983043134212494,0.07581944018602371,0.08074603974819183,-0.022946063429117203,0.00261622853577137,0.005811045411974192,-0.0697079747915268,0.002180757001042366,0.032704323530197144,0.0170277152210474,0.0865289494395256,0.029292289167642593,0.03164970502257347,0.04955579340457916,0.026515629142522812,0.07490323483943939,0.051700979471206665,-0.026029106229543686,-3.854115959711635e-8,0.061779968440532684,-0.013101867400109768,-0.03278282284736633,-0.002149005653336644,0.021193506196141243,-0.052742574363946915,0.030252311378717422,0.02974136359989643,-0.04893076792359352,0.029175937175750732,-0.04787148907780647,-0.07292620092630386,0.008877920918166637,-0.009150417521595955,0.07113919407129288,0.019891884177923203,0.03662768751382828,0.043590247631073,-0.006818766240030527,-0.02783569134771824,0.0005572210648097098,-0.0067407842725515366,-0.0952007919549942,0.06525753438472748,-0.08989647775888443,0.0029850895516574383,0.09227562695741653,-0.05829218775033951,-0.022960960865020752,0.08833472430706024,-0.02438601292669773,0.026995129883289337,-0.044544607400894165,-0.0185766089707613,0.08987992256879807,0.04100318253040314,-0.04329767823219299,0.008663791231811047,0.09018798172473907,-0.03248400241136551,0.02426254190504551,0.001296152826398611,0.022587083280086517,-0.0077025978825986385,0.0009683039388619363,-0.007891659624874592,0.015555308200418949,-0.048913586884737015,0.016290515661239624,-0.06418537348508835,-0.026930788531899452,0.009375874884426594,0.028161341324448586,-0.005457737483084202,-0.0698782205581665,-0.029260436072945595,0.09065443277359009,-0.04540073499083519,-0.06985019147396088,0.06824148446321487,0.06647299975156784,0.049695439636707306,-0.008617295883595943,0.0871710404753685]},{"text":"Potes hac ab orno Pendulum zona bene te secuta Laedere collum. 60 Sive te rupes et acuta leto Saxa delectant, age te procellae Crede veloci, nisi erile mavis Carpere pensum Regius sanguis, dominaeque tradi 65 Barbarae paelex.' Aderat querenti Perfidum ridens Venus et remisso Filius arcu.","book":"Homage to Catalonia","chapter":23,"embedding":[-0.034439463168382645,0.024633636698126793,-0.014478832483291626,-0.008186710067093372,-0.17779295146465302,0.052741266787052155,0.005519807804375887,0.07163767516613007,-0.01945098116993904,0.050937067717313766,0.06310797482728958,-0.06332767009735107,0.07968653738498688,-0.02833307720720768,-0.05349911376833916,-0.020296329632401466,-0.06063881516456604,0.08360353112220764,-0.013613427989184856,0.03132372349500656,-0.017069129273295403,-0.06334737688302994,0.03476898372173309,0.06026328727602959,-0.03060329146683216,0.07797576487064362,-0.033593498170375824,0.04266101121902466,0.0612381249666214,-0.031169582158327103,-0.043164465576410294,0.07983478158712387,-0.017521264031529427,-0.05227810516953468,-0.0017102587735280395,-0.02308635227382183,-0.052420295774936676,-0.06920719146728516,-0.00945204310119152,-0.0421309731900692,-0.006136800162494183,-0.02776762843132019,-0.050304461270570755,0.012931077741086483,-0.056528594344854355,0.009098384529352188,-0.014584274962544441,-0.021400267258286476,-0.004414495080709457,-0.01755555160343647,-0.03239758685231209,-0.04973336309194565,-0.007078575436025858,0.02410995587706566,-0.12140833586454391,-0.017804695293307304,0.001955461222678423,-0.011098993942141533,0.10980711132287979,-0.03226630762219429,-0.033672019839286804,0.02639208734035492,-0.06680818647146225,0.05798527970910072,-0.04451978951692581,-0.05267979949712753,-0.04116211086511612,-0.08271197974681854,-0.08104345202445984,0.004547664429992437,0.1082327738404274,-0.054527487605810165,-0.030648263171315193,-0.011345808394253254,-0.009146276861429214,0.033200640231370926,-0.029310159385204315,-0.013733100146055222,-0.02580397203564644,-0.06382527947425842,-0.012117882259190083,0.009385570883750916,-0.01666259951889515,0.06191948056221008,0.08504391461610794,0.021442323923110962,0.034910544753074646,0.05911047384142876,0.04575636610388756,-0.05958981812000275,-0.04499346762895584,0.10172870010137558,-0.0916893407702446,-0.03377777710556984,-0.04626328498125076,0.05050172656774521,-0.010474810376763344,0.04258859530091286,-0.019794875755906105,0.019553815945982933,0.032853864133358,0.02963053062558174,0.003596588736400008,0.1293790638446808,-0.12504537403583527,0.03378124535083771,0.007277533877640963,-0.03689306601881981,0.00896791648119688,0.025078514590859413,-0.09845578670501709,-0.051841072738170624,-0.03233905881643295,-0.0015525517519563437,-0.024241773411631584,-0.04113917425274849,-0.045785825699567795,-0.049246370792388916,-0.0063115069642663,-0.02636904828250408,0.018380150198936462,-0.04282674565911293,-0.005102749448269606,0.009076541289687157,0.02956749126315117,-0.04585447534918785,0.02738174796104431,2.036265664512056e-32,-0.07262767106294632,-0.04704795777797699,-0.014246908016502857,-0.005294757429510355,0.013210462406277657,0.04040805250406265,-0.10859579592943192,0.0317474789917469,0.037556059658527374,-0.0637969896197319,-0.0622585229575634,-0.01845550164580345,0.007944874465465546,-0.080705925822258,0.06537239253520966,0.02347317896783352,0.0974910631775856,-0.10056079179048538,0.03028017468750477,-0.07292985171079636,0.018795272335410118,-0.017325283959507942,0.006050475873053074,-0.012654567137360573,0.010469663888216019,0.01269835326820612,-0.01127698179334402,-0.04310259222984314,-0.08728983998298645,0.025621287524700165,0.07329060882329941,-0.1106746718287468,-0.048130910843610764,-0.03195391222834587,0.007832487113773823,-0.03918943554162979,0.027528190985322,0.015146893449127674,-0.09646295756101608,0.01763998158276081,-0.0011957125971093774,-0.02333364449441433,0.010929852724075317,0.07898575067520142,0.018244553357362747,-0.01654616929590702,0.0495854988694191,0.05860454589128494,0.08041267842054367,0.037267040461301804,-0.037835583090782166,0.012929228134453297,-0.04325368255376816,-0.0562896765768528,0.014225435443222523,0.03399580344557762,-0.06405112147331238,0.04658263921737671,-0.10279835015535355,-0.016540447250008583,0.05723787099123001,0.03588046133518219,0.055425696074962616,-0.022145409137010574,0.03465959429740906,0.02174677513539791,-0.08108063042163849,-0.04793103039264679,0.11479923874139786,0.018035663291811943,-0.10331720113754272,-0.03682967647910118,0.05200374126434326,0.028169550001621246,0.014349696226418018,-0.0008742130012251437,0.03705453872680664,-0.03309009224176407,0.038394711911678314,-0.05446365848183632,-0.02912253700196743,-0.04244545102119446,-0.009072190150618553,0.06331776082515717,0.0747036561369896,-0.0817585289478302,0.03525581210851669,-0.070659339427948,-0.0031778384000062943,0.03650443255901337,0.07703876495361328,-0.07285971194505692,0.007167275529354811,0.014608391560614109,0.011592439375817776,-1.959110182617515e-32,-0.05299753695726395,0.05302815139293671,-0.028676429763436317,0.03744189441204071,0.034996114671230316,-0.013887779787182808,-0.08674142509698868,0.022460073232650757,0.005859950091689825,-0.03115677274763584,-0.006864660419523716,-0.036478716880083084,0.08632326871156693,0.001696825260296464,0.025648538023233414,0.0833054706454277,0.050576746463775635,0.029435863718390465,-0.015478581190109253,0.0005594578688032925,-0.034718889743089676,0.011053001508116722,-0.040606241673231125,-0.05546398088335991,0.04251100495457649,-0.0035280464217066765,0.10754389315843582,-0.07617275416851044,-0.061880432069301605,0.0867394208908081,-0.040587417781353,0.007780767511576414,0.036380067467689514,0.03134247660636902,-0.04525042697787285,0.02156011573970318,0.1280628889799118,-0.03211544081568718,-0.016129016876220703,-0.05279935896396637,0.003183276392519474,0.07331419736146927,0.1017795205116272,-0.03599492087960243,0.0032070628367364407,-0.008853782899677753,-0.009814971126616001,0.019605891779065132,-0.04110616818070412,0.06879851222038269,0.07415598630905151,-0.01493572723120451,-0.014060674235224724,-0.07660803198814392,0.09713506698608398,-0.06435155868530273,0.009961497969925404,-0.09517461806535721,-0.024475790560245514,-0.10474857687950134,0.03265240788459778,0.05239135026931763,-0.03705063462257385,0.05309082195162773,0.10693790018558502,0.014720560982823372,-0.06967240571975708,0.04166235774755478,-0.06661887466907501,0.07199300080537796,0.042234912514686584,-0.029960690066218376,-0.07287861406803131,-0.024995606392621994,-0.005764934234321117,-0.01382421050220728,0.05734288692474365,0.04134641960263252,-0.024807950481772423,-0.009815807454288006,-0.02281392551958561,0.025321926921606064,-0.02027503401041031,-0.04379281401634216,-0.048871494829654694,-0.035388655960559845,-0.09697631746530533,-0.013737962581217289,-0.0030248360708355904,0.015403533354401588,0.05640025436878204,0.035615310072898865,0.015671130269765854,-0.019069600850343704,0.027967307716608047,-6.157175391763303e-8,0.016746336594223976,-0.014586168341338634,-0.07288151979446411,0.05505392327904701,0.09701963514089584,-0.011546348221600056,0.021611802279949188,-0.07220495492219925,-0.02472565323114395,0.052173517644405365,0.04714878275990486,0.028036748990416527,0.05805246904492378,-0.01099866908043623,0.012846016325056553,0.08580601960420609,0.0992661640048027,0.05894683673977852,-0.02799537219107151,-0.011349587701261044,0.0821017175912857,-0.06439465284347534,-0.013006636872887611,-0.01606927625834942,-0.04655200615525246,-0.04792528972029686,-0.0495801642537117,-0.02953326515853405,-0.021152017638087273,-0.037318721413612366,0.001677751773968339,0.0029564069118350744,0.08975247293710709,-0.08103545755147934,0.021141747012734413,0.028826819732785225,-0.01967877335846424,0.03520071133971214,-0.03907682001590729,0.05234146490693092,0.004624806344509125,0.08355752378702164,0.013503876514732838,-0.006408028304576874,0.08298919349908829,0.027065016329288483,0.00484260730445385,-0.04935167729854584,0.05277572572231293,0.02091113105416298,-0.06811856478452682,0.004356818273663521,0.14226385951042175,-0.035035256296396255,-0.0008069129544310272,0.0660739466547966,0.05443859100341797,0.01351412944495678,-0.052243202924728394,0.002611276926472783,0.02122936211526394,0.11211173236370087,0.024180755019187927,-0.06183546781539917]},{"text":"Uxor invicti Iovis esse nescis.","book":"Homage to Catalonia","chapter":23,"embedding":[-0.07888421416282654,0.05938071757555008,-0.056252699345350266,-0.04587984085083008,-0.03748907521367073,-0.07709702849388123,0.08955374360084534,0.05524780601263046,0.06120886281132698,0.03357018530368805,0.021640799939632416,0.0168748889118433,-0.01897137053310871,-0.013627707026898861,-0.07017342746257782,-0.11695346981287003,-0.06903522461652756,0.029799552634358406,-0.03972914442420006,0.015440437011420727,0.0798887088894844,-0.056322336196899414,-0.019190778955817223,-0.0198427252471447,-0.017245642840862274,0.001372630475088954,0.014305244199931622,-0.03544708713889122,0.044917032122612,-0.12021546065807343,0.06536021828651428,0.04257824644446373,0.0753188282251358,-0.05959795415401459,0.0002945461601484567,0.03486507013440132,0.09417980164289474,-0.09440968185663223,0.00367863685823977,0.005819166544824839,-0.09561451524496078,-0.013723785988986492,-0.07012476027011871,-0.014457817189395428,0.06988830864429474,0.0219027791172266,-0.06249723955988884,0.016584033146500587,0.015953974798321724,0.052090853452682495,-0.053000085055828094,-0.029376935213804245,0.06549175083637238,-0.0016524220118299127,-0.02733609639108181,-0.057252395898103714,0.02541172131896019,-0.004778170958161354,0.037221550941467285,-0.01590331271290779,-0.01606385037302971,-0.0505499504506588,0.009437194094061852,0.05647768825292587,-0.007316353730857372,-0.020198849961161613,-0.00564920250326395,-0.009694637730717659,-0.11132826656103134,-0.012388176284730434,0.1252061128616333,-0.059739626944065094,-0.04218145087361336,0.09702811390161514,-0.008178210817277431,0.09036248922348022,0.03028486669063568,-0.009704730473458767,0.04155737906694412,-0.012587153352797031,0.08682892471551895,0.00007939893839647993,-0.07446025311946869,-0.03595108166337013,0.0702720358967781,0.0015761640388518572,0.032283682376146317,-0.0263903196901083,0.07371796667575836,0.05440979078412056,-0.00857554655522108,-0.04553842544555664,-0.04294963553547859,-0.013801299966871738,0.08473053574562073,-0.08695331960916519,-0.004084297455847263,0.01662237010896206,-0.03765316307544708,0.04302176833152771,0.008063280954957008,0.020694144070148468,-0.023121368139982224,0.1109207272529602,-0.06227807328104973,-0.016503261402249336,0.055356670171022415,-0.06731820106506348,0.02850891463458538,0.02220623567700386,-0.058064769953489304,-0.04490376636385918,-0.07958610355854034,-0.08387371897697449,-0.003878616960719228,-0.004913634620606899,0.04636801779270172,-0.027816591784358025,0.08038853108882904,-0.09818397462368011,-0.0003162662615068257,0.030290579423308372,-0.14989446103572845,0.0523318275809288,0.03829731047153473,-0.02823120728135109,-0.01792544312775135,3.1233068572340495e-33,-0.08333736658096313,0.020067349076271057,-0.02291426993906498,0.01446651853621006,-0.017564496025443077,-0.038600292056798935,-0.05909576267004013,-0.06725841015577316,-0.0440538115799427,-0.013250404968857765,-0.07737798243761063,0.07236361503601074,0.017237931489944458,0.08397580683231354,0.048967715352773666,-0.024639857932925224,0.10743895173072815,-0.03215416893362999,0.011368627659976482,-0.001935349078848958,0.01108692679554224,-0.0127697279676795,0.0034585571847856045,0.015441461466252804,0.0635499581694603,-0.0000267719296971336,-0.041212502866983414,-0.0485890693962574,-0.01722257398068905,0.026069950312376022,0.08029622584581375,-0.0398450531065464,-0.06199563294649124,0.07415758073329926,0.011474758386611938,-0.053999438881874084,0.08027758449316025,0.023021196946501732,-0.019779622554779053,0.02449868991971016,-0.05248413234949112,0.04788699373602867,-0.03347403183579445,0.016783377155661583,0.015155327506363392,-0.008173339068889618,0.07535471767187119,0.0014926146250218153,0.05515163019299507,-0.039013154804706573,-0.0768955647945404,0.07100842148065567,-0.03240255266427994,-0.06471744924783707,0.02623692713677883,0.08824389427900314,-0.04601621627807617,0.036807939410209656,0.03072960302233696,-0.048296231776475906,-0.03372282162308693,0.025206992402672768,0.03144194930791855,0.02967575564980507,0.016196178272366524,-0.054203055799007416,0.01858915016055107,-0.03922012075781822,0.09893745183944702,0.0766436904668808,-0.1197705790400505,0.031545139849185944,0.018849188461899757,0.04484764114022255,-0.06957197189331055,0.06694569438695908,-0.04600251093506813,0.006631273310631514,-0.06286074966192245,-0.021191369742155075,-0.06274984776973724,-0.02847406640648842,-0.015259381383657455,0.0656903013586998,0.09218914806842804,0.0549306720495224,0.0475776232779026,0.014607361517846584,0.01328349020332098,0.1104857474565506,0.026170751079916954,-0.0019548956770449877,0.05580451339483261,-0.00996742770075798,-0.010888103395700455,-3.925614445106893e-33,0.03020252101123333,-0.05534077435731888,-0.028778161853551865,0.04274503141641617,-0.05161268264055252,0.0663549080491066,-0.09524180740118027,0.07759921252727509,0.019401790574193,0.0012660942738875747,-0.001679511391557753,-0.021987082436680794,0.08359380811452866,-0.0083346888422966,-0.04115549102425575,0.07896558195352554,0.04399885982275009,0.05671646445989609,0.0030527745839208364,-0.035975199192762375,-0.020391082391142845,0.06755782663822174,0.04100068286061287,-0.06033151224255562,-0.020413020625710487,0.0038608848117291927,0.042463261634111404,0.009452736005187035,-0.11100739240646362,-0.07471232116222382,0.010577453300356865,-0.08532755821943283,0.0007699668640270829,0.0017884863773360848,0.03813572973012924,0.09742787480354309,0.11003001779317856,-0.00781315192580223,-0.031272366642951965,0.010592537000775337,-0.047931887209415436,0.054572172462940216,-0.02139696106314659,0.011467807926237583,-0.03688592091202736,-0.045564524829387665,-0.03602924570441246,0.019475357607007027,-0.018336748704314232,-0.03195441886782646,0.038402259349823,-0.015578227117657661,-0.0015484989853575826,-0.030872216448187828,0.07728789746761322,-0.0737333670258522,-0.013511480763554573,-0.0504588782787323,-0.1206604391336441,0.037940386682748795,0.1068783551454544,-0.016379021108150482,-0.044434648007154465,-0.01386567298322916,0.0463872030377388,-0.018962282687425613,-0.06682015210390091,0.061982959508895874,0.021163899451494217,0.06329233199357986,0.08537331223487854,-0.10115665197372437,-0.0591147355735302,0.026876382529735565,-0.0077944593504071236,-0.0052436706610023975,-0.008993997238576412,-0.003190643386915326,0.07624039053916931,-0.0032626879401504993,-0.06642895936965942,-0.06374216824769974,-0.03787168860435486,0.02259698696434498,0.004005902446806431,0.011236616410315037,0.0600699856877327,-0.023519014939665794,0.047252804040908813,-0.0005373237654566765,-0.009086139500141144,-0.001378833781927824,0.015172568149864674,-0.006770944222807884,-0.018597308546304703,-2.2644243813374487e-8,0.0523812510073185,-0.08005391061306,-0.07763795554637909,0.01025515515357256,0.05707671493291855,-0.076322041451931,-0.022030172869563103,-0.05047926679253578,-0.06926818937063217,0.048211101442575455,-0.013925530947744846,0.018699733540415764,-0.02224084921181202,-0.027295362204313278,0.08018645644187927,0.014482400380074978,0.07100912928581238,0.0894419476389885,0.005567372310906649,-0.03621921315789223,0.049777206033468246,0.036390986293554306,-0.051124878227710724,-0.10301075875759125,-0.014961165376007557,0.05707249045372009,0.07880229502916336,-0.08514780551195145,0.013673778623342514,0.021867288276553154,-0.06748240441083908,0.031166167929768562,-0.04960200935602188,-0.07414824515581131,-0.05122670158743858,0.03306519612669945,-0.030245589092373848,0.05163714662194252,0.010789642110466957,0.024898773059248924,0.04788463935256004,0.0324382558465004,0.018963050097227097,0.011552038602530956,-0.04946865886449814,0.0782654881477356,0.010665461421012878,-0.029538843780755997,-0.033147141337394714,-0.04697083681821823,-0.07783179730176926,0.00003439682041062042,0.05900806188583374,0.07119543850421906,0.0005461778491735458,0.025333700701594353,0.0003275469643995166,-0.008056610822677612,0.004670814611017704,-0.01098011527210474,0.045072223991155624,0.07048171758651733,-0.0063613830134272575,-0.0229437705129385]},{"text":"Festo quid potius die Neptuni faciam?","book":"Homage to Catalonia","chapter":23,"embedding":[-0.03298157453536987,0.08518868684768677,-0.050472989678382874,-0.04287524148821831,-0.05509469658136368,0.023821603506803513,0.07556530088186264,0.03606105223298073,0.0472918301820755,0.04775186628103256,0.03433229774236679,-0.08801476657390594,-0.049148354679346085,0.006531601306051016,-0.11086532473564148,-0.11668021231889725,-0.07245174795389175,0.040250107645988464,-0.010501840151846409,-0.00817805901169777,-0.017399394884705544,-0.056632429361343384,-0.051342397928237915,0.02392391674220562,-0.024630524218082428,-0.026134178042411804,-0.05382198467850685,0.0337916761636734,0.019759109243750572,0.005289851222187281,0.016004256904125214,0.053665872663259506,0.012568491511046886,-0.03718245029449463,0.03516286984086037,-0.010024789720773697,0.023745404556393623,-0.04143209010362625,-0.0069323512725532055,0.0343661829829216,0.00027997317374683917,0.0324055440723896,-0.035491179674863815,-0.03147202357649803,0.11004906892776489,0.03361997753381729,-0.004993448033928871,0.08671798557043076,0.0026837035547941923,0.08433748781681061,0.00007524988177465275,0.023501891642808914,0.006346572656184435,0.05300377309322357,-0.008812718093395233,0.00448531424626708,0.06644774973392487,-0.019891850650310516,0.0044699483551084995,-0.0514492392539978,-0.039198197424411774,-0.014303050003945827,-0.07726417481899261,-0.007629438769072294,-0.05965256318449974,-0.055970218032598495,-0.02509094588458538,0.009327585808932781,-0.07332732528448105,0.10243553668260574,0.1491386443376541,-0.07240336388349533,0.06369271874427795,-0.012045004405081272,-0.04258294403553009,0.04927116632461548,-0.08006500452756882,-0.04792400449514389,-0.08803173154592514,-0.059219133108854294,0.09644320607185364,0.05973133072257042,0.01138243917375803,-0.042883649468421936,0.04459802806377411,0.029369153082370758,-0.0004925067769363523,-0.006061192601919174,0.01719789020717144,-0.007800890598446131,-0.03616396710276604,0.07132253050804138,-0.11184030026197433,-0.0774797648191452,-0.06212637946009636,0.023824390023946762,-0.028566960245370865,-0.05057957023382187,-0.009611672721803188,0.05831340327858925,0.017281396314501762,0.08761315047740936,-0.0034007776994258165,0.013159292750060558,-0.0883444994688034,0.03256646916270256,0.016068696975708008,0.013915596529841423,0.0024774379562586546,0.09412934631109238,-0.04910171777009964,-0.0529438853263855,-0.06019819527864456,-0.10598893463611603,0.012761358171701431,0.0539667010307312,0.0591789186000824,-0.08134748041629791,-0.058535136282444,-0.04670129343867302,0.021153312176465988,-0.08619647473096848,-0.0009599037002772093,0.023006832227110863,0.05264989659190178,-0.008668984286487103,0.02625078521668911,3.314546196459404e-33,0.014839358627796173,-0.05423106253147125,-0.05071711912751198,0.014954677782952785,0.05018872767686844,0.018751244992017746,-0.039971668273210526,-0.0087994784116745,-0.028405971825122833,-0.01770816184580326,-0.08274256438016891,-0.030788203701376915,-0.007392290513962507,-0.03158095106482506,-0.009388520382344723,0.04161858931183815,0.00888890866190195,-0.04777131602168083,0.0411052331328392,-0.09209315478801727,-0.010971223935484886,0.056167032569646835,0.03658769279718399,0.029048068448901176,0.058247048407793045,0.03448431193828583,-0.007290755398571491,-0.004009473603218794,-0.039457011967897415,0.013929787091910839,0.10133933275938034,-0.010091379284858704,0.03482942283153534,-0.022147158160805702,-0.01513182558119297,0.012732014060020447,-0.05683210864663124,0.044050488620996475,-0.014503449201583862,0.023525303229689598,0.025666767731308937,0.01925407536327839,0.05574764311313629,-0.020393433049321175,0.0233219675719738,0.004597735125571489,0.12825290858745575,0.000026560375772533007,0.09903831779956818,-0.055214717984199524,0.07916230708360672,0.0006080786697566509,-0.0700995996594429,0.014191645197570324,0.0313151516020298,-0.016717609018087387,-0.0806022360920906,0.0063436212949454784,0.04557960107922554,-0.041288115084171295,0.04649340361356735,-0.014797111041843891,-0.03145701438188553,0.03368506208062172,0.014962634071707726,-0.025738997384905815,-0.019097033888101578,0.04318336397409439,0.1353820264339447,0.01566987857222557,-0.06430612504482269,-0.04597963020205498,-0.009186120703816414,-0.0075844754464924335,-0.04546584188938141,0.06165163218975067,0.06726697087287903,-0.02259773015975952,-0.007625310216099024,-0.0012737350771203637,-0.07228898257017136,-0.042495958507061005,-0.02125246450304985,0.0007766332128085196,0.02875293791294098,-0.024396084249019623,-0.015056850388646126,0.04132488742470741,0.006459476891905069,-0.022942299023270607,0.090304434299469,0.06183784082531929,0.023010853677988052,-0.01764633320271969,-0.03793986514210701,-3.189300579457151e-33,-0.027415303513407707,-0.013708196580410004,-0.06615190207958221,0.08945197612047195,-0.03561955317854881,0.009039434604346752,-0.14214782416820526,0.0462312214076519,0.03768208995461464,-0.03207969665527344,-0.02324521914124489,-0.07265052199363708,0.08370068669319153,0.042404040694236755,-0.02940627746284008,0.02408553473651409,0.0474807471036911,0.07906694710254669,0.01584095135331154,-0.005598511081188917,-0.0516192726790905,0.05055762454867363,-0.04475545510649681,-0.10741518437862396,-0.043222442269325256,0.04750772565603256,0.01813865639269352,-0.019957080483436584,-0.0661480650305748,0.013003823347389698,0.031069224700331688,0.0005467511946335435,-0.07796724140644073,0.050685085356235504,0.041458867490291595,0.08343236148357391,0.057832323014736176,0.0507274754345417,-0.036107324063777924,0.0010634732898324728,-0.01920350268483162,0.0930865928530693,0.035122498869895935,0.07100501656532288,0.04876697063446045,-0.027436867356300354,-0.03559138998389244,-0.010918818414211273,-0.012390363961458206,-0.016481619328260422,-0.0017473431071266532,-0.04918602481484413,-0.006227736361324787,-0.038500167429447174,0.09430491924285889,0.0018049651989713311,-0.00977619830518961,-0.009184841066598892,-0.12418562173843384,0.021728230640292168,0.09023404866456985,-0.02318190224468708,-0.005452611017972231,-0.018042881041765213,0.041477106511592865,0.043985817581415176,0.011093744076788425,0.19283130764961243,0.0036423515994101763,0.14053533971309662,0.05821068957448006,-0.008639764040708542,-0.06699752062559128,0.0059158275835216045,-0.10484623163938522,-0.03142298758029938,0.012711034156382084,0.09889757633209229,0.046393103897571564,0.047896020114421844,-0.05274045094847679,-0.016317877918481827,-0.09749626368284225,-0.04457748308777809,-0.07027148455381393,-0.04713166505098343,0.03544974699616432,-0.002129026222974062,0.037352658808231354,0.007562023121863604,-0.014224433340132236,0.06476742774248123,0.11923735588788986,-0.056549862027168274,0.03208480402827263,-2.1563385743661456e-8,0.037545423954725266,-0.01370996329933405,-0.06109049916267395,0.03490457311272621,0.04807358235120773,-0.1001049056649208,-0.058934636414051056,-0.054483138024806976,-0.035883963108062744,0.05889791250228882,0.024883996695280075,0.021581513807177544,-0.05981560796499252,-0.03890938311815262,0.006254085339605808,0.08935750275850296,0.01688869670033455,0.027829652652144432,-0.04745195806026459,-0.04107965901494026,0.04935041442513466,0.03381296247243881,-0.056697383522987366,-0.11374342441558838,-0.07095002382993698,-0.008755283430218697,0.061974771320819855,-0.03775317221879959,-0.06818269193172455,-0.042839113622903824,-0.030926616862416267,0.034143202006816864,-0.04762608930468559,-0.08392959833145142,0.021826470270752907,0.015331007540225983,-0.03571692854166031,0.00575927784666419,-0.005844728089869022,-0.06459173560142517,0.05419795215129852,0.05700074881315231,0.02464650198817253,-0.025363776832818985,-0.0108853904530406,-0.019259881228208542,0.030225461348891258,-0.07275107502937317,-0.0017230737721547484,0.03311377763748169,-0.02793215960264206,0.021949676796793938,0.06110386550426483,0.017576556652784348,0.008883853442966938,0.007591237314045429,0.04845753312110901,0.022612763568758965,0.03600762039422989,-0.03861876204609871,0.055458374321460724,0.03934011980891228,0.020941579714417458,0.011124011129140854]},{"text":"Inclinare meridiem 5 Sentis et, veluti stet volucris dies, Parcis deripere horreo Cessantem Bibuli consulis amphoram.","book":"Homage to Catalonia","chapter":23,"embedding":[0.036984872072935104,0.100319042801857,-0.059434354305267334,-0.04172447323799133,-0.08114912360906601,-0.06123241037130356,0.0009213733137585223,0.07067656517028809,0.03631877899169922,0.05987633392214775,0.04647194594144821,-0.09445586800575256,0.007430084049701691,-0.052373290061950684,-0.08322934061288834,-0.09146838635206223,-0.027879949659109116,0.09574797004461288,-0.057313982397317886,0.013687540777027607,0.06256373226642609,-0.03757159784436226,-0.012507968582212925,0.049504734575748444,-0.04788228124380112,0.002706719096750021,-0.06643280386924744,-0.021061159670352936,-0.01670229062438011,-0.0420989952981472,0.017063254490494728,0.044392067939043045,-0.0020850645378232002,-0.05397402495145798,0.0019507393008098006,0.010709917172789574,-0.013918285258114338,-0.029653986915946007,0.043179161846637726,0.004533521831035614,0.01501325611025095,-0.04248042032122612,-0.038769520819187164,-0.020224707201123238,-0.034319136291742325,-0.03018176555633545,0.004017973318696022,0.10161959379911423,-0.01701490208506584,0.022859865799546242,-0.07262222468852997,-0.041583992540836334,-0.00040535724838264287,0.025846261531114578,-0.11354383081197739,-0.04539649561047554,0.03484451770782471,-0.07176052778959274,0.02003496140241623,-0.0875755026936531,-0.00797842163592577,0.029900385066866875,0.0065947952680289745,-0.028085408732295036,-0.09773459285497665,-0.043590061366558075,-0.004777946975082159,-0.06910435855388641,-0.03978151082992554,-0.030010677874088287,0.010541264899075031,-0.0859970897436142,-0.06066375970840454,0.016716156154870987,-0.035497672855854034,0.029497386887669563,-0.04670538008213043,-0.037064604461193085,-0.04159364849328995,-0.045967377722263336,0.009068792685866356,0.020027481019496918,-0.06619425863027573,0.05457753688097,0.017576398327946663,-0.027886642143130302,0.03569629415869713,-0.007716869469732046,0.041130371391773224,-0.07797951251268387,0.023767204955220222,0.017993692308664322,-0.03605454042553902,-0.060257911682128906,-0.06670907884836197,0.04254484176635742,-0.012994109652936459,0.010002526454627514,0.06172086298465729,0.019825128838419914,0.024490224197506905,-0.03348696231842041,-0.011635662987828255,0.09739155322313309,-0.12109297513961792,0.011267646215856075,-0.007742300163954496,-0.04750397428870201,-0.00020185986068099737,-0.0659983903169632,-0.09743034094572067,-0.10130053758621216,-0.04750692844390869,-0.07190139591693878,0.04138566926121712,0.09514813125133514,0.0514480285346508,-0.030702628195285797,0.006946769542992115,-0.06077093258500099,0.05957114323973656,-0.015807759016752243,-0.000614357937593013,-0.07250463962554932,0.06996916234493256,-0.000897467602044344,0.09363526105880737,1.1787091074665957e-32,-0.04959666356444359,-0.033850740641355515,0.018354250118136406,0.07937133312225342,0.01605440489947796,-0.012984261848032475,-0.007882672362029552,0.041429243981838226,0.014764873310923576,-0.037183962762355804,-0.04380796104669571,-0.03073030337691307,0.03923600912094116,-0.02295641414821148,-0.06403978168964386,0.06159837543964386,0.10133533924818039,-0.04967432841658592,0.004790188279002905,0.0320730060338974,-0.0039640385657548904,0.051381029188632965,-0.00914884451776743,0.023338891565799713,0.06513793766498566,0.055603448301553726,0.017588209360837936,-0.05171021446585655,0.04045848175883293,0.03799669072031975,0.08762136846780777,-0.02702799066901207,0.030036766082048416,-0.032801445573568344,0.00702816154807806,0.06686144322156906,0.016007468104362488,0.07597734779119492,-0.005589490290731192,0.00785914622247219,0.016794344410300255,0.00027080875588580966,0.05290859192609787,0.011163625866174698,0.08235464245080948,0.04942771792411804,0.040217816829681396,0.010839887894690037,0.09917666763067245,0.07759848982095718,0.00212022103369236,-0.03170565143227577,-0.01704942062497139,-0.01632518321275711,0.032918356359004974,0.06140848621726036,-0.04149835184216499,0.09882969409227371,-0.0661507323384285,-0.011246265843510628,-0.02481824904680252,0.022878630086779594,-0.07421962916851044,0.0176809374243021,0.0575362890958786,-0.018583107739686966,-0.018530579283833504,-0.00003223754538339563,0.10183125734329224,0.01735381782054901,-0.09091492742300034,0.09457395225763321,-0.015945374965667725,0.06844884902238846,-0.04104114696383476,0.05190185457468033,0.008185804821550846,0.022681886330246925,-0.01486674603074789,0.002547070849686861,-0.1545509397983551,0.023163344711065292,0.018326180055737495,0.025451980531215668,0.1169004887342453,-0.0015049976063892245,-0.026537194848060608,0.009279952384531498,0.03588743880391121,0.01517021469771862,0.044392913579940796,-0.016473866999149323,0.01787831448018551,0.0498470664024353,0.025630861520767212,-1.242321645476916e-32,0.01690838299691677,-0.022273626178503036,-0.09903938323259354,0.10301008820533752,-0.03872907534241676,0.044084057211875916,-0.11499599367380142,0.03568234294652939,-0.05183445289731026,-0.03408610448241234,-0.04375580698251724,-0.026738004758954048,0.043197281658649445,0.012612675316631794,0.013477753847837448,0.04818115010857582,0.04452568292617798,0.01297781988978386,-0.04440995305776596,-0.034529875963926315,-0.060834404081106186,0.0034969262778759003,0.04599180817604065,-0.055865466594696045,0.030065122991800308,0.0036155711859464645,0.07647334784269333,-0.09045135229825974,-0.0992249846458435,-0.009211701340973377,0.011731424368917942,-0.014693930745124817,-0.004974673502147198,0.08056078851222992,-0.020489031448960304,0.002937051234766841,0.050272777676582336,0.02422206848859787,0.03994496911764145,0.08330763876438141,-0.033064261078834534,0.02318688854575157,0.11373977363109589,0.021993812173604965,-0.02395465597510338,-0.060815226286649704,-0.07563070952892303,0.05191410705447197,0.009365197271108627,0.019883207976818085,0.02839951403439045,-0.047562044113874435,-0.0075838095508515835,-0.06629963964223862,0.05660479515790939,0.012996848672628403,0.007311156950891018,0.011092864908277988,-0.009761778637766838,-0.04525691643357277,0.06846090406179428,0.04751913994550705,-0.001919153262861073,-0.024996208027005196,0.03777362406253815,-0.03211364895105362,-0.09529504179954529,-0.006157194264233112,0.04513401538133621,0.03952900320291519,0.0639544203877449,-0.07853147387504578,-0.10791826248168945,-0.07871053367853165,0.03468429297208786,-0.000018075872503686696,-0.05446922779083252,0.029246103018522263,0.008454973809421062,0.05074523016810417,-0.08847290277481079,-0.014950375072658062,-0.03991347551345825,-0.05779341235756874,-0.05126301199197769,-0.04880930483341217,0.009521812200546265,0.01928064227104187,0.06415557861328125,-0.03844022378325462,-0.022289074957370758,0.033408623188734055,0.030319275334477425,-0.05252895876765251,-0.003175347810611129,-4.4569180346343273e-8,0.0632995218038559,-0.053462058305740356,-0.13113586604595184,0.07623299211263657,-0.010683367028832436,-0.044645216315984726,-0.07396523654460907,-0.012631057761609554,-0.0005021926481276751,0.14817647635936737,0.02284586988389492,-0.02411475032567978,-0.08914042264223099,-0.009538817219436169,0.03274459391832352,0.013864216394722462,0.06314801424741745,-0.022946223616600037,-0.0319010429084301,-0.06451355665922165,0.01763034053146839,-0.08583703637123108,-0.024955064058303833,-0.04650581628084183,-0.013670729473233223,-0.0827067419886589,0.07608437538146973,-0.050836581736803055,-0.013756575994193554,-0.06132467836141586,-0.0008287637028843164,0.05870521068572998,-0.06756315380334854,-0.012788204476237297,0.003294376190751791,0.07515739649534225,-0.041859425604343414,-0.008028225973248482,0.01108627486974001,0.08036669343709946,0.10367153584957123,0.03156644105911255,0.02565089240670204,-0.0316196009516716,0.035128675401210785,-0.006601071450859308,0.04764367640018463,0.034639813005924225,0.03352764621376991,-0.05609130859375,-0.11481967568397522,-0.016979089006781578,0.058192744851112366,0.06595062464475632,-0.04351141303777695,0.02163742296397686,0.10611944645643234,0.019754931330680847,0.03543595224618912,0.039115797728300095,0.029230386018753052,0.06131146475672722,0.05246608331799507,0.0018581417389214039]},{"text":"Tyrrhena regum progenies, tibi Non ante verso lene merum cado Cum flore, Maecenas, rosarum et Pressa tuis balanus capillis Iamdudum apud mest: eripe te morae, 5 Ne semper udum Tibur et Aefulae Declive contempleris arvum et Telegoni iuga parricidae.","book":"Homage to Catalonia","chapter":24,"embedding":[-0.02838071435689926,0.0560380220413208,-0.03560404106974602,-0.03806174173951149,-0.07561685889959335,-0.05181986466050148,0.02795591577887535,0.009726480580866337,-0.0009400573326274753,0.10624565929174423,0.10478275269269943,-0.13195692002773285,-0.04280960187315941,-0.0019689765758812428,-0.05664888024330139,-0.02993047423660755,-0.06791893392801285,-0.02809111401438713,-0.016785424202680588,-0.05124112218618393,0.03718731924891472,0.04107009992003441,0.01840847358107567,0.01615898869931698,-0.10074770450592041,-0.016135459765791893,-0.054146766662597656,0.034444186836481094,0.04597415030002594,-0.07877963781356812,-0.06073213368654251,0.06935375928878784,0.12499608844518661,-0.014945697970688343,0.010132820345461369,0.002268875250592828,-0.02374594286084175,-0.041652146726846695,0.08152488619089127,0.12062299996614456,0.003647963283583522,-0.0033005725126713514,-0.07554444670677185,-0.06826580315828323,-0.05983009189367294,-0.05912540480494499,-0.019664358347654343,0.07519614696502686,0.01103950198739767,-0.024036288261413574,-0.01765824854373932,-0.06085537374019623,-0.08582627028226852,0.01687605492770672,-0.043743785470724106,0.0040839421562850475,0.023770861327648163,-0.09172766655683517,0.029290813952684402,-0.022661695256829262,0.057564616203308105,0.0502435639500618,-0.01138056255877018,-0.04857154190540314,-0.03444625437259674,0.07325957715511322,-0.04294686019420624,-0.0038520500529557467,0.005491047166287899,0.04760967940092087,0.055955611169338226,0.006104458589106798,-0.05156467854976654,0.12921525537967682,-0.08674173057079315,0.0064705293625593185,-0.003078924957662821,-0.03252704069018364,-0.027886172756552696,-0.024270502850413322,-0.14124101400375366,-0.0013429707614704967,0.03561447933316231,-0.03885211423039436,0.011341494508087635,0.025724494829773903,-0.02713974192738533,0.00804552435874939,0.007435713894665241,-0.020228460431098938,0.0016647058073431253,0.010459981858730316,-0.03554762527346611,-0.03785122185945511,-0.028451619669795036,0.021243086084723473,0.012078266590833664,-0.07589329779148102,0.02453068643808365,-0.020831650123000145,0.03917156532406807,-0.10381807386875153,-0.007207541726529598,0.00565527006983757,-0.1120363101363182,-0.034314192831516266,-0.08321721106767654,-0.09839030355215073,0.05191652104258537,0.030503617599606514,-0.018232084810733795,-0.04272379353642464,0.01724984124302864,0.0028178764041513205,-0.05050317198038101,-0.06247265264391899,-0.11012688279151917,-0.039178516715765,0.06648503243923187,-0.016691559925675392,-0.010380081832408905,0.009870926849544048,0.023174049332737923,-0.04967330023646355,0.11756997555494308,-0.050336550921201706,-0.029288727790117264,1.756192968232313e-32,0.028305277228355408,-0.038801196962594986,-0.07300421595573425,-0.0043623000383377075,0.03645169362425804,0.04148465767502785,-0.06132002919912338,-0.00883503071963787,-0.030301688238978386,-0.014793060719966888,-0.10030817985534668,-0.022429078817367554,0.0033994889818131924,-0.04348600283265114,0.0826754942536354,0.0884953960776329,0.05663493648171425,0.018953556194901466,-0.05794716998934746,-0.023902297019958496,-0.05735892057418823,0.0742117166519165,0.0533934012055397,-0.06225484982132912,0.04203258082270622,0.02038903720676899,-0.018832474946975708,-0.13947346806526184,0.05635201930999756,0.04059954732656479,0.07708518207073212,-0.05355079099535942,0.021203624084591866,-0.012421590276062489,0.04127803072333336,0.01271655224263668,0.04278529807925224,-0.011554676108062267,-0.09789249300956726,0.03314463049173355,0.04804718494415283,0.007314841262996197,0.06285107880830765,0.08232002705335617,0.010509726591408253,-0.039793677628040314,0.03730674460530281,-0.012319560162723064,0.09555762261152267,-0.022694261744618416,0.01232600025832653,0.017947031185030937,0.06266611069440842,-0.05954824760556221,-0.02886931411921978,0.028144797310233116,-0.035865966230630875,0.07013766467571259,-0.019265124574303627,0.05802911892533302,0.05284792557358742,-0.041969988495111465,0.044137366116046906,-0.030761336907744408,0.017732536420226097,-0.01597503572702408,-0.059874698519706726,0.06377378106117249,0.0762343481183052,0.009189588017761707,-0.020470868796110153,-0.06116949021816254,-0.0060768346302211285,0.013058925978839397,0.021309740841388702,0.0736013650894165,0.05500255152583122,-0.02696659043431282,-0.05661388486623764,-0.01732071116566658,-0.08394115418195724,0.05371939390897751,0.06678671389818192,-0.006998359691351652,0.050287872552871704,0.019609995186328888,0.047360677272081375,0.016255907714366913,0.09116078168153763,0.06376557797193527,0.057563021779060364,0.060569800436496735,-0.03852465748786926,-0.054926060140132904,0.020519457757472992,-1.5953937164370738e-32,-0.08410713821649551,-0.026626642793416977,-0.1848660409450531,0.01537041924893856,-0.03546098619699478,-0.0006659687496721745,-0.08259136974811554,0.07897842675447464,-0.02504601702094078,-0.04669923707842827,-0.021599918603897095,0.02251509204506874,0.04494106024503708,-0.04318610951304436,-0.0007255384116433561,-0.005070774350315332,0.042888592928647995,-0.00932229496538639,-0.002792991930618882,-0.09039649367332458,-0.05658698081970215,-0.056282155215740204,0.03361602872610092,-0.07804898917675018,-0.03823501989245415,-0.003634396707639098,-0.03831290453672409,0.011590770445764065,-0.015658928081393242,-0.05701782554388046,0.05035850778222084,-0.0019781861919909716,0.021550234407186508,0.05871216207742691,-0.015186948701739311,0.00840320810675621,0.0753365084528923,-0.05013032257556915,0.0366816483438015,0.05107986181974411,-0.027632305398583412,0.008832377381622791,0.06914188712835312,0.00031563956872560084,-0.0018970770761370659,-0.014620541594922543,-0.02726832590997219,0.0001275736722163856,-0.04605148360133171,0.03122861683368683,0.09394574165344238,0.005522985011339188,0.055586252361536026,-0.042176712304353714,0.0666300430893898,-0.06946001946926117,-0.029738834127783775,-0.05593925341963768,-0.04224749654531479,0.05309651046991348,0.031856659799814224,-0.01234324648976326,0.048579245805740356,0.014609075151383877,0.10708723217248917,-0.0012060502776876092,-0.07808375358581543,-0.00645060371607542,-0.021326450631022453,0.014258026145398617,0.10391813516616821,-0.0480988435447216,-0.13534343242645264,-0.03877191245555878,0.01259932853281498,-0.01291740033775568,-0.04084598273038864,0.08169849961996078,0.07332330197095871,0.008516200818121433,-0.07511578500270844,-0.007405848708003759,0.0002982952573802322,0.007765999063849449,-0.02282659523189068,-0.018818164244294167,0.03463062644004822,0.044312238693237305,0.039146069437265396,0.042089372873306274,0.045467305928468704,-0.006484713405370712,0.04394731670618057,0.011737902648746967,0.05508274585008621,-5.554810300623103e-8,0.008756090886890888,-0.04919250309467316,-0.043275926262140274,0.06768305599689484,0.012887305580079556,-0.03512963280081749,-0.029185647144913673,-0.021253198385238647,0.044231005012989044,0.025574317201972008,0.02577674202620983,-0.06642327457666397,-0.01711391843855381,0.007422807160764933,0.07373376935720444,0.05935494601726532,0.07377970963716507,0.0352337583899498,-0.043870627880096436,-0.016844112426042557,-0.011922240257263184,0.02799534983932972,-0.10154588520526886,-0.03145907446742058,-0.05817301571369171,-0.04694332182407379,0.007146923337131739,-0.03608347102999687,-0.005222619976848364,-0.03494441881775856,-0.038711000233888626,0.03402307629585266,0.001179893733933568,-0.0682690367102623,0.04874324053525925,0.07052385061979294,-0.012523625046014786,0.04607682675123215,0.05764191225171089,0.023411542177200317,0.09955114126205444,-0.04637279734015465,0.005016993265599012,-0.023382801562547684,-0.0019869692623615265,0.002338120248168707,0.014816083945333958,0.012751802802085876,0.013760961592197418,-0.09069482237100601,-0.04642980173230171,0.028004297986626625,0.08993940055370331,0.03362853452563286,-0.04655757173895836,-0.030913295224308968,0.06438952684402466,-0.030734749510884285,0.013213583268225193,0.08905208110809326,0.07072474807500839,0.03690842166543007,0.02572465129196644,0.0327637679874897]},{"text":"Plerumque gratae divitibus vices Mundaeque parvo sub lare pauperum Cenae sine aulaeis et ostro 15 Sollicitam explicuere frontem.","book":"Homage to Catalonia","chapter":24,"embedding":[-0.03358820080757141,0.02060014382004738,-0.04675865173339844,-0.053927674889564514,-0.07748831808567047,0.02015444077551365,0.0001161653344752267,0.08162485808134079,0.032698966562747955,0.03175748512148857,0.07024026662111282,-0.08103971928358078,0.012245113961398602,-0.0674145445227623,-0.030004039406776428,-0.0737915188074112,-0.043639473617076874,0.06543726474046707,0.0038741459138691425,0.0667291060090065,0.08010793477296829,-0.018389055505394936,-0.03770254924893379,0.04892882704734802,-0.07070664316415787,0.14967326819896698,-0.049236148595809937,-0.004565238952636719,0.050858888775110245,-0.05790935456752777,0.01724490150809288,0.09866254776716232,0.11799272149801254,-0.004045316018164158,0.04013410955667496,-0.048663005232810974,-0.07265736907720566,-0.00042001382098533213,0.019075218588113785,0.07701465487480164,-0.043449852615594864,-0.024453261867165565,-0.08244875818490982,-0.04783782362937927,-0.04368829354643822,-0.08982657641172409,-0.011056607589125633,0.09015756845474243,0.010378975421190262,-0.03401957079768181,0.00690462114289403,-0.08021438121795654,-0.06109169125556946,0.0006498649017885327,-0.005587683524936438,-0.04210438206791878,-0.060328975319862366,-0.04858318343758583,0.06905420124530792,-0.029307404533028603,0.1163170114159584,0.06294351071119308,-0.08481453359127045,-0.048226915299892426,-0.09441788494586945,-0.054668277502059937,-0.0019002549815922976,-0.02512190118432045,-0.08756210654973984,0.018940383568406105,0.11127040535211563,-0.03601799160242081,0.0013733298983424902,0.07612503319978714,-0.07071993499994278,0.004038925748318434,0.03181711956858635,-0.0032894322648644447,-0.0271694827824831,-0.060085318982601166,-0.03936488926410675,0.03165864571928978,-0.05237027257680893,0.021985147148370743,0.013483213260769844,-0.006507028825581074,0.0016829168889671564,-0.006395712960511446,0.05395858362317085,-0.01961299031972885,-0.02156352996826172,-0.012039484456181526,-0.02507302537560463,-0.017372697591781616,0.01016076561063528,0.08866231888532639,-0.02729278989136219,-0.0631367415189743,0.062233008444309235,-0.001622008509002626,0.05410340428352356,-0.01569630205631256,0.01203223317861557,0.03146331384778023,-0.14732739329338074,-0.046068474650382996,0.03541366010904312,-0.05381275340914726,0.018933305516839027,0.03785702586174011,-0.03998180106282234,-0.0357712060213089,-0.01654156669974327,-0.04766002297401428,-0.032485805451869965,-0.01404091902077198,0.022439196705818176,-0.07126651704311371,-0.0220385380089283,-0.0684170350432396,0.0020193359814584255,-0.05060891807079315,0.050990741699934006,-0.04040350019931793,0.07704871147871017,-0.06490146368741989,0.05021236836910248,1.30735704593051e-32,-0.013678807765245438,-0.0737910270690918,-0.02150583826005459,0.01752401329576969,0.027838170528411865,-0.0655268058180809,-0.05792348459362984,-0.025901757180690765,0.03531631454825401,-0.01587803289294243,-0.08777105808258057,0.0408591628074646,-0.029486294835805893,-0.04835407808423042,0.022620122879743576,0.03836168721318245,0.0818987786769867,-0.03704162314534187,0.017990143969655037,-0.09050758928060532,-0.06950026005506516,0.08040670305490494,0.06746289879083633,0.016769403591752052,0.027748484164476395,0.02039325423538685,-0.019951580092310905,-0.11064537614583969,0.04915474355220795,0.026570994406938553,0.05862325429916382,-0.025297384709119797,-0.022502297535538673,0.02414826676249504,0.029264643788337708,0.045547302812337875,0.014052405953407288,-0.01737225614488125,-0.009918833151459694,0.021368781104683876,0.025281982496380806,-0.004710047505795956,0.09129977226257324,0.0418662391602993,0.11576550453901291,0.049120523035526276,0.01711534522473812,0.039896830916404724,0.04193054139614105,0.06045025214552879,-0.007656821049749851,0.03939168155193329,-0.0010490098502486944,-0.03550860285758972,-0.06120246276259422,0.06650698184967041,-0.05825312063097954,0.06677603721618652,-0.04670562222599983,-0.022293876856565475,0.006815854925662279,0.04115322604775429,0.053226470947265625,-0.009391114115715027,0.03437062352895737,0.017105204984545708,-0.05006801709532738,-0.0221729539334774,0.08908308297395706,0.031328845769166946,-0.10367238521575928,-0.03498241677880287,-0.056967899203300476,0.07546954602003098,0.04457400366663933,-0.0110298627987504,0.049991317093372345,0.032714761793613434,-0.052010904997587204,-0.018872957676649094,-0.11736402660608292,-0.0014068045420572162,-0.02837975323200226,-0.03351237252354622,0.04120279848575592,0.04408528283238411,0.008742718026041985,-0.007866485975682735,0.07090458273887634,0.018980955705046654,-0.010807047598063946,-0.02793930470943451,-0.015028693713247776,0.002579932101070881,0.0187740046530962,-1.3803586246628327e-32,-0.038851816207170486,-0.047013524919748306,-0.04477248713374138,0.031623076647520065,-0.02312055602669716,0.010357345454394817,-0.09447633475065231,-0.00635131960734725,-0.09865826368331909,-0.06310028582811356,-0.1059042289853096,-0.01299209799617529,0.08951553702354431,-0.05691322684288025,-0.04084312543272972,0.10495331138372421,0.0792333334684372,0.03720163181424141,-0.09865081310272217,-0.06875614821910858,-0.033184800297021866,0.0509587898850441,0.09231329709291458,-0.06764271855354309,-0.021922294050455093,-0.0280209481716156,0.05148836970329285,-0.013833827339112759,-0.08359242975711823,0.01168887224048376,0.08663848042488098,-0.0023672415409237146,0.013536269776523113,-0.020351754501461983,-0.08935734629631042,-0.027751168236136436,0.08551357686519623,0.01600869558751583,-0.03575815632939339,-0.02088329941034317,-0.053613971918821335,0.013924574479460716,0.11627325415611267,0.07744934409856796,-0.018172629177570343,-0.05810171365737915,-0.04393244534730911,-0.05821925774216652,-0.03686041012406349,0.0059810359962284565,0.08589296042919159,-0.05321824178099632,0.030965063720941544,-0.024871826171875,0.05112052336335182,-0.021140286698937416,-0.04391256719827652,0.01660662703216076,-0.009399970062077045,0.03816315159201622,0.06011561304330826,0.0193843524903059,0.023230919614434242,-0.044233594089746475,0.09594973921775818,0.011637618765234947,-0.04862368851900101,0.08405660092830658,-0.04383011534810066,0.026711640879511833,0.0347672738134861,-0.05547177791595459,-0.08182043582201004,0.03471449017524719,0.004182237200438976,0.03645933046936989,-0.012549299746751785,0.01987726055085659,0.008664954453706741,0.01103240717202425,-0.07000670582056046,-0.04230070486664772,-0.047754812985658646,-0.023397130891680717,-0.07710332423448563,-0.04753195494413376,0.08505807816982269,0.026204906404018402,0.042250774800777435,0.03502251207828522,0.0067502777092158794,-0.03272317349910736,0.11434376984834671,-0.023928146809339523,0.026520593091845512,-4.711576906402115e-8,-0.0002616055717226118,-0.04023095965385437,-0.039801791310310364,0.08406656980514526,0.027718419209122658,-0.02693009190261364,-0.023855697363615036,0.02432728186249733,-0.007762503810226917,0.044130515307188034,0.012784643098711967,-0.016160795465111732,-0.03279001638293266,0.04030781239271164,0.06612695008516312,0.014769158326089382,0.0919727012515068,0.05431200936436653,-0.04644990712404251,-0.06366384774446487,0.08177062124013901,-0.028861792758107185,0.002771212486550212,0.03267698734998703,-0.0008253692649304867,-0.053612299263477325,0.004644340369850397,-0.097164086997509,-0.027742737904191017,0.008832721039652824,0.01933751255273819,0.05624723434448242,0.07107964903116226,-0.05935918167233467,0.004382695537060499,0.06590066105127335,-0.03682060167193413,0.04395817220211029,-0.039403121918439865,0.043209802359342575,0.021289097145199776,-0.017275763675570488,-0.029026849195361137,-0.03791890665888786,-0.007731168065220118,-0.027576597407460213,-0.060597438365221024,0.06637788563966751,0.006713666953146458,-0.0809595063328743,-0.014745749533176422,-0.03141729533672333,0.08966830372810364,-0.024392861872911453,-0.07176397740840912,-0.03613898903131485,0.021587960422039032,0.052786991000175476,-0.006898307707160711,-0.011888783425092697,0.014801131561398506,0.055684804916381836,-0.015297460369765759,0.045418351888656616]},{"text":"Tu civitatem quis deceat status 25 Curas et Urbi sollicitus times Quid Seres et regnata Cyro Bactra parent Tanaisque discors.","book":"Homage to Catalonia","chapter":24,"embedding":[-0.08722462505102158,0.008856300264596939,-0.0001312380627496168,-0.05456196144223213,-0.06902111321687698,0.045040063560009,0.03169509395956993,0.09599366784095764,0.0275811068713665,0.028700867667794228,0.06792524456977844,-0.11101129651069641,0.003120086621493101,-0.041347745805978775,-0.04451066255569458,-0.07332014292478561,-0.06746059656143188,0.09707911312580109,-0.043330445885658264,-0.03922576829791069,0.011273122392594814,-0.028540492057800293,-0.053267162293195724,0.02728435955941677,-0.05249043554067612,0.053657036274671555,-0.027011126279830933,-0.0536738745868206,0.003331495216116309,-0.043808747082948685,0.020385464653372765,0.1063048467040062,0.003623567521572113,-0.04416577145457268,-0.015453550964593887,-0.02699524350464344,-0.030512413010001183,-0.03427545726299286,0.05615871399641037,0.04632220044732094,-0.027843303978443146,-0.013731824234127998,-0.07539208978414536,-0.04996785148978233,0.08053619414567947,-0.014658704400062561,0.015142549760639668,0.06335140019655228,-0.0031255146022886038,0.008070050738751888,-0.033317528665065765,-0.0076915910467505455,0.010984831489622593,0.047004278749227524,-0.02007731795310974,-0.020228026434779167,-0.005852349568158388,-0.02910647727549076,0.024291781708598137,-0.0549481064081192,0.0680481344461441,0.024542121216654778,-0.09897038340568542,-0.05366288125514984,-0.01770562306046486,0.005491407122462988,0.012999256141483784,-0.04807209596037865,-0.014567781239748001,-0.048717886209487915,0.013100039213895798,0.002433339599519968,-0.03829953074455261,0.04092223942279816,-0.0626838356256485,0.13331402838230133,0.039918430149555206,0.019143210723996162,-0.09172044694423676,-0.05642387643456459,0.016183139756321907,0.04055148363113403,0.017417488619685173,-0.038285695016384125,0.051865678280591965,-0.009225023910403252,0.030768051743507385,0.05852118879556656,0.09297780692577362,0.014848869293928146,-0.013350943103432655,0.07494228333234787,0.016359752044081688,-0.020696144551038742,-0.03731824830174446,-0.04180946946144104,-0.0058915261179208755,0.008513014763593674,0.03858480975031853,0.008448249660432339,0.049350641667842865,0.00772538036108017,-0.005376777611672878,0.04897695779800415,-0.16016435623168945,-0.01947726123034954,-0.008410066366195679,-0.021482575684785843,0.0197765976190567,0.08047537505626678,-0.11254126578569412,-0.044756919145584106,-0.04044727236032486,-0.054052989929914474,0.0038376436568796635,0.08612871170043945,0.01010057795792818,-0.034216463565826416,0.10434083640575409,-0.10288770496845245,0.08492513746023178,0.00008578332199249417,0.0053299469873309135,-0.08283094316720963,0.008959815837442875,0.014869281090795994,0.04709293693304062,1.067269010399178e-32,-0.10911257565021515,-0.038006339222192764,0.0009399746777489781,0.05810196325182915,0.054590921849012375,0.03302335739135742,-0.09178953617811203,0.005725390277802944,-0.028183670714497566,-0.10743086040019989,-0.10472097992897034,0.0051634726114571095,-0.005588500294834375,-0.06692443788051605,-0.024394646286964417,0.0718676745891571,0.07624617218971252,-0.020070094615221024,0.02057841047644615,-0.03608207777142525,-0.03621940687298775,0.06679189950227737,-0.006979221478104591,0.0020674930419772863,0.04020301625132561,-0.010737881064414978,0.002240115078166127,-0.04422391578555107,-0.07723233848810196,0.023638740181922913,0.06029481813311577,-0.010249664075672626,-0.015142896212637424,-0.05578798055648804,0.07010843604803085,0.03867965564131737,0.0725526362657547,0.028154317289590836,-0.021515682339668274,0.03242521733045578,-0.013047733344137669,-0.03424285352230072,0.05864210054278374,0.0036390291061252356,0.10162249207496643,-0.03309757634997368,0.012043504975736141,-0.01459078211337328,0.004402415361255407,0.017867455258965492,-0.01185012236237526,0.02800680883228779,-0.07133506238460541,-0.027566121891140938,-0.024681052193045616,0.021253257989883423,-0.06996460258960724,0.03770669177174568,-0.07551587373018265,-0.042030926793813705,0.0780918300151825,-0.0559966005384922,-0.006792297121137381,-0.04765843600034714,-0.038690391927957535,0.008478031493723392,-0.0511770136654377,0.06822726875543594,0.09254465252161026,0.022884860634803772,-0.09511185437440872,0.013388309627771378,-0.03864072263240814,-0.03977356106042862,0.04942597448825836,-0.025892285630106926,0.04763111099600792,-0.010279674082994461,-0.0012402983848005533,-0.0046537453308701515,-0.033974599093198776,-0.017907429486513138,0.011333920992910862,0.003863835707306862,0.08358106762170792,-0.007343010511249304,-0.029663244262337685,0.13102681934833527,-0.0013128593564033508,-0.008680540136992931,0.026233794167637825,-0.016620710492134094,-0.0037115237209945917,0.04706630855798721,0.08671869337558746,-1.1469451929922635e-32,0.07257372885942459,-0.00672347703948617,-0.055581171065568924,0.0602765828371048,0.028981417417526245,-0.03578079119324684,-0.016982823610305786,0.03697218745946884,0.026125730946660042,-0.09888476133346558,-0.02153940685093403,-0.07262279093265533,0.06667251884937286,-0.02495323307812214,-0.0757974311709404,0.08168459683656693,0.036696530878543854,0.0013955400791019201,-0.10563412308692932,0.026240410283207893,-0.09962337464094162,-0.013539203442633152,-0.008717447519302368,-0.047032590955495834,0.020128829404711723,-0.010019980370998383,0.06616804748773575,-0.022480333223938942,-0.02116517163813114,-0.03675172105431557,0.03864347189664841,-0.018924422562122345,0.007807059213519096,0.05890749394893646,0.0052900598384439945,0.06276391446590424,0.08760074526071548,-0.03682175278663635,-0.04736189916729927,0.049110107123851776,0.003627473721280694,0.04643626883625984,0.04785687103867531,0.04510723426938057,0.004241539631038904,0.05078691989183426,-0.03995935618877411,-0.04946543648838997,-0.06875623762607574,0.040942322462797165,0.16224130988121033,-0.047264087945222855,0.010443386621773243,0.03814482316374779,0.0952407717704773,0.062070462852716446,-0.026597311720252037,-0.010785749182105064,-0.11653172224760056,0.03356599062681198,0.07798007875680923,0.03736100718379021,-0.029717715457081795,-0.08052564412355423,0.08112774044275284,-0.07310609519481659,-0.07284942269325256,0.0944962128996849,0.007528267335146666,0.008272812701761723,0.10448166728019714,-0.0635087713599205,-0.07024307548999786,-0.07375960797071457,-0.05984659865498543,-0.05637921020388603,-0.05738621577620506,0.06617773324251175,0.03244280815124512,0.044627271592617035,-0.07447168976068497,-0.05787822976708412,0.018525011837482452,-0.03190898150205612,-0.05710889771580696,-0.10313872247934341,0.05477166548371315,0.040841758251190186,0.0665050745010376,-0.051495034247636795,0.010307296179234982,-0.012835752218961716,0.05292203649878502,0.0032596811652183533,0.013761879876255989,-3.720036190202336e-8,0.08006913214921951,-0.08962864428758621,-0.132390558719635,0.049778975546360016,0.043672382831573486,-0.04054569825530052,0.003870172891765833,-0.00963899027556181,-0.031403832137584686,0.06962352991104126,-0.025919081643223763,-0.03672081232070923,-0.02776188589632511,0.01540567446500063,0.06217864528298378,0.04662243649363518,0.05610496178269386,0.07736355066299438,0.00020834748283959925,-0.05126817151904106,0.0358584001660347,-0.06027548387646675,-0.03103259950876236,0.03189857304096222,-0.07555002719163895,-0.013359333388507366,0.05120892450213432,0.004176884889602661,-0.017244623973965645,-0.007179690059274435,-0.02298877015709877,-0.00803570169955492,0.0421067513525486,-0.061102330684661865,-0.02384670078754425,0.04576345160603523,-0.0037530779372900724,0.03840973973274231,0.027147619053721428,-0.0010587276192381978,0.07348766922950745,0.024423345923423767,-0.054135989397764206,-0.027550557628273964,0.007470123004168272,-0.06349068880081177,-0.007389403879642487,0.009646430611610413,-0.03207175433635712,-0.02179565094411373,-0.03942914307117462,0.006780464667826891,0.07593470066785812,0.024806322529911995,0.01693684235215187,0.024754058569669724,0.025554755702614784,0.0015520233428105712,-0.03467683866620064,-0.025266185402870178,0.05041127651929855,0.04411358758807182,0.049633100628852844,0.017728466540575027]},{"text":"Quod adest memento Componere aequus; cetera fluminis Ritu feruntur, nunc medio alveo Cum pace delabentis Etruscum 35 In mare, nunc lapides adesos Stirpisque raptas et pecus et domos Volventis una non sine montium Clamore vicinaeque silvae, Cum fera diluvies quietos 40 Irritat amnis.","book":"Homage to Catalonia","chapter":24,"embedding":[-0.00006000712892273441,0.0328092947602272,0.048207879066467285,0.025239579379558563,0.006369887385517359,0.0528130941092968,0.006097210105508566,0.057975079864263535,0.02231670171022415,0.019395912066102028,0.04815875366330147,-0.07660499215126038,0.029885856434702873,-0.05146564543247223,-0.1190328299999237,-0.05045170709490776,0.025527069345116615,0.08145197480916977,0.01910993456840515,0.09394963085651398,0.03639821335673332,-0.004543654154986143,0.004670978523790836,0.0888780802488327,-0.05039965733885765,0.044997796416282654,-0.0640614777803421,-0.013094952329993248,-0.0036602970212697983,-0.03612333908677101,-0.005815590266138315,0.05343283712863922,0.09710468351840973,-0.052300505340099335,-0.04384255409240723,0.013004273176193237,0.0131089361384511,-0.07416778802871704,0.038419704884290695,0.05442730709910393,-0.06032291427254677,-0.0530998520553112,-0.034470729529857635,-0.03691677004098892,0.018364788964390755,-0.05486699566245079,-0.005342856515198946,0.01393355242908001,0.07965508103370667,0.05913502722978592,-0.06471861898899078,-0.036020029336214066,-0.1295255422592163,0.062101226300001144,-0.06349583715200424,-0.10298624634742737,0.038283903151750565,-0.002446138998493552,-0.019068574532866478,0.008778085932135582,-0.048499904572963715,0.06054672598838806,0.022834554314613342,0.047108110040426254,-0.06435789167881012,0.02480519935488701,-0.047801773995161057,0.033180881291627884,-0.05364662781357765,0.06490234285593033,0.09546542167663574,-0.05124661326408386,0.01403473224490881,0.0024686073884367943,-0.0810902863740921,0.08730033040046692,-0.009531872346997261,-0.03186511993408203,0.008617481216788292,-0.09559731930494308,-0.012663946487009525,-0.07258079946041107,0.02652106247842312,-0.04827157035470009,0.03492892533540726,-0.006803600583225489,0.050160061568021774,-0.09375207126140594,0.03707358241081238,-0.019790509715676308,-0.07417391985654831,-0.01035294309258461,-0.08262459933757782,-0.02832671068608761,0.06365767121315002,-0.00920625776052475,-0.009166793897747993,0.02047472819685936,-0.00421500438824296,0.001972334226593375,-0.020966414362192154,0.03776584565639496,-0.05595783144235611,0.014731182716786861,-0.09646037966012955,-0.012295584194362164,-0.06153889000415802,-0.11062420159578323,-0.0417439341545105,0.019598953425884247,-0.12394754588603973,-0.03771001845598221,-0.033961985260248184,-0.07263463735580444,0.04186248406767845,0.019565876573324203,-0.03667859360575676,-0.1202220469713211,-0.0066333734430372715,-0.0326584130525589,0.06835053116083145,-0.06714334338903427,0.0026962256524711847,-0.05380679666996002,0.05172495171427727,-0.05737421661615372,0.05182931572198868,1.8806628324314204e-32,-0.015881337225437164,-0.11432164907455444,-0.03580634668469429,0.04073493182659149,0.07810060679912567,0.007575553841888905,-0.08052660524845123,-0.04347744584083557,0.04694553464651108,-0.04594241827726364,-0.05016086995601654,-0.014383007772266865,0.004085581284016371,-0.03754924237728119,0.04288046434521675,-0.01630595326423645,0.12443073838949203,-0.05508308485150337,0.0272288229316473,-0.09555385261774063,-0.06792671233415604,0.06394806504249573,-0.002956334501504898,-0.03378066420555115,-0.021022560074925423,0.0033138690050691366,-0.051596760749816895,-0.05639910325407982,-0.049424584954977036,0.05961962789297104,0.01521832775324583,-0.04552008584141731,-0.012672926299273968,-0.06594184041023254,-0.012644464150071144,0.0016424128552898765,-0.040701474994421005,-0.04411297291517258,-0.01214892603456974,0.025129135698080063,0.06686556339263916,0.04523038864135742,0.051092199981212616,-0.008074898272752762,0.002574032638221979,0.07560715824365616,0.03860072046518326,0.07456070929765701,0.1180577427148819,0.043402448296546936,0.04932399094104767,-0.000009019086064654402,-0.042911138385534286,-0.0287967249751091,-0.004716868512332439,0.05678102374076843,-0.0953117236495018,-0.007798837032169104,-0.06519424170255661,-0.0073548792861402035,0.04975469782948494,-0.01570909656584263,0.05474603921175003,-0.002149851294234395,0.03883105888962746,-0.03344880789518356,-0.019248293712735176,0.01492942962795496,0.08066960424184799,0.05539523810148239,-0.07183858752250671,-0.021190108731389046,-0.04494676738977432,-0.011353420093655586,0.03360884636640549,0.013411971740424633,0.08839345723390579,-0.05788526311516762,0.005034899339079857,-0.08159129321575165,-0.06989288330078125,-0.049558866769075394,0.026477569714188576,0.056418173015117645,0.06019436940550804,0.08844057470560074,0.012972173281013966,0.05563558265566826,0.01716374233365059,0.094376340508461,0.035982582718133926,0.031992945820093155,0.020242488011717796,-0.018457377329468727,-0.05340760573744774,-1.865453992646894e-32,-0.005449657794088125,0.0032807509414851665,-0.048429276794195175,0.06444970518350601,-0.029005322605371475,0.050760526210069656,-0.0741688534617424,0.005617520771920681,0.00407085195183754,-0.0030194194987416267,-0.06280643492937088,-0.0850832611322403,0.03498183190822601,-0.0894380584359169,-0.05144172161817551,0.005295359063893557,0.060301780700683594,-0.007217772770673037,0.01007501408457756,-0.022038286551833153,-0.023476731032133102,-0.026488112285733223,0.08814792335033417,-0.07181836664676666,0.005183191038668156,0.015040820464491844,-0.027837306261062622,-0.03665842488408089,-0.035105958580970764,-0.009760395623743534,0.016859373077750206,0.03569499030709267,-0.03844252973794937,-0.009253334254026413,0.011444802395999432,0.04894242063164711,0.12292682379484177,-0.015395495109260082,-0.0011393401073291898,-0.020940763875842094,0.008722211234271526,0.05604612082242966,0.05241461098194122,-0.030846061185002327,-0.017291544005274773,-0.01787339337170124,-0.07180462032556534,-0.018118713051080704,-0.008723695762455463,0.0036262113135308027,0.054520104080438614,-0.028946805745363235,-0.01261450070887804,-0.021899119019508362,0.026032689958810806,-0.020137058570981026,-0.048878125846385956,-0.10968752205371857,-0.012017364613711834,0.023629048839211464,0.054671574383974075,0.04273692145943642,-0.08247478306293488,-0.0660572275519371,0.08974180370569229,0.00543240224942565,-0.10458969324827194,0.03562188893556595,-0.026758145540952682,0.03864848613739014,0.08296632766723633,-0.05163513123989105,-0.1069987490773201,0.03996407240629196,-0.024372270330786705,-0.035972125828266144,-0.005062042269855738,-0.06262184679508209,0.04497213661670685,0.03420016169548035,-0.0145490113645792,0.0032272529788315296,-0.04137392342090607,-0.06305401027202606,-0.1136191263794899,-0.045392464846372604,-0.06072494760155678,-0.002829356351867318,0.04458077251911163,0.012835141271352768,0.02296336367726326,-0.016266075894236565,0.040430545806884766,-0.060331810265779495,0.03345780819654465,-5.956254867101052e-8,-0.006481380667537451,0.0010057588806375861,0.013007347472012043,0.03494494408369064,0.1119789257645607,-0.07872042804956436,-0.07735396921634674,0.018609553575515747,0.00741560710594058,0.06198207288980484,0.023553097620606422,0.028224868699908257,0.047524359077215195,0.00876321829855442,-0.0013888966059312224,0.035304613411426544,0.12094908207654953,0.03494613617658615,-0.043838683515787125,-0.035542216151952744,0.04817594960331917,-0.004054034594446421,-0.038130950182676315,-0.10996181517839432,-0.03576447814702988,-0.013253799639642239,0.07140089571475983,0.0015083906473591924,0.016167186200618744,0.013797938823699951,-0.04000215232372284,0.043394945561885834,0.007043635472655296,-0.13448651134967804,-0.028531767427921295,0.03681834042072296,0.006287777330726385,0.009806733578443527,-0.017603661864995956,0.022343581542372704,0.04333840310573578,0.018017537891864777,0.08749882131814957,-0.007590312510728836,0.015734871849417686,-0.010883860290050507,0.05315732583403587,0.008782470598816872,0.0050358460284769535,-0.02668754570186138,-0.013008718378841877,0.0579424612224102,0.15036146342754364,0.03619633987545967,-0.05441240221261978,-0.024209894239902496,0.05113920941948891,0.05330473929643631,0.004729456268250942,-0.07162551581859589,0.03994407504796982,0.035638343542814255,0.07368430495262146,-0.009271369315683842]},{"text":"Laudo manentem; si celeres quatit Pennas, resigno quae dedit et mea Virtute me involvo probamque 55 Pauperiem sine dote quaero.","book":"Homage to Catalonia","chapter":24,"embedding":[-0.010549836792051792,0.07334061712026596,0.04461339861154556,0.0121469022706151,-0.07209426909685135,0.057326748967170715,0.07170355319976807,0.14961813390254974,0.046192724257707596,0.07096228003501892,0.02059505321085453,-0.09244845062494278,0.023329827934503555,-0.05722871422767639,-0.06727887690067291,-0.005373021587729454,-0.02315257489681244,0.10789946466684341,0.01993205025792122,0.005007412284612656,0.008961653336882591,-0.037731315940618515,-0.05830783769488335,0.018196387216448784,-0.05756755545735359,0.04659884795546532,-0.015725618228316307,0.05133975297212601,0.004870907869189978,-0.05050446093082428,0.06628923118114471,0.06672962754964828,0.009583285078406334,-0.04798473045229912,0.03565927967429161,-0.013931210152804852,-0.041805073618888855,-0.08466766029596329,0.024960972368717194,0.006746921222656965,0.021396903321146965,-0.052342738956213,-0.07521722465753555,-0.08150099962949753,0.004918656777590513,0.021262692287564278,-0.006182149983942509,0.06542385369539261,0.011212575249373913,0.008023811504244804,-0.01479688286781311,0.048527687788009644,-0.023730406537652016,0.02043510600924492,-0.09837653487920761,0.018695613369345665,0.12011700868606567,-0.03263675794005394,-0.00765693373978138,-0.06341981887817383,0.027112826704978943,0.04476924613118172,-0.09128798544406891,0.020134212449193,-0.013893933035433292,-0.013283324427902699,0.05775227025151253,-0.03269023448228836,-0.07948073744773865,0.026986166834831238,0.013002785854041576,-0.06670663505792618,-0.07877367734909058,0.12497363239526749,-0.02374887652695179,0.05974532663822174,0.009373716078698635,-0.026285920292139053,0.004666601307690144,-0.11711178719997406,0.06254927068948746,-0.00542502710595727,-0.015666374936699867,-0.024528296664357185,0.02622521109879017,0.043350182473659515,0.0017787442775443196,-0.031096989288926125,0.09904882311820984,-0.11871816217899323,-0.062317702919244766,0.09121038019657135,-0.04110841825604439,-0.030999986454844475,0.029083101078867912,-0.029204074293375015,0.019175797700881958,0.01478751190006733,0.03199922293424606,0.02504638396203518,0.0664401650428772,-0.023521367460489273,-0.08667109161615372,0.007173589896410704,-0.05277879163622856,-0.008222565986216068,0.031492650508880615,-0.06518281996250153,0.08741507679224014,0.08572521060705185,-0.029554173350334167,-0.034741129726171494,-0.05927393212914467,-0.02045535109937191,0.004824078641831875,0.06541889160871506,-0.029069188982248306,-0.00405746977776289,-0.017572909593582153,0.0028583151288330555,0.06498134881258011,-0.0017082140548154712,-0.015715735033154488,-0.007446284871548414,-0.03237804397940636,-0.1258039027452469,0.0591815710067749,7.970299121112391e-33,-0.016807304695248604,-0.08025732636451721,0.0028090323321521282,0.02833639644086361,0.06797228008508682,-0.0190226249396801,0.025165153667330742,-0.049492087215185165,0.06359468400478363,-0.062392935156822205,-0.0794704258441925,-0.005621574819087982,0.02898171730339527,-0.01175975613296032,0.011589650996029377,0.005060865543782711,0.1925935596227646,-0.053557757288217545,0.06308137625455856,-0.05508881434798241,-0.015435239300131798,0.006909468211233616,0.016925033181905746,0.0791354551911354,0.03837239369750023,0.017285652458667755,-0.04205309599637985,-0.005004011560231447,-0.027459625154733658,0.02549654059112072,-0.0369565524160862,0.038422420620918274,0.012092672288417816,-0.06446393579244614,0.009995902888476849,-0.04100644588470459,-0.051319751888513565,-0.007053003646433353,0.00011656149581540376,-0.03843725845217705,-0.031453751027584076,0.014426430687308311,0.06932330876588821,-0.013682899996638298,0.0016963733360171318,-0.005962175317108631,0.05821686610579491,-0.007527375128120184,0.02912568300962448,-0.030549267306923866,-0.00223483401350677,-0.055670879781246185,-0.038869552314281464,0.015509880147874355,0.055672287940979004,-0.0564766488969326,-0.05231371521949768,-0.01373138278722763,-0.020212989300489426,-0.08585026860237122,0.03460502251982689,0.03008483350276947,-0.03390214592218399,0.022846322506666183,-0.059865910559892654,-0.019927965477108955,-0.047128234058618546,0.018375778570771217,0.015937160700559616,0.09520789235830307,-0.05630723759531975,0.04778376221656799,-0.03414866328239441,0.03935452178120613,0.0016627181321382523,-0.011748217046260834,0.01693585328757763,0.03970417380332947,0.011576876044273376,-0.00020686653442680836,0.040631286799907684,0.011609128676354885,0.01458730362355709,-0.034757349640131,0.16354016959667206,-0.016251524910330772,0.06289117783308029,0.012528406456112862,0.004978601820766926,0.036706261336803436,0.08262645453214645,-0.007098214700818062,0.05150938034057617,0.030216407030820847,0.03511999920010567,-9.839130896776373e-33,-0.06044474244117737,0.09984389692544937,-0.05322675779461861,0.0856560468673706,-0.053009599447250366,0.032731086015701294,0.010827134363353252,0.001991202589124441,-0.010978559032082558,-0.03908797353506088,-0.04598299041390419,-0.10475151240825653,0.0669730007648468,-0.02247108891606331,-0.09495583176612854,0.08647020906209946,0.036516811698675156,-0.027241256088018417,-0.0404650941491127,-0.012349233031272888,-0.033024515956640244,-0.01779910922050476,0.022650616243481636,-0.08692150563001633,0.017781315371394157,-0.12200533598661423,0.030827825888991356,-0.058397985994815826,-0.0720035508275032,-0.022867875173687935,-0.01675489917397499,0.013648881576955318,-0.01300205010920763,0.046407345682382584,-0.004876208491623402,0.017720460891723633,0.0978817418217659,0.015222269110381603,-0.03094548173248768,0.017495697364211082,-0.0554557628929615,-0.006032399367541075,0.10121908783912659,-0.0349881686270237,0.027516009286046028,-0.0542316697537899,-0.030536500737071037,-0.13120658695697784,-0.08641722053289413,-0.003908813465386629,0.05085394158959389,-0.01438548881560564,0.015815412625670433,-0.0020920103415846825,-0.04000166058540344,0.026923364028334618,0.0030579303856939077,-0.004761825315654278,-0.021956928074359894,0.005378087982535362,0.058900658041238785,0.03586302325129509,-0.0013575860066339374,0.024700239300727844,0.0890883281826973,0.02507914789021015,-0.10027337074279785,0.08993005752563477,-0.0009671467705629766,0.009213932789862156,0.07280772179365158,-0.06868447363376617,-0.018496034666895866,-0.04588538035750389,-0.08017205446958542,-0.058392588049173355,-0.02220023237168789,0.038540687412023544,0.00852461252361536,0.002537644002586603,-0.002911763032898307,-0.06695177406072617,-0.01821047067642212,-0.06176904961466789,-0.11204415559768677,0.0017028795555233955,0.03307287022471428,0.0023933809716254473,0.006680190097540617,-0.006030301563441753,0.027087882161140442,-0.013091333210468292,0.14505085349082947,-0.0804871991276741,0.02685019187629223,-3.755367217195271e-8,0.019651200622320175,-0.08359338343143463,-0.05415636673569679,0.038736507296562195,0.06629302352666855,-0.08092280477285385,-0.06345167756080627,-0.033195387572050095,0.03340819850564003,0.03802207484841347,-0.042480263859033585,-0.016379836946725845,-0.02448328398168087,0.005996176041662693,0.028293533250689507,0.10150443762540817,0.025357751175761223,0.06684360653162003,0.024212384596467018,-0.012508312240242958,0.07120154052972794,-0.0584731288254261,-0.0712798535823822,-0.007086588069796562,-0.011654102243483067,-0.009589627385139465,0.08340252935886383,-0.007591760717332363,-0.05723746865987778,-0.05481681600213051,-0.054289426654577255,0.022024668753147125,-0.023199470713734627,-0.06339625269174576,-0.047467272728681564,0.06459702551364899,0.04533236846327782,0.042408090084791183,0.01845644973218441,-0.006227536126971245,0.052400264889001846,0.051203951239585876,-0.046859920024871826,0.006610645446926355,0.055783096700906754,-0.01775897666811943,0.004417153540998697,-0.05423933267593384,0.048936877399683,-0.043006762862205505,-0.05290686711668968,0.040740352123975754,0.07811687886714935,0.019110331311821938,0.038574717938899994,0.006195160560309887,0.07568719238042831,-0.020809002220630646,-0.0801946148276329,-0.062113285064697266,0.055242713540792465,0.004037792794406414,0.02454671822488308,-0.028235794976353645]},{"text":"Exegi monumentum aere perennius Regalique situ pyramidum altius, Quod non imber edax, non Aquilo impotens Possit diruere aut innumerabilis Annorum series et fuga temporum. 5 Non omnis moriar, multaque pars mei Vitabit Libitinam: usque ego postera Crescam laude recens, dum Capitolium Scandet cum tacita virgine pontifex.","book":"Homage to Catalonia","chapter":24,"embedding":[-0.014488120563328266,0.06177545338869095,-0.031809840351343155,-0.024840377271175385,-0.11309207230806351,0.006142986472696066,0.009864459745585918,0.08728314936161041,0.03421056643128395,0.04904071241617203,0.011489025317132473,-0.09279204905033112,-0.01203728374093771,-0.060857586562633514,-0.09307929873466492,-0.06360524892807007,-0.001239449018612504,0.09255903214216232,0.022175239399075508,0.10764685273170471,0.07541555911302567,-0.04381424933671951,0.010954616591334343,0.06760654598474503,-0.011668220162391663,0.03455635905265808,-0.07488861680030823,0.029776815325021744,0.04000849649310112,-0.11160631477832794,-0.019542613998055458,0.06807678192853928,0.07675091177225113,-0.04417579993605614,0.09327434003353119,0.0006033916724845767,-0.021376067772507668,-0.03856680542230606,0.04942396655678749,0.0157670546323061,-0.033937789499759674,-0.013433517888188362,-0.016517389565706253,0.0027010319754481316,-0.030631378293037415,0.02021884173154831,-0.005579905118793249,0.04066533222794533,-0.008460762910544872,-0.021654818207025528,-0.04507894814014435,-0.011222071014344692,-0.03803304582834244,-0.028601471334695816,-0.0403485931456089,-0.018590357154607773,0.001774038770236075,-0.09181344509124756,0.03275579214096069,-0.007656161207705736,0.020549321547150612,0.09326328337192535,-0.0056219263933598995,-0.015126005746424198,-0.02520124241709709,0.007876979187130928,-0.007894646376371384,-0.00836427602916956,-0.035449787974357605,-0.02250777557492256,0.18468667566776276,-0.04708482697606087,-0.011569010093808174,-0.014023399911820889,-0.06527366489171982,0.022780699655413628,0.008465427905321121,-0.02758335880935192,-0.0529119111597538,-0.05782049894332886,-0.039253126829862595,0.011831008829176426,-0.004413655959069729,-0.0055658454075455666,-0.008428588509559631,-0.026671569794416428,-0.034317225217819214,0.00007307726627914235,0.032932642847299576,-0.023451972752809525,-0.0032477970235049725,0.01326523907482624,-0.06697012484073639,0.013375639915466309,0.02266661822795868,0.002934143180027604,-0.07234098017215729,-0.008446627296507359,-0.0065978216007351875,0.009948089718818665,0.02412615343928337,0.019599083811044693,-0.018191467970609665,0.01960918866097927,-0.13489414751529694,-0.08792444318532944,-0.014812838286161423,-0.026418594643473625,0.02753141149878502,0.0024650723207741976,-0.08785700052976608,-0.08667472004890442,0.020824098959565163,-0.05048983544111252,-0.04015738517045975,-0.023093150928616524,0.0198578629642725,-0.10930638760328293,0.007404683157801628,-0.0510820634663105,0.049992192536592484,0.019862882792949677,0.06439334899187088,0.03574063628911972,-0.01650157943367958,-0.07608426362276077,0.0429101325571537,2.204518138238684e-32,-0.04750475659966469,-0.07660165429115295,0.021116791293025017,0.07497105747461319,-0.007401184178888798,-0.022682776674628258,-0.07232186943292618,-0.03710830584168434,0.0008332583238370717,-0.04139826446771622,-0.051649194210767746,0.02893749251961708,-0.009742485359311104,0.06927155703306198,-0.027403105050325394,0.004142044577747583,0.11067461967468262,-0.0589633584022522,-0.0006429339991882443,-0.02967151440680027,-0.045771967619657516,0.04846084862947464,0.04130933806300163,0.009068039245903492,0.02798372134566307,0.08082955330610275,0.03653324395418167,-0.014204331673681736,-0.09376011043787003,0.0465049110352993,0.08209901303052902,-0.0822645053267479,-0.02770260162651539,-0.07190154492855072,0.02732671983540058,0.04009713977575302,0.02328076958656311,-0.011923903599381447,-0.04220960661768913,0.026775088161230087,0.009424258954823017,0.014062898233532906,0.0392339751124382,0.042590271681547165,0.03977876529097557,0.08800423890352249,0.11572643369436264,0.05568358302116394,0.10957152396440506,-0.0109506044536829,0.023382816463708878,0.04313921183347702,-0.09263324737548828,-0.037700068205595016,-0.03673217073082924,-0.003964073024690151,-0.09450970590114594,0.07356420159339905,-0.01805686019361019,-0.06172570586204529,0.053584083914756775,0.012398896738886833,-0.08452153950929642,-0.020948808640241623,-0.018269231542944908,0.009164487943053246,-0.09404869377613068,0.0155649958178401,0.10329458117485046,-0.005202555097639561,-0.08093228191137314,-0.018762024119496346,0.011688201688230038,0.06920788437128067,-0.014813964255154133,0.10134916752576828,0.010426451452076435,-0.04353858903050423,-0.08874420821666718,0.006228357087820768,-0.07650937139987946,-0.020783012732863426,0.028812717646360397,0.005826655775308609,0.09745652228593826,0.014469355344772339,0.05554160103201866,0.058007095009088516,0.04728642478585243,0.051362719386816025,0.015660494565963745,-0.013772244565188885,0.019573036581277847,0.00689330929890275,-0.011300548911094666,-2.0973671261838292e-32,-0.020447449758648872,-0.056717000901699066,-0.06076963245868683,0.050555285066366196,0.012404668144881725,0.024928364902734756,-0.16579896211624146,0.04269293323159218,-0.039527617394924164,-0.031353533267974854,-0.0635453537106514,-0.02724931202828884,0.11240480095148087,-0.061027634888887405,0.005879036616533995,0.04201894998550415,0.04774527996778488,-0.012389288283884525,-0.04686393216252327,0.005043529439717531,-0.051638755947351456,0.05962997302412987,-0.010276379995048046,-0.09965396672487259,-0.06594055145978928,0.055445048958063126,-0.034896742552518845,-0.03507501631975174,-0.011131773702800274,0.00061252829618752,0.017496848478913307,-0.005206033121794462,-0.012225467711687088,0.05264492705464363,-0.01875237375497818,-0.015584710985422134,0.11742687225341797,-0.06545671820640564,-0.014460125006735325,0.04784320294857025,-0.053436167538166046,0.07061804831027985,0.08452214300632477,-0.00048486629384569824,0.0329664908349514,-0.07895459979772568,-0.08462399244308472,-0.032595012336969376,-0.03399331122636795,0.07880013436079025,0.03192292898893356,-0.0341518260538578,0.016802405938506126,-0.05036076530814171,0.04196548089385033,-0.0756135880947113,-0.06509792804718018,0.016818901523947716,0.0021646132227033377,0.02425689436495304,0.1015186458826065,0.03399185463786125,-0.0033463065046817064,-0.03234026953577995,0.09165848046541214,0.0007465779781341553,-0.011754797771573067,0.0777786523103714,-0.10650183260440826,0.07114671170711517,0.04983660206198692,-0.0240557212382555,-0.0853525698184967,-0.023798462003469467,0.020319603383541107,0.06879058480262756,-0.019825855270028114,0.07381608337163925,0.05475911125540733,-0.021635783836245537,-0.0420684814453125,-0.05944789946079254,-0.01923450641334057,-0.009923074394464493,0.01637704111635685,-0.005840100813657045,-0.0024540952872484922,-0.04454244300723076,0.024287687614560127,-0.03411468118429184,-0.011150178499519825,-0.05225294455885887,0.03792455047369003,-0.022260630503296852,0.0631345734000206,-6.718671130556686e-8,0.007850224152207375,-0.037337202578783035,-0.050142429769039154,-0.010650990530848503,0.0006193331209942698,-0.1426369994878769,-0.01382442656904459,0.02307428978383541,-0.037155769765377045,0.0348520465195179,-0.0030498714186251163,0.01194416917860508,-0.028741082176566124,0.024297624826431274,0.004125245846807957,-0.007117846515029669,0.042553361505270004,0.04797926917672157,-0.046060238033533096,-0.04946247115731239,0.06052245572209358,-0.012321731075644493,-0.02857574261724949,-0.0688302218914032,-0.10166427493095398,-0.00946518313139677,0.04952476918697357,-0.08431603759527206,0.002267636824399233,-0.030113287270069122,0.04737507179379463,0.08975192159414291,0.013266726396977901,-0.09611295908689499,-0.05390496924519539,0.07806379348039627,0.017604436725378036,0.02012341096997261,-0.0866391733288765,0.0399017408490181,0.07992804795503616,-0.09175515919923782,0.04188856855034828,-0.02788235805928707,0.03144568204879761,0.003839311422780156,0.036820217967033386,0.030957644805312157,-0.00781252235174179,-0.05608329176902771,-0.009439227171242237,0.05011419951915741,0.04458363726735115,0.03726436570286751,-0.07185276597738266,-0.005210496485233307,0.058469969779253006,0.04489517584443092,0.040278833359479904,-0.014169776812195778,0.07076337188482285,-0.015007982961833477,0.000007741992703813594,-0.035797927528619766]},{"text":"Sume superbiam Quaesitam meritis et mihi Delphica 15 Lauro cinge volens, Melpomene, comam.","book":"Homage to Catalonia","chapter":24,"embedding":[-0.06556230038404465,0.0950806587934494,0.035340338945388794,-0.05165073275566101,-0.08898749202489853,0.045883357524871826,0.08392970263957977,0.12351300567388535,-0.0023883997928351164,0.08963474631309509,0.00795407872647047,-0.10800118744373322,-0.0030818346422165632,-0.012340277433395386,-0.06654485315084457,-0.021031565964221954,0.006531067192554474,0.07235830277204514,-0.04225859418511391,0.05219557136297226,0.04822526499629021,-0.03719576075673103,-0.07653229683637619,0.05926290899515152,-0.009724698029458523,0.05042590945959091,-0.025399992242455482,0.008434413932263851,0.011153751984238625,-0.030122755095362663,0.04728570207953453,0.06149319186806679,0.11854221671819687,-0.05777435749769211,0.01942398212850094,0.029910150915384293,-0.007945139892399311,-0.08877339214086533,0.005470555275678635,0.013005676679313183,-0.06072481349110603,0.03668568655848503,-0.05272672325372696,-0.08106131851673126,0.007589160464704037,-0.021161124110221863,-0.029065344482660294,0.001078115776181221,-0.015007354319095612,0.008011053316295147,-0.09700094908475876,-0.0097867576405406,0.027398956939578056,0.10294119268655777,-0.031535204499959946,-0.08209884166717529,0.044777050614356995,-0.02719172090291977,-0.026451105251908302,-0.03577166050672531,-0.02662518434226513,0.022228429093956947,-0.007499676197767258,-0.017176739871501923,0.06753169000148773,-0.03918837755918503,-0.054829180240631104,-0.028878983110189438,-0.07125597447156906,-0.013725273311138153,0.10016675293445587,-0.06478667259216309,0.03828778117895126,-0.007127183955162764,-0.07372790575027466,0.0908045843243599,0.010305695235729218,-0.040823984891176224,-0.06814827769994736,-0.06154652312397957,-0.00621095160022378,0.0022405132185667753,-0.011173881590366364,-0.04614460468292236,0.031380847096443176,0.01186194084584713,-0.00017609646602068096,-0.06381113082170486,0.06979546695947647,0.06033308058977127,0.02243259735405445,0.08410385251045227,-0.05392136052250862,-0.003510120091959834,0.03484193980693817,0.033706407994031906,-0.06674326956272125,-0.06866175681352615,0.021999549120664597,0.0940801203250885,0.047847118228673935,-0.00252607767470181,-0.03766646608710289,0.032716814428567886,-0.1154521107673645,-0.05793921649456024,0.031897980719804764,-0.07454176992177963,0.003212840063497424,-0.006993937771767378,-0.0012895552208647132,-0.08641915023326874,-0.02387273870408535,-0.05011070519685745,-0.027372362092137337,0.03871099278330803,0.05258572846651077,0.02919282391667366,0.029272934421896935,-0.06556028872728348,0.07390061020851135,-0.09368688613176346,-0.021691719070076942,-0.060014620423316956,-0.013773927465081215,-0.02801736257970333,0.01809343881905079,9.310721941510769e-33,-0.024518348276615143,-0.08425118774175644,-0.009256988763809204,0.041656143963336945,0.03291744366288185,0.005933037493377924,-0.03652046620845795,-0.008604057133197784,0.028511477634310722,-0.14288701117038727,-0.025309737771749496,0.059058740735054016,-0.007736413273960352,-0.07057338207960129,0.007688385900110006,0.011216124519705772,0.044134076684713364,-0.05529795214533806,0.019663002341985703,-0.06710954010486603,0.020363641902804375,-0.04900623485445976,0.038631610572338104,-0.0003110867110081017,0.03349784016609192,-0.011084482073783875,0.0857696458697319,-0.05019411817193031,-0.10567957162857056,0.05840287730097771,0.021581511944532394,0.011254389770328999,-0.01347772590816021,0.022023042663931847,-0.008731100708246231,0.04028856381773949,-0.031696442514657974,-0.007917338982224464,-0.010967176407575607,0.000479123234981671,0.009203740395605564,-0.026860659942030907,0.06873925775289536,0.013295838609337807,0.04921498894691467,0.013326524756848812,-0.01410859078168869,0.055740196257829666,0.09267176687717438,0.05566360801458359,-0.029305776581168175,-0.04754527285695076,-0.05069766938686371,-0.06508595496416092,-0.02809285931289196,0.04925334453582764,-0.12077721953392029,0.07803267985582352,-0.03260551020503044,-0.047756586223840714,-0.016020525246858597,0.04545750841498375,-0.054886043071746826,0.03540896996855736,-0.020284656435251236,-0.015733366832137108,-0.023690974339842796,0.027283374220132828,0.09343119710683823,0.024292591959238052,-0.038104087114334106,-0.004816766362637281,0.017507782205939293,0.1038273423910141,-0.03288589045405388,-0.025727568194270134,0.03252045810222626,0.050887055695056915,-0.03500855714082718,0.04506750404834747,-0.04516326263546944,0.004017938859760761,-0.05321497470140457,-0.0013014026917517185,-0.005455383099615574,0.052328597754240036,0.03114723227918148,0.018852058798074722,0.07756716012954712,-0.035705674439668655,0.11221583187580109,0.013456743210554123,0.04283444210886955,0.020750127732753754,-0.0781572088599205,-1.020805759473004e-32,0.03747997805476189,0.022229066118597984,-0.08103373646736145,0.048961296677589417,0.04203538969159126,-0.011254394426941872,-0.13949599862098694,-0.011759068816900253,-0.11312779039144516,-0.01324445940554142,-0.05236019939184189,-0.0458519347012043,0.047477759420871735,0.01072451937943697,-0.06477606296539307,0.0059864092618227005,0.06451480835676193,-0.025093091651797295,-0.06213177740573883,-0.02139950543642044,-0.007787092123180628,0.020467499271035194,-0.015199115499854088,-0.05609818920493126,-0.009849104098975658,-0.021872106939554214,-0.026935115456581116,0.006769827101379633,-0.06406865268945694,0.07757747173309326,0.05426686629652977,0.02697686292231083,-0.056390874087810516,-0.013145357370376587,0.0520060658454895,-0.009182573296129704,0.14126825332641602,-0.02947649173438549,0.035207878798246384,0.09870951622724533,-0.0719989612698555,0.0335380993783474,0.09607034921646118,0.01718442514538765,-0.01775377243757248,0.0385730043053627,-0.00759538309648633,-0.04584773629903793,-0.02027294784784317,-0.030741171911358833,0.0789259821176529,-0.030106384307146072,-0.0025333387311547995,-0.03498014807701111,0.0029038297943770885,-0.03632557764649391,0.012899350374937057,-0.013737708330154419,-0.02785964123904705,0.00862863752990961,0.044592007994651794,0.042517565190792084,-0.01913241669535637,0.021133940666913986,0.026240605860948563,0.014537285082042217,0.0019003675552085042,-0.06923876702785492,0.006843362469226122,0.04384969174861908,-0.0032628492917865515,-0.1053389459848404,0.028148073703050613,-0.011775120161473751,-0.07136505097150803,0.05702509358525276,0.03019692748785019,0.0556141622364521,-0.0029892404563724995,-0.03690190240740776,0.0410955548286438,-0.05751806125044823,0.0019915292505174875,-0.03660264611244202,-0.024655567482113838,-0.060202717781066895,-0.04129311442375183,-0.005146115552634001,0.0009588311077095568,0.04511621221899986,-0.055357471108436584,0.007393228821456432,0.07733940333127975,-0.05510682985186577,0.043538205325603485,-4.111709017706744e-8,0.027035487815737724,-0.09117275476455688,-0.09756319224834442,0.04646807909011841,0.011641153134405613,-0.04219784960150719,-0.051238372921943665,0.009105702862143517,0.01875895820558071,0.06173060089349747,-0.05561540275812149,-0.002318544080480933,-0.05491481348872185,0.07408863306045532,0.04617978259921074,0.007813841104507446,0.08801545947790146,0.06392334401607513,-0.027799667790532112,-0.008211983367800713,0.08137638121843338,-0.0418676994740963,-0.04627031087875366,-0.07702398300170898,-0.025464922189712524,0.059701841324567795,-0.028977714478969574,-0.043447308242321014,-0.08505551517009735,0.01758580282330513,0.032680630683898926,0.12413440644741058,0.04995343089103699,-0.044530533254146576,-0.03691857308149338,0.11540066450834274,-0.025182660669088364,0.015591906383633614,-0.05912116542458534,-0.0010832020780071616,0.014379657804965973,0.10087184607982635,-0.0050184098072350025,-0.02175169810652733,0.04520854726433754,-0.09736046195030212,-0.02544286474585533,0.09676140546798706,-0.07501049339771271,0.03183799609541893,-0.012972583062946796,0.009753220714628696,0.06806764006614685,0.029439261183142662,-0.005501926876604557,-0.01820775866508484,0.07489795982837677,-0.01556436624377966,-0.05221998691558838,-0.005944644100964069,0.12613126635551453,0.009423203766345978,0.006818327587097883,-0.038434673100709915]},{"text":"Non sum qualis eram bonae Sub regno Cinarae.","book":"Homage to Catalonia","chapter":24,"embedding":[-0.04385589063167572,0.05067162215709686,-0.020235076546669006,-0.042336560785770416,-0.10453572124242783,0.017566928640007973,0.06888481229543686,0.06667353212833405,0.08214960992336273,0.03022938407957554,0.007600442040711641,-0.09255442023277283,-0.001911668456159532,-0.06100721284747124,-0.11678599566221237,-0.02872014418244362,-0.009424860589206219,0.09038203209638596,0.04267195239663124,-0.06519442796707153,0.0004876603779848665,-0.017758585512638092,-0.014223297126591206,0.03355119377374649,-0.017864063382148743,-0.008630934171378613,-0.05835398659110069,0.12248997390270233,0.09075534343719482,0.026691006496548653,-0.04574921727180481,0.0749630481004715,0.05462830886244774,-0.0193414855748415,0.05556443706154823,-0.07441268861293793,-0.04405307397246361,-0.05846986919641495,0.009800407104194164,0.03255763277411461,-0.08662106841802597,0.009566064924001694,-0.04856972023844719,-0.026404669508337975,-0.0030174683779478073,-0.022457122802734375,-0.06873957812786102,0.05668782815337181,-0.030971527099609375,-0.08878965675830841,-0.037692900747060776,-0.06977885216474533,-0.03059040941298008,0.10623306781053543,0.00875832699239254,-0.02604919672012329,-0.05025848373770714,-0.009200104512274265,0.033643972128629684,-0.09949763864278793,0.03519359976053238,-0.01418815553188324,-0.04560934752225876,-0.04726119711995125,-0.03479862958192825,0.05122709274291992,-0.009918082505464554,0.028428440913558006,-0.03101302683353424,0.040511831641197205,0.019892457872629166,0.014357279054820538,-0.012339891865849495,0.0669507384300232,-0.043283939361572266,0.043861765414476395,-0.014270355924963951,-0.001228055451065302,-0.044968679547309875,-0.0909329503774643,0.02721659652888775,0.03807817026972771,-0.017085522413253784,0.019749252125620842,0.062181249260902405,0.05414452403783798,-0.015827162191271782,0.001031257794238627,0.015248136594891548,-0.0712425634264946,-0.01818029396235943,0.03948204964399338,-0.03513353690505028,-0.045540936291217804,-0.009569688700139523,0.005226876586675644,0.010897654108703136,0.005917060654610395,0.0724189281463623,0.06695254147052765,0.10430467128753662,0.07725803554058075,-0.025276673957705498,0.00030070863431319594,-0.10045044124126434,0.007042647339403629,0.05025842785835266,0.008916616439819336,-0.007604153826832771,0.09215356409549713,0.013357150368392467,-0.11255693435668945,-0.07931958138942719,-0.10778194665908813,-0.023970145732164383,0.006812860257923603,0.11880479007959366,-0.033764030784368515,-0.012294434010982513,-0.0399014949798584,0.03844579681754112,-0.032280176877975464,0.02459164522588253,-0.018822113052010536,0.0466148667037487,0.02295685186982155,-0.017123613506555557,3.191565242792407e-33,-0.04784451425075531,-0.0649661272764206,-0.02522115968167782,-0.011390119791030884,0.05159878730773926,0.02233053930103779,-0.029794661328196526,-0.006083558313548565,-0.005465292371809483,-0.010087497532367706,-0.046198759227991104,0.01891079545021057,-0.022319326177239418,-0.10668911784887314,0.12700533866882324,-0.006503907032310963,0.06227186694741249,-0.09164916723966599,0.024764716625213623,-0.017770707607269287,-0.00956741999834776,0.0009648965205997229,0.023722177371382713,0.07458826154470444,0.04060022905468941,-0.03661509230732918,0.015759583562612534,-0.02951759658753872,-0.05933963134884834,0.027576258406043053,0.03931659832596779,0.07568512856960297,-0.011197597719728947,-0.05039628967642784,0.03991369158029556,-0.02503301575779915,0.007207036484032869,0.045998312532901764,-0.021367108449339867,0.059529539197683334,0.02805294096469879,-0.00966185424476862,0.08685234189033508,-0.08791135996580124,0.06338445842266083,-0.0617123544216156,0.03500756621360779,0.04420974478125572,0.0437956303358078,-0.00442354055121541,-0.0006067471695132554,0.01870901696383953,-0.07196235656738281,-0.00267681572586298,-0.07236049324274063,0.0366593673825264,-0.036200620234012604,0.013186899945139885,-0.013968098908662796,-0.026104861870408058,-0.055045235902071,-0.007622093427926302,-0.03541865572333336,0.0697811022400856,-0.10097580403089523,0.05420392379164696,-0.06328637152910233,-0.011066276580095291,0.04450410231947899,0.05248485133051872,-0.025140652433037758,-0.03331182524561882,-0.051988635212183,0.11067397892475128,-0.004080743994563818,-0.0026054515037685633,0.017584891989827156,0.07394958287477493,-0.11023081094026566,0.058324094861745834,-0.007108563557267189,-0.05833996832370758,-0.01778983511030674,0.03193233534693718,0.04846179857850075,0.03179756551980972,0.01075174193829298,0.04570676386356354,0.12583456933498383,0.03651075065135956,0.06012074649333954,-0.026180913671851158,0.003891274333000183,0.020715730264782906,0.002037534723058343,-2.6139745222433604e-33,0.04082689434289932,0.014934070408344269,-0.1117866188287735,-0.028349829837679863,-0.003712523728609085,0.027095599099993706,-0.10693759471178055,0.04589959606528282,0.0013055066810920835,0.007540353108197451,0.033118538558483124,-0.019301312044262886,0.032099414616823196,-0.012215251103043556,-0.05451326444745064,0.03429053723812103,-0.012677879072725773,-0.011456670239567757,0.019895432516932487,0.006730685941874981,-0.03483595326542854,-0.01620747707784176,0.024937333539128304,-0.005238400772213936,-0.05094059184193611,0.02394532598555088,0.007765734568238258,0.09512905031442642,-0.06732703745365143,-0.02462358959019184,0.08114985376596451,-0.0700187161564827,0.013927997089922428,-0.046842627227306366,0.016103360801935196,-0.025331759825348854,0.12108498066663742,0.07715817540884018,0.020528074353933334,0.020421050488948822,-0.007777287624776363,0.01197771355509758,0.09675788134336472,0.052541252225637436,0.008151059038937092,0.007408925332129002,0.025584129616618156,-0.12046460807323456,-0.13266624510288239,-0.016306646168231964,0.038711804896593094,-0.035181399434804916,0.015838192775845528,0.006361762993037701,0.074924997985363,0.012108984403312206,-0.044917043298482895,0.02784750610589981,-0.03506907820701599,-0.005080969538539648,0.047333043068647385,0.023420877754688263,-0.10053306818008423,-0.0067393481731414795,0.16654859483242035,-0.04670611023902893,-0.0871640294790268,0.03541367128491402,-0.015645142644643784,0.006789007224142551,-0.00006427775952033699,-0.039142441004514694,-0.05335872620344162,-0.02088182419538498,-0.05162602663040161,-0.007831282913684845,0.0005037467926740646,0.06368576735258102,0.04299456253647804,0.023733921349048615,-0.054304927587509155,-0.028768515214323997,-0.008930728770792484,0.0022516679018735886,-0.07003719359636307,-0.028651591390371323,-0.02237984538078308,0.042350903153419495,-0.06835319846868515,0.0053257099352777,0.007589380722492933,0.03953343257308006,0.087012879550457,-0.05630343407392502,0.05708836391568184,-2.1370553326960362e-8,0.03072022832930088,-0.07494066655635834,-0.06734752655029297,0.06164374202489853,0.06709527969360352,-0.12187864631414413,-0.001847815583460033,-0.028538331389427185,-0.001498896861448884,0.11284872144460678,-0.057927027344703674,0.022673742845654488,-0.01931195706129074,0.03889164328575134,-0.01854776404798031,0.10654585063457489,0.08122994750738144,0.051171209663152695,-0.021061167120933533,-0.028943300247192383,0.044097863137722015,-0.01049849297851324,-0.03275243192911148,-0.08568745851516724,-0.0433465801179409,-0.0008374507306143641,0.01911357417702675,-0.09994270652532578,-0.060993220657110214,0.0026530527975410223,-0.015561044216156006,0.10324753820896149,-0.00007836220174795017,-0.0025914388243108988,-0.06419304013252258,0.029295284301042557,0.02310190722346306,-0.004705407656729221,-0.05693049728870392,-0.031705670058727264,0.07766108959913254,0.009910830296576023,0.010197184048593044,-0.022467849776148796,0.06059321388602257,-0.07100309431552887,0.01926437020301819,-0.015954269096255302,0.028231270611286163,0.019398638978600502,0.05674882233142853,0.025617195293307304,0.08324325084686279,0.03608996793627739,-0.021702958270907402,-0.049919672310352325,0.05381026491522789,0.02497289516031742,0.019792811945080757,-0.0029066032730042934,0.08932811766862869,0.0008121426799334586,0.027504118159413338,0.02047850377857685]},{"text":"Tempestivius in domum Paulli, purpureis ales oloribus, 10 Comissabere Maximi, Si torrere iecur quaeris idoneum.","book":"Homage to Catalonia","chapter":24,"embedding":[-0.026921521872282028,0.0351732075214386,0.010390513576567173,-0.012584921903908253,-0.0922931432723999,0.008783578872680664,0.055364158004522324,0.06173362582921982,-0.029300490394234657,-0.01362595334649086,0.051724594086408615,-0.0775105208158493,0.04030867666006088,-0.028435152024030685,-0.06203664094209671,-0.09538375586271286,-0.022637614980340004,0.047004520893096924,-0.09119878709316254,0.010329260490834713,0.1108672171831131,0.00795599352568388,-0.0627252534031868,-0.009103965945541859,-0.0450635701417923,0.08987455815076828,-0.05075960233807564,-0.041557785123586655,0.04522094875574112,-0.0736439898610115,-0.04242900758981705,0.07571008801460266,0.02089267037808895,-0.04933887720108032,0.052844028919935226,0.020812829956412315,-0.041892703622579575,-0.04244836047291756,0.04520914703607559,0.008443714119493961,0.007645383942872286,-0.07201125472784042,-0.001654918072745204,0.04379699006676674,-0.05141199007630348,0.009285269305109978,0.0137195298448205,0.040705304592847824,-0.004572524689137936,0.03675299510359764,-0.1380911022424698,0.0015797881642356515,-0.009126733988523483,0.0893164798617363,-0.050461672246456146,-0.029907407239079475,0.037243615835905075,-0.05784312263131142,0.047854628413915634,-0.0583961196243763,0.01842392608523369,0.07346229255199432,-0.0004297130508348346,0.03780083730816841,0.006527918390929699,-0.0019807815551757812,-0.021638160571455956,0.009707946330308914,-0.06066300719976425,-0.040060363709926605,0.15347041189670563,-0.003377659013494849,0.06095896288752556,0.059003449976444244,-0.0080669354647398,0.030030054971575737,-0.053422778844833374,-0.08263959735631943,-0.04570212960243225,-0.0017643371829763055,-0.004846070893108845,-0.02091401442885399,-0.009460201486945152,0.01732676289975643,-0.062073927372694016,0.031186990439891815,-0.010496720671653748,-0.024252403527498245,0.028536571189761162,-0.012076225131750107,-0.0018640953348949552,0.020912960171699524,-0.03994790092110634,-0.055329084396362305,0.028856152668595314,0.03408100828528404,0.0023500833194702864,-0.0484318807721138,0.029529951512813568,-0.0037927303928881884,-0.03661314770579338,-0.02167695201933384,-0.04588955640792847,0.10904017090797424,-0.11533945798873901,-0.09413378685712814,-0.012934085913002491,-0.09728454798460007,-0.036168236285448074,-0.02019241824746132,-0.07215876132249832,-0.03616415709257126,-0.030246032401919365,-0.11916262656450272,0.0506851002573967,0.02237468957901001,0.04736291989684105,-0.0011074625654146075,-0.029956229031085968,-0.05265581235289574,0.0808858722448349,-0.08677411824464798,0.003558678785338998,0.03518017381429672,0.01916581578552723,0.006018972024321556,0.10684522986412048,9.613698263595521e-33,-0.025964584201574326,-0.023190893232822418,0.0238967128098011,0.05381753295660019,0.049334730952978134,-0.0483158603310585,-0.06364182382822037,-0.0129798399284482,-0.006089546252042055,-0.05638515576720238,-0.11515740305185318,0.062214773148298264,-0.06277237087488174,0.016358450055122375,0.007235859055072069,0.003724218113347888,0.06339879333972931,-0.047734808176755905,-0.013399103656411171,-0.057405516505241394,0.003991240169852972,0.02801818959414959,-0.0028369168285280466,0.0018244212260469794,-0.03224170580506325,0.05991721525788307,0.0411377027630806,-0.0539310947060585,-0.029563860967755318,0.04146599397063255,0.1274445652961731,0.04505124315619469,-0.026820948347449303,0.023431487381458282,-0.009815016761422157,0.044506777077913284,-0.09265907853841782,0.01861293986439705,-0.03242906928062439,0.0029187696054577827,-0.079849012196064,-0.006685349624603987,0.034226641058921814,0.03379763662815094,0.06489206105470657,-0.03307626023888588,-0.01200039777904749,0.0007582301623187959,0.11169188469648361,-0.03775705024600029,0.02315213531255722,0.033526867628097534,-0.05714495852589607,-0.051824573427438736,0.05252514034509659,0.05120924115180969,0.01700982078909874,0.002253931714221835,-0.06941334903240204,0.019495246931910515,-0.00640606414526701,-0.012509847991168499,0.04720146581530571,-0.0058543193154037,0.03447985649108887,0.03521907702088356,-0.049813639372587204,-0.03263108804821968,0.11524059623479843,-0.025703104212880135,-0.12389343231916428,-0.016453448683023453,-0.03772860765457153,0.07230103760957718,0.019132278859615326,0.019122755154967308,-0.00964962225407362,-0.001509235706180334,-0.023782454431056976,-0.04252712056040764,-0.17441849410533905,-0.024197543039917946,0.029447296634316444,0.08252153545618057,0.05068531632423401,-0.03781799226999283,-0.025770584121346474,0.041982848197221756,0.03965276479721069,0.03671867400407791,0.04342851787805557,0.02971477434039116,0.030495228245854378,0.020664747804403305,-0.01492528710514307,-1.1894159508242666e-32,0.013749882578849792,-0.0628008097410202,-0.11104803532361984,0.05312155559659004,-0.005275052972137928,0.05128921940922737,-0.07870655506849289,0.13997218012809753,-0.01848083920776844,0.03242145851254463,-0.05065309628844261,0.03414341062307358,0.02318786270916462,-0.01573764905333519,-0.03483160212635994,0.08536583930253983,0.138299360871315,0.04392450675368309,-0.01575983688235283,0.031791482120752335,-0.04737526923418045,0.0008586071198806167,-0.011618755757808685,-0.10547342896461487,0.021309277042746544,0.002575024962425232,0.04338495060801506,-0.05198207497596741,-0.07632829993963242,-0.050787653774023056,0.021248063072562218,0.019650576636195183,-0.01457604207098484,0.036084964871406555,-0.028525637462735176,0.04964176192879677,0.1516481637954712,-0.05614287406206131,-0.04340601712465286,-0.030031951144337654,-0.01753971166908741,0.04168199375271797,0.1041238009929657,0.05546065792441368,0.027900809422135353,-0.01443230640143156,-0.031106172129511833,-0.0034431780222803354,-0.07840826362371445,0.05542457848787308,0.06757397204637527,-0.011127120815217495,0.025853287428617477,-0.035610608756542206,0.1127522885799408,-0.030688831582665443,-0.01125533226877451,-0.03017127700150013,-0.0354694165289402,-0.009752646088600159,0.07945074886083603,0.025181731209158897,-0.054860275238752365,0.025779101997613907,0.0256081223487854,0.0027394071221351624,-0.03753421828150749,0.05368664115667343,-0.040922366082668304,-0.00027451530331745744,0.07340963184833527,-0.08442676812410355,-0.07539194822311401,-0.02276201918721199,-0.03803836554288864,-0.020960479974746704,-0.006333652883768082,0.02006528154015541,-0.032417282462120056,-0.024796726182103157,-0.008795703761279583,0.017139187082648277,-0.049548257142305374,0.008216630667448044,-0.010064937174320221,-0.06022417172789574,0.14991438388824463,0.0017752222483977675,0.03303663060069084,0.031709831207990646,-0.04288594052195549,0.016463588923215866,-0.045152660459280014,-0.09673646837472916,0.0865015983581543,-4.6378413998127144e-8,0.02723858132958412,-0.0064813923090696335,-0.06574691832065582,0.004110682290047407,0.037059735506772995,-0.045669227838516235,-0.013198977336287498,0.058816492557525635,0.009823370724916458,-0.016811132431030273,-0.023429684340953827,0.01661156862974167,0.05371461063623428,-0.010069924406707287,0.024043139070272446,-0.021870378404855728,0.021802993491292,-0.004051125142723322,-0.048584338277578354,-0.01443826500326395,0.04743735119700432,-0.001043578959070146,-0.01963168755173683,-0.05954618379473686,-0.052513305097818375,-0.0005583218298852444,0.04218437895178795,-0.13133881986141205,-0.00042665403452701867,-0.026449980214238167,-0.01198876928538084,0.035553939640522,-0.011779243126511574,-0.06639162451028824,-0.060058966279029846,0.1273762583732605,0.005750913172960281,-0.013262602500617504,0.029785700142383575,-0.06240058317780495,-0.01200661901384592,-0.006602822337299585,0.010418659076094627,-0.038083888590335846,0.09764577448368073,0.018218792974948883,-0.06337442994117737,-0.026149481534957886,0.006247670389711857,0.008026888594031334,-0.08284103870391846,0.014376630075275898,0.09216072410345078,-0.005510413553565741,-0.031398843973875046,-0.027984168380498886,0.006089739967137575,0.018098628148436546,-0.04527077078819275,-0.006438512355089188,0.047854818403720856,0.08540355414152145,-0.0029893151950091124,0.015011186711490154]},{"text":"Me nec femina nec puer Iam nec spes animi credula mutui, 30 Nec certare iuvat mero Nec vincire novis tempora floribus.","book":"Homage to Catalonia","chapter":24,"embedding":[-0.0254029743373394,-0.03615479916334152,-0.01634831540286541,-0.007035826798528433,-0.05813761427998543,0.000416058290284127,0.04020634666085243,0.1349022537469864,-0.0027175890281796455,0.02730404958128929,0.0022686892189085484,-0.13147953152656555,-0.030312784016132355,0.029995953664183617,-0.017204362899065018,-0.10067709535360336,-0.020456455647945404,0.0335208885371685,-0.012069017626345158,0.03861134499311447,0.010765094310045242,-0.010763752274215221,0.006594613194465637,0.005088855978101492,-0.07985899597406387,0.04250852018594742,-0.03229673579335213,-0.013624407351016998,0.04670948535203934,-0.04161946475505829,0.02408437989652157,0.05284940451383591,0.07256755232810974,-0.041399095207452774,0.014974157325923443,-0.027820702642202377,0.04537319019436836,-0.08724383264780045,0.06363256275653839,0.044036924839019775,-0.08666249364614487,-0.02807433158159256,-0.04127728193998337,0.006191786378622055,-0.010270246304571629,-0.06255222111940384,-0.019399510696530342,0.09507913887500763,0.051707617938518524,0.05240527540445328,-0.08019915223121643,0.034298159182071686,-0.08840780705213547,0.054013293236494064,-0.043377894908189774,-0.040931180119514465,0.005325105041265488,-0.01694984920322895,0.02745332568883896,-0.034129366278648376,-0.07897365838289261,0.03433438390493393,-0.01373553741723299,0.054412782192230225,-0.01185657735913992,-0.031434930860996246,-0.053568460047245026,-0.007591023575514555,-0.07156351953744888,0.0982452929019928,0.03944162651896477,-0.07652214914560318,-0.05195077508687973,0.06396313011646271,-0.07593130320310593,0.029325926676392555,0.02553412690758705,-0.10258521139621735,0.0012209754204377532,0.00405276520177722,-0.033596545457839966,-0.021225349977612495,-0.04446272552013397,-0.02773713879287243,0.03161826357245445,-0.024519288912415504,0.02044258825480938,0.04587571322917938,0.06153081730008125,0.07203865051269531,0.013529190793633461,0.03875108063220978,-0.0551903173327446,0.022462600842118263,0.03644668310880661,0.0575939305126667,-0.05192353203892708,0.09390321373939514,-0.020545998588204384,-0.01350447442382574,-0.01925770193338394,-0.03239591047167778,0.032991956919431686,0.06488644331693649,-0.04457021504640579,0.044186659157276154,-0.019703051075339317,-0.009712008759379387,0.0035769992973655462,0.011033784598112106,-0.053523097187280655,-0.04404798522591591,-0.05464300885796547,-0.14051702618598938,0.03681730851531029,0.04032674431800842,0.04497941583395004,-0.02154783345758915,0.056671932339668274,0.02430872991681099,-0.02538231760263443,0.019775710999965668,-0.0627671331167221,-0.026120103895664215,0.021379834040999413,-0.09790041297674179,0.006541781593114138,1.1930873870238693e-32,-0.06515750288963318,-0.07230660319328308,-0.029402906075119972,0.07676370441913605,-0.05359889194369316,0.006503100041300058,-0.04793016240000725,-0.0033798895310610533,-0.007799256592988968,-0.025740230455994606,-0.0215041171759367,-0.008155833929777145,-0.06964726746082306,0.0017862197710201144,0.030610719695687294,0.035988084971904755,0.09686510264873505,-0.07050103694200516,-0.09510951489210129,0.005612669046968222,0.029640961438417435,-0.029441218823194504,0.0563434436917305,-0.04007185995578766,0.008461793884634972,-0.013728036545217037,-0.06018075346946716,-0.029829779639840126,-0.014031672850251198,0.02093040943145752,0.027169693261384964,0.008603178896009922,-0.00770143698900938,-0.051518749445676804,0.0191285852342844,-0.031211061403155327,0.0353846549987793,-0.011435466818511486,-0.08994387835264206,0.005893586669117212,0.018266193568706512,0.045640233904123306,0.06374286860227585,0.03233305737376213,0.09176870435476303,0.011707011610269547,0.04411083087325096,0.016926299780607224,0.08620352298021317,0.07313176244497299,-0.01630432903766632,-0.025685550644993782,-0.040211502462625504,-0.011879002675414085,0.025679610669612885,0.04174676537513733,-0.05072072520852089,0.06006596237421036,0.044526852667331696,0.008793325163424015,0.0012198667973279953,-0.03240248188376427,0.020899435505270958,0.05137817934155464,0.017957374453544617,-0.08160966634750366,-0.03116152063012123,0.0034876519348472357,0.14529676735401154,0.06623617559671402,-0.09399787336587906,-0.04681577906012535,-0.07431193441152573,0.09660708159208298,0.019484149292111397,-0.01213718019425869,0.0616934597492218,-0.08342555910348892,-0.07343035191297531,-0.04095811769366264,-0.03424983099102974,0.01852147839963436,0.01561218686401844,0.012601540423929691,0.14141041040420532,0.04593911021947861,-0.0474565215408802,0.024616096168756485,0.025744818150997162,-0.026991577818989754,0.016586918383836746,-0.011462262831628323,0.068380206823349,-0.02149045467376709,-0.041832756251096725,-1.1357324462533574e-32,0.0047988551668822765,-0.08905576169490814,-0.0284136813133955,0.13810019195079803,-0.04533160850405693,-0.018095241859555244,-0.052793003618717194,0.0023169214837253094,0.07153855264186859,0.020143548026680946,-0.07139331847429276,-0.06780126690864563,0.04220674932003021,0.008773904293775558,-0.029814353212714195,0.0457763671875,0.06808178126811981,-0.017586642876267433,-0.04333511367440224,0.014424849301576614,-0.05186675116419792,0.09661322087049484,-0.027952738106250763,0.03357236832380295,-0.020849684253335,0.028669169172644615,-0.012563669122755527,-0.0617314949631691,0.01661849208176136,0.03626202791929245,0.04856907203793526,-0.06592212617397308,-0.041002169251441956,0.047597192227840424,-0.05724969878792763,-0.06597138941287994,0.12433938682079315,-0.007090491242706776,-0.034262027591466904,0.003985606133937836,0.03523367643356323,0.1051032692193985,0.030008595436811447,0.024984201416373253,-0.0724991112947464,-0.05193484574556351,0.01007393840700388,-0.03234780207276344,-0.0354728028178215,-0.03888458013534546,0.019897736608982086,-0.08389252424240112,-0.032311636954545975,-0.004708046093583107,0.04323232173919678,-0.08724396675825119,-0.021257610991597176,-0.11962436884641647,0.02593720145523548,-0.029881475493311882,0.09748295694589615,0.026868786662817,-0.019546274095773697,-0.045028578490018845,0.07827616482973099,-0.016625888645648956,-0.026921967044472694,0.05571625754237175,-0.0497821606695652,0.0660347267985344,0.026865584775805473,-0.058668289333581924,-0.1563786119222641,-0.004183648154139519,0.019375590607523918,-0.02022024616599083,-0.0004451929125934839,0.032606277614831924,0.025107819586992264,0.015629423782229424,0.01719244010746479,-0.06374476104974747,-0.04688749462366104,-0.013119551353156567,0.0246852096170187,-0.016373638063669205,-0.04915781319141388,-0.024584351107478142,0.050204139202833176,0.022392800077795982,0.03247259929776192,0.01965535245835781,0.11752153933048248,-0.014548842795193195,-0.07550738751888275,-3.930124137241364e-8,0.012606917880475521,-0.027091844007372856,-0.0560806542634964,-0.017506105825304985,0.024324895814061165,-0.09136975556612015,-0.07761000841856003,-0.06599220633506775,0.0331442691385746,0.027356313541531563,0.01708177477121353,-0.046755045652389526,0.06239819526672363,0.005597249139100313,0.06866995990276337,0.08129789680242538,0.06238124892115593,0.064328633248806,-0.03022218681871891,-0.016603965312242508,0.06675942242145538,0.024552617222070694,-0.023924587294459343,0.07575344294309616,0.02909248322248459,0.062287282198667526,0.04779335856437683,0.035549405962228775,0.050733231008052826,0.06795795261859894,-0.05070889741182327,0.04278410226106644,-0.007811585441231728,-0.03914569318294525,-0.085736483335495,0.01970108598470688,0.001274966518394649,0.0007179649546742439,-0.09733708947896957,0.03260122239589691,0.10067787021398544,0.018094168975949287,0.04457077383995056,-0.01777590624988079,0.015216208063066006,0.01051213126629591,-0.034928277134895325,-0.023480847477912903,-0.008829816244542599,-0.05229517072439194,-0.036073166877031326,0.013053728267550468,0.04789545759558678,0.07889536768198013,0.00866981502622366,-0.007652531377971172,0.05607505887746811,0.018410563468933105,-0.010725779458880424,-0.09672537446022034,0.13299275934696198,0.0356154590845108,-0.0251439418643713,-0.07582337409257889]},{"text":"Cur facunda parum decoro 35 Inter verba cadit lingua silentio?","book":"Homage to Catalonia","chapter":25,"embedding":[-0.00622588349506259,0.008400602266192436,-0.058960024267435074,-0.028224408626556396,-0.0741564929485321,-0.0646110326051712,0.05710134655237198,-0.0038506602868437767,-0.0086798295378685,0.06290996074676514,0.09204703569412231,-0.13504478335380554,-0.011929095722734928,-0.015215467661619186,-0.020267555490136147,-0.04493175074458122,-0.03331580385565758,0.08785761892795563,-0.006148305721580982,-0.02583233080804348,0.06494446098804474,0.007312178146094084,-0.012347420677542686,0.07646265625953674,0.005832442082464695,0.03673509880900383,0.021605562418699265,-0.054180361330509186,0.01901700720191002,-0.07242490351200104,-0.004297587554901838,0.09779971092939377,0.04887163266539574,-0.009543271735310555,0.0007766783237457275,-0.03653569146990776,0.0761609673500061,-0.04888010770082474,0.10935069620609283,0.010034282691776752,-0.15163186192512512,-0.033567216247320175,-0.01588839665055275,-0.07219285517930984,0.009599492885172367,-0.02309798263013363,0.040043532848358154,0.07170145213603973,-0.03651033341884613,-0.0662204846739769,0.00023524012067355216,-0.0035451992880553007,-0.03486136719584465,-0.003168627619743347,-0.07236865162849426,-0.027475930750370026,0.016019273549318314,-0.004439729265868664,0.04326885566115379,0.021609840914607048,-0.01574651338160038,-0.03915173560380936,-0.024670416489243507,0.04893065616488457,-0.05984277278184891,-0.033348314464092255,-0.015609122812747955,-0.023257238790392876,-0.03350558131933212,0.055211227387189865,0.04072767496109009,-0.027049124240875244,0.02946397289633751,0.00486241327598691,0.013019251637160778,0.00784314889460802,-0.02656797505915165,0.0015438661212101579,-0.011958489194512367,-0.11525176465511322,0.006039576139301062,0.02606602944433689,-0.02694919891655445,0.05946449935436249,-0.013466288335621357,-0.032362598925828934,0.01943281479179859,0.025125999003648758,-0.02654832787811756,0.010753443464636803,0.05447232723236084,-0.014755694195628166,-0.07421985268592834,0.012821593321859837,-0.05900624021887779,-0.004034395329654217,0.009265471249818802,-0.015351168811321259,-0.02934856526553631,0.036202240735292435,0.04700974375009537,-0.03185202553868294,0.04232010245323181,0.038824308663606644,-0.11447574943304062,-0.032913938164711,-0.047038063406944275,-0.038995590060949326,0.03626975417137146,0.044256772845983505,-0.08949177712202072,-0.01275965292006731,-0.08573253452777863,-0.04303286597132683,-0.0023328538518399,0.014157111756503582,0.0713520348072052,-0.09670083969831467,0.1149042472243309,-0.03125849738717079,0.03900916129350662,0.02245655097067356,-0.03303840011358261,-0.023003168404102325,0.0836615264415741,-0.1268969625234604,0.10747658461332321,5.300168478665365e-33,-0.032338883727788925,-0.030925029888749123,-0.07585420459508896,-0.014145185239613056,0.06057672202587128,0.0007944800890982151,-0.038732707500457764,-0.041609469801187515,0.025625931099057198,0.019804242998361588,0.007421035785228014,-0.02472078986465931,-0.015531961806118488,-0.05685541033744812,0.012887511402368546,0.05019042268395424,-0.010894058272242546,0.0007450942066498101,-0.04662543535232544,-0.0638548731803894,0.038775697350502014,0.10289330035448074,0.039626266807317734,0.035852398723363876,0.09113332629203796,0.022041836753487587,0.01991400495171547,-0.1192057654261589,0.02689601480960846,0.07420847564935684,-0.02518892101943493,-0.03407154604792595,0.05971119552850723,-0.029403813183307648,-0.003113684942945838,-0.07698450982570648,0.041055332869291306,-0.01975163258612156,0.00001540132325317245,-0.037319619208574295,-0.019035646691918373,0.018078818917274475,0.023269690573215485,-0.03276636078953743,0.07058002799749374,0.04822614789009094,0.04133548215031624,0.05335436388850212,0.04517268016934395,0.03251758590340614,0.03353772312402725,-0.007933435961604118,-0.04318547621369362,0.06303659081459045,0.05304534733295441,-0.03671940416097641,-0.03054569661617279,-0.010401485487818718,0.004588017705827951,-0.06196681410074234,0.10017669200897217,0.06009991839528084,0.012385993264615536,-0.009031957946717739,0.003903255332261324,0.02775523252785206,-0.05610491707921028,-0.027952853590250015,0.14994828402996063,-0.035503827035427094,-0.09243561327457428,0.00753045966848731,-0.0871846154332161,-0.017291052266955376,-0.012891666032373905,0.030337970703840256,-0.029101787135004997,0.0023968620225787163,-0.014252129010856152,-0.02457866445183754,-0.09544893354177475,-0.04765857383608818,-0.02278217300772667,0.03887743502855301,0.05369626730680466,0.026142923161387444,0.028575940057635307,0.037521205842494965,0.04660768061876297,0.029359718784689903,-0.045509856194257736,-0.009836611337959766,0.009630409069359303,-0.0026170136407017708,0.04248078912496567,-6.059621583269059e-33,-0.01233652513474226,0.012204950675368309,-0.019707534462213516,0.11448432505130768,-0.052368830889463425,-0.0257550235837698,-0.068961001932621,0.028210699558258057,0.08208241313695908,-0.0038255364634096622,-0.04562214016914368,-0.049077317118644714,0.022767582908272743,0.056376177817583084,0.04217565059661865,0.07701350003480911,0.08614957332611084,0.0009826880414038897,-0.05464571341872215,0.03212769329547882,-0.03072115033864975,0.021061690524220467,-0.10726123303174973,-0.03266618028283119,-0.03711993619799614,-0.04752134904265404,-0.034670356661081314,-0.022540688514709473,0.01591208390891552,-0.02356158010661602,0.013575362972915173,0.005231397692114115,-0.02122863009572029,0.051850683987140656,-0.055275365710258484,-0.06122040003538132,0.07415474206209183,0.07563567161560059,-0.027289308607578278,-0.012659681029617786,0.027468355372548103,0.0559210367500782,-0.013642514124512672,0.020068563520908356,-0.05753374844789505,-0.05202225595712662,-0.07270019501447678,-0.06721740961074829,-0.06498254835605621,0.0008782235672697425,0.05514729022979736,0.01539953239262104,0.041371703147888184,-0.07047492265701294,0.03780519217252731,-0.010971403680741787,0.05084661766886711,-0.07510893046855927,-0.10973065346479416,-0.00016281499119941145,0.10989756882190704,-0.011998596601188183,-0.029769521206617355,-0.03748069331049919,0.16886858642101288,0.032369133085012436,-0.08714954555034637,0.04354202002286911,0.028701094910502434,-0.003920200280845165,0.15095359086990356,-0.006746700499206781,-0.1119663417339325,0.025953805074095726,0.0302903950214386,0.0422520712018013,0.041862767189741135,-0.027949359267950058,0.0029713045805692673,0.0821208581328392,-0.014673729427158833,-0.022377638146281242,-0.009674609638750553,-0.07828940451145172,-0.012775156646966934,-0.0012248342391103506,-0.02815825119614601,0.03475355729460716,0.01633017510175705,0.07197369635105133,0.006727752275764942,0.05764678493142128,0.08369209617376328,-0.04868786782026291,-0.03246474266052246,-2.7310266048630183e-8,-0.07111822813749313,-0.10874736309051514,-0.056964874267578125,-0.018919654190540314,0.016762414947152138,-0.09456728398799896,0.001992166740819812,-0.029564809054136276,-0.04718847572803497,0.01581922173500061,0.043541811406612396,-0.021715402603149414,-0.02113126963376999,0.05316941812634468,0.04641762375831604,0.0866493359208107,0.046745799481868744,-0.0070976391434669495,-0.022498156875371933,-0.07888887077569962,0.1139199361205101,-0.0012241393560543656,-0.0815952941775322,-0.0011577195255085826,-0.048236798495054245,0.021082160994410515,0.0390421599149704,-0.01608612947165966,-0.011518897488713264,-0.03754062205553055,0.030171988531947136,0.04042934253811836,-0.006109110079705715,-0.032618653029203415,-0.025099333375692368,0.04543853551149368,0.024315088987350464,-0.007480848580598831,0.0028410309460014105,-0.01858202926814556,0.08143553137779236,-0.015385942533612251,-0.04073045030236244,-0.06155987083911896,0.13450857996940613,0.016117550432682037,-0.0024078807327896357,-0.045724838972091675,-0.0037713402416557074,-0.030235186219215393,-0.10338611155748367,0.08476602286100388,0.035840652883052826,0.06332249194383621,0.03558691591024399,0.016436390578746796,0.0395149290561676,0.031038755550980568,-0.022035345435142517,-0.027125412598252296,0.09682855755090714,0.07674480229616165,0.015968898311257362,-0.02504560723900795]},{"text":"Pindarum quisquis studet aemulari, Iulle, ceratis ope Daedalea Nititur pennis vitreo daturus Nomina ponto.","book":"Homage to Catalonia","chapter":25,"embedding":[-0.03586297482252121,0.09796375036239624,-0.026693040505051613,-0.05178804695606232,-0.11115000396966934,-0.04380910098552704,0.05302446335554123,0.11183059215545654,0.004152581561356783,0.10763080418109894,0.02640506625175476,-0.0645144134759903,-0.022467663511633873,0.030143115669488907,-0.14136144518852234,-0.09667645394802094,-0.061525918543338776,0.07094386219978333,-0.008161895908415318,0.031296506524086,0.03280360624194145,-0.01037097629159689,0.02126501314342022,0.00884838867932558,-0.09872540831565857,0.037549152970314026,-0.019112491980195045,-0.017591126263141632,0.017805777490139008,-0.05603177845478058,0.029477175325155258,0.09181930869817734,0.034158047288656235,-0.0829654261469841,-0.003960518632084131,-0.03383440151810646,0.03142757713794708,0.002373783616349101,0.06751099228858948,0.06508081406354904,-0.031033217906951904,0.011619429104030132,-0.014755330979824066,0.012493184767663479,0.017932116985321045,0.003949927166104317,-0.010583139024674892,0.03433641046285629,0.03392622992396355,-0.01569594256579876,-0.03730779141187668,-0.013123033568263054,-0.018663808703422546,-0.030233431607484818,-0.08348238468170166,-0.01036119181662798,0.0267441738396883,-0.026138978078961372,-0.044342558830976486,-0.052310675382614136,-0.009754040278494358,0.058745864778757095,0.02044195868074894,0.05864424630999565,-0.0049806758761405945,0.037902090698480606,-0.10034682601690292,0.06406386941671371,-0.05973784998059273,0.022531433030962944,0.08180903643369675,-0.05540118366479874,-0.011555776000022888,0.06397953629493713,-0.044225968420505524,0.06401508301496506,0.013055895455181599,-0.04594723880290985,0.06572040170431137,-0.03626786917448044,-0.05167461186647415,-0.06533629447221756,-0.04885002598166466,-0.014128286391496658,-0.01854400709271431,-0.005827151704579592,0.017815139144659042,0.01038102526217699,0.046528562903404236,-0.02049075998365879,0.014307156205177307,0.03934939578175545,-0.09768438339233398,-0.07138799875974655,0.06848867237567902,0.0087222745642066,-0.06681063771247864,-0.040314532816410065,-0.0019703549332916737,0.0002030427276622504,0.05219074711203575,-0.043492935597896576,-0.012459744699299335,0.01635649986565113,-0.07535794377326965,-0.007912042550742626,-0.0034407463390380144,-0.11924748867750168,0.03693123534321785,0.008118324913084507,-0.07476546615362167,-0.0951792299747467,-0.07982917875051498,-0.08151617646217346,-0.013413386419415474,0.026356467977166176,-0.03023403510451317,-0.021160731092095375,0.006252223625779152,-0.033789582550525665,0.03985252603888512,0.0004934986936859787,0.004129950888454914,-0.031594812870025635,-0.003426105249673128,-0.04195961728692055,0.08966425061225891,1.0284241383606832e-32,-0.07342885434627533,-0.08837416023015976,-0.08676425367593765,-0.03485685959458351,-0.0101688327267766,-0.021294275298714638,-0.06458505243062973,-0.030496150255203247,-0.04242885485291481,-0.013056298717856407,-0.06624399125576019,-0.03752877563238144,0.03922681882977486,0.02212219312787056,0.005064861383289099,0.07530580461025238,0.10917775332927704,0.024258967489004135,-0.06059614568948746,-0.021304141730070114,0.020177138969302177,0.044865794479846954,0.05160265415906906,-0.05287330970168114,0.06648742407560349,0.028783518821001053,-0.01609455607831478,-0.09502822160720825,-0.0700363889336586,0.025490516796708107,0.0818624198436737,-0.002857684390619397,-0.0043254815973341465,0.001662678550928831,-0.01744789257645607,0.02458205446600914,0.045031268149614334,-0.05498885735869408,-0.017330113798379898,0.008775758557021618,0.018909920006990433,0.007206292357295752,0.10464569181203842,0.014044231735169888,0.015449878759682178,0.02248374931514263,0.019813980907201767,-0.00209428952075541,0.06881771981716156,-0.025102024897933006,0.0023771249689161777,-0.0064332797192037106,-0.04148821532726288,-0.0059288921765983105,0.021909024566411972,-0.03225494176149368,-0.014986604452133179,0.04508208855986595,0.02560463361442089,-0.0770266130566597,-0.04001447558403015,-0.0501900352537632,-0.06483181565999985,-0.08200965076684952,0.0679672434926033,-0.03109707124531269,-0.05052335187792778,0.003750515403226018,0.06333868205547333,0.0017891559982672334,-0.08228664845228195,-0.08436264097690582,-0.05710073560476303,0.027559077367186546,-0.0008507081656716764,0.07497900724411011,0.036901965737342834,0.047462522983551025,-0.0709809809923172,-0.0003429570351727307,-0.08144295960664749,0.04998353123664856,-0.007609146647155285,0.0005286201485432684,0.14405938982963562,0.01544671505689621,0.012434467673301697,0.045839738100767136,0.10178530961275101,0.0032024916727095842,0.04349801689386368,0.03629738464951515,-0.004369118716567755,-0.06456879526376724,0.03451559320092201,-1.091386554526602e-32,-0.05656303092837334,-0.006202062126249075,-0.08158544450998306,0.08997496217489243,0.04025977849960327,0.006671109702438116,-0.1010395959019661,0.006635394413024187,0.061564669013023376,-0.06002992019057274,-0.040556974709033966,-0.06939996033906937,0.04756087809801102,-0.010990378446877003,0.0016683702124282718,0.08581963181495667,0.02684757672250271,0.07475626468658447,0.038608118891716,-0.053694337606430054,-0.03485029935836792,0.011223385110497475,-0.010541331022977829,-0.07530085742473602,0.01542380079627037,-0.03908142074942589,-0.015312391333281994,-0.11585839837789536,-0.025264514610171318,-0.004188083112239838,-0.04105352982878685,0.030353963375091553,-0.023027678951621056,0.09793679416179657,0.027351023629307747,0.10388711094856262,0.13785357773303986,-0.022535856813192368,-0.054539188742637634,0.022171737626194954,-0.011401901952922344,0.04755384102463722,0.12399493902921677,-0.014808653853833675,0.00975680910050869,-0.0624198392033577,-0.10769307613372803,0.07871250808238983,-0.06861002743244171,0.058754146099090576,0.07635992020368576,0.04161873459815979,0.06896967440843582,-0.0643620640039444,0.07515636086463928,-0.058680519461631775,-0.011311274021863937,-0.06581316888332367,-0.03452621027827263,-0.011076422408223152,0.10202774405479431,-0.04436735436320305,-0.05021495372056961,0.0020636229310184717,0.055182818323373795,0.03729941323399544,-0.10346880555152893,0.048741888254880905,-0.04364066943526268,-0.009941902942955494,0.03769100084900856,-0.0741613358259201,0.011831874959170818,-0.05866614729166031,0.004786091390997171,0.041010066866874695,-0.04947138577699661,0.0013197039952501655,0.06517110764980316,-0.005597156938165426,-0.030376151204109192,-0.04202551767230034,0.030503246933221817,-0.005903815850615501,0.023840654641389847,0.02276739850640297,-0.017986182123422623,-0.02074407786130905,0.02244693599641323,-0.06543431431055069,-0.020495861768722534,-0.023012593388557434,0.02602848783135414,-0.045191872864961624,-0.02422231435775757,-3.985012853036096e-8,0.0038697081618010998,0.006138444412499666,-0.050534941256046295,0.07994648814201355,0.04392949864268303,-0.026642443612217903,-0.029605092480778694,0.008152846246957779,0.03616282716393471,0.05455062538385391,0.025956125929951668,-0.011154351755976677,0.05058589205145836,-0.014799362048506737,0.02260817401111126,0.07030846178531647,0.03221145644783974,0.02351461909711361,0.010478641837835312,-0.005370631814002991,0.08545465767383575,0.0023429295979440212,-0.11141543090343475,-0.023136092349886894,-0.06672161817550659,0.017888249829411507,0.08249635249376297,-0.0014277184382081032,0.007721871603280306,0.016854936257004738,0.04835083708167076,0.06178143993020058,-0.026507841423153877,-0.04942101985216141,0.020256998017430305,0.08474241942167282,-0.017606746405363083,0.06952276080846786,0.01166622992604971,0.019360072910785675,0.011070402339100838,0.0071784318424761295,0.08258718997240067,-0.018644992262125015,0.017568422481417656,0.0031008629593998194,0.03786265105009079,0.016321830451488495,0.005136152263730764,-0.11798477172851562,-0.09220386296510696,0.02193925902247429,0.07647623866796494,0.0429079644382,0.025159958750009537,-0.022011900320649147,0.07733730971813202,-0.011064287275075912,-0.027448199689388275,-0.02744535356760025,0.0679406151175499,0.06747590750455856,0.06525205075740814,-0.0008759587653912604]},{"text":"Ego apis Matinae More modoque Grata carpentis thyma per laborem Plurimum circa nemus uvidique 30 Tiburis ripas operosa parvus Carmina fingo.","book":"Homage to Catalonia","chapter":25,"embedding":[0.007929027080535889,0.08762240409851074,0.02085759863257408,-0.05317220091819763,-0.027536610141396523,-0.012975985184311867,0.01808590441942215,0.02497832290828228,-0.011051462963223457,0.07044930011034012,0.1291912943124771,-0.10995827615261078,-0.06543227285146713,0.01847721077501774,-0.035355065017938614,-0.026813307777047157,0.005107717588543892,0.034237030893564224,0.0023567182943224907,0.023471655324101448,0.051868464797735214,-0.016391193494200706,-0.04605809971690178,-0.04845193028450012,-0.08716896921396255,0.03205575793981552,-0.09628145396709442,0.0075525082647800446,0.05138499289751053,-0.09515226632356644,-0.09398685395717621,0.0640377476811409,0.053007304668426514,-0.015743691474199295,-0.008273372426629066,0.04193636402487755,-0.014273417182266712,-0.07370813190937042,0.0306477639824152,0.0947485864162445,-0.03834361210465431,-0.0016044492367655039,-0.08487948030233383,-0.05398867651820183,-0.03388103097677231,-0.0011840444058179855,-0.007306164130568504,0.019453007727861404,-0.013696834444999695,0.01156880147755146,-0.11482342332601547,-0.04663445055484772,-0.035931557416915894,0.02315676212310791,0.0038056354969739914,0.016195617616176605,-0.06176422908902168,-0.026087023317813873,-0.039997633546590805,0.0031184998806566,0.01374892983585596,0.0401168018579483,-0.04001960530877113,-0.0048073576763272285,0.0345316044986248,-0.04391662776470184,-0.030804038047790527,0.04110230505466461,-0.07426104694604874,-0.008177042938768864,0.09607592225074768,-0.02417667582631111,-0.02849395200610161,0.0817556083202362,-0.04941137135028839,0.01675831712782383,0.015812087804079056,-0.03267855569720268,0.026321185752749443,-0.05582072585821152,-0.08520804345607758,0.0493023619055748,-0.016708457842469215,0.06656903773546219,-0.01038278266787529,0.02791597880423069,-0.03360025957226753,0.027200795710086823,0.03561103716492653,-0.03212412819266319,0.055374596267938614,-0.014634800143539906,-0.07707133889198303,-0.016838205978274345,0.028772419318556786,0.048147644847631454,-0.011514188721776009,-0.06463999301195145,-0.012476792559027672,0.037670034915208817,-0.010937151499092579,-0.045297108590602875,-0.006649411283433437,0.005690203048288822,-0.06255705654621124,-0.018840808421373367,-0.11417743563652039,-0.07338950783014297,-0.03270425274968147,0.019095540046691895,-0.09754451364278793,-0.020169802010059357,-0.05111854523420334,-0.04465342313051224,-0.06491579115390778,-0.07641869783401489,-0.0249986220151186,-0.07949987053871155,0.03539649024605751,-0.00695028668269515,0.07839657366275787,-0.04141102358698845,0.079771488904953,0.030064532533288002,0.049190863966941833,-0.018290003761649132,0.020967666059732437,1.4057745757691367e-32,-0.004803800955414772,-0.08354192972183228,-0.017085563391447067,-0.0423576720058918,0.10605721175670624,-0.02360239066183567,-0.029184529557824135,-0.040906235575675964,0.052407991141080856,-0.03998836129903793,-0.104770228266716,-0.02117638662457466,-0.05286164954304695,-0.024074876680970192,0.04359205812215805,0.0555751733481884,0.04172998294234276,-0.022354532033205032,-0.04393715038895607,0.0001583955017849803,0.011850656941533089,0.056202925741672516,0.04077837988734245,-0.06567074358463287,0.04902319610118866,-0.0015048717614263296,0.025458775460720062,-0.08171885460615158,-0.05491243302822113,0.041392553597688675,0.09663933515548706,-0.04425271973013878,-0.009229128248989582,0.009786461479961872,0.00220379582606256,0.040310829877853394,0.06446069478988647,-0.03923647105693817,-0.08044428378343582,0.002229362493380904,0.031929533928632736,0.02265229821205139,0.10994797199964523,0.029328588396310806,0.017732903361320496,0.0047881403006613255,0.0686412900686264,0.05969591438770294,0.045033667236566544,0.060515180230140686,0.026841454207897186,0.08407613635063171,0.057330820709466934,-0.04230000078678131,-0.05116378888487816,0.04564362019300461,-0.06699125468730927,0.001188256312161684,-0.051238883286714554,-0.021902814507484436,-0.03180619701743126,-0.040946878492832184,0.038345761597156525,-0.01412966474890709,0.024158580228686333,-0.036752983927726746,-0.08315891027450562,-0.008531451225280762,0.12268008291721344,0.0732622742652893,-0.06540349125862122,-0.06684309989213943,-0.03878374025225639,0.019344817847013474,-0.03563304245471954,0.014088154770433903,0.0791325643658638,-0.021156975999474525,-0.07366205751895905,-0.023357782512903214,-0.022200746461749077,0.07883760333061218,0.011449691839516163,0.0416615791618824,0.06509840488433838,0.04903344437479973,0.029842792078852654,0.0445081926882267,0.12559154629707336,0.08900611102581024,0.045658476650714874,0.04135711491107941,-0.05400865525007248,-0.014126317575573921,-0.005250411573797464,-1.3267787105315897e-32,-0.009957356378436089,-0.033190492540597916,-0.09564241766929626,0.1176227256655693,0.049417395144701004,-0.057489391416311264,-0.05831475928425789,0.10985345393419266,-0.02546915039420128,-0.008499343879520893,-0.07202984392642975,0.04836504906415939,0.01339839119464159,0.006614657584577799,0.027071885764598846,0.01395015325397253,0.04666615277528763,0.06280529499053955,-0.06071626767516136,-0.07498227059841156,-0.08948471397161484,0.054610591381788254,0.02478118985891342,-0.01985054276883602,0.04628042131662369,0.0036562387831509113,-0.02218754030764103,0.034542303532361984,-0.09318166971206665,-0.12234962731599808,0.021743569523096085,-0.07543598860502243,-0.017542075365781784,0.0726410299539566,0.0639154240489006,0.01932690478861332,0.01019301451742649,0.017192712053656578,0.0002995528338942677,0.0699756070971489,0.049698781222105026,-0.0591609813272953,0.061812203377485275,0.018067892640829086,0.014073310419917107,-0.08472852408885956,-0.09278933703899384,-0.005066196899861097,0.011368157342076302,0.023620445281267166,0.057990171015262604,-0.03786022216081619,0.038437116891145706,-0.06635771691799164,0.094969242811203,-0.12311673909425735,0.04643765836954117,-0.09331784397363663,-0.038681045174598694,0.09174646437168121,0.07997377216815948,-0.016171913594007492,-0.02593265473842621,0.006816904526203871,0.07730630785226822,-0.03465985879302025,-0.013262055814266205,-0.03522981330752373,-0.07351077347993851,0.07066195458173752,0.024017279967665672,-0.012108047492802143,-0.07239340990781784,-0.004373728297650814,-0.002686232328414917,-0.010572354309260845,0.0020839585922658443,0.060123227536678314,0.04525456205010414,-0.012038579210639,-0.03755270689725876,-0.08531050384044647,0.040556877851486206,-0.00620729336515069,-0.05323471873998642,0.032380566000938416,0.0103103406727314,0.047568004578351974,-0.013028465211391449,0.02707607112824917,-0.01833665929734707,-0.05477893352508545,-0.06362777948379517,0.0670202448964119,0.021550027653574944,-4.4723545755687155e-8,0.023874934762716293,-0.0006302065448835492,-0.05987466126680374,0.038067467510700226,-0.0030987770296633244,-0.04383324831724167,0.05145205929875374,-0.05594661459326744,0.05516180023550987,0.002488095546141267,0.017228998243808746,0.040164485573768616,0.06446553766727448,0.02903144061565399,0.04099218174815178,-0.01829306222498417,0.09419481456279755,0.06191081181168556,-0.06684084236621857,-0.07957776635885239,-0.01591823808848858,-0.011107472702860832,-0.058404017239809036,-0.02797350473701954,-0.06780656427145004,-0.08654709160327911,-0.029542597010731697,0.07867595553398132,0.06772805750370026,0.07037895917892456,-0.02115660160779953,0.03544335439801216,0.06630246341228485,-0.03248509019613266,0.01829429529607296,0.05500233918428421,-0.044239722192287445,0.005640923976898193,-0.03757873550057411,0.027907561510801315,0.05113973096013069,-0.029617508873343468,0.07869911193847656,-0.05363614484667778,-0.001992948353290558,-0.05274401605129242,0.02978355996310711,-0.03778393939137459,-0.0012789767934009433,-0.03981081023812294,0.03545283153653145,0.015962479636073112,0.07454968243837357,0.03294820711016655,-0.07401199638843536,-0.028828555718064308,0.03510180860757828,-0.0193161703646183,0.01864337921142578,0.023276647552847862,0.0057670180685818195,0.0400531180202961,0.0037429933436214924,0.06038639321923256]},{"text":"Tum meae, si quid loquar audiendum, 45 Vocis accedet bona pars, et 'O Sol Pulcher, o laudande!' canam recepto Caesare felix.","book":"Homage to Catalonia","chapter":25,"embedding":[-0.05010450631380081,-0.01774488389492035,0.039647847414016724,-0.04336194321513176,-0.07253573089838028,0.029416009783744812,0.0019344770116731524,0.07439657300710678,0.04202393442392349,0.012005098164081573,0.0448584146797657,-0.10204390436410904,-0.014978037215769291,-0.08810071647167206,-0.05982492119073868,-0.026477720588445663,-0.08478089421987534,0.09651470929384232,0.040488433092832565,-0.03981131315231323,-0.0008127622422762215,-0.03662916272878647,-0.08554944396018982,0.04144255071878433,0.007654940709471703,0.05055448040366173,-0.006473490037024021,0.033972784876823425,0.004947321489453316,-0.031580232083797455,0.08760528266429901,0.02354578860104084,0.07486376911401749,-0.010413493029773235,-0.034583624452352524,-0.007662849500775337,-0.033211056143045425,-0.11986912041902542,0.020812861621379852,0.07636384665966034,-0.05929744243621826,-0.0018762033432722092,-0.04083481431007385,-0.012764422222971916,-0.011433825828135014,0.006605651695281267,0.02912895195186138,0.08797299116849899,-0.02821063995361328,0.0880858525633812,-0.014326522126793861,0.026099588721990585,0.007233817595988512,-0.04140128195285797,-0.10070495307445526,0.019588811323046684,0.09511137753725052,-0.026738718152046204,0.009055638685822487,-0.03330026566982269,-0.0635804682970047,0.022394778206944466,0.00669418228790164,0.008510582149028778,-0.09236400574445724,-0.03672553226351738,0.00903607252985239,0.010535692796111107,-0.1263224333524704,0.10218261182308197,0.05113094300031662,-0.055528316646814346,0.03362574428319931,0.02443559281527996,-0.004923277068883181,0.019151538610458374,-0.049942437559366226,-0.08764323592185974,0.006227486301213503,-0.05496657267212868,0.028391418978571892,-0.008637887425720692,-0.03781423717737198,-0.007973834872245789,-0.010005396790802479,-0.022334454581141472,0.02610023505985737,0.02996009588241577,0.05826537311077118,-0.039252541959285736,-0.08062924444675446,-0.04796778783202171,-0.10692745447158813,-0.002808419056236744,-0.006912617012858391,0.0899137482047081,0.010861043818295002,0.028441576287150383,-0.01992732845246792,-0.055671609938144684,0.011586430482566357,0.014032972976565361,0.007156100589782,-0.012537303380668163,-0.08112630248069763,0.041620150208473206,0.006594334729015827,-0.006472361274063587,0.061745770275592804,-0.005720330402255058,-0.037765197455883026,-0.026375699788331985,-0.0029178443364799023,-0.042971815913915634,0.08754757791757584,0.0589008629322052,0.027437645941972733,-0.0865086168050766,-0.02379675582051277,-0.045124273747205734,0.00018613773863762617,-0.058911215513944626,-0.02095753327012062,-0.053037602454423904,0.05070607736706734,-0.025028957054018974,0.06113255023956299,7.493840403997409e-33,-0.046788375824689865,-0.04645361751317978,-0.0007953398744575679,-0.012073595076799393,0.03882352262735367,-0.06665478646755219,-0.03825032338500023,0.005964572541415691,-0.016721852123737335,-0.008825614117085934,-0.07876606285572052,-0.058311231434345245,-0.05197007209062576,-0.029118482023477554,0.028381243348121643,0.0753721073269844,0.0527462512254715,-0.04677406698465347,-0.019524000585079193,-0.10429593920707703,-0.07925119996070862,-0.05082939937710762,-0.002109354129061103,0.014452794566750526,0.09717396646738052,0.019063683226704597,0.046706151217222214,-0.03516530245542526,0.06434425711631775,-0.003846819046884775,0.06567101180553436,-0.0004571410536300391,-0.03459559753537178,-0.021979806944727898,0.016479764133691788,-0.01569638028740883,-0.01651889830827713,0.1217779666185379,-0.08618728071451187,0.027000214904546738,0.04901731386780739,0.029123913496732712,0.03746287524700165,0.002619662322103977,0.05098600313067436,-0.004497585818171501,0.049386508762836456,0.02838641218841076,0.06888855993747711,-0.0328546017408371,-0.004607990849763155,0.008202983997762203,-0.058780934661626816,-0.032538700848817825,0.08186915516853333,-0.04022818058729172,-0.07185054570436478,0.07794101536273956,-0.0699463039636612,-0.010830491781234741,0.06846437603235245,0.012065182439982891,0.07781293243169785,0.010693894699215889,-0.019090382382273674,-0.012423018924891949,0.011628352105617523,0.010089089162647724,0.12033815681934357,0.10900697112083435,-0.06658552587032318,-0.0006940844468772411,-0.07864931970834732,-0.00017330968694295734,0.02920963615179062,-0.014091945253312588,0.023359140381217003,0.03477466478943825,0.020252084359526634,-0.05967475846409798,-0.06148267164826393,-0.03957759588956833,0.07210218906402588,0.031377773731946945,0.040075067430734634,-0.00015023446758277714,0.026180945336818695,0.03407731279730797,-0.05756842717528343,0.04738815501332283,0.04374131187796593,0.04281357675790787,0.07620227336883545,0.019034840166568756,-0.05159992352128029,-7.833471578676677e-33,-0.016134334728121758,-0.02383854053914547,-0.024434518069028854,0.04192188009619713,-0.05409841239452362,0.09839333593845367,-0.09353212267160416,0.06960209459066391,-0.026030197739601135,-0.11603830009698868,-0.11250859498977661,-0.024863097816705704,0.08897966891527176,-0.04487449675798416,-0.004880462307482958,0.09917733818292618,-0.0011517198290675879,0.03152969479560852,-0.07892962545156479,-0.02079000324010849,0.03652339056134224,-0.019514281302690506,0.11950775980949402,-0.048710715025663376,-0.036242663860321045,-0.016640910878777504,0.07424164563417435,-0.004857571329921484,-0.04220616817474365,0.025631574913859367,0.05285489931702614,-0.04677921161055565,0.023298224434256554,0.03783766180276871,-0.020066455006599426,0.018447697162628174,0.13490894436836243,0.021865051239728928,-0.06268848478794098,0.04300079494714737,-0.04111767187714577,0.007663152180612087,0.024040725082159042,0.016406254842877388,-0.03844693303108215,-0.014397368766367435,-0.05111892521381378,-0.12201126664876938,-0.11534810066223145,-0.025223495438694954,0.07283210009336472,-0.07934371381998062,0.02417272888123989,0.029945332556962967,0.0430544950067997,0.050352174788713455,-0.052346184849739075,-0.03901051729917526,-0.03960605710744858,-0.022663023322820663,-0.02193601429462433,0.07032881677150726,-0.01666751690208912,-0.019852101802825928,0.07361597567796707,-0.04412654787302017,-0.048346009105443954,0.04236817732453346,-0.014497609809041023,0.0394090935587883,0.08594390004873276,-0.06753720343112946,-0.1040019690990448,0.08121666312217712,-0.042106471955776215,-0.004149994812905788,0.01706218346953392,0.03003082424402237,-0.012139743193984032,0.029381072148680687,-0.05557895079255104,-0.0573115199804306,-0.021669602021574974,0.016243021935224533,-0.042235344648361206,-0.07728582620620728,0.07797382026910782,0.012998600490391254,0.03300321474671364,0.051238857209682465,0.06304667890071869,0.06532515585422516,0.06603533029556274,-0.030052289366722107,-0.006906840018928051,-3.90113434889372e-8,0.005848896689713001,-0.07615672796964645,-0.09188330173492432,0.05822596698999405,0.057045526802539825,-0.009815072640776634,-0.1050773337483406,-0.047540344297885895,-0.06036566570401192,0.06547338515520096,0.024954529479146004,-0.014875032939016819,-0.009002483449876308,0.0555698499083519,0.04722532257437706,0.026606012135744095,0.022434793412685394,0.042556118220090866,-0.01358055416494608,-0.02613205835223198,-0.00009903071622829884,0.007288138847798109,-0.044495802372694016,0.02671917714178562,0.021708806976675987,0.03775157779455185,0.01809977926313877,-0.0495891273021698,-0.019628964364528656,0.00037803733721375465,-0.025656457990407944,0.08714397996664047,-0.059957973659038544,-0.05642151087522507,-0.01567617431282997,0.058385856449604034,0.00778926769271493,-0.004126765299588442,-0.02553856372833252,0.06879108399152756,0.09129701554775238,0.0486132949590683,-0.037787918001413345,-0.03150172531604767,0.05908917635679245,-0.0018222276121377945,-0.02916652336716652,-0.05067506432533264,-0.006403024308383465,0.054752420634031296,-0.016721012070775032,-0.025164848193526268,0.13705679774284363,0.0355769619345665,-0.00006219407077878714,0.01288148295134306,0.025647498667240143,-0.03784191235899925,-0.02390163019299507,-0.03149991109967232,0.08370225876569748,0.08163134008646011,0.018918953835964203,0.012867031618952751]},{"text":"Te decem tauri totidemque vaccae, Me tener solvet vitulus, relicta Matre qui largis iuvenescit herbis 55 In mea vota, Fronte curvatos imitatus ignis Tertium lunae referentis ortum, Qua notam duxit, niveus videri, Cetera fulvus. 60 III.","book":"Homage to Catalonia","chapter":25,"embedding":[-0.010071804746985435,0.07938651740550995,0.0070613669231534,-0.06154162064194679,-0.03414172679185867,0.02917395904660225,0.013700392097234726,0.043701279908418655,0.048684220761060715,0.04322773963212967,0.0451618917286396,-0.10165658593177795,0.0067117782309651375,-0.03776821866631508,-0.09056613594293594,-0.0512087456882,-0.01595081016421318,0.11075986176729202,-0.009891724213957787,0.02445843070745468,-0.03804147616028786,0.04498128220438957,-0.015894023701548576,0.020761700347065926,-0.011824684217572212,-0.003200511448085308,-0.13039416074752808,-0.03137063980102539,0.04433102905750275,-0.09999877214431763,0.004022738430649042,0.07530020922422409,-0.0814022496342659,-0.01817958988249302,-0.007267601788043976,-0.018631717190146446,-0.0802447497844696,-0.01135819498449564,0.06276272982358932,0.044700756669044495,-0.0050672972574830055,0.016930975019931793,-0.058798037469387054,-0.039063263684511185,-0.007701043039560318,-0.019157614558935165,-0.018149245530366898,0.053910646587610245,0.049886904656887054,-0.019663775339722633,-0.05562449246644974,-0.007333280984312296,-0.10142125189304352,0.04483582079410553,-0.05558745190501213,-0.015153891406953335,0.04644174873828888,-0.0755096897482872,0.006370774935930967,-0.04453977197408676,0.05973362922668457,0.05707564204931259,-0.05316629260778427,-0.021237539127469063,-0.06310050934553146,-0.04118499904870987,-0.05636623501777649,0.028260568156838417,-0.02441876195371151,-0.022117070853710175,0.07147131115198135,-0.04285939782857895,-0.038067128509283066,0.05902678519487381,-0.06326628476381302,0.07381431013345718,-0.07090120762586594,-0.0004586642317008227,0.008015547879040241,-0.11467407643795013,0.052805472165346146,0.03171929344534874,-0.0033534341491758823,0.013592325150966644,0.06723633408546448,-0.012281741946935654,0.025522829964756966,0.012674338184297085,0.13411475718021393,-0.07257998734712601,0.011637854389846325,0.049956314265728,-0.04345812276005745,-0.06161312386393547,0.058104850351810455,0.009968152269721031,0.009662154130637646,0.005458511412143707,-0.0027204861398786306,0.03137625381350517,0.006870470009744167,-0.09499359130859375,-0.00027204063371755183,0.04132678359746933,-0.10916584730148315,0.03623409569263458,-0.06934773176908493,-0.09578394144773483,0.09798255562782288,-0.014575156383216381,-0.07136673480272293,-0.052394621074199677,-0.04802187532186508,-0.08605825155973434,0.05678379908204079,0.054392628371715546,0.04438576102256775,-0.06550105661153793,0.008313230238854885,-0.0713486596941948,0.019890986382961273,-0.044575754553079605,0.050004541873931885,-0.06000767648220062,0.003174218814820051,-0.030973000451922417,0.06557450443506241,1.6245618455112026e-32,-0.04187384992837906,-0.037423331290483475,-0.012519129551947117,0.028094511479139328,0.047673214226961136,-0.028530118986964226,-0.04429369047284126,-0.06699676066637039,-0.012820817530155182,-0.08102443814277649,-0.06298533082008362,-0.06869335472583771,-0.0874394029378891,0.002283608540892601,-0.002562044421210885,0.01180063746869564,0.10029833018779755,-0.045130446553230286,-0.04905751347541809,-0.07882802933454514,-0.04894353449344635,0.040382105857133865,-0.00540732080116868,-0.002043292857706547,0.01914121024310589,-0.04545589163899422,-0.016334857791662216,-0.0946720540523529,-0.04294057562947273,0.02190021052956581,0.08900671452283859,-0.015341641381382942,0.015913166105747223,-0.005096894223242998,-0.006558841560035944,0.05069088563323021,-0.0051810359582304955,-0.05145886540412903,-0.00841918308287859,-0.00592223322018981,0.04752084240317345,0.04915648698806763,0.06592817604541779,-0.002806136617437005,0.008109328337013721,0.023928247392177582,0.038858864456415176,0.026736674830317497,0.0712667927145958,0.03689398616552353,-0.021145343780517578,0.04247540608048439,-0.04569365084171295,-0.07165342569351196,-0.021261004731059074,0.036494527012109756,0.024112898856401443,0.09106741845607758,0.001024187309667468,0.011462388560175896,0.0266458410769701,-0.04131324589252472,0.0020245835185050964,0.006123008206486702,0.030029715970158577,-0.03927170857787132,-0.0245816633105278,-0.003267721738666296,0.10322092473506927,0.06503261625766754,-0.11713249981403351,-0.0012283178512006998,-0.04205276444554329,-0.012071236036717892,0.07682963460683823,-0.024183766916394234,0.0474664531648159,0.002816650317981839,-0.05235821753740311,-0.07778013497591019,-0.08581523597240448,-0.01648023910820484,-0.054021451622247696,0.032204631716012955,0.06137409806251526,0.005242130719125271,0.011489725671708584,0.02185208722949028,0.08835206925868988,0.01672651618719101,0.08228873461484909,0.05652035400271416,0.030543917790055275,0.011700968258082867,-0.020676376298069954,-1.5213278745068754e-32,-0.04426098242402077,-0.02273368462920189,-0.04932664707303047,0.12771153450012207,0.00046847405610606074,0.04527553543448448,-0.0780220702290535,0.046551529318094254,-0.008879538625478745,-0.06395984441041946,-0.013728354126214981,0.02251216024160385,-0.0023766893427819014,-0.001928549027070403,0.005809431429952383,0.0579710379242897,0.10847025364637375,0.06631392985582352,-0.016374778002500534,-0.003165583126246929,-0.05496155098080635,0.013972437009215355,0.011417120695114136,-0.04968629032373428,0.028515998274087906,0.007760641630738974,0.061661381274461746,-0.052642423659563065,0.020186759531497955,-0.030064981430768967,0.08045890182256699,0.009264934808015823,-0.006867354270070791,0.015455967746675014,0.02517639845609665,-0.041345980018377304,0.18588493764400482,-0.05950826033949852,0.0018985661445185542,0.016376269981265068,0.024230508133769035,0.08464498817920685,0.10922853648662567,-0.018079349771142006,-0.025262659415602684,-0.05594031885266304,-0.05688116326928139,0.02962259203195572,-0.04758564382791519,0.03957599774003029,0.1425209641456604,-0.05953590199351311,0.05155554041266441,0.0024987971410155296,0.022471223026514053,-0.03544881194829941,0.028932983055710793,-0.03103816695511341,-0.039007335901260376,0.002877407241612673,0.02513248659670353,0.04618494585156441,-0.03078446537256241,-0.0637056827545166,0.07013513147830963,0.009810103103518486,-0.08320672065019608,0.09670059382915497,-0.05825522541999817,0.025041276589035988,0.053542718291282654,-0.043117254972457886,-0.07704775780439377,-0.008623628877103329,0.013075541704893112,-0.021018149331212044,0.04820007458329201,0.008811457082629204,0.05816052109003067,-0.05795229971408844,-0.06484243273735046,-0.016933828592300415,-0.030072638764977455,-0.08644454926252365,-0.0051767961122095585,-0.05030731111764908,-0.027742965146899223,0.032813116908073425,0.07502644509077072,-0.03232225775718689,-0.01036431547254324,-0.041584111750125885,0.04236062616109848,-0.040608830749988556,0.036950234323740005,-5.603360264672119e-8,0.036107540130615234,-0.07432863116264343,-0.05508740618824959,0.04685467109084129,0.04931683465838432,-0.051177751272916794,-0.010454307310283184,-0.010900759138166904,0.02879411354660988,0.02118706703186035,0.025253189727663994,0.03361273184418678,0.035995449870824814,-0.015071384608745575,0.011905697174370289,0.08930328488349915,0.03707132488489151,0.06055840104818344,-0.039455343037843704,-0.040551215410232544,0.04183945432305336,0.035643041133880615,-0.030685970559716225,-0.09240388125181198,-0.03457459807395935,0.006247127428650856,0.022219957783818245,0.030627809464931488,0.018778426572680473,-0.04105428233742714,0.04963376745581627,0.03723821043968201,-0.0783202052116394,-0.09357140213251114,-0.046440865844488144,0.03294169902801514,0.007599088829010725,-0.016200223937630653,0.0460970364511013,0.01771460846066475,0.10170027613639832,-0.0016216313233599067,0.05500037223100662,-0.029460739344358444,-0.019948849454522133,-0.011690542101860046,0.03890139237046242,-0.04408023878931999,-0.038637273013591766,-0.045628052204847336,-0.06259086728096008,0.03677640110254288,0.09269194304943085,0.018343180418014526,-0.09622690081596375,-0.04716158285737038,0.09811282902956009,0.02172531932592392,0.0026076468639075756,-0.09823101758956909,0.04695646092295647,0.053181909024715424,0.06650503724813461,0.023317541927099228]},{"text":"Romae principis urbium Dignatur suboles inter amabilis Vatum ponere me choros, 15 Et iam dente minus mordeor invido.","book":"Homage to Catalonia","chapter":25,"embedding":[-0.05037296190857887,0.022643238306045532,0.008809705264866352,-0.06122848764061928,-0.1586184948682785,-0.0986272320151329,-0.016899267211556435,0.12357943505048752,0.03285971283912659,0.06242477148771286,0.04107168689370155,-0.022059738636016846,-0.02554096095263958,-0.0206030011177063,-0.0785447210073471,-0.0014998845290392637,-0.061160676181316376,0.14252744615077972,-0.010476312600076199,0.015193760395050049,0.029287688434123993,-0.03165627270936966,-0.006413725204765797,-0.03126984089612961,-0.09087704122066498,0.0387394055724144,-0.04056411236524582,0.021747415885329247,0.058598242700099945,-0.07201524823904037,0.028812900185585022,0.05275573953986168,0.09383242577314377,-0.10712381452322006,0.006032666191458702,-0.04217616468667984,-0.05557774007320404,-0.08873865753412247,0.08382876217365265,0.03975644335150719,-0.02935408242046833,-0.0719679668545723,-0.03559131175279617,-0.04740985110402107,-0.0030240905471146107,0.005057713016867638,-0.053569238632917404,0.054043591022491455,0.022325821220874786,-0.050873249769210815,-0.055793169885873795,-0.027760839089751244,-0.0144090186804533,0.04523399472236633,-0.049136266112327576,0.006210410501807928,-0.010293890722095966,-0.03427290543913841,0.05086274445056915,-0.06322211027145386,0.025582559406757355,0.045241404324769974,-0.0385841503739357,0.008698709309101105,-0.0808209478855133,0.044391877949237823,-0.009658356197178364,-0.044473011046648026,-0.04020675644278526,0.046639472246170044,0.05007055774331093,-0.05482228100299835,-0.05237923562526703,0.029044918715953827,-0.0696909949183464,0.07772330194711685,0.01414154190570116,0.01749470643699169,0.011574579402804375,-0.07958085834980011,-0.010939100757241249,0.015708357095718384,-0.0031983708031475544,0.0020179382991045713,0.011495614424347878,-0.023326149210333824,0.05660897493362427,-0.05293228104710579,-0.02638750709593296,-0.019721776247024536,-0.007404402829706669,-0.010229951702058315,-0.06398475915193558,0.004606765229254961,0.020025698468089104,-0.054878540337085724,-0.0022470764815807343,-0.0076714325696229935,0.013713753782212734,0.038772691041231155,0.014853562228381634,-0.034361060708761215,0.03948570042848587,0.02413807064294815,-0.12245466560125351,-0.07580370455980301,-0.02489139325916767,-0.038187626749277115,0.053953468799591064,0.04113242030143738,-0.09229356050491333,-0.10974635928869247,-0.022239211946725845,-0.053719453513622284,-0.008933010511100292,-0.05680583789944649,0.055216021835803986,0.003672388382256031,0.04903581365942955,-0.03562590479850769,0.005780215375125408,0.011707093566656113,-0.0002863223780877888,-0.04997745901346207,-0.0014257055008783937,-0.07504016160964966,0.031133543699979782,1.102405712039607e-32,-0.04724317789077759,-0.08752629160881042,-0.007436479441821575,-0.03326951712369919,-0.006783969234675169,-0.03837455436587334,-0.02723989076912403,-0.03418371081352234,0.00972492340952158,-0.006294282153248787,-0.08986049890518188,-0.014560405164957047,0.01648057997226715,-0.008868135511875153,-0.020356539636850357,0.06510113924741745,0.0720701515674591,0.0209506843239069,-0.03684679791331291,0.028163988143205643,-0.04491996020078659,0.04440128430724144,0.04913053289055824,0.026190143078565598,0.037723567336797714,-0.041371870785951614,-0.04646123945713043,-0.16082575917243958,-0.04860425367951393,0.030111942440271378,0.08979299664497375,0.026299120858311653,-0.043223701417446136,0.0045487768948078156,-0.044831447303295135,0.014177024364471436,0.12575942277908325,-0.04204289987683296,-0.11583574116230011,-0.020867466926574707,0.034730877727270126,-0.03723202645778656,0.14185041189193726,-0.008024608716368675,0.08193384855985641,-0.01831667311489582,0.007995770312845707,0.08045746386051178,0.014286437071859837,0.05646168068051338,-0.029277032241225243,0.03273726999759674,-0.0066357762552797794,-0.0009514996781945229,-0.0014462219551205635,0.02629142999649048,-0.023765472695231438,0.07777023315429688,-0.012358221225440502,-0.01523441169410944,-0.017594626173377037,0.06995762884616852,0.00897819735109806,-0.045178331434726715,-0.003988500684499741,-0.007710645906627178,-0.07820399105548859,-0.033019497990608215,0.02945292927324772,0.04639843478798866,-0.03748922795057297,-0.03868070989847183,-0.08154606819152832,0.061744365841150284,-0.06467273086309433,0.03279897943139076,-0.014164264313876629,0.012538986280560493,-0.02265673130750656,0.0033425053115934134,-0.11362951993942261,0.03841278329491615,0.015674622729420662,-0.012255662120878696,0.08517195284366608,0.03983636200428009,0.01442751381546259,0.015036283992230892,0.08570633083581924,0.04157648980617523,0.0005833808099851012,0.05664059892296791,-0.08330344408750534,0.007174563128501177,0.06247137486934662,-1.13798763216541e-32,0.036915648728609085,-0.012515387497842312,-0.07139330357313156,0.08227135986089706,-0.03900038078427315,0.07311645895242691,-0.08116349577903748,0.006514303851872683,0.009702508337795734,-0.02002689428627491,-0.019108226522803307,0.022002140060067177,0.09095203876495361,-0.11256775259971619,-0.020956112071871758,0.08320457488298416,0.04405274987220764,-0.01733008772134781,-0.029540657997131348,-0.006595497019588947,-0.08558293431997299,0.08921852707862854,0.02399243600666523,-0.04671952873468399,-0.0010360467713326216,-0.020407212898135185,0.07685063034296036,-0.054096829146146774,-0.08266692608594894,-0.005220216233283281,0.014630730263888836,-0.00351093546487391,-0.0489976741373539,0.010610236786305904,0.05043468996882439,0.05744190141558647,0.04326122999191284,-0.008640344254672527,0.0036627838853746653,-0.05978482961654663,-0.1065373346209526,0.06763430684804916,0.1359790712594986,0.006832309998571873,0.07193128764629364,-0.0607035793364048,-0.034014955163002014,0.01511661522090435,-0.097540482878685,0.046949341893196106,0.015125546604394913,-0.002257400657981634,0.046887122094631195,0.017257487401366234,0.01743323542177677,0.028139542788267136,-0.025776922702789307,-0.04315337538719177,-0.003472171491011977,0.03166612982749939,0.1147826537489891,0.03903783857822418,-0.03643879294395447,-0.017433082684874535,0.02826921083033085,0.010547145269811153,-0.058254510164260864,0.026823922991752625,0.0007417274755425751,-0.0022983537055552006,0.04333848878741264,-0.0060151745565235615,0.019719643518328667,0.00801986362785101,0.023313183337450027,0.00937703438103199,0.06388086080551147,0.02165304124355316,-0.005706407129764557,-0.04687974601984024,-0.023080872371792793,-0.0073892599903047085,0.010332810692489147,-0.05048375204205513,-0.025043930858373642,0.027469707652926445,-0.004547320771962404,0.009677521884441376,-0.009077049791812897,-0.017774082720279694,-0.029159052297472954,0.0243439432233572,-0.049328409135341644,0.0024038825649768114,0.059431567788124084,-3.969365636180555e-8,0.08631717413663864,-0.051480669528245926,-0.049217209219932556,0.061209406703710556,0.05887623131275177,-0.08546311408281326,-0.07113803178071976,0.023303555324673653,-0.008930550888180733,0.01779363863170147,0.0026088387239724398,0.024627262726426125,-0.018160920590162277,0.05634794011712074,0.04224550351500511,0.06762245297431946,0.12770526111125946,0.08959546685218811,-0.07168756425380707,-0.04260910674929619,0.0021237684413790703,-0.07149714231491089,-0.017077507451176643,0.026582570746541023,0.02049063891172409,-0.0656418427824974,0.009285466745495796,-0.11055570095777512,-0.06019219011068344,0.0024634976871311665,0.04156437888741493,0.0984785407781601,0.012870092876255512,-0.027162503451108932,0.10130023211240768,0.11951305717229843,0.029023002833127975,0.021229194477200508,0.01747151091694832,0.0303728599101305,0.030317792668938637,-0.06006743758916855,0.08511879295110703,-0.05737653747200966,-0.009838327765464783,-0.013370244763791561,-0.0245220810174942,0.005773147568106651,-0.015645528212189674,0.0025302148424088955,-0.029573751613497734,0.04277937486767769,0.08309118449687958,0.027436215430498123,0.0011008536675944924,0.02570859156548977,0.06680627912282944,0.006490972358733416,0.028218816965818405,0.04554407671093941,0.030661670491099358,0.11038453876972198,0.025662753731012344,-0.05264858156442642]},{"text":"Fortes creantur fortibus et bonis; Est in iuvencis, est in equis patrum 30 Virtus, neque imbellem feroces Progenerant aquilae columbam; Doctrina sed vim promovet insitam, Rectique cultus pectora roborant; Utcumque defecere mores, 35 Indecorant bene nata culpae.","book":"Homage to Catalonia","chapter":25,"embedding":[0.03782672435045242,0.013816449791193008,-0.06931134313344955,-0.02710016816854477,-0.031160937622189522,0.03658600151538849,0.007448999211192131,0.14477063715457916,-0.012430325150489807,0.026530107483267784,-0.0024471760261803865,-0.08986656367778778,0.026040079072117805,-0.043642807751894,-0.11478008329868317,-0.11764147877693176,-0.0009046377381309867,0.045742396265268326,0.05796288698911667,-0.012912600301206112,-0.03261667862534523,-0.012188553810119629,0.02594844624400139,-0.013267150148749352,-0.13901135325431824,0.03491443768143654,-0.0307136382907629,-0.03872885927557945,0.004794031381607056,-0.06359035521745682,0.0055041261948645115,0.08612639456987381,0.04112459719181061,0.007416754029691219,0.015159097500145435,0.0005100861890241504,0.012619322165846825,-0.08117407560348511,0.11183664202690125,0.059779517352581024,-0.057854000478982925,-0.09079005569219589,-0.08326220512390137,-0.032966941595077515,-0.02390134148299694,-0.04062628000974655,-0.014648430049419403,0.09605854749679565,0.06252721697092056,0.01227892842143774,-0.08564415574073792,-0.00002701783705560956,-0.0833003968000412,0.08904379606246948,-0.015219716355204582,0.002571025164797902,0.07011313736438751,-0.10752150416374207,-0.011657149530947208,0.0020031509920954704,0.04792448505759239,0.025567935779690742,-0.02211439236998558,0.0329488106071949,-0.01661651022732258,-0.011035948060452938,-0.00020505930297076702,0.03648804500699043,-0.0455237440764904,0.0054801213555037975,0.044960867613554,0.015489975921809673,-0.01505886111408472,0.008276337757706642,-0.04910726100206375,0.061172083020210266,-0.013261232525110245,-0.03689169883728027,-0.003488375572487712,-0.03940580040216446,-0.0015822985442355275,0.06807926297187805,0.04024142026901245,-0.048735279589891434,0.03815615549683571,-0.04444313049316406,-0.012606296688318253,-0.044000353664159775,0.11494346708059311,-0.023214848712086678,-0.002418018411844969,0.05420801788568497,-0.04065791144967079,-0.03493982553482056,0.00666023138910532,-0.0004980393568985164,-0.035253867506980896,-0.07667164504528046,0.0372399240732193,0.006952534429728985,-0.0712437853217125,-0.051952943205833435,-0.02277618646621704,0.04766812548041344,-0.1046736091375351,-0.021536052227020264,-0.12047368288040161,-0.029927007853984833,0.01522072870284319,0.08895068615674973,-0.03191021829843521,-0.0341513492166996,-0.027224766090512276,-0.038613464683294296,0.04986688867211342,0.007918019779026508,-0.013187000527977943,-0.09208541363477707,0.05069507658481598,-0.03919553384184837,0.0229168850928545,-0.018305011093616486,-0.03574857488274574,-0.040457893162965775,0.062475141137838364,0.0037166383117437363,0.03479661047458649,1.5546609270027614e-32,-0.0686969980597496,-0.030273642390966415,-0.004036345053464174,0.011016659438610077,0.01045911479741335,-0.015543542802333832,-0.0391896553337574,-0.04142763093113899,0.028656980022788048,-0.061491742730140686,-0.09888414293527603,-0.0184248648583889,0.013824617490172386,-0.05420965701341629,-0.030685799196362495,0.03969038650393486,0.08733706176280975,-0.0312972292304039,-0.013523457571864128,-0.024057608097791672,-0.042988114058971405,0.04654612019658089,0.07434564083814621,-0.047075510025024414,0.015107637271285057,-0.04486361891031265,-0.019416000694036484,-0.048619598150253296,0.010961964726448059,0.017700398340821266,0.08307218551635742,-0.02122379094362259,-0.00754973478615284,-0.0005048384773544967,0.07271593064069748,-0.036130666732788086,0.03762904927134514,-0.04423271492123604,-0.07122855633497238,0.04497024416923523,-0.010248574428260326,0.03151030093431473,0.07804641127586365,-0.011263319291174412,0.08964676409959793,-0.022537074983119965,-0.010792741551995277,0.041546035557985306,0.04383169114589691,0.01809825375676155,-0.024746885523200035,0.04971405491232872,-0.015528589487075806,-0.05125639587640762,-0.027968723326921463,-0.013408192433416843,-0.08630445599555969,0.028199251741170883,-0.040485307574272156,0.04424796625971794,0.07865914702415466,-0.0010052393190562725,0.07644040882587433,-0.05570362135767937,-0.004687204957008362,-0.08062282204627991,-0.04766571894288063,0.10662148147821426,0.10215713828802109,0.06330376863479614,-0.044725846499204636,0.031881242990493774,-0.007757814135402441,0.015450919978320599,0.076607845723629,0.011557834222912788,0.07835470139980316,-0.05688227713108063,-0.04078523814678192,0.0038612240459769964,-0.03970276936888695,0.003324163146317005,-0.014847004786133766,0.017739372327923775,0.015224866569042206,-0.008253726176917553,-0.05542244762182236,0.04330029711127281,0.0946749672293663,-0.020127780735492706,0.050591468811035156,0.0266492310911417,0.0007116380147635937,0.011537413112819195,0.011339409276843071,-1.535465692001009e-32,-0.006239988375455141,-0.03290610760450363,-0.09712576866149902,0.08568081259727478,-0.01938016340136528,0.036493852734565735,-0.023848023265600204,0.08556236326694489,-0.07390756905078888,-0.016817061230540276,-0.06109030917286873,0.03307826444506645,0.07224152237176895,-0.13779999315738678,-0.048065293580293655,0.09963192790746689,0.05149330943822861,-0.00533803878352046,-0.04239600524306297,-0.004195641726255417,-0.06370605528354645,-0.031587742269039154,0.067132368683815,-0.04363740608096123,0.02022896148264408,-0.001206503831781447,0.02564893290400505,0.00916039478033781,-0.11490742862224579,0.0005721256602555513,0.122488833963871,0.006607138551771641,-0.03199438750743866,0.04744426906108856,-0.020373331382870674,0.04829986393451691,0.09995187073945999,-0.06025247275829315,0.061939507722854614,0.04376782476902008,0.033563923090696335,0.06822328269481659,0.0336102731525898,-0.005788507405668497,-0.018519345670938492,-0.05628242716193199,-0.06900341063737869,-0.017561359331011772,0.02947353385388851,0.01159877423197031,0.06889164447784424,0.01053223293274641,-0.004479342605918646,-0.05972421541810036,0.03743009269237518,-0.046281520277261734,-0.01465095579624176,-0.032557182013988495,-0.0496579110622406,0.0914309099316597,0.06917916238307953,0.05333024263381958,-0.0016020903130993247,-0.027114873751997948,0.13064511120319366,-0.02569764479994774,-0.10483965277671814,0.10215756297111511,0.008048223331570625,0.10320086032152176,0.08599825203418732,0.020891763269901276,-0.09086306393146515,-0.04160151258111,-0.004099220037460327,0.016260670498013496,0.033744752407073975,-0.015943944454193115,-0.05019429698586464,0.02439589612185955,-0.009726393967866898,-0.07329242676496506,0.01505656260997057,-0.03288900479674339,-0.08830848336219788,-0.06077380105853081,0.027200354263186455,0.01577642187476158,0.027942342683672905,-0.007354652509093285,-0.019262420013546944,-0.04176929593086243,-0.003182753222063184,-0.04244371876120567,0.07889172434806824,-5.563198612890119e-8,0.039682358503341675,-0.06287133693695068,-0.050378408282995224,0.07707222551107407,0.07523296028375626,-0.07842684537172318,-0.07565785199403763,-0.05611155182123184,0.03884467855095863,0.0311111006885767,-0.07899205386638641,-0.008098624646663666,0.019560879096388817,0.030103784054517746,0.0642993152141571,0.07280459254980087,0.03730444982647896,0.036067768931388855,-0.058937542140483856,-0.022228335961699486,0.022805675864219666,-0.029551038518548012,-0.10016373544931412,-0.011227278038859367,-0.04886893182992935,-0.04682760685682297,-0.0033893054351210594,-0.06145310401916504,0.006402357015758753,-0.0023843662347644567,-0.0360332690179348,0.039911672472953796,-0.06066164746880531,-0.07370706647634506,0.010587558150291443,0.035971496254205704,0.03639530763030052,0.04304833337664604,-0.05567706748843193,0.020387589931488037,0.08378175646066666,-0.010629498399794102,0.015445703640580177,-0.05222034081816673,-0.056673720479011536,-0.01445107813924551,-0.04224828630685806,0.013440214097499847,-0.0059027280658483505,-0.008782552555203438,-0.004512371961027384,0.02809957042336464,0.07744945585727692,0.07323088496923447,0.002999968361109495,-0.04890594631433487,0.03781750798225403,-0.04360797256231308,0.02704969234764576,-0.0029189607594162226,-0.04158329218626022,0.05844813585281372,0.07316219061613083,-0.021285023540258408]},{"text":"Post hoc secundis usque laboribus 45 Romana pubes crevit, et impio Vastata Poenorum tumultu Fana deos habuere rectos, Dixitque tandem perfidus Hannibal: 'Cervi luporum praeda rapacium, 50 Sectamur ultro, quos opimus Fallere et effugerest triumphus.","book":"Homage to Catalonia","chapter":25,"embedding":[-0.038758374750614166,0.023392600938677788,-0.005883784499019384,0.006276546511799097,-0.12002905458211899,0.033296432346105576,0.003268806729465723,0.11919088661670685,0.00024949878570623696,0.045071519911289215,0.05414648354053497,-0.10325955599546432,0.04683675989508629,-0.044153615832328796,-0.09176301211118698,-0.07962974160909653,0.0019520233618095517,0.07376313209533691,0.040348827838897705,0.016216328367590904,-0.004442764446139336,-0.093859001994133,-0.0232441034168005,0.04405238479375839,-0.022276446223258972,0.06348097324371338,-0.052313536405563354,-0.021738599985837936,-0.010073640383780003,-0.09059551358222961,0.05970391631126404,0.010670693591237068,0.04480595886707306,-0.054356250911951065,0.051281657069921494,-0.05449175462126732,-0.054000966250896454,-0.036085497587919235,0.1278785616159439,0.0784807875752449,-0.037390440702438354,0.002053723903372884,-0.027290500700473785,0.010230405256152153,-0.02645750343799591,-0.002112658927217126,-0.005771564319729805,0.09011562168598175,0.02115766704082489,0.010635258629918098,-0.008265836164355278,-0.03519666567444801,-0.01164286769926548,0.0048149055801332,-0.059366967529058456,-0.05408910661935806,-0.02800000086426735,-0.11792194843292236,0.047910939902067184,-0.03638578951358795,0.0386228933930397,0.07439489662647247,-0.021636757999658585,0.008221426978707314,-0.09933888912200928,-0.02080862782895565,-0.0061973389238119125,-0.03386335074901581,-0.07519572228193283,0.06951815634965897,0.1272851824760437,-0.05998939275741577,-0.0032641030848026276,0.036259159445762634,-0.01955411024391651,0.05781349539756775,0.060717757791280746,-0.09387625008821487,-0.007145521230995655,-0.1363607794046402,-0.04861770570278168,0.017113275825977325,-0.0054179648868739605,-0.0006088309455662966,0.015751725062727928,-0.00477434229105711,0.0733761191368103,-0.00917998980730772,0.02935943379998207,-0.09492465108633041,-0.06279601901769638,-0.008373242802917957,-0.06489364802837372,-0.038312070071697235,0.0568452849984169,0.05698982626199722,-0.052091579884290695,0.05265650153160095,0.015366928651928902,0.001741421059705317,0.00515839084982872,-0.023833323270082474,-0.0059470366686582565,0.02017405815422535,-0.14045745134353638,0.003295805072411895,-0.0331437848508358,-0.01078750565648079,0.052608244121074677,-0.03462272509932518,-0.060015786439180374,-0.017468607053160667,-0.04722109064459801,-0.01598554663360119,0.04011644795536995,0.019679198041558266,0.00023055430210661143,-0.06458408385515213,-0.004503660835325718,-0.037077322602272034,-0.00023945927387103438,-0.031551141291856766,-0.0005866063293069601,-0.038702841848134995,0.048185236752033234,-0.0754547119140625,0.08762398362159729,2.190361806708525e-32,-0.08521617949008942,-0.1073915958404541,-0.09452411532402039,0.007567841559648514,0.03776921331882477,-0.030673984438180923,-0.09325920790433884,-0.06909751147031784,-0.03255371004343033,-0.045267149806022644,-0.10888879001140594,0.03342893347144127,-0.028354274109005928,0.002633323660120368,-0.05946270748972893,0.016983147710561752,0.1338457316160202,-0.0312577486038208,0.014700599014759064,-0.05269702896475792,-0.04183145612478256,0.07847913354635239,0.06048237904906273,0.03866320103406906,0.11078754812479019,0.06757745891809464,0.03217776119709015,-0.05822828412055969,-0.035211943089962006,0.06362449377775192,0.031241469085216522,-0.06308474391698837,-0.026594696566462517,0.007846685126423836,0.03151322156190872,0.03939643129706383,-0.03662623465061188,-0.018014539033174515,-0.05885089933872223,0.035077258944511414,-0.02506718784570694,0.08930020779371262,0.006764508783817291,0.0059541016817092896,0.027785053476691246,0.03496839851140976,0.017987901344895363,0.05035852640867233,0.0674879252910614,-0.014370810240507126,-0.021693238988518715,0.03451067954301834,-0.003740855259820819,-0.003139924956485629,-0.016600051894783974,0.013589924201369286,-0.09733159840106964,0.04700028896331787,0.007362578064203262,0.017547493800520897,0.049450021237134933,0.062347881495952606,-0.040320202708244324,-0.004723821301013231,0.07572048902511597,-0.010104754939675331,-0.04109270125627518,0.04624567925930023,0.0605916790664196,0.02785813994705677,-0.1098649725317955,0.003828331595286727,-0.052121251821517944,-0.00816147681325674,0.02072320319712162,0.015895763412117958,0.04032803326845169,-0.029718516394495964,-0.04201557859778404,-0.05125904083251953,-0.09781705588102341,-0.056149743497371674,-0.008539384230971336,-0.0070650652050971985,0.07883566617965698,0.06806541979312897,-0.01510303933173418,0.012471448630094528,0.03227364644408226,0.094489187002182,0.06780733913183212,0.008428925648331642,-0.011519860476255417,0.017432400956749916,-0.008492741733789444,-1.9520882201760842e-32,-0.0425477996468544,-0.028982989490032196,-0.043430645018815994,0.09915558993816376,-0.0020399224013090134,0.04264399781823158,-0.09000316262245178,0.026943683624267578,-0.026980193331837654,0.008166656829416752,-0.05333411693572998,-0.02828190289437771,0.030778713524341583,-0.07928881049156189,-0.03815685957670212,0.04234425723552704,0.09187817573547363,0.0533008873462677,-0.06417078524827957,0.0046072909608483315,-0.009850621223449707,0.006599111948162317,0.014486445114016533,-0.11586218327283859,0.05313167721033096,0.034758560359478,0.0007495951140299439,-0.00530522083863616,-0.05657698214054108,-0.028076788410544395,-0.009938427247107029,0.027388494461774826,-0.01550709456205368,0.003517397679388523,0.007752393372356892,0.012611412443220615,0.05048498883843422,0.05144461989402771,0.021819613873958588,-0.01528108585625887,0.0032646339386701584,0.04402530938386917,0.026574572548270226,0.0562884658575058,0.04708614572882652,-0.02560543827712536,-0.07369737327098846,-0.006946620065718889,-0.043857429176568985,0.020220890641212463,0.05461438000202179,-0.09399977326393127,0.05872098356485367,-0.07111365348100662,0.05512223392724991,-0.07572534680366516,0.00931757315993309,-0.01329838391393423,-0.009174809791147709,0.026380568742752075,0.07119257748126984,0.021451827138662338,0.018542403355240822,0.03536595031619072,0.10692252963781357,-0.02156011015176773,-0.07809901982545853,0.03550947457551956,-0.06259992718696594,0.032907500863075256,0.10625925660133362,-0.07711653411388397,-0.12495482712984085,0.02291463315486908,0.02363019622862339,0.06483272463083267,-0.03540999814867973,0.0016163409454748034,0.04395178332924843,0.056507766246795654,-0.02514512836933136,-0.05019492283463478,0.0034389751963317394,0.03259766846895218,0.013375828973948956,0.015031690709292889,-0.01750287599861622,0.050439901649951935,0.06848963350057602,0.013368644751608372,0.03788665309548378,-0.013825839385390282,0.11596184968948364,-0.04541026055812836,0.07169068604707718,-6.384364326095238e-8,-0.028603052720427513,-0.006979716010391712,-0.07566211372613907,0.09686204791069031,0.029246049001812935,-0.08606689423322678,0.004264442715793848,-0.07207658141851425,-0.016218401491642,0.046576306223869324,-0.007415155880153179,0.027010057121515274,0.048282790929079056,0.022475402802228928,0.016465244814753532,0.036534737795591354,0.04246184974908829,-0.0256658848375082,-0.028316346928477287,-0.012049351818859577,0.042475782334804535,-0.06336221098899841,-0.006559670902788639,0.009930676780641079,-0.09083208441734314,-0.03455258160829544,0.06618721038103104,-0.029655367136001587,-0.017145788297057152,-0.0654139295220375,-0.0041113789193332195,0.018299413844943047,-0.05984848737716675,-0.10737940669059753,0.012578406371176243,0.06990433484315872,-0.021589700132608414,0.058596398681402206,0.035821713507175446,0.02144332230091095,0.028493350371718407,0.010274671949446201,0.06539551913738251,-0.03552791848778725,0.007326522376388311,0.019391674548387527,-0.02669331431388855,-0.030414355918765068,-0.018941307440400124,-0.07388083636760712,-0.06351257860660553,-0.03135337308049202,0.07314654439687729,0.04709458723664284,-0.09330493211746216,-0.0035709708463400602,0.03995490074157715,-0.0023017346393316984,-0.020202001556754112,-0.06659538298845291,0.04115964472293854,0.04140564054250717,0.022514265030622482,-0.00022197492944542319]},{"text":"Merses profundo, pulchrior evenit; 65 Luctere, multa proruet integrum Cum laude victorem geretque Proelia coniugibus loquenda.","book":"Homage to Catalonia","chapter":25,"embedding":[-0.007199256215244532,0.06845235824584961,-0.013935732655227184,-0.0006988492095842957,-0.06817489862442017,0.07174182683229446,0.022029630839824677,0.08166151493787766,-0.007764652371406555,0.03436436131596565,0.03877948224544525,-0.1101837232708931,-0.015765074640512466,-0.06929116696119308,-0.07741200923919678,-0.09083539992570877,-0.04346522316336632,0.04192114621400833,-0.006453308276832104,0.0029051427263766527,0.052014775574207306,-0.03733346238732338,-0.005832452327013016,0.06242572143673897,-0.12091069668531418,-0.02993314154446125,-0.051009781658649445,-0.004956247750669718,0.01701585203409195,-0.009523535147309303,0.018441759049892426,0.12879347801208496,0.04759368300437927,-0.0006644323584623635,0.010368241928517818,-0.033442191779613495,-0.03578061982989311,0.03958320990204811,0.02327885292470455,0.09366591274738312,-0.0206986702978611,-0.08033087104558945,-0.04748526215553284,-0.027248958125710487,-0.010767917148768902,-0.10907211154699326,0.0577736496925354,0.07788446545600891,0.009793195873498917,0.042318008840084076,-0.0950162410736084,0.0019417207222431898,-0.021458374336361885,-0.04269028082489967,-0.04710330814123154,0.023022843524813652,0.027075402438640594,-0.07000347226858139,-0.023664947599172592,-0.009730089455842972,-0.08547192811965942,0.02934817224740982,-0.021478604525327682,0.002344564301893115,-0.012922747991979122,-0.07842768728733063,0.013562767766416073,0.06258513033390045,-0.034212611615657806,0.006953407544642687,0.12140891700983047,-0.09050501137971878,-0.04769955947995186,0.07255546003580093,-0.01049889624118805,0.0684354230761528,-0.03228820115327835,0.006428824737668037,0.019385196268558502,-0.08996603637933731,0.0055229756981134415,-0.058878570795059204,-0.018119752407073975,0.009034319780766964,0.0021030970383435488,-0.06354568153619766,-0.011437454260885715,-0.005245109088718891,0.03529880568385124,-0.033654551953077316,0.003051653504371643,-0.002827197778970003,-0.10815375298261642,0.0017271892866119742,-0.0013265896122902632,0.07389179617166519,-0.06308000534772873,-0.04956355318427086,0.032817840576171875,-0.00701368972659111,-0.024196071550250053,0.011885111220180988,0.00413494510576129,0.003715778235346079,-0.06856826692819595,0.010887295007705688,0.010439882054924965,-0.03492977097630501,0.03611345961689949,0.008180543780326843,-0.052654340863227844,-0.05008874833583832,0.0026593615766614676,-0.023086171597242355,0.08062073588371277,0.07837861031293869,-0.02573580853641033,-0.01210337970405817,0.026207901537418365,-0.038213975727558136,0.018784204497933388,0.04134409502148628,0.009684411808848381,-0.08487872034311295,-0.04129825159907341,-0.06565111875534058,0.11524684727191925,1.1007965337417283e-32,-0.03794902190566063,-0.09597708284854889,-0.012772844173014164,0.09771032631397247,-0.011666099540889263,0.001285781734623015,-0.012331661768257618,-0.005110486876219511,-0.033791810274124146,-0.0465659573674202,-0.035971593111753464,-0.030179094523191452,-0.08539469540119171,0.04229031503200531,-0.012665796093642712,0.056098129600286484,0.08804986625909805,-0.01051773875951767,-0.018353916704654694,-0.010122772306203842,0.00288230087608099,0.025590915232896805,0.024603044614195824,-0.019818611443042755,0.060179807245731354,0.05243784934282303,0.029642999172210693,-0.013220712542533875,0.05241507291793823,0.041799962520599365,0.1387975960969925,-0.032592885196208954,0.02632821910083294,-0.021192517131567,-0.047064702957868576,0.013266540132462978,-0.04088207706809044,-0.01797441765666008,-0.01444025058299303,0.01958746463060379,-0.021671339869499207,0.02803448773920536,0.044321209192276,0.005102208815515041,-0.006602899171411991,0.0782216340303421,0.08462294936180115,0.0036358169745653868,0.0813671424984932,0.05647488683462143,-0.018458690494298935,-0.04504960775375366,-0.08261694014072418,-0.014081212691962719,0.022990558296442032,0.024946900084614754,-0.06626105308532715,0.08966240286827087,-0.004057962913066149,-0.08112428337335587,0.022067807614803314,0.00909375585615635,-0.06434576958417892,0.03287939354777336,0.01814340241253376,-0.03402465581893921,-0.053374096751213074,0.0013011081609874964,0.07194162905216217,0.009891590103507042,-0.09010430425405502,0.01646309345960617,-0.016126103699207306,0.021750345826148987,-0.010344836860895157,0.05872347950935364,-0.028827503323554993,-0.023507842794060707,-0.02197449281811714,-0.02130879834294319,-0.11076474189758301,0.08552691340446472,-0.013554009608924389,0.030506359413266182,0.08546330779790878,0.03767279535531998,0.011134810745716095,0.054773375391960144,0.016571903601288795,0.03583811968564987,0.04368513450026512,0.018540939316153526,0.0630723387002945,0.03745071589946747,0.021502213552594185,-1.1578077158830215e-32,0.031306132674217224,-0.057536061853170395,-0.0067336526699364185,0.09287770837545395,0.04287927225232124,0.06663098931312561,-0.08179610222578049,0.06238919124007225,-0.03305031359195709,-0.07811982184648514,0.021843474358320236,-0.0900476947426796,0.0587354339659214,-0.05754179134964943,-0.04626200348138809,0.10398712754249573,0.029563240706920624,0.04000823199748993,-0.0647234171628952,-0.04387960582971573,-0.06408300250768661,0.026529017835855484,0.06217784807085991,-0.02234332263469696,-0.03723270073533058,-0.06226499378681183,0.025691654533147812,-0.05031672492623329,-0.04914722591638565,0.044770821928977966,0.06309233605861664,-0.0032511381432414055,-0.07991743087768555,0.013343455269932747,-0.02537672221660614,-0.03828196972608566,0.1034000962972641,-0.011470042169094086,-0.011716397479176521,0.05723872780799866,-0.017455454915761948,0.0010274782544001937,0.0735834538936615,-0.015767505392432213,0.02716091461479664,-0.07246148586273193,-0.08159049600362778,-0.12928295135498047,0.05521739274263382,-0.02000814490020275,0.00647986913099885,-0.01813003607094288,0.011498885229229927,-0.019947709515690804,0.03754141181707382,-0.01955402083694935,-0.021456468850374222,-0.009123611263930798,-0.029918350279331207,0.0037532318383455276,0.0448254719376564,0.04391071945428848,-0.029970981180667877,0.009829473681747913,0.06911642104387283,0.06250524520874023,-0.0594860315322876,0.07798189669847488,-0.01540051307529211,0.043664634227752686,0.1203717514872551,-0.07067303359508514,-0.04179498553276062,0.024524277076125145,-0.023912999778985977,0.006144286599010229,-0.022136518731713295,0.009883850812911987,0.003697827458381653,0.08679276704788208,-0.01876075565814972,-0.050057511776685715,-0.06160962954163551,-0.02866451069712639,-0.06822233647108078,-0.08970606327056885,0.024613291025161743,-0.03372090682387352,0.04845497012138367,-0.026035306975245476,-0.029256602749228477,-0.02564619481563568,0.03376122936606407,-0.10487837344408035,-0.041759081184864044,-4.35147988753215e-8,-0.028098974376916885,-0.10071226954460144,-0.006486558821052313,0.0009716784115880728,-0.0015343382256105542,-0.09424819052219391,-0.057978883385658264,-0.05107792466878891,-0.013171488419175148,0.04131085053086281,-0.007045452948659658,-0.052699074149131775,-0.020087119191884995,0.019592758268117905,0.02398677170276642,-0.012861309573054314,0.09446758031845093,0.12290388345718384,0.02222481183707714,-0.09700090438127518,0.052054714411497116,-0.030349060893058777,-0.06667855381965637,0.03384057432413101,-0.06312538683414459,0.06731449067592621,0.03859570622444153,-0.07456441968679428,-0.027944229543209076,0.000002083094386762241,0.019515447318553925,0.07968415319919586,0.07074878364801407,-0.03825019672513008,-0.02602989971637726,0.07106808573007584,0.030155334621667862,-0.055955592542886734,-0.04296230152249336,0.09612850844860077,0.13203194737434387,-0.028433511033654213,0.07051452249288559,-0.07067392766475677,0.07494117319583893,-0.029133237898349762,0.053167153149843216,0.004627876449376345,0.001469988375902176,0.013888917863368988,-0.05929819494485855,0.035499315708875656,0.03476916253566742,0.002984871855005622,-0.0230630561709404,0.006023951340466738,0.03610127046704292,0.005272914655506611,-0.030386338010430336,-0.057496897876262665,0.0968078151345253,-0.02015930786728859,0.07405612617731094,-0.024921568110585213]},{"text":"Divis orte bonis, optime Romulae Custos gentis, abes iam nimium diu; Maturum reditum pollicitus patrum Sancto concilio redi.","book":"Homage to Catalonia","chapter":25,"embedding":[0.007056433707475662,0.09418785572052002,-0.046824704855680466,0.007275629788637161,-0.1271185725927353,0.010983068495988846,0.06839068979024887,0.06288322806358337,-0.02587207220494747,0.030543867498636246,0.0719899833202362,-0.10661537945270538,0.03425968065857887,-0.03139875456690788,-0.06507791578769684,-0.041155558079481125,0.030746987089514732,0.07344129681587219,-0.050639811903238297,0.045107483863830566,0.023935550823807716,0.04286070913076401,-0.025370629504323006,-0.030025064945220947,-0.08163192868232727,0.06030498445034027,-0.04384802281856537,-0.0018421163549646735,0.017060985788702965,-0.06435960531234741,0.02918914146721363,0.16609403491020203,0.08499418199062347,-0.06512400507926941,0.06719367951154709,-0.03653077036142349,-0.055021464824676514,-0.05431041866540909,0.0554729588329792,0.04927573353052139,0.017140574753284454,0.030352283269166946,0.03936716914176941,0.017476432025432587,-0.048338551074266434,-0.0031814014073461294,-0.02467145211994648,0.08426425606012344,0.04928528517484665,-0.03701212629675865,-0.09227696806192398,-0.013114849105477333,-0.052754223346710205,0.04691893979907036,-0.0199811439961195,-0.02335294522345066,0.035147521644830704,-0.028590833768248558,0.0041540502570569515,-0.06488204747438431,0.0028064141515642405,0.03304709494113922,-0.07123413681983948,-0.011116988025605679,-0.045490000396966934,0.03448841720819473,-0.060683462768793106,-0.008946125395596027,-0.045028943568468094,0.020186452195048332,0.1102941557765007,0.023599687963724136,0.05623314529657364,0.06065870821475983,-0.059496957808732986,0.060206495225429535,0.030436307191848755,-0.004943570587784052,-0.0011022576363757253,-0.11149377375841141,-0.011412544175982475,0.03873061016201973,0.007385463919490576,-0.018557103350758553,-0.002647410612553358,0.01768236793577671,0.006407471373677254,0.016188589856028557,-0.02021845057606697,-0.05676862597465515,0.0025646693538874388,0.047882407903671265,-0.02039864845573902,-0.04785975441336632,-0.0679178312420845,0.03865886107087135,-0.06721103936433792,-0.11036010086536407,0.01831798627972603,-0.02655021660029888,0.06735939532518387,-0.04470705986022949,0.0007355281850323081,0.023279353976249695,-0.14177735149860382,-0.03966532275080681,-0.06885263323783875,-0.0917443186044693,0.004308201838284731,0.09476211667060852,-0.06481410562992096,-0.048921868205070496,-0.037022799253463745,-0.0354863703250885,-0.018762895837426186,0.019815169274806976,0.045052673667669296,-0.0354948528110981,-0.019632061943411827,-0.07648085802793503,0.01275143027305603,-0.09674463421106339,-0.03504982218146324,-0.07617837190628052,0.04591856896877289,-0.0334051139652729,0.007968483492732048,1.2805719377790856e-32,-0.06262969225645065,-0.07369935512542725,0.015445181168615818,0.006167847663164139,0.0692090317606926,-0.044039566069841385,-0.06216097250580788,-0.04462422803044319,0.03573911637067795,-0.11338146775960922,-0.08105368167161942,-0.025157874450087547,-0.011426991783082485,0.022963032126426697,0.028752772137522697,0.04107620567083359,0.07600413262844086,-0.006181906443089247,-0.022075029090046883,0.038371484726667404,-0.02678629383444786,0.022450760006904602,0.005894504487514496,-0.008934286423027515,0.02327464148402214,0.030769599601626396,0.020298413932323456,-0.11650791019201279,0.04985302314162254,-0.00045228851377032697,0.14835822582244873,-0.06402640789747238,-0.0840531587600708,0.012018159031867981,0.048947617411613464,0.02588760107755661,0.02588367462158203,-0.013841596432030201,-0.059598471969366074,0.017403321340680122,-0.05285484343767166,0.055690497159957886,0.0831713080406189,0.054982345551252365,0.08575060963630676,-0.01815538853406906,-0.03027377277612686,0.03163103014230728,0.09986885637044907,0.02671964094042778,0.02264357917010784,0.03925931453704834,0.030542897060513496,-0.030591072514653206,0.015005399473011494,0.029027286916971207,-0.010011925362050533,0.0704783946275711,-0.051379572600126266,-0.005854764953255653,0.021490680053830147,0.015139494091272354,-0.016597706824541092,-0.028934642672538757,0.04076568782329559,0.029530495405197144,-0.08180668205022812,-0.006431058514863253,0.07812990248203278,-0.031234074383974075,-0.08098369836807251,-0.08404092490673065,0.00855312030762434,0.014678041450679302,-0.027990125119686127,0.030175672844052315,0.06936775147914886,-0.012674235738813877,-0.058303192257881165,-0.0024543378967791796,-0.032323356717824936,0.03887506574392319,-0.06829501688480377,-0.0715828388929367,0.035166770219802856,-0.014886371791362762,-0.0181594081223011,0.07774723321199417,0.05934128165245056,-0.001946379547007382,0.1075175330042839,0.07026644796133041,-0.018722889944911003,-0.00546569749712944,-0.02502455748617649,-1.1695749286135311e-32,-0.02984485775232315,-0.0630325898528099,-0.009882847778499126,0.0858214721083641,0.025298185646533966,-0.03838746249675751,-0.09728572517633438,0.06335049122571945,0.034046005457639694,-0.04324992746114731,-0.0380583330988884,-0.0015442956937476993,0.05722854286432266,-0.04265107586979866,-0.08441281318664551,0.0857846811413765,0.017614442855119705,0.08337835967540741,-0.05313808098435402,-0.024355145171284676,-0.12432710081338882,0.07817570120096207,-0.02383500710129738,-0.06773097813129425,-0.05999214947223663,0.011382336728274822,-0.007719461806118488,-0.025673063471913338,-0.031222887337207794,-0.006876316387206316,0.018813610076904297,0.014069418422877789,-0.0858033075928688,-0.018796004354953766,-0.013942189514636993,0.0335046648979187,0.07962389290332794,-0.06389249861240387,-0.018701713532209396,0.04777077957987785,-0.013708951883018017,0.03139709308743477,0.1321384459733963,0.07382621616125107,0.026945777237415314,-0.0060072652995586395,-0.08200938999652863,0.052973102778196335,-0.034860093146562576,0.0323956273496151,0.10413511842489243,0.017926041036844254,0.0022462632041424513,-0.0013114040484651923,0.09473969042301178,-0.08058468997478485,0.022840799763798714,-0.045345764607191086,-0.05046418681740761,0.014226322062313557,0.03871266171336174,0.022936692461371422,0.002848482457920909,0.03999832645058632,0.044503312557935715,0.003808023175224662,-0.020572712644934654,0.09619215875864029,0.007873989641666412,0.03401859849691391,0.05348268151283264,0.010380560532212257,-0.06595488637685776,0.011072366498410702,-0.04474101588129997,0.054525092244148254,-0.04008026793599129,0.036788977682590485,-0.01587889902293682,0.10025615245103836,0.026542557403445244,-0.014455817639827728,-0.05830022320151329,0.008332026191055775,-0.02722485549747944,-0.032909784466028214,0.040605586022138596,-0.023105470463633537,0.002675888827070594,-0.03815603256225586,-0.005150822922587395,-0.05636279284954071,0.008697820827364922,-0.026357755064964294,0.03178517520427704,-4.192481384279745e-8,0.04171406477689743,-0.09681284427642822,-0.006979153957217932,-0.0011967449681833386,0.03818230330944061,-0.07996418327093124,0.00791227724403143,0.03311237692832947,0.03717418015003204,0.03213333711028099,0.009833321906626225,0.010226399637758732,-0.06128586083650589,-0.00015439082926604897,0.03618202358484268,0.03659677132964134,0.05854741483926773,0.01868303120136261,-0.02675042301416397,-0.02424434758722782,0.059475526213645935,-0.007211197633296251,-0.06391461193561554,0.05716554448008537,-0.01988869160413742,-0.015229380689561367,0.0693686455488205,-0.11693014949560165,-0.0010192871559411287,-0.00001919756323331967,0.018901629373431206,0.03597726672887802,0.013096104376018047,-0.09485800564289093,0.000427352701080963,0.0339890755712986,0.0022556325420737267,0.022470522671937943,0.06764724850654602,-0.01682610996067524,0.06638577580451965,0.010998439975082874,-0.01887674815952778,-0.0290052592754364,0.012686368077993393,-0.013201170600950718,0.0023126096930354834,0.007871351204812527,-0.0028149166610091925,-0.10614289343357086,-0.098531574010849,-0.00037144016823731363,0.07459093630313873,-0.04429168626666069,-0.06632144749164581,0.005033015739172697,0.03656967729330063,0.04932034760713577,0.009485181421041489,0.0670655369758606,0.020236868411302567,0.044448647648096085,0.01943890191614628,0.08800264447927475]},{"text":"The Project Gutenberg eBook of Arms and the Man This eBook is for the use of anyone anywhere in the United States and most other parts of the world at no cost and with almost no restrictions whatsoever.","book":"Down and Out in Paris and London","chapter":1,"embedding":[-0.012070934288203716,0.02358475886285305,0.006304098758846521,-0.012742931954562664,-0.023819737136363983,0.04238864406943321,-0.025259943678975105,-0.009608061984181404,-0.016952117905020714,0.0408191978931427,0.006470170337706804,0.05794447660446167,-0.01760055124759674,-0.045678142458200455,0.016991592943668365,-0.05110800638794899,-0.012816593050956726,-0.0037773004733026028,0.0991564691066742,0.06533543020486832,0.0013822548789903522,0.0866537094116211,0.06286153197288513,-0.008308866061270237,-0.012692246586084366,-0.0695834681391716,-0.015469634905457497,-0.002752888947725296,0.006719006225466728,-0.07281876355409622,-0.006909561343491077,-0.02753628045320511,-0.007332265842705965,-0.043948639184236526,0.014227468520402908,0.023684678599238396,0.06391283124685287,0.03170814737677574,-0.03590160980820656,0.04567798599600792,0.005766803398728371,-0.03370528668165207,0.03533313423395157,0.021661339327692986,0.013167984783649445,0.11166078597307205,-0.08303037285804749,0.00331873563118279,0.011898092925548553,0.057432662695646286,-0.05657504126429558,-0.051999516785144806,0.012469706125557423,-0.079571932554245,0.04768821597099304,-0.07243134081363678,0.04297683760523796,0.0039067077450454235,-0.027260087430477142,-0.03322344645857811,-0.0047380621545016766,-0.06426552683115005,-0.07281496375799179,0.008494867943227291,0.06119740009307861,0.08382084220647812,0.031146423891186714,0.10509645938873291,-0.038664355874061584,-0.06756404042243958,-0.04623261094093323,-0.046839389950037,0.011933503672480583,0.023434575647115707,0.011677169241011143,-0.04328157752752304,-0.0494234673678875,-0.05203916132450104,0.004520914517343044,0.009045380167663097,-0.05071865767240524,0.009363324381411076,-0.024468129500746727,-0.05409674346446991,-0.04346904158592224,0.09936505556106567,0.018672384321689606,0.05335498973727226,0.008798332884907722,0.028191259130835533,0.01326647400856018,-0.01061174739152193,0.11352358013391495,0.03594322130084038,-0.059328798204660416,0.05759022384881973,0.03915657103061676,0.0357544980943203,-0.1295320987701416,0.045680928975343704,0.04430495202541351,-0.05238056182861328,0.04320791736245155,-0.026447607204318047,-0.059042271226644516,-0.043664079159498215,-0.05073530972003937,-0.0407397598028183,-0.04723217710852623,-0.052547916769981384,-0.04136919602751732,-0.03727194294333458,-0.08187611401081085,-0.06564884632825851,0.03729289397597313,-0.0732656717300415,0.033609189093112946,-0.06538348644971848,0.11648846417665482,-0.012382609769701958,-0.020487843081355095,0.02593863010406494,0.048062995076179504,0.013126086443662643,-0.025855816900730133,-0.045486100018024445,-0.009210833348333836,8.72874625969117e-34,0.025835733860731125,0.020846793428063393,0.023344064131379128,0.05631622299551964,0.017189664766192436,-0.09018073230981827,0.0268629752099514,-0.019340569153428078,-0.04811640828847885,-0.03199347108602524,0.017690740525722504,0.04623384773731232,-0.018736809492111206,0.05045676976442337,-0.014567166566848755,-0.016490228474140167,-0.028480200096964836,0.06446661800146103,0.08081347495317459,0.04886563494801521,-0.0038909590803086758,-0.027302158996462822,-0.017684562131762505,-0.024212012067437172,-0.02293512038886547,0.000984446844086051,-0.005420916713774204,0.003958235494792461,0.06600550562143326,0.016804184764623642,-0.06422927975654602,0.04693300276994705,-0.039529215544462204,-0.10909275710582733,0.06677671521902084,-0.04526620730757713,-0.1103597953915596,-0.030931217595934868,-0.03797658160328865,0.021434366703033447,-0.008938394486904144,0.037781357765197754,0.0304909385740757,-0.010703216306865215,0.06308554112911224,0.016676397994160652,0.04901306703686714,0.02887175977230072,0.07405947148799896,-0.012060672976076603,-0.051744889467954636,0.010746561922132969,-0.045145127922296524,-0.021267984062433243,0.035104766488075256,0.02723991498351097,-0.047157641500234604,0.06719526648521423,-0.024815181270241737,0.0020444479305297136,0.024799779057502747,0.0743836835026741,0.10485684126615524,0.0467279814183712,-0.015955142676830292,0.01441878080368042,-0.10228527337312698,-0.004365109372884035,-0.030609598383307457,-0.004694476258009672,-0.06785306334495544,-0.053151872009038925,0.12919831275939941,0.011965473182499409,0.009629002772271633,0.06915283203125,0.00962909683585167,0.03811636194586754,-0.02996045909821987,-0.06101187318563461,-0.08857768774032593,0.06750520318746567,0.04832790419459343,0.061082854866981506,-0.015574425458908081,-0.02279944159090519,0.020555943250656128,-0.1003090962767601,-0.017536122351884842,0.07987219095230103,-0.028346087783575058,-0.04491620138287544,-0.06289724260568619,-0.013832778669893742,0.024679461494088173,-2.7007632905454854e-33,-0.010279410518705845,-0.1193077340722084,-0.013479347340762615,-0.05030285194516182,0.04674523323774338,0.008905529975891113,-0.022054601460695267,0.03950522840023041,0.01738843508064747,0.010737931355834007,-0.06828047335147858,-0.00493011437356472,0.08139552921056747,0.04954255372285843,0.01920982077717781,-0.05933564901351929,0.055398017168045044,-0.07958201318979263,-0.005055857356637716,-0.03510240092873573,-0.01676209457218647,0.0053637586534023285,0.12199607491493225,-0.04610808193683624,0.05479445680975914,-0.01778503693640232,-0.010033008642494678,0.008928497321903706,-0.014441837556660175,-0.03563079982995987,0.015048125758767128,-0.056078795343637466,-0.05483505502343178,0.05489865690469742,-0.12845349311828613,-0.06183657795190811,-0.014378350228071213,0.07459817826747894,0.05301841348409653,-0.0393553152680397,0.027502721175551414,0.020554132759571075,-0.013998793438076973,-0.052482958883047104,-0.007848327048122883,-0.03741200640797615,-0.059692174196243286,0.009004255756735802,-0.058108098804950714,-0.030202534049749374,0.009477510116994381,0.014415103010833263,0.03770657628774643,-0.13989926874637604,-0.038736049085855484,-0.027127807959914207,0.0699259415268898,-0.07416824251413345,0.08738616108894348,0.12737001478672028,-0.07230184227228165,0.005445714108645916,-0.08852311968803406,0.10500382632017136,-0.023965103551745415,-0.02732141874730587,-0.06959286332130432,-0.008929331786930561,-0.07609938830137253,0.043374355882406235,-0.044173143804073334,-0.033196140080690384,0.04540286958217621,-0.027703771367669106,-0.02093549259006977,0.13896021246910095,0.06815166771411896,0.005457405932247639,0.002841166453436017,-0.08490313589572906,0.001832292415201664,-0.005577106028795242,-0.05456165596842766,0.09352375566959381,0.039198316633701324,0.08526478707790375,-0.050325989723205566,-0.023217324167490005,-0.03967581316828728,0.009695209562778473,-0.06034267321228981,-0.0020341656636446714,-0.0004737839917652309,0.05207187682390213,0.00724115502089262,-3.665226699922641e-8,0.011541761457920074,0.06185472011566162,0.014735598117113113,-0.023548780009150505,-0.10270260274410248,0.1261068731546402,0.06682959944009781,-0.10209032893180847,0.02947317063808441,0.08053822070360184,0.006230905652046204,-0.05371467024087906,0.06690182536840439,0.0400787852704525,-0.07081729173660278,-0.05120052397251129,0.06188911944627762,-0.06189211457967758,-0.052659761160612106,-0.009901698678731918,0.0826706811785698,-0.02476845681667328,0.07663517445325851,-0.023535653948783875,-0.023531800135970116,0.06465807557106018,-0.013655791990458965,-0.012745135463774204,0.0026874712202697992,0.008938627317547798,-0.007293254602700472,0.04667885601520538,0.01580466516315937,-0.023742321878671646,0.08822499960660934,0.03375832736492157,-0.09888928383588791,0.024068253114819527,-0.06409244984388351,0.04552258178591728,0.011200360022485256,0.009818093851208687,0.0005034895148128271,-0.00002568671334302053,0.0490109883248806,0.007158760912716389,-0.00199504429474473,0.0008230180246755481,0.049629952758550644,0.0759446918964386,0.040742430835962296,-0.0325043760240078,0.07478071004152298,0.02267155610024929,0.05412938818335533,0.06534050405025482,0.04813479632139206,-0.03208890184760094,-0.012258976697921753,0.01679586060345173,0.10582365840673447,-0.08621220290660858,-0.04629218205809593,0.08134377002716064]},{"text":"Shaw does not know that it is unpardonable sin to have his characters make long speeches at one another, apparently thinking that this embargo applies only to long speeches which consist mainly of bombast and rhetoric.","book":"Down and Out in Paris and London","chapter":1,"embedding":[0.0078100827522575855,0.02313395030796528,-0.04646104946732521,-0.046710483729839325,-0.0400838665664196,0.05226070061326027,0.023979879915714264,-0.1309117078781128,0.08801785111427307,-0.012684892863035202,-0.05542642995715141,0.06706727296113968,0.009269880130887032,0.04646938666701317,0.07314229011535645,-0.021803051233291626,-0.012073418125510216,-0.017192663624882698,0.008804449811577797,0.08656929433345795,0.11369342356920242,0.0944761112332344,0.02188611775636673,-0.04669914394617081,0.03513151407241821,-0.01671822927892208,-0.032765284180641174,-0.08635292202234268,-0.020098775625228882,0.03425079584121704,0.03188186511397362,0.00041511599556542933,0.039654720574617386,0.024852164089679718,0.0017068112501874566,0.024855727329850197,0.012000015936791897,0.06549681723117828,0.020802190527319908,-0.046026479452848434,0.0058271740563213825,0.06938352435827255,-0.05403714254498482,-0.01667674072086811,-0.01931781694293022,-0.0856136679649353,-0.025400126352906227,0.014632228761911392,-0.02768799103796482,-0.09853151440620422,-0.08773373812437057,0.01808563619852066,-0.0007463973597623408,-0.08332222700119019,0.013211304321885109,-0.11248467117547989,-0.030386339873075485,0.028827136382460594,-0.045472994446754456,0.001243842882104218,-0.0165726188570261,-0.05458725616335869,-0.006014131475239992,0.025899527594447136,0.021146977320313454,-0.052622321993112564,0.04668378084897995,0.0742061585187912,-0.08564044535160065,0.10786092281341553,-0.09391562640666962,0.01831629127264023,-0.03324282914400101,0.02795621007680893,-0.05399419367313385,-0.09996232390403748,0.008789639919996262,-0.02207716554403305,-0.002782040974125266,-0.0618990994989872,-0.08037994801998138,-0.07321387529373169,0.027301007881760597,0.0526193231344223,0.05453122407197952,-0.02957041561603546,-0.018835613504052162,-0.011986695230007172,-0.025313181802630424,-0.004061311949044466,-0.00043557360186241567,-0.018252642825245857,0.00761485705152154,0.04957728460431099,0.0521082729101181,-0.05800217390060425,-0.07959175854921341,0.04652039334177971,-0.15052156150341034,0.037282612174749374,-0.03729837015271187,0.07833030819892883,0.030484192073345184,0.0034205571282655,0.002171131782233715,-0.011753448285162449,-0.007779228501021862,-0.02251230925321579,-0.05918668955564499,-0.053408991545438766,-0.03041381761431694,0.009122819639742374,0.03344238921999931,0.01262668240815401,0.08216109126806259,0.10267743468284607,-0.04267174005508423,0.003952412400394678,-0.03786875680088997,0.07405776530504227,0.01571580581367016,0.017168359830975533,0.008606698364019394,0.14969168603420258,-0.05745522305369377,-0.07609930634498596,0.02547714300453663,2.395096004752312e-33,0.02604389376938343,0.04523133859038353,-0.06322244554758072,0.043897129595279694,-0.005356582812964916,0.09334652870893478,-0.057804059237241745,-0.04650086909532547,0.05310524255037308,-0.0033851908519864082,0.04788396880030632,-0.03941069915890694,0.09326750785112381,0.10006695240736008,-0.020349780097603798,0.006316335406154394,-0.018444659188389778,0.058463290333747864,0.03472773730754852,-0.0875028595328331,0.08794543147087097,0.04840303212404251,0.044565994292497635,-0.07977387309074402,-0.07752519845962524,-0.0033752170857042074,0.11811158061027527,0.0045511540956795216,-0.05900008603930473,0.03291226550936699,-0.04399437457323074,0.046235065907239914,0.02565857768058777,0.027265500277280807,0.03968548774719238,-0.04305176064372063,-0.0522785559296608,-0.022134732455015182,0.03633791580796242,0.040079422295093536,0.01941746100783348,-0.016648152843117714,-0.007859570905566216,-0.0019288328476250172,-0.04246361553668976,0.003145106602460146,0.016697965562343597,0.0118710370734334,-0.03658144176006317,0.09176383912563324,0.09629654884338379,0.02538660541176796,0.027684949338436127,-0.05076669529080391,0.042382754385471344,-0.021529920399188995,0.024332812055945396,-0.01662617363035679,0.027887891978025436,-0.02270207367837429,-0.044890664517879486,-0.06715159863233566,-0.004843100905418396,-0.027523960918188095,-0.001737425453029573,0.07299577444791794,-0.09056781232357025,0.007662867195904255,-0.056260984390974045,-0.010830572806298733,0.029826458543539047,-0.10611318051815033,-0.03783314302563667,0.025218700990080833,-0.012780336663126945,-0.06758546829223633,-0.01970597729086876,0.03720875829458237,0.010007035918533802,0.034176312386989594,-0.023101145401597023,-0.05192650854587555,0.028337601572275162,-0.10071852803230286,-0.028803590685129166,0.008470112457871437,0.09388679265975952,-0.046473197638988495,-0.037284914404153824,0.05996276065707207,0.0008462234982289374,0.011228694580495358,0.06216822937130928,-0.03084188885986805,0.03394601121544838,-4.9500287518317306e-33,-0.043025605380535126,0.026089033111929893,-0.02727499231696129,0.01581396348774433,-0.05016937851905823,0.003923387732356787,0.03767087683081627,0.07699191570281982,0.01259420532733202,-0.028199147433042526,-0.015377558767795563,-0.042620494961738586,-0.007687674369663,-0.08096426725387573,0.03659883141517639,0.03182264417409897,0.06648865342140198,0.0005452451878227293,0.023470811545848846,0.003778573591262102,0.021615270525217056,-0.047696929425001144,-0.015556585974991322,-0.021416200324892998,-0.05068365857005119,0.0035133303608745337,-0.01733054406940937,-0.0799129530787468,-0.025579342618584633,-0.04326929897069931,-0.02762557938694954,0.03382699191570282,-0.1165030226111412,-0.013584795407950878,-0.03604856878519058,0.04335561394691467,-0.04935580864548683,0.02610921487212181,-0.01569325476884842,0.006888253148645163,0.051760826259851456,-0.01193218119442463,0.0012676464393734932,-0.01604512892663479,-0.023362094536423683,-0.1049816831946373,-0.0430622473359108,0.002777422545477748,0.0025229596067219973,0.0008332302095368505,-0.07883410900831223,0.03935055807232857,0.012297486886382103,-0.0008006821153685451,0.0003318972303532064,-0.09621748328208923,-0.05075909569859505,0.07535374164581299,-0.07874461263418198,-0.11461412906646729,-0.008970450609922409,-0.0003653629682958126,0.013637221418321133,-0.013776364736258984,0.1397315114736557,0.05683315917849541,-0.04053310677409172,0.03204219788312912,0.06092136725783348,0.042974021285772324,-0.06855212152004242,-0.07385022938251495,-0.07788413763046265,-0.06541803479194641,-0.02015126310288906,0.056605465710163116,-0.07107152044773102,-0.07585369050502777,-0.10470720380544662,-0.07071111351251602,0.0013262511929497123,-0.023054564371705055,-0.08625265955924988,0.02328561432659626,0.0013685605954378843,-0.004331127740442753,-0.012191984802484512,0.0070688435807824135,0.03787827119231224,0.10083513706922531,0.035313379019498825,0.01117597334086895,0.14030161499977112,0.01291965413838625,0.07823323458433151,-3.1383901699655326e-8,-0.08328989893198013,0.016714414581656456,0.014238659292459488,-0.02784455008804798,0.025326015427708626,-0.022713636979460716,-0.030645614489912987,-0.0338546447455883,-0.011429641395807266,0.06220715120434761,0.017509700730443,0.058788735419511795,0.05392041802406311,0.0244126059114933,-0.05421262979507446,-0.028516488149762154,-0.0169795211404562,-0.08798111230134964,0.028879420831799507,0.015973636880517006,0.05506224185228348,0.021064015105366707,0.04210665076971054,0.073301762342453,-0.054231226444244385,0.05657120421528816,-0.01974724791944027,-0.039939094334840775,-0.020415598526597023,0.014289602637290955,0.04423202574253082,-0.003950089681893587,-0.061039648950099945,0.01222440879791975,-0.010280727408826351,-0.015832414850592613,0.0042286766692996025,-0.012213685549795628,0.053725019097328186,0.0327090360224247,-0.0021567533258348703,-0.012350275181233883,0.09377621114253998,0.06677541136741638,0.06656397134065628,-0.005526102147996426,-0.03949477896094322,-0.016043810173869133,-0.024861838668584824,0.10081195086240768,0.06090308725833893,0.10346721112728119,0.05458974465727806,-0.08444107323884964,0.0042621782049536705,0.04680837318301201,-0.018040401861071587,0.02734127640724182,0.05799160525202751,0.07078347355127335,0.022930016741156578,-0.01847946085035801,-0.032481856644153595,-0.09538678079843521]},{"text":"As a last resort, he turned to the stage, not that he cared for the dramatic art, for no man seems to care less about “Art for Art’s sake,” being in this a perfect foil to his brilliant compatriot and contemporary, Wilde.","book":"Down and Out in Paris and London","chapter":1,"embedding":[0.06027737259864807,0.07618750631809235,0.04848678782582283,-0.02858291007578373,0.08211784809827805,0.013706842437386513,0.0949232280254364,-0.03607407212257385,-0.062447793781757355,-0.06753895431756973,-0.043721213936805725,-0.010783015750348568,-0.0636531412601471,-0.01812375895678997,0.036396950483322144,0.02324194833636284,-0.011148572899401188,-0.08017915487289429,-0.015318823978304863,0.032581984996795654,-0.02333199419081211,0.014926629140973091,0.027121219784021378,-0.07918879389762878,-0.1160186231136322,-0.06569717079401016,-0.026195382699370384,-0.06652103364467621,0.053531140089035034,-0.029850736260414124,0.03428475186228752,0.027041025459766388,-0.034147802740335464,-0.05573851987719536,0.026152251288294792,0.024960272014141083,-0.041332196444272995,0.012566512450575829,0.022524703294038773,0.0077718026004731655,-0.005334992427378893,0.03617250919342041,-0.07945021986961365,0.1060575619339943,0.046812236309051514,-0.028211576864123344,-0.013031861744821072,-0.05547422543168068,0.007728611584752798,-0.017064528539776802,-0.045020073652267456,-0.016412723809480667,-0.06683626025915146,-0.08873904496431351,0.039874330163002014,0.047879744321107864,0.05360119417309761,0.0070326547138392925,-0.029912786558270454,-0.025478990748524666,-0.007040009833872318,0.00977416057139635,0.007441004738211632,-0.011300181970000267,0.06184132769703865,0.003359659342095256,-0.017311139032244682,0.015725987032055855,-0.05900261923670769,0.07289271801710129,0.029530080035328865,-0.06577599048614502,-0.019394317641854286,-0.030573047697544098,-0.009541542269289494,-0.05718191713094711,-0.045051705092191696,-0.04794513061642647,-0.005842380691319704,0.003943474031984806,0.0576755590736866,-0.006278091575950384,-0.047803036868572235,-0.017103495076298714,-0.014649837277829647,-0.11579783260822296,-0.011694344691932201,-0.11961998790502548,0.06559581309556961,0.051656268537044525,-0.03860652819275856,0.004013314377516508,-0.09778100252151489,0.10577575117349625,0.01877295784652233,0.05050288140773773,0.024119311943650246,0.10747633129358292,-0.14590021967887878,0.0890607237815857,0.041584838181734085,0.01847185380756855,-0.020646624267101288,-0.0696336179971695,0.027966612949967384,0.0218533743172884,-0.033098530024290085,0.03333601355552673,-0.06905996054410934,0.010054245591163635,-0.060197290033102036,0.001994106685742736,0.03894922509789467,-0.059662867337465286,0.1113581508398056,-0.0395454466342926,-0.006523077376186848,-0.0026948212180286646,-0.016340259462594986,0.025517772883176804,0.08151912689208984,0.10006804019212723,0.004052573349326849,0.056715913116931915,-0.09124755859375,-0.009637027978897095,0.055783167481422424,-1.8824507960732195e-33,0.007650956977158785,-0.027492448687553406,-0.03508264943957329,0.007538361940532923,0.004512654151767492,0.014427694492042065,0.04091040790081024,0.023805035278201103,0.07849683612585068,-0.024189969524741173,0.07397021353244781,-0.01766790635883808,-0.07217051088809967,-0.01603463850915432,-0.07473044842481613,0.03774029389023781,0.012192065827548504,0.04902350902557373,0.033930838108062744,0.02965974062681198,-0.062236569821834564,0.11215748637914658,-0.034777890890836716,-0.0937279611825943,-0.08194166421890259,0.09506013244390488,0.005804142914712429,-0.03841756656765938,-0.059891849756240845,0.017570678144693375,-0.05451244115829468,0.037612851709127426,0.031785037368535995,-0.03610939532518387,0.020434530451893806,0.004572429694235325,-0.0930752158164978,0.007361124735325575,-0.02905767783522606,0.06661621481180191,-0.034711532294750214,0.04399136081337929,0.033458415418863297,0.013719405978918076,-0.06777184456586838,0.008401839062571526,0.027150943875312805,0.09153779596090317,-0.06050225347280502,0.016796883195638657,0.04367021471261978,0.013086521066725254,0.03371516615152359,0.05511104315519333,0.05632229521870613,-0.030640630051493645,-0.005099569447338581,-0.03485313430428505,0.012347955256700516,-0.15933416783809662,0.08491459488868713,-0.03794256970286369,-0.033747635781764984,0.03354489058256149,-0.014361418783664703,0.018946921452879906,0.019303906708955765,-0.027462387457489967,-0.08656427264213562,0.07384879142045975,-0.11079162359237671,0.03281024470925331,-0.07649518549442291,-0.010143885388970375,-0.0004630063194781542,-0.027462156489491463,-0.021640539169311523,-0.017093509435653687,-0.008704237639904022,-0.0004533480969257653,-0.0011370363645255566,0.017392626032233238,-0.025578029453754425,-0.031080901622772217,-0.028860965743660927,0.026062283664941788,0.098336361348629,-0.023600097745656967,0.03586596995592117,0.021592283621430397,-0.009146402589976788,-0.05300289765000343,-0.04337894916534424,-0.04381489381194115,0.026071682572364807,-1.9990541877917768e-34,0.01082712970674038,-0.006957446224987507,-0.0002712613786570728,0.015884364023804665,-0.026249146088957787,-0.07371733337640762,0.021915292367339134,-0.04299890995025635,0.06486646085977554,0.06984343379735947,-0.04562582075595856,-0.07952617108821869,0.03417043015360832,-0.05810306966304779,0.02896425686776638,-0.049378134310245514,0.06953191012144089,-0.03082503005862236,-0.02790316939353943,0.023464385420084,0.011352176778018475,0.07387077063322067,-0.06189379841089249,0.00970921479165554,-0.061275310814380646,0.07928209751844406,-0.015629282221198082,0.0001418040628777817,0.04131174460053444,-0.035038165748119354,0.09902753680944443,-0.09673546999692917,-0.011227588169276714,-0.0026288956869393587,0.0367114283144474,0.10880822688341141,0.02430577203631401,0.08627302944660187,-0.04369489476084709,0.08817161619663239,0.07115150988101959,-0.01453990675508976,-0.01003236509859562,0.07417131960391998,-0.009268777444958687,-0.005904743913561106,-0.04652821645140648,0.002218320034444332,0.010073197074234486,-0.008729216642677784,-0.02712407149374485,-0.040252819657325745,-0.028945419937372208,-0.06256946921348572,0.0005440871464088559,-0.09259577095508575,0.018952786922454834,-0.018362369388341904,0.03593767434358597,0.0393570140004158,-0.014318052679300308,-0.032547663897275925,-0.06602849811315536,-0.09513631463050842,-0.05089207738637924,0.049811579287052155,-0.045156288892030716,0.03152714669704437,-0.00812006089836359,0.02552405744791031,0.00014659466978628188,0.02179696410894394,-0.005518360994756222,-0.019783852621912956,-0.01291251927614212,0.09436231106519699,0.005657007452100515,0.014599096029996872,0.016226481646299362,-0.06164320185780525,-0.026481974869966507,-0.09940961003303528,0.005311237182468176,-0.03977600112557411,0.008676418103277683,0.0883319154381752,-0.055840011686086655,-0.08277984708547592,-0.029825350269675255,0.03492937609553337,0.054164987057447433,-0.008301281370222569,0.02590525709092617,0.04676095396280289,0.028728336095809937,-3.5371709117271166e-8,-0.05996648594737053,0.04534773528575897,-0.01547982357442379,-0.04155664145946503,0.01864519901573658,0.04589959233999252,0.012295842170715332,-0.08208122849464417,0.01892995275557041,0.09237805008888245,0.042834825813770294,-0.023737266659736633,0.06588739901781082,0.06963162124156952,-0.0009864969179034233,0.0018472539959475398,0.015440341085195541,-0.11120970547199249,-0.028619354590773582,0.02380714751780033,0.030374055728316307,0.03153916820883751,-0.10848914086818695,-0.132523775100708,-0.06155310571193695,0.05192796513438225,0.048455700278282166,-0.049471817910671234,-0.0009515127749182284,-0.006680506281554699,0.059128288179636,0.038214776664972305,0.006630363408476114,0.0048190937377512455,0.01828276365995407,0.0064130183309316635,0.08333475887775421,-0.025073794648051262,-0.001697093597613275,0.053909461945295334,-0.017021087929606438,0.02407108061015606,0.05768956243991852,0.038472581654787064,0.004661446902900934,-0.01230623759329319,0.07697048783302307,0.05224034935235977,-0.020987493917346,0.0924253910779953,0.024779388681054115,-0.07051217555999756,0.026745611801743507,0.019874637946486473,0.05655837059020996,-0.10321716219186783,0.00484133418649435,0.14236286282539368,-0.12185497581958771,0.021302232518792152,-0.01908670924603939,-0.038588814437389374,0.004104145802557468,0.02271362766623497]},{"text":"The institution had long been outgrown, but its vernacular continued to be the speech and to express the thought “of the world and among the vulgar,” as the quaint, old novelist puts it, just as to-day the novel intended for the consumption of the unenlightened must deal with peers and millionaires and be dressed in stilted language.","book":"Down and Out in Paris and London","chapter":1,"embedding":[0.009796780534088612,0.060294583439826965,-0.009049314074218273,0.020990747958421707,0.0006998650496825576,0.045078687369823456,0.048114076256752014,-0.08182379603385925,-0.041239652782678604,-0.0405811071395874,0.03396435081958771,0.014256061054766178,0.007201909553259611,-0.07159999758005142,0.012054075486958027,-0.008765594102442265,0.03765467181801796,-0.015729807317256927,-0.03252768516540527,-0.03959348052740097,0.01800977997481823,0.05993323400616646,0.05816788226366043,0.01927143707871437,-0.004820835776627064,-0.014367301017045975,0.005089556332677603,-0.04347089305520058,0.06217946484684944,0.01615559682250023,-0.04591686278581619,0.08360177278518677,0.10665189474821091,0.032122205942869186,0.005587377585470676,0.033243145793676376,0.07902780920267105,-0.003954874351620674,-0.001184467226266861,-0.022841859608888626,-0.012201808393001556,-0.038794998079538345,-0.020476026460528374,-0.008886833675205708,-0.009181194938719273,-0.08101172000169754,-0.04246143996715546,0.046670954674482346,-0.04777117446064949,-0.021338550373911858,-0.014902876690030098,-0.026784468442201614,0.07191566377878189,-0.03919770568609238,-0.06031780317425728,0.03715097904205322,0.017143307253718376,0.0014367850963026285,0.02354016900062561,-0.06564934551715851,-0.02185719646513462,-0.05040321871638298,0.018458561971783638,0.03838402405381203,0.05508433282375336,-0.06949519366025925,0.03923511877655983,0.11492720246315002,-0.10969122499227524,0.05385534465312958,-0.044320784509181976,-0.07494568824768066,0.07757572829723358,-0.015465392731130123,-0.01153960358351469,-0.07366658747196198,-0.046682074666023254,-0.07605908811092377,-0.023196425288915634,-0.03342726454138756,0.06300856918096542,-0.0008121843566186726,0.04151468351483345,-0.009961334988474846,-0.034658897668123245,-0.07485219836235046,-0.0014210962690412998,-0.09889327734708786,0.03879611939191818,-0.000016317604604410008,-0.08137070387601852,-0.04388473927974701,-0.01805243454873562,0.020338857546448708,0.06694820523262024,0.002565695671364665,-0.07331862300634384,-0.0194831695407629,-0.008010724559426308,0.10124780237674713,-0.007798058446496725,0.0517599955201149,-0.03572733700275421,-0.048077117651700974,-0.03283045440912247,-0.11757035553455353,-0.013883795589208603,0.005730228032916784,-0.04590809345245361,0.0023230602964758873,-0.05380336940288544,-0.01666705124080181,0.024223411455750465,0.0012713961768895388,0.07321272790431976,-0.001211662543937564,0.019679227843880653,-0.05074240267276764,0.035844456404447556,0.008032524026930332,0.03196869045495987,0.015971284359693527,-0.07411107420921326,0.0951269268989563,-0.027099156752228737,-0.0007776885177008808,0.07084818929433823,-2.7910937865924395e-33,0.0028808440547436476,0.05474109947681427,-0.0735696479678154,0.08406350761651993,0.020568586885929108,0.027071908116340637,-0.006713586393743753,-0.00978069007396698,-0.0480978824198246,-0.039745502173900604,0.06536754965782166,-0.00198617042042315,-0.049573540687561035,0.03241892158985138,0.002443675184622407,0.019401898607611656,-0.05191037803888321,0.05139675363898277,0.09113790094852448,-0.006731636356562376,0.06419811397790909,0.1569802612066269,0.024149596691131592,-0.056073639541864395,-0.07766877114772797,-0.007468035444617271,-0.013958543539047241,-0.03678145259618759,0.02632850967347622,0.050580043345689774,0.07631498575210571,0.017065702006220818,-0.04339968413114548,-0.05530345439910889,0.052640702575445175,-0.01761602982878685,-0.02304433286190033,-0.006840122863650322,0.037999413907527924,0.03172076866030693,-0.033270858228206635,0.011764304712414742,0.034456271678209305,-0.04786403849720955,0.0008058064850047231,0.17026111483573914,0.013283892534673214,0.034489210695028305,0.004397871904075146,0.10856049507856369,-0.014690190553665161,-0.0179749745875597,0.00984856765717268,-0.010633070953190327,0.017507484182715416,-0.04921530932188034,-0.0629601702094078,0.02121339924633503,0.013278533704578876,-0.14049626886844635,0.0066073196940124035,0.046913765370845795,0.02170979045331478,0.012913092039525509,0.018962111324071884,0.04212851822376251,-0.10345841199159622,0.017914384603500366,-0.032056376338005066,-0.03211101144552231,-0.032629020512104034,-0.0037145945243537426,-0.028860557824373245,0.0748317688703537,-0.06479465961456299,0.03188787400722504,0.018292728811502457,-0.004171483684331179,-0.010258128866553307,0.01600334234535694,0.04357751086354256,0.009705298580229282,-0.0024048995692282915,0.01851029135286808,0.03847401216626167,-0.010784963145852089,0.05017350614070892,-0.026179537177085876,0.12145137041807175,0.1021629124879837,0.017291350290179253,-0.024963613599538803,-0.009144005365669727,-0.09306670725345612,-0.06763885915279388,3.758794026556704e-34,0.05070587620139122,-0.024701204150915146,-0.06969549506902695,0.08307857066392899,-0.030189642682671547,-0.0011392199667170644,-0.11980850249528885,0.03264628350734711,-0.0012119082966819406,0.045233771204948425,-0.06546741724014282,-0.07509751617908478,0.01799558661878109,-0.012319830246269703,0.0684986487030983,-0.05148600786924362,0.0399402379989624,-0.024298522621393204,0.012352910824120045,0.048666104674339294,0.05380334332585335,-0.06515999883413315,-0.04975568875670433,-0.07605388015508652,-0.025523032993078232,0.05246247351169586,-0.02183706685900688,-0.0021097410935908556,-0.18479660153388977,0.01777859777212143,0.043664585798978806,0.1003897562623024,-0.08338840305805206,-0.004795352928340435,-0.019697027280926704,0.016912899911403656,0.04181075468659401,-0.009561272338032722,-0.06279745697975159,-0.03810902312397957,-0.03520134463906288,-0.07081392407417297,-0.09719602018594742,0.011370775289833546,0.017234530299901962,-0.021464863792061806,-0.12248596549034119,-0.06945017725229263,0.00580070074647665,0.014012832194566727,-0.04238570109009743,0.04498608037829399,0.07966639846563339,-0.041838277131319046,-0.06324264407157898,-0.07698455452919006,-0.06504273414611816,0.016965830698609352,0.01677984558045864,0.047430627048015594,0.0016022410709410906,-0.002284762915223837,-0.08359210938215256,0.019680745899677277,0.053171899169683456,-0.07525169849395752,0.006423098500818014,0.07898618280887604,0.005098456516861916,0.011851864866912365,-0.00973600149154663,-0.10456855595111847,-0.02428266406059265,0.023246584460139275,-0.07440131157636642,0.07103350013494492,0.0773446261882782,-0.037306223064661026,-0.053527168929576874,0.007386554032564163,0.006245702970772982,-0.09310930222272873,-0.02461795136332512,0.027744153514504433,0.018824411556124687,0.027649221941828728,-0.0006621587090194225,0.015509539283812046,-0.050298336893320084,0.02904040925204754,0.028098508715629578,-0.06721358746290207,0.0002641481114551425,-0.04703296720981598,0.04248393326997757,-5.334634423093121e-8,-0.05416635796427727,-0.042744677513837814,-0.0477815605700016,0.030229179188609123,0.023348627611994743,-0.0365675687789917,0.05141540244221687,-0.051881030201911926,0.00036132190143689513,0.11288610845804214,-0.039153970777988434,-0.016973352059721947,0.05058196559548378,0.014290985651314259,0.046224676072597504,0.025422338396310806,-0.034496430307626724,-0.05854501947760582,-0.05546383559703827,0.10004178434610367,0.12212160229682922,0.03574381023645401,0.020407162606716156,-0.04224732145667076,-0.023927345871925354,0.06803321093320847,0.03838029131293297,-0.07642125338315964,0.02470645122230053,0.08927822858095169,0.01863683946430683,0.05818670243024826,-0.07544572651386261,0.00607965188100934,-0.0737258791923523,0.020344654098153114,-0.03844628110527992,-0.005120135843753815,0.04406015947461128,-0.056068867444992065,0.014917713589966297,0.03604363650083542,-0.038825955241918564,0.03618745878338814,0.10802227258682251,0.015944140031933784,0.04206553101539612,0.06322026997804642,0.01639012061059475,0.052310582250356674,-0.026753928512334824,0.05114620551466942,0.0672353133559227,0.04205481335520744,-0.0010558728827163577,-0.052477240562438965,-0.01432680431753397,0.08848130702972412,-0.051056887954473495,-0.029723750427365303,0.047084931284189224,-0.024325933307409286,-0.018030377104878426,-0.07841893285512924]},{"text":"With Shaw this sense of community of feeling is wholly lacking.","book":"Down and Out in Paris and London","chapter":2,"embedding":[0.04158764332532883,-0.053398583084344864,-0.023072216659784317,0.010118940845131874,-0.006975189317017794,0.02864496037364006,0.062058739364147186,-0.06417279690504074,0.06735187023878098,-0.027198094874620438,0.025551116093993187,-0.055231478065252304,0.03743899241089821,0.027545902878046036,0.10162819176912308,0.02338973805308342,-0.009327062405645847,-0.0970304012298584,0.041367996484041214,0.09896746277809143,-0.032693978399038315,0.009327298030257225,0.025647476315498352,0.00998197216540575,0.04199455678462982,-0.021603906527161598,-0.042455386370420456,-0.05738375708460808,0.024298014119267464,0.03278011456131935,0.07151971012353897,0.08170975744724274,0.03021547570824623,0.026068879291415215,0.09695135802030563,0.1080445870757103,0.011235016398131847,0.03786148503422737,0.03081565722823143,-0.03220928832888603,-0.020566733554005623,-0.016107812523841858,-0.010328300297260284,0.010509445331990719,0.030573993921279907,0.029106896370649338,0.010186498053371906,-0.02264983579516411,0.005496755242347717,-0.11073769629001617,-0.0887347012758255,-0.027946781367063522,-0.03326740488409996,-0.13383735716342926,-0.03658396378159523,-0.05512923747301102,-0.002009388990700245,-0.055969469249248505,-0.03308064490556717,-0.09201976656913757,0.0529637485742569,-0.027003789320588112,-0.004400111734867096,0.018483182415366173,0.035058729350566864,-0.06369582563638687,-0.019583115354180336,0.029814718291163445,0.003067618701606989,-0.01398350391536951,-0.07258424162864685,0.006417611613869667,-0.0005100552225485444,-0.0014035135973244905,-0.03152557462453842,-0.031099602580070496,-0.008710632100701332,-0.06727723032236099,-0.04859805107116699,0.03513527661561966,-0.01101217232644558,0.03161122649908066,-0.07143233716487885,0.08784418553113937,-0.00035010348074138165,-0.04456112161278725,0.03158795088529587,-0.11539009213447571,-0.06769391149282455,0.0017243358306586742,-0.023234641179442406,0.05737506225705147,0.01591891050338745,0.04589810594916344,0.05261187255382538,0.0057774693705141544,-0.02919323928654194,0.028377600014209747,-0.15173135697841644,0.1235930547118187,-0.07023923844099045,0.030384870246052742,-0.00677852937951684,-0.017664046958088875,0.009794219397008419,-0.016408098861575127,-0.05548474192619324,0.021369606256484985,-0.052718181163072586,-0.07038337737321854,-0.034569717943668365,-0.08426100015640259,-0.001445719855837524,-0.0029034458566457033,0.03688927739858627,0.0674690455198288,0.07269152998924255,-0.016161229461431503,-0.023693859577178955,0.09717251360416412,-0.02228377014398575,-0.018385639414191246,0.034493379294872284,0.07528290152549744,-0.034260112792253494,0.01665210910141468,-0.030967261642217636,-1.9823725913389142e-33,0.01639781892299652,0.055235497653484344,-0.015510556288063526,0.003042746800929308,0.047629572451114655,-0.013539433479309082,-0.003224301151931286,-0.08507255464792252,0.02621917985379696,-0.02224803902208805,-0.0075157443061470985,0.031896863132715225,0.0757196918129921,-0.008469544351100922,-0.024400778114795685,-0.04891533777117729,-0.052416738122701645,0.0017042694380506873,0.11608308553695679,0.004409540444612503,-0.016477152705192566,0.10091652721166611,0.009438284672796726,-0.03290214389562607,-0.07083476334810257,-0.05825476720929146,0.042031288146972656,-0.0010393861448392272,-0.035030677914619446,0.005740469321608543,0.01918165199458599,0.08008196204900742,-0.015422266907989979,-0.05453922599554062,0.0058607966639101505,0.03464864194393158,0.004955664277076721,-0.03915988281369209,0.0030813845805823803,-0.01597689464688301,-0.041345227509737015,0.02803155966103077,0.012589198537170887,-0.029631247743964195,0.026136144995689392,0.026288943365216255,0.08904542773962021,0.0260462686419487,-0.09299685806035995,0.0367295928299427,0.0770508274435997,0.0194784477353096,0.09212600439786911,-0.004097296390682459,-0.04104830324649811,-0.01598181203007698,0.02063191495835781,0.04856352508068085,0.0842994973063469,-0.07419045269489288,0.003254090901464224,-0.06900651007890701,-0.026808079332113266,-0.0648530125617981,-0.02876662090420723,0.021605217829346657,0.05432897061109543,-0.04457657039165497,-0.07162803411483765,-0.001524214749224484,-0.029310381039977074,-0.04551715776324272,-0.03626763075590134,0.0012829406186938286,-0.013292795047163963,-0.04909224435687065,-0.06429953873157501,-0.017630819231271744,0.04593321681022644,0.03361138328909874,-0.016757037490606308,-0.00018612372514326125,0.05545744672417641,-0.04470036178827286,0.06452461332082748,0.03523075208067894,0.11982730031013489,-0.08145515620708466,-0.0326959528028965,-0.021496975794434547,0.0023041798267513514,-0.03513789549469948,0.045157358050346375,-0.018479954451322556,0.010720837861299515,3.400790793529045e-34,-0.04139605537056923,-0.04694134369492531,-0.06000567972660065,0.05391070619225502,-0.08422421663999557,-0.04333998262882233,0.05079088732600212,-0.04142629727721214,0.05565808713436127,0.07330377399921417,0.08107879757881165,-0.011330019682645798,-0.03654799237847328,0.09845157712697983,-0.022919969633221626,-0.000332761206664145,0.03572625666856766,-0.021442290395498276,0.02216539904475212,0.02375428006052971,0.036671288311481476,0.05283170938491821,-0.008337610401213169,0.03534778952598572,-0.008506381884217262,0.07332343608140945,-0.044622600078582764,-0.06160346418619156,-0.1368805468082428,-0.0828709751367569,0.02290622889995575,-0.0007571664173156023,-0.09935247898101807,-0.06642620265483856,0.015536020509898663,0.03372950479388237,-0.01659805327653885,0.027507426217198372,-0.09265684336423874,0.037020493298769,-0.021441185846924782,0.013033898547291756,-0.06854607909917831,0.0535319484770298,-0.03743660822510719,-0.029140884056687355,0.09193619340658188,-0.03032361902296543,-0.08122531324625015,0.09744352847337723,-0.061099451035261154,0.044190652668476105,0.0273677259683609,0.01767883263528347,0.00901841651648283,0.03998863697052002,0.008006012998521328,0.006114597897976637,-0.03929775208234787,-0.0849633738398552,0.04398263990879059,-0.05569100379943848,-0.0656064823269844,0.0019180228700861335,0.11698447167873383,0.04724292457103729,-0.021191122010350227,0.0071601951494812965,0.017418785020709038,0.013489616103470325,-0.09459605813026428,-0.04219864681363106,-0.132385715842247,-0.09934011101722717,-0.023055698722600937,0.1093250960111618,0.000911582144908607,0.018113180994987488,-0.010072595439851284,-0.05544748902320862,-0.02075941674411297,-0.040018875151872635,-0.01998656801879406,-0.02686353214085102,0.02938557043671608,-0.04558190330862999,-0.033490829169750214,0.015145608223974705,0.025809094309806824,0.05562060698866844,-0.00009898506687022746,-0.018923917785286903,0.07607768476009369,0.0006232635932974517,0.008820672519505024,-1.9941523987654364e-8,-0.07465965300798416,0.017759274691343307,-0.01983344368636608,0.0032550347968935966,0.06871967762708664,0.03383595868945122,-0.028038479387760162,-0.05561226233839989,-0.0022617296781390905,0.20785284042358398,0.06199604272842407,0.0034865406341850758,-0.11689824610948563,0.03771485015749931,0.03909324109554291,0.06730029731988907,0.021227549761533737,-0.0006033104727976024,-0.05392547324299812,0.011957544833421707,0.036626022309064865,0.022582044824957848,-0.022939808666706085,0.03481321036815643,0.0034618466161191463,-0.05127936601638794,-0.04839056730270386,-0.09244909882545471,-0.020202485844492912,-0.048120565712451935,0.047097280621528625,0.0038722495082765818,0.026503844186663628,0.004069855902343988,-0.033270109444856644,0.06134449318051338,0.06003372371196747,0.02297554537653923,-0.002620966639369726,0.043069034814834595,-0.019207047298550606,0.03844423219561577,0.03348502889275551,0.014055849052965641,0.026938730850815773,-0.014885973185300827,0.005833400879055262,0.030062204226851463,-0.0392281599342823,0.04741040989756584,0.11265835911035538,0.08197657018899918,0.01502515934407711,0.041464321315288544,0.04542214050889015,-0.021005889400839806,-0.053253255784511566,0.1102045401930809,-0.022614043205976486,0.06963305175304413,0.04225163534283638,-0.000923542829696089,-0.028096575289964676,-0.1020214781165123]},{"text":"Or has he calculated to a nicety the power of reaction?","book":"Down and Out in Paris and London","chapter":2,"embedding":[-0.041667625308036804,0.041945863515138626,-0.009369408711791039,0.058756861835718155,-0.03679953143000603,-0.028391150757670403,0.0152701735496521,0.06525466591119766,0.020759016275405884,0.0424320213496685,-0.01908518187701702,-0.014160525985062122,0.03831532597541809,0.046685591340065,0.05209886655211449,0.03539515659213066,-0.031848374754190445,0.038417965173721313,-0.061464227735996246,0.03404710069298744,0.05105355381965637,0.04203600436449051,0.07261300086975098,-0.07185881584882736,0.033638596534729004,-0.024399971589446068,0.01350532379001379,0.0258408784866333,0.05922558531165123,0.009601875208318233,0.011383730918169022,-0.04333580657839775,0.0014329069526866078,-0.04656177759170532,-0.01004580594599247,0.04655298590660095,0.018020933493971825,0.10836005955934525,-0.005744962953031063,0.02425342984497547,-0.03699145466089249,-0.05797727778553963,0.011701744049787521,-0.011701329611241817,-0.001102739479392767,-0.03415626659989357,-0.0065704043954610825,-0.03597430884838104,-0.0557401143014431,-0.01790819875895977,-0.048835113644599915,0.025129200890660286,0.06053093820810318,-0.06147842854261398,0.053690262138843536,0.02203229069709778,0.04371671378612518,0.006638143211603165,0.017447272315621376,0.00949386041611433,-0.08789942413568497,-0.01615852490067482,-0.03162035346031189,-0.00926736369729042,0.11269474029541016,0.03448477387428284,0.010027488693594933,-0.10261064022779465,-0.06650440394878387,0.06652764230966568,0.055385615676641464,-0.036969367414712906,0.09370815753936768,-0.0855475589632988,-0.012995697557926178,-0.08308145403862,-0.012037787586450577,0.026181500405073166,0.04558426886796951,0.02848169393837452,-0.0012844916200265288,-0.0407976359128952,-0.012085222639143467,0.03268818557262421,-0.0366792157292366,-0.018024345859885216,0.035683773458004,-0.041724950075149536,-0.00820224080234766,0.05930254980921745,-0.04746152088046074,0.0017660794546827674,-0.0559685118496418,-0.0368519090116024,-0.043352123349905014,-0.00918601918965578,-0.09290832281112671,0.056261975318193436,-0.0112077035009861,0.019453752785921097,0.03980895131826401,0.11973842978477478,-0.09663647413253784,-0.08731087297201157,0.024447809904813766,0.03503404185175896,-0.02096141129732132,0.07694254070520401,-0.025385063141584396,0.03819752484560013,-0.04792451858520508,-0.04522683098912239,0.025206876918673515,-0.010110416449606419,0.02775922790169716,-0.01880606822669506,-0.04534326121211052,-0.004734633024781942,-0.059844933450222015,-0.061899296939373016,0.15498347580432892,0.006151043344289064,0.027644623070955276,0.09601633995771408,-0.01774631254374981,-0.0022938046604394913,-0.04580828547477722,-5.5939098232564695e-33,0.02192717231810093,0.014837821945548058,0.006991284433752298,0.014759205281734467,0.01062004640698433,0.011597852222621441,-0.06021834909915924,-0.012331933714449406,0.1257699877023697,-0.007550444453954697,-0.005166738294064999,0.07066760212182999,0.031149407848715782,0.010192597284913063,-0.06045889854431152,0.08274046331644058,0.016470134258270264,0.008743430487811565,0.002861869754269719,-0.052755843847990036,-0.03654266521334648,0.04245544597506523,0.022175883874297142,0.018544822931289673,0.06070913001894951,0.09242700040340424,0.023284250870347023,0.0629114955663681,-0.039033934473991394,-0.02161354571580887,-0.0627284124493599,0.07207100093364716,-0.07597635686397552,0.02238701842725277,0.01481436938047409,-0.020687013864517212,-0.0741896778345108,-0.008776407688856125,0.022879911586642265,0.05325457826256752,-0.0013239462859928608,0.08641979098320007,-0.04870053380727768,0.000946671178098768,-0.026962885633111,-0.021198801696300507,-0.047358132898807526,0.015763133764266968,-0.02734615094959736,0.02206161990761757,0.06147918850183487,-0.018452944234013557,0.10112868994474411,0.0023653910029679537,0.0481320358812809,0.04275643825531006,0.016419004648923874,0.0326974019408226,0.0848543718457222,0.10254835337400436,-0.026779474690556526,0.02189539559185505,-0.003856904339045286,-0.02388293854892254,-0.0624118410050869,0.040738653391599655,-0.08191106468439102,0.008566359058022499,-0.07043583691120148,0.021738067269325256,0.012548700906336308,0.08048572391271591,-0.04577458277344704,-0.07178688794374466,-0.005701418034732342,-0.13957490026950836,0.0016766319749876857,0.028173167258501053,0.01708376780152321,0.03098624013364315,0.0023277318105101585,-0.02545585297048092,0.09290982037782669,-0.01973913051187992,-0.04343857616186142,-0.0370185524225235,-0.07411086559295654,-0.005988136865198612,-0.014654817059636116,0.0056649972684681416,-0.014675592072308064,-0.10167255252599716,0.0265252236276865,-0.06314652413129807,-0.08942095935344696,2.0520797736846605e-33,-0.16063523292541504,-0.04948686063289642,-0.00763530982658267,0.1532939225435257,-0.008864609524607658,-0.020126407966017723,-0.08608482033014297,-0.017411593347787857,0.03195903077721596,-0.013323602266609669,0.10274577140808105,0.035103537142276764,-0.008405478671193123,-0.06046116724610329,0.08665869385004044,-0.006101646460592747,0.0585942305624485,0.008993145078420639,-0.03476686403155327,-0.013885147869586945,0.046989813446998596,-0.007218811195343733,0.047234755009412766,-0.025508277118206024,-0.03680646792054176,-0.0008452677284367383,0.048655107617378235,-0.1025770902633667,-0.04481824114918709,-0.04385749623179436,0.06329216063022614,-0.008104636333882809,-0.1131054013967514,0.05262165889143944,0.04234831780195236,0.004807874094694853,0.008786034770309925,0.04158952832221985,-0.012197759933769703,0.03624440357089043,-0.015272402204573154,0.04069539159536362,0.00873184110969305,0.10374470055103302,-0.026929311454296112,0.022115742787718773,-0.010595426894724369,-0.024634631350636482,0.06535489857196808,-0.06278590857982635,0.020208895206451416,0.00671760831028223,-0.08083201944828033,-0.011278272606432438,-0.07627581059932709,0.00024416690575890243,0.012639319524168968,-0.04127955436706543,0.024939127266407013,-0.03560313954949379,-0.03361642733216286,-0.07579301297664642,-0.024974502623081207,-0.03231611102819443,-0.03888433054089546,0.11925981938838959,-0.0630536675453186,0.02406090870499611,0.09424383193254471,0.012829630635678768,0.07965299487113953,-0.029432812705636024,-0.019065920263528824,0.0429934523999691,-0.05986585468053818,0.02223016321659088,0.01870911940932274,-0.12241096794605255,-0.047721777111291885,-0.03720194473862648,-0.07459589838981628,-0.027359891682863235,0.014018286019563675,-0.15633167326450348,-0.002183743519708514,-0.04180988296866417,-0.031020907685160637,-0.04741806909441948,-0.018128463998436928,0.01751474104821682,0.017525620758533478,0.027718529105186462,0.02414538525044918,0.019165750592947006,0.0015220626955851912,-2.0084490515159814e-8,-0.006371019873768091,0.014641987159848213,0.0577501505613327,0.03957337513566017,0.019224323332309723,0.08399559557437897,0.003464093431830406,-0.06108272075653076,-0.07748181372880936,0.022312363609671593,0.09925707429647446,0.08166013658046722,0.08107204735279083,-0.009452360682189465,0.04495014622807503,-0.005335340742021799,0.08615609258413315,-0.05114814639091492,-0.06831970810890198,0.008745849132537842,0.007860206998884678,0.012211931869387627,0.027373172342777252,0.05584384873509407,-0.04026063159108162,-0.01828644797205925,-0.04350768029689789,-0.018199557438492775,-0.0030816837679594755,-0.05839775502681732,0.03973483294248581,-0.014365753158926964,-0.06510385125875473,-0.06093282252550125,0.08402375131845474,-0.020973075181245804,0.014399389736354351,0.004335745237767696,0.10377779603004456,-0.002824015449732542,-0.04866541549563408,0.020271362736821175,-0.022990038618445396,0.10529516637325287,-0.00008886196155799553,-0.010956731624901295,-0.03497299924492836,-0.060339074581861496,-0.006783816963434219,0.0132940374314785,0.05205259844660759,0.1086183413863182,-0.056777771562337875,-0.10416087508201599,0.04466518014669418,0.002608694601804018,-0.008486841805279255,-0.06774115562438965,-0.06641057878732681,-0.05106103792786598,0.08174911141395569,-0.04113233834505081,0.009300021454691887,-0.06031179800629616]},{"text":"No more hoary superstition survives than that the donning of a uniform changes the nature of the wearer.","book":"Down and Out in Paris and London","chapter":2,"embedding":[0.022913919761776924,0.09124558418989182,0.06984365731477737,-0.013659272342920303,0.08516592532396317,-0.02636546827852726,0.01395699568092823,-0.0854780524969101,-0.020130451768636703,0.0007950770668685436,0.0721844807267189,0.09447609633207321,0.038029830902814865,-0.0230251532047987,0.025547455996274948,0.017742561176419258,-0.0356735959649086,0.07007678598165512,-0.12678278982639313,0.01862214505672455,0.02385322004556656,-0.018519463017582893,-0.0221946369856596,0.1280899941921234,-0.06954975426197052,-0.07126190513372421,-0.04602629691362381,-0.02199690043926239,-0.020054133608937263,-0.0008954528602771461,-0.074925497174263,0.025057675316929817,-0.07970039546489716,0.056772906333208084,-0.08102595061063766,-0.017046628519892693,0.05268055200576782,-0.004135061986744404,0.05187663808465004,0.05967354774475098,-0.0009983620839193463,-0.08223003894090652,-0.10006683319807053,0.023408493027091026,-0.041277192533016205,0.09941700845956802,0.03191317990422249,-0.012168881483376026,-0.032717831432819366,0.004100313410162926,-0.012570532970130444,0.03534001111984253,0.07153540104627609,-0.011534075252711773,0.030298465862870216,0.017905307933688164,-0.0011780180502682924,-0.04011359065771103,-0.013469376601278782,0.026576627045869827,-0.0031836936250329018,0.039533622562885284,-0.09421132504940033,0.03857297822833061,0.08762670308351517,-0.055342838168144226,0.020856117829680443,0.002057921141386032,-0.000376711948774755,0.04698452726006508,-0.01869906671345234,0.011225996538996696,0.021641412749886513,0.1416127234697342,-0.029931768774986267,0.030275646597146988,-0.04813394695520401,-0.03613551706075668,-0.023084009066224098,-0.0265609510242939,-0.006860426627099514,-0.07516944408416748,0.05048038065433502,0.06787596642971039,0.04570353031158447,-0.10163938254117966,0.0026791756972670555,-0.04795391112565994,0.032049573957920074,0.024422122165560722,-0.05293545871973038,-0.029406780377030373,-0.0007253424846567214,-0.08022039383649826,0.06713682413101196,0.07208794355392456,-0.0392347127199173,0.10312652587890625,-0.12150213122367859,0.031348489224910736,-0.04066891223192215,-0.026533400639891624,0.0016981975641101599,0.04781555011868477,0.05675310268998146,-0.02884857915341854,0.0003902164753526449,-0.03813667222857475,0.002117536962032318,0.06915796548128128,0.029867276549339294,-0.04437809810042381,0.07381097227334976,-0.027207136154174805,-0.07950764149427414,0.044887710362672806,-0.057139914482831955,0.05183654651045799,-0.070182204246521,0.02542990818619728,0.0988486260175705,0.0016731906216591597,-0.002582825953140855,0.04697920009493828,-0.012782342731952667,-0.037644147872924805,0.05252883583307266,-1.4713214632021322e-33,0.029728582128882408,-0.0034782299771904945,0.008823852986097336,-0.033349812030792236,0.06885547190904617,-0.0562591515481472,-0.017113594338297844,-0.05684693530201912,0.11186309903860092,0.02767120860517025,0.03803350031375885,-0.014435329474508762,-0.04975882172584534,-0.015425313264131546,0.0027414169162511826,0.002956354059278965,0.00042990694055333734,0.006340012885630131,0.015134813264012337,0.010763358324766159,-0.002544475719332695,0.03717958927154541,-0.04462378844618797,-0.014039945788681507,-0.0466344989836216,-0.02312260866165161,0.025421183556318283,0.015347141772508621,-0.10313067585229874,0.0398096889257431,0.07432322204113007,-0.016380490735173225,0.06563255190849304,0.041038449853658676,-0.0789065733551979,-0.04619702324271202,-0.003339471761137247,-0.028368394821882248,-0.004959137178957462,-0.09656190127134323,0.016486624255776405,0.006668465211987495,0.021308865398168564,0.038320768624544144,0.004180414602160454,0.027110766619443893,0.08782555907964706,0.04152759909629822,-0.0800228863954544,0.03175989165902138,0.08427704125642776,0.02636065147817135,-0.045981016010046005,-0.03811080381274223,0.028279829770326614,0.00131455366499722,0.03557252883911133,0.002871982054784894,-0.01975611224770546,-0.039565250277519226,-0.04318871349096298,0.013237783685326576,0.028850600123405457,0.055777087807655334,0.05476104095578194,-0.0363159105181694,-0.012617459520697594,-0.09746922552585602,-0.05616007000207901,0.03582357242703438,-0.007545344531536102,0.022449243813753128,-0.13347063958644867,0.04984889179468155,0.007951256819069386,0.019890060648322105,0.016916071996092796,-0.06446036696434021,0.06846302002668381,-0.08863859623670578,-0.03170288726687431,-0.01861654967069626,-0.013699959963560104,0.04785551875829697,0.06075106933712959,0.0016125605907291174,0.08738557994365692,-0.028016703203320503,0.012723390012979507,-0.038632094860076904,0.11728041619062424,-0.06947410106658936,0.03833320364356041,-0.026628967374563217,-0.03724534809589386,9.328778843395219e-35,-0.024563265964388847,-0.010454975999891758,0.04577796161174774,0.14621832966804504,-0.014421626925468445,0.012971526943147182,-0.08945165574550629,-0.0024289139546453953,-0.08705317974090576,0.00682946527376771,0.11280936747789383,0.009254259057343006,-0.07495608180761337,0.06828189641237259,0.06277325004339218,-0.012051350437104702,0.03345762938261032,0.07059192657470703,-0.006939613725990057,0.016216397285461426,0.08031971007585526,0.008348819799721241,-0.0694093406200409,0.008366296999156475,-0.08324196189641953,-0.0017005748813971877,-0.015852417796850204,0.027635524049401283,-0.01689739339053631,-0.034893278032541275,-0.013316085562109947,0.027682842686772346,-0.00688877422362566,0.011960159987211227,0.006361539475619793,0.016961710527539253,-0.012632997706532478,0.07271450012922287,-0.05568600445985794,-0.00981071125715971,0.003981136716902256,-0.09458810836076736,0.05265029892325401,0.002613786840811372,-0.019565477967262268,-0.08261263370513916,-0.038116704672575,-0.010995390824973583,-0.0022370137739926577,0.008213927038013935,0.03747808560729027,-0.022593190893530846,-0.03704703226685524,-0.06826882809400558,-0.02786119468510151,0.06153860315680504,-0.08038762211799622,-0.09570986777544022,-0.10524182766675949,0.04530056193470955,0.03349132835865021,0.0560089647769928,0.0053643593564629555,0.0373954139649868,-0.009353606961667538,0.01991123892366886,-0.09268449246883392,0.1363603174686432,-0.04359766095876694,0.029352150857448578,0.07721178233623505,-0.049134254455566406,-0.06857336312532425,-0.06584740430116653,-0.0418839156627655,-0.016207268461585045,0.03668000549077988,-0.03408585116267204,-0.014088095165789127,0.06314043700695038,-0.07893279194831848,-0.05493267998099327,-0.07219655066728592,-0.004445947241038084,0.018102824687957764,0.04547792300581932,-0.03412746638059616,0.030613774433732033,0.0012814467772841454,0.06434852629899979,-0.05705663561820984,0.03978663310408592,0.02011464163661003,-0.0007871055859141052,-0.0037959639448672533,-2.340978255688242e-8,-0.0200926773250103,0.07184255868196487,0.0409126877784729,0.01948961243033409,0.021429551765322685,-0.021182624623179436,0.03364396095275879,-0.015970533713698387,-0.01626754179596901,0.047492243349552155,-0.03526191785931587,0.04237166419625282,0.04209781810641289,0.03055967390537262,0.020865697413682938,0.02318648435175419,0.022966604679822922,-0.059294529259204865,-0.11105549335479736,-0.0399162583053112,0.010309802368283272,0.014627328142523766,0.008940021507441998,-0.010028314776718616,-0.058932699263095856,0.01872348226606846,-0.006319720763713121,0.11520763486623764,0.02795162983238697,0.10032813996076584,0.05140002816915512,-0.022782253101468086,-0.025043882429599762,0.0020258892327547073,-0.05164921283721924,-0.014859451912343502,-0.05821296572685242,-0.04903843626379967,0.1017172709107399,-0.04855997487902641,-0.003096162574365735,-0.098601333796978,-0.016267068684101105,0.12655918300151825,0.005815820302814245,-0.07549053430557251,0.03571926802396774,-0.006318156607449055,-0.07133576273918152,-0.030212348327040672,0.08462335169315338,-0.002767251804471016,0.0009690017905086279,0.07325853407382965,0.027525536715984344,-0.023718012496829033,0.028178201988339424,0.09366768598556519,0.0024255644530057907,0.008371996693313122,0.019521694630384445,-0.07365376502275467,-0.021188123151659966,0.02545243129134178]},{"text":"The central note of the play is, that with the true woman, weakness which appeals to the maternal instinct is more powerful than strength which offers protection. _Candida_ is quite unpoetic, as, indeed, with rare exceptions, women are prone to be.","book":"Down and Out in Paris and London","chapter":3,"embedding":[0.03556005656719208,0.023153062909841537,-0.016392966732382774,0.05105477198958397,-0.025864452123641968,0.09044058620929718,-0.0024204456713050604,0.05078529193997383,-0.10916979610919952,0.03540156036615372,-0.0029370500706136227,-0.027985436841845512,-0.10027146339416504,-0.02733050100505352,0.008197437040507793,0.01039816439151764,0.10023923963308334,-0.017562473192811012,0.00007913324952824041,0.11476422101259232,0.026257561519742012,-0.030136672779917717,0.10208216309547424,0.0072521851398050785,-0.03668186441063881,-0.05575370043516159,-0.019336430355906487,0.018893761560320854,0.00706427963450551,-0.08134778589010239,-0.06264806538820267,0.061157092452049255,0.04550435394048691,-0.03001471422612667,-0.10935696959495544,0.036610014736652374,-0.001545623643323779,-0.02473250776529312,0.11669659614562988,0.009366984479129314,-0.014968515373766422,-0.014468766748905182,-0.0522221177816391,0.06440813839435577,-0.08831024169921875,-0.036027368158102036,-0.00013578961079474539,0.002449207240715623,-0.05869337543845177,-0.04792623221874237,-0.04944457858800888,-0.001480221631936729,-0.046007879078388214,-0.006248990073800087,0.0228121317923069,-0.04525270685553551,-0.0061322469264268875,-0.04541405290365219,0.05057460442185402,-0.011184285394847393,0.06152019649744034,0.06416957080364227,0.02804308943450451,0.07068745046854019,0.02394906058907509,-0.13129819929599762,0.05878543481230736,0.04091064631938934,-0.037387799471616745,-0.0013365424238145351,0.08427371084690094,0.023881591856479645,-0.05847332999110222,0.01737467758357525,0.06616239994764328,0.038557179272174835,0.07736613601446152,-0.1307305246591568,0.003084736643359065,0.04571215808391571,-0.042120061814785004,0.02310245856642723,0.011400130577385426,0.10119490325450897,-0.00140859792008996,-0.08104419708251953,0.057603079825639725,-0.08434208482503891,0.02713518962264061,0.0378115214407444,-0.013396006077528,-0.013948014006018639,0.01564059965312481,0.1372757852077484,0.02547413296997547,0.037577830255031586,-0.05294760689139366,-0.05772288143634796,-0.09443888068199158,0.002214346081018448,-0.0001410256081726402,0.016551954671740532,0.025791123509407043,0.13277021050453186,0.03597193583846092,-0.0071045574732124805,-0.011318022385239601,-0.11279994994401932,-0.003708604024723172,0.05223467946052551,-0.026728017255663872,-0.08675640821456909,-0.012645112350583076,0.005574995186179876,-0.024273747578263283,-0.07295363396406174,0.012408680282533169,0.0014691738178953528,-0.016614481806755066,-0.031055111438035965,0.0663863867521286,-0.013494892045855522,-0.0119938338175416,-0.06401621550321579,-0.0063224551267921925,-0.05942586809396744,0.021125780418515205,-1.4809639147922328e-33,0.007067234255373478,-0.06631796061992645,0.004359785467386246,0.017562363296747208,0.058192551136016846,-0.006363619118928909,0.015155646950006485,-0.04016280546784401,-0.01932370848953724,0.00318503612652421,-0.1226503774523735,-0.011420720256865025,-0.09118082374334335,0.00023069154121913016,-0.0719127207994461,0.07867636531591415,-0.006387533154338598,-0.03769558668136597,-0.020694905892014503,0.07787175476551056,0.01362511795014143,0.08889997750520706,-0.04272906854748726,-0.05544818192720413,0.0038699994329363108,-0.044482216238975525,0.07772665470838547,0.07487320154905319,-0.04823317378759384,0.004888012073934078,-0.014325258322060108,-0.13727734982967377,0.025660069659352303,-0.07326571643352509,0.04279723018407822,0.002378912176936865,-0.031520865857601166,-0.008615892380475998,-0.011570313945412636,0.03207387030124664,-0.12415076047182083,-0.0215927641838789,0.0250529944896698,-0.04168194904923439,-0.016451863572001457,0.02057565376162529,-0.03534054383635521,-0.012886226177215576,-0.11006119847297668,0.04765990749001503,-0.054788194596767426,0.022298673167824745,0.035169899463653564,0.09896208345890045,0.028782330453395844,0.03479380905628204,-0.0076543292962014675,0.050445687025785446,-0.041775453835725784,-0.04185350984334946,0.02902815118432045,-0.07370756566524506,0.06256657093763351,-0.05255863815546036,-0.05177580565214157,0.024874547496438026,-0.024296453222632408,-0.03315718099474907,0.030496200546622276,0.04542309790849686,-0.09404659271240234,0.019023772329092026,-0.06176042556762695,0.027732055634260178,-0.024504823610186577,-0.03507213667035103,0.08705943077802658,-0.03716707229614258,0.023102475330233574,-0.05980728939175606,-0.0011542026186361909,0.0037301466800272465,-0.016392534598708153,0.08441673219203949,-0.0753272995352745,-0.015484390780329704,0.06532195210456848,-0.1022300273180008,0.05440213158726692,0.018055155873298645,0.030857684090733528,-0.04530801251530647,0.004593541845679283,-0.054480161517858505,0.009290087036788464,-1.1230068750191415e-33,0.020475029945373535,-0.10874847322702408,0.02238156460225582,-0.011937194503843784,-0.013833208940923214,0.011828060261905193,0.007244407199323177,0.04046517238020897,-0.015369554981589317,0.007120106369256973,-0.0725841149687767,-0.08751116693019867,-0.009289252571761608,-0.004233197774738073,0.06160608306527138,-0.057224441319704056,-0.024788694456219673,0.044477712363004684,0.03498081490397453,-0.001024251221679151,-0.03207526355981827,0.09865212440490723,-0.0507078692317009,-0.03203432261943817,0.025502143427729607,-0.0016484144143760204,0.010150030255317688,-0.046530500054359436,-0.009700294584035873,0.039991483092308044,0.04463784769177437,-0.0039584944024682045,-0.061353303492069244,0.01135962177067995,0.05897984653711319,0.04085112363100052,-0.028862418606877327,0.00977103691548109,0.008517558686435223,0.03717734292149544,0.008240574970841408,0.017782649025321007,-0.03514905273914337,0.004250173456966877,0.004223317839205265,0.08822771906852722,0.10602928698062897,0.07580944150686264,0.07224757969379425,0.03882692754268646,0.022744042798876762,0.0031806183978915215,-0.013514612801373005,0.06393392384052277,0.07272624224424362,-0.08597800135612488,0.12244922667741776,-0.04128946363925934,0.00472655612975359,-0.0010952787706628442,-0.03393260017037392,0.002591324970126152,-0.09113750606775284,-0.0629427582025528,-0.038542382419109344,0.03294399008154869,-0.09055676311254501,-0.035762231796979904,0.052008844912052155,0.0077744219452142715,0.006892305798828602,-0.018803276121616364,-0.017269065603613853,0.001312405220232904,-0.028573624789714813,0.005639167968183756,-0.08051133155822754,-0.042049840092659,0.004804978612810373,-0.009643915109336376,0.021960806101560593,-0.08560571074485779,0.06106916442513466,0.011011726222932339,0.013386783190071583,0.04527148976922035,0.024277735501527786,-0.026406316086649895,-0.06767158955335617,0.02691851183772087,0.01010853610932827,0.028521448373794556,-0.014770572073757648,-0.0011346914106979966,0.011984305456280708,-3.704178297425642e-8,0.030740991234779358,0.04122571647167206,-0.03071412444114685,-0.09515687078237534,-0.04620397463440895,-0.011571642942726612,-0.0000460668234154582,-0.12838949263095856,0.018865887075662613,0.12997359037399292,0.002198439324274659,0.06741082668304443,0.06852167844772339,0.03294937685132027,0.030588237568736076,0.09083926677703857,0.006507617887109518,0.010213387198746204,-0.03325385972857475,0.012946437112987041,0.002457924885675311,-0.02358071319758892,-0.047111865133047104,-0.042310930788517,-0.08965334296226501,0.04826083406805992,-0.018154192715883255,-0.02299661934375763,0.001242142985574901,0.028615940362215042,0.11750031262636185,0.05600670725107193,0.05723348632454872,-0.041236262768507004,0.012596617452800274,0.10037539154291153,0.006775892339646816,-0.044178854674100876,0.002084186766296625,-0.0030173042323440313,0.025117306038737297,-0.08358408510684967,0.05885298177599907,0.047203391790390015,-0.011265606619417667,-0.07615387439727783,0.04921438544988632,0.035612303763628006,-0.0074830204248428345,0.027597127482295036,0.014024076983332634,0.043126728385686874,-0.032972302287817,0.018420519307255745,-0.031104546040296555,0.009397379122674465,-0.05436379462480545,0.0919753760099411,-0.039970044046640396,0.0066898660734295845,0.05213224142789841,-0.03281283378601074,0.06743988394737244,-0.038912948220968246]},{"text":"Those who study this play—extravaganza, that it is—will attain a clearer comprehension of Napoleon than they can get from all the biographies. “You Never Can Tell” offers an amusing study of the play of social conventions.","book":"Down and Out in Paris and London","chapter":3,"embedding":[-0.09855131804943085,0.07865799218416214,-0.01664898544549942,-0.029476815834641457,0.004252653103321791,0.08571573346853256,0.07133955508470535,-0.018614202737808228,-0.0338057205080986,-0.02794693596661091,-0.037529416382312775,0.009689068421721458,0.03366406261920929,-0.05833704024553299,-0.046351026743650436,-0.06730397045612335,0.05729569122195244,0.04953860864043236,0.002930219518020749,0.007493245881050825,0.0521564781665802,-0.03490981087088585,0.08291386812925339,0.01663995161652565,-0.00014166338951326907,-0.06985054910182953,0.01788184605538845,-0.0020151615608483553,-0.05844344198703766,-0.06171783432364464,0.01711074262857437,0.029432648792862892,-0.029138097539544106,-0.00762304849922657,-0.06490039080381393,-0.020426107570528984,0.027779243886470795,0.044012732803821564,0.10055080056190491,-0.018844885751605034,-0.03720042109489441,0.029981447383761406,-0.06116144731640816,0.044675715267658234,0.01769343949854374,-0.005096483044326305,-0.04260309785604477,-0.024166420102119446,-0.014719797298312187,-0.006576869171112776,-0.05671257525682449,0.022644484415650368,-0.01967640221118927,-0.06218096241354942,-0.009820484556257725,-0.06157408282160759,-0.033015597611665726,0.063582643866539,-0.03413830325007439,0.07740607857704163,0.06023412197828293,-0.006506357342004776,0.03124447911977768,0.03922943398356438,0.015711691230535507,-0.024395842105150223,-0.021594909951090813,0.02717420645058155,-0.0966753214597702,0.06375151872634888,-0.026709426194429398,0.015779534354805946,0.04388045147061348,-0.07218744605779648,-0.09656134992837906,-0.05504486337304115,-0.03599243611097336,-0.004139214288443327,-0.06577537953853607,0.003416836727410555,-0.022014115005731583,-0.08490044623613358,-0.0463225357234478,0.05873025953769684,0.00539078563451767,-0.05861881375312805,0.09071427583694458,-0.07165959477424622,0.07946770638227463,-0.007954907603561878,-0.0754951685667038,-0.1096789538860321,0.010832348838448524,0.08350106328725815,0.05440349504351616,0.06505315005779266,-0.07386711239814758,0.030306527391076088,-0.05033827945590019,0.07737857103347778,0.029634475708007812,0.004052290227264166,0.08328358829021454,0.018949775025248528,-0.03031402826309204,0.011048886924982071,-0.017135053873062134,-0.03843904286623001,0.0038968282751739025,-0.06338289380073547,0.010030015371739864,-0.045620791614055634,0.053543299436569214,0.01836613193154335,0.023232538253068924,0.05601188540458679,0.04585130885243416,-0.08426456153392792,-0.07906729727983475,0.03287213295698166,0.06838192790746689,0.039204858243465424,0.021099550649523735,0.08636774867773056,-0.0050748493522405624,0.03174174204468727,0.0008952642674557865,-2.465291200924642e-33,-0.01492950227111578,-0.03821108490228653,0.030134478583931923,0.04798489436507225,-0.04093533009290695,0.08162301033735275,-0.09423309564590454,-0.0011830435832962394,-0.048647429794073105,0.06094874069094658,-0.006976606789976358,0.04902953281998634,-0.011028802022337914,0.005842988844960928,-0.06657953560352325,0.13418658077716827,-0.07324668765068054,0.02836562879383564,0.04416365921497345,-0.009424137882888317,0.05022306367754936,0.05588564649224281,-0.06428638845682144,-0.06192591413855553,-0.03314341604709625,0.05077671632170677,0.03042142651975155,-0.08542738854885101,0.038776904344558716,0.036849237978458405,-0.03296855837106705,0.016175685450434685,-0.022682704031467438,0.007880888879299164,0.05800547078251839,-0.03297446295619011,-0.023782022297382355,-0.03572014346718788,0.04424380511045456,0.07120740413665771,0.020339926704764366,-0.03508709743618965,-0.07965301722288132,0.03436931222677231,-0.04385602846741676,0.05866427347064018,0.04702768847346306,0.027683425694704056,-0.0007050330168567598,0.006862517446279526,0.02612227201461792,0.019683796912431717,0.02588614635169506,-0.015208235010504723,0.08682216703891754,0.04371512308716774,-0.007087849546223879,0.07648167014122009,-0.007183826994150877,-0.05842128396034241,0.0776592418551445,-0.048194821923971176,0.022555220872163773,0.06281206756830215,-0.032210901379585266,0.02576555870473385,-0.09038208425045013,0.022624121978878975,0.08111818134784698,-0.06164034456014633,-0.06229868903756142,0.005950119346380234,-0.05094282329082489,0.04673624783754349,-0.02680475078523159,-0.059874020516872406,0.03172833472490311,0.013152445666491985,0.009043280966579914,-0.03954092413187027,-0.0025435464922338724,-0.10123103857040405,-0.004119046498090029,-0.018026435747742653,-0.05540425702929497,0.06598992645740509,0.11484694480895996,-0.047906871885061264,-0.012441594153642654,0.10235108435153961,-0.026341577991843224,-0.0673382580280304,-0.005324596539139748,-0.023358777165412903,-0.051628343760967255,-1.49194716462624e-33,-0.018701286986470222,-0.05454288050532341,-0.00005548883927986026,-0.018657485023140907,0.009975140914320946,-0.047585468739271164,-0.07783162593841553,0.02876375801861286,0.05498405545949936,0.047448720782995224,-0.06491512805223465,-0.04733909294009209,0.052680470049381256,0.0007074579480104148,0.03849712014198303,-0.03492572531104088,0.04300381988286972,-0.023801051080226898,-0.05640864744782448,-0.054989755153656006,-0.062435124069452286,0.002337509533390403,-0.037956658750772476,0.008692600764334202,-0.07132600247859955,0.048309821635484695,0.008426896296441555,-0.05757103115320206,-0.07926902174949646,0.04213793948292732,-0.05342917516827583,0.027906686067581177,-0.006985660642385483,-0.022513248026371002,0.06067077815532684,0.04196632653474808,0.04046778753399849,0.01693766377866268,0.006462319754064083,-0.006102484650909901,-0.07574416697025299,0.03130579739809036,-0.0864548608660698,-0.02188543602824211,0.033211953938007355,-0.03986009582877159,-0.03157275170087814,-0.05338941141963005,0.008463007397949696,0.08103875815868378,0.008061079308390617,0.02003428153693676,-0.014285031706094742,-0.0905066654086113,-0.026827804744243622,-0.02661183662712574,-0.01794157549738884,-0.0073508648201823235,-0.003602845361456275,0.022513654083013535,0.06262984871864319,0.02480667643249035,-0.1209375262260437,-0.005633425898849964,0.03242141380906105,0.026497073471546173,-0.08995477110147476,0.06722579896450043,0.10004625469446182,0.035005439072847366,-0.01623564027249813,-0.1657099425792694,-0.16229110956192017,-0.005612300243228674,-0.03477899357676506,0.11263561248779297,-0.01937459036707878,-0.01466043945401907,-0.030789021402597427,-0.05258883163332939,-0.023889318108558655,-0.08721324801445007,0.006410563364624977,0.0022807810455560684,0.042824599891901016,0.08532042801380157,-0.032509397715330124,-0.0011976097011938691,0.009118583984673023,0.024033285677433014,0.04316618666052818,-0.022692019119858742,0.019995007663965225,-0.11642445623874664,0.006978919729590416,-3.7177596112769606e-8,-0.012978428974747658,0.036844588816165924,-0.0038708115462213755,-0.0009366160375066102,-0.03707054257392883,-0.020419418811798096,-0.0506347119808197,-0.05920478329062462,-0.019513970240950584,0.0700148493051529,0.04649265110492706,0.02723166160285473,0.01848648488521576,0.014028206467628479,0.06095074862241745,0.056563761085271835,0.10217808932065964,-0.06847332417964935,-0.04783191904425621,0.05669018253684044,-0.014917726628482342,-0.014722330495715141,0.017198646441102028,-0.06513120234012604,-0.09483088552951813,0.0437229722738266,-0.006224874872714281,-0.03161586821079254,0.0067069982178509235,0.08836259692907333,0.017049118876457214,0.006166601087898016,-0.02489617094397545,-0.05201099067926407,-0.019362373277544975,0.07913844287395477,0.0583130344748497,-0.05501680076122284,0.025889599695801735,-0.03948064520955086,-0.012652276083827019,-0.05759970471262932,0.07949918508529663,0.052226245403289795,0.006597556639462709,0.06305176764726639,0.0960749089717865,-0.05355559661984444,-0.03513110801577568,0.06487405300140381,-0.031394872814416885,0.05724766477942467,0.003522345796227455,0.04034209996461868,0.04825063422322273,0.048209626227617264,-0.03479223698377609,0.11931513994932175,-0.020008470863103867,-0.0211116261780262,0.009865055792033672,0.13417485356330872,-0.003969285637140274,-0.06421858072280884]},{"text":"Shaw has not yet visited America he may be unaware of the improbability of this situation.","book":"Down and Out in Paris and London","chapter":3,"embedding":[0.07883648574352264,-0.02257242240011692,0.0017525183502584696,0.01235925406217575,-0.018088635057210922,-0.034764789044857025,0.08646710962057114,-0.12308774143457413,0.01936863176524639,0.06502052396535873,0.007673447486013174,0.058706048876047134,0.025683261454105377,0.053666334599256516,0.0014725496293976903,0.023833202198147774,-0.043134644627571106,-0.14053255319595337,0.007263101637363434,0.09939436614513397,0.020837292075157166,0.03474735468626022,0.07022881507873535,-0.006600670982152224,0.06862351298332214,-0.05511920154094696,0.030887678265571594,0.00010593468323349953,0.01420663297176361,0.07954463362693787,0.060934215784072876,-0.0036981101147830486,-0.08605866134166718,0.027087954804301262,0.07528270035982132,0.0070585692301392555,0.04262245073914528,-0.0358397513628006,0.09506741166114807,-0.005764790344983339,0.02238784171640873,-0.018056845292448997,-0.0010414003627374768,0.03823383152484894,0.004927410744130611,0.0382227823138237,-0.005271421279758215,-0.020464029163122177,-0.0290775615721941,-0.065425343811512,-0.09184404462575912,-0.0223364420235157,-0.006044392008334398,-0.19805608689785004,0.023930737748742104,-0.017206598073244095,0.007258269470185041,-0.08243680000305176,-0.038270097225904465,-0.049995679408311844,-0.025799589231610298,-0.08913972228765488,0.018497901037335396,0.01796075515449047,-0.011795727536082268,0.02213185653090477,-0.08083321899175644,0.0018932984676212072,0.06181521713733673,0.014826971106231213,-0.04112152010202408,0.042449913918972015,-0.022815726697444916,0.02430509403347969,-0.011475106701254845,-0.14183109998703003,0.03684922680258751,0.06486772000789642,-0.01278848759829998,-0.04472976550459862,-0.05463467165827751,-0.04062045365571976,-0.021646713837981224,0.08784056454896927,0.04332805052399635,0.026070328429341316,0.028755687177181244,0.003638375084847212,-0.03158831596374512,-0.016095072031021118,0.014953386038541794,-0.0347372367978096,0.03189243748784065,0.002512166043743491,0.003468264127150178,0.022490933537483215,-0.017206059768795967,0.07504391670227051,-0.1709897816181183,0.023469705134630203,-0.0197682473808527,0.06296702474355698,0.003199509112164378,0.04234103113412857,-0.06998883932828903,0.0697600245475769,-0.017743365839123726,-0.024449437856674194,-0.041871994733810425,0.002412898000329733,-0.0030191997066140175,-0.03297175467014313,0.013849751092493534,0.06726837903261185,-0.011578666977584362,0.018129754811525345,0.04430055990815163,-0.03310269117355347,-0.03723963722586632,-0.0026675553526729345,0.007171187084168196,0.010065825656056404,0.043709177523851395,0.06973744183778763,-0.11711688339710236,-0.027976954355835915,0.006289791781455278,-2.2664010465143648e-33,0.04794482886791229,-0.016457755118608475,-0.0349976010620594,-0.0059166294522583485,0.017993638291954994,0.06827035546302795,-0.0278874933719635,-0.1046808511018753,0.12029345333576202,-0.008982952684164047,0.07457508146762848,-0.04222237691283226,0.08110043406486511,0.0022765682078897953,-0.0662464126944542,0.0517764575779438,0.005408399272710085,0.06564627587795258,0.05353676155209541,-0.057246532291173935,0.07335071265697479,-0.013140969909727573,0.04732879623770714,0.013530993834137917,0.014541084878146648,-0.027421055361628532,0.037057165056467056,-0.012264108285307884,-0.002832971978932619,0.012942105531692505,-0.0746365487575531,0.08914754539728165,0.022796643897891045,0.005698196589946747,0.002053886419162154,0.027858814224600792,-0.053676899522542953,0.0082866121083498,-0.029693234711885452,0.037015870213508606,-0.02076602540910244,0.017048899084329605,-0.005197008606046438,0.00017858395585790277,-0.006973656360059977,-0.10188544541597366,0.0848461240530014,0.04985899478197098,-0.04250764474272728,0.034505438059568405,0.0573393814265728,0.025069503113627434,-0.007419967092573643,-0.11595659703016281,0.009267046116292477,-0.022799551486968994,0.017525095492601395,0.014255531132221222,0.053776685148477554,0.0054352195002138615,0.009993617422878742,-0.044748298823833466,-0.04774600639939308,0.011847541667521,-0.049042392522096634,0.021291721612215042,-0.011731201782822609,-0.03166232258081436,-0.12602241337299347,0.02333126962184906,0.044658564031124115,-0.04468178004026413,0.023142263293266296,0.057338468730449677,-0.05349345877766609,-0.05521467328071594,-0.00633282819762826,0.036997292190790176,0.05401826277375221,-0.02396252006292343,-0.04182318598031998,0.013809806667268276,0.07375378161668777,-0.013570821844041348,-0.017804929986596107,0.10894449055194855,0.11238521337509155,-0.009729503653943539,-0.06276075541973114,-0.02594912052154541,0.01780555583536625,0.000953241775278002,0.0070128729566931725,-0.024299703538417816,0.00855546910315752,-9.989311504024451e-34,-0.06294574588537216,-0.0027241059578955173,0.0011698906309902668,-0.034096766263246536,-0.05050230026245117,-0.05092035233974457,0.07316184043884277,0.010162003338336945,0.07771269977092743,-0.06262492388486862,0.02160499431192875,0.08268702030181885,0.018442681059241295,0.033041320741176605,-0.0004862210189457983,0.04941314831376076,0.06352003663778305,-0.034221094101667404,-0.04997528716921806,0.0440545491874218,0.018111221492290497,-0.03554733842611313,0.019521543756127357,0.029890386387705803,-0.06184477359056473,0.010775650851428509,-0.01961377076804638,-0.059289343655109406,-0.10066510736942291,-0.07686900347471237,0.00004131700188736431,0.013066040351986885,-0.05922102555632591,-0.005183605011552572,-0.06091050058603287,0.05967818573117256,-0.05287574231624603,0.028322605416178703,-0.04170368239283562,0.002675319090485573,0.057523880153894424,0.03254660218954086,-0.022647013887763023,-0.0709536150097847,-0.0755816176533699,-0.00018240300414618105,-0.0015471631195396185,0.021503841504454613,-0.0015248596901074052,-0.0001374948042212054,-0.06819797307252884,0.10027462244033813,-0.01564464531838894,0.06034616380929947,-0.014291908591985703,0.06467762589454651,-0.031384289264678955,0.029624491930007935,-0.016405096277594566,-0.060900211334228516,-0.05124133825302124,0.012114267796278,0.059130266308784485,-0.015492367558181286,0.04940951243042946,0.05679333209991455,-0.10303992033004761,0.07092959433794022,0.12249569594860077,-0.023123029619455338,-0.01872234232723713,-0.031039878726005554,-0.11413215845823288,-0.1592545211315155,0.05313723161816597,0.10269902646541595,-0.08633079379796982,-0.003076710272580385,-0.04486621171236038,-0.03027871996164322,0.04112750664353371,-0.036946821957826614,-0.08206021785736084,-0.014573291875422001,0.059727080166339874,-0.01522392313927412,-0.010096242651343346,-0.09417574107646942,0.07102155685424805,0.016272805631160736,-0.046560849994421005,-0.017244702205061913,0.03306859731674194,-0.05286393314599991,-0.02866273559629917,-2.1237919867189703e-8,-0.04171435534954071,0.07341182976961136,0.05894685536623001,-0.023892518132925034,0.013946744613349438,0.010200944729149342,-0.056618887931108475,-0.09409403055906296,-0.017190780490636826,0.0709848701953888,-0.01652488112449646,-0.026174064725637436,-0.023224836215376854,-0.03508938476443291,-0.04551318287849426,0.040323175489902496,0.01828722655773163,-0.030785594135522842,-0.021025434136390686,0.03775642067193985,-0.0472329780459404,0.02617253176867962,-0.029983792454004288,0.06361159682273865,0.02423873171210289,0.00786095391958952,-0.056576918810606,-0.07313811779022217,0.00554210739210248,0.017098383978009224,-0.033019136637449265,-0.031970541924238205,-0.014177699573338032,-0.027744824066758156,-0.041530732065439224,-0.0012886468321084976,0.11896184831857681,-0.01664365828037262,0.003222233382984996,-0.05694017931818962,-0.002940014936029911,-0.025745781138539314,0.017726507037878036,0.06748175621032715,0.02299424074590206,-0.03909418731927872,-0.01569104567170143,-0.010386205278337002,-0.012243346311151981,0.09860184788703918,-0.0006649947026744485,0.07217314094305038,0.04397290199995041,-0.006235374603420496,0.14655669033527374,0.021294476464390755,-0.02073216438293457,-0.018640246242284775,0.019720328971743584,0.09591399133205414,0.03641822561621666,-0.04710705578327179,0.011857192032039165,-0.06466729193925858]},{"text":"ARMS AND THE MAN ACT I Night.","book":"Down and Out in Paris and London","chapter":4,"embedding":[-0.014187254942953587,0.08691875636577606,0.030244283378124237,0.03369196876883507,-0.011083689518272877,-0.0045333304442465305,0.1576615571975708,-0.08018369227647781,0.05419569090008736,-0.062264058738946915,-0.017907626926898956,-0.02044803276658058,-0.0033708263654261827,0.02714640460908413,0.06994017958641052,-0.039435774087905884,0.04492831230163574,0.008480075746774673,0.08196260035037994,0.11715176701545715,0.02124466560781002,0.04729229211807251,0.04431501403450966,-0.03989716246724129,-0.04283673316240311,-0.025990555062890053,0.019722830504179,-0.04188729450106621,0.02374442294239998,-0.11370169371366501,0.010460760444402695,0.018130293115973473,-0.0686652660369873,-0.017068518325686455,-0.04274331033229828,0.021057330071926117,0.039664845913648605,0.011020174250006676,-0.0229098629206419,0.07802185416221619,0.07299689203500748,-0.07980842888355255,0.07490146905183792,0.011678976938128471,-0.011313000693917274,0.09592442959547043,-0.002816978609189391,-0.022472567856311798,-0.005796416662633419,0.02070065774023533,-0.06152888014912605,-0.012140743434429169,-0.006671795155853033,0.00015390322369057685,0.028414074331521988,0.0074887084774672985,0.041568655520677567,-0.010007928125560284,0.04101503640413284,0.0076053328812122345,0.05649399384856224,0.056930284947156906,0.015165177173912525,0.009736266918480396,0.07013068348169327,-0.012840358540415764,-0.02908765710890293,0.052765510976314545,-0.015715595334768295,0.04675246775150299,0.0026545824948698282,-0.01795938052237034,-0.01791154406964779,-0.042931027710437775,-0.0385444313287735,-0.044846855103969574,-0.0031795790418982506,-0.072101891040802,0.005541631951928139,-0.017598647624254227,-0.019548412412405014,-0.061795830726623535,-0.0518222376704216,-0.02779294177889824,-0.023386208340525627,0.06662141531705856,0.019767839461565018,0.012249262072145939,-0.08126313239336014,0.11046551167964935,-0.09426330775022507,-0.07116608321666718,-0.05461273714900017,-0.008082869462668896,0.009431171230971813,0.01738610491156578,-0.03420250862836838,0.032606590539216995,-0.08026424795389175,0.08374182134866714,0.03290318697690964,-0.0034425104968249798,0.04161229357123375,0.015315494500100613,-0.023413928225636482,-0.04058147221803665,-0.03958025202155113,-0.10299291461706161,-0.06357014924287796,-0.059521064162254333,-0.003903929376974702,-0.0734051764011383,-0.07241099327802658,-0.028393391519784927,0.09218472987413406,0.025473181158304214,0.021060656756162643,0.030033962801098824,-0.03343234956264496,-0.01291223056614399,0.08802901953458786,0.08198688924312592,0.039475876837968826,0.032185014337301254,-0.020302338525652885,-0.028771068900823593,-0.02251688577234745,-5.696074608680327e-33,0.047286488115787506,-0.03170943632721901,-0.004914762452244759,0.034974053502082825,0.038715723901987076,-0.020367152988910675,0.0016872570849955082,-0.011464392766356468,0.041224535554647446,-0.003704255912452936,0.02122535929083824,0.0011797425104305148,0.04061085358262062,0.005134461913257837,0.036977507174015045,0.06963659822940826,-0.02302974835038185,0.032237596809864044,0.00806034542620182,-0.004750263411551714,-0.055212363600730896,0.1362338662147522,-0.058450762182474136,-0.011820632964372635,-0.06635721027851105,0.03217318654060364,0.021766236051917076,0.025365212932229042,-0.025241676717996597,-0.0021361031103879213,-0.005593791138380766,0.04383902996778488,0.031577322632074356,0.02306382544338703,0.11715790629386902,0.007591400761157274,-0.09660258144140244,-0.03350072354078293,-0.06669053435325623,-0.03448189049959183,-0.01641310565173626,0.06093483418226242,-0.08250941336154938,-0.03709675371646881,-0.0075826277025043964,0.0016307738842442632,0.025242052972316742,0.028887653723359108,0.030639704316854477,0.04008638113737106,0.03933089226484299,0.0536612868309021,0.04251525178551674,-0.0467892624437809,-0.015291612595319748,0.04285619035363197,-0.05037902668118477,0.029474452137947083,-0.024671468883752823,0.049369219690561295,0.05606773868203163,-0.024842357262969017,0.10139329731464386,0.012824654579162598,-0.04262137413024902,-0.014698713086545467,-0.07033783197402954,-0.022101087495684624,-0.023886926472187042,-0.04436162859201431,-0.060834724456071854,-0.05010657384991646,0.06120868772268295,-0.03754356503486633,0.0318426787853241,-0.02586972713470459,0.06120912730693817,-0.02781381830573082,-0.12351265549659729,-0.03787875175476074,-0.004672063514590263,0.08905274420976639,0.06304752826690674,-0.03650887683033943,0.04750218242406845,-0.04616355523467064,0.02337987720966339,-0.08044366538524628,-0.022630125284194946,0.07234510034322739,-0.09172261506319046,-0.0816950798034668,0.03610333800315857,-0.029479017481207848,-0.037872835993766785,2.655844345322704e-33,0.08269867300987244,-0.05453089252114296,-0.028866782784461975,-0.015316068194806576,0.03067280352115631,-0.07250278443098068,-0.04877927526831627,0.016960637643933296,-0.018029242753982544,0.05754261836409569,-0.010584186762571335,-0.02515619993209839,-0.03526846319437027,0.02796710655093193,0.07719388604164124,-0.08998510241508484,0.05751124769449234,-0.026723245158791542,0.0025005533825606108,0.051870767027139664,0.06514876335859299,0.03201838955283165,0.10858079791069031,-0.03542487323284149,-0.07441937178373337,0.04215655475854874,0.08677087724208832,-0.00973578728735447,-0.0267485398799181,-0.0070386603474617004,-0.01209348626434803,-0.05827203020453453,-0.07610362023115158,0.032667845487594604,-0.024851782247424126,0.016062891110777855,-0.025403041392564774,0.016237109899520874,0.06039779260754585,-0.05324999988079071,0.04538622125983238,-0.013654171489179134,0.019873330369591713,0.03156779333949089,0.019836293533444405,0.0018206614768132567,-0.09001778811216354,0.06147250160574913,-0.0856412872672081,-0.013341524638235569,-0.07524696737527847,-0.03103618137538433,-0.0652017816901207,-0.08586597442626953,-0.059132590889930725,-0.04597514495253563,0.10518587380647659,0.006743017118424177,0.019840186461806297,0.11380796879529953,-0.027911826968193054,0.04756150394678116,-0.08469543606042862,0.008170624263584614,0.013764383271336555,0.042630720883607864,-0.07258899509906769,-0.0730198547244072,-0.03913091868162155,0.016240211203694344,0.042547114193439484,-0.0944395512342453,-0.05042341351509094,0.07486151158809662,-0.030780447646975517,0.02091197296977043,0.02810678258538246,-0.03349540755152702,0.00798687245696783,-0.18195590376853943,-0.0682382732629776,-0.14290085434913635,-0.020208846777677536,0.09168677031993866,-0.04247697442770004,0.10070954263210297,-0.0017491183243691921,-0.045907825231552124,-0.026175059378147125,0.039716415107250214,-0.00005793246236862615,-0.0010097268968820572,-0.008372421376407146,0.006177712697535753,0.0049606733955442905,-1.7527678863871188e-8,-0.05517636612057686,0.011377922259271145,-0.015479260124266148,-0.04302871227264404,-0.009791146963834763,0.10851355642080307,0.03379764407873154,-0.06373760104179382,0.04716319963335991,0.07617034763097763,0.04472658410668373,0.011971501633524895,0.10782497376203537,-0.01595323160290718,0.01684924028813839,-0.004863531328737736,-0.036524105817079544,-0.11458087712526321,-0.07944369316101074,-0.042070407420396805,0.07635852694511414,-0.02829182706773281,0.05347813293337822,0.010104008950293064,0.024639878422021866,0.056014109402894974,-0.038629066199064255,0.07250383496284485,-0.02143504098057747,0.11619539558887482,0.11001653969287872,0.02919100970029831,-0.025161027908325195,-0.0489930585026741,0.01918254978954792,-0.025270868092775345,0.013745250180363655,0.0160788893699646,0.0067213186994194984,-0.004772204905748367,-0.03583677113056183,0.02579389698803425,-0.03870265558362007,-0.026290828362107277,-0.0007617700612172484,0.017371932044625282,0.02641202136874199,-0.024265434592962265,0.009966579265892506,0.044670216739177704,-0.004797516390681267,0.0031515031587332487,0.010153221897780895,0.09675530344247818,-0.006881889887154102,-0.008827287703752518,0.022586693987250328,0.013044167309999466,-0.009006005711853504,-0.03532076254487038,0.1239735409617424,-0.016567576676607132,-0.041986994445323944,0.03479180485010147]},{"text":"Above the head of the bed, which stands against a little wall cutting off the right hand corner of the room diagonally, is a painted wooden shrine, blue and gold, with an ivory image of Christ, and a light hanging before it in a pierced metal ball suspended by three chains.","book":"Down and Out in Paris and London","chapter":4,"embedding":[0.0657353401184082,0.10017562657594681,-0.03795541450381279,0.03542247414588928,0.027698028832674026,0.05700995400547981,0.050709545612335205,-0.0739968940615654,0.12700191140174866,0.005263099446892738,-0.03157375380396843,-0.03420095890760422,-0.012213077396154404,-0.0557587705552578,-0.02016141079366207,-0.016410326585173607,-0.04774684086441994,-0.003968887962400913,0.03145112842321396,-0.01108554471284151,0.03290630504488945,0.016861991956830025,0.0028791313525289297,0.03533615171909332,0.005535092204809189,0.011951733380556107,0.004084320273250341,-0.03921598568558693,0.04687150940299034,-0.04996509104967117,0.011254575103521347,-0.11357321590185165,-0.030810797587037086,-0.022988444194197655,-0.046373143792152405,0.04014606028795242,0.032670628279447556,0.03892775997519493,0.03424736112356186,-0.012954864650964737,0.017016703262925148,0.02722017467021942,0.03378872200846672,-0.025659926235675812,-0.014251907356083393,0.0745588168501854,-0.07042966037988663,-0.03240049257874489,-0.033380549401044846,-0.06841815263032913,-0.02832387574017048,-0.03162489831447601,-0.03380283713340759,0.09737063944339752,-0.022023485973477364,0.08223637193441391,0.00930301658809185,-0.0835164412856102,0.08781333267688751,-0.014014997519552708,0.017649497836828232,0.07602480798959732,0.0454871691763401,0.023295780643820763,-0.02645185962319374,-0.032802291214466095,-0.03308691084384918,-0.010064911097288132,-0.010556656867265701,-0.07191652804613113,0.05446598678827286,0.01763754151761532,0.02900540456175804,-0.09637193381786346,-0.0005231043323874474,-0.0622631274163723,-0.015143482945859432,-0.065278060734272,-0.019816894084215164,-0.032763224095106125,-0.00899649877101183,0.01278388686478138,-0.013341131620109081,0.09078460931777954,-0.04172530770301819,0.0653567686676979,-0.018453843891620636,0.052097320556640625,-0.09512446075677872,-0.0032671529334038496,0.07011300325393677,-0.001274009351618588,-0.12289852648973465,0.02451324462890625,0.039134036749601364,0.0040427399799227715,-0.043282780796289444,-0.0029825225938111544,0.00927314255386591,0.08462551981210709,0.018601223826408386,0.008240594528615475,0.08269605785608292,-0.05046609044075012,0.025153839960694313,-0.046649593859910965,-0.049410611391067505,0.05936358869075775,0.0012575712753459811,-0.021230265498161316,0.02024107798933983,-0.06110367923974991,-0.0664859488606453,-0.004422418773174286,-0.040591757744550705,0.034949854016304016,0.05045514926314354,-0.08241486549377441,-0.048259492963552475,0.008925899863243103,0.1124902069568634,-0.0014994738157838583,0.06624084711074829,0.04915470629930496,-0.033212363719940186,-0.010095394216477871,-0.048943500965833664,-2.462194324323202e-33,0.0469164103269577,-0.022389458492398262,0.033215925097465515,-0.03260369971394539,0.08693483471870422,-0.014658216387033463,-0.008131682872772217,0.044126421213150024,-0.03447981923818588,0.013201739639043808,0.001246364088729024,-0.017949119210243225,-0.010752759873867035,0.03522000089287758,-0.060403916984796524,-0.1233111172914505,-0.005453618708997965,-0.06687826663255692,-0.023657703772187233,0.04048427939414978,-0.06866339594125748,0.06852209568023682,-0.02725072205066681,0.06356891244649887,0.04625324904918671,0.0621551014482975,0.031949978321790695,0.020766794681549072,-0.018689166754484177,0.023741651326417923,0.027978423982858658,0.0310272965580225,-0.027473315596580505,-0.04861431196331978,0.013583010993897915,-0.0050892941653728485,0.030522802844643593,-0.04722844436764717,-0.07843605428934097,0.03408436104655266,0.025725500658154488,-0.016164220869541168,-0.03295157477259636,0.07201611250638962,-0.024208296090364456,0.026806896552443504,0.050669167190790176,0.010682729072868824,0.015829166397452354,0.06525256484746933,0.008848937228322029,0.008300594054162502,-0.05825633183121681,-0.04553116858005524,-0.03314577043056488,-0.040927063673734665,-0.06425594538450241,0.007566072512418032,0.06161454692482948,0.007312075700610876,0.07614196091890335,-0.016300829127430916,-0.010726486332714558,0.042745597660541534,-0.03314812481403351,-0.03535554185509682,-0.040182337164878845,-0.005526903085410595,0.026627618819475174,-0.1128983274102211,-0.11646825075149536,-0.0001664429873926565,0.04938797652721405,0.02433662861585617,-0.052955906838178635,0.013925825245678425,-0.06718607991933823,-0.026367051526904106,-0.03391282260417938,-0.02029719576239586,-0.06456157565116882,-0.005780667066574097,0.015845218673348427,0.022478818893432617,0.020249951630830765,-0.045527271926403046,0.0076757469214499,-0.0032105627469718456,-0.0947248563170433,-0.08655544370412827,0.0026821596547961235,0.10209564864635468,0.02634892798960209,-0.06684824824333191,-0.09597066789865494,-6.1002945143269756e-34,0.02629851922392845,-0.14045947790145874,-0.0025589081924408674,0.04453986510634422,0.056524261832237244,-0.049997974187135696,-0.046314679086208344,0.04379141330718994,-0.02584719844162464,0.050831716507673264,0.038579121232032776,0.017020804807543755,0.03179527446627617,0.033976756036281586,0.09539185464382172,-0.06552475690841675,0.06889736652374268,0.06979160010814667,-0.016769254580140114,0.03017432428896427,-0.005474315956234932,0.06678704917430878,0.00554071506485343,-0.04349629208445549,-0.06195948272943497,0.09781225770711899,0.027679726481437683,-0.07053635269403458,0.0014358957996591926,-0.008366669528186321,-0.05916360020637512,-0.04885224625468254,-0.008425608277320862,0.016741346567869186,0.004219414666295052,-0.0015480461297556758,0.057336196303367615,-0.08045490086078644,-0.05641070008277893,0.011710823513567448,0.05789986252784729,-0.028399445116519928,-0.06332971900701523,0.08169952034950256,-0.005348077975213528,-0.003250358859077096,-0.07943670451641083,0.1138799637556076,0.04915499687194824,-0.004201891832053661,-0.05770619586110115,-0.1106138527393341,0.10115006566047668,-0.06335434317588806,-0.05328952521085739,0.005049829836934805,-0.046386897563934326,0.015300610102713108,0.10875877737998962,0.14736559987068176,0.07964055240154266,0.0020182698499411345,0.009553282521665096,0.010429991409182549,0.008729223161935806,0.04651641100645065,-0.01312791183590889,0.03455225005745888,-0.08742818981409073,0.045555129647254944,-0.0029971636831760406,0.01426814403384924,-0.07593964785337448,0.02490229904651642,0.043911147862672806,0.040899015963077545,0.07464983314275742,-0.030918434262275696,0.03113432042300701,-0.02851901762187481,0.02425154112279415,-0.05680668354034424,-0.01890658587217331,-0.04661930352449417,0.061321087181568146,-0.10109980404376984,-0.0435655415058136,0.026631047949194908,-0.09242794662714005,-0.07751307636499405,-0.07241936773061752,0.09460169821977615,-0.01462104544043541,-0.037294577807188034,0.0396050363779068,-3.8929520940200746e-8,0.0030736522749066353,-0.057685546576976776,0.019363870844244957,-0.09436564892530441,-0.005608269479125738,-0.012532426975667477,0.11553438007831573,-0.06884950399398804,-0.05637514591217041,-0.026374805718660355,0.003237272845581174,0.02440735697746277,-0.039839621633291245,-0.03434500843286514,-0.011800350621342659,0.07943465560674667,-0.1260179877281189,-0.007485579699277878,-0.0024001463316380978,0.01594150997698307,0.06521409004926682,0.00920874997973442,0.04560671001672745,-0.0879134088754654,-0.015859758481383324,-0.002013241872191429,0.01248116884380579,0.08688006550073624,-0.03348840773105621,0.034396395087242126,0.08165506273508072,0.05678095668554306,0.009400957264006138,-0.03974134102463722,-0.01965457759797573,0.025531157851219177,-0.07091771811246872,-0.011369680985808372,0.010336905717849731,-0.009127029217779636,0.04065795987844467,-0.04648057371377945,-0.0529942624270916,-0.04156315326690674,0.05955203250050545,-0.01907370612025261,0.026613106951117516,0.07602500915527344,-0.06295623630285263,0.08732522279024124,-0.07391687482595444,0.015440424904227257,0.012012048624455929,0.058301348239183426,-0.04093730077147484,-0.09773435443639755,0.077647365629673,-0.005549564026296139,-0.0010842776391655207,-0.052147284150123596,0.07351290434598923,-0.004834346938878298,0.043944139033555984,0.06498134136199951]},{"text":"This chest of drawers is also covered by a variegated native cloth, and on it there is a pile of paper backed novels, a box of chocolate creams, and a miniature easel, on which is a large photograph of an extremely handsome officer, whose lofty bearing and magnetic glance can be felt even from the portrait.","book":"Down and Out in Paris and London","chapter":4,"embedding":[-0.05353822559118271,0.07726655155420303,0.03306316211819649,0.05248185619711876,0.007627497892826796,0.04743914678692818,-0.000023516044166171923,-0.02586161158978939,-0.04284128174185753,0.02240411937236786,0.008648848161101341,0.0422515794634819,-0.02085794322192669,0.011421559378504753,-0.06137894093990326,-0.012389548122882843,0.029986271634697914,0.02287033013999462,0.018857883289456367,0.07815238833427429,-0.064702607691288,0.026758570224046707,0.031594231724739075,0.0010524297831580043,-0.0616118460893631,-0.0341881699860096,0.008100220933556557,-0.04704869166016579,-0.01164186093956232,-0.07252006232738495,0.04021219536662102,0.07397594302892685,-0.042170196771621704,0.06591977924108505,-0.019486719742417336,0.03780723363161087,0.07541176676750183,0.06612527370452881,0.058141954243183136,-0.00233233580365777,-0.07301226258277893,-0.03491664677858353,-0.008392744697630405,0.10916807502508163,-0.010433409363031387,-0.04728485643863678,-0.006924421060830355,0.005940165836364031,-0.013387531973421574,0.0014630185905843973,-0.06186682730913162,-0.02094901166856289,-0.04818683862686157,-0.0763561874628067,-0.008363883011043072,0.037649333477020264,0.03605445474386215,-0.12060575932264328,-0.0007790312520228326,0.04533245041966438,-0.047526825219392776,0.07391221821308136,0.025176340714097023,-0.017632657662034035,0.032461848109960556,-0.0020502132829278708,-0.04086924344301224,0.030877334997057915,-0.02563430927693844,-0.0902143195271492,0.06102908402681351,0.011890441179275513,0.009879030287265778,0.01773114874958992,0.01363406516611576,-0.09406735748052597,-0.049676064401865005,-0.09346454590559006,-0.02028949372470379,-0.08312206715345383,-0.07680775970220566,-0.011473017744719982,0.018453754484653473,0.05309198424220085,-0.08898811042308807,-0.033744148910045624,-0.026534799486398697,-0.08308311551809311,-0.05985851585865021,0.010819002985954285,0.05553819611668587,-0.07131733000278473,-0.022914662957191467,-0.013272862881422043,0.05314229056239128,0.02921275608241558,-0.004069051705300808,0.027658484876155853,-0.04961755499243736,0.010431913658976555,0.09137202054262161,0.004857121501117945,0.039885878562927246,-0.023933961987495422,0.003825369058176875,-0.04350000619888306,0.051946718245744705,-0.10227116197347641,-0.03374556452035904,-0.05851174145936966,-0.03338320180773735,-0.006523325573652983,-0.11461186408996582,-0.059521742165088654,-0.03342480584979057,-0.14483655989170074,-0.025311501696705818,-0.026149971410632133,-0.02999015524983406,-0.04463333263993263,0.055577602237463,0.028923342004418373,-0.030353117734193802,-0.003770717652514577,-0.12022648751735687,-0.09467367827892303,0.0653277188539505,-2.4785509608729095e-33,0.010762764140963554,0.05299821496009827,0.01957271620631218,0.07463526725769043,0.07466650009155273,-0.01364318747073412,0.0905078873038292,-0.018034430220723152,-0.0647076740860939,0.09925523400306702,0.00811795238405466,0.07301762700080872,-0.06818154454231262,0.1129346489906311,-0.03214721754193306,-0.019205521792173386,-0.05247194319963455,-0.010496233589947224,0.007965754717588425,0.019789159297943115,-0.062392350286245346,0.025863785296678543,0.0237751267850399,-0.003835543291643262,-0.004975237883627415,0.0901939794421196,0.013360421173274517,-0.04224304482340813,0.008402718231081963,0.030292553827166557,-0.010886493138968945,0.07084143906831741,-0.0005461304681375623,-0.0345502644777298,-0.022388985380530357,-0.0006193055305629969,-0.03694882616400719,-0.055138230323791504,0.062414802610874176,0.06961217522621155,-0.010906382463872433,0.03644968941807747,-0.01377197913825512,0.034376151859760284,-0.08594759553670883,0.12198160588741302,0.0916389673948288,0.020719436928629875,0.007776535116136074,0.012135581113398075,0.004329574294388294,-0.031973231583833694,-0.0629424899816513,-0.04483102262020111,0.008180756121873856,-0.08136003464460373,-0.005548416171222925,0.02282390370965004,0.03329208120703697,-0.035741716623306274,0.12336579710245132,0.09368649125099182,0.02197837084531784,0.012202979996800423,-0.0009342848788946867,0.011726018972694874,-0.06269633769989014,-0.011415288783609867,-0.009000010788440704,-0.007266836706548929,-0.0941065102815628,0.12441758811473846,0.05970512330532074,-0.06935841590166092,0.0007603731355629861,0.015877360478043556,0.01663419045507908,-0.009810437448322773,-0.06655874103307724,-0.0419723242521286,-0.13789227604866028,0.006226731464266777,-0.016730397939682007,0.00715214479714632,-0.017947165295481682,0.0050726355984807014,-0.018359709531068802,0.001971762627363205,0.016210487112402916,0.04715542495250702,-0.03696628287434578,-0.03796064853668213,0.026690030470490456,-0.010179681703448296,-0.08673879504203796,-1.7350348046014812e-33,0.01882641389966011,-0.13409285247325897,-0.011911462061107159,-0.000338077632477507,0.01065830234438181,-0.012336554005742073,-0.051031582057476044,0.06843283027410507,-0.008486777544021606,0.07172830402851105,-0.0654953345656395,-0.002097219927236438,0.044769275933504105,-0.038874298334121704,0.06516037881374359,-0.01653447188436985,0.0533771812915802,-0.017424924299120903,-0.03577715903520584,0.04512758180499077,0.00039702109643258154,0.031233446672558784,0.0705343708395958,-0.002102286322042346,-0.021152552217245102,0.0964241549372673,0.01967521943151951,-0.0847838893532753,-0.03908328339457512,0.031114328652620316,0.04341938719153404,-0.1259736865758896,0.02354181930422783,0.025946559384465218,-0.06833585351705551,-0.01064008567482233,-0.034297116100788116,-0.0388319157063961,-0.029084274545311928,0.049852147698402405,-0.06088104844093323,0.0029429462738335133,0.010376078076660633,0.021288366988301277,-0.01833469793200493,-0.10210319608449936,-0.09317424148321152,-0.013038171455264091,-0.0005933337961323559,0.004285470582544804,0.012647436931729317,0.024065857753157616,-0.015163534320890903,0.004972801543772221,-0.09130562841892242,0.07902883738279343,-0.08492381870746613,-0.032166436314582825,0.15195594727993011,0.08627090603113174,-0.030307166278362274,0.04717785492539406,-0.07282959669828415,-0.042782217264175415,-0.024027196690440178,-0.004397972021251917,-0.021497977897524834,-0.02707797661423683,-0.05856630578637123,0.02954765409231186,0.057272523641586304,0.002765066921710968,0.02331315167248249,0.032952435314655304,0.035722266882658005,0.0259663425385952,0.09806426614522934,-0.033156707882881165,0.06873814761638641,-0.0157333817332983,-0.025457853451371193,-0.08948023617267609,-0.01635776273906231,0.01648946851491928,0.051364801824092865,0.00592882139608264,-0.0678800642490387,-0.01071458961814642,-0.004226699471473694,-0.014215548522770405,0.01601378247141838,0.034683533012866974,0.01012502983212471,0.023562220856547356,0.03962798789143562,-4.3696946505633605e-8,-0.03823084011673927,-0.04465572163462639,-0.0017481462564319372,-0.06743524223566055,-0.04029715061187744,-0.09090135991573334,0.03779466450214386,0.009075452573597431,-0.03303684666752815,0.03293551504611969,0.10947872698307037,-0.018533874303102493,-0.048884905874729156,-0.048998963087797165,0.04269041866064072,0.031372230499982834,0.013512665405869484,0.059343934059143066,-0.021355297416448593,0.0012611508136615157,0.06740743666887283,-0.02785462886095047,0.04662906378507614,0.00850150641053915,-0.06026875600218773,0.08937225490808487,-0.05462601035833359,-0.07681234180927277,0.010716312564909458,0.09544891864061356,0.05011767894029617,0.07532903552055359,0.04757636785507202,0.00041137999505735934,0.06602652370929718,0.010237924754619598,-0.03862333670258522,-0.04072439298033714,-0.014720605686306953,0.03913222998380661,-0.0002553812228143215,-0.08968012034893036,-0.03516949340701103,0.029735911637544632,0.06758987903594971,-0.03896666690707207,0.06528792530298233,-0.043863434344530106,-0.003918101545423269,0.03759416937828064,-0.030298346653580666,-0.052546218037605286,0.06435935199260712,0.12165901809930801,0.041303958743810654,-0.0030861778650432825,0.05141139775514603,0.0020381822250783443,-0.026467882096767426,0.06002446636557579,0.008496408350765705,-0.045534487813711166,-0.036250948905944824,0.06271319091320038]},{"text":"Her reverie is interrupted by her mother, Catherine Petkoff, a woman over forty, imperiously energetic, with magnificent black hair and eyes, who might be a very splendid specimen of the wife of a mountain farmer, but is determined to be a Viennese lady, and to that end wears a fashionable tea gown on all occasions.","book":"Down and Out in Paris and London","chapter":4,"embedding":[-0.03340847045183182,0.034253835678100586,-0.004030285403132439,0.01117134653031826,-0.08515729010105133,0.06297127902507782,0.06546225398778915,-0.05562855303287506,-0.0421174094080925,-0.03193589299917221,-0.008731740526854992,-0.04508916661143303,-0.13345855474472046,-0.10492085665464401,-0.11381813883781433,0.03910856693983078,0.01373322680592537,0.003548008156940341,0.04157506674528122,0.06208718940615654,-0.07908926904201508,-0.045140381902456284,0.0999649241566658,0.07214254140853882,0.02669922634959221,0.06747213006019592,0.016677824780344963,-0.029991550371050835,-0.04581441730260849,0.013291535899043083,-0.04560959339141846,0.013092712499201298,-0.12261562794446945,0.06676378846168518,-0.05493440479040146,0.06666344404220581,0.047286514192819595,0.05694447457790375,0.023675089702010155,0.07949896901845932,-0.03435957059264183,-0.06974385678768158,-0.10588739812374115,0.017537979409098625,0.015386600978672504,0.023075375705957413,0.0017500458052381873,-0.0526810921728611,-0.046081334352493286,-0.05483286827802658,-0.10100258141756058,0.02183317393064499,-0.08956854790449142,-0.06004435569047928,0.02103482559323311,0.0007596389041282237,0.04142211005091667,0.02738381177186966,0.020892450585961342,0.060864053666591644,-0.015334720723330975,0.0052811698988080025,-0.0577583871781826,0.0301744993776083,0.0297223050147295,-0.039719484746456146,-0.04939275607466698,0.030533988028764725,-0.027257513254880905,0.022995904088020325,-0.03571760654449463,0.010814419016242027,-0.055774904787540436,-0.03310931846499443,-0.07960094511508942,0.014236311428248882,0.04408708214759827,-0.06939393281936646,-0.04917099326848984,0.004879968240857124,0.015909532085061073,-0.00572638725861907,0.044449981302022934,0.14284847676753998,0.0815722718834877,-0.0515807643532753,0.017827332019805908,-0.03787560015916824,0.023082606494426727,-0.00208328221924603,-0.043338924646377563,0.001196685596369207,-0.05271439626812935,0.050664786249399185,-0.007958956062793732,-0.010369817726314068,-0.03354136645793915,-0.030665559694170952,-0.010475248098373413,-0.00033499751589260995,-0.051667291671037674,0.08080799877643585,0.06761177629232407,0.01198964100331068,-0.06157774105668068,-0.01750756986439228,-0.0033765644766390324,-0.04617743194103241,0.015265274792909622,-0.021743128076195717,0.00602247379720211,-0.008761586621403694,-0.0692778080701828,-0.07984688133001328,0.05033588036894798,0.019438667222857475,-0.08464232832193375,-0.04413598030805588,0.012951789423823357,-0.03759164735674858,-0.002429310232400894,0.05130898207426071,-0.061732761561870575,-0.009492090903222561,-0.04698672518134117,-0.0284239761531353,-0.013468754477798939,-1.1572412194414213e-33,-0.037234675139188766,0.021606991067528725,0.007172976154834032,0.0640803724527359,0.09316186606884003,0.08943896740674973,-0.030811714008450508,-0.01295605581253767,-0.05757948011159897,-0.015551887452602386,0.011411650106310844,-0.07684461027383804,-0.07313697040081024,-0.07526294142007828,-0.042163390666246414,0.02431420236825943,-0.012955172918736935,0.08212314546108246,-0.024207890033721924,-0.026259295642375946,0.03781949356198311,0.10824976861476898,-0.04358220845460892,-0.05206001177430153,-0.07915814220905304,-0.0455295592546463,0.10051804035902023,0.049588654190301895,-0.04727112129330635,0.02002241276204586,0.033573612570762634,0.0018896159017458558,0.009926890023052692,-0.11708804965019226,0.001751207048073411,-0.050844140350818634,0.006250787992030382,-0.08341000974178314,0.03668900579214096,0.1028381884098053,-0.08123965561389923,-0.04193665832281113,0.10124380886554718,0.04769359156489372,-0.131881982088089,-0.0354856438934803,0.07476463913917542,0.021205654367804527,0.015226691029965878,0.06738005578517914,-0.01874665729701519,-0.028214242309331894,-0.07957200706005096,0.04371146857738495,-0.06607569009065628,0.02348470687866211,-0.0055478778667747974,-0.005896784830838442,0.06058355048298836,0.026951642706990242,0.022541336715221405,-0.006809919606894255,-0.018612978979945183,-0.06796614080667496,0.04548058658838272,-0.007485731039196253,0.01402914896607399,-0.012747811153531075,-0.029139671474695206,0.018112437799572945,-0.05228074640035629,-0.003374266205355525,0.036475151777267456,-0.014093811623752117,0.030683282762765884,0.049892764538526535,0.02684982307255268,0.08047692477703094,-0.014910201542079449,-0.03859294578433037,-0.0034446686040610075,0.033109914511442184,0.05260895937681198,0.01044567208737135,-0.008551371283829212,-0.06256121397018433,0.020730512216687202,-0.03450683504343033,-0.06608398258686066,0.08133035898208618,0.006106716115027666,-0.017795132473111153,0.11299948394298553,-0.07754986733198166,-0.030278721824288368,-1.9272479674280953e-33,0.08890489488840103,-0.0665460079908371,-0.06570208072662354,0.0025995129253715277,0.025740889832377434,-0.021397823467850685,0.0030014109797775745,0.04205835238099098,-0.040301479399204254,-0.011327476240694523,0.05289114639163017,-0.04472503438591957,0.06474798917770386,-0.018079884350299835,-0.0017707477090880275,-0.06420323997735977,0.04365718737244606,0.04572093486785889,-0.016458597034215927,-0.055607087910175323,-0.004797051660716534,-0.026294738054275513,-0.011601010337471962,-0.05819467082619667,0.02901303768157959,0.03958139196038246,0.07457678765058517,0.024522986263036728,-0.04404081031680107,-0.009139901027083397,-0.002708646934479475,-0.012794713489711285,-0.04295259341597557,0.051729101687669754,0.03294290602207184,0.12997068464756012,-0.02696182392537594,-0.06422387063503265,-0.013813049532473087,0.06573611497879028,0.050429556518793106,-0.06838758289813995,0.031136171892285347,0.07155975699424744,0.04284397140145302,-0.04290243238210678,-0.048591747879981995,0.06517468392848969,-0.020364275202155113,0.00953274592757225,-0.015219208784401417,0.0468754880130291,-0.02028167061507702,0.038963865488767624,0.021452968940138817,0.017912935465574265,0.0024328427389264107,-0.08475423604249954,0.029051322489976883,0.0017472984036430717,0.06239509955048561,0.020434759557247162,-0.034797023981809616,-0.04754969850182533,-0.008868659846484661,0.01106754969805479,-0.09354569017887115,-0.037770163267850876,0.0738469585776329,0.022955603897571564,0.04356987774372101,-0.04831299930810928,-0.02324485220015049,0.024023128673434258,0.01985984854400158,0.06623902916908264,0.027795692905783653,0.06843312829732895,0.04987199977040291,0.048139870166778564,-0.020839350298047066,-0.07634755223989487,0.10860263556241989,0.008144163526594639,0.04466237872838974,-0.0376933328807354,-0.029922571033239365,-0.014201181940734386,-0.008044014684855938,-0.01179988868534565,0.030041970312595367,-0.03947758674621582,0.0401320718228817,0.02318829670548439,0.05673392489552498,-3.6360397359658236e-8,-0.02781984768807888,-0.03909957781434059,0.050667133182287216,-0.03752252459526062,-0.004169577732682228,-0.1386512964963913,0.03617904335260391,0.011299760080873966,-0.09899718314409256,0.037310753017663956,-0.07428451627492905,0.01302393525838852,0.0724090114235878,0.024358071386814117,0.04182479903101921,-0.036928702145814896,0.10959198325872421,0.02560710720717907,-0.027317140251398087,0.05886569619178772,0.05111311748623848,-0.07315422594547272,0.06750449538230896,-0.015617593191564083,-0.045569710433483124,0.10312438756227493,0.02136664092540741,0.041057031601667404,-0.0019721081480383873,0.08259336650371552,0.07056540995836258,0.07753375172615051,-0.020899197086691856,0.0033143479377031326,-0.0640856996178627,-0.02658894658088684,0.007631187327206135,0.0006347778835333884,-0.038995929062366486,-0.005869903136044741,-0.016014885157346725,-0.1005576103925705,0.0425989106297493,0.0939960926771164,0.06194370985031128,-0.007953894324600697,0.09264905005693436,-0.006821041461080313,-0.012064734473824501,0.05547645315527916,0.050319068133831024,0.03532196581363678,0.06755010038614273,0.008602113462984562,-0.08412205427885056,0.012680597603321075,0.0015799300745129585,0.017310069873929024,-0.11325386166572571,0.03394943103194237,-0.004850203171372414,-0.015909025445580482,0.03567326068878174,-0.058226343244314194]},{"text":"There has been a battle!","book":"Down and Out in Paris and London","chapter":5,"embedding":[-0.0385073684155941,0.09462340176105499,0.02917299047112465,0.010701892897486687,-0.05131649225950241,0.0864715427160263,0.005210089031606913,-0.08238586783409119,-0.010338741354644299,0.028324473649263382,-0.026844436302781105,-0.0622086226940155,0.02902267873287201,0.007997159846127033,-0.06139800697565079,0.010838422924280167,-0.06718751043081284,0.020324060693383217,0.06146138161420822,0.006542802322655916,-0.03211672976613045,0.03280285373330116,0.0012030991492792964,0.04252247512340546,-0.014567062258720398,0.01887120120227337,-0.03555931895971298,0.02638104557991028,-0.04220786690711975,-0.048436373472213745,0.042273085564374924,0.019340768456459045,-0.03458145260810852,0.04531398043036461,0.008506886661052704,-0.024401258677244186,0.008803670294582844,-0.02410554699599743,0.08571704477071762,-0.04069933295249939,-0.03770601376891136,-0.05943652242422104,0.01662605069577694,0.04640394449234009,0.027141660451889038,0.05457726866006851,-0.028880158439278603,-0.043324440717697144,0.07375773042440414,-0.024367498233914375,-0.035533104091882706,-0.035416387021541595,0.02232280932366848,-0.04657955840229988,0.02437514066696167,-0.0175967775285244,0.05544968321919441,-0.10903266817331314,0.051102422177791595,0.03047201596200466,-0.10603112727403641,0.05658285692334175,-0.01687181368470192,0.06566151976585388,-0.03938528522849083,-0.05573093146085739,0.05405324697494507,0.04908332973718643,-0.024924971163272858,0.07269353419542313,0.027247905731201172,0.06357771158218384,0.07097692787647247,-0.030441859737038612,-0.002249507000669837,0.04029996320605278,0.01141179446130991,-0.006234874948859215,0.07060710340738297,0.020355001091957092,0.06006220728158951,-0.10789410024881363,-0.046426136046648026,0.059337057173252106,0.029831742867827415,-0.02633965015411377,0.02955068089067936,0.004897207487374544,0.06605146080255508,-0.06051886826753616,-0.030468083918094635,0.0856373980641365,-0.023629553616046906,0.1231023445725441,-0.0002856472274288535,0.013214181177318096,0.016205301508307457,0.028758646920323372,-0.06644327193498611,0.1103573590517044,0.021198991686105728,0.008734761737287045,-0.005549024324864149,-0.12342122942209244,0.04383199289441109,0.017034973949193954,0.0023778164759278297,-0.013336818665266037,-0.05031350627541542,0.002509463345631957,0.102923683822155,-0.08577299118041992,0.04126911982893944,0.04889950528740883,-0.02601391077041626,0.028822053223848343,0.04165375232696533,-0.027940290048718452,-0.061593905091285706,0.05567771941423416,0.03502168878912926,-0.021477513015270233,-0.040066909044981,-0.03313880413770676,0.10416394472122192,-0.05050468444824219,-0.031695786863565445,-9.104626190400944e-33,-0.01797015219926834,-0.0655006393790245,-0.0392492450773716,0.13942044973373413,-0.033627111464738846,0.028663476929068565,-0.029276497662067413,0.04351623356342316,-0.07046820223331451,-0.03941391408443451,-0.10928012430667877,0.042746610939502716,-0.07025452703237534,-0.05404854938387871,-0.037233270704746246,0.020144551992416382,-0.03416026011109352,-0.024118533357977867,-0.010334847494959831,0.001425787340849638,-0.002199679147452116,0.007100884336978197,-0.039470795542001724,0.05061005428433418,-0.04771561920642853,0.016283927485346794,0.044111110270023346,-0.018287168815732002,-0.006157312076538801,0.01864972896873951,-0.06603100895881653,-0.020199652761220932,-0.008539531379938126,0.06428761780261993,-0.017679918557405472,-0.008344086818397045,-0.049325715750455856,-0.021952591836452484,-0.042014412581920624,0.058479905128479004,-0.03757402300834656,-0.008031073026359081,-0.153199702501297,-0.06488332152366638,0.0196263175457716,-0.018522823229432106,-0.018467925488948822,-0.015233573503792286,-0.05688297003507614,-0.018724430352449417,-0.0912485420703888,0.00820288248360157,0.013795740902423859,0.050584062933921814,0.0436006560921669,0.04285444691777229,-0.02625042200088501,0.00918616820126772,-0.013497432693839073,0.03937113285064697,0.03955261781811714,0.06690912693738937,0.02460954524576664,-0.05425963178277016,-0.0039386143907904625,-0.04982592910528183,-0.0037252434995025396,-0.008212003856897354,-0.07870419323444366,-0.019114991649985313,-0.02159634605050087,0.0011152649531140924,-0.0021526191849261522,-0.06420201063156128,-0.026614421978592873,-0.028944816440343857,0.018239177763462067,0.07186328619718552,0.008608163334429264,0.012912346981465816,-0.01238208170980215,-0.033896226435899734,0.036957062780857086,-0.013963758945465088,0.01753787323832512,-0.04536335542798042,-0.04437582194805145,-0.11470688134431839,-0.045261774212121964,0.034174028784036636,-0.10987170785665512,-0.05160680413246155,0.05574338883161545,-0.03995356336236,0.017471671104431152,5.0072962652099e-33,-0.022524237632751465,0.05908697843551636,-0.04061734303832054,-0.044640589505434036,0.024074792861938477,-0.0315699465572834,0.059347569942474365,0.048306748270988464,-0.10701403021812439,-0.019191933795809746,-0.029973305761814117,0.05178423598408699,0.007804092951118946,-0.031874313950538635,0.03498697280883789,0.011914120987057686,0.07099657505750656,0.04387429729104042,0.06150339916348457,-0.008239969611167908,-0.07715888321399689,-0.009103196673095226,0.022969882935285568,-0.06746748089790344,-0.013816569931805134,0.0441335029900074,0.0931190550327301,-0.046021874994039536,-0.07503767311573029,0.016159826889634132,0.006313698831945658,-0.06496436148881912,-0.1177283376455307,0.018492208793759346,0.053425464779138565,0.023303190246224403,0.10994014889001846,-0.04319288209080696,-0.00305538484826684,0.018093077465891838,-0.051324546337127686,0.025870222598314285,0.06392031162977219,0.093447744846344,-0.014987614937126637,-0.00733278039842844,0.000705417653080076,-0.02805344946682453,0.029258999973535538,-0.03893916681408882,-0.058951981365680695,-0.028346698731184006,0.02245553396642208,-0.0769888311624527,-0.06451104581356049,0.03123844414949417,-0.026178859174251556,-0.01716591976583004,-0.01670066826045513,0.06128791719675064,0.004466247279196978,0.017041152343153954,0.0032801234629005194,0.07492364943027496,0.06366764008998871,0.00427649263292551,0.005160268861800432,0.04547654837369919,-0.034270029515028,0.09813515841960907,0.031141292303800583,0.047764427959918976,-0.14572931826114655,0.020619302988052368,0.06404818594455719,0.05873282253742218,-0.01819976605474949,-0.022485902532935143,0.022758515551686287,0.0625172033905983,0.014339239336550236,0.06312738358974457,0.020822828635573387,0.011575658805668354,-0.04525172337889671,0.12597253918647766,0.059625979512929916,0.07311856746673584,-0.0002689411339815706,0.02715509571135044,0.020856419578194618,-0.020601732656359673,0.038913093507289886,0.006003310438245535,0.021107686683535576,-2.1797260885136893e-8,0.03550242632627487,0.06024002656340599,0.03442329168319702,-0.008706673979759216,0.00580490892753005,-0.015653440728783607,0.016805103048682213,-0.08717887848615646,-0.06012330576777458,0.07081807404756546,0.04264426976442337,0.08508661389350891,-0.045667171478271484,0.06647366285324097,0.05470786616206169,0.05515747144818306,-0.03524380177259445,-0.05796472728252411,-0.05647134408354759,-0.024691514670848846,-0.13534478843212128,-0.008256237953901291,-0.015445596538484097,-0.038808271288871765,0.009896524250507355,0.04314379766583443,-0.055915504693984985,-0.009595515206456184,-0.018609389662742615,0.025192441418766975,0.053422149270772934,0.04331255704164505,-0.13845494389533997,-0.02380676567554474,-0.02146955020725727,-0.01847376488149166,-0.0558401420712471,0.04296650364995003,0.04529939964413643,-0.09428693354129791,-0.1451357901096344,0.03744849935173988,0.017783228307962418,0.02560119517147541,-0.013155619613826275,0.040842071175575256,-0.04074058309197426,0.05397811904549599,0.013703904114663601,-0.07971469312906265,0.059624914079904556,-0.0348614938557148,0.09130700677633286,0.07740391790866852,0.03952321037650108,0.009158173575997353,0.05381203070282936,0.006887167692184448,-0.04705193266272545,0.12286001443862915,0.04607396200299263,-0.12170293182134628,0.024885253980755806,0.08706919848918915]},{"text":"Of course: he sent me the news.","book":"Down and Out in Paris and London","chapter":5,"embedding":[0.0033558078575879335,0.08830022066831589,-0.003673434490337968,0.07242318987846375,0.09018935263156891,-0.055747564882040024,0.07313618808984756,-0.027064397931098938,-0.07174205034971237,0.003342128125950694,-0.011076701804995537,-0.0017941149417310953,0.04623795673251152,0.01812901720404625,0.0870840921998024,0.03383229672908783,-0.014887310564517975,-0.01401405781507492,-0.028537284582853317,0.021700719371438026,-0.03837442770600319,0.07640324532985687,0.0359775684773922,-0.007564097177237272,0.0774681493639946,-0.006249372847378254,-0.0034619709476828575,0.0276421457529068,-0.03226417675614357,-0.04024413600564003,-0.06122026965022087,-0.05828573927283287,0.012078517116606236,-0.03759867697954178,0.027061302214860916,-0.023310841992497444,0.007877839729189873,-0.10731393098831177,0.031494032591581345,-0.03495585545897484,0.06834375113248825,-0.008804087527096272,0.05795995518565178,0.0422222763299942,-0.03672898933291435,0.027015261352062225,0.009538361802697182,0.006948683876544237,-0.010282931849360466,-0.022429872304201126,-0.05918935686349869,-0.0407722182571888,0.0081515247002244,0.01701069436967373,0.07048177719116211,0.018052540719509125,0.014829231426119804,0.007190120872110128,-0.004593895748257637,-0.0009204290108755231,-0.011555923148989677,-0.018191950395703316,-0.057884443551301956,0.048194367438554764,0.005240422673523426,0.03391789644956589,-0.07309950888156891,-0.07875951379537582,0.03538449853658676,0.0064902761951088905,0.07173320651054382,-0.0037815936375409365,0.07004539668560028,-0.037578389048576355,-0.071279376745224,-0.12498719245195389,0.09882908314466476,0.005495909135788679,0.015024020336568356,0.03651990741491318,-0.030717534944415092,-0.06222490221261978,-0.017009174451231956,-0.02134879305958748,0.03034335747361183,-0.05680841952562332,0.06725730001926422,-0.06101713702082634,-0.06645309180021286,0.05704040825366974,0.03917074576020241,-0.05415736883878708,-0.03470384329557419,0.023298630490899086,-0.09055338054895401,-0.008311733603477478,-0.02622131071984768,0.0786372721195221,-0.09175191074609756,0.05221792683005333,0.0230120737105608,-0.01596061699092388,-0.025597255676984787,-0.00031095085432752967,-0.03235316276550293,0.024248091503977776,-0.1248968318104744,0.06739039719104767,-0.04431794583797455,-0.03616684675216675,-0.0640103816986084,0.00624100724235177,0.03624751791357994,-0.03693985939025879,0.044225893914699554,-0.007914097048342228,-0.028415167704224586,0.06753376871347427,-0.011508231982588768,-0.01688370667397976,-0.008398948237299919,0.05567796528339386,-0.07133231312036514,0.0728030875325203,-0.09299403429031372,-0.0779179111123085,0.09166938066482544,-8.794568249536457e-33,0.024920158088207245,0.008355733938515186,0.04331379011273384,0.06670916080474854,0.0870591402053833,0.05029219388961792,-0.04650871828198433,-0.03658048436045647,0.018181221559643745,-0.044806987047195435,0.02658712863922119,0.057596199214458466,0.06976490467786789,-0.03716133534908295,-0.1650935262441635,0.06559158116579056,0.005077936686575413,0.0163490679115057,-0.009967167861759663,-0.035024892538785934,0.007462460082024336,-0.08685135096311569,-0.039180561900138855,-0.038959670811891556,0.07264168560504913,0.007174153346568346,-0.0021132216788828373,-0.041834473609924316,0.06654193997383118,0.036415956914424896,-0.12446310371160507,0.04324987530708313,0.010798746719956398,0.022383486852049828,0.03942622244358063,0.05297868698835373,-0.09684935957193375,-0.03197038918733597,-0.08579948544502258,0.030395260080695152,0.06929001212120056,-0.0047977338545024395,-0.02006077580153942,0.04181073233485222,-0.0438959039747715,-0.008708235807716846,-0.04028337076306343,0.05137525871396065,0.02135222963988781,-0.07982054352760315,-0.023189984261989594,-0.00041297441930510104,-0.043293606489896774,-0.04901779070496559,0.03978338837623596,0.023592522367835045,0.005033811554312706,-0.032254576683044434,0.06411370635032654,0.07585305720567703,0.033465638756752014,-0.016698429360985756,-0.012891045771539211,0.02222316339612007,-0.05193992331624031,-0.0947955995798111,-0.06313609331846237,0.011440607719123363,-0.002501357113942504,-0.03419368341565132,0.0021007703617215157,0.04901404306292534,-0.07034552842378616,0.010223811492323875,-0.04528796300292015,-0.02157040312886238,-0.07722262293100357,-0.022648923099040985,-0.06654592603445053,-0.043932873755693436,0.09546985477209091,0.006339191924780607,-0.08929750323295593,0.10804672539234161,0.010779849253594875,0.04369090870022774,-0.006489966064691544,-0.00418356666341424,0.011967049911618233,0.022761236876249313,-0.13827000558376312,0.037862326949834824,0.04330415278673172,-0.07287019491195679,-0.030063802376389503,4.426235081261043e-33,-0.04069288447499275,0.03979644551873207,-0.0588313527405262,-0.02090226486325264,0.010617721825838089,-0.035212013870477676,-0.03896777331829071,0.027073092758655548,0.025096721947193146,0.046488985419273376,0.03808954358100891,0.047043755650520325,-0.034741271287202835,-0.08490461856126785,-0.02358776517212391,-0.012216235511004925,0.009563908912241459,-0.10669945925474167,-0.06712579727172852,-0.0017082617850974202,-0.09234383702278137,-0.006884705275297165,0.04968201741576195,0.02736673131585121,0.024112418293952942,-0.023456571623682976,0.17621639370918274,0.06430315971374512,-0.022418538108468056,-0.012431032955646515,0.018222305923700333,-0.02437249757349491,-0.09309886395931244,0.0750780999660492,0.015084355138242245,0.0853370875120163,0.022066885605454445,-0.029861871153116226,0.04558657109737396,0.04266233369708061,0.05073404312133789,0.02998785488307476,0.010514752939343452,0.10006818920373917,-0.0032831185963004827,0.014313675463199615,0.08205525577068329,0.009606580249965191,0.03057398647069931,0.054987404495477676,-0.029443062841892242,0.03793434053659439,0.051448456943035126,0.016419341787695885,-0.030299579724669456,0.03121187910437584,-0.07848703116178513,-0.021683182567358017,0.03691193833947182,-0.04793425649404526,-0.098943792283535,0.027780307456851006,0.03490069508552551,-0.026961395516991615,0.058241456747055054,-0.01595558598637581,-0.0010040906490758061,0.004559921100735664,0.09889306128025055,0.028906231746077538,0.08521796762943268,0.023381231352686882,-0.005609967280179262,0.022333448752760887,0.024567022919654846,0.001339023932814598,-0.03533099964261055,-0.06273725628852844,-0.0028898976743221283,0.06170414015650749,0.05372893437743187,-0.030201444402337074,0.07172814011573792,-0.09988084435462952,0.08182448148727417,0.0004935202305205166,0.03334277868270874,-0.10109230130910873,0.06450792402029037,-0.06651121377944946,0.07065705209970474,-0.02976822294294834,0.07632225751876831,-0.004752045962959528,0.024871721863746643,-2.1104920477910127e-8,-0.021462280303239822,-0.014292060397565365,-0.002735621528699994,-0.046160537749528885,0.0706532746553421,0.12115945667028427,-0.021464094519615173,0.0014346354873850942,-0.07023590803146362,0.0009690019069239497,-0.0727141872048378,0.03298505023121834,-0.020610766485333443,0.019716044887900352,0.08526913076639175,-0.015773572027683258,0.058970626443624496,-0.09588520973920822,-0.0304804015904665,-0.026132969185709953,0.057781510055065155,0.07964732497930527,-0.020563213154673576,0.03316463157534599,0.040733370929956436,-0.02484832890331745,0.009550375863909721,-0.010312766768038273,-0.023744376376271248,0.0018987689400091767,0.014918936416506767,0.030291136354207993,-0.09414734691381454,-0.01306338794529438,0.04318496212363243,-0.0506569929420948,0.02883525751531124,-0.020047055557370186,0.05753536894917488,-0.044698406010866165,0.05214895308017731,0.032813265919685364,-0.010482792742550373,0.05808952450752258,0.04860847443342209,0.0627298504114151,0.023726588115096092,-0.09554783999919891,-0.0141366021707654,-0.03360426425933838,-0.08550648391246796,0.02128620631992817,0.06579115241765976,0.022135881707072258,0.05026832967996597,-0.021719587966799736,-0.014196846634149551,-0.05170164629817009,-0.016737403348088264,-0.08531609922647476,0.03700464963912964,-0.07130742073059082,-0.04450220242142677,-0.012519284151494503]},{"text":"Can’t you see it, Raina; our gallant splendid Bulgarians with their swords and eyes flashing, thundering down like an avalanche and scattering the wretched Servian dandies like chaff.","book":"Down and Out in Paris and London","chapter":5,"embedding":[-0.020324526354670525,0.013431049883365631,0.012697686441242695,0.004032369237393141,0.027160096913576126,0.032275255769491196,0.09829095005989075,-0.070451520383358,0.054595280438661575,-0.06873790919780731,-0.06956466287374496,-0.0573551245033741,0.01870841532945633,-0.033821165561676025,-0.09612315148115158,-0.018782537430524826,-0.002663800260052085,-0.030100900679826736,-0.0016696059610694647,0.02276054583489895,-0.004522050265222788,-0.014039691537618637,0.019314274191856384,0.07234787195920944,-0.05066532641649246,0.04540259763598442,0.07818753272294998,0.008435206487774849,-0.07055037468671799,-0.0722440704703331,0.03466077893972397,0.00021667951659765095,-0.07126966118812561,-0.028765421360731125,0.0039984374307096004,0.048139240592718124,0.012593602761626244,-0.06517291069030762,-0.009769699536263943,0.01998637057840824,0.03492968901991844,0.042225226759910583,-0.08371257781982422,0.01119157113134861,0.008493238128721714,-0.04938144609332085,0.008091066032648087,0.015046651475131512,0.027969645336270332,0.030435383319854736,0.005272802896797657,0.02075662463903427,-0.005136193707585335,-0.06359399110078812,-0.04477156326174736,-0.037548527121543884,0.03384092077612877,-0.04699210822582245,0.04639200121164322,-0.06317398697137833,-0.02231205441057682,0.03590146079659462,0.04125191271305084,0.033715907484292984,0.01383792981505394,-0.06397583335638046,-0.03393205255270004,0.02739265188574791,-0.0739382803440094,0.07976020127534866,-0.07603425532579422,0.01884092390537262,0.007573357783257961,-0.009692075662314892,-0.10646472126245499,-0.02263607271015644,-0.03633125498890877,-0.09424010664224625,-0.03512556105852127,-0.009220192208886147,0.03642386570572853,-0.02178981527686119,0.0070584556087851524,0.021878520026803017,0.030522525310516357,0.03572223335504532,0.08506017178297043,-0.060817331075668335,0.05996836721897125,-0.010603455826640129,0.003976213745772839,-0.06816060841083527,-0.015830233693122864,0.05733048543334007,-0.037105072289705276,0.015161177143454552,0.11043234914541245,-0.043805353343486786,-0.036933302879333496,0.10397825390100479,0.029171662405133247,-0.06059345602989197,-0.0001513919123681262,-0.023216992616653442,-0.09137929230928421,-0.005349080078303814,-0.023332368582487106,-0.022752828896045685,-0.017804406583309174,-0.049940578639507294,-0.011252718046307564,-0.08199222385883331,0.024027882143855095,-0.027150418609380722,0.08011069893836975,-0.015816710889339447,-0.06545872986316681,-0.048735883086919785,-0.01920483261346817,0.016378942877054214,0.0877169817686081,0.022449351847171783,0.007441833149641752,0.07978454232215881,0.10065758228302002,0.05168814957141876,-0.04241965711116791,-1.3094220037958209e-33,0.08150256425142288,-0.017296146601438522,0.025794202461838722,0.0044753155671060085,0.06525836884975433,-0.04124225303530693,-0.02448641136288643,0.026775676757097244,-0.057289816439151764,-0.028591224923729897,-0.08820369839668274,0.04140710458159447,0.013543159700930119,-0.032556526362895966,-0.056936077773571014,-0.005549324676394463,0.050889477133750916,-0.017521649599075317,-0.014074806123971939,0.0007627577288076282,-0.0472530759871006,0.07923579216003418,0.04118653014302254,-0.040230244398117065,-0.02322639338672161,-0.00694262096658349,0.05639633536338806,-0.0210356954485178,0.05978517606854439,0.057769425213336945,-0.006160402670502663,-0.008598573505878448,0.03764035180211067,-0.008680379949510098,-0.019503220915794373,-0.006282332818955183,-0.03106592781841755,-0.053393177688121796,-0.06424681842327118,0.038627415895462036,0.01374794077128172,-0.02087211236357689,-0.03600586578249931,-0.016154782846570015,-0.06712037324905396,0.00035899473004974425,0.08421672880649567,0.01604870893061161,-0.09557198733091354,-0.032248981297016144,0.023704105988144875,0.01507058460265398,-0.013719483278691769,-0.026035575196146965,0.013402924872934818,0.10882266610860825,0.04239630699157715,0.06011328846216202,0.08795378357172012,-0.05157333239912987,0.029501670971512794,-0.044376738369464874,0.09751471132040024,-0.10303764045238495,0.07233460992574692,-0.05926770716905594,-0.04932069033384323,0.11443425714969635,0.02870543859899044,-0.017798153683543205,-0.07141502946615219,-0.0018028956837952137,-0.008444570004940033,0.046940743923187256,0.04378858581185341,-0.028267115354537964,0.05562853813171387,-0.011291161179542542,0.019069267436861992,0.04859481751918793,-0.09058516472578049,-0.016693077981472015,0.054519541561603546,-0.02749594859778881,-0.04105980321764946,0.014135286211967468,0.0696093887090683,-0.04314432293176651,-0.09579160809516907,0.006339431740343571,-0.00694655068218708,0.07535941153764725,0.14673684537410736,-0.06077301502227783,-0.03832985460758209,-1.2160843544271734e-33,0.05826418474316597,-0.05790947750210762,-0.030090440064668655,-0.0012915597762912512,0.04768458008766174,0.039581649005413055,-0.018403932452201843,0.1388111710548401,-0.0025323035661131144,0.0734485313296318,0.0065855057910084724,-0.032999325543642044,0.0009452803642489016,-0.05451806262135506,0.030578095465898514,-0.032596979290246964,0.1291000097990036,0.07086104154586792,-0.01098803523927927,-0.027558812871575356,-0.06211165338754654,-0.03230936825275421,0.031842514872550964,-0.0649443194270134,-0.03515154495835304,0.03537658974528313,0.04114706814289093,-0.0068052103742957115,-0.07386720180511475,-0.02345099300146103,0.013254034332931042,-0.023218955844640732,-0.08716268092393875,0.03968696668744087,0.004161979537457228,0.062308844178915024,-0.017289072275161743,-0.06010699272155762,-0.05964701250195503,0.02467922866344452,-0.07539435476064682,-0.07016302645206451,0.05251258611679077,0.12982256710529327,0.034526120871305466,-0.06441611051559448,-0.06524572521448135,0.10445046424865723,0.0056958626955747604,0.013377467170357704,-0.0037873999681323767,-0.002511506900191307,-0.05841470882296562,0.0628262311220169,0.022615063935518265,-0.05389207601547241,0.0361192487180233,-0.05679120495915413,0.023521341383457184,0.08489231020212173,-0.04263079911470413,-0.07208433002233505,-0.04598857834935188,-0.006251166108995676,0.016359437257051468,-0.046479277312755585,-0.14410051703453064,0.08405420184135437,0.019956296309828758,0.005066241603344679,0.04418071359395981,-0.11158466339111328,-0.16517172753810883,0.020143890753388405,0.08512485772371292,0.016508188098669052,-0.00732978992164135,0.02114195004105568,0.07272198051214218,-0.032062795013189316,-0.041047871112823486,-0.030444500967860222,-0.06905585527420044,0.03830258548259735,0.05928187817335129,-0.0256501454859972,0.02140546403825283,-0.010600453242659569,0.053376127034425735,0.012172404676675797,0.04612775892019272,-0.06980878114700317,0.05743342265486717,-0.012598739005625248,0.02015339583158493,-3.328597841800729e-8,-0.077848419547081,-0.03379427269101143,-0.018313564360141754,-0.01476290076971054,-0.03846171125769615,-0.02552683651447296,0.06056463345885277,0.016115156933665276,-0.06726804375648499,-0.08568990975618362,0.023560062050819397,-0.02076118439435959,0.050045307725667953,0.04460480064153671,0.09592989087104797,0.12349700927734375,0.0035607866011559963,-0.0018125599017366767,-0.054844602942466736,-0.025681499391794205,0.03165098652243614,-0.03672399744391441,0.0005046575097367167,0.036158379167318344,-0.08578282594680786,0.05149247124791145,-0.05922192707657814,-0.0532488152384758,-0.03324194252490997,-0.0107607152312994,0.007250883616507053,0.01446411944925785,-0.05139707773923874,-0.030254311859607697,-0.03228231519460678,0.07450313866138458,-0.013594155199825764,0.02891942858695984,0.03421185538172722,0.04766019806265831,-0.01283998042345047,0.026240702718496323,0.04303092882037163,-0.008038694970309734,-0.00013168073201086372,0.0403011292219162,0.04232964292168617,-0.04226120933890343,-0.06033711135387421,-0.024786673486232758,0.01230765599757433,-0.00675074802711606,0.0797562301158905,0.09856093674898148,0.02927570976316929,-0.06139438599348068,0.029488157480955124,-0.025609251111745834,-0.0838308185338974,-0.003980639390647411,0.0885511040687561,-0.0063439044170081615,0.05636373907327652,-0.024022601544857025]},{"text":"Oh, what faithless little creatures girls are!—I sometimes used to doubt whether they were anything but dreams.","book":"Down and Out in Paris and London","chapter":6,"embedding":[0.06749185174703598,0.02751248888671398,0.057998497039079666,0.10885819047689438,-0.01788155362010002,-0.059264760464429855,0.004827952478080988,-0.08071679621934891,0.11248448491096497,-0.013216560706496239,0.004019434098154306,-0.01675873063504696,0.031854841858148575,-0.05841556191444397,-0.023159002885222435,-0.01662605255842209,0.006307915318757296,0.006695270538330078,-0.021112121641635895,0.065471351146698,-0.059502165764570236,0.002174010733142495,0.018980469554662704,0.04006550833582878,0.017045436426997185,0.017197754234075546,-0.07197131961584091,-0.01915106549859047,-0.0365605354309082,0.07315196096897125,-0.01626588962972164,0.057405680418014526,-0.0488431379199028,-0.011602530255913734,0.08267880231142044,0.08032116293907166,0.055406637489795685,0.0021465218160301447,0.06765976548194885,-0.00838872417807579,0.02531301975250244,-0.05674128979444504,-0.014565175399184227,-0.024406107142567635,-0.0856398344039917,-0.04240208864212036,-0.02954993024468422,-0.0729219987988472,-0.09945161640644073,-0.05233558639883995,-0.007064514793455601,-0.06304905563592911,-0.020640140399336815,-0.00574674503877759,-0.07631075382232666,-0.030590657144784927,-0.02811519429087639,0.004689481575042009,0.11680256575345993,-0.039101965725421906,-0.036259785294532776,0.02056335285305977,0.06897543370723724,0.07447761297225952,-0.04984806850552559,0.04916253685951233,-0.048255689442157745,0.03688185662031174,0.03170640766620636,-0.06783013045787811,0.02306431718170643,0.05552225932478905,0.0008207031060010195,0.06780798733234406,-0.0013420437462627888,0.0059530530124902725,0.041056547313928604,-0.1455928385257721,0.03918283432722092,0.05402849242091179,-0.09709543734788895,-0.07521424442529678,-0.018566185608506203,-0.032396554946899414,0.0019358000718057156,0.020452123135328293,0.062225341796875,-0.11550924926996231,-0.07269950211048126,0.01870024763047695,-0.05566048622131348,-0.06476739048957825,-0.05744998902082443,0.08218361437320709,0.07741766422986984,-0.032739974558353424,-0.007610340137034655,-0.053341690450906754,-0.05639525502920151,-0.019640780985355377,0.02889636531472206,-0.007670317776501179,0.050654295831918716,0.0025775092653930187,0.013650242239236832,0.012901350855827332,0.011916759423911572,-0.13255861401557922,0.013486535288393497,-0.029872985556721687,-0.025086162611842155,-0.04188898578286171,0.03285028412938118,0.05884722247719765,-0.058292362838983536,-0.034513577818870544,0.030811041593551636,0.0277838297188282,-0.10535751283168793,0.07278989255428314,-0.014601190574467182,0.056110892444849014,0.09965598583221436,-0.051478732377290726,0.05355476960539818,-0.08902790397405624,-0.061204805970191956,-1.6911943754455794e-33,0.008151600137352943,-0.01098419539630413,0.035699620842933655,0.007656860165297985,0.09668968617916107,0.07130312919616699,0.04309328272938728,0.016821932047605515,-0.0014351195422932506,-0.03527139872312546,-0.041723910719156265,0.038161635398864746,-0.072340227663517,-0.02606060728430748,0.03926101326942444,0.03205038607120514,-0.0662495568394661,-0.06999657303094864,0.05881066992878914,0.07326003909111023,-0.07595956325531006,0.09581682831048965,0.025526318699121475,0.017319047823548317,0.040039967745542526,0.03220544010400772,0.04283340647816658,0.014714148826897144,-0.02259633131325245,0.05646716430783272,-0.014294558204710484,0.03410469368100166,0.017229964956641197,0.018804708495736122,-0.03810683637857437,0.03855494037270546,0.043951258063316345,-0.031027983874082565,-0.04815949872136116,-0.008794206194579601,0.05185553431510925,-0.035313867032527924,0.04055486619472504,-0.013637268915772438,-0.10985158383846283,-0.0038306056521832943,0.03241430222988129,-0.009269561618566513,-0.009365641511976719,-0.01954680308699608,-0.07087808847427368,0.05405768007040024,0.03171143680810928,-0.06669103354215622,0.028894644230604172,0.01769554428756237,0.039144568145275116,0.04136265441775322,-0.03495950624346733,-0.046160709112882614,-0.050848234444856644,-0.04795455560088158,0.016041597351431847,-0.18663670122623444,-0.03107212670147419,-0.024746723473072052,0.003440564963966608,0.010259633883833885,-0.03622670844197273,-0.07324626296758652,-0.003997639287263155,-0.003807458793744445,-0.02940249815583229,0.035249412059783936,0.010469689033925533,-0.022645458579063416,0.012344544753432274,0.019561344757676125,-0.04470343515276909,-0.049121275544166565,0.12074273079633713,0.05263368785381317,-0.0552467480301857,0.013740590773522854,0.060662467032670975,-0.07796323299407959,0.026635101065039635,-0.08894708752632141,-0.04744282737374306,-0.016614720225334167,0.04533787816762924,0.02916770614683628,0.04652600362896919,-0.10970406234264374,-0.0911114290356636,-5.4733032763426374e-34,0.03921930864453316,-0.05334428697824478,0.015166529454290867,0.05456872656941414,-0.024121975526213646,-0.04635746404528618,0.011719495989382267,0.012325545772910118,0.0614110492169857,0.04891911521553993,-0.007714453153312206,-0.013214988633990288,0.005437540356069803,-0.009515039622783661,-0.07303156703710556,-0.10448358207941055,-0.01599438674747944,-0.012341739609837532,0.07479455322027206,-0.02874540165066719,0.0014425369445234537,0.007915751077234745,-0.06788111478090286,-0.0005201396998018026,0.03817986696958542,0.09906559437513351,0.08468256145715714,-0.02295690029859543,-0.06053677201271057,-0.02293609268963337,0.05177930369973183,0.02397844009101391,-0.058778200298547745,-0.013470415957272053,0.049205660820007324,-0.07900510728359222,-0.04088655486702919,-0.005227765999734402,0.006884569302201271,-0.11414160579442978,-0.01845800317823887,-0.06845461577177048,-0.02856256626546383,0.02204376459121704,0.006422662641853094,-0.011402328498661518,0.0938691571354866,0.1697547435760498,0.013307330198585987,-0.029813887551426888,-0.02015581540763378,0.030471110716462135,-0.09859926253557205,0.0090903639793396,0.004836961627006531,-0.06887544691562653,-0.004766463302075863,0.00460822181776166,0.12699510157108307,0.035104431211948395,-0.023243751376867294,0.014422427862882614,-0.006854478269815445,0.04919932410120964,-0.06536708027124405,0.06667457520961761,-0.03983592614531517,-0.0032802456989884377,-0.005714959930628538,0.01267854031175375,0.07499101012945175,-0.014412877149879932,0.0030498241540044546,0.0468984879553318,-0.044108182191848755,-0.03680642321705818,-0.09111366420984268,-0.09561970829963684,0.06898918002843857,0.013027137145400047,0.07567072659730911,-0.04285819083452225,-0.0017042607069015503,0.07412224262952805,0.04472308233380318,-0.03960692882537842,-0.07295811921358109,0.03158968687057495,0.046511657536029816,0.0391644723713398,-0.077629454433918,0.01838783547282219,0.03657760098576546,0.019220536574721336,0.01295594684779644,-2.6342531711520678e-8,0.0594862662255764,0.012175404466688633,0.01586228795349598,0.00655844621360302,-0.006449745036661625,0.024986451491713524,-0.0016505257226526737,-0.055734191089868546,-0.08807980269193649,-0.012007898651063442,0.026960249990224838,-0.016600849106907845,0.0019691861234605312,0.010338866151869297,0.10373193770647049,0.027026094496250153,0.06673652678728104,-0.06497921794652939,0.04513335973024368,-0.004990522284060717,0.03278490528464317,0.06407403945922852,-0.023834124207496643,-0.038528040051460266,0.018602067604660988,-0.06501374393701553,-0.019108355045318604,0.012648263946175575,-0.06771180778741837,0.003414000617340207,0.06435529887676239,-0.000296036567306146,-0.015127964317798615,0.019820550456643105,-0.020574893802404404,0.04364222288131714,-0.048333924263715744,0.05798374116420746,0.04361226037144661,-0.052831269800662994,0.039880674332380295,-0.02299707941710949,0.041855406016111374,0.0003135829756502062,-0.0188978873193264,-0.023702338337898254,0.06945459544658661,-0.04930250346660614,0.07011981308460236,0.05270548537373543,0.024305040016770363,0.04072321206331253,0.0039831362664699554,0.0530504435300827,0.01801731251180172,-0.03587839752435684,0.012014594860374928,0.040044210851192474,-0.08988233655691147,0.004036133177578449,0.09200082719326019,0.007028994616121054,-0.018828095868229866,-0.021968195214867592]},{"text":"I had an uneasy fear that he might cut a poor figure there beside all those clever Russian officers.","book":"Down and Out in Paris and London","chapter":6,"embedding":[0.08258059620857239,0.02316795103251934,0.0036272257566452026,0.048068806529045105,0.03317280486226082,-0.04180019721388817,0.058734696358442307,0.0020523073617368937,-0.03689687326550484,0.024379990994930267,0.0038279821164906025,0.008131533861160278,0.05496387183666229,0.03128349408507347,-0.04487866908311844,-0.06879764795303345,-0.020479122176766396,0.01644279807806015,-0.0316864475607872,0.021587064489722252,0.0174727663397789,-0.0041683390736579895,0.09801928699016571,0.019967494532465935,0.03378979116678238,-0.05183635652065277,0.018804877996444702,0.04112205654382706,0.030892264097929,0.011631854809820652,0.05040474981069565,-0.05413395166397095,0.038664914667606354,-0.004079779610037804,0.07507947087287903,-0.029990853741765022,0.061503082513809204,0.07918281853199005,0.06234126538038254,0.031515732407569885,0.006772060412913561,-0.02607080526649952,0.008160033263266087,0.12145878374576569,-0.052382782101631165,-0.06127721071243286,-0.07473640888929367,-0.09043672680854797,0.03471975401043892,-0.060995914041996,-0.04769543558359146,0.0029107904992997646,-0.050954412668943405,-0.0855109766125679,0.02935723215341568,-0.04728525131940842,0.06914813816547394,-0.016887063160538673,-0.015715066343545914,0.004081662278622389,-0.03929149731993675,-0.011005200445652008,0.01726127788424492,-0.04382060840725899,0.006271026562899351,-0.048159919679164886,-0.05054652318358421,-0.018367072567343712,-0.000008397618330491241,0.11251509189605713,0.05416235327720642,-0.0017321737250313163,-0.06065915897488594,0.006884877569973469,-0.05402214080095291,-0.0914711281657219,0.04342378303408623,0.043237585574388504,-0.014703314751386642,0.0254953783005476,0.030623573809862137,0.007502655033022165,-0.017291482537984848,0.051334697753190994,-0.019558632746338844,-0.04381906986236572,0.025550292804837227,-0.13477762043476105,-0.02648739516735077,0.052302151918411255,0.0406787246465683,0.03277742117643356,0.06229834631085396,0.0605374239385128,0.06047796830534935,0.045221760869026184,-0.04841245710849762,0.08025041967630386,-0.07737363129854202,0.00013363092148210853,0.014903944917023182,-0.025693465024232864,0.009697077795863152,0.025664066895842552,-0.11788113415241241,0.031756043434143066,-0.01722997985780239,-0.09542268514633179,-0.0425448976457119,-0.08324377983808517,-0.015063849277794361,-0.01511429250240326,-0.022476105019450188,0.05432503670454025,-0.02999141998589039,0.06557627022266388,-0.014500980265438557,-0.0438593290746212,-0.10728291422128677,0.08078479021787643,0.04183359816670418,0.056274961680173874,-0.03345221281051636,0.07486303895711899,0.0281686894595623,0.013680663891136646,-0.026280157268047333,-2.5220457212212727e-33,0.09314073622226715,-0.008931046351790428,-0.06044560670852661,-0.07963895797729492,0.015055321156978607,0.03430634364485741,-0.06159970536828041,0.0032194589730352163,0.05038871988654137,0.10636615753173828,-0.02483407035470009,-0.037461817264556885,-0.05956045910716057,-0.029248105362057686,-0.06645812094211578,0.07164576649665833,0.03507150337100029,0.029667889699339867,-0.04717300832271576,0.06914518773555756,-0.030618874356150627,0.01729077287018299,-0.026312312111258507,0.10648958384990692,0.08144673705101013,0.07944023609161377,0.016466431319713593,-0.07848820090293884,0.0738246813416481,0.0477154478430748,-0.15924255549907684,0.1016860082745552,-0.004942813888192177,0.019003380089998245,-0.010426699183881283,-0.0071234023198485374,-0.04209381714463234,-0.008088264614343643,-0.06206526234745979,0.013941449113190174,0.12652283906936646,-0.027264688163995743,0.034306105226278305,0.09293867647647858,-0.02644556201994419,-0.012203404679894447,-0.01787848211824894,-0.02097754180431366,-0.04234160855412483,0.03398493677377701,0.02291838452219963,0.025948433205485344,0.06152398884296417,0.06713497638702393,0.04737163335084915,-0.020943209528923035,-0.002284819958731532,0.0311399195343256,0.06048506125807762,-0.024125132709741592,-0.05733061581850052,0.008984510786831379,-0.04359521344304085,0.029006220400333405,-0.016921451315283775,-0.07803826034069061,-0.0577518604695797,-0.02364000864326954,-0.07522065937519073,0.019596002995967865,-0.09622952342033386,-0.04045187681913376,-0.0853767916560173,-0.04388010874390602,-0.11617330461740494,-0.0680789202451706,-0.06091150641441345,0.04067404195666313,-0.0007458582986146212,-0.08252328634262085,-0.020670240744948387,0.0577661395072937,0.1226663738489151,-0.02116052247583866,0.04485171288251877,0.010807834565639496,0.0687679797410965,-0.0519617460668087,-0.07384157925844193,0.018964463844895363,-0.025216734036803246,-0.07515031099319458,0.008401944302022457,0.03717832639813423,-0.07539165765047073,2.099085542804388e-34,-0.04737377166748047,-0.0268542543053627,0.05538685619831085,0.05223706364631653,-0.08417922258377075,-0.03185912221670151,0.012727671302855015,0.028132183477282524,0.06762270629405975,-0.006529347039759159,-0.035255316644907,0.005347899626940489,0.002585404319688678,0.010708386078476906,0.02883174456655979,-0.07416301220655441,0.06066880002617836,0.03017214499413967,-0.05125858262181282,0.016874277964234352,-0.008425514213740826,-0.004940565209835768,0.04889369010925293,0.06474437564611435,-0.06501170247793198,0.04679934307932854,0.05226685479283333,-0.09490640461444855,-0.12455854564905167,0.032901935279369354,-0.0591081902384758,-0.07797205448150635,-0.05638115480542183,0.044291287660598755,0.047171302139759064,0.09621070325374603,-0.016141343861818314,-0.005378497298806906,-0.05669347569346428,0.008112329058349133,0.0038762432523071766,-0.0340428426861763,0.05048194155097008,-0.001024430152028799,-0.022589726373553276,-0.08279158920049667,0.031244900077581406,0.012707898393273354,-0.04821613430976868,-0.014397038146853447,-0.10760011523962021,0.06460865586996078,-0.06963947415351868,0.0614137277007103,-0.005812541581690311,-0.0151619091629982,0.020350037142634392,-0.035201434046030045,0.07312066107988358,0.017489802092313766,-0.09433019161224365,-0.008554099127650261,0.010185151360929012,-0.016027802601456642,0.004623733460903168,0.008244943805038929,-0.031243890523910522,0.08783431351184845,0.03981872648000717,0.030076084658503532,0.03200402110815048,-0.05164087563753128,0.043814484030008316,0.07416795939207077,0.01148212980479002,0.022682970389723778,-0.06836573034524918,0.06129961088299751,0.028235595673322678,0.06032524257898331,0.042531244456768036,-0.09939320385456085,0.007413089275360107,0.021934812888503075,0.015320878475904465,0.07814833521842957,0.011628326959908009,-0.004287906922399998,0.00940705370157957,-0.03579980507493019,-0.044515155255794525,-0.03247956931591034,0.03887992724776268,0.05484659597277641,0.03092529997229576,-2.1955811391194402e-8,-0.0036124170292168856,-0.00892573967576027,0.01892092265188694,0.027171995490789413,0.027611019089818,-0.05794447287917137,-0.09266503900289536,-0.031427767127752304,-0.09192069619894028,0.06423093378543854,0.044274479150772095,0.029012691229581833,-0.008006427437067032,-0.004288265947252512,-0.018400702625513077,-0.014711689203977585,-0.006623626220971346,-0.00027022699941881,-0.04140228405594826,0.04137619957327843,-0.04805844649672508,0.010825419798493385,-0.047955941408872604,-0.005558408331125975,-0.029609229415655136,0.004882591310888529,-0.061505235731601715,0.014690457843244076,0.03809254989027977,0.11786920577287674,0.004938878584653139,-0.04435577243566513,-0.05133228749036789,0.0677005872130394,0.016073530539870262,0.010653425008058548,0.011526601389050484,0.00986926257610321,0.06555482745170593,-0.06022997573018074,0.03719688951969147,-0.022396955639123917,0.046785011887550354,0.032834846526384354,0.043226733803749084,0.03185305744409561,0.020604101940989494,-0.018672455102205276,0.07096549868583679,0.01766655594110489,0.018898459151387215,0.07445524632930756,-0.04611824452877045,0.09922794252634048,0.0335453599691391,-0.04026731476187706,0.04146665334701538,-0.023867368698120117,-0.06965374946594238,0.01116519421339035,-0.060861680656671524,-0.0995739996433258,-0.06105037033557892,-0.020599452778697014]},{"text":"Ah! (_She throws herself on her knees beside her mother and flings her arms passionately round her.","book":"Down and Out in Paris and London","chapter":6,"embedding":[0.05760624259710312,0.031024828553199768,0.03827376663684845,0.009696638211607933,0.0032318562734872103,0.08310626447200775,0.05474909394979477,-0.030696067959070206,-0.05360325053334236,-0.09374262392520905,0.027951680123806,-0.05992593988776207,-0.022810155525803566,-0.004079435020685196,0.055247366428375244,0.008674098178744316,0.03228521719574928,0.0013502273941412568,-0.028678173199295998,0.09906494617462158,-0.04824892058968544,0.04129629582166672,0.11244302988052368,0.06857442855834961,-0.03546220064163208,0.06258035451173782,0.09836425632238388,-0.07764057070016861,0.01385707687586546,-0.014079614542424679,-0.045923251658678055,0.00361615139991045,-0.03824371472001076,0.05924176052212715,-0.057689931243658066,0.029638387262821198,-0.035860296338796616,-0.045777786523103714,-0.0039943307638168335,-0.002236184198409319,-0.0030465302988886833,0.03814930468797684,-0.004571105353534222,-0.03647797927260399,0.03650490567088127,0.014752884395420551,0.02213919907808304,0.02458975277841091,-0.002371349837630987,-0.009113236330449581,-0.05516374483704567,0.03525190055370331,0.013569880276918411,0.05440013110637665,0.034610897302627563,-0.05748859792947769,0.0701647475361824,-0.15713626146316528,0.03519769757986069,0.041000355035066605,-0.03476865962147713,0.05609958991408348,-0.01515977829694748,0.06626822799444199,0.011883377097547054,-0.0688173770904541,0.1320887953042984,-0.006364287342876196,-0.041915882378816605,0.058587219566106796,-0.020336266607046127,0.01630450412631035,-0.09892049431800842,-0.0013789428630843759,0.01159043237566948,0.00383526342920959,0.023869208991527557,-0.07268252968788147,0.045603614300489426,0.07978032529354095,-0.020735377445816994,-0.07387078553438187,-0.02348186820745468,0.10492487996816635,0.013540038838982582,0.013235126622021198,0.005256166681647301,-0.03424292802810669,-0.0431017242372036,-0.014154598116874695,-0.12678547203540802,-0.034409284591674805,-0.05328303202986717,0.014510365203022957,-0.04579240083694458,-0.010774989612400532,-0.0546206496655941,-0.07341177016496658,-0.07623390108346939,0.0033671176061034203,0.020018920302391052,0.0055005052126944065,0.0439101941883564,0.11522771418094635,-0.007393354084342718,0.02670879475772381,-0.07851722836494446,-0.0744992196559906,-0.028027281165122986,-0.003386161057278514,-0.0050580441020429134,-0.074833445250988,-0.07241722196340561,-0.04736392945051193,0.026190320029854774,-0.014382870867848396,0.0018465541070327163,-0.07367530465126038,-0.07468374818563461,0.04904435575008392,0.0439397469162941,-0.014981844462454319,0.028788143768906593,-0.030663972720503807,-0.0037833864334970713,-0.06251417845487595,-0.03858759254217148,1.655823383087352e-33,0.05839065462350845,0.00036974152317270637,-0.009981174021959305,0.018303286284208298,-0.005884127225726843,-0.0024273565504699945,-0.027012811973690987,-0.007041767239570618,-0.05837519094347954,0.027065930888056755,-0.07605728507041931,-0.00991768017411232,0.045990921556949615,-0.02954351343214512,-0.07238664478063583,0.020427295938134193,0.007496195379644632,-0.025613533332943916,0.07532631605863571,0.07400809228420258,-0.008458368480205536,0.027903389185667038,-0.015517638064920902,-0.070001982152462,-0.07759393006563187,-0.01768525317311287,-0.023747168481349945,-0.046354662626981735,0.02527415007352829,0.0029522525146603584,-0.030413303524255753,0.004374339245259762,-0.027275770902633667,-0.054388757795095444,0.06361034512519836,0.0069097233936190605,-0.007500151637941599,-0.0017326372908428311,-0.03166695684194565,0.03876969963312149,-0.12777313590049744,-0.019939815625548363,-0.005362906027585268,-0.07370130717754364,-0.04277307912707329,-0.004950550384819508,-0.03412763401865959,-0.026973038911819458,0.11677449196577072,0.002330155111849308,-0.008650888688862324,0.010672071948647499,0.05213760957121849,0.051292601972818375,0.030025066807866096,0.06450028717517853,0.009312971495091915,-0.005042496137320995,0.03936535865068436,0.07217474281787872,0.020708804950118065,-0.061802543699741364,0.034870609641075134,-0.06723280996084213,0.010698862373828888,-0.07597611844539642,-0.058438193053007126,-0.02138327620923519,0.10095186531543732,0.021817319095134735,-0.028846899047493935,0.03040868416428566,-0.05302293971180916,-0.00305465841665864,-0.11301421374082565,0.00245268433354795,0.0818721204996109,0.045439187437295914,0.02107434906065464,-0.05447082594037056,0.07051912695169449,-0.009685895405709743,0.0075822011567652225,0.046474944800138474,0.009926501661539078,-0.033186689019203186,-0.007101193070411682,-0.07256704568862915,-0.06206440180540085,0.026813670992851257,0.017758728936314583,0.02260885201394558,0.02324552834033966,-0.015473524108529091,0.016246642917394638,-5.1525157352845315e-33,0.05515144020318985,0.08447429537773132,-0.08504409343004227,0.0442127101123333,-0.03456030786037445,-0.1166723445057869,-0.019017048180103302,0.0042615835554897785,-0.007786204572767019,-0.0726252868771553,-0.0243531446903944,-0.09475059807300568,0.040084853768348694,-0.04004179686307907,0.09197160601615906,-0.005814188625663519,0.04837338253855705,0.0010484438389539719,0.020327024161815643,0.028758153319358826,-0.04150506481528282,-0.023112107068300247,0.05257237330079079,-0.051112446933984756,0.023843886330723763,-0.04144391417503357,0.048013199120759964,-0.0011143709998577833,-0.017092257738113403,-0.01126678567379713,0.027674144133925438,-0.06704074889421463,0.03751644864678383,0.017621001228690147,0.013496718369424343,-0.010669553652405739,-0.07281766086816788,-0.10026624798774719,0.04207050800323486,-0.11557541787624359,0.048913370817899704,0.0015325468266382813,0.07738636434078217,0.06817620992660522,-0.017009040340781212,0.11183994263410568,-0.007614062633365393,0.07865436375141144,0.029880957677960396,0.02285490557551384,-0.02195495180785656,-0.14942729473114014,0.04231300950050354,0.05070093646645546,0.001155669684521854,0.0010834266431629658,0.1307360678911209,0.019560538232326508,0.04522967338562012,-0.05055853724479675,0.0122344009578228,0.0317208431661129,-0.06686200946569443,0.01581156626343727,-0.08609442412853241,-0.012201391160488129,-0.0488116480410099,-0.049678098410367966,-0.04711330682039261,0.03915936499834061,-0.024966150522232056,0.08008275181055069,-0.0604262575507164,-0.004811631981283426,-0.027207136154174805,0.06850878894329071,0.06050852686166763,-0.0840064138174057,0.07428386807441711,-0.07523220032453537,-0.093206025660038,-0.016839265823364258,0.041951969265937805,-0.12041550129652023,-0.027427051216363907,-0.040451254695653915,-0.013653486967086792,0.020791593939065933,-0.02679142914712429,0.005447946023195982,-0.0028321202844381332,0.029149319976568222,0.16013747453689575,-0.04753134399652481,-0.0057775950990617275,-3.184290520152899e-8,0.009109330363571644,-0.02247738093137741,-0.012920752167701721,-0.06900349259376526,-0.05410059541463852,0.01944701373577118,0.006574841216206551,-0.02076907642185688,-0.06836793571710587,-0.023231498897075653,-0.018397638574242592,0.030808225274086,0.10120481997728348,0.039598431438207626,0.022772029042243958,-0.03698890283703804,0.050152067095041275,0.048506345599889755,-0.02502180077135563,-0.03480419144034386,-0.00550682982429862,0.008168818429112434,0.0724448636174202,0.012030295096337795,-0.03658737242221832,0.12531304359436035,-0.020264506340026855,-0.013512642122805119,-0.03492036461830139,0.03733952343463898,0.15215976536273956,0.049113526940345764,-0.022983446717262268,-0.012239763513207436,-0.06725636124610901,-0.056616734713315964,0.06422539800405502,0.012584635987877846,-0.050025783479213715,-0.01930621638894081,-0.04757612571120262,-0.027421634644269943,-0.0565066821873188,-0.0124997328966856,0.03753884136676788,0.03310314193367958,0.08758559823036194,-0.03778660297393799,0.09186016768217087,0.030156591907143593,0.0404803566634655,-0.04106055945158005,-0.006021428387612104,0.013787572272121906,0.01829630509018898,-0.009264517575502396,-0.028056694194674492,-0.020299764350056648,0.05391591787338257,0.03504977747797966,0.055323146283626556,0.01397616695612669,0.03777431324124336,-0.011076298542320728]},{"text":"Our cavalry will be after them; and our people will be ready for them you may be sure, now that they are running away. (_She goes out on the balcony and pulls the outside shutters to; then steps back into the room._) RAINA.","book":"Down and Out in Paris and London","chapter":7,"embedding":[-0.049412909895181656,0.03113192692399025,0.07047374546527863,-0.013730431906878948,0.043283842504024506,-0.0037269811145961285,0.040616147220134735,-0.10489913821220398,-0.0074810911901295185,-0.02164699137210846,0.03994668275117874,-0.03394255042076111,0.014047343283891678,-0.043491099029779434,-0.03759874030947685,0.03569342568516731,-0.0049976990558207035,-0.07571924477815628,-0.05135510116815567,0.05354336276650429,-0.05564683675765991,0.02855749800801277,0.03981326147913933,0.10160281509160995,-0.06292885541915894,0.04460389167070389,-0.047447893768548965,-0.010490041226148605,-0.05387703329324722,-0.0009374028886668384,-0.04119468852877617,-0.07159803062677383,-0.005734446924179792,0.02235141023993492,0.030061932280659676,0.10878724604845047,0.05583222955465317,-0.08964165300130844,0.05017073452472687,-0.007874027825891972,0.04067310318350792,-0.0715247318148613,-0.03848288208246231,0.013344785198569298,0.039485663175582886,0.01853819563984871,0.003815641161054373,-0.0002987517218571156,0.025817805901169777,0.004818405024707317,0.04170536622405052,0.03090616501867771,-0.03482199087738991,-0.015834592282772064,-0.025800641626119614,-0.038353871554136276,0.05768212676048279,-0.04437185823917389,0.00909495446830988,-0.010634960606694221,-0.052778176963329315,0.05355589836835861,-0.041621867567300797,0.0943618044257164,-0.027936141937971115,-0.07467979937791824,0.0073356847278773785,0.06205955147743225,0.012780457735061646,0.031434208154678345,-0.016434257850050926,0.08707167208194733,0.012392363511025906,0.0059923091903328896,-0.13237659633159637,0.0030561371240764856,0.03530742973089218,-0.01721261441707611,0.009308683685958385,-0.05839374661445618,0.014623557217419147,-0.07324868440628052,0.07270262390375137,0.018064016476273537,0.02086448296904564,0.057088449597358704,0.0026450527366250753,-0.01201439369469881,0.05547603219747543,-0.04791827127337456,-0.04160736873745918,-0.09373149275779724,-0.0242990180850029,0.12739692628383636,-0.04544809088110924,0.06717070192098618,0.009475421160459518,-0.05315450578927994,-0.07410772889852524,0.05341504514217377,0.035935208201408386,-0.031721677631139755,0.007958381436765194,-0.017333615571260452,-0.06056112423539162,0.036638494580984116,-0.07794295251369476,-0.03514189273118973,-0.03030700981616974,-0.08475665003061295,0.024967186152935028,-0.07224025577306747,0.033364035189151764,0.02875039540231228,-0.03164929524064064,0.05810178816318512,-0.07581625133752823,-0.04218991845846176,-0.05377745255827904,0.04219323769211769,0.003975394181907177,0.03293401375412941,0.0027886577881872654,0.011363262310624123,0.107242152094841,0.005364265758544207,0.010791431181132793,-2.396711299294235e-34,-0.010720953345298767,0.017807820811867714,-0.014562598429620266,0.07397525012493134,0.0027316755149513483,-0.01008512545377016,0.00021652541181538254,0.005313904490321875,-0.042635995894670486,-0.04370559751987457,-0.05662713199853897,-0.048646412789821625,-0.0014771099667996168,-0.0317104198038578,-0.0460517443716526,-0.08862430602312088,0.05468197911977768,-0.04413164407014847,0.014669178985059261,0.009335431270301342,0.031078556552529335,-0.01767110452055931,-0.04537808895111084,0.05301746353507042,0.0288605485111475,-0.007260757498443127,0.052659016102552414,0.055784862488508224,-0.04053135961294174,0.044678185135126114,-0.0321965254843235,0.006303558591753244,0.04344203323125839,-0.03544578328728676,-0.011460695415735245,-0.0006115243304520845,-0.0838160514831543,-0.06413006037473679,-0.0777914822101593,0.014834398403763771,-0.028155969455838203,0.018624259158968925,-0.07941091060638428,0.01833663508296013,-0.0076074860990047455,-0.07305429875850677,0.0567774623632431,0.04584337770938873,-0.024783948436379433,-0.06618441641330719,0.015753839164972305,0.06251154839992523,-0.04480542615056038,-0.028460625559091568,0.0395452156662941,0.03809733688831329,0.0012037541018798947,-0.029668183997273445,0.021917052567005157,-0.06283827126026154,0.09149707108736038,-0.02977253496646881,0.017644787207245827,-0.03175188973546028,0.005176454316824675,-0.06810563802719116,-0.015857383608818054,0.0030397933442145586,0.007723531220108271,-0.04053869470953941,-0.017606426030397415,0.011831345967948437,-0.04098450019955635,0.04760190472006798,0.04829300567507744,0.04587167501449585,0.028185490518808365,-0.037059035152196884,0.08284366875886917,-0.0584174320101738,-0.03714432939887047,-0.0010146654676645994,-0.04469869285821915,0.055976297706365585,0.06152099743485451,-0.02167571894824505,0.07139693200588226,-0.11894270032644272,-0.07037997245788574,0.008635721169412136,0.023227958008646965,0.10167976468801498,0.05280478671193123,-0.049551524221897125,0.010884552262723446,-1.4701883968505349e-33,0.0652104988694191,0.08163359761238098,-0.048469070345163345,-0.0069856964983046055,-0.002627612091600895,-0.023452531546354294,0.004948868881911039,-0.03324256092309952,0.026248781010508537,0.06826106458902359,-0.13494886457920074,0.022366970777511597,-0.001049282494932413,0.005176059436053038,0.029688997194170952,-0.07624982297420502,0.14116455614566803,-0.012882632203400135,0.03173167258501053,-0.019680246710777283,0.008121568709611893,-0.015257957391440868,-0.014425542205572128,0.020252332091331482,0.006132281385362148,0.02532719261944294,0.043349724262952805,-0.05269918963313103,-0.08511430770158768,-0.060277312994003296,-0.019382992759346962,-0.17531806230545044,-0.06291715800762177,0.07491571456193924,0.07312793284654617,0.022988399490714073,0.01882237382233143,-0.06437250226736069,-0.08413262665271759,0.020582111552357674,0.016986679285764694,-0.04958684369921684,-0.013132084161043167,0.06698760390281677,-0.048086635768413544,0.017276784405112267,0.054324012249708176,0.14731699228286743,-0.03940272331237793,0.020931445062160492,0.030178792774677277,0.005745813250541687,-0.005967805162072182,0.048161059617996216,0.03623490035533905,-0.05444898456335068,0.0399613082408905,-0.10734516382217407,0.00585616659373045,0.009097358211874962,-0.029709380120038986,-0.007260923273861408,0.014887616969645023,0.039715591818094254,-0.0055117798037827015,-0.06289727985858917,-0.058855291455984116,0.07449135929346085,0.01727483980357647,0.08846434205770493,0.04571298882365227,-0.03547674044966698,-0.13880877196788788,0.005323613528162241,0.03967919200658798,0.008744708262383938,0.027924980968236923,-0.04936102032661438,0.03998884931206703,-0.057877812534570694,-0.009104285389184952,-0.045668575912714005,-0.03864644467830658,0.005707306321710348,0.054293204098939896,-0.06023753434419632,0.06889010220766068,0.05445918068289757,0.04595520719885826,0.010487210005521774,0.0022329692728817463,0.008118826895952225,0.14953987300395966,-0.04426373168826103,0.0010516158072277904,-3.71433763746154e-8,-0.021036962047219276,0.014389334246516228,-0.03855198994278908,-0.04241839051246643,-0.02089374139904976,-0.055254947394132614,-0.0033770303707569838,0.04081418737769127,0.008974343538284302,-0.07118172943592072,0.10530126839876175,0.06564050912857056,0.07653733342885971,0.044138576835393906,0.06125691160559654,0.12839849293231964,0.053783293813467026,-0.08485693484544754,-0.06397610157728195,-0.043351951986551285,-0.04990758001804352,0.030055908486247063,-0.04013533145189285,-0.034166302531957626,0.000992658780887723,0.01571476459503174,-0.07199247181415558,0.014498491771519184,-0.015829289332032204,0.10443578660488129,0.015481721609830856,-0.03950372710824013,-0.06433309614658356,-0.01028125174343586,0.02360582910478115,0.07943391054868698,-0.039126742631196976,0.021225864067673683,0.07064755260944366,0.00373784895054996,-0.04637783765792847,0.056208156049251556,0.016536198556423187,0.07034420967102051,0.02007007971405983,-0.02794981747865677,0.041520874947309494,-0.00603707367554307,-0.06321895122528076,-0.08581075817346573,-0.09864513576030731,-0.07174220681190491,0.025484073907136917,0.11814749240875244,0.05937947332859039,0.003992511425167322,0.05129193514585495,-0.06111033633351326,0.01706884428858757,0.0494467169046402,-0.005489851348102093,-0.05399305000901222,-0.055592410266399384,-0.0056533003225922585]},{"text":"CATHERINE. (_authoritatively, turning on her way to the door_).","book":"Down and Out in Paris and London","chapter":7,"embedding":[0.024576745927333832,0.0083977822214365,0.04183398559689522,0.05996876209974289,-0.10285290330648422,0.0012238383060321212,0.03550030663609505,-0.0425671748816967,0.03176318109035492,-0.02542126178741455,-0.016891758888959885,-0.06647037714719772,-0.01845778152346611,-0.023535724729299545,-0.035892046988010406,0.020463410764932632,0.023642903193831444,-0.020262790843844414,-0.02593017742037773,0.0655253455042839,-0.05185119807720184,-0.08434196561574936,0.017227759584784508,0.025019338354468346,-0.06367230415344238,-0.03770400956273079,0.033259980380535126,-0.038226138800382614,-0.029667239636182785,-0.033000800758600235,-0.14041702449321747,-0.020041614770889282,-0.05200991779565811,0.025880975648760796,-0.03756824508309364,0.05536092817783356,0.03181864693760872,0.010067975148558617,0.033311713486909866,0.02877201698720455,-0.012283609248697758,-0.03772762045264244,-0.026898428797721863,0.05361268296837807,0.026492156088352203,-0.023304151371121407,0.025930438190698624,-0.006154269445687532,-0.02748682163655758,-0.009772279299795628,-0.07932709902524948,0.05107652395963669,-0.0914267972111702,0.10002875328063965,0.01618647761642933,0.017036868259310722,0.07177703827619553,-0.017877904698252678,0.021375978365540504,0.09021693468093872,-0.07177920639514923,0.04298003017902374,-0.049072153866291046,0.09545440971851349,-0.03650619462132454,-0.007120775990188122,-0.06236295402050018,-0.024286311119794846,-0.07259359210729599,0.039403535425662994,0.004269151948392391,-0.022489216178655624,0.049844466149806976,-0.031606923788785934,-0.00008362737571587786,-0.10291147977113724,-0.005314711481332779,-0.010641222819685936,0.04587670788168907,-0.022648291662335396,-0.0154802817851305,-0.02888600155711174,-0.10960163176059723,0.060924630612134933,0.011591953225433826,0.02828335203230381,-0.014806431718170643,-0.07111746817827225,-0.025448236614465714,0.07472651451826096,-0.09183579683303833,-0.048515889793634415,0.0009374508517794311,0.025570562109351158,-0.0382549911737442,0.021079672500491142,-0.01696772314608097,-0.05900886282324791,-0.02009546384215355,0.0022229922469705343,-0.036635082215070724,0.09734902530908585,-0.03974011540412903,0.05557948723435402,-0.055974043905735016,-0.005543238949030638,-0.1000501811504364,-0.08628953993320465,-0.01065138541162014,-0.07644698023796082,0.012088335119187832,-0.053499914705753326,-0.041249070316553116,-0.01835012622177601,0.03762407973408699,0.019191870465874672,-0.020746080204844475,-0.028093622997403145,0.09240542352199554,0.014507133513689041,0.034934815019369125,0.06425997614860535,0.005923613905906677,0.003199141938239336,-0.023561695590615273,-0.01691032201051712,0.003520060796290636,-3.61577727677517e-33,0.03372405096888542,0.059047918766736984,0.04537780582904816,0.04756806418299675,-0.020482055842876434,0.03007730096578598,-0.06949532777070999,0.0566381961107254,-0.04126695543527603,0.029184814542531967,0.012750232592225075,-0.03839106485247612,-0.11368300765752792,-0.11427877098321915,-0.016927266493439674,0.09060647338628769,0.021725976839661598,0.06551114469766617,-0.09380088746547699,0.044881176203489304,0.07021699845790863,0.10322829335927963,-0.03511597216129303,0.030353974550962448,-0.0010944986715912819,-0.10947560518980026,0.0017631269292905927,-0.005200971849262714,0.034048307687044144,0.008546351455152035,0.02650105580687523,0.036462970077991486,0.04774685576558113,0.03800419718027115,-0.04365164786577225,-0.040533099323511124,-0.034363437443971634,-0.0486452654004097,0.003982159774750471,-0.0007963816169649363,-0.10848716646432877,-0.04601272568106651,0.1105395033955574,0.013402441516518593,-0.1403948962688446,-0.043905094265937805,0.001394143677316606,0.017401352524757385,0.019293546676635742,0.02782589942216873,-0.02625277265906334,0.007377793546766043,0.04722227156162262,0.09062238782644272,-0.0404597669839859,-0.02037130855023861,0.011346379294991493,-0.009499379433691502,0.005528612527996302,0.025204915553331375,0.0016244680155068636,0.04495248198509216,0.07553444057703018,-0.0001457028993172571,0.04809263348579407,-0.048737864941358566,-0.039945945143699646,-0.015666035935282707,0.06462918967008591,0.01566627249121666,-0.10855408012866974,0.08326314389705658,0.008343052119016647,0.03986514359712601,-0.02588323876261711,0.019163379445672035,-0.05885939300060272,0.04092291370034218,0.007168949116021395,-0.04776770621538162,0.002624190179631114,0.04209313914179802,-0.04105944186449051,0.09592123329639435,0.029496537521481514,-0.006845336873084307,-0.05022738128900528,-0.09637142717838287,-0.04036533087491989,0.05092034488916397,-0.03636549413204193,0.021297039464116096,0.01953255385160446,-0.009757925756275654,-0.09423653781414032,5.585811401863273e-34,0.1005353033542633,-0.05017271637916565,0.005064956843852997,-0.01718975603580475,0.0021789465099573135,-0.05736008659005165,-0.05748553201556206,-0.09711871296167374,0.06010725721716881,-0.002483598655089736,-0.01269324216991663,-0.0437484011054039,0.09207197278738022,-0.009089925326406956,0.08846225589513779,-0.029243232682347298,0.022313158959150314,-0.05861511826515198,0.003676631022244692,0.06142955273389816,-0.06399726122617722,-0.036260299384593964,-0.13818597793579102,-0.026240436360239983,0.021721579134464264,-0.009600273333489895,0.15421634912490845,0.07216573506593704,-0.03927737474441528,-0.045470841228961945,-0.08691499382257462,-0.06188862770795822,-0.062313009053468704,-0.03232384845614433,0.029411867260932922,0.09314830601215363,0.01823132485151291,-0.061016544699668884,-0.004867731127887964,-0.013916733674705029,0.021346135064959526,0.012933718971908092,0.045476678758859634,0.09444167464971542,0.03934672474861145,0.040797434747219086,-0.025719549506902695,0.08633141964673996,0.018683047965168953,0.050916917622089386,0.009569637477397919,-0.004008098505437374,-0.03302314504981041,0.02184753678739071,0.016156330704689026,0.111687570810318,0.07651419937610626,-0.014663837850093842,0.11514870077371597,-0.01965462416410446,-0.0017646034248173237,0.015140318311750889,0.019800307229161263,0.01334384549409151,-0.05412096157670021,-0.04710406810045242,-0.08408491313457489,0.047120388597249985,-0.015315939672291279,-0.041237931698560715,0.07215011864900589,-0.016489695757627487,0.00812520645558834,-0.004477158188819885,0.058188531547784805,0.02339215949177742,0.011833885684609413,-0.06345462054014206,0.012017421424388885,-0.024579424411058426,-0.04345753788948059,-0.05556632578372955,0.02475932613015175,-0.013092401437461376,0.08663996309041977,-0.028211543336510658,0.005108096171170473,-0.04651259258389473,0.055064961314201355,0.0011051923502236605,0.017205167561769485,0.038822535425424576,0.09964670985937119,-0.0797017365694046,-0.007665080018341541,-2.1724483545426665e-8,-0.04994634911417961,-0.007169794756919146,0.01849409006536007,-0.11328763514757156,0.0840536504983902,-0.016960717737674713,0.05356309935450554,0.05809145048260689,-0.09928318858146667,-0.007467375602573156,-0.00724334130063653,0.05994214117527008,0.06650229543447495,-0.10373356193304062,0.08774733543395996,0.012542183510959148,0.01706494763493538,-0.015108564868569374,-0.02137548290193081,0.05514288693666458,0.0006812331848777831,-0.04077523574233055,-0.012008147314190865,-0.03126443177461624,-0.06118571385741234,0.04497060179710388,0.03737563639879227,0.0031799725256860256,-0.0545954555273056,0.05273430794477463,0.07641267776489258,0.029108909890055656,-0.05293085053563118,-0.012086700648069382,-0.04313449189066887,0.014435787685215473,-0.0324220173060894,0.0055739679373800755,0.06954909861087799,0.021204831078648567,0.05514528229832649,-0.018449172377586365,-0.0599706806242466,0.05426984652876854,0.01625951938331127,0.023909136652946472,0.11611377447843552,-0.05355038493871689,0.019917022436857224,-0.008582335896790028,-0.016391441226005554,-0.013070821762084961,0.04625197872519493,-0.07659637928009033,0.027943430468440056,0.04726482555270195,0.06559418141841888,-0.006912580691277981,-0.036286238580942154,0.06899336725473404,0.043203771114349365,0.018356122076511383,0.03794359043240547,0.03410833701491356]},{"text":"Quite the wisest thing you can do, my love.","book":"Down and Out in Paris and London","chapter":7,"embedding":[-0.023828143253922462,-0.013195160776376724,0.002125168452039361,-0.06921907514333725,-0.05277331545948982,0.029925357550382614,0.06310278177261353,-0.016405096277594566,0.0042241900227963924,0.027145344763994217,-0.05471152812242508,0.0347287543118,-0.032529402524232864,0.07222073525190353,0.02304888144135475,0.015592250972986221,-0.0458856076002121,-0.0016298526898026466,-0.10161572694778442,0.03236038610339165,-0.04725620150566101,-0.0644761323928833,-0.02380296215415001,-0.022920265793800354,-0.030878780409693718,0.08684069663286209,0.00210068142041564,-0.0005742872599512339,-0.036539431661367416,-0.003709083888679743,0.034198205918073654,0.08120343834161758,-0.029289133846759796,-0.0010590213350951672,-0.05701374262571335,0.004685710184276104,0.0036115506663918495,-0.012196245603263378,0.0689544603228569,-0.011653978377580643,0.1262107938528061,0.010211020708084106,-0.03545825555920601,0.06854569166898727,-0.06929072737693787,0.07419421523809433,0.0012646256946027279,-0.037302471697330475,0.031093701720237732,0.04705890640616417,-0.03270544111728668,0.0186710637062788,-0.0865316390991211,0.039590515196323395,0.05415860936045647,0.03662407770752907,-0.02828788384795189,0.05053406208753586,0.03168700635433197,-0.025548938661813736,0.017033932730555534,0.01982038840651512,0.09560032933950424,0.06756248325109482,-0.05729159712791443,0.06638474017381668,0.018488790839910507,-0.0069272154942154884,-0.0013301082653924823,0.060563523322343826,-0.0084459837526083,0.04287892207503319,-0.031739410012960434,-0.05116503685712814,-0.004436885006725788,0.08471985161304474,0.06526227295398712,-0.09562281519174576,0.110081747174263,0.01256776787340641,-0.09900425374507904,0.049197327345609665,0.026386432349681854,0.00801948644220829,-0.04346063733100891,-0.0100015290081501,0.010367599315941334,-0.03797302395105362,0.12017390131950378,0.02318597584962845,-0.03140871226787567,-0.023379243910312653,0.055500876158475876,0.021470481529831886,-0.010740176774561405,-0.025629766285419464,-0.06733477860689163,-0.04896589368581772,-0.10005653649568558,0.047067247331142426,0.0022351082880049944,-0.05055290460586548,0.020347395911812782,0.06906014680862427,-0.009889488108456135,0.08968488872051239,-0.004936086945235729,0.028217321261763573,-0.06764036417007446,-0.0726909413933754,-0.026347830891609192,0.03314447030425072,0.10303354263305664,0.04013010114431381,-0.04393117502331734,-0.0049305325374007225,0.040619250386953354,0.08080442249774933,0.029457760974764824,0.0678054615855217,0.022261852398514748,0.01540656853467226,0.06849746406078339,0.045055318623781204,-0.09406531602144241,-0.09902243316173553,-0.008145477622747421,-4.481537315021431e-33,0.004486212972551584,0.04746237024664879,0.02930307760834694,-0.05912264436483383,0.013462569564580917,0.03554154559969902,-0.009412173181772232,0.09627462178468704,-0.018553568050265312,0.0562308207154274,0.13323849439620972,0.07410386949777603,-0.057437341660261154,-0.06440816074609756,-0.07126160711050034,-0.07025834172964096,0.025912409648299217,0.019289566203951836,-0.023570524528622627,-0.07008562237024307,0.03293222188949585,-0.1275450587272644,-0.003500008722767234,-0.026015402749180794,0.016076935455203056,-0.09927570819854736,0.02730976790189743,0.056186262518167496,0.06256885826587677,-0.015443593263626099,-0.0705195739865303,0.08990737795829773,-0.027121784165501595,-0.018984509631991386,-0.048724811524152756,-0.0537620447576046,-0.04107312113046646,-0.018397539854049683,-0.03463439643383026,0.01223442517220974,-0.04199158772826195,0.07572148740291595,-0.05010993778705597,0.04751274734735489,-0.04391222819685936,0.07621556520462036,0.05561816319823265,0.032369934022426605,-0.053232286125421524,0.01355353556573391,-0.10709215700626373,-0.05351582542061806,0.02479657717049122,0.008091733790934086,0.0029534329660236835,-0.029064293950796127,0.06385479867458344,-0.029348205775022507,0.027951549738645554,-0.02943807654082775,0.05887887254357338,-0.044296786189079285,-0.031704388558864594,0.002817151602357626,-0.04603402689099312,-0.04962146654725075,-0.03420392796397209,0.0005026176804676652,-0.01587887480854988,0.0026883773971349,-0.0021775648929178715,0.052543655037879944,-0.024529363960027695,-0.011255897581577301,-0.012227052822709084,-0.004518702160567045,0.04351035878062248,-0.03611355274915695,0.05695166066288948,-0.06463084369897842,0.021615099161863327,0.08071495592594147,-0.07675318419933319,0.02668018825352192,0.10859251022338867,-0.014196678064763546,-0.010788955725729465,0.005901584401726723,0.005466792266815901,0.0756726861000061,-0.061863385140895844,0.0422067828476429,0.008184177801012993,-0.14143890142440796,-0.06751686334609985,4.440333299289233e-33,0.07040378451347351,-0.004735022783279419,0.06603455543518066,0.08038636296987534,-0.026186207309365273,-0.04296385496854782,-0.04759475961327553,0.07074325531721115,-0.006661222781985998,0.02361546829342842,-0.01404440589249134,-0.04513310268521309,-0.011442253366112709,-0.019806256517767906,0.012327498756349087,-0.046558938920497894,0.020771287381649017,-0.018182652071118355,-0.07268528640270233,0.03404448926448822,-0.03878258913755417,-0.013158096000552177,-0.015391997992992401,-0.030127396807074547,-0.05006434768438339,0.006638043560087681,0.03157343715429306,0.024268239736557007,-0.05668089911341667,0.017498306930065155,0.031191207468509674,-0.027220433577895164,-0.14417627453804016,-0.10420452803373337,-0.031149916350841522,0.04885853826999664,-0.025476522743701935,-0.054595671594142914,-0.04493805393576622,0.1196708157658577,-0.01999017782509327,-0.0031225646380335093,-0.012859863229095936,-0.058981895446777344,0.04165651649236679,0.026108291000127792,0.05529654771089554,0.029767798259854317,-0.012525969184935093,0.038098305463790894,0.07839460670948029,-0.04565190523862839,-0.0563632994890213,-0.020052317529916763,0.026128459721803665,0.03378866985440254,0.1320861279964447,0.00008489014726364985,0.06766342371702194,-0.07055414468050003,0.013629868626594543,0.008705615997314453,-0.017443394288420677,0.011004838161170483,0.045555587857961655,0.03518880158662796,-0.06231212615966797,0.009826255030930042,0.019814888015389442,0.0590653195977211,-0.06119605526328087,0.05850640684366226,0.022535497322678566,0.00022861489560455084,0.03759767487645149,-0.09084870666265488,0.05140932649374008,-0.0003809179470408708,0.01539115235209465,-0.12466493248939514,0.06822413206100464,-0.0030769589357078075,0.05153040587902069,0.0008984683081507683,-0.034980665892362595,-0.030798740684986115,-0.00019555790640879422,-0.02069941535592079,0.018712453544139862,-0.0835881158709526,-0.08583302795886993,0.06881149113178253,0.0189918614923954,0.04741815850138664,0.06165892258286476,-2.5351829080477728e-8,-0.07815897464752197,-0.06684815138578415,-0.051982078701257706,-0.01172281987965107,-0.06676429510116577,-0.026374757289886475,-0.01564794033765793,-0.020703589543700218,0.05178286135196686,0.022220749408006668,0.07551958411931992,0.02987467683851719,0.018948959186673164,0.06128467619419098,0.08262592554092407,-0.029405975714325905,0.04594854637980461,-0.020078472793102264,-0.03191952779889107,-0.014017959125339985,0.07110800594091415,0.010830497369170189,0.007727900519967079,0.04882853478193283,0.004795312415808439,0.017082655802369118,0.024864671751856804,0.06282612681388855,-0.010428795590996742,0.03278132155537605,-0.001807942520827055,-0.0657753124833107,-0.03144083917140961,0.006373723968863487,0.03702898696064949,0.030727464705705643,-0.037857137620449066,0.02922770567238331,-0.01345706358551979,0.03335506096482277,-0.047845710068941116,0.001006138976663351,0.003238390665501356,0.09716855734586716,-0.10678153485059738,-0.055481407791376114,0.06093215569853783,-0.03737838566303253,-0.070268914103508,-0.049289483577013016,0.1021488606929779,-0.04359036684036255,0.05710461735725403,0.04729737713932991,0.009202742017805576,-0.05055919662117958,0.02515406534075737,0.09534616768360138,-0.0649193599820137,0.10208553820848465,0.02453770488500595,-0.07774478197097778,-0.007704060059040785,0.008322727866470814]},{"text":"Good-night. (_She goes out, swaggering._) (_Raina, left alone, goes to the chest of drawers, and adores the portrait there with feelings that are beyond all expression.","book":"Down and Out in Paris and London","chapter":7,"embedding":[-0.023420002311468124,0.07174708694219589,0.0669344961643219,0.019185055047273636,-0.007578674238175154,0.056039147078990936,0.08556029200553894,-0.11700975894927979,0.036542512476444244,-0.07320871949195862,-0.006436825264245272,-0.07873658835887909,-0.031125830486416817,-0.01709229312837124,0.04971965402364731,0.049300309270620346,0.03872830048203468,0.016284320503473282,0.005331540945917368,0.025676803663372993,-0.0014527738094329834,-0.02917526103556156,0.03075658529996872,0.03521913290023804,-0.019957879558205605,0.04480202868580818,0.030186280608177185,-0.055652085691690445,-0.007377166301012039,-0.05938804894685745,-0.07894440740346909,0.13644811511039734,-0.056611545383930206,0.018697494640946388,-0.0002087957545882091,0.12880536913871765,0.008556018583476543,-0.01241624727845192,0.0051017566584050655,0.018975097686052322,-0.028756169602274895,-0.03176146745681763,-0.05711978301405907,0.02071450836956501,-0.019953103736042976,-0.08228909969329834,0.08748612552881241,0.011027157306671143,-0.00033051983336918056,0.03523276373744011,-0.0009716806234791875,-0.00028593820752575994,-0.12757091224193573,0.05184770002961159,0.04886871576309204,0.0782100260257721,0.07923506200313568,-0.05881484970450401,0.07752641290426254,0.0032209130004048347,0.02808045595884323,0.036349035799503326,0.012101630680263042,0.09360398352146149,0.029871882870793343,-0.12393980473279953,-0.07056466490030289,0.04522029310464859,-0.0835784524679184,0.14655505120754242,0.001108889002352953,0.022669196128845215,-0.016102951020002365,-0.0072372485883533955,-0.09749948978424072,-0.027882402762770653,0.010998386889696121,-0.09540349245071411,0.010588477365672588,-0.007336985319852829,0.0658109039068222,-0.011482831090688705,-0.00941717904061079,0.00967922993004322,-0.018062660470604897,0.02949034981429577,-0.05923929437994957,-0.06459804624319077,-0.040404632687568665,-0.019988244399428368,-0.0522317960858345,-0.017507586628198624,-0.017820367589592934,0.016702285036444664,-0.005602681078016758,-0.004258373752236366,-0.046059031039476395,-0.08151115477085114,-0.051300063729286194,0.08318759500980377,0.04441269114613533,0.07348066568374634,0.04691842943429947,0.009838376194238663,-0.023283790796995163,-0.04236523061990738,-0.04080835357308388,-0.059998586773872375,-0.05238337442278862,-0.06629827618598938,0.0011572373332455754,-0.03287528082728386,-0.011454920284450054,0.014654486440122128,0.07900211960077286,0.042934320867061615,0.03678470849990845,-0.043256886303424835,-0.054495636373758316,0.1058443933725357,0.035136789083480835,0.04876614734530449,0.041765887290239334,-0.003991939593106508,-0.06125099956989288,-0.02134431153535843,0.05099508911371231,-1.4836940004220175e-33,0.1187378466129303,0.02498622238636017,-0.009895522147417068,0.0858772024512291,0.09160510450601578,-0.004239429719746113,-0.008320583961904049,0.014447971247136593,-0.07721713930368423,0.03365153819322586,-0.04865372180938721,0.010313605889678001,-0.04481590911746025,0.031984005123376846,0.007690174970775843,0.032664719969034195,0.041092753410339355,-0.024562746286392212,0.01849178969860077,0.05206010863184929,-0.003830534406006336,0.08763808012008667,-0.05252421647310257,-0.02483200468122959,-0.0632195994257927,-0.03858102485537529,0.05539970472455025,-0.008448597975075245,-0.03632422909140587,0.01022473257035017,-0.051451995968818665,0.01519749779254198,0.10157079994678497,0.002281964523717761,0.08985374867916107,-0.038169506937265396,-0.05761520937085152,-0.0042308541014790535,-0.027076462283730507,-0.010708394460380077,-0.10330741852521896,0.017897523939609528,-0.04620758071541786,-0.029948709532618523,-0.05487869307398796,-0.007849925197660923,0.004394081886857748,0.042309410870075226,0.03746500611305237,0.02166900597512722,0.0070514678955078125,-0.005832160357385874,-0.005367203615605831,-0.004218781366944313,-0.0732654258608818,-0.004199307877570391,-0.027505598962306976,0.050111591815948486,0.07389272749423981,-0.03189373016357422,0.05996807664632797,0.005324901081621647,0.01242545060813427,-0.1623723953962326,-0.006529574282467365,-0.02403666451573372,-0.051784224808216095,-0.022740991786122322,0.03154900670051575,-0.04983973875641823,-0.05580022558569908,0.012813230976462364,-0.018642619252204895,0.01461926568299532,-0.020543653517961502,-0.026271456852555275,-0.021989764645695686,-0.07456941157579422,0.012734475545585155,0.012415466830134392,-0.02833472564816475,0.03865867108106613,-0.044888366013765335,0.00920983124524355,-0.019366441294550896,-0.025694938376545906,0.03498069569468498,-0.09628445655107498,-0.03998291492462158,0.07738729566335678,-0.05862981453537941,0.04811132699251175,0.027905793860554695,-0.06225363910198212,-0.04463273659348488,-1.0531201542784064e-33,0.1387661248445511,-0.013013702817261219,-0.05233151838183403,-0.0054326546378433704,-0.01771332137286663,-0.05342317372560501,-0.038836512714624405,0.009586337953805923,0.03970176354050636,0.04736943170428276,-0.038799721747636795,-0.06557963043451309,-0.014210286550223827,-0.06816702336072922,0.12177284806966782,-0.07764828205108643,0.048370007425546646,-0.023870879784226418,0.004115263931453228,0.005597738549113274,0.0350736528635025,0.004692371468991041,-0.06344001740217209,-0.05015164986252785,-0.018039358779788017,0.033970605581998825,0.09105917066335678,-0.025909673422574997,-0.05337952449917793,0.024410275742411613,0.007025175727903843,-0.14315947890281677,-0.0161473136395216,0.0949486792087555,-0.005376346874982119,0.049005210399627686,-0.04073375090956688,-0.14559096097946167,-0.035647809505462646,-0.017190134152770042,0.004069944377988577,-0.019585750997066498,0.03577420860528946,0.06886257976293564,0.0449480339884758,-0.016831811517477036,-0.10793962329626083,0.09074997156858444,0.042428020387887955,0.01579529419541359,-0.00792177114635706,-0.08860019594430923,-0.02623903378844261,0.049474120140075684,0.000009502495231572539,-0.0292288176715374,0.06037553772330284,-0.04488559067249298,0.027662422508001328,0.04768143594264984,-0.03473196551203728,-0.022283276543021202,-0.022748474031686783,-0.045941226184368134,-0.04028058797121048,-0.0710582360625267,-0.025128021836280823,-0.01840604655444622,-0.009464549832046032,-0.03523150086402893,0.007134988903999329,-0.003529744688421488,-0.08953195065259933,0.05449763312935829,0.027919821441173553,-0.010422280989587307,0.023023059591650963,-0.06063220649957657,0.05360380932688713,-0.11583492904901505,-0.1268976330757141,-0.052337680011987686,-0.053441371768713,-0.03167542815208435,0.02702084183692932,-0.0714186578989029,0.014901740476489067,0.00879754964262247,0.013294607400894165,0.00792139396071434,0.04364924505352974,0.05151498317718506,0.05540236458182335,-0.03818386048078537,0.01638334058225155,-3.296247541584307e-8,-0.08527301251888275,-0.03151019662618637,0.006093669682741165,-0.07068054378032684,-0.04963642358779907,-0.005352158565074205,0.051383454352617264,-0.020298531278967857,0.03829032927751541,-0.03826868534088135,0.11961036920547485,0.06411363929510117,0.013414271175861359,-0.05325550585985184,0.03421524539589882,0.042013656347990036,0.04946886748075485,0.04047806188464165,-0.018050238490104675,-0.04136836528778076,0.06335906684398651,0.024579374119639397,0.013443365693092346,-0.018456947058439255,-0.00957694835960865,0.09319708496332169,-0.07552013546228409,-0.024592624977231026,-0.04848996922373772,0.06380470842123032,0.09823714196681976,0.09496212005615234,0.04228290170431137,0.0003238420467823744,-0.026360835880041122,0.02503688633441925,-0.006861010100692511,0.035055939108133316,0.004397059325128794,0.06397594511508942,0.03130015730857849,0.0160665400326252,-0.04482647776603699,-0.04907746613025665,0.020551778376102448,-0.015962379053235054,0.1231752559542656,-0.04415798559784889,-0.021222487092018127,0.006190095562487841,-0.009581456892192364,-0.03874077647924423,0.008726946078240871,0.04408605769276619,-0.018941592425107956,-0.02300732210278511,0.019862454384565353,0.00005636157584376633,0.015144121833145618,0.014256124384701252,0.01657155714929104,0.02759624272584915,-0.04025304317474365,-0.00763136800378561]},{"text":"The room is now in darkness: nothing is visible but the glimmer of the light in the pierced ball before the image, and the starlight seen through the slits at the top of the shutters.","book":"Down and Out in Paris and London","chapter":8,"embedding":[0.04885479062795639,0.04171567037701607,-0.007020249962806702,0.08056370168924332,0.021077506244182587,0.018025586381554604,0.03512166067957878,-0.041934944689273834,0.11281894892454147,-0.020225882530212402,0.08249353617429733,-0.017122499644756317,-0.006433166563510895,-0.038188282400369644,-0.012769989669322968,-0.03662405535578728,0.03486498445272446,-0.05832463875412941,-0.026117537170648575,-0.051408469676971436,0.0286331158131361,-0.05569479241967201,-0.008180475793778896,-0.055891554802656174,0.019589608535170555,0.0786580815911293,0.015168081037700176,0.004684824496507645,-0.01983790472149849,-0.05471440777182579,-0.03259959816932678,-0.016934145241975784,-0.05109834671020508,0.059493351727724075,0.06595518440008163,0.0023005481343716383,0.051462750881910324,-0.023372279480099678,0.05644069239497185,-0.005006956867873669,-0.027874279767274857,-0.0363093763589859,-0.0312863253057003,-0.019389893859624863,-0.032353926450014114,0.0975862443447113,0.014983122237026691,-0.0601806603372097,0.02133754827082157,-0.06395316123962402,-0.04296256974339485,-0.03244823217391968,-0.01799916848540306,0.05529483035206795,0.0755356177687645,0.06760330498218536,0.008526543155312538,-0.05374967306852341,0.0394870862364769,-0.06911351531744003,0.019602525979280472,-0.010194309055805206,-0.0006362642743624747,0.026300853118300438,0.008612406440079212,0.015984036028385162,-0.08655872941017151,-0.07436294853687286,0.059576693922281265,-0.052624575793743134,0.02839011512696743,0.1031317263841629,0.0012181986821815372,-0.10949137806892395,-0.03535531833767891,-0.04224635660648346,-0.01746344193816185,-0.06005395948886871,0.0451471172273159,0.038122694939374924,0.12736311554908752,-0.05827661603689194,-0.09410891681909561,0.10918894410133362,-0.02170196734368801,0.0557064525783062,0.017605770379304886,0.02070857584476471,-0.08890114724636078,0.04645295441150665,-0.0396563746035099,0.01307960506528616,-0.1284792125225067,-0.0045540304854512215,0.004964546766132116,-0.07189343124628067,0.011031204834580421,-0.04946112260222435,0.05623100697994232,0.05267715081572533,-0.004246089607477188,-0.042666245251894,0.0587775856256485,-0.025476954877376556,-0.014485368505120277,0.005630468484014273,0.045230381190776825,0.009651669301092625,0.005337280686944723,0.06874033808708191,0.02261330373585224,-0.04913931339979172,0.02041461504995823,0.016496963798999786,-0.05710604786872864,0.021497108042240143,0.0402790904045105,0.0032159476540982723,-0.05222507193684578,0.008149771951138973,0.12731614708900452,0.019787371158599854,0.05646057054400444,0.041290104389190674,-0.008767737075686455,0.038716837763786316,-0.04568537324666977,-1.5117857440127778e-33,0.03146696463227272,-0.05965597182512283,-0.03943070024251938,-0.03750309720635414,0.056778497993946075,0.007843253202736378,0.0481121689081192,0.08489175140857697,0.0022671183105558157,-0.028345586732029915,0.012240242213010788,-0.09378205239772797,-0.03965062275528908,0.013040278106927872,0.06555934250354767,0.0010570288868620992,0.054973021149635315,0.020142458379268646,-0.03438173234462738,0.08015722781419754,-0.06522774696350098,0.017215970903635025,-0.02529950998723507,-0.0009842233266681433,-0.053762394934892654,0.08457101881504059,0.006824948359280825,-0.045772697776556015,-0.0023272924590855837,0.028619445860385895,-0.0587037168443203,0.1019447073340416,0.033397890627384186,0.07627072185277939,-0.038178734481334686,0.017233138903975487,0.014882294461131096,0.00016262348799500614,-0.04088641330599785,-0.08191844075918198,-0.03476795554161072,0.03056534193456173,-0.04735913127660751,-0.04523400589823723,-0.010376649908721447,0.03529088571667671,-0.020180165767669678,0.004879508633166552,0.03848634287714958,0.07295382022857666,0.07901904731988907,-0.030088597908616066,-0.0868106558918953,-0.056391891092061996,-0.0019025641959160566,0.008534750901162624,-0.03818050026893616,-0.030926134437322617,-0.019706524908542633,-0.042335499078035355,0.11564956605434418,0.010753811337053776,0.051213912665843964,0.032585740089416504,0.01039750687777996,0.051867276430130005,-0.08238454908132553,-0.002712826244533062,-0.0018142126500606537,-0.0630047395825386,-0.1119205430150032,-0.005282197613269091,0.007971017621457577,0.03642656281590462,-0.02270537242293358,0.050429001450538635,-0.012934248894453049,0.04567691683769226,0.018243873491883278,-0.038266416639089584,0.025812041014432907,0.01532302238047123,0.011351104825735092,-0.025041403248906136,-0.023547934368252754,0.01029385719448328,0.023403950035572052,0.06513290107250214,-0.08463060855865479,-0.015782952308654785,0.04936579614877701,0.03494197502732277,-0.01792174205183983,-0.016010399907827377,-0.09094484895467758,-4.983785184332004e-34,0.07509300857782364,-0.03090757131576538,-0.12231723964214325,-0.022103648632764816,0.062084995210170746,0.03237936273217201,-0.04249216616153717,-0.006903548259288073,0.013237889856100082,0.08357105404138565,0.026844020932912827,0.051641374826431274,-0.078443244099617,-0.04793861508369446,0.0038321760948747396,-0.0502200610935688,0.08725247532129288,-0.0053603569976985455,-0.07367213815450668,0.0752839520573616,0.006242385134100914,0.03176696598529816,0.026180336251854897,-0.06433790922164917,-0.06100504845380783,0.07175854593515396,0.10317007452249527,0.011846747249364853,-0.062231648713350296,0.013667360879480839,-0.005728903226554394,-0.018643630668520927,-0.005037158727645874,0.03579415753483772,-0.004916006699204445,0.018864015117287636,0.061347596347332,-0.10286736488342285,-0.03766706585884094,-0.10282167792320251,0.0676005482673645,0.049068763852119446,-0.09179718792438507,0.05036800354719162,-0.027523746713995934,0.008256710134446621,-0.021724054589867592,0.014642578549683094,-0.02766161784529686,0.004330000840127468,-0.03517838194966316,-0.04897269234061241,-0.004212662111967802,-0.038522928953170776,-0.05494850128889084,0.05201660469174385,0.01356592308729887,-0.0022342773154377937,0.11189225316047668,0.09029565006494522,0.01245156116783619,-0.005331863649189472,-0.03905974701046944,0.009141235612332821,0.02775154821574688,0.04140007868409157,-0.024486346170306206,0.07715719193220139,0.0190717875957489,0.01359069999307394,0.07764967530965805,-0.035634659230709076,-0.02566445991396904,0.0593518428504467,0.10070960968732834,0.04889890179038048,-0.028774971142411232,0.07093480229377747,0.011038272641599178,-0.011109311133623123,-0.03298319876194,-0.07364919781684875,-0.03788738325238228,-0.0083652064204216,0.08764932304620743,-0.02334817871451378,-0.004619062878191471,-0.021020445972681046,-0.0714949369430542,-0.05939049646258354,-0.08130888640880585,0.052248720079660416,0.0032852082513272762,-0.06133958697319031,0.13229800760746002,-3.3796080600723144e-8,-0.00936696957796812,-0.04301196336746216,-0.005848197732120752,-0.03325026482343674,0.008408394642174244,-0.06254194676876068,0.03947775438427925,0.04422622546553612,0.017903177067637444,-0.0864224061369896,-0.004842032212764025,-0.0020009696017950773,0.023449642583727837,-0.028817802667617798,-0.03503163158893585,0.06057623028755188,-0.15137261152267456,-0.07800182700157166,-0.04178149998188019,0.03423384204506874,-0.02700537070631981,-0.02697376161813736,0.009424326941370964,-0.03259693458676338,0.03277340903878212,-0.005840908735990524,-0.0752212330698967,-0.014152045361697674,-0.029286600649356842,-0.03710191696882248,0.0823693498969078,0.03827139735221863,0.036824338138103485,-0.04551013931632042,-0.08851015567779541,0.009774775244295597,0.04261762648820877,0.006065583322197199,0.05201523378491402,0.05045858025550842,-0.043539464473724365,-0.0921117290854454,-0.04178353026509285,-0.022889617830514908,-0.02479257434606552,0.015990043058991432,0.11345703154802322,-0.07349663972854614,-0.11016745865345001,0.07836996763944626,-0.06166693568229675,0.06829386949539185,-0.05016748607158661,0.033506251871585846,-0.01404280960559845,-0.0894930437207222,0.07219066470861435,0.037118081003427505,-0.046319734305143356,0.005261083133518696,0.06112729758024216,-0.027242790907621384,-0.055544570088386536,0.08902134001255035]},{"text":"Who’s there? (_The match is out instantly._) Who’s there?","book":"Down and Out in Paris and London","chapter":8,"embedding":[-0.03531274572014809,0.02874886430799961,0.00034718617098405957,-0.02529052644968033,0.07315267622470856,0.1004052460193634,0.08708313852548599,-0.027503814548254013,0.0866965726017952,0.05513304844498634,0.004964752122759819,-0.13684837520122528,-0.03935859724879265,0.028595687821507454,-0.023710407316684723,-0.05880536139011383,0.035922639071941376,-0.09302712976932526,-0.039292942732572556,-0.01945478469133377,0.012498371303081512,-0.04016687348484993,-0.09534793347120285,-0.0038511569146066904,0.0006192465662024915,-0.0009686665143817663,0.03133022040128708,-0.008444661274552345,-0.0025234445929527283,-0.05727773904800415,-0.011505567468702793,-0.005722624249756336,0.04277941584587097,0.015860341489315033,-0.01903471350669861,0.00585230952128768,0.0132358493283391,-0.044280294328927994,0.005003664176911116,-0.029889225959777832,0.006573715712875128,-0.058255910873413086,-0.02320142462849617,0.03698151186108589,0.0814368799328804,-0.035941801965236664,0.0848175436258316,0.016961563378572464,-0.08192890882492065,-0.013450177386403084,0.001792680355720222,0.0534575954079628,0.0033444389700889587,0.11831624060869217,0.0877479612827301,0.0715148001909256,0.04351453483104706,-0.09015719592571259,0.02540913224220276,0.04050860553979874,-0.012963620945811272,-0.004150896333158016,-0.01271025836467743,0.06292328983545303,-0.04943688586354256,-0.03243470564484596,0.028759125620126724,-0.005016909912228584,0.05211587995290756,0.04737979546189308,0.051280081272125244,-0.023460663855075836,0.037362873554229736,-0.026146164163947105,0.022885818034410477,-0.061149246990680695,-0.014004546217620373,-0.0744207501411438,0.0721721425652504,-0.019344927743077278,0.0657651275396347,-0.1606052964925766,-0.07803138345479965,0.07297626882791519,0.017431167885661125,0.047895580530166626,0.0035616406239569187,0.06946521252393723,-0.00850982591509819,-0.02914932556450367,-0.08921100944280624,0.08244458585977554,-0.03104252927005291,0.06563865393400192,-0.007805299945175648,0.08942177891731262,0.029844168573617935,-0.011701416224241257,-0.033176325261592865,0.09345155954360962,0.04780583083629608,0.07652323693037033,0.009875050745904446,0.07907640933990479,-0.035539232194423676,0.05473070964217186,-0.0690370500087738,0.025123247876763344,0.0058725932613015175,-0.014513760805130005,-0.008604363538324833,-0.0010817147558555007,-0.00998117309063673,0.023804545402526855,-0.03107885643839836,0.042556311935186386,0.08380156010389328,0.018594415858387947,0.013783096335828304,0.06356444209814072,0.03714321553707123,0.04211511090397835,-0.019946957007050514,-0.03606834635138512,-0.004676757846027613,0.09026950597763062,-0.06169315427541733,-5.709154187385133e-33,0.05291908606886864,-0.022933034226298332,-0.02400711365044117,0.010728737339377403,-0.05810517445206642,0.007391650229692459,-0.023308007046580315,0.020142514258623123,-0.07072464376688004,-0.011183247901499271,-0.06978990137577057,-0.05304956063628197,-0.04592154920101166,-0.03426995500922203,-0.0006772031192667782,-0.006777546368539333,0.06204589083790779,-0.020618712529540062,-0.1250331997871399,0.05855606868863106,0.012693874537944794,0.0922493189573288,-0.11525712162256241,0.04808048903942108,-0.024111857637763023,0.054332274943590164,0.030331429094076157,-0.07439817488193512,0.06549372524023056,0.015884777531027794,-0.03580602630972862,-0.01580461859703064,-0.026693128049373627,0.03229928016662598,-0.016698015853762627,-0.10978568345308304,-0.022944439202547073,-0.03871200978755951,-0.04684405028820038,-0.06130706146359444,-0.10988219827413559,0.017511531710624695,-0.04057975858449936,-0.043323956429958344,-0.09721489250659943,-0.04059523344039917,-0.03376854956150055,0.0682898536324501,0.010105585679411888,0.08094454556703568,-0.0352904386818409,0.05084174498915672,-0.030052514746785164,0.03508169949054718,-0.011790753342211246,-0.00918108131736517,-0.005236790981143713,0.0004146634310018271,0.010162056423723698,0.06547926366329193,-0.026464516296982765,0.04220180585980415,0.0459786094725132,0.007973962463438511,0.049013394862413406,-0.04419304430484772,-0.001841195160523057,-0.09178195893764496,0.05202539265155792,-0.05748617276549339,-0.028769640251994133,0.07620011270046234,0.011348441243171692,0.06353452056646347,0.003338415175676346,-0.00003074323103646748,-0.04504788666963577,0.06487730890512466,-0.0642705112695694,0.004152861889451742,-0.009139170870184898,0.011706279590725899,-0.02823839709162712,0.01047944650053978,-0.06812801957130432,0.014450978487730026,-0.0898440033197403,-0.09304971992969513,-0.05331083759665489,0.02719384990632534,-0.06592155992984772,0.0191165991127491,0.059994857758283615,-0.008702289313077927,-0.010238265618681908,2.071260168070234e-33,0.08465392887592316,-0.024020077660679817,-0.03060723841190338,-0.00497028324753046,0.07321321964263916,-0.04691465198993683,0.039976704865694046,0.02047010511159897,-0.036895934492349625,0.026662904769182205,-0.009670350700616837,-0.04674087464809418,0.06885059922933578,-0.023988191038370132,0.016665823757648468,0.0026359485927969217,0.00954269990324974,-0.02920389547944069,-0.016325846314430237,0.07638849318027496,0.02320997416973114,-0.06792762130498886,-0.04264679551124573,-0.00426860898733139,-0.010502639226615429,0.04146680235862732,0.1864175796508789,0.01240461878478527,-0.11992453783750534,0.05155011638998985,-0.0798235684633255,-0.0223563089966774,-0.04574353247880936,-0.04735511541366577,0.005067702382802963,0.11668744683265686,-0.0721508264541626,0.022732120007276535,0.008328293450176716,-0.04673384502530098,0.01944764517247677,0.08160731196403503,-0.0786755308508873,0.04017133265733719,-0.05999523401260376,-0.013360710814595222,0.006834678817540407,0.028184935450553894,-0.012957493774592876,0.02213253267109394,0.01721983589231968,0.00328704877756536,-0.013435985893011093,0.022137999534606934,0.025622302666306496,0.06006807088851929,-0.040675148367881775,0.02491077035665512,0.022691868245601654,0.03905197232961655,0.017183953896164894,0.023242715746164322,-0.03717716410756111,0.025007938966155052,-0.032914500683546066,0.04874863103032112,-0.06823679059743881,0.06265148520469666,-0.025585569441318512,-0.06960757821798325,0.002242672722786665,-0.048706911504268646,-0.12297005951404572,0.01003651600331068,0.047177527099847794,0.12234804034233093,-0.05162503570318222,0.007650658022612333,0.043312374502420425,-0.00629853829741478,-0.033155329525470734,0.03600628674030304,-0.037256453186273575,0.00823527667671442,0.07131264358758926,0.028508398681879044,0.0356370247900486,0.08815647661685944,0.04196016117930412,-0.044908974319696426,0.008429218083620071,0.08883938938379288,0.013928970322012901,-0.08015727996826172,-0.022952644154429436,-2.4783973984199292e-8,-0.01349197793751955,0.05837440863251686,0.0025525016244500875,-0.025482192635536194,-0.02853524312376976,0.01649368554353714,0.07528500258922577,-0.03513680398464203,0.005042391363531351,0.002443344099447131,-0.0014759836485609412,0.029652079567313194,0.04275594651699066,-0.1273065209388733,0.04088915139436722,-0.018359677866101265,-0.14952975511550903,-0.03598424047231674,-0.06911309063434601,-0.05220559239387512,-0.04739578440785408,0.02988600730895996,-0.031217733398079872,-0.07250288128852844,0.02255546860396862,0.07098951190710068,0.0061931973323225975,0.0364500917494297,-0.08892916142940521,0.01067286729812622,0.04245660454034805,0.045285213738679886,-0.08515807241201401,-0.001202250481583178,0.07037774473428726,-0.011662477627396584,-0.02099698781967163,0.010403563268482685,0.018131356686353683,-0.04299701377749443,-0.049757108092308044,-0.03002222441136837,-0.05070436745882034,0.012893693521618843,0.019452102482318878,-0.022413630038499832,0.05228457972407341,-0.1054062619805336,-0.02660347893834114,-0.10010040551424026,-0.028186054900288582,-0.08268016576766968,-0.019334007054567337,0.005460564978420734,-0.023235956206917763,0.01696685329079628,-0.055860571563243866,0.0024315323680639267,-0.019452694803476334,0.039167601615190506,0.07017943263053894,0.013901767320930958,0.03705330193042755,0.02060841955244541]},{"text":"Then she is heard retreating to the dressing-table.","book":"Down and Out in Paris and London","chapter":8,"embedding":[0.08368075639009476,-0.011526827700436115,0.036680713295936584,0.07139395922422409,0.03174314275383949,0.057026706635951996,0.06591290980577469,-0.05977912247180939,-0.022075824439525604,-0.02665586769580841,0.0174559373408556,-0.07816098630428314,-0.007192377932369709,-0.029264986515045166,-0.009124958887696266,-0.020413680002093315,0.07735496759414673,0.08710537105798721,-0.025128697976469994,-0.02509644813835621,-0.04584357142448425,0.022751029580831528,0.08763827383518219,0.08656644821166992,0.012389575131237507,-0.013800515793263912,0.02916029840707779,-0.011499044485390186,-0.0010318271815776825,0.011708419770002365,-0.0639050081372261,0.005216371733695269,-0.0892467200756073,0.0652490183711052,-0.018079394474625587,0.0709487795829773,0.048364102840423584,-0.019584501162171364,0.06143485754728317,0.06612998247146606,-0.057860441505908966,-0.052457936108112335,-0.05646030604839325,-0.017448315396904945,-0.02075774036347866,-0.01253585796803236,-0.03571385517716408,0.0008110781782306731,-0.010029144585132599,-0.02712910808622837,-0.055434200912714005,0.03205274045467377,-0.04231438413262367,0.028697416186332703,0.012853567488491535,0.07438594847917557,0.0899781584739685,-0.06553499400615692,0.061069149523973465,0.08352155238389969,-0.0781286209821701,0.019219214096665382,0.00004704223829321563,0.04704505577683449,-0.05957772955298424,-0.04379933327436447,0.027926497161388397,-0.006976640783250332,-0.03469143062829971,0.07914825528860092,-0.008601607754826546,0.06728027015924454,-0.0029267780482769012,0.0042317635379731655,-0.0057257553562521935,-0.06293729692697525,0.08584912866353989,-0.07050438970327377,0.04884728789329529,0.028983114287257195,-0.051533088088035583,-0.02752741612493992,-0.029669519513845444,0.065994031727314,-0.0716361477971077,-0.018774734809994698,0.020226219668984413,-0.0636184886097908,-0.05098007246851921,-0.04113731160759926,-0.11622510850429535,-0.04320145025849342,-0.0530531108379364,0.05577113851904869,-0.00675843795761466,0.06192495673894882,-0.08049290627241135,0.046781789511442184,0.05454273149371147,0.0675937682390213,-0.04265303909778595,0.06187326833605766,0.016353745013475418,0.05620550364255905,-0.06598441302776337,-0.09131775796413422,0.04474448040127754,-0.025234995409846306,0.012335478328168392,0.01837448962032795,-0.005424465984106064,-0.03314453363418579,-0.030690331012010574,-0.006950667127966881,-0.05087823048233986,0.08330182731151581,0.04337359219789505,-0.05086030066013336,-0.08418039977550507,0.03338216617703438,0.06519436836242676,0.06104991212487221,-0.05009441077709198,0.05154088884592056,-0.0431700125336647,-0.01691657491028309,0.06761664152145386,-5.447986525939283e-33,-0.01878589577972889,-0.02002876065671444,0.05223054811358452,-0.016602542251348495,0.18758024275302887,0.007567307911813259,0.024789782240986824,-0.00606479961425066,0.09825518727302551,0.08899965137243271,-0.04573893919587135,-0.06811188161373138,-0.06501537561416626,-0.09281955659389496,-0.034793831408023834,0.07260308414697647,0.020686648786067963,0.0815078541636467,-0.03155705705285072,0.009755315259099007,0.019934846088290215,0.025014134123921394,0.07024664431810379,0.05919284746050835,0.012141814455389977,0.005555607844144106,0.03486241027712822,0.03660176694393158,-0.0013447424862533808,0.04713352024555206,-0.034249089658260345,-0.022494928911328316,0.026967938989400864,-0.07677974551916122,0.017510294914245605,0.037482380867004395,-0.03667788580060005,0.030228786170482635,-0.009226515889167786,-0.007217808626592159,-0.04398861899971962,-0.004965121392160654,0.017255818471312523,-0.04069272428750992,-0.08811530470848083,-0.04600292444229126,0.034589339047670364,0.07616036385297775,0.014368180185556412,-0.014150161296129227,0.056881796568632126,0.057506829500198364,0.04163059964776039,0.06946031004190445,0.06266213208436966,0.03181549161672592,0.041592471301555634,-0.017099762335419655,0.1367044299840927,0.0009755214559845626,0.041184909641742706,-0.025714920833706856,0.003447981784120202,0.005618080031126738,0.030706003308296204,0.00018115552666131407,-0.04363613948225975,-0.0728784054517746,-0.003219836624339223,-0.04655071720480919,-0.07981669902801514,0.07449046522378922,-0.016099441796541214,0.07057644426822662,-0.05103840306401253,0.0009096589055843651,-0.052774712443351746,-0.049776747822761536,0.10000219196081161,-0.13865770399570465,0.0647401213645935,0.008004726842045784,-0.076234832406044,0.10892298817634583,0.015087547712028027,-0.0282044168561697,-0.004845099523663521,-0.06809979677200317,-0.04896030202507973,-0.0007671292987652123,-0.024885006248950958,0.0029346924275159836,0.03210359066724777,-0.05194476246833801,-0.04134592413902283,2.2327459085663534e-33,0.03838593512773514,0.09847139567136765,-0.08491527289152145,0.014157854951918125,-0.005321578588336706,-0.0200940053910017,-0.015566468238830566,0.0692245215177536,-0.02047063410282135,0.019053686410188675,-0.013440385460853577,-0.06950279325246811,-0.05420609563589096,0.015319045633077621,0.0455598384141922,0.021395279094576836,0.13779126107692719,-0.0026917951181530952,0.03315483778715134,0.03975631296634674,-0.0023988683242350817,-0.016131846234202385,0.023886561393737793,0.027631409466266632,-0.03882279247045517,-0.025900978595018387,0.10341671109199524,-0.01636992208659649,-0.0880260020494461,-0.05097449943423271,-0.011250135488808155,-0.12917393445968628,-0.04926473647356033,0.025326604023575783,0.003259794320911169,0.03509531542658806,-0.12459594011306763,-0.0791126936674118,-0.03587421029806137,0.0062035489827394485,0.016849778592586517,-0.00889262743294239,0.018993331119418144,0.07013089954853058,0.009849660098552704,0.04967981576919556,-0.00862528383731842,0.07167119532823563,-0.0009321726392954588,0.007109392434358597,-0.0694391131401062,-0.03473993018269539,0.04602530598640442,-0.026641828939318657,0.003258358919993043,0.05659779906272888,-0.03659855201840401,-0.016424352303147316,-0.10848177969455719,-0.036322154104709625,0.004318759776651859,0.07063836604356766,-0.013031252659857273,0.02295091189444065,0.0497075580060482,0.04087429866194725,-0.08421880751848221,-0.008037456311285496,0.03017549216747284,0.042545385658741,0.03298737481236458,0.006865928415209055,-0.0679389163851738,-0.029926104471087456,-0.007336630020290613,-0.026722922921180725,-0.13128678500652313,-0.08979294449090958,-0.04800235107541084,0.029235949739813805,0.0028212852776050568,-0.11107638478279114,0.015699492767453194,-0.10898154973983765,0.03476263955235481,-0.03469677269458771,-0.04688647389411926,0.030163252726197243,-0.008967661298811436,-0.0252259261906147,0.018206797540187836,-0.01891905441880226,0.045822884887456894,-0.04014834761619568,-0.016044510528445244,-1.7380429540025943e-8,-0.04819029942154884,0.0033093001693487167,0.04047229886054993,-0.08092471212148666,-0.0008212050306610763,-0.05915158987045288,0.001853143097832799,0.0059481277130544186,-0.05210449546575546,0.02067183330655098,-0.0023554502986371517,0.058292414993047714,0.07076603919267654,0.102920763194561,-0.03305314481258392,0.07464271783828735,0.054913006722927094,-0.09096603095531464,-0.08032569289207458,-0.005553671158850193,-0.02614717371761799,0.00679162610322237,0.010847982950508595,0.04342368617653847,-0.035764340311288834,0.013008319772779942,-0.045836616307497025,0.06080180034041405,0.009893042035400867,0.08295251429080963,0.079830102622509,-0.007131462916731834,-0.05235196650028229,0.017069539055228233,-0.06848783046007156,0.030032210052013397,0.04866257309913635,0.0033847845625132322,0.07417494058609009,-0.0037710259202867746,-0.05136668682098389,0.0031779271084815264,-0.00500517850741744,0.028032291680574417,0.02206389419734478,0.02805376425385475,0.030614929273724556,0.0023556689266115427,-0.022836919873952866,0.014892161823809147,0.020482774823904037,-0.0861230194568634,-0.03162244334816933,0.0100552411749959,0.007814125157892704,-0.015133634209632874,0.01726355403661728,-0.01420758105814457,-0.017609650269150734,0.040595442056655884,-0.10906075686216354,-0.03386319801211357,-0.006108476314693689,0.004634091164916754]},{"text":"I suppose not. (_She draws herself up superbly, and looks him straight in the face, saying with emphasis_) Some soldiers, I know, are afraid of death.","book":"Down and Out in Paris and London","chapter":9,"embedding":[0.037721894681453705,0.017788618803024292,0.043421030044555664,0.004751069936901331,0.06059551611542702,0.03033480979502201,0.11413746327161789,-0.08166541159152985,-0.09098928421735764,0.01004145760089159,-0.028879240155220032,-0.04048207029700279,0.04154081642627716,-0.027158772572875023,0.03142577409744263,0.008942022919654846,0.0013340541627258062,0.016714051365852356,-0.0020511248148977757,0.14280742406845093,0.012410921975970268,0.060516856610774994,0.07503281533718109,0.028734436258673668,0.03956732526421547,-0.06313022971153259,0.06402140855789185,0.0141801992431283,0.0158587247133255,0.10490927845239639,-0.0743543952703476,-0.05180949717760086,-0.055011093616485596,-0.003993981517851353,0.05517742782831192,0.0853864774107933,0.06810926645994186,0.0044623021967709064,0.005040868651121855,0.04385707154870033,-0.0884738340973854,-0.01541209314018488,0.02529425360262394,0.040571846067905426,-0.05098049342632294,-0.01204518973827362,-0.02675563097000122,-0.035438910126686096,-0.0015800736146047711,-0.0942387506365776,-0.021140990778803825,-0.03868291899561882,-0.01746617630124092,-0.0851062759757042,0.037789296358823776,-0.07031165063381195,0.026459766551852226,-0.02519846335053444,-0.010491655208170414,0.026525039225816727,-0.09642831981182098,0.07662567496299744,0.05519888922572136,0.05874394625425339,-0.026523469015955925,-0.030718594789505005,0.02809685654938221,-0.03742402791976929,0.0008885618881322443,0.08918114006519318,0.030162150040268898,0.03962601348757744,-0.023531360551714897,0.0015716409543529153,-0.08368929475545883,-0.010314010083675385,0.08646688610315323,0.016265276819467545,0.06420280784368515,0.003325109835714102,0.03689812868833542,-0.05367080122232437,0.08571717888116837,0.05991869792342186,-0.013471960090100765,-0.030986065044999123,-0.022487780079245567,-0.07837554067373276,-0.00871757511049509,0.04390035942196846,-0.10850179195404053,0.02913052588701248,-0.040559131652116776,0.06294788420200348,-0.0012492118403315544,0.041616905480623245,-0.048306550830602646,0.034433234483003616,-0.13544005155563354,-0.03232238441705704,0.03170358017086983,-0.008166215382516384,0.019610131159424782,0.09492932260036469,-0.034295711666345596,-0.034662824124097824,-0.009868315421044827,-0.05064418539404869,-0.06850053369998932,-0.03880950063467026,0.03329223766922951,-0.04807852581143379,-0.015167007222771645,-0.03770066425204277,-0.04751626402139664,0.05309399589896202,-0.04705877602100372,-0.16234177350997925,-0.06435572355985641,0.11733277887105942,0.06715851277112961,-0.022379998117685318,0.03402284160256386,0.0033691965509206057,0.050146181136369705,-0.028728554025292397,0.051816970109939575,-3.7661457794483876e-33,0.09286152571439743,-0.001377766951918602,-0.01589101366698742,-0.05306956544518471,-0.04273650050163269,0.015407913364470005,0.00571230985224247,-0.028948761522769928,0.031575798988342285,0.035842426121234894,-0.10820064693689346,-0.025643056258559227,0.03082396648824215,0.005325417499989271,-0.07815732806921005,0.04981694743037224,0.013189852237701416,0.00922373216599226,-0.00590732553973794,-0.02137541025876999,-0.010672930628061295,-0.06039441004395485,-0.036173995584249496,0.012021295726299286,-0.004007522948086262,-0.04371601715683937,0.043280281126499176,0.027353178709745407,-0.024397581815719604,0.03518763557076454,-0.12651777267456055,0.036018602550029755,-0.00025497208116576076,-0.10841255635023117,0.020663229748606682,0.029515458270907402,-0.045956142246723175,0.049425430595874786,-0.10290823131799698,0.02880483865737915,-0.005572421941906214,0.007979748770594597,0.008785631507635117,0.018751902505755424,-0.08846984058618546,-0.0019954585004597902,-0.015780821442604065,-0.03882603347301483,-0.08954021334648132,-0.027792762964963913,0.008773877285420895,0.004593169782310724,-0.012150750495493412,0.046234603971242905,0.06684985011816025,0.05895399674773216,0.0751420259475708,0.003541802754625678,0.06528681516647339,-0.02018141560256481,-0.07390527427196503,-0.00478008296340704,0.007033458445221186,0.016797928139567375,0.023205649107694626,-0.04891151562333107,-0.0014645858900621533,-0.0924689769744873,0.023730488494038582,-0.04069419577717781,-0.08945781737565994,0.03538881987333298,-0.0693141296505928,-0.05998142436146736,-0.12265617400407791,0.009194421581923962,0.020509755238890648,0.06930433958768845,0.06041543558239937,-0.09851165860891342,0.052792709320783615,-0.02924584038555622,-0.009082785807549953,0.018350616097450256,-0.039547085762023926,0.018036693334579468,0.015686560422182083,-0.10084909945726395,-0.10983585566282272,-0.01469989214092493,0.043366242200136185,0.004257299471646547,0.005627909209579229,-0.03836529329419136,-0.1168229803442955,1.697456775681837e-34,-0.017931288108229637,-0.0018416836392134428,0.02694523334503174,0.0047456566244363785,-0.07782379537820816,-0.06072870269417763,0.0061922199092805386,0.006851813290268183,0.06680552661418915,0.010836604051291943,0.01869030110538006,0.013282418251037598,-0.005126149859279394,0.04088815301656723,0.0582590289413929,-0.08354392647743225,0.02066461555659771,-0.007827047258615494,0.05764583870768547,-0.014838390052318573,-0.094452403485775,-0.06625010818243027,0.0016276896931231022,-0.04133588820695877,0.01883988454937935,0.05600135400891304,0.0663958191871643,-0.018837332725524902,-0.044358447194099426,-0.05843598023056984,0.0920092761516571,-0.1564618945121765,0.01712130382657051,0.08823202550411224,0.038743190467357635,0.033736925572156906,-0.02108324132859707,-0.11601243168115616,0.03557759150862694,0.027284901589155197,0.04841082915663719,-0.015615934506058693,0.01844683103263378,0.04427163302898407,-0.05207940936088562,-0.011378210969269276,0.06446492671966553,0.023806391283869743,0.029645970091223717,-0.016991840675473213,-0.06540699303150177,-0.000042407624277984723,-0.01288568414747715,0.05345923826098442,-0.020196640864014626,-0.03612245246767998,-0.048927221447229385,0.007043165620416403,0.021491525694727898,-0.027105847373604774,0.018290774896740913,-0.0034504614304751158,-0.008886010386049747,-0.014043545350432396,0.021855797618627548,0.0278153158724308,-0.05203190818428993,-0.003052295884117484,0.03148450329899788,0.047233570367097855,0.07394509762525558,-0.034524548798799515,-0.079434834420681,0.02852661907672882,0.013612613081932068,-0.04010278359055519,0.039969347417354584,-0.052655480802059174,-0.0010633997153490782,-0.06908279657363892,-0.016388047486543655,-0.0714699774980545,0.023102007806301117,0.03146984428167343,0.0071199806407094,0.015050316229462624,-0.05650489032268524,0.09690815955400467,0.000014319120055006351,-0.03634021431207657,-0.03624463081359863,-0.006837781984359026,0.08164027333259583,-0.10396845638751984,0.001645632553845644,-3.2917803594045836e-8,-0.006031236611306667,0.0305410698056221,0.008638212457299232,-0.06488830596208572,-0.09498941898345947,-0.026862045750021935,0.03792580962181091,-0.04826546460390091,-0.07698954641819,0.02455064281821251,0.044286489486694336,0.07935310155153275,0.018222345039248466,-0.034893158823251724,-0.024000123143196106,0.0638178363442421,-0.01016203872859478,-0.037732481956481934,-0.05625622719526291,-0.029665494337677956,-0.019639432430267334,0.003914483357220888,-0.030597954988479614,0.02639290690422058,-0.008755290880799294,0.08827490359544754,-0.02858809381723404,-0.03849313408136368,-0.02888375148177147,0.10725191980600357,0.014245259575545788,0.006626328453421593,-0.009045644663274288,0.0372483916580677,0.046455565840005875,-0.016375763341784477,0.10077373683452606,-0.011040965095162392,0.01863148808479309,0.0033093413803726435,0.013976489193737507,-0.02761727385222912,0.048470593988895416,0.050823744386434555,0.05121679604053497,0.0042961048893630505,0.10718843340873718,-0.10631082206964493,0.0450875423848629,-0.0018519004806876183,0.019854944199323654,-0.01520551461726427,-0.022313818335533142,0.11540722101926804,-0.02032814361155033,-0.04044081270694733,0.03695032745599747,0.03956976905465126,0.00926943402737379,0.07528342306613922,-0.008376644924283028,-0.04728911444544792,0.05714420601725578,0.01072007603943348]},{"text":"Why, a lot of your cavalry—the greatest blackguards in your army—will burst into this pretty room of yours and slaughter me here like a pig; for I’ll fight like a demon: they shan’t get me into the street to amuse themselves with: I know what they are.","book":"Down and Out in Paris and London","chapter":9,"embedding":[-0.004755058791488409,0.060564033687114716,-0.004538508597761393,0.019147366285324097,0.008108547888696194,0.02706303261220455,0.10783839225769043,-0.05122626572847366,-0.014340799301862717,-0.05055509880185127,0.006333030294626951,-0.0896216630935669,0.055309098213911057,-0.019476424902677536,-0.08729894459247589,0.03294201195240021,0.09133045375347137,0.008053526282310486,-0.06181739270687103,0.00729596521705389,-0.07814998924732208,0.06472879648208618,0.030825650319457054,0.07925516366958618,-0.13259650766849518,0.002834963146597147,-0.07914750277996063,0.022221432998776436,-0.05698675662279129,-0.05792936310172081,-0.08048229664564133,-0.048273708671331406,-0.025415167212486267,0.02688930369913578,-0.04286454617977142,0.05869313329458237,-0.003668713616207242,0.07094724476337433,-0.008574551902711391,-0.012023934163153172,-0.004666193854063749,-0.00941802840679884,0.014345282688736916,0.04665600508451462,-0.00040151295252144337,-0.040175631642341614,0.03166336938738823,0.004238931927829981,0.028572462499141693,-0.09328777343034744,0.008414443582296371,0.035065628588199615,-0.00882923323661089,0.01075824722647667,0.0075930701568722725,-0.05970705673098564,-0.05708682909607887,0.012712305411696434,0.014629329554736614,0.030067989602684975,-0.029189040884375572,0.012679490260779858,0.06792427599430084,0.006087200716137886,-0.05767754837870598,-0.022119438275694847,0.04973585531115532,0.10699695348739624,-0.0484909750521183,0.06636767834424973,-0.02478073164820671,0.023534435778856277,-0.006594287697225809,-0.04351534694433212,-0.08273781090974808,0.08487310260534286,0.0072005935944616795,-0.030210427939891815,0.0507098063826561,-0.02693333849310875,-0.001335766864940524,-0.02219991572201252,0.028666989877820015,0.02929224818944931,0.10196971148252487,-0.021840527653694153,0.017124371603131294,-0.01805415190756321,0.042851097881793976,0.013273504562675953,0.04509313777089119,-0.041930828243494034,-0.06423964351415634,-0.005996150430291891,0.019665507599711418,-0.03410452976822853,-0.014621248468756676,0.0011483144480735064,-0.08804453909397125,0.10659577697515488,0.014905273914337158,-0.07509580254554749,-0.036017052829265594,0.07367783039808273,-0.015460419468581676,-0.0131829297170043,-0.021807799115777016,0.004087190143764019,-0.020068613812327385,-0.04704396799206734,0.056389082223176956,0.0373341329395771,-0.042881984263658524,0.02146443910896778,0.00652124360203743,0.08295521885156631,-0.09751071780920029,0.011881551705300808,-0.058611202985048294,0.09368999302387238,-0.006261445116251707,0.07701906561851501,-0.09104060381650925,0.016024932265281677,0.05441523715853691,0.019695546478033066,-0.042904723435640335,-3.7507078652022446e-33,-0.01664414443075657,0.03140648081898689,-0.03623424097895622,0.04868602380156517,0.008619286119937897,-0.08771894127130508,-0.1068774163722992,0.0071560088545084,0.020764842629432678,-0.005914454348385334,0.0303247831761837,-0.0074584875255823135,0.024779487401247025,0.052223995327949524,-0.01761542819440365,0.03406307101249695,-0.01104770228266716,-0.0729033425450325,0.03012554720044136,-0.07453712075948715,-0.055586472153663635,0.04824146255850792,-0.021308762952685356,-0.0055420431308448315,-0.03873369097709656,-0.05517794191837311,0.008349080570042133,0.030154939740896225,0.017247207462787628,0.04893844574689865,0.0029613985680043697,-0.06306412816047668,0.03358332812786102,-0.04987458139657974,0.03708718344569206,0.03890502452850342,-0.05538142845034599,-0.0614045150578022,-0.05048593878746033,-0.029052136465907097,0.03867780789732933,0.010558812879025936,-0.05895299091935158,0.01021061185747385,-0.012501761317253113,0.05092993006110191,-0.001854961272329092,0.0005575502291321754,-0.10795960575342178,-0.030434884130954742,0.0287936944514513,0.023157546296715736,0.016386250033974648,0.014310467056930065,0.06007566303014755,-0.00746047543361783,-0.009528874419629574,0.01977933570742607,-0.01077527180314064,0.012628222815692425,-0.006553934421390295,-0.0034693728666752577,-0.04397929087281227,0.025899847969412804,-0.0179383996874094,-0.11910591274499893,-0.00926188938319683,0.0804230123758316,-0.009910007007420063,-0.05247734859585762,-0.03947163000702858,0.009035950526595116,-0.03944959118962288,-0.038334738463163376,-0.034705132246017456,-0.03658713027834892,0.06520698964595795,0.016795247793197632,0.03588142618536949,-0.08811274915933609,0.008295365609228611,0.01996375061571598,-0.057510100305080414,0.01575225591659546,0.0003153188154101372,-0.02843383513391018,0.08944296836853027,-0.1715848594903946,-0.017599955201148987,-0.05531090870499611,-0.07514386624097824,0.007603353355079889,-0.01972612366080284,-0.02251124382019043,-0.04506967216730118,-1.302135270435417e-34,0.060651618987321854,0.03527763858437538,0.10712716728448868,0.031111523509025574,0.004238897003233433,0.010573582723736763,0.0376497283577919,0.027538925409317017,-0.01554338913410902,0.02076437696814537,-0.142592653632164,0.08812315762042999,-0.042275287210941315,0.035955075174570084,0.09047505259513855,-0.11999703198671341,0.007422480266541243,0.07402029633522034,0.015114068984985352,-0.007990745827555656,-0.060782719403505325,0.0485108457505703,0.07319819182157516,-0.008530956692993641,-0.034181613475084305,0.03422332555055618,-0.04874279722571373,0.03416391834616661,0.011412098072469234,-0.028457999229431152,0.08351428806781769,-0.09282321482896805,-0.05967458337545395,-0.006947988644242287,-0.01138500589877367,0.0745696946978569,-0.02096724510192871,0.017448600381612778,-0.06104365363717079,0.01393982209265232,-0.00009983538620872423,-0.03707065060734749,-0.06673745065927505,-0.03692777082324028,-0.06567301601171494,-0.004731908440589905,0.05800388753414154,0.055441714823246,-0.007129875477403402,0.008587149903178215,0.003807550063356757,0.04297628626227379,-0.021721970289945602,0.048004500567913055,0.006818810012191534,-0.019400762394070625,0.060000766068696976,-0.07685279101133347,-0.006841568276286125,0.03442186862230301,-0.0057876757346093655,0.06445592641830444,-0.06865014135837555,0.06294529885053635,0.02279817871749401,-0.03636821731925011,-0.0653490349650383,0.045737821608781815,-0.042766474187374115,0.028355348855257034,-0.026519890874624252,-0.022315461188554764,-0.08467994630336761,0.03621178865432739,-0.02703036367893219,0.0014047467848286033,0.03827618807554245,-0.0579875148832798,-0.010992761701345444,-0.049899306148290634,-0.02409393899142742,-0.07179996371269226,0.05242907255887985,0.07177475094795227,0.014538205228745937,0.06044861301779747,0.06308876723051071,0.11189398169517517,0.10773884505033493,-0.03272359445691109,0.0717882588505745,-0.0389736071228981,0.016222326084971428,0.01308206096291542,0.0015314634656533599,-4.633244898855082e-8,-0.012785536237061024,0.06825939565896988,-0.006955762393772602,0.06274982541799545,0.005770843476057053,-0.012189780361950397,-0.0608699806034565,-0.03132176399230957,-0.017117273062467575,0.07579702883958817,0.016825001686811447,-0.028337717056274414,-0.0027362783439457417,-0.0512351393699646,-0.021482469514012337,0.1121407151222229,-0.05498943477869034,-0.13196076452732086,-0.0327661894261837,-0.02154558151960373,-0.12315533310174942,-0.0388941690325737,0.01698966696858406,-0.05771195888519287,-0.06257755309343338,-0.01646644063293934,-0.08110446482896805,-0.02230633795261383,0.0029837507754564285,0.15194179117679596,0.03612170368432999,0.028261300176382065,0.012650642544031143,-0.05090055242180824,0.058630891144275665,0.08109847456216812,-0.049141328781843185,-0.043136343359947205,0.12490593641996384,-0.0316922590136528,-0.09432671964168549,-0.04061811789870262,0.14717991650104523,0.0320020392537117,0.007749488111585379,-0.0014677576255053282,-0.018128475174307823,0.0015249855350703,-0.026727035641670227,0.015025518834590912,0.02416394278407097,-0.015332118608057499,0.03161090612411499,0.14880990982055664,0.021102774888277054,-0.022282252088189125,0.00869825016707182,-0.01070881262421608,-0.03381728008389473,0.026392193511128426,0.05518794059753418,-0.07822158187627792,-0.03072165511548519,-0.03805271536111832]},{"text":"No: I’ll keep the cloak: and you will take care that nobody comes in and sees you without it.","book":"Down and Out in Paris and London","chapter":9,"embedding":[-0.048557352274656296,0.13462711870670319,0.01103212870657444,0.037880755960941315,0.12360738217830658,-0.018106672912836075,0.1255020946264267,-0.09077998250722885,-0.03932444378733635,-0.03253863751888275,0.07741272449493408,0.0026563203427940607,-0.004457768984138966,-0.035275015980005264,0.008180011063814163,0.017252307385206223,-0.02618369273841381,-0.030948327854275703,-0.09446790814399719,0.011363501660525799,0.04556426778435707,-0.01587255857884884,-0.026993321254849434,-0.012576942332088947,-0.0831526517868042,-0.038122374564409256,0.00201000296510756,-0.04711697995662689,-0.022104179486632347,-0.04175013303756714,-0.036118291318416595,-0.047355689108371735,-0.059386853128671646,0.021969225257635117,-0.01793002337217331,0.04505978897213936,0.04663219302892685,-0.021622728556394577,0.0006104761851020157,-0.058966200798749924,-0.035960860550403595,0.049414828419685364,-0.11096601188182831,0.04554827883839607,-0.016623739153146744,-0.005307628773152828,0.009456546977162361,0.028925364837050438,-0.000516374537255615,-0.008477221243083477,-0.02798282355070114,0.05156349018216133,-0.04362691566348076,0.11389593780040741,0.027797965332865715,0.12079263478517532,0.058211613446474075,-0.09806019812822342,-0.004040839616209269,-0.026606831699609756,0.006019313354045153,0.006958887446671724,-0.001319628325290978,0.041128940880298615,0.10274873673915863,-0.0174740981310606,-0.03683287650346756,-0.004445409402251244,-0.006798954680562019,0.07059502601623535,-0.03685077279806137,0.05569758638739586,0.0216748658567667,0.012970680370926857,-0.037416599690914154,0.005142907612025738,-0.055618733167648315,-0.09463156014680862,0.04192671552300453,0.07991230487823486,-0.0031263779383152723,0.007861655205488205,-0.034666236490011215,0.012493484653532505,-0.0451999306678772,-0.057351499795913696,0.02876838482916355,-0.014232708141207695,0.014690900221467018,-0.031154613941907883,-0.018154192715883255,-0.03297334536910057,-0.022782713174819946,0.02214999496936798,-0.05855243653059006,-0.010950052179396152,-0.06490791589021683,0.08787084370851517,-0.09699249267578125,0.030454212799668312,0.008308005519211292,-0.09822020679712296,0.0037692042533308268,0.05651448294520378,-0.015381268225610256,-0.022019779309630394,-0.027544226497411728,-0.025806063786149025,-0.015102230943739414,0.005176761653274298,0.02848171815276146,-0.004251791629940271,0.011598467826843262,0.06001543998718262,-0.016865044832229614,0.044198017567396164,0.04738437011837959,0.03271779417991638,0.0511954091489315,0.09885595738887787,0.09272637963294983,0.032427988946437836,0.09815247356891632,0.041384220123291016,-0.050450291484594345,-0.043670374900102615,0.03956989198923111,-4.221356334146303e-33,-0.029410433024168015,0.041980013251304626,-0.0622069425880909,-0.04013931751251221,0.0547453872859478,-0.03683210909366608,0.05324331670999527,0.039362456649541855,-0.05714203789830208,0.007363314740359783,-0.05016255006194115,-0.03079805336892605,0.015396294184029102,0.0015995377907529473,-0.02443108893930912,0.05886782333254814,0.1247609406709671,-0.0007077024201862514,0.051432572305202484,-0.04020213708281517,0.013751470483839512,0.02380567044019699,-0.037325430661439896,-0.06838347762823105,0.01041776966303587,-0.013635276816785336,0.0006798661779612303,-0.07888499647378922,-0.0600522980093956,0.07407881319522858,0.03345726430416107,0.07137778401374817,0.01664157398045063,0.022517792880535126,0.034046463668346405,0.0734594464302063,-0.0786934643983841,0.010629755444824696,-0.012321177870035172,-0.039470069110393524,-0.07658404856920242,-0.028092293068766594,0.031544752418994904,0.004755854140967131,-0.030549053102731705,-0.0775495246052742,0.13147200644016266,0.056101083755493164,-0.1405273824930191,-0.003435192396864295,0.024805312976241112,-0.014290519058704376,-0.03645571321249008,-0.02334306761622429,-0.029312921687960625,-0.034553319215774536,0.029188239946961403,-0.04150249809026718,0.03480428829789162,-0.05989134684205055,0.023028027266263962,-0.05931771174073219,-0.003500718856230378,0.0695825144648552,0.04912762716412544,-0.024615421891212463,0.002447705017402768,-0.009951725602149963,-0.013183793984353542,-0.02948329970240593,-0.018081849440932274,0.024204863235354424,-0.1064520850777626,0.0938100516796112,-0.002955312142148614,-0.023404613137245178,0.009134174324572086,0.025697970762848854,0.024553196504712105,-0.07999803870916367,0.03087686188519001,0.049556996673345566,-0.03850264102220535,0.06631521135568619,-0.011346402578055859,-0.002375897252932191,0.08162692189216614,0.0015847288304939866,0.0081631513312459,-0.05263093486428261,0.12427066266536713,-0.0017738695023581386,-0.03383399173617363,-0.09817587584257126,-0.06767746806144714,2.0956739000398666e-33,0.07584131509065628,-0.013667727820575237,0.04051220417022705,-0.04206594079732895,-0.05876554548740387,0.02252376824617386,0.045381564646959305,0.017039528116583824,-0.013883882202208042,0.03546622395515442,-0.06651901453733444,0.0214303657412529,0.027159230783581734,0.001843666541390121,0.05781591683626175,0.035903219133615494,0.04523538798093796,-0.07467098534107208,-0.020662982016801834,-0.017415111884474754,-0.09054099023342133,-0.056009355932474136,-0.04356716200709343,-0.01450344454497099,-0.05716829374432564,-0.01116898376494646,0.08760938793420792,-0.010911332443356514,0.0054677510634064674,-0.040838152170181274,0.02628370188176632,-0.07230200618505478,-0.06410719454288483,-0.0017762471688911319,0.03434104472398758,-0.029810898005962372,0.00589739577844739,-0.02665313333272934,-0.057886794209480286,-0.01024068333208561,-0.04688436910510063,-0.019400540739297867,-0.009886253625154495,0.06887774169445038,-0.027208326384425163,-0.055859703570604324,0.050074249505996704,0.09395713359117508,0.009805410169064999,0.043510884046554565,0.04949846491217613,-0.02382027730345726,0.016513371840119362,-0.0846586599946022,-0.06516159325838089,0.06975426524877548,-0.027512865141034126,0.008493132889270782,0.04665406793355942,-0.0358373261988163,0.06213349103927612,-0.004343699663877487,-0.05331391468644142,-0.01157132163643837,0.031316909939050674,-0.06332326680421829,-0.03810947760939598,0.07111478596925735,0.030978579074144363,0.00915811862796545,0.07729573547840118,-0.07741642743349075,-0.08014777302742004,-0.06335442513227463,-0.01001362781971693,0.023981496691703796,0.13508477807044983,0.014301639050245285,-0.009730264544487,0.04455404728651047,0.0029250227380543947,-0.014537162147462368,-0.014312749728560448,-0.10172007232904434,0.09915979951620102,-0.07305476069450378,0.024317419156432152,0.02649502456188202,-0.0377940908074379,-0.035397861152887344,-0.03351297974586487,0.05402263253927231,-0.006817908026278019,-0.06744295358657837,0.0024523530155420303,-2.5666571090710022e-8,0.05515027791261673,0.0900740846991539,0.09886396676301956,-0.010187588632106781,-0.02350856177508831,0.03987307474017143,0.03295339271426201,-0.03751490265130997,-0.05057952553033829,0.04915440455079079,-0.019979987293481827,0.002844116184860468,0.0422566756606102,0.006024338770657778,0.012608693912625313,0.11924697458744049,0.005687120370566845,-0.07793066650629044,-0.070273756980896,-0.0007221036357805133,-0.0397195890545845,0.055859342217445374,-0.03301694616675377,0.04852474108338356,0.011550131253898144,0.06597905606031418,0.02851461060345173,-0.05211349576711655,0.01385866105556488,0.08748423308134079,0.006216011941432953,-0.000969381129834801,-0.024157173931598663,0.024842441082000732,-0.0652964860200882,0.004626119043678045,-0.10980052500963211,-0.00003286099308752455,0.0900970995426178,-0.026635540649294853,0.032449960708618164,0.01735188439488411,0.0481141060590744,0.07548055797815323,-0.05703834071755409,-0.034763745963573456,0.08598064631223679,-0.142692431807518,-0.06789647042751312,0.000724665354937315,-0.01465559471398592,-0.08015866577625275,-0.019275734201073647,0.06532572209835052,-0.0064523289911448956,0.0255120936781168,0.1163916066288948,0.005679261405020952,0.0002396807394688949,-0.0134425088763237,0.03108067438006401,-0.08317631483078003,-0.04359794780611992,-0.032310936599969864]},{"text":"There is a step outside.","book":"Down and Out in Paris and London","chapter":10,"embedding":[-0.060585442930459976,0.05420263856649399,0.02638043649494648,0.0034904293715953827,0.0493021160364151,-0.006060696206986904,-0.013516414910554886,0.044018495827913284,0.012551091611385345,0.029874220490455627,-0.01738175004720688,-0.0031322124414145947,0.010258357971906662,-0.006528923753648996,0.09948355704545975,0.08055059611797333,-0.08806566894054413,0.07829084247350693,0.006909045856446028,-0.06554529815912247,-0.05367604270577431,-0.024123571813106537,0.04750566929578781,0.05114464834332466,-0.06134026497602463,-0.014299651607871056,0.023312034085392952,0.07370670139789581,0.049786828458309174,-0.02102382853627205,0.07972178608179092,-0.0026431709993630648,-0.04726503789424896,0.021501122042536736,0.01578788086771965,0.000756726018153131,0.04031660780310631,0.011907007545232773,-0.006065927911549807,0.0429215170443058,0.017404118552803993,-0.03763119503855705,-0.015361460857093334,-0.011804466135799885,0.035404812544584274,0.039732784032821655,0.012687310576438904,0.021044896915555,-0.015113153494894505,-0.018311306834220886,-0.06779392063617706,0.023236995562911034,-0.057723693549633026,0.06655129045248032,-0.06986492872238159,0.014702976681292057,0.04850565642118454,-0.08527161180973053,0.0444771833717823,-0.08153974264860153,0.0910649523139,-0.03304769843816757,-0.08818463236093521,-0.016234444454312325,-0.013048836961388588,-0.03356161713600159,-0.03965194150805473,-0.09000413119792938,0.0830511748790741,-0.011072111316025257,0.047545261681079865,-0.011675828136503696,0.06666604429483414,-0.021831685677170753,-0.06082954257726669,-0.05964938551187515,-0.011441433802247047,0.012508321553468704,-0.06536037474870682,-0.016235416755080223,0.033772390335798264,-0.02742110565304756,-0.005351180676370859,-0.004197278525680304,-0.014095318503677845,0.018685752525925636,0.004507463425397873,0.08432561159133911,0.06934487819671631,0.012398007325828075,-0.10608377307653427,-0.04502576217055321,-0.07613468915224075,-0.009372447617352009,-0.02208108827471733,-0.00028837667196057737,-0.005892869085073471,-0.10942113399505615,-0.0020452190656214952,0.0663221925497055,-0.03400655463337898,0.03940887004137039,0.06466164439916611,0.02116219699382782,0.09231864660978317,-0.04131226986646652,0.019966134801506996,0.06922128051519394,0.04778353497385979,0.08722378313541412,0.002430445747449994,-0.039488084614276886,0.03310677781701088,0.07015594094991684,-0.016066396608948708,-0.02127130888402462,-0.01963808201253414,-0.03808610886335373,-0.05811568349599838,0.003639903850853443,0.05554471164941788,0.029544193297624588,0.04562327265739441,0.07056404650211334,0.012250483967363834,-0.03446480259299278,0.12384171783924103,-1.295483377492854e-32,0.023924069479107857,0.0330621600151062,0.04170967638492584,-0.009321879595518112,0.11323615163564682,0.06433193385601044,-0.003313631983473897,-0.05408289656043053,-0.0017619365826249123,0.03526178374886513,-0.06061398237943649,-0.059757769107818604,-0.02120480127632618,0.032002199441194534,0.03245057910680771,-0.10675202310085297,0.06038394570350647,-0.04502742737531662,-0.05929037928581238,-0.004749747458845377,0.017441270872950554,-0.1091298833489418,0.011735938489437103,-0.005760543048381805,-0.03935191407799721,0.01303942035883665,-0.008059242740273476,0.027963247150182724,-0.06774380058050156,-0.020566601306200027,0.07003854215145111,-0.03715776652097702,-0.019089840352535248,0.0281006321310997,0.06481287628412247,-0.08421692252159119,0.04832591116428375,-0.04325837641954422,0.042443204671144485,-0.038645390421152115,-0.13534654676914215,-0.03487013280391693,0.07565569132566452,-0.050092946738004684,-0.05947674810886383,0.021961135789752007,0.02300206385552883,0.01243378221988678,-0.04234476387500763,0.02375265769660473,0.030013497918844223,0.053570400923490524,0.04933210462331772,-0.036320965737104416,0.04587143287062645,-0.037950869649648666,0.04390709102153778,0.020629391074180603,0.005636140238493681,0.02141655795276165,-0.027362417429685593,0.05481951683759689,-0.01956813968718052,0.06501911580562592,0.005538055673241615,-0.0640469565987587,-0.04249873012304306,0.04170789569616318,0.01932436041533947,0.027435248717665672,-0.009592732414603233,0.0016644379356876016,0.07596484571695328,-0.018557386472821236,0.019382424652576447,0.023998303338885307,-0.056277330964803696,-0.08371612429618835,0.08529890328645706,-0.022651733830571175,-0.10180814564228058,-0.03290863707661629,-0.020712586119771004,-0.06462615728378296,0.041622936725616455,0.044575776904821396,-0.03487585484981537,-0.05662919208407402,-0.07470693439245224,-0.0004485654062591493,-0.06345853209495544,0.0516996905207634,-0.023769062012434006,0.07297875732183456,0.058012109249830246,7.9204037940238e-33,0.06749199330806732,0.04585602134466171,0.0739188939332962,-0.06250166893005371,0.02307865396142006,0.027166549116373062,-0.037893302738666534,0.0008608655189163983,0.06076629087328911,0.0505857914686203,-0.10893601924180984,0.07358276844024658,0.0640440285205841,0.052458543330430984,0.12473613768815994,0.03854195028543472,0.05679497867822647,0.014106864109635353,0.07997025549411774,0.050443682819604874,-0.027004599571228027,0.005207174923270941,-0.05019332841038704,0.013169229961931705,-0.05383589118719101,0.02329445444047451,0.11524912714958191,0.06181463226675987,-0.04022026062011719,-0.026411568745970726,-0.044548824429512024,0.02453828975558281,0.05899154394865036,-0.02456885762512684,-0.03745803236961365,0.010495311580598354,-0.014138111844658852,-0.056025657802820206,-0.017963115125894547,-0.031809739768505096,0.08207570016384125,0.006484974175691605,0.10318616032600403,0.006584446411579847,-0.0006060973973944783,-0.024754270911216736,-0.046549566090106964,0.11201897263526917,-0.10490685701370239,-0.05470176041126251,0.01746710203588009,0.034499574452638626,-0.00759108504280448,0.05571600794792175,0.07101435214281082,0.05182061344385147,-0.12812702357769012,0.0121206259354949,-0.14735640585422516,-0.03132458031177521,0.05526898428797722,0.06067194417119026,0.014661455526947975,0.06541711091995239,0.019081799313426018,0.02239641547203064,-0.034763153642416,0.02112930454313755,-0.10596810281276703,-0.013555029407143593,-0.015005986206233501,-0.02368280477821827,-0.02961566485464573,-0.06759944558143616,0.049639347940683365,-0.055608514696359634,0.03508658707141876,-0.021071769297122955,0.019131841138005257,-0.041933316737413406,-0.03881246969103813,-0.0374608039855957,-0.008744210004806519,-0.049767982214689255,-0.0402558334171772,-0.07314462214708328,-0.08566900342702866,0.017002945765852928,0.016278160735964775,-0.03834397345781326,0.018732821568846703,0.05980455502867699,-0.046064343303442,-0.03749338164925575,-0.01784360036253929,-1.9726490663174445e-8,-0.0766407772898674,0.007777151186019182,-0.043833065778017044,-0.08198422938585281,0.052955031394958496,0.02741830237209797,0.08812355250120163,0.0208969134837389,0.03954349830746651,-0.037731342017650604,-0.04271606355905533,0.05719311535358429,0.058088891208171844,0.1422615945339203,-0.046231064945459366,-0.06873458623886108,-0.04420499876141548,0.024378107860684395,-0.015655480325222015,0.03548051416873932,0.01096179336309433,-0.032834045588970184,0.007677032146602869,0.010964630171656609,-0.06819581240415573,-0.021566255018115044,-0.01501932367682457,-0.0392163023352623,0.02338731288909912,0.08010098338127136,0.01388954371213913,0.045424602925777435,0.030467616394162178,0.08628794550895691,-0.004831857047975063,0.027281608432531357,0.09734685719013214,0.06718195974826813,-0.008143736980855465,-0.030933169648051262,-0.022409148514270782,-0.015111936256289482,-0.02832295000553131,-0.05907527357339859,-0.11349936574697495,0.013623792678117752,-0.08815926313400269,0.010827437043190002,-0.06437493115663528,-0.0029942665714770555,-0.020894549787044525,-0.06541474163532257,0.0796186625957489,0.00011505446309456602,0.03412650153040886,-0.02494707703590393,-0.08271939307451248,-0.050864942371845245,-0.04951103404164314,0.04812188446521759,-0.028041977435350418,-0.04288781061768532,0.005945242941379547,0.036166220903396606]},{"text":"Oh, thank you. (_She wraps herself up with great relief.","book":"Down and Out in Paris and London","chapter":10,"embedding":[-0.046071697026491165,0.009085113182663918,0.06795406341552734,0.028893224895000458,-0.03243443742394447,0.025303078815340996,0.05331439897418022,-0.05146261304616928,-0.10444113612174988,-0.025281758978962898,-0.009591585956513882,0.015785353258252144,-0.06746518611907959,0.05246256664395332,0.01990661583840847,0.08798107504844666,0.056824810802936554,-0.04330775514245033,-0.03387094661593437,0.08817672729492188,0.010555154643952847,0.047054801136255264,0.06522052735090256,0.029072239995002747,-0.02925649844110012,-0.04325278848409653,0.04498022794723511,-0.047877661883831024,0.07034564018249512,-0.010608701035380363,-0.1883731186389923,0.01851559616625309,-0.08665363490581512,0.013521414250135422,-0.036126576364040375,0.11875336617231369,-0.008125677704811096,-0.039162974804639816,-0.015358610078692436,-0.0014482620172202587,0.05027693510055542,0.03552845120429993,-0.04132891446352005,0.005218866281211376,0.033258598297834396,0.049104537814855576,0.0401834100484848,0.02421845681965351,-0.04728975519537926,-0.021687695756554604,-0.007935447618365288,0.04036962613463402,-0.0362408272922039,0.08387519419193268,0.011064446531236172,-0.014205990359187126,-0.003874954767525196,-0.11141350120306015,-0.0009927223436534405,-0.019272899255156517,-0.05898711457848549,0.06614942848682404,0.012478668242692947,0.13539665937423706,-0.03573232889175415,-0.024609152227640152,0.04678747057914734,0.003048418555408716,-0.05271151289343834,0.014949620701372623,-0.01940242387354374,0.019354673102498055,-0.021613873541355133,-0.029620008543133736,0.009663630276918411,-0.04887039214372635,0.038587454706430435,0.04399453103542328,0.06884828209877014,0.09114484488964081,0.011477402411401272,0.011202904395759106,0.013469384983181953,0.06645690649747849,-0.11151629686355591,0.01809832639992237,0.07843218743801117,-0.0748007744550705,-0.04494468495249748,-0.028482843190431595,-0.00800267793238163,0.06022818386554718,-0.09445072710514069,0.060731615871191025,-0.05217071250081062,-0.038560837507247925,-0.08051768690347672,-0.036820799112319946,-0.07164425402879715,-0.01625562459230423,0.028031999245285988,0.02592218481004238,0.02402189001441002,0.12148343026638031,-0.02243461087346077,-0.007143260911107063,-0.052123911678791046,-0.05403297767043114,-0.019869579002261162,-0.0330008938908577,0.015436616726219654,-0.007994887419044971,-0.03750919923186302,-0.02704976312816143,-0.044576846063137054,0.04502814635634422,-0.021582989022135735,0.013989299535751343,0.06562087684869766,0.011155732907354832,0.0032710209488868713,-0.04188350588083267,0.02813233807682991,-0.05773166939616203,-0.04481520131230354,-0.05176549777388573,0.07252439111471176,-4.01129071820856e-33,0.10536603629589081,0.05291278287768364,0.040311332792043686,0.041494909673929214,-0.012245816178619862,0.008461842313408852,-0.08248738944530487,0.01144000981003046,-0.09878349304199219,0.06406910717487335,-0.09469807147979736,0.0782618373632431,0.05181456357240677,-0.010619446635246277,-0.07420831173658371,-0.047207143157720566,-0.0030844034627079964,0.011585061438381672,-0.005450604949146509,0.0589086078107357,0.03758879378437996,-0.05509263277053833,0.04946940392255783,-0.038631871342659,-0.0356464721262455,-0.0034543198999017477,0.028189288452267647,-0.021174686029553413,-0.017327608540654182,0.02023991383612156,-0.07749047875404358,0.017180491238832474,0.05970444902777672,-0.07316465675830841,0.007402551826089621,0.005852622911334038,0.046178627759218216,0.016790252178907394,-0.01672961935400963,0.04919768497347832,-0.04222794994711876,-0.0006361518753692508,0.07978978008031845,0.00896549690514803,-0.10024642944335938,-0.06687096506357193,0.031788259744644165,0.02531120739877224,0.0473681204020977,-0.05573384463787079,-0.04881921783089638,0.008660037070512772,0.018588116392493248,-0.020262418314814568,0.008545787073671818,0.010484023950994015,-0.04426192119717598,0.022559531033039093,0.07489212602376938,0.05170268565416336,-0.04130106791853905,-0.027546299621462822,-0.008751901797950268,-0.06616805493831635,-0.009049949236214161,-0.03532245010137558,-0.041338808834552765,0.020344490185379982,0.03331351652741432,-0.03392135351896286,-0.10367631167173386,0.06369820237159729,-0.004777329973876476,-0.03215904161334038,-0.09337734431028366,0.034060537815093994,0.05076129734516144,-0.05837778374552727,0.11348316073417664,-0.07476551830768585,0.054764438420534134,-0.0013547706184908748,-0.02841842919588089,0.0827319324016571,0.03499182313680649,-0.0403587780892849,-0.06453939527273178,-0.014924476854503155,-0.02915729023516178,0.022331977263092995,0.046753522008657455,0.0915338471531868,0.05802718177437782,-0.09371694922447205,-0.0051253014244139194,5.9752540578231395e-34,0.11397495120763779,0.05967037007212639,-0.059832148253917694,-0.0019779177382588387,-0.04231972619891167,-0.0751737579703331,-0.08544369041919708,0.004844738636165857,-0.05157165229320526,0.011609796434640884,0.020681891590356827,-0.05657320097088814,-0.03385423868894577,-0.02526196464896202,-0.04190676286816597,0.0347878634929657,-0.0007755518890917301,-0.013385411351919174,-0.05572598800063133,-0.053461190313100815,-0.07585408538579941,0.0954522117972374,0.03159426152706146,-0.07641574740409851,0.025790899991989136,0.008809281513094902,0.08771010488271713,-0.009197140112519264,0.017081672325730324,-0.01042659766972065,0.054666634649038315,-0.07800904661417007,-0.04568212479352951,0.004496741574257612,0.0221359021961689,0.06495140492916107,-0.08318165689706802,-0.17625945806503296,0.01448963675647974,-0.04483970254659653,0.0626312866806984,-0.015119431540369987,0.035020552575588226,0.032579172402620316,0.04972837120294571,0.007795050740242004,-0.05614139512181282,0.029424605891108513,0.04277864471077919,0.024104055017232895,-0.013483263552188873,-0.04332577809691429,-0.0015628378605470061,0.02307562343776226,0.05054497718811035,0.02986667864024639,-0.02237188071012497,0.028198499232530594,0.04403391480445862,-0.0533795990049839,-0.06489897519350052,-0.019274907186627388,-0.010669217444956303,-0.024223648011684418,0.06262969970703125,-0.021930083632469177,-0.00690174987539649,-0.039294127374887466,-0.06923126429319382,-0.022805698215961456,-0.016613304615020752,0.06471926718950272,-0.08171899616718292,0.0007889769040048122,0.039474084973335266,-0.0013295445824041963,0.08389733731746674,-0.093243308365345,0.04206263646483421,-0.027783431112766266,-0.019538316875696182,-0.05068962275981903,0.029270317405462265,-0.06412576884031296,0.009122306481003761,-0.005585793871432543,-0.002716024173423648,0.029431112110614777,-0.06489010900259018,0.0024602720513939857,-0.03146738186478615,0.058740317821502686,0.03214531019330025,0.01664603315293789,0.06564532965421677,-2.5931283786917447e-8,0.035845283418893814,0.029931718483567238,-0.04228734225034714,-0.05417138338088989,-0.05615326762199402,-0.00965788122266531,-0.014848979189991951,-0.02612750045955181,-0.0811266228556633,-0.031091852113604546,0.022413861006498337,0.06257494539022446,0.12690162658691406,0.04433600232005119,0.02964046411216259,-0.022100800648331642,-0.0031748604960739613,0.13347193598747253,-0.019685057923197746,-0.04455867409706116,0.021945249289274216,-0.013738698326051235,0.023043625056743622,-0.025385603308677673,0.01950892247259617,0.03497486934065819,-0.03793157637119293,0.015817895531654358,-0.09209594130516052,-0.022339683026075363,0.14144669473171234,-0.013266176916658878,0.007264236453920603,0.03382008150219917,-0.03393799439072609,0.05237070098519325,0.058614809066057205,-0.0001738477876642719,0.01007607951760292,0.04172913357615471,-0.012816391885280609,-0.03267732635140419,-0.016166212037205696,0.012499201111495495,-0.07945099472999573,-0.0426110215485096,0.1194344237446785,-0.0453757606446743,0.06006869301199913,0.045558687299489975,0.08037180453538895,-0.05995592474937439,-0.003399304114282131,0.022068040445446968,-0.014013336040079594,0.015335689298808575,-0.027516067028045654,-0.010414183139801025,0.059237875044345856,0.10305831581354141,-0.02706802636384964,0.009698652662336826,0.036454472690820694,0.03695424646139145]},{"text":"There is just half a chance, if you keep your head.","book":"Down and Out in Paris and London","chapter":10,"embedding":[0.009770852513611317,-0.06378597766160965,0.0223913062363863,-0.03344322368502617,0.03964516520500183,-0.01874748058617115,0.021609054878354073,-0.007082613650709391,0.08089239150285721,-0.008924673311412334,0.01450338214635849,-0.0742146447300911,0.04109169915318489,-0.05569359287619591,0.028995266184210777,-0.01108567975461483,-0.09410391002893448,-0.08367457985877991,-0.07099068909883499,0.0921131819486618,-0.06522678583860397,0.01022040843963623,-0.03172193095088005,0.01136771123856306,-0.0020564068108797073,0.008804560638964176,-0.001159892650321126,-0.033613938838243484,-0.0682574063539505,-0.0383639857172966,-0.023692285642027855,-0.026272417977452278,-0.11890476942062378,-0.025750882923603058,-0.009464708156883717,0.009184559807181358,-0.03735913708806038,0.023914704099297523,0.09297317266464233,-0.006958791520446539,0.02110627107322216,0.0016452984418720007,-0.021591728553175926,0.04746207967400551,-0.031826429069042206,-0.03152313083410263,-0.07514819502830505,-0.03680644929409027,-0.014999516308307648,0.018675265833735466,-0.04447641223669052,0.016553785651922226,0.0408625528216362,0.06123870611190796,0.007619640324264765,0.03674421086907387,-0.033072393387556076,0.029431696981191635,-0.03724932298064232,0.059661831706762314,-0.03938402980566025,-0.014378785155713558,-0.029886579141020775,0.004232653882354498,0.029009003192186356,-0.00021502833988051862,-0.0581241212785244,-0.017451481893658638,0.04323776066303253,0.05866573005914688,-0.020983757451176643,-0.004278826992958784,-0.0654991865158081,0.014680689200758934,0.058435410261154175,-0.031953658908605576,-0.03031049482524395,-0.08417652547359467,0.09906172752380371,0.05756906047463417,-0.07832204550504684,-0.020090455189347267,0.10954342782497406,-0.00213173171505332,-0.04704849794507027,0.014135561883449554,0.09166542440652847,0.12884697318077087,0.004260260611772537,-0.00514886574819684,-0.10547152906656265,-0.03842876851558685,0.06212233379483223,-0.023927971720695496,0.058651287108659744,0.07599221915006638,-0.11868834495544434,0.05498312786221504,-0.07974204421043396,0.02541940286755562,-0.03693782910704613,-0.04595806822180748,-0.029290495440363884,-0.043019238859415054,0.005155600607395172,0.0419413186609745,-0.057064563035964966,-0.05218018963932991,0.008640622720122337,-0.027469690889120102,0.04394745081663132,0.010128679685294628,0.10703735053539276,0.14923305809497833,-0.03332044556736946,0.00380989583209157,-0.007122479844838381,0.050631433725357056,-0.046918563544750214,-0.018022077158093452,-0.01835661381483078,0.02536013349890709,0.058699991554021835,-0.052353378385305405,-0.013705870136618614,-0.08310368657112122,0.011019505560398102,-8.336652955805696e-33,0.005222074221819639,-0.04150416702032089,0.007696701213717461,-0.001287196297198534,-0.027286851778626442,0.022517714649438858,-0.010847551748156548,0.06603559851646423,-0.005268785636872053,0.021985629573464394,-0.02660934254527092,-0.07170692086219788,-0.026348091661930084,-0.0024227863177657127,0.01434407476335764,-0.005984478630125523,0.03311525657773018,0.003032561857253313,-0.05262577161192894,-0.031862787902355194,-0.04260006919503212,-0.04178912192583084,-0.022344740107655525,-0.026602687314152718,0.02235436998307705,-0.012303216382861137,0.007600718177855015,-0.05368778482079506,0.03665914386510849,0.011301838792860508,-0.07288551330566406,0.06179170683026314,-0.0648198053240776,-0.07300175726413727,0.012606026604771614,0.012266562320291996,0.0332002267241478,0.013255183584988117,-0.0364219956099987,0.05145101994276047,-0.04409368708729744,0.09147173166275024,-0.025418903678655624,0.003636646782979369,-0.01595071330666542,-0.049140773713588715,0.023522160947322845,-0.009275807067751884,-0.08397895842790604,-0.013194614090025425,-0.01869415119290352,-0.0023242200259119272,0.0038944571278989315,0.02672215923666954,-0.004391497932374477,0.0530327670276165,0.027828291058540344,0.06538654863834381,0.08031941950321198,0.0880650207400322,0.05327945575118065,0.015377958305180073,-0.07059099525213242,0.010150142014026642,-0.04904978722333908,0.06454292684793472,0.06421639025211334,0.01203825231641531,-0.06279397755861282,0.03258417546749115,0.09644639492034912,-0.055487994104623795,-0.07574506103992462,-0.05743845924735069,0.014751633629202843,-0.015231885015964508,0.035880960524082184,-0.014592939056456089,0.12429158389568329,0.005053047556430101,0.08765371888875961,-0.010350747033953667,-0.009684448130428791,-0.07917876541614532,0.08693279325962067,-0.007271194364875555,0.05815602466464043,-0.08098164945840836,-0.059156376868486404,-0.00255014281719923,0.05478646606206894,-0.01328690629452467,0.07908400148153305,-0.0796828418970108,-0.057294320315122604,4.871985477828731e-33,-0.029957130551338196,-0.04900841787457466,0.04029444605112076,0.03774894401431084,-0.010557648725807667,0.013367119245231152,0.04369038715958595,0.047074079513549805,-0.03218106925487518,0.015814026817679405,0.06224679574370384,0.10851562768220901,0.09043922275304794,0.0717344805598259,0.04658975079655647,-0.03987157717347145,0.02751043625175953,0.02746943198144436,-0.059016287326812744,0.01100092101842165,0.03372570127248764,-0.039106909185647964,0.04063870385289192,0.07055842131376266,-0.016667094081640244,0.011286545544862747,0.018881576135754585,-0.018943818286061287,-0.08973661810159683,-0.05011868104338646,0.008671093732118607,-0.05666255205869675,-0.11892307549715042,-0.03224814683198929,0.024586033076047897,-0.015695063397288322,-0.01297391764819622,0.008168256841599941,-0.04308490455150604,0.029417939484119415,-0.0970379114151001,-0.07915285229682922,-0.009459501132369041,-0.054469503462314606,-0.016108084470033646,-0.06097476929426193,0.10610352456569672,0.08104787021875381,0.022108834236860275,0.07955041527748108,-0.02162817306816578,0.09026870876550674,-0.033572304993867874,-0.009891843423247337,-0.028808191418647766,-0.0323759987950325,-0.06473177671432495,0.008775345981121063,-0.005959528964012861,0.006888386327773333,-0.05910338833928108,0.03607124090194702,-0.0125849274918437,0.07628075033426285,0.09368323534727097,0.0877741277217865,-0.12205614149570465,0.03516325354576111,0.039356932044029236,0.0053445156663656235,0.09335750341415405,0.05291701480746269,-0.03968948498368263,-0.015548082999885082,0.017062688246369362,0.0679968073964119,0.032058604061603546,0.002791051520034671,0.050777774304151535,-0.027090420946478844,-0.06831472367048264,-0.017362162470817566,-0.011341824196279049,-0.032231759279966354,0.06554757803678513,-0.004945035558193922,0.0018416220555081964,-0.11261776089668274,0.0473695769906044,-0.04503435641527176,-0.05539108067750931,0.034612104296684265,0.05547397956252098,-0.02130548097193241,-0.07856731861829758,-2.266733822864353e-8,0.04967924579977989,0.00038989807944744825,0.10596957057714462,0.008547232486307621,-0.016808995977044106,0.09335585683584213,-0.023546937853097916,-0.053137075155973434,-0.023256264626979828,0.0007311974768526852,0.052148979157209396,0.006597001571208239,-0.01196302194148302,0.04905243217945099,-0.02994006872177124,0.0506785623729229,0.013664856553077698,0.0796932727098465,-0.008480512537062168,-0.017429497092962265,0.004027878399938345,0.027303513139486313,0.03222103416919708,0.04222395643591881,-0.08011005073785782,0.06905174255371094,-0.011054160073399544,0.09764698147773743,-0.05895678326487541,-0.07120303064584732,0.022116992622613907,-0.06416352838277817,-0.07509273290634155,-0.01705639809370041,0.03610372170805931,-0.06249343231320381,0.04009442776441574,0.045071832835674286,0.038587938994169235,-0.08637180179357529,0.009133681654930115,-0.020156538113951683,0.06822828948497772,0.10569510608911514,0.005765643902122974,0.0019785661716014147,0.12486954778432846,-0.02821412868797779,0.021795950829982758,-0.08038556575775146,0.029656797647476196,0.038552287966012955,0.004174602683633566,0.03893405199050903,0.0516948327422142,0.03783542290329933,0.0014742584899067879,-0.026568740606307983,-0.1431458741426468,-0.015220924280583858,0.055666059255599976,-0.06469268351793289,0.05753355473279953,-0.027164634317159653]},{"text":"My lady says you are to dress at once.","book":"Down and Out in Paris and London","chapter":10,"embedding":[-0.00854761153459549,-0.03225458413362503,0.030982887372374535,0.031181316822767258,-0.03377369046211243,-0.04778679832816124,0.03560024872422218,-0.10576331615447998,-0.026678897440433502,-0.015336687676608562,0.0070755756460130215,-0.01715696230530739,0.032652921974658966,-0.05382315814495087,0.05073954164981842,0.0025963953230530024,0.037753377109766006,0.0636783242225647,-0.015641620382666588,0.036563269793987274,-0.0175662599503994,-0.06863641738891602,0.05256600305438042,0.0804607942700386,-0.036649465560913086,-0.09407290071249008,-0.028804609552025795,-0.016439884901046753,-0.0460466668009758,-0.00969545915722847,-0.01641932874917984,-0.007989448495209217,-0.005141019355505705,0.1031484603881836,-0.12620747089385986,0.02402924932539463,0.03685026988387108,-0.001952017075382173,0.019761446863412857,0.08736032247543335,-0.02562069520354271,-0.05133157968521118,-0.03661109507083893,-0.022315748035907745,0.004485422745347023,0.04511057212948799,-0.01583961583673954,0.0137099027633667,0.04542184993624687,-0.01701369509100914,0.05865909531712532,0.0604674331843853,-0.009865472093224525,0.03071843832731247,0.03193917125463486,0.02910023182630539,-0.0003045526391360909,-0.02056058868765831,0.019761420786380768,0.021604083478450775,-0.02108635939657688,0.056775473058223724,-0.0010393561096861959,0.09882114082574844,0.0814032331109047,-0.01894589141011238,-0.016204992309212685,0.03368040919303894,-0.03753528371453285,0.026352165266871452,-0.05405879020690918,-0.029547501355409622,0.012936432845890522,0.08991722762584686,-0.017974194139242172,0.00477563263848424,0.09978436678647995,-0.0887768566608429,-0.005880539771169424,0.0667632445693016,-0.11666161566972733,-0.06357289105653763,0.06508879363536835,-0.02901408262550831,-0.04835805669426918,-0.06568571925163269,-0.04767884314060211,-0.013535480946302414,0.0177527517080307,-0.021345509216189384,-0.003563246689736843,-0.008899657055735588,0.00016778918507043272,-0.037016723304986954,-0.012825329788029194,0.022503534331917763,-0.1433214396238327,0.05611846223473549,0.03691600635647774,0.05517483130097389,0.001869181520305574,-0.026832187548279762,0.07056493312120438,0.07518517225980759,-0.018751583993434906,-0.13120388984680176,0.05420093610882759,0.013231313787400723,0.015563198365271091,-0.07406020164489746,0.0032976423390209675,-0.01965239830315113,0.09143812954425812,0.005168629810214043,-0.06268953531980515,0.0722813829779625,0.017545245587825775,0.06736280024051666,0.04353485628962517,0.009074957109987736,-0.03765413537621498,0.007282834500074387,0.027290266007184982,-0.06275303661823273,-0.02445177733898163,-0.11190126091241837,0.08607547730207443,-4.537583783642684e-33,0.05199751630425453,-0.011422763578593731,-0.0031919614411890507,0.05501459911465645,0.019379697740077972,-0.00730894785374403,-0.0469660721719265,-0.01990189217031002,-0.06751394271850586,0.017384767532348633,0.11262423545122147,-0.0768403634428978,-0.06329146027565002,-0.024549636989831924,-0.05192827433347702,0.0452813059091568,0.057294223457574844,0.08445926755666733,-0.008724686689674854,0.009457613341510296,0.007451492827385664,-0.05963718891143799,0.0026587408501654863,0.003253272967413068,0.009400569833815098,0.06901337206363678,0.08893796801567078,0.015100955963134766,-0.032686442136764526,0.021361202001571655,0.02806936949491501,0.03345518559217453,-0.046273503452539444,0.0114777572453022,0.03052704595029354,-0.016190044581890106,0.059437405318021774,0.05099719762802124,-0.011098812334239483,0.029918383806943893,-0.03290292248129845,-0.04488828778266907,0.08059943467378616,-0.03662560135126114,-0.02681812271475792,0.022815261036157608,-0.0016946177929639816,0.08431732654571533,-0.10533618927001953,0.06043952703475952,-0.030480369925498962,0.036817632615566254,0.015420746058225632,-0.013788015581667423,0.019837642088532448,-0.037332113832235336,0.04078738018870354,-0.1219562441110611,0.05991962552070618,-0.012540202587842941,-0.06558655202388763,-0.005049440078437328,-0.08987388014793396,0.006259764079004526,0.01303812675178051,0.016964394599199295,0.037544135004282,0.05585571005940437,0.05024237185716629,-0.00006765223952243105,-0.01614391803741455,0.02253127656877041,-0.05230315029621124,0.0031675510108470917,-0.00407919567078352,0.010455533862113953,0.06196789816021919,-0.0329471230506897,0.02528044395148754,-0.07564256340265274,-0.010594655759632587,0.06751199066638947,-0.02690809965133667,0.10499197989702225,0.08935319632291794,-0.01942911557853222,-0.05399937927722931,-0.03349745273590088,-0.0376773439347744,0.02566702850162983,0.010272747837007046,0.022816188633441925,0.055703938007354736,-0.09438100457191467,-0.022059975191950798,2.480673462860113e-33,0.08553952723741531,0.05758083984255791,0.03276349976658821,0.03081376664340496,0.044891271740198135,-0.0032809176482260227,-0.06251057237386703,-0.032261922955513,-0.03583231940865517,0.09352552890777588,0.0435565784573555,-0.02875708043575287,-0.013839412480592728,-0.04797594994306564,0.08927838504314423,-0.006599918473511934,0.09240203350782394,0.02422693744301796,0.012224783189594746,-0.022615212947130203,-0.0662945881485939,-0.06481563299894333,-0.003583942772820592,0.0019469654653221369,-0.08616742491722107,-0.0005880850367248058,0.038931310176849365,0.018060868605971336,-0.036814138293266296,0.0181831493973732,-0.022935157641768456,-0.03854565694928169,-0.0653604045510292,-0.014890574850142002,0.028025876730680466,0.06631945073604584,-0.04845660924911499,0.03758034110069275,0.0027315469924360514,0.05443761870265007,-0.018934061750769615,-0.03146914765238762,-0.0006981558399274945,0.05712493136525154,-0.04606832563877106,-0.11239457875490189,-0.06512846052646637,-0.009247823618352413,-0.035318173468112946,0.019377578049898148,-0.16393454372882843,0.0195761788636446,-0.07170397788286209,-0.10370440781116486,-0.03858746215701103,0.00747176306322217,-0.04876721650362015,0.07376928627490997,-0.04495975375175476,-0.01541698444634676,-0.0062591745518147945,0.052804384380578995,-0.042419128119945526,0.022804122418165207,0.026383012533187866,-0.014530644752085209,-0.037275366485118866,-0.04064756631851196,-0.044157348573207855,0.07615278661251068,0.034756116569042206,-0.03891467675566673,-0.009885699488222599,0.07251898944377899,-0.030410772189497948,-0.11907434463500977,0.06918785721063614,-0.01712106354534626,-0.008100630715489388,0.034682609140872955,-0.003962611313909292,-0.11641702055931091,0.03207341581583023,-0.03547335043549538,-0.06079347804188728,0.020591216161847115,-0.0242224782705307,0.1024656593799591,-0.041358765214681625,-0.012389427982270718,-0.05753107741475105,0.04294995591044426,0.027745461091399193,0.007586718071252108,0.007204906549304724,-2.061870141290001e-8,0.030314957723021507,-0.005732691381126642,0.10414537042379379,-0.07024060934782028,-0.02913992665708065,-0.01770235039293766,-0.027256986126303673,-0.05905921012163162,-0.055412255227565765,-0.06613180786371231,0.04119718074798584,0.061736807227134705,0.07911258190870285,0.046906910836696625,0.03588042035698891,-0.009001707658171654,0.0021556057035923004,-0.0656532272696495,-0.08622046560049057,0.02141084149479866,-0.015523789450526237,0.019974131137132645,-0.007257904391735792,-0.009046170860528946,0.017096109688282013,0.04859035089612007,0.0711645781993866,0.13446813821792603,0.0036104146856814623,0.09577856212854385,0.014140062034130096,0.011294761672616005,-0.05478539690375328,-0.006215749308466911,-0.03065277636051178,-0.07983127236366272,0.09327161312103271,-0.03478178009390831,0.10129985213279724,-0.013383948244154453,-0.0438956581056118,-0.06946448981761932,0.031007740646600723,0.1081659272313118,0.028250668197870255,0.05446375533938408,0.05974063649773598,-0.004949677269905806,-0.0355541929602623,0.04264146089553833,-0.03624369204044342,-0.061682894825935364,0.02530190534889698,0.08796723932027817,-0.020443927496671677,0.010158649645745754,0.02089708484709263,-0.02001461200416088,0.038252413272857666,0.01157714519649744,0.006080169230699539,-0.03343656286597252,-0.04928993433713913,-0.13786177337169647]},{"text":"Surely the soldiers will not dare come in here?","book":"Down and Out in Paris and London","chapter":11,"embedding":[-0.0001877440809039399,-0.023756742477416992,0.002755267545580864,-0.04072251915931702,0.043498728424310684,-0.03493624925613403,0.0024784321431070566,-0.10165593773126602,0.0034331006463617086,0.02697962336242199,0.005536767654120922,-0.008802594617009163,0.08245357871055603,0.010883461683988571,0.0022881643380969763,0.02778324857354164,-0.04911557585000992,-0.11875533312559128,-0.010432766750454903,-0.014583389274775982,-0.022922571748495102,0.08932630717754364,0.036632031202316284,0.03651924431324005,-0.03122219629585743,0.017541391775012016,0.01963089406490326,0.04965202882885933,-0.0028465986251831055,0.025773726403713226,0.015142738819122314,0.007465754635632038,-0.05594613403081894,0.015478204004466534,0.09716774523258209,0.002939597936347127,0.09129655361175537,-0.11827990412712097,0.07916705310344696,-0.0529630184173584,-0.025272496044635773,-0.04165242239832878,-0.0022099348716437817,0.016336306929588318,0.03964187577366829,0.03686501458287239,0.003952633123844862,-0.03146056458353996,0.034985464066267014,0.014461258426308632,0.010641373693943024,0.0013086134567856789,0.018095368519425392,0.003948731813579798,-0.05864879488945007,-0.049514833837747574,0.0008371666190214455,-0.09112424403429031,0.02823495864868164,0.01968717947602272,-0.08896641433238983,0.032098494470119476,0.02394484542310238,-0.00942151714116335,-0.04809492826461792,-0.0713973343372345,0.03938893601298332,0.016802223399281502,0.005482689943164587,0.001719827763736248,-0.05025595799088478,0.08326360583305359,0.07159850746393204,0.06226735562086105,-0.060219939798116684,-0.035637274384498596,-0.06029989570379257,0.04811451584100723,0.025933587923645973,-0.023475462570786476,-0.009277081117033958,-0.07574951648712158,0.019052112475037575,-0.00016827316721901298,-0.11296670138835907,-0.05385423079133034,0.023161141201853752,-0.004103905521333218,0.022471701726317406,0.0017690400127321482,-0.08204081654548645,0.02979590743780136,-0.06479188054800034,0.045249175280332565,-0.01672455109655857,-0.055551398545503616,0.004379118327051401,0.06659476459026337,-0.10994143784046173,0.07082033902406693,-0.02050960808992386,-0.014065846800804138,-0.06896262615919113,-0.007084405981004238,-0.022533956915140152,-0.03777581825852394,-0.0041320291347801685,-0.03302576020359993,-0.04192250221967697,-0.004089364316314459,0.0026244528125971556,0.03661685064435005,0.039236992597579956,0.023724989965558052,0.004736375063657761,-0.005534703377634287,-0.052453428506851196,-0.04975258558988571,-0.044501714408397675,0.11350156366825104,-0.0012794422218576074,0.03423453867435455,-0.004298652987927198,0.06386391073465347,0.06856106221675873,-0.002528787823393941,-0.106096051633358,-3.870979671732581e-33,0.00502307852730155,0.0021276194602251053,-0.02199915051460266,0.004209903534501791,-0.05403914302587509,-0.029769400134682655,0.03334929049015045,-0.006338705774396658,0.059255294501781464,-0.0405498705804348,-0.06400856375694275,-0.06126469373703003,0.04251330345869064,0.06366141885519028,-0.028952326625585556,0.024694202467799187,0.12048856168985367,-0.030343934893608093,-0.03296227008104324,-0.05393557995557785,0.034579552710056305,-0.003612775355577469,0.013635007664561272,0.04011959955096245,-0.0517202727496624,0.02023758739233017,-0.009316579438745975,0.048768941313028336,0.04748225957155228,0.023609058931469917,0.004815585911273956,-0.017612459138035774,0.005559494253247976,-0.0011632437817752361,0.03787604719400406,0.006198239978402853,-0.007807968650013208,0.015629351139068604,-0.06046229228377342,-0.09383733570575714,-0.005736732855439186,0.021962251514196396,-0.061103977262973785,0.03422459214925766,0.02575482614338398,0.0056612566113471985,0.05564407259225845,-0.08345764130353928,-0.0795658603310585,-0.05342596769332886,-0.014450756832957268,0.06107769533991814,-0.04590127244591713,0.08925588428974152,0.04428175464272499,0.02533055655658245,-0.006602297071367502,0.0037396508269011974,-0.032491493970155716,0.006117982789874077,-0.046307675540447235,0.014574038796126842,-0.02675757184624672,0.023186717182397842,0.03301215544342995,-0.05820389837026596,0.032665569335222244,0.004634825512766838,-0.01952303946018219,0.02500971406698227,0.025632716715335846,0.009477962739765644,-0.052686043083667755,-0.06905055791139603,-0.06702771782875061,-0.007237112149596214,0.03237373009324074,0.034685149788856506,0.06389786303043365,-0.06924314796924591,0.021912530064582825,-0.010559902526438236,-0.06313570588827133,0.0038142395205795765,0.10781760513782501,-0.05522459000349045,0.08183227479457855,-0.0906372144818306,-0.06869657337665558,-0.08051317185163498,-0.012874985113739967,-0.0002453561464790255,0.039826828986406326,-0.038557302206754684,-0.053621336817741394,1.2037049295450762e-33,0.027747265994548798,0.01805257610976696,0.04062829166650772,0.002228691941127181,-0.01035781018435955,0.03988360986113548,0.059767212718725204,0.017630722373723984,0.03244175761938095,0.11073348671197891,0.02524932660162449,0.02629075013101101,0.04353268817067146,0.05207286402583122,0.030370334163308144,-0.01773175038397312,0.14234419167041779,0.04608096554875374,0.013654647395014763,0.05137491971254349,-0.02528977580368519,0.0335758738219738,-0.02401626855134964,0.034108106046915054,-0.03486602380871773,0.035658251494169235,0.05048839747905731,0.026176905259490013,-0.07563544809818268,-0.0005672444240190089,0.043881598860025406,-0.1036023274064064,-0.09633785486221313,0.06959493458271027,0.09593764692544937,-0.0020583108998835087,0.037026844918727875,0.08467435836791992,-0.04413377121090889,0.05558234825730324,-0.016355695202946663,-0.04400363191962242,-0.08584200590848923,-0.0021888497285544872,-0.09446770697832108,-0.09422600269317627,0.026475898921489716,-0.05482124909758568,-0.011972189880907536,-0.011972138658165932,-0.0378400944173336,0.03711755946278572,0.009282534942030907,-0.049404457211494446,-0.004875647835433483,0.009540806524455547,-0.08964134007692337,-0.03166159987449646,0.04882179945707321,0.004111884627491236,-0.008032084442675114,0.029232988134026527,0.030444543808698654,-0.015267157927155495,0.050246160477399826,-0.004459863528609276,-0.06162971630692482,0.09478844702243805,0.06873089075088501,0.09500784426927567,0.06863217055797577,-0.08080154657363892,0.01794569380581379,-0.07955198734998703,0.05909440666437149,0.010522300377488136,-0.008053386583924294,-0.06788711249828339,-0.055333368480205536,-0.06187143549323082,0.09292826056480408,-0.038629934191703796,-0.030048808082938194,0.010329966433346272,0.02528510056436062,-0.0551598034799099,0.059978410601615906,0.04819527268409729,0.0445060171186924,0.031411055475473404,-0.03237321972846985,-0.02636704035103321,0.03612270578742027,-0.03627458214759827,-0.006156975869089365,-1.9584774690883933e-8,-0.06477916985750198,0.012824401259422302,-0.01056607160717249,0.11486610770225525,0.005359068978577852,-0.045022398233413696,-0.03328949958086014,0.01357336062937975,0.010290708392858505,0.04677293449640274,0.011399371549487114,-0.04279091954231262,0.034215111285448074,-0.056471046060323715,-0.041244883090257645,0.15365435183048248,-0.07542390376329422,-0.08766733109951019,-0.025863423943519592,-0.1253633350133896,-0.04657065495848656,0.015418083406984806,0.015847282484173775,0.02492084912955761,-0.035927701741456985,0.09996560215950012,-0.06844542175531387,-0.07566919922828674,0.045249924063682556,0.17656481266021729,-0.006040498148649931,-0.006727500353008509,-0.06425067037343979,-0.024691442027688026,-0.0024750398006290197,-0.04817315936088562,0.010038611479103565,0.03525076061487198,-0.04086250439286232,-0.110069140791893,-0.12594088912010193,-0.003940357360988855,0.08646474033594131,0.050740111619234085,0.025080913677811623,0.023724496364593506,0.007967326790094376,0.0737527534365654,-0.006050586234778166,-0.020643454045057297,-0.02744678407907486,0.0017171496292576194,-0.015700623393058777,0.16686952114105225,0.031388089060783386,0.050491850823163986,0.023788465186953545,0.004339801613241434,0.013388150371611118,0.10197976976633072,-0.04633950814604759,-0.03033784031867981,0.06206253916025162,-0.02407856471836567]},{"text":"A couple of shots are fired right under the window, and a bullet shatters the glass opposite Raina, who winks and gasps, but stands her ground, whilst Catherine screams, and the officer rushes to the balcony._) THE OFFICER. (_on the balcony, shouting savagely down to the street_).","book":"Down and Out in Paris and London","chapter":11,"embedding":[-0.006003201473504305,0.08523745834827423,0.006500239949673414,0.0178527869284153,0.06931909918785095,0.0581563338637352,0.10002733767032623,-0.04217015579342842,0.0075691561214625835,-0.040672119706869125,0.06437572836875916,-0.06947796791791916,-0.0506863109767437,0.0052550858817994595,-0.027567947283387184,-0.01451042015105486,0.0375063382089138,0.0294148288667202,-0.04528077319264412,0.06086226925253868,0.011654866859316826,-0.04675483703613281,0.07284634560346603,0.10446183383464813,-0.02993713691830635,-0.010642311535775661,0.060114629566669464,0.04436636343598366,-0.017722534015774727,-0.047713540494441986,0.03008197993040085,-0.05314086005091667,-0.01798229105770588,0.03788943961262703,-0.029237519949674606,-0.029006563127040863,0.10276065766811371,0.0008993829251267016,0.038563091307878494,0.044219572097063065,-0.024619203060865402,-0.034847863018512726,-0.0696396455168724,0.028852678835392,0.039053164422512054,-0.01100524514913559,0.020367132499814034,0.024211129173636436,0.025039371103048325,-0.07035264372825623,-0.08401207625865936,0.06153661757707596,-0.07391294091939926,-0.027271080762147903,0.002148503204807639,-0.09151961654424667,0.08195116370916367,0.003942671697586775,0.07829952985048294,0.024582387879490852,-0.04865260422229767,0.01113841775804758,-0.036615751683712006,0.10472117364406586,0.04328090324997902,-0.053775854408741,-0.042719922959804535,-0.01608547568321228,0.05096598342061043,0.04470169544219971,-0.018414657562971115,0.044299762696027756,0.059785258024930954,-0.05301360413432121,-0.0959058552980423,-0.05232695862650871,0.008858546614646912,-0.0828673392534256,-0.053438667207956314,0.010261552408337593,0.07680077850818634,-0.13361278176307678,-0.065036341547966,0.024135462939739227,0.041320204734802246,0.0015110891545191407,-0.03952352702617645,-0.0011307514505460858,-0.03835221379995346,0.04713425412774086,-0.04714144021272659,-0.04587550833821297,-0.010135339573025703,0.06487272679805756,0.04303010180592537,0.0273077804595232,-0.04773595556616783,-0.10163730382919312,-0.051002755761146545,0.04563234746456146,-0.0061720903031528,-0.0030177533626556396,-0.010404286906123161,-0.026336917653679848,-0.019767634570598602,0.010035568848252296,-0.07594528049230576,-0.07051404565572739,-0.04171903058886528,-0.026738109067082405,-0.004157517571002245,-0.02775879018008709,-0.024305559694767,-0.034398697316646576,0.03764185309410095,-0.026200778782367706,-0.01834363117814064,-0.016689741984009743,-0.016057919710874557,-0.05323787406086922,0.06302778422832489,0.02942728064954281,-0.0400584451854229,0.02935810573399067,0.002346781548112631,0.016157524660229683,0.04253419116139412,-2.334700941716986e-33,0.07799053192138672,-0.018102632835507393,-0.015581452287733555,0.07826690375804901,0.09386799484491348,-0.014237298630177975,-0.02816208079457283,0.03336869180202484,-0.021380074322223663,0.10133928805589676,-0.06122589483857155,-0.09606550633907318,-0.04978267475962639,-0.079436294734478,0.030574485659599304,0.02257576584815979,0.0009030852233991027,0.05615382641553879,-0.052915602922439575,0.038706447929143906,-0.02047021873295307,0.06265365332365036,-0.101844422519207,0.04339061304926872,0.003008754923939705,0.06017664819955826,0.013084721751511097,0.056399550288915634,0.03738173097372055,0.0029958393424749374,-0.061116140335798264,0.08931135386228561,0.026225531473755836,0.04908484220504761,0.06085122004151344,-0.07285343110561371,-0.06849651038646698,-0.015701867640018463,-0.007514554541558027,0.006247419398277998,-0.15442998707294464,-0.005591442808508873,-0.04582444950938225,0.022170983254909515,-0.0410432294011116,-0.05254611000418663,-0.1213560625910759,0.017173681408166885,0.024642372503876686,0.013783671893179417,0.05184398591518402,-0.034091800451278687,-0.002068273490294814,0.0744553878903389,0.03586047142744064,0.10825071483850479,0.03929061070084572,-0.05183353275060654,0.10080662369728088,-0.026705386117100716,0.05538587272167206,0.03690483793616295,-0.0035543683916330338,-0.0213532242923975,0.06218644976615906,-0.06745467334985733,-0.08303247392177582,-0.019540177658200264,0.044956520199775696,-0.04717061668634415,-0.05350571498274803,0.04227960854768753,0.04772051051259041,-0.0016133043682202697,-0.019026102498173714,-0.010425874963402748,-0.0014361231587827206,0.02313997410237789,0.021606534719467163,0.004761259071528912,0.005654457490891218,0.02731473557651043,0.04083749279379845,0.027496447786688805,0.037864744663238525,-0.011837074533104897,-0.03169425576925278,-0.14057452976703644,-0.03917117789387703,0.049760475754737854,-0.040783412754535675,-0.01739693246781826,0.08768215775489807,-0.04377985745668411,0.028124451637268066,-1.7833297374574005e-34,0.07299375534057617,0.0025976651813834906,-0.10331210494041443,-0.02579575777053833,0.003868148662149906,0.020990274846553802,-0.06516911834478378,-0.04199405759572983,0.026229290291666985,0.01777125895023346,-0.073125921189785,0.0005398771027103066,-0.002279050648212433,0.02746265009045601,0.07430557906627655,-0.07543908059597015,0.10826531052589417,0.009754274971783161,-0.10065172612667084,0.06788595020771027,0.06589646637439728,-0.07596366107463837,-0.0033582632895559072,-0.013608046807348728,0.05533885210752487,-0.009232317097485065,0.12689031660556793,0.03101406805217266,0.007124899886548519,-0.06277086585760117,0.0049947286024689674,-0.04414922744035721,-0.03500978276133537,0.003050092374905944,-0.025303373113274574,0.02765939198434353,0.002133355475962162,-0.0635238066315651,-0.058725111186504364,-0.0215295497328043,0.014155498705804348,0.03522888198494911,0.02967388927936554,0.03654323145747185,0.013474423438310623,-0.029863348230719566,0.052588339895009995,0.0163626316934824,-0.051892321556806564,-0.00501960190013051,-0.03344866260886192,-0.03671266883611679,-0.06659078598022461,0.11494513601064682,-0.006158594973385334,-0.061667367815971375,0.08919303119182587,-0.05877990275621414,0.0001492599694756791,-0.020939631387591362,0.01769956760108471,0.03870933875441551,-0.052037563174963,0.058745127171278,-0.05669825151562691,-0.02046882174909115,-0.09964602440595627,0.04532702639698982,-0.01532620470970869,0.006943503860384226,0.06627734750509262,-0.029415175318717957,-0.05642705410718918,0.02315296046435833,0.00012732812319882214,-0.0028796654660254717,-0.03194228932261467,0.0346723236143589,-0.013288991525769234,0.00221374467946589,0.0033535915426909924,-0.021343452855944633,-0.045217886567115784,0.07902546972036362,-0.015583209693431854,-0.037506189197301865,0.0751100704073906,0.0033259205520153046,-0.020385384559631348,0.006806117482483387,0.016155507415533066,0.044101256877183914,0.11709453910589218,-0.013506111688911915,0.01423835288733244,-3.544595728044442e-8,-0.1482834368944168,0.030611572787165642,-0.03861880674958229,-0.07896240055561066,-0.03166383132338524,-0.03785449266433716,0.024954387918114662,-0.02824728563427925,-0.02044859156012535,-0.129593625664711,0.022998355329036713,0.057381872087717056,0.03446497768163681,0.029146602377295494,-0.034066375344991684,0.06551285088062286,0.027399495244026184,-0.030923759564757347,0.0031600911170244217,0.028537124395370483,-0.01233997568488121,0.01999533548951149,0.0018374273786321282,0.04797717183828354,-0.023998789489269257,0.10760344564914703,-0.08977418392896652,-0.004864138551056385,-0.020633667707443237,0.13467617332935333,0.040295761078596115,-0.015397234819829464,-0.03914130851626396,-0.008264724165201187,-0.04706933721899986,0.04286271706223488,0.08653847873210907,0.024664364755153656,0.030629204586148262,-0.04036618024110794,-0.03521185368299484,-0.11115486919879913,-0.010887783020734787,0.01859903149306774,0.0579596683382988,0.07379242777824402,-0.004274716600775719,-0.08892767131328583,-0.04017511010169983,0.02675262838602066,0.018679803237318993,-0.023891182616353035,-0.035768210887908936,0.051497410982847214,0.0649678185582161,0.023943742737174034,0.036030787974596024,-0.04517367482185364,-0.050647392868995667,0.004532522056251764,0.056310735642910004,0.02908829227089882,-0.019124692305922508,0.08453187346458435]},{"text":"Good-night. (_Military bow, which Raina returns coldly.","book":"Down and Out in Paris and London","chapter":11,"embedding":[-0.04584529623389244,0.004497884772717953,0.04854210466146469,0.03970475494861603,-0.016102207824587822,-0.0005481175030581653,0.10208463668823242,-0.06396547704935074,0.011619828641414642,-0.04330511391162872,0.0006998883909545839,-0.028180809691548347,-0.054855380207300186,0.038073908537626266,0.023319846019148827,0.040661510080099106,0.056454263627529144,-0.06867457181215286,0.020768553018569946,0.0036985233891755342,-0.02912363037467003,0.018287498503923416,0.04497912898659706,0.050166916102170944,-0.0519210509955883,0.01015124749392271,0.05580989271402359,0.0232692901045084,-0.0374758318066597,-0.11773354560136795,-0.05492866411805153,0.03380921855568886,-0.01300259679555893,-0.02046092599630356,-0.0618378110229969,0.09997198730707169,0.0752769261598587,-0.03611487150192261,-0.025713805109262466,0.033815402537584305,0.012445392087101936,0.053069714456796646,-0.028437552973628044,-0.03148273006081581,-0.00986604206264019,-0.06147118657827377,0.04379349201917648,0.04392538592219353,0.0636402815580368,0.05922428146004677,0.023167790845036507,0.02018057554960251,-0.08148123323917389,0.04986017197370529,0.08030938357114792,0.018132157623767853,0.046932611614465714,-0.06964172422885895,0.10727509111166,0.003972615581005812,-0.017884332686662674,0.07943443208932877,-0.03666252642869949,0.06113499402999878,0.07834766805171967,-0.07997340708971024,-0.04156507924199104,0.014107589609920979,-0.08832087367773056,0.07018525153398514,-0.0007549199508503079,-0.009317007847130299,-0.012261509895324707,0.04217517375946045,-0.1156197041273117,0.03583533316850662,0.020833073183894157,0.0012574297143146396,0.03441953286528587,0.013796932995319366,0.04296315088868141,-0.011229055933654308,-0.06830353289842606,0.071975477039814,0.00582347484305501,0.05931345000863075,-0.06124914810061455,-0.06403534859418869,0.02223861590027809,-0.04267377033829689,0.003454015124589205,-0.01346609927713871,-0.006401838734745979,0.0583193264901638,0.022663811221718788,0.03642202168703079,0.017906589433550835,-0.07330808788537979,-0.07319945842027664,0.0684722512960434,0.048713453114032745,-0.034349601715803146,-0.023911334574222565,-0.04480527713894844,-0.024766169488430023,0.0031717312522232533,-0.01867692545056343,-0.0017313591670244932,0.005714963190257549,-0.051239997148513794,-0.05432751029729843,-0.046559661626815796,-0.03132987767457962,0.0032192254438996315,0.018515784293413162,0.07345574349164963,-0.07868923246860504,-0.015994509682059288,-0.06827833503484726,0.10196048021316528,0.005211098585277796,0.007174601778388023,0.0548492893576622,-0.019021961838006973,-0.030500033870339394,0.01687047816812992,0.0003745180438272655,-4.6976350536888156e-33,0.08203162252902985,0.003733908524736762,-0.003402505535632372,-0.0411803163588047,0.07898537069559097,-0.03469987213611603,0.017903978005051613,0.007815294899046421,-0.0620914027094841,0.03325609117746353,-0.04715845361351967,0.032757531851530075,-0.03740836679935455,-0.06966691464185715,0.021329892799258232,0.049893055111169815,0.07448189705610275,-0.04178890585899353,0.005326686426997185,0.036598242819309235,-0.014076965861022472,0.0676431879401207,-0.0589456707239151,-0.03415042161941528,0.008208206854760647,0.03158271685242653,0.07866991311311722,0.062409259378910065,0.03992508724331856,0.018663257360458374,-0.036918848752975464,0.007049404084682465,0.17080236971378326,0.0012684506364166737,0.07496902346611023,-0.023102043196558952,-0.06751298159360886,-0.03963835909962654,-0.11070433259010315,-0.023222602903842926,-0.043412916362285614,0.004092433024197817,-0.08194591104984283,0.023674558848142624,-0.02899451181292534,-0.12624429166316986,-0.014520040713250637,-0.0077189612202346325,0.0032185229938477278,-0.06395702064037323,0.0819912776350975,0.07389429211616516,0.007920603267848492,-0.017507951706647873,-0.025742745026946068,0.07013681530952454,0.011401526629924774,0.05537855997681618,0.04402459040284157,-0.026201363652944565,0.03178388252854347,-0.03246140107512474,0.08817796409130096,-0.10882220417261124,-0.0008706793887540698,-0.012164588086307049,-0.12512461841106415,0.008762349374592304,-0.0028296159580349922,-0.05744457244873047,-0.033363740891218185,-0.010456482879817486,-0.002694679656997323,0.010308596305549145,0.0025178082287311554,-0.03790467604994774,-0.007858098484575748,-0.0269223153591156,0.1065792664885521,-0.05556870624423027,-0.08637284487485886,-0.02415425144135952,-0.0018163018394261599,0.0586673729121685,-0.02623784728348255,-0.055580321699380875,0.01590176485478878,-0.09680750221014023,-0.04957873746752739,0.06026151031255722,-0.026485681533813477,-0.001352231833152473,0.004522575531154871,-0.05798700451850891,0.0070010083727538586,2.216378251757107e-33,0.11932072788476944,0.05440213903784752,-0.09769690036773682,0.04002765193581581,-0.02529558539390564,-0.020759353414177895,-0.04312732815742493,0.020255090668797493,-0.03299890086054802,0.07119256258010864,0.011510484851896763,-0.015637101605534554,-0.06350390613079071,-0.011384451761841774,0.15681079030036926,-0.016046645119786263,0.11201540380716324,0.015719622373580933,0.003775514429435134,-0.03674262389540672,0.0656164214015007,-0.040211621671915054,0.02194480411708355,-0.08576038479804993,-0.03035396710038185,0.027707532048225403,0.05853937193751335,-0.01592172496020794,-0.056516848504543304,-0.005197324324399233,0.01747063547372818,-0.04638626053929329,-0.05708494409918785,0.0673055425286293,0.009278095327317715,0.041471488773822784,-0.027774890884757042,-0.1572830229997635,-0.0007217927486635745,-0.025988591834902763,0.04985132813453674,-0.049469541758298874,0.08212323486804962,0.09678444266319275,-0.04883549362421036,-0.012584294192492962,-0.0308520570397377,0.10318133980035782,0.08698642998933792,-0.022568747401237488,0.03467278182506561,-0.07208956032991409,0.017440367490053177,0.07790328562259674,-0.014799128286540508,-0.0022839221637696028,0.08813135325908661,-0.042177025228738785,-0.009392942301928997,0.05261394381523132,-0.019565006718039513,-0.07070926576852798,-0.011255941353738308,-0.01231455709785223,-0.02985340915620327,-0.06986217200756073,-0.03637571632862091,0.026504628360271454,-0.006882587447762489,-0.0016389816300943494,0.04914850741624832,-0.02687748149037361,-0.08266925811767578,0.0735689327120781,0.009309612214565277,0.033529557287693024,0.0017239736625924706,-0.03489193320274353,0.058779533952474594,0.008703123778104782,-0.06199929118156433,-0.011910464614629745,-0.09788808971643448,-0.003791984636336565,0.03503822535276413,-0.11415430903434753,0.042927514761686325,0.03969372808933258,0.034457337111234665,0.043404966592788696,0.02293100580573082,-0.04944586753845215,0.05973225086927414,-0.030735816806554794,0.04289546608924866,-1.8871997298219867e-8,-0.1033310666680336,0.020762307569384575,-0.020352324470877647,-0.0200845655053854,-0.029558993875980377,-0.003970208112150431,-0.031094539910554886,-0.030405396595597267,0.009240202605724335,-0.08058933168649673,0.08406674861907959,0.08601553738117218,0.016932396218180656,-0.017243139445781708,0.04799459129571915,0.009438598528504372,0.06645538657903671,-0.03919297084212303,-0.044988587498664856,-0.07946738600730896,-0.018770284950733185,-0.03183255344629288,0.01918789930641651,0.040746212005615234,-0.03173145651817322,0.023775385692715645,-0.023787077516317368,0.05520462989807129,0.001367864664644003,0.14118841290473938,0.083003930747509,0.004942568019032478,-0.04721396043896675,-0.0016908952966332436,-0.02784530259668827,0.026035957038402557,-0.03007882833480835,0.029350565746426582,0.022845977917313576,0.061433691531419754,0.06391848623752594,0.01073001604527235,-0.04623062536120415,-0.037696462124586105,-0.0027925290632992983,0.054485004395246506,0.07760358601808548,-0.06116678938269615,-0.05884673446416855,-0.023219015449285507,-0.010941042564809322,-0.06593687832355499,-0.026193594560027122,0.04108468443155289,-0.010396729223430157,0.022856423631310463,0.031625110656023026,-0.03196434676647186,0.02571803145110607,-0.017460083588957787,0.026714632287621498,-0.04127051681280136,-0.04405893757939339,0.06065403297543526]},{"text":"A narrow shave; but a miss is as good as a mile.","book":"Down and Out in Paris and London","chapter":12,"embedding":[0.09363581985235214,0.05310192331671715,0.06006995216012001,0.026523075997829437,-0.07943162322044373,-0.04632100462913513,-0.017326492816209793,0.041043855249881744,-0.025798801332712173,0.013268163427710533,0.08623407036066055,-0.02796301059424877,-0.05976025015115738,-0.0026766082737594843,0.004123313818126917,-0.014712292701005936,0.06023852899670601,-0.027933087199926376,-0.02357088401913643,0.03530462831258774,0.01745801605284214,0.06958983093500137,-0.0032532415352761745,0.0816650390625,-0.06406402587890625,-0.02953317016363144,-0.0005255375290289521,0.03278898447751999,-0.05096204951405525,-0.015237528830766678,-0.016298633068799973,-0.014469677582383156,-0.03434843569993973,-0.09840213507413864,0.012593308463692665,-0.016648264601826668,0.031898412853479385,0.08451659232378006,0.04819410294294357,-0.029057972133159637,-0.02513013407588005,0.027512794360518456,0.03175722062587738,0.042570218443870544,-0.05757296830415726,-0.1054806262254715,0.04412177950143814,0.004246935714036226,0.01264284923672676,-0.046117302030324936,0.036878764629364014,-0.11884038150310516,-0.06998823583126068,-0.03619617968797684,0.003361328737810254,-0.0031119866762310266,-0.09206422418355942,0.07742659002542496,-0.03533724322915077,0.007699654437601566,-0.040512580424547195,-0.012014344334602356,-0.0045841229148209095,-0.015080093406140804,0.007326091174036264,-0.11678354442119598,-0.038018565624952316,-0.10493187606334686,-0.043015170842409134,0.035905975848436356,-0.059739381074905396,0.05898187682032585,-0.11320465803146362,0.06820504367351532,-0.03425532951951027,-0.019440017640590668,0.06677719205617905,0.009921818040311337,0.00846250168979168,0.07177575677633286,-0.0874674916267395,-0.025278393179178238,0.043150659650564194,0.04332314431667328,0.03210067376494408,-0.033866118639707565,-0.0020596017129719257,-0.046726636588573456,-0.04687207564711571,-0.018639259040355682,-0.04616755247116089,-0.005053862929344177,-0.026254698634147644,-0.010828057304024696,0.022915232926607132,-0.0049171894788742065,0.013579858466982841,0.09368707984685898,-0.0032048404682427645,0.05534757673740387,0.05597352236509323,0.020177535712718964,-0.030509719625115395,0.03978171572089195,0.02863507717847824,0.04991785064339638,-0.024164529517292976,0.002037139842286706,0.07913273572921753,-0.009762194938957691,0.0021342607215046883,-0.05051160603761673,-0.05843247473239899,0.0004794113337993622,-0.009944133460521698,-0.04875331372022629,0.0430915504693985,-0.04007871448993683,0.09408475458621979,0.017614979296922684,-0.12797585129737854,-0.004808224271982908,0.01178630068898201,-0.05904107913374901,-0.008038395084440708,0.005923049058765173,0.08184278011322021,-5.347418576122621e-33,-0.017219042405486107,0.09692297875881195,0.03093813918530941,-0.024114562198519707,0.002202848671004176,0.06520496308803558,-0.004170248284935951,-0.014280467294156551,-0.037556566298007965,0.007917613722383976,-0.018463192507624626,0.02442014031112194,0.007554048206657171,-0.0402502603828907,0.13127434253692627,-0.007567566819489002,0.002292261691763997,0.052404966205358505,-0.09141553938388824,-0.035294175148010254,-0.03764013200998306,0.0132038164883852,0.037021294236183167,0.05466696247458458,0.05123669281601906,-0.0927712544798851,0.06653910875320435,-0.07372912764549255,-0.02642875723540783,0.0553290992975235,-0.06720349937677383,0.05698535218834877,0.07789982855319977,-0.01845189556479454,-0.046714141964912415,0.041871894150972366,-0.03860499709844589,-0.06355726718902588,0.025664780288934708,0.05149669200181961,-0.0014266057405620813,0.014901750721037388,0.020543469116091728,-0.028244199231266975,-0.015254033729434013,0.01976684480905533,0.07333922386169434,0.07742039859294891,-0.1158706471323967,0.004900765605270863,0.053925007581710815,-0.021333670243620872,0.09478697180747986,0.004354929551482201,-0.05119463801383972,-0.01413408201187849,0.06853276491165161,-0.043187644332647324,-0.03580470755696297,0.01876053959131241,0.019619878381490707,-0.002673471812158823,0.022236056625843048,-0.03244359418749809,-0.04494335129857063,-0.02787461318075657,0.05752945318818092,0.018142081797122955,0.020217839628458023,0.06869541108608246,-0.023523792624473572,0.07327286899089813,0.0613858588039875,0.007286698091775179,-0.03763961046934128,-0.007475299760699272,0.010647445917129517,-0.06730583310127258,0.026962485164403915,-0.032482992857694626,-0.037278786301612854,0.09733933955430984,-0.09085685014724731,-0.06327689439058304,0.015140385366976261,-0.06081681326031685,0.0016995042096823454,-0.0024265043903142214,-0.051214996725320816,-0.04261906072497368,-0.01099120732396841,-0.005606445483863354,-0.042016033083200455,0.02828941121697426,-0.02760472521185875,3.0163886665290545e-33,0.03782995417714119,0.0017786786193028092,0.08010082691907883,0.1116538792848587,0.0575750395655632,0.035124629735946655,0.10243058949708939,0.055152323096990585,-0.04829862341284752,0.00308008911088109,-0.0775175392627716,-0.09064597636461258,0.041963130235672,-0.0314958281815052,0.011842615902423859,0.032726459205150604,0.07712790369987488,-0.16474677622318268,0.04929117113351822,0.004073864780366421,0.0838334858417511,-0.007276387885212898,0.05372423306107521,0.004969353321939707,-0.09863646328449249,0.02211650274693966,-0.05758841708302498,-0.10232827812433243,-0.11484115570783615,-0.02065919153392315,-0.023161698132753372,-0.008275630883872509,0.0011657868744805455,-0.04264620691537857,-0.03250551596283913,0.09373929351568222,-0.0013357105199247599,0.007321305572986603,-0.0014797546900808811,0.08774035423994064,0.00019239634275436401,-0.03628130629658699,0.08046159148216248,0.1340843141078949,0.01825239695608616,-0.04302309826016426,0.016833899542689323,0.004950798116624355,-0.04936357960104942,0.022220492362976074,-0.032175276428461075,-0.05732680857181549,-0.043173305690288544,0.14992861449718475,-0.0893142893910408,-0.04630143195390701,-0.04182938486337662,0.019038207828998566,-0.06532282382249832,0.05185585841536522,-0.05321121588349342,-0.09233977645635605,-0.05785286799073219,0.10260334610939026,-0.044438883662223816,-0.030859727412462234,-0.034355804324150085,-0.012442233972251415,-0.0215610358864069,-0.0029660463333129883,-0.06529095023870468,-0.0033459204714745283,0.016070516780018806,0.011606467887759209,-0.034612979739904404,-0.020541099831461906,0.09741806238889694,-0.038167502731084824,0.01275084912776947,0.09529300779104233,-0.06132951378822327,-0.029967736452817917,0.006851069629192352,0.013439446687698364,0.08974617719650269,0.003558982163667679,-0.03377386927604675,0.033093761652708054,-0.011468667536973953,0.0014846629928797483,-0.03666805848479271,0.07212544977664948,-0.03838140517473221,-0.08688628673553467,-0.00947894062846899,-1.9580541632535642e-8,-0.03729360178112984,0.10979994386434555,0.07702488452196121,0.043778810650110245,0.028301170095801353,0.017866553738713264,-0.0001167151058325544,-0.0172018613666296,-0.06342541426420212,0.012797318398952484,0.02688628062605858,0.016048047691583633,-0.011184063740074635,0.07799621671438217,-0.004404339008033276,-0.01640845648944378,0.004252265673130751,0.06461471319198608,-0.02095004916191101,0.10804940015077591,-0.08082748204469681,0.00918261706829071,-0.039206840097904205,0.012553860433399677,0.0038695731200277805,-0.04828331992030144,-0.03933512791991234,0.054020244628190994,0.019336923956871033,-0.007287617307156324,0.016051817685365677,0.037810247391462326,-0.010215074755251408,-0.016755983233451843,-0.02927200309932232,0.035705696791410446,0.02289436385035515,-0.006790978368371725,-0.046773429960012436,0.03975703567266464,0.004519273992627859,-0.10187707096338272,0.03825252875685692,0.026229968294501305,-0.004268746357411146,-0.041559576988220215,0.07093919813632965,-0.029778266325592995,-0.06419055163860321,0.04687321186065674,0.0678769126534462,-0.05463956668972969,-0.012115657329559326,0.03137930855154991,0.08421435952186584,-0.02079908177256584,0.00038033476448617876,-0.03165263682603836,-0.049074437469244,0.03524861857295036,0.03464492782950401,-0.05984964966773987,-0.048070915043354034,0.055155977606773376]},{"text":"I am only a Swiss, fighting merely as a professional soldier.","book":"Down and Out in Paris and London","chapter":12,"embedding":[0.020058028399944305,0.09530016034841537,0.008109169080853462,-0.025736315175890923,0.08600577712059021,-0.026947319507598877,0.032553255558013916,-0.008441552519798279,-0.02647998370230198,-0.026317957788705826,-0.030704285949468613,-0.03546752780675888,0.018271328881382942,0.06498362123966217,0.014954512938857079,-0.047883182764053345,-0.05138450860977173,-0.039403174072504044,-0.003387501696124673,0.014384675770998001,-0.07574772834777832,-0.002627879148349166,0.07832126319408417,0.10398469120264053,0.029810449108481407,-0.03171050548553467,0.04187770187854767,-0.031408049166202545,-0.01572323404252529,-0.016490044072270393,-0.019322171807289124,-0.013547989539802074,-0.06950443238019943,0.03159933164715767,-0.05273643881082535,0.07718223333358765,0.03599623590707779,0.002484392374753952,-0.058474212884902954,0.03328895941376686,0.012286532670259476,-0.005469086114317179,0.07629243284463882,-0.042884185910224915,0.11898017674684525,0.05837453529238701,0.01602906920015812,-0.012179931625723839,0.026118062436580658,0.018344976007938385,-0.001916591776534915,0.018424207344651222,0.02865837886929512,0.030997619032859802,-0.015508630312979221,-0.055987901985645294,0.06283479928970337,0.010444500483572483,0.02841532602906227,-0.01039237529039383,-0.03659208118915558,-0.0005465017748065293,-0.043896932154893875,0.051187675446271896,-0.04703538492321968,0.03499215468764305,-0.003752100747078657,0.006723839323967695,-0.10775434225797653,0.028829162940382957,-0.03328486159443855,0.04363423213362694,0.03874003142118454,0.10968361794948578,0.034825943410396576,-0.10277076810598373,0.001785309286788106,-0.02092578448355198,0.0922234058380127,0.03608312830328941,0.0035930920857936144,0.01080294419080019,-0.07879025489091873,0.08453983813524246,0.08014317601919174,0.018896501511335373,0.03617354854941368,0.01706169731914997,0.07380704581737518,-0.03491724655032158,-0.012474987655878067,0.04891611263155937,0.06113902106881142,0.08525519073009491,-0.015975406393408775,-0.013366887345910072,0.06580538302659988,0.10019172728061676,-0.11680065840482712,0.06477851420640945,0.07583288103342056,-0.13932107388973236,-0.015315483324229717,-0.006892180070281029,-0.06484396755695343,0.021145178005099297,-0.02708955481648445,-0.000979245058260858,-0.0622413232922554,-0.017642008140683174,0.007193118799477816,0.017286257818341255,-0.02908148244023323,-0.012728503905236721,-0.005683612078428268,0.07667288184165955,-0.019438855350017548,-0.09222050756216049,0.04839899763464928,0.024066992104053497,0.03176475688815117,0.04502091929316521,-0.07882169634103775,0.018674788996577263,0.006646035239100456,-0.037360623478889465,0.01747100241482258,-4.8101629238411254e-33,0.005746021866798401,0.011978422291576862,0.05055590346455574,0.06332746148109436,-0.04465670511126518,-0.005730682983994484,-0.023881159722805023,-0.06051276996731758,-0.045939743518829346,-0.017245613038539886,-0.036205265671014786,0.04973307251930237,0.01791369356215,0.05887719616293907,0.0011648022336885333,0.04198690131306648,0.00556144816800952,-0.005574615206569433,0.004390545189380646,0.09097740799188614,0.043953657150268555,-0.03967450186610222,-0.07316382974386215,0.058185216039419174,0.008863326162099838,-0.04849907383322716,0.03433900326490402,0.04091564565896988,-0.07389474660158157,0.0026669655926525593,-0.025259416550397873,0.059150390326976776,0.026735398918390274,-0.04534914717078209,0.0322997123003006,0.01799277774989605,-0.0008188277715817094,0.011013363488018513,-0.04044877737760544,-0.02983693778514862,0.017152538523077965,0.01295333169400692,-0.09458004683256149,-0.013330496847629547,0.08795283734798431,-0.005576904397457838,0.017690634354948997,-0.01322800200432539,-0.06357718259096146,-0.03927323594689369,-0.037940625101327896,0.06868885457515717,-0.04430418461561203,0.007083464879542589,0.0504176951944828,0.028103947639465332,-0.009597199968993664,0.01066273171454668,-0.119132399559021,0.0026086964644491673,-0.004610816948115826,0.051928166300058365,-0.000047452656872337684,0.1142200380563736,-0.09486707299947739,-0.010529697872698307,-0.07187044620513916,0.0713987797498703,0.008146421052515507,-0.0831475555896759,0.026854924857616425,-0.004328993149101734,0.05357689782977104,-0.052176397293806076,-0.04934858903288841,-0.006440103519707918,0.03180784732103348,0.09299222379922867,0.029221218079328537,-0.02799374982714653,0.005865089595317841,-0.017770955339074135,-0.013409855775535107,0.07785782963037491,0.006708657834678888,-0.007552212569862604,0.11207377165555954,-0.08573104441165924,0.011835373938083649,-0.008358270861208439,-0.060949672013521194,-0.07929170876741409,0.03765511512756348,-0.04606321081519127,-0.10865655541419983,2.9241524002658298e-33,0.041233308613300323,-0.02000304125249386,0.08024616539478302,0.03679464012384415,0.02352915145456791,0.018835801631212234,0.06425631046295166,0.0665428563952446,-0.034862931817770004,0.1057468131184578,0.014102121815085411,0.011065243743360043,-0.01457278709858656,0.008721466176211834,0.033554140478372574,-0.01171164121478796,-0.04709126800298691,0.07057483494281769,0.0632258877158165,-0.027909167110919952,0.038516417145729065,0.019160354509949684,0.022230014204978943,-0.023125657811760902,-0.011876058764755726,-0.0028632748872041702,0.0014862535754218698,0.10356462001800537,-0.04089764133095741,-0.03829297795891762,0.003846304025501013,-0.056628622114658356,-0.12868337333202362,-0.030135730281472206,-0.020338494330644608,0.022348610684275627,-0.04263288155198097,-0.005960436072200537,0.043623603880405426,-0.015049539506435394,-0.1504749208688736,-0.03857298195362091,-0.02127973549067974,0.02610764279961586,0.011249084025621414,-0.10555998235940933,-0.015399320982396603,-0.08072739094495773,-0.10539975017309189,-0.0958315059542656,-0.031900543719530106,-0.015187254175543785,0.033929262310266495,-0.05983155593276024,-0.029110411182045937,-0.009509989060461521,-0.044294510036706924,-0.0507035031914711,0.003938623238354921,-0.023295875638723373,-0.05062698945403099,0.0400281697511673,-0.0473959855735302,0.05020200461149216,0.00814694631844759,-0.15488865971565247,-0.11354272812604904,0.04345613718032837,0.02023147977888584,0.08173615485429764,0.04340488091111183,0.06079070642590523,0.0059098731726408005,0.06541646271944046,0.025431277230381966,-0.05294443666934967,-0.013730407692492008,0.048537347465753555,-0.00415828637778759,0.06103983148932457,0.005206063389778137,-0.045258086174726486,0.044227857142686844,0.02427709847688675,-0.07593105733394623,0.055754199624061584,0.014007115736603737,0.009357844479382038,0.045109931379556656,-0.0027835266664624214,-0.029896330088377,0.016301503404974937,-0.04705791175365448,-0.04683563858270645,0.06054563447833061,-1.990697384712803e-8,-0.04273119196295738,0.028586966916918755,-0.013119721785187721,0.035665757954120636,-0.15771101415157318,-0.04688655585050583,0.02469237707555294,-0.1128949373960495,0.034045614302158356,0.01656992733478546,-0.04847003147006035,0.013994392938911915,0.06471312791109085,-0.07076787948608398,-0.00365745322778821,0.04024333506822586,0.020897405222058296,-0.014189621433615685,-0.028097642585635185,0.09672985225915909,0.021327462047338486,0.008363560773432255,-0.03903541341423988,-0.00007324081525439397,-0.028645921498537064,0.030634455382823944,0.009910764172673225,-0.011320643126964569,-0.0005212198593653738,0.09615275263786316,-0.08391968905925751,-0.017668692395091057,-0.04458821192383766,-0.06238283962011337,0.0235343836247921,0.037410542368888855,-0.08942344039678574,-0.04170368239283562,-0.03143775835633278,0.00012401596177369356,-0.03130289912223816,0.02096649818122387,0.10817541927099228,0.049332696944475174,-0.03180240839719772,-0.02723243273794651,-0.04678921028971672,-0.07707373052835464,0.005159197375178337,0.0042391554452478886,0.12921935319900513,0.034541673958301544,0.011266013607382774,0.06191319227218628,0.005700293462723494,0.07352694869041443,-0.002279950538650155,0.044498760253190994,-0.05883493646979332,0.03593596816062927,0.07108036428689957,-0.0984511524438858,-0.035934802144765854,-0.0003937510773539543]},{"text":"I must take my chance to get off during a quiet interval.","book":"Down and Out in Paris and London","chapter":12,"embedding":[-0.009354490786790848,-0.05450946092605591,0.08288383483886719,0.04438687488436699,0.013937157578766346,-0.04612254351377487,0.08886377513408661,-0.07482816278934479,0.015899349004030228,-0.07797511667013168,-0.07085243612527847,-0.013649172149598598,-0.05771623179316521,-0.012817529030144215,0.04715616628527641,0.03968723863363266,0.12408823519945145,-0.036343444138765335,-0.02107217349112034,0.09584721177816391,-0.012249237857758999,0.059544507414102554,0.044265519827604294,0.07183224707841873,-0.01743776723742485,-0.014801638200879097,0.01521390862762928,-0.03071998804807663,0.02935544028878212,-0.012217574752867222,0.01620243862271309,0.00031722549465484917,0.04287765547633171,-0.06755192577838898,-0.024910802021622658,-0.012624620459973812,0.0003390444617252797,0.0032358348835259676,0.11827760189771652,0.05208026245236397,0.04889820143580437,-0.02601345255970955,0.03710952028632164,-0.017033174633979797,0.005381874740123749,0.005002256948500872,-0.052917614579200745,-0.057006459683179855,0.08363910019397736,-0.0024874419905245304,-0.01512858085334301,0.017278408631682396,-0.010579175315797329,0.009333436377346516,0.008763410151004791,0.054315268993377686,0.046952761709690094,-0.012611070647835732,0.06228451803326607,0.03189821541309357,-0.12657825648784637,0.017038555815815926,-0.05788598582148552,0.004747220315039158,0.03770837187767029,0.06674883514642715,-0.03492185100913048,-0.020512904971837997,0.03541380167007446,0.045287154614925385,-0.09016402065753937,0.034893617033958435,-0.020711824297904968,0.04165205731987953,-0.02487747184932232,-0.006871939171105623,0.01805787906050682,-0.11022747308015823,0.05430900305509567,0.06227875500917435,-0.0129973404109478,-0.06420128792524338,0.0004545769770629704,0.0033515107352286577,-0.04588133841753006,-0.07490135729312897,0.0924392119050026,0.06562943756580353,-0.002876087324693799,-0.01651531085371971,-0.05840132758021355,-0.008929939940571785,-0.045129451900720596,0.05610710382461548,0.004841114394366741,0.004746957216411829,-0.06290753185749054,0.023676501587033272,-0.06533222645521164,0.04393014684319496,0.011325590312480927,-0.04374994710087776,-0.04264570027589798,0.004450109787285328,-0.06481004506349564,-0.010590234771370888,-0.042712826281785965,0.039097029715776443,-0.04086066037416458,-0.028945503756403923,-0.0001437687751604244,0.005460723768919706,-0.010571233928203583,0.059671446681022644,-0.003204952459782362,0.15515244007110596,-0.03602325916290283,0.056645218282938004,0.06156878173351288,-0.017285333946347237,0.057995814830064774,0.02690691128373146,-0.016490185633301735,-0.032435692846775055,0.009909724816679955,-0.07626716047525406,0.027398154139518738,-5.6859381739563925e-33,-0.037992943078279495,-0.06845250725746155,-0.025930017232894897,0.07416681200265884,0.08171062916517258,-0.04216940328478813,-0.09049949049949646,-0.029751144349575043,0.006614911835640669,0.027923911809921265,0.04030664637684822,-0.03509049862623215,-0.03875661641359329,-0.11360446363687515,0.05927663296461105,-0.008590949699282646,0.08413218706846237,0.02728850021958351,-0.0316324420273304,-0.03287049010396004,0.10590677708387375,-0.10295527428388596,-0.032054536044597626,0.08044026046991348,0.03157094493508339,0.023666629567742348,-0.0013874699361622334,-0.0743771493434906,0.048191290348768234,0.04127540811896324,-0.05241197347640991,0.007789173163473606,-0.07027129083871841,-0.01005265861749649,-0.019174374639987946,-0.028765486553311348,-0.00164135848172009,0.029650691896677017,0.02297876589000225,-0.020567670464515686,-0.0748092532157898,0.010923629626631737,0.011227380484342575,0.034514881670475006,0.06428343802690506,-0.012768914923071861,0.0006594438455067575,0.04610893875360489,-0.010537813417613506,0.030568422749638557,-0.04061826318502426,0.03413965925574303,0.05117887631058693,-0.06738531589508057,-0.037932924926280975,-0.04916273429989815,0.060324862599372864,-0.03235940262675285,-0.03331541642546654,0.038672301918268204,-0.008232856169342995,0.03600829094648361,0.0025065287481993437,-0.0433100163936615,-0.02416456863284111,0.06256147474050522,-0.07083705812692642,-0.014873461797833443,-0.03373241797089577,-0.0008850038866512477,0.027091730386018753,0.005137177649885416,-0.0011403943644836545,-0.06720774620771408,0.006335575133562088,-0.0023650615476071835,-0.0033050605561584234,0.006795268040150404,0.021114030852913857,-0.012694313190877438,0.09714574366807938,-0.00586832407861948,-0.0526476725935936,-0.0341806598007679,0.12037467211484909,-0.02938334085047245,0.016048088669776917,-0.09021802246570587,-0.06528723984956741,-0.06132601201534271,-0.09257320314645767,0.01874481700360775,0.05329223349690437,-0.04920438677072525,-0.09175700694322586,4.352221181487471e-33,0.07777842879295349,-0.022366032004356384,0.0587424598634243,0.05563715100288391,0.015716327354311943,0.05952228605747223,0.03009621612727642,0.08098305016756058,-0.022024573758244514,0.15277820825576782,-0.013328791595995426,0.00022824697953183204,0.008087092079222202,-0.035675376653671265,0.017131440341472626,-0.09689553081989288,0.08331336826086044,-0.008911021053791046,-0.05196553096175194,0.09031502157449722,0.013186169788241386,-0.04570820927619934,0.023735782131552696,-0.005811681970953941,-0.04064934700727463,0.035591673105955124,0.0030048941262066364,0.05262049660086632,-0.09340748935937881,-0.037616390734910965,-0.14735330641269684,-0.034465208649635315,-0.025409379974007607,-0.13294479250907898,0.003949860110878944,0.07573562860488892,-0.022569812834262848,0.02788384072482586,-0.025955315679311752,0.018197864294052124,-0.010652595199644566,0.03162858635187149,0.019349776208400726,-0.010347791016101837,-0.012931551784276962,0.045094963163137436,0.04335286095738411,0.0022623459808528423,-0.11410520225763321,0.03623449057340622,0.019185641780495644,0.016611644998192787,0.02692808210849762,0.06698029488325119,-0.02889806590974331,0.02814559079706669,-0.04386990889906883,-0.04726141691207886,0.03090248815715313,0.003106487449258566,0.03705152869224548,0.0446416512131691,-0.04659941419959068,0.0505220927298069,0.11783216893672943,-0.06289384514093399,-0.060580551624298096,0.0631992444396019,0.031290970742702484,-0.024788809940218925,-0.0020172877702862024,-0.006367916706949472,0.018245622515678406,-0.01772618480026722,-0.06444070488214493,0.010048018768429756,0.0070543307811021805,-0.07224296778440475,-0.01746438629925251,-0.03118026629090309,0.01644039899110794,-0.03484220802783966,0.011519184336066246,-0.016038978472352028,0.003725610440596938,0.02213020995259285,-0.01584261655807495,0.004530003760010004,0.028622960671782494,0.013655243441462517,0.01259984727948904,0.0809997171163559,0.08557499200105667,-0.00683271698653698,0.04043199121952057,-2.1116067117077364e-8,-0.018233034759759903,-0.05828149616718292,0.0446154847741127,-0.0871267095208168,0.05807294696569443,-0.04286127910017967,-0.06089399755001068,-0.02842915616929531,-0.06852095574140549,-0.017552200704813004,0.16100932657718658,-0.05243301019072533,0.0703502669930458,0.059913333505392075,0.010336413979530334,0.028279580175876617,0.0017949860775843263,0.010131122544407845,-0.02645021118223667,0.014002976007759571,-0.0016686766175553203,-0.04342397674918175,-0.006461943965405226,0.02736184373497963,0.05903453752398491,0.039521027356386185,0.02900422364473343,0.0495254248380661,0.04079567268490791,-0.015460170805454254,-0.01104867085814476,0.037310387939214706,-0.06842317432165146,0.027034007012844086,-0.0761633962392807,-0.02683200128376484,0.04875737428665161,0.0033146212808787823,-0.012436103075742722,-0.04156036674976349,-0.04841488599777222,-0.045837707817554474,-0.05949077755212784,0.1398693174123764,0.01644148677587509,-0.042877282947301865,0.03105253353714943,0.0233547892421484,0.04588288441300392,0.05316008999943733,-0.003893441054970026,0.009737575426697731,0.062024835497140884,0.017733050510287285,0.022902535274624825,0.04606850817799568,-0.05420415475964546,0.007983517833054066,-0.12794817984104156,-0.02633613534271717,0.10296734422445297,0.013047891668975353,-0.1870223730802536,-0.06866561621427536]},{"text":"MAN. (_vexed at being unnecessarily terrified_).","book":"Down and Out in Paris and London","chapter":13,"embedding":[0.08420080691576004,0.01681515760719776,0.03500416874885559,0.06786537915468216,-0.003127071773633361,-0.034497786313295364,0.015137416310608387,-0.07831456512212753,0.014085634611546993,-0.10016832500696182,-0.005481773056089878,0.004404902458190918,0.06443262845277786,-0.05352726951241493,-0.01684119924902916,-0.02560998685657978,-0.06323208659887314,-0.044858358800411224,0.008618036285042763,0.09362275898456573,-0.023889722302556038,0.026614973321557045,0.036047451198101044,-0.0085680540651083,-0.01310722716152668,-0.008393351919949055,0.03664300963282585,0.0019734161905944347,0.011589412577450275,0.03513721749186516,-0.022177953273057938,-0.0073412577621638775,-0.014684490859508514,-0.07345090061426163,-0.04535865783691406,-0.03742457181215286,0.03424897417426109,-0.016027934849262238,-0.004317332524806261,-0.02871745452284813,0.007949549704790115,0.010276144370436668,0.04202202707529068,0.07101978361606598,-0.04933319240808487,-0.03824956715106964,-0.0033232367131859064,-0.10074158012866974,-0.09264589846134186,-0.06405343115329742,-0.019389228895306587,0.011856788769364357,-0.03395984694361687,-0.011725662276148796,0.07111036777496338,-0.06169581413269043,-0.047513965517282486,-0.008313137106597424,0.0014969761250540614,-0.004670227412134409,-0.025689594447612762,0.038107261061668396,-0.11068771779537201,0.16809813678264618,0.018667548894882202,-0.008549925871193409,-0.0005617563147097826,-0.02516481839120388,0.04006093367934227,0.10476435720920563,0.06299363076686859,-0.01979261077940464,-0.0036300267092883587,0.07636343687772751,-0.013156193308532238,-0.0369865819811821,0.06303431838750839,-0.07152989506721497,0.023568984121084213,0.14202575385570526,0.030634254217147827,-0.009320762939751148,0.09199521690607071,0.015078594908118248,0.0488848052918911,0.030612632632255554,0.029014281928539276,-0.020722629502415657,-0.013669713400304317,0.06826981157064438,-0.015638170763850212,-0.03699852526187897,0.010671108029782772,0.05235840752720833,-0.043943390250205994,0.028143640607595444,-0.0452328696846962,0.006797890644520521,-0.10526695847511292,0.006892254576086998,-0.004941622726619244,0.02858460694551468,0.007585087325423956,0.09977450221776962,-0.03704854100942612,0.03035891428589821,-0.056610047817230225,0.026309365406632423,-0.030243299901485443,-0.035708148032426834,-0.09708547592163086,-0.016364529728889465,-0.06255467236042023,0.04579763859510422,-0.019149841740727425,0.05706644058227539,-0.02350350096821785,-0.021141504868865013,0.07570408284664154,0.08555221557617188,0.12810258567333221,0.05117257684469223,0.07116109132766724,0.009741688147187233,0.025357898324728012,-0.009620516560971737,0.01628364622592926,-2.573624209283447e-33,0.0759022906422615,-0.0065238880924880505,-0.03781013563275337,0.029318060725927353,0.007687796838581562,0.06469164043664932,-0.04539281129837036,-0.004646883811801672,0.004651427734643221,0.12693780660629272,0.03062986023724079,-0.03104558028280735,-0.09489356726408005,-0.06417756527662277,-0.041137102991342545,-0.003984355367720127,-0.02746422030031681,0.06082878261804581,-0.02777629718184471,-0.03795548900961876,-0.03434576094150543,0.008750764653086662,0.00033534184331074357,0.07030333578586578,0.025472884997725487,0.023586967960000038,0.02063808962702751,-0.0036683478392660618,0.05423983186483383,0.04240421950817108,-0.13444538414478302,0.023633867502212524,-0.002999944146722555,-0.08761008828878403,-0.053465500473976135,0.015542250126600266,0.03449926897883415,-0.04114438220858574,-0.03391939029097557,-0.045530207455158234,0.01784444786608219,0.01823672093451023,-0.08602376282215118,0.02709471434354782,-0.017293009907007217,0.011283107101917267,0.026757290586829185,-0.009835864417254925,-0.026477251201868057,-0.04299132525920868,-0.012564919888973236,0.05356643721461296,0.053546205163002014,0.016795946285128593,0.05377449095249176,-0.014481845311820507,0.11209184676408768,0.015331363305449486,-0.03957105427980423,0.017628492787480354,-0.11966311186552048,0.051446203142404556,0.0760362297296524,-0.051772091537714005,0.02813597582280636,-0.07023990899324417,0.0000828407282824628,-0.06756101548671722,-0.026827005669474602,-0.02316700667142868,-0.0318048819899559,0.011601309292018414,0.0005479839746840298,-0.010934192687273026,-0.05075017362833023,-0.024806149303913116,-0.06652738898992538,0.07232126593589783,0.029313499107956886,-0.09595668315887451,-0.004421192687004805,-0.043484222143888474,0.008861432783305645,0.04793597757816315,0.008711830712854862,0.013829868286848068,0.007853085175156593,-0.09284192323684692,-0.08413413912057877,0.03621740639209747,0.07347603142261505,-0.024313200265169144,0.024435851722955704,-0.002261261222884059,-0.08998122066259384,-1.1724449531723614e-33,-0.055727362632751465,0.0007634619250893593,0.00003312172702862881,0.06934140622615814,-0.08745414018630981,-0.06855487078428268,0.006851534824818373,0.11310067027807236,0.006684108171612024,-0.05515078082680702,-0.018566273152828217,0.04287369176745415,0.09568500518798828,0.05382159724831581,0.02305833250284195,-0.06569865345954895,0.005820435471832752,0.020190628245472908,-0.022833259776234627,-0.027590367943048477,-0.051120005548000336,0.016744256019592285,-0.06583315879106522,-0.00009359877731185406,-0.012311208993196487,0.06403986364603043,0.07367667555809021,-0.06684399396181107,-0.027565980330109596,-0.05990075320005417,-0.00611669709905982,-0.02250291034579277,-0.05832449719309807,0.0130432965233922,0.006405687425285578,0.04144806042313576,0.0049543725326657295,-0.06411851197481155,0.0116574726998806,-0.12777572870254517,-0.012806085869669914,0.04003903269767761,-0.05806516483426094,0.013749223202466965,0.03384214639663696,0.024504562839865685,0.15400032699108124,0.0332573764026165,0.0879117026925087,0.05595012009143829,-0.08598428219556808,-0.004900321830064058,-0.052301183342933655,0.006103998515754938,0.03688598796725273,0.01845613308250904,0.008236758410930634,-0.04854604974389076,0.010787257924675941,-0.01800691895186901,-0.07161765545606613,-0.03599685803055763,-0.05785774812102318,-0.036953963339328766,-0.02716623991727829,0.06875430047512054,-0.09531433135271072,0.06347797811031342,-0.030581947416067123,-0.013486813753843307,0.01583358645439148,0.034199509769678116,-0.06223539263010025,0.030756281688809395,0.017535356804728508,-0.04664600268006325,0.060153137892484665,-0.024403933435678482,0.08636907488107681,-0.09590277075767517,-0.05301050469279289,-0.027964698150753975,0.010935226455330849,-0.01599419116973877,0.028005070984363556,0.041332047432661057,0.04338324815034866,0.03984171897172928,0.01863059215247631,-0.0005293290596455336,-0.08228954672813416,0.028733955696225166,0.03230254724621773,0.09598401933908463,0.06021072342991829,-3.571541284941304e-8,0.024664832279086113,0.003949074074625969,0.018679430708289146,-0.12470872700214386,0.06697094440460205,0.01931494101881981,0.0008178218849934638,-0.003041523974388838,-0.1012100949883461,-0.006178506184369326,-0.029014958068728447,0.018746215850114822,0.033138010650873184,-0.016940519213676453,0.03706797957420349,-0.025208286941051483,0.004497104324400425,0.02870151773095131,-0.09774773567914963,-0.08513403683900833,-0.019080372527241707,0.07009845227003098,-0.10080824792385101,0.03160108998417854,0.025867462158203125,0.07522089034318924,-0.061339449137449265,0.021939316764473915,-0.030520537868142128,0.040615152567625046,0.054534152150154114,-0.07895245403051376,-0.08644597232341766,0.031876835972070694,-0.04533492401242256,-0.007029506377875805,0.07562356442213058,-0.011945251375436783,0.04952428489923477,-0.06398002803325653,0.07610926777124405,-0.018267136067152023,0.019965466111898422,0.09456732869148254,-0.05318785831332207,-0.05070008710026741,0.03508928418159485,-0.002873592544347048,0.06213448569178581,0.01910385675728321,-0.013383284211158752,0.03671737387776375,-0.0417989082634449,0.06833332031965256,0.08173397928476334,-0.03962884470820427,-0.03878452256321907,0.012225612998008728,-0.040231652557849884,0.034555234014987946,0.07736413925886154,-0.03302278369665146,-0.021647531539201736,0.03899051994085312]},{"text":"Load it by all means.","book":"Down and Out in Paris and London","chapter":13,"embedding":[-0.04198842868208885,0.024557918310165405,-0.022725054994225502,-0.04307258129119873,0.019018761813640594,-0.02895817533135414,-0.039633430540561676,0.03458879142999649,-0.011620397679507732,-0.015657424926757812,-0.005418153014034033,0.1303839385509491,-0.03770149499177933,-0.03715134412050247,-0.02085680328309536,0.026993263512849808,-0.02337077632546425,-0.010589768178761005,-0.007598934229463339,-0.012990479357540607,0.07631701976060867,-0.04623835161328316,-0.060734886676073074,-0.06632322072982788,0.06108679622411728,0.019631488248705864,-0.07882707566022873,0.010812770575284958,0.011856655590236187,-0.09399735927581787,-0.041089799255132675,-0.008417042903602123,-0.06944737583398819,0.0355769544839859,0.006628940347582102,-0.035944197326898575,-0.00682240491732955,-0.019554125145077705,0.02552245371043682,0.0013322399463504553,-0.004547887481749058,0.020585734397172928,-0.02389748953282833,0.04438233748078346,-0.005699410568922758,0.005900463555008173,-0.025097321718931198,0.01786494441330433,0.10564176738262177,-0.027989692986011505,0.04122796654701233,-0.042848024517297745,0.0038854198064655066,0.07438251376152039,0.013115579262375832,0.02493935450911522,0.04733743891119957,0.0070652165450155735,-0.0016554242465645075,0.06030600517988205,-0.05025320500135422,0.03874557837843895,-0.05174539238214493,0.13279902935028076,0.08911314606666565,-0.0010933290468528867,0.0034645998384803534,-0.008726079948246479,-0.015573241747915745,-0.017748091369867325,-0.05878119170665741,-0.019620181992650032,-0.026365211233496666,0.06272142380475998,0.019662849605083466,-0.04927058517932892,0.04779072850942612,-0.05114326998591423,-0.015839092433452606,0.011406078934669495,-0.05565017834305763,0.005645856726914644,0.06247860938310623,-0.015858860686421394,0.11516525596380234,0.07339340448379517,0.041440170258283615,-0.041949234902858734,0.07365798205137253,0.03601732477545738,-0.08376964181661606,0.001523324754089117,0.04732075333595276,0.05013512074947357,-0.055424414575099945,0.0701306089758873,0.04793976619839668,-0.035849910229444504,-0.06624048948287964,0.07981978356838226,0.01629578322172165,0.03525577113032341,0.09707078337669373,0.03887814283370972,-0.09330693632364273,-0.09025293588638306,0.016461670398712158,0.05788648501038551,-0.03683887794613838,-0.03622140735387802,-0.03936818614602089,0.007344265002757311,0.02758203074336052,-0.07041530311107635,0.03198915719985962,-0.027325209230184555,-0.045040156692266464,0.09076569974422455,0.0034654447808861732,-0.019490499049425125,0.03121800906956196,-0.04381033033132553,0.01837441697716713,0.035848695784807205,-0.02098335698246956,-0.06505298614501953,0.038003627210855484,-3.83770840615851e-33,0.026510488241910934,-0.023348398506641388,0.031967390328645706,0.024161269888281822,-0.03194810450077057,-0.015591642819344997,0.04976298287510872,-0.006298646796494722,-0.08614908903837204,-0.02532254531979561,0.06596700847148895,0.08609560877084732,-0.04477500542998314,0.01889095827937126,-0.02210470475256443,0.014227007515728474,0.02162816748023033,0.02044568955898285,0.07194095849990845,0.0026197759434580803,0.025887470692396164,-0.08479040116071701,-0.07476889342069626,-0.04663429781794548,0.005844187457114458,0.04285082593560219,0.05058982968330383,0.04542515054345131,0.0019121230579912663,0.033296842128038406,0.02050597034394741,-0.062272507697343826,-0.11028043180704117,-0.005329945124685764,0.00368498801253736,-0.08446016162633896,-0.011725773103535175,-0.004332267213612795,-0.09498970955610275,-0.033891525119543076,0.00627129478380084,0.019627507776021957,0.024692945182323456,-0.029737891629338264,-0.048878781497478485,0.0010641051921993494,0.011421420611441135,0.027711171656847,-0.06061570346355438,0.0015838397666811943,0.025939812883734703,-0.010113385505974293,-0.002102130325511098,0.08042415231466293,-0.028985124081373215,0.003154715057462454,-0.10150286555290222,-0.03865092620253563,0.09369277209043503,-0.00842379406094551,0.11033462733030319,-0.12386251240968704,0.006719654891639948,0.03287220001220703,0.04865921288728714,0.0066755092702806,0.0018698961939662695,0.0065527078695595264,-0.05248875170946121,0.06833133101463318,-0.051509130746126175,-0.05455540120601654,0.09288016706705093,-0.04944416880607605,-0.000006553152616106672,0.020784560590982437,-0.025444524362683296,0.03045421652495861,-0.04919833689928055,0.03204086050391197,-0.027384033426642418,-0.04542453587055206,-0.00415161345154047,0.031099317595362663,0.09351804852485657,0.03193505108356476,0.021758943796157837,-0.11145094037055969,0.028371810913085938,0.024154404178261757,-0.1252295970916748,0.020263349637389183,-0.007174524944275618,-0.05056850612163544,-0.0989585891366005,2.926026579071422e-33,-0.0012448597699403763,-0.08659682422876358,-0.012609608471393585,0.07073421031236649,0.005348431412130594,0.04357656091451645,-0.013112145476043224,0.02090293914079666,0.0030435267835855484,0.07397645711898804,0.009636253118515015,-0.02637735940515995,-0.057339590042829514,0.021399008110165596,0.10481280833482742,0.07114061713218689,0.03950550779700279,-0.020357105880975723,-0.0806645005941391,0.032103635370731354,-0.09360392391681671,-0.021701082587242126,0.06710515171289444,0.013406856916844845,0.017263829708099365,0.0031465606298297644,-0.0553065724670887,0.024630138650536537,-0.09662739932537079,0.002542010508477688,0.06897798180580139,-0.026835422962903976,-0.11527832597494125,-0.006761905271559954,-0.07236526161432266,0.07520213723182678,0.1102440282702446,0.0955168828368187,0.01916993223130703,-0.008898238651454449,-0.0017277474980801344,0.009340913966298103,-0.16183185577392578,0.07270434498786926,-0.00047246593749150634,-0.054319579154253006,0.02246100641787052,-0.007220896892249584,-0.07398031651973724,0.153010755777359,0.0012109768576920033,-0.06624718755483627,0.0610048733651638,-0.012051778845489025,0.051125653088092804,0.01016243640333414,0.03142058476805687,0.03542843833565712,-0.019672276452183723,-0.04753965511918068,-0.0018389587057754397,-0.04589317366480827,-0.08443590253591537,-0.1172451600432396,-0.0373212993144989,-0.04771783575415611,0.04529038071632385,-0.030924249440431595,-0.04599517956376076,-0.005057858768850565,-0.10242531448602676,-0.003269629552960396,0.05604775995016098,-0.03264093026518822,0.022298995405435562,0.029253581538796425,0.04611486941576004,-0.05113181099295616,-0.01051308773458004,0.016143370419740677,0.06081420183181763,-0.02948782779276371,0.005909489467740059,-0.05665268748998642,0.06805359572172165,-0.026730012148618698,0.08039838075637817,0.010658526793122292,-0.0066134510561823845,-0.03212587162852287,-0.028322206810116768,0.06185409799218178,0.03802109137177467,0.027741748839616776,0.010487948544323444,-1.7419878872715344e-8,-0.003355334745720029,0.007978493347764015,0.12028992176055908,-0.020942598581314087,0.03799770399928093,0.07357301563024521,0.059355441480875015,0.040621835738420486,0.001677076448686421,0.014316430315375328,0.08306471258401871,-0.046952024102211,-0.07260873168706894,0.06085687130689621,0.03057633712887764,0.02271919697523117,-0.013182305730879307,-0.0033406212460249662,-0.09306586533784866,-0.038197070360183716,-0.03327396139502525,0.0420103594660759,0.05736758932471275,0.011249944567680359,0.06679021567106247,-0.0006526203360408545,0.04940491542220116,0.006889088079333305,-0.026849757879972458,0.03515493869781494,-0.03872843459248543,0.010619617067277431,-0.09105250984430313,-0.042112331837415695,0.01134276483207941,0.08106894046068192,-0.0440177284181118,0.025460155680775642,0.038968950510025024,0.0480588898062706,0.06793909519910812,0.02962265908718109,0.07026644796133041,0.030336078256368637,0.057276587933301926,-0.05706547200679779,-0.06914958357810974,-0.06944234669208527,0.0096894521266222,0.027256125584244728,-0.01960018463432789,-0.06452837586402893,0.011339026503264904,0.07836952805519104,0.07513152807950974,-0.01040085218846798,0.0389152392745018,0.010616153478622437,0.0033313180319964886,0.1154734268784523,0.09768065065145493,-0.035348258912563324,-0.0011071128537878394,-0.026648083701729774]},{"text":"Then she sails away scornfully to the chest of drawers, and returns with the box of confectionery in her hand._) RAINA.","book":"Down and Out in Paris and London","chapter":13,"embedding":[-0.018843812867999077,0.022882599383592606,0.04421283304691315,0.06112534552812576,-0.024247020483016968,0.033897753804922104,0.1199197769165039,-0.07244537770748138,-0.023327622562646866,-0.03151014447212219,0.023926900699734688,-0.09601926803588867,-0.03893304616212845,-0.033032726496458054,-0.05237448588013649,0.019825739786028862,0.03956703096628189,-0.0274000596255064,-0.036776524037122726,0.06809288263320923,0.06014873832464218,-0.010903729125857353,0.013939224183559418,0.07148060202598572,-0.04003008082509041,0.02926483005285263,0.0572655126452446,-0.045899465680122375,-0.023484310135245323,-0.08180289715528488,-0.023124264553189278,0.0852251946926117,-0.014080269262194633,0.0036842869594693184,0.004352672956883907,0.1320270150899887,0.004823616240173578,-0.10077089816331863,0.053947076201438904,-0.0017710084794089198,0.017490755766630173,0.05629380792379379,-0.08153802156448364,0.03155656158924103,0.0008824454853311181,-0.07299990206956863,0.06260020285844803,0.06643160432577133,0.019002802670001984,0.020707840099930763,-0.01581536792218685,0.03314574062824249,-0.11794363707304001,0.03335846588015556,-0.02967064641416073,0.029452363029122353,0.07938943803310394,-0.09743984043598175,-0.01428230945020914,0.05949092283844948,-0.0248884167522192,0.08628275990486145,-0.007812215015292168,0.09505307674407959,0.061300814151763916,-0.11094284802675247,-0.025655118748545647,0.05234367027878761,-0.08354370296001434,0.05405731871724129,0.029976319521665573,0.08577923476696014,0.006104620639234781,0.05300602689385414,0.03490224480628967,-0.06534100323915482,-0.016724416986107826,-0.07397511601448059,0.020088311284780502,0.04299916699528694,-0.0472927987575531,-0.05420197919011116,-0.007882748730480671,0.055168334394693375,-0.09370225667953491,0.04128293693065643,-0.004087936598807573,-0.051734670996665955,0.0035368665121495724,-0.05282827466726303,-0.03939945623278618,-0.09574861824512482,-0.020961236208677292,0.055266495794057846,0.003379856003448367,0.03548360988497734,-0.012079493142664433,-0.10595829784870148,0.021257400512695312,-0.013907333835959435,0.029872119426727295,0.0038343011401593685,0.010941474698483944,-0.02275068499147892,-0.04940219223499298,0.0026085618883371353,-0.04046447575092316,-0.07904895395040512,-0.017108583822846413,0.006414768751710653,-0.018418187275528908,-0.07089848071336746,0.01542589906603098,-0.0066422936506569386,-0.0003458205610513687,0.04253612831234932,-0.05824068933725357,-0.014949753880500793,0.008482578210532665,0.05268043279647827,0.04525287076830864,0.017104091122746468,0.04879973828792572,0.0008190112421289086,-0.09909515082836151,-0.040143776684999466,0.12614771723747253,-1.3223968211583844e-34,0.036902181804180145,-0.05133487284183502,0.027234258130192757,0.06043650582432747,0.11768750101327896,0.0050681536085903645,0.04715760052204132,0.023403121158480644,-0.06251715868711472,0.05187014490365982,-0.13921618461608887,-0.011337513104081154,-0.07024214416742325,0.009744610637426376,-0.023875869810581207,0.00818458292633295,0.002040065126493573,-0.006265132687985897,0.006118634715676308,0.04006391018629074,0.018048875033855438,0.03535042330622673,-0.009301873855292797,0.001197913778014481,0.0033251179847866297,-0.025714557617902756,0.003894310910254717,0.032302673906087875,0.0166273545473814,0.0086721396073699,0.005926323123276234,0.007003178354352713,0.032835572957992554,-0.016912667080760002,0.02883722446858883,0.014859831891953945,-0.018981337547302246,-0.01663196086883545,-0.020135462284088135,-0.0018762508407235146,-0.02167288400232792,-0.015075262635946274,0.030026312917470932,0.022461773827672005,-0.08669780194759369,-0.07992168515920639,0.0028089166153222322,0.054410263895988464,0.0035645323805510998,-0.05409375950694084,0.0050939349457621574,0.0413404256105423,0.06723237782716751,0.003151167882606387,-0.026082757860422134,-0.02106744796037674,0.02455892227590084,0.04270179942250252,0.13551759719848633,0.000807352305855602,0.09441972523927689,-0.006221921183168888,0.021140217781066895,-0.06592590361833572,0.018430201336741447,-0.0250990092754364,-0.048819418996572495,-0.06049971655011177,0.02045748382806778,0.03475663438439369,-0.07963915169239044,0.01887199655175209,-0.06014354154467583,0.05945049598813057,-0.02351859211921692,-0.024343684315681458,-0.023251719772815704,-0.04594472795724869,0.03240378573536873,-0.08800108730792999,-0.0003662431554403156,0.04268783703446388,-0.06524895876646042,0.09666355699300766,-0.07315532118082047,0.01787533611059189,0.03878714144229889,-0.06307267397642136,-0.030534232035279274,0.06518445909023285,0.03935782238841057,0.011416766792535782,0.11176931858062744,-0.08995632082223892,0.03429773822426796,-1.9862651306790668e-33,0.05818966403603554,-0.013693763874471188,-0.050381340086460114,0.01834748685359955,0.0026225969195365906,0.00536589790135622,-0.0119913499802351,-0.04121872037649155,-0.011684142984449863,0.011129649356007576,-0.03594299405813217,-0.056301359087228775,0.0032154524233192205,-0.02854194864630699,0.05974322929978371,0.06811899691820145,0.11982180178165436,-0.012589222751557827,-0.020938750356435776,-0.017555857077240944,0.03792194277048111,-0.00685910414904356,0.004633585922420025,-0.04701686650514603,-0.04065919667482376,-0.026760322973132133,0.11443410068750381,-0.02552100643515587,-0.07069011777639389,-0.023036111146211624,0.04518374055624008,-0.10140026360750198,-0.025680046528577805,0.11221875995397568,-0.05465424060821533,0.007895577698946,-0.03417620435357094,-0.11842343211174011,-0.05082380399107933,-0.05191780999302864,-0.029816357418894768,-0.03382975608110428,0.006798989605158567,0.06706787645816803,0.07759781926870346,-0.02718771994113922,-0.06865931302309036,0.09124305099248886,0.09008239954710007,0.05400653928518295,-0.006462398916482925,-0.081136055290699,0.028819818049669266,-0.04854624718427658,0.016331154853105545,-0.015573582611978054,0.02998918481171131,-0.0686677023768425,0.058013755828142166,0.0029202867299318314,-0.029433077201247215,-0.045478153973817825,-0.0011640464654192328,0.007796633057296276,-0.043290942907333374,-0.08655226230621338,-0.00804627314209938,0.01912003569304943,0.02959008887410164,-0.07063222676515579,0.08706976473331451,0.0663696750998497,-0.0702480673789978,0.007836688309907913,0.01722908951342106,0.05123817175626755,-0.05349534749984741,-0.06429140269756317,0.0227102879434824,-0.07364828139543533,-0.07577816396951675,-0.004225275944918394,-0.004534823354333639,-0.03471311926841736,0.0589020773768425,-0.14191170036792755,0.034856826066970825,-0.06321576982736588,-0.016734251752495766,0.01664816029369831,0.06517693400382996,0.018779601901769638,0.1358998864889145,-0.07659077644348145,0.02369076758623123,-2.4938099585369855e-8,-0.0555725060403347,-0.04179668053984642,0.027244532480835915,-0.07017330825328827,-0.032597992569208145,-0.022002501413226128,0.04263192042708397,0.09319862723350525,0.024421382695436478,-0.08650075644254684,0.03643673658370972,0.034145988523960114,0.044458307325839996,0.08023330569267273,0.07858376950025558,0.1202302798628807,0.06285747140645981,0.010314390994608402,-0.014836573041975498,-0.019309354946017265,0.10003314167261124,-0.01039628591388464,0.010067510418593884,0.03422696515917778,-0.04688119515776634,0.07686829566955566,-0.02092633582651615,0.020763013511896133,0.009258163161575794,0.0631861612200737,0.07306695729494095,-0.009181760251522064,-0.008495450019836426,0.013463344424962997,-0.038235828280448914,0.01702345535159111,-0.010527498088777065,0.07261684536933899,-0.013893269002437592,0.028505979105830193,0.05349456146359444,0.0034755005035549402,0.01895471289753914,-0.053486842662096024,-0.019156990572810173,-0.042767733335494995,0.046258408576250076,0.035106051713228226,-0.006229364313185215,0.0020324892830103636,0.00201791082508862,-0.016696568578481674,0.02257607690989971,0.012293688952922821,0.0077862851321697235,-0.09017938375473022,0.0053179943934082985,-0.050306033343076706,0.024587932974100113,0.013331331312656403,-0.047330815345048904,0.012059686705470085,-0.03597347065806389,-0.03091736137866974]},{"text":"The young ones carry pistols and cartridges; the old ones, grub.","book":"Down and Out in Paris and London","chapter":13,"embedding":[-0.027121996507048607,0.05354978144168854,-0.08073829114437103,-0.046087492257356644,0.09568086266517639,-0.010037737898528576,0.07400693744421005,0.025290749967098236,-0.08320929110050201,-0.01198500581085682,0.10754290968179703,0.061291832476854324,0.03275969997048378,0.030078673735260963,-0.005864683538675308,-0.06371787935495377,0.005122537724673748,-0.04167967289686203,0.03113298863172531,-0.005620531737804413,-0.032924752682447433,-0.020933782681822777,-0.010601087473332882,0.07804656773805618,-0.04322465509176254,0.03412685543298721,-0.05071145296096802,0.0028583009261637926,-0.02009142003953457,-0.022885620594024658,0.03312775120139122,0.00479265209287405,-0.05587691068649292,0.030348893254995346,0.013580053113400936,-0.03643057122826576,0.09687549620866776,0.07179559767246246,0.010701482184231281,-0.0001452394644729793,0.022702520713210106,-0.024814266711473465,-0.023891860619187355,0.06018909066915512,0.006847760174423456,-0.008303225040435791,-0.0384959951043129,0.0007892267312854528,-0.0024870948400348425,0.03308437392115593,0.08277485519647598,-0.05412444472312927,-0.05512060597538948,0.10540033876895905,0.06013263016939163,-0.1111396923661232,-0.03046693652868271,-0.01904364861547947,0.008315546438097954,-0.07536251842975616,-0.03374189883470535,-0.018854359164834023,-0.07844097912311554,0.009564739651978016,-0.04020782560110092,-0.03971347212791443,0.0012587860692292452,-0.09190867841243744,-0.04518619924783707,0.025095965713262558,-0.06586230546236038,0.05265161395072937,-0.046601660549640656,0.06978588551282883,-0.1078580766916275,0.001891323016025126,-0.002601461950689554,0.025020653381943703,-0.0014097185339778662,0.011650647968053818,-0.06337256729602814,-0.004213388077914715,-0.005450459662824869,-0.00498274015262723,-0.016038568690419197,-0.020619027316570282,-0.026130249723792076,-0.0669398158788681,-0.0687539130449295,-0.04975084960460663,-0.02700893208384514,-0.006485669873654842,0.08638208359479904,0.03725619614124298,0.0035661400761455297,-0.05600951239466667,-0.002579907886683941,0.039006635546684265,0.026960233226418495,0.019692400470376015,0.015020513907074928,0.0487038679420948,0.10869375616312027,0.08114746958017349,-0.07219403237104416,-0.024741191416978836,-0.06312166899442673,0.007005783263593912,-0.04341977462172508,0.003214227966964245,-0.07388243824243546,0.04688417539000511,0.03678697720170021,0.05239015072584152,-0.013105404563248158,-0.06504903733730316,-0.08028062433004379,0.07772783935070038,-0.04669138416647911,0.026531515643000603,0.00909327156841755,0.03804956376552582,-0.03330620750784874,-0.039678290486335754,-0.02557224966585636,0.004498964175581932,-0.026187678799033165,-3.689361019084737e-33,0.016783835366368294,-0.019711731001734734,-0.031996309757232666,0.08543667197227478,0.038038790225982666,0.03023303486406803,0.0026726762298494577,-0.006456325761973858,0.05963008105754852,0.06896936893463135,-0.07617739588022232,0.017868556082248688,-0.07101935893297195,0.03355342894792557,0.030234279111027718,0.02259977161884308,-0.09941676259040833,-0.004023633897304535,0.055759113281965256,-0.018323887139558792,-0.08396030217409134,0.0960584282875061,0.046624451875686646,0.007975347340106964,0.06014571338891983,0.05502006784081459,-0.03268160670995712,0.030257266014814377,-0.012380989268422127,0.005901292432099581,-0.005815640091896057,0.044892825186252594,-0.008580067194998264,0.01659775897860527,-0.07822806388139725,-0.06661944836378098,0.05458169803023338,-0.08878901600837708,-0.02853507176041603,-0.08655726909637451,0.01834813319146633,-0.010428091511130333,0.011166499927639961,0.011504086665809155,0.015013385564088821,-0.022958017885684967,-0.024505600333213806,0.00516565190628171,-0.011701136827468872,0.03167451173067093,-0.009442749433219433,-0.007717981934547424,-0.09913858026266098,-0.014263564720749855,-0.07819262892007828,-0.016819627955555916,-0.028421541675925255,0.0352865532040596,-0.007828584872186184,-0.060735028237104416,0.06695683300495148,0.08708910644054413,0.0992259830236435,-0.0034060312900692225,0.07268574088811874,-0.0007696001557633281,0.013368993997573853,0.022593190893530846,0.0680273175239563,0.047556277364492416,-0.015870627015829086,-0.009693174622952938,0.028892720118165016,-0.09039739519357681,0.019011933356523514,0.021031003445386887,0.01473813783377409,-0.038223747164011,0.01018462423235178,-0.07544354349374771,0.026624426245689392,-0.03896036371588707,-0.04140123352408409,0.041472192853689194,0.009213587269186974,-0.02318658120930195,-0.03299703449010849,-0.12962187826633453,0.0727934017777443,-0.00966608989983797,-0.09064081311225891,-0.0986720398068428,-0.07014254480600357,0.0017473305342718959,-0.0015647405525669456,1.269464471252975e-33,0.07636386901140213,0.006665114779025316,-0.03178685903549194,0.030945511534810066,0.04496340826153755,-0.017884770408272743,0.0010883788345381618,-0.056972917169332504,0.023544231429696083,0.010926640592515469,-0.0880734845995903,0.016927026212215424,0.007220289204269648,0.06620533019304276,0.10958898067474365,-0.007134014740586281,0.05841540917754173,-0.008731347508728504,-0.009504527784883976,-0.06855545938014984,0.03756735101342201,0.023252137005329132,-0.010253227315843105,0.027238167822360992,0.031574640423059464,0.03864073380827904,-0.04605816677212715,0.016849612817168236,-0.060152143239974976,-0.00056183070410043,0.038502875715494156,-0.05362442508339882,0.09409836679697037,0.02537555992603302,-0.06857629865407944,-0.05538274347782135,-0.007160014472901821,0.07680196315050125,0.011993915773928165,-0.12783099710941315,0.009346532635390759,-0.05379173904657364,0.05350014939904213,0.07239209115505219,-0.08607771247625351,-0.07374340295791626,0.02705785073339939,-0.017101788893342018,0.050090257078409195,0.03444130718708038,-0.006742962170392275,-0.0009552768897265196,-0.055859293788671494,0.01925569213926792,-0.06084784120321274,-0.05166618153452873,-0.04886576160788536,-0.020684409886598587,0.08423805981874466,0.07098545879125595,0.033886801451444626,0.04373897612094879,-0.07063384354114532,0.011275853030383587,-0.06881236284971237,-0.03764386102557182,-0.03363979607820511,-0.03255946934223175,-0.021638333797454834,0.12434593588113785,0.08543502539396286,-0.024677731096744537,0.07478509843349457,-0.05165347084403038,-0.00014575099339708686,0.015376202762126923,-0.008538390509784222,0.00879368931055069,-0.012088824063539505,-0.018688995391130447,-0.025705112144351006,-0.08336891978979111,-0.05034419521689415,0.09698633849620819,-0.015326063148677349,0.005069341044872999,0.014955990016460419,0.008825401775538921,0.0168769508600235,-0.03937020152807236,0.0414760485291481,-0.0006477524875663221,0.04174415022134781,-0.03637566789984703,-0.01786785200238228,-1.7429389487233493e-8,0.05141967907547951,0.06174151226878166,-0.02176404930651188,0.009036109782755375,-0.02575383149087429,-0.02157333306968212,0.022205190733075142,0.11911700665950775,0.025987330824136734,0.012247149832546711,0.05456830933690071,-0.03762222081422806,0.10197575390338898,-0.036879923194646835,0.09812094271183014,0.11323152482509613,-0.004435963463038206,-0.04565904662013054,-0.030214080587029457,-0.036430079489946365,-0.030473493039608,-0.01264541782438755,0.10817978531122208,0.07757317274808884,-0.09548076242208481,-0.010356400161981583,0.009797482751309872,-0.050551462918519974,0.03384845703840256,0.18854112923145294,0.0038314417470246553,0.03439495339989662,0.0660112053155899,0.003247377462685108,0.09526453912258148,0.011808501556515694,0.008907979354262352,-0.003151840064674616,0.044496722519397736,-0.0340382419526577,0.02038928121328354,-0.11291762441396713,-0.10589854419231415,0.0006002886220812798,-0.02428722195327282,-0.018853817135095596,-0.111716628074646,0.031249897554516792,-0.07417453825473785,0.06029364466667175,0.03857717290520668,0.016743101179599762,-0.01291443221271038,0.03136533871293068,-0.006577347405254841,-0.04977213963866234,-0.020738709717988968,-0.02403637021780014,0.10100634396076202,0.07235352694988251,-0.0029662251472473145,-0.012308157049119473,0.09006775170564651,-0.02153635583817959]},{"text":"Do you know, sir, that though I am only a woman, I think I am at heart as brave as you.","book":"Down and Out in Paris and London","chapter":14,"embedding":[0.053361281752586365,0.0023222342133522034,-0.003812517272308469,0.02874612621963024,0.03364973142743111,0.030811885371804237,0.00007606369035784155,-0.1134338304400444,-0.028125159442424774,0.015455844812095165,-0.04454299435019493,-0.013059086166322231,0.013580397702753544,-0.06348627805709839,0.04745401814579964,0.028004726395010948,0.021719660609960556,-0.049861714243888855,-0.0430942103266716,0.10455917567014694,-0.03598841652274132,0.04175799340009689,0.06808747351169586,0.0071159303188323975,-0.08064249902963638,-0.06111392378807068,0.011847482062876225,0.061463613063097,-0.01096413191407919,0.017147544771432877,0.007840822450816631,-0.008128942921757698,0.06745422631502151,0.017926860600709915,-0.014091966673731804,0.028085555881261826,-0.004520112182945013,-0.02347206324338913,0.09175200760364532,0.05304456874728203,-0.054906703531742096,-0.06778833270072937,0.046143632382154465,0.015544014051556587,0.0031844605691730976,0.06849353760480881,-0.019812878221273422,-0.04695555940270424,-0.08358675241470337,-0.12289383262395859,-0.0019976277835667133,0.021286793053150177,-0.044168632477521896,-0.05023065209388733,-0.0027854505460709333,-0.06623207032680511,0.03280842676758766,-0.06914038211107254,-0.019242705777287483,0.050439849495887756,0.045459650456905365,-0.003464581212028861,-0.04420303925871849,0.10658138245344162,-0.05784004181623459,-0.015574377030134201,-0.004979638382792473,0.06359771639108658,0.06534092128276825,0.031834352761507034,0.023078231140971184,0.06081857904791832,-0.009067355655133724,0.056613240391016006,-0.04261073097586632,-0.0010808127699419856,0.07578648626804352,-0.05389449745416641,0.03442163020372391,0.08821572363376617,-0.05077199265360832,-0.03896977752447128,-0.024912847205996513,0.14591404795646667,-0.026454895734786987,-0.043108031153678894,-0.02098994515836239,-0.07242484390735626,-0.028411222621798515,0.00010036311869043857,-0.14242874085903168,-0.003462025662884116,0.08926539123058319,0.0405135340988636,-0.003547454485669732,-0.07528428733348846,-0.047621533274650574,0.10078258812427521,-0.08351695537567139,0.012267441488802433,0.05836813151836395,0.05379995331168175,-0.020280947908759117,0.052606891840696335,0.07407400757074356,-0.0046290745958685875,-0.00350643927231431,-0.06696620583534241,-0.05238727852702141,0.01774873025715351,-0.025393525138497353,-0.026781465858221054,0.013543860986828804,0.01176789216697216,0.016666322946548462,-0.039927516132593155,-0.027895892038941383,-0.04095188155770302,0.03867999464273453,0.06847227364778519,-0.0017910058377310634,0.06414379179477692,-0.012415002100169659,0.0025003349874168634,0.010231898166239262,-0.045119211077690125,0.022655988112092018,-5.6631041961916696e-33,0.07376233488321304,0.05017886310815811,0.07404417544603348,0.058735191822052,-0.008546547032892704,0.0497785359621048,0.06301473081111908,-0.08006637543439865,-0.03501192107796669,0.0412050299346447,0.05886075273156166,-0.03744860738515854,-0.07526683062314987,-0.022902648895978928,-0.13644330203533173,0.00015562542830593884,0.016585443168878555,-0.030436281114816666,-0.013290142640471458,-0.031821295619010925,-0.0011844192631542683,-0.030074521899223328,0.0038358564488589764,-0.027593104168772697,0.030538899824023247,-0.026750920340418816,0.09565510600805283,-0.02502683363854885,0.020160982385277748,0.07184476405382156,-0.04854121431708336,0.0052032992243766785,-0.01068113837391138,-0.06820956617593765,0.0363214872777462,-0.048461806029081345,-0.026942038908600807,-0.012188957072794437,-0.08429098129272461,0.025766504928469658,-0.07110722362995148,-0.044034525752067566,0.02821693941950798,-0.045746296644210815,-0.07804499566555023,0.011096429079771042,0.0013926781248301268,-0.0002865660935640335,0.004712448921054602,0.018669215962290764,-0.11214641481637955,-0.004472388420253992,0.004881048575043678,0.018187325447797775,0.04289091378450394,-0.06503836810588837,0.00161127676256001,0.03529120236635208,-0.03826989233493805,-0.009562164545059204,-0.04979284480214119,-0.010659364983439445,-0.008148354478180408,0.03439128398895264,0.020759230479598045,-0.0402037613093853,0.002150843618437648,-0.030351681634783745,-0.04679935425519943,0.06067678704857826,0.019227227196097374,0.029040643945336342,-0.017238328233361244,0.021268663927912712,0.011064358986914158,0.0576014444231987,0.03412025049328804,-0.010613595135509968,0.09516414999961853,-0.11556275188922882,-0.024452373385429382,0.1151842549443245,-0.0706162303686142,0.06596513092517853,0.10591457784175873,-0.07376702129840851,0.04901209473609924,-0.01968398690223694,0.04597055912017822,-0.028342461213469505,0.016322141513228416,-0.007188621908426285,0.013975836336612701,-0.06628874689340591,-0.12243913859128952,2.629079624651427e-33,0.06412980705499649,-0.02361784130334854,0.06728431582450867,0.012692803516983986,0.012545377016067505,-0.003162638284265995,-0.0066415686160326,0.11754709482192993,0.034210532903671265,0.07592661678791046,0.025917328894138336,-0.002411824883893132,-0.03249034285545349,-0.010337240993976593,0.0718090608716011,-0.024959497153759003,-0.012012256309390068,-0.029986171051859856,-0.0260638315230608,-0.056738849729299545,-0.05142650380730629,0.05274692177772522,0.021087495610117912,-0.02418605238199234,0.004554437939077616,-0.07092396914958954,-0.021034693345427513,-0.02037179097533226,0.05998510122299194,-0.049590080976486206,0.054147422313690186,-0.07649844884872437,-0.16118450462818146,-0.003115708939731121,0.024172421544790268,-0.02891547605395317,-0.03768821060657501,0.013974692672491074,0.03969278559088707,0.009099151939153671,-0.1232246682047844,0.06695910543203354,-0.03176071122288704,-0.004239692352712154,0.039004769176244736,-0.008472350426018238,0.07523801177740097,-0.00507607264444232,0.019635217264294624,-0.014543105848133564,-0.0774746984243393,-0.022714240476489067,-0.04060308635234833,-0.00859373714774847,0.07366984337568283,-0.010835004970431328,0.05609208345413208,0.03416477143764496,-0.03479021415114403,-0.010935996659100056,-0.03292137756943703,0.011148826219141483,-0.08523451536893845,0.06262429058551788,0.00807926245033741,0.002520175650715828,-0.10880215466022491,-0.011893832124769688,-0.04174785315990448,0.050313275307416916,0.025220097973942757,-0.017454450950026512,-0.012599065899848938,0.04295940324664116,0.017834223806858063,-0.1400790959596634,0.02312268689274788,-0.028246073052287102,-0.07957576960325241,-0.04844322055578232,0.10543902963399887,-0.08245164901018143,0.07402630895376205,-0.041767217218875885,0.037994056940078735,0.0672660619020462,-0.00491225766018033,0.05353328585624695,-0.012063280679285526,0.01021467987447977,-0.08150606602430344,0.07757911831140518,0.010443096980452538,0.00851375050842762,0.057890765368938446,-3.287538064000728e-8,-0.03443994000554085,0.018700525164604187,0.002097269520163536,-0.03537927567958832,0.021642101928591728,0.02384318597614765,-0.02979275770485401,-0.06367792934179306,-0.005953213665634394,-0.0040853568352758884,0.012991946190595627,0.014628586359322071,0.07779105007648468,0.05177205428481102,-0.04016586393117905,0.05580725148320198,0.07165323197841644,-0.1062706857919693,0.04704339802265167,-0.0764550268650055,0.0628155916929245,-0.002715023700147867,-0.045882951468229294,0.04284118115901947,-0.018777310848236084,0.08775438368320465,0.010640137828886509,-0.05493380129337311,-0.0431077741086483,0.07938173413276672,0.0066323429346084595,-0.003909667953848839,-0.08549527823925018,-0.030542200431227684,-0.045010585337877274,0.034194301813840866,0.11061298102140427,-0.01792128197848797,-0.01990699954330921,0.009908516891300678,-0.0686170905828476,-0.05339519679546356,0.02907472476363182,0.05452723801136017,-0.06310320645570755,0.07844364643096924,0.03758261352777481,-0.0040727281011641026,-0.03516766056418419,0.002803053939715028,0.05685998499393463,-0.018365418538451195,0.05773916468024254,0.06213661655783653,0.059243571013212204,0.03282258287072182,0.03000354766845703,0.004668784327805042,0.020956160500645638,0.02834474667906761,0.11744482070207596,-0.05742989480495453,-0.023476265370845795,-0.053490087389945984]},{"text":"There are only two sorts of soldiers: old ones and young ones.","book":"Down and Out in Paris and London","chapter":14,"embedding":[0.019961215555667877,0.03262781724333763,-0.023679286241531372,-0.04464779421687126,0.019439250230789185,0.0538971871137619,-0.03827381879091263,-0.09721696376800537,-0.0208358746021986,0.04033719375729561,0.08152318745851517,-0.0373527929186821,0.061040040105581284,-0.008754495531320572,-0.02137223817408085,-0.006659006234258413,-0.07984888553619385,-0.02455941215157509,0.06170860305428505,-0.07119938731193542,-0.05022398754954338,0.000335961754899472,0.04854182153940201,0.0532025545835495,-0.0012914162361994386,0.03400098904967308,-0.07374070584774017,0.039435915648937225,-0.041854072362184525,0.03482074663043022,0.046391185373067856,0.0009126911754719913,0.0005965078598819673,0.032007232308387756,0.054817408323287964,0.018492328003048897,0.07311835139989853,0.12046587467193604,-0.011900207959115505,-0.0005863456754013896,-0.01252307090908289,-0.0005478274542838335,0.014958820305764675,-0.022475892677903175,0.0588984489440918,0.024646751582622528,-0.06450667232275009,-0.06939568370580673,0.0648689717054367,0.0483381487429142,0.05428537726402283,-0.008973103947937489,-0.03450976312160492,0.06413878500461578,0.03898891061544418,-0.06515315175056458,-0.061892587691545486,-0.026791615411639214,0.007611139677464962,-0.039150115102529526,-0.08544093370437622,0.03674251213669777,0.051108770072460175,-0.03789067268371582,-0.05237284302711487,-0.10700491815805435,-0.017161842435598373,-0.042299725115299225,-0.010307771153748035,-0.00819970853626728,0.015894530341029167,0.07595618069171906,0.04355069249868393,0.05856546387076378,-0.12334198504686356,-0.04933267831802368,0.05830637365579605,0.11128301173448563,0.045877620577812195,-0.054205797612667084,-0.058219026774168015,-0.0633951798081398,0.021662911400198936,0.012318644672632217,-0.010829074308276176,-0.018962886184453964,0.011153561063110828,-0.022883737459778786,0.018790820613503456,0.06824325770139694,-0.04660269618034363,0.0968850776553154,0.06047055125236511,0.045123569667339325,0.09505333006381989,-0.04370461031794548,0.03936241567134857,0.14844930171966553,-0.14017775654792786,0.03588695079088211,-0.032811399549245834,-0.09292899072170258,0.08865134418010712,0.0677240863442421,-0.04593198746442795,-0.005723563954234123,-0.0130427535623312,-0.060778070241212845,-0.08096978813409805,-0.049898430705070496,0.07940895110368729,0.0519358366727829,-0.016418742015957832,0.018263988196849823,-0.05131479352712631,0.016578808426856995,-0.0966232642531395,-0.060067806392908096,-0.09114247560501099,0.12773048877716064,-0.04931214451789856,-0.02536466345191002,-0.004800327587872744,0.04421711713075638,-0.007158519234508276,0.018348002806305885,0.02373814396560192,-4.1372155505403976e-33,0.023478101938962936,-0.04959249868988991,-0.02557428926229477,0.006320013199001551,-0.0322151742875576,-0.0049759200774133205,-0.00817015115171671,-0.03554406017065048,0.042216796427965164,-0.009667245671153069,-0.0700158029794693,-0.06654989719390869,0.059495460242033005,0.008085614070296288,-0.008317614905536175,0.0314142219722271,-0.041384946554899216,0.016078641638159752,0.04305371269583702,-0.021728049963712692,-0.010561500675976276,0.10244391113519669,-0.09559512883424759,0.031150251626968384,0.03442627564072609,-0.07173571735620499,0.056356366723775864,0.0597311332821846,-0.011774112470448017,0.0029114545322954655,-0.02829747274518013,0.025358915328979492,0.03998721018433571,0.003654088592156768,-0.006764052901417017,-0.031465161591768265,0.02592354826629162,-0.03629348799586296,-0.0996980294585228,-0.02478089928627014,-0.019903697073459625,0.026180310174822807,0.0007662675925530493,0.006181852426379919,0.009465683251619339,-0.07289309799671173,0.007210941053926945,-0.0397673062980175,-0.030187858268618584,0.008758503943681717,-0.00641458947211504,0.051120538264513016,-0.10524412244558334,-0.008812853135168552,-0.04738312214612961,0.03264878690242767,-0.033142395317554474,0.09836618602275848,-0.06563842296600342,-0.027151525020599365,0.053944263607263565,0.000649177934974432,0.008207803592085838,0.03378554433584213,0.03270462155342102,-0.04268597811460495,-0.02460009604692459,-0.012450120411813259,-0.005083341617137194,0.0057919565588235855,-0.006126426160335541,-0.018619339913129807,0.021612925454974174,-0.1058996394276619,-0.027007795870304108,-0.0172272939234972,0.12761126458644867,0.006749438587576151,0.042916104197502136,-0.06656534969806671,-0.012147667817771435,-0.035048387944698334,-0.03224906325340271,0.08761045336723328,0.0019945520907640457,-0.040701307356357574,0.03162359446287155,-0.04629664868116379,-0.029368571937084198,-0.020270083099603653,-0.06108305975794792,-0.052822545170784,-0.03154419735074043,-0.04269048944115639,-0.0007448139949701726,-6.934154649244138e-36,-0.0734085664153099,0.08638035506010056,0.09668915718793869,0.0008969642804004252,0.04221903905272484,0.03342042863368988,0.06551340222358704,0.03283359110355377,-0.025178629904985428,0.04717783257365227,0.04137212410569191,-0.00856252945959568,-0.0356268547475338,0.04437167942523956,-0.009653749875724316,0.0643453598022461,-0.038698263466358185,0.061238933354616165,-0.00010840475442819297,0.059516679495573044,0.020069576799869537,0.03911096975207329,0.007634997367858887,0.0019787373021245003,0.022863388061523438,0.04691093787550926,-0.005713422782719135,0.03214948624372482,-0.1154743880033493,-0.002183693228289485,0.062132544815540314,-0.10495950281620026,-0.01505439355969429,-0.02574985660612583,-0.0029837582260370255,-0.015879768878221512,-0.058947086334228516,-0.0293769221752882,-0.014559022150933743,0.015509002842009068,-0.00633704848587513,-0.04148847982287407,0.05058925971388817,0.03680916130542755,-0.09757250547409058,-0.05056452378630638,0.031177669763565063,-0.015861788764595985,-0.06625725328922272,-0.06462336331605911,-0.06553621590137482,0.019931267946958542,-0.04315667971968651,-0.013223539106547832,-0.026759566739201546,0.02718912996351719,-0.09252635389566422,-0.04097461700439453,0.051443636417388916,-0.014707501977682114,0.03355063498020172,-0.030963461846113205,-0.015545395202934742,0.00793902575969696,-0.04206215590238571,-0.021762311458587646,-0.08094116300344467,0.054390646517276764,-0.10777788609266281,0.11810439825057983,0.09277374297380447,-0.05056792125105858,-0.014954054728150368,-0.03822179138660431,0.060134317725896835,-0.021846426650881767,-0.06008492410182953,-0.04168461635708809,-0.03878431022167206,-0.08685290813446045,0.00716647831723094,-0.06360451877117157,-0.026867857202887535,0.05323334038257599,-0.018544673919677734,-0.014649582095444202,0.09688349068164825,0.04181928187608719,0.011459271423518658,0.015154752880334854,0.015736931934952736,-0.09246645122766495,0.06388667970895767,-0.04486679285764694,-0.044795744121074677,-2.4165025536149187e-8,0.026407718658447266,0.023942314088344574,0.005719667766243219,0.04789745435118675,-0.07893060892820358,-0.06922612339258194,0.023236267268657684,-0.0037000172305852175,0.06642644852399826,0.08584590256214142,0.0013212290359660983,0.0423412099480629,-0.03310832381248474,-0.06867094337940216,0.08331646770238876,0.03217591717839241,-0.07032608240842819,-0.08314799517393112,-0.041765667498111725,-0.035589464008808136,-0.06108824536204338,0.008484048768877983,0.021109292283654213,0.04347607493400574,-0.031265243887901306,0.06374183297157288,-0.0011261653853580356,-0.08254095911979675,-0.001869908650405705,0.05583074688911438,0.028886426240205765,0.050556961447000504,-0.018238060176372528,-0.01994066685438156,0.058625753968954086,0.057285528630018234,0.005467694252729416,-0.01229679025709629,-0.07301989197731018,-0.049700893461704254,-0.049361079931259155,-0.0650973841547966,0.03064081072807312,0.06993121653795242,0.0808279812335968,0.053203970193862915,-0.00028453307459130883,-0.09717467427253723,-0.0458853505551815,0.0016660415567457676,0.08169066905975342,0.03763304650783539,0.015396430157124996,0.09528657048940659,-0.0560443289577961,0.040817636996507645,0.03316230699419975,0.051260337233543396,0.05730639025568962,0.027334757149219513,0.05835931375622749,-0.05044984444975853,0.059827085584402084,0.01683867909014225]},{"text":"I couldn’t believe my eyes when I saw it.","book":"Down and Out in Paris and London","chapter":14,"embedding":[-0.06705748289823532,-0.020587574690580368,-0.0448475256562233,-0.008755098097026348,0.08347579836845398,-0.020564338192343712,0.11066648364067078,0.06713663786649704,0.061551325023174286,0.004817373119294643,-0.016643866896629333,-0.011228966526687145,0.06984146684408188,-0.03264448419213295,-0.0640793889760971,-0.02485925890505314,-0.04283610358834267,0.023211417719721794,-0.0067241378128528595,-0.02110861986875534,0.04709113761782646,-0.04336990788578987,0.012048129923641682,-0.008791787549853325,-0.019786540418863297,0.07974935322999954,0.021996567025780678,-0.039354268461465836,-0.11649203300476074,-0.06106903403997421,-0.028026815503835678,-0.045902762562036514,-0.08408299088478088,-0.0006551137776114047,-0.007432674057781696,-0.011560475453734398,0.005495147779583931,0.0059651583433151245,0.00778774032369256,0.027029603719711304,-0.060521915555000305,-0.042221423238515854,-0.002054247073829174,0.0042861392721533775,0.07389117032289505,0.01712585613131523,0.008693641982972622,-0.05008268728852272,0.07687698304653168,-0.01882714219391346,-0.08499293774366379,-0.060156192630529404,0.05600937083363533,-0.1151786744594574,-0.07169727236032486,-0.05686104670166969,-0.002530562225729227,-0.09494446218013763,0.013672865927219391,-0.008212304674088955,0.02736751176416874,0.055889129638671875,-0.017073074355721474,0.022316455841064453,-0.043706730008125305,-0.012968557886779308,0.005317260976880789,-0.07048415392637253,0.054615553468465805,-0.0023970268666744232,0.038897447288036346,-0.007223202846944332,-0.08878109604120255,-0.00005475165380630642,-0.04146653041243553,-0.005176078993827105,0.0709272250533104,-0.0773903951048851,-0.02944507636129856,0.004866199567914009,0.060198936611413956,0.006838566157966852,-0.007992785423994064,-0.06103697046637535,0.049029745161533356,0.009618012234568596,-0.0016536330804228783,-0.020652124658226967,-0.03157294914126396,0.06518974155187607,-0.06506463140249252,-0.04486757144331932,-0.13228662312030792,0.05018267780542374,-0.042529940605163574,-0.06287162750959396,-0.013789919205009937,-0.017823949456214905,-0.03111892379820347,0.062236238270998,0.0022948910482227802,-0.03252279385924339,0.019089698791503906,-0.023733586072921753,0.03848249092698097,-0.02198483608663082,0.11053325980901718,0.024351147934794426,0.03402574732899666,0.029222391545772552,0.0358002632856369,0.0074060820043087006,-0.1058911681175232,0.027162741869688034,-0.06984233856201172,0.03589768335223198,-0.010517748072743416,-0.038361210376024246,-0.00852418877184391,0.024270297959446907,0.05120917409658432,0.06155340000987053,0.016760122030973434,0.001061248709447682,0.007923122495412827,-0.1276693195104599,0.03286648914217949,-6.949837046800209e-33,-0.03428184986114502,0.018200824037194252,0.03377128764986992,-0.13946542143821716,0.12341339141130447,-0.024846436455845833,-0.04651326686143875,0.048173435032367706,-0.11007693409919739,0.022998837754130363,0.010507823899388313,0.009445338509976864,-0.10038948804140091,-0.05875241756439209,0.022732799872756004,0.04703791067004204,-0.02512274868786335,0.010042351670563221,0.0732075572013855,0.031334176659584045,-0.09267698973417282,0.03844957426190376,-0.04033854976296425,-0.026295840740203857,-0.04056190699338913,0.0724937692284584,0.03351512923836708,0.0306557547301054,0.02533647231757641,0.061999790370464325,0.007408128585666418,0.03180409595370293,0.0028114868327975273,0.025805236771702766,0.0521416999399662,-0.049268245697021484,0.034656401723623276,-0.035835493355989456,-0.05735202506184578,-0.00016714596131350845,0.01725299097597599,-0.009704477153718472,0.04079815745353699,0.0806727334856987,-0.011665335856378078,0.06280794739723206,-0.003943626303225756,0.05775615945458412,-0.01658019982278347,0.03472048416733742,0.09265575557947159,0.08127517253160477,0.082364521920681,0.05435984954237938,0.03627438843250275,0.057496607303619385,0.03475248068571091,0.020068077370524406,-0.022392097860574722,0.022121045738458633,-0.015126031823456287,-0.02009798400104046,0.028420547023415565,0.04057319462299347,-0.020464982837438583,-0.00535185169428587,-0.02749757468700409,0.04154282435774803,-0.05319682136178017,-0.04112851992249489,-0.0847046971321106,-0.12069001793861389,0.005124745890498161,-0.04253539443016052,-0.037721239030361176,-0.011174626648426056,-0.025716198608279228,0.08407916873693466,-0.019922921434044838,-0.02347232587635517,0.0597149059176445,-0.02706916444003582,0.019435277208685875,-0.029561739414930344,0.05641409382224083,0.0025273398496210575,0.007518032565712929,-0.07246063649654388,-0.0517403744161129,0.02514978125691414,-0.02864561229944229,-0.028198475018143654,0.10867112874984741,-0.07385287433862686,-0.063479945063591,4.479694727626517e-33,0.031154967844486237,-0.07415107637643814,0.04245423525571823,0.0021872210782021284,-0.011012406088411808,-0.03858492150902748,0.029742976650595665,0.11598795652389526,0.061445292085409164,0.03461897000670433,0.018423834815621376,-0.019693618640303612,0.0633443295955658,0.01388685405254364,0.049485813826322556,-0.023946870118379593,0.06670913845300674,-0.008983083069324493,-0.01257718913257122,0.044251762330532074,0.0142405079677701,-0.05540812760591507,0.02657339535653591,-0.02207515388727188,0.033483751118183136,0.07274118065834045,0.02468000538647175,-0.009790231473743916,-0.004337533842772245,-0.020510856062173843,0.009735886938869953,0.0015251407166942954,-0.0856916680932045,0.03961879014968872,-0.03134196624159813,0.038669899106025696,-0.04142771288752556,-0.05011545121669769,-0.0003577352035790682,-0.009362544864416122,0.021286800503730774,-0.005290905945003033,-0.02305789291858673,0.012671609409153461,0.01802068203687668,-0.0017508463934063911,0.014214208349585533,0.01929784007370472,0.0031369165517389774,0.07689401507377625,-0.13311642408370972,0.03846530616283417,-0.08469288051128387,-0.03438935428857803,-0.024754637852311134,-0.002990585984662175,0.023949034512043,0.10775086283683777,0.0906364694237709,-0.049639709293842316,-0.017524084076285362,-0.022126398980617523,-0.0821443647146225,0.014845026656985283,0.0569724515080452,-0.010871592909097672,-0.03238850086927414,0.034526288509368896,0.023370839655399323,-0.0327676460146904,0.03749312832951546,0.010842039249837399,-0.10778524726629257,0.0774628296494484,0.0652560293674469,-0.05339512974023819,0.032911576330661774,0.12977585196495056,0.04638401046395302,-0.03227599710226059,0.031162813305854797,-0.03724608197808266,0.07495774328708649,0.11776050925254822,-0.002633212599903345,0.0848340168595314,0.018921010196208954,-0.043774496763944626,-0.02044830471277237,0.08894931524991989,-0.03815204277634621,0.0013856912264600396,-0.020844943821430206,0.015396557748317719,0.034514863044023514,-2.2871388338785437e-8,-0.005570894572883844,-0.00985182449221611,-0.059848520904779434,-0.10334371775388718,0.04944983497262001,-0.013961194083094597,-0.033371295779943466,0.03222880885004997,-0.13077770173549652,0.0825272873044014,0.008070133626461029,0.06631077080965042,-0.056921180337667465,0.021588841453194618,0.008523289114236832,0.0003424169262871146,0.022489383816719055,-0.07910733669996262,-0.01912902481853962,0.01580791547894478,0.023856937885284424,-0.02228226140141487,0.027252642437815666,0.0315588004887104,0.001426407601684332,0.03339240327477455,-0.13488724827766418,0.0435345433652401,-0.028458774089813232,0.047688860446214676,0.10988357663154602,-0.016662906855344772,-0.04056105762720108,-0.0025200110394507647,-0.11425389349460602,0.041666269302368164,0.05714216083288193,0.042572032660245895,0.0901377871632576,-0.116299569606781,0.02663666009902954,0.07630031555891037,0.01766480877995491,0.04573045298457146,0.02196156419813633,0.014175469987094402,0.09030243009328842,-0.07268323749303818,0.00014501049008686095,0.049720555543899536,0.020183371379971504,-0.0031561388168483973,0.015194390900433064,0.12229961156845093,-0.019396677613258362,-0.029317667707800865,-0.0655025988817215,-0.031021350994706154,-0.03369710221886635,-0.01753106154501438,0.0945640578866005,0.03462454676628113,-0.03165293484926224,-0.019907822832465172]},{"text":"It’s like slinging a handful of peas against a window pane: first one comes; then two or three close behind him; and then all the rest in a lump.","book":"Down and Out in Paris and London","chapter":15,"embedding":[0.08305612206459045,0.034394606947898865,0.00970754399895668,-0.0009854866657406092,-0.038516223430633545,-0.03486564755439758,0.1062638983130455,0.01017672661691904,0.03882010281085968,0.003281571203842759,0.049461424350738525,0.005084487609565258,0.03523979336023331,0.0028720716945827007,-0.06629814207553864,-0.08632674068212509,-0.01943906396627426,-0.019673451781272888,-0.0254232008010149,-0.013555032201111317,0.0225665420293808,0.03712243586778641,0.058682143688201904,-0.03278582915663719,-0.018304450437426567,-0.014579365961253643,-0.0229203924536705,0.003768383990973234,0.005888845771551132,-0.06090365722775459,0.03934730216860771,-0.02534407190978527,-0.0853748619556427,-0.016934052109718323,-0.029018593952059746,-0.0032646346371620893,0.033800043165683746,0.08917225152254105,0.03198347985744476,0.034524451941251755,0.10986079275608063,-0.046271536499261856,0.04383474215865135,-0.04930340126156807,0.024046115577220917,0.007530878763645887,-0.09998070448637009,-0.0016457802848890424,0.1511622965335846,-0.11035609245300293,-0.07410366088151932,-0.10407046228647232,0.04032384976744652,0.07770068943500519,0.010833047330379486,-0.023240195587277412,0.04772142320871353,-0.0009966647485271096,-0.011237671598792076,0.0314108170568943,-0.006628917995840311,0.015550993382930756,-0.020732538774609566,0.06748931109905243,0.05604591593146324,-0.0832115113735199,-0.013112432323396206,0.011195209808647633,0.03490515053272247,0.10925990343093872,0.03822873905301094,0.07367066293954849,-0.02606320008635521,0.008876503445208073,-0.026697762310504913,-0.058755382895469666,-0.023466916754841805,-0.02078024484217167,0.03371194005012512,0.10324270278215408,-0.0963263288140297,0.05862627178430557,0.06401234865188599,-0.038147032260894775,-0.06556995958089828,0.06291663646697998,0.0584041103720665,-0.048403363674879074,-0.04124114289879799,0.030024006962776184,-0.05316689983010292,-0.014176559634506702,0.00352403218857944,0.09620487689971924,-0.030602697283029556,-0.006683265790343285,-0.016741732135415077,-0.05808728560805321,-0.06519747525453568,0.062408387660980225,0.023474859073758125,-0.04376482963562012,0.12757158279418945,-0.006467210128903389,0.03794189542531967,-0.023720717057585716,-0.08274104446172714,-0.03589427098631859,-0.012482978403568268,0.007552733179181814,-0.07018878310918808,-0.06545904278755188,0.011685006320476532,0.0459594801068306,-0.08420964330434799,0.040168169885873795,0.0025144177488982677,-0.01052343100309372,-0.031268443912267685,-0.010084983892738819,0.049139056354761124,-0.020070761442184448,-0.04263682663440704,0.009248846210539341,0.027718672528862953,-0.026128483936190605,-0.05197947844862938,-7.104340259016948e-34,0.08774565160274506,-0.07658932358026505,0.03236585482954979,0.033461641520261765,0.06635128706693649,-0.005843170452862978,-0.019645364955067635,-0.03472991660237312,0.035054076462984085,0.02764565870165825,-0.023825475946068764,-0.07276346534490585,-0.0007580434903502464,-0.015762433409690857,-0.019568508490920067,-0.10535910725593567,-0.09056606143712997,0.06522756069898605,-0.013134516775608063,-0.036757055670022964,-0.11912437528371811,0.021580060943961143,0.021727703511714935,-0.031775008887052536,0.03307340294122696,0.04812140762805939,-0.027924099937081337,-0.09677031636238098,0.047953713685274124,0.037930507212877274,-0.01676747389137745,0.12586331367492676,-0.05073383077979088,0.03424520790576935,-0.058121975511312485,0.004831091500818729,-0.027432208880782127,-0.029920347034931183,-0.01949416659772396,0.0875379741191864,0.00018024117161985487,-0.06587395071983337,0.045349761843681335,0.004371320828795433,-0.015401119366288185,-0.008126908913254738,0.049151867628097534,0.03685491904616356,-0.027540026232600212,0.0016114480094984174,0.1676667034626007,-0.023581678047776222,0.0782889574766159,-0.0560365691781044,0.03663519769906998,0.01461744960397482,0.0483865849673748,-0.059804972261190414,-0.021473292261362076,0.10511055588722229,0.07372911274433136,-0.01838258095085621,0.019823621958494186,0.04621502384543419,-0.0449712797999382,-0.06280873715877533,-0.11218419671058655,0.012411216273903847,-0.026300104334950447,0.0698075070977211,-0.03943409398198128,-0.042971715331077576,-0.021259332075715065,-0.060701098293066025,-0.013726120814681053,-0.04774782806634903,0.016686106100678444,0.027164289727807045,0.043740976601839066,0.00041384572978131473,0.0506385937333107,-0.010271500796079636,-0.02036396600306034,-0.051751621067523956,-0.11978060007095337,0.057154297828674316,0.002723744371905923,-0.03408973291516304,-0.022764159366488457,0.012561282142996788,-0.0049609774723649025,0.0003162634093314409,0.017556311562657356,-0.06324098259210587,-0.02293940633535385,-9.796902364249036e-34,-0.0240851528942585,-0.03260107710957527,0.05390490964055061,0.11375050246715546,0.042357493191957474,0.0025544113013893366,-0.01605099067091942,0.08418960869312286,0.039085399359464645,0.011527985334396362,-0.06854573637247086,0.03778665512800217,0.05896224454045296,0.003398679429665208,0.017925094813108444,0.016662631183862686,0.06901655346155167,0.01031607948243618,-0.03179853782057762,0.01171187311410904,0.04181794077157974,-0.04751655459403992,0.06986060738563538,-0.006023816764354706,-0.055585503578186035,0.003896396141499281,0.06464419513940811,-0.05621273070573807,-0.04436957463622093,0.012832206673920155,0.005385392811149359,-0.16327764093875885,-0.06903285533189774,-0.025688013061881065,-0.02620801329612732,0.009747826494276524,-0.03204241394996643,-0.018607808277010918,0.00954581331461668,-0.1435471922159195,-0.03144358471035957,-0.08151909708976746,0.04229523614048958,0.01784035563468933,0.004073995165526867,0.030496720224618912,-0.0009291839669458568,0.06543191522359848,-0.08654169738292694,0.0525696761906147,-0.03316594287753105,0.03743249550461769,-0.01984276995062828,0.03896089270710945,-0.06931942701339722,-0.043491948395967484,-0.06803122162818909,-0.008838429115712643,0.0018079775618389249,0.03506814315915108,-0.016684748232364655,-0.03505933657288551,0.010114765726029873,0.028317172080278397,-0.03932596743106842,0.04399588704109192,-0.05771739408373833,-0.01658252440392971,-0.07509921491146088,0.02072112448513508,0.02118215337395668,0.04090908542275429,-0.018257904797792435,-0.05085427314043045,0.0004504031967371702,0.04351973533630371,-0.0174200888723135,-0.14445377886295319,-0.03337470814585686,-0.01044487301260233,-0.04183059558272362,-0.03848575800657272,0.055808234959840775,-0.016688600182533264,-0.04649662971496582,-0.053798478096723557,0.05369666963815689,0.05116429924964905,-0.012959039770066738,0.06395679712295532,0.042975328862667084,0.021717248484492302,0.054662663489580154,0.05009996145963669,0.06856899708509445,-3.883168631091394e-8,-0.000906375702470541,-0.02536126784980297,0.008893795311450958,-0.07043088972568512,0.019927173852920532,0.04642193764448166,0.015540217980742455,-0.044239602982997894,0.03967897966504097,-0.04126580432057381,-0.049072206020355225,0.07855676859617233,-0.0010450879344716668,0.0666612982749939,0.03224091976881027,0.0203094445168972,-0.06773841381072998,0.008860752917826176,-0.06750504672527313,0.04637403413653374,-0.07798764854669571,-0.010538877919316292,0.06779679656028748,0.03250441700220108,-0.029069798067212105,0.0500730462372303,-0.04289263114333153,0.05727257952094078,0.043685153126716614,-0.013798441737890244,0.047737136483192444,0.020503520965576172,-0.046163126826286316,0.016004351899027824,-0.02006155624985695,0.08583846688270569,-0.03074861690402031,0.016130873933434486,0.039045900106430054,-0.025847231969237328,0.022005746141076088,-0.06470459699630737,0.018196051940321922,0.024709921330213547,-0.0720941498875618,0.011499249376356602,-0.07103005051612854,-0.0006117224111221731,-0.027623964473605156,0.0694163590669632,0.037608541548252106,0.026789773255586624,0.029118720442056656,-0.0156834926456213,0.03360194340348244,-0.06578653305768967,-0.022915367037057877,-0.07532980293035507,-0.005742096807807684,0.07655462622642517,-0.07844333350658417,0.024627692997455597,0.09608029574155807,0.12936946749687195]},{"text":"It’s running away with him, of course: do you suppose the fellow wants to get there before the others and be killed?","book":"Down and Out in Paris and London","chapter":15,"embedding":[0.058306850492954254,0.08941683918237686,-0.034565575420856476,-0.02788984216749668,0.09765931963920593,-0.024524079635739326,0.057155635207891464,-0.09055626392364502,-0.03465931490063667,0.0005192211247049272,0.033524852246046066,0.02291547879576683,-0.01536540500819683,-0.040427662432193756,0.017778726294636726,-0.026245394721627235,-0.013164572417736053,-0.09690458327531815,-0.07406874001026154,0.0669717863202095,-0.009111648425459862,0.03339667245745659,0.08766064792871475,-0.03600509092211723,-0.04794113337993622,-0.029463469982147217,0.04619171842932701,0.007861021906137466,0.03451128304004669,0.024743283167481422,0.048029135912656784,-0.103471539914608,-0.029220733791589737,0.03322620317339897,-0.016728654503822327,0.0554901659488678,0.05549311637878418,0.029999814927577972,-0.0075404648669064045,0.021962977945804596,0.02060474269092083,0.044425640255212784,0.007808532100170851,0.0385054387152195,-0.040998321026563644,0.0033697851467877626,-0.09945308417081833,-0.062239378690719604,0.06261629611253738,-0.07501672208309174,-0.028214028105139732,0.000640504527837038,-0.016371063888072968,0.03323011100292206,0.03730088472366333,0.0723782554268837,0.0637875348329544,-0.005263106431812048,0.010879392735660076,-0.020497195422649384,-0.026654871180653572,-0.0006146293017081916,0.006855612155050039,0.03886713087558746,0.04414965212345123,-0.06297903507947922,-0.004709333181381226,-0.05209919810295105,0.016980377957224846,0.046637699007987976,0.043702010065317154,0.017272131517529488,-0.03496601805090904,-0.028333844617009163,-0.08570320904254913,-0.05384252220392227,-0.00976095162332058,-0.022699978202581406,-0.029388805851340294,-0.031768642365932465,0.07421387732028961,0.014501189813017845,-0.03225932642817497,0.021682241931557655,0.00302588427439332,0.049844950437545776,0.006384836509823799,-0.09126025438308716,0.06564663350582123,0.03308349847793579,-0.03546306490898132,0.008943606168031693,-0.0005376263870857656,0.04073220118880272,-0.028323907405138016,0.05111562833189964,-0.015061440877616405,0.15035365521907806,-0.14448347687721252,0.01868589036166668,0.031876854598522186,-0.017921188846230507,0.007948176003992558,0.017844749614596367,-0.0067868768237531185,0.017098868265748024,-0.03283131122589111,0.0004875375598203391,-0.016026286408305168,-0.014160101301968098,-0.008636264130473137,-0.08701856434345245,0.02050142176449299,0.03807741031050682,-0.008701439946889877,0.0906359851360321,-0.02445337176322937,-0.002448894316330552,-0.05589624121785164,0.09473839402198792,0.03399306535720825,-0.0005448624142445624,0.01592889055609703,0.07573042064905167,-0.0051619382575154305,-0.04090890288352966,-0.0018939388683065772,-6.12339545787903e-33,0.032718755304813385,-0.06859640777111053,-0.03952208533883095,-0.06958994269371033,0.006433276459574699,-0.012743968516588211,-0.07428552955389023,-0.003202025545760989,0.024965578690171242,0.012384776957333088,-0.0764237642288208,-0.10460659861564636,0.025314420461654663,0.0030302072409540415,-0.08358322083950043,-0.008191382512450218,0.03291476145386696,-0.04522469639778137,-0.017178338021039963,-0.07389475405216217,0.09107472002506256,0.005144068039953709,-0.05585983023047447,0.04602394253015518,-0.01786673814058304,0.028966568410396576,-0.0501672588288784,0.058264974504709244,0.08651144802570343,0.035643238574266434,-0.17670002579689026,0.08638588339090347,-0.025252239778637886,-0.009198225103318691,-0.006897789426147938,0.06032116338610649,-0.004174939822405577,0.015630213543772697,-0.03604346141219139,-0.015852050855755806,-0.08149120211601257,0.05187466740608215,-0.099235899746418,0.047548938542604446,-0.045619893819093704,-0.0708119198679924,0.03635571897029877,0.02141689881682396,-0.0734112560749054,0.0575668066740036,0.010309755802154541,-0.03684253990650177,0.07289882004261017,-0.0050229658372700214,-0.0044524334371089935,-0.018317056819796562,-0.00532382121309638,-0.007874405942857265,0.027509324252605438,0.030742263421416283,0.09313903748989105,-0.05513507500290871,-0.014150605536997318,0.11511234194040298,0.036391481757164,-0.10201943665742874,-0.019882498309016228,-0.01947840489447117,-0.024940190836787224,0.00024974995176307857,-0.002980905817821622,0.025207964703440666,-0.09565163403749466,-0.02235528826713562,-0.007546692155301571,-0.030798863619565964,-0.006225100718438625,0.05550229921936989,0.040963537991046906,-0.09003441780805588,0.03973177447915077,0.018785012885928154,-0.022752268239855766,0.0039484635926783085,-0.004594316706061363,0.007383531890809536,0.022058025002479553,-0.1297089010477066,-0.02729044482111931,0.039863452315330505,0.06006690487265587,0.007895640097558498,-0.05743452161550522,0.0489620603621006,-0.030366897583007812,2.380477630473883e-33,0.016227534040808678,-0.03623852878808975,0.005258469842374325,-0.011959540657699108,0.030580541118979454,0.025526907294988632,-0.033284395933151245,-0.02841559797525406,-0.015236154198646545,0.04379009082913399,-0.1335630714893341,0.03431261330842972,0.09269972145557404,0.10458076000213623,0.05343201756477356,-0.036437101662158966,0.09257392585277557,0.005826131906360388,0.023093508556485176,0.030594972893595695,-0.010340952314436436,0.013942291960120201,-0.017713801935315132,-0.08285727351903915,0.0037227633874863386,0.04543808102607727,0.07184503227472305,-0.051357585936784744,-0.16942928731441498,-0.07736588269472122,0.019385918974876404,-0.08139760047197342,-0.061542633920907974,-0.014111725613474846,0.0022553817834705114,0.12150847166776657,-0.061035167425870895,0.038777414709329605,-0.010061613284051418,0.05288253352046013,-0.02098117209970951,-0.027576131746172905,-0.0011519395047798753,0.00002756625326583162,-0.03886212781071663,0.024412231519818306,0.10516837984323502,0.051866427063941956,-0.03817508742213249,0.010055838152766228,0.020201360806822777,0.02182791382074356,0.06642214953899384,0.02244776487350464,-0.03901451826095581,-0.017615336924791336,-0.09522899240255356,0.030806776136159897,0.030314423143863678,-0.05409517139196396,0.09383956342935562,-0.018467387184500694,0.05976133048534393,0.039051637053489685,0.03259620815515518,0.029701748862862587,-0.01888439990580082,0.05053963512182236,0.03972618281841278,0.005048000253736973,-0.018701821565628052,-0.08978000283241272,-0.11047454178333282,-0.020639995113015175,0.0008686281507834792,0.048472192138433456,-0.02896559052169323,-0.06596548110246658,-0.05006875842809677,-0.038759745657444,-0.005708677228540182,-0.07137048989534378,-0.011257538571953773,-0.006491248961538076,-0.0076187653467059135,-0.08268728852272034,0.015813829377293587,0.013925045728683472,0.01935749500989914,-0.010437242686748505,0.05837371200323105,-0.05440155044198036,0.0516386479139328,0.03397611901164055,-0.08932211250066757,-3.1897933183699934e-8,0.008808297105133533,0.04267958551645279,-0.020095061510801315,-0.038614172488451004,-0.0012408810434862971,0.03492705523967743,0.07005462050437927,-0.07356373220682144,0.008381152525544167,0.08254807442426682,0.039556317031383514,0.02804897539317608,0.05828643590211868,0.04583289846777916,0.014753485098481178,0.034420695155858994,-0.06951413303613663,-0.162827730178833,-0.0760769471526146,-0.016182193532586098,-0.09307785332202911,0.0013655702350661159,-0.03254716098308563,0.018894093111157417,0.00758622819557786,0.01727324165403843,0.004710304085165262,-0.027381930500268936,0.026472708210349083,0.0002053613861789927,-0.06473227590322495,0.05222652852535248,-0.05440359190106392,0.03962159529328346,0.04324192553758621,0.1052350401878357,0.0019216545624658465,0.07747028023004532,0.020581230521202087,-0.05978737398982048,-0.02209337055683136,0.016623755916953087,0.0031081081833690405,0.04968022555112839,0.023537540808320045,0.015614771284162998,0.05736519396305084,0.0023169144988059998,0.012901579029858112,-0.07649306952953339,-0.008602595888078213,-0.05296507105231285,-0.036562200635671616,0.017255565151572227,0.14373862743377686,-0.09781237691640854,0.013703478500247002,0.03389175981283188,-0.003311106003820896,-0.02190173789858818,-0.03501516953110695,-0.04080350697040558,0.027619918808341026,0.03258805349469185]},{"text":"That’s what you’d have said if you’d seen the first man in the charge to-day.","book":"Down and Out in Paris and London","chapter":15,"embedding":[-0.03090430237352848,0.05771007388830185,-0.018483152613043785,0.03232605755329132,0.055627331137657166,-0.005834096577018499,0.07096241414546967,-0.02029467560350895,-0.013540356419980526,-0.002441367832943797,0.058384008705616,-0.058971650898456573,0.08989040553569794,0.09419006109237671,-0.0033140741288661957,-0.045706745237112045,0.05790633708238602,-0.0585683174431324,0.07825864106416702,0.10565980523824692,0.06376046687364578,0.051475249230861664,0.027594462037086487,-0.04218188300728798,0.019718829542398453,-0.017200827598571777,0.005718065891414881,0.08060593158006668,-0.022777898237109184,-0.04403001815080643,-0.006768578663468361,-0.04320085793733597,0.059380464255809784,0.05261005461215973,0.0054184626787900925,0.04592079296708107,0.019047606736421585,0.00456085754558444,-0.009315768256783485,0.015659011900424957,0.061144761741161346,-0.0008343735826201737,0.0676543340086937,-0.009816263802349567,0.012439688667654991,-0.06226438656449318,0.010048652067780495,0.024126550182700157,0.092165507376194,-0.04691139981150627,0.014970357529819012,-0.02584618330001831,0.009600888937711716,-0.03090561553835869,0.044207967817783356,0.032186899334192276,-0.020390469580888748,0.005375846289098263,0.017451640218496323,-0.0027417654637247324,-0.05079545080661774,0.0375986248254776,0.0654759630560875,0.008590225130319595,-0.004372460767626762,0.018342863768339157,-0.003073451342061162,0.004924444016069174,-0.051923591643571854,0.09278127551078796,-0.0089952377602458,0.05584146827459335,-0.06018482893705368,-0.01551232673227787,-0.09853368252515793,-0.028530437499284744,0.012589003890752792,0.04164351522922516,-0.0160971786826849,0.01127051841467619,0.05595438927412033,-0.06425058096647263,-0.025608763098716736,0.05393979698419571,-0.03291550651192665,0.03482537716627121,-0.017677417024970055,-0.04454058036208153,0.015950962901115417,0.04941076040267944,-0.026978207752108574,0.036142151802778244,-0.02321525476872921,-0.03107631765305996,-0.0674392506480217,-0.004933846648782492,-0.116367407143116,0.14083240926265717,-0.06561329960823059,0.0632847473025322,0.04733812436461449,0.02919962629675865,-0.014286639168858528,-0.0022737428080290556,0.034912191331386566,0.004896314349025488,0.022757254540920258,-0.034414127469062805,-0.11090996861457825,-0.027345726266503334,0.09684808552265167,-0.02754252776503563,0.0736476331949234,0.060952380299568176,-0.008419645950198174,0.029838312417268753,-0.0705573633313179,0.0731898695230484,0.010609826073050499,-0.05536194145679474,0.09601718187332153,0.02057354710996151,0.02436954155564308,0.06563739478588104,-0.02931232377886772,-0.029298607259988785,0.0984826534986496,-7.002574866165881e-33,-0.0251311007887125,0.015491441823542118,0.04668368771672249,-0.04396579787135124,-0.02958875708281994,0.013037018477916718,-0.02462095022201538,0.023188969120383263,0.034668296575546265,0.016915827989578247,-0.0016714707016944885,-0.09958352148532867,-0.014866798184812069,-0.03552462160587311,-0.10094326734542847,0.11564312875270844,-0.04103851318359375,0.02962942235171795,-0.02717476896941662,-0.03712208569049835,-0.027833454310894012,-0.0014399319188669324,-0.06333110481500626,-0.04533088207244873,-0.010625788010656834,0.03188351169228554,0.11808791011571884,-0.011055025272071362,0.07281406223773956,-0.021958399564027786,-0.047809477895498276,0.04026985540986061,0.018013522028923035,0.009603139944374561,-0.004573407117277384,0.011479191482067108,0.03674635663628578,0.002470183651894331,-0.045361146330833435,-0.00865545216947794,-0.054535284638404846,0.011991470120847225,-0.07256604731082916,-0.07241600751876831,-0.085390605032444,-0.01028700452297926,0.02782316692173481,0.027831323444843292,-0.10682189464569092,-0.046653956174850464,-0.0327225923538208,0.021683435887098312,0.013520612381398678,-0.020728906616568565,-0.035412684082984924,0.007310476154088974,-0.01750895380973816,0.060430847108364105,0.03745126724243164,0.0455358512699604,-0.047667380422353745,0.013587904162704945,-0.01660067029297352,0.10746975243091583,-0.11296489089727402,-0.07505782693624496,-0.06283024698495865,0.020262233912944794,-0.06749985367059708,0.03455909714102745,0.04406847059726715,-0.026981975883245468,-0.030827011913061142,-0.03074125200510025,-0.02804148942232132,0.0064072986133396626,0.007764345500618219,0.03550674021244049,0.0628664642572403,-0.045789919793605804,-0.03492384031414986,-0.010091683827340603,0.03194018080830574,0.03216598555445671,-0.004003961104899645,0.03804200887680054,0.058325547724962234,-0.05186958611011505,-0.021216532215476036,-0.019843177869915962,0.012033493258059025,0.021673446521162987,0.07829292118549347,-0.044096045196056366,0.04829457402229309,3.894742657376438e-33,-0.0898720771074295,0.025045223534107208,0.09004869312047958,-0.01863311231136322,-0.005508881062269211,0.001879580202512443,-0.06058724224567413,0.03419714793562889,0.00945085845887661,0.05910946801304817,0.058924026787281036,0.07733992487192154,-0.07174207270145416,0.001310356892645359,0.09695678949356079,0.007613087072968483,-0.012630742974579334,-0.07665404677391052,0.026074035093188286,0.10342651605606079,0.04107292369008064,0.010836638510227203,0.022476065903902054,-0.00907873921096325,-0.028419191017746925,0.041903235018253326,0.10440544784069061,-0.08955416828393936,-0.025777999311685562,0.006189988926053047,-0.006449712440371513,-0.05695885047316551,-0.07628591358661652,0.03040907345712185,-0.04011771082878113,0.01327612902969122,-0.03536266088485718,-0.02182842418551445,0.029744073748588562,0.08323207497596741,-0.09401221573352814,-0.004118709824979305,-0.042570918798446655,-0.1246112734079361,-0.07172995060682297,-0.04170115664601326,0.000060466714785434306,0.010444032959640026,-0.027641577646136284,0.03577497601509094,-0.17202214896678925,0.10889438539743423,-0.12687841057777405,-0.04813198745250702,-0.10103213787078857,-0.05540749803185463,0.09790510684251785,0.03123626857995987,0.035509198904037476,-0.03666931763291359,-0.05626330152153969,0.002955714240670204,-0.031255148351192474,-0.024562763050198555,-0.09406788647174835,0.026774631813168526,-0.08346734195947647,0.09090542048215866,-0.04527846351265907,0.03584374487400055,0.03703223541378975,-0.04190122336149216,-0.03472771868109703,0.015599597245454788,-0.031033439561724663,0.014837472699582577,0.012670849449932575,0.015902582556009293,0.02204911969602108,-0.05033767968416214,0.008472491055727005,-0.019970115274190903,-0.0010616541840136051,-0.015807876363396645,0.02944166213274002,0.06005881354212761,0.03789714723825455,-0.06661795824766159,0.0036232410930097103,0.05221007019281387,-0.06224614381790161,-0.07405930012464523,0.014031333848834038,0.12186066061258316,-0.05963306128978729,-3.1873462091880356e-8,-0.07926680147647858,0.0063394708558917046,0.037065230309963226,0.03244025260210037,0.021942611783742905,-0.05543511360883713,0.035124361515045166,-0.0408276803791523,-0.020351378247141838,-0.04405301436781883,-0.00316624972037971,0.013056286610662937,0.0565725676715374,-0.05037925764918327,0.05265489220619202,0.08539945632219315,-0.04479936510324478,-0.17286498844623566,-0.04653177037835121,0.12149691581726074,-0.010144272819161415,0.067628413438797,-0.06275147944688797,0.011377758346498013,-0.023519959300756454,0.06486840546131134,-0.01465899683535099,-0.041738443076610565,0.06245014816522598,0.0028213527984917164,-0.0020585902966558933,0.06146496534347534,-0.06690707802772522,0.010581091046333313,0.05464750528335571,-0.017961209639906883,-0.0626135915517807,0.011433330364525318,0.03265657275915146,-0.07933259010314941,-0.033112943172454834,0.006158695090562105,-0.00009906440391205251,0.0687408372759819,-0.015308444388210773,0.02829773910343647,0.07739555090665817,-0.04364413395524025,-0.03450978919863701,-0.013327958062291145,-0.015792015939950943,0.04157187417149544,0.018506167456507683,0.042384080588817596,0.039119020104408264,0.051956478506326675,0.016605688259005547,-0.004791768733412027,-0.07757125794887543,-0.003493244294077158,0.06063278019428253,-0.037920355796813965,-0.0033118294086307287,-0.023118071258068085]},{"text":"Of course, they just cut us to bits.","book":"Down and Out in Paris and London","chapter":16,"embedding":[-0.025663411244750023,0.027217542752623558,0.039725806564092636,-0.022806309163570404,0.040848907083272934,-0.08838256448507309,-0.048358604311943054,-0.1340731978416443,0.006294427439570427,0.05972866714000702,0.008219113573431969,0.07520630955696106,-0.0432407408952713,0.05179968848824501,0.04630052298307419,-0.04409429803490639,-0.017305966466665268,0.035726770758628845,-0.04126109927892685,0.07589491456747055,-0.02300761640071869,0.04853099212050438,-0.036954306066036224,0.03797915577888489,0.06718187034130096,-0.03149762377142906,0.015541617758572102,0.021384725347161293,0.00954134576022625,-0.01328016072511673,-0.016383010894060135,-0.005042511969804764,0.09760735929012299,-0.0017693336121737957,0.005444509442895651,0.054451778531074524,0.058024875819683075,0.004010352771729231,0.01737751066684723,-0.041623491793870926,-0.0002303137443959713,-0.044852159917354584,0.01703003980219364,0.04871964454650879,-0.010005508549511433,0.02058241330087185,0.008259904570877552,-0.051625531166791916,-0.022330431267619133,0.05762220546603203,0.012005428783595562,0.07895584404468536,0.016014646738767624,0.030492207035422325,0.0430772490799427,-0.015183177776634693,-0.02380330115556717,0.0455884225666523,0.026304569095373154,0.0421057865023613,-0.06749781221151352,-0.05436481907963753,-0.01796172559261322,0.062092334032058716,0.020279409363865852,-0.02592877298593521,0.0013739767018705606,-0.012193604372441769,-0.012885724194347858,-0.020290205255150795,0.005843507591634989,-0.004936103243380785,0.01642632856965065,0.038642868399620056,-0.03467120602726936,0.03337634727358818,-0.014553877525031567,-0.008049746043980122,0.020679574459791183,0.01790931262075901,-0.04890725389122963,-0.1288818120956421,0.05284133926033974,0.01666785217821598,-0.027377212420105934,0.008264957927167416,0.008243010379374027,-0.03397543728351593,-0.003978116903454065,0.010039704851806164,-0.08112543076276779,-0.034163426607847214,0.06667295843362808,0.051495734602212906,0.03111811727285385,-0.04794079437851906,-0.027046291157603264,0.011810708791017532,-0.011023598723113537,0.06297118961811066,-0.02878761850297451,0.05776401236653328,-0.16598138213157654,-0.08878257125616074,-0.0233173668384552,-0.019450820982456207,-0.06377275288105011,-0.0005935222143307328,0.008403679355978966,0.014274361543357372,-0.0030004389118403196,0.054574012756347656,0.005007460247725248,0.010732194408774376,0.028052078559994698,-0.12719318270683289,-0.0205768421292305,-0.04874417558312416,0.012511604465544224,0.00990291591733694,-0.010909843258559704,0.05638399347662926,-0.08710167557001114,0.05714348331093788,0.014529933221638203,-0.006865169387310743,-0.01146650779992342,-5.0079336035532365e-33,-0.015803230926394463,0.071815624833107,0.033955417573451996,-0.05564148351550102,-0.021555909886956215,0.06190411373972893,-0.054953768849372864,0.057314906269311905,0.035959642380476,-0.004572130739688873,-0.028124386444687843,-0.03302896022796631,0.04154558107256889,-0.013169650919735432,0.05010451376438141,-0.04721062257885933,-0.018669720739126205,-0.02486267127096653,-0.023591240867972374,-0.03803173452615738,-0.016650358214974403,-0.04955855384469032,0.009788010269403458,0.053061116486787796,0.04488517343997955,-0.01545901782810688,-0.08970508724451065,-0.01620139367878437,0.046388767659664154,0.008718986995518208,-0.09267178177833557,0.005130304489284754,-0.027840156108140945,0.06330524384975433,-0.016114072874188423,0.12603139877319336,0.006966537795960903,0.07596701383590698,-0.022384436801075935,0.0062428307719528675,0.05631869286298752,0.02876327745616436,-0.03365244343876839,0.051792167127132416,0.06328634917736053,-0.028189247474074364,0.003138015978038311,-0.006075737066566944,-0.14973977208137512,0.009497804567217827,0.07043655961751938,0.03636408969759941,0.06676044315099716,-0.0007172494661062956,-0.04026787355542183,0.013923374004662037,0.020571265369653702,-0.02191467396914959,0.04679715260863304,-0.006035815458744764,-0.009279855526983738,-0.013027315959334373,0.003429707372561097,0.038054209202528,-0.02995406650006771,0.0027862691786140203,0.05282982066273689,0.058066222816705704,-0.0376364067196846,-0.017393477261066437,-0.1128552109003067,0.005297819618135691,-0.04930679500102997,0.033431120216846466,-0.11152883619070053,0.005932258907705545,0.01592514105141163,0.009662090800702572,0.04397580027580261,-0.11043417453765869,0.021216224879026413,0.028217460960149765,0.05590144544839859,-0.0849899873137474,0.09788550436496735,-0.044135384261608124,0.05549522116780281,-0.006709248758852482,0.041265152394771576,-0.061363182961940765,-0.08117169141769409,-0.03245939686894417,0.029605044052004814,0.010209954343736172,-0.031632062047719955,2.8576225424161577e-33,-0.14043593406677246,-0.022359764203429222,-0.05641934648156166,0.05415285378694534,-0.03937070071697235,-0.03737066313624382,0.011712325736880302,0.03441333770751953,-0.05084199458360672,0.04055448994040489,0.022291917353868484,-0.01436735037714243,-0.008335796184837818,0.02215447463095188,-0.030679509043693542,-0.09117479622364044,0.07578248530626297,-0.014125742949545383,-0.0012041705194860697,-0.06027577817440033,-0.030485976487398148,-0.08941520005464554,-0.006962822284549475,-0.0023746422957628965,0.05006936937570572,0.09151516109704971,0.06146617606282234,-0.03305164352059364,-0.014252896420657635,-0.024550125002861023,0.033010661602020264,-0.08312946557998657,-0.18299995362758636,-0.004245155956596136,0.09188265353441238,0.00746108777821064,-0.0556907020509243,0.1341187059879303,0.006850803270936012,-0.02098606526851654,-0.04275471717119217,-0.02861674502491951,-0.10256122052669525,0.15453998744487762,-0.03667217493057251,-0.05249258875846863,0.15390245616436005,0.02655583992600441,-0.10761900991201401,-0.012347484938800335,-0.00576785858720541,0.04793444648385048,0.02766205556690693,-0.054380226880311966,-0.03234003111720085,-0.04733175411820412,0.015228808857500553,-0.0635787695646286,0.05491495877504349,-0.08624175935983658,-0.10510433465242386,0.05772898346185684,0.03538122400641441,-0.018723120912909508,0.06714118272066116,-0.004847337957471609,0.007477229926735163,0.07942511141300201,0.019878752529621124,0.07276119291782379,0.052849650382995605,0.008114801719784737,-0.012368926778435707,0.012568945065140724,0.04180145636200905,0.022081784904003143,-0.007643170654773712,-0.08320289105176926,-0.05999012663960457,0.07720736414194107,0.06096891313791275,-0.086742103099823,0.0398855023086071,-0.030309215188026428,0.0783533900976181,0.0108410669490695,-0.021562675014138222,0.038955457508563995,-0.0048440187238156796,-0.05663580074906349,-0.051207035779953,-0.03760744258761406,0.0811801478266716,-0.014891372062265873,-0.07985245436429977,-2.225700690416943e-8,0.038625504821538925,0.0022913278080523014,0.004772554617375135,0.058054253458976746,0.02262916788458824,0.03326254338026047,-0.025251615792512894,0.08078695833683014,-0.008413360454142094,0.046635400503873825,0.041244033724069595,0.009804424829781055,0.024525834247469902,0.058172691613435745,0.05802883580327034,0.05454898998141289,0.10820101946592331,0.013721468858420849,-0.0516936294734478,0.03219710662961006,-0.06192075088620186,0.026708627119660378,-0.046808939427137375,0.02099187858402729,-0.0009883262682706118,-0.024948617443442345,-0.08962412923574448,-0.01731829345226288,0.04877842962741852,0.06678593903779984,-0.045557718724012375,-0.007607507519423962,-0.04147183150053024,0.0904204472899437,0.04435187205672264,-0.11325444281101227,-0.04285365343093872,0.010630804114043713,-0.0029947846196591854,-0.06313934922218323,-0.017825251445174217,0.00264166877605021,0.07264834642410278,0.0601167157292366,-0.007475031074136496,-0.015119047835469246,0.043880246579647064,0.014130055904388428,0.060528066009283066,-0.01914322003722191,0.03692864626646042,0.060445912182331085,-0.03310537338256836,0.026018550619482994,0.05256222188472748,0.026957817375659943,0.013627815060317516,-0.014842305332422256,-0.03779551386833191,-0.034801360219717026,-0.08794479072093964,-0.07734835147857666,0.09077431261539459,-0.015191148035228252]},{"text":"Shall I ever forget him. (_She again goes to the chest of drawers.","book":"Down and Out in Paris and London","chapter":16,"embedding":[-0.015502547845244408,0.02772335894405842,0.04120612516999245,0.024350177496671677,0.02452155575156212,0.037505101412534714,0.023812221363186836,-0.08898922055959702,0.03697233274579048,-0.13629798591136932,-0.11137822270393372,0.04526729881763458,-0.016697196289896965,0.055400300770998,0.02859162911772728,0.0400027260184288,-0.030229145660996437,0.01727791130542755,-0.04615756496787071,-0.010932554490864277,0.02970457822084427,0.03621971234679222,0.034974005073308945,-0.02390751615166664,-0.02839788608253002,-0.015551161020994186,0.004566061310470104,-0.03229249641299248,-0.037558380514383316,0.022103579714894295,0.03813686594367027,0.03399495780467987,-0.11002437770366669,0.026993436738848686,-0.00010002969793276861,0.04497276246547699,-0.044124480336904526,-0.06365089118480682,0.024247152730822563,-0.05250054970383644,-0.026467418298125267,0.009698990732431412,-0.05670912563800812,0.023651590570807457,-0.06297118216753006,-0.04622533544898033,-0.0023315607104450464,-0.06097975745797157,-0.001968801487237215,-0.048039186745882034,-0.06930159777402878,0.07740187644958496,-0.03733326494693756,0.016758261248469353,0.0191237460821867,0.08455551415681839,0.11284282803535461,-0.06005937606096268,0.024059150367975235,0.03958572447299957,-0.08052462339401245,0.017337806522846222,0.014573724940419197,0.07393661141395569,-0.09483528137207031,-0.011851093731820583,0.008814521133899689,0.03906361758708954,0.01605796255171299,0.15510612726211548,0.06917449831962585,0.048009708523750305,-0.036153391003608704,0.00697002187371254,0.01616072468459606,-0.0005442372639663517,-0.008363029919564724,-0.0470307320356369,0.058914124965667725,0.01551824901252985,-0.06917804479598999,0.034985512495040894,0.016077807173132896,0.04338682442903519,-0.03483373671770096,0.017528286203742027,0.03360394760966301,-0.037898916751146317,-0.08247174322605133,-0.025043584406375885,0.015275404788553715,-0.07016348093748093,0.0037822299636900425,0.03385886549949646,0.034821514040231705,0.014094539918005466,-0.017217407003045082,0.06108850613236427,-0.11298657953739166,0.007498914375901222,0.051690779626369476,0.025931986048817635,0.010104350745677948,0.09889382123947144,-0.012832101434469223,0.04892214387655258,0.04659208655357361,-0.005543145816773176,0.013413341715931892,-0.02345959097146988,0.04532305523753166,-0.06257349997758865,-0.07054989784955978,-0.03267107531428337,-0.06199948489665985,-0.08307263255119324,0.07183098793029785,-0.032584886997938156,-0.06281420588493347,0.10606390982866287,-0.02475808374583721,0.02778857946395874,0.03653833642601967,0.06884730607271194,-0.12127969413995743,-0.11438672989606857,0.031136304140090942,-3.408586846551141e-33,-0.02603798732161522,0.026217162609100342,-0.04542863741517067,-0.04092913866043091,0.06731230020523071,0.08433429896831512,0.019892297685146332,0.02907058224081993,-0.056473150849342346,0.013540002517402172,-0.07237489521503448,0.051617417484521866,-0.03828861564397812,-0.015509362332522869,-0.05252142250537872,0.017181074246764183,0.01401069387793541,0.006874590180814266,0.05962095037102699,0.029041728004813194,0.02942373789846897,0.03852873668074608,0.020271455869078636,0.007924509234726429,-0.007700853981077671,-0.041559960693120956,0.04707469046115875,-0.013375697657465935,0.021795809268951416,0.037811342626810074,-0.04783798009157181,0.09114157408475876,0.06496826559305191,0.048578206449747086,-0.007807471323758364,0.0178968645632267,0.013349246233701706,0.03967408090829849,-0.08504362404346466,0.02257680706679821,-0.013097381219267845,0.067437082529068,-0.022167613729834557,-0.00816991925239563,-0.12178168445825577,-0.07002793997526169,0.1132524162530899,0.1001611053943634,0.08624617755413055,-0.0972670242190361,-0.007059244904667139,-0.029955027624964714,-0.04006250575184822,0.02245568297803402,-0.03873041272163391,-0.08904444426298141,-0.015111302956938744,-0.046484678983688354,0.13096311688423157,0.07073715329170227,0.08154968917369843,-0.015065089799463749,0.04588792845606804,0.003964525647461414,0.04989384114742279,-0.07955275475978851,-0.018511386588215828,-0.07064066082239151,0.01322169415652752,-0.03651877120137215,0.0004963147221133113,0.07517637312412262,-0.038289837539196014,-0.034327030181884766,-0.06206068396568298,-0.0032695108093321323,0.04633912071585655,-0.044389184564352036,-0.0623835064470768,-0.08198873698711395,0.0052419123239815235,-0.051170848309993744,-0.05382135137915611,0.02709886059165001,-0.059185054153203964,-0.03452823683619499,0.03629162907600403,-0.049935534596443176,-0.0294348057359457,0.04901476576924324,0.028287416324019432,0.021006206050515175,0.03905879333615303,-0.06542215496301651,-0.042654186487197876,2.273328703084791e-34,0.10895282030105591,0.0215276051312685,0.03606649115681648,0.010405518114566803,-0.0019276817329227924,-0.09814111888408661,-0.09509548544883728,-0.03832156956195831,-0.0010689791524782777,-0.08610266447067261,0.0385541170835495,-0.03526424244046211,0.06327150762081146,0.013239494524896145,0.08506866544485092,0.009026527404785156,0.04489664360880852,-0.11074460297822952,-0.05800081789493561,-0.020160306245088577,-0.010596401989459991,-0.022372696548700333,0.03439537063241005,-0.008821479976177216,-0.05202261731028557,-0.0007648029713891447,0.12514714896678925,-0.036706987768411636,-0.029095301404595375,-0.02002452313899994,-0.027647992596030235,-0.11965370923280716,-0.03676699474453926,0.032254766672849655,0.05303849279880524,-0.04925402253866196,-0.03506438061594963,-0.10123810917139053,0.03479822352528572,-0.05685285106301308,0.043758098036050797,0.0014444086700677872,-0.05234023928642273,0.05908665433526039,0.04869648814201355,-0.033988773822784424,0.003242237027734518,0.1145508661866188,0.11230535060167313,-0.0055515761487185955,0.013893386349081993,-0.05196681246161461,-0.04641677439212799,-0.10248029232025146,0.009007196873426437,0.08372053503990173,0.00872121099382639,0.03454180806875229,0.03653240203857422,0.019525354728102684,0.00030888430774211884,0.012827187776565552,0.015226390212774277,0.01159865316003561,0.002537247957661748,0.016362829133868217,0.04092736169695854,-0.010745057836174965,-0.07930254191160202,-0.018251540139317513,0.06716012954711914,0.06400615721940994,-0.07367334514856339,0.007997951470315456,0.044893644750118256,-0.007148419506847858,0.0003362635616213083,-0.03457218408584595,0.05568591505289078,-0.11152000725269318,0.014829250983893871,0.007281310856342316,-0.034994691610336304,-0.10592528432607651,0.024326229467988014,0.007284494116902351,0.005180456675589085,0.03658316284418106,-0.005972360260784626,-0.06902826577425003,0.014578140340745449,-0.02049129456281662,0.0659429281949997,-0.03722378611564636,0.004253765568137169,-2.4271546550380663e-8,-0.03652220964431763,-0.06500440835952759,0.005876803305000067,-0.08452076464891434,-0.04688344523310661,-0.048048678785562515,0.016544435173273087,0.026526225730776787,-0.04347113519906998,0.014321195892989635,0.08817125856876373,0.05477232486009598,0.03865766525268555,-0.00845323409885168,0.049194566905498505,0.04871915653347969,0.025101136416196823,0.029939966276288033,0.0009688486461527646,-0.009078511036932468,-0.008293520659208298,-0.01605965942144394,0.00355789833702147,0.02729126624763012,-0.05698714405298233,0.05535157769918442,0.029081789776682854,0.08003100752830505,0.041879866272211075,0.02863110974431038,0.0777527317404747,-0.073479562997818,0.017252929508686066,-0.017664046958088875,-0.033149354159832,-0.024187317118048668,-0.032204415649175644,0.027180686593055725,-0.012220081873238087,-0.02796374261379242,0.020622175186872482,-0.06046218052506447,0.03561074286699295,0.012492484413087368,-0.03504718095064163,-0.0028026404324918985,0.10651687532663345,0.0235273540019989,-0.01588563062250614,-0.05024592950940132,-0.09564725309610367,0.08595126122236252,0.025439126417040825,0.06556959450244904,0.022549178451299667,-0.0490613617002964,0.01994553580880165,-0.012919963337481022,-0.0028940734919160604,0.012953279539942741,0.05802825838327408,-0.009317462332546711,-0.0030710340943187475,-0.05672701820731163]},{"text":"I didn’t laugh, I assure you.","book":"Down and Out in Paris and London","chapter":16,"embedding":[0.03978663310408592,-0.049733564257621765,0.03792833909392357,0.01045456063002348,0.020729323849081993,-0.09136451035737991,0.10505889356136322,0.06587548553943634,0.03631097078323364,-0.08678946644067764,0.028975270688533783,-0.09677550196647644,0.04062647745013237,-0.03391947224736214,-0.027603641152381897,-0.06753608584403992,-0.020187731832265854,-0.02267904207110405,0.008217922411859035,0.008305614814162254,-0.058245472609996796,0.017850413918495178,0.06445153802633286,-0.022641882300376892,-0.04439375177025795,-0.017193781211972237,0.06873809546232224,-0.0669916495680809,-0.06057088449597359,0.035077858716249466,-0.04103443771600723,-0.01868332363665104,0.05226284638047218,0.01948046125471592,-0.020801503211259842,-0.021498333662748337,0.012336577288806438,-0.03293249383568764,0.06118744984269142,-0.020550858229398727,0.011664132587611675,-0.06376993656158447,-0.028399882838129997,0.005558820907026529,0.08630810678005219,-0.019757453352212906,-0.02611559070646763,0.00753358518704772,-0.0024437662214040756,-0.0019405852071940899,0.00250790873542428,-0.016063695773482323,-0.016582394018769264,-0.014326204545795918,-0.07668624818325043,0.06923124194145203,0.03354467451572418,-0.0865132063627243,0.014342352747917175,-0.03429004177451134,0.0339730866253376,0.01669475995004177,0.016552099958062172,0.043043334037065506,-0.015175738371908665,-0.0480024553835392,0.008308228105306625,0.008079496212303638,0.011362255550920963,0.04445429518818855,0.025193560868501663,-0.07225494831800461,0.020426420494914055,0.11568933725357056,-0.017904069274663925,-0.028743045404553413,0.055656127631664276,0.011293211951851845,-0.007209517527371645,0.09181348979473114,-0.009296766482293606,-0.09119110554456711,0.03441254794597626,-0.0592484325170517,-0.00024677952751517296,0.01581217162311077,0.015169317834079266,0.013192981481552124,-0.12012309581041336,0.05834579095244408,0.008769499137997627,-0.02062354050576687,0.036629170179367065,0.011491675861179829,0.030607320368289948,-0.07382622361183167,-0.04064716398715973,0.05423108860850334,-0.006272350437939167,0.04602042958140373,-0.00174080696888268,-0.1082625687122345,0.07520358264446259,-0.05730166658759117,0.007511393632739782,0.0015816678060218692,-0.12048275768756866,-0.04301222786307335,0.0022549291606992483,-0.055394094437360764,0.033460408449172974,0.00926909688860178,-0.020407624542713165,0.012554335407912731,0.00432641850784421,-0.04486539587378502,-0.10357565432786942,-0.0053507741540670395,-0.04396432265639305,-0.09066469967365265,0.047492410987615585,0.015351462177932262,0.0350910946726799,0.10526785254478455,-0.03609687462449074,-0.1018735021352768,0.02909425087273121,-7.070765293457082e-33,0.004047942813485861,-0.047124505043029785,0.0036816273350268602,0.005799752660095692,0.02330782078206539,0.05159414932131767,-0.012943342328071594,-0.025344761088490486,0.0009693860774859786,0.005867174360901117,0.005179702769964933,0.030244898051023483,0.00830171164125204,-0.007930661551654339,0.035916853696107864,0.15239080786705017,-0.0394662469625473,0.009608401916921139,0.0675114318728447,0.004390242043882608,-0.0013803747715428472,-0.05532991513609886,0.012539871968328953,-0.03298839554190636,-0.033149879425764084,0.015616217628121376,0.07662422955036163,0.013050843961536884,0.08509942889213562,-0.002029519062489271,-0.11309078335762024,0.007442691829055548,0.027348428964614868,-0.014505263417959213,0.05256466940045357,0.039996884763240814,0.01871742121875286,-0.04301140829920769,-0.15357758104801178,0.00405228603631258,-0.011419118382036686,0.03854258731007576,0.023967871442437172,0.05871749296784401,-0.07461700588464737,-0.009719346649944782,-0.011537186801433563,-0.02135474421083927,-0.007399668451398611,-0.053206805139780045,0.019388651475310326,0.0720389187335968,0.09733153879642487,0.01814350113272667,0.048292022198438644,-0.025689654052257538,0.04066753014922142,0.0991521030664444,0.03214523568749428,0.10635963827371597,-0.02759604901075363,-0.025283439084887505,-0.012976433150470257,0.008237193338572979,-0.09468568861484528,0.05328097939491272,-0.020885903388261795,-0.015112235210835934,-0.013802039436995983,-0.007433586288243532,0.06639274209737778,-0.06069144979119301,0.0859253779053688,0.021853432059288025,-0.03435482084751129,0.044337198138237,-0.0890171155333519,-0.01649317517876625,0.0794040635228157,-0.008235976099967957,0.07760588824748993,0.0022178636863827705,-0.025895575061440468,-0.04835132881999016,0.0159650556743145,-0.07103794068098068,0.099040187895298,-0.043130990117788315,-0.0066311233676970005,0.013772109523415565,-0.07570325583219528,0.011990414001047611,0.1444494128227234,-0.005095439497381449,0.034671228379011154,4.099633894118655e-33,0.07347071170806885,0.04023689031600952,-0.028560927137732506,0.022605501115322113,-0.0779540091753006,0.02591215819120407,-0.044389910995960236,0.028584860265254974,0.04766827076673508,-0.007412042934447527,0.11161011457443237,0.018936065956950188,-0.009353666566312313,0.019348319619894028,0.11557218432426453,-0.03693198785185814,0.0922437384724617,-0.042597901076078415,-0.038018107414245605,0.040055274963378906,-0.012548251077532768,0.04817326366901398,0.06678777933120728,0.06775610893964767,-0.0386912003159523,-0.046365734189748764,-0.013327962718904018,-0.03234017267823219,0.0031836489215493202,-0.012531712651252747,-0.014584565535187721,-0.036987606436014175,-0.0498632937669754,-0.017525574192404747,0.01332569494843483,-0.02551485225558281,-0.024062884971499443,-0.005350472405552864,-0.03708880394697189,-0.1138046532869339,0.000805599323939532,-0.05623779073357582,0.02021626941859722,0.06403887271881104,0.0002164182806154713,-0.01910778321325779,0.06979577243328094,-0.00048023011186160147,0.0684753954410553,0.0819719210267067,0.0522213838994503,0.023951463401317596,-0.08942092955112457,-0.07278213649988174,0.036103494465351105,-0.0639268159866333,0.0026518108788877726,0.06761988252401352,-0.018394814804196358,-0.09865804016590118,-0.03695738688111305,0.022607995197176933,-0.04928635060787201,-0.04035293310880661,0.0451473630964756,-0.036311183124780655,-0.11142680794000626,0.04190065711736679,0.044846341013908386,0.008839316666126251,0.040484469383955,0.0731111392378807,0.031771834939718246,-0.012445908971130848,0.05469120293855667,0.0789569541811943,-0.01859511435031891,0.08141305297613144,0.042029958218336105,0.019554391503334045,0.05535566061735153,-0.014515599235892296,0.08229540288448334,0.04126555472612381,-0.058023568242788315,0.03707200288772583,0.05883733928203583,-0.0660833939909935,-0.0405244454741478,0.16390679776668549,0.015716342255473137,-0.003949990030378103,-0.04909718036651611,-0.015525448136031628,-0.011345306411385536,-2.6450390322452222e-8,-0.016239352524280548,-0.026902111247181892,0.00832322146743536,-0.026535220444202423,-0.005176246631890535,-0.03868580982089043,-0.027486784383654594,0.04632733389735222,-0.046140722930431366,-0.034093696624040604,-0.05219786614179611,0.00910855084657669,0.04742016643285751,0.00619082897901535,0.09017147123813629,-0.030474714934825897,0.04993852972984314,-0.011756444349884987,-0.07312539964914322,-0.03366190567612648,-0.0008035541977733374,0.10774851590394974,-0.0702686607837677,0.0167166106402874,-0.03918815031647682,0.03609708324074745,-0.0456262044608593,-0.02824590913951397,-0.07916618138551712,0.08751437813043594,0.008144733496010303,-0.024664752185344696,-0.13043276965618134,-0.00014067972369957715,-0.04377077519893646,0.021011510863900185,0.10413224250078201,0.02535279653966427,0.0671648159623146,0.004324773792177439,-0.13439491391181946,0.02690994367003441,0.042863551527261734,0.0141599765047431,0.020069872960448265,-0.02565792202949524,0.029320962727069855,-0.0033421453554183245,0.008699332363903522,-0.09650404006242752,0.020180027931928635,0.0017601120052859187,-0.03247390687465668,0.03819876164197922,0.1036711111664772,-0.04967040568590164,-0.0009352306369692087,-0.01293087750673294,0.008851024322211742,-0.05843716487288475,0.034694697707891464,-0.034917645156383514,-0.031207948923110962,-0.05464624613523483]},{"text":"Most likely he had got wind of the cartridge business somehow, and knew it was a safe job.","book":"Down and Out in Paris and London","chapter":16,"embedding":[-0.03140714019536972,0.10201860219240189,-0.04847417026758194,-0.07346875220537186,0.0019635604694485664,-0.03582204133272171,0.08717165887355804,0.06638333946466446,-0.11397381126880646,-0.03733433410525322,0.011329215951263905,0.1192605197429657,0.042705073952674866,-0.02058958262205124,-0.056740835309028625,-0.0674353614449501,-0.014916608110070229,-0.03065658174455166,-0.054008569568395615,-0.017504941672086716,-0.030455952510237694,0.02959797903895378,0.06712724268436432,-0.021325161680579185,0.010467584244906902,0.106957346200943,-0.00978664681315422,0.018513184040784836,0.03403639793395996,-0.02894633449614048,0.016545338556170464,0.03005886822938919,-0.006329678930342197,-0.07129193842411041,0.0999891459941864,-0.06741783767938614,0.022002356126904488,0.029928285628557205,0.021183665841817856,-0.11585593968629837,0.020186293870210648,-0.03594711795449257,-0.03872952610254288,0.11080341041088104,-0.11985193192958832,-0.007551007438451052,-0.009885814040899277,-0.07046499103307724,0.00586937228217721,0.019125593826174736,-0.020467527210712433,-0.035313766449689865,0.01838252879679203,-0.07500195503234863,-0.0071975309401750565,-0.05010595917701721,0.050113581120967865,0.036149054765701294,-0.036149732768535614,0.004718788433820009,-0.07519379258155823,-0.0778592973947525,-0.09362521767616272,0.03903106600046158,0.04276305437088013,0.008853555656969547,-0.03854534775018692,-0.08790633827447891,0.008917917497456074,-0.005093753803521395,0.04321431368589401,-0.0005924255237914622,-0.019863521680235863,0.0004977838252671063,0.0162656307220459,-0.028729088604450226,0.040501829236745834,0.015180849470198154,0.03604501113295555,0.027027800679206848,0.01438325084745884,-0.02645150199532509,-0.012778920121490955,0.09068074077367783,-0.013882705010473728,0.05374797806143761,-0.020561013370752335,-0.10280769318342209,0.05030990391969681,-0.02500087209045887,0.009702969342470169,0.033420078456401825,0.07103181630373001,0.00605009263381362,-0.03313365578651428,-0.0011366242542862892,0.0015089628286659718,0.11737262457609177,-0.006593247409909964,0.022470688447356224,0.01654241606593132,-0.014282085932791233,0.014871407300233841,-0.03118349425494671,0.0011128730839118361,-0.025285230949521065,-0.03308438882231712,0.010587219148874283,-0.0079052047803998,-0.03569335117936134,-0.04234805330634117,-0.01547110266983509,0.07108351588249207,0.01842241920530796,-0.028398282825946808,0.010371126234531403,-0.13168853521347046,0.011792290024459362,-0.04809978976845741,-0.010931262746453285,0.004696570336818695,0.05461804196238518,-0.09472191333770752,0.001457558828406036,-0.0729585811495781,0.005022446159273386,0.10235042870044708,-5.576942296986319e-33,0.0408748984336853,0.022238338366150856,0.005370545666664839,0.026119081303477287,0.09106522798538208,0.10858382284641266,-0.033333420753479004,0.039301902055740356,0.03338121995329857,0.052945420145988464,0.06997054815292358,0.038813408464193344,-0.0578736811876297,0.06312388926744461,-0.024314071983098984,0.11126035451889038,-0.02010253630578518,0.046561311930418015,-0.01277497224509716,-0.04151149094104767,-0.02916896529495716,-0.04188436642289162,0.03897770121693611,-0.024148786440491676,0.002171978587284684,0.1412838250398636,-0.05294604226946831,0.011071515269577503,0.1035827249288559,0.06363502144813538,-0.08026962727308273,0.07679447531700134,-0.010361433029174805,0.0018853119108825922,0.022840894758701324,0.019907427951693535,-0.05060611292719841,-0.09201991558074951,-0.08255874365568161,0.03838753700256348,-0.0053900727070868015,0.0188949853181839,0.021589670330286026,0.013323858380317688,-0.044072575867176056,-0.042788513004779816,-0.10844215750694275,0.007857129909098148,0.02618681639432907,0.09583909809589386,-0.011350776068866253,-0.009868115186691284,0.06217605620622635,0.05293889716267586,-0.007551281712949276,-0.011716499924659729,0.03649572283029556,-0.03772614151239395,0.01051711943000555,0.013791163451969624,-0.01782381534576416,0.07445751130580902,0.056214869022369385,0.07704463601112366,0.003636907087638974,-0.032085876911878586,0.050725046545267105,-0.01751691848039627,-0.011097264476120472,0.01896827667951584,-0.03779010847210884,0.01723429188132286,-0.041607555001974106,-0.15129663050174713,-0.07757575809955597,0.03204730153083801,-0.05318967252969742,0.06600026786327362,-0.016074594110250473,-0.06559953838586807,0.0090236347168684,-0.037970904260873795,-0.027517717331647873,-0.03654943406581879,-0.021446458995342255,0.009119966067373753,0.0266349408775568,-0.03519837558269501,-0.05746017023921013,0.07984685152769089,0.01426791027188301,-0.06572259962558746,-0.03068407252430916,0.043212320655584335,-0.0035469974391162395,1.3758214552409486e-33,-0.03956048935651779,-0.015811145305633545,-0.01022785808891058,0.02509237267076969,-0.0011431280290707946,-0.06580669432878494,-0.010475406423211098,-0.06340804696083069,0.034824877977371216,0.005180558655411005,-0.023241976276040077,0.055448394268751144,0.014892355538904667,0.008472209796309471,-0.0035361989866942167,0.03129331022500992,0.05796191841363907,0.006518430542200804,0.004500696435570717,-0.02058490924537182,0.047208547592163086,0.031545598059892654,-0.031499478965997696,0.12025166302919388,-0.010839791968464851,0.020150328055024147,-0.08262009173631668,-0.1061665415763855,-0.0410560667514801,0.08008899539709091,-0.037619706243276596,0.026909828186035156,0.05234801769256592,0.08082420378923416,-0.020582538098096848,-0.0287921279668808,0.03946646675467491,0.06047772616147995,0.013994793407619,-0.07111150771379471,0.049343254417181015,0.02017829194664955,-0.002227555960416794,-0.034357305616140366,-0.047206275165081024,-0.04741528257727623,0.04440496861934662,-0.03014962375164032,0.05796713009476662,0.0693681463599205,0.0020468137226998806,-0.02396479807794094,-0.010243766009807587,0.023463662713766098,-0.07350452244281769,0.03994736820459366,-0.002914815442636609,0.009131034836173058,-0.008905177004635334,0.08528046309947968,0.03532452881336212,0.004462992772459984,-0.009586512111127377,-0.05438053980469704,-0.029229700565338135,0.057394228875637054,-0.02677147462964058,-0.0119802076369524,0.05215225741267204,-0.045905765146017075,0.048231180757284164,0.02578822523355484,0.08769537508487701,0.03252914547920227,-0.04399403557181358,-0.008222720585763454,-0.08308211714029312,-0.07084520161151886,-0.09092238545417786,0.029259799048304558,-0.0699378103017807,-0.06682837754487991,-0.04561053588986397,0.08738259226083755,0.03815491870045662,-0.03587581589818001,-0.036810699850320816,-0.17944271862506866,-0.028686588630080223,-0.07494637370109558,0.018574513494968414,0.03850454464554787,-0.07175397127866745,0.07090401649475098,-0.009507772512733936,-2.350944683371381e-8,-0.03679276257753372,0.010007861070334911,-0.003993769641965628,-0.0178005862981081,0.09493448585271835,-0.016438553109765053,0.03937448561191559,0.019923193380236626,-0.015474051237106323,0.056776098906993866,0.054019495844841,-0.049128394573926926,0.0432424359023571,0.020224086940288544,0.07449843734502792,-0.009224343113601208,-0.005535901058465242,-0.07537127286195755,-0.09549817442893982,0.010974250733852386,-0.0003551183908712119,-0.0022840851452201605,0.06134333461523056,-0.024743037298321724,-0.12538859248161316,-0.026140855625271797,-0.02024674601852894,0.044603198766708374,0.07605894654989243,0.06874550133943558,-0.012936590239405632,-0.012941816821694374,-0.0007346387137658894,-0.013210741803050041,-0.009371683932840824,0.011830310337245464,0.0664352998137474,-0.01783374696969986,0.04984276741743088,-0.06452122330665588,-0.051784221082925797,0.021816834807395935,-0.08616363257169724,0.053390949964523315,0.01786482147872448,-0.011799360625445843,0.061642467975616455,0.0330817848443985,-0.04156848415732384,0.08948364853858948,0.02503322996199131,0.035520974546670914,0.020853059366345406,0.029622279107570648,0.06491238623857498,-0.14280354976654053,-0.011478241533041,-0.060690987855196,-0.013915429823100567,0.058855898678302765,-0.03817007690668106,-0.01782970502972603,0.05946909636259079,0.0024794996716082096]},{"text":"You are my enemy; and you are at my mercy.","book":"Down and Out in Paris and London","chapter":17,"embedding":[-0.03341320529580116,0.08049236238002777,-0.010728774592280388,-0.03980940580368042,0.025082886219024658,0.019986514002084732,0.11716765910387039,-0.00028592406306415796,-0.03817375749349594,-0.0631730780005455,0.005236531607806683,-0.030014414340257645,0.07760430127382278,-0.030026167631149292,-0.04128028079867363,0.02577848546206951,0.005946299526840448,0.02676224336028099,-0.005149695556610823,0.06854372471570969,-0.04440492391586304,0.09268593043088913,0.038701701909303665,-0.026015952229499817,-0.12096275389194489,0.05272192135453224,-0.011601153761148453,0.03707496449351311,-0.035389743745326996,-0.019582543522119522,-0.036035362631082535,-0.0384511798620224,0.004524262621998787,0.040083494037389755,-0.01718771457672119,0.053444333374500275,0.021292518824338913,-0.0010443672072142363,0.04596087709069252,0.04335189238190651,0.031759534031152725,-0.010957891121506691,0.006762844510376453,0.03439423441886902,0.048074107617139816,0.0010099596111103892,-0.09307730197906494,0.021973516792058945,0.04416288062930107,-0.08715116232633591,-0.09059477597475052,0.007069378159940243,-0.04376893490552902,0.0527043454349041,0.012887121178209782,-0.006965973414480686,-0.04216094687581062,0.01980120874941349,0.04090190678834915,0.03371603786945343,0.0067984564229846,-0.006194502115249634,0.03576242923736572,0.09904350340366364,0.0012100456515327096,0.009461551904678345,0.05347365513443947,0.12707456946372986,-0.1148173063993454,0.08267603069543839,-0.0523487813770771,0.06938796490430832,0.014548609033226967,0.037449803203344345,-0.07492033392190933,-0.04561392217874527,0.0031590221915394068,-0.06810050457715988,0.06953872740268707,0.05253942683339119,-0.03792090713977814,-0.07636620849370956,-0.01765349879860878,0.016676757484674454,-0.04306383803486824,-0.06352583318948746,0.05189906060695648,-0.018028663471341133,0.10309029370546341,-0.0016790152294561267,0.014575078152120113,0.014263879507780075,0.027678368613123894,0.06311271339654922,0.044130973517894745,-0.00386056792922318,-0.036635175347328186,-0.014485572464764118,-0.12268991768360138,0.0836937353014946,0.02158534713089466,-0.11174296587705612,-0.08137083053588867,0.029686084017157555,0.04957442730665207,-0.02439483441412449,0.010266778990626335,0.020112833008170128,-0.05326418951153755,0.010938771069049835,0.06270638108253479,-0.02182704582810402,-0.02591647394001484,-0.045799531042575836,0.05195453390479088,0.02023646980524063,-0.05712748318910599,-0.019852695986628532,-0.032514434307813644,-0.004708210472017527,0.047252263873815536,0.040465351194143295,-0.06664819270372391,0.0345284678041935,0.034085895866155624,-0.04659196361899376,-0.047934506088495255,-7.440923321743236e-33,0.0548325851559639,0.03408822417259216,0.03088783100247383,-0.02764340117573738,-0.024793313816189766,-0.038193799555301666,-0.04660036042332649,0.020976709201931953,-0.09798111021518707,-0.01789529249072075,-0.10568003356456757,-0.0029957827646285295,-0.04081358760595322,0.0379578098654747,-0.0736536830663681,-0.015714872628450394,-0.002256251173093915,0.06863361597061157,0.04591641202569008,0.0033736946061253548,-0.09696578979492188,-0.04721527174115181,-0.02745293453335762,-0.04420503228902817,-0.060762930661439896,-0.01925031468272209,-0.03198813274502754,-0.007125114556401968,0.06825050711631775,0.04166799783706665,0.004571295343339443,0.010279986076056957,0.045103687793016434,0.0359540730714798,-0.0485927052795887,-0.007559724152088165,-0.18030427396297455,-0.0032510384917259216,-0.04669024422764778,0.01962861977517605,-0.01597564108669758,0.028148530051112175,0.015657231211662292,-0.06191767379641533,-0.0035383759532123804,-0.045872271060943604,0.014257272705435753,0.025321505963802338,-0.026827434077858925,-0.04061254858970642,-0.06745075434446335,-0.017827123403549194,0.003919650334864855,0.08928850293159485,0.011664371937513351,0.026626287028193474,-0.0175027959048748,0.07541121542453766,-0.07079079002141953,0.002078802092000842,-0.02619057148694992,-0.008773615583777428,-0.016630303114652634,-0.03045336902141571,0.011784075759351254,-0.038863975554704666,-0.03150664269924164,-0.015607940964400768,0.03579876944422722,-0.0012228700798004866,-0.019051745533943176,0.002501638839021325,0.0017934497445821762,0.040161967277526855,0.0057031842879951,0.033436283469200134,0.02601117081940174,0.02901337668299675,0.0377642959356308,-0.04689390957355499,-0.08002384006977081,0.07239769399166107,-0.022222883999347687,0.0737384706735611,0.031454335898160934,-0.040841493755578995,0.0005026623257435858,-0.08018100261688232,-0.016126342117786407,0.05046390742063522,-0.10005614906549454,-0.03294534236192703,0.011311578564345837,-0.07028450071811676,-0.09560248255729675,2.5257005902973684e-33,0.056445490568876266,0.058670852333307266,0.03345205634832382,0.05933590605854988,-0.026235533878207207,0.022937249392271042,-0.015575334429740906,0.09148617833852768,-0.027491683140397072,0.06784509867429733,-0.09091112017631531,0.04724579676985741,-0.029578089714050293,-0.020501231774687767,0.02062995173037052,0.02905101887881756,0.0837317481637001,0.05406033992767334,-0.042167868465185165,-0.0956268459558487,-0.0828137993812561,0.05192314833402634,0.0662345290184021,-0.017349423840641975,-0.02381662093102932,0.0014581652358174324,0.14493247866630554,-0.060322679579257965,0.07486661523580551,-0.014847364276647568,0.06343432515859604,-0.11387412250041962,-0.1779191941022873,-0.04310210049152374,0.023529579862952232,0.010558007284998894,-0.07603028416633606,-0.06875410676002502,-0.09056460857391357,-0.02680124342441559,-0.06585042923688889,0.09062190353870392,-0.004861481953412294,0.0034040508326143026,0.004474394954741001,-0.03147219121456146,0.053607385605573654,0.06260662525892258,-0.03149626776576042,-0.07334630936384201,-0.03537670522928238,-0.05151393264532089,0.0655888020992279,-0.03182877227663994,-0.06855357438325882,-0.0059331064112484455,0.06004577875137329,-0.008184799924492836,0.07430606335401535,-0.001153759309090674,0.03919912502169609,-0.000659453624393791,-0.096134714782238,0.008497395552694798,-0.014156079851090908,0.056356582790613174,-0.03249329328536987,0.08159758150577545,0.005444001872092485,0.02112937904894352,0.0032730998937040567,0.0668569877743721,-0.11864282935857773,0.03198494762182236,-0.05571874976158142,-0.06842227280139923,-0.04050423577427864,0.009328157640993595,-0.019924355670809746,-0.047153323888778687,0.04516121372580528,-0.019463956356048584,0.038534339517354965,-0.036473821848630905,-0.05430149286985397,-0.004395931493490934,0.1090913787484169,0.06413418799638748,0.004767246078699827,0.0696391761302948,-0.016006533056497574,0.02605849876999855,-0.012029037810862064,-0.02456626296043396,-0.06921932846307755,-2.6159888477650384e-8,0.009085540659725666,0.03468075767159462,0.04915895685553551,0.003440062515437603,-0.05453319847583771,0.04845631495118141,-0.010916595347225666,-0.08534658700227737,-0.046013303101062775,0.014387872070074081,0.039802905172109604,0.03215143829584122,0.04508885741233826,0.005873141344636679,0.09996695071458817,0.07754213362932205,-0.0321718193590641,-0.10381161421537399,-0.038593973964452744,-0.022394763305783272,-0.043123677372932434,-0.01720971241593361,-0.014180672354996204,-0.07023543119430542,0.06950200349092484,0.035084519535303116,-0.030984265729784966,0.03483332693576813,0.020017607137560844,0.04698001220822334,0.07489079236984253,0.08755356818437576,-0.11597204208374023,-0.01101153064519167,0.0032231779769062996,0.0031672907061874866,-0.04556916654109955,0.015544162131845951,0.004218957386910915,0.0014364286325871944,-0.014285323210060596,0.05644803121685982,0.05768638849258423,0.024383515119552612,0.03115873597562313,0.034020423889160156,0.06217288598418236,-0.0033492539077997208,-0.0004319822764955461,-0.06069895625114441,0.007917092181742191,0.009888182394206524,0.027032822370529175,0.0548555962741375,0.008051679469645023,0.021553000435233116,0.011450435034930706,-0.027843356132507324,-0.003117869608104229,0.032761696726083755,0.10330083966255188,-0.05346199870109558,0.011781716719269753,-0.03649614751338959]},{"text":"You cannot stay here after what you have just said about my future husband; but I will go out on the balcony and see whether it is safe for you to climb down into the street. (_She turns to the window._) MAN. (_changing countenance_).","book":"Down and Out in Paris and London","chapter":17,"embedding":[0.03589635714888573,0.01628059521317482,0.0014246312202885747,0.015399513766169548,0.0045381225645542145,0.056572940200567245,0.08028755336999893,-0.07072731107473373,-0.0031874326523393393,-0.07206402719020844,0.029749548062682152,0.005133216734975576,0.02334587275981903,0.028049007058143616,0.014499064534902573,0.05307414382696152,0.04672887921333313,-0.023172572255134583,-0.04443292319774628,0.06270825862884521,0.00570426881313324,0.017718762159347534,-0.0014202574966475368,0.03241567313671112,-0.012689418159425259,0.039074841886758804,0.018595458939671516,0.08202996104955673,0.018520832061767578,0.040573619306087494,0.0809304267168045,0.0034030170645564795,-0.07849223166704178,0.02611500397324562,0.00651989970356226,-0.013283705338835716,-0.04308633506298065,-0.09946119040250778,0.06766115128993988,0.01590057462453842,0.00354038760997355,0.015461557544767857,0.019316507503390312,0.024415578693151474,0.0066697318106889725,0.03967954218387604,-0.05796261504292488,-0.025340722873806953,0.0021736384369432926,-0.038229428231716156,-0.0874457135796547,0.1261247843503952,-0.04847317934036255,-0.022377561777830124,-0.030134139582514763,0.011044000275433064,0.046387679874897,-0.02547653578221798,-0.008447983302175999,0.039554040879011154,0.06483110040426254,0.0156382005661726,-0.016131512820720673,0.02149457484483719,-0.05626348778605461,-0.012197728268802166,-0.02638953924179077,0.018899427726864815,0.1492990255355835,0.08987149596214294,-0.0582888200879097,0.044380687177181244,-0.02232888899743557,-0.03822833299636841,-0.0667312741279602,-0.08890043944120407,0.03179291635751724,-0.043240953236818314,0.02140176296234131,-0.040659479796886444,-0.002315504476428032,-0.036958832293748856,-0.013602228835225105,0.0009124148637056351,-0.06713820993900299,-0.0003764136345125735,-0.01815631613135338,0.08772031217813492,0.03510052338242531,-0.00347680551931262,-0.0009110494866035879,-0.023809565231204033,0.022111525759100914,0.02648046426475048,-0.04713701084256172,0.009568224661052227,-0.13274168968200684,-0.025735849514603615,-0.09653916954994202,0.025392072275280952,0.01909610442817211,0.043069615960121155,-0.003861922537907958,0.07624506205320358,-0.027744727209210396,0.032345883548259735,0.0012112471740692854,0.05259012058377266,-0.050910744816064835,0.012999936006963253,0.01585470885038376,0.03072172962129116,0.022910650819540024,-0.0028912476263940334,-0.047849517315626144,-0.02417246624827385,0.03903821110725403,-0.002464120741933584,0.003993505146354437,0.036899443715810776,0.04292849078774452,0.0017265045316889882,0.02376657724380493,0.05522007495164871,0.004964771680533886,-0.11643105000257492,0.05723071098327637,-3.918893923498051e-33,0.022207411006093025,-0.029230717569589615,0.03495245799422264,0.03235767036676407,0.05325954034924507,0.04489799588918686,-0.07937504351139069,0.01938888616859913,0.04320927709341049,0.014083851128816605,0.14367258548736572,-0.09675827622413635,-0.007546994835138321,-0.08641652017831802,-0.017260964959859848,0.009162387810647488,0.08322976529598236,-0.006827382370829582,-0.014109564013779163,0.00808504968881607,0.035889577120542526,-0.09642849117517471,-0.008656397461891174,0.043349046260118484,-0.07173492014408112,-0.03531494364142418,0.03098626807332039,0.03447367995977402,-0.05465520918369293,0.024730999022722244,-0.10474639385938644,0.06066882237792015,0.008128690533339977,-0.05873221531510353,0.03476119413971901,-0.031727053225040436,-0.08174419403076172,-0.010914336889982224,-0.05373097211122513,-0.025748802348971367,-0.1316118687391281,0.005587767343968153,-0.007044686004519463,0.0971539169549942,0.015922248363494873,-0.007212560158222914,0.06596928834915161,0.034707024693489075,-0.0717732235789299,-0.04720832780003548,-0.07077450305223465,-0.03386137634515762,-0.03798234835267067,0.04147539660334587,-0.04659496992826462,-0.013157499022781849,-0.016002962365746498,0.018735622987151146,0.03570101782679558,0.007285500876605511,0.039706263691186905,-0.02314058691263199,-0.0091904541477561,0.026482466608285904,0.010859537869691849,-0.08118803054094315,-0.022815892472863197,0.007385922595858574,-0.01886097714304924,0.02526695467531681,0.028414564207196236,0.0661904364824295,0.007881713099777699,0.1252199113368988,-0.01788986846804619,0.02113354578614235,-0.07208862155675888,0.03192223981022835,0.0686061903834343,-0.07364942878484726,0.08075802028179169,0.09627338498830795,-0.05234123766422272,0.059841256588697433,0.11827310174703598,-0.0404825359582901,0.051752883940935135,-0.07392926514148712,-0.016169577836990356,0.07659074664115906,0.051974210888147354,0.029325511306524277,0.09279902279376984,-0.08621837198734283,-0.021639615297317505,1.4253094000685823e-33,-0.036457642912864685,0.013703404925763607,0.023120595142245293,-0.09016600996255875,-0.05504969507455826,-0.0453949011862278,-0.09015799313783646,0.00041479835635982454,-0.002503890311345458,0.018136056140065193,-0.03850526362657547,0.09892621636390686,0.12781348824501038,0.03357920050621033,0.0007247430039569736,-0.04737914353609085,0.05457305535674095,-0.1079278215765953,-0.09605450183153152,0.039192765951156616,-0.004510257858783007,-0.02182604931294918,-0.021258847787976265,0.0225570946931839,-0.03370031341910362,0.05224750190973282,0.04780613258481026,0.012005298398435116,0.015628088265657425,-0.03665886074304581,-0.046904101967811584,-0.006348222494125366,-0.028922131285071373,-0.022301390767097473,0.07283170521259308,-0.030300050973892212,0.05156759172677994,-0.10408343374729156,-0.040302421897649765,0.047974780201911926,-0.022775525227189064,0.022344505414366722,0.021514208987355232,-0.08197537809610367,0.033475786447525024,-0.027853630483150482,0.0358746163547039,0.029051320627331734,-0.013010593131184578,-0.012649373151361942,0.010997217148542404,0.0624876506626606,-0.013666101731359959,-0.0013813155237585306,0.07864803820848465,-0.059865523129701614,0.01395109947770834,-0.029463931918144226,0.0019501264905557036,-0.05095084384083748,-0.0016910426784306765,0.01397871132940054,-0.014937510713934898,0.05834547430276871,0.02083844132721424,0.012157405726611614,-0.09533432871103287,0.04379469156265259,-0.005247959867119789,-0.017804520204663277,0.02107725478708744,-0.07843423634767532,-0.051611028611660004,-0.05779522284865379,0.09570129960775375,-0.08943057060241699,0.0865878015756607,-0.034173209220170975,0.0046865991316735744,-0.06662891060113907,-0.002755255438387394,0.006327962502837181,0.021910715848207474,-0.05672025680541992,0.017982322722673416,-0.10757908970117569,-0.03882376849651337,-0.05398094654083252,-0.012783211655914783,-0.025327185168862343,-0.01778244599699974,0.044693540781736374,-0.0026742529589682817,-0.05339443311095238,-0.008700277656316757,-4.283148058448205e-8,-0.06965989619493484,-0.01638873666524887,0.05049033463001251,-0.10280651599168777,-0.03128911927342415,-0.014065280556678772,-0.014226713217794895,-0.03772414103150368,-0.030801495537161827,-0.012775249779224396,0.011225572787225246,0.0218596663326025,0.06344085186719894,0.03013424016535282,-0.1038825511932373,0.0730690211057663,0.07065501064062119,-0.08499489724636078,0.019298143684864044,0.027216430753469467,-0.004974378738552332,0.05814925208687782,-0.0013020470505580306,0.07043656706809998,-0.08031218498945236,0.09657759219408035,0.00666744913905859,0.01191456988453865,0.02180306985974312,0.07852401584386826,0.03601449728012085,-0.019896918907761574,-0.0730513408780098,0.038042910397052765,-0.07734233886003494,-0.07237222045660019,0.08459514379501343,0.03368185833096504,0.03694317489862442,0.02136034332215786,-0.04428374022245407,-0.06613436341285706,-0.015797870233654976,0.1420305073261261,-0.07543138414621353,-0.05483013764023781,0.04347027465701103,-0.016842883080244064,-0.10860946029424667,-0.04049573093652725,-0.04361562430858612,-0.05033167079091072,0.04586533084511757,0.01688401773571968,0.02066883072257042,0.030568599700927734,0.004278863780200481,-0.016841165721416473,-0.03872004896402359,0.08953887969255447,0.030094169080257416,0.01645681820809841,-0.10737812519073486,0.019108537584543228]},{"text":"Come, cheer up: it takes less courage to climb down than to face capture—remember that.","book":"Down and Out in Paris and London","chapter":17,"embedding":[-0.007577022071927786,0.09201212227344513,-0.007919114083051682,-0.008803881704807281,0.09112690389156342,0.026557113975286484,-0.006130425725132227,0.07362138479948044,0.018475789576768875,-0.017965096980333328,-0.00997216533869505,-0.04504774883389473,0.06623600423336029,-0.008772587403655052,0.01769174076616764,0.01072397269308567,0.0054405624978244305,0.055720921605825424,-0.051694467663764954,0.06098875775933266,-0.0319373719394207,-0.07109067589044571,0.05892256274819374,0.08742153644561768,-0.07780606299638748,-0.04799526557326317,-0.07148981094360352,0.018311116844415665,0.04063106328248978,0.0025185481645166874,0.0012809655163437128,0.0006965132197365165,0.02937166579067707,-0.013042552396655083,-0.05135264992713928,0.10279849916696548,-0.002970811678096652,-0.033191483467817307,-0.040486980229616165,0.017188888043165207,-0.03333412855863571,0.048583149909973145,-0.01901288330554962,0.004695919342339039,0.042356811463832855,0.055650707334280014,0.013723962940275669,-0.041049353778362274,-0.009469166398048401,-0.07035057246685028,-0.02599981799721718,0.03164052590727806,-0.05118943750858307,-0.08456016331911087,0.020095013082027435,0.09805025160312653,0.04681303724646568,-0.03447265550494194,0.03400164097547531,0.028632281348109245,-0.03015795908868313,-0.06068966165184975,-0.03763502463698387,0.0350005179643631,0.0015906818443909287,0.004262024071067572,-0.006952647585421801,-0.003471705364063382,-0.01589188724756241,0.09777895361185074,-0.047591544687747955,-0.036673013120889664,0.05503760278224945,-0.009690400213003159,-0.030864372849464417,0.04208742454648018,-0.032443974167108536,-0.023697257041931152,0.004933500196784735,0.024345291778445244,0.03815535083413124,-0.05057085305452347,-0.08791469037532806,0.038056306540966034,-0.08561276644468307,-0.06509878486394882,0.048265404999256134,-0.07491033524274826,0.010552959516644478,0.017110494896769524,-0.024388395249843597,-0.017755242064595222,0.011132638901472092,0.055834729224443436,-0.053951457142829895,-0.028612995520234108,-0.05045458674430847,0.05084354802966118,-0.11705032736063004,0.027178514748811722,0.0337793193757534,0.03055083006620407,0.00874297320842743,0.012322218157351017,0.009139715693891048,-0.030417388305068016,-0.002700215205550194,-0.005941799376159906,-0.024450626224279404,0.02109268680214882,-0.0599168986082077,-0.02810428850352764,0.09116744250059128,0.04391204193234444,0.02741161733865738,0.05262911692261696,-0.13298574090003967,-0.019947441294789314,-0.03332037851214409,0.07215693593025208,0.12402418255805969,-0.0027304759714752436,0.052524879574775696,0.00860139261931181,0.08725102245807648,-0.0284146536141634,0.02216224931180477,-3.607575632284292e-33,0.13486170768737793,0.024688763543963432,0.00021868273324798793,0.04550345242023468,0.04318663105368614,-0.028706632554531097,-0.013607854954898357,-0.09014241397380829,-0.0687316507101059,0.063875213265419,-0.04118470102548599,-0.003605014644563198,-0.014878768473863602,-0.040056012570858,-0.055024370551109314,-0.04368690773844719,-0.05853792279958725,-0.015475564636290073,-0.05439465492963791,0.04534158855676651,0.01134736742824316,-0.0662001222372055,-0.021726012229919434,-0.008044647984206676,0.013690444640815258,0.022617371752858162,-0.007281365338712931,0.032291363924741745,-0.07808841019868851,0.00945104006677866,-0.05310064181685448,-0.04408995434641838,0.00030467871692962945,-0.08275644481182098,0.03865722939372063,0.0033906532917171717,0.0210170429199934,-0.06900966167449951,-0.042714983224868774,-0.030160799622535706,-0.10507936030626297,0.07755336165428162,-0.07255230098962784,-0.014335757121443748,0.0091795539483428,-0.017655199393630028,0.03591953217983246,-0.04777685925364494,-0.1037713885307312,0.0614297054708004,0.005908446852117777,0.05166339501738548,0.04202784225344658,-0.029637208208441734,-0.03976394236087799,-0.005262081045657396,0.03831322863698006,-0.0013888893881812692,-0.022830666974186897,0.030543478205800056,-0.04472790285944939,0.00632319925352931,-0.039605025202035904,-0.017825651913881302,0.0005612055538222194,0.0008056992664933205,-0.020393526181578636,0.031187420710921288,-0.07313284277915955,0.03367844223976135,-0.006357402075082064,0.049084048718214035,-0.10430189222097397,-0.03294053673744202,-0.00686497101560235,0.04240471124649048,0.03605205938220024,-0.08803855627775192,0.09380573779344559,-0.09591592103242874,-0.017567578703165054,-0.014031169936060905,-0.0826861634850502,-0.024410439655184746,0.13762478530406952,-0.03217269480228424,0.05897000804543495,-0.21347612142562866,-0.02004382759332657,0.05017917975783348,-0.07567288726568222,-0.0240678321570158,0.04546399414539337,0.022814210504293442,-0.018075183033943176,1.5333088619053416e-33,0.14874158799648285,-0.021552253514528275,0.008515503257513046,-0.04565831273794174,-0.015786252915859222,0.038116417825222015,0.03509765490889549,0.01688099093735218,-0.005619545001536608,-0.0004560463421512395,-0.055766500532627106,-0.002112383721396327,0.009455048479139805,0.0477963462471962,0.10207337886095047,-0.07457432895898819,0.08304107934236526,-0.003640790469944477,-0.048762209713459015,0.004857398569583893,0.004727092571556568,0.05969929322600365,-0.01129896380007267,-0.013765301555395126,-0.055622443556785583,-0.0051397904753685,0.06345107406377792,0.020020265132188797,0.08416097611188889,-0.1287747025489807,0.01119808666408062,-0.02408401295542717,-0.049258965998888016,0.023049183189868927,-0.0229119174182415,0.10175871104001999,0.034679148346185684,0.023732569068670273,-0.05831630900502205,0.001975152874365449,-0.012852223590016365,-0.0035193506628274918,-0.0002619972510728985,-0.021839072927832603,0.014492776244878769,-0.019892778247594833,0.07142780721187592,0.05068096145987511,-0.10263552516698837,-0.005346331279724836,-0.051655299961566925,-0.012524689547717571,-0.018941042944788933,0.02146393433213234,0.038789406418800354,-0.030973536893725395,0.025494178757071495,-0.06454353034496307,-0.006299990229308605,-0.03894568607211113,-0.019792286679148674,-0.031045543029904366,-0.08808866143226624,0.04270865023136139,0.04319465532898903,0.01874491013586521,-0.028583353385329247,0.0697803720831871,-0.04154592752456665,0.07500917464494705,0.029472021386027336,0.016469910740852356,0.010179917328059673,-0.016420479863882065,-0.039903197437524796,-0.015481323935091496,-0.06663046032190323,0.10123153030872345,0.03597796708345413,-0.026182467117905617,0.0257888063788414,0.01005198247730732,0.011438227258622646,-0.020599786192178726,-0.00543956458568573,0.08152081072330475,-0.0015091460663825274,0.05195329338312149,-0.015374534763395786,-0.03111601620912552,-0.027175741270184517,-0.009054959751665592,0.11931495368480682,0.020188376307487488,0.01923065446317196,-2.6615646575578467e-8,-0.09929085522890091,0.0001720530999591574,-0.05111149698495865,-0.0014603183371946216,0.04732721671462059,0.06482593715190887,0.010610518977046013,-0.0037701448891311884,-0.018030406907200813,-0.03416375443339348,0.05747024342417717,-0.009650619700551033,0.0318329744040966,0.13267889618873596,0.0018321501556783915,0.061477020382881165,0.010408919304609299,-0.011565527878701687,-0.03793533518910408,-0.023480242118239403,-0.05203744024038315,-0.051568228751420975,0.006656460464000702,-0.0008665442001074553,-0.05336982011795044,-0.030338559299707413,-0.044212743639945984,0.054396044462919235,-0.028063952922821045,-0.019972344860434532,0.01895514875650406,0.017052864655852318,-0.0700301006436348,-0.009065213613212109,0.08654520660638809,0.08047197014093399,0.15007540583610535,0.0065749152563512325,0.049041181802749634,0.015991026535630226,-0.08036133646965027,0.05270775780081749,0.036447495222091675,0.05909460037946701,-0.04327091574668884,0.07428447902202606,0.07237040251493454,-0.019697023555636406,-0.017373716458678246,-0.11499840021133423,0.043749626725912094,-0.08779361844062805,-0.00629905890673399,0.11117809265851974,0.07625672221183777,0.06170271337032318,-0.016204196959733963,0.02707926370203495,-0.009976460598409176,0.10233766585588455,0.03721359372138977,-0.02857847511768341,-0.03315778821706772,0.038123227655887604]},{"text":"Are you so sleepy as that?","book":"Down and Out in Paris and London","chapter":18,"embedding":[0.04753139615058899,-0.05808082967996597,0.03231223300099373,0.09472576528787613,0.04053357616066933,0.002903921762481332,0.09303390979766846,0.01070556789636612,0.030980121344327927,0.0009856963297352195,-0.11056452244520187,0.020652906969189644,-0.03420071676373482,0.022478865459561348,0.04254153370857239,0.04000347852706909,0.029533838853240013,-0.09763292223215103,-0.013913110829889774,0.11630000919103622,-0.011922524310648441,0.07457374781370163,0.0833008661866188,0.060282472521066666,0.08236602693796158,0.02036392129957676,-0.0051112486980855465,-0.06910774111747742,0.0364135317504406,-0.058123115450143814,-0.08135177940130234,-0.022981207817792892,0.009909873828291893,-0.08610544353723526,0.03738975524902344,0.06630866229534149,0.05475571006536484,-0.017174411565065384,-0.014572789892554283,-0.006963843479752541,0.09145797044038773,0.016097821295261383,0.037019070237874985,-0.015440965071320534,0.010255531407892704,-0.02892245724797249,-0.05402249097824097,-0.03431561589241028,0.09580349177122116,0.03149614483118057,-0.04982084035873413,0.041396670043468475,0.03893402963876724,-0.021991217508912086,0.034688688814640045,-0.014172449707984924,0.0323466919362545,0.0392022430896759,0.019557585939764977,0.0635557621717453,-0.055722083896398544,0.017934788018465042,-0.02529502846300602,-0.0032804214861243963,0.07053782790899277,0.06642692536115646,-0.020604481920599937,-0.07216673344373703,-0.04346344247460365,0.002941169310361147,-0.08485280722379684,0.018970157951116562,0.0656471773982048,-0.03762300685048103,-0.09995291382074356,-0.017842039465904236,0.04242243245244026,-0.014526782557368279,0.09407035261392593,0.0003879796131514013,0.024152027443051338,-0.06356777250766754,0.039686013013124466,-0.005214780103415251,-0.047416213899850845,-0.035312432795763016,0.13824105262756348,0.03963504731655121,-0.03140868619084358,0.008200586773455143,0.015447597950696945,0.022382745519280434,-0.004773725289851427,0.033197030425071716,0.022528020665049553,0.004125983454287052,0.05667179822921753,-0.07136069238185883,-0.008830001577734947,0.0628901869058609,-0.04780399426817894,0.09610921144485474,0.011312078684568405,-0.05571293830871582,0.02075580321252346,0.04306146129965782,0.013226484879851341,0.07187698781490326,-0.004793146159499884,-0.1048516035079956,-0.05381817743182182,-0.04339628294110298,0.006285651586949825,-0.033848606050014496,0.01509080734103918,0.018342774361371994,-0.026853598654270172,0.02998398244380951,0.015328525565564632,0.03713400661945343,0.07358504086732864,0.08299146592617035,-0.03794509917497635,-0.04544173926115036,0.060800325125455856,-0.08547936379909515,-0.04058128967881203,-5.36838461989549e-33,0.05372856557369232,0.03915366530418396,0.04266835004091263,0.044264212250709534,-0.03778430074453354,-0.02619086764752865,-0.0590771809220314,0.0067728604190051556,0.00400468660518527,-0.024136565625667572,-0.08387135714292526,-0.02402476966381073,-0.030077796429395676,-0.033686332404613495,-0.043807074427604675,-0.041032757610082626,-0.018519818782806396,0.00691531365737319,-0.01715392805635929,0.022858571261167526,-0.025765517726540565,-0.050382182002067566,-0.007353801745921373,0.06612370908260345,-0.041935160756111145,0.07228989899158478,-0.003851134330034256,-0.01869886927306652,-0.03749026358127594,0.040044985711574554,-0.05415322631597519,-0.003325959900394082,0.019900493323802948,-0.03611522540450096,-0.059668708592653275,-0.11534382402896881,0.0712914988398552,0.0341145358979702,-0.028671307489275932,-0.02319624088704586,0.006165820639580488,0.026258043944835663,0.06433036923408508,0.02486913837492466,-0.0773538276553154,-0.038715898990631104,0.036927733570337296,0.04015204682946205,0.008091800846159458,-0.0032439136411994696,-0.03880826383829117,0.02223322167992592,-0.014008876867592335,-0.08682727068662643,0.056126032024621964,-0.005116337910294533,-0.013979683630168438,0.013713433407247066,0.009214412420988083,0.08212979882955551,0.02973015233874321,0.05504894629120827,-0.01280153263360262,-0.03896719589829445,-0.037350233644247055,0.029187088832259178,-0.033012744039297104,0.030620122328400612,0.001361217931844294,-0.03771558031439781,0.05560482665896416,0.016423910856246948,-0.02923079952597618,0.01729678176343441,-0.016316698864102364,0.03189617395401001,0.05797640606760979,-0.0339922159910202,-0.05078809708356857,-0.13129812479019165,0.10776350647211075,0.03813507407903671,0.044624678790569305,-0.06445632874965668,0.06240113824605942,-0.04099530354142189,-0.002543823793530464,0.04483021795749664,-0.016820836812257767,-0.024125589057803154,-0.08040148764848709,-0.04466356337070465,0.038686465471982956,-0.10667980462312698,-0.15510988235473633,3.9409788909561095e-33,-0.01565852202475071,-0.1504000872373581,-0.03436734899878502,0.051920562982559204,-0.011365905404090881,-0.07113638520240784,0.03610051050782204,-0.020439473912119865,-0.1188265010714531,0.02852974273264408,0.06647497415542603,-0.031515464186668396,-0.042946141213178635,0.026634322479367256,0.05661033093929291,-0.040576934814453125,0.06662898510694504,0.05843767151236534,-0.05561104416847229,0.022836534306406975,-0.04792109131813049,0.031116468831896782,-0.017196597531437874,0.06343656778335571,0.013960309326648712,0.09476494789123535,-0.015457776375114918,0.08440889418125153,-0.01716366969048977,0.007614656817167997,0.021732784807682037,-0.044859204441308975,-0.014909081161022186,-0.048843253403902054,-0.01650320179760456,0.04787055402994156,0.04153997078537941,-0.05130143091082573,-0.03846981003880501,-0.07274855673313141,0.030778061598539352,-0.0024776007048785686,-0.06473801285028458,0.15571200847625732,0.11209578067064285,-0.024833058938384056,0.004692130256444216,-0.005707623902708292,-0.04114314541220665,0.04773474112153053,0.0039864289574325085,0.018084846436977386,-0.07512878626585007,0.014126853086054325,-0.04547882825136185,0.050038594752550125,-0.010500102303922176,-0.06439812481403351,0.030201168730854988,0.022367119789123535,-0.03213004022836685,-0.015971627086400986,0.01759820245206356,-0.0722796618938446,0.1042659729719162,-0.01301248837262392,-0.01583646796643734,-0.04325496032834053,0.05808265507221222,-0.031231801956892014,0.0669543445110321,-0.14757513999938965,-0.12160060554742813,0.04525291174650192,0.0017424188554286957,0.004274064674973488,0.07553749531507492,0.009662136435508728,0.021548429504036903,-0.06880789250135422,-0.060609929263591766,-0.021725250408053398,0.06193996220827103,-0.03093574196100235,-0.04008091986179352,-0.060206685215234756,0.06742420047521591,-0.0023893150500953197,0.01756540685892105,0.004096751566976309,0.007910886779427528,0.0002726926759351045,-0.06575223058462143,0.05826980248093605,0.04726028069853783,-2.169505641802516e-8,0.03498931601643562,-0.024657225236296654,-0.019683822989463806,0.0161404088139534,0.01692902110517025,-0.02379898726940155,-0.05023464933037758,-0.06880898028612137,-0.06767979264259338,-0.018759509548544884,0.09879284352064133,-0.0008163751335814595,0.013650848530232906,0.002820414723828435,0.03570970520377159,0.07400276511907578,0.001115524093620479,0.004352126270532608,-0.006490406580269337,-0.08275286853313446,0.027287600561976433,0.006316641345620155,-0.0627918615937233,0.08180677890777588,0.06913325935602188,0.015159805305302143,-0.007020203396677971,0.02948177605867386,0.047032762318849564,-0.017636319622397423,0.0543590784072876,0.038603220134973526,-0.09073543548583984,-0.04199424758553505,-0.009513523429632187,-0.13192123174667358,0.07075566798448563,0.008976206183433533,0.04187631607055664,0.055093154311180115,-0.010468714870512486,-0.026934556663036346,-0.059393610805273056,0.0613284595310688,0.02023368328809738,-0.06945298612117767,0.05630000680685043,-0.04142504185438156,0.026831770315766335,0.003939512185752392,-0.02941381372511387,-0.006038757041096687,0.08234889060258865,0.005221816245466471,0.02951621636748314,-0.001744354609400034,0.017658118158578873,-0.0306062251329422,-0.07379504293203354,0.01600547879934311,0.07896216958761215,-0.05881979316473007,-0.03256984055042267,-0.03756081685423851]},{"text":"Well, that pipe must be got down—(_He hits himself on the chest, and adds_)—Do you hear that, you chocolate cream soldier? (_He turns to the window._) RAINA. (_anxiously_).","book":"Down and Out in Paris and London","chapter":18,"embedding":[0.01018478162586689,-0.0006241667433641851,0.09763521701097488,0.02352941408753395,-0.004679135512560606,0.008632048033177853,0.19163641333580017,-0.05615219473838806,-0.030407004058361053,-0.06654756516218185,-0.08516646176576614,-0.14584249258041382,-0.05634012818336487,0.00609201705083251,0.007196602877229452,0.043629128485918045,0.01057196594774723,-0.005816763266921043,0.022397594526410103,0.01274645235389471,-0.0346260629594326,0.03212187439203262,0.014987422153353691,0.04297493025660515,-0.05897998809814453,0.024714412167668343,0.06962850689888,-0.013233582489192486,-0.014103977009654045,-0.027499796822667122,-0.0016330331563949585,-0.024973366409540176,-0.005371252540498972,-0.02440280094742775,-0.009931128472089767,0.03798877075314522,0.07292615622282028,0.0023622866719961166,0.03399403393268585,0.017046352848410606,0.008715489879250526,0.014215127564966679,-0.04954983666539192,-0.01057633850723505,0.014049592427909374,-0.016141189262270927,0.014942853711545467,0.026638945564627647,0.017284534871578217,0.06702020764350891,-0.057821378111839294,-0.010267587378621101,-0.023805176839232445,0.02095450647175312,-0.013117944821715355,-0.043545570224523544,0.08099442720413208,-0.048658281564712524,0.06168478727340698,0.055598385632038116,-0.08041993528604507,0.018313271924853325,-0.012405747547745705,0.14276407659053802,0.06494289636611938,-0.08833608031272888,-0.0624457411468029,0.007201038300991058,-0.047011878341436386,0.158770352602005,0.02549007534980774,0.074647456407547,0.02245701476931572,0.03453948721289635,-0.11569518595933914,-0.01059415191411972,0.009935841895639896,-0.028638822957873344,0.014301209710538387,0.06522758305072784,-0.022728873416781425,-0.040930163115262985,0.013841900043189526,0.04075341299176216,-0.1041886955499649,0.08258102834224701,0.03883363679051399,-0.08784033358097076,-0.03753764182329178,-0.06211211532354355,-0.04853922128677368,-0.03952522575855255,0.020308764651417732,0.10104280710220337,0.03342316299676895,0.025164565071463585,0.0017355959862470627,-0.07838839292526245,-0.12987269461154938,0.07012240588665009,0.027111057192087173,-0.046683263033628464,-0.029886821284890175,-0.035957347601652145,-0.030239177867770195,-0.03299646079540253,-0.10470515489578247,-0.018621841445565224,0.008608516305685043,-0.006225169636309147,-0.00382818840444088,-0.0789969339966774,0.049007121473550797,-0.04472575709223747,-0.04496966674923897,0.006643342785537243,-0.03921566531062126,-0.07979913800954819,-0.05762844160199165,0.12726005911827087,0.007938256487250328,0.014660329557955265,-0.03307374194264412,0.030611174181103706,-0.014216131530702114,-0.04172271117568016,0.02970537357032299,-5.714142691536435e-33,0.08314057439565659,-0.007997068576514721,0.03164839372038841,0.04037780314683914,0.12738032639026642,0.011407854966819286,-0.022714095190167427,-0.04018028825521469,-0.04739988595247269,0.039594393223524094,-0.09752487391233444,0.055871132761240005,-0.08306329697370529,0.011744611896574497,-0.0827699676156044,0.02658722549676895,0.01391115877777338,-0.010563811287283897,-0.017454737797379494,-0.020381685346364975,-0.0358646996319294,0.0055620972998440266,-0.028076816350221634,0.041019659489393234,0.010641523636877537,0.0128717590123415,0.05990231782197952,0.006563884671777487,0.021130511537194252,0.029021458700299263,-0.07412466406822205,0.018131157383322716,0.09606757014989853,0.0438397116959095,-0.0001782230392564088,-0.0405595488846302,-0.035195667296648026,0.02943948470056057,-0.13487504422664642,0.0119605278596282,-0.05905507504940033,0.0030227138195186853,-0.06200971454381943,0.026722125709056854,-0.11445461213588715,-0.11351392418146133,-0.03861821070313454,-0.003429243341088295,-0.006519785616546869,-0.10147622972726822,0.05855444818735123,0.0929216518998146,-0.004320927429944277,0.008025015704333782,0.016673263162374496,-0.04094681143760681,0.028343556448817253,0.030043896287679672,0.08938059955835342,0.037929780781269073,0.06972045451402664,0.013033670373260975,0.08776605129241943,-0.037757113575935364,-0.009862317703664303,-0.08698917180299759,-0.07542524486780167,0.009185264818370342,0.05938241630792618,-0.029611514881253242,-0.04346559941768646,0.056742213666439056,-0.011124253273010254,-0.03376946598291397,-0.02593485452234745,-0.023569438606500626,-0.002189363120123744,0.012987326830625534,0.054825685918331146,-0.06270424276590347,-0.011739990673959255,-0.024081947281956673,-0.00632708054035902,0.05369899794459343,-0.024997081607580185,-0.013064144179224968,-0.02631104551255703,-0.10667494684457779,-0.09586503356695175,0.044664427638053894,-0.024802980944514275,0.021957077085971832,0.06942038238048553,-0.09072408825159073,-0.01331317238509655,8.280850769604223e-34,0.026280775666236877,4.468345338182189e-8,-0.013685022480785847,0.04451409727334976,0.023608993738889694,-0.0023449179716408253,-0.029394883662462234,0.02201768010854721,0.04230016842484474,0.06288176029920578,-0.02380947582423687,0.02128017507493496,-0.01877482235431671,0.03933040425181389,0.09218565374612808,0.008368217386305332,0.06756379455327988,0.002030235016718507,0.0035885886754840612,-0.013612269423902035,0.00879004504531622,-0.014600494876503944,-0.02833259105682373,0.010503989644348621,-0.08603160828351974,0.030070092529058456,0.12279751896858215,-0.040104422718286514,-0.041061464697122574,-0.04337654262781143,-0.03442418575286865,-0.06639694422483444,-0.04876277968287468,-0.031684212386608124,-0.027410216629505157,0.04403376951813698,-0.015342207625508308,-0.038917940109968185,-0.03990848362445831,-0.018639259040355682,-0.06790951639413834,-0.035088252276182175,0.05865604802966118,-0.0022614398039877415,0.02626156061887741,-0.018142811954021454,-0.0024969237856566906,0.015603043138980865,-0.016837745904922485,0.022839076817035675,0.008736172690987587,-0.061357781291007996,0.012513658963143826,0.08145508170127869,-0.0009100615279749036,0.030870631337165833,-0.016359899193048477,-0.041456762701272964,-0.008646227419376373,0.023007169365882874,-0.015835972502827644,-0.014616243541240692,0.0649704784154892,0.0021219176705926657,-0.055704690515995026,-0.03964562714099884,-0.05475909262895584,-0.026892973110079765,0.056551434099674225,-0.034734372049570084,0.05459103733301163,-0.018590353429317474,-0.08563745021820068,0.010661364533007145,0.05385322496294975,0.05834248661994934,0.008751396089792252,-0.10141531378030777,-0.025633128359913826,-0.09322523325681686,-0.06920697540044785,0.004373685922473669,-0.025969700887799263,0.052817508578300476,0.09915497899055481,-0.08607352524995804,0.03231967240571976,0.044220175594091415,-0.0064039407297968864,0.08189649879932404,0.06390009075403214,0.03714235872030258,0.008544018492102623,-0.06828595697879791,0.016702279448509216,-4.240690287815596e-8,-0.09960015118122101,-0.028608543798327446,-0.054638151079416275,-0.0495949313044548,-0.01686999760568142,0.012434713542461395,0.01209122221916914,-0.028364036232233047,-0.010778898373246193,-0.10065580159425735,0.09159377217292786,0.07384002953767776,0.05922875180840492,0.0317138209939003,0.06888130307197571,0.07853218913078308,-0.005857659969478846,-0.014397049322724342,-0.06679507344961166,-0.10070100426673889,-0.012014291249215603,0.02553611621260643,0.0461152084171772,0.04158737137913704,-0.07037017494440079,0.038055043667554855,-0.06449428200721741,-0.006513378582894802,-0.05366437882184982,0.08485323190689087,0.028284115716814995,0.047456998378038406,-0.12694966793060303,-0.02851610630750656,0.02148672193288803,0.06812267005443573,0.013246679678559303,-0.009884273633360863,-0.02824251540005207,0.0024026527535170317,0.03402797877788544,0.024325499311089516,0.00352654536254704,-0.003998452331870794,-0.02735137939453125,0.015368380583822727,0.010865932330489159,-0.00324048800393939,-0.04542422667145729,0.02031891793012619,-0.04044945165514946,-0.004648679401725531,0.02283174730837345,0.0449896939098835,0.07150942832231522,-0.020396945998072624,-0.001519098412245512,-0.03491269797086716,-0.04870181530714035,0.034401554614305496,0.06115799769759178,-0.012471170164644718,-0.0057727317325770855,-0.013354483991861343]},{"text":"Put out the candles, so that they shan’t see the light when I open the shutters.","book":"Down and Out in Paris and London","chapter":18,"embedding":[0.018714122474193573,0.03237318620085716,0.03413493186235428,0.03736966475844383,-0.004906072746962309,-0.018834520131349564,-0.009377239271998405,-0.04322902113199234,0.02944653108716011,0.04523226618766785,0.1028113141655922,-0.003282892983406782,-0.077146977186203,-0.0029414109885692596,0.005001442041248083,-0.01224044431000948,-0.057380739599466324,0.015649612993001938,-0.039847034960985184,-0.044162433594465256,0.05050663650035858,-0.13329900801181793,-0.007003495469689369,0.03958754986524582,-0.0019987670239061117,-0.01180174108594656,-0.04843176528811455,0.03362688794732094,-0.01562100276350975,0.03559041768312454,-0.01325470395386219,-0.017463495954871178,-0.07802383601665497,0.012489676475524902,0.025959938764572144,-0.024889808148145676,-0.026346823200583458,-0.006430262699723244,0.019376151263713837,-0.03006608970463276,0.0501539371907711,0.009865391068160534,0.018136359751224518,-0.006405907683074474,-0.003618949092924595,0.023129085078835487,0.10022848099470139,0.004224610514938831,0.09167744964361191,-0.03915941342711449,0.027818234637379646,-0.029900163412094116,0.0003354053769726306,0.06221746280789375,-0.011340144090354443,-0.047807011753320694,-0.006303643807768822,0.0023394788149744272,0.01647861674427986,-0.03149017319083214,-0.03292674943804741,0.06229981407523155,0.005623447708785534,0.004055667202919722,-0.02992001548409462,0.11530620604753494,-0.01054005604237318,0.01448243111371994,0.017859581857919693,0.05685931444168091,-0.014504744671285152,0.06045803055167198,0.017785215750336647,0.006133963819593191,-0.088958740234375,-0.08144433796405792,-0.04327666386961937,-0.07910378277301788,-0.014878273010253906,0.01677790842950344,-0.013999967835843563,-0.10458435118198395,-0.02251555025577545,0.12222093343734741,0.03212069347500801,0.07187007367610931,0.05627308785915375,-0.010541635565459728,0.004021176137030125,0.05475747585296631,-0.11255486309528351,-0.0435282438993454,-0.0318266861140728,0.05583927780389786,-0.08169698715209961,-0.047375552356243134,0.006847774609923363,0.047738492488861084,-0.02743532694876194,0.025843724608421326,0.02023252472281456,-0.054730042815208435,0.034074120223522186,0.06857256591320038,0.0040028453804552555,0.0001881801144918427,-0.00788414478302002,0.029777327552437782,0.005535894073545933,-0.020137041807174683,-0.014338910579681396,0.05712303891777992,0.020427150651812553,0.07427047938108444,-0.08601408451795578,-0.015265220776200294,0.0023673688992857933,0.048960424959659576,-0.0029066416900604963,-0.08268455415964127,0.09557750821113586,0.02135430835187435,0.01040424033999443,0.023821458220481873,0.016263769939541817,-0.06640129536390305,-0.013690182007849216,-2.1413872223044145e-33,0.04242990165948868,0.08268815279006958,0.010717335157096386,-0.02211214043200016,0.018493447452783585,-0.02244698442518711,-0.002377862110733986,0.032444268465042114,-0.08455009013414383,0.019013630226254463,0.09065364301204681,-0.031382035464048386,0.022129680961370468,-0.03796527162194252,0.07710383087396622,-0.04064599424600601,0.04373649135231972,0.014787123538553715,0.031424880027770996,-0.04866807535290718,-0.03494331240653992,-0.0920223817229271,-0.025926079601049423,0.013352335430681705,0.00041023927042260766,0.08460695296525955,0.022058136761188507,0.012735655531287193,-0.04784238710999489,0.02704460173845291,0.020002121105790138,0.05377292260527611,0.09325738251209259,-0.013421951793134212,0.038693867623806,0.011158308014273643,0.0026021709199994802,-0.011509614065289497,0.022452067583799362,-0.036509376019239426,-0.08327218890190125,-0.016843833029270172,-0.023992091417312622,0.00586471613496542,-0.006536909844726324,0.0770682841539383,-0.014409765601158142,0.04793206974864006,-0.002026123460382223,0.09084407985210419,0.04687726870179176,-0.003360158996656537,-0.026260623708367348,-0.027714505791664124,-0.012222581543028355,-0.041395097970962524,-0.01942460797727108,-0.10635232925415039,0.015024049207568169,-0.06891892105340958,0.04346712306141853,-0.042616717517375946,0.04898162558674812,-0.046322185546159744,-0.0016382256289944053,-0.007172796409577131,-0.03316395357251167,0.1019059419631958,0.013477388769388199,-0.09211502224206924,-0.05000925064086914,-0.017803935334086418,0.0026504325214773417,-0.03519635275006294,-0.0027325504925101995,0.03671218454837799,-0.016427049413323402,0.05334921553730965,0.014621336944401264,0.009712312370538712,0.09499619901180267,-0.06569719314575195,-0.06850668787956238,0.033883269876241684,0.012140604667365551,-0.10094244033098221,-0.06088509038090706,0.07587699592113495,-0.13501860201358795,0.05876684933900833,0.02584039606153965,0.04511057212948799,0.09504000842571259,-0.004795313812792301,-0.09266836196184158,2.2796975406610957e-33,0.09786181896924973,-0.010066616348922253,-0.09593993425369263,-0.042254820466041565,0.014845496974885464,0.01519845798611641,-0.01606856845319271,-0.056374456733465195,0.054625339806079865,0.09592033177614212,0.03223603218793869,0.0006260349764488637,-0.09947026520967484,0.003466762602329254,-0.0629182681441307,-0.040822021663188934,0.042766399681568146,0.08289312571287155,-0.012333645485341549,0.024360330775380135,-0.046753063797950745,0.0306854285299778,0.0021652027498930693,0.04245804622769356,-0.013975040055811405,0.04523193836212158,0.09356173872947693,0.035497382283210754,-0.07061824202537537,-0.07695290446281433,0.005447172559797764,-0.036446861922740936,-0.05831887200474739,-0.08874990791082382,0.01741580106317997,0.07652552425861359,-0.01771911419928074,-0.01665280945599079,-0.032481849193573,0.023145396262407303,0.05972816050052643,0.04444141313433647,-0.08400025963783264,-0.0021056807599961758,-0.05986548215150833,0.006496010348200798,-0.022793279960751534,-0.027369791641831398,-0.028936313465237617,0.08537393808364868,0.023727532476186752,-0.04070793464779854,-0.04343011602759361,-0.007220174185931683,-0.08361633867025375,0.022004825994372368,0.04010438919067383,0.02151295728981495,0.12012763321399689,-0.004606919828802347,0.05737511068582535,-0.025258002802729607,-0.029413536190986633,0.07191646844148636,-0.0999056026339531,-0.0359053798019886,-0.005311761517077684,0.15370917320251465,0.04775991663336754,0.026776565238833427,0.008581997826695442,0.05040606111288071,0.10145671665668488,-0.004006165079772472,-0.020821094512939453,-0.04798290878534317,0.00661672605201602,-0.06686212122440338,0.019368097186088562,-0.04802986606955528,0.034943219274282455,-0.06477527320384979,0.002158051123842597,0.03055177815258503,-0.04028083011507988,0.0030256877653300762,-0.03863871470093727,-0.026525061577558517,-0.09605090320110321,-0.06730671972036362,-0.07066629827022552,0.06827923655509949,0.1229897141456604,0.01456814631819725,0.029100622981786728,-2.113636554668119e-8,0.004571050871163607,-0.048297297209501266,0.06996512413024902,-0.016609223559498787,-0.0012172181159257889,-0.021075338125228882,-0.007748018950223923,0.09883357584476471,-0.06755232065916061,-0.115484818816185,0.10267449170351028,-0.019128117710351944,0.11077168583869934,0.012231774628162384,0.05926914140582085,0.012129566632211208,-0.06301099807024002,-0.02188844606280327,-0.03924897685647011,-0.023102175444364548,-0.06614754348993301,-0.027379488572478294,0.044132981449365616,-0.011269020847976208,0.033401936292648315,-0.02481609582901001,0.04466450586915016,-0.023251034319400787,0.03014056384563446,0.054429080337285995,0.02480257675051689,-0.004206452518701553,0.019570382311940193,0.008909006603062153,-0.05347901210188866,0.011561954393982887,-0.06410627067089081,-0.017055820673704147,0.008241191506385803,-0.0014614926185458899,-0.06804441660642624,-0.05742351710796356,-0.023537099361419678,0.07129500061273575,0.012478568591177464,0.0012844088487327099,0.1642134189605713,0.006921061314642429,-0.10251222550868988,0.07713092118501663,-0.015790831297636032,-0.054407961666584015,0.016238132491707802,0.039558976888656616,0.01950548216700554,-0.10964368283748627,0.10763931274414062,0.019037378951907158,-0.05634485185146332,0.021119607612490654,0.05115777626633644,0.010603701695799828,-0.07721568644046783,0.0299358032643795]},{"text":"I really don’t want to be troublesome. (_She shakes him in her impatience._) I am not indifferent, dear young lady, I assure you.","book":"Down and Out in Paris and London","chapter":19,"embedding":[-0.002674513729289174,0.021941406652331352,0.10119639337062836,-0.0017520339461043477,0.04779966548085213,-0.01842299848794937,0.05297867953777313,-0.033643197268247604,-0.04872691631317139,-0.07270538806915283,-0.10290539264678955,-0.06575968116521835,-0.0400644913315773,-0.002489982871338725,0.01065905299037695,0.036577314138412476,0.01904001645743847,-0.08860225975513458,-0.010563968680799007,0.09031066298484802,-0.03510978817939758,0.0653272345662117,0.045870646834373474,-0.06223567947745323,-0.0743812695145607,-0.03142794594168663,0.09014306217432022,0.004217186477035284,0.028285734355449677,0.022050106897950172,-0.052181266248226166,0.012882922776043415,-0.019392376765608788,-0.02822231873869896,-0.03105904534459114,0.029695674777030945,0.006219534203410149,-0.03969636559486389,0.07093825191259384,-0.041709527373313904,-0.0044595785439014435,-0.04479651898145676,-0.03219662234187126,0.017852911725640297,-0.008247499354183674,-0.021243929862976074,0.02539179101586342,-0.012907697819173336,-0.044835858047008514,-0.07624957710504532,-0.08253122866153717,0.013140183873474598,-0.1091482937335968,0.004372823517769575,0.05470414087176323,0.028371447697281837,0.05237431824207306,0.009963183663785458,0.0232122540473938,-0.02672920748591423,-0.0954817607998848,-0.060408689081668854,0.012089453637599945,0.07784974575042725,0.0034407316707074642,0.017290866002440453,0.020156025886535645,-0.0035430071875452995,-0.037177782505750656,0.13596050441265106,0.007387098856270313,0.003910844214260578,-0.04996008798480034,0.03219108656048775,-0.09138449281454086,-0.02355133928358555,0.09946449100971222,0.026429353281855583,0.07238740473985672,0.0667693018913269,-0.06498833745718002,0.019067775458097458,0.008761156350374222,0.016580069437623024,-0.0536649264395237,-0.09269825369119644,0.05011875554919243,-0.05014587193727493,-0.029434243217110634,0.039758045226335526,-0.04655662551522255,-0.00966322049498558,-0.0274233166128397,0.004490718245506287,-0.018973711878061295,0.10422687977552414,-0.06619804352521896,0.04783770069479942,-0.1177603155374527,-0.035601209849119186,0.0852106586098671,0.08492590487003326,0.04959164932370186,0.10426891595125198,-0.09155945479869843,0.02653101086616516,-0.05489944666624069,-0.05373590812087059,-0.06684237718582153,0.017542801797389984,0.048572637140750885,-0.035591498017311096,-0.0802868902683258,-0.062187694013118744,-0.017382264137268066,0.026462631300091743,0.06579150259494781,-0.006488126702606678,0.016865115612745285,0.08074849843978882,0.014116523787379265,0.0011128145270049572,-0.026467833667993546,0.0807034894824028,-0.058238621801137924,-0.04548872262239456,0.03967907279729843,-3.410127846176672e-33,0.0697396844625473,-0.004882321693003178,-0.07486031204462051,0.03897760808467865,-0.02498687617480755,0.04823474958539009,0.010414104908704758,0.02330111712217331,0.004907653201371431,0.06595008820295334,-0.017545877024531364,0.047888752073049545,0.021913371980190277,-0.09903697669506073,-0.05773168057203293,0.05104132741689682,0.04535211622714996,-0.030205706134438515,0.0023857017513364553,0.05342401936650276,0.014286687597632408,-0.08282814174890518,-0.008723054081201553,-0.05136976018548012,0.01131224725395441,-0.0865769311785698,0.03401393070816994,-0.01806270331144333,0.1131797805428505,0.024452656507492065,-0.07332967221736908,0.011088525876402855,-0.013068008236587048,0.016011716797947884,0.07367462664842606,-0.004306752234697342,-0.03940645977854729,0.06679429858922958,-0.0637156292796135,0.0014245688216760755,-0.0034473438281565905,0.011673731729388237,0.033829860389232635,0.018660778179764748,-0.09004470705986023,0.0003653877938631922,0.03664373233914375,0.05485241115093231,-0.020455729216337204,-0.07895830273628235,-0.058346476405858994,0.011925913393497467,-0.0033780629746615887,0.009202842600643635,0.030550651252269745,-0.04225251451134682,0.025433404371142387,-0.022956453263759613,0.07876840233802795,0.044563740491867065,0.008323734626173973,-0.048074863851070404,0.0046635582111775875,-0.03218755125999451,-0.028608430176973343,0.008159095421433449,-0.04549568146467209,0.0018849874613806605,-0.016749300062656403,-0.06351429969072342,-0.012198545038700104,0.028138482943177223,-0.053912173956632614,-0.0027634473517537117,-0.010126475244760513,0.008914384059607983,-0.0273906122893095,-0.012674068100750446,0.08806046843528748,-0.09637117385864258,0.08733001351356506,0.017884202301502228,-0.0406629852950573,0.07833508402109146,-0.06498414278030396,-0.031363118439912796,-0.013073626905679703,0.04434036836028099,0.02515975944697857,0.0446631945669651,-0.030024031177163124,0.07311220467090607,-0.042707569897174835,0.0586836077272892,-0.02121136151254177,2.7566095577851138e-34,0.12714195251464844,0.012599926441907883,-0.03316821902990341,0.03979247808456421,-0.07153219729661942,-0.05690034106373787,-0.02028968371450901,0.06540337949991226,0.13609935343265533,-0.05990026146173477,-0.01479622907936573,0.01207501720637083,0.0732596144080162,-0.06439033150672913,0.03233841434121132,-0.02858685702085495,0.015029494650661945,-0.03860644996166229,0.08025132864713669,-0.00844835676252842,-0.015804123133420944,0.04010116308927536,-0.05285455659031868,-0.030052661895751953,-0.02085590921342373,0.013895010575652122,0.007140310015529394,-0.10625144839286804,-0.06093376502394676,0.07297234982252121,0.05961932614445686,-0.13376349210739136,-0.01549597829580307,0.004363476298749447,0.00017282339103985578,0.034460559487342834,-0.06724048405885696,-0.07678519934415817,0.006331116426736116,-0.02975292131304741,0.023734213784337044,0.008041758090257645,0.032084543257951736,0.027608750388026237,0.07141603529453278,0.006941098254173994,0.105178102850914,0.012970779091119766,0.026544300839304924,0.03796813264489174,0.05415687337517738,-0.0032516000792384148,-0.0067679183557629585,0.013562175445258617,0.01481689978390932,0.045027751475572586,0.05628112703561783,0.026944832876324654,-0.005862226709723473,-0.05048414319753647,0.02692023105919361,-0.0843980684876442,-0.028790906071662903,-0.028497936204075813,-0.03655778616666794,0.005624921526759863,-0.034782420843839645,-0.06927979737520218,0.03667149320244789,-0.026220958679914474,0.05276282876729965,-0.035741958767175674,-0.026898439973592758,-0.02745385281741619,0.06601020693778992,-0.0021635026205331087,0.039646416902542114,-0.10752585530281067,0.05015066638588905,-0.07833266258239746,0.11019457876682281,0.014490574598312378,0.0831805095076561,-0.08988895267248154,-0.12722255289554596,0.01338585838675499,-0.0051834373734891415,-0.06355348974466324,-0.05217692255973816,-0.016957439482212067,0.004883917048573494,0.006397930905222893,0.09276072680950165,-0.0440455786883831,0.0715242400765419,-3.4140779092695084e-8,0.05608759820461273,-0.10841097682714462,0.013524132780730724,-0.13209135830402374,-0.03469671308994293,0.009665663354098797,-0.08751553297042847,0.015075674280524254,-0.02922789379954338,-0.041661765426397324,0.03384190425276756,0.016075855121016502,0.08291294425725937,-0.058607302606105804,0.02093403972685337,0.06469380110502243,0.050133902579545975,-0.04054311290383339,-0.02780092880129814,-0.009198840707540512,0.0547439306974411,0.06908003985881805,-0.04922930896282196,-0.011043529026210308,-0.025601373985409737,0.05542274937033653,0.03298890218138695,-0.055921636521816254,-0.0321999117732048,-0.05674929544329643,0.039823248982429504,0.025358404964208603,-0.0033630335237830877,-0.03043089248239994,-0.056462861597537994,0.030467474833130836,0.01889551803469658,0.01152968779206276,0.03422021120786667,-0.029586629942059517,0.008504877798259258,0.022770684212446213,-0.08020129054784775,0.03640555962920189,0.0058293710462749004,0.015021244995296001,0.09488630294799805,-0.04795216768980026,-0.04462460055947304,0.004072315990924835,-0.02063506841659546,-0.03736463934183121,0.04844198748469353,-0.023729966953396797,0.01829487830400467,-0.05140141770243645,-0.023468827828764915,-0.01244477927684784,0.011629704385995865,0.04251280426979065,0.02421061135828495,0.09018875658512115,0.0011201082961633801,-0.09986136853694916]},{"text":"I mean that I belong to the family of the Petkoffs, the richest and best known in our country.","book":"Down and Out in Paris and London","chapter":19,"embedding":[0.00549590028822422,-0.06261447072029114,-0.028169715777039528,-0.04546716809272766,-0.029031848534941673,-0.024879029020667076,0.08645765483379364,-0.02840118296444416,-0.006740706041455269,-0.07916228473186493,0.008438806980848312,0.021899472922086716,-0.0089423144236207,-0.06841198354959488,-0.11807503551244736,-0.002740630879998207,0.0018975125858560205,-0.013439133763313293,-0.01660153642296791,0.06813283264636993,-0.10182676464319229,-0.011028364300727844,0.08962803333997726,0.01786617562174797,-0.007735773921012878,0.04385685548186302,-0.004647956229746342,0.01756257750093937,0.013335575349628925,0.03284884989261627,0.03594784811139107,0.0029893843457102776,-0.016075989231467247,0.05723578482866287,0.034778185188770294,0.021994728595018387,0.057124197483062744,0.00796283595263958,0.05685482546687126,-0.02422688715159893,0.09893830120563507,0.021901395171880722,0.0126364566385746,-0.029615160077810287,-0.06313684582710266,0.020484814420342445,-0.013291177339851856,0.011031029745936394,0.021271593868732452,-0.03860041871666908,-0.06389976292848587,-0.008135288022458553,0.03504494950175285,-0.04651777446269989,0.025073576718568802,0.032227613031864166,-0.015556450933218002,-0.0074546788819134235,-0.048925675451755524,0.044511083513498306,-0.004216860048472881,-0.029114246368408203,-0.02845536731183529,0.04713506996631622,0.013496628031134605,0.04162221401929855,-0.035880621522665024,0.04221062734723091,-0.09109464287757874,-0.018959891051054,-0.014276864007115364,-0.03262300416827202,-0.031587157398462296,0.09296557307243347,-0.1585516631603241,-0.0070250192657113075,0.08748778700828552,0.019586218520998955,0.03055887669324875,-0.0015377518720924854,0.010899380780756474,-0.0017813071608543396,-0.012236704118549824,0.03481856733560562,0.04038156196475029,-0.032930586487054825,0.04736676439642906,0.009076074697077274,0.017757363617420197,0.024580612778663635,0.01204747799783945,0.007881124503910542,0.012006566859781742,0.01125267706811428,-0.03892512992024422,-0.04468460753560066,0.05569884553551674,0.05555856600403786,-0.0765232965350151,0.07854494452476501,-0.049459803849458694,0.0009715315536595881,0.07443857192993164,0.010723667219281197,-0.051881060004234314,-0.0069091347977519035,-0.055306948721408844,-0.02576090395450592,0.032544445246458054,-0.0378706194460392,-0.07616671174764633,0.04109238460659981,-0.027267733588814735,0.03783869370818138,0.022197173908352852,-0.08348315954208374,-0.019788354635238647,0.015844296663999557,0.0005683090421371162,-0.06168752536177635,-0.012092207558453083,0.11929844319820404,-0.09988895058631897,0.04940449073910713,-0.04522702470421791,-0.04821173846721649,-0.09569629281759262,-7.172319189160497e-33,-0.06810522824525833,0.07177206128835678,0.03310399502515793,-0.0006654881872236729,-0.07327740639448166,0.03837514668703079,-0.13979867100715637,-0.014190338551998138,-0.04674774780869484,0.05193514749407768,0.01753913424909115,0.05193721503019333,-0.015000427141785622,-0.033717215061187744,-0.08336065709590912,0.10151432454586029,-0.06028294935822487,0.034250542521476746,0.005147991236299276,-0.002796614309772849,0.045155685395002365,0.05328705906867981,-0.025091975927352905,0.008138486184179783,-0.006028938107192516,-0.039018385112285614,0.0009731040336191654,-0.0847567543387413,-0.013909401372075081,0.017288807779550552,0.013918539509177208,-0.017363891005516052,-0.018644005060195923,-0.08923361450433731,-0.036657996475696564,-0.028784988448023796,0.05137500911951065,-0.08448135852813721,0.03254931420087814,0.02343284897506237,0.0673893541097641,-0.07257609814405441,0.06244765222072601,0.09206468611955643,-0.017552152276039124,0.04506330192089081,0.07354221493005753,0.01570478454232216,-0.019286878407001495,-0.00999659113585949,-0.08232320100069046,-0.051699742674827576,-0.027631094679236412,-0.02785385772585869,-0.10135342925786972,-0.03885370492935181,0.002424664096906781,-0.002087509259581566,0.03314878046512604,-0.007251754403114319,-0.07006175071001053,-0.02994801662862301,-0.006542509887367487,0.06857217848300934,-0.00842136237770319,0.038433726876974106,-0.014642802998423576,0.056845467537641525,0.028606101870536804,0.04083999618887901,0.059684090316295624,-0.07155211269855499,0.019154224544763565,-0.031316567212343216,0.00038416305324062705,0.034237075597047806,-0.0009035606635734439,0.02804788015782833,-0.07107419520616531,0.012233001179993153,-0.008327461779117584,0.07675806432962418,0.0814652070403099,-0.005779689643532038,0.1076926663517952,0.04578850418329239,0.06492196023464203,-0.031325533986091614,0.0087124640122056,0.033749427646398544,-0.07237937301397324,0.0004805570642929524,0.1334356814622879,-0.031325168907642365,-0.09917011857032776,3.230764305972484e-33,-0.055645640939474106,-0.06705312430858612,0.0937252938747406,-0.09878653287887573,0.010560178197920322,-0.007009097840636969,0.016164980828762054,0.02513689547777176,-0.08182018250226974,0.0486006885766983,0.0032191541977226734,0.018941465765237808,0.052393633872270584,-0.020376654341816902,-0.03225215524435043,-0.04603086784482002,0.013390040956437588,-0.011951856315135956,-0.03459244593977928,-0.15730206668376923,-0.04898940026760101,0.07754256576299667,-0.0028105927631258965,0.16366003453731537,0.007676776964217424,0.0038947013672441244,-0.01629643328487873,0.007215894293040037,-0.03381824120879173,-0.03428935259580612,-0.0005111451609991491,0.04714521765708923,-0.07861007004976273,-0.009670221246778965,0.019089674577116966,0.08862777054309845,-0.02150726690888405,-0.11104513704776764,-0.061433855444192886,0.002165508922189474,-0.01878930814564228,-0.02515925094485283,-0.10335791110992432,0.04033350571990013,-0.07083271443843842,-0.08317487686872482,0.01111785788089037,-0.009894884191453457,-0.013248711824417114,-0.054292984306812286,-0.059704579412937164,0.06315579265356064,-0.02405485510826111,-0.009385578334331512,0.001556686474941671,0.08902572840452194,0.0683421641588211,-0.05614219978451729,-0.001377020962536335,-0.04623499512672424,-0.06777814775705338,0.038552772253751755,-0.005571113433688879,0.1157894879579544,0.010409684851765633,-0.03965882211923599,-0.05967218428850174,0.003704390022903681,0.06268524378538132,-0.0039267828688025475,-0.0008365415269508958,-0.09926602989435196,-0.05298900604248047,-0.006887046154588461,-0.01874208077788353,0.09974456578493118,0.01866176351904869,0.04891745001077652,0.04014642909169197,-0.03802700713276863,0.034561365842819214,-0.1260462999343872,0.04846400395035744,-0.028742918744683266,0.040629997849464417,-0.022526120766997337,-0.021100420504808426,-0.07979151606559753,0.012280710972845554,-0.027741968631744385,0.06577208638191223,-0.03726494684815407,0.015488186851143837,0.019664395600557327,-0.008899994194507599,-2.283637101641034e-8,0.03527599573135376,0.025995543226599693,0.04654658958315849,0.04048071801662445,-0.01770332083106041,-0.05754977837204933,0.015564031898975372,0.043738868087530136,-0.07525739073753357,0.09580962359905243,-0.030598260462284088,-0.06708633154630661,0.03680776432156563,-0.004391536116600037,0.06722098588943481,0.018485188484191895,0.05892637372016907,-0.012510254979133606,0.012747850269079208,0.037789590656757355,0.023368721827864647,0.04166814684867859,0.046059560030698776,0.012594894506037235,-0.02064375765621662,0.017388684675097466,0.04137145355343819,-0.059914156794548035,0.0244552381336689,0.14180925488471985,-0.009104314260184765,0.009216581471264362,-0.08928696811199188,0.05424933135509491,0.044990260154008865,0.008022868074476719,-0.0449557863175869,-0.044812921434640884,-0.003621454816311598,0.024881383404135704,0.000009757090992934536,0.010133679024875164,0.040175843983888626,0.0934096947312355,-0.06941036134958267,0.03275226801633835,0.05840248242020607,0.03990914300084114,0.10007492452859879,-0.032099563628435135,0.01619546115398407,0.11406319588422775,-0.02023705095052719,-0.013008053414523602,-0.025306910276412964,0.009971313178539276,-0.07222997397184372,0.04863656684756279,-0.03861387073993683,-0.04499293491244316,0.08182623237371445,-0.054280709475278854,0.03337172418832779,-0.02929525636136532]},{"text":"She pouts and then resumes her patronizing tone._) I must tell you that my father holds the highest command of any Bulgarian in our army.","book":"Down and Out in Paris and London","chapter":19,"embedding":[0.028581243008375168,0.027335429564118385,0.023501081392169,-0.0029953070916235447,-0.12334029376506805,-0.0022344677709043026,0.10461841523647308,-0.09162142872810364,-0.02203267440199852,-0.13142438232898712,-0.044215478003025055,-0.04490017145872116,-0.013582272455096245,-0.02925240993499756,-0.00608552061021328,0.05498465523123741,0.06026729941368103,0.03874588385224342,-0.00903736986219883,-0.010226503014564514,0.01423819549381733,0.0018923787865787745,0.1608058661222458,0.0166762862354517,-0.0381685271859169,-0.03971033915877342,0.006117306184023619,-0.08065931499004364,0.07929548621177673,-0.004810416139662266,-0.017095405608415604,0.04108875244855881,0.005816338118165731,0.08383067697286606,-0.062462858855724335,0.07711698114871979,0.046311937272548676,0.02230570651590824,-0.0015740322414785624,0.0825844556093216,0.011244919151067734,-0.06163071468472481,-0.018629515543580055,0.00005829336805618368,-0.016127847135066986,0.04577985778450966,-0.004395937081426382,0.0677422359585762,-0.03255376219749451,-0.03702831268310547,-0.03769978508353233,-0.021960541605949402,0.0062083168886601925,-0.028655247762799263,-0.0436563566327095,-0.04462483152747154,0.0769137442111969,0.07612983137369156,0.03672091290354729,0.028854385018348694,-0.09516125172376633,0.08386418223381042,-0.029511457309126854,0.06092118099331856,-0.04739350080490112,-0.06556888669729233,0.03166806697845459,0.020197030156850815,-0.10975134372711182,0.057685572654008865,0.0007543314131908119,-0.018984457477927208,-0.047095563262701035,0.03228446841239929,-0.08460212498903275,-0.021219778805971146,0.05921458452939987,-0.06142570823431015,0.03498700261116028,0.03709091991186142,-0.0459233857691288,-0.045514486730098724,-0.0006940520252101123,0.06849265843629837,-0.0020116842351853848,-0.06549534201622009,0.04300391301512718,-0.05960382521152496,0.004552463069558144,0.018423233181238174,-0.0949622094631195,-0.06335624307394028,0.008469760417938232,0.05258791148662567,-0.029206423088908195,0.03451472893357277,0.011551495641469955,0.0061897155828773975,-0.03448457270860672,0.04501377046108246,0.05173115059733391,0.0628398209810257,-0.01276576891541481,0.039196908473968506,-0.09053535014390945,-0.003963205963373184,-0.027562007308006287,0.026321569457650185,-0.03203647956252098,-0.06285648047924042,0.03222427889704704,-0.10361872613430023,0.017892614006996155,-0.022240469232201576,0.034872282296419144,0.056636370718479156,0.00014864234253764153,-0.04822235926985741,-0.05302313342690468,-0.048192333430051804,0.06478707492351532,-0.012852275744080544,-0.025059925392270088,0.07014618813991547,0.02819451130926609,-0.0627773180603981,-0.00043976082815788686,-1.950036945799701e-33,-0.02342190034687519,0.014355616644024849,0.027521712705492973,0.057888150215148926,0.006003395188599825,0.08112851530313492,-0.03136246278882027,0.006219074130058289,-0.009824825450778008,0.020873796194791794,-0.043363429605960846,-0.023516537621617317,0.0294300839304924,-0.020721176639199257,-0.08428185433149338,0.06082014739513397,0.017460472881793976,0.07050929218530655,-0.008552455343306065,0.03572092950344086,0.10444726794958115,0.08726575970649719,0.01672327145934105,0.05566801503300667,0.050413139164447784,-0.0008094976656138897,0.04883473366498947,-0.055052030831575394,-0.03759380429983139,0.018943380564451218,-0.028884626924991608,-0.061415672302246094,-0.0213466789573431,-0.036904919892549515,-0.04134015366435051,0.0007795934798195958,-0.013767508789896965,-0.016628412529826164,-0.07219529151916504,0.021309737116098404,0.010287710465490818,-0.07854077965021133,-0.004988439381122589,0.022547369822859764,-0.1349276304244995,-0.024679051712155342,0.036417752504348755,0.008265248499810696,-0.039165250957012177,-0.03077881410717964,-0.03280605748295784,0.017517752945423126,0.03324732184410095,0.08795715123414993,0.01811572164297104,0.0641644299030304,0.08434281498193741,0.01694067381322384,0.0789385512471199,-0.05963421240448952,-0.01590055227279663,-0.06014082580804825,-0.004995545372366905,0.023678049445152283,0.0582423210144043,-0.09420833736658096,-0.06930684298276901,0.044261325150728226,0.03696351498365402,-0.01409312803298235,-0.029744653031229973,0.034474749118089676,-0.06836463510990143,-0.014840753749012947,-0.09541215002536774,0.014265906997025013,0.03761951997876167,-0.05450470373034477,0.07406537234783173,-0.05683128535747528,0.012139464728534222,-0.002785832853987813,-0.004364060238003731,0.06754141300916672,0.006263813003897667,0.004445885308086872,-0.002108353655785322,-0.08112440258264542,0.01616189070045948,0.05663635954260826,-0.08054164797067642,0.01852315291762352,0.07192210108041763,-0.00844440795481205,-0.024631112813949585,-2.6643867454220762e-34,0.11061115562915802,0.028925254940986633,-0.04821241274476051,0.08511418849229813,-0.018745075911283493,-0.04389607161283493,-0.037286315113306046,0.07303566485643387,-0.036775361746549606,-0.014324079267680645,0.047153133898973465,-0.06749407202005386,0.025084227323532104,0.003427193034440279,0.01319434680044651,-0.0035468125715851784,0.09203527122735977,0.04966773837804794,0.0015660419594496489,0.00998245645314455,-0.11458409577608109,-0.02079993672668934,0.03843795880675316,0.050191137939691544,-0.03124101087450981,-0.002034556120634079,0.06244456022977829,-0.06976312398910522,0.00381231470964849,-0.018390601500868797,0.013832260854542255,-0.08150102198123932,-0.055410657078027725,-0.00026366562815383077,0.01703641749918461,0.07442224025726318,-0.06756218522787094,-0.013402607291936874,-0.0072060138918459415,0.09267452359199524,0.03296006843447685,0.01474693976342678,0.03351457417011261,0.043621812015771866,0.07251494377851486,-0.01615169085562229,0.0020788514520972967,0.010943825356662273,-0.05560987442731857,-0.0331910103559494,-0.02812967821955681,-0.1010785773396492,0.01718769781291485,0.06119762733578682,-0.01667683944106102,-0.00872616097331047,0.05784841254353523,0.007397716399282217,-0.0292013231664896,-0.046730201691389084,0.025832081213593483,-0.03470629081130028,-0.04996968433260918,-0.047008536756038666,-0.08451180905103683,-0.03425059840083122,-0.0880589559674263,0.08952010422945023,0.04128722846508026,-0.006263971794396639,0.07372870296239853,0.022536424919962883,-0.058709174394607544,0.04026322439312935,0.003294729394838214,0.009727519005537033,-0.01879456266760826,-0.1264580637216568,0.08437605202198029,-0.09679585695266724,-0.05441661924123764,-0.06838963180780411,-0.021380117163062096,-0.02870647795498371,0.05533919855952263,0.023677444085478783,-0.025024576112627983,0.03186730295419693,0.06123432144522667,-0.009700130671262741,0.03150976821780205,0.024722473695874214,0.027929697185754776,-0.0788889154791832,0.0365142896771431,-2.4316145541547485e-8,-0.06774325668811798,-0.041816193610429764,0.03841366618871689,0.009776483289897442,-0.009874400682747364,-0.051494188606739044,0.0021302616223692894,-0.04211507365107536,-0.08299168199300766,-0.1327669322490692,-0.030973702669143677,-0.03992846608161926,0.030009636655449867,-0.0632072240114212,0.1069168895483017,0.0938648208975792,0.06444685161113739,-0.002822589362040162,-0.015542477369308472,0.0033868381287902594,0.021072009578347206,-0.022088896483182907,0.05856524780392647,0.07159345597028732,-0.152336984872818,0.007679399568587542,0.05018319934606552,0.06529336422681808,0.049146153032779694,0.017894860357046127,0.03027079626917839,0.022563211619853973,-0.08946415781974792,-0.02030356042087078,0.033650223165750504,0.07999719679355621,0.019854098558425903,-0.03152640163898468,0.07669403403997421,0.02398652397096157,-0.05724692717194557,0.005685534793883562,-0.014107325114309788,-0.0043634213507175446,-0.038871005177497864,0.022086946293711662,0.002661044942215085,-0.07385586947202682,0.008266793563961983,0.014299754984676838,0.02656605839729309,0.028969457373023033,0.021465877071022987,0.10308817774057388,0.019405797123908997,0.009688432328402996,0.021757738664746284,-0.06652452051639557,-0.03057919815182686,0.0747709572315216,0.003587145358324051,0.01857493445277214,-0.017415443435311317,-0.12075362354516983]},{"text":"Do you know what a library is?","book":"Down and Out in Paris and London","chapter":19,"embedding":[0.0021306825801730156,-0.03218500316143036,-0.05985464155673981,0.00970510859042406,0.00792782474309206,0.0035059412475675344,0.07008161395788193,-0.013116422109305859,0.03854258358478546,-0.009748771786689758,-0.06818902492523193,0.0786537379026413,0.028455356135964394,-0.050190143287181854,-0.02465648204088211,-0.01567673683166504,-0.04321585223078728,0.019134290516376495,0.0007602606201544404,-0.027162039652466774,-0.020301979035139084,0.06880000233650208,-0.009021327830851078,0.001446177251636982,0.02568586729466915,0.01215547788888216,-0.07413861155509949,-0.041302844882011414,-0.04092026501893997,-0.01373172365128994,0.009853864088654518,0.019126977771520615,0.048428259789943695,-0.03535650297999382,0.03402353823184967,0.09512064605951309,0.07810626924037933,-0.04153968766331673,-0.0024094516411423683,0.05713539570569992,-0.087335005402565,0.059894684702157974,0.003433086210861802,0.05447973683476448,-0.06914673000574112,0.022860025987029076,-0.022073714062571526,-0.04411579295992851,-0.01749037578701973,-0.011686379089951515,-0.011611527763307095,-0.011116406880319118,-0.030116384848952293,-0.023953182622790337,0.049060314893722534,0.049453169107437134,-0.028526542708277702,0.036959853023290634,-0.0038764234632253647,0.04791313037276268,0.022378506138920784,-0.03210511803627014,-0.015342316590249538,0.10340331494808197,0.05651568993926048,0.06874722242355347,-0.02687591128051281,-0.012766629457473755,0.07394319027662277,-0.13114388287067413,-0.07888121902942657,-0.009955648332834244,0.09366437792778015,0.08930745720863342,0.06476090103387833,-0.0719645768404007,-0.0109383724629879,0.014942770823836327,0.05267877131700516,0.006496016401797533,-0.06411505490541458,0.02919885143637657,-0.0014575954992324114,0.03010905534029007,0.033470626920461655,-0.01934959553182125,0.05858757719397545,0.013183019123971462,-0.01617516577243805,-0.010966033674776554,0.07251279056072235,-0.09603532403707504,0.008307182230055332,0.0367932990193367,-0.04657215625047684,0.07263830304145813,0.052274201065301895,-0.049496643245220184,0.006874558050185442,0.059968963265419006,-0.02080579847097397,0.06389899551868439,0.10752449929714203,-0.017225338146090508,-0.08361023664474487,-0.13044627010822296,-0.07450339943170547,0.017005665227770805,-0.0253842081874609,-0.029751401394605637,-0.005525617860257626,-0.03181144967675209,0.00964304618537426,-0.057891473174095154,0.06340562552213669,0.008802877739071846,0.07540268450975418,-0.008973799645900726,0.05209851637482643,0.016582245007157326,-0.02672307938337326,0.044960252940654755,0.04834912344813347,0.017925195395946503,-0.0933327004313469,-0.020826306194067,-0.0773494690656662,-7.58237202634562e-33,0.02907518856227398,-0.04022350162267685,0.010088580660521984,0.0635715052485466,-0.03516427427530289,-0.08217926323413849,0.006354151293635368,0.07855960726737976,-0.060332801192998886,0.03217734396457672,0.1138068214058876,0.05253836512565613,0.0038559131789952517,0.05874389782547951,0.014474965631961823,0.09330162405967712,-0.07043606787919998,0.04014408215880394,-0.012391965836286545,0.005318975076079369,-0.027324626222252846,0.051413822919130325,0.08136924356222153,0.031053313985466957,-0.009741948917508125,0.04217534884810448,-0.022474810481071472,-0.04269716143608093,0.08274640887975693,0.037064552307128906,-0.05141541361808777,-0.07398523390293121,-0.06686966121196747,-0.08779748529195786,0.03422170877456665,-0.05609265714883804,-0.08045418560504913,-0.03220833092927933,0.05042380839586258,0.011285335756838322,0.012683046981692314,-0.018876945599913597,-0.06061664596199989,0.05584327131509781,0.0017718676244840026,0.05804259330034256,0.08280181884765625,-0.036188043653964996,-0.0047758957371115685,-0.02765762247145176,-0.012500075623393059,-0.02245189994573593,-0.07365765422582626,-0.0067920624278485775,0.04012910649180412,0.03786245733499527,0.008936512283980846,0.09049400687217712,0.03964840620756149,-0.0547746904194355,0.05000845715403557,0.08109094202518463,0.015252484939992428,0.007716094143688679,0.05474194884300232,0.05887717008590698,-0.10303612798452377,-0.005527181085199118,0.13964445888996124,-0.030539778992533684,-0.05328923463821411,-0.020812492817640305,-0.019821779802441597,0.000010029422810475808,-0.0028534308075904846,0.06249644607305527,-0.07097440958023071,-0.005127208773046732,-0.03427186980843544,-0.011061472818255424,-0.0358007438480854,-0.028556061908602715,0.04805230721831322,0.048343222588300705,-0.06493189930915833,-0.057595353573560715,0.07158826291561127,-0.06336987018585205,-0.08974575251340866,-0.08561545610427856,-0.046528108417987823,0.006765678990632296,-0.06959075480699539,-0.025511696934700012,-0.05653494969010353,3.0133683807314104e-33,0.04105999693274498,-0.0903482586145401,-0.00489651458337903,-0.0037907343357801437,-0.01673967018723488,0.052075427025556564,-0.0737595334649086,-0.03426343575119972,0.018099837005138397,0.05207323655486107,-0.054046548902988434,-0.027375930920243263,-0.016108635812997818,0.041672490537166595,0.05688812583684921,0.008197108283638954,0.04138870909810066,-0.03135356307029724,-0.03232714161276817,0.019359750673174858,-0.1242261528968811,0.030096355825662613,0.0275480505079031,-0.01514781080186367,-0.03876109421253204,0.02162366732954979,-0.06357452273368835,-0.11088898777961731,-0.022887853905558586,0.03209242597222328,0.006790013052523136,-0.030168743804097176,-0.017557701095938683,-0.053891126066446304,-0.08123520761728287,0.00945129245519638,0.08469726890325546,-0.03079719841480255,0.014109217561781406,-0.014273317530751228,0.037781089544296265,0.04214363172650337,0.005246735643595457,-0.05332860350608826,-0.047493211925029755,-0.07527659088373184,-0.03861856460571289,0.0714971274137497,0.035032693296670914,-0.09761081635951996,0.046763334423303604,-0.00043211603770032525,0.00929288286715746,-0.12954042851924896,0.0338238924741745,0.04667877405881882,-0.03818466514348984,0.06517571955919266,0.07651626318693161,0.01639513112604618,-0.05288891866803169,-0.011821158230304718,-0.052777763456106186,0.10640617460012436,-0.02985812909901142,-0.03947596997022629,-0.09634320437908173,-0.025229284539818764,-0.020875930786132812,-0.051093243062496185,0.09554550051689148,0.011623702012002468,-0.02132594585418701,-0.018431393429636955,-0.08907255530357361,-0.02101031132042408,0.11254268139600754,0.0020177338737994432,-0.054446183145046234,-0.012791738845407963,-0.030291162431240082,-0.03822328522801399,0.04303421452641487,0.008304980583488941,0.07157513499259949,-0.006237092427909374,0.04316908121109009,-0.024875154718756676,-0.032820507884025574,-0.01949494145810604,0.03665289282798767,0.038253869861364365,-0.05712301656603813,0.025057809427380562,0.06556136161088943,-1.770289159708227e-8,-0.05353279411792755,0.04000035673379898,-0.020694550126791,-0.057414762675762177,-0.005903411656618118,0.00019170933228451759,0.028998197987675667,0.09695138037204742,-0.07547127455472946,-0.014875690452754498,0.09187299013137817,-0.013286697678267956,-0.07053553313016891,0.04013899713754654,0.009895616210997105,0.04150884598493576,0.08621576428413391,-0.04251500964164734,-0.02988455630838871,0.03813488781452179,0.09365565329790115,-0.052723228931427,0.05214075371623039,0.025075962767004967,-0.09195422381162643,0.023514021188020706,0.09054653346538544,-0.021129745990037918,0.030672285705804825,-0.01989530771970749,-0.04332844540476799,0.03130248561501503,-0.054630428552627563,-0.05771322920918465,0.06793290376663208,0.039658959954977036,-0.009024344384670258,-0.13385199010372162,-0.029832517728209496,0.03545839712023735,-0.0203024260699749,-0.04785343259572983,0.004062962718307972,0.07024728506803513,-0.00956777948886156,-0.001204277970828116,-0.013958298601210117,0.03583876043558121,-0.011314108967781067,0.06164614483714104,0.042849306017160416,0.062426019459962845,0.04785024747252464,-0.021801890805363655,-0.016708556562662125,-0.06891282647848129,0.0040681203827261925,-0.02069033868610859,-0.08767201751470566,-0.016512751579284668,0.04325529932975769,0.04736430197954178,0.08162697404623032,-0.011638736352324486]},{"text":"I saw at once that you knew the world.","book":"Down and Out in Paris and London","chapter":20,"embedding":[0.02084018476307392,-0.05911628156900406,-0.01967916637659073,0.05726049095392227,0.05911571532487869,-0.042504213750362396,0.07142658531665802,0.012598071247339249,0.03294600173830986,-0.012064187787473202,0.04232174530625343,-0.013127232901751995,0.08235390484333038,0.07815808802843094,-0.04014047607779503,0.026540618389844894,-0.07422436028718948,-0.001169991446658969,-0.05524557828903198,-0.06909311562776566,0.010052566416561604,0.05731010437011719,0.02085794322192669,0.05337193235754967,0.030228789895772934,0.045086853206157684,0.039202962070703506,0.07757865637540817,0.005309327505528927,-0.025800742208957672,0.029645100235939026,-0.04358845576643944,-0.005474219098687172,0.03353304788470268,-0.002587082562968135,0.0626416876912117,-0.009013639762997627,0.04247251898050308,0.004513365216553211,-0.048198241740465164,0.0683940052986145,-0.04367656633257866,0.0616147480905056,-0.04261689633131027,-0.02380361594259739,-0.025461193174123764,-0.011705384589731693,0.02756018377840519,0.06817415356636047,-0.032885413616895676,-0.038372430950403214,-0.070702463388443,0.013269014656543732,-0.04158798232674599,-0.014972885139286518,-0.03326046094298363,0.005370134487748146,-0.03264546021819115,-0.001359644578769803,0.004106350243091583,0.022289767861366272,-0.0804002434015274,0.04532983526587486,0.0754663422703743,0.01643754541873932,0.10072377324104309,-0.03847874701023102,-0.021258417516946793,-0.0011053832713514566,-0.0274879839271307,-0.01663334295153618,0.0633094385266304,-0.0032562913838773966,-0.021441563963890076,-0.02185799740254879,-0.021530048921704292,0.037719402462244034,-0.00815303809940815,-0.026482807472348213,0.01941457763314247,0.039562102407217026,-0.0168880894780159,-0.05224045366048813,0.006818131543695927,0.11124207079410553,-0.05488026142120361,0.015846431255340576,0.03326055034995079,0.000039101942093111575,-0.009872879832983017,-0.029237356036901474,-0.08185528218746185,-0.09100597351789474,0.0038683938328176737,-0.046923890709877014,-0.07497084140777588,0.03947950527071953,0.03220037370920181,0.03488378971815109,0.07171570509672165,0.005229494534432888,-0.019581550732254982,0.06938103586435318,0.04943222925066948,0.052859872579574585,-0.01515264343470335,-0.07404816150665283,0.07576345652341843,0.03737945854663849,-0.030340095981955528,-0.09631909430027008,-0.003917147871106863,0.02149800956249237,0.06367906928062439,-0.03870050609111786,-0.02815461903810501,0.04066694155335426,0.06566843390464783,-0.04996843636035919,0.014348543249070644,0.012347710318863392,0.007363542448729277,0.031089073047041893,0.052472010254859924,0.014320836402475834,-0.062129806727170944,0.06959084421396255,-7.101717529082172e-33,0.010272320359945297,-0.056592702865600586,0.0877625122666359,-0.046984679996967316,0.08047223091125488,0.05146050825715065,-0.06216840445995331,0.011032873764634132,-0.03501512482762337,-0.017301708459854126,0.015486274845898151,0.02356019988656044,0.017749501392245293,0.07692734897136688,-0.08068128675222397,0.07651358842849731,-0.003869317937642336,-0.027376702055335045,0.034078363329172134,0.01178664993494749,-0.03601272031664848,0.018795054405927658,-0.025222763419151306,-0.051418669521808624,-0.013972404412925243,0.06268174946308136,0.05430367961525917,-0.01781931146979332,0.07899913191795349,0.06865356117486954,0.044951215386390686,0.05922311544418335,-0.05104149878025055,-0.04504933953285217,-0.013429884798824787,-0.04893741011619568,-0.01430086512118578,-0.049036815762519836,-0.032782625406980515,0.008283291943371296,-0.01162329874932766,-0.004696091171354055,-0.014822069555521011,-0.027012357488274574,-0.010194609872996807,0.02015860006213188,0.019747672602534294,0.059318337589502335,-0.06650372594594955,0.06818441301584244,-0.05741925910115242,0.02402416802942753,0.05971091613173485,-0.04992746189236641,0.03898830711841583,0.059936583042144775,-0.00440719211474061,-0.017535744234919548,-0.001242755795828998,0.09367453306913376,-0.08013968914747238,0.009333761408925056,-0.0027913327794522047,0.08602307736873627,0.008648846298456192,0.033257246017456055,-0.017145778983831406,0.011001372709870338,-0.01550966501235962,0.004572132136672735,-0.02793830819427967,0.009250800125300884,-0.0061537292785942554,-0.01963701657950878,-0.08634553849697113,-0.0756770446896553,0.05081954970955849,-0.007741465698927641,-0.02330319583415985,0.006744414567947388,0.036212094128131866,-0.06056414544582367,0.04586418718099594,0.03383774310350418,0.07971922308206558,-0.017024213448166847,0.0315236933529377,-0.08821523934602737,-0.07764660567045212,-0.004475089721381664,-0.05531926825642586,0.029840530827641487,0.09003224223852158,-0.10816534608602524,-0.07598113268613815,4.540496805580815e-33,-0.02829597145318985,-0.04372604563832283,0.08022668957710266,0.01372047420591116,0.014422036707401276,-0.08717098087072372,-0.12687872350215912,0.04380817711353302,-0.0357658751308918,0.04648372530937195,0.08873628824949265,0.0016665630973875523,-0.015003290958702564,0.014535470865666866,0.02806973084807396,0.07236261665821075,0.11957120150327682,-0.031169161200523376,0.024804936721920967,0.018581099808216095,-0.06573887914419174,-0.06780361384153366,0.01262170821428299,0.056325558573007584,-0.033871833235025406,0.03509572520852089,0.03325279802083969,-0.04128972813487053,-0.09933532774448395,0.018510743975639343,0.005265006795525551,-0.004175008740276098,-0.04657728224992752,-0.0013848015805706382,-0.054992690682411194,0.03410673514008522,0.002810888225212693,-0.010871206410229206,-0.036198437213897705,-0.016395803540945053,-0.09867280721664429,0.0062751430086791515,-0.07516705989837646,0.004077398218214512,-0.09768421947956085,-0.027149541303515434,-0.0018608496757224202,0.041580621153116226,0.0021915044635534286,0.06971858441829681,-0.11120261996984482,0.03282172605395317,-0.07007218897342682,-0.14235523343086243,-0.046363089233636856,-0.036381106823682785,0.01034543290734291,0.053615231066942215,0.10495837032794952,-0.06884287297725677,-0.056803833693265915,-0.04270630702376366,-0.09354826807975769,0.045077160000801086,0.06370224058628082,-0.11803226172924042,-0.033876996487379074,0.064885713160038,-0.07098742574453354,0.003307503182440996,0.013872005045413971,-0.016714325174689293,-0.14547288417816162,-0.030544331297278404,0.043047793209552765,-0.004911102820187807,-0.03334979712963104,0.0076870969496667385,-0.09010951966047287,0.025736315175890923,0.00986708328127861,-0.012437586672604084,0.08279243856668472,-0.01130894385278225,-0.006541615817695856,0.06465272605419159,0.020369289442896843,0.0029759102035313845,0.016147447749972343,0.025414790958166122,-0.04111428186297417,0.029660537838935852,-0.07165162265300751,-0.015729807317256927,-0.03675847128033638,-2.0433420289123205e-8,-0.06887045502662659,0.061431460082530975,0.06644150614738464,-0.0247968677431345,0.056183286011219025,0.017888139933347702,0.020870914682745934,0.09269548207521439,-0.1176954060792923,-0.0641709566116333,-0.0033319222275167704,0.08916612714529037,0.01652226783335209,0.05034269765019417,0.06456362456083298,-0.044714346528053284,0.007683012634515762,-0.02816103957593441,0.0009257768979296088,0.12585727870464325,0.06884853541851044,0.038829125463962555,0.047831080853939056,-0.028135333210229874,-0.0351841114461422,-0.051454685628414154,-0.05956682190299034,0.005739312618970871,-0.010874318890273571,-0.023198863491415977,0.0324539914727211,-0.03646382316946983,-0.029528379440307617,0.007659435737878084,0.0006777106318622828,-0.025607498362660408,-0.016687989234924316,-0.03238491341471672,0.03017653152346611,-0.03411661460995674,-0.011979578994214535,0.10413995385169983,0.027760831639170647,0.06428027898073196,0.030459964647889137,0.07040676474571228,0.0799420177936554,-0.053353212773799896,-0.037737373262643814,0.04752030968666077,-0.04079661890864372,0.09597042948007584,0.05001629516482353,0.03425310179591179,0.18264944851398468,-0.026113277301192284,0.0026614514645189047,-0.050727564841508865,-0.020080946385860443,0.016023140400648117,0.08964233100414276,-0.04570842906832695,-0.1343126744031906,-0.028065742924809456]},{"text":"The noble refuses to give him up.","book":"Down and Out in Paris and London","chapter":20,"embedding":[0.006365752778947353,0.13278374075889587,0.008495572954416275,-0.014416762627661228,-0.02653147466480732,-0.011371317319571972,0.009268074296414852,-0.05894729122519493,-0.03989940509200096,-0.0003614671004470438,-0.032879799604415894,0.04360991343855858,0.012650128453969955,-0.03771444037556648,-0.06730949133634567,0.00612707668915391,-0.03524500131607056,0.019324542954564095,0.02923787571489811,0.07995612174272537,0.047138772904872894,0.010698514059185982,0.03701876103878021,0.03253335505723953,-0.006994961760938168,-0.021902380511164665,0.01641330122947693,-0.028508368879556656,0.016412990167737007,-0.042891405522823334,0.010341201908886433,-0.08786076307296753,-0.04858698695898056,0.021615635603666306,-0.01930289901793003,-0.005583695136010647,0.01949121616780758,0.06917285174131393,0.02198195643723011,0.004607180133461952,0.03346971422433853,-0.00672571687027812,-0.06810739636421204,0.007913934998214245,-0.030675359070301056,-0.038149479776620865,0.00708377780392766,-0.09338498115539551,0.0030820693355053663,0.02023392729461193,-0.006337321829050779,0.059802472591400146,-0.03910205140709877,-0.011845852248370647,-0.039214443415403366,0.05268966034054756,0.0560792051255703,0.047251369804143906,0.09039583057165146,-0.03275857865810394,-0.0482020266354084,0.06047496944665909,-0.03252337872982025,0.04737056419253349,0.07781992852687836,-0.02138919197022915,0.04663033038377762,-0.048931900411844254,-0.10300271213054657,0.07256623357534409,0.027028249576687813,-0.030627813190221786,0.05031200125813484,-0.04246886447072029,-0.07801414281129837,-0.04462529346346855,-0.010955724865198135,-0.028984230011701584,0.08352608978748322,0.020242244005203247,-0.09917538613080978,0.004011739976704121,-0.09790896624326706,0.10818151384592056,-0.05523870885372162,-0.03433116152882576,0.035219356417655945,-0.08096380531787872,0.015945490449666977,-0.051608309149742126,-0.004505470860749483,-0.055269818753004074,-0.021534232422709465,0.025612737983465195,-0.02690146118402481,0.07700543850660324,0.07970724999904633,0.044116564095020294,-0.1714499443769455,0.017471928149461746,0.004249469842761755,0.07731851190328598,-0.024834899231791496,0.031648967415094376,-0.005437178071588278,-0.013828136026859283,-0.01127562578767538,-0.05995865911245346,-0.0466984361410141,0.012660377658903599,-0.01634931191802025,-0.09110776335000992,0.0061241742223501205,-0.04266733303666115,0.03826993331313133,0.0762544795870781,0.03815868869423866,-0.009026287123560905,-0.1593613475561142,0.012004283256828785,0.0277105700224638,0.04525270685553551,-0.02672366052865982,0.0989222452044487,-0.07695955038070679,-0.014379283413290977,0.04117121547460556,-4.103375272232132e-33,0.030720332637429237,-0.015533634461462498,-0.042431410402059555,-0.028307005763053894,-0.013385587371885777,-0.005964786279946566,0.016056904569268227,0.005837336182594299,0.04062306135892868,0.057571545243263245,0.018025889992713928,-0.004933420103043318,0.03781590610742569,-0.06598596274852753,-0.007184489164501429,0.06622783839702606,0.07427676022052765,-0.024190206080675125,0.06360762566328049,-0.02563757449388504,0.021630290895700455,0.07889855653047562,0.011255455203354359,0.01537306234240532,-0.09999647736549377,-0.11061160266399384,-0.02252139337360859,0.03991197794675827,-0.01940370723605156,0.0012513435212895274,0.03125123679637909,0.08289152383804321,0.06221073865890503,0.056005969643592834,0.039794664829969406,-0.05332271754741669,-0.05713910236954689,0.022534260526299477,-0.060408931225538254,-0.04460723698139191,-0.048943884670734406,0.025996580719947815,-0.08045931160449982,0.09490111470222473,0.022700872272253036,-0.08311721682548523,0.1011938825249672,-0.0778556689620018,-0.023621100932359695,0.0008443405968137085,0.05204732343554497,0.010170829482376575,-0.015915721654891968,0.013581235893070698,0.009338002651929855,-0.058410897850990295,0.014691932126879692,0.03223050385713577,-0.0065642488189041615,-0.02878587134182453,0.07300533354282379,-0.11992257833480835,-0.004325619898736477,0.13439977169036865,-0.03525049611926079,-0.04824472591280937,-0.0838896706700325,-0.01010191161185503,-0.12499409914016724,-0.030326705425977707,-0.0477040633559227,0.09063895791769028,-0.04151862859725952,0.014137576334178448,-0.01597609370946884,-0.0694560632109642,0.07058010250329971,-0.001821899670176208,-0.02506100758910179,-0.049262531101703644,-0.012995390221476555,0.020642053335905075,0.028664154931902885,0.061263781040906906,0.052585992962121964,-0.06092904508113861,0.019561562687158585,-0.03547895699739456,0.08175749331712723,-0.04290369153022766,0.06494734436273575,-0.04198846593499184,0.004283142276108265,-0.054480694234371185,0.022982042282819748,2.1325107705877677e-33,0.003010872984305024,-0.012458296492695808,0.002663559280335903,0.025460097938776016,0.006384484004229307,0.048667144030332565,-0.040811676532030106,0.04152947664260864,0.05465438961982727,-0.053122200071811676,-0.01582026109099388,0.0004995889612473547,0.05452217534184456,0.020266667008399963,0.007748004049062729,-0.017976827919483185,0.05047513544559479,0.002613363554701209,-0.04036838933825493,0.044476788491010666,0.0330142080783844,0.037842169404029846,-0.06287296861410141,-0.008210906758904457,-0.057231027632951736,0.04972723498940468,-0.04658063128590584,-0.011582888662815094,-0.03573445603251457,-0.08246003091335297,0.05662337690591812,-0.002836840692907572,-0.09422358870506287,-0.05251580476760864,0.02825036644935608,-0.007271346636116505,-0.009156509302556515,0.1006990447640419,-0.04771096259355545,0.07867506146430969,0.01395929604768753,-0.0519285574555397,0.06562642753124237,0.015414479188621044,0.089276023209095,-0.03292658552527428,0.049193430691957474,-0.036981597542762756,0.05460601672530174,-0.004122746177017689,0.05210353806614876,-0.004216725472360849,0.07743404060602188,0.09288322925567627,0.06907140463590622,-0.00824605394154787,-0.024759888648986816,0.013428515754640102,0.07499603182077408,-0.0729336366057396,0.0033214814029634,0.02279261127114296,0.01824178174138069,0.0952124074101448,-0.027687035501003265,0.059721387922763824,0.008083215914666653,0.14088836312294006,0.07350990921258926,0.007635277230292559,0.10980236530303955,-0.06318280100822449,0.08332700282335281,-0.10422394424676895,0.0874214619398117,0.05041922256350517,-0.07354530692100525,0.03525521978735924,0.0198458693921566,-0.11293471604585648,0.08479025214910507,-0.020862825214862823,-0.0034733403008431196,-0.010506945662200451,-0.019931891933083534,0.053385376930236816,0.043625764548778534,-0.021765265613794327,-0.04855692759156227,-0.040832117199897766,0.07762231677770615,-0.09612146764993668,0.09042827039957047,0.008230180479586124,0.08211139589548111,-1.641716274036753e-8,0.03770917281508446,-0.032754961401224136,-0.07446275651454926,-0.056845538318157196,-0.01427940558642149,-0.0035055498592555523,0.010383617132902145,-0.04277120158076286,0.0017667812062427402,0.009503714740276337,0.029300620779395103,0.01614486239850521,0.03548407182097435,-0.014072566293179989,0.018219957128167152,-0.014660761691629887,0.03880871459841728,-0.07174369692802429,-0.06737411767244339,-0.07482405751943588,-0.10724706947803497,-0.03156260401010513,0.01147700846195221,-0.06999997794628143,-0.0402318611741066,-0.021470220759510994,-0.01111287996172905,-0.05464355647563934,0.025511305779218674,0.03327057138085365,0.03112657181918621,0.013034858740866184,-0.027231380343437195,-0.05733945220708847,-0.029024023562669754,0.049939170479774475,0.05489102005958557,0.02048257738351822,-0.005080706439912319,-0.0160201508551836,0.0301273874938488,0.05752553790807724,-0.018824515864253044,0.0035839276388287544,-0.001220014994032681,0.03574700281023979,0.03950320929288864,0.033681996166706085,-0.01877063699066639,-0.02900848165154457,-0.041732992976903915,0.06380143761634827,0.01656165160238743,-0.05187062919139862,0.018861697986721992,-0.033055149018764496,0.02069566585123539,0.01080970000475645,-0.10545993596315384,0.005548546090722084,0.0231154914945364,-0.029942788183689117,0.005105223506689072,0.04235357046127319]},{"text":"RAINA. (_turning her back on him in disgust._) Oh, it is useless to try and make you understand.","book":"Down and Out in Paris and London","chapter":20,"embedding":[0.002678908407688141,0.06362180411815643,0.04206519573926926,0.020500551909208298,0.012139616534113884,-0.009340954944491386,0.13696883618831635,-0.07685840874910355,-0.012946294620633125,-0.05136217921972275,-0.051563676446676254,-0.1057354286313057,-0.11365147680044174,0.009347353130578995,0.008811496198177338,0.06948299705982208,-0.004055533558130264,-0.0073255691677331924,-0.06565030664205551,0.034814126789569855,0.0023779808543622494,-0.0028015810530632734,0.022540442645549774,0.018545109778642654,-0.0837806984782219,0.07252905517816544,0.08081519603729248,-0.009002014994621277,0.0359608456492424,-0.052388161420822144,-0.04277500510215759,0.04065971076488495,0.01887599751353264,0.008016963489353657,-0.09154025465250015,0.10461756587028503,0.04828937351703644,-0.036250751465559006,0.032576076686382294,-0.06591244041919708,-0.009463893249630928,0.07255621999502182,-0.06416384130716324,-0.02643323689699173,0.018902232870459557,-0.07485821098089218,0.10061924159526825,0.05402282625436783,0.038439907133579254,-0.0400368832051754,0.003826867789030075,0.013084149919450283,-0.1409725844860077,0.005216686055064201,0.04515290632843971,-0.004137958399951458,0.08387288451194763,-0.003179227001965046,-0.024887913838028908,0.0018221305217593908,-0.06317242234945297,0.007991488091647625,-0.0354221947491169,0.13716207444667816,0.010766193270683289,-0.006405370309948921,-0.0587230920791626,-0.001319361850619316,-0.1061587706208229,0.0979471504688263,-0.015506171621382236,0.05541456863284111,-0.014069072902202606,0.04166169837117195,-0.06382685899734497,-0.034218139946460724,0.0326366126537323,-0.017101092264056206,0.03060831129550934,0.059748176485300064,-0.01191425696015358,0.04134652018547058,-0.012777111493051052,0.0426604300737381,-0.0015131821855902672,0.012768980115652084,-0.002972816117107868,-0.13322216272354126,-0.0179797001183033,0.008350078016519547,-0.04570097476243973,-0.05221392214298248,0.006132117938250303,0.051392871886491776,0.03316248208284378,0.10520324110984802,-0.041532717645168304,-0.11086706072092056,-0.01895572990179062,0.0300408024340868,0.02656644396483898,0.0252882968634367,-0.03254852816462517,-0.011520186439156532,-0.07037854939699173,0.013005070388317108,-0.05219303071498871,-0.09979519248008728,-0.013294532895088196,-0.018905334174633026,-0.021845243871212006,-0.10981295257806778,-0.03500491380691528,0.005348234437406063,-0.003905482590198517,0.01914677582681179,0.045081742107868195,-0.03446050360798836,-0.01240940485149622,0.08263207226991653,-0.03550487384200096,0.023757116869091988,0.023268651217222214,0.03417019546031952,-0.03468328341841698,-0.029705636203289032,0.008952934294939041,-2.5658797218924435e-33,0.08673382550477982,0.016498597338795662,-0.02849036455154419,-0.014333892613649368,0.03632926940917969,0.00784631073474884,0.0663154125213623,0.0053385659120976925,-0.060178399085998535,0.05801181122660637,-0.04038528352975845,0.045250508934259415,-0.021195968613028526,-0.06514295190572739,-0.02156743034720421,0.06788250058889389,0.042386945337057114,-0.00336734508164227,-0.025441059842705727,0.035605382174253464,0.03287344053387642,0.035567693412303925,-0.02166813425719738,-0.02733781561255455,-0.02305956929922104,-0.05907393991947174,0.07805336266756058,0.016580218449234962,0.11810636520385742,0.012924383394420147,-0.025475379079580307,0.02489660680294037,0.05007430538535118,-0.017546432092785835,0.06356692314147949,-0.023838000372052193,0.02618066966533661,0.015087724663317204,-0.03697546571493149,0.00006617298640776426,-0.06868518888950348,-0.002466097939759493,-0.02965598739683628,-0.02208612859249115,-0.1080217957496643,-0.0748964473605156,-0.00801429245620966,0.03708246350288391,-0.0360848605632782,-0.08067581802606583,0.021958002820611,0.03846855089068413,0.0021155504509806633,-0.002188335172832012,0.0069354516454041,0.057015784084796906,0.048965830355882645,-0.008208698593080044,0.07712120562791824,0.045090626925230026,0.02717713452875614,0.004966764245182276,0.061444271355867386,-0.04433164373040199,-0.04137689620256424,-0.06495454162359238,-0.08990916609764099,-0.010338358581066132,-0.03154977411031723,-0.09255905449390411,-0.056016162037849426,-0.0014152675867080688,-0.08035358786582947,0.0488339401781559,-0.02233339659869671,-0.07235551625490189,-0.028242645785212517,0.005180629435926676,0.10636922717094421,-0.04257704317569733,0.016922026872634888,-0.010746318846940994,-0.02210480347275734,0.08541411906480789,-0.13129417598247528,-0.052055321633815765,-0.0017878091894090176,-0.02866327203810215,-0.030968748033046722,0.004073022864758968,-0.028602445498108864,0.07698320597410202,0.062235817313194275,-0.07809417694807053,0.000644716783426702,-1.1228486424592613e-33,0.031350087374448776,0.036688584834337234,-0.061171576380729675,0.00885742250829935,-0.007805523928254843,-0.045394349843263626,-0.028448719531297684,-0.09918846935033798,0.06663689762353897,0.014203946106135845,-0.026340341195464134,-0.007303136400878429,-0.026519810780882835,-0.04158583655953407,0.05568069592118263,-0.01873619481921196,0.026984401047229767,-0.04800659790635109,-0.01756591908633709,-0.014082681387662888,-0.0026130734477192163,0.03619011491537094,0.02401217259466648,-0.06110861524939537,-0.04078070446848869,-0.044211141765117645,0.10973183065652847,0.03638235852122307,-0.0013969073770567775,0.013824704103171825,0.022684158757328987,-0.09240050613880157,-0.04881387576460838,0.031220151111483574,0.010343206115067005,0.04490793123841286,-0.07404159754514694,-0.11747318506240845,0.0036207789089530706,-0.10414530336856842,0.017609689384698868,-0.042242031544446945,0.03386398404836655,0.048067785799503326,0.05108291283249855,0.01595255732536316,0.05643779784440994,0.10640715062618256,0.020827267318964005,-0.00838559027761221,0.050311993807554245,-0.07634822279214859,0.017829665914177895,0.04210379719734192,0.04443651810288429,0.04202543571591377,0.1268405318260193,-0.0065175509080290794,-0.018184371292591095,-0.014758692122995853,0.0439053550362587,-0.07936656475067139,0.023090017959475517,0.0767035037279129,-0.04872593656182289,-0.01860431581735611,-0.037932492792606354,0.010180152952671051,0.01415703073143959,-0.04757486283779144,0.07026440650224686,-0.007737983949482441,-0.058128390461206436,-0.031155381351709366,0.043931424617767334,0.06433208286762238,-0.0962836891412735,-0.05875495448708534,0.04167916998267174,-0.1330459713935852,-0.007365834899246693,-0.012030099518597126,-0.02453615702688694,-0.09701201319694519,0.07019683718681335,-0.07059213519096375,-0.02957802079617977,0.008435083553195,0.026873718947172165,0.03971003368496895,0.02754540741443634,0.0055946363136172295,0.09166068583726883,-0.03407636284828186,0.00752213504165411,-2.9827788239344954e-8,-0.06439539045095444,-0.09158214926719666,0.01922724023461342,-0.10957721620798111,-0.03193877637386322,0.032911643385887146,-0.025053439661860466,0.04236092045903206,0.008796983398497105,-0.0877075046300888,0.04895159974694252,0.047797683626413345,0.05311024934053421,0.007950985804200172,0.06389220803976059,0.120148666203022,0.11637268215417862,0.009527212008833885,-0.03276561573147774,-0.015032646246254444,0.013100901618599892,0.029978960752487183,-0.048753976821899414,0.03946581482887268,-0.013881297782063484,0.030295493081212044,-0.02597450651228428,0.001195114222355187,0.009860862977802753,-0.02781050279736519,0.07876284420490265,0.03623956814408302,-0.04872194677591324,-0.014272128231823444,0.00420620059594512,0.09038545936346054,0.028167827054858208,0.030014658346772194,0.006426095496863127,0.07406061142683029,0.06917895376682281,0.0055514145642519,-0.02532043866813183,-0.006005134899169207,-0.01027765590697527,0.02177651785314083,0.07318370789289474,-0.041712742298841476,-0.03587137535214424,-0.035206910222768784,-0.026496028527617455,-0.008303984999656677,-0.0339357815682888,0.04966035857796669,-0.007256218697875738,-0.04468951001763344,-0.028633633628487587,0.00954878143966198,-0.030080312862992287,-0.014300042763352394,0.05295007303357124,0.0658179447054863,-0.036173492670059204,0.026588791981339455]},{"text":"Will that reassure you? (_She offers him her hand._) MAN. (_looking dubiously at his own hand_).","book":"Down and Out in Paris and London","chapter":21,"embedding":[-0.05809023603796959,0.052334852516651154,0.06886652112007141,0.017893441021442413,0.02840445004403591,-0.06721491366624832,0.12358279526233673,-0.05375046655535698,-0.049217596650123596,-0.058145321905612946,-0.005398053675889969,-0.07271591573953629,0.01203210186213255,0.015892069786787033,0.06103460490703583,0.023916305974125862,0.010541766881942749,-0.07461529225111008,-0.02343442104756832,0.1560247391462326,-0.004983221180737019,0.01339321956038475,0.04262557253241539,-0.05360140651464462,-0.031927529722452164,-0.07072281092405319,0.07985694706439972,-0.0028374488465487957,0.01298841368407011,-0.0016643889248371124,-0.07566401362419128,0.046491581946611404,-0.05733833834528923,0.007286660838872194,-0.01647268980741501,0.07000847905874252,-0.05271705240011215,-0.01058883871883154,0.0274517759680748,0.006922515574842691,-0.0568680576980114,-0.050381701439619064,0.037772875279188156,0.07134349644184113,-0.009381902404129505,0.02622264437377453,0.07651922851800919,0.029581338167190552,-0.0015304791741073132,-0.11024947464466095,-0.07374777644872665,-0.03754111006855965,-0.031039107590913773,-0.043524861335754395,0.01794203743338585,0.003822231898084283,0.030117210000753403,-0.05065353959798813,-0.04378468170762062,0.10169391334056854,-0.010706288740038872,0.03534005954861641,-0.053880684077739716,0.1266278773546219,-0.026865549385547638,0.016692349687218666,0.025811348110437393,0.021165989339351654,-0.03276556357741356,0.15058349072933197,0.06712032854557037,0.02116565592586994,0.001028126454912126,0.020403148606419563,-0.06606665253639221,-0.04766278341412544,0.06230611354112625,-0.06958514451980591,0.07935667783021927,0.019949443638324738,-0.043469302356243134,0.012725780718028545,0.015531065873801708,0.023012621328234673,-0.04895490035414696,0.05029512941837311,0.029554292559623718,-0.08065430819988251,-0.02858782559633255,0.01998787559568882,-0.0624946653842926,-0.13479474186897278,-0.07028846442699432,0.019068831577897072,-0.06962200254201889,0.07341031730175018,-0.048098836094141006,0.010708070360124111,-0.1231798604130745,-0.03100217878818512,0.052032243460416794,0.07374826818704605,-0.05006326735019684,0.04569878429174423,-0.03851422667503357,0.0508451834321022,-0.043752942234277725,-0.06858272105455399,0.01978243514895439,0.028874419629573822,0.09292121231555939,-0.016839180141687393,-0.059158626943826675,-0.04143977165222168,-0.005222559906542301,-0.01792156882584095,0.03862626850605011,0.006290199235081673,0.015997497364878654,0.01497721765190363,-0.0076320176012814045,-0.006082732696086168,0.07114122062921524,-0.002041332423686981,-0.025968465954065323,-0.012378004379570484,0.01185810286551714,-3.309814097013375e-33,0.05919899791479111,0.039884623140096664,-0.00807069893926382,-0.060066599398851395,-0.015468981117010117,0.0542244054377079,-0.04117581620812416,0.022608034312725067,-0.04968025162816048,0.05356638506054878,-0.032044485211372375,0.05463269725441933,-0.013851933181285858,-0.054713644087314606,-0.14594513177871704,0.07516719400882721,0.026555942371487617,0.0565124936401844,-0.04187291860580444,0.05987215414643288,0.0017533753998577595,-0.07951319962739944,-0.03136315569281578,-0.04502423480153084,-0.019161343574523926,-0.1222693994641304,0.06454066187143326,0.037882205098867416,0.0977838858962059,-0.0014543371507897973,-0.11278995871543884,0.031649693846702576,-0.02429775521159172,-0.0019233637722209096,0.022573741152882576,0.08183039724826813,-0.017546387389302254,0.022852201014757156,-0.02222348377108574,-0.04512062296271324,0.0048375483602285385,0.004629875998944044,0.016841448843479156,0.05233076214790344,-0.036697112023830414,-0.0749114379286766,0.011443553492426872,0.0021467895712703466,-0.052769534289836884,-0.09028107672929764,-0.037455566227436066,-0.002966441912576556,-0.005084760021418333,-0.0024296357296407223,-0.02153131179511547,-0.01166400033980608,0.05722258239984512,0.023684075102210045,0.08370315283536911,0.020530767738819122,-0.024514686316251755,-0.07413558661937714,-0.0075364550575613976,-0.02979852259159088,-0.009671991690993309,0.007799120154231787,0.0005704507930204272,-0.0545504167675972,-0.029409658163785934,0.005716961342841387,-0.09232374280691147,0.03455117344856262,-0.05000073462724686,0.05624273791909218,-0.02171032503247261,0.01634056679904461,-0.04658682271838188,0.0463385283946991,0.07501644641160965,-0.0820946916937828,0.025282856076955795,0.02655857615172863,0.025500353425741196,0.07129455357789993,-0.007662852760404348,-0.009438497014343739,0.027085889130830765,-0.055560700595378876,-0.012374336831271648,0.024024197831749916,-0.033477380871772766,0.04137865826487541,-0.016217565163969994,-0.012629999779164791,0.0016299942508339882,-3.877743264189121e-34,0.0297824926674366,0.014874487183988094,-0.03914939984679222,0.03676430135965347,-0.037812285125255585,-0.1101599633693695,0.010184057056903839,-0.010818700306117535,0.03900060057640076,-0.030719198286533356,0.01920158974826336,-0.026609504595398903,0.04725510999560356,0.01625354215502739,-0.003554500173777342,-0.065043605864048,-0.029048915952444077,-0.017177212983369827,0.03934776410460472,0.04966169223189354,-0.022004209458827972,0.010964332148432732,0.03745531290769577,0.059523649513721466,-0.01760098524391651,0.013157319277524948,0.06252066045999527,-0.07805712521076202,-0.07899726182222366,-0.0081935478374362,0.07521460205316544,-0.10045816749334335,-0.029483612626791,0.017319990321993828,0.017044518142938614,-0.03809668496251106,-0.048132289201021194,-0.06263512372970581,0.0976232960820198,0.10731574147939682,0.014024127274751663,0.008678620681166649,0.005744404625147581,0.035334378480911255,0.037045758217573166,0.03778117522597313,0.09110313653945923,-0.011561091989278793,0.10196055471897125,0.03095225803554058,0.0313621461391449,-0.019714124500751495,-0.04534931480884552,0.0002782813098747283,0.03309250250458717,-0.029472753405570984,0.0318867564201355,-0.014133197255432606,0.021225936710834503,-0.03820125386118889,0.003101208945736289,0.010854831896722317,-0.03606719151139259,0.023409539833664894,-0.02182052470743656,0.06747905164957047,0.023092038929462433,0.02801150642335415,0.043975263833999634,-0.0022777593694627285,0.05387736111879349,-0.06305805593729019,-0.010359399020671844,-0.00024099924485199153,0.05981643870472908,0.053958240896463394,0.07201599329710007,-0.09632360935211182,0.06222527101635933,-0.04599585011601448,0.03248947858810425,-0.0701516643166542,0.0828186422586441,-0.035031985491514206,-0.001851686742156744,0.00601915642619133,0.012685230933129787,0.009156865067780018,-0.04460645094513893,0.0042880442924797535,-0.0442122258245945,0.02508479729294777,0.04394058510661125,-0.1186647117137909,0.024388043209910393,-2.7347599740323858e-8,0.02019987255334854,0.016508199274539948,0.09647642076015472,-0.1658773571252823,0.027407456189393997,0.022324543446302414,-0.0564446821808815,-0.15218254923820496,-0.029772426933050156,-0.049924686551094055,-0.05466340482234955,0.03334294632077217,0.03393511474132538,-0.07190738618373871,0.027355795726180077,0.001295148627832532,0.021250756457448006,-0.05010472610592842,-0.07071437686681747,-0.024517318233847618,0.08067839592695236,0.028934195637702942,0.028700022026896477,0.031374331563711166,-0.006879525259137154,0.059333838522434235,-0.06403565406799316,0.012205122970044613,-0.06638136506080627,0.04241234064102173,0.06864187121391296,-0.053162917494773865,-0.021785635501146317,-0.040934592485427856,0.0036017601378262043,0.018509866669774055,-0.02266501635313034,0.0411149263381958,0.10907245427370071,0.05931564420461655,0.022192716598510742,-0.03424357250332832,-0.08926831185817719,0.03475004434585571,-0.026164142414927483,-0.029820775613188744,0.10578371584415436,-0.10600745677947998,-0.024809719994664192,0.016996383666992188,-0.011941836215555668,-0.034883223474025726,0.02041909098625183,0.055673759430646896,-0.012863987125456333,-0.090396448969841,-0.04083939269185066,0.01300320215523243,0.032848138362169266,0.017478587105870247,0.018899086862802505,-0.06123000755906105,0.0015021946746855974,0.011790131218731403]},{"text":"Bulgarians of really good standing—people in OUR position—wash their hands nearly every day.","book":"Down and Out in Paris and London","chapter":21,"embedding":[-0.013553938828408718,0.07519523799419403,0.03494054451584816,0.054367050528526306,-0.011423788033425808,0.01625443622469902,0.06822504848241806,-0.06503360718488693,-0.017409933730959892,-0.06978274136781693,-0.015405071899294853,0.050793178379535675,-0.01460117194801569,0.027012063190340996,-0.05221633240580559,-0.04660601168870926,-0.06311117112636566,0.012609872967004776,-0.07594756782054901,0.07478449493646622,-0.09982303529977798,-0.007461520843207836,0.12614679336547852,0.026082051917910576,-0.06224463880062103,-0.04689905419945717,0.020836876705288887,-0.1058741956949234,0.05997302755713463,0.0065156202763319016,-0.014643795788288116,0.03893798962235451,-0.03354185074567795,-0.02114912122488022,-0.06084907799959183,0.019552208483219147,0.009166301228106022,-0.08670694380998611,-0.056266408413648605,0.10269027948379517,0.0809994786977768,-0.062327537685632706,-0.02297334559261799,0.020401988178491592,-0.007897555828094482,0.08326110243797302,0.06474356353282928,0.06564975529909134,0.03080156072974205,-0.011517264880239964,0.010327090509235859,-0.011902607046067715,0.11021000891923904,-0.0540936142206192,-0.04229643940925598,-0.06353359669446945,0.014993894845247269,-0.11003569513559341,0.022662201896309853,0.042902372777462006,0.05160754919052124,0.0729340985417366,-0.013683103024959564,0.027796413749456406,-0.0528038814663887,0.009374742396175861,0.018397584557533264,0.10635697841644287,-0.04983769357204437,0.02233949489891529,-0.11554130166769028,-0.013756136409938335,-0.03259625285863876,0.11000949889421463,0.03381979838013649,-0.05896918103098869,-0.03593498840928078,-0.1039562076330185,-0.033679574728012085,-0.010930495336651802,-0.028398482128977776,-0.06273350119590759,0.0341864749789238,0.03861641511321068,-0.008276916109025478,-0.0023981654085218906,0.010642649605870247,-0.00522523233667016,0.04824267700314522,-0.022004153579473495,-0.04523896798491478,0.010055050253868103,0.04021769389510155,-0.041096869856119156,0.03166583180427551,0.08565230667591095,0.06539684534072876,0.09048383682966232,-0.07162270694971085,0.058704622089862823,-0.04975493997335434,0.015149268321692944,0.0000027625910661299713,0.025907816365361214,-0.028018184006214142,-0.009891616180539131,-0.1226566955447197,-0.08521180599927902,-0.07492392510175705,-0.04499565437436104,0.009386035613715649,-0.04023008793592453,-0.004802011884748936,0.019876092672348022,0.016348538920283318,-0.06200314313173294,0.015561618842184544,-0.02755172736942768,-0.010089218616485596,0.009784377180039883,0.019740700721740723,-0.01714896596968174,-0.06258539110422134,-0.03034457191824913,0.008959092199802399,0.006567441392689943,-0.04232295602560043,-2.3125931990558805e-33,-0.00033108770730905235,0.004279224202036858,0.07772385329008102,0.02511279657483101,-0.06701645255088806,0.05253681167960167,-0.09290264546871185,-0.04812007024884224,0.04299471527338028,-0.00568731315433979,0.015968913212418556,-0.004260927904397249,-0.0146610327064991,0.011926860548555851,-0.046233516186475754,0.061247870326042175,-0.02755703218281269,0.012145474553108215,-0.05869821459054947,0.04795803502202034,0.055895887315273285,0.07128806412220001,0.029532521963119507,0.08926831185817719,-0.08337780088186264,-0.014440434984862804,-0.040400076657533646,-0.05857289955019951,0.07094485312700272,-0.010063937865197659,0.04375389590859413,-0.03073139861226082,-0.056167930364608765,0.02202337607741356,-0.13571816682815552,0.024032849818468094,-0.040662068873643875,-0.021985111758112907,-0.052170444279909134,-0.055097244679927826,-0.021554529666900635,-0.04050792381167412,0.0639006495475769,-0.053951047360897064,-0.016104377806186676,0.02119157277047634,0.00889615435153246,-0.004409087356179953,-0.054850414395332336,-0.017172163352370262,0.0029819991905242205,0.07358741015195847,0.018667737022042274,0.04737265780568123,-0.006895431317389011,0.014074087142944336,0.018347399309277534,0.0604877732694149,-0.06664440035820007,0.03279649838805199,-0.019789865240454674,0.02870653197169304,-0.043850090354681015,0.004323072265833616,0.012938668951392174,-0.051944103091955185,0.017886893823742867,0.1037365049123764,0.05194535851478577,0.013124573975801468,0.05981357768177986,0.031900838017463684,-0.07997550070285797,0.06756267696619034,-0.018519364297389984,-0.023364776745438576,0.06297803670167923,-0.02880849689245224,-0.009358089417219162,0.08272717893123627,0.010614149272441864,0.02492814138531685,0.06165994703769684,0.00274722371250391,0.0410478413105011,0.04123740270733833,-0.009030088782310486,-0.0035306457430124283,0.046886738389730453,0.05408025532960892,-0.04346403107047081,0.0025845335330814123,0.06990616023540497,-0.01908344402909279,-0.08753212541341782,-8.711768631516442e-34,0.08007441461086273,-0.020627513527870178,-0.032758504152297974,0.09683544188737869,0.0373927541077137,-0.02593986876308918,-0.03905352205038071,0.11850957572460175,-0.0696646049618721,0.0844094455242157,0.03610588237643242,-0.06883637607097626,0.03154153749346733,0.016180353239178658,0.031871724873781204,0.003822151105850935,0.08862858265638351,0.05144684389233589,-0.05492047965526581,-0.07340199500322342,-0.015577683225274086,0.01925121434032917,0.022647961974143982,0.06356515735387802,-0.07214856892824173,-0.037205711007118225,-0.0022227726876735687,-0.03040611930191517,-0.09497598558664322,-0.035371825098991394,-0.043666303157806396,0.019916990771889687,-0.016576804220676422,-0.019315112382173538,0.01946963183581829,-0.02714371122419834,-0.1003030464053154,0.00665689492598176,0.05597192794084549,0.11962047964334488,0.01821756921708584,-0.035236284136772156,0.017387647181749344,0.043061867356300354,0.0033553114626556635,0.05488966405391693,-0.10312902927398682,-0.0405166931450367,-0.05124470591545105,-0.037380971014499664,-0.028546731919050217,0.01767973229289055,-0.03237491101026535,-0.03304857760667801,0.04997245594859123,0.021408144384622574,0.050764407962560654,-0.1024741530418396,0.0408988893032074,0.09035415947437286,-0.011400237679481506,0.04425488039851189,-0.02615492418408394,-0.0231875479221344,-0.05359891429543495,-0.019596735015511513,-0.09021344035863876,0.11102665960788727,-0.009220987558364868,-0.01022295095026493,0.06591659039258957,-0.07956097275018692,-0.007297428324818611,-0.028874708339571953,-0.04833215847611427,0.017555462196469307,-0.017231326550245285,-0.00040593152516521513,0.058410149067640305,-0.03373447060585022,-0.08336751163005829,-0.109295554459095,-0.012727121822535992,0.060262683779001236,0.02233266830444336,-0.005821867845952511,-0.03434213995933533,-0.013826928101480007,0.08235109597444534,0.0571100190281868,-0.021405456587672234,-0.0375615730881691,-0.0700090304017067,0.011302163824439049,0.10590473562479019,-2.189086423243225e-8,0.027576476335525513,-0.012480217032134533,0.064813032746315,0.06598306447267532,-0.030816184356808662,0.006306911818683147,0.00456938287243247,0.04205767810344696,-0.0755539983510971,0.046076372265815735,-0.05022174119949341,-0.04769151657819748,0.04283573850989342,-0.004145762883126736,0.04109016805887222,0.08734697848558426,0.03716736659407616,0.0005331013235263526,-0.07359915226697922,-0.033556681126356125,0.0936407819390297,-0.030403660610318184,0.031023818999528885,0.07980286329984665,-0.08359139412641525,-0.04332178086042404,-0.04049843177199364,0.011977373622357845,-0.03301674500107765,-0.04206322506070137,0.012039394117891788,-0.030387556180357933,-0.09515758603811264,-0.02062714286148548,-0.0144397197291255,0.04637942090630531,-0.006601113360375166,-0.09955627471208572,0.059578653424978256,0.005765369161963463,-0.09320293366909027,-0.03171367570757866,0.02007799968123436,0.03282161429524422,0.018067538738250732,-0.047840651124715805,-0.005406987853348255,0.037777598947286606,-0.02492103911936283,-0.05021403357386589,0.024312317371368408,0.011781946755945683,0.067876435816288,0.1532011479139328,-0.020405741408467293,-0.004868089687079191,0.0067122699692845345,0.01846708171069622,-0.01602586731314659,0.006685241591185331,-0.0005582200246863067,-0.008113667368888855,-0.005782231222838163,0.03621632605791092]},{"text":"If you will be so good as to keep perfectly still whilst I am away.","book":"Down and Out in Paris and London","chapter":21,"embedding":[-0.05096862465143204,-0.006270845886319876,0.029154814779758453,0.04960690438747406,0.08168814331293106,0.0376359298825264,0.04374935105443001,-0.04299262538552284,-0.06301204115152359,-0.03669075667858124,0.03067856654524803,0.02731880359351635,0.009018597193062305,-0.023602524772286415,0.028294796124100685,0.036829106509685516,0.06373626738786697,-0.07133848965167999,-0.15320022404193878,0.0677117258310318,-0.027083460241556168,0.04011237993836403,0.019582372158765793,0.047883059829473495,-0.07330429553985596,0.05817835032939911,-0.011330793611705303,-0.04159574955701828,0.047236986458301544,-0.06449593603610992,-0.07339426875114441,-0.05293436348438263,-0.030486982315778732,-0.019966984167695045,-0.0446600541472435,0.07751274853944778,0.01430218480527401,-0.10379903018474579,0.05992557480931282,-0.03679371997714043,-0.012701895087957382,0.013650922104716301,-0.023658405989408493,-0.034372761845588684,-0.005682814866304398,0.07518895715475082,-0.03015274927020073,0.0333687961101532,0.08145029097795486,0.03686732053756714,-0.024109307676553726,0.03232331946492195,-0.08981391042470932,0.04112678021192551,0.050372470170259476,0.030695229768753052,0.022059405222535133,-0.01859363541007042,-0.06195838749408722,0.04519835487008095,0.02415713109076023,0.01967061497271061,0.020607585087418556,-0.029095979407429695,0.04504897817969322,-0.03475157916545868,-0.03978356719017029,0.09779743105173111,-0.016880061477422714,0.03917429968714714,-0.15913166105747223,0.02099175937473774,-0.09816410392522812,-0.006553248502314091,0.008782980032265186,0.015416093170642853,0.03182458132505417,-0.10940253734588623,0.012372251600027084,0.11679457873106003,-0.009628531523048878,-0.014524462632834911,-0.019826987758278847,-0.023815657943487167,-0.1254151612520218,-0.0458613783121109,0.10317325592041016,0.0962081328034401,0.04795212298631668,-0.029930708929896355,0.008249823935329914,0.05387786030769348,-0.014040621928870678,-0.034781452268362045,0.014997415244579315,-0.006455011200159788,-0.05125927925109863,0.014751367270946503,-0.09764168411493301,0.06871310621500015,0.057131409645080566,0.019809838384389877,0.0009367124293930829,0.029377847909927368,0.007273474242538214,0.005773081444203854,-0.008509891107678413,0.08192937076091766,0.07330240309238434,-0.030597569420933723,-0.01694132201373577,0.059819940477609634,-0.012976806610822678,0.06384395062923431,0.01988358236849308,0.09537462145090103,-0.052418045699596405,0.051756661385297775,0.04133802279829979,0.043615855276584625,0.053210072219371796,0.024574318900704384,0.07401183992624283,0.020417647436261177,-0.019258426502346992,0.009369698353111744,0.0444054938852787,-3.1528440915343365e-33,-0.012948152609169483,-0.002915876917541027,0.0007083178497850895,0.03786934167146683,0.03212456777691841,-0.04831420257687569,-0.04614398628473282,-0.020399821922183037,0.01032355148345232,0.033563803881406784,-0.02549223229289055,-0.023616546764969826,-0.009584087878465652,-0.008805060759186745,0.0006564187933690846,0.05233949050307274,0.048178933560848236,-0.010827511548995972,0.05046061426401138,-0.0002982855658046901,0.01516384445130825,-0.11391349881887436,-0.004004143178462982,-0.0564250610768795,0.013728251680731773,-0.07623142749071121,-0.010915965773165226,-0.047944653779268265,0.010358192026615143,0.01275159977376461,-0.06116192042827606,0.018840162083506584,-0.12109155207872391,0.0009907452622428536,0.008890490978956223,0.052288416773080826,-0.12773177027702332,-0.026224840432405472,-0.004548579920083284,-0.004510581959038973,-0.033359453082084656,0.07679038494825363,0.05656805634498596,0.021125048398971558,0.010996908880770206,-0.08224111795425415,0.05692158639431,0.05276792123913765,-0.06607888638973236,-0.02710088901221752,-0.07517646998167038,-0.015198169276118279,-0.041311878710985184,-0.03745315596461296,-0.08426416665315628,-0.005517521407455206,-0.00002577625673438888,0.0201935525983572,-0.012878883630037308,-0.06406106054782867,0.046641718596220016,0.03637561947107315,0.03551771119236946,-0.01246930193156004,-0.05336400121450424,0.01767163723707199,-0.016199545934796333,-0.030228158459067345,-0.026410384103655815,-0.039425525814294815,0.024214036762714386,-0.049128852784633636,0.024848494678735733,-0.06842218339443207,0.05696208029985428,0.00259810290299356,-0.01173818577080965,0.01660405658185482,0.06337086111307144,-0.012141735292971134,0.07394351065158844,0.122494176030159,-0.10506408661603928,-0.02688118815422058,0.09410430490970612,-0.00027185509679839015,0.07340183854103088,-0.11127184331417084,-0.031721081584692,0.043024301528930664,-0.018718551844358444,-0.01431709062308073,0.06304200738668442,-0.05138318985700607,-0.047608643770217896,1.2690464360744639e-33,0.07981697469949722,-0.028778264299035072,0.06017625331878662,0.03289106860756874,-0.05228063836693764,0.033187638968229294,0.053558044135570526,0.10976380854845047,-0.09870801866054535,0.08551745116710663,-0.11519359797239304,0.007256524171680212,0.05782293528318405,0.022025277838110924,-0.040660202503204346,-0.015468759462237358,0.0404575951397419,-0.03201090916991234,-0.04917420074343681,0.041493453085422516,-0.029171865433454514,0.050064411014318466,-0.05450461059808731,0.03493533656001091,-0.018418950960040092,0.02408103086054325,0.015573634766042233,0.022152436897158623,-0.09984325617551804,-0.05945228785276413,0.03434935212135315,-0.10794928669929504,-0.09548380225896835,-0.08226287364959717,0.007853527553379536,-0.0386357419192791,0.04213312268257141,-0.03434142842888832,-0.061103399842977524,0.027522221207618713,-0.04728269204497337,-0.007851270027458668,-0.03587625175714493,0.05401556193828583,0.051258936524391174,-0.028901640325784683,0.0016497918404638767,0.0740785151720047,0.0012874025851488113,0.09491509199142456,0.08617327362298965,0.004496815148741007,-0.03790166601538658,-0.03263338282704353,-0.011918934062123299,0.04337169975042343,-0.05518867075443268,-0.06600449979305267,-0.028419846668839455,-0.05135367438197136,-0.0550696924328804,0.00267313071526587,0.005029722582548857,0.06242624297738075,0.09790170937776566,-0.04057459905743599,-0.007529544644057751,0.07483422756195068,-0.0015998448943719268,0.001548435422591865,-0.015092674642801285,-0.09474705904722214,-0.06524962186813354,-0.00041357328882440925,-0.022248264402151108,-0.017628472298383713,0.08632004261016846,-0.050975050777196884,0.0022634209599345922,0.06024642288684845,-0.03358772397041321,0.030287891626358032,-0.005767687223851681,-0.08711876720190048,0.017146162688732147,-0.1041230708360672,0.02096603251993656,0.06560243666172028,0.03679875656962395,-0.018034523352980614,0.034869249910116196,0.03417899087071419,-0.016470132395625114,-0.08505018800497055,0.05134846642613411,-2.6969090072270774e-8,-0.008322371169924736,0.018111897632479668,0.0016472096322104335,-0.00472172861918807,-0.01577875018119812,-0.03710123896598816,0.055210184305906296,-0.09578107297420502,0.01162936445325613,0.0034854747354984283,0.07830079644918442,-0.045879121869802475,0.028697237372398376,-0.05946820229291916,-0.016057107597589493,0.06798817962408066,-0.011773722246289253,-0.05383972078561783,-0.005576416850090027,0.05553567782044411,0.028486836701631546,0.025152964517474174,0.0165069792419672,0.050913240760564804,0.004113039467483759,0.05670147016644478,0.07467474788427353,0.011034833267331123,0.0009753038757480681,0.061585329473018646,0.05384984239935875,-0.024439148604869843,0.004089917056262493,-0.0016246028244495392,0.0008236328139901161,-0.04483689367771149,0.008468328975141048,-0.024167396128177643,-0.023103825747966766,0.01731201820075512,-0.0376235656440258,-0.04486828297376633,-0.03258515149354935,0.09404372423887253,-0.010360699146986008,-0.0885646641254425,0.13252325356006622,0.042524877935647964,-0.0835249051451683,0.0027831378392875195,-0.027848146855831146,-0.04925301671028137,0.0018976253923028708,0.060883719474077225,0.08781816810369492,0.034926459193229675,-0.001979175955057144,0.014282463118433952,-0.050814367830753326,-0.012592784129083157,0.020080432295799255,-0.025197898969054222,-0.07778692245483398,-0.03295237943530083]},{"text":"It’s all right: I’m wide awake.","book":"Down and Out in Paris and London","chapter":22,"embedding":[0.05574801191687584,-0.06438355892896652,0.01405930332839489,0.027229871600866318,0.027834806591272354,0.025887876749038696,0.021556369960308075,0.024797622114419937,-0.06853222101926804,0.01717534102499485,-0.02659589797258377,-0.022581590339541435,-0.10709642618894577,0.02197883278131485,0.02047683298587799,0.028954122215509415,0.03475463017821312,-0.06369172781705856,-0.02622775360941887,0.030559416860342026,0.08331470191478729,0.06607113033533096,0.04366091266274452,0.04364960640668869,0.0017068948363885283,-0.00381657388061285,0.0461222343146801,-0.058839116245508194,0.018811846151947975,-0.07003472000360489,-0.026803769171237946,0.06266861408948898,-0.02332025021314621,-0.08825358003377914,0.014983325265347958,0.021293189376592636,-0.008058522827923298,-0.059317659586668015,0.031008567661046982,-0.012190129607915878,0.043787263333797455,-0.04665070027112961,0.06325274705886841,0.054620470851659775,-0.0038331339601427317,0.014256558381021023,-0.08315043896436691,-0.010660400614142418,0.027193088084459305,0.01636793091893196,-0.017528563737869263,-0.037365518510341644,-0.03043421171605587,0.033332712948322296,0.059491850435733795,0.06650208681821823,-0.008648240938782692,-0.01830836571753025,0.07974252849817276,0.01718120463192463,-0.013599946163594723,0.013953088782727718,0.015312278643250465,0.07656300812959671,0.049949731677770615,0.028550488874316216,-0.06858042627573013,-0.04349592328071594,-0.08634970337152481,-0.025659067556262016,-0.04066932573914528,-0.008188598789274693,0.027768149971961975,-0.05467811971902847,-0.027477994561195374,-0.06871998310089111,-0.015193569473922253,-0.06769997626543045,0.08565796911716461,0.04082905873656273,0.02937256544828415,0.008853196166455746,0.028583155944943428,-0.10917548835277557,0.03712843358516693,0.03791387751698494,0.02302619442343712,0.0605304092168808,-0.023187076672911644,0.03602905943989754,-0.06950926035642624,-0.009369732812047005,0.007032926194369793,0.08739636093378067,0.019866690039634705,-0.050723519176244736,-0.006723735947161913,-0.015604963526129723,-0.09442603588104248,0.04494344815611839,0.06813572347164154,0.020534852519631386,0.04802811145782471,0.024106193333864212,0.02773566171526909,0.019303586333990097,0.022684816271066666,0.06326302140951157,0.04527352750301361,-0.05461162328720093,0.011726917698979378,-0.025888068601489067,-0.010203901678323746,0.06922177225351334,0.09287998825311661,0.08066299557685852,0.003659767797216773,0.0444425605237484,0.07440945506095886,0.023131201043725014,-0.006265643984079361,0.01051538810133934,0.02359066717326641,-0.0646694228053093,-0.05096066743135452,-0.04451841861009598,0.028942963108420372,-8.215221450629877e-33,0.015067138709127903,-0.016851380467414856,-0.0033236993476748466,0.15615464746952057,0.048119205981492996,-0.012885458767414093,-0.02578095719218254,0.06030013784766197,-0.10681687295436859,0.07395039498806,0.016439251601696014,0.04479465261101723,-0.0026457360945641994,-0.009985540062189102,0.09234991669654846,0.002423638477921486,-0.007198585197329521,0.07231756299734116,0.002847308525815606,0.014653090387582779,-0.026115048676729202,-0.05720487982034683,-0.004134448245167732,0.023344794288277626,-0.044393390417099,-0.04222678393125534,0.031854357570409775,0.03393280878663063,0.009594577364623547,0.034283608198165894,-0.04043712094426155,-0.01673840917646885,-0.002985898172482848,0.027321334928274155,0.019089240580797195,-0.030177034437656403,-0.024550698697566986,0.004869641736149788,-0.0079483138397336,-0.03583410382270813,-0.10712038725614548,0.07567194849252701,-0.0075091952458024025,-0.05865485966205597,-0.05046045780181885,0.04366418346762657,0.009154013358056545,0.08983059227466583,-0.012296599335968494,0.027115561068058014,-0.059135038405656815,0.021104227751493454,-0.004190703388303518,-0.056479208171367645,-0.023430390283465385,0.03212347254157066,0.0030323327518999577,0.1303592026233673,0.07258864492177963,0.03388461098074913,-0.009162536822259426,-0.01234879344701767,0.02088061347603798,-0.0417652390897274,-0.04877815395593643,0.04869227111339569,-0.01903056912124157,-0.001268288353458047,0.023623861372470856,-0.01704981178045273,0.04849622771143913,0.003694182727485895,0.062323879450559616,0.07465342432260513,0.006111106835305691,0.010825976729393005,0.043561674654483795,-0.014884947799146175,-0.01261832844465971,0.020636821165680885,0.01190249901264906,0.08785934746265411,-0.011200870387256145,-0.010216210968792439,-0.05877918377518654,-0.04604598879814148,-0.04398052766919136,0.060649048537015915,-0.033591266721487045,0.07718954235315323,-0.12355758249759674,0.007445845287293196,0.1507495492696762,-0.043199650943279266,-0.19194091856479645,6.897011065358224e-33,0.07555694878101349,-0.012518723495304585,-0.11046506464481354,-0.07512474805116653,0.025731315836310387,-0.014068926684558392,0.0000424380341428332,0.04457041621208191,-0.006414505653083324,0.060729172080755234,0.07694297283887863,0.019891725853085518,-0.08572712540626526,-0.06181905046105385,0.029483076184988022,-0.06830306351184845,0.10517168045043945,0.024863528087735176,-0.02383173443377018,0.04980824887752533,-0.059065088629722595,-0.036622386425733566,-0.056014642119407654,-0.012620839290320873,0.10541792213916779,0.06400726735591888,-0.03338097408413887,0.10038231313228607,-0.008949420414865017,0.0006531985127367079,-0.06096869707107544,-0.04668441787362099,-0.08492962270975113,-0.0027406630106270313,-0.01578054390847683,0.02499576471745968,0.00023418439377564937,-0.11561411619186401,0.02167060784995556,-0.05237944424152374,-0.009367242455482483,-0.05269089713692665,-0.03033646009862423,0.10591068118810654,0.02638508565723896,-0.05120138078927994,0.0006214326131157577,0.02934887818992138,-0.0606323778629303,0.04703376814723015,0.028603997081518173,-0.08167952299118042,0.06045961380004883,0.028895504772663116,-0.09358397126197815,0.0034962864592671394,-0.020830044522881508,-0.07142213732004166,-0.06308233737945557,-0.05896430090069771,0.00826452299952507,-0.04333801195025444,0.037387263029813766,-0.11715180426836014,0.011022589169442654,-0.03115168958902359,0.021386977285146713,-0.0169219933450222,0.03193660080432892,-0.012117503210902214,0.059867989271879196,-0.04186229035258293,-0.10213148593902588,0.06299351155757904,0.020662741735577583,-0.022580508142709732,0.08709623664617538,-0.058942802250385284,0.0635329857468605,-0.0442461259663105,-0.03046591579914093,-0.004668741952627897,0.07943195849657059,0.005730613600462675,0.01663634367287159,0.012540855444967747,0.13783997297286987,-0.01593540795147419,0.0013698618859052658,0.04226052016019821,-0.0358104407787323,0.007124374154955149,-0.03204736113548279,-0.0698205903172493,0.01493027526885271,-2.597351489441735e-8,0.029300181195139885,0.039719127118587494,-0.07338036596775055,0.031401775777339935,-0.011643964797258377,0.009666137397289276,0.012245340272784233,-0.058304186910390854,-0.06610793620347977,0.03674871847033501,-0.00831164512783289,-0.0015994592104107141,0.07365328073501587,-0.05875837057828903,0.07252448052167892,-0.04566597193479538,-0.08621810376644135,0.015924368053674698,-0.06575841456651688,-0.028227856382727623,-0.0662091001868248,0.026159940287470818,0.032011713832616806,-0.02889908105134964,0.03369972109794617,0.046881239861249924,-0.06322751194238663,0.04676248878240585,-0.021347738802433014,-0.03979303687810898,0.07615143805742264,0.04969395324587822,-0.06005948781967163,0.0004864891234319657,-0.014228647574782372,-0.06740667670965195,0.004870269913226366,0.06419244408607483,0.03503997251391411,0.0302028376609087,-0.022623153403401375,-0.042981021106243134,0.03797197341918945,0.08076496422290802,-0.06389470398426056,-0.03996463119983673,0.11916948854923248,0.010144448839128017,-0.06390927731990814,-0.10327187180519104,0.00213195220567286,-0.031844612210989,0.02267681062221527,-0.016156191006302834,0.035025615245103836,-0.00209999131038785,-0.01775648444890976,0.019223598763346672,-0.03265108913183212,-0.022274479269981384,0.112917959690094,0.03333967179059982,-0.07950765639543533,0.06005389988422394]},{"text":"He wakes again with a shock on the point of falling._) Where am I?","book":"Down and Out in Paris and London","chapter":22,"embedding":[0.07246607542037964,0.016939207911491394,0.08301590383052826,0.07279635220766068,0.07420865446329117,0.07838548719882965,0.07691307365894318,0.060442354530096054,0.03688969835639,-0.05872243270277977,0.008860531263053417,-0.10042192041873932,0.002297610742971301,0.05867742374539375,-0.0002547843614593148,-0.024610646069049835,-0.038277704268693924,-0.046287328004837036,-0.0016692361095920205,0.07247638702392578,0.05040748417377472,0.1338171809911728,0.05451979488134384,0.03050985001027584,0.0047300527803599834,-0.03556954860687256,0.056825824081897736,0.04710874333977699,0.029284780845046043,-0.08858760446310043,0.040038447827100754,-0.01471075601875782,-0.08686331659555435,-0.07167728990316391,0.02359042502939701,0.038865167647600174,0.054686468094587326,0.001860282733105123,-0.0013244132278487086,-0.017353558912873268,0.00013173470506444573,-0.027149973437190056,-0.016421055421233177,0.027892859652638435,-0.006748288404196501,0.044696908444166183,0.036788951605558395,0.04848160967230797,0.050746265798807144,0.02588004060089588,-0.05330823361873627,0.0612473301589489,-0.03516777604818344,0.01928730681538582,-0.009057369083166122,0.011376820504665375,0.024999648332595825,-0.030177198350429535,0.02952837385237217,-0.0026829272974282503,0.005660261958837509,0.055454373359680176,-0.0020648448262363672,0.07897855341434479,0.029451211914420128,0.012838425114750862,-0.03621736541390419,-0.032801512628793716,0.001671306323260069,0.029282676056027412,0.06631365418434143,0.01597912609577179,0.006997840944677591,-0.051733747124671936,-0.061360474675893784,-0.12051396071910858,0.04271390289068222,0.0024928636848926544,0.09174634516239166,0.0671686977148056,0.06878557801246643,-0.05963495001196861,-0.09183701872825623,0.027944549918174744,-0.08942171931266785,0.05239362642168999,0.06828320026397705,0.03542178124189377,-0.0914173424243927,0.03762141242623329,-0.04176003113389015,-0.0279038418084383,-0.018410658463835716,0.07809626311063766,-0.03331562131643295,0.060762859880924225,-0.05677564814686775,-0.012538228183984756,-0.060391198843717575,0.04171057790517807,0.028690267354249954,-0.008423326537013054,0.04173123091459274,0.13242529332637787,0.008059230633080006,-0.017224285751581192,-0.05221175029873848,-0.005945841781795025,-0.012002333998680115,0.023766830563545227,-0.003252945374697447,-0.09470144659280777,-0.015436521731317043,-0.013480695895850658,0.046305302530527115,-0.0004046776448376477,-0.004515694919973612,-0.0033524923492223024,-0.06475047022104263,0.08692823350429535,0.02461603283882141,0.09839462488889694,0.027904968708753586,0.033113546669483185,-0.044765446335077286,-0.04237182438373566,-0.018161987885832787,-4.8112238074927425e-33,0.10502100735902786,-0.014398302882909775,-0.0071960678324103355,0.04559357836842537,-0.005069788545370102,-0.048387520015239716,-0.05403311178088188,0.07140026241540909,-0.03300318494439125,0.005178751889616251,-0.07656346261501312,0.0033762550447136164,0.030465831980109215,0.021796315908432007,-0.09545736759901047,-0.005534250754863024,0.03942125663161278,-0.03410002961754799,-0.04625113680958748,-0.0617600716650486,-0.07607757300138474,0.02527196705341339,0.010140610858798027,0.0477299802005291,-0.010573278181254864,0.02621624432504177,-0.030855026096105576,-0.01372030284255743,-0.04250374808907509,0.0007134507759474218,-0.1274714320898056,0.08369345217943192,0.03339465335011482,-0.04996425285935402,-0.041061244904994965,0.03123690001666546,-0.05870819836854935,-0.0013887264067307115,-0.0659327507019043,0.0017694294219836593,-0.0549003928899765,0.058452095836400986,-0.0008532844949513674,0.02976171113550663,-0.02415797859430313,-0.1292448341846466,-0.008447393774986267,0.0995228961110115,0.023247748613357544,-0.052198752760887146,-0.004427718464285135,0.011959787458181381,-0.024729115888476372,-0.022705189883708954,0.009319344535470009,-0.011518971994519234,-0.03534578159451485,-0.016232863068580627,0.044333912432193756,0.09625574201345444,0.03241569548845291,-0.012037801556289196,0.038302697241306305,-0.02591540478169918,0.0026321043260395527,-0.10743235051631927,-0.04554338753223419,-0.04168686270713806,-0.030389893800020218,-0.0020909046288579702,-0.011605476960539818,-0.017624210566282272,-0.021655024960637093,0.0006034616380929947,-0.01972595974802971,-0.04095936566591263,-0.11288359761238098,0.0026010361034423113,-0.06673040241003036,-0.05133188143372536,0.0690174251794815,0.0011675782734528184,0.020678915083408356,0.06700409203767776,0.008875678293406963,-0.00716862827539444,0.007248833309859037,-0.041589390486478806,-0.0854460597038269,0.06317634135484695,-0.09310709685087204,-0.05893180891871452,0.1010502353310585,-0.06257987767457962,0.02444678731262684,1.4388604622106632e-33,0.037856150418519974,-0.02733197622001171,-0.0735195055603981,0.05710943043231964,-0.025939686223864555,-0.05137919262051582,-0.04834230616688728,0.049019306898117065,-0.12683281302452087,-0.02358679100871086,-0.08164804428815842,0.011400877498090267,0.03905857354402542,0.04224099591374397,0.05485524237155914,-0.03136404603719711,0.03629261627793312,0.0358879528939724,-0.043863680213689804,0.06199544668197632,0.05580317601561546,0.02747539058327675,-0.013512277975678444,-0.047568418085575104,0.02747565694153309,0.029714345932006836,0.06308835744857788,0.045167867094278336,-0.030162585899233818,-0.04266301915049553,-0.07602471113204956,-0.06722307205200195,-0.0301686879247427,0.05087876692414284,-0.01705724000930786,0.045875776559114456,-0.07531465590000153,-0.11072750389575958,-0.0035320171155035496,-0.06406860053539276,0.018401214852929115,0.05999689921736717,0.05130395293235779,0.05286100506782532,0.03412878140807152,-0.046117182821035385,0.01449986919760704,0.10743210464715958,0.04654102027416229,-0.012305150739848614,-0.08413456380367279,-0.06061443313956261,-0.038053642958402634,0.006587664131075144,0.01777462288737297,0.07393298298120499,-0.05048651993274689,-0.02491893246769905,-0.007915361784398556,-0.022030863910913467,-0.04076509177684784,-0.03455450013279915,0.024551045149564743,0.03330370411276817,-0.01767249032855034,0.0314205102622509,-0.07953140884637833,0.03919658809900284,-0.058674804866313934,-0.028113070875406265,0.060283113270998,0.0438598170876503,-0.02679864689707756,-0.09637811779975891,-0.009933770634233952,0.09249650686979294,-0.03903910145163536,0.058266911655664444,0.03737126663327217,-0.09720542281866074,-0.0019905727822333574,-0.06523546576499939,0.0033064191229641438,-0.0034855869598686695,-0.07027310878038406,-0.041928406804800034,0.02143104188144207,-0.005154872313141823,0.07432392239570618,-0.02901872806251049,-0.02064243145287037,0.0573715977370739,-0.006126733962446451,0.019603101536631584,0.03095301054418087,-2.219006667303347e-8,-0.03426023945212364,0.057380251586437225,-0.05355483666062355,-0.04163196310400963,-0.010881398804485798,0.10365810245275497,0.11393694579601288,-0.024801520630717278,-0.05620002746582031,-0.05184118077158928,-0.05876488238573074,-0.004651786293834448,0.09100030362606049,-0.003928726073354483,-0.014561577700078487,0.022976845502853394,-0.029460977762937546,0.015918530523777008,-0.04769621044397354,-0.002623975742608309,-0.011865593492984772,0.05652414634823799,0.02478431724011898,0.009705780074000359,0.03765083849430084,0.02022870071232319,0.004747055005282164,0.059273555874824524,-0.04594273492693901,0.008838802576065063,0.06916450709104538,-0.002241353737190366,-0.08452581614255905,-0.03411029651761055,-0.04898088052868843,-0.010408932343125343,0.07357942312955856,0.10839947313070297,0.0048598479479551315,-0.021327368915081024,0.02064894512295723,-0.0051423064433038235,-0.010463953018188477,-0.0019347277702763677,0.019826756790280342,-0.03959139063954353,0.12128973752260208,0.03240085020661354,-0.02670147828757763,-0.004430233966559172,-0.12485044449567795,-0.008072838187217712,0.05065326392650604,0.05951109528541565,0.08220566064119339,-0.05469260364770889,-0.08558092266321182,-0.03163206949830055,-0.08031543344259262,0.007181335240602493,0.0633886530995369,-0.046875759959220886,-0.09807026386260986,0.0013092970475554466]},{"text":"Not to lie down, either, only sit down. (_He sits on the bed.","book":"Down and Out in Paris and London","chapter":22,"embedding":[0.05287283658981323,-0.028932586312294006,0.03128887340426445,-0.007083673495799303,-0.026522453874349594,0.06557689607143402,0.03806798532605171,-0.10172341763973236,-0.014500338584184647,-0.05381280556321144,-0.12992902100086212,0.041014377027750015,0.013611202128231525,0.09245328605175018,0.05929000303149223,-0.024856222793459892,-0.011081838980317116,0.06684704124927521,0.02752780169248581,0.023424269631505013,0.027842583134770393,0.02395521104335785,0.06158997118473053,-0.011733178980648518,-0.05005471035838127,-0.05254000797867775,0.0864928737282753,-0.0790780633687973,0.02385096251964569,-0.00045138830319046974,-0.025492576882243156,0.0046554505825042725,-0.06444734334945679,-0.021533921360969543,0.006468259263783693,-0.04777202010154724,0.008722886443138123,-0.07237433642148972,-0.0066849528811872005,-0.032993488013744354,0.03253484517335892,-0.0007280418067239225,-0.023117365315556526,0.03561908006668091,-0.01988908275961876,0.09117645770311356,0.023052237927913666,-0.02438066154718399,0.0036307668779045343,0.024553783237934113,-0.03730819374322891,0.08893486112356186,-0.0033448648173362017,0.03504588082432747,-0.0011073313653469086,-0.006773483939468861,-0.007539668586105108,-0.041175853461027145,0.0517975278198719,0.009937183931469917,-0.011288895271718502,0.0687985047698021,0.045536380261182785,0.09571846574544907,-0.03577837347984314,0.02865818329155445,-0.048442475497722626,-0.013930137269198895,-0.022265834733843803,0.14531515538692474,-0.06585917621850967,0.023088062182068825,-0.03869026526808739,-0.007329617161303759,-0.07435322552919388,-0.09050386399030685,0.06472396850585938,-0.055961478501558304,0.12122859060764313,0.011054055765271187,-0.03128938376903534,0.039861857891082764,-0.024148903787136078,0.07691313326358795,-0.09173154085874557,-0.03887622058391571,0.007828774861991405,-0.006725645624101162,-0.08527810871601105,-0.023114334791898727,0.0788763090968132,-0.010429016314446926,-0.03309495002031326,0.0733417347073555,-0.046774059534072876,0.06061403825879097,-0.12470586597919464,0.033128950744867325,-0.10081012547016144,-0.024249620735645294,0.03350689262151718,0.0439116545021534,0.09648008644580841,0.1163933053612709,-0.03233111649751663,-0.03003619983792305,-0.004430249333381653,-0.048252880573272705,-0.05010553076863289,-0.008691400289535522,0.00667039817199111,-0.005630139727145433,-0.06179092451930046,0.019272485747933388,-0.03056001104414463,0.008936362341046333,0.08178511261940002,0.01845194585621357,-0.07259669154882431,0.07613907754421234,-0.0004508346610236913,0.030653830617666245,0.023549087345600128,0.041077591478824615,-0.04115202650427818,-0.13316182792186737,0.019854914397001266,-2.898601010169792e-33,0.08575806766748428,0.005300142336636782,-0.02379504218697548,-0.04214561730623245,0.01306389644742012,0.03276427835226059,-0.006876700557768345,0.0336577445268631,-0.06277557462453842,0.10420942306518555,-0.06697630882263184,-0.026681147515773773,0.024433579295873642,-0.03054801933467388,-0.0585072860121727,0.008988250978291035,0.028705211356282234,-0.02977776527404785,0.012408985756337643,-0.015382255427539349,0.05652744695544243,-0.02420750819146633,0.023838462308049202,0.024121247231960297,-0.011460987851023674,-0.05497787147760391,0.0014251959510147572,-0.09051913768053055,-0.047699492424726486,0.009821952320635319,-0.09284690022468567,-0.003765853587538004,-0.02204950898885727,0.015391949564218521,0.0028341133147478104,0.005515803582966328,0.008591504767537117,0.09867662191390991,-0.0642443299293518,0.031738366931676865,-0.06183023005723953,0.03867520019412041,-0.021681608632206917,0.07140438258647919,-0.0007508444250561297,-0.013836396858096123,0.028025254607200623,0.08570344746112823,0.015832148492336273,-0.013314306735992432,-0.02629924938082695,-0.007515503093600273,-0.07245460897684097,-0.09011255949735641,-0.023649873211979866,-0.03851161152124405,-0.03598833456635475,0.01841043494641781,0.09870246797800064,0.06514155864715576,0.0487324595451355,-0.09666544198989868,0.0037780816201120615,-0.11847236007452011,-0.08887363225221634,-0.08244778215885162,-0.016906455159187317,-0.04027190059423447,-0.001618914189748466,-0.0623822845518589,-0.002507332246750593,0.02058347314596176,-0.05078769475221634,-0.026794930920004845,0.00878001470118761,-0.029582619667053223,-0.012739683501422405,-0.04975451901555061,-0.007061866112053394,-0.12303853780031204,0.04183187708258629,-0.05628793314099312,-0.049629125744104385,0.03177390247583389,-0.0043000103905797005,-0.041125573217868805,-0.07337699830532074,0.0575091689825058,-0.07668308168649673,0.026850638911128044,-0.03628205135464668,-0.016782516613602638,0.07326937466859818,-0.06270983070135117,-0.017575860023498535,-1.1437155957317762e-33,0.009052921086549759,0.04429447650909424,-0.037099044770002365,0.043939173221588135,-0.09107843786478043,-0.11277768760919571,-0.03379029408097267,-0.08330567181110382,-0.04427047073841095,0.0055496953427791595,0.010597147978842258,-0.02562466822564602,0.04840227961540222,-0.020568639039993286,0.07800654321908951,0.04473601281642914,0.042009711265563965,0.002481861039996147,0.027579819783568382,0.07948808372020721,0.014071439392864704,0.03650057315826416,-0.03350496292114258,-0.017939811572432518,-0.03198713809251785,-0.024101821705698967,0.08329220861196518,0.06288272887468338,0.039328426122665405,0.04886746406555176,-0.026632949709892273,-0.021972788497805595,-0.03438287228345871,-0.044859014451503754,-0.047479256987571716,0.03989582881331444,-0.07835708558559418,-0.02405398152768612,-0.06629203259944916,0.07974185049533844,0.06837894022464752,-0.07065577805042267,-0.01754581741988659,-0.013650120235979557,0.017542868852615356,-0.028414446860551834,-0.02221130020916462,0.04021006077528,0.07414354383945465,0.0309537835419178,0.02110849693417549,-0.04088578000664711,0.008000620640814304,0.035684984177351,-0.008712628856301308,0.13877169787883759,-0.05524886026978493,0.08177745342254639,-0.05170557275414467,0.07715781033039093,0.037152521312236786,-0.014489294029772282,0.05394558981060982,0.0007275528041645885,-0.03929566219449043,0.02453313209116459,-0.03327931463718414,0.06352321803569794,0.03333083540201187,-0.011589684523642063,-0.03667570650577545,-0.04311190918087959,0.021150898188352585,-0.03239738941192627,-0.016612831503152847,0.0059460485354065895,0.026576681062579155,-0.03984108567237854,0.06216048449277878,-0.0871414840221405,-0.021807897835969925,-0.05471117049455643,0.07525735348463058,-0.05027763172984123,-0.0014817729825153947,-0.023571478202939034,-0.026125188916921616,-0.017707329243421555,-0.022806966677308083,0.01745615527033806,-0.04062557592988014,0.05479106679558754,0.08669204264879227,0.0038167983293533325,0.04756392911076546,-2.7678382252815936e-8,-0.06992968916893005,-0.0804913192987442,-0.01680203154683113,-0.050824765115976334,-0.07491280883550644,0.03270689770579338,0.013166048564016819,-0.054328691214323044,-0.051429327577352524,0.0011604722822085023,0.0160092543810606,-0.0370279960334301,0.05715332552790642,-0.0446893572807312,0.09141255915164948,0.04180402308702469,-0.05721201002597809,0.03228261321783066,0.005183392204344273,0.04206138104200363,0.04370003193616867,-0.01617574132978916,-0.09255246073007584,0.031869348138570786,0.09103674441576004,0.03298833593726158,0.06424339860677719,0.046674132347106934,0.040678225457668304,0.012530416250228882,0.19265195727348328,0.03412614017724991,-0.030900584533810616,-0.009197774343192577,-0.026976872235536575,-0.08449540287256241,0.09020757675170898,0.0073403045535087585,0.020276769995689392,-0.02649305760860443,-0.09668929874897003,0.003839230164885521,0.03129054978489876,-0.0037736461963504553,-0.02196502685546875,0.011861972510814667,0.0950407162308693,-0.015582206659018993,-0.012422187253832817,0.010206161998212337,0.044517990201711655,-0.0498504601418972,0.04204673320055008,0.015092989429831505,0.049165278673172,-0.033096082508563995,-0.0094490647315979,-0.018141785636544228,0.03781414031982422,0.03804010525345802,0.01081458292901516,0.03365510329604149,0.006314640864729881,-0.031921230256557465]},{"text":"Don’t, mamma: the poor dear is worn out.","book":"Down and Out in Paris and London","chapter":22,"embedding":[0.05105171352624893,0.05765971541404724,0.08800370246171951,0.05802594870328903,-0.031647536903619766,-0.012336494401097298,-0.01711876690387726,-0.052868690341711044,0.01848827674984932,0.003508218564093113,-0.07330141961574554,-0.016233423724770546,-0.02685270458459854,-0.03169639781117439,-0.006629446521401405,0.0732017382979393,0.008245741948485374,0.019317245110869408,0.034023579210042953,0.04255523905158043,-0.009929961524903774,0.031691573560237885,-0.0068998490460217,0.03775816783308983,-0.021064860746264458,-0.05465545877814293,-0.023711027577519417,0.02554253302514553,-0.09250088036060333,0.02034912072122097,-0.040003061294555664,-0.008944685570895672,0.031116198748350143,0.050986070185899734,-0.003051993204280734,-0.008592775091528893,0.05062432587146759,0.05213342607021332,-0.03885270655155182,-0.021354608237743378,0.06260782480239868,-0.023471053689718246,0.0037324554286897182,0.03465431556105614,-0.005952940322458744,0.03515055775642395,-0.019177386537194252,0.017159907147288322,0.03151018172502518,0.010560397990047932,-0.11272146552801132,-0.0769592672586441,-0.024700192734599113,0.011768374592065811,0.04786190763115883,0.04933999478816986,0.06993172317743301,-0.05153641104698181,0.023592110723257065,-0.02432413212954998,-0.02458791807293892,0.05459728091955185,0.01829781010746956,0.04383592680096626,0.002993648871779442,-0.09107829630374908,0.014515811577439308,0.060649726539850235,-0.020167266950011253,0.12991788983345032,0.017726778984069824,0.019674958661198616,-0.03839291259646416,0.034036342054605484,-0.0879283919930458,0.038874752819538116,0.03177330642938614,-0.06419485807418823,0.07314999401569366,0.07984873652458191,-0.1162555068731308,-0.013226822018623352,-0.06961135566234589,0.002753528067842126,-0.006411566864699125,-0.0704883337020874,0.004857698455452919,-0.16071254014968872,-0.028407247737050056,-0.09733586013317108,-0.06241754814982414,-0.027048809453845024,-0.027677401900291443,0.05082892253994942,0.013486823998391628,0.006814173888415098,-0.013864793814718723,0.020122339949011803,-0.194516122341156,0.08764093369245529,0.005665617994964123,0.0726940855383873,-0.016485823318362236,-0.015571323223412037,0.014967232011258602,0.02799445576965809,-0.004768197890371084,0.021849144250154495,-0.04209013655781746,0.00032760511385276914,-0.015892749652266502,0.0331655815243721,0.003088420256972313,-0.030405402183532715,0.012123986147344112,-0.033683426678180695,-0.009762409143149853,-0.08132976293563843,-0.025554532185196877,0.03549540787935257,-0.0696171373128891,-0.017610695213079453,-0.06377626955509186,0.009265215136110783,-0.004896571859717369,-0.13110029697418213,0.02288568951189518,-3.7675982496556223e-33,0.05120823159813881,0.043119434267282486,0.068888358771801,0.019168797880411148,0.03696246072649956,0.02303813211619854,-0.011406435631215572,-0.07458119094371796,0.018975770100951195,-0.031006451696157455,0.030330415815114975,-0.048734601587057114,-0.009459337219595909,-0.09411326050758362,-0.021335553377866745,-0.0015344518469646573,0.04301463067531586,-0.03959115222096443,0.05124024674296379,0.06158722937107086,-0.044140081852674484,0.023259969428181648,-0.002750518498942256,-0.03368441015481949,-0.04381300508975983,0.020490655675530434,0.1006375104188919,-0.010893977247178555,-0.021926889196038246,0.06961006671190262,0.021041402593255043,0.017269747331738472,0.006678784731775522,-0.02764924243092537,-0.06919480860233307,-0.07521999627351761,0.0029057154897600412,0.009049966931343079,-0.0936305820941925,-0.021234428510069847,-0.047587595880031586,0.02814584970474243,0.07526543736457825,0.06663890182971954,-0.049053460359573364,0.031831517815589905,0.09910093992948532,-0.016997354105114937,0.007018014322966337,-0.00821350421756506,0.029891377314925194,-0.05730646476149559,-0.054033808410167694,0.006792974192649126,-0.11358138173818588,-0.04084192216396332,0.030975745990872383,-0.036619897931814194,0.05568845942616463,-0.010641776956617832,0.003649747231975198,-0.10146547853946686,0.013444648124277592,0.034807659685611725,0.013088518753647804,-0.08430112898349762,0.015417082235217094,-0.024218175560235977,-0.03228376805782318,0.014439482241868973,0.028020218014717102,0.010680458508431911,-0.07951191067695618,0.022774290293455124,-0.11385300755500793,0.012519434094429016,0.026746980845928192,-0.01842511259019375,0.12879686057567596,-0.09081325680017471,0.06751688569784164,0.047789160162210464,-0.04752788692712784,0.08843129128217697,0.04517041891813278,-0.07878957688808441,-0.00728994607925415,0.015081433579325676,0.08117961883544922,0.08923393487930298,-0.039592716842889786,0.08161406964063644,0.04909545183181763,-0.05200707167387009,-0.029167862609028816,2.2873726004170037e-33,0.04619218781590462,0.04651453718543053,0.012019531801342964,0.00021195317094679922,0.012341637164354324,-0.09420906752347946,-0.050327107310295105,0.11015880107879639,0.051047444343566895,0.047604434192180634,-0.01639850065112114,-0.12421706318855286,-0.036645784974098206,-0.030207861214876175,0.0601888969540596,-0.01066840160638094,0.11130644381046295,0.023737812414765358,-0.02317172661423683,-0.03658091649413109,-0.004316895734518766,-0.0065638055093586445,-0.0019350646762177348,0.024838605895638466,-0.019549820572137833,0.026280945166945457,-0.041873749345541,0.009419710375368595,-0.1140328124165535,-0.030091598629951477,-0.05257438123226166,-0.06943951547145844,-0.13775914907455444,0.00704255560413003,-0.023534074425697327,0.03122982382774353,-0.02281162329018116,0.016492003574967384,0.033741872757673264,0.024582283571362495,0.03953276947140694,0.019880063831806183,-0.024839628487825394,0.07238076627254486,0.04406600072979927,-0.006170504726469517,0.011614820919930935,-0.01659570261836052,0.13238048553466797,0.007398757617920637,-0.00572382565587759,-0.076563261449337,0.03405796363949776,-0.01154677290469408,0.00216465350240469,-0.022358356043696404,0.061727531254291534,0.0674174353480339,0.007872119545936584,0.04098355025053024,0.00702013960108161,0.013016755692660809,-0.07239259034395218,-0.04140419885516167,-0.007031113840639591,0.0017549940384924412,-0.004680601879954338,-0.015301337465643883,-0.002360273851081729,0.0040658339858055115,-0.0019422019831836224,-0.048638418316841125,-0.07903014868497849,-0.044142838567495346,0.03656497597694397,0.0286825280636549,-0.04960745945572853,0.004697788506746292,0.01111789420247078,0.02201242186129093,0.05650743469595909,-0.05966653302311897,0.03809743374586105,-0.03875536471605301,0.011748448014259338,-0.05788500979542732,0.048075124621391296,-0.004986007232218981,-0.04020683839917183,0.04133761301636696,-0.094014473259449,0.029422743245959282,0.11005721986293793,0.00027380060055293143,-0.022999418899416924,-2.273794486029601e-8,0.01266663521528244,-0.07559952884912491,0.08907102793455124,-0.07990233600139618,-0.043118394911289215,-0.04486631229519844,-0.06528571993112564,0.013755235821008682,0.07685226947069168,0.08439216017723083,-0.06608781218528748,0.05234725400805473,0.05187316611409187,0.024661269038915634,0.04922035336494446,-0.005474763456732035,0.12013441324234009,-0.013367916457355022,-0.08648447692394257,-0.03970710560679436,-0.024215510115027428,0.03498152270913124,-0.005907097831368446,0.08446996659040451,-0.003259028308093548,0.012897745706140995,0.03321440890431404,0.017949707806110382,-0.014870705083012581,0.12186339497566223,0.0428803525865078,0.044908829033374786,-0.042856842279434204,0.010026429779827595,-0.028621351346373558,0.024096474051475525,0.04693388566374779,-0.04603832587599754,0.010063945315778255,0.025572218000888824,-0.10071232169866562,0.0010867802193388343,0.041051335632801056,0.0043938918970525265,0.06099807098507881,-0.020711885765194893,0.02327343076467514,0.03300594538450241,-0.0738576129078865,0.016224022954702377,-0.0005755999009124935,-0.051904112100601196,0.020397521555423737,0.005270551424473524,-0.03285232558846474,-0.11045625805854797,0.08325795084238052,-0.012881678529083729,0.06626147776842117,0.005746854469180107,0.05950905382633209,-0.0043405951000750065,0.07703165709972382,0.01672046259045601]},{"text":"Beyond the paling the tops of a couple of minarets can be seen, shewing that there is a valley there, with the little town in it.","book":"Down and Out in Paris and London","chapter":23,"embedding":[0.05805576965212822,0.03164804354310036,-0.030674882233142853,0.0769735798239708,-0.02594534307718277,-0.0008660434978082776,-0.019158504903316498,-0.0006576539017260075,-0.07223335653543472,-0.029531635344028473,0.020039107650518417,-0.09369821101427078,0.02804708480834961,-0.07752816379070282,-0.007893865928053856,0.03798661008477211,-0.015567686408758163,0.03400968015193939,0.04294668138027191,-0.05809103697538376,-0.04202418401837349,-0.010199415497481823,0.019312169402837753,0.09834449738264084,0.03856445476412773,0.0347638837993145,-0.06635838001966476,0.08631303161382675,0.08093493431806564,-0.008772925473749638,0.004918286111205816,0.10922910273075104,0.02966819517314434,-0.022567996755242348,0.022661462426185608,0.14416436851024628,0.058454401791095734,0.021192852407693863,-0.03615821897983551,-0.05842722952365875,0.007232803385704756,0.03192640095949173,0.05042124539613724,-0.03068680502474308,-0.06605927646160126,-0.028019418939948082,0.04870091378688812,-0.05556710436940193,0.014859518967568874,-0.1066623330116272,-0.005788570735603571,-0.0472431555390358,-0.035448577255010605,-0.0009098740410991013,-0.04026038944721222,0.023291178047657013,0.0750802755355835,-0.07606267184019089,-0.03470892831683159,0.014091642573475838,0.011602625250816345,0.010924183763563633,-0.07542451471090317,0.017553891986608505,0.010547453537583351,-0.03824670985341072,-0.01772843301296234,-0.035453930497169495,0.0027975745033472776,-0.08531815558671951,0.085331492125988,0.000036303925298852846,-0.05700722336769104,-0.025583000853657722,-0.028933588415384293,-0.05959048494696617,0.0315275713801384,-0.0005203172913752496,-0.02652459219098091,0.014850492589175701,-0.003881785785779357,0.05870037525892258,0.06981190294027328,-0.028042150661349297,-0.043020159006118774,0.05119623616337776,-0.03158533573150635,-0.06923307478427887,0.06551232188940048,-0.03814804553985596,0.004840455017983913,0.009978602640330791,-0.1928735077381134,-0.00254567782394588,0.025397390127182007,-0.05872268229722977,0.04734877124428749,0.0257169958204031,0.039092056453228,-0.009653120301663876,0.049977146089076996,-0.035627007484436035,0.0006210451247170568,-0.016352228820323944,0.03498956561088562,0.03952765837311745,0.045695461332798004,0.03207864984869957,0.008450250141322613,0.003454712452366948,0.013023285195231438,-0.07021257281303406,0.015306495130062103,-0.0410364605486393,-0.06363856047391891,0.026388416066765785,0.04854562506079674,-0.058668553829193115,-0.1434272676706314,0.052539173513650894,-0.027721857652068138,0.027886761352419853,0.04678143560886383,0.04028233513236046,0.07759023457765579,-0.0014356325846165419,-0.028289074078202248,-6.364928690246301e-33,0.04617929458618164,-0.010198717936873436,0.05148647353053093,-0.05855565145611763,0.10389741510152817,0.04297366365790367,0.02857789397239685,-0.0836356058716774,-0.023475926369428635,-0.026854166761040688,0.0065114363096654415,-0.06655631214380264,-0.035718660801649094,-0.006727987434715033,0.10345888137817383,-0.11082609742879868,0.024292461574077606,-0.11415845155715942,-0.03979770094156265,-0.04771813005208969,-0.01110935490578413,-0.008937501348555088,-0.06530731916427612,-0.05820469930768013,-0.04991735890507698,0.04403933882713318,0.1336444467306137,-0.027210205793380737,-0.034893132746219635,0.06281272321939468,-0.0046963999047875404,0.02720007300376892,-0.01923346519470215,-0.01976761221885681,-0.03391345217823982,0.05122292414307594,-0.0033232588320970535,0.014309875667095184,-0.022245310246944427,0.057596735656261444,0.007400115020573139,-0.013303090818226337,-0.01618020050227642,0.0074140275828540325,-0.01304281409829855,-0.02882860042154789,0.09262644499540329,0.014875782653689384,-0.07068347185850143,0.021942902356386185,-0.034436143934726715,0.026508314535021782,-0.04299904778599739,-0.000649630615953356,0.00398793863132596,0.0473819263279438,0.0059942277148365974,-0.0710674449801445,-0.014179863967001438,0.06426070630550385,0.03229600191116333,-0.057166751474142075,0.03072109818458557,0.041336048394441605,0.06897395104169846,-0.03329717740416527,0.018879178911447525,0.013261288404464722,0.061498694121837616,0.07207292318344116,-0.07280641794204712,0.013537057675421238,0.06352415680885315,0.04782136529684067,-0.020155703648924828,0.047727227210998535,-0.0468093641102314,-0.008552913554012775,0.031119240447878838,0.013368158601224422,0.004860664252191782,-0.03003571182489395,-0.070794478058815,0.08202992379665375,0.050947532057762146,-0.05252116546034813,0.04829131066799164,-0.08341294527053833,-0.10440848767757416,-0.062343496829271317,-0.06872431188821793,0.05296238884329796,0.0431351363658905,-0.058275479823350906,-0.013340495526790619,1.558735631233093e-33,0.006550315767526627,0.03741590306162834,0.003986216150224209,-0.028070077300071716,-0.08842867612838745,-0.02506297267973423,0.06305129081010818,0.06181943416595459,-0.07640071958303452,0.04689735546708107,-0.12247412651777267,0.03187054768204689,0.06235376000404358,-0.030595341697335243,-0.02837107516825199,0.014061628840863705,0.09570837765932083,0.0418369323015213,0.05629764497280121,0.06285052001476288,0.03619261831045151,-0.06210516020655632,-0.044353973120450974,-0.05620301142334938,0.07211323827505112,0.02630305476486683,-0.04678812623023987,-0.13443590700626373,-0.03514612093567848,0.0010825245408341289,-0.013160874135792255,-0.08704312890768051,0.04079890623688698,-0.052443355321884155,-0.024595072492957115,0.010685928165912628,0.06036728248000145,-0.1460934430360794,0.001718682935461402,-0.022587954998016357,0.03315940499305725,-0.005236860364675522,0.05201190710067749,0.010217702947556973,-0.05536194518208504,-0.012278207577764988,-0.05396103113889694,0.11024365574121475,-0.06667998433113098,-0.035416990518569946,-0.00855532567948103,-0.006751903798431158,-0.009660576470196247,0.12099938094615936,0.002940662670880556,-0.08625070750713348,-0.013630973175168037,0.06216978281736374,0.030032720416784286,-0.01849994622170925,0.011743157170712948,-0.02593965269625187,-0.0539352111518383,-0.016374045982956886,0.04599369317293167,-0.010054134763777256,-0.00982607714831829,-0.0013619206147268414,-0.02630557306110859,-0.018100501969456673,-0.027151405811309814,-0.0536126084625721,0.01836378499865532,-0.052663370966911316,0.0008480291580781341,0.04873678460717201,0.037705160677433014,-0.009884538128972054,0.039934784173965454,-0.06407904624938965,0.07969369739294052,-0.07031483203172684,0.01168072409927845,-0.052809759974479675,0.06676680594682693,-0.02753330208361149,-0.0007189188036136329,0.06692666560411453,0.025597522035241127,0.000199932575924322,-0.044822752475738525,0.04652673006057739,-0.048516660928726196,-0.018422063440084457,0.03420652449131012,-3.035204088064347e-8,0.010790896601974964,-0.06890721619129181,-0.03321516513824463,-0.021200770512223244,0.03554585576057434,-0.007314711343497038,0.04642776772379875,0.0498429499566555,-0.049360956996679306,0.029380720108747482,0.0313987210392952,-0.009324396960437298,0.02137169800698757,-0.0011238341685384512,0.04408236965537071,-0.014320099726319313,-0.007573976647108793,-0.09034992009401321,-0.047622788697481155,-0.000683262012898922,-0.09214475005865097,-0.013635441660881042,-0.006340663880109787,-0.021797558292746544,-0.10163253545761108,0.01057642325758934,-0.11219560354948044,0.009195012971758842,0.043721139430999756,-0.028935663402080536,0.10215023159980774,0.02303897961974144,0.001911944360472262,0.004527710378170013,-0.019078707322478294,0.07427242398262024,-0.07667212188243866,0.0560370534658432,0.008043725043535233,-0.062401507049798965,-0.019493499770760536,-0.10121507942676544,0.12753808498382568,0.07144461572170258,0.014001200906932354,0.0520951934158802,0.09570235759019852,-0.038292448967695236,0.0025548026897013187,-0.018404437229037285,-0.010343269445002079,-0.0076619284227490425,0.11724541336297989,0.030153440311551094,0.007774227764457464,0.04898599162697792,0.028420479968190193,-0.037247925996780396,-0.0398288257420063,0.026086363941431046,0.010769999586045742,-0.019389193505048752,-0.034597642719745636,0.03281453624367714]},{"text":"In the middle a small table, with two bent wood chairs at it, is laid for breakfast with Turkish coffee pot, cups, rolls, etc.; but the cups have been used and the bread broken.","book":"Down and Out in Paris and London","chapter":23,"embedding":[0.008136442862451077,0.08531615883111954,0.016382059082388878,0.04217945784330368,-0.06442136317491531,0.00022469273244496435,-0.04500820115208626,-0.025809867307543755,0.04500104859471321,0.029892029240727425,-0.04174552112817764,-0.02000812627375126,-0.05557449162006378,-0.006058412604033947,-0.02118154615163803,-0.08619706332683563,0.005439776461571455,-0.0076860603876411915,0.03002130426466465,-0.010481189005076885,-0.06333627551794052,-0.03647516295313835,0.05231252312660217,0.06081385910511017,0.03564590960741043,0.05689745768904686,0.035426065325737,-0.03943304345011711,-0.06941793859004974,-0.017742693424224854,-0.028174100443720818,0.02707134187221527,-0.04064181074500084,0.06216464564204216,-0.04624029994010925,-0.019545160233974457,0.11870366334915161,-0.003506224835291505,0.0761866346001625,-0.02400515228509903,0.02405562810599804,-0.08146637678146362,0.0688849538564682,-0.00473229493945837,0.009640274569392204,0.053553786128759384,-0.05057626590132713,-0.047602295875549316,-0.032872896641492844,0.00015265854017343372,-0.03867978975176811,0.018168233335018158,0.03328382223844528,0.01036088913679123,0.08438136428594589,-0.006522399839013815,-0.010436000302433968,-0.009999063797295094,0.018650604411959648,0.09184130281209946,-0.014494705945253372,0.042971134185791016,0.0029142156708985567,0.04123435914516449,-0.061975330114364624,-0.05321737378835678,-0.05093967542052269,0.013824740424752235,-0.11272285878658295,0.067061647772789,-0.045679520815610886,0.006559737026691437,-0.021413179114460945,-0.08250835537910461,-0.006043755915015936,-0.08711206167936325,0.021085072308778763,-0.09980782121419907,0.029192661866545677,0.00464343186467886,-0.08770444989204407,0.057506952434778214,0.04004979506134987,0.036294106394052505,-0.05503368005156517,-0.0347440168261528,0.040758486837148666,0.014496412128210068,0.00020910966850351542,-0.10203580558300018,0.05139433965086937,0.041065819561481476,0.008209537714719772,0.04641013219952583,0.04419391602277756,0.03344041854143143,0.01710190437734127,-0.05114485323429108,-0.018188752233982086,0.06977610290050507,0.0016588562866672873,0.09834068268537521,0.09325560182332993,-0.013522247783839703,-0.018131937831640244,-0.0228484645485878,-0.0444110706448555,-0.05838034301996231,0.04443588852882385,-0.04649960249662399,-0.0057947770692408085,-0.018082663416862488,-0.021454406902194023,-0.02559518627822399,-0.06262681633234024,0.011946050450205803,0.02704368717968464,-0.10211209952831268,-0.010676189325749874,-0.013517225161194801,-0.06104489043354988,0.0026366428937762976,-0.025133725255727768,0.07975299656391144,-0.03478182107210159,0.022328805178403854,0.06716769188642502,-2.803891246653048e-33,-0.0584075041115284,-0.05633895844221115,0.08355119079351425,0.04610021784901619,0.07665860652923584,-0.06261469423770905,0.022710071876645088,0.01133617851883173,0.023093318566679955,-0.013846427202224731,-0.0019021342741325498,0.009050623513758183,-0.025506241247057915,0.027057964354753494,0.0399479903280735,0.011771433986723423,0.016688857227563858,0.007793488446623087,-0.051069147884845734,0.011679364368319511,-0.08486263453960419,0.04124080017209053,0.09366250038146973,0.004374612122774124,0.00543538574129343,0.06699254363775253,0.0025170904118567705,-0.02884572371840477,-0.020753121003508568,0.017771322280168533,0.08211332559585571,0.04707939922809601,-0.07775238901376724,-0.009723394177854061,-0.12442648410797119,0.005618423223495483,-0.007252335082739592,0.054596543312072754,-0.0261270459741354,0.0404234379529953,-0.049374260008335114,0.02992270141839981,0.06592865288257599,-0.00891166739165783,-0.031124629080295563,0.004668035544455051,0.05538123473525047,0.06762837618589401,-0.022093122825026512,-0.013611079193651676,-0.009358460083603859,0.026701321825385094,-0.01595369726419449,0.049518879503011703,-0.017297478392720222,-0.009538913145661354,0.05624611675739288,0.019062640145421028,0.05154911056160927,-0.03524627536535263,0.04324815422296524,-0.019916895776987076,-0.035001300275325775,-0.018351344391703606,0.025432631373405457,0.012770220637321472,-0.015737658366560936,-0.03463120013475418,0.07703503966331482,0.027148930355906487,0.03331848606467247,-0.006684757769107819,-0.008396722376346588,0.028061816468834877,-0.009891762398183346,0.0011893768096342683,0.023431438952684402,-0.02724859118461609,-0.040029190480709076,0.0040947264060378075,0.15255926549434662,-0.06357849389314651,0.01619146205484867,-0.04883503541350365,-0.10466824471950531,0.03114481084048748,-0.014638369902968407,0.009108667261898518,0.002454478293657303,0.09463322162628174,-0.12882325053215027,0.014395988546311855,0.05290950462222099,0.009551509283483028,-0.04056190699338913,-3.844777994488248e-35,0.030105166137218475,-0.05532991886138916,-0.13951922953128815,0.0619901679456234,0.013793481513857841,-0.04121213033795357,-0.00019200265523977578,-0.02019526995718479,-0.02813059836626053,-0.004475927911698818,-0.03561585396528244,-0.006521792616695166,0.030829882249236107,0.039273202419281006,0.03131825104355812,-0.01508737076073885,0.0474240705370903,0.09499882161617279,0.025349395349621773,-0.010722395032644272,0.027767110615968704,0.08069193363189697,-0.06103016436100006,0.008363391272723675,0.01741788163781166,0.022017547860741615,0.003791986033320427,-0.060220763087272644,-0.15993228554725647,-0.07264052331447601,-0.016358664259314537,-0.15993714332580566,0.004869210533797741,0.051459621638059616,0.028586160391569138,-0.027516864240169525,-0.06073926016688347,-0.02553277090191841,-0.09890667349100113,0.026397282257676125,0.013367462903261185,0.04879835993051529,0.012661309912800789,0.1205194815993309,-0.00025167292915284634,-0.06430002301931381,-0.03420310467481613,0.05891857296228409,-0.02116421051323414,-0.042662132531404495,-0.00976879894733429,-0.11145742237567902,0.0524909645318985,-0.08633482456207275,0.008638446219265461,0.08455468714237213,-0.05377090722322464,-0.03988698497414589,0.014613153412938118,0.01099827978760004,-0.11522505432367325,0.11405618488788605,0.041856732219457626,-0.037581972777843475,0.07322212308645248,0.026018846780061722,-0.08570300042629242,-0.01797839254140854,0.0438263975083828,-0.002358448226004839,0.042013395577669144,-0.018686505034565926,-0.005176178645342588,0.03785168379545212,0.022216176614165306,0.11936825513839722,0.0017598764970898628,0.0006408531335182488,0.0007237829850055277,-0.010345006361603737,-0.007745035924017429,-0.11724793910980225,0.06682384014129639,-0.07985655218362808,-0.019009437412023544,-0.044899314641952515,0.04036567360162735,-0.01560470461845398,0.004408509004861116,0.04013056680560112,-0.020229578018188477,0.012665805406868458,-0.012180055491626263,0.04978659003973007,0.02017749473452568,-3.249937208238407e-8,0.02595636621117592,-0.12311384826898575,-0.07024046778678894,0.07704336941242218,-0.04717386141419411,-0.11635751277208328,0.13843105733394623,-0.02450946345925331,-0.021016623824834824,0.004009780008345842,-0.12523864209651947,0.08228596299886703,0.006503737531602383,0.02862672694027424,-0.05583503469824791,0.038771066814661026,0.04173810034990311,0.022205932065844536,-0.06668204069137573,0.05469118058681488,0.017475297674536705,-0.0391717404127121,0.04987190663814545,-0.018703270703554153,-0.007705974392592907,0.002339399652555585,0.00868446659296751,0.054102733731269836,0.003708536271005869,0.0022036803420633078,-0.018444081768393517,0.01466123852878809,0.03905188664793968,0.0404750294983387,0.03771945461630821,-0.0039780279621481895,-0.1095457375049591,0.00530330091714859,-0.02600906416773796,-0.07077335566282272,-0.04876792058348656,-0.0925983116030693,0.0003808209439739585,-0.05095011740922928,-0.01780414767563343,0.05179312825202942,-0.055591221898794174,0.04755483195185661,-0.044440824538469315,0.009386091493070126,-0.04087444022297859,0.004887690301984549,0.09903305023908615,0.05773945525288582,-0.0657440647482872,-0.02690248005092144,0.07658860087394714,0.004601756110787392,0.0654488056898117,-0.0319758765399456,0.023201189935207367,0.06005772203207016,0.02318493090569973,0.03015117719769478]},{"text":"Be warned in time, Louka: mend your manners.","book":"Down and Out in Paris and London","chapter":23,"embedding":[-0.022835025563836098,0.099396251142025,-0.033849287778139114,-0.019330820068717003,-0.026985591277480125,0.028305016458034515,0.043989818543195724,-0.020056799054145813,-0.05234744772315025,-0.062157873064279556,0.0011795059544965625,-0.04424278438091278,-0.020722676068544388,-0.041635435074567795,-0.029071617871522903,-0.06886235624551773,0.035712067037820816,-0.020683515816926956,-0.016612691804766655,0.07371919602155685,0.022495530545711517,0.0720103532075882,0.023026499897241592,0.013897963799536228,-0.040971312671899796,-0.0297183059155941,0.07987415790557861,-0.01851668395102024,-0.043107934296131134,-0.050264857709407806,-0.021429039537906647,0.05053205043077469,-0.006438573822379112,0.030943751335144043,-0.10210826992988586,0.0661742091178894,-0.0037725206930190325,0.01019957847893238,0.04635602980852127,0.03946400433778763,-0.013972275890409946,-0.061295125633478165,-0.026493137702345848,0.01929669827222824,-0.006508585065603256,0.01346482615917921,-0.07631182670593262,-0.056371718645095825,-0.032747384160757065,-0.02317163534462452,-0.11490655690431595,-0.0037819005083292723,0.007931421510875225,0.020562229678034782,-0.0015592791605740786,0.016857141628861427,0.07431305199861526,0.01550272386521101,-0.019058404490351677,0.05251156911253929,-0.056004591286182404,-0.044780828058719635,-0.042936842888593674,0.07011304050683975,-0.04747335612773895,-0.04969348385930061,-0.06146305054426193,0.01852112077176571,-0.1454506516456604,0.11444690078496933,-0.047603778541088104,-0.012841076590120792,-0.019273119047284126,0.04659251496195793,-0.044899143278598785,-0.0664663314819336,-0.02175498753786087,-0.0818980261683464,0.05260271579027176,0.010016636922955513,-0.05957280099391937,-0.038675952702760696,0.031827252358198166,0.0670061782002449,-0.1260662078857422,-0.08226427435874939,0.05256239324808121,0.008544951677322388,0.05194986239075661,-0.010251030325889587,-0.033973608165979385,-0.01570611633360386,-0.05329658463597298,0.03508782759308815,-0.01580442115664482,0.005451824516057968,-0.06860259920358658,0.04646802693605423,-0.02015048824250698,0.10166061669588089,0.017437616363167763,0.0159087385982275,-0.023325791582465172,0.008357176557183266,-0.01057168934494257,-0.009992090053856373,-0.026932626962661743,-0.06669827550649643,0.010829406790435314,-0.0033548336941748857,-0.03128717094659805,-0.026600653305649757,-0.039998359978199005,-0.06518127024173737,0.02870900370180607,0.02208508364856243,0.02966802939772606,-0.05186447128653526,-0.01945703662931919,-0.07621146738529205,0.09406183660030365,-0.028462128713726997,0.0562097392976284,0.05227603018283844,0.05477657541632652,-0.0057556601241230965,-0.03410373628139496,-4.177150767057677e-33,0.11578662693500519,-0.018032340332865715,-0.06083444133400917,0.049175336956977844,-0.04511415958404541,0.033402394503355026,-0.09112942963838577,-0.07247000187635422,0.048433247953653336,-0.002179220551624894,0.09954024851322174,0.012842527590692043,-0.11826063692569733,-0.06662814319133759,-0.09892044961452484,0.16848957538604736,-0.015507825650274754,0.04401283711194992,-0.025996627286076546,0.006994654890149832,0.05990378558635712,-0.01688026636838913,0.0000288271221506875,-0.012723598629236221,0.017212318256497383,-0.038582801818847656,-0.011651812121272087,-0.06748156249523163,0.05903220921754837,0.01597677357494831,0.03953038156032562,0.059113748371601105,-0.014595190063118935,-0.007174026221036911,0.011953412555158138,0.020252110436558723,-0.06491774320602417,-0.006088842637836933,-0.07250353693962097,-0.02864801324903965,0.03759048134088516,-0.0272366926074028,0.015174211002886295,-0.027294300496578217,0.023616701364517212,0.0776854157447815,0.020760877057909966,0.008049940690398216,-0.032103072851896286,0.02538813091814518,-0.03961111605167389,0.014690770767629147,0.06954286992549896,0.06281886249780655,-0.012581362389028072,-0.05196262151002884,0.026802780106663704,0.050900861620903015,-0.0051352656446397305,-0.03886847570538521,0.02161158248782158,0.013026783242821693,0.025829661637544632,-0.03996749222278595,-0.020025433972477913,-0.06878038495779037,0.028747262433171272,0.10087589919567108,0.07948365062475204,-0.03493860363960266,0.014146941713988781,-0.04769228398799896,-0.11085294932126999,0.06795543432235718,-0.09143462032079697,-0.05754740908741951,0.07908516377210617,0.033976998180150986,0.10267209261655807,-0.0862094983458519,0.07680745422840118,0.029329994693398476,0.00876274798065424,-0.016224944964051247,0.036735229194164276,-0.040649283677339554,0.04380006715655327,-0.09114779531955719,-0.0756537914276123,0.09157675504684448,-0.1040382906794548,0.10107243061065674,0.15084871649742126,-0.0013787316856905818,-0.08996554464101791,-6.318384073070531e-34,0.11553827673196793,-0.005566870328038931,-0.08145920187234879,0.11291041970252991,0.01878129504621029,-0.013704498298466206,-0.038439810276031494,0.10553832352161407,0.0742143988609314,0.004105980042368174,-0.061363834887742996,-0.007919364608824253,0.1091218963265419,-0.010782304219901562,0.031639400869607925,-0.03500805422663689,0.13007929921150208,-0.014521816745400429,-0.06292345374822617,-0.03816090524196625,-0.041059356182813644,0.04639600217342377,-0.0038463901728391647,-0.011799107305705547,-0.04952471703290939,-0.030902577564120293,0.081843800842762,-0.004854721017181873,-0.1521959900856018,0.0043116407468914986,-0.048005301505327225,0.01578662171959877,-0.05438773334026337,0.03479813411831856,0.018989110365509987,0.009906464256346226,0.04137639328837395,-0.03466057404875755,-0.060977984219789505,0.047635555267333984,0.0047297305427491665,0.01550207007676363,-0.007681034039705992,0.00866299495100975,-0.015747016295790672,-0.08161357045173645,-0.023241471499204636,-0.014259299263358116,-0.042971864342689514,-0.011463044211268425,-0.0014713454293087125,-0.034631334245204926,-0.03169405832886696,-0.030453486368060112,-0.06117101013660431,0.03828682005405426,0.03151680901646614,-0.015567321330308914,0.005840545520186424,0.006217307411134243,-0.04042361304163933,-0.001056782784871757,-0.04292348027229309,-0.008442347869277,-0.00888544600456953,0.024269022047519684,-0.005875931587070227,-0.024044306948781013,0.05058770999312401,0.04490497708320618,0.08005379140377045,0.014152291230857372,-0.06223251670598984,0.08176851272583008,-0.013066166080534458,0.022695505991578102,0.023093022406101227,0.03878569230437279,0.0019028059905394912,-0.03952721506357193,0.01596101000905037,-0.0233916025608778,0.011160509660840034,-0.0015650885179638863,-0.021646197885274887,0.036413006484508514,-0.013267640955746174,-0.023037277162075043,-0.0371132530272007,0.001912954030558467,-0.02448226884007454,0.06714697182178497,0.034203849732875824,0.04317319020628929,-0.031152300536632538,-2.4121392883103e-8,0.037700872868299484,0.012875732034444809,0.014738762751221657,0.017612041905522346,0.0484786294400692,-0.06608103960752487,-0.02516217529773712,-0.025965314358472824,-0.033863961696624756,0.022809375077486038,-0.0050063724629580975,0.12024025619029999,0.0688270851969719,0.0181858129799366,0.11343438923358917,-0.028571201488375664,0.03011862188577652,0.018076330423355103,-0.1149340495467186,0.028578830882906914,0.04873534291982651,-0.0345488078892231,-0.0015701557276770473,0.0036301976069808006,-0.052231382578611374,0.015172154642641544,0.020296817645430565,-0.0025768359191715717,0.06613028794527054,0.008387573063373566,0.010518765076994896,0.11212123930454254,-0.06819301843643188,-0.0768839567899704,-0.022093119099736214,0.05791426822543144,0.026822632178664207,-0.03345160558819771,0.08375026285648346,-0.012741637416183949,-0.01680385135114193,-0.04113538935780525,0.009331634268164635,-0.0005690314574167132,0.040555376559495926,-0.05775019899010658,0.04458017274737358,-0.03221912309527397,-0.01604567840695381,-0.018343070521950722,-0.04720393940806389,0.016076140105724335,0.04849037155508995,0.08155620098114014,0.10378076881170273,0.000010768185347842518,0.022801201790571213,0.037121810019016266,-0.00851396843791008,0.004150103311985731,0.025339337065815926,0.01191494520753622,-0.03581556677818298,-0.04678192362189293]},{"text":"I shall always be dependent on the good will of the family.","book":"Down and Out in Paris and London","chapter":24,"embedding":[-0.10717136412858963,0.08160650730133057,0.0014203534228727221,-0.01916889287531376,-0.06379792094230652,0.03550468757748604,-0.012886608019471169,-0.08656089752912521,0.01491005253046751,-0.051028139889240265,0.0809471607208252,0.06802873313426971,-0.005512504372745752,0.015924863517284393,-0.026096021756529808,0.06357251852750778,0.009678767994046211,-0.009249316528439522,-0.07881668955087662,0.030321408063173294,-0.020430104807019234,0.0004197470552753657,0.04133486747741699,-0.00421245489269495,-0.07296593487262726,0.06254201382398605,0.01601703278720379,-0.05364520847797394,0.07450351119041443,-0.015833744779229164,0.01632167026400566,-0.04594564810395241,0.017647188156843185,0.02594277448952198,0.02127937600016594,0.02584911696612835,-0.01846979185938835,-0.05378231406211853,0.019813472405076027,0.007396521512418985,0.03068808652460575,0.04530400410294533,0.05330634117126465,-0.02364024892449379,-0.05156872421503067,-0.010412266477942467,-0.007918272167444229,-0.026568111032247543,0.07475566118955612,0.02714090421795845,0.009272554889321327,0.0017665097257122397,0.05219367519021034,0.032164931297302246,0.06215303763747215,0.06392364948987961,-0.009807473048567772,-0.029493853449821472,-0.02658793330192566,-0.018843013793230057,-0.030358215793967247,0.030504807829856873,-0.033369045704603195,-0.006668271962553263,-0.00405931705608964,0.005362446419894695,0.06944584846496582,0.06415235996246338,-0.08696940541267395,-0.0006958478479646146,-0.12432848662137985,0.029117252677679062,0.06227784603834152,0.01393647026270628,-0.09034636616706848,0.045097071677446365,0.08886539936065674,-0.0706612765789032,-0.00999580416828394,0.004218447487801313,-0.07359052449464798,0.01396674383431673,0.011685953475534916,-0.02054932340979576,-0.07037082314491272,-0.07104463130235672,0.07265278697013855,-0.05732894316315651,0.08283863961696625,0.04863389581441879,-0.05716539919376373,0.004976849537342787,0.06118882820010185,0.0009188378462567925,0.009146447293460369,0.048636212944984436,0.01577579975128174,-0.07150747627019882,-0.12713532149791718,0.05661996826529503,-0.022700702771544456,-0.08797915279865265,-0.01583099737763405,0.12681275606155396,0.0021991163957864046,-0.04129565507173538,-0.04311913251876831,0.02253611385822296,0.022713830694556236,0.011770262382924557,-0.014409909024834633,0.033676210790872574,0.04604002833366394,0.0475408099591732,-0.04330253228545189,0.040314774960279465,-0.013960062526166439,0.02043725736439228,-0.005540940910577774,-0.04584573581814766,0.014426931738853455,0.04666122421622276,0.02884303405880928,0.0035937039647251368,-0.03990037366747856,-0.06276549398899078,0.030671700835227966,-5.300365373969128e-33,-0.025349285453557968,-0.008844787254929543,0.017303425818681717,-0.0038694620598107576,-0.04670773446559906,0.02805507928133011,-0.017687538638710976,0.02627204731106758,-0.05986567214131355,-0.02243061549961567,-0.0029058391228318214,-0.011167384684085846,-0.05865482985973358,0.005922223441302776,-0.0548785924911499,0.022034913301467896,-0.05546652898192406,0.04994543641805649,0.06432552635669708,0.06726875901222229,0.012406188063323498,0.01671997644007206,0.024705342948436737,-0.08947311341762543,-0.03450324013829231,-0.1258012056350708,0.03414788097143173,0.011164498515427113,-0.07739356905221939,0.03432486951351166,0.011838821694254875,0.06118609383702278,0.017090458422899246,-0.05598416179418564,-0.05843431130051613,-0.015890231356024742,-0.0859343409538269,0.029895542189478874,-0.055928364396095276,-0.028323432430624962,0.023628205060958862,0.0012902773451060057,0.088801309466362,0.03025256097316742,0.034742970019578934,-0.03602581471204758,0.1000116840004921,0.030702125281095505,-0.04041247442364693,-0.009380253031849861,-0.08420135825872421,-0.052638620138168335,0.04496876150369644,-0.016928434371948242,0.0026332982815802097,-0.03717328980565071,-0.03798960521817207,0.008952071890234947,-0.015312112867832184,0.0010491631692275405,-0.03138532489538193,-0.10598773509263992,-0.0412118062376976,0.0924917533993721,-0.023829789832234383,0.01589481346309185,0.019887348636984825,-0.04451153054833412,0.018088573589920998,-0.01942950114607811,-0.02968105860054493,-0.018370218575000763,0.008316351100802422,0.02025471441447735,-0.05689310282468796,0.06233339384198189,0.014741924591362476,-0.009886294603347778,0.005974640604108572,-0.002371234819293022,0.016105858609080315,0.07497353106737137,0.0032865789253264666,-0.002920325845479965,0.1786094307899475,-0.002436899347230792,0.028800448402762413,-0.06617029011249542,-0.039929721504449844,0.07544341683387756,0.0959164947271347,0.03545369952917099,0.12032504379749298,-0.04548582434654236,-0.030229108408093452,3.260649045790233e-33,0.02469749189913273,0.012157835997641087,0.11657988280057907,0.0377032533288002,0.03060786984860897,-0.059638895094394684,-0.0625288337469101,-0.034277498722076416,0.008303971961140633,0.11916038393974304,-0.04016229137778282,0.005411515478044748,0.044867757707834244,0.02779312990605831,-0.020726192742586136,-0.04905964434146881,-0.030823109671473503,-0.04077526181936264,0.030141344293951988,-0.09422080963850021,-0.04732248932123184,0.07059352844953537,-0.08533967286348343,0.07316026091575623,0.0414390042424202,0.014778860844671726,-0.04443508759140968,0.027584105730056763,-0.11552592366933823,-0.027686219662427902,-0.04055572301149368,0.010444512590765953,-0.09636493027210236,-0.046277645975351334,0.07429598271846771,-0.04688068851828575,0.0860263854265213,-0.007472619414329529,-0.042120203375816345,0.005925046280026436,-0.026312600821256638,0.0306001678109169,-0.011205923743546009,0.02418387681245804,-0.016638219356536865,-0.02756395749747753,0.06505530327558517,0.0280267633497715,0.032424528151750565,0.015585795044898987,-0.035795167088508606,-0.041128646582365036,0.02677219919860363,0.03032105229794979,0.04122275114059448,0.004096145275980234,0.08410081267356873,-0.015555497258901596,0.07683069258928299,-0.01205757912248373,-0.06327924877405167,0.022811925038695335,-0.06103534623980522,0.10487978905439377,0.027911366894841194,-0.0031955111771821976,-0.04651566967368126,0.04196816682815552,0.059870246797800064,0.0570024773478508,-0.0105308061465621,-0.1706269085407257,-0.08267460763454437,-0.04420013353228569,-0.0014372901059687138,-0.0005878470255993307,0.053558994084596634,-0.0017218203283846378,0.0008161647710949183,0.02545924112200737,0.04327831417322159,-0.04580095782876015,0.005172051955014467,-0.03526923432946205,-0.02260933630168438,-0.06013927981257439,0.06149393692612648,-0.0019568626303225756,0.0315074697136879,0.05605793744325638,-0.05516983941197395,-0.0027358464431017637,0.006845364347100258,-0.0695524513721466,0.02450777217745781,-2.1299216612646887e-8,0.07034488767385483,-0.06328015774488449,0.03979877755045891,-0.014302173629403114,-0.011292248964309692,-0.06040140986442566,0.08386237919330597,-0.025426940992474556,-0.06828457862138748,0.060505010187625885,0.02802649885416031,0.07997029274702072,0.0903332382440567,-0.03604621812701225,0.069639652967453,-0.0031337374821305275,0.04248492419719696,-0.024336783215403557,-0.046745046973228455,0.01564372330904007,0.05153569579124451,-0.03065037541091442,0.055112119764089584,0.06837140768766403,-0.03347889333963394,-0.015277111902832985,0.03470402583479881,-0.012688235379755497,-0.04856322333216667,0.11443716287612915,0.04274304211139679,-0.032477907836437225,-0.07851164042949677,-0.02569015510380268,-0.1193629652261734,0.0013252487406134605,-0.08508501201868057,-0.021302012726664543,0.10498086363077164,0.08394719660282135,-0.006297402549535036,0.06494869291782379,-0.0071929884143173695,0.08330976963043213,-0.07144738733768463,-0.03254134580492973,0.0429154597222805,0.027485890313982964,-0.08769754320383072,-0.027474649250507355,-0.04705033078789711,0.030539119616150856,-0.006972332019358873,0.027821490541100502,0.039507266134023666,0.0146937882527709,0.014508009888231754,0.028489086776971817,-0.008951007388532162,0.007553099188953638,0.11783496290445328,0.060433417558670044,0.030317746102809906,-0.118559829890728]},{"text":"But I know some family secrets they wouldn’t care to have told, young as I am.","book":"Down and Out in Paris and London","chapter":24,"embedding":[-0.014093475416302681,0.07066844403743744,-0.006124789360910654,-0.00746502447873354,0.033384911715984344,-0.037652719765901566,0.006224603857845068,-0.02673698402941227,0.03925441578030586,0.00004437828465597704,0.05075607821345329,-0.003140003653243184,0.018281230702996254,-0.0560322143137455,0.008015149272978306,-0.01062005665153265,0.007306910585612059,-0.009352552704513073,-0.057318590581417084,-0.04345451295375824,0.009443680755794048,0.012754471972584724,0.10461831092834473,-0.017506776377558708,0.06599097698926926,0.029385246336460114,-0.026627564802765846,-0.010934029705822468,-0.0350571908056736,0.12164485454559326,0.0967225581407547,0.021781347692012787,0.06418265402317047,0.034575242549180984,-0.0342903658747673,0.009864987805485725,-0.028305038809776306,0.08700720965862274,0.04731572046875954,-0.022775864228606224,0.01529653649777174,0.05759383365511894,0.06731660664081573,-0.04312557727098465,0.024585096165537834,0.0025675997603684664,0.030931806191802025,0.010652804747223854,-0.001303221215493977,-0.006568351294845343,-0.015403631143271923,-0.04412919282913208,0.017677586525678635,-0.04941852018237114,0.009208830073475838,0.034044984728097916,-0.12731072306632996,0.0014880900271236897,-0.005018180701881647,0.09789552539587021,0.020810870453715324,-0.07097513228654861,-0.020610298961400986,-0.02105744741857052,-0.07160823047161102,0.11876645684242249,0.028996676206588745,0.03523414209485054,0.03541072458028793,-0.04567216709256172,-0.09015095233917236,0.0351891927421093,-0.012300953269004822,0.00735729793086648,-0.11088637262582779,0.03397936746478081,0.0579821951687336,-0.016757672652602196,-0.00880507007241249,-0.05134947970509529,-0.05643743649125099,-0.000410727079724893,-0.03054245188832283,0.023305747658014297,-0.04366644471883774,-0.061179861426353455,0.06641139090061188,-0.11384526640176773,-0.06488694250583649,-0.0020146637689322233,-0.07235968112945557,-0.08762361109256744,-0.013846594840288162,0.003277767915278673,0.007928628474473953,-0.005597963929176331,-0.04421333596110344,0.051839761435985565,-0.14189691841602325,0.03813128545880318,-0.0857272818684578,0.011014697141945362,0.03153076395392418,0.07160913944244385,-0.01134849339723587,0.03639507666230202,-0.009802832268178463,0.003360280767083168,0.01362750306725502,0.01497016940265894,0.026044022291898727,0.03285481780767441,0.01722748950123787,0.03074708580970764,0.04031921923160553,-0.011888358741998672,0.08102656900882721,0.04466189444065094,0.00528270099312067,0.02818816713988781,-0.002615982433781028,0.04320245236158371,0.016890667378902435,0.05911817401647568,-0.07663099467754364,-0.05648142471909523,-0.014061595313251019,-4.811833962529216e-33,0.006076133344322443,0.08066825568675995,-0.026154357939958572,0.047501664608716965,-0.02397499606013298,0.04813871532678604,0.008809491991996765,-0.018547138199210167,0.05238380655646324,0.08180531114339828,0.07327598333358765,-0.07071071863174438,-0.08796300739049911,-0.06680033355951309,-0.03022010251879692,0.18047921359539032,-0.09807345271110535,0.10305331647396088,0.03104759007692337,-0.0025887670926749706,0.053144313395023346,-0.0027951772790402174,0.003693673061206937,-0.03958677873015404,0.02999531291425228,-0.07364092767238617,0.06869693845510483,-0.010273987427353859,0.003666206495836377,0.00825925637036562,-0.0004989784210920334,0.0008726188680157065,0.09744497388601303,-0.04578985646367073,-0.02349349483847618,-0.01284132432192564,0.07771815359592438,-0.07274448126554489,0.027031050994992256,-0.02680383436381817,0.04170837625861168,-0.09533520042896271,-0.03160790354013443,0.016877518966794014,-0.05168108269572258,-0.03465878590941429,-0.030562540516257286,-0.03894902765750885,-0.05353573337197304,-0.023283883929252625,-0.05190746858716011,0.05759317800402641,-0.06094962731003761,-0.07251065969467163,0.019630076363682747,0.044613730162382126,0.06705798208713531,0.009558653458952904,0.0184674970805645,0.060873232781887054,-0.010209694504737854,0.013250792399048805,-0.03380110487341881,-0.009243084117770195,-0.03964381664991379,-0.009603885002434254,0.07417265325784683,0.03261221945285797,0.0590527318418026,-0.03327949717640877,-0.013240331783890724,0.0021381163969635963,-0.120485320687294,-0.039296939969062805,-0.038763996213674545,-0.00887224916368723,-0.02401110716164112,0.022473059594631195,0.03497890755534172,-0.08751226216554642,0.13930703699588776,0.03243425861001015,-0.00500295776873827,0.0607137531042099,-0.00019422135665081441,-0.027327261865139008,0.005224436521530151,0.04213159531354904,-0.06247520074248314,-0.011207683011889458,-0.03702458366751671,-0.013091204687952995,0.06662222743034363,-0.038503605872392654,-0.00975558441132307,2.037840680005364e-33,-0.04698994383215904,0.01187838613986969,0.03679729625582695,-0.07199011743068695,0.03347332403063774,-0.07882851362228394,-0.02418377809226513,0.017782360315322876,0.04247411713004112,0.050134144723415375,-0.03514597564935684,0.01622077263891697,0.011971794068813324,-0.06743674725294113,0.04357222840189934,0.031184494495391846,0.03935568407177925,0.03126652166247368,0.0458751879632473,-0.046999648213386536,-0.1110953539609909,0.03125383332371712,-0.14530278742313385,0.09791645407676697,0.03908044844865799,-0.05859091132879257,0.004045119974762201,-0.005886610131710768,-0.07655175030231476,0.013969045132398605,-0.031617797911167145,0.004031370859593153,0.02923591621220112,-0.005950180813670158,-0.027040613815188408,-0.07875439524650574,-0.10352583229541779,-0.020564120262861252,-0.049630142748355865,-0.0634145587682724,-0.007032250054180622,-0.03850832208991051,-0.08303814381361008,-0.041784219443798065,-0.11445344984531403,-0.041494183242321014,0.032176773995161057,0.030072331428527832,0.06294964998960495,0.10399338603019714,0.0574699230492115,-0.0412682369351387,0.053987111896276474,-0.031868577003479004,-0.06317480653524399,0.002929996233433485,0.04436824098229408,0.04151540994644165,0.008562739938497543,0.008853485807776451,-0.011762144044041634,0.0047869388945400715,-0.050947584211826324,-0.004263667855411768,-0.013093487359583378,-0.024990355595946312,-0.1317412406206131,-0.02164299786090851,-0.0024475681129842997,0.08043256402015686,0.09554602205753326,-0.1268576979637146,-0.019465042278170586,-0.02609883062541485,-0.01886528730392456,-0.03272721916437149,-0.12570856511592865,-0.012703443877398968,-0.06947987526655197,0.04043249040842056,0.05301082134246826,-0.015072534792125225,0.06652339547872543,-0.03292916715145111,0.09497077763080597,-0.05156455561518669,0.009507017210125923,-0.004771461710333824,-0.0038965758867561817,0.03090336173772812,0.0328165628015995,-0.061312079429626465,0.029019873589277267,-0.04469650238752365,-0.044498369097709656,-2.71623026293355e-8,0.07897620648145676,-0.0061634439043700695,0.01194267999380827,-0.06943171471357346,0.053024306893348694,0.045238886028528214,0.012301807291805744,0.07767341285943985,-0.032435093075037,0.0007669564220122993,0.000503656396176666,0.006314094644039869,0.03241916000843048,-0.013185386545956135,0.05960509926080704,0.005262198857963085,0.05663590878248215,-0.08301626890897751,0.03941066563129425,0.017459150403738022,0.06737402081489563,0.031155535951256752,0.0013874067226424813,0.03278709948062897,-0.02970193140208721,-0.017720704898238182,0.03025519847869873,-0.025197891518473625,-0.010869668796658516,0.14546222984790802,0.008356496691703796,-0.09314059466123581,0.04123444855213165,0.062077783048152924,-0.010865015909075737,0.03132248669862747,-0.001959671266376972,-0.0484817773103714,0.027554698288440704,0.026545995846390724,0.01842934638261795,-0.012654774822294712,-0.018814411014318466,0.06388496607542038,-0.022452760487794876,0.05313100665807724,0.0354890339076519,-0.02092810906469822,-0.11682317405939102,0.04399041086435318,-0.008539923466742039,0.04385630786418915,-0.035585884004831314,0.04122784733772278,0.10093224793672562,0.02294418215751648,-0.013670779764652252,0.05904688686132431,0.023114757612347603,-0.0188754890114069,0.027187790721654892,0.06739428639411926,-0.0026806206442415714,-0.036399129778146744]},{"text":"How long would your father be left on his little farm? (_She impatiently throws away the end of her cigaret, and stamps on it._) Child, you don’t know the power such high people have over the like of you and me when we try to rise out of our poverty against them. (_He goes close to her and lowers his voice._) Look at me, ten years in their service.","book":"Down and Out in Paris and London","chapter":24,"embedding":[-0.03682221099734306,0.12010514736175537,0.09342178702354431,-0.015933804214000702,0.05339067801833153,-0.013682838529348373,0.03923282027244568,-0.03634081408381462,-0.07938354462385178,-0.05333525687456131,0.01004247646778822,-0.02358175627887249,-0.018832314759492874,-0.05608601123094559,0.0015188353136181831,0.04774608835577965,0.017268763855099678,-0.060682252049446106,-0.05058866739273071,0.07125914096832275,0.005837282631546259,0.044256359338760376,0.041383177042007446,0.04989343509078026,0.05155617743730545,-0.013818635605275631,0.014534124173223972,0.03223789483308792,-0.06244683265686035,0.13441219925880432,-0.03903861716389656,-0.023137954995036125,0.020324060693383217,0.09415620565414429,0.042158856987953186,0.04595275595784187,0.0909254252910614,0.026246486231684685,0.035231273621320724,-0.0010475117014721036,0.056438155472278595,-0.07529685646295547,0.010552538558840752,-0.031142061576247215,-0.02793056145310402,-0.0486651174724102,0.02539820596575737,0.02751387096941471,-0.050484977662563324,-0.01877090521156788,-0.09993236511945724,-0.03861530125141144,-0.06941834092140198,-0.012049069628119469,0.003554084338247776,-0.060354918241500854,0.04434460029006004,0.013623028993606567,0.01632153056561947,0.07877393066883087,-0.0984179824590683,-0.006171852350234985,-0.07072778046131134,0.0521424263715744,-0.04034854471683502,-0.016921203583478928,0.021907668560743332,-0.01654180698096752,-0.10219600796699524,0.09956163167953491,-0.051477525383234024,0.04211485758423805,-0.06222327798604965,0.0493372343480587,-0.12862010300159454,0.04359140992164612,0.021264541894197464,-0.02863493748009205,0.0089675672352314,-0.06532485783100128,-0.02691318653523922,-0.01983192004263401,0.026189621537923813,0.07086367905139923,-0.06703156232833862,-0.01946789026260376,0.08608260005712509,0.004868246149271727,-0.005774599965661764,-0.006792835891246796,-0.0000029317457119759638,-0.014846036210656166,0.03224129229784012,-0.012988533824682236,-0.019342569634318352,0.0067559219896793365,-0.07795289903879166,-0.05016285926103592,-0.1317131519317627,-0.006554184481501579,0.042689062654972076,0.03872208297252655,0.0199432335793972,0.0015943447360768914,-0.04228561371564865,0.08398012816905975,-0.09258396178483963,0.04314474016427994,-0.06357228755950928,0.0010968365240842104,-0.0026714790146797895,-0.04475204274058342,-0.03145582228899002,-0.0009568056557327509,0.0116941649466753,-0.04778192192316055,0.06810887157917023,-0.09663510322570801,-0.0969570204615593,0.011883984319865704,0.06978528201580048,0.05519888922572136,-0.04117835313081741,0.03947390988469124,-0.043409839272499084,-0.04955744370818138,0.018268918618559837,-3.574344957999523e-34,-0.018604345619678497,0.049858685582876205,0.00554643664509058,0.13088257610797882,-0.003675666404888034,0.07357479631900787,-0.05133543536067009,0.03469268977642059,-0.02847289852797985,0.06280192732810974,-0.05005548149347305,0.0075368136167526245,0.040085356682538986,-0.006049906834959984,-0.032830610871315,0.026607699692249298,-0.00681062787771225,-0.04297742620110512,0.107620470225811,0.035217322409152985,0.034472789615392685,-0.0013480910565704107,-0.025597479194402695,0.03158438950777054,0.10387074202299118,-0.07925425469875336,-0.008261592127382755,-0.019833790138363838,0.016674762591719627,-0.009698565118014812,-0.102527916431427,0.02638719603419304,0.012405694462358952,-0.08016170561313629,0.01060959417372942,-0.028040478006005287,0.056620027869939804,0.0196978896856308,-0.03622680529952049,-0.042522985488176346,-0.09808395802974701,-0.043886300176382065,0.042393799871206284,0.06234915927052498,-0.015559076331555843,-0.0363679863512516,0.08230485767126083,0.00243978388607502,-0.005131533835083246,-0.003959702793508768,-0.039205506443977356,0.05181633308529854,-0.012038244865834713,-0.04775422066450119,0.06786800920963287,-0.06196175515651703,0.0054439399391412735,-0.005525422282516956,0.029847277328372,-0.0019582409877330065,0.04674515873193741,-0.1244015023112297,0.03208709880709648,-0.01550249569118023,0.01142589095979929,-0.01147384848445654,-0.05217583850026131,0.003799381898716092,0.022028479725122452,-0.001484244130551815,0.07191912084817886,-0.043979864567518234,-0.11100772023200989,-0.04648621007800102,-0.043682605028152466,0.0047597456723451614,0.053784362971782684,0.0024760819505900145,0.014295415952801704,-0.07626701146364212,0.06308825314044952,-0.0525238960981369,-0.026276346296072006,0.007165565155446529,-0.010241526179015636,-0.010448235087096691,-0.010217181406915188,-0.06269429624080658,-0.04583950340747833,-0.0235177930444479,-0.04614163190126419,-0.020577862858772278,-0.016967663541436195,-0.06327032297849655,0.051391374319791794,-2.2729966718484317e-33,0.056596189737319946,0.06622356176376343,0.002607871312648058,0.0627712681889534,-0.01932797022163868,-0.12638594210147858,-0.04441289231181145,0.034625571221113205,0.018813110888004303,0.0029091322794556618,-0.028166618198156357,-0.01394947525113821,0.04688255861401558,0.005416336469352245,-0.026491908356547356,-0.04019707068800926,0.05217951536178589,-0.06904096156358719,0.03083307296037674,0.009513499215245247,0.005261431913822889,0.08179798722267151,0.0030343211255967617,0.06387128680944443,-0.016466079279780388,0.020228186622262,0.0425327867269516,-0.07710923999547958,-0.010222090408205986,-0.029121119529008865,-0.021664166823029518,-0.09636759012937546,0.08140596002340317,-0.002284250920638442,-0.04467375949025154,0.013066603802144527,-0.0564257949590683,-0.07960536330938339,-0.026068566367030144,0.04056241735816002,0.04610877111554146,-0.04153898358345032,0.0441199466586113,-0.03970827907323837,0.004154470283538103,0.01247898768633604,0.0023213718086481094,0.007547073997557163,0.00846280436962843,0.05903125926852226,0.0022468778770416975,-0.035936757922172546,0.06542735546827316,0.15356788039207458,-0.040588341653347015,-0.018975352868437767,0.10963433980941772,-0.006087019573897123,0.037751875817775726,-0.07648099958896637,-0.03751872479915619,-0.01780129410326481,0.0011490525212138891,-0.033481914550065994,-0.08086966723203659,-0.05638423189520836,0.009793578647077084,0.021181784570217133,-0.0490802600979805,-0.045559111982584,0.00935096014291048,-0.06546469032764435,-0.03496979549527168,-0.004475945606827736,-0.03756914287805557,0.07394690066576004,0.006296210922300816,-0.061447855085134506,0.027892563492059708,-0.09159578382968903,0.048148639500141144,-0.06755580753087997,0.03425321355462074,-0.011975924484431744,-0.008918906562030315,-0.002124817343428731,0.04129990562796593,0.05147043243050575,0.049967482686042786,0.017373476177453995,0.05198615416884422,-0.019749755039811134,0.0660671666264534,-0.114552803337574,0.024464277550578117,-4.519402097002967e-8,0.06291291117668152,0.018196305260062218,0.0214993879199028,-0.02805461175739765,0.03898660093545914,-0.0045911637134850025,0.020673342049121857,0.02775663323700428,-0.020102063193917274,0.00802740640938282,0.0557558573782444,0.07382349669933319,-0.013450930826365948,-0.01734972931444645,0.03915954753756523,0.0344809927046299,-0.004957037977874279,-0.05564621463418007,0.0038014238234609365,-0.02540905959904194,0.021284444257616997,0.16224689781665802,0.002603165339678526,0.05818050727248192,-0.11676672101020813,0.09133913367986679,-0.022729916498064995,0.016878046095371246,-0.04583520442247391,0.1054324209690094,0.10118482261896133,-0.02932105027139187,-0.09634310007095337,-0.053089018911123276,-0.07761555910110474,0.05114033445715904,-0.053961172699928284,0.022862080484628677,0.016749383881688118,-0.011088768020272255,-0.03286992385983467,0.019791046157479286,-0.09989307820796967,0.002443765290081501,-0.016253342851996422,-0.03221730515360832,-0.05704774707555771,0.013929108157753944,-0.021276026964187622,0.06299267709255219,-0.03318524360656738,0.0063297562301158905,0.014741511084139347,-0.023360876366496086,0.05732278153300285,-0.0511079765856266,0.020678333938121796,0.036617062985897064,-0.07110961526632309,0.04761936888098717,0.1131516620516777,0.05948934704065323,-0.0657556876540184,-0.03468155115842819]},{"text":"So that’s your little secret, is it?","book":"Down and Out in Paris and London","chapter":25,"embedding":[0.008856742642819881,0.025403570383787155,0.04361041262745857,0.008920439518988132,0.010624146088957787,0.011421390809118748,0.06728421896696091,-0.044701289385557175,-0.005179461557418108,0.035806894302368164,0.019700011238455772,-0.033752959221601486,-0.007851115427911282,-0.03760053962469101,0.07941331714391708,-0.07873170077800751,0.019641032442450523,0.0026615492533892393,-0.10541122406721115,-0.052653342485427856,-0.004325236193835735,0.025906730443239212,0.0007362116011790931,-0.07364606112241745,0.012052671052515507,-0.04833186790347099,0.03933531790971756,0.06359715759754181,-0.027431311085820198,-0.05245053023099899,-0.01191042736172676,-0.02500472404062748,-0.004991692025214434,0.018103962764143944,0.03393014147877693,0.042302489280700684,-0.001230129855684936,-0.024602999910712242,0.07610422372817993,-0.011372048407793045,0.004063989035785198,-0.01779140904545784,0.05739976093173027,0.050034768879413605,-0.03944702073931694,0.03403286263346672,0.017033109441399574,-0.015506831929087639,-0.05369475111365318,-0.026051294058561325,0.010093223303556442,0.02553587034344673,0.048088934272527695,0.04467057064175606,0.056295476853847504,-0.019115246832370758,0.030183250084519386,0.021741189062595367,-0.06291878968477249,0.0984845981001854,0.0010419486789032817,-0.011050211265683174,-0.0859040841460228,0.1189369410276413,-0.003937478177249432,0.030953630805015564,0.021307654678821564,-0.05528324842453003,0.015205630101263523,-0.05706227570772171,-0.0731775090098381,-0.0047812857665121555,0.040376659482717514,-0.022272976115345955,-0.07747824490070343,0.017334984615445137,-0.011665481142699718,-0.023155493661761284,0.06792955100536346,0.04232782870531082,-0.033950235694646835,-0.03076893836259842,-0.014177249744534492,0.07601628452539444,-0.06658840924501419,-0.029316933825612068,0.10777553915977478,-0.07528689503669739,-0.08548431098461151,-0.053886640816926956,-0.018422070890665054,-0.046007487922906876,-0.071688711643219,-0.039411433041095734,-0.030185626819729805,-0.10941867530345917,-0.017254764214158058,0.015759533271193504,-0.10630161315202713,0.010159761644899845,-0.0323372483253479,0.06601995974779129,0.02697048895061016,-0.04724930599331856,0.013682110235095024,0.04042969271540642,-0.07226961106061935,0.027308713644742966,0.05039610713720322,-0.003367442637681961,0.0004688971966970712,0.04440408945083618,0.03707518056035042,-0.04680320620536804,0.09645310044288635,0.044011108577251434,0.017354274168610573,0.026316091418266296,0.04073531925678253,0.11578366905450821,-0.010523717850446701,0.091733917593956,0.03999888524413109,0.022840172052383423,-0.09491642564535141,-0.08806118369102478,-0.09544665366411209,-7.368540787723415e-33,0.048013411462306976,0.04859597980976105,0.036594536155462265,0.06917668879032135,-0.04525331035256386,0.04481164738535881,-0.07004635035991669,-0.062365684658288956,-0.020709091797471046,0.045324794948101044,-0.0141299432143569,0.013538091443479061,-0.060111239552497864,0.008619066327810287,0.009615087881684303,0.03021848201751709,-0.014522694051265717,-0.029415501281619072,0.06702607125043869,-0.027245942503213882,0.003229872789233923,-0.049290094524621964,0.03076004609465599,-0.08594297617673874,0.06806924194097519,-0.02015490084886551,0.029751630499958992,-0.07048242539167404,0.07430319488048553,0.05113953724503517,-0.03326372802257538,0.09090990573167801,0.033485472202301025,-0.0489492267370224,-0.03633149340748787,-0.03389999642968178,0.034697238355875015,-0.052117399871349335,0.03493428975343704,0.04935812950134277,0.03091617114841938,-0.05005701258778572,-0.04517621174454689,-0.01857159473001957,-0.09181191027164459,0.029310131445527077,0.06399694085121155,-0.005507270805537701,-0.03469405323266983,-0.05772443488240242,-0.05944114923477173,-0.03396044299006462,-0.013797001913189888,-0.07609575986862183,0.0009706045384518802,0.04615618288516998,0.035004012286663055,-0.05577748268842697,0.04226211830973625,-0.008892370387911797,-0.08827688544988632,0.05063950642943382,-0.03146755322813988,0.07612153887748718,-0.0345856249332428,0.05395239219069481,0.0065576075576245785,-0.008762085810303688,0.025450263172388077,-0.02060435339808464,-0.006299590691924095,-0.005388488061726093,-0.08434287458658218,-0.03753761202096939,-0.06612533330917358,0.023894596844911575,0.05006471276283264,-0.07743832468986511,0.05097656324505806,-0.06611987203359604,0.06920521706342697,0.08813183754682541,0.06124335899949074,0.04579497128725052,-0.0501355342566967,-0.08951298147439957,0.0064233471639454365,0.018528318032622337,-0.06747870147228241,0.05088797211647034,-0.04539118707180023,-0.02956784889101982,0.025606835260987282,-0.03925274312496185,-0.07952754944562912,3.4260385295570366e-33,-0.04969903081655502,-0.08706986904144287,-0.01783776842057705,-0.030395951122045517,0.05778050422668457,-0.034999556839466095,0.022975897416472435,0.02522757463157177,-0.05802808329463005,0.1536254584789276,0.05738222226500511,0.0578252412378788,0.015072484500706196,-0.0059885503724217415,0.07258131355047226,0.04009038582444191,0.06514760106801987,0.0953812450170517,0.007027642335742712,-0.08762861788272858,-0.08796503394842148,-0.023813610896468163,0.039714016020298004,0.05699601024389267,0.017233913764357567,0.029621915891766548,0.09099982678890228,0.020267881453037262,-0.007908728905022144,0.030238138511776924,-0.020922493189573288,-0.009118393063545227,-0.07931175082921982,-0.021492714062333107,0.006121950224041939,-0.024623332545161247,-0.06846693158149719,-0.029192840680480003,0.006142789032310247,-0.030728168785572052,-0.07522401958703995,0.0007939889328554273,-0.060495395213365555,0.13867445290088654,-0.06764271855354309,-0.04617355763912201,0.07525335997343063,0.0385320819914341,0.005125187337398529,0.04072653874754906,-0.03288550302386284,-0.03684654459357262,0.01744835264980793,-0.014108521863818169,0.010209032334387302,0.06119778752326965,0.05619029328227043,0.01922699250280857,0.011831706389784813,0.05359785258769989,0.057298388332128525,0.06532333791255951,-0.03401946648955345,-0.00011205631744815037,0.02834431640803814,0.0037975443992763758,-0.05508803576231003,0.021406633779406548,0.023195471614599228,0.005271442700177431,0.009384354576468468,-0.0801437571644783,-0.0019154311157763004,0.05447568744421005,-0.06315183639526367,-0.036072760820388794,-0.027054985985159874,-0.059422023594379425,-0.06412097811698914,0.07927937805652618,0.005955257918685675,-0.014561035670340061,0.020176392048597336,-0.02670946717262268,0.08408015966415405,-0.017764713615179062,-0.0035841786302626133,0.03710978105664253,-0.010812884196639061,0.018116360530257225,-0.040435079485177994,0.07440704852342606,-0.06560816615819931,-0.10313088446855545,-0.00791184976696968,-2.6131974806276048e-8,0.02730643004179001,0.01238855067640543,0.009745292365550995,-0.05519552528858185,0.005097775720059872,0.12013429403305054,0.0018637374741956592,0.009816584177315235,-0.04232020676136017,0.032068509608507156,0.10793417692184448,0.05084014683961868,0.038650814443826675,-0.030123725533485413,0.10442892462015152,-0.02735637128353119,-0.0009922762401401997,-0.07194991409778595,0.04019971936941147,-0.06579987704753876,-0.03773176670074463,0.03524890914559364,0.03756672888994217,-0.0608145110309124,-0.0027313234750181437,-0.022968167439103127,0.09677190333604813,0.09342227131128311,0.03988431766629219,0.020476577803492546,-0.005912012420594692,-0.053641390055418015,-0.06436862051486969,0.06026778742671013,-0.05549765005707741,0.04760892689228058,0.002429340500384569,0.010486561805009842,-0.015435095876455307,-0.01851547509431839,-0.0675637423992157,-0.016326870769262314,0.07837306708097458,0.12403470277786255,-0.10727275907993317,0.023315750062465668,0.06306824833154678,-0.09839119762182236,-0.026315368711948395,-0.054626867175102234,-0.042116306722164154,0.016107188537716866,0.015509391203522682,0.08998676389455795,0.04792765900492668,-0.03050847351551056,-0.06635776162147522,0.017215481027960777,-0.1123339906334877,0.03925085812807083,0.03887314349412918,0.050651125609874725,0.004579795058816671,-0.005080866627395153]},{"text":"Master! back from the war!","book":"Down and Out in Paris and London","chapter":25,"embedding":[-0.038000285625457764,0.0200714860111475,0.03333920240402222,0.005757917184382677,0.00565540324896574,0.09439042955636978,0.012639791704714298,-0.07045973837375641,-0.0616438090801239,-0.009991076774895191,0.015185249969363213,0.04573812335729599,0.11636363714933395,-0.038340013474226,-0.08457493036985397,0.019386809319257736,-0.013571251183748245,0.09471768885850906,0.06930080056190491,-0.013336158357560635,-0.04834054037928581,0.04527027904987335,0.017242057248950005,0.033286187797784805,-0.02735726721584797,0.11590017378330231,0.008739869110286236,0.046105559915304184,-0.09057118743658066,-0.07432728260755539,0.018961451947689056,0.0006191947031766176,-0.1564282923936844,0.028397614136338234,0.024167397990822792,0.031544867902994156,0.020620647817850113,-0.01185014471411705,-0.010996963828802109,-0.03195824846625328,-0.043080899864435196,0.018359648063778877,0.005978728644549847,0.011036003939807415,0.07437606900930405,0.07098699361085892,-0.061848901212215424,-0.008545997552573681,0.04769868031144142,0.10354211181402206,0.05868842825293541,-0.00988028571009636,-0.013940587639808655,0.021931106224656105,0.05322013422846794,-0.005376613233238459,0.05568606033921242,-0.11563082784414291,0.027729511260986328,0.022903593257069588,-0.10838764160871506,0.06100975722074509,-0.024244679138064384,-0.013390075415372849,0.038126278668642044,-0.061239250004291534,0.0015568170929327607,0.05435216426849365,-0.06165577471256256,0.07113490998744965,0.06514890491962433,0.07309184223413467,0.03568045422434807,-0.015255730599164963,-0.045994944870471954,-0.053789690136909485,0.03235822543501854,-0.02569253370165825,0.055864427238702774,0.07079605758190155,0.021890662610530853,-0.037982046604156494,-0.0513785295188427,0.07077488303184509,0.019261863082647324,-0.1086917370557785,-0.05135427042841911,0.010665866546332836,0.10152532160282135,0.006806438323110342,-0.07840677350759506,-0.04879811033606529,0.03521351143717766,0.10278812795877457,-0.02308710664510727,-0.00056249595945701,0.0028569302521646023,-0.0037886849604547024,-0.08271894603967667,0.09201555699110031,-0.032557111233472824,-0.0022301089484244585,-0.03634573891758919,-0.09530516713857651,-0.011672555468976498,0.03953610733151436,0.07520191371440887,0.06422792375087738,-0.014450859278440475,-0.05949367210268974,0.014137731865048409,-0.01998068578541279,-0.03129911422729492,-0.027254702523350716,0.07370289415121078,-0.02726937085390091,-0.008617508225142956,-0.0686936229467392,-0.03257560357451439,0.03883245959877968,-0.0009340066462755203,0.018152661621570587,-0.04903561994433403,0.017530761659145355,-0.0260179303586483,-0.05754538252949715,-0.004855776205658913,-4.5900934836359e-33,-0.05850731581449509,-0.032758284360170364,0.05471770837903023,0.07744903117418289,0.006992336828261614,0.06675390899181366,0.03841887414455414,-0.07555733621120453,-0.04517245665192604,0.024152206256985664,0.011355250142514706,0.003378263907507062,-0.09085770696401596,0.03516491502523422,-0.03360068053007126,0.0422808900475502,-0.043943099677562714,0.027801567688584328,0.035519637167453766,0.00047367747174575925,-0.06528051942586899,0.07712509483098984,0.02047172747552395,0.04597966745495796,0.020159440115094185,0.013028391636908054,0.005161436740309,-0.02681404910981655,0.0692916288971901,0.03591522201895714,0.0005195220001041889,0.0019387021893635392,-0.00914990995079279,-0.052419018000364304,-0.02663809061050415,0.024013875052332878,-0.036829330027103424,-0.09578229486942291,-0.07905441522598267,0.002437424845993519,0.03773913159966469,0.02045414224267006,-0.03731803968548775,0.03467850759625435,0.014910847879946232,-0.06300618499517441,0.06727734208106995,-0.06300948560237885,0.022205958142876625,-0.006388483103364706,-0.08536922186613083,0.010794879868626595,0.008108244277536869,-0.08356333523988724,-0.022736288607120514,0.0012754380004480481,0.02173887938261032,0.10969490557909012,-0.03402477875351906,-0.006257811561226845,0.015527341514825821,-0.046128254383802414,0.029200034216046333,-0.00426055071875453,0.03518141806125641,-0.024391846731305122,-0.03275224193930626,0.006942875683307648,-0.017656836658716202,0.01608377695083618,-0.0016747243935242295,-0.02288174256682396,-0.01582511141896248,-0.06111014634370804,-0.002350160386413336,0.014265215955674648,-0.04794183745980263,-0.028981206938624382,-0.05788375809788704,-0.10323519259691238,-0.06393110007047653,0.039589058607816696,-0.06703636795282364,0.02367021143436432,0.07376386225223541,-0.011235776357352734,-0.01732439547777176,-0.1203421950340271,0.056477706879377365,0.05219084769487381,-0.07718594372272491,-0.08102462440729141,0.06147557869553566,-0.004376400262117386,-0.086190365254879,2.1144127493599124e-33,-0.008479174226522446,-0.015273354016244411,0.04539318010210991,-0.04797803983092308,0.030527563765645027,-0.0341317392885685,-0.030253715813159943,0.1074059009552002,-0.08857592195272446,-0.005180201027542353,-0.03284734487533569,0.015391901135444641,0.0262767244130373,0.013195433653891087,-0.05591966211795807,0.08802138268947601,0.09676685184240341,0.021075641736388206,0.019853070378303528,0.010834623128175735,0.008984381332993507,-0.025268489494919777,0.021781068295240402,0.024009287357330322,-0.12507089972496033,0.11451347917318344,0.001990509917959571,0.017857981845736504,-0.0070646293461322784,-0.030830737203359604,0.07252506911754608,-0.009466324932873249,-0.009992693550884724,0.023706965148448944,0.046113088726997375,0.03117152489721775,-0.0004902876098640263,0.014788931235671043,-0.09557054191827774,0.08232322335243225,-0.023048900067806244,0.036180585622787476,0.04769526794552803,0.028032483533024788,-0.0494273379445076,0.02295917272567749,-0.030401892960071564,0.008948048576712608,0.01882503740489483,0.0054964409209787846,-0.08345945179462433,-0.04959235340356827,0.04130301624536514,-0.10132139176130295,-0.055016692727804184,-0.013839171268045902,0.0322139598429203,-0.017852941527962685,0.017210062593221664,0.0834629014134407,-0.03809055685997009,-0.012903362512588501,0.03839615732431412,0.029993528500199318,0.026372522115707397,-0.01000591367483139,0.0447143092751503,0.06481115520000458,-0.04846494644880295,0.07724624872207642,-0.009805661626160145,0.0939309149980545,-0.06327428668737411,0.10435250401496887,0.028386741876602173,-0.04365219920873642,-0.03391069546341896,-0.05435182526707649,-0.04852604493498802,-0.024168608710169792,-0.08238635212182999,-0.007058809511363506,-0.0158116165548563,0.008924650959670544,0.05260823667049408,0.048467379063367844,0.0718950554728508,0.0578581839799881,0.04102765768766403,-0.05698954686522484,0.02506737783551216,-0.08955640345811844,0.02383987419307232,-0.07225891947746277,-0.028540460392832756,-1.8301101079032378e-8,-0.07103048264980316,0.07377939671278,0.060120828449726105,0.058007124811410904,-0.035822413861751556,-0.028377659618854523,-0.0896422490477562,-0.07392537593841553,-0.04014233499765396,-0.010416952893137932,0.02367972768843174,-0.011836838908493519,-0.002121487632393837,0.03874313086271286,0.09087064862251282,0.024822503328323364,0.00856352411210537,-0.040883369743824005,0.006241860333830118,-0.04858291149139404,-0.035062067210674286,0.012027840130031109,0.028212441131472588,0.0295040775090456,-0.02060685120522976,0.055382221937179565,-0.0034730604384094477,0.04363201558589935,0.07728102058172226,0.12971702218055725,0.052713941782712936,0.034427110105752945,-0.10833127796649933,0.007762009743601084,-0.09228669852018356,-0.056729208678007126,0.01652505248785019,0.019600721076130867,0.010891333222389221,-0.05465316399931908,-0.07152411341667175,0.05887749418616295,0.054884035140275955,-0.021158332005143166,-0.04157101362943649,0.06581760197877884,0.0315542109310627,-0.042835451662540436,-0.00818956084549427,-0.09764993190765381,0.004894672892987728,-0.016464894637465477,0.009527336806058884,0.06312093883752823,0.04234452545642853,0.03196152299642563,0.04851636290550232,-0.04683110490441322,-0.09233592450618744,0.02031010203063488,0.07826565951108932,-0.05402127653360367,-0.037638138979673386,0.039370421320199966]},{"text":"The mistress and Miss Raina have just gone in.","book":"Down and Out in Paris and London","chapter":25,"embedding":[-0.0006509101367555559,-0.014015772379934788,-0.0024192938581109047,0.02461445890367031,-0.016496574506163597,0.044691167771816254,0.01628785952925682,-0.06846796721220016,0.037218913435935974,-0.01328726764768362,-0.019700022414326668,-0.02098093181848526,-0.028125228360295296,-0.0546686053276062,0.00733701977878809,-0.0038396248128265142,-0.0034424779005348682,-0.08584515005350113,0.003972768317908049,-0.015655167400836945,-0.10375214368104935,-0.06967400759458542,-0.012424073182046413,0.05074749141931534,-0.06635002791881561,0.0470774807035923,0.010211453773081303,0.007232897449284792,-0.061437878757715225,-0.06742836534976959,-0.06387654691934586,0.05789570137858391,-0.032246459275484085,0.017155535519123077,0.02333785407245159,0.0778922438621521,0.030426232144236565,-0.027351712808012962,0.05868901312351227,-0.06594712287187576,0.05083145201206207,-0.015045605599880219,-0.018275752663612366,0.019499607384204865,-0.018026845529675484,-0.08245723694562912,0.002447886625304818,-0.020132193341851234,0.07917191833257675,0.017205730080604553,0.06793071329593658,0.05572379752993584,-0.03816267102956772,0.07252645492553711,0.022252624854445457,0.0032593528740108013,0.054878104478120804,-0.07142077386379242,0.035870764404535294,-0.02660694718360901,-0.005630753003060818,0.058011412620544434,-0.007458044681698084,0.05992952734231949,-0.013052986934781075,-0.10997947305440903,-0.02474752999842167,0.05617527663707733,-0.029417743906378746,0.029549680650234222,-0.014951461926102638,0.022937960922718048,-0.06252087652683258,0.01940006949007511,-0.04978083819150925,-0.006038518622517586,0.011007046326994896,-0.020091088488698006,0.028772668913006783,0.004380173981189728,-0.0435410775244236,-0.045425157994031906,0.03240786865353584,0.07283276319503784,0.02702135033905506,0.022469965741038322,-0.03130967915058136,-0.13126760721206665,0.036207493394613266,-0.05946553125977516,0.0065817455761134624,-0.042955122888088226,-0.023631758987903595,0.08776790648698807,0.05125771090388298,0.030866503715515137,0.0013737664557993412,-0.0024534568656235933,0.020502209663391113,0.07225936651229858,-0.02665834315121174,0.007727200165390968,-0.04029197618365288,-0.07713538408279419,-0.018707741051912308,0.0566466823220253,0.04457232356071472,-0.0447254441678524,-0.004601285792887211,-0.07638277113437653,-0.04040057957172394,-0.022519076243042946,0.1262064129114151,0.04933755844831467,0.030572136864066124,0.036077383905649185,-0.020021000877022743,0.029841508716344833,0.030212966725230217,0.02583778277039528,-0.05048901587724686,0.007859119214117527,0.030202537775039673,-0.0013362470781430602,-0.002510113874450326,-0.056642912328243256,-0.0053597367368638515,-3.435273874392669e-33,0.02432560920715332,-0.037508003413677216,0.01964917965233326,0.04444190487265587,0.04210672527551651,0.03491507098078728,0.034586112946271896,-0.008021313697099686,-0.02032369188964367,-0.046899884939193726,-0.04397839680314064,-0.0699109211564064,-0.09582328051328659,-0.1341373175382614,-0.06314858794212341,0.05633911117911339,0.1261560469865799,0.01654052734375,-0.043142758309841156,-0.010906809009611607,0.0199336688965559,0.061301339417696,0.0030978021677583456,0.024761734530329704,-0.026689765974879265,0.11062146723270416,0.09809263050556183,0.06258545815944672,0.07750877737998962,0.01947236992418766,-0.058893874287605286,0.03129732236266136,0.07833292335271835,0.01186862587928772,0.050207123160362244,0.020888537168502808,-0.02151717059314251,-0.00837878417223692,0.007173106539994478,0.013730078935623169,-0.11265674978494644,-0.051014091819524765,-0.05698223039507866,-0.025069791823625565,-0.1423923373222351,-0.07674258202314377,0.021201636642217636,-0.003312857123091817,0.02445712685585022,0.04121953994035721,0.03517058491706848,-0.0008256580913439393,-0.05144919082522392,0.03659049794077873,-0.06475327908992767,0.07110875844955444,0.009823089465498924,-0.028549818322062492,0.09332109987735748,0.003728230483829975,0.06858964264392853,0.05686746910214424,0.025370176881551743,-0.04136865586042404,0.007631887681782246,-0.07993057370185852,-0.013399559073150158,0.005752227734774351,-0.03207206726074219,0.02434627152979374,-0.08151215314865112,-0.026787549257278442,-0.08456459641456604,0.045656729489564896,0.009837289340794086,-0.061709657311439514,0.02286587841808796,-0.04503250494599342,0.0730057880282402,0.02430061250925064,0.0014722900232300162,0.017182454466819763,0.0667392686009407,0.0030503810849040747,-0.057824358344078064,-0.061362188309431076,0.04503540322184563,-0.06191031262278557,0.007973064668476582,-0.007995063439011574,0.05033593997359276,0.06167415529489517,0.08134128153324127,-0.11020080745220184,0.045990414917469025,3.6819123338268587e-34,0.03422142565250397,-0.04296310618519783,-0.011906720697879791,-0.06372933834791183,0.07886385172605515,0.009215496480464935,0.0029626351315528154,-0.01932394690811634,0.03461875766515732,0.05613217502832413,-0.013747354038059711,0.00012572252308018506,0.0015866123139858246,0.03991769626736641,0.008752008900046349,0.08529657125473022,0.12938356399536133,-0.07282273471355438,-0.02348586544394493,-0.03976345807313919,0.009065492078661919,-0.09035184234380722,0.02656356431543827,-0.015622015111148357,-0.019361834973096848,-0.0015228440752252936,0.07749664783477783,0.061789654195308685,-0.17095881700515747,-0.03353783115744591,-0.00025689389440231025,-0.0778045579791069,-0.11462710052728653,0.0842069759964943,0.044720765203237534,-0.042663708329200745,0.006713397800922394,-0.020781386643648148,-0.04053029790520668,-0.05313882976770401,0.021869204938411713,-0.07126336544752121,0.05904628708958626,0.11091642081737518,-0.0020005207043141127,0.009834084659814835,-0.005547590088099241,0.06856965273618698,0.07490570843219757,0.0662262812256813,-0.002621945459395647,-0.0143089909106493,-0.035222940146923065,-0.00012407421309035271,0.008559424430131912,-0.09311610460281372,0.02667420357465744,-0.08562285453081131,0.07790420204401016,0.03064786270260811,-0.02868148684501648,-0.018916452303528786,0.017306635156273842,-0.009947300888597965,-0.03441715985536575,-0.031864214688539505,-0.030176294967532158,-0.02175200916826725,-0.010064633563160896,0.031017445027828217,0.04564249515533447,-0.07334030419588089,-0.10795166343450546,0.012245448306202888,0.02663661353290081,0.07799038290977478,-0.026418354362249374,-0.040358275175094604,0.029312416911125183,-0.057478420436382294,-0.018574818968772888,-0.0069841742515563965,-0.0023172684013843536,-0.013501312583684921,0.032314155250787735,-0.02709037996828556,0.08803462237119675,0.0023520132526755333,-0.018264424055814743,0.06344786286354065,-0.0006478445720858872,-0.06563681364059448,0.16161678731441498,-0.10416367650032043,-0.02748960442841053,-1.8691352465793898e-8,-0.060941461473703384,-0.014763863757252693,0.012970838695764542,-0.07451239228248596,-0.04162096604704857,-0.10117157548666,0.0765090212225914,0.05328255146741867,0.08289176225662231,0.002742617856711149,0.0243044625967741,0.018901590257883072,0.08708477020263672,0.004316508769989014,0.08935515582561493,0.08409098535776138,0.08577762544155121,-0.02073565125465393,-0.029087945818901062,-0.0071192532777786255,-0.010509398765861988,0.009831588715314865,-0.003851282875984907,-0.02074996381998062,0.04286894574761391,0.10040231794118881,-0.0659310594201088,-0.018831046298146248,0.011925917118787766,0.08598267287015915,0.04701251536607742,0.021204106509685516,-0.01528611034154892,-0.008860028348863125,-0.05825731158256531,0.06845512986183167,0.0668238028883934,0.03894807770848274,-0.07319337129592896,-0.05925484374165535,-0.03734893724322319,0.023926548659801483,-0.014431070536375046,-0.06196403503417969,-0.0046226223930716515,-0.016802150756120682,0.04326770454645157,0.054129306226968765,-0.0025297559332102537,0.00020450953161343932,-0.0021779693197458982,-0.009648454375565052,0.029727650806307793,0.01659947820007801,0.006310386583209038,-0.052419185638427734,0.0038081558886915445,-0.05429365113377571,-0.04916718602180481,0.042977482080459595,-0.03249373286962509,-0.09279608726501465,0.03716745227575302,0.032964564859867096]},{"text":"Louka brings the coffee to the table._) PETKOFF.","book":"Down and Out in Paris and London","chapter":25,"embedding":[0.0005028073210269213,0.042893361300230026,-0.10335631668567657,-0.01794983074069023,-0.04700249806046486,0.08005498349666595,0.08193520456552505,0.02519404888153076,0.038367170840501785,-0.01961878500878811,-0.04391513764858246,-0.007153593003749847,-0.11382409185171127,-0.018261805176734924,-0.05878809839487076,-0.04173876717686653,0.03841479867696762,-0.02385556325316429,-0.0112763037905097,0.09123573452234268,-0.03721749410033226,-0.01577216573059559,0.04547637328505516,-0.0008557981345802546,0.061021238565444946,0.02526555210351944,0.06625422090291977,-0.05270688235759735,0.017238138243556023,-0.03997534140944481,0.023454487323760986,0.013099613599479198,-0.06170981749892235,0.03568502888083458,-0.08643395453691483,0.017376253381371498,0.027895374223589897,0.020602591335773468,0.08191613852977753,0.06332539767026901,0.012585344724357128,-0.09289199113845825,-0.09725787490606308,-0.009363758377730846,-0.02745131216943264,-0.023715076968073845,-0.07570292055606842,-0.07733079791069031,0.002252066507935524,-0.037933800369501114,-0.16655531525611877,0.01847478188574314,-0.01738019473850727,0.018048657104372978,0.011911912821233273,-0.0038227522745728493,0.06877370178699493,-0.04884056746959686,-0.015772685408592224,0.10195983946323395,-0.05180039629340172,-0.016864456236362457,-0.030223654583096504,0.09420838952064514,-0.022822661325335503,-0.10000233352184296,-0.10900232940912247,-0.009218874387443066,-0.11450932919979095,0.0927451029419899,-0.016800854355096817,0.014728045091032982,0.004793944302946329,-0.04930979013442993,-0.03381303697824478,-0.04777660593390465,-0.006140717770904303,0.0004925233661197126,0.10285985469818115,-0.001960597699508071,0.05281377211213112,0.01603253372013569,-0.0024414455983787775,0.09722794592380524,0.002435114933177829,-0.024371281266212463,0.08259820938110352,-0.023588063195347786,0.03284715116024017,-0.021488066762685776,0.013866233639419079,0.0979149341583252,-0.002922167768701911,0.005623119883239269,-0.0710882917046547,0.009611126966774464,0.04214104264974594,-0.0016462000785395503,-0.017679492011666298,0.10447406023740768,-0.029411837458610535,0.04127116501331329,0.029706647619605064,-0.0018252732697874308,-0.0369340181350708,-0.02345961704850197,0.007369490340352058,-0.09669226408004761,0.059257619082927704,-0.0022420212626457214,-0.019874196499586105,-0.030093399807810783,-0.06560216099023819,0.025053855031728745,-0.01126253604888916,0.016065599396824837,-0.005898661911487579,-0.051154378801584244,0.024423958733677864,-0.06626216322183609,0.0015780330868437886,-0.007673297077417374,-0.008113234303891659,0.10275881737470627,-0.031750667840242386,0.01963503472507,-0.08651691675186157,-5.1333680343355904e-33,0.017338473349809647,0.010248057544231415,0.01474947389215231,0.019576415419578552,0.013112330809235573,0.050503093749284744,-0.05207890644669533,-0.02888469211757183,-0.017108136788010597,0.06692369282245636,-0.04433973878622055,0.02455407939851284,-0.08503994345664978,0.018249383196234703,-0.05491577088832855,0.102250836789608,-0.06348303705453873,0.029757265001535416,-0.10035643726587296,-0.017546148970723152,0.08726710826158524,0.05140140652656555,-0.03863004222512245,0.0709967315196991,0.02680732123553753,0.04463368281722069,0.0040545035153627396,-0.10384815186262131,-0.06269439309835434,0.014666354283690453,0.017460037022829056,0.02060048095881939,-0.03602815046906471,0.0440472811460495,-0.07296252250671387,-0.05962809920310974,-0.029059570282697678,-0.041656967252492905,-0.03433036059141159,-0.01041993498802185,-0.021119102835655212,-0.00843915343284607,0.0249316468834877,0.0027877006214112043,-0.017444521188735962,0.04136215150356293,0.030134407803416252,0.028094248846173286,0.0026406480465084314,-0.010743828490376472,-0.049375541508197784,-0.04083630070090294,0.015792300924658775,0.07161116600036621,-0.05023624375462532,-0.03825123608112335,-0.003480592044070363,0.02820514887571335,0.11767902225255966,0.009203067980706692,0.004658373072743416,0.01589471660554409,-0.007683623116463423,0.0003170741838403046,0.03784625232219696,-0.009070049040019512,-0.0120394267141819,0.022029083222150803,0.12372404336929321,-0.03084099292755127,0.010030708275735378,-0.03961121290922165,-0.007826406508684158,-0.004926467780023813,-0.0176938958466053,-0.06594321876764297,-0.004557847511023283,0.033598076552152634,-0.023687873035669327,-0.04565222188830376,0.013077176176011562,-0.018598467111587524,0.037616483867168427,-0.019914813339710236,-0.031164368614554405,0.03283228725194931,0.020753875374794006,-0.06277148425579071,-0.06277721375226974,0.07711686193943024,-0.0840124636888504,0.040788616985082626,0.12463637441396713,0.0013059780467301607,-0.042092595249414444,2.38278123205951e-33,0.10263428837060928,-0.033632393926382065,-0.07651593536138535,0.03671863302588463,0.07798053324222565,0.021198932081460953,0.015602845698595047,-0.007336503826081753,0.0024605344515293837,0.003242368344217539,0.019176406785845757,0.003575788112357259,0.06844329088926315,0.005219639744609594,0.006764169316738844,-0.03271372243762016,0.058594800531864166,-0.037278518080711365,-0.08280347287654877,-0.03770071268081665,0.007876991294324398,0.06143670529127121,-0.05735133960843086,0.08209285885095596,-0.009381034411489964,-0.008043980225920677,0.12502022087574005,-0.03122742660343647,-0.17455175518989563,0.038129761815071106,-0.06651736795902252,0.004104554187506437,-0.055529262870550156,0.017560500651597977,0.042894262820482254,0.07562529295682907,-0.0165069792419672,-0.0216959398239851,-0.10597999393939972,0.09934715181589127,0.026194633916020393,-0.05622098594903946,0.001526831416413188,0.044841378927230835,0.002756283385679126,-0.09598185122013092,-0.0519385002553463,-0.0442388653755188,-0.02596137300133705,-0.01202822383493185,-0.02961084246635437,0.0001236883836099878,-0.1472516506910324,0.02526877447962761,-0.042564939707517624,0.14019480347633362,0.029619887471199036,-0.062525674700737,-0.020408816635608673,-0.045506637543439865,-0.047676973044872284,0.04243091866374016,0.016479456797242165,-0.00909122172743082,0.012463275343179703,0.03481512889266014,-0.06425521522760391,-0.02037200890481472,0.12579497694969177,-0.004591725300997496,0.03397250175476074,0.04085494205355644,-0.012474749237298965,0.07444368302822113,0.03224371001124382,0.1266757994890213,-0.016622411087155342,0.02968876250088215,0.013720831833779812,-0.045502498745918274,-0.026624470949172974,-0.08123009651899338,-0.0014968692557886243,0.014017160050570965,0.02378939650952816,-0.0645904690027237,0.05141250789165497,-0.09359213709831238,-0.0635233148932457,-0.014284358359873295,0.07584268599748611,0.015520508401095867,0.011648554354906082,0.04014132544398308,0.008114976808428764,-1.8185058792141717e-8,-0.03903909772634506,0.037441436201334,-0.0066922372207045555,0.04134863615036011,0.062323227524757385,-0.0725332498550415,-0.00241220835596323,-0.016807250678539276,-0.09585891664028168,0.06235835701227188,0.0131083307787776,0.064860500395298,0.06728130578994751,0.03580103814601898,0.08340709656476974,0.00915736984461546,0.025484150275588036,0.061806220561265945,-0.046729348599910736,0.04204761981964111,-0.020450834184885025,-0.006526678800582886,0.01414591446518898,0.026926448568701744,0.0124161122366786,0.0012532096588984132,-0.039319902658462524,0.04184003919363022,0.06848488748073578,0.04900320619344711,0.029924385249614716,0.08145039528608322,-0.058452360332012177,0.04175059497356415,0.0700942873954773,0.04327377304434776,-0.02868948131799698,-0.0657702162861824,0.020537715405225754,-0.0034760059788823128,-0.04720042273402214,-0.02121984213590622,-0.021350903436541557,-0.021210599690675735,-0.03429267555475235,0.0059719085693359375,0.009066361002624035,-0.04839517921209335,0.025637205690145493,-0.0022289000917226076,0.03646908700466156,0.07572183012962341,0.05835140496492386,0.03468799218535423,0.05745471641421318,0.005684905219823122,-0.04705104976892471,0.029820794239640236,-0.05316545069217682,-0.009564584121108055,0.031249960884451866,0.0312370453029871,0.04605274647474289,-0.018031811341643333]},{"text":"My dear Paul, what a surprise for us. (_She stoops over the back of his chair to kiss him._) Have they brought you fresh coffee?","book":"Down and Out in Paris and London","chapter":26,"embedding":[-0.06336794048547745,0.060150809586048126,0.08941546082496643,0.020360881462693214,-0.022783784195780754,-0.05485988408327103,0.022817593067884445,-0.1097465306520462,0.023634204640984535,-0.0726536363363266,-0.06534522026777267,0.026458166539669037,0.029234306886792183,-0.022177787497639656,0.023766683414578438,-0.06218324229121208,0.012679703533649445,-0.02151830680668354,-0.003947706893086433,0.09331640601158142,0.009600350633263588,0.009168805554509163,0.0775841474533081,-0.053787343204021454,0.05025927349925041,0.057143986225128174,0.04672606661915779,-0.05247856676578522,-0.015050608664751053,0.03405958041548729,-0.008789259940385818,0.0032064570114016533,-0.02205059304833412,-0.05572226643562317,0.013584127649664879,0.04684874042868614,0.06303292512893677,-0.028960317373275757,0.11260783672332764,0.015580127015709877,0.02381264604628086,-0.054783958941698074,0.08621326833963394,0.05341916158795357,0.048257436603307724,0.030179735273122787,0.022862378507852554,-0.010260209441184998,-0.004723725840449333,-0.0579858273267746,-0.07847735285758972,-0.01657474786043167,0.10207025706768036,-0.06810110062360764,-0.02028464525938034,-0.020732015371322632,0.0510895811021328,-0.07894029468297958,0.04379250854253769,0.0564550906419754,-0.06780683249235153,-0.02400529943406582,-0.04003205522894859,0.13801783323287964,-0.09507384896278381,-0.05994977056980133,-0.07875846326351166,-0.011125779710710049,-0.008073573000729084,0.07519161701202393,-0.0000981071571004577,0.01420899759978056,-0.010576054453849792,-0.028790704905986786,-0.02629035711288452,0.02071019820868969,0.058391112834215164,-0.0035625342279672623,0.011210974305868149,0.016378389671444893,-0.03403681889176369,-0.062365349382162094,0.02006954327225685,0.04685577005147934,-0.07115653157234192,0.0296045932918787,0.10502877831459045,-0.08747032284736633,-0.10562726110219955,-0.03216240927577019,-0.03569304198026657,0.0033034449443221092,-0.03973948955535889,0.018621966242790222,-0.05040248855948448,-0.019180912524461746,-0.01694449782371521,0.05547517538070679,-0.003840811550617218,0.054648786783218384,0.0034722336567938328,0.10744626075029373,-0.011171192862093449,0.025202814489603043,0.012445555999875069,-0.013130505569279194,-0.11798927932977676,-0.0036657778546214104,0.04047662392258644,-0.07932429015636444,-0.006019787397235632,-0.0759032592177391,-0.03210332244634628,-0.021634412929415703,0.0008198760915547609,0.010586661286652088,0.043901219964027405,-0.04101544991135597,-0.019774923101067543,-0.0002535553358029574,-0.024958543479442596,0.005774682387709618,-0.02191832661628723,0.03967474028468132,-0.003740272717550397,-0.043655578047037125,-0.020137004554271698,-3.5833578772634604e-33,-0.010558085516095161,0.023435650393366814,-0.01029455941170454,0.060914359986782074,0.0974719375371933,0.00948956049978733,-0.045863304287195206,-0.000586463138461113,-0.05246035009622574,0.06541863083839417,-0.04417380690574646,0.04324597120285034,0.0321052148938179,-0.0081123486161232,-0.12553495168685913,0.03228769451379776,-0.010070194490253925,-0.02342635579407215,0.06767663359642029,-0.01103536318987608,0.039898596704006195,-0.019546817988157272,0.03992509841918945,0.035934120416641235,0.0008753277943469584,0.03754004091024399,-0.037370823323726654,-0.029271535575389862,0.10116732865571976,-0.011414200998842716,-0.04275510832667351,0.04122138395905495,0.03345571830868721,-0.018557729199528694,-0.03726339712738991,0.026903808116912842,-0.04489428922533989,0.014479353092610836,-0.041382815688848495,0.008729242719709873,-0.0854022428393364,0.007235968019813299,0.016282526776194572,-0.08794527500867844,-0.10434994101524353,-0.01777186430990696,-0.046636298298835754,0.07554692775011063,0.02526150830090046,-0.06372269243001938,-0.023649515584111214,0.06605321913957596,0.04711966589093208,0.06600672751665115,-0.047749873250722885,-0.03948666900396347,0.05403266102075577,0.026611510664224625,0.04877873882651329,0.010946054011583328,-0.008665459230542183,0.05078590661287308,0.03772665560245514,-0.05809519812464714,0.013086242601275444,-0.043888501822948456,-0.004437936004251242,-0.019250018522143364,0.08252669125795364,0.05010652914643288,0.0437978096306324,0.06319018453359604,-0.08936681598424911,-0.055157534778118134,0.028858838602900505,-0.028964802622795105,-0.018269231542944908,-0.004083018284291029,0.05875254422426224,-0.05701524391770363,0.11228663474321365,-0.040223829448223114,-0.007738433312624693,0.04375207796692848,-0.04882613196969032,0.019263630732893944,-0.04194973036646843,-0.055737730115652084,-0.016872840002179146,0.049415118992328644,-0.06314259022474289,0.01357804611325264,0.06448221206665039,-0.019907517358660698,-0.061856526881456375,-3.866531068463192e-34,0.12373378872871399,0.04533686861395836,-0.08587119728326797,0.025406155735254288,0.0017726876540109515,0.011980186216533184,-0.03474485129117966,-0.021551035344600677,-0.0496005080640316,-0.02164805494248867,0.10307226330041885,0.02498273365199566,0.07131748646497726,0.07042805850505829,0.03467846289277077,-0.04720304533839226,0.03929575905203819,-0.006518457550555468,-0.01236723456531763,0.0281375739723444,0.003661778988316655,0.038267411291599274,0.03791981190443039,0.03285171836614609,-0.019959792494773865,-0.01194037776440382,0.11844079196453094,-0.00890632625669241,-0.13773484528064728,-0.06891851872205734,-0.01737299934029579,-0.07624251395463943,-0.056475188583135605,0.024375062435865402,0.05892011523246765,0.007751274388283491,-0.14072617888450623,-0.025202468037605286,0.028638772666454315,-0.02074606716632843,-0.007874189876019955,-0.02306496910750866,0.030813582241535187,0.08006980270147324,0.06889969110488892,-0.07308249175548553,0.023375265300273895,-0.051702409982681274,-0.05299708992242813,0.040194835513830185,-0.04748525097966194,-0.025108255445957184,-0.10743311047554016,-0.010711392387747765,-0.06755702197551727,0.07817098498344421,0.02150578610599041,0.004494406748563051,0.07295607030391693,-0.025235716253519058,-0.06719893217086792,0.032333873212337494,0.010775059461593628,0.009299551136791706,0.029340695589780807,-0.00027257620240561664,-0.03755408897995949,-0.01980775035917759,0.08136620372533798,-0.02384037710726261,0.03606753796339035,-0.0014804508537054062,-0.061866480857133865,0.044167160987854004,0.04934482276439667,0.028726859018206596,0.005822128616273403,-0.10190439969301224,-0.031227273866534233,-0.07254960387945175,0.02629443258047104,-0.019144507125020027,0.021829865872859955,-0.004022408742457628,0.09810901433229446,-0.031359072774648666,0.048572368919849396,-0.03587338700890541,-0.034324005246162415,0.09190733730792999,0.019014863297343254,0.042723119258880615,0.061688754707574844,-0.02891581878066063,0.08474592864513397,-2.9538028911701986e-8,-0.03072478249669075,0.04587680846452713,-0.04169529303908348,0.05368908867239952,0.009064123965799809,-0.054716557264328,-0.029821472242474556,-0.053296271711587906,-0.11709501594305038,-0.031140511855483055,-0.005839208606630564,0.050307851284742355,0.04605596140027046,0.02862800471484661,0.04352838173508644,0.03773750364780426,0.025548674166202545,-0.026081755757331848,-0.0381995253264904,-0.04680859297513962,-0.036503929644823074,0.03232312574982643,0.057417191565036774,0.015596370212733746,0.02143440954387188,-0.030904443934559822,0.024246515706181526,0.037994205951690674,0.014362233690917492,-0.0670236349105835,0.01927027478814125,-0.029551738873124123,-0.11055100709199905,0.015911323949694633,0.023735757917165756,-0.011859597638249397,-0.03812818601727486,-0.014803709462285042,0.10149936378002167,-0.018953297287225723,-0.16167618334293365,-0.08159428834915161,-0.0739465206861496,0.008649838156998158,-0.11358702927827835,0.037589192390441895,0.00961812399327755,-0.005030680447816849,-0.013645891100168228,0.08361699432134628,-0.06901440024375916,-0.0239857267588377,0.02725580520927906,-0.004908395931124687,0.052266061305999756,-0.04126778617501259,0.013004811480641365,0.041625820100307465,0.023535601794719696,0.0231705941259861,0.010299324989318848,0.0005741036729887128,-0.07482433319091797,-0.11365355551242828]},{"text":"What could _I_ do? (_She sits down and turns away from him._) But of course we saw to it that the treaty was an honorable one.","book":"Down and Out in Paris and London","chapter":26,"embedding":[-0.05067548528313637,0.12865132093429565,0.0395275242626667,-0.043530844151973724,0.027344347909092903,-0.02327357977628708,0.037770826369524,-0.06693440675735474,-0.0775417611002922,-0.026941237971186638,-0.03984508290886879,-0.005999239627271891,0.008255735039710999,-0.005347418133169413,-0.0061334907077252865,0.04931389167904854,-0.0000825196475489065,0.0698273703455925,-0.04791241139173508,0.08839800208806992,0.008532612584531307,0.062402158975601196,0.061489589512348175,0.04911739379167557,-0.027586843818426132,0.024096272885799408,0.09381978958845139,0.006937249097973108,-0.031375911086797714,-0.00798899307847023,-0.03638095781207085,-0.0631793662905693,-0.0504862405359745,0.03895796835422516,0.013479946181178093,0.01307650562375784,0.10723789781332016,-0.02051381953060627,0.06314892321825027,-0.07327599078416824,0.003647215897217393,0.02963477000594139,0.032169684767723083,0.010937326587736607,-0.06684871017932892,-0.0363326221704483,-0.03972771391272545,-0.014581841416656971,-0.0772305503487587,-0.030728688463568687,-0.013010903261601925,0.04366509988903999,-0.12917934358119965,-0.01675628125667572,-0.008627686649560928,-0.0005324757657945156,-0.011852744035422802,-0.03566134348511696,0.028157785534858704,0.01519897859543562,-0.04263649880886078,-0.005442423280328512,0.05873331055045128,0.027977271005511284,-0.06709214299917221,-0.007978850044310093,-0.0011307315435260534,-0.0821540355682373,-0.045704714953899384,0.09675034880638123,0.02602705918252468,0.07223723828792572,-0.09050295501947403,-0.034472476691007614,-0.07387999445199966,-0.1086815893650055,0.04883074015378952,0.010764391161501408,0.09033845365047455,-0.04037727043032646,-0.08786294609308243,-0.004924861714243889,0.005817485507577658,0.07111918181180954,0.07647580653429031,-0.0635954737663269,-0.013950582593679428,-0.0662483498454094,0.028163261711597443,0.01772424206137657,-0.04777089133858681,-0.09387184679508209,0.07627832889556885,0.013329890556633472,-0.007965058088302612,0.017199626192450523,-0.014470009133219719,0.05404990538954735,-0.034624263644218445,0.036535777151584625,0.09065543115139008,0.063698910176754,-0.12819784879684448,-0.0009561990736983716,-0.06890541315078735,0.10675064474344254,-0.012811186723411083,-0.07772266119718552,-0.0038742772303521633,-0.004805676639080048,-0.0030860775150358677,-0.035295773297548294,-0.02966463379561901,-0.048276595771312714,-0.03289809077978134,0.08660252392292023,0.06220470741391182,-0.04112651199102402,-0.031216295436024666,-0.06310966610908508,0.03680764138698578,0.03417883440852165,-0.024690262973308563,0.0023689097724854946,-0.054268334060907364,-0.04294947162270546,0.049354009330272675,-4.160253770448576e-33,0.009792216122150421,0.0007998135406523943,-0.03703046590089798,-0.06591189652681351,0.04816032946109772,0.03924527391791344,0.03453588858246803,0.004077637102454901,-0.05399100482463837,0.02238604985177517,-0.03989190235733986,-0.013565215282142162,-0.0008187754428945482,-0.1092480942606926,-0.06473958492279053,0.07319507747888565,0.008991369046270847,0.022842003032565117,0.04936591163277626,0.010821429081261158,0.15065740048885345,-0.041226278990507126,0.036739300936460495,0.05911904200911522,-0.05869544297456741,-0.03318910300731659,0.0019751337822526693,-0.034518882632255554,0.04123324155807495,0.0326160192489624,-0.1058802381157875,0.07024075835943222,0.0316307358443737,0.014241419732570648,0.05056009814143181,0.018192484974861145,-0.032733477652072906,0.005660208873450756,-0.026689495891332626,0.0032254320103675127,-0.10097239911556244,0.014122797176241875,-0.030419057235121727,0.05295586213469505,-0.01641048491001129,-0.07823680341243744,0.008935920894145966,0.08628804981708527,0.04015755280852318,0.0170485470443964,-0.016803782433271408,-0.05047260597348213,0.029976703226566315,-0.04232708737254143,-0.06278692185878754,0.006414666771888733,0.03823712095618248,0.09585662931203842,0.01515443529933691,0.07342123240232468,-0.02254127897322178,-0.02466494031250477,0.009078077971935272,0.039945002645254135,-0.07406239211559296,-0.02222207374870777,-0.1110447496175766,-0.02692880854010582,-0.015999415889382362,-0.08700773864984512,-0.0548778735101223,0.10478989779949188,-0.05029231682419777,0.03262680023908615,-0.06760048121213913,0.026712758466601372,0.019851136952638626,0.012302873656153679,0.06888747960329056,-0.14063264429569244,-0.05389469489455223,0.004806447774171829,-0.045721299946308136,0.10267787426710129,-0.011447404511272907,-0.056931763887405396,-0.0035609668120741844,-0.025101598352193832,-0.038008932024240494,-0.033707860857248306,-0.0061414423398673534,0.03474237397313118,0.05093935504555702,-0.07769693434238434,0.012816627509891987,-3.3305678630368755e-34,0.06600840389728546,0.03783167153596878,-0.024495959281921387,0.028829362243413925,-0.028489146381616592,-0.06788872182369232,-0.03304323926568031,-0.044142864644527435,-0.04356691241264343,-0.015029086731374264,0.009702407754957676,-0.03274163603782654,0.05594145506620407,0.03547938913106918,-0.017659418284893036,0.00886513851583004,0.0533440001308918,-0.0014225570484995842,0.01460158172994852,0.1138114258646965,0.016826102510094643,-0.017554590478539467,0.029116706922650337,0.06425268203020096,-0.02129281871020794,0.04138489440083504,0.10763164609670639,-0.08906552940607071,-0.015319685451686382,-0.002427898347377777,0.061410728842020035,-0.06780177354812622,-0.04706704989075661,-0.02843821980059147,0.06441798806190491,0.0464257076382637,-0.027728581801056862,-0.06790295988321304,0.012197202071547508,0.07246867567300797,0.024906756356358528,-0.018689485266804695,0.017300060018897057,0.06988360732793808,-0.03262266144156456,0.06092843413352966,-0.021779490634799004,0.028269998729228973,-0.05866168066859245,-0.03510969504714012,-0.024440258741378784,-0.032710347324609756,0.0592939592897892,0.008560938760638237,-0.06121312826871872,0.03785983845591545,-0.011735794134438038,0.013540126383304596,0.09817823022603989,-0.025888152420520782,0.032211944460868835,0.011578531004488468,0.004976945463567972,0.02941415086388588,0.022917214781045914,0.021217428147792816,-0.06569148600101471,0.030869169160723686,-0.003830565605312586,0.04335663840174675,0.03678014129400253,0.00013662659330293536,0.01562582701444626,0.03007347136735916,0.2009284794330597,-0.036007024347782135,-0.022737035527825356,-0.09975721687078476,-0.04721740633249283,-0.032068315893411636,-0.013113501481711864,-0.0462266243994236,0.0036284239031374454,-0.0978761687874794,0.07716057449579239,-0.025954831391572952,-0.038441337645053864,-0.0007746098563075066,0.02547471411526203,-0.013740661554038525,-0.029186641797423363,-0.012284902855753899,0.08572345227003098,-0.02680497244000435,-0.01014506071805954,-3.255916780631196e-8,-0.04580008611083031,-0.01281315553933382,0.005663528572767973,-0.01284425612539053,-0.13240112364292145,-0.02018130011856556,-0.033647239208221436,-0.025075802579522133,-0.02375209517776966,-0.015391531400382519,-0.00047142364201135933,0.056794870644807816,0.03326844796538353,-0.011095465160906315,0.03337511047720909,0.021429505199193954,-0.02601327933371067,-0.056539639830589294,-0.020278753712773323,-0.0008215424604713917,-0.04866810888051987,-0.008750778622925282,-0.04474417120218277,-0.038230277597904205,-0.020054273307323456,0.03315632790327072,-0.008154570125043392,0.09191741049289703,0.02219438925385475,0.04474310949444771,0.06843066215515137,-0.017985772341489792,-0.12948863208293915,-0.010803032666444778,-0.04277105629444122,0.022883538156747818,0.03135992959141731,-0.017574753612279892,0.07464010268449783,-0.046535979956388474,-0.03415454924106598,0.1308947205543518,-0.10001323372125626,0.07122372090816498,0.0749521404504776,0.02946714498102665,0.043105337768793106,-0.04390028491616249,0.008338038809597492,0.020616518333554268,-0.014055917039513588,-0.02776516042649746,-0.017953965812921524,-0.025730706751346588,0.06933274120092392,0.024368366226553917,0.0604146346449852,-0.02634757198393345,-0.04739048704504967,-0.004194726701825857,0.0037406717892736197,-0.04153766110539436,-0.014462596736848354,-0.026996618136763573]},{"text":"That’s what I would have done.","book":"Down and Out in Paris and London","chapter":26,"embedding":[-0.02510414645075798,0.10328143835067749,-0.045987654477357864,-0.0231328047811985,0.025405963882803917,-0.058489080518484116,-0.0014202784514054656,-0.009803364053368568,-0.04515872895717621,-0.021027132868766785,0.07089301198720932,-0.008144228719174862,0.004161686170846224,0.04697084426879883,-0.029905781149864197,0.025307554751634598,0.017251119017601013,0.01317619252949953,0.015702545642852783,0.035819824784994125,0.06694582849740982,0.03525872528553009,0.0033913140650838614,-0.0010586644057184458,0.09497103095054626,0.0060637351125478745,-0.031171467155218124,0.08496659249067307,-0.03687845543026924,0.03274498134851456,0.02884599007666111,-0.027690637856721878,0.03698088601231575,-0.023880504071712494,-0.020296048372983932,-0.06115495413541794,0.02346758171916008,0.028738893568515778,0.0806666910648346,-0.040706731379032135,0.05769975110888481,0.020290108397603035,0.054375067353248596,0.03247278183698654,0.0006674464675597847,0.014558764174580574,-0.06201090291142464,-0.011169715784490108,0.0919293612241745,-0.0274884682148695,0.057430993765592575,-0.07479234784841537,-0.08712483942508698,-0.04371681809425354,-0.012728835456073284,0.025424914434552193,0.009513108991086483,0.02819238416850567,0.06523310393095016,0.03396593779325485,-0.051144689321517944,-0.03188407048583031,-0.005128747783601284,0.07257498800754547,-0.07504013925790787,0.10649066418409348,-0.004052888602018356,-0.013583596795797348,0.07691920548677444,0.06148163229227066,0.07604280114173889,0.06488148123025894,0.021495724096894264,-0.050845880061388016,-0.0035492326132953167,-0.04641622677445412,0.009187721647322178,-0.09484919905662537,0.013307436369359493,0.09404435008764267,-0.03696074336767197,-0.06365400552749634,0.021019380539655685,-0.04452013224363327,0.007169176824390888,0.019359515979886055,0.06866960227489471,-0.09150829911231995,0.06301095336675644,-0.008310480043292046,-0.0955003947019577,-0.011409326456487179,0.0816112533211708,0.017264682799577713,-0.07615123689174652,-0.023700008168816566,-0.03575753793120384,-0.02540903352200985,-0.018963977694511414,0.06262074410915375,0.050255533307790756,-0.01598893105983734,-0.06357567012310028,-0.05264205113053322,0.007644625846296549,-0.046744655817747116,0.015389935113489628,0.006603476125746965,-0.03641918674111366,-0.01953042671084404,-0.04488161578774452,-0.02577892318367958,0.008434385992586613,0.12145090103149414,-0.07861621677875519,0.015173076651990414,-0.10013628005981445,0.08356798440217972,0.004305906593799591,-0.06835095584392548,0.1295897364616394,0.0554194450378418,-0.014221299439668655,0.03449716418981552,-0.09571587294340134,-0.09438405930995941,-0.01755267195403576,-3.968054566617378e-33,0.015058341436088085,0.04758526012301445,0.013568765483796597,-0.051690809428691864,0.07807210832834244,0.03760045766830444,-0.07220351696014404,0.0034179759677499533,0.021149761974811554,0.015786947682499886,0.04494819417595863,-0.07609120011329651,-0.0328766293823719,-0.008467087522149086,-0.06653794646263123,0.09316752851009369,0.0426923967897892,0.08092672377824783,0.002996108029037714,-0.008142339996993542,0.08503061532974243,-0.06428777426481247,-0.02885785698890686,-0.00481110904365778,-0.023935778066515923,0.05417811498045921,-0.03328617289662361,-0.05102776736021042,0.08567369729280472,-0.008566068485379219,0.008043895475566387,-0.05160925164818764,0.007203154265880585,-0.004123722203075886,-0.02800547517836094,0.046815890818834305,0.0715460255742073,0.001075274427421391,-0.033906470984220505,0.013149132020771503,-0.06340212374925613,-0.03394387662410736,-0.027695922181010246,-0.02378956414759159,-0.04424251988530159,-0.005931144580245018,0.005329011939466,0.018536679446697235,-0.08023862540721893,-0.06197166442871094,0.033140555024147034,0.03335586562752724,0.06722690165042877,-0.04871780797839165,-0.0502389557659626,-0.03609729930758476,0.07656826078891754,0.011378847062587738,0.03933025524020195,0.01827111840248108,0.0047788964584469795,0.007071038708090782,-0.018474139273166656,0.0627148374915123,-0.029534103348851204,-0.09091665595769882,0.02727910690009594,0.024613192304968834,0.02830767072737217,-0.03615789860486984,-0.034832268953323364,-0.019188228994607925,0.015845974907279015,0.048100292682647705,-0.05261542648077011,-0.08035578578710556,-0.0897645652294159,0.02582525834441185,0.030423445627093315,-0.04712593927979469,0.025128457695245743,0.022547554224729538,-0.13471047580242157,-0.011074666865170002,0.07443208992481232,0.03797997906804085,0.02941068820655346,-0.013517585583031178,-0.07192472368478775,0.02078595757484436,-0.06852664053440094,0.04987597092986107,0.0019446304067969322,-0.07233653217554092,-0.016888177022337914,1.7934880979060426e-33,-0.04247274622321129,0.06753846257925034,-0.02836563065648079,0.06525187194347382,0.015136560425162315,-0.01003523264080286,-0.02341580204665661,0.030904904007911682,0.0356127955019474,0.07077618688344955,0.11588960140943527,-0.020122235640883446,-0.06610497832298279,-0.005859609227627516,0.049961965531110764,0.0660497173666954,0.0075668347999453545,-0.04193708673119545,-0.04056907817721367,0.054614149034023285,0.001900735660456121,-0.02653748355805874,0.051874492317438126,0.13324220478534698,-0.00791114754974842,-0.0008196189883165061,0.09337370842695236,0.009538458660244942,-0.05554830655455589,0.041878070682287216,0.02394094504415989,-0.05647303909063339,-0.14581333100795746,0.00032253790413960814,-0.009372175671160221,0.01681981422007084,-0.023715583607554436,-0.0028246003203094006,-0.03765682131052017,-0.09355844557285309,-0.02329583466053009,0.0008289950783364475,-0.06447803229093552,0.005813824478536844,0.020070349797606468,0.008350293152034283,0.029708683490753174,-0.06880176812410355,0.030277209356427193,0.062127359211444855,-0.03716360777616501,-0.03660392388701439,-0.004537436179816723,-0.01672574318945408,-0.08287853002548218,-0.012199878692626953,0.17194245755672455,-0.007377471774816513,0.03351964056491852,-0.07521063834428787,0.0060716955922544,-0.009493010118603706,0.009278198704123497,-0.06655742228031158,0.00046792044304311275,-0.056089553982019424,-0.014052110724151134,0.03349924087524414,-0.0906222015619278,-0.009066817350685596,0.052716270089149475,0.022260092198848724,0.05743085965514183,0.06198529154062271,0.06553425639867783,-0.09758321195840836,0.06813393533229828,0.02344171144068241,0.02558089606463909,-0.0013381686294451356,-0.07598964869976044,-0.0672912448644638,0.0018643586663529277,0.009659107774496078,0.06656130403280258,0.058788251131772995,0.04217992722988129,-0.05054537206888199,0.0100726168602705,-0.007359471637755632,0.0505678690969944,0.002187233418226242,0.14266198873519897,-0.016074493527412415,-0.041410449892282486,-2.6960858434676993e-8,0.025114383548498154,0.03932023048400879,0.0010675500379875302,0.09699983149766922,-0.0028849763330072165,-0.020246926695108414,-0.041300103068351746,0.00946800410747528,0.0010470126289874315,0.0027000890113413334,0.0119376415386796,-0.0004699567216448486,0.028464460745453835,0.034929461777210236,-0.04086211696267128,-0.035930924117565155,-0.030853670090436935,-0.11156989634037018,-0.008984536863863468,0.1785244643688202,-0.029847459867596626,0.05263345688581467,-0.06130937114357948,-0.026320116594433784,0.01951534114778042,-0.004478819202631712,0.017088135704398155,0.005980817135423422,0.02500016987323761,0.03072344698011875,0.0057303812354803085,0.013944013975560665,-0.082152359187603,0.03464837744832039,-0.027225788682699203,0.031317755579948425,0.008108827285468578,0.02314656227827072,0.0253200214356184,0.03504769876599312,0.018883338198065758,0.05321824550628662,-0.04047483950853348,0.09676878899335861,-0.026677656918764114,-0.004949007648974657,0.020094094797968864,0.029496930539608,0.055950649082660675,-0.013255881145596504,0.038751695305109024,-0.02512526884675026,0.006365083158016205,0.05422735586762428,0.09629666805267334,-0.07157827168703079,0.0031525471713393927,-0.018481776118278503,-0.1034703254699707,0.052158173173666,-0.006192226428538561,-0.0930345356464386,-0.09120889008045197,-0.06723333895206451]},{"text":"That comes from washing your neck every day.","book":"Down and Out in Paris and London","chapter":27,"embedding":[-0.001437122467905283,0.002311763120815158,-0.01955537497997284,0.03814905136823654,0.02160206250846386,-0.07718611508607864,0.03130257502198219,0.003340858267620206,0.03186635673046112,-0.03734390065073967,0.03419492393732071,-0.01110629178583622,0.07795120030641556,0.005515007302165031,-0.05943821743130684,0.011396302841603756,-0.1436503678560257,-0.07441885024309158,-0.038469478487968445,-0.0065842438489198685,-0.03617575392127037,0.03169088065624237,0.048255689442157745,-0.012768635526299477,-0.018337661400437355,0.005863369908183813,0.056051816791296005,0.017229091376066208,0.05469054728746414,0.002016437239944935,0.04487404227256775,-0.046642377972602844,-0.09681107103824615,-0.07962658256292343,-0.021285679191350937,0.05216652527451515,-0.01837734691798687,0.019388239830732346,-0.017788328230381012,0.059540241956710815,0.01998862810432911,0.04220423102378845,0.037539221346378326,-0.016061406582593918,0.0018925921758636832,0.08653894066810608,-0.052659787237644196,0.050772231072187424,0.07624858617782593,0.03269987553358078,0.006473984103649855,-0.09673069417476654,0.04042486101388931,-0.04247567430138588,-0.008870236575603485,0.0509040467441082,0.015938712283968925,-0.04304152727127075,0.006891095545142889,0.09683641046285629,-0.04325581714510918,-0.01766122318804264,-0.06147429347038269,0.03326833248138428,0.005452131852507591,0.012063818983733654,0.01104449387639761,0.05837777629494667,-0.006145890802145004,0.02645171619951725,-0.08533100038766861,-0.011531457304954529,-0.05138031020760536,0.109921894967556,0.033584609627723694,-0.0013986526755616069,0.020377328619360924,-0.0920121818780899,0.014386313036084175,0.1081855297088623,-0.016080336645245552,0.04117640480399132,0.05528808757662773,0.05148666352033615,0.04477456212043762,-0.003034161403775215,0.04152737930417061,-0.02962140552699566,-0.04663949832320213,0.006268469616770744,-0.04487330839037895,-0.04200040549039841,-0.05379264056682587,0.007861006073653698,0.025199610739946365,0.07048704475164413,-0.06195845454931259,0.03149329870939255,-0.011904708109796047,0.0427195243537426,-0.07932595163583755,-0.0973430946469307,0.04254631698131561,0.030945800244808197,0.026844985783100128,0.0018203890649601817,-0.02499314397573471,0.008765541948378086,-0.03169458732008934,0.011148187331855297,-0.01772860810160637,0.06827028840780258,-0.007439091801643372,0.0024763543624430895,-0.061215728521347046,-0.0020851437002420425,0.07442506402730942,0.03960008546710014,-0.12791895866394043,0.05982784926891327,-0.057403188198804855,-0.004630143754184246,-0.0690310075879097,-0.06122760847210884,-0.03760264441370964,-0.0768827497959137,-0.08000774681568146,-4.054847559352326e-33,-0.01546604186296463,0.0010227495804429054,0.11780771613121033,-0.06493572890758514,-0.007459970656782389,-0.000060808299167547375,-0.09972001612186432,-0.02938440814614296,0.0814049169421196,0.030351005494594574,0.01743686944246292,-0.07211459428071976,-0.08367103338241577,-0.004416582640260458,0.007376550696790218,0.046813949942588806,0.02318495325744152,0.02855444885790348,0.004377361852675676,-0.08639772236347198,-0.04923103377223015,0.01631847582757473,0.023817412555217743,-0.03517556190490723,-0.0841098204255104,0.023766595870256424,-0.027653731405735016,-0.033443089574575424,0.043799079954624176,-0.032025400549173355,0.08915428072214127,-0.035070374608039856,0.0809369757771492,0.008062374778091908,-0.025896403938531876,0.03192583844065666,0.046170949935913086,-0.015980202704668045,-0.04721704497933388,0.06563419103622437,0.04747641459107399,-0.03421889618039131,0.01345227099955082,0.0143238240852952,-0.046520717442035675,0.00462299445644021,-0.044311847537755966,-0.07136165350675583,-0.016599323600530624,0.0074713691137731075,0.02389642409980297,0.03699361905455589,0.06084590032696724,-0.022553302347660065,-0.02865603379905224,-0.0043035163544118404,-0.008030874654650688,-0.039278026670217514,-0.024205509573221207,0.08648236095905304,-0.029011819511651993,-0.039454590529203415,0.005444368347525597,-0.002776164561510086,-0.0005540189449675381,-0.029032623395323753,-0.0049271960742771626,0.02401263639330864,-0.06501564383506775,0.016858432441949844,-0.001628689467906952,0.005952134728431702,-0.0035543814301490784,-0.018155537545681,-0.03582785278558731,-0.013738143257796764,0.030607715249061584,-0.02293490804731846,0.021000538021326065,0.0017781450878828764,0.03360311686992645,0.030516933649778366,0.059210486710071564,0.09371554851531982,0.10523296147584915,0.02687074802815914,-0.05207069590687752,-0.029075395315885544,0.07687654346227646,-0.011975981295108795,0.06014198809862137,-0.059577856212854385,-0.023658959195017815,-0.023092668503522873,-0.05344930291175842,1.3265741194132489e-33,0.014218362979590893,-0.017741112038493156,0.04708627238869667,0.05494345724582672,0.05268900468945503,0.031041432172060013,-0.006852544844150543,0.17066700756549835,-0.12061505764722824,0.06623639911413193,0.07886496186256409,-0.08417487144470215,-0.06559199094772339,0.049547016620635986,0.10672540217638016,0.043505530804395676,0.07994269579648972,0.055207785218954086,-0.04706414416432381,0.021728210151195526,0.028216758742928505,0.04146433621644974,0.06544723361730576,0.021547526121139526,0.0542185977101326,-0.01619948074221611,0.025658510625362396,-0.017962614074349403,-0.040879640728235245,0.060780446976423264,-0.02356392703950405,0.012879211455583572,-0.06447244435548782,-0.06507585942745209,-0.033035434782505035,0.03484170883893967,-0.0055313715711236,-0.03171379119157791,0.014276192523539066,0.07039409130811691,-0.026054060086607933,-0.024672022089362144,0.059189219027757645,0.031912583857774734,-0.020089412108063698,0.05121739208698273,-0.06553412973880768,-0.033473990857601166,-0.07424668967723846,0.03404529392719269,-0.03223132714629173,0.07717563956975937,0.022353986278176308,-0.0029942479450255632,-0.07038180530071259,0.019715048372745514,0.05715832859277725,-0.017347848042845726,0.028024453669786453,0.03487301245331764,-0.06109621003270149,-0.007049525622278452,-0.15526556968688965,-0.015440963208675385,0.06134869530797005,-0.017740881070494652,-0.05537361279129982,-0.009638063609600067,0.024113653227686882,0.02077948860824108,-0.03641528636217117,-0.017118526622653008,-0.11749672889709473,-0.03960719704627991,-0.1251925826072693,0.0034457652363926172,-0.060667045414447784,-0.006678352598100901,0.003970394376665354,0.0278346985578537,-0.07007917761802673,0.004781536757946014,0.08182016015052795,0.01558433286845684,-0.03036515787243843,-0.1805366575717926,-0.01809234917163849,-0.04375692084431648,-0.014455464668571949,0.01919575035572052,-0.047702591866254807,-0.052603933960199356,-0.1171824187040329,0.16971424221992493,0.002835392951965332,-1.714603747871024e-8,-0.0586683489382267,-0.04945731163024902,0.06531808525323868,0.03531283512711525,0.05123543366789818,0.020644670352339745,0.03829177841544151,0.01886109635233879,-0.008711757138371468,0.025893166661262512,-0.018166756257414818,0.05713357776403427,0.03169369697570801,0.006298690102994442,-0.03390717878937721,0.0039582932367920876,0.05083293095231056,-0.027860725298523903,0.010966435074806213,-0.07120519876480103,-0.030414091423153877,0.014553499408066273,0.054127953946590424,0.10458765178918839,-0.0096296276897192,-0.05741338059306145,0.011323370970785618,0.16003726422786713,-0.03452643007040024,0.03481024131178856,0.09878115355968475,0.008619554340839386,-0.05028180778026581,-0.030223922803997993,-0.04634996876120567,0.022389762103557587,0.01021966990083456,-0.07992087304592133,-0.029744697734713554,-0.02015426941215992,-0.02185888960957527,0.05484110862016678,-0.029971512034535408,0.04976322874426842,-0.03806288167834282,-0.04396352544426918,0.024575546383857727,0.06107345223426819,0.0797792375087738,-0.038378920406103134,0.05608292296528816,-0.0059779370203614235,0.016242418438196182,0.04313167929649353,-0.0427178218960762,0.03426496684551239,0.034616436809301376,-0.009476651437580585,0.03805560618638992,-0.02155592292547226,-0.016479836776852608,-0.048868898302316666,0.09559407085180283,-0.041040144860744476]},{"text":"It all comes from the English: their climate makes them so dirty that they have to be perpetually washing themselves.","book":"Down and Out in Paris and London","chapter":27,"embedding":[0.04945475980639458,0.05073479935526848,0.1357932835817337,0.06687531620264053,0.09213542193174362,-0.06443969160318375,0.012707318179309368,-0.09652724862098694,-0.031443629413843155,0.09058815240859985,-0.004817130509763956,-0.09921914339065552,-0.009405657649040222,0.039478424936532974,-0.06578810513019562,-0.026493394747376442,-0.1113399863243103,-0.05713658034801483,-0.053823892027139664,0.015881098806858063,0.0065467264503240585,0.027936667203903198,0.08393234014511108,-0.02164040505886078,-0.02062435820698738,-0.029093045741319656,0.009902135469019413,-0.06945894658565521,0.0016986133996397257,0.07304059714078903,0.00010609818855300546,0.0811692327260971,0.009035746566951275,-0.00716674467548728,-0.014206045307219028,0.006034773774445057,0.022973045706748962,-0.054369475692510605,-0.003260438097640872,0.019857903942465782,-0.0046911658719182014,-0.06697095185518265,0.0160174872726202,-0.0372554175555706,-0.03513157367706299,0.02130933478474617,-0.001966622192412615,0.026278890669345856,0.06302990019321442,-0.07365911453962326,0.036298152059316635,0.03829796612262726,0.054438069462776184,-0.06342123448848724,-0.01256778184324503,-0.035285864025354385,0.01797398366034031,-0.05248435586690903,-0.022531652823090553,0.035953667014837265,0.004749468062072992,0.03371425345540047,-0.08704044669866562,0.015326748602092266,0.06958876550197601,-0.03571987897157669,0.014263417571783066,0.18925711512565613,-0.0866248682141304,0.006047403905540705,-0.07139676809310913,0.03810897842049599,0.01026094239205122,0.08516016602516174,0.006649394519627094,0.001750568742863834,-0.04101620987057686,-0.020515643060207367,-0.059407301247119904,-0.04288022592663765,-0.01001333724707365,-0.014436025172472,0.10668075084686279,0.004799035377800465,0.04791862517595291,-0.002314930781722069,0.023123031482100487,-0.06562529504299164,0.0383729487657547,-0.02116946317255497,-0.02662074938416481,-0.012466036714613438,-0.039749469608068466,-0.0024687175173312426,0.025247368961572647,0.01585724949836731,0.06763599067926407,0.06231784448027611,-0.06723716109991074,0.011778374202549458,-0.06282757222652435,-0.022828299552202225,0.033128321170806885,0.04985852167010307,-0.00919411052018404,-0.04426286742091179,-0.05250681936740875,-0.02361401729285717,-0.0023409086279571056,-0.01735084317624569,-0.06475307792425156,-0.04346730187535286,-0.004429763648658991,0.04350116848945618,0.003045890247449279,-0.03862098231911659,0.004984789062291384,-0.0003382587165106088,-0.06022665649652481,0.01400789339095354,-0.02916528657078743,0.0034350217320024967,-0.11508901417255402,-0.029331902042031288,0.023759812116622925,-0.08253806829452515,0.011565541848540306,-1.5752223068453603e-33,0.055453989654779434,0.04218139871954918,0.09295499324798584,-0.04438164085149765,0.005761756096035242,-0.0006328984745778143,-0.09091846644878387,-0.03712005540728569,0.0785265564918518,0.017739880830049515,0.00600433861836791,-0.07085341960191727,-0.07987608760595322,-0.010863490402698517,0.04516260698437691,0.06679695844650269,-0.07005058974027634,-0.0831412523984909,0.009560137055814266,0.051083341240882874,-0.009225539863109589,0.11140484362840652,0.09258881956338882,0.0323253758251667,-0.11080912500619888,-0.05320122838020325,0.01673409715294838,-0.015741905197501183,-0.020386073738336563,0.030297117307782173,0.12929542362689972,-0.07718375325202942,-0.015605034306645393,0.03780362010002136,-0.09847809374332428,-0.010638730600476265,0.017392361536622047,-0.029352538287639618,-0.0037662785034626722,0.015107289887964725,-0.01967732422053814,-0.102568618953228,0.0480140820145607,-0.006890185177326202,-0.03894899785518646,-0.018397189676761627,-0.03935408219695091,0.004074016120284796,-0.03360615670681,0.06321555376052856,0.07209561765193939,0.07269381731748581,0.01658681035041809,-0.04170636087656021,0.041425056755542755,0.0067762513644993305,0.05399865657091141,-0.031241828575730324,-0.0916324108839035,0.009164425544440746,-0.02824077010154724,0.018318302929401398,-0.04626378417015076,-0.04676619917154312,0.035115014761686325,-0.04159320145845413,0.05351779982447624,0.07439353317022324,-0.024503182619810104,-0.023004988208413124,0.019884364679455757,0.04718446359038353,-0.07366272062063217,0.03217897191643715,-0.0196628887206316,-0.03677334263920784,0.0639868676662445,-0.047387219965457916,0.041351113468408585,0.015463638119399548,-0.00434271851554513,0.0059215715155005455,-0.0945693776011467,-0.0014074424980208278,-0.054009679704904556,0.03996235877275467,0.04335856810212135,0.0854635089635849,0.07475713640451431,0.016195932403206825,0.036507997661828995,0.00358190736733377,0.06489633768796921,-0.0585055835545063,-0.016850793734192848,-7.896977477308859e-34,0.08931440114974976,-0.06035541743040085,-0.0690365880727768,0.08506438881158829,-0.00887252390384674,-0.016976846382021904,0.0008059117826633155,0.08345407992601395,-0.039263706654310226,0.04513665288686752,-0.07524436712265015,-0.08172868937253952,0.004618444014340639,0.014431364834308624,0.11045574396848679,0.017138401046395302,0.020080316811800003,0.09548460692167282,0.010051293298602104,-0.07512746751308441,0.015665536746382713,0.06598011404275894,0.01940198428928852,0.011444644071161747,-0.10037993639707565,-0.029859509319067,-0.016660518944263458,0.0416184663772583,-0.07276307791471481,-0.012145939283072948,-0.022077839821577072,0.07038584351539612,-0.054724860936403275,-0.023070095106959343,0.01002413034439087,-0.006063631270080805,-0.10578698664903641,0.015859806910157204,-0.0014808139530941844,0.05666843429207802,-0.005635498091578484,-0.10048577934503555,0.07368260622024536,0.012004170566797256,0.019280701875686646,0.04617948830127716,-0.0870993360877037,-0.02595791406929493,-0.054934367537498474,-0.04104295000433922,0.11346861720085144,0.02527361735701561,-0.03366910293698311,-0.052290819585323334,0.0007426104857586324,-0.03614756837487221,-0.014875374734401703,-0.07446921616792679,-0.0032643466256558895,0.055036865174770355,0.013660116121172905,0.059338685125112534,-0.02458549663424492,0.05419265106320381,-0.05100368335843086,-0.04778764396905899,-0.06809963285923004,0.05553892254829407,0.05952150374650955,-0.016455160453915596,0.005822636187076569,-0.04892997816205025,-0.024700313806533813,-0.05302247777581215,-0.030582210049033165,0.02807837352156639,-0.06490527838468552,-0.03711149841547012,0.017650697380304337,-0.014390060678124428,-0.06762462109327316,-0.01114468090236187,0.018615923821926117,0.06290893256664276,-0.007721409667283297,-0.05814613774418831,-0.05023878440260887,0.009184412658214569,0.07895425707101822,0.022693417966365814,-0.014488346874713898,-0.06097344681620598,-0.06606199592351913,0.050014227628707886,-0.00010221712727798149,-2.2829045320804653e-8,-0.007473400793969631,-0.03676668182015419,0.04796770587563515,0.09494567662477493,0.053761858493089676,-0.05432917922735214,0.029197096824645996,0.09520022571086884,0.07675700634717941,0.07771337777376175,-0.04099848493933678,0.00020232147653587162,0.014474517665803432,0.03900621831417084,0.021863596513867378,0.07092820852994919,0.02805780991911888,-0.004152212291955948,-0.04625537246465683,0.018235204741358757,-0.0258314348757267,-0.05422963201999664,-0.028771502897143364,0.07233357429504395,-0.017022719606757164,-0.00608067587018013,-0.07754549384117126,-0.01936940662562847,0.03163463622331619,-0.0003857572446577251,0.029746582731604576,-0.026169216260313988,-0.021159503608942032,-0.009308841079473495,-0.009493578225374222,0.006532813422381878,0.00983306672424078,-0.07271745055913925,-0.0014904015697538853,-0.09892930090427399,-0.009199338033795357,-0.0018932182574644685,-0.0056970855221152306,0.03779638558626175,0.03494769707322121,-0.11138751357793808,-0.07782714068889618,0.1159633919596672,-0.031069746240973473,0.009931675158441067,0.002403330523520708,-0.031007828190922737,0.04648829251527786,0.12465878576040268,-0.054720740765333176,-0.03137878328561783,0.0422765351831913,0.025674717500805855,0.06463900208473206,0.07389374822378159,0.025073250755667686,0.04746063053607941,0.005879698321223259,0.011321954429149628]},{"text":"Ah; but you didn’t tell them that we have an electric bell in it?","book":"Down and Out in Paris and London","chapter":27,"embedding":[0.047662824392318726,0.007794275414198637,0.0345199778676033,0.0187086071819067,-0.00622745743021369,-0.05968896299600601,0.07222285866737366,-0.09700924903154373,-0.004590050783008337,-0.004882874898612499,0.036057837307453156,0.023706816136837006,-0.006845835596323013,-0.009108645841479301,0.00025504527729935944,-0.07255557179450989,-0.007841168902814388,-0.1390935331583023,-0.04591968283057213,0.00722386222332716,0.0330594927072525,0.07929916679859161,0.08685282617807388,0.03717659041285515,-0.0006577145541086793,-0.0038173734210431576,0.005507666151970625,0.06784703582525253,-0.04994920268654823,0.01935170590877533,-0.028783675283193588,0.0032800801564007998,0.001214635674841702,-0.025484131649136543,-0.03732519596815109,0.024287110194563866,0.01428673043847084,-0.012190606445074081,0.05361715704202652,-0.020745031535625458,-0.0033838546369224787,-0.0456634946167469,0.05746982991695404,0.0009566370281390846,-0.010308505967259407,0.07405802607536316,-0.05242692679166794,-0.06618999689817429,0.009794323705136776,-0.10012344270944595,0.06918103247880936,0.023358052596449852,0.08012974262237549,0.0057360585778951645,-0.029717760160565376,0.007804234512150288,0.058348290622234344,-0.014949840493500233,0.03560088202357292,0.08164229243993759,0.0555138885974884,-0.03046870045363903,-0.04212317243218422,0.08152362704277039,-0.007818720303475857,0.00030917176627554,-0.061873532831668854,0.03412223234772682,0.010779757983982563,-0.0636952668428421,0.05190437659621239,-0.07000772655010223,0.012221889570355415,0.01712874136865139,-0.024320239201188087,-0.013387678191065788,0.05390296131372452,-0.06010342761874199,0.006109226960688829,0.019536107778549194,-0.09070001542568207,-0.10372557491064072,-0.08831555396318436,0.0442546121776104,0.05011235177516937,0.07609961926937103,0.03119562193751335,-0.01679389737546444,-0.1353604793548584,-0.02330455556511879,-0.009873771108686924,-0.10879330337047577,-0.019414378330111504,0.06907293200492859,0.005106306169182062,-0.05513506010174751,-0.041186150163412094,0.03222701698541641,-0.08955290168523788,0.04926096275448799,-0.030529234558343887,0.012914102524518967,-0.016931375488638878,0.05584520101547241,0.01307147927582264,-0.022935273125767708,-0.086098313331604,0.027314797043800354,0.03911394253373146,-0.07057008147239685,0.03367859870195389,0.028246736153960228,0.05355663597583771,0.03528992086648941,-0.004141152836382389,-0.08844967186450958,-0.012617567554116249,0.015779603272676468,0.03349446505308151,0.029808085411787033,0.07239405810832977,-0.07057742029428482,-0.12930555641651154,0.06675359606742859,-0.059325940907001495,-0.0014533106004819274,-0.04089954495429993,-5.243890584593794e-33,-0.028060730546712875,0.06089210882782936,0.06178708001971245,-0.051002200692892075,0.024342365562915802,0.050261303782463074,-0.07699883729219437,0.025741778314113617,0.00013648247113451362,0.05858101695775986,0.027790283784270287,0.022560950368642807,0.10055664926767349,-0.030976159498095512,0.04961295425891876,-0.06254031509160995,-0.037175122648477554,-0.03356641158461571,0.05969732254743576,-0.10026905685663223,0.053854286670684814,-0.06191873922944069,-0.004248551093041897,0.04451395198702812,0.01544740330427885,0.022784892469644547,-0.002462647622451186,-0.0509912446141243,0.0736796110868454,0.04158369079232216,0.010333186946809292,0.032523591071367264,0.07715462148189545,0.03399798274040222,-0.03208782523870468,0.019520781934261322,0.04622805863618851,-0.04640825092792511,-0.031077612191438675,-0.008872422389686108,0.04554077982902527,-0.04415617510676384,-0.040734972804784775,0.06125466153025627,0.050500039011240005,-0.028120307251811028,0.01790638454258442,-0.0409521646797657,-0.009612157940864563,-0.00768992118537426,0.02431141585111618,0.01236660685390234,0.07607804238796234,0.0006744543788954616,0.0582384318113327,0.03629836440086365,0.07378366589546204,-0.004008037503808737,0.052812609821558,-0.010261116549372673,-0.11288727819919586,0.020257828757166862,-0.0015236448962241411,-0.08465379476547241,0.045067980885505676,0.0010135723277926445,-0.0423312783241272,-0.020931009203195572,0.06421303004026413,-0.06792615354061127,0.015007808804512024,0.024912364780902863,-0.04504456743597984,0.0003081833419855684,-0.017806129530072212,0.022861048579216003,-0.09675148129463196,0.1172427237033844,0.11880982667207718,-0.08768268674612045,0.07580193877220154,-0.03742259368300438,-0.06936107575893402,0.02055342122912407,0.09394953399896622,-0.03415203094482422,0.02083708345890045,-0.01973060891032219,-0.04505183920264244,0.008203643374145031,-0.01682482473552227,0.05616248771548271,0.07495885342359543,0.02862943522632122,-0.055493634194135666,3.238133553526186e-33,-0.033198922872543335,0.025066163390874863,-0.05244548246264458,-0.05763324722647667,0.06841473281383514,0.04205923527479172,-0.016352582722902298,0.0025929827243089676,-0.05681988596916199,0.05417795479297638,0.023827694356441498,0.001433192053809762,-0.012223981320858002,0.00829549040645361,0.04782204329967499,0.017216360196471214,0.005626528989523649,0.019972514361143112,0.0066101523116230965,0.030715936794877052,-0.03451723977923393,0.03688619285821915,-0.0686655342578888,0.0268265213817358,-0.03615463525056839,0.04816018417477608,-0.014389385469257832,0.021940497681498528,-0.009003890678286552,-0.08964802324771881,-0.10229039937257767,-0.0030404466670006514,-0.08444802463054657,0.024453790858387947,-0.07761726528406143,-0.018152311444282532,0.09061416238546371,0.01877014897763729,-0.06221030652523041,-0.001289060222916305,-0.028306737542152405,0.013117710128426552,-0.0038723198231309652,0.07296326756477356,-0.08429048955440521,-0.02668958157300949,0.02915143221616745,-0.02796771004796028,-0.09311513602733612,0.016612233594059944,-0.004107610322535038,-0.07713689655065536,-0.02488546445965767,0.012618509121239185,-0.03576662391424179,0.026809943839907646,0.04793857783079147,0.02050543762743473,0.010913705453276634,-0.09941238909959793,0.11968610435724258,0.006667118985205889,0.02143998071551323,0.06567668169736862,0.01753867045044899,-0.02651311829686165,0.028424957767128944,0.09356755018234253,0.07981756329536438,-0.020911915227770805,0.06066955626010895,0.07547735422849655,-0.003995029255747795,-0.14805549383163452,0.039811406284570694,0.06818335503339767,-0.03558546304702759,-0.07993259280920029,-0.08884904533624649,-0.02805010788142681,0.023110490292310715,0.009828247129917145,-0.038871150463819504,-0.04341033473610878,0.08451181650161743,-0.10489094257354736,0.0549660250544548,-0.0057339598424732685,-0.07235600054264069,0.09571682661771774,-0.05821650102734566,0.057999949902296066,0.060409847646951675,-0.03641398996114731,0.02235996536910534,-2.2967391544170823e-8,0.023039279505610466,0.0831257775425911,0.07736484706401825,-0.06908156722784042,0.06570374220609665,-0.02597012184560299,0.06680896133184433,-0.03661103546619415,-0.04781389981508255,-0.027734749019145966,0.011043855920433998,-0.03578624874353409,0.056472547352313995,0.006432189140468836,0.11692235618829727,0.029851006343960762,-0.005780466832220554,-0.017860867083072662,-0.03529655560851097,-0.0003486666246317327,0.05410458892583847,0.11948634684085846,0.004284425172954798,0.03324327617883682,-0.04006695747375488,0.0063708932138979435,0.007473525125533342,-0.017241645604372025,0.0017779611516743898,0.04922083765268326,-0.06877623498439789,-0.013647276908159256,-0.002728425431996584,-0.028740810230374336,-0.05754580721259117,-0.10211341083049774,-0.014698494225740433,-0.041874371469020844,-0.006168633699417114,-0.0545041598379612,0.003994607366621494,-0.07249730080366135,-0.07759839296340942,0.10028202086687088,0.037202466279268265,-0.01793629489839077,-0.02461310848593712,-0.06068176031112671,-0.0051237973384559155,0.06404527276754379,0.022298840805888176,-0.0005574915558099747,-0.023675229400396347,-0.0032388544641435146,-0.025692125782370567,0.04608697444200516,-0.001271454500965774,-0.022954801097512245,-0.01728580705821514,-0.0503583662211895,0.014120844192802906,-0.02545809932053089,-0.07366353273391724,0.02509702742099762]},{"text":"Well, I’ll tell you something I’ve learnt, too.","book":"Down and Out in Paris and London","chapter":28,"embedding":[-0.0050933994352817535,-0.01747259311378002,0.02465837076306343,0.021684518083930016,0.03516380488872528,0.025513051077723503,0.044659968465566635,-0.00734652578830719,-0.07663656771183014,-0.04455331340432167,0.00806567631661892,0.03361710533499718,-0.0029409409034997225,-0.0027469026390463114,-0.023183638229966164,-0.00749295623973012,-0.019964197650551796,0.04919876158237457,-0.02771645411849022,-0.05348517373204231,-0.017551427707076073,0.025114208459854126,0.10467248409986496,0.012961188331246376,0.03242034465074539,0.04335234314203262,0.039205268025398254,0.018819792196154594,-0.0179402194917202,-0.09559158980846405,0.007692511659115553,0.015543666668236256,0.01267465390264988,0.016091492027044296,-0.06521037220954895,0.036403656005859375,-0.04974908381700516,-0.024527251720428467,0.0668216198682785,-0.012686723843216896,0.008167976513504982,0.037210725247859955,-0.02131703682243824,-0.013196281157433987,0.06163525581359863,0.05489925667643547,-0.05897475779056549,0.021806057542562485,-0.021444115787744522,-0.0643623024225235,-0.04850145801901817,-0.06536262482404709,-0.0347491018474102,0.006487653125077486,0.06725137680768967,0.029894057661294937,0.0013941347133368254,0.061381686478853226,-0.01846102625131607,0.008301859721541405,0.038094520568847656,-0.07835791260004044,-0.1093692034482956,0.08016958087682724,-0.10286568105220795,-0.00014243173063732684,-0.023288387805223465,0.10848617553710938,-0.03590308874845505,0.022177474573254585,-0.08500204980373383,0.023291517049074173,0.03485783934593201,0.015176610089838505,-0.04500554874539375,-0.03304672613739967,0.025581996887922287,-0.027854790911078453,-0.016486436128616333,0.008334827609360218,-0.029605835676193237,0.01746080443263054,-0.07172167301177979,0.00904302578419447,0.004619413521140814,-0.05390855669975281,0.07275065779685974,0.012288636527955532,-0.062015507370233536,-0.027276167646050453,0.06167113408446312,-0.0034033183474093676,-0.048544690012931824,0.02497320994734764,0.057726599276065826,-0.005643073003739119,-0.06294506788253784,0.04470077157020569,-0.09030111879110336,0.06439408659934998,0.014601496048271656,-0.010552777908742428,0.020090704783797264,0.04456708952784538,0.012350983917713165,0.018581131473183632,-0.09645473212003708,0.02970571629703045,0.02338024601340294,-0.06994491815567017,0.021329117938876152,0.022743334993720055,-0.06534139066934586,0.044353507459163666,0.028391586616635323,0.04349777102470398,0.027197392657399178,-0.0062599764205515385,0.009637655690312386,0.08287771046161652,0.017944326624274254,0.013808364979922771,0.01198918092995882,0.06904181838035583,-0.04799576476216316,-0.12018446624279022,-0.045346375554800034,-1.0043143084149366e-32,0.12387336790561676,0.026480870321393013,0.018160510808229446,0.10828254371881485,0.03286784887313843,0.01556005235761404,-0.0364777036011219,0.01799354888498783,-0.0038058068603277206,0.05930014327168465,0.10334832966327667,0.08197218179702759,-0.029618829488754272,0.003637508489191532,-0.005852993112057447,0.060634907335042953,-0.04028346389532089,-0.01607486605644226,0.056495070457458496,-0.03361337631940842,0.07844512909650803,-0.08739925920963287,0.07720829546451569,-0.14054818451404572,0.0542733371257782,-0.0681237205862999,0.06031417101621628,-0.02168048545718193,0.10638223588466644,0.023444727063179016,0.017491191625595093,0.04080354794859886,-0.04772862419486046,-0.013983313925564289,0.02207574062049389,0.004961288534104824,-0.02315829135477543,-0.05820140242576599,-0.010049978271126747,-0.006594848353415728,-0.024624686688184738,-0.06699540466070175,0.02059534192085266,-0.020910760387778282,-0.03572931885719299,0.01263420283794403,-0.0375443659722805,-0.10120177268981934,-0.11256265640258789,-0.00252376776188612,-0.013643779791891575,-0.03887748718261719,-0.025564011186361313,-0.04525188356637955,-0.012995613738894463,0.05008791387081146,0.02890203706920147,0.05419914424419403,-0.054075658321380615,0.04018017649650574,-0.05744634196162224,0.0356714241206646,0.04862320050597191,0.03444620221853256,-0.07134944945573807,0.07052455097436905,-0.08313196152448654,-0.0014324255753308535,0.07845029979944229,-0.037118762731552124,-0.07872303575277328,0.05390448868274689,-0.030084267258644104,0.055292483419179916,-0.020243864506483078,-0.07627638429403305,-0.05414794012904167,-0.0820053294301033,0.09140525013208389,-0.016157515347003937,0.07438536733388901,-0.002221170114353299,-0.021097032353281975,-0.019630029797554016,0.018931875005364418,0.03638986498117447,0.08498972654342651,-0.05462494492530823,0.01950758509337902,0.013755930587649345,-0.06755863130092621,-0.035563915967941284,0.04227373003959656,-0.03215434029698372,-0.016628585755825043,4.9136075287394406e-33,-0.03061024099588394,0.04137754812836647,-0.04333209618926048,0.03860620781779289,0.008332943543791771,-0.005441099870949984,-0.0036306222900748253,0.12750568985939026,-0.07143805176019669,0.025800172239542007,-0.004862173460423946,0.02015696093440056,-0.14318346977233887,0.034307628870010376,0.012544382363557816,-0.007382327225059271,-0.06454194337129593,-0.01195777952671051,0.006633270997554064,-0.0007230981718748808,-0.14716900885105133,0.05509479343891144,-0.029391923919320107,0.019998610019683838,-0.006052752025425434,0.013960610143840313,0.046138063073158264,0.046930134296417236,-0.008640279062092304,-0.008597241714596748,0.034285664558410645,-0.010655722580850124,-0.11790405213832855,-0.02354033850133419,-0.030060259625315666,0.04884667694568634,-0.0014661408495157957,-0.08152186125516891,-0.017015254124999046,-0.004305432550609112,0.017268389463424683,0.007021586876362562,-0.0016261644195765257,-0.038601215928792953,-0.012532654218375683,-0.06846515089273453,0.02978607825934887,0.07083319127559662,0.082255519926548,0.030883990228176117,0.09134361147880554,-0.09341124445199966,-0.039993561804294586,-0.09601078182458878,0.03524134308099747,-0.05836939066648483,0.08160264045000076,-0.024881713092327118,0.03186296299099922,-0.0075454674661159515,-0.01942748948931694,0.007972891442477703,-0.08720837533473969,0.0825299546122551,0.00965150911360979,-0.03450676426291466,-0.06263759732246399,0.027360478416085243,0.030787859112024307,-0.009099896997213364,0.018628789111971855,0.02601495385169983,-0.0842636451125145,-0.09235270321369171,-0.012409537099301815,0.023764658719301224,-0.0006447689956985414,-0.05247263237833977,-0.09838920831680298,0.013664019294083118,0.03282467648386955,-0.07357678562402725,0.0960618406534195,0.06503631919622421,0.02805202081799507,0.1120402067899704,0.047180548310279846,0.03931396082043648,0.036558136343955994,-0.00409340625628829,-0.0650285929441452,0.03378542885184288,-0.0077837384305894375,-0.09437539428472519,-0.023318246006965637,-2.6645661677093813e-8,-0.03587538003921509,-0.03716344013810158,0.010939845815300941,0.02441796474158764,0.04588055983185768,-0.002019373467192054,0.017127078026533127,0.09655916690826416,-0.102419413626194,-0.08331184834241867,-0.0037436308339238167,0.04894102364778519,-0.009447279386222363,0.009127803146839142,0.11953883618116379,0.05134942755103111,0.09204366058111191,-0.042433105409145355,-0.00013203098205849528,-0.029713889583945274,0.04467420279979706,0.0424545481801033,0.09738417714834213,-0.02848845347762108,-0.007586119696497917,-0.05083437263965607,-0.056921955198049545,0.06447751820087433,0.01498851552605629,0.03688663989305496,0.019595814868807793,0.019522152841091156,0.004732183180749416,-0.011203480884432793,0.060385528951883316,0.02423149161040783,0.029598724097013474,-0.11579064279794693,0.0013381702592596412,-0.014492386020720005,-0.07456892728805542,-0.03743817284703255,0.06992168724536896,0.05197557434439659,-0.059228431433439255,0.0417056605219841,0.01507907547056675,-0.0306317750364542,-0.017742520198225975,0.0036646793596446514,0.05244297534227371,0.06261121481657028,-0.0005580803263001144,0.05262364447116852,0.1297370046377182,-0.040877144783735275,-0.058334145694971085,-0.034483931958675385,0.023800531402230263,0.06648404151201248,0.037911318242549896,0.057641368359327316,0.007545837666839361,0.006539813708513975]},{"text":"NICOLA. (_appearing at the house door_).","book":"Down and Out in Paris and London","chapter":28,"embedding":[-0.023725267499685287,-0.0015166226075962186,0.045594263821840286,0.01742737926542759,-0.0014889984158799052,0.011351714842021465,0.10106450319290161,-0.040687963366508484,-0.01932385563850403,-0.03394521027803421,-0.04862247034907341,-0.07468664646148682,-0.024789616465568542,-0.007384889293462038,0.020673707127571106,-0.00183968769852072,0.018665090203285217,-0.05837521702051163,0.04122328758239746,0.0699535384774208,-0.07591702789068222,-0.0017493009800091386,0.01738731376826763,0.06598365306854248,0.021034980192780495,0.020589852705597878,0.06230221688747406,0.0024136402644217014,-0.015588843263685703,-0.015045905485749245,-0.02829953469336033,-0.050496142357587814,-0.040620870888233185,0.010997390374541283,0.0031972615979611874,0.06491619348526001,0.030611222609877586,0.0475628636777401,-0.012309457175433636,-0.04557843878865242,-0.008611845783889294,-0.0932944118976593,-0.0017360172932967544,0.025220295414328575,0.05009112507104874,-0.022728677839040756,0.0479806587100029,-0.029691914096474648,-0.021338077262043953,-0.032697249203920364,-0.08111423254013062,0.05629768222570419,-0.081538625061512,0.04532143473625183,0.0005910604377277195,0.018424533307552338,0.048956628888845444,-0.02593974396586418,0.015037421137094498,0.06148150563240051,-0.06182197853922844,0.036183442920446396,-0.07310664653778076,0.09769473969936371,0.008484993129968643,-0.018214866518974304,-0.053825803101062775,-0.03915133699774742,0.05338761955499649,0.02111040987074375,0.07895730435848236,-0.014889910817146301,-0.0025125041138380766,-0.04900234565138817,-0.008135072886943817,-0.04392574727535248,0.00994165986776352,-0.013332946226000786,0.07403305172920227,0.061021871864795685,0.019994385540485382,-0.04936911165714264,-0.07864782959222794,0.03512659668922424,0.014700198546051979,0.04970390349626541,0.013571877963840961,-0.11371494084596634,-0.05307067185640335,0.02991284616291523,-0.06892575323581696,0.00010372692486271262,-0.04028185084462166,0.057540737092494965,-0.029867378994822502,-0.025973860174417496,-0.03559590131044388,0.01786412112414837,-0.01109759695827961,0.086818166077137,-0.06544612348079681,0.07282384485006332,-0.043749548494815826,0.05912568420171738,-0.0862736627459526,-0.006685041356831789,-0.029368001967668533,-0.08010489493608475,0.014822641387581825,-0.026290813460946083,-0.031723503023386,-0.03230860456824303,-0.04493575915694237,-0.008997276425361633,0.05316058546304703,-0.004840645473450422,0.03176194056868553,-0.0026402208022773266,0.03696484491229057,0.07366117835044861,0.04159380868077278,0.0921732559800148,-0.024706879630684853,0.05463714152574539,0.006446953397244215,0.013253218494355679,0.013213892467319965,-6.398680806478255e-33,-0.005990754812955856,0.03041175752878189,0.06089470908045769,0.04940347000956535,-0.0017106645973399282,0.11582370847463608,-0.0708303153514862,0.02484574168920517,-0.03626244515180588,0.0015491194790229201,0.034267619252204895,-0.05924023687839508,-0.04750293865799904,-0.025111759081482887,-0.07305821031332016,0.12325519323348999,0.06014512479305267,0.01632959395647049,-0.056395791471004486,-0.0009701728704385459,0.03180244565010071,0.09639500826597214,-0.0652938112616539,0.1293274313211441,-0.011877243407070637,-0.06398230046033859,0.019421542063355446,0.003389335237443447,0.04600377008318901,0.02246149815618992,-0.007263421081006527,0.06867777556180954,0.0031325502786785364,0.060903795063495636,-0.02771489880979061,-0.04671222344040871,-0.0347672775387764,-0.10658317804336548,-0.0469755120575428,0.0025182003155350685,-0.06254925578832626,0.0005817016935907304,0.07156882435083389,0.01671830751001835,-0.16668134927749634,-0.0688319206237793,0.06685123592615128,0.05089786648750305,0.03754289448261261,0.005136246792972088,-0.02772851474583149,0.024675456807017326,-0.03226327896118164,0.07230227440595627,-0.02385038696229458,-0.07909459620714188,0.01641124300658703,-0.011109674349427223,0.07805382460355759,-0.016558263450860977,0.05632970109581947,0.046656642109155655,0.07673908770084381,-0.02280568517744541,0.036637235432863235,-0.17686234414577484,-0.023498767986893654,-0.011075536720454693,0.0822291299700737,0.03448754921555519,-0.029773565009236336,0.08007533103227615,0.008174662478268147,-0.027476763352751732,-0.058781947940588,0.00867697037756443,-0.0743386447429657,0.06426876038312912,-0.0065161134116351604,0.0002778726629912853,-0.05182689055800438,-0.006936442106962204,-0.01760909892618656,0.06947031617164612,0.00733784306794405,-0.012970211915671825,-0.024954430758953094,-0.09720803797245026,-0.026713097468018532,0.03524249792098999,0.006464733276516199,-0.023728786036372185,0.006290164310485125,-0.017907291650772095,-0.15750810503959656,2.790161105293459e-33,0.04016497731208801,0.0005639282171614468,-0.0468110665678978,-0.020034240558743477,-0.036137718707323074,-0.05374179407954216,-0.03757266700267792,-0.03798510506749153,0.04239466041326523,0.021660324186086655,0.02033407613635063,-0.04090185463428497,0.13849589228630066,-0.03006073459982872,0.051284320652484894,0.033034797757864,0.0463024377822876,-0.04804794117808342,0.036557648330926895,0.022039229050278664,-0.045754726976156235,0.0005319153424352407,-0.09800481051206589,-0.01636185124516487,0.0008582926238887012,-0.047744620591402054,0.1712806075811386,0.015172922052443027,-0.08334868401288986,-0.010584198869764805,-0.12051009386777878,-0.041034892201423645,-0.07290221005678177,-0.018272751942276955,0.028915582224726677,0.09425803273916245,0.0526818186044693,-0.0719582810997963,-0.0037136173341423273,-0.024747055023908615,0.015846313908696175,-0.004012986086308956,0.0299114678055048,0.07376693189144135,0.019825845956802368,-0.014440268278121948,-0.0022552846930921078,0.09359961003065109,0.036190155893564224,0.056136902421712875,0.02017367258667946,0.006078009027987719,-0.04794841632246971,-0.006828166078776121,0.000606238900218159,0.06266770511865616,0.005575235933065414,0.007828098721802235,0.12731750309467316,0.037454888224601746,-0.00841838214546442,-0.02271527424454689,-0.01970572955906391,-0.028726402670145035,-0.025561435148119926,0.018627315759658813,-0.12280046939849854,0.03115016035735607,-0.002784525277093053,-0.021276352927088737,0.06876083463430405,-0.08027904480695724,-0.010779120028018951,-0.011790614575147629,-0.029679616913199425,0.029827821999788284,0.04054646193981171,-0.0027525874320417643,0.04204363003373146,-0.020972687751054764,-0.06566520035266876,-0.1062157079577446,0.023345058783888817,-0.008104872889816761,0.056078437715768814,-0.11405471712350845,0.00014986685710027814,0.023777730762958527,0.028532616794109344,0.008774482645094395,0.03618486598134041,0.05079558119177818,0.05361847206950188,-0.07265753298997879,-0.004114009905606508,-1.9195944389593933e-8,0.02500293403863907,-0.03520131856203079,0.005966117139905691,-0.06550972163677216,0.10635963082313538,0.010522207245230675,0.04405546560883522,0.007537188474088907,-0.07335194200277328,0.0608162060379982,-0.008908774703741074,0.009327208623290062,0.08609770238399506,-0.1383340060710907,0.12010125815868378,-0.007626363541930914,-0.02358974516391754,0.05400364100933075,-0.06784621626138687,0.036354754120111465,0.0014486241852864623,0.007848451845347881,0.006727869156748056,-0.020032618194818497,-0.04054137319326401,-0.005648345686495304,0.04217182844877243,0.015977516770362854,-0.057292915880680084,0.024311823770403862,0.0270462054759264,0.05132370442152023,-0.042693041265010834,-0.0400402769446373,-0.03943181410431862,0.0164421945810318,-0.043985478579998016,0.025275766849517822,0.006883587688207626,0.03298905864357948,-0.042101312428712845,-0.10440674424171448,-0.05662887915968895,-0.004082284867763519,0.009975959546864033,0.041588928550481796,0.08508764207363129,-0.0690465122461319,-0.02047160640358925,-0.039868663996458054,-0.02833128347992897,0.03554003685712814,0.07242077589035034,0.004529647994786501,0.026201976463198662,0.05168876051902771,0.061440784484148026,-0.04200121387839317,-0.015871955081820488,0.01058284379541874,0.006309521850198507,0.00570004852488637,-0.024382369592785835,0.02252236008644104]},{"text":"Besides, the country should insist on having at least one native general.","book":"Down and Out in Paris and London","chapter":28,"embedding":[0.010776802897453308,0.006755543872714043,0.032439302653074265,-0.03913140296936035,-0.07989781349897385,-0.031965602189302444,0.02911427989602089,-0.10630877315998077,-0.06171773746609688,0.03769371286034584,-0.016501711681485176,-0.004989126231521368,-0.021870797500014305,-0.003393239574506879,-0.022731779143214226,0.04522104933857918,-0.03544311225414276,0.06224347651004791,0.06614798307418823,0.05170651897788048,-0.025575682520866394,-0.06096078082919121,0.07138608396053314,0.08075583726167679,0.005939552094787359,-0.10811873525381088,0.05978307127952576,0.013380901888012886,-0.018417716026306152,0.028792550787329674,0.013488666154444218,-0.011097819544374943,0.010540870018303394,0.08909294754266739,-0.06033266708254814,0.006735149305313826,-0.009780250489711761,0.045784104615449905,0.020829182118177414,-0.04373582825064659,0.053579386323690414,0.013572867028415203,0.06083698198199272,0.05696811527013779,0.012760750018060207,-0.05281120911240578,-0.019221173599362373,-0.04107217863202095,0.009226784110069275,0.03153601288795471,0.11010092496871948,-0.022339345887303352,-0.040144216269254684,-0.05190134420990944,0.026231013238430023,-0.026294220238924026,-0.10390400141477585,-0.10243675112724304,0.030821172520518303,0.054597530514001846,-0.06386339664459229,0.04350921884179115,-0.0005103949806652963,-0.03316233679652214,0.06850413233041763,-0.006855665240436792,-0.009127548895776272,0.00962803978472948,-0.07331512868404388,0.025780903175473213,0.009429121389985085,0.040492162108421326,0.045069437474012375,0.11079154163599014,-0.08074072003364563,-0.07595165818929672,-0.06227724999189377,0.12491736561059952,-0.05059026926755905,0.040982019156217575,-0.025625012814998627,0.10226897150278091,0.023420508950948715,-0.034228041768074036,0.12391539663076401,-0.03555368259549141,-0.015130221843719482,-0.10706616193056107,-0.05521528050303459,-0.01599891670048237,0.04870201647281647,-0.007893460802733898,0.12740138173103333,0.04221969470381737,0.09293503314256668,0.034266382455825806,0.07280804216861725,0.0166233628988266,-0.09217340499162674,0.047677282243967056,0.007815610617399216,-0.04275841265916824,-0.002609243616461754,0.06510733813047409,-0.12848155200481415,0.0021826080046594143,-0.056727051734924316,-0.06664735823869705,-0.002415245398879051,-0.0484476201236248,0.06014019995927811,0.04738627374172211,-0.018151238560676575,0.08611513674259186,0.02339535392820835,0.05811726674437523,0.028043454512953758,-0.017074434086680412,-0.009210856631398201,-0.04942961409687996,-0.09109001606702805,-0.02430068515241146,-0.052791349589824677,-0.03808906301856041,0.06540008634328842,0.06976435333490372,0.022405754774808884,-4.7560148785964506e-33,-0.013494560495018959,0.02212473377585411,0.042540162801742554,0.018248047679662704,-0.057751018553972244,-0.015111551620066166,0.00101613556034863,-0.06633083522319794,0.015173465944826603,-0.039533741772174835,-0.04645285755395889,-0.031560126692056656,0.033809784799814224,-0.025253914296627045,0.010334348306059837,0.11057272553443909,-0.010779524222016335,0.014223908074200153,0.027568046003580093,0.014131643809378147,0.05380851402878761,0.07106731832027435,-0.06594337522983551,0.07210216671228409,-0.06871087104082108,0.018272949382662773,0.04803970083594322,0.0004984976258128881,-0.002131612505763769,-0.00015672265726607293,-0.026179781183600426,-0.07804784178733826,-0.005222904961556196,0.020806260406970978,0.02537563443183899,-0.06042291596531868,0.01718662679195404,-0.02641911990940571,-0.003983478993177414,0.0016693673096597195,0.01550210826098919,0.0345197468996048,-0.018993599340319633,0.08199288696050644,0.09546281397342682,0.009113207459449768,0.08200006186962128,0.0244674701243639,-0.021403593942523003,0.08513542264699936,-0.04138236865401268,0.021476125344634056,-0.00795836467295885,0.008793619461357594,0.010785982944071293,0.010000338777899742,0.002390259178355336,0.07115031778812408,0.0034033104311674833,-0.0265475045889616,-0.009313237853348255,-0.016049550846219063,-0.0096654761582613,0.09103216230869293,0.027813779190182686,0.0023758048191666603,-0.051272984594106674,-0.005787063855677843,-0.022108588367700577,-0.07323506474494934,0.05878393352031708,-0.01274716854095459,-0.06782914698123932,0.031804490834474564,-0.10833969712257385,0.05967618525028229,0.11135394871234894,0.006261237896978855,0.012985693290829659,-0.051358237862586975,-0.03359414264559746,-0.016590820625424385,0.023932714015245438,0.015620262362062931,0.017590930685400963,-0.04891626536846161,0.0823526531457901,-0.0436088927090168,0.04607081785798073,-0.027574531733989716,-0.030563408508896828,0.04702165722846985,0.002868734998628497,-0.025725718587636948,-0.029541881754994392,2.3138631002967532e-33,-0.015346563421189785,-0.02826519124209881,0.01111426018178463,0.0019897487945854664,0.07726690173149109,0.026692328974604607,0.012371641583740711,-0.09053216129541397,-0.02506232261657715,-0.03421417623758316,0.0057812342420220375,0.019353313371539116,0.049324724823236465,0.09555915743112564,0.016939137130975723,0.05100703239440918,-0.01959260180592537,-0.006959875579923391,0.009483090601861477,0.05928463488817215,-0.014359007589519024,0.05476683750748634,-0.055951498448848724,0.06464818120002747,-0.02776593342423439,0.01576852798461914,-0.07587949931621552,-0.028525035828351974,-0.12771160900592804,-0.06109107285737991,-0.001948460703715682,-0.007161817513406277,-0.09084261953830719,-0.04099366068840027,-0.01822400465607643,-0.018680108711123466,0.018955273553729057,0.04638819023966789,-0.008051958866417408,0.15325285494327545,-0.059048328548669815,0.025756895542144775,0.02720441296696663,-0.012149045243859291,-0.060540273785591125,0.022491544485092163,0.09401675313711166,-0.022387605160474777,-0.09166596829891205,-0.08127503842115402,-0.08773771673440933,0.045314013957977295,-0.02843506634235382,-0.07079967856407166,-0.02728777937591076,-0.05644991993904114,0.019792431965470314,-0.04295700043439865,0.08491239696741104,-0.014014627784490585,0.012409579008817673,0.007766056340187788,0.00943311769515276,-0.09702161699533463,-0.05450240522623062,-0.044564731419086456,-0.018157830461859703,0.0703062117099762,0.0736779049038887,0.010022190399467945,0.052021853625774384,-0.11232354491949081,-0.05993906036019325,0.033604659140110016,-0.046585164964199066,0.06407319754362106,0.02751048281788826,-0.0387309305369854,0.041262947022914886,-0.04976126179099083,-0.007490829564630985,-0.09270092099905014,-0.010784096084535122,-0.05077993869781494,0.018186455592513084,0.024115772917866707,0.04965975880622864,-0.036444444209337234,0.09155862033367157,0.05527537688612938,-0.037199683487415314,-0.02317916415631771,-0.07145871967077255,-0.047153785824775696,0.016201216727495193,-2.2454820225448202e-8,-0.01810184121131897,-0.0253610722720623,-0.0697869062423706,0.04901381954550743,-0.06148204207420349,-0.0164360199123621,-0.07285022735595703,-0.05865008383989334,0.048838891088962555,0.02648540586233139,0.05330746993422508,-0.05818839743733406,0.00447352509945631,0.005121783819049597,0.02738187648355961,-0.010024378076195717,-0.008001288399100304,0.03241245821118355,-0.11372380703687668,0.03868955373764038,-0.10985500365495682,-0.0033051730133593082,0.014839205890893936,-0.057913888245821,-0.0007742321467958391,-0.022471588104963303,0.05559803172945976,-0.01310819387435913,0.03757285699248314,0.08699709922075272,-0.03486497700214386,0.02120894007384777,-0.08383738249540329,0.03710029646754265,0.025064975023269653,0.017034869641065598,-0.04782426357269287,0.011626951396465302,0.05307592451572418,-0.08266738802194595,-0.05182565376162529,0.10326594114303589,0.04651389271020889,0.09954456239938736,0.04718152433633804,-0.044221874326467514,0.021245989948511124,-0.015138416551053524,0.013628555461764336,-0.011597227305173874,0.04233352094888687,-0.008952195756137371,-0.0022022922057658434,0.08138465881347656,0.07493677735328674,0.04177725315093994,-0.001153401331976056,0.050989825278520584,0.0007552257739007473,-0.026324238628149033,-0.05151313170790672,-0.0030286081600934267,-0.006655521225184202,-0.037811003625392914]},{"text":"But his remarkable personal distinction is of a characteristically civilized type.","book":"Down and Out in Paris and London","chapter":28,"embedding":[0.12141004204750061,0.05957925692200661,-0.03490525484085083,-0.00007900188211351633,-0.03748968243598938,-0.052832040935754776,0.08531106263399124,-0.062032245099544525,-0.10985714942216873,0.010367373935878277,0.015293256379663944,-0.08122074604034424,-0.01069101132452488,0.040537379682064056,0.0004996630013920367,-0.050422560423612595,-0.011359216645359993,-0.0048581394366919994,0.005734187550842762,0.06312035769224167,-0.03541308268904686,0.05836871638894081,0.0883423388004303,-0.008538349531590939,-0.0016129928408190608,-0.04344584420323372,0.09814721345901489,0.039959751069545746,0.0713554248213768,0.014277693815529346,-0.012795532122254372,-0.0014821221120655537,0.0385516993701458,0.027930954471230507,-0.032326120883226395,0.05898408964276314,-0.004838694352656603,0.09652896225452423,0.055821530520915985,-0.051700953394174576,0.010943019762635231,0.007645385339856148,0.03381630778312683,0.01371506042778492,-0.029250066727399826,-0.04716124013066292,-0.03639546036720276,-0.03771016374230385,-0.04425402730703354,-0.03855917602777481,-0.004764717537909746,0.03117043524980545,-0.05602150410413742,-0.05836829915642738,-0.031849879771471024,0.024453697726130486,-0.003944864962249994,-0.010816712863743305,-0.009535503573715687,-0.0020731238182634115,0.01530354656279087,0.024060646072030067,-0.015357336029410362,0.006882591638714075,-0.004903281107544899,0.006191690918058157,0.0017458192305639386,0.04788495600223541,-0.07224715501070023,0.03369401767849922,-0.011587078683078289,0.029119402170181274,0.05758829787373543,0.07856334745883942,-0.036752402782440186,-0.14260247349739075,0.0025613897014409304,0.03462843969464302,-0.023789482191205025,0.048085764050483704,-0.04176655411720276,0.04053545743227005,-0.015962814912199974,-0.014363509602844715,0.050947461277246475,-0.016823112964630127,-0.027811216190457344,-0.10587337613105774,0.028414105996489525,0.010657800361514091,-0.001356596825644374,-0.001266034203581512,0.09566892683506012,-0.06769181787967682,-0.03707605227828026,-0.0012560574105009437,0.023290667682886124,0.04925280809402466,-0.002910470124334097,0.03266153484582901,0.005239906720817089,-0.025287652388215065,-0.013649196363985538,0.06412860751152039,0.04704456031322479,-0.0526098795235157,-0.028555728495121002,-0.051547709852457047,-0.09622440487146378,-0.06671732664108276,-0.04566597193479538,-0.06296753138303757,-0.048870451748371124,-0.005521083250641823,0.11373794078826904,0.08427274227142334,-0.030955845490098,0.009471391327679157,0.004568965174257755,-0.013768978416919708,0.04180711507797241,-0.007861350663006306,-0.04764987528324127,0.02433529496192932,0.022003307938575745,-0.02734074927866459,0.07698144763708115,-3.1463814439987064e-33,-0.025189299136400223,-0.014430208131670952,-0.047191113233566284,0.046985916793346405,-0.016133971512317657,0.03768384829163551,-0.055699944496154785,-0.025552969425916672,0.04177442565560341,0.020132653415203094,0.0592859648168087,0.07724431902170181,0.00967891700565815,0.07358111441135406,-0.0564274936914444,0.11164208501577377,-0.09517044574022293,-0.03483564779162407,0.027961771935224533,-0.02068965695798397,0.033670250326395035,0.11953030526638031,-0.011716736480593681,0.005421533714979887,0.048750586807727814,-0.06050892546772957,0.07038699835538864,-0.04684307053685188,-0.054538972675800323,-0.005035152658820152,-0.01846807263791561,0.03157178685069084,-0.016782347112894058,0.032973337918519974,0.11029457300901413,0.05437863990664482,-0.053605593740940094,-0.01768888533115387,0.02583295665681362,0.04554223641753197,0.0569678358733654,0.04947362467646599,0.0073779006488621235,-0.012276039458811283,0.024419277906417847,0.06688689440488815,-0.00001256310770259006,0.0038207198958843946,-0.07032442092895508,0.022202707827091217,-0.00746157905086875,0.007878290489315987,0.05872638523578644,-0.028547072783112526,-0.042433422058820724,0.004601421765983105,0.03781856968998909,0.18338483572006226,-0.0014349350240081549,0.00874949712306261,-0.02363368310034275,-0.015818839892745018,0.031209897249937057,-0.026227155700325966,0.03610628470778465,-0.06500131636857986,-0.0875929519534111,0.061369799077510834,-0.05147846043109894,0.007963174022734165,0.009780284017324448,0.03270335495471954,-0.029699858278036118,-0.04655078426003456,-0.055210959166288376,-0.011747355572879314,0.058533307164907455,-0.05805445834994316,-0.01906186155974865,-0.027335412800312042,-0.1214468702673912,0.06283219903707504,-0.024481873959302902,-0.04812309890985489,-0.06541773676872253,0.0424627847969532,0.053060222417116165,-0.05240306630730629,0.10942237824201584,0.030390068888664246,0.010696515440940857,0.006323709152638912,-0.02825118787586689,-0.07767784595489502,-0.13266530632972717,-6.4512098837611605e-34,-0.060871172696352005,-0.01979971118271351,-0.009700077585875988,0.1116848811507225,0.007947790436446667,-0.004302792716771364,-0.04189397767186165,0.10900085419416428,-0.04981407895684242,-0.01664983667433262,-0.02717895433306694,0.017777297645807266,0.08369520306587219,-0.011514369398355484,0.08341091871261597,0.020131494849920273,-0.04313879832625389,0.08777191489934921,-0.034499455243349075,0.06817805022001266,0.0074456920847296715,0.05036192387342453,-0.05493783950805664,-0.08847227692604065,-0.10243797302246094,0.00734771927818656,-0.14370296895503998,-0.005331766791641712,-0.03941202163696289,-0.035590045154094696,0.030472440645098686,0.024744758382439613,-0.0782545730471611,-0.064952053129673,-0.01583949849009514,0.038496214896440506,0.03303775191307068,-0.005406847223639488,0.027416879311203957,0.03711186721920967,-0.030767865478992462,0.01771622523665428,0.00041688865167088807,0.024653641507029533,0.0401587076485157,0.010903776623308659,-0.027100220322608948,-0.0647985190153122,-0.05660693347454071,-0.010736336000263691,-0.11491044610738754,-0.003209050977602601,-0.026618096977472305,0.007614803500473499,0.028441047295928,-0.04098379984498024,0.006213048007339239,-0.033430490642786026,-0.050678227096796036,-0.010312825441360474,-0.050984788686037064,-0.022674040868878365,-0.006520019378513098,0.08682197332382202,0.014886344783008099,-0.02187281847000122,-0.05578700825572014,0.01966742053627968,-0.016027305275201797,-0.022184904664754868,-0.019451046362519264,-0.07497796416282654,-0.0791546031832695,-0.07788611203432083,-0.009725331328809261,-0.027930228039622307,0.0817694216966629,0.004725382197648287,0.03918486088514328,0.011365699581801891,0.018321217969059944,-0.08843537420034409,0.02356187254190445,-0.05764590576291084,-0.06610745936632156,0.05836565047502518,-0.08824477344751358,-0.02502129226922989,0.06752501428127289,0.033024758100509644,0.0321829728782177,-0.11949646472930908,-0.08219015598297119,-0.02379530481994152,0.012008095160126686,-2.3291475415021523e-8,-0.032922495156526566,-0.016607506200671196,-0.02739236131310463,0.04445527121424675,-0.03185221552848816,0.059842225164175034,-0.04818882420659065,-0.05138225480914116,-0.030102087184786797,0.1158396303653717,-0.05010122433304787,0.035386983305215836,-0.033167798072099686,0.05920947343111038,0.024021567776799202,0.006461346987634897,0.019318874925374985,-0.026524275541305542,-0.032357893884181976,0.07506575435400009,-0.009686427190899849,0.0019004733767360449,0.028341209515929222,-0.02343170903623104,-0.05664021149277687,0.04493065923452377,-0.10125300288200378,-0.060129135847091675,0.03877956047654152,0.08507471531629562,0.026704709976911545,0.083249032497406,-0.07233784347772598,-0.062099479138851166,0.04049836844205856,0.01647741161286831,-0.04620042070746422,0.005904879420995712,0.117948517203331,-0.011884070932865143,-0.008418507874011993,0.020484942942857742,-0.0030313553288578987,0.09127072989940643,0.1610746681690216,-0.0444645918905735,0.0449492409825325,0.018467463552951813,-0.000666496460326016,0.043017808347940445,0.028816621750593185,0.023959267884492874,0.0486038476228714,-0.030964434146881104,0.0464458204805851,-0.0638699010014534,0.018180957064032555,0.0065483348444104195,-0.01982639729976654,0.01899843104183674,0.054329268634319305,-0.049872588366270065,0.040512241423130035,-0.07048363238573074]},{"text":"Petkoff is distinctly less disposed to make a fuss about him._) PETKOFF.","book":"Down and Out in Paris and London","chapter":29,"embedding":[0.05280020833015442,0.03182179108262062,-0.0980646163225174,-0.06968048959970474,-0.010382059961557388,0.00864851102232933,0.07885638624429703,0.05579405277967453,0.012283156625926495,-0.003022635355591774,-0.0466025173664093,0.017668720334768295,-0.10680386424064636,0.013771375641226768,-0.07470261305570602,-0.005925358738750219,0.03654732182621956,-0.028063159435987473,-0.0075305309146642685,0.10003886371850967,-0.08377998322248459,-0.006812672130763531,0.08603279292583466,-0.010571980848908424,0.022626372054219246,-0.043136920779943466,0.04000948742032051,-0.026972617954015732,0.07370451837778091,0.026774659752845764,0.07928760349750519,0.07143078744411469,-0.04417209327220917,-0.006196638103574514,-0.0624680258333683,-0.012772191315889359,0.02247459627687931,0.03590776398777962,0.010732684284448624,-0.014820445328950882,0.02699992060661316,0.009484346956014633,-0.12446273118257523,0.0077697960659861565,-0.06311553716659546,0.02583552524447441,-0.01782398298382759,-0.08229974657297134,-0.06485313177108765,-0.10568539798259735,-0.06759869307279587,-0.036737971007823944,-0.013828909024596214,-0.1368715763092041,-0.034388184547424316,-0.04840349033474922,0.0034014645498245955,-0.0027667724061757326,-0.04816873371601105,0.059839751571416855,-0.03466322645545006,-0.03166522830724716,-0.03380245715379715,0.0818307101726532,0.06696314364671707,-0.024165231734514236,-0.021900173276662827,-0.013822892680764198,-0.07586871087551117,0.0823698490858078,-0.005300050135701895,0.015987925231456757,0.02694428525865078,0.0028804405592381954,-0.09760875999927521,-0.07814782857894897,0.04057630896568298,0.03414316847920418,0.09854195266962051,-0.03033963404595852,0.03933453559875488,0.00450714910402894,0.005484032444655895,0.03939373046159744,0.1017179861664772,-0.11637196689844131,0.059186920523643494,-0.022637400776147842,-0.0008822765666991472,0.03015073761343956,0.05869844928383827,0.1393294334411621,0.04674653336405754,0.0071010896936059,-0.06179749593138695,-0.007492343429476023,0.02672714926302433,0.07581619173288345,-0.08917850255966187,0.05306364968419075,-0.05229745805263519,0.05675094947218895,0.01749894767999649,0.012713584117591381,-0.01749502494931221,-0.033849455416202545,-0.01382144819945097,-0.10500485450029373,-0.005491290707141161,0.028081759810447693,-0.07339955866336823,0.0025671746116131544,-0.023436984047293663,-0.025585133582353592,0.0764324963092804,-0.03308776021003723,-0.03129381313920021,0.014687655493617058,0.035400863736867905,-0.012057027779519558,-0.03223082423210144,0.048533037304878235,-0.05249110236763954,0.1235508844256401,-0.018076308071613312,-0.005444083828479052,-0.11226645857095718,-3.509110347987663e-33,-0.0043042744509875774,0.026690278202295303,-0.029466504231095314,-0.012761376798152924,-0.00719005661085248,0.06816281378269196,-0.027337696403265,-0.03902266547083855,0.0973498597741127,0.05010468140244484,-0.02487664297223091,-0.004194728564471006,-0.017485035583376884,-0.04011506214737892,-0.05063062906265259,0.04980616271495819,-0.0284898541867733,0.055972155183553696,-0.0605076439678669,-0.04377250000834465,0.03433225303888321,0.0833725780248642,-0.0780872032046318,-0.005761810578405857,0.0305124893784523,-0.026404108852148056,0.0646909549832344,-0.0636030063033104,-0.0629163607954979,-0.0066650002263486385,-0.020212503150105476,-0.04113662242889404,-0.02811119332909584,0.05429841950535774,-0.009840697050094604,-0.04082176461815834,-0.05788683518767357,-0.04068863391876221,0.04695870354771614,-0.045476336032152176,0.028425656259059906,-0.020756196230649948,0.01990559883415699,0.026960507035255432,-0.014897720888257027,-0.0023215427063405514,0.03330172225832939,-0.012162054888904095,-0.007754762191325426,-0.0493292473256588,0.03295198827981949,-0.03305387496948242,0.020145108923316002,-0.014062353409826756,-0.08290376514196396,-0.033525582402944565,0.009878160431981087,-0.054126568138599396,0.08536455035209656,0.04792553931474686,-0.05909615755081177,0.05678476393222809,-0.030910104513168335,-0.03372885659337044,0.04074299708008766,0.006164214573800564,-0.03776415064930916,-0.009869164787232876,-0.03734634071588516,-0.006341890897601843,-0.030231676995754242,-0.03399999812245369,0.057059045881032944,-0.03518116846680641,0.0013251107884570956,-0.06394252181053162,0.037967853248119354,0.057941582053899765,-0.052058830857276917,-0.0187568049877882,-0.08101045340299606,0.010322551243007183,0.03652841970324516,-0.06340869516134262,-0.032492004334926605,0.007575381547212601,0.09454096108675003,0.02259530872106552,0.01734664849936962,0.11512213945388794,-0.0031895257998257875,-0.06532959640026093,0.06994424015283585,0.004056956619024277,-0.01931891031563282,7.294917625027122e-35,-0.06374873965978622,-0.051970481872558594,-0.0731179267168045,0.013842909596860409,-0.02170480787754059,0.034216590225696564,0.0012859855778515339,0.009721293114125729,0.02942744269967079,-0.05485173687338829,-0.018815213814377785,-0.012489777989685535,0.03602069616317749,-0.046022769063711166,0.0004893554141744971,-0.028256094083189964,-0.002331018215045333,-0.020592235028743744,-0.07132568955421448,-0.06800463795661926,0.04406266659498215,0.10524828732013702,-0.03737010434269905,0.08173970878124237,-0.03569581359624863,-0.030777445062994957,0.06997120380401611,-0.05967654287815094,-0.02585085853934288,0.007573989685624838,-0.000832368154078722,-0.007667879108339548,-0.05703214183449745,-0.005492790136486292,0.031285904347896576,0.07449312508106232,-0.035513315349817276,-0.02555164508521557,-0.10294900834560394,0.10181783884763718,0.04146113991737366,-0.0005241542239673436,-0.0296338964253664,0.004232018254697323,-0.02097971737384796,-0.0469573549926281,-0.014745357446372509,-0.04288456588983536,-0.03803690895438194,-0.047006022185087204,-0.09780675172805786,0.05676364153623581,-0.09239569306373596,0.014733574353158474,-0.010369459167122841,0.06992010772228241,0.031913429498672485,-0.07715418934822083,-0.04129752889275551,-0.00972708873450756,0.017925119027495384,-0.01974830962717533,0.022327810525894165,-0.010979721322655678,-0.0010307208867743611,0.038865622133016586,-0.06974618136882782,0.015540085732936859,0.13269487023353577,0.0009432359947822988,-0.00687034334987402,-0.01020540576428175,-0.013987737707793713,-0.0018032422522082925,-0.012602409347891808,0.13848428428173065,0.02750883251428604,0.016196358948946,0.0127439945936203,-0.04933469742536545,0.03660253807902336,-0.09046439826488495,0.01814175583422184,0.002711245557293296,-0.03422008454799652,0.02269020490348339,-0.024096425622701645,-0.10334404557943344,-0.04503951594233513,-0.024720801040530205,0.13017253577709198,0.0005410415469668806,0.09084445983171463,0.060720134526491165,-0.0014916040236130357,-1.9738555678827652e-8,0.004219787195324898,0.03908777981996536,0.05309262499213219,-0.022104384377598763,0.07729677110910416,-0.026669764891266823,-0.04161164537072182,-0.029786579310894012,-0.07073181122541428,0.10159201174974442,0.02638571336865425,-0.06278199702501297,-0.008798944763839245,-0.03586713969707489,0.05442057549953461,0.03387943282723427,0.01917390711605549,-0.0196633692830801,0.0006275515770539641,0.06989794224500656,-0.0483267717063427,0.03964751958847046,-0.049490101635456085,0.025077786296606064,0.0254509374499321,0.02792374975979328,0.02620859071612358,0.04563232883810997,0.061211466789245605,0.07296732068061829,0.03847504034638405,0.09793292731046677,-0.04637974128127098,0.04043974354863167,0.09269418567419052,0.041279248893260956,0.06261568516492844,-0.022304892539978027,-0.0369827002286911,0.08133311569690704,-0.04101644456386566,-0.013101552613079548,0.05571217089891434,0.0527949184179306,-0.009973655454814434,0.019760463386774063,0.07149656116962433,-0.025493524968624115,0.07507503032684326,-0.0022576514165848494,0.05383487045764923,0.14896203577518463,0.009301319718360901,-0.02560919150710106,0.03941302374005318,0.05436050891876221,-0.10672459006309509,0.0005834638141095638,-0.0722721591591835,0.0019052191637456417,0.035102929919958115,-0.01038196962326765,0.03602145239710808,0.019051196053624153]},{"text":"Everybody here is mad about you.","book":"Down and Out in Paris and London","chapter":29,"embedding":[0.04883572831749916,-0.029106944799423218,0.04240976274013519,-0.032939597964286804,-0.012193986214697361,-0.03084786795079708,0.10099580138921738,0.0188800897449255,0.03555753082036972,0.0016119792126119137,0.022604690864682198,-0.027526691555976868,0.025972791016101837,-0.0015271288575604558,-0.04205487668514252,0.042413849383592606,-0.00455477787181735,-0.06329314410686493,-0.12303734570741653,-0.06194593757390976,-0.05766194313764572,0.07568757236003876,-0.0034938689786940813,0.04461251571774483,-0.04876717925071716,0.10431546717882156,-0.019391098991036415,-0.01579645834863186,-0.07000041007995605,0.06811296194791794,-0.07873456180095673,-0.022519465535879135,0.034083835780620575,-0.03628561645746231,-0.027915064245462418,-0.0546996034681797,-0.009517421014606953,-0.0028853006660938263,-0.09698500484228134,-0.008850735612213612,0.016233185306191444,0.023769710212945938,-0.027034174650907516,-0.006865880452096462,0.07501713931560516,-0.00814099796116352,0.0740153044462204,0.022217852994799614,0.07792991399765015,-0.00819710735231638,-0.014813805930316448,-0.010418598540127277,-0.03236866742372513,0.0343039445579052,0.039912834763526917,-0.00488984165713191,0.042244426906108856,-0.00494017917662859,0.04159403592348099,0.12249449640512466,-0.0190836563706398,0.0481393001973629,0.0035001139622181654,0.016985276713967323,-0.00004307936615077779,0.060424696654081345,0.02636527270078659,0.04845195263624191,-0.019193826243281364,-0.01745963655412197,0.02674207277595997,0.022546973079442978,0.0862833708524704,0.08244960010051727,0.019103409722447395,-0.09581402689218521,0.02592593804001808,0.03190681338310242,0.1691160798072815,0.10432882606983185,-0.02569081075489521,-0.03714604303240776,-0.0660158172249794,0.0007641611737199128,0.05331866443157196,-0.06003332510590553,0.05408297851681709,0.07667214423418045,0.03235766291618347,0.007489719893783331,0.01513027586042881,-0.005389886442571878,0.06602572649717331,-0.0228608176112175,-0.05424119904637337,-0.049488846212625504,0.02494906261563301,0.02202068455517292,-0.062291719019412994,0.05452775955200195,0.003041996620595455,0.04083354026079178,0.07394613325595856,0.024564197286963463,0.0959545224905014,0.05014533922076225,0.0670551285147667,-0.024043427780270576,-0.008388119749724865,-0.08752723783254623,-0.13504475355148315,-0.016639534384012222,-0.03784696012735367,0.06029866263270378,0.05846725031733513,0.014516997151076794,0.07461480796337128,-0.0421004593372345,-0.01134681049734354,-0.03645003214478493,-0.05603214353322983,0.024326331913471222,-0.10966348648071289,0.16021379828453064,0.04935238137841225,-0.08940161019563675,-0.07811501622200012,-4.6110125076347366e-33,-0.005849577020853758,0.08429903537034988,0.08617772907018661,0.03700315207242966,-0.05530804395675659,-0.0826338529586792,-0.04926086217164993,-0.012725545093417168,0.048574235290288925,0.0030459908302873373,0.03862881287932396,-0.0340333990752697,-0.11322127282619476,0.06429950147867203,-0.03533797711133957,0.11381074041128159,0.01585986465215683,-0.048656899482011795,0.05113532766699791,0.03855544328689575,-0.022468160837888718,-0.10425928235054016,-0.07663975656032562,0.028674781322479248,-0.030524879693984985,0.00271291914395988,0.019977737218141556,-0.04785589501261711,-0.050469256937503815,0.011356406845152378,-0.00920887105166912,0.019000815227627754,0.03659779205918312,0.03084656596183777,-0.07726190984249115,0.02085704915225506,0.03684261441230774,-0.03528335690498352,-0.08881145715713501,0.004272695630788803,0.09874861687421799,-0.0007951906300149858,-0.035132527351379395,-0.01581408828496933,0.00650424649938941,0.09522852301597595,0.05288221687078476,0.018324725329875946,0.018531717360019684,0.006034672260284424,-0.010948543436825275,0.03294231742620468,0.13487809896469116,0.03284294158220291,0.0044840420596301556,-0.07856208086013794,-0.02289402112364769,-0.010680105537176132,-0.007845152169466019,0.03770335391163826,-0.04495714232325554,-0.036815520375967026,-0.00838456116616726,-0.05098094046115875,-0.07386675477027893,0.05972568318247795,0.03791600465774536,-0.008763856254518032,0.05763818323612213,-0.004730114713311195,-0.009384533390402794,-0.01872667483985424,-0.026823025196790695,0.048917729407548904,-0.017514636740088463,0.08065112680196762,0.0046208999119699,0.027810195460915565,-0.01770254410803318,-0.03565787523984909,0.0009051085216924548,-0.04482577368617058,-0.03351721912622452,-0.0959622785449028,0.052157968282699585,-0.017773980274796486,0.0416865199804306,-0.07714291661977768,-0.035441286861896515,-0.019506001845002174,-0.03736461326479912,0.0162917822599411,0.1131247952580452,0.01195212546736002,-0.1803409308195114,2.531250944014165e-33,0.009179722517728806,-0.0007785028428770602,0.08681953698396683,0.004990510176867247,-0.07701358199119568,-0.007149252109229565,0.016762344166636467,0.06226884201169014,0.003716807346791029,0.019211748614907265,0.02883986383676529,-0.06990858167409897,0.08465541154146194,-0.01631038822233677,0.09912613034248352,-0.021598536521196365,0.1173635944724083,-0.036147091537714005,0.009249688126146793,0.04408836364746094,0.00027933603269048035,0.13320787250995636,0.008625497110188007,0.03390941023826599,-0.051431529223918915,-0.03978575021028519,-0.022209452465176582,0.0053716991096735,0.015975916758179665,-0.04815622791647911,0.04471370577812195,0.02356896921992302,-0.09727384895086288,-0.05371527746319771,0.005847711116075516,0.0017363288206979632,-0.02170548401772976,0.0549931600689888,0.05364438146352768,-0.03165988624095917,-0.03307370841503143,-0.056804072111845016,0.012989971786737442,0.043968793004751205,-0.03353075683116913,-0.061788275837898254,0.14409320056438446,-0.05161995813250542,-0.0572812594473362,0.0792626142501831,-0.08672505617141724,-0.025260599330067635,0.056724779307842255,-0.0036578786093741655,0.0020484565757215023,-0.026533499360084534,0.02814941294491291,-0.02302504889667034,-0.05688918009400368,-0.06931065022945404,-0.052938252687454224,-0.056512873619794846,-0.05464180186390877,-0.0342196524143219,0.06670862436294556,-0.06150506064295769,-0.0687471404671669,-0.0261521078646183,-0.06109270825982094,-0.012257183901965618,-0.027296703308820724,-0.02830364927649498,-0.07615672796964645,-0.016935501247644424,-0.0010874461149796844,0.031143901869654655,0.014777609147131443,0.0063120657578110695,0.017957063391804695,0.028334787115454674,0.015210260637104511,0.06280684471130371,0.043773286044597626,0.035935088992118835,-0.017370769754052162,-0.05431612208485603,0.09533476084470749,0.002325117588043213,0.005438743159174919,-0.06259717792272568,-0.056693702936172485,-0.06090754643082619,-0.056013673543930054,-0.01759292185306549,-0.011218187399208546,-2.0613018847370768e-8,-0.026323813945055008,0.02943866141140461,-0.003972369246184826,0.02829216979444027,0.02258017659187317,0.0160914845764637,-0.03298499062657356,0.04097277298569679,-0.033165816217660904,0.06676343083381653,0.015237728133797646,0.07117844372987747,0.01529776956886053,-0.04119618237018585,0.003888389328494668,0.07579999417066574,-0.01758408173918724,-0.04211227223277092,0.011402658186852932,0.031403474509716034,-0.028218382969498634,0.03148212656378746,-0.014455312862992287,-0.007677099667489529,0.017208673059940338,0.004412370268255472,0.04151875898241997,-0.03910640999674797,0.04471350088715553,0.05471886694431305,0.04675785079598427,-0.013075646944344044,-0.05007585138082504,0.019752347841858864,0.016460934653878212,-0.07758905738592148,0.05759930983185768,0.0011959066614508629,0.02324211224913597,-0.05369032919406891,-0.10260524600744247,0.00101571436971426,-0.04939594492316246,-0.03680960461497307,-0.01167786493897438,0.030993925407528877,0.06250041723251343,-0.024265993386507034,-0.019328221678733826,0.010806405916810036,0.01895270310342312,-0.03304244950413704,-0.005783689208328724,-0.00046423973981291056,0.02894221805036068,-0.007954481057822704,-0.0026034570764750242,-0.009467928670346737,0.03430399298667908,0.042867276817560196,0.032872267067432404,-0.01424337737262249,-0.08660924434661865,-0.023611728101968765]},{"text":"Two major-generals got killed strictly according to military etiquette.","book":"Down and Out in Paris and London","chapter":29,"embedding":[-0.03534800559282303,0.03280656412243843,0.013740161433815956,-0.06734859943389893,0.014491435140371323,-0.006694478914141655,-0.032006170600652695,-0.05065415799617767,-0.07908514887094498,0.06333890557289124,0.04368888586759567,0.03723049536347389,0.07340484857559204,-0.025408584624528885,-0.012347630225121975,-0.04435163736343384,-0.004088776186108589,0.061029888689517975,-0.002255164785310626,0.022960932925343513,0.04402478039264679,-0.042809244245290756,0.08862082660198212,0.026757413521409035,0.002231847494840622,-0.06454356759786606,0.0203512255102396,0.0222301185131073,-0.04307316988706589,-0.015477264299988747,-0.06730193644762039,-0.007854057475924492,0.007553465198725462,0.0065389773808419704,-0.06274808198213577,0.029855351895093918,0.02083013392984867,0.017565634101629257,0.0021457511465996504,-0.03264065831899643,-0.03769389167428017,0.017260275781154633,0.08082090318202972,0.01725957915186882,0.029148628935217857,-0.04924483969807625,-0.11064411699771881,-0.026289204135537148,-0.013605359010398388,0.038254670798778534,0.0020579309202730656,0.006943149492144585,-0.07376006245613098,0.049074914306402206,0.08506851643323898,-0.028750311583280563,-0.051997970789670944,-0.022041499614715576,0.052280303090810776,-0.011068630963563919,-0.05015973001718521,0.04727276414632797,-0.014341478236019611,-0.020593993365764618,-0.0050614760257303715,-0.035811830312013626,0.03496157005429268,-0.028755193576216698,-0.0521094985306263,0.12952789664268494,-0.040421634912490845,-0.04455030336976051,0.014098710380494595,-0.020615624263882637,-0.11062704026699066,0.09192892909049988,0.024319959804415703,0.051667213439941406,-0.036218784749507904,-0.04614127427339554,-0.08466947078704834,-0.06872420758008957,0.05480906367301941,-0.021999314427375793,0.03261636942625046,-0.03767773136496544,-0.023603767156600952,-0.055592965334653854,0.08137905597686768,0.05429483577609062,0.0031564212404191494,0.06252471357584,0.13202956318855286,0.02869172766804695,0.06065094470977783,0.06613467633724213,-0.035690609365701675,0.06273859739303589,-0.028622645884752274,-0.001409263233654201,0.022464005276560783,-0.0055744340643286705,-0.0757552981376648,0.021515358239412308,0.02428753487765789,0.03645363077521324,-0.013601159676909447,-0.07112331688404083,-0.0354035384953022,-0.07195646315813065,0.04908997192978859,0.02315928414463997,0.07645214349031448,-0.01724158227443695,-0.013589506968855858,0.09355296194553375,0.0011504795402288437,0.02029944583773613,-0.03784945234656334,-0.0458260104060173,0.011925386264920235,-0.022454485297203064,-0.056899167597293854,0.0010853895219042897,-0.024648405611515045,0.047052569687366486,0.08736719936132431,-2.1702490983659557e-33,0.023898160085082054,-0.08870750665664673,-0.0003179777995683253,0.06555172055959702,-0.04606075584888458,0.0410587377846241,-0.0628533884882927,-0.014473059214651585,0.0966416522860527,0.08232282102108002,-0.033380329608917236,-0.021368321031332016,0.0220990851521492,-0.0019312344957143068,-0.05023162066936493,0.025300737470388412,0.056519437581300735,0.02444932423532009,0.021574707701802254,-0.04665222391486168,0.06303613632917404,0.10970298200845718,-0.09325681626796722,-0.006422732025384903,0.027473540976643562,0.03768579289317131,-0.030884994193911552,0.05009068548679352,0.015039985068142414,0.0013205157592892647,-0.04417647793889046,-0.07735899090766907,0.05997924134135246,0.026485957205295563,0.05621938779950142,-0.010684723034501076,-0.03915293142199516,0.0005008996813558042,-0.026343107223510742,0.02870483696460724,-0.04528791084885597,0.023078840225934982,-0.05403195694088936,-0.029797498136758804,-0.0017163371667265892,-0.013521390035748482,-0.024534771218895912,-0.03050423599779606,-0.019938813522458076,-0.043200816959142685,-0.000534543301910162,0.000593498523812741,0.06383375078439713,-0.009290304966270924,-0.0025050665717571974,0.08550477772951126,0.049378830939531326,0.06531797349452972,-0.021202467381954193,0.04541146382689476,0.0023665446788072586,0.08736689388751984,0.016342805698513985,0.016151616349816322,0.014296975918114185,-0.030172603204846382,-0.08939037472009659,0.04253622516989708,0.0118710957467556,-0.062075089663267136,0.047260940074920654,0.036972880363464355,0.029315972700715065,-0.07214926928281784,-0.019116979092359543,-0.03653116896748543,0.009281378239393234,0.012211204506456852,-0.012033306993544102,-0.019080333411693573,0.0010572629980742931,0.030484093353152275,0.052397601306438446,0.011505881324410439,0.022365333512425423,0.003132539102807641,0.00661521777510643,-0.02361331507563591,-0.02391061745584011,0.10065153241157532,-0.06475037336349487,0.013316825032234192,0.00841583963483572,0.03167815878987312,-0.0008851476013660431,-9.342248699999823e-34,-0.05802890658378601,0.08413945138454437,-0.04037099331617355,0.023576276376843452,-0.010224469006061554,0.03709441050887108,-0.04013029485940933,-0.06447719782590866,-0.04723040759563446,-0.04956892877817154,0.04707075655460358,0.03834041580557823,-0.05512256175279617,-0.012285801582038403,0.04806811735033989,-0.06831145286560059,0.03168611228466034,0.028725640848279,-0.08867163956165314,0.11099958419799805,0.045430660247802734,-0.10125184059143066,-0.03407125174999237,0.03960272669792175,0.010523545555770397,0.06245337426662445,0.01900966465473175,0.03711147978901863,-0.17683938145637512,0.043136246502399445,0.14647416770458221,-0.032186172902584076,-0.02429029904305935,0.007873070426285267,0.07420149445533752,0.03148393705487251,0.0003701829118654132,0.00048462089034728706,-0.03546364977955818,0.05433889850974083,0.0005785429966636002,0.019872087985277176,-0.0025119197089225054,0.05983366817235947,-0.003266818355768919,-0.1158176138997078,0.024170659482479095,-0.10812705755233765,-0.046291548758745193,-0.09147411584854126,-0.11944426596164703,-0.026842350140213966,-0.03825068101286888,-0.02693018689751625,-0.006468077655881643,-0.02449338324368,-0.01631072349846363,0.01522814016789198,0.10101994127035141,-0.042616505175828934,0.02757297456264496,0.0014830923173576593,-0.023140067234635353,0.06246037036180496,-0.019723275676369667,0.031281642615795135,0.05126865953207016,0.03324573487043381,-0.038742899894714355,0.04131534323096275,0.03916720673441887,0.011352808214724064,-0.058048613369464874,0.017942456528544426,0.010680224746465683,0.08544282615184784,0.008255552500486374,0.0014070646138861775,-0.06770574301481247,-0.004756524693220854,0.021600838750600815,-0.05302642658352852,-0.04681592434644699,0.07046584784984589,-0.12155309319496155,0.0012726818677037954,0.07901113480329514,-0.010206099599599838,0.01277728471904993,-0.045307375490665436,-0.015023979358375072,-0.16498689353466034,0.10609867423772812,-0.03240537643432617,0.02616228349506855,-2.1654170012652685e-8,0.030416706576943398,0.03343292698264122,-0.041720617562532425,0.061388514935970306,-0.12059934437274933,-0.064945288002491,-0.07671447843313217,-0.067261703312397,0.0012000759597867727,0.061270635575056076,-0.02591729909181595,0.055351972579956055,-0.03810390084981918,-0.04184114187955856,0.030600620433688164,-0.04514073207974434,-0.04648367315530777,-0.07543522864580154,-0.05564217269420624,0.005671221297234297,-0.09760180860757828,-0.028908614069223404,-0.05098002776503563,0.02973679080605507,0.0511799193918705,0.0920933336019516,0.05100245028734207,-0.046402234584093094,0.053400203585624695,0.1677224487066269,-0.011744482442736626,-0.0538688600063324,-0.08882737159729004,-0.013536261394619942,0.05711686238646507,-0.011176479049026966,0.0796038955450058,-0.015448044054210186,0.04053714498877525,-0.013181180693209171,-0.05843120440840721,-0.011618861928582191,0.05826351419091225,0.03930658847093582,0.06852372735738754,0.05616062134504318,0.0640590488910675,-0.0630735531449318,-0.019956210628151894,-0.012952247634530067,0.06873070448637009,-0.016028843820095062,-0.002412043046206236,0.03325578197836876,-0.028958812355995178,-0.06099413335323334,-0.0013463565846905112,0.07064788043498993,-0.04040646180510521,-0.03088649921119213,0.02313215285539627,-0.015683358535170555,-0.032371800392866135,-0.03366793319582939]},{"text":"Oh, you must withdraw it!","book":"Down and Out in Paris and London","chapter":30,"embedding":[0.05473604425787926,0.01702185906469822,-0.005577081348747015,-0.03263702616095543,0.050356823951005936,-0.05855000764131546,0.07270283997058868,-0.06358859688043594,0.011108478531241417,-0.02996029332280159,-0.04953499883413315,0.06012286618351936,-0.008024109527468681,0.012888542376458645,-0.07782041281461716,-0.017346905544400215,-0.018370267003774643,0.021129585802555084,0.0661088228225708,0.04300724342465401,0.02965543605387211,0.04645969718694687,-0.06961062550544739,0.06456933170557022,0.06573649495840073,0.04599171504378319,-0.021882984787225723,0.06591523438692093,-0.05233223736286163,-0.04457838833332062,0.027280597016215324,0.10152261704206467,-0.10528083145618439,0.0027897905092686415,0.014833907596766949,0.003935165237635374,-0.04341902583837509,0.016757972538471222,0.05322625860571861,-0.018799953162670135,0.029256761074066162,0.01469347346574068,-0.014983085915446281,-0.05597745627164841,0.06645461171865463,0.03822999820113182,-0.11105578392744064,-0.009338363073766232,0.022984836250543594,0.07433514297008514,-0.01691790670156479,-0.002331035677343607,-0.035490281879901886,0.04006922245025635,-0.05391056835651398,0.000674996234010905,0.10908028483390808,-0.03251213952898979,0.0323139913380146,0.05745537579059601,-0.029636384919285774,0.013028517365455627,-0.04803536459803581,0.07261914759874344,-0.005674320738762617,0.02968652732670307,-0.019823718816041946,-0.05319734662771225,0.02571714110672474,0.04083504155278206,-0.025203051045536995,-0.04317533224821091,-0.05185078829526901,-0.05712199583649635,-0.022692905738949776,-0.02824251726269722,0.056495923548936844,-0.025890514254570007,0.07790315896272659,0.052699796855449677,-0.015546061098575592,-0.04049339145421982,0.006464676465839148,-0.006533659994602203,-0.020627960562705994,-0.05254456400871277,0.000655969197396189,-0.019409582018852234,-0.010983363725244999,-0.01667296513915062,-0.0024647333193570375,0.0367574468255043,0.021487120538949966,0.029229363426566124,0.03725910559296608,-0.07532136142253876,-0.015463797375559807,-0.028648383915424347,-0.1884007453918457,0.0755453109741211,0.013929175212979317,0.07095159590244293,-0.09555923938751221,-0.017624622210860252,-0.011608006432652473,-0.07579003274440765,0.037233442068099976,-0.019337408244609833,0.012411948293447495,-0.045516237616539,-0.017937157303094864,0.06377328187227249,0.055709440261125565,0.049087826162576675,-0.02533302828669548,0.07814903557300568,-0.025758692994713783,0.03752049058675766,0.02594749629497528,0.036698125302791595,0.047805268317461014,0.019924653694033623,-0.001512031303718686,0.014525413513183594,-0.05765285715460777,-0.11327208578586578,0.08987432718276978,-7.827711656357648e-33,-0.04323968291282654,0.034083250910043716,-0.03149402514100075,0.06390643864870071,-0.013455463573336601,-0.01975945197045803,-0.006880711764097214,-0.008466559462249279,-0.05375754460692406,-0.06991181522607803,0.015239751897752285,-0.020048171281814575,-0.07375162094831467,0.04610568657517433,0.011806239373981953,0.026928814128041267,0.03068447858095169,0.002193458378314972,0.14860576391220093,-0.01321440003812313,0.04112604632973671,-0.062064431607723236,-0.001026385580189526,0.01313450001180172,-0.05822751671075821,0.07531839609146118,-0.0168913546949625,-0.004144969861954451,0.049156706780195236,0.08106915652751923,-0.0031566345132887363,-0.06497764587402344,-0.02362857758998871,-0.05467700958251953,-0.020126938819885254,-0.008708431385457516,-0.004485600627958775,-0.0015027866465970874,0.01466757245361805,-0.04542911797761917,-0.017907340079545975,-0.004146787337958813,-0.03462032601237297,0.06112237647175789,0.013657481409609318,0.0014163129962980747,0.04745631664991379,-0.011274043470621109,0.029752187430858612,0.04639537259936333,-0.025304080918431282,-0.038050319999456406,0.04174797609448433,0.05410582199692726,-0.05047142133116722,-0.07990213483572006,0.011096566915512085,-0.0196135975420475,0.02111501432955265,-0.009400133043527603,-0.04644324257969856,0.0014694679994136095,-0.041896186769008636,0.011033414863049984,0.0035795029252767563,-0.006992319133132696,-0.12284199893474579,0.009350952692329884,-0.0801021158695221,0.05308447778224945,-0.08536283671855927,-0.004678728524595499,0.06439191848039627,-0.07672633230686188,-0.0592968687415123,-0.014726238325238228,-0.03600360080599785,0.03459545969963074,0.03179572895169258,-0.0014794429298490286,0.029189247637987137,-0.04609959200024605,-0.011769755743443966,0.007686676923185587,0.044896356761455536,0.008302106522023678,0.05311000719666481,-0.08355234563350677,0.04558054730296135,-0.018402099609375,-0.052355531603097916,0.019664691761136055,0.04258892685174942,0.026307979598641396,0.010703894309699535,5.907342167591786e-33,-0.09012607485055923,-0.07494544237852097,0.02916085533797741,-0.04854289069771767,0.045295245945453644,0.03538001328706741,0.02649335376918316,0.06985364109277725,0.0026555063668638468,0.0806068554520607,0.001326872268691659,0.011175292544066906,-0.007334807422012091,-0.008419142104685307,0.13415013253688812,-0.028722206130623817,0.04230210557579994,0.026338700205087662,-0.0601261742413044,-0.029679233208298683,-0.08990395814180374,-0.007237078156322241,0.09614647179841995,-0.002522657858207822,-0.06245604529976845,0.03792356327176094,0.057523153722286224,0.010941330343484879,-0.004879351705312729,0.00676351971924305,0.00407353974878788,-0.0008980857091955841,-0.10781901329755783,-0.022946706041693687,0.017648477107286453,-0.045242443680763245,-0.08255725353956223,-0.013702848926186562,-0.09354595094919205,0.06698974221944809,-0.016955921426415443,0.07624755799770355,-0.00782223604619503,0.10179784893989563,-0.044881947338581085,-0.008267395198345184,0.05964917689561844,-0.07821417599916458,0.002804739400744438,0.09333077818155289,-0.009780565276741982,-0.0636138916015625,0.03562037646770477,-0.019315894693136215,-0.0036546967457979918,0.05031880736351013,0.02226310223340988,0.031210890039801598,-0.010837811045348644,-0.031233208253979683,0.045844901353120804,0.06031959131360054,-0.0463736467063427,0.09167025238275528,0.10952461510896683,-0.10318242013454437,0.017010459676384926,0.06131124496459961,0.11645427346229553,0.023679237812757492,-0.01990523934364319,0.026119446381926537,0.04913647845387459,-0.03462674841284752,0.04417642578482628,0.012280025519430637,0.030654514208436012,0.02584046870470047,-0.000846797542180866,0.01568499393761158,0.03472414240241051,0.010087654925882816,0.06726924329996109,-0.04452386870980263,0.02967792935669422,-0.03850599005818367,0.0017272006953135133,-0.06197560578584671,-0.017786387354135513,0.06117565184831619,0.03521782532334328,-0.031242236495018005,-0.0010577974608168006,0.032400861382484436,0.08234349638223648,-1.9851796650982578e-8,-0.08342494070529938,0.016993554309010506,0.14522342383861542,0.053744785487651825,0.04277154430747032,-0.002500950125977397,-0.035645704716444016,-0.05375787615776062,-0.056869108229875565,0.024194061756134033,0.11945927143096924,0.05014072731137276,-0.018757414072752,0.04213516786694527,-0.04901539161801338,0.021143289282917976,0.03750739246606827,0.025545112788677216,0.01911056600511074,-0.05186838284134865,-0.08120819181203842,0.002877366729080677,-0.0015508524375036359,-0.06998048722743988,0.014273704029619694,-0.019523410126566887,0.11042778193950653,0.07687482237815857,0.024952193722128868,-0.07224440574645996,0.014444852247834206,0.01722254976630211,-0.030508995056152344,0.031857382506132126,-0.22187656164169312,-0.0005889440653845668,-0.010556507855653763,0.03043459914624691,0.060016192495822906,-0.0639253631234169,0.0025086086243391037,-0.08018704503774643,-0.034560706466436386,0.04595902934670448,-0.05540322884917259,0.018317561596632004,0.0060507855378091335,0.029262244701385498,0.06937621533870697,-0.03399216756224632,0.02612718939781189,-0.0580756776034832,0.028709303587675095,0.07841160893440247,0.09101767838001251,0.007718082517385483,-0.010211588814854622,-0.03375080227851868,-0.09063387662172318,-0.03340412303805351,0.12502536177635193,-0.04550737887620926,-0.03387787938117981,-0.04589414969086647]},{"text":"Raina is here. (_She makes a charming picture as they all turn to look at her.","book":"Down and Out in Paris and London","chapter":30,"embedding":[-0.023868577554821968,-0.025540709495544434,0.07528138160705566,-0.017748519778251648,0.0022202283143997192,0.010241308249533176,0.1165289357304573,-0.07444971799850464,-0.007105791475623846,-0.019016198813915253,-0.046998027712106705,-0.13542984426021576,-0.04250803217291832,0.012825198471546173,0.013249821029603481,0.025034209713339806,0.0383063368499279,-0.1185440644621849,-0.05121492221951485,-0.01041470654308796,-0.05089305341243744,-0.046467412263154984,0.053212642669677734,0.07844836264848709,-0.04052329063415527,0.056100476533174515,0.11598928272724152,-0.005797120742499828,0.028862444683909416,-0.05979936942458153,-0.05760704725980759,0.09084387123584747,-0.01716327853500843,0.016951588913798332,0.01839381456375122,0.11715573817491531,0.047486886382102966,-0.04911736026406288,0.014666412957012653,-0.00824287161231041,0.021123334765434265,0.026730535551905632,-0.07044556736946106,-0.027026962488889694,-0.0405011810362339,-0.14353768527507782,0.074910007417202,0.04165453836321831,0.03452498838305473,-0.013902844861149788,-0.02058451436460018,0.06276557594537735,-0.07597214728593826,0.0018043904565274715,0.011080052703619003,-0.0060545215383172035,0.06130555644631386,-0.09066814184188843,0.0633724182844162,0.004877984989434481,-0.043573617935180664,0.08519633114337921,-0.019157133996486664,0.10494372993707657,0.011040916666388512,-0.058973297476768494,-0.0024326371494680643,-0.011311287991702557,-0.03923835977911949,-0.03870876133441925,0.002886019181460142,0.09128205478191376,-0.04472305625677109,0.06080581992864609,-0.04870769754052162,-0.043886907398700714,0.02343772165477276,-0.0577661357820034,0.051088180392980576,0.022695494815707207,0.0422215573489666,-0.04776808246970177,0.024001706391572952,0.017943179234862328,0.023157941177487373,0.02852882444858551,-0.06311904639005661,-0.112822525203228,0.015700938180088997,-0.07101079076528549,-0.004732939414680004,0.0006771567859686911,-0.013968013226985931,0.04194736108183861,0.015632983297109604,0.016612401232123375,0.019153624773025513,-0.12819410860538483,0.048527125269174576,0.04462878406047821,0.0076142470352351665,-0.01931762881577015,0.06858113408088684,0.04902108386158943,-0.0187937431037426,0.02286888286471367,-0.03351481258869171,-0.058479756116867065,0.03079507313668728,-0.03967714682221413,-0.030690813437104225,-0.0360710471868515,-0.016559168696403503,0.04442797601222992,0.027925709262490273,-0.03097177855670452,0.01314298901706934,-0.0034260228276252747,-0.01571711152791977,0.03847942128777504,0.004866207484155893,0.030326107516884804,0.009279550984501839,0.008507130667567253,0.03585934266448021,-0.04297995939850807,-0.040349554270505905,-2.3195749008157956e-33,0.11389996856451035,0.0004179632232990116,0.053952693939208984,0.017874883487820625,0.06552556902170181,0.01404967624694109,-0.0023709170054644346,0.02633642964065075,-0.06048751249909401,-0.018219131976366043,-0.05298447608947754,0.014026889577507973,-0.030132746323943138,-0.01974010095000267,-0.03840629383921623,0.06995591521263123,0.08491538465023041,-0.061972565948963165,-0.024524131789803505,0.0891876295208931,0.006654547527432442,-0.057511210441589355,0.006004184950143099,0.00688067777082324,-0.03390386328101158,0.015837891027331352,0.1344379484653473,-0.007053833454847336,0.04385462403297424,0.0005167199415154755,-0.05205320566892624,0.06281433254480362,0.07964783906936646,-0.03174743428826332,0.06129952892661095,-0.0651623010635376,-0.009779760614037514,0.0016656474908813834,-0.03649844601750374,0.024354124441742897,-0.04821530729532242,-0.0049625905230641365,0.003694530576467514,-0.024086307734251022,-0.07769601792097092,-0.043669722974300385,0.012272459454834461,0.06292083114385605,0.026863137260079384,-0.042333416640758514,-0.010383856482803822,0.028709538280963898,-0.01657957397401333,0.0005261324113234878,-0.011903979815542698,0.02246183156967163,-0.007794586475938559,-0.027835290879011154,0.11441072821617126,0.010353523306548595,0.01630217395722866,-0.0023659588769078255,0.049733590334653854,-0.1078312024474144,0.030424050986766815,-0.03170090913772583,-0.05262995883822441,0.0026844090316444635,0.024584345519542694,-0.014206437394022942,-0.03265037387609482,0.04272713512182236,-0.0702655091881752,0.05585155263543129,-0.035889722406864166,-0.04876334220170975,0.003022972960025072,0.010239694267511368,0.04392601549625397,0.02596406452357769,-0.003668400691822171,0.012635814025998116,-0.022099526599049568,0.02564987912774086,-0.04231291636824608,-0.06548846513032913,-0.01908036135137081,-0.10640449076890945,-0.09574031829833984,0.015928367152810097,0.10018698126077652,0.07071630656719208,0.12086709588766098,-0.07685196399688721,-0.010898688808083534,-1.3211350703177957e-33,0.06948623806238174,-0.006802080664783716,-0.0373493991792202,-0.07930804789066315,-0.005920726805925369,-0.053145017474889755,0.000814863306004554,-0.02843640185892582,0.05498338118195534,0.06756483018398285,-0.03454219549894333,-0.006972436793148518,-0.0489334873855114,-0.05218605697154999,0.01572844572365284,0.0020386010874062777,0.1303267627954483,-0.06684467941522598,-0.07320956885814667,-0.05733747407793999,-0.005209282040596008,0.0021558087319135666,-0.003297268645837903,-0.006785692647099495,-0.02679857425391674,-0.024000776931643486,0.09228789806365967,0.012819033116102219,-0.052898552268743515,0.023613234981894493,-0.02871040441095829,-0.09343185275793076,-0.08614885807037354,0.05067642033100128,-0.000652400020044297,0.01716044545173645,-0.06453565508127213,-0.14342226088047028,0.0018535441486164927,-0.006450587883591652,-0.008595039136707783,-0.10092612355947495,0.10116696357727051,0.05983991175889969,0.026075152680277824,-0.047823596745729446,0.039772629737854004,0.09553952515125275,-0.034403346478939056,0.03173480182886124,-0.023509293794631958,-0.08507887274026871,0.019859474152326584,0.08898352831602097,0.07031087577342987,0.006977114826440811,0.0739680603146553,-0.0017740449402481318,0.04139533266425133,0.004823356866836548,0.002765330485999584,-0.08385836333036423,0.008691437542438507,0.01583181507885456,-0.054994743317365646,-0.09948679059743881,-0.06931141018867493,-0.0349259078502655,-0.032086506485939026,-0.025344960391521454,0.023786192759871483,-0.029220640659332275,-0.0921066477894783,-0.01136656291782856,0.029018525034189224,0.028788477182388306,-0.01720121130347252,-0.037902411073446274,0.07186619192361832,-0.08080505579710007,-0.05856611207127571,0.0334831103682518,-0.04613160341978073,-0.0401027612388134,0.0866890400648117,-0.024460887536406517,0.03152402490377426,0.005400742404162884,0.035695239901542664,0.012375549413263798,0.025177806615829468,0.006146879866719246,0.07172196358442307,-0.09898410737514496,-0.010908063501119614,-2.780179464423327e-8,-0.06847073882818222,-0.02163059450685978,-0.006324543617665768,-0.08320669829845428,-0.021398620679974556,0.03381745517253876,0.04606413468718529,0.04463981091976166,-0.012359615415334702,-0.10268400609493256,0.09046020358800888,0.03968365490436554,0.0719601958990097,0.013446723110973835,0.14000171422958374,0.04219307005405426,0.10049193352460861,0.03784620389342308,-0.012462847866117954,-0.031376734375953674,-0.015719803050160408,0.0031032052356749773,-0.009823975153267384,0.03445567190647125,-0.0288798026740551,0.014285272918641567,-0.08034181594848633,-0.014409055933356285,-0.013829865492880344,0.03780080005526543,0.06351558864116669,0.01869145780801773,-0.0077150738798081875,-0.0170727651566267,0.0394967682659626,-0.035729825496673584,0.027604183182120323,0.05544312298297882,-0.07883910834789276,0.0384272038936615,0.013832361437380314,-0.010332262143492699,-0.009418158791959286,-0.004536859225481749,0.00292089581489563,0.03496068716049194,0.1284600794315338,-0.04040210321545601,0.0201889555901289,-0.019659755751490593,-0.059058777987957,-0.06525725871324539,0.04649904742836952,0.025977103039622307,-0.019026365131139755,-0.03474698215723038,-0.03945374861359596,-0.044561970978975296,0.036208879202604294,0.06023852154612541,0.02406262792646885,-0.01798294298350811,-0.03681418299674988,0.0271516852080822]},{"text":"Yes: she listens for it.","book":"Down and Out in Paris and London","chapter":30,"embedding":[0.0483330599963665,-0.03259856998920441,0.032684922218322754,-0.030693763867020607,-0.035931091755628586,0.02561214566230774,0.1348710060119629,-0.07415958493947983,0.0015664080856367946,-0.045867882668972015,-0.07098580151796341,0.010621626861393452,-0.0247260183095932,-0.009982003830373287,0.03832227736711502,0.06946486979722977,0.016498321667313576,0.01862676441669464,0.03025103732943535,0.022112244740128517,-0.1108320951461792,0.06892889738082886,0.08400177210569382,-0.000557631254196167,-0.0013292634394019842,-0.007818630896508694,0.017434196546673775,-0.0370771624147892,-0.036523714661598206,0.012528290040791035,-0.03965595364570618,0.04929997771978378,0.007108424324542284,0.07347287982702255,-0.009105469100177288,0.061790045350790024,0.010286614298820496,0.022909965366125107,0.0062796385027468204,0.07074209302663803,-0.011200511828064919,-0.011323394253849983,-0.007774818688631058,-0.08401419967412949,-0.0799136757850647,0.005877214949578047,-0.0047975038178265095,-0.0166500024497509,-0.02848540060222149,-0.1751498579978943,-0.04002079740166664,-0.037076275795698166,0.002869444666430354,-0.009280507452785969,0.051297832280397415,0.01281381119042635,0.09167667478322983,0.02447640895843506,0.03478451073169708,0.001497031538747251,-0.041551265865564346,0.020163021981716156,-0.007941164076328278,0.05032177269458771,0.026523979380726814,0.06163094565272331,-0.043001726269721985,0.014542285352945328,-0.019964182749390602,0.04177524149417877,0.01420144084841013,0.13864949345588684,0.06682554632425308,0.03151039034128189,0.00042336469050496817,0.024140916764736176,0.0429692305624485,-0.04503847286105156,0.0502518005669117,-0.028635695576667786,-0.04823140799999237,-0.04102916643023491,0.017203314229846,-0.02062603458762169,-0.025892427191138268,-0.05909068137407303,-0.026179810985922813,-0.03506532683968544,-0.0029527542646974325,-0.02935240976512432,-0.135106161236763,0.014408214017748833,-0.05134028196334839,-0.0011054504429921508,-0.0031879402231425047,0.005404606927186251,-0.017198508605360985,-0.007044077385216951,-0.026474347338080406,-0.007565035950392485,0.02105848677456379,0.12184077501296997,0.003273145528510213,0.010808512568473816,-0.00013493531150743365,-0.045377809554338455,-0.05018945038318634,0.045789822936058044,-0.028161324560642242,-0.027499310672283173,-0.00172851060051471,-0.03486780822277069,0.02064075507223606,-0.012064559385180473,0.04373551160097122,0.044227153062820435,0.027745163068175316,0.005268710665404797,0.0035329314414411783,-0.008640393614768982,0.041938915848731995,0.04014817997813225,0.00663038669154048,0.007499788422137499,-0.016474727541208267,-0.11594253033399582,0.00853204820305109,-6.300312500465569e-33,0.013321498408913612,-0.048216864466667175,0.03003505989909172,-0.0564877986907959,0.08538159728050232,0.06260177493095398,0.015546559356153011,-0.04795229434967041,-0.0035339398309588432,0.01615370623767376,-0.05531390756368637,0.08748449385166168,-0.042439065873622894,-0.032707829028367996,0.060314834117889404,0.005617879796773195,-0.05944094806909561,0.0820031687617302,-0.08219835162162781,0.0069662658497691154,0.04751204699277878,0.03755776584148407,0.02188013680279255,-0.036443766206502914,0.02390950359404087,-0.06693531572818756,0.08080010116100311,0.03572344407439232,0.02817990630865097,0.0256710946559906,-0.06852051615715027,-0.030304083600640297,-0.06081753596663475,-0.045449502766132355,0.012591938488185406,-0.004577429033815861,0.04611632227897644,0.0990230143070221,-0.039794016629457474,0.014991446398198605,0.0040149986743927,-0.04158946871757507,0.00543877063319087,-0.028261922299861908,-0.09964265674352646,-0.0016539876814931631,-0.012076955288648605,-0.04160865396261215,-0.024175237864255905,0.007332555018365383,-0.038227517157793045,0.015614061616361141,-0.046345729380846024,0.007932469248771667,0.055354975163936615,0.10417097806930542,0.06477636098861694,-0.06901560723781586,0.14863593876361847,-0.00770187983289361,0.00458155944943428,-0.10697470605373383,0.015565117821097374,-0.044299472123384476,0.03214459866285324,0.08167145401239395,0.026189321652054787,-0.061940401792526245,0.08328400552272797,-0.022965330630540848,-0.10080824792385101,0.07464431971311569,-0.049991969019174576,0.03508065268397331,-0.05274001508951187,0.012645566835999489,0.009439006447792053,-0.0034225555136799812,0.06841117143630981,-0.08657050877809525,0.062352925539016724,-0.014535919763147831,0.031547222286462784,0.17482148110866547,-0.00261003989726305,-0.06876721978187561,-0.042276643216609955,-0.06831475347280502,0.011739643290638924,-0.03662622720003128,-0.012500383891165257,0.027624912559986115,0.0480598546564579,-0.07331038266420364,-0.08307139575481415,3.4894851024587e-33,0.015157928690314293,0.01798839494585991,-0.02474530041217804,0.015214048326015472,0.00914796907454729,0.006444851867854595,-0.05037061870098114,-0.05103273317217827,-0.027335358783602715,0.04561730846762657,0.033715058118104935,-0.06945494562387466,-0.01998458057641983,0.0040174261666834354,0.05659198388457298,-0.0837087482213974,0.06683049350976944,-0.040921639651060104,0.09566839784383774,-0.06809018552303314,-0.11691219359636307,0.007324084173887968,0.09939779341220856,-0.009114326909184456,-0.016145171597599983,-0.007684537209570408,0.06180490553379059,-0.007916259579360485,0.0031202782411128283,-0.015197678469121456,0.0514913834631443,-0.04608744755387306,-0.10446939617395401,-0.05392948538064957,-0.003389989724382758,0.002352729206904769,0.020611492916941643,-0.030150156468153,0.007847611792385578,0.005204761866480112,-0.00021384890715125948,-0.05745236948132515,0.0024711615405976772,0.08599589020013809,0.005885372404009104,0.016127435490489006,0.07512632012367249,0.09592504054307938,0.06607601046562195,-0.03958176076412201,0.007314707618206739,-0.03571130707859993,0.11330769956111908,0.0241023451089859,0.025773920118808746,0.06883738189935684,0.012845505960285664,0.03936977684497833,0.05579878017306328,-0.08748432993888855,0.03301484137773514,0.011858985759317875,-0.03191361576318741,-0.07872004061937332,0.018209168687462807,0.05160652473568916,-0.01434376835823059,-0.07291973382234573,0.06779561191797256,0.07141972333192825,0.0193023718893528,-0.002097792224958539,-0.08005416393280029,0.04618692770600319,0.036234501749277115,0.02307676151394844,-0.042560964822769165,-0.08901680260896683,-0.03040832094848156,0.006433364935219288,-0.024136602878570557,-0.04015779122710228,0.022399144247174263,-0.07815554738044739,0.11858394742012024,-0.0637371763586998,-0.015577411279082298,-0.052600469440221786,-0.03729075938463211,0.03321647644042969,0.09745048731565475,-0.019060341641306877,-0.012000294402241707,-0.0885223001241684,-0.03579450398683548,-2.01907415231517e-8,0.009546038694679737,0.044357117265462875,0.022258244454860687,-0.08322465419769287,-0.022359440103173256,0.06985969096422195,0.05206430330872536,-0.10494223237037659,-0.01760183833539486,0.009518089704215527,0.052793633192777634,0.011373951099812984,-0.029912181198596954,0.07541648298501968,0.0032903472892940044,0.01926894672214985,0.13335184752941132,-0.03157196566462517,-0.04095344617962837,0.03198828548192978,0.10338135808706284,0.0011036969954147935,0.0534423291683197,-0.04039464890956879,-0.03308604657649994,-0.05018417537212372,0.012120920233428478,0.002434851136058569,-0.028392259031534195,0.0013090715510770679,0.04686412587761879,0.03264223039150238,-0.0033019380643963814,-0.021860940381884575,-0.02008744888007641,-0.12867991626262665,0.02586795948445797,-0.03576629236340523,0.005225913133472204,0.0113375810906291,0.05038534104824066,0.0008854926563799381,-0.023872969672083855,-0.004760438576340675,-0.07780956476926804,0.003666577162221074,0.10438469052314758,-0.11366263031959534,0.030227653682231903,-0.004777776543051004,-0.030994517728686333,0.020407695323228836,0.07955632358789444,-0.025380469858646393,0.025094199925661087,0.010080398991703987,0.04410452023148537,-0.080917127430439,-0.04131324216723442,-0.013988709077239037,-0.054330118000507355,-0.008548934943974018,0.060138121247291565,0.00841066800057888]},{"text":"Soldiering, my dear madam, is the coward’s art of attacking mercilessly when you are strong, and keeping out of harm’s way when you are weak.","book":"Down and Out in Paris and London","chapter":31,"embedding":[0.012919477187097073,0.05336018279194832,-0.011131019331514835,0.024285396561026573,-0.009543508291244507,0.06778451055288315,0.07716771960258484,-0.05707034468650818,-0.057029616087675095,-0.016461722552776337,0.002921809209510684,-0.001267767627723515,0.09089580923318863,-0.016076210886240005,0.02386334352195263,0.025570273399353027,-0.00564214400947094,-0.009454009123146534,-0.018704600632190704,0.05108793452382088,-0.05141793191432953,0.07131431996822357,0.024076709523797035,0.09404957294464111,-0.05279415845870972,-0.011779336258769035,0.028952186927199364,0.056158244609832764,-0.02188917249441147,-0.0069006518460810184,-0.05478987470269203,-0.06810516119003296,-0.04462353140115738,0.05384506285190582,-0.012484412640333176,0.11404794454574585,0.052418068051338196,0.003237232333049178,0.008184508420526981,0.012023194693028927,-0.05666112154722214,-0.04886435344815254,0.005234292708337307,-0.07137829065322876,0.002816694788634777,0.04123976454138756,-0.031239069998264313,-0.015751300379633904,0.009555012919008732,-0.06956212222576141,-0.025179332122206688,-0.007619000039994717,-0.07001669704914093,-0.02248574234545231,0.037288304418325424,-0.08523738384246826,0.06928212940692902,0.03686841204762459,0.03361615911126137,0.019959446042776108,-0.09301205724477768,0.06858199089765549,0.06738180667161942,0.051067352294921875,0.03123229183256626,-0.090385302901268,0.04189573600888252,0.027138350531458855,-0.020438177511096,0.06558647751808167,-0.012159446254372597,0.042320746928453445,-0.010247747413814068,0.015110693871974945,-0.041120074689388275,0.03391837701201439,-0.009765316732227802,-0.004569215700030327,0.0796489343047142,-0.07161081582307816,-0.014980815351009369,-0.003772455034777522,-0.04610884189605713,0.0816807672381401,-0.037019435316324234,-0.09330569952726364,0.035643402487039566,-0.04428412765264511,0.13040176033973694,0.02098303660750389,-0.03566381707787514,0.04924085736274719,-0.017920266836881638,0.07224852591753006,-0.007910363376140594,-0.06309954822063446,-0.03854449465870857,0.03637378662824631,-0.19992387294769287,0.03450067713856697,0.07683345675468445,-0.02933351695537567,0.02838428132236004,-0.01234087347984314,0.036533426493406296,-0.061833083629608154,0.026716075837612152,-0.06645777821540833,-0.10409514605998993,-0.03930056095123291,0.012042488902807236,0.03143727779388428,-0.03758156672120094,-0.019771577790379524,-0.01864556409418583,0.04505453631281853,-0.06117834895849228,-0.06268568336963654,0.008038120344281197,0.09565506130456924,0.03887166455388069,-0.07772231847047806,-0.04045257344841957,-0.014574701897799969,0.040738437324762344,-0.07584626227617264,0.004141709301620722,-3.508810229586219e-33,0.039392780512571335,-0.012652183882892132,-0.00783994235098362,0.04133366048336029,0.02993769384920597,-0.12810586392879486,0.0035519329831004143,-0.0575021356344223,0.05368044227361679,-0.0004850104742217809,0.011924104765057564,0.008367938920855522,0.07484178245067596,0.10534560680389404,-0.03768092393875122,-0.04924914240837097,0.008044862188398838,0.03844233974814415,0.03630479425191879,-0.030614877119660378,0.004768682178109884,-0.003743157722055912,-0.04491562023758888,-0.01497174147516489,-0.011792104691267014,-0.052445776760578156,0.0030310272704809904,0.06954037398099899,-0.07102084904909134,0.05099574103951454,0.024192430078983307,0.0268381480127573,-0.041245851665735245,-0.05963892862200737,0.010372711345553398,-0.043095141649246216,-0.03695066645741463,-0.04822937026619911,-0.1014670729637146,0.023056404665112495,0.005582486744970083,0.016286497935652733,-0.01863587275147438,-0.009425641968846321,0.05013846978545189,0.02294745109975338,-0.012355595827102661,-0.0450848788022995,-0.08587692677974701,-0.029142143204808235,-0.0016759056597948074,-0.00018357230874244124,-0.0007926083635538816,0.01737436093389988,0.03024248778820038,0.010863393545150757,-0.019778601825237274,0.019684433937072754,-0.014314364641904831,-0.07430507987737656,0.015122439712285995,0.02958729863166809,0.00611903565004468,0.05229117348790169,-0.022791225463151932,-0.12081878632307053,-0.08691269904375076,-0.013107231818139553,-0.018544876947999,-0.008774681016802788,-0.030729250982403755,0.01042271126061678,0.042869701981544495,-0.03281654790043831,-0.05671132728457451,-0.011298009194433689,0.11502663791179657,0.012275675311684608,0.11960091441869736,-0.11230975389480591,-0.026643181219697,0.03465212509036064,-0.08253385871648788,0.06697864085435867,0.01016799733042717,-0.020390978083014488,0.07245952636003494,-0.1313011199235916,-0.054799165576696396,0.016482412815093994,-0.03114369884133339,-0.06871816515922546,-0.05900648608803749,-0.004671346861869097,-0.1469024121761322,1.1602783570526103e-34,0.014160901308059692,0.06411608308553696,0.05081719905138016,0.054794229567050934,-0.007360448595136404,-0.0050181252881884575,0.005506881512701511,0.07045748829841614,-0.002208823338150978,0.08345545083284378,-0.03456839546561241,-0.05524929612874985,-0.0785638764500618,0.03706857189536095,0.010246695019304752,-0.06867823749780655,0.05909212306141853,0.022331006824970245,-0.02375204674899578,-0.012704964727163315,-0.014418350532650948,0.04215091094374657,0.06754916161298752,-0.07405777275562286,0.023168103769421577,0.01032349094748497,0.0315098837018013,0.017689980566501617,0.0026379055343568325,-0.03931707516312599,0.10859812051057816,-0.07600975036621094,-0.0299987830221653,-0.03113977611064911,-0.028224756941199303,0.015535984188318253,0.026076780632138252,0.05629653483629227,-0.04414067417383194,0.01958543434739113,-0.055976659059524536,0.010119177401065826,-0.021527297794818878,0.028879627585411072,-0.020959893241524696,-0.0621151402592659,0.03020481951534748,-0.07051301002502441,-0.025760743767023087,0.040372636169195175,0.024893606081604958,-0.03563419356942177,0.05342024192214012,0.010166916996240616,0.005589419510215521,0.001102189882658422,-0.014925964176654816,-0.044315557926893234,-0.040278252214193344,0.008731051348149776,-0.04124428331851959,0.0028765348251909018,0.019945571199059486,-0.004483386408537626,0.014261962845921516,0.017328115180134773,-0.1028767004609108,0.061653733253479004,0.046595919877290726,0.06158394366502762,-0.000723543344065547,-0.012915370985865593,0.024731969460844994,0.024649005383253098,0.03851471096277237,-0.08426805585622787,-0.008024811744689941,-0.08285161107778549,-0.007754744030535221,-0.03006545640528202,0.02215968258678913,-0.11219625174999237,-0.05095439776778221,0.022105999290943146,-0.06147923693060875,-0.019879665225744247,0.03944762796163559,0.12973012030124664,0.025836694985628128,-0.025016548112034798,0.08263883739709854,-0.04107224568724632,0.001047435449436307,-0.00042996311094611883,-0.009115074761211872,-3.291726358156666e-8,-0.020969480276107788,0.043688543140888214,0.020291643217206,0.008323276415467262,-0.0351906418800354,-0.03417292237281799,0.05607074499130249,-0.0880243256688118,-0.002206138800829649,0.0658547431230545,0.033515796065330505,-0.001056717592291534,0.04052194207906723,-0.015311509370803833,-0.023132022470235825,0.0708061009645462,0.019452091306447983,-0.07487579435110092,-0.08843846619129181,-0.06561542302370071,-0.02449316903948784,-0.020659232512116432,-0.022740038111805916,0.021922709420323372,0.028153659775853157,0.11210524290800095,-0.05929865315556526,-0.043392788618803024,-0.05288923531770706,0.05855853110551834,0.050347208976745605,0.09973657131195068,-0.08498071134090424,-0.01795358955860138,-0.0052006905898451805,0.11830475181341171,0.08840332180261612,-0.019921012222766876,-0.041180647909641266,-0.032859016209840775,-0.06864973902702332,0.0006515465211123228,0.12313483655452728,0.04256146028637886,0.08536229282617569,0.05480927601456642,-0.0024704302195459604,0.016337517648935318,-0.0515739880502224,-0.07483477890491486,0.08180926740169525,-0.033780086785554886,0.021251380443572998,0.11802208423614502,-0.024300754070281982,0.04898994415998459,-0.008957134559750557,0.0020449282601475716,-0.037032753229141235,0.06362063437700272,-0.00042531423969194293,0.018646659329533577,0.02412000112235546,-0.019598200917243958]},{"text":"Sergius: I’ve often thought of that exchange since.","book":"Down and Out in Paris and London","chapter":31,"embedding":[-0.054243311285972595,0.03704782947897911,-0.023920832201838493,-0.0014810297871008515,-0.04934748262166977,0.010570692829787731,0.11358104646205902,0.026352854445576668,0.049639586359262466,-0.07805345207452774,0.008113935589790344,0.044034622609615326,-0.10117748379707336,-0.0021322164684534073,0.08741867542266846,-0.04178452491760254,0.04552702605724335,0.011248144321143627,0.008626800030469894,0.02211877889931202,-0.016864364966750145,-0.04738377034664154,0.053670208901166916,-0.0008116277167573571,-0.013342903926968575,0.0013717032270506024,-0.036611709743738174,0.02181074768304825,-0.020626166835427284,-0.033824317157268524,0.0009385048178955913,0.06612205505371094,-0.04085523262619972,0.005968865472823381,-0.05550111085176468,0.06918508559465408,0.014976579695940018,-0.05243314057588577,-0.010844483971595764,-0.09943854063749313,-0.0009788048919290304,0.016658809036016464,0.010627977550029755,-0.035756904631853104,-0.12682662904262543,-0.06470231711864471,0.015404835343360901,0.013707519508898258,0.03452042117714882,-0.04048776626586914,-0.05110989138484001,-0.05848550423979759,0.0012857125839218497,0.007110610604286194,0.03064568340778351,0.03689480572938919,-0.02756384015083313,-0.058738842606544495,0.0012861649738624692,-0.06689450889825821,-0.0840742364525795,0.08790095150470734,0.025710713118314743,0.05670120567083359,-0.012175993993878365,-0.06672678142786026,-0.005460465792566538,0.051975514739751816,-0.03406492993235588,0.0382092222571373,-0.01816374436020851,-0.03926653414964676,-0.05868986248970032,0.028758132830262184,-0.06001703068614006,0.03742161765694618,0.04936867952346802,-0.08762434124946594,0.05329558253288269,0.04753221198916435,-0.0030619793105870485,0.06330638378858566,0.007099211681634188,0.06542246788740158,0.04045659676194191,-0.018431007862091064,0.0019351476803421974,0.027250438928604126,0.06578758358955383,0.00016507055261172354,-0.011418571695685387,-0.038068484514951706,0.04438719525933266,0.054842740297317505,-0.0007623494602739811,-0.024955540895462036,-0.04330293834209442,0.06782150268554688,-0.05584267899394035,0.08382513374090195,0.02533065900206566,0.042732030153274536,0.051708903163671494,-0.06609833240509033,0.001724964240565896,-0.022249361500144005,-0.06675375998020172,-0.01385587826371193,-0.05447669327259064,-0.022098232060670853,-0.09635597467422485,-0.07491453737020493,-0.04267001897096634,0.012246805243194103,-0.06029905378818512,0.0912054106593132,-0.06262706965208054,-0.01766415499150753,-0.043805625289678574,0.0011570812202990055,0.03276224061846733,0.06787607818841934,-0.0001623500429559499,0.07903648912906647,-0.04454398155212402,0.05798402801156044,-0.06250429153442383,-6.36244472374622e-33,-0.023814169690012932,0.00857573188841343,0.03721969947218895,0.002352033043280244,0.006092028226703405,-0.022063646465539932,-0.06131083890795708,0.02519461140036583,-0.02455134317278862,0.011350939981639385,-0.08399507403373718,0.07288792729377747,-0.013112274929881096,0.022507179528474808,-0.052952758967876434,-0.01336968969553709,-0.02539970725774765,0.034754592925310135,0.11946241557598114,-0.0025865898933261633,0.0742788091301918,0.05979534983634949,0.05069640651345253,-0.030036084353923798,0.02036566473543644,-0.03140079975128174,-0.02003485895693302,0.02119043469429016,0.1038304939866066,0.057189784944057465,0.07207867503166199,0.008590785786509514,0.022171009331941605,-0.07657357305288315,-0.018557816743850708,0.07096350193023682,0.02486141212284565,-0.09951461851596832,-0.01951483078300953,0.024289902299642563,-0.0935346856713295,0.02608155645430088,-0.062094591557979584,0.04829079657793045,-0.014138164930045605,-0.0072443378157913685,0.02096576616168022,-0.014088816940784454,0.04507529363036156,-0.01274929940700531,-0.04053760692477226,-0.05208119750022888,0.007359187118709087,-0.017640041187405586,-0.06706413626670837,-0.05760645866394043,0.0655021220445633,0.03990723192691803,0.040710851550102234,0.017494168132543564,-0.0012202811194583774,-0.053677380084991455,0.06481411308050156,-0.02361162193119526,0.03840842470526695,0.03265867754817009,0.0010426044464111328,0.027190333232283592,-0.1044398844242096,-0.053770072758197784,-0.04291090741753578,0.03431396558880806,-0.022483333945274353,0.06002857908606529,-0.021083086729049683,-0.08394752442836761,0.01069855410605669,-0.01947484165430069,0.06238924711942673,-0.027525024488568306,-0.024613196030259132,-0.04761671647429466,-0.09531810134649277,0.11094042658805847,0.06897875666618347,0.02523566596210003,0.0258552934974432,0.008391829207539558,-0.033734168857336044,0.03231077641248703,-0.012445797212421894,0.00757394265383482,0.045123390853405,-0.010101702064275742,-0.010671705938875675,1.7187046166746672e-33,-0.038156185299158096,-0.05169893428683281,-0.08157994598150253,0.055189598351716995,-0.02797486074268818,0.0315832793712616,-0.03357996046543121,0.05533602088689804,0.012400619685649872,0.05455267056822777,-0.03970866650342941,-0.06988291442394257,0.12203831970691681,-0.016136493533849716,-0.000658127071801573,-0.037911854684352875,0.02672768384218216,-0.07442513853311539,0.04457911476492882,0.004716506227850914,-0.06156792491674423,0.09765589982271194,-0.00209294562228024,0.013860661536455154,0.030819661915302277,-0.0018884955206885934,0.00327654043212533,-0.06816679984331131,-0.1655561327934265,0.03610917553305626,-0.030681395903229713,-0.01559428684413433,-0.04966309294104576,-0.017356188967823982,0.03847195953130722,0.09992434829473495,0.03589416295289993,-0.09562968462705612,0.007762853521853685,0.0375119186937809,0.02790057472884655,-0.02517434023320675,0.08759216219186783,0.12920700013637543,-0.01640099473297596,-0.006349921692162752,-0.09827367216348648,0.0553770549595356,0.048375435173511505,0.024835769087076187,-0.08921684324741364,-0.008493579924106598,-0.043839629739522934,-0.1321929544210434,0.009278446435928345,0.09608200937509537,-0.07556085288524628,-0.0023751272819936275,-0.08201148360967636,-0.003713368671014905,0.007895607501268387,-0.03992168605327606,0.013309854082763195,0.0013217857340350747,0.04678235203027725,0.06890606135129929,0.007168814539909363,0.00818401575088501,-0.01509243343025446,-0.015484822914004326,0.09635704010725021,-0.047858282923698425,-0.1689046174287796,-0.00405918387696147,0.011130732484161854,0.02838185429573059,0.00226796162314713,-0.03685451298952103,-0.0062014199793338776,-0.014890765771269798,-0.05696406960487366,0.002730973530560732,0.07131511718034744,-0.02680361643433571,0.056954290717840195,0.013226822949945927,-0.08108621835708618,0.06254082173109055,0.04685857892036438,-0.02926970273256302,-0.012622904032468796,-0.0672735944390297,0.008124387823045254,-0.010227433405816555,-0.04238862544298172,-2.3566384399487106e-8,-0.006782537791877985,0.029026972129940987,0.10134317725896835,0.06869763135910034,0.023410696536302567,-0.027804633602499962,0.010254357010126114,-0.06364888697862625,-0.06010760739445686,0.04675742983818054,-0.007068505045026541,0.11330775171518326,0.005649946630001068,-0.05317153409123421,0.03572887182235718,0.012971041724085808,0.08608834445476532,0.025687051936984062,-0.06754997372627258,-0.052804604172706604,-0.00870148092508316,-0.00031736312666907907,0.12605442106723785,-0.007364253979176283,-0.019909029826521873,0.042217038571834564,-0.012130954302847385,-0.0063620456494390965,0.020835600793361664,-0.08538972586393356,0.016876108944416046,-0.011521010659635067,-0.10008281469345093,0.005941834766417742,-0.030237451195716858,0.04524173587560654,-0.07320822030305862,-0.020160267129540443,0.04791830852627754,-0.007057258393615484,-0.011202708818018436,-0.024702878668904305,-0.003963435534387827,0.06076887995004654,0.025625379756093025,0.1856299638748169,0.027123061940073967,-0.005263390485197306,-0.01617579720914364,-0.022634010761976242,-0.02077936939895153,-0.006398210301995277,0.008472290821373463,0.06654849648475647,-0.02280297689139843,0.047159288078546524,-0.05231860652565956,0.04467097297310829,0.00741270137950778,-0.05832777917385101,0.10131454467773438,-0.006558310706168413,-0.05853581055998802,0.0181785486638546]},{"text":"A volunteer of course—keen on picking up his profession. (_Chuckling._) We shouldn’t have been able to begin fighting if these foreigners hadn’t shewn us how to do it: we knew nothing about it; and neither did the Servians.","book":"Down and Out in Paris and London","chapter":31,"embedding":[0.026751136407256126,0.10598932951688766,-0.0045505003072321415,-0.009883562102913857,-0.0023195582907646894,-0.012467441149055958,0.06439050287008286,-0.11474060267210007,-0.0569179430603981,0.0317726731300354,-0.007914263755083084,-0.07073193788528442,-0.024554649367928505,0.04909604415297508,-0.04559636116027832,0.012751024216413498,-0.09443349391222,-0.02574242651462555,0.013925625942647457,0.032233018428087234,-0.10562009364366531,-0.0028521327767521143,0.1260751485824585,0.066114641726017,-0.005614388268440962,0.0029190692584961653,0.05561714619398117,-0.03493073210120201,-0.008451655507087708,0.027443766593933105,0.007600224576890469,-0.0496407113969326,0.0012433520751073956,0.0654297024011612,-0.02678368054330349,0.03222278505563736,0.11483946442604065,0.022649912163615227,0.019882986322045326,-0.06975430995225906,0.015853838995099068,-0.036421649158000946,0.044451069086790085,0.013948873616755009,0.031980063766241074,0.02165796607732773,0.042887017130851746,0.027174698188900948,-0.02396843582391739,-0.08024677634239197,0.009456753730773926,-0.011053604073822498,-0.029614929109811783,-0.08125051856040955,-0.009275365620851517,-0.06089749559760094,0.048412252217531204,0.008928393945097923,0.01818021573126316,-0.015518510714173317,-0.0794442817568779,0.028302494436502457,0.01166123989969492,0.05808630585670471,-0.04255376383662224,-0.03934834897518158,0.011928302235901356,0.051943179219961166,-0.006707530468702316,0.03938840702176094,-0.0050984215922653675,0.02264559641480446,0.058780111372470856,0.03956645354628563,-0.04884164407849312,-0.04953199625015259,0.04551428556442261,0.004194432869553566,0.05779010429978371,-0.031026095151901245,-0.014479146338999271,0.015018117614090443,-0.08594388514757156,0.08991086483001709,0.03366975113749504,0.03084159828722477,0.04818030819296837,-0.0021998886950314045,0.09420771896839142,-0.0074112871661782265,-0.03264264017343521,-0.02882673777639866,0.06492267549037933,0.009087096899747849,-0.028585322201251984,-0.006040720269083977,0.06439719349145889,0.13582538068294525,-0.0927099660038948,0.08492530137300491,0.08617070317268372,-0.02755524218082428,-0.00781893078237772,-0.003403671784326434,-0.13813376426696777,0.04170721396803856,-0.10271859169006348,-0.12120121717453003,-0.06651251763105392,-0.02336275950074196,-0.06346586346626282,-0.041537825018167496,-0.06754384934902191,0.056045930832624435,0.025755619630217552,0.10197179764509201,-0.0012268080608919263,-0.028814056888222694,-0.038508154451847076,-0.003198966383934021,-0.01177093293517828,0.05065299943089485,-0.12911485135555267,-0.020266802981495857,-0.02286732941865921,0.027418620884418488,-0.059841446578502655,-3.181260932781496e-33,0.06452358514070511,0.032001953572034836,0.07703413814306259,0.10477148741483688,-0.02448318339884281,-0.010300707072019577,-0.005880178418010473,0.019432665780186653,0.04896431043744087,0.03697265684604645,0.005544736515730619,0.04790157079696655,0.05148676037788391,0.019843915477395058,-0.032620400190353394,0.03366144746541977,-0.0849529355764389,-0.1029827669262886,-0.04424658417701721,-0.019728492945432663,0.09088753163814545,-0.03608674928545952,-0.039080072194337845,0.06731409579515457,0.02134912833571434,-0.058191780000925064,-0.009564068168401718,-0.029692720621824265,0.08907177299261093,0.04617384448647499,-0.02536601759493351,0.04785449802875519,0.0018320231465622783,-0.013416829518973827,0.008631442673504353,-0.00022195346537046134,0.030395204201340675,-0.047640372067689896,-0.04429805651307106,-0.035668496042490005,-0.011938652023673058,0.05151856690645218,0.013131038285791874,0.006616666913032532,0.05209086462855339,-0.08802451193332672,0.04395800083875656,-0.0010006795637309551,-0.05091111361980438,0.0877259373664856,-0.018709417432546616,-0.016068534925580025,0.008245334960520267,-0.0629238486289978,0.018278129398822784,-0.039429642260074615,-0.008788296021521091,0.06890904158353806,-0.06623339653015137,-0.018369121477007866,0.019669853150844574,-0.02841993048787117,-0.008033734746277332,0.09709630161523819,-0.006242138333618641,-0.041398413479328156,-0.022150354459881783,0.046250779181718826,-0.04962771758437157,-0.1197286918759346,-0.05658521130681038,0.0505770668387413,-0.01807662658393383,-0.03473832458257675,-0.12509030103683472,0.029108483344316483,0.026822656393051147,-0.010819797404110432,0.04779152199625969,-0.05268891528248787,0.007229049690067768,-0.01749570667743683,-0.052135150879621506,0.0384209044277668,0.04604608938097954,0.008184919133782387,0.023726344108581543,-0.03672940656542778,0.012091247364878654,0.017743689939379692,-0.09301348775625229,-0.0286997202783823,0.0456257164478302,-0.0033117623534053564,-0.08084596693515778,-1.2844008718545992e-33,0.002565546426922083,-0.02557230368256569,-0.011863709427416325,0.017643021419644356,0.06632399559020996,0.005821648519486189,-0.00844509620219469,-0.052988480776548386,-0.010110864415764809,0.04212961718440056,-0.03486635908484459,-0.07279226928949356,0.09886103123426437,0.06138903647661209,0.013225042261183262,-0.029907450079917908,0.02469222992658615,0.01994997449219227,-0.014465211890637875,0.059795498847961426,0.030957967042922974,0.040263641625642776,0.03610973805189133,-0.018747178837656975,0.003331119427457452,0.004293563310056925,0.08134856820106506,0.017181968316435814,-0.07135248184204102,0.003484768560156226,0.029999298974871635,-0.008462953381240368,-0.07311790436506271,-0.04519115760922432,-0.012034639716148376,0.08327599614858627,0.06011243537068367,0.02412026934325695,-0.013462585397064686,0.012494796887040138,-0.08788733184337616,-0.002289279131218791,-0.02355588600039482,0.06062980368733406,-0.015178600326180458,-0.006478296127170324,-0.05939779803156853,-0.08343423902988434,-0.05565623939037323,-0.08851119130849838,-0.04591463878750801,0.004606314469128847,-0.024597689509391785,-0.028423771262168884,0.003151891054585576,0.05084683373570442,-0.05442328378558159,-0.08483321964740753,0.08917717635631561,-0.050467122346162796,-0.05935480445623398,-0.024787530303001404,-0.03375017270445824,0.05597802624106407,-0.02909056656062603,-0.06342387199401855,-0.007976099848747253,0.17185553908348083,-0.05008762702345848,0.029614396393299103,0.07282818108797073,0.016056332737207413,-0.014701791107654572,-0.01595652848482132,0.042720068246126175,-0.004977650940418243,-0.09362248331308365,-0.03891634941101074,0.01040940172970295,0.03126652166247368,0.032663047313690186,-0.09885459393262863,-0.015426394529640675,-0.007717231288552284,0.03384244069457054,0.058472298085689545,0.01542862132191658,0.02982884645462036,0.10253285616636276,-0.05013604462146759,0.019286300987005234,-0.06045331060886383,0.027814701199531555,-0.0396081916987896,0.009220028296113014,-3.9024211417881816e-8,-0.03293561562895775,-0.06608674675226212,-0.02129204198718071,0.04067401960492134,-0.049740489572286606,-0.0019064026419073343,-0.1017700657248497,-0.0032066134735941887,-0.014956404455006123,0.03780534490942955,0.0023833182640373707,-0.008284632116556168,0.020312322303652763,0.003670879639685154,0.05560234561562538,-0.014274397864937782,0.02573346719145775,0.028144776821136475,-0.05739903450012207,-0.03122587874531746,-0.02516074851155281,0.015731336548924446,-0.03399484604597092,-0.058340854942798615,0.008870996534824371,0.0408102348446846,-0.039941392838954926,-0.02799392305314541,-0.025103215128183365,0.06606283038854599,-0.06655251234769821,0.03573938086628914,-0.16236534714698792,-0.05601958930492401,-0.043619487434625626,0.04233332350850105,-0.03201889991760254,-0.06513215601444244,-0.024893123656511307,-0.05315271392464638,-0.07818035781383514,0.11477825790643692,0.04669717326760292,0.03834787383675575,0.07049310207366943,0.05409585312008858,-0.06579434126615524,-0.037784282118082047,-0.018193216994404793,-0.03549250587821007,0.06728217750787735,-0.035348813980817795,0.08144243061542511,0.08181454986333847,0.06048279628157616,0.012050722725689411,0.0223312396556139,0.04829733446240425,-0.04212237522006035,0.021572237834334373,-0.026192093268036842,-0.05669071897864342,-0.08335641026496887,0.008971304632723331]},{"text":"He cheated us—humbugged us into giving him fifty able bodied men for two hundred confounded worn out chargers.","book":"Down and Out in Paris and London","chapter":31,"embedding":[0.00607560109347105,0.07334629446268082,-0.043920449912548065,-0.019032299518585205,-0.017245348542928696,-0.0439985990524292,0.0589107982814312,0.003253989852964878,-0.06565988808870316,0.026593061164021492,0.005405605770647526,-0.0356595553457737,0.06987573206424713,0.030281759798526764,-0.038566283881664276,-0.00901433452963829,-0.04370870813727379,-0.006678891833871603,-0.007765948306769133,0.001653045299462974,-0.001744876615703106,0.05768313258886337,-0.007214697543531656,-0.014358057640492916,-0.06459027528762817,0.010422546416521072,-0.05548028647899628,0.013425493612885475,-0.015858246013522148,-0.062375668436288834,0.06407329440116882,0.0053627872839570045,0.037655364722013474,-0.01213953085243702,-0.04102059081196785,-0.04519093409180641,-0.018238842487335205,0.014248530380427837,0.00336326751857996,-0.003136616200208664,0.07126888632774353,-0.09383884817361832,0.011243346147239208,0.039517421275377274,-0.05554400384426117,0.004185782745480537,-0.06940579414367676,-0.027226030826568604,0.06313548982143402,0.04806746169924736,0.06458376348018646,0.11013076454401016,0.055051494389772415,-0.0063051460310816765,0.0494750440120697,0.010641288943588734,0.028118634596467018,-0.0016598808579146862,-0.02188069187104702,-0.02388664335012436,0.009103852324187756,0.025160131976008415,0.0377090647816658,-0.018140995875000954,0.020629003643989563,-0.02328336425125599,-0.023123856633901596,-0.0087523078545928,0.004203961696475744,0.075250543653965,0.11733478307723999,-0.023822549730539322,-0.10089700669050217,-0.0348556786775589,0.020179711282253265,0.07526620477437973,0.022497178986668587,-0.03252413868904114,0.02014687843620777,-0.01772388070821762,-0.09628365188837051,-0.017538733780384064,-0.0152257289737463,0.03994930535554886,0.023332450538873672,-0.027188699692487717,-0.03984890505671501,-0.024836314842104912,-0.02353869564831257,0.02374443970620632,0.020226696506142616,-0.028398357331752777,0.009979969821870327,-0.023535095155239105,-0.0646679699420929,0.04982348158955574,-0.034998003393411636,0.10526406019926071,-0.09003785997629166,0.033794913440942764,0.05688052251935005,0.0759073793888092,-0.026814663782715797,-0.10191836953163147,0.02039952576160431,-0.033669814467430115,0.035334035754203796,0.008124121464788914,-0.026256801560521126,-0.015924345701932907,0.05863005667924881,0.027780884876847267,-0.013846587389707565,0.07098495960235596,0.04181718826293945,0.012203345075249672,-0.04739319160580635,0.08725006878376007,0.012581667862832546,-0.09025444090366364,0.06046893820166588,0.09079822897911072,-0.008608396165072918,0.05684565380215645,-0.020743506029248238,-0.08051173388957977,0.042164381593465805,5.722068645867846e-34,0.083260178565979,-0.05623741075396538,0.0135854696854949,0.05609007552266121,0.01615210808813572,-0.022475149482488632,0.01063727680593729,0.04448917135596275,0.02221645414829254,-0.009779938496649265,0.007229553069919348,0.08542627841234207,0.020447511225938797,-0.0344545878469944,-0.017660580575466156,-0.0026604828890413046,-0.04788053408265114,-0.08743434399366379,0.007489669602364302,-0.04876910522580147,-0.055320825427770615,0.022138796746730804,0.07013402879238129,-0.006232401821762323,-0.06596480309963226,0.04720303416252136,-0.08461051434278488,0.02734874188899994,0.0533924400806427,0.010302558541297913,0.030814489349722862,0.05130214989185333,0.07007306069135666,0.07339593768119812,-0.05584416911005974,-0.013512277975678444,-0.018366770818829536,-0.011338097043335438,-0.07284748554229736,0.11681915819644928,0.0034307334572076797,0.010677740909159184,0.00044131025788374245,-0.0390993170440197,0.027835030108690262,0.04619045928120613,0.06666383892297745,-0.052392784506082535,-0.00797562301158905,-0.03643708676099777,-0.013791470788419247,0.015304027125239372,0.0514075867831707,-0.09919074177742004,0.00554107828065753,0.03298615664243698,0.06837648898363113,0.02457750402390957,0.01598682813346386,0.07072044163942337,-0.010592535138130188,-0.018118135631084442,0.020778609439730644,0.0006078966544009745,-0.18865202367305756,-0.06482886523008347,-0.027848340570926666,-0.04056650772690773,-0.11604031920433044,0.10917922109365463,-0.031879328191280365,0.011625111103057861,-0.058434005826711655,-0.009163607843220234,0.0013705590972676873,-0.0019596561323851347,0.05279015004634857,0.050982967019081116,0.03329647704958916,-0.12112172693014145,-0.08296047896146774,-0.04568082094192505,0.014588319696485996,0.02036590687930584,0.07850036770105362,0.002363316947594285,0.008172577247023582,-0.06155131384730339,-0.004832767881453037,0.005931038409471512,-0.009649879299104214,0.013576626777648926,0.013928274624049664,-0.10400521010160446,0.0037771305069327354,-3.8509907576388325e-33,-0.06527501344680786,0.06070985272526741,0.013483380898833275,-0.002906638663262129,0.0817503035068512,-0.0273151695728302,0.004148546140640974,0.0732043981552124,0.046057481318712234,-0.026172446087002754,-0.026142535731196404,-0.006837848573923111,0.008970591239631176,0.04547019675374031,0.04497692734003067,-0.022544020786881447,0.03361187130212784,-0.043755799531936646,-0.06961075216531754,0.00595676526427269,0.0843304842710495,0.05736621841788292,0.11337324976921082,0.0044423253275454044,-0.02927900105714798,0.041007690131664276,-0.012435193173587322,-0.10304294526576996,0.06245873495936394,0.05543988198041916,0.01614893414080143,-0.015927977859973907,-0.03007453680038452,0.10408015549182892,0.0034718597307801247,0.014090902172029018,-0.0299752838909626,0.15171882510185242,0.018539968878030777,-0.03984814137220383,-0.0704629123210907,-0.058505572378635406,-0.0816592276096344,-0.01322857290506363,-0.03501807525753975,-0.04846632480621338,-0.0711577981710434,-0.049725309014320374,-0.028358083218336105,-0.0077132247388362885,-0.04137278348207474,0.03644851595163345,-0.07198426872491837,0.07170972973108292,-0.09987740963697433,-0.020212097093462944,0.005634801462292671,-0.020611103624105453,0.10664748400449753,-0.04300104081630707,-0.14897823333740234,-0.001863087061792612,0.008479929529130459,-0.06704311817884445,-0.038999270647764206,0.0740770623087883,0.004916198551654816,-0.037931282073259354,-0.10969235002994537,0.04554690793156624,-0.01510693971067667,-0.067413330078125,0.006855498068034649,0.0033135528210550547,-0.028229914605617523,0.10907915234565735,-0.13851051032543182,-0.048235561698675156,0.00716062868013978,0.00021443555306177586,-0.03176538273692131,-0.01867736130952835,0.017474235966801643,0.06275133788585663,-0.0545356310904026,-0.010793802328407764,0.07041318714618683,-0.045932091772556305,0.015143760479986668,0.015426255762577057,0.023532532155513763,-0.07038287073373795,0.04101722314953804,0.08852311223745346,-0.015049081295728683,-2.7924036416493436e-8,-0.10553547739982605,0.03229527547955513,-0.06930182874202728,0.04963802918791771,0.008511518128216267,0.04483944550156593,-0.06268448382616043,-0.042514290660619736,0.020802250131964684,0.06905070692300797,-0.005800803191959858,-0.00978517159819603,0.06469859182834625,0.021157575771212578,0.06897474825382233,0.024356890469789505,-0.057972948998212814,-0.024778315797448158,-0.05191103741526604,0.007468951866030693,-0.059775203466415405,0.03843565657734871,-0.13439249992370605,0.05303012952208519,-0.030056698247790337,0.03479761257767677,-0.045547109097242355,0.018171431496739388,0.011956666596233845,-0.013872948475182056,-0.007185032125562429,0.0027762949466705322,-0.09195370972156525,-0.011857437901198864,0.06603354215621948,0.01780153438448906,0.01819990761578083,-0.10521210730075836,0.03131140023469925,-0.016181716695427895,0.03952272608876228,-0.007805845234543085,-0.013303035870194435,0.03023572824895382,0.04669918492436409,-0.05062556639313698,-0.062086913734674454,0.07145477086305618,-0.06115185096859932,0.021892741322517395,0.03067612648010254,0.04663418233394623,-0.007748761679977179,0.009601510129868984,0.017884986475110054,-0.062226563692092896,-0.005253221374005079,-0.06243418902158737,-0.03911175951361656,-0.04582405835390091,0.0002530234050936997,-0.03042781539261341,0.11416102200746536,-0.02957936003804207]},{"text":"Oh, yes, quite a romance.","book":"Down and Out in Paris and London","chapter":32,"embedding":[-0.05647721141576767,0.01182501669973135,0.07712264358997345,0.025063415989279747,-0.10613145679235458,0.0024285069666802883,-0.033486053347587585,-0.0705706849694252,0.09425945580005646,-0.043688785284757614,-0.00022082436771597713,0.04929837957024574,-0.04657209292054176,-0.004935188218951225,0.08818860352039337,0.03427285701036453,0.027396496385335922,-0.04368210211396217,0.00513174245133996,0.1042885109782219,-0.13777340948581696,0.0554230697453022,-0.00883734505623579,0.012087710201740265,-0.017340749502182007,-0.018381392583251,0.10281629860401154,-0.007751858793199062,-0.05527987703680992,0.024786772206425667,0.0018946516793221235,0.13986748456954956,-0.007804359775036573,0.02502083219587803,-0.011223280802369118,0.06445140391588211,-0.06387852877378464,-0.0024354213383048773,0.0760749876499176,-0.03133422136306763,-0.026923608034849167,-0.04551161453127861,0.10642396658658981,0.025713665410876274,-0.04308006912469864,-0.04066264256834984,-0.05195200443267822,-0.040272701531648636,-0.051995135843753815,0.01337473839521408,-0.01602526567876339,0.0482119657099247,0.0001950994919752702,0.013138270005583763,0.03275511413812637,0.02623940445482731,-0.0037250788882374763,-0.04287359118461609,0.06397466361522675,0.04082927480340004,0.06585682928562164,0.04775349050760269,0.013412456028163433,0.11411146819591522,0.010471113957464695,-0.049321044236421585,-0.06471571326255798,-0.06138650327920914,0.01334118191152811,0.03561292216181755,-0.00799548625946045,0.00926549918949604,0.003644821932539344,-0.012592391110956669,-0.07803089171648026,-0.008917302824556828,-0.041932664811611176,-0.02541905827820301,0.024349316954612732,-0.07364335656166077,0.0296290572732687,-0.06302393972873688,0.005262215621769428,0.007459547836333513,-0.042281925678253174,0.002834842773154378,0.028896434232592583,-0.10831589996814728,-0.04258286952972412,0.025227800011634827,-0.0860602855682373,-0.03073812648653984,-0.026616988703608513,0.04468156397342682,-0.017505498602986336,-0.04253476485610008,0.02421238273382187,0.043630946427583694,-0.05139120668172836,0.034307509660720825,0.053129784762859344,0.10637597739696503,-0.03709004446864128,0.009348257444798946,-0.022525276988744736,0.021918468177318573,-0.10784024745225906,-0.054259516298770905,-0.07417434453964233,-0.10807819664478302,-0.011170298792421818,-0.029205892235040665,-0.07582700252532959,-0.0014553667278960347,0.0727916732430458,-0.05039625242352486,0.04581394046545029,-0.0005326876416802406,0.0457368865609169,0.10087858140468597,0.07101114839315414,0.006901920773088932,-0.03627270460128784,0.0048861512914299965,-0.025626249611377716,-0.07097427546977997,0.05021797865629196,-8.014243508049944e-33,0.04114688187837601,-0.009041352197527885,-0.02759764902293682,0.09178190678358078,0.010399026796221733,0.03726045787334442,-0.04044000431895256,0.017127683386206627,-0.07510588318109512,0.02237827330827713,-0.007569846697151661,0.10185163468122482,-0.02481032721698284,-0.04785533621907234,0.03305353224277496,0.005571288056671619,0.03570256009697914,-0.017210373654961586,0.009794347919523716,-0.006041357293725014,-0.027321452274918556,0.0700685977935791,0.03574022278189659,-0.0077174948528409,-0.025805970653891563,0.002978669945150614,-0.009656171314418316,0.020099947229027748,0.024297503754496574,0.031833466142416,-0.0161780696362257,0.050568029284477234,0.0032417208421975374,-0.051380809396505356,0.04033837094902992,-0.046714890748262405,-0.047002922743558884,-0.055622898042201996,0.007867509499192238,0.0980181097984314,-0.03240855783224106,-0.02307247184216976,-0.02536439523100853,0.01814631000161171,-0.14906325936317444,0.03536989912390709,-0.018025744706392288,0.030822236090898514,-0.02430698648095131,-0.03474346175789833,-0.0774972140789032,-0.04575526714324951,-0.03821040689945221,0.0677003413438797,-0.011259851045906544,0.002370665315538645,0.03151189535856247,-0.006233117543160915,0.0966980904340744,0.02040070667862892,0.061402007937431335,0.023593544960021973,0.027122437953948975,-0.1091846451163292,0.01004810817539692,-0.008351052179932594,0.00129863026086241,0.029369449242949486,0.07992834597826004,0.029042748734354973,-0.047579314559698105,0.04467754438519478,-0.02421635575592518,0.02125266008079052,-0.0244450680911541,0.008991589769721031,0.1117800623178482,-0.030556147918105125,0.05545595660805702,-0.0382516048848629,-0.03740876913070679,0.014924663119018078,0.08059289306402206,0.0041984133422374725,-0.06535365432500839,-0.05702635645866394,0.020437678322196007,-0.022089460864663124,-0.03600339591503143,0.014040766283869743,-0.03561121225357056,0.06009567156434059,0.0007481217035092413,-0.1509248912334442,0.018971456214785576,4.297937587050467e-33,0.03312385454773903,-0.030977457761764526,-0.032974619418382645,-0.04170066863298416,0.01405262853950262,0.005657662637531757,0.0014374463353306055,0.008817664347589016,-0.07213929295539856,0.04379024729132652,0.005157712381333113,-0.09745989739894867,-0.0056499093770980835,0.0049917870201170444,0.134625643491745,-0.05656587705016136,0.06953519582748413,-0.06488580256700516,0.008849935606122017,0.01678610034286976,-0.027258088812232018,0.01814308390021324,-0.009516868740320206,-0.025263233110308647,-0.019572626799345016,0.05027437582612038,-0.0012983223423361778,-0.027120819315314293,-0.11904539167881012,-0.0027313458267599344,0.07004819065332413,-0.08210765570402145,-0.04537111520767212,-0.05809636786580086,0.039437148720026016,0.029072657227516174,0.024783894419670105,-0.04948190599679947,0.05246354267001152,-0.013377332128584385,-0.034279461950063705,-0.09487175941467285,0.015843164175748825,0.1636396199464798,0.05994002893567085,-0.003973831422626972,-0.01779082790017128,0.02542002871632576,0.06718961894512177,0.04557952657341957,0.00971587561070919,0.036532435566186905,-0.11413223296403885,-0.04869750142097473,-0.05643237754702568,-0.052046455442905426,0.009425404481589794,0.023719055578112602,-0.008949536830186844,-0.03612285852432251,-0.09840298444032669,-0.015053361654281616,0.023810526356101036,0.01844923384487629,-0.028257306665182114,0.03137288987636566,0.007531953044235706,0.017103614285588264,-0.004684616811573505,0.04780100658535957,0.03702637553215027,-0.0499468557536602,-0.06674517691135406,0.04435001313686371,0.0577179491519928,-0.09582412987947464,0.04969281330704689,-0.1416442096233368,0.011317338794469833,-0.010737398639321327,-0.0403570830821991,-0.06548536568880081,0.057496219873428345,0.039620522409677505,-0.030476951971650124,-0.03622695803642273,-0.1174323633313179,-0.02604306861758232,0.01345624029636383,0.04485997185111046,0.008567423559725285,-0.03517602011561394,0.03630874305963516,-0.037461671978235245,0.08934222906827927,-2.263238840782833e-8,-0.05134957656264305,-0.02540469355881214,-0.07844837754964828,-0.07177099585533142,-0.059050194919109344,0.07411002367734909,0.007583023048937321,-0.03569792956113815,-0.030925655737519264,0.08637253195047379,0.03906296566128731,0.09146353602409363,0.028023013845086098,0.024172618985176086,-0.006036852020770311,0.027853837236762047,0.12466829270124435,-0.0014845136320218444,0.0010426902445033193,0.007416545879095793,0.10459080338478088,0.04822273924946785,-0.012293999083340168,-0.0518437922000885,-0.009045296348631382,0.02633686177432537,0.05010906606912613,-0.04042740911245346,-0.005152397323399782,-0.0711822584271431,0.045035090297460556,0.03180474787950516,-0.03404322266578674,-0.005902557633817196,0.046072836965322495,0.02701539173722267,0.0230410173535347,-0.06048343703150749,0.029892824590206146,-0.0522494837641716,-0.024089736863970757,0.01642083004117012,-0.02469085343182087,0.10713313519954681,0.047460827976465225,0.014919979497790337,0.06730882078409195,-0.006210511550307274,0.022114120423793793,-0.0010743436869233847,0.022599967196583748,0.05241967365145683,-0.02411150559782982,0.013598384335637093,0.05126284435391426,-0.05031231418251991,-0.042326636612415314,-0.018261393532156944,-0.029120605438947678,-0.003746772650629282,0.08035438507795334,-0.045326780527830124,0.020039254799485207,-0.08731312304735184]},{"text":"The old lady was equally fascinated; and the fugitive was sent on his way in the morning, disguised in an old coat belonging to the master of the house, who was away at the war.","book":"Down and Out in Paris and London","chapter":32,"embedding":[-0.06462518870830536,0.0973990336060524,0.010185769759118557,0.05353386700153351,0.05883551761507988,0.029730137437582016,0.058862458914518356,-0.04482818767428398,-0.07435829937458038,-0.03684759885072708,0.022350948303937912,0.020438041538000107,0.0719759464263916,-0.09067828208208084,0.01267674658447504,-0.01054523978382349,-0.0013644323917105794,0.006967165507376194,-0.006926614325493574,0.024905215948820114,-0.02155972458422184,-0.03175630047917366,0.06349906325340271,0.046686504036188126,-0.002732271561399102,0.003971393685787916,0.00037024644552730024,-0.04550028219819069,-0.0012967397924512625,0.021624211221933365,0.061530373990535736,-0.011229736730456352,-0.04123604670166969,0.06358034908771515,-0.0202510766685009,0.023267222568392754,0.08489947021007538,0.10686331242322922,-0.025977713987231255,0.01933927834033966,-0.02394424006342888,0.021928250789642334,0.039632394909858704,-0.006985299289226532,-0.02293282561004162,-0.011515792459249496,-0.06802727282047272,-0.005194797646254301,0.060938626527786255,-0.008322018198668957,-0.042286258190870285,0.04219243302941322,-0.12035243958234787,0.025245094671845436,-0.04345233365893364,0.04901832714676857,0.04917759448289871,-0.006364802829921246,0.06752937287092209,-0.0026005643885582685,-0.06297807395458221,0.04291330277919769,0.09871900826692581,0.006327768787741661,-0.0023175266105681658,-0.17153675854206085,-0.05733174830675125,-0.01991834118962288,0.1137092113494873,0.00498393177986145,0.0750855803489685,0.047272827476263046,-0.0675586685538292,-0.09103468060493469,-0.04350517690181732,-0.0688416138291359,0.04374874755740166,-0.004078954458236694,-0.04003756493330002,-0.03872160613536835,-0.03480204939842224,-0.08868607878684998,-0.02734064869582653,0.09567177295684814,-0.017780005931854248,-0.05191768705844879,-0.09918332099914551,-0.01739601045846939,0.034717924892902374,-0.03414596989750862,0.005700430367141962,-0.10930181294679642,-0.013889163732528687,0.07530108094215393,0.0777512714266777,-0.057167451828718185,-0.006881456356495619,0.12583637237548828,-0.006664507556706667,0.08724500983953476,-0.0001229627669090405,0.01925629936158657,-0.05807318910956383,0.03604007884860039,0.015960711985826492,0.011836137622594833,0.04705096781253815,-0.027594398707151413,-0.06711800396442413,-0.028514759615063667,0.01231602393090725,-0.022703764960169792,0.004361866042017937,-0.025360748171806335,0.04992658272385597,-0.013827813789248466,0.025300540030002594,-0.04532124102115631,-0.07965255528688431,0.02709781564772129,0.05153331905603409,-0.0008547868928872049,-0.038570862263441086,-0.008223596028983593,-0.02452320046722889,0.007539007347077131,0.14511288702487946,-4.579951906124181e-33,-0.02308095246553421,0.015330467373132706,-0.05896426737308502,0.019270040094852448,0.050487812608480453,0.03707358241081238,0.07967259734869003,0.011893265880644321,0.032738734036684036,0.04849769547581673,-0.0038923670072108507,-0.057260818779468536,-0.07099767029285431,-0.02816353738307953,-0.13743886351585388,0.07748304307460785,0.0003586572129279375,0.0004021933418698609,0.06812792271375656,-0.028710225597023964,0.07627338916063309,0.09623613208532333,-0.01705283857882023,0.019631274044513702,-0.045461539179086685,-0.01425221934914589,-0.0023451640736311674,0.01776844449341297,0.03145081549882889,0.015380914323031902,0.028906309977173805,0.029849354177713394,0.037026166915893555,0.03174373507499695,-0.005074231419712305,0.02225412242114544,-0.05966316908597946,-0.12122312933206558,-0.017612719908356667,0.023645717650651932,-0.028995783999562263,-0.0034292025957256556,0.07367967069149017,-0.0017043263651430607,-0.14839772880077362,-0.056688372045755386,0.0339030995965004,-0.013583016581833363,0.009159112349152565,0.0767512321472168,0.004998307209461927,-0.0567072369158268,-0.04957105964422226,0.020569108426570892,-0.07450280338525772,0.04006161913275719,0.03376355022192001,0.058234136551618576,0.0754290297627449,-0.020557407289743423,0.06902702152729034,0.00592550914734602,0.05953298136591911,0.06788269430398941,0.04574193060398102,-0.0676078051328659,0.0034647525753825903,-0.0511079803109169,-0.07003271579742432,0.08398188650608063,-0.031125348061323166,0.022935776039958,-0.04955332726240158,-0.038358405232429504,0.04851885512471199,0.009516630321741104,0.019374433904886246,-0.03575393557548523,-0.020811457186937332,-0.11570580303668976,0.0021573402918875217,0.039160579442977905,-0.03303627669811249,0.10061391443014145,0.011107407510280609,-0.029623134061694145,0.027984023094177246,-0.0951990857720375,0.009960743598639965,0.0597597099840641,0.11879827082157135,-0.0433790497481823,0.0072400630451738834,-0.013886649161577225,-0.03856140002608299,8.990279977424705e-34,-0.0018145322101190686,0.016663694754242897,0.02777189202606678,0.008495017886161804,-0.005913249682635069,-0.04765532910823822,-0.030859369784593582,0.002845477545633912,-0.03621117025613785,0.016420794650912285,-0.07313451170921326,-0.026928672567009926,0.03664141148328781,0.03939378634095192,-0.027693333104252815,-0.006280222442001104,0.12386257201433182,0.016004638746380806,0.0029997031670063734,0.0040667736902832985,-0.1042148545384407,-0.013156335800886154,-0.05392136797308922,-0.053013142198324203,-0.03542332723736763,0.04919128119945526,0.0981292799115181,-0.012586119584739208,-0.05605107545852661,-0.016095684841275215,0.020304929465055466,-0.02712990716099739,-0.03338352218270302,0.048251330852508545,-0.03420284390449524,0.12711025774478912,0.018076419830322266,0.02048778347671032,0.030450908467173576,-0.017975451424717903,-0.0770229920744896,-0.021346615627408028,0.0720016285777092,0.025794100016355515,-0.03529953956604004,0.04406479373574257,-0.07387340813875198,0.08127297461032867,0.019211245700716972,0.048092011362314224,0.025487247854471207,0.038517069071531296,0.005636981222778559,-0.013883411884307861,-0.08295097202062607,0.008789819665253162,-0.08393021672964096,-0.04304870590567589,0.04650336876511574,0.07756193727254868,0.005694898776710033,-0.026799693703651428,-0.05967511609196663,-0.04064467176795006,-0.06882888078689575,-0.029750628396868706,-0.08423643559217453,-0.032973408699035645,-0.040423449128866196,-0.0033091879449784756,0.06170390173792839,-0.020205212756991386,-0.03128796070814133,0.0008547696052119136,0.0819365605711937,-0.029384536668658257,0.011085579171776772,0.026646723970770836,0.008881611749529839,-0.03850309178233147,-0.0034370480570942163,-0.05206317827105522,-0.057536233216524124,-0.06253396719694138,-0.028543224558234215,0.0006586171803064644,0.005013248883187771,0.07359343022108078,-0.04113730788230896,-0.1251307725906372,0.03954712301492691,-0.06407535821199417,0.09646883606910706,-0.060771435499191284,-0.015402414835989475,-2.9237043008834007e-8,-0.025126347318291664,0.05964016541838646,0.06739881634712219,-0.039811309427022934,-0.05071143060922623,-0.05119561776518822,-0.04130808264017105,-0.032962456345558167,-0.02706339955329895,0.05784072354435921,-0.046586085110902786,0.02250255085527897,0.07978475838899612,-0.022122958675026894,0.026484059169888496,-0.0012044006725773215,0.009879492223262787,-0.11765776574611664,-0.039658159017562866,-0.008500035852193832,0.05527951940894127,-0.02117067761719227,-0.022818738594651222,-0.004110680893063545,0.00567897642031312,0.050514500588178635,0.028782637789845467,0.02599562332034111,0.046541664749383926,0.11384826898574829,-0.03742675855755806,0.056532423943281174,-0.0677349865436554,0.010458985343575478,-0.007809586822986603,0.043684642761945724,0.06005537137389183,-0.00813943799585104,-0.030946195125579834,-0.03989597409963608,0.016006730496883392,-0.015666987746953964,-0.04726140946149826,-0.05140126869082451,0.026257190853357315,0.03774327412247658,0.04940714314579964,-0.07308434695005417,-0.04842589423060417,0.006521059665828943,0.056190092116594315,-0.034281812608242035,0.036195058375597,0.07433842122554779,-0.006635171826928854,-0.08006902039051056,0.028227556496858597,-0.06200335919857025,0.032140765339136124,0.02185779996216297,-0.059024181216955185,-0.022502673789858818,-0.03037942759692669,-0.0041453237645328045]},{"text":"No, Petkoff: I was wrong. (_To Raina, with earnest humility._) I beg your pardon.","book":"Down and Out in Paris and London","chapter":32,"embedding":[-0.01999627985060215,0.06635896861553192,-0.036443423479795456,-0.06528922915458679,-0.06937222182750702,-0.0021919109858572483,0.13753138482570648,-0.040338773280382156,0.0017706986982375383,-0.028604300692677498,-0.043527696281671524,0.012972901575267315,-0.1011495441198349,0.011210443452000618,-0.08103939890861511,0.0373796708881855,-0.020316561684012413,0.011082068085670471,0.025388283655047417,0.11068012565374374,-0.07713823020458221,0.08905110508203506,0.06183211877942085,0.025099681690335274,-0.04371606558561325,0.04348032549023628,0.07642193138599396,-0.0006469165673479438,0.002084840089082718,-0.0500011220574379,0.057116370648145676,0.09637358784675598,0.031456105411052704,0.0005134224193170667,-0.01989179104566574,0.06398321688175201,0.035170990973711014,-0.011944785714149475,0.04326599836349487,-0.00012991076800972223,0.055183496326208115,0.0004880143969785422,-0.10989363491535187,-0.012300646863877773,-0.014552515931427479,-0.022443147376179695,-0.0404244102537632,0.019703174009919167,0.01680636778473854,-0.06466398388147354,-0.028764372691512108,0.030448611825704575,-0.08405089378356934,-0.027491947636008263,-0.033809494227170944,-0.02740725874900818,0.04248492792248726,0.02569608762860298,0.009924856945872307,0.013863134197890759,-0.02749771624803543,-0.01526248175650835,-0.017785225063562393,0.12349146604537964,0.08178027719259262,-0.022668251767754555,-0.03751663863658905,-0.03611617535352707,-0.16870999336242676,0.09399152547121048,-0.05190708488225937,0.029510827735066414,0.04055746644735336,0.01767631061375141,-0.17037107050418854,-0.026827773079276085,0.052488960325717926,-0.0071630640886723995,0.08145292848348618,-0.022725380957126617,-0.01773451827466488,-0.003964794334024191,0.007373169530183077,0.03929128870368004,0.019811315461993217,-0.059673719108104706,0.012719959951937199,-0.051899585872888565,0.07479025423526764,-0.03837111219763756,0.059013787657022476,0.04621252790093422,0.013480029068887234,0.09752680361270905,-0.045244000852108,0.01654200069606304,0.002361130900681019,-0.05224686861038208,-0.055420633405447006,0.07949554920196533,0.024040717631578445,0.013452849350869656,-0.04538795351982117,-0.051510926336050034,-0.0035304140765219927,-0.036529190838336945,-0.0567275807261467,-0.11087054759263992,0.019993439316749573,0.007816953584551811,-0.05913090333342552,-0.05181840434670448,0.0482025109231472,-0.01635614037513733,0.07018990069627762,-0.00878365058451891,-0.06939021497964859,-0.004309832584112883,-0.0016171253519132733,0.027687249705195427,-0.04987256973981857,0.03866046667098999,-0.004566479008644819,0.12112317234277725,-0.059190865606069565,-0.0683090090751648,-0.0353211835026741,-7.232015200399068e-33,0.021194996312260628,-0.01831461302936077,-0.009768053889274597,0.008482281118631363,-0.04544256627559662,0.028917387127876282,-0.07645897567272186,0.008575397543609142,0.02089685946702957,0.0035721678286790848,-0.039670396596193314,-0.019821519032120705,-0.03382505103945732,-0.07911123335361481,-0.048844531178474426,0.0917392149567604,0.02114635705947876,0.028205713257193565,0.01962352730333805,-0.02749309130012989,0.057215701788663864,0.02299947664141655,-0.03264661505818367,-0.09611845761537552,-0.05020163580775261,0.000645855616312474,0.09609757363796234,-0.042720481753349304,0.09709957987070084,0.024134662002325058,-0.02092999406158924,-0.03399813920259476,0.09715409576892853,0.012870507314801216,0.045258406549692154,-0.036680690944194794,-0.003954359795898199,-0.01569989137351513,-0.011026945896446705,0.020160488784313202,-0.025156140327453613,-0.012913988903164864,0.03032061643898487,-0.01632983796298504,-0.016711518168449402,-0.04984811320900917,0.0174309853464365,0.0049825794994831085,0.028687840327620506,-0.01782366819679737,-0.003716452280059457,-0.0194412674754858,0.04388446733355522,-0.017208684235811234,-0.037799857556819916,0.0400109700858593,0.006375934928655624,0.0935109406709671,0.08520418405532837,0.023924509063363075,-0.050128016620874405,0.02467980422079563,0.010052544996142387,-0.04160856455564499,-0.015419499948620796,-0.008298525586724281,-0.07367414981126785,0.061732180416584015,0.025906963273882866,-0.016811687499284744,-0.03972887992858887,-0.052533868700265884,-0.0033173763658851385,0.06565982848405838,-0.01353966910392046,-0.07197709381580353,0.05382433161139488,0.0628565326333046,0.013285383582115173,-0.04887876287102699,-0.053432006388902664,0.06479775160551071,-0.0020458856597542763,-0.005361516494303942,-0.07374763488769531,-0.030439842492341995,0.052589356899261475,-0.03642922639846802,-0.03439128026366234,0.04360216110944748,-0.000944271741900593,0.036025114357471466,0.07076387852430344,-0.11440654844045639,-0.05220490321516991,2.1089338436591266e-33,0.022753410041332245,-0.038237232714891434,-0.08301796764135361,-0.012780332937836647,0.017373722046613693,0.03779943287372589,-0.00739140622317791,-0.04100121557712555,0.005802247207611799,0.034134767949581146,-0.04504254087805748,0.002072129398584366,0.012955566868185997,-0.033561497926712036,0.0002498560934327543,-0.017108004540205002,-0.0009604076622053981,-0.030178479850292206,-0.11712074279785156,-0.09179626405239105,-0.04582079499959946,-0.01981397718191147,-0.04426077380776405,0.003642353927716613,-0.01619989238679409,-0.006175378803163767,0.10833171010017395,-0.04535655677318573,-0.025999950245022774,0.0291245486587286,0.05673833191394806,-0.041987109929323196,-0.13450710475444794,0.06280496716499329,0.027532337233424187,0.04112721234560013,0.024530839174985886,-0.07813398540019989,-0.12211800366640091,-0.011836553923785686,-0.0470038577914238,-0.06401947885751724,-0.02031768672168255,0.010171675123274326,-0.04087083414196968,-0.07792606949806213,-0.007019425742328167,0.05886761099100113,0.016135741025209427,-0.03848624974489212,-0.03984294831752777,-0.0261766966432333,-0.041982874274253845,0.020479461178183556,0.023342886939644814,0.032158903777599335,0.03831113129854202,-0.08597133308649063,-0.03491596132516861,-0.006294568069279194,0.0019121429650112987,-0.04004870355129242,0.018175659701228142,-0.050200268626213074,0.03552308306097984,-0.022600745782256126,-0.10528638958930969,0.006663873791694641,0.08962270617485046,0.037698160856962204,0.07401129603385925,0.0020061202812939882,-0.07526413351297379,0.0022068030666559935,0.046700626611709595,0.09958616644144058,0.031168194487690926,0.01408538967370987,-0.0064901928417384624,-0.12778761982917786,0.011663752608001232,-0.060828741639852524,0.013982928358018398,0.018400093540549278,-0.01281337533146143,-0.08496123552322388,0.04252105578780174,-0.07727065682411194,-0.009551316499710083,0.05604652687907219,0.1089145839214325,-0.018647326156497,0.1281130462884903,0.029744992032647133,0.006708816159516573,-2.7875918462427762e-8,-0.04936228692531586,0.04806259647011757,0.004377313889563084,0.04056428745388985,-0.04841656982898712,-0.01839294843375683,0.005425604991614819,-0.03484410047531128,-0.07581167668104172,-0.04619333893060684,0.010212772525846958,0.02073710970580578,0.078766830265522,0.0297729279845953,0.09427434206008911,0.061298124492168427,0.08447416871786118,-0.0329524427652359,-0.03971752151846886,-0.003891345113515854,0.015354524366557598,0.04513958469033241,-0.058369431644678116,-0.032846830785274506,0.027650224044919014,0.05106480419635773,-0.0475744903087616,0.03349166363477707,0.006045405752956867,0.027869781479239464,0.0879528671503067,0.03433123603463173,-0.05547132343053818,-0.022349199280142784,0.0617479644715786,0.06895174086093903,0.03124038502573967,0.04032002389431,-0.02422787807881832,0.06074155867099762,0.002876485697925091,0.058658912777900696,0.07698036730289459,0.008633286692202091,-0.03768331557512283,0.0585629977285862,0.019205192103981972,0.0377475842833519,0.06050574406981468,-0.03433246165513992,0.020610496401786804,0.08652077615261078,-0.03178301826119423,-0.00042850919999182224,0.07564321160316467,0.014718536287546158,-0.054943304508924484,-0.03660990297794342,-0.07218566536903381,-0.042551275342702866,0.1195182129740715,-0.024324290454387665,0.012365218251943588,0.0018116330029442906]},{"text":"Oh, Paul, can’t you spare Sergius for a few moments?","book":"Down and Out in Paris and London","chapter":33,"embedding":[-0.04840715229511261,0.04302350804209709,0.0007791609968990088,-0.03667626157402992,0.02004607953131199,0.04512491449713707,0.08196873962879181,0.03980923444032669,0.04247315227985382,-0.047339774668216705,-0.013939067721366882,0.051897186785936356,-0.058102186769247055,-0.016880907118320465,0.05582531541585922,-0.05036332830786705,0.012056857347488403,0.0912211686372757,-0.06600245833396912,0.11807793378829956,0.06606447696685791,-0.03238305076956749,0.0669633150100708,-0.04263142868876457,0.018253128975629807,0.013910077512264252,-0.032723914831876755,0.0146106518805027,-0.031184064224362373,-0.04788247123360634,0.0341394804418087,0.04248892888426781,-0.013396664522588253,0.000039361104427371174,0.08064211905002594,0.06838797777891159,-0.005669825244694948,0.0052827950567007065,0.061798177659511566,-0.030043616890907288,0.055077746510505676,0.008867451921105385,-0.024688702076673508,-0.024171503260731697,-0.07936004549264908,-0.021997112780809402,-0.04752971604466438,-0.04991273581981659,0.0564153827726841,-0.1334947645664215,-0.07445382326841354,-0.0013271274510771036,0.04589218273758888,-0.008467607200145721,0.02248474955558777,0.034314222633838654,-0.03592062368988991,-0.10765498876571655,-0.002452427288517356,-0.06763093918561935,-0.048309940844774246,0.034518588334321976,0.02606678195297718,0.031064487993717194,0.03393743932247162,-0.032380037009716034,-0.00849011167883873,-0.02303439937531948,-0.03106401301920414,0.19009767472743988,0.0006482785101979971,-0.0014354090671986341,-0.08387013524770737,-0.040494441986083984,-0.032519977539777756,0.053943634033203125,0.06156400591135025,-0.07082676887512207,0.0727517232298851,0.005554205738008022,-0.05552511289715767,-0.017755085602402687,0.023560766130685806,0.12053611874580383,-0.04160788655281067,-0.04761920124292374,0.08780921250581741,0.10128121078014374,0.03471856564283371,-0.021220672875642776,0.022748760879039764,-0.016771947965025902,-0.001118205371312797,0.017280282452702522,-0.028241517022252083,-0.0407167412340641,-0.045028988271951675,0.053780537098646164,-0.16458776593208313,0.04710877314209938,0.025333356112241745,0.01934756152331829,0.12245897948741913,0.004975539166480303,0.02481149137020111,-0.025838173925876617,-0.0625428557395935,-0.009768693707883358,-0.0075150467455387115,-0.07426634430885315,-0.05383015424013138,-0.06458423286676407,0.007813956588506699,0.0299995094537735,0.04141589254140854,0.015856193378567696,-0.06881001591682434,0.029418833553791046,-0.01702360063791275,0.010984268970787525,0.0034578570630401373,0.035964660346508026,0.03190184757113457,0.14841781556606293,-0.02751912921667099,-0.004985556937754154,-0.06805283576250076,-6.029370970834617e-33,0.0544409453868866,0.008031404577195644,0.020459521561861038,-0.09031324088573456,-0.020640062168240547,-0.014299603179097176,-0.024565597996115685,-0.006228079088032246,0.0005486290319822729,-0.030856333673000336,-0.06283706426620483,0.009784650057554245,-0.005174417048692703,-0.026726797223091125,-0.008301269263029099,0.006397377699613571,0.014689606614410877,0.017901720479130745,0.1391269713640213,-0.009083657525479794,0.041146256029605865,-0.047469209879636765,0.05527547001838684,-0.043547336012125015,-0.036181919276714325,-0.04255567118525505,0.02427036128938198,0.038667578250169754,0.07079469412565231,0.041296519339084625,0.03055444546043873,0.024189665913581848,-0.01757727935910225,-0.012061776593327522,-0.005401571746915579,0.05308959260582924,-0.050065286457538605,0.000606098270509392,-0.06979779899120331,-0.0352267250418663,-0.11591676622629166,0.07483198493719101,0.024265430867671967,0.06512047350406647,-0.09108182787895203,-0.08915850520133972,0.024350494146347046,-0.008312688209116459,0.008877824060618877,0.011422127485275269,-0.005988309625536203,0.026277923956513405,-0.005735504440963268,-0.02521386742591858,-0.05391516909003258,0.029776431620121002,0.060809604823589325,0.017114026471972466,0.06852404028177261,0.03635994717478752,-0.01723712868988514,-0.08736123889684677,0.08950143307447433,0.024108191952109337,0.08303418755531311,0.052807144820690155,0.005866843741387129,0.07794869691133499,-0.058110639452934265,-0.0025791525840759277,-0.0622069351375103,-0.0875515416264534,-0.013635747134685516,-0.02549670822918415,0.005059770308434963,-0.002264125971123576,0.03743429481983185,-0.04937145486474037,-0.0030364927370101213,-0.00801444984972477,-0.033959198743104935,-0.053834278136491776,-0.04392446205019951,0.07328999787569046,0.06837872415781021,-0.04500024765729904,0.01862746849656105,0.02223518118262291,-0.004797183908522129,0.006765031721442938,-0.037857409566640854,-0.05478772148489952,0.01110298652201891,-0.05022595822811127,-0.05527639389038086,2.9071106709147837e-33,-0.015911031514406204,-0.015390783548355103,-0.06849891692399979,0.013558696955442429,-0.014053815975785255,0.05042219161987305,-0.010839697904884815,0.023375611752271652,-0.0619400255382061,0.04345880076289177,-0.07473952323198318,-0.05200250446796417,0.053230658173561096,-0.06804382055997849,-0.06134325638413429,-0.03494514897465706,-0.022669946774840355,0.017208585515618324,0.014477940276265144,0.021288830786943436,-0.0258815698325634,0.04883293807506561,0.05083049461245537,0.032971274107694626,-0.015298077836632729,0.03762633726000786,-0.002083859173581004,0.01070344727486372,-0.19226489961147308,-0.058674708008766174,0.06352812051773071,-0.004471818450838327,-0.10594163835048676,-0.0021936632692813873,0.040306441485881805,0.039261020720005035,-0.03952299430966377,-0.014438018202781677,0.02323189005255699,0.03958559408783913,0.011824478395283222,-0.037006791681051254,0.08323537558317184,0.09344546496868134,0.05474788695573807,-0.012976936995983124,0.033198803663253784,0.015886133536696434,0.03906422108411789,0.07841311395168304,-0.13057175278663635,0.029031822457909584,-0.017403995618224144,-0.030252603814005852,0.07069879025220871,0.04961784929037094,0.003566077444702387,0.035977642983198166,-0.050341155380010605,-0.008493967354297638,-0.037440504878759384,-0.0273045115172863,-0.0009189449483528733,-0.00182920484803617,0.074602872133255,0.04612674564123154,-0.07525087893009186,-0.01195113081485033,0.01619638130068779,-0.028517331928014755,0.018325505778193474,-0.020306050777435303,-0.11045344918966293,-0.006106134038418531,0.03548979386687279,0.05786186829209328,-0.0549694262444973,-0.03322461619973183,0.005558997392654419,-0.13961680233478546,-0.02305964194238186,-0.051328144967556,-0.00395080866292119,-0.06103259697556496,0.03985336795449257,0.006333466153591871,0.003505099331960082,0.039000384509563446,0.04667402058839798,-0.0393981859087944,0.0696663111448288,0.0216525811702013,0.08134197443723679,0.04828634485602379,-0.04339156672358513,-2.0920605692253957e-8,0.03515220433473587,0.07534930109977722,0.02435629814863205,0.025574244558811188,0.03420044854283333,-0.017906108871102333,-0.03651927411556244,-0.05672883614897728,-0.018347447738051414,0.1299828439950943,0.07662681490182877,0.023584524169564247,0.026647919788956642,-0.005159337073564529,-0.010400400497019291,0.0016096750041469932,-0.013155622407793999,-0.07275509834289551,-0.045235540717840195,-0.08053427189588547,-0.011559207923710346,-0.025982515886425972,0.06826489418745041,0.044851090759038925,0.042860038578510284,-0.007257465273141861,0.04666506126523018,-0.010023033246397972,0.009566394612193108,-0.03708556294441223,0.03961215913295746,0.0034742942079901695,-0.14080235362052917,0.03936902433633804,0.009175176732242107,-0.04689979925751686,-0.06268470734357834,-0.0009157030144706368,0.029508719220757484,0.05847857892513275,-0.03397529944777489,0.009912233799695969,0.0034145896788686514,0.043284956365823746,0.02035144530236721,0.09860677272081375,0.06117802485823631,-0.05315536633133888,-0.03246714547276497,0.024657482281327248,-0.05046628415584564,-0.033261027187108994,0.04202089086174965,0.02032727189362049,-0.0008926193113438785,0.06749270856380463,-0.006251832004636526,0.04977164417505264,0.004966441076248884,-0.02744862623512745,0.03145456686615944,-0.04743009805679321,-0.041183408349752426,-0.10642779618501663]},{"text":"Oh, very well, very well. (_They go into the house together affectionately.","book":"Down and Out in Paris and London","chapter":33,"embedding":[-0.006222756113857031,0.005543623585253954,0.07947219163179398,-0.01371908187866211,-0.09544938802719116,-0.009631444700062275,0.02716231346130371,-0.10099362581968307,-0.07476206123828888,-0.05525185540318489,0.023850230500102043,0.035992950201034546,-0.012719587422907352,0.02973310835659504,0.06166868656873703,0.05285681039094925,0.014775658957660198,-0.0960555300116539,-0.07665346562862396,0.10557905584573746,-0.07602597028017044,-0.01304812915623188,0.05035543814301491,0.002363744890317321,-0.011430785991251469,0.015486123040318489,0.0408325120806694,-0.04015220329165459,0.07735475897789001,0.07035960257053375,-0.015112788416445255,0.03297959268093109,-0.052815500646829605,0.03350651264190674,-0.03593989834189415,0.10599541664123535,0.06248567998409271,-0.027734680101275444,0.04856005311012268,-0.06354236602783203,-0.004896507132798433,-0.03710046783089638,0.05314275249838829,-0.016284404322504997,-0.06940684467554092,0.011188079603016376,-0.018761547282338142,-0.013546078465878963,-0.028675010427832603,-0.02009105309844017,-0.13250790536403656,0.014523875899612904,0.017994260415434837,0.07614940404891968,0.007538266014307737,0.128729447722435,-0.029067441821098328,-0.10784629732370377,0.020359711721539497,0.039419326931238174,-0.042263515293598175,0.048272792249917984,-0.05822620913386345,0.12316747009754181,0.03774978592991829,-0.12192076444625854,-0.03681222349405289,0.009279009886085987,-0.023213330656290054,0.013118140399456024,-0.03946099430322647,0.02160774916410446,-0.009256739169359207,-0.015939412638545036,-0.0924917608499527,-0.0011005379492416978,-0.04988757148385048,-0.011837304569780827,0.019884640350937843,-0.06542588025331497,-0.024505218490958214,-0.0758197158575058,-0.010678916238248348,0.0011312714777886868,-0.014001796022057533,0.06527727097272873,0.01862572319805622,-0.057882580906152725,-0.07618821412324905,0.037491291761398315,-0.040686361491680145,-0.009126845747232437,-0.008284728042781353,0.019305435940623283,0.003339745569974184,0.009905878454446793,-0.03315368667244911,-0.02750241942703724,-0.083953857421875,0.06043580174446106,-0.026449579745531082,0.11293675005435944,0.006418438628315926,0.0293568167835474,-0.03772592172026634,0.036193374544382095,-0.06087777391076088,-0.012185807339847088,-0.008626154623925686,-0.038571909070014954,-0.015151668339967728,-0.07309549301862717,0.02802363596856594,0.0515834204852581,-0.009555147029459476,-0.029791878536343575,0.0467253252863884,-0.02108355052769184,0.04117652028799057,0.01108164805918932,0.04997594282031059,-0.025219988077878952,0.0035834501031786203,-0.012098167091608047,0.015436120331287384,-0.034242916852235794,0.02315898798406124,-4.008414430468892e-33,0.068883515894413,0.06058236211538315,-0.03249048441648483,0.08831431716680527,0.012508805841207504,0.040048062801361084,-0.11928171664476395,0.04982377216219902,-0.05455199256539345,0.05954907834529877,-0.0220939964056015,0.05786415562033653,0.03905075415968895,0.005639413371682167,-0.10425861179828644,0.022727590054273605,-0.015630532056093216,-0.033515386283397675,0.014290256425738335,0.03877359256148338,0.058957789093256,0.06462176889181137,-0.04359954595565796,0.06627140194177628,-0.007846612483263016,-0.05692069232463837,0.033317334949970245,-0.015010569244623184,0.05418068915605545,0.011100424453616142,-0.003543904749676585,0.006445651408284903,-0.05020848661661148,-0.02259363792836666,0.017217131331562996,0.015366760082542896,-0.043546706438064575,-0.039335429668426514,-0.06289160996675491,0.04510073363780975,0.012003387324512005,-0.04242364689707756,0.012784726917743683,0.015285516157746315,-0.1336754709482193,-0.003493216121569276,-0.01237501297146082,0.06806899607181549,0.06888668984174728,-0.08419231325387955,-0.007993354462087154,-0.02160908654332161,-0.10817597061395645,0.0863327756524086,-0.021902190521359444,0.034922219812870026,0.004067426081746817,-0.020381804555654526,0.036916594952344894,0.01708229072391987,0.0778491422533989,-0.00029572649509646,0.031147519126534462,-0.07831823080778122,0.03568092733621597,-0.01008046418428421,0.034433819353580475,0.03336777538061142,0.04281442612409592,-0.031057201325893402,-0.025851523503661156,0.05488564446568489,-0.05288512259721756,-0.03986470401287079,-0.09167199581861496,0.02477840892970562,0.005374799948185682,-0.05799261853098869,0.13458380103111267,-0.03683800250291824,0.05435735359787941,-0.004273571539670229,0.022830050438642502,0.031208893284201622,-0.03527584671974182,-0.03367503359913826,-0.020401116460561752,-0.053020115941762924,-0.029073817655444145,0.06501398235559464,0.018974611535668373,0.07680610567331314,0.03828679770231247,-0.04520796239376068,-0.010584545321762562,-3.114275984130613e-34,0.05209246650338173,0.025820866227149963,-0.0426083505153656,0.03307168185710907,-0.08227464556694031,-0.03479737043380737,-0.03412911668419838,0.025281978771090508,0.027678348124027252,0.033961087465286255,-0.03598532825708389,-0.025324622169137,0.024391407147049904,-0.012394680641591549,0.0757545456290245,-0.06968679279088974,0.09126243740320206,-0.011971117928624153,0.05353928729891777,-0.010680394247174263,-0.016818221658468246,0.06575406342744827,-0.0644298568367958,0.019183985888957977,0.01953139901161194,-0.0012882302980870008,0.0735144093632698,-0.027181476354599,-0.11426392197608948,-0.01872142404317856,0.015783121809363365,-0.15369053184986115,-0.07442416995763779,0.015994789078831673,0.058005768805742264,0.02289881557226181,-0.1256096214056015,-0.13405491411685944,-0.026093779131770134,-0.05729794502258301,0.002554856240749359,-0.034798309206962585,-0.06643480807542801,0.04860866442322731,0.03631792962551117,0.017425930127501488,0.018404683098196983,0.06017178297042847,0.0024067943450063467,0.018345242366194725,0.1087539941072464,-0.009205496869981289,-0.09596993774175644,-0.08449550718069077,-0.018672391772270203,0.0005100544658489525,0.09936393052339554,0.03746752068400383,-0.007864239625632763,-0.005427911877632141,-0.04432634636759758,-0.021869150921702385,0.006634898018091917,0.05799055099487305,-0.023876437917351723,-0.0105699198320508,-0.03680414333939552,-0.011787066236138344,0.03146059438586235,0.0018198632169514894,0.03734873607754707,0.003397014457732439,-0.03832221403717995,0.010847681201994419,0.033944956958293915,0.002979169599711895,0.0895010307431221,-0.13844738900661469,0.02633422054350376,-0.02543686516582966,-0.08254913240671158,0.0224218238145113,0.0059485468082129955,-0.07751456648111343,-0.07518332451581955,-0.09401564300060272,0.009799472987651825,-0.008136412128806114,-0.006097710225731134,0.04452642798423767,-0.021808438003063202,0.08497685939073563,0.09238651394844055,-0.07979176938533783,0.034427665174007416,-2.822874023422628e-8,-0.008683296851813793,0.005736902821809053,-0.023177504539489746,-0.05230524390935898,-0.08916320651769638,0.0078549450263381,0.025981208309531212,-0.022005360573530197,-0.05280453339219093,0.04551016911864281,0.011240651831030846,0.04123265668749809,0.027679402381181717,0.028439514338970184,0.03397824987769127,0.0020082604605704546,0.08790503442287445,0.06125088036060333,-0.033149849623441696,-0.00024435686646029353,-0.009642609395086765,0.033566586673259735,0.006750775501132011,0.09584875404834747,-0.04973836615681648,0.021035214886069298,0.05219311639666557,-0.04709622263908386,-0.03947079926729202,0.01317047793418169,0.06151888892054558,0.042961396276950836,-0.04617977887392044,0.013278404250741005,0.017122985795140266,-0.028207484632730484,-0.043838996440172195,-0.01511522475630045,0.09010086208581924,-0.009858664125204086,-0.025866786018013954,-0.03789479658007622,-0.0912422388792038,0.013292401097714901,0.032599885016679764,-0.015676721930503845,0.11125630885362625,-0.011991665698587894,0.0025942292995750904,-0.013236247934401035,-0.008027052506804466,0.03762821853160858,-0.07808113098144531,-0.021913018077611923,-0.004585224203765392,-0.06262416392564774,-0.04180701822042465,-0.0616258904337883,0.09646426886320114,0.04960668459534645,0.08238723129034042,0.054100822657346725,-0.001074711442925036,-0.024067485705018044]},{"text":"You have been out in the world, on the field of battle, able to prove yourself there worthy of any woman in the world; whilst I have had to sit at home inactive,—dreaming—useless—doing nothing that could give me the right to call myself worthy of any man.","book":"Down and Out in Paris and London","chapter":33,"embedding":[-0.004244836047291756,0.08195209503173828,0.005212550051510334,0.04611273482441902,-0.008084939792752266,0.008940208703279495,0.13610568642616272,-0.06544455885887146,-0.04608605057001114,-0.06016436591744423,-0.04916930943727493,-0.07030763477087021,-0.006099105346947908,-0.053191445767879486,0.020729100331664085,0.03309793397784233,0.026327775791287422,-0.0004213897336740047,-0.021430065855383873,0.05002264678478241,-0.02160685881972313,0.03954663500189781,-0.00859726220369339,0.053514592349529266,-0.09530805051326752,-0.025076327845454216,-0.04331352189183235,-0.02411320060491562,-0.023141421377658844,0.05075884237885475,0.018947670236229897,0.05560239031910896,0.03544463589787483,-0.0233704075217247,0.02268611080944538,0.05048128589987755,-0.03202727437019348,-0.028557369485497475,0.02876489982008934,-0.05481468513607979,0.02383069135248661,-0.14834313094615936,0.04254474490880966,0.026509342715144157,-0.01942252553999424,-0.03423304110765457,0.017115533351898193,-0.0038752646651118994,-0.0507059209048748,-0.06199435889720917,-0.04936050996184349,-0.03565302491188049,-0.05191519111394882,-0.013224922120571136,-0.014411640353500843,-0.017237018793821335,0.03522378206253052,0.031224563717842102,0.038246121257543564,0.006245803087949753,-0.004656648728996515,0.018849516287446022,0.046428434550762177,0.022119294852018356,0.05467462167143822,-0.04673632234334946,0.051260046660900116,0.06552376598119736,-0.027795618399977684,0.038238223642110825,0.0463995635509491,0.05314302444458008,-0.06519141793251038,0.007751131895929575,0.01017086859792471,-0.042085450142621994,0.01670416258275509,-0.08064943552017212,0.07453000545501709,0.08389560878276825,-0.0272202305495739,0.007379780989140272,0.000640036363620311,0.041238486766815186,0.005699052009731531,-0.019685838371515274,0.06920899450778961,-0.056754305958747864,0.050736986100673676,0.06526962667703629,-0.06157151237130165,-0.02748766355216503,-0.018365617841482162,0.07573018968105316,-0.021045073866844177,-0.024820536375045776,-0.02150581404566765,0.020825261250138283,-0.15990003943443298,0.06115184724330902,0.06633886694908142,0.007037080824375153,-0.014713937416672707,0.0071187447756528854,0.0234364066272974,0.09718292951583862,-0.007725446484982967,-0.028174785897135735,-0.0780622735619545,-0.03446486219763756,-0.036816418170928955,-0.08525281399488449,-0.03783498704433441,-0.006507045589387417,0.0002948540495708585,0.07522217929363251,-0.04150876775383949,-0.01968863420188427,-0.029730496928095818,-0.0009103151969611645,-0.04539762809872627,-0.014908749610185623,0.058024704456329346,-0.006693103350698948,-0.017393119633197784,-0.07577919214963913,0.06340420991182327,-7.564195026591069e-34,-0.034984707832336426,-0.015254145488142967,0.04070098325610161,0.05955281853675842,0.022485952824354172,-0.021408483386039734,-0.00986950471997261,-0.02989933267235756,-0.035913217812776566,-0.057305607944726944,0.018316514790058136,0.1157376617193222,-0.01673346385359764,-0.02186300978064537,0.0035085950512439013,0.08125492185354233,0.03469883278012276,-0.04832637310028076,0.0905434712767601,0.09734290093183517,0.08639983087778091,0.07143163681030273,-0.03596124425530434,-0.036544859409332275,-0.02756780944764614,-0.0025194522459059954,-0.0012286031851544976,-0.030697152018547058,-0.04521465301513672,0.029318850487470627,0.02562001533806324,0.018428348004817963,0.0011613330570980906,-0.077513188123703,0.03577123209834099,-0.020341098308563232,-0.061876434832811356,0.017023934051394463,-0.058428335934877396,0.006138887722045183,-0.07076815515756607,0.002086940221488476,0.013034897856414318,-0.0474228635430336,-0.023210659623146057,-0.020536134019494057,0.055169470608234406,0.07068176567554474,-0.06548149883747101,0.06589366495609283,-0.10385599732398987,-0.0011716630542650819,-0.030122682452201843,-0.09673929214477539,-0.016603849828243256,-0.013953992165625095,0.008458050899207592,0.10225912928581238,-0.004098638892173767,-0.06884726136922836,-0.02150103636085987,-0.08189541101455688,-0.00032317882869392633,0.009113156236708164,-0.06416332721710205,-0.07376966625452042,-0.04098305106163025,-0.08353686332702637,-0.030992478132247925,0.01890174299478531,-0.007794172037392855,-0.003340063849464059,0.0022074419539421797,0.06457739323377609,0.02713979408144951,-0.0033559103030711412,0.049452539533376694,-0.06465528160333633,-0.02077561430633068,0.03253435343503952,0.0032972951885312796,0.10546902567148209,-0.07216197997331619,-0.03156549111008644,0.13625293970108032,-0.03612358495593071,0.01522176992148161,-0.16830265522003174,0.009450361132621765,0.028889337554574013,-0.05259419232606888,0.009554141201078892,-0.003956864587962627,-0.1360400915145874,-0.14185675978660583,-1.1293552791975511e-33,0.026779232546687126,-0.023273803293704987,0.05000198259949684,0.10834154486656189,0.07232444733381271,-0.05242552608251572,0.023557713255286217,-0.02168768271803856,-0.032497476786375046,0.10629106312990189,-0.006546828430145979,-0.017928820103406906,0.01870747096836567,0.05939536169171333,0.03569738194346428,-0.11435531824827194,-0.06569775938987732,-0.06578066200017929,-0.06412121653556824,0.03293047472834587,0.06995737552642822,0.05479101091623306,-0.003768338356167078,-0.029744060710072517,-0.08142362534999847,0.030846400186419487,0.0767851248383522,0.011391260661184788,0.020578447729349136,-0.02786126732826233,0.03379195183515549,-0.014455283060669899,-0.1505296677350998,0.0037067157682031393,0.0662924274802208,0.003673222614452243,0.05150270462036133,0.028268828988075256,0.03293391689658165,0.010186715051531792,-0.10534890741109848,0.040262605994939804,-0.0681149810552597,-0.03977029770612717,0.005570588167756796,0.008802027441561222,0.03650158643722534,0.052546076476573944,0.05268978327512741,-0.009146256372332573,0.013609579764306545,-0.003738063620403409,-0.03510867431759834,0.014089404605329037,0.02040081098675728,-0.10522472113370895,-0.0031610855367034674,-0.014469414949417114,0.07148096710443497,0.059288136661052704,-0.017366541549563408,0.05739716440439224,-0.04965706169605255,0.0638100877404213,0.04266476631164551,-0.0218270905315876,-0.047660551965236664,0.11030060052871704,-0.08397022634744644,-0.021623078733682632,0.045847635716199875,-0.07231468707323074,-0.019090987741947174,0.03193553537130356,-0.02491680532693863,0.01570415124297142,-0.020616967231035233,-0.003885669633746147,0.016311712563037872,-0.0700589120388031,0.009506123140454292,-0.07555261999368668,0.014998314902186394,-0.023962590843439102,0.02650657296180725,0.00231442810036242,0.04384971410036087,0.04965996369719505,0.034311454743146896,-0.036200959235429764,0.01755386032164097,0.0469508171081543,-0.06654217839241028,0.062221426516771317,-0.02208171971142292,-4.51496227071857e-8,-0.056489378213882446,-0.039929650723934174,-0.028230702504515648,0.0234687402844429,-0.032051924616098404,-0.06954210996627808,0.038324084132909775,-0.14165769517421722,0.00040446766070090234,0.02894093096256256,0.02648317627608776,-0.025370357558131218,0.010771498084068298,0.016029568389058113,0.08445768803358078,0.017169272527098656,-0.01546871941536665,-0.057096216827631,-0.0561693049967289,-0.05828181281685829,0.02233971282839775,-0.019683172926306725,-0.0824347734451294,-0.07803990691900253,0.010897904634475708,0.08274631947278976,0.004966101609170437,-0.0423784963786602,-0.042794547975063324,0.031343743205070496,0.10076941549777985,0.06063612550497055,0.034639112651348114,-0.04400504752993584,0.007663227617740631,0.010370678268373013,-0.007408324629068375,0.014370067045092583,0.0030864267610013485,-0.013300059363245964,-0.03116740845143795,0.05692673474550247,0.08464034646749496,0.035802438855171204,-0.004360972438007593,-0.016839932650327682,0.024371853098273277,0.03630131483078003,-0.038802310824394226,0.04045231267809868,0.007876729592680931,0.005872433539479971,0.05924056097865105,0.0403653085231781,0.05608830600976944,0.029712172225117683,0.06926822662353516,0.03280610218644142,-0.016331471502780914,0.015961293131113052,0.12969732284545898,-0.06299205869436264,-0.037812888622283936,-0.027701588347554207]},{"text":"My lord and my g— SERGIUS.","book":"Down and Out in Paris and London","chapter":34,"embedding":[-0.06758330762386322,0.06019236892461777,0.028730416670441628,-0.013141371309757233,-0.036443080753088,-0.036873843520879745,0.16867534816265106,-0.001451917109079659,0.08161251246929169,-0.04323023557662964,0.006275807972997427,0.006913595367223024,0.03267933055758476,-0.07620137929916382,0.02646569348871708,-0.07760556787252426,-0.03361226245760918,0.03186977282166481,0.0013983955141156912,-0.02840278297662735,0.027267323806881905,0.0609574094414711,0.03470299765467644,-0.034939076751470566,-0.07529398798942566,0.039108678698539734,-0.016974125057458878,-0.0038615751545876265,-0.0444289892911911,-0.05320790782570839,-0.026745932176709175,-0.06503953039646149,0.0011476125800982118,0.022782860323786736,-0.014432544820010662,0.06944219022989273,0.013910124078392982,-0.02445988729596138,0.04315492510795593,-0.09403635561466217,0.014044211246073246,-0.029938532039523125,0.028101563453674316,0.002047698013484478,-0.05663098022341728,-0.0061853621155023575,-0.0400850847363472,0.010883353650569916,0.03299292176961899,0.027518294751644135,-0.09343654662370682,-0.066063292324543,-0.026706308126449585,0.042965300381183624,-0.008017690852284431,0.011102060787379742,-0.0266424547880888,-0.07626957446336746,0.012446286156773567,-0.03197534754872322,-0.07461343705654144,0.037068694829940796,0.03960980847477913,0.07543580234050751,0.035204268991947174,-0.044800449162721634,0.056180439889431,-0.006244830787181854,-0.11080391705036163,0.12084393203258514,0.009388665668666363,0.011669013649225235,0.001648338045924902,0.023119568824768066,-0.12318836897611618,0.053320787847042084,-0.026319965720176697,-0.07137870043516159,0.047513313591480255,-0.03875168412923813,0.009201920591294765,0.013393380679190159,0.006735784001648426,0.07213109731674194,-0.031491611152887344,-0.07941888272762299,0.01173071376979351,0.008575242012739182,0.04116397351026535,-0.02364090085029602,0.001344902440905571,-0.09079930186271667,0.03281177207827568,0.05228831619024277,-0.04299671947956085,0.0018577997107058764,-0.013306875713169575,-0.05119003355503082,-0.05472462624311447,0.10881108045578003,-0.02592885121703148,0.07774779200553894,0.06660424917936325,-0.006079145707190037,0.02659580484032631,0.03263111039996147,-0.11083366721868515,-0.014726108871400356,-0.02826562710106373,-0.08172615617513657,-0.0020019174553453922,-0.07838254421949387,-0.04878578707575798,0.02488994039595127,-0.004862029571086168,0.05003134161233902,-0.0021806368604302406,0.03051639162003994,-0.03760666027665138,0.041614633053541183,-0.011168038472533226,0.07586026936769485,-0.003370503196492791,0.028352035209536552,0.0029756047297269106,0.027431180700659752,-0.08420897275209427,-5.347124335192931e-33,0.025695618242025375,-0.018848363310098648,0.03790911287069321,-0.0016543820966035128,-0.0025992419105023146,-0.002719955053180456,-0.08354397118091583,0.0712425485253334,-0.007882964797317982,-0.03468867391347885,-0.09074824303388596,0.05082099512219429,-0.036478813737630844,0.05763561278581619,-0.08061394095420837,0.010389690287411213,-0.02249508909881115,-0.01145308930426836,0.028408989310264587,0.01380513422191143,-0.06646683812141418,0.12406891584396362,0.05365931615233421,0.00034897818113677204,-0.014202704653143883,-0.021196354180574417,-0.029098432511091232,-0.014785879291594028,0.034065671265125275,0.06799598038196564,0.07545524835586548,-0.02122112736105919,0.049230966717004776,-0.029121430590748787,-0.017925994470715523,0.008495273068547249,-0.08063699305057526,-0.10311788320541382,-0.07306911051273346,0.03566117212176323,-0.05419718101620674,0.009340871125459671,0.01957191526889801,-0.011188242584466934,-0.08112262934446335,-0.03211251273751259,0.031163504347205162,0.018331779167056084,-0.014291930943727493,0.0645928904414177,-0.0335724838078022,-0.04644325003027916,0.02260885201394558,-0.03454039245843887,-0.09042837470769882,-0.010349750518798828,0.03192182257771492,0.029757944867014885,0.015809420496225357,0.04830536991357803,-0.022289052605628967,-0.03347569704055786,0.07767468690872192,0.0031927325762808323,0.04278272017836571,-0.051279179751873016,-0.017165059223771095,0.06594260036945343,-0.0034380382858216763,0.00545429578050971,-0.07968460023403168,-0.030081158503890038,0.017289962619543076,0.05810684338212013,0.044097818434238434,-0.06245092675089836,0.026644127443432808,-0.08351756632328033,-0.0864844098687172,-0.03672080859541893,-0.046775855123996735,0.021366387605667114,-0.09658809751272202,0.030367569997906685,0.02341124229133129,0.004217993468046188,-0.006955631542950869,-0.04047307372093201,-0.03505663201212883,0.02697211317718029,-0.10967616736888885,0.06855771690607071,0.06009740009903908,-0.03537954017519951,-0.08146311342716217,8.448218206287278e-34,-0.021163897588849068,-0.03211304172873497,0.04868559539318085,0.028803952038288116,0.01643667183816433,-0.017470762133598328,0.011565201915800571,0.03063952550292015,-0.03175409883260727,0.07793368399143219,-0.03674771636724472,0.0014211954548954964,0.0795557051897049,-0.03014395944774151,-0.018079429864883423,-0.02796526625752449,0.013431452214717865,0.018289148807525635,0.0324506014585495,-0.011348952539265156,0.002962810918688774,0.08335590362548828,0.023539913818240166,0.04443497583270073,0.05249352008104324,0.011715499684214592,0.025178635492920876,0.006574645638465881,-0.018486104905605316,0.08087239414453506,0.07362734526395798,0.03664441406726837,-0.16047504544258118,-0.03984446078538895,0.03927996754646301,0.03554768115282059,0.01280943676829338,-0.004042044747620821,0.01065143197774887,-0.04267703741788864,0.017389507964253426,0.03417469933629036,0.09391182661056519,0.12097299098968506,0.00883472990244627,0.022475911304354668,-0.048116665333509445,0.06129634752869606,-0.05174870416522026,0.026185592636466026,-0.1386241763830185,-0.02722267620265484,-0.01182954479008913,-0.11838727444410324,0.04407871514558792,0.010520538315176964,0.02748400717973709,-0.08005222678184509,-0.057881101965904236,0.03600054606795311,0.014978359453380108,-0.006340997293591499,0.006248492281883955,0.037421029061079025,0.003198570804670453,0.04587531462311745,0.006636543665081263,0.021375788375735283,0.01460561528801918,0.07069095969200134,-0.08455584943294525,-0.04294103756546974,-0.10947919636964798,0.017896514385938644,0.012692027725279331,0.030475452542304993,0.019748954102396965,-0.02992323786020279,0.018203005194664,-0.0774182453751564,0.05914826691150665,-0.0027651628479361534,-0.015867475420236588,0.023220835253596306,0.03234204649925232,-0.12554119527339935,0.02753482200205326,0.09103205800056458,0.04062981158494949,-0.000008433366019744426,0.029542190954089165,0.0792800784111023,0.014051968231797218,-0.013421221636235714,-0.06439913064241409,-1.9571237075410863e-8,0.016477052122354507,0.0634126216173172,0.07784802466630936,0.013808302581310272,0.03519146516919136,-0.019205879420042038,-0.030924148857593536,-0.08331659436225891,-0.02446313202381134,0.03807749226689339,0.016092728823423386,0.06990398466587067,-0.02596343122422695,-0.043954603374004364,0.04683592915534973,-0.0327836237847805,-0.06680220365524292,0.016484268009662628,-0.012014108709990978,-0.07527896761894226,-0.044724445790052414,-0.020864561200141907,0.08327297121286392,-0.03944799676537514,0.017599979415535927,0.035888444632291794,0.024436507374048233,0.006730472203344107,-0.009396598674356937,0.07351561635732651,0.07012545317411423,0.06020546704530716,-0.13208985328674316,0.06263197958469391,-0.06126723065972328,-0.05521657317876816,-0.11707548797130585,0.03588608652353287,0.08095035701990128,-0.04583704099059105,0.058023594319820404,0.07357898354530334,0.03510333597660065,-0.002875023754313588,-0.0066198441199958324,0.03592362254858017,0.12406691908836365,-0.019105134531855583,-0.060907572507858276,0.01875968649983406,-0.0062170629389584064,-0.0014291498810052872,0.03401128202676773,0.09192442148923874,0.01531868427991867,0.020380143076181412,0.0058184657245874405,0.044494837522506714,-0.03572161868214607,-0.07588140666484833,0.09741406887769699,0.019919367507100105,-0.06553027033805847,-0.06931336224079132]},{"text":"She goes to the table, and begins to clear it, with her back turned to them._) I will go and get my hat; and then we can go out until lunch time.","book":"Down and Out in Paris and London","chapter":34,"embedding":[0.0055373613722622395,0.0356566458940506,0.05527273193001747,-0.009037756361067295,-0.000027129210138809867,0.07092109322547913,0.1302482932806015,-0.06014877185225487,0.025014834478497505,-0.04713254049420357,0.05370818078517914,-0.08444307744503021,-0.018562057986855507,-0.009315804578363895,-0.012111076153814793,0.010471496731042862,0.0030240737833082676,0.015273929573595524,0.002083784667775035,0.023047497496008873,0.04665231704711914,0.021493975073099136,0.07490824162960052,0.04142887517809868,-0.05114619806408882,0.04448019713163376,0.07941167056560516,-0.07589348405599594,-0.017024746164679527,0.008395260199904442,-0.06727857887744904,-0.013758024200797081,-0.01684790849685669,0.06530481576919556,-0.09478375315666199,0.0813593938946724,0.06539478898048401,-0.0513560026884079,0.10385256260633469,0.055476244539022446,-0.04203077778220177,0.004053427372127771,-0.08498632907867432,0.01912069134414196,-0.026847826316952705,0.025655874982476234,0.005619773641228676,0.0374307781457901,-0.04585226997733116,0.028487779200077057,-0.04431918263435364,0.019366949796676636,-0.02490459382534027,-0.006022071000188589,0.00788350310176611,0.11453425139188766,0.051736027002334595,-0.052481651306152344,0.04447700455784798,0.054071567952632904,-0.07892449200153351,-0.05916506424546242,-0.00652478588744998,0.08049559593200684,-0.02304256521165371,-0.07350409775972366,-0.035561900585889816,0.005345925688743591,-0.0803079679608345,0.09620204567909241,-0.041419439017772675,0.049574438482522964,-0.03387276083230972,-0.03997020050883293,-0.08045392483472824,-0.029171550646424294,0.046092644333839417,-0.1184682846069336,0.04338155314326286,0.06844207644462585,-0.12638220191001892,-0.036054860800504684,0.07043302804231644,0.03786808252334595,-0.11509563773870468,0.028089236468076706,-0.0029851633589714766,0.008940927684307098,-0.026494720950722694,-0.07651820778846741,-0.07721760869026184,-0.0034732194617390633,-0.06122055649757385,0.018863916397094727,0.031088490039110184,0.09173746407032013,-0.024373633787035942,-0.06570474803447723,0.06345336139202118,0.06079091504216194,0.07043416053056717,0.05243047699332237,-0.02758827805519104,0.00620997603982687,-0.04652377590537071,-0.023086443543434143,-0.017745541408658028,-0.03135067597031593,-0.020353497937321663,-0.025532111525535583,0.04670011252164841,-0.07035491615533829,0.014761820435523987,-0.01942991092801094,-0.06526077538728714,0.05070056393742561,0.021498125046491623,-0.017236869782209396,-0.045517757534980774,0.007687202654778957,0.059697724878787994,0.05391367897391319,-0.01397677045315504,-0.018519027158617973,-0.06606826931238174,-0.058304768055677414,0.00795464776456356,-3.375602107725083e-33,-0.0055198813788592815,-0.03501851484179497,0.03134027123451233,0.048567868769168854,0.08637049794197083,0.032697852700948715,0.02314593456685543,0.04043027013540268,-0.024801596999168396,0.057571619749069214,-0.026537498459219933,-0.005638088099658489,-0.03251470997929573,0.07270854711532593,-0.03330717235803604,-0.006222461815923452,0.002141081728041172,0.02766934037208557,-0.014341868460178375,0.0353332981467247,0.05680079013109207,-0.03173081949353218,0.03733830526471138,0.014653351157903671,0.03005868010222912,-0.004477071110159159,-0.061070993542671204,0.009377592243254185,0.009496890939772129,0.024309923872351646,0.07166481763124466,0.04980973154306412,-0.05178043991327286,-0.06062651053071022,-0.021654916927218437,-0.014898866415023804,-0.06862565129995346,0.05566346272826195,-0.05761394277215004,0.027073416858911514,-0.031869396567344666,-0.032812487334012985,-0.01935509592294693,0.01392333209514618,-0.1124231144785881,-0.05870704725384712,-0.01488780602812767,0.11736764013767242,-0.027800705283880234,-0.03932736814022064,-0.034563615918159485,-0.0005985707975924015,0.01818704791367054,0.016477560624480247,-0.026362650096416473,0.017177646979689598,-0.024763470515608788,-0.06625707447528839,0.04329591616988182,0.006306747905910015,0.06680204719305038,-0.06090070307254791,0.007051410619169474,-0.04983050376176834,0.06126437708735466,-0.004418663680553436,-0.012148478999733925,-0.060115132480859756,0.09410152584314346,-0.010753074660897255,0.007942229509353638,0.09043489396572113,-0.015260143205523491,0.09512992203235626,-0.03346337750554085,0.034871384501457214,0.033118411898612976,-0.026078257709741592,0.06312742084264755,-0.12300152331590652,0.10698520392179489,0.04816209897398949,-0.05960516631603241,0.032068535685539246,0.00849786214530468,-0.05925530940294266,-0.029090046882629395,-0.10257357358932495,-0.06040635332465172,0.037296995520591736,-0.010732129216194153,0.006235799752175808,0.06129685044288635,-0.017453879117965698,-0.02095513977110386,1.4350051162464545e-33,0.1400713175535202,0.054602332413196564,-0.11331898719072342,-0.013117715716362,-0.005281064659357071,-0.033365052193403244,-0.01316605694591999,-0.0031785666942596436,0.01449882797896862,-0.008693057112395763,-0.04435814172029495,-0.06561247259378433,0.05088631808757782,0.030772807076573372,0.03664902597665787,-0.01207749079912901,0.15290626883506775,0.000316489371471107,0.030064692720770836,0.027556968852877617,-0.015008038841187954,-0.067099429666996,-0.000471252336865291,-0.016676023602485657,-0.032147929072380066,-0.010509345680475235,0.09857679158449173,-0.01746426708996296,-0.11363079398870468,0.01576094515621662,0.0383179597556591,-0.1267496943473816,0.0036484033335000277,0.05266663804650307,0.010054169222712517,0.033963412046432495,-0.08910690248012543,-0.09410674124956131,0.022965220734477043,0.02574228309094906,0.021336371079087257,-0.06943105161190033,0.04791511595249176,0.0038352988194674253,0.05358823016285896,-0.0030836714431643486,-0.028713565319776535,0.06824906915426254,-0.044442616403102875,-0.008469386957585812,0.04244900122284889,-0.07375030964612961,-0.022203966975212097,-0.026489660143852234,0.014195783995091915,0.04321711137890816,-0.037314385175704956,-0.006432305555790663,0.049384504556655884,-0.029586851596832275,-0.060970135033130646,-0.015361124649643898,-0.009877939708530903,0.14036525785923004,-0.014625885523855686,-0.06793244183063507,-0.08162971585988998,-0.042096227407455444,0.01852905936539173,-0.014901965856552124,-0.0279398076236248,0.007128776982426643,-0.018306517973542213,0.020147763192653656,0.01523390132933855,-0.015287008136510849,0.02668639086186886,-0.07671279460191727,0.0189256239682436,-0.04861932620406151,-0.05370991304516792,-0.002710804808884859,-0.00355267315171659,-0.06776019185781479,0.08410408347845078,-0.05358806252479553,0.02828703261911869,0.01981743611395359,-0.051558054983615875,0.0024982301983982325,-0.06081845611333847,0.03800994157791138,0.05981315299868584,-0.04143381491303444,0.006291491910815239,-2.8754152836540925e-8,0.024615362286567688,0.03544200211763382,0.031768254935741425,-0.056970976293087006,0.03126722201704979,-0.004080787301063538,0.03428690880537033,-0.00811044406145811,-0.06259817630052567,-0.11794262379407883,0.055987417697906494,0.040627364069223404,0.03539164364337921,0.021928969770669937,0.020160071551799774,0.11542981117963791,0.04427379369735718,0.002376736607402563,0.011286500841379166,-0.009924697689712048,-0.04142427444458008,0.04938070476055145,0.0649837851524353,0.040850840508937836,0.00425908574834466,0.03186695650219917,0.01744673401117325,0.12787625193595886,0.014012932777404785,0.10390010476112366,0.10434915870428085,0.034519046545028687,-0.07440647482872009,-0.01517564244568348,-0.010500121861696243,-0.05073634535074234,-0.01917293295264244,-0.04743604734539986,0.07206738740205765,-0.03356429561972618,-0.03223493695259094,0.04036063700914383,-0.05347072705626488,0.0033873054198920727,-0.02152145653963089,0.004163756500929594,0.0513128936290741,-0.031175734475255013,-0.024311570450663567,0.05002943426370621,-0.06391390413045883,-0.04158930853009224,-0.006932153832167387,0.02815994620323181,-0.02942207083106041,-0.020848531275987625,0.013924742117524147,-0.08273900300264359,0.005301653407514095,0.0471845306456089,-0.03854411840438843,0.0533553771674633,-0.0837121531367302,-0.0720563530921936]},{"text":"Finally, striking the ground with his heels in something of a cavalry swagger, he strolls over to the left of the table, opposite her, and says_) Louka: do you know what the higher love is?","book":"Down and Out in Paris and London","chapter":34,"embedding":[-0.034172121435403824,0.07511623203754425,0.013681902550160885,0.02898138016462326,-0.004891212098300457,0.046314675360918045,0.05100831389427185,0.046186137944459915,-0.009434442035853863,-0.06201094016432762,-0.01769592985510826,-0.05551404133439064,-0.04481974616646767,-0.018444698303937912,0.0390314981341362,0.023849379271268845,0.016626354306936264,0.02196412719786167,-0.09624475985765457,0.10016054660081863,-0.009476832114160061,-0.01991085894405842,0.03668718412518501,0.060591235756874084,-0.016769900918006897,-0.022583354264497757,0.06330110877752304,-0.0048350500874221325,-0.07775981724262238,-0.01509850099682808,-0.012731344439089298,0.04068092629313469,0.0072246273048222065,0.09936890006065369,-0.08438797295093536,0.0655481368303299,-0.028064344078302383,0.01444063987582922,0.08309372514486313,0.05604704096913338,-0.0292265135794878,-0.12249929457902908,-0.025788942351937294,0.021632226184010506,-0.027651730924844742,-0.0002573781239334494,-0.023701686412096024,-0.07394128292798996,0.01608160138130188,0.04261045902967453,-0.09318994730710983,0.029487473890185356,-0.05900992453098297,0.015503613278269768,0.04357902705669403,0.08467994630336761,0.08798088878393173,-0.06883076578378677,0.03615162521600723,0.05413633584976196,0.01847749948501587,0.040273267775774,0.02916654385626316,0.08119338750839233,-0.05953962728381157,-0.1572905331850052,-0.06464561820030212,-0.039782021194696426,-0.17479360103607178,0.10826702415943146,0.03138536959886551,0.0028731415513902903,-0.0465284027159214,-0.10052162408828735,-0.03529060259461403,-0.07648581266403198,-0.05372040718793869,-0.010849151760339737,0.05972243845462799,-0.014547165483236313,0.026814568787813187,-0.0301685594022274,-0.015210947953164577,0.08725681155920029,-0.02538766711950302,-0.02496965229511261,0.0382503978908062,-0.05531612038612366,-0.04493602737784386,-0.02910182625055313,-0.05088924616575241,-0.04943927377462387,-0.11589696258306503,0.04492466151714325,-0.07887154072523117,0.05841394513845444,-0.03419855982065201,-0.02552815154194832,-0.028903778642416,0.03900832682847977,0.05952617526054382,0.009320855140686035,-0.028654009103775024,0.06603417545557022,-0.09319742023944855,0.03020150400698185,-0.03288424015045166,-0.00264557171612978,-0.012578715570271015,-0.028433695435523987,0.020349249243736267,-0.10662593692541122,0.0016529939603060484,-0.03141723945736885,-0.05307112634181976,0.044469621032476425,0.031981125473976135,-0.066826231777668,-0.03595023974776268,0.10128746926784515,0.10257042199373245,-0.02063998207449913,0.04492346569895744,0.08743073046207428,0.011367547325789928,-0.030466996133327484,-0.01993848942220211,-1.4734869442015376e-33,0.0656248927116394,-0.021245919167995453,0.04422847554087639,-0.017597293481230736,0.0065019200555980206,-0.04126546531915665,-0.05209925398230553,0.03715111315250397,-0.06371422111988068,0.09503732621669769,-0.10204876959323883,0.10921160876750946,-0.032204579561948776,0.010268917307257652,-0.10379248112440109,0.10073710978031158,-0.03496985882520676,-0.06972406804561615,-0.060705479234457016,0.0319058895111084,0.10265035927295685,0.02133857272565365,-0.041686709970235825,-0.029770389199256897,-0.015393729321658611,-0.001956135733053088,-0.016398318111896515,-0.05156586319208145,0.02576524391770363,0.015710804611444473,-0.05615690350532532,-0.0009056670824065804,0.011298117227852345,-0.02491035871207714,0.017286673188209534,0.00958557054400444,-0.10641473531723022,-0.03322890028357506,-0.07215534895658493,0.04954073950648308,-0.040368493646383286,-0.022728919982910156,-0.018319865688681602,-0.006209908984601498,-0.07901117950677872,0.09463613480329514,-0.007162758149206638,0.038222163915634155,-0.007034016773104668,-0.021456778049468994,-0.03682546690106392,-0.020765621215105057,0.01510232500731945,0.07245126366615295,0.08373261243104935,0.010064528323709965,0.0028758817352354527,0.05203725025057793,0.05828303471207619,-0.015774618834257126,0.018466150388121605,-0.06673707067966461,0.003799972590059042,0.013958881609141827,0.005158310756087303,-0.03961433470249176,-0.03209996223449707,-0.006321012042462826,0.054071083664894104,0.027719348669052124,-0.013779674656689167,0.029465731233358383,-0.07031796127557755,0.0013417043955996633,-0.07178763300180435,-0.05234965682029724,0.015411626547574997,-0.004747058264911175,0.055991895496845245,-0.10149461776018143,0.019371701404452324,-0.0034202532842755318,0.024471767246723175,0.013992571271955967,-0.0505819097161293,-0.04652010649442673,-0.00791303813457489,-0.12948670983314514,-0.06661399453878403,0.029669679701328278,-0.07459928095340729,0.038753870874643326,0.024974564090371132,-0.08331158757209778,-0.012998116202652454,-8.3450786789072e-34,0.08703340590000153,0.04802579805254936,-0.03913610056042671,0.05381003022193909,0.055796340107917786,-0.04038918763399124,0.018391454592347145,0.024318065494298935,-0.00460102129727602,0.018266167491674423,0.0015341126127168536,-0.013692446053028107,0.053031593561172485,-0.01755964569747448,0.07805223762989044,-0.05580073967576027,0.05379379913210869,0.0231658723205328,0.03884410858154297,0.014013664796948433,0.01216392032802105,0.04966864362359047,0.015899790450930595,0.0016448292881250381,0.0013303520390763879,-0.043256841599941254,0.07003071904182434,-0.00343574327416718,-0.07932540774345398,0.029654089361429214,-0.007523304782807827,-0.1286509484052658,-0.016323838382959366,0.02867499180138111,0.02508089691400528,0.048540834337472916,-0.02939092181622982,-0.05114620551466942,-0.0018755730707198381,-0.015234504826366901,0.0650089830160141,-0.027248535305261612,0.04397105425596237,-0.004440003074705601,-0.02599085308611393,-0.053622763603925705,-0.04885494336485863,0.09982621669769287,0.06676681339740753,-0.05402689054608345,0.015053022652864456,-0.08399732410907745,-0.011455819942057133,0.07857295870780945,-0.015705352649092674,0.01836148276925087,0.045004021376371384,0.012789296917617321,0.003994099795818329,-0.052410565316677094,-0.025529615581035614,0.034787699580192566,-0.02515096217393875,0.049721598625183105,0.006737950257956982,0.06858693808317184,0.0047661191783845425,-0.025328323245048523,-0.03693128004670143,0.03565094992518425,-0.04060165956616402,-0.025817373767495155,-0.025182316079735756,0.036367952823638916,0.05290677025914192,0.07928095012903214,-0.028654877096414566,-0.037378087639808655,0.014817905612289906,-0.06492827832698822,-0.028357015922665596,-0.11818434298038483,-0.012605896219611168,-0.04845955967903137,0.025738202035427094,0.010052327066659927,-0.0626818910241127,0.042299214750528336,-0.01947857439517975,-0.03319853916764259,0.01626312918961048,0.004376297350972891,0.046502452343702316,-0.05450139567255974,0.02312013879418373,-3.342021059893341e-8,-0.08278370648622513,0.04197929427027702,-0.08526520431041718,-0.09164289385080338,0.034642718732357025,0.023266339674592018,0.05733823776245117,-0.028238486498594284,-0.04138343781232834,0.0048813242465257645,0.0006359720719046891,0.1466672122478485,0.09255567938089371,0.040207330137491226,0.08305767178535461,0.08021258562803268,0.07329703867435455,-0.029079578816890717,-0.0031527471728622913,0.03996238857507706,0.0508190281689167,-0.0033861519768834114,0.04642154648900032,-0.01591784507036209,-0.08158735185861588,0.06825389713048935,-0.026893502101302147,0.009536050260066986,0.00044027267722412944,0.012038406915962696,0.0768328607082367,0.024512460455298424,-0.004625905305147171,-0.034800320863723755,0.07532580196857452,0.11027460545301437,-0.007903363555669785,0.00197005202062428,0.06778654456138611,-0.02388184517621994,0.007813969627022743,0.03978491574525833,0.008142927661538124,-0.007650164421647787,0.014819903299212456,0.010561562143266201,0.021615000441670418,-0.060306861996650696,-0.00731965946033597,-0.02141006477177143,-0.01866270788013935,0.013786472380161285,0.017026733607053757,0.03902444988489151,-0.011472208425402641,-0.07413799315690994,0.015138697810471058,0.06413783878087997,-0.018193507567048073,0.010949035175144672,0.060578200966119766,0.007802457548677921,0.027865834534168243,-0.01504108402878046]},{"text":"I am surprised at myself, Louka.","book":"Down and Out in Paris and London","chapter":34,"embedding":[0.03854398801922798,0.019994473084807396,-0.0446905791759491,-0.013543318957090378,-0.010333837009966373,0.03199072182178497,0.05034647509455681,0.07327888160943985,0.03224498778581619,0.0005435667117126286,-0.017186203971505165,-0.0316847525537014,-0.05545463040471077,-0.0780571922659874,-0.0008503562421537936,-0.05384136736392975,0.028053253889083862,-0.09015671163797379,-0.041241299360990524,0.015783408656716347,-0.07532297819852829,0.10158242285251617,-0.028014034032821655,-0.0011037543881684542,0.08953488618135452,-0.017945842817425728,0.07878429442644119,-0.02422984130680561,-0.03477420285344124,-0.06495217233896255,0.04963929206132889,-0.02991902455687523,-0.022097045555710793,0.018941139802336693,-0.05078104883432388,-0.010751609690487385,-0.0886254757642746,0.04064705967903137,0.06456638127565384,0.062258604913949966,0.02462773025035858,-0.061537787318229675,-0.025279521942138672,-0.005697295535355806,-0.01818101853132248,-0.009529546834528446,-0.08920124173164368,-0.012344764545559883,0.02998153679072857,-0.04673125967383385,-0.0929190143942833,0.02750604972243309,-0.0033882493153214455,0.03357658162713051,-0.055199865251779556,0.012400280684232712,0.077675461769104,0.02260729670524597,0.0006771032349206507,0.033142805099487305,-0.015508102253079414,0.0603061318397522,0.00026525126304477453,0.013303803279995918,-0.012837960384786129,-0.031440261751413345,-0.025985239073634148,-0.022356541827321053,-0.05542583763599396,-0.011922054924070835,0.008721786551177502,-0.0006694148760288954,0.02394588477909565,0.036765407770872116,0.10822712630033493,-0.029581578448414803,-0.034163832664489746,0.07472879439592361,0.097004234790802,0.04725473374128342,0.05329440161585808,-0.012393425218760967,-0.03080054558813572,0.021724211052060127,-0.03532108664512634,-0.030673382803797722,0.013780227862298489,0.06217264384031296,0.012731015682220459,-0.0023773626890033484,-0.0670003667473793,0.0377078577876091,-0.049732811748981476,-0.02995203249156475,0.011173112317919731,0.023091010749340057,-0.01944766193628311,-0.013315672054886818,-0.026905160397291183,0.09263595938682556,0.016809068620204926,-0.017028650268912315,0.05655796453356743,-0.023862531408667564,-0.03384674713015556,0.0437585674226284,0.037927497178316116,-0.025095859542489052,0.033761050552129745,-0.03554880619049072,-0.0033815456554293633,-0.04019710049033165,-0.058170538395643234,0.03808565065264702,-0.08869198709726334,0.03568584844470024,0.046573229134082794,0.021113798022270203,-0.04164308309555054,-0.10383377224206924,0.06032513454556465,-0.01386125199496746,0.03523791581392288,0.08985824882984161,0.058983948081731796,-0.0008053371566347778,-0.1022544726729393,-5.697171859188423e-33,0.06349138170480728,-0.02421529032289982,0.02673335373401642,0.0795421302318573,-0.05379306897521019,0.006011652760207653,-0.06393323093652725,-0.07765627652406693,-0.03882719948887825,0.030284695327281952,0.05303932726383209,0.05877881869673729,-0.12818826735019684,-0.017103610560297966,-0.09120161831378937,0.21307457983493805,-0.007895657792687416,0.00033160613384097815,-0.09816032648086548,0.07846266776323318,0.10540585219860077,0.08101748675107956,0.01911253109574318,-0.04210300371050835,-0.02791133150458336,0.032011158764362335,-0.024121997877955437,-0.07640352100133896,-0.07049436867237091,0.00535479374229908,-0.009450658224523067,0.05845914036035538,0.015176626853644848,0.06208353862166405,-0.07084394991397858,-0.09047526121139526,-0.03354882821440697,-0.008481890894472599,-0.052367113530635834,-0.012431945651769638,0.07150125503540039,-0.01991264522075653,0.031205227598547935,0.016269313171505928,-0.027211397886276245,0.04421272873878479,0.009880797937512398,0.011034808121621609,0.053196001797914505,-0.026656705886125565,-0.07164843380451202,0.005007678177207708,0.046396199613809586,0.09051425009965897,0.047366246581077576,-0.03491353616118431,-0.038647089153528214,0.08847086876630783,0.07204300165176392,0.028092052787542343,-0.053626880049705505,0.04629828780889511,-0.04066312685608864,-0.006995887495577335,-0.04695102572441101,-0.022819843143224716,0.08425586670637131,0.07668467611074448,0.003856354160234332,0.017205260694026947,0.05793473497033119,-0.085375115275383,-0.1305592805147171,-0.026436438784003258,-0.0849316194653511,-0.02955731749534607,0.04149378091096878,0.00926846545189619,0.060496870428323746,-0.05474115163087845,0.05510742589831352,-0.01759868860244751,0.029034631326794624,-0.04579363763332367,-0.009544719941914082,-0.014983872883021832,0.008699346333742142,-0.014074645936489105,-0.09527938067913055,0.014313869178295135,0.020099623128771782,0.07987742125988007,0.10697193443775177,-0.05583453178405762,-0.04630354791879654,3.1835840034923086e-33,0.07031033933162689,-0.03919682651758194,0.004001832567155361,0.0009602849022485316,0.05855078622698784,-0.03110576421022415,0.018556702882051468,0.0541636161506176,-0.022756794467568398,0.014246771112084389,0.026275649666786194,-0.020806951448321342,0.03571004047989845,-0.0019520543282851577,0.06333507597446442,-0.02519276738166809,0.1222834587097168,-0.012780575081706047,-0.011617232114076614,-0.05938102304935455,-0.03194888308644295,0.14255934953689575,0.0024115697015076876,0.008982913568615913,-0.0200014878064394,-0.05462636426091194,0.012413346208631992,0.028788398951292038,-0.12323037534952164,0.0038246656768023968,-0.0964285358786583,0.0010340502485632896,-0.07057396322488785,-0.03612115979194641,-0.002993006259202957,0.017410149797797203,-0.030907485634088516,0.04407760500907898,-0.006829486694186926,0.015645217150449753,0.016747375950217247,-0.06840517371892929,-0.004974239971488714,0.017167525365948677,-0.0071383207105100155,-0.1333976686000824,-0.007461579516530037,0.006836852990090847,0.0163396205753088,0.07523591071367264,-0.07680680602788925,0.04131467640399933,-0.1161414086818695,0.015819286927580833,-0.049313537776470184,0.07034287601709366,-0.0034515296574681997,0.027845848351716995,0.03933022543787956,-0.07674721628427505,-0.1178385391831398,0.010152549482882023,-0.005561165511608124,0.013158677145838737,0.06336671859025955,0.015072490088641644,-0.0009063451434485614,0.00043638632632791996,-0.00728021701797843,0.012124367989599705,-0.008591137826442719,0.03436955809593201,-0.05121418088674545,0.058236829936504364,-0.018073108047246933,0.059108857065439224,-0.025468511506915092,0.12353900820016861,0.02496466413140297,-0.014009220525622368,0.05746592581272125,-0.018896663561463356,-0.02749505639076233,-0.02373635582625866,0.017803985625505447,0.024056371301412582,-0.047609783709049225,-0.06191343814134598,-0.0017940789693966508,0.03354474529623985,-0.002650354988873005,0.026175275444984436,-0.03909432888031006,0.06503648310899734,0.015457751229405403,-2.092513007312391e-8,-0.003163120709359646,0.0852118656039238,-0.08712829649448395,0.05289818346500397,0.04282509908080101,0.0005556217511184514,-0.0025614185724407434,0.02619015984237194,-0.0876401886343956,0.05016695335507393,0.02154296636581421,0.0796254426240921,0.0868147611618042,0.009829617105424404,0.07139293104410172,-0.028068698942661285,-0.010463868267834187,0.06996620446443558,-0.028733795508742332,0.042481329292058945,0.004130634479224682,-0.00647276034578681,0.020610230043530464,-0.04744286835193634,-0.06410976499319077,-0.02729184366762638,-0.03838957101106644,-0.04626695066690445,0.02341897040605545,-0.03033619187772274,-0.0005341346841305494,0.04635477811098099,-0.060034990310668945,-0.05486343428492546,-0.014950694516301155,0.018989037722349167,0.01868537627160549,-0.067980095744133,0.05238841101527214,-0.0986594408750534,-0.007661737967282534,0.006791993509978056,-0.013823743909597397,0.0034880514722317457,0.015804745256900787,-0.07191099971532822,0.10880475491285324,-0.02185036987066269,0.0016783217433840036,-0.0195233765989542,0.00888888817280531,0.042611606419086456,0.041429467499256134,0.047100942581892014,0.15330824255943298,0.013908864930272102,0.00868893601000309,0.015474717132747173,-0.024858839809894562,0.03427489474415779,0.03217865526676178,-0.06565459072589874,0.0020093878265470266,-0.009578617289662361]},{"text":"Then stand back where we can’t be seen.","book":"Down and Out in Paris and London","chapter":35,"embedding":[0.05833189934492111,-0.014383047819137573,-0.04226453974843025,0.03127366676926613,0.09465613216161728,0.04023154079914093,-0.05412854626774788,-0.05111165717244148,0.09547777473926544,-0.04352399334311485,0.05755315721035004,0.03576613590121269,0.058964766561985016,-0.046476542949676514,-0.014609061181545258,-0.0499039925634861,0.048176057636737823,0.02251887135207653,-0.013367854058742523,-0.0032372581772506237,0.011673101224005222,0.07207278162240982,-0.00003836984251393005,0.04840633273124695,-0.04309706762433052,-0.030709993094205856,0.06337093561887741,0.03500960394740105,0.03939060494303703,-0.030588015913963318,-0.004398248624056578,-0.10233389586210251,-0.062314264476299286,-0.02086542174220085,-0.02491701953113079,0.04145307466387749,0.0356481596827507,-0.009721186943352222,-0.003149770898744464,-0.035174429416656494,-0.008355352096259594,-0.019177056849002838,-0.023837855085730553,-0.03876704350113869,0.02460302785038948,-0.04311654344201088,0.06790216267108917,-0.002013708930462599,0.08349593728780746,0.007171006873250008,0.023527299985289574,0.00414105923846364,-0.0911208987236023,0.03466134890913963,0.03653773292899132,0.02849169261753559,-0.04438980296254158,-0.08932340890169144,-0.0015623333165422082,0.019841989502310753,0.04068414121866226,-0.002966854255646467,-0.012479644268751144,-0.002965077292174101,-0.016282349824905396,0.02128930203616619,-0.0047846827656030655,-0.012299277819693089,0.02069253660738468,0.04608295112848282,0.014964005909860134,0.07686542719602585,-0.04214528203010559,-0.017378227785229683,-0.0007555914926342666,-0.0018309636507183313,0.053183164447546005,-0.10598044097423553,0.04934443160891533,0.015235799364745617,0.019188765436410904,-0.06360414624214172,0.003474532626569271,0.035878658294677734,-0.04039846733212471,0.026516154408454895,-0.03665178269147873,0.017289815470576286,-0.050915203988552094,0.018026649951934814,-0.08794081956148148,-0.00894209835678339,-0.017162589356303215,0.04843190684914589,-0.06709248572587967,-0.0780852884054184,-0.02041803114116192,0.05399690195918083,-0.0010365674970671535,0.11513446271419525,0.028248731046915054,0.04852671921253204,0.06983431428670883,0.042656660079956055,-0.01590731367468834,-0.027456941083073616,0.07464423030614853,-0.040167391300201416,0.026878081262111664,0.022393083199858665,0.003649641526862979,0.002180791459977627,-0.025985335931181908,0.1082773506641388,-0.01645919308066368,0.0009225675603374839,-0.009889592416584492,-0.028609128668904305,-0.06360727548599243,-0.095037542283535,0.06150314211845398,0.06241162121295929,0.0502912737429142,0.010784147307276726,0.08699854463338852,-0.019349711015820503,-0.04013722017407417,-3.1816326828699436e-33,-0.03340054675936699,0.041698750108480453,0.05190694332122803,-0.055770255625247955,0.10107840597629547,0.023419545963406563,0.039474692195653915,0.017771605402231216,0.015948204323649406,0.01215924508869648,0.03086184896528721,0.0045471396297216415,0.05263431742787361,-0.03196122124791145,-0.0032893249299377203,-0.02969888411462307,0.10649236291646957,0.010461774654686451,-0.032590754330158234,-0.04993691295385361,-0.01390697993338108,-0.09151647984981537,-0.023002713918685913,0.04726340249180794,-0.019229309633374214,0.09278086572885513,0.028373273089528084,-0.04608549550175667,-0.04965862259268761,0.003931067883968353,-0.08086144179105759,0.09387027472257614,-0.008501159027218819,-0.03248178958892822,-0.0029347820673137903,-0.01216899510473013,-0.036858558654785156,-0.0013423243071883917,0.024665741249918938,0.0010571979219093919,-0.04692821577191353,0.06422355771064758,-0.09085655212402344,-0.018633157014846802,0.10068824142217636,-0.009522100910544395,0.12353865802288055,0.0761667937040329,-0.09585676342248917,0.012783090583980083,0.023296188563108444,0.08071134239435196,-0.0379885770380497,-0.06073454022407532,-0.035616979002952576,0.07707193493843079,-0.04226827993988991,-0.03340848535299301,-0.04214433953166008,0.031041903421282768,-0.010458800941705704,0.0273298267275095,0.03487251326441765,0.012903571128845215,-0.043578095734119415,-0.018811291083693504,-0.03378580883145332,-0.019442610442638397,-0.03694412112236023,-0.0043473453260958195,0.04045083373785019,-0.027104564011096954,-0.03279122710227966,0.06478828936815262,-0.09388837963342667,0.0008029558230191469,0.0019503592047840357,0.029039086773991585,0.015470101498067379,-0.019053718075156212,0.005148543044924736,-0.05580241605639458,-0.002139858203008771,0.010443184524774551,0.10801657289266586,-0.06491060554981232,0.04510253667831421,-0.06976869702339172,-0.08891977369785309,-0.061648670583963394,-0.03417310118675232,0.002746991580352187,0.08578567951917648,-0.06970897316932678,-0.055610403418540955,1.5632987533661913e-33,-0.014835239388048649,-0.0495118722319603,-0.006849388591945171,-0.01223717164248228,-0.05453122407197952,-0.048558060079813004,0.020252803340554237,0.09415221959352493,-0.06891199946403503,0.08159507066011429,0.020298922434449196,0.001301548327319324,0.042127013206481934,0.030941667035222054,0.049438852816820145,-0.017152216285467148,0.11711423099040985,0.028949862346053123,-0.04864763468503952,0.10249867290258408,-0.0003832311776932329,-0.038853202015161514,-0.04743015393614769,0.10641420632600784,-0.02951481007039547,0.04875047504901886,0.04798341169953346,-0.032557304948568344,-0.04022401198744774,-0.05837645009160042,0.006082877051085234,-0.10107351094484329,-0.09263094514608383,-0.018395839259028435,-0.01104041188955307,0.08129024505615234,-0.09770994633436203,-0.051940180361270905,-0.060898829251527786,0.04192173108458519,-0.024037886410951614,-0.0038590345066040754,-0.08804690837860107,-0.014422178268432617,-0.02556966431438923,0.049202900379896164,0.009406465105712414,0.051554396748542786,-0.0963749885559082,0.03587973117828369,-0.0701938048005104,0.012151301838457584,-0.04233087971806526,-0.006277522072196007,-0.07055643945932388,0.011354594491422176,0.0508585050702095,0.07968979328870773,0.059410929679870605,-0.016957011073827744,0.024308763444423676,-0.06698141247034073,-0.040713097900152206,0.016461383551359177,0.03792400658130646,0.045694977045059204,-0.03842506557703018,0.18626165390014648,0.013732734136283398,0.0443907156586647,0.043919049203395844,-0.04139671102166176,0.007215050980448723,-0.022854981943964958,0.03193679451942444,0.08088129013776779,-0.005900746677070856,-0.015813101083040237,0.029483897611498833,-0.0382814034819603,0.013348831795156002,-0.03485679626464844,-0.06758716702461243,-0.017342757433652878,0.04630637168884277,0.031676728278398514,-0.023126590996980667,-0.003965835552662611,0.04004133120179176,-0.06676757335662842,-0.0028878424782305956,-0.002417453797534108,-0.00003564423604984768,0.006066065281629562,0.010006537660956383,-2.301541002225349e-8,-0.10890507698059082,-0.026600431650877,0.10473230481147766,-0.04368000850081444,-0.0545211099088192,-0.013081952929496765,-0.0028321421705186367,-0.05712077021598816,-0.050392307341098785,-0.06412266939878464,-0.07417216151952744,-0.12402728945016861,0.04811392351984978,-0.0003480355371721089,0.03711079806089401,0.09389539808034897,-0.08834905922412872,-0.10579138249158859,-0.07460279017686844,0.09636832028627396,-0.1285775899887085,0.037072956562042236,-0.046737682074308395,0.0668376237154007,0.011074699461460114,0.045940808951854706,-0.030807945877313614,-0.0059630679897964,0.012210749089717865,0.05189330130815506,0.02112460322678089,0.06530258059501648,-0.08051398396492004,0.035068146884441376,0.01447399239987135,-0.00019414181588217616,0.04264192283153534,0.036832574754953384,0.01867932640016079,-0.015350190922617912,-0.03543270006775856,0.05930637940764427,0.06484658271074295,0.0846172422170639,0.020259570330381393,0.028619499877095222,0.054233863949775696,0.05620213970541954,-0.05569000542163849,-0.09329519420862198,-0.01635955460369587,-0.10420259833335876,0.04312838986515999,0.010635605081915855,0.0865052342414856,0.0539843924343586,0.022625092417001724,-0.003465418005362153,-0.025992371141910553,0.01003452017903328,0.020475132390856743,-0.027911651879549026,-0.06297824531793594,-0.02462577633559704]},{"text":"May I go on with my work please, now?","book":"Down and Out in Paris and London","chapter":35,"embedding":[-0.09447808563709259,0.019454091787338257,0.05225761979818344,-0.0032877994235605,0.021124016493558884,0.00296530919149518,0.0289707500487566,-0.04757528007030487,-0.0712500512599945,0.01108783669769764,-0.035824257880449295,0.0541410855948925,-0.030188748612999916,0.06391813606023788,-0.07230573892593384,0.09049732983112335,-0.014335586689412594,0.026586811989545822,-0.12746867537498474,0.06324023753404617,-0.02798209711909294,-0.049743540585041046,-0.04451208934187889,-0.006995778530836105,0.056664805859327316,0.055597029626369476,0.028069129213690758,0.08336049318313599,-0.09411388635635376,-0.12281154096126556,-0.05766456201672554,0.03870633244514465,0.05407165363430977,-0.025260556489229202,0.013549731113016605,-0.0011797875631600618,-0.011370615102350712,0.025621261447668076,0.07639769464731216,0.022729720920324326,-0.0427994430065155,-0.0503087155520916,0.022123420611023903,0.06279505044221878,-0.014903360046446323,0.00446820305660367,-0.010702640749514103,0.047921959310770035,-0.011697339825332165,-0.0298620518296957,-0.04992310330271721,-0.062473248690366745,-0.08992931991815567,-0.005448791664093733,0.023623717948794365,0.031030481681227684,-0.006051455624401569,-0.05373171344399452,-0.020260991528630257,-0.07824502885341644,0.02624722383916378,0.028255300596356392,-0.01581987924873829,0.03429156914353371,0.033364247530698776,0.005250409711152315,-0.044536758214235306,-0.0019136392511427402,-0.04350801929831505,0.10913655161857605,-0.028796156868338585,0.021868059411644936,0.07165000587701797,0.00036293076118454337,-0.004381387494504452,-0.03002038598060608,-0.03062550537288189,-0.03735775873064995,0.023367563262581825,-0.12803612649440765,0.016970563679933548,-0.0016138534992933273,-0.0355549231171608,0.007012263871729374,-0.09122773259878159,-0.0321173258125782,0.009536949917674065,0.03508651629090309,0.12554576992988586,-0.06883393228054047,0.085447758436203,0.00211849482730031,0.04840836673974991,-0.02574038878083229,0.07700008898973465,-0.022059312090277672,-0.022837426513433456,-0.06527814269065857,-0.04300745576620102,0.03577708080410957,0.04118095338344574,-0.037888430058956146,-0.026730850338935852,-0.060648657381534576,-0.010958893224596977,0.021859901025891304,-0.04733402281999588,0.10049407184123993,-0.065475694835186,0.009979384951293468,-0.011526316404342651,0.018594849854707718,-0.005971361882984638,0.012721927836537361,0.07625862210988998,0.007940859533846378,-0.04258999601006508,-0.08346564322710037,0.007819127291440964,-0.0022636998910456896,0.0336051769554615,0.010295288637280464,-0.046337489038705826,0.017043612897396088,-0.11727811396121979,-0.059347525238990784,0.02025553584098816,-4.957886564224993e-33,-0.014084670692682266,-0.03203621134161949,0.01856395974755287,0.07543191313743591,0.034836847335100174,-0.038494307547807693,0.010611121542751789,0.04121621698141098,-0.03876297175884247,-0.04702458158135414,0.00922416802495718,0.04155366122722626,0.07867110520601273,0.022223537787795067,-0.08462797850370407,-0.003922267351299524,0.1389513462781906,-0.07665786147117615,-0.055686693638563156,-0.030976412817835808,0.04104681313037872,-0.025718966498970985,-0.00035477872006595135,-0.011643391102552414,-0.01974283717572689,0.02140156924724579,-0.032644081860780716,-0.09138409048318863,0.09367668628692627,0.02518307976424694,-0.0006208308623172343,-0.009415662847459316,-0.08847299963235855,-0.009223428554832935,-0.06083165854215622,-0.0057081906124949455,0.015950985252857208,-0.03458896651864052,0.021636996418237686,-0.029701819643378258,-0.058291949331760406,-0.003507206216454506,0.05767606571316719,0.00401772977784276,-0.0376899354159832,0.012204387225210667,0.08322995901107788,0.022468840703368187,0.06970128417015076,0.0870361402630806,-0.017537878826260567,0.019213614985346794,0.009990619495511055,-0.029018709436058998,0.014661611057817936,0.05739416554570198,-0.09925147891044617,0.03012150153517723,0.02086622640490532,-0.0022782201413065195,0.03366146609187126,0.07788296043872833,0.021723294630646706,-0.05814732611179352,0.02294914424419403,0.07081449031829834,-0.11588417738676071,-0.04921136796474457,0.09206382185220718,-0.0177114587277174,-0.025640685111284256,-0.009730874560773373,-0.04157843068242073,-0.005134384147822857,0.023846907541155815,0.09315215796232224,0.051631588488817215,-0.0014910654863342643,-0.006223997566848993,-0.02603192999958992,0.01637454703450203,0.07798560708761215,-0.08683808147907257,-0.032584771513938904,-0.008742241188883781,-0.004828485194593668,0.0948224738240242,0.005495195277035236,0.01802952215075493,0.13115781545639038,0.00616572517901659,0.02397231012582779,0.05190088227391243,-0.009515274316072464,-0.013995397835969925,1.35384788423973e-33,-0.02637064829468727,0.055556781589984894,-0.027761347591876984,-0.059011317789554596,0.04973999038338661,0.006677666213363409,-0.07550372183322906,-0.08948775380849838,-0.03801543265581131,0.10019302368164062,0.016792846843600273,-0.0352180190384388,0.0296229999512434,-0.07782157510519028,-0.010844658128917217,-0.0479864664375782,0.010161392390727997,-0.04361555352807045,-0.11398261785507202,0.042307812720537186,-0.09184399992227554,0.01565697230398655,-0.03956391662359238,-0.01227298192679882,0.06428340077400208,0.12326521426439285,0.05444703996181488,-0.046661149710416794,0.04718738794326782,0.009261049330234528,-0.06302693486213684,-0.04872307926416397,0.04336356371641159,-0.013971890322864056,0.022167138755321503,-0.01319084782153368,0.03849063068628311,-0.04052620381116867,0.03666137158870697,-0.119474858045578,0.04406184330582619,-0.08921802043914795,0.036139532923698425,-0.02436681091785431,0.045175306499004364,-0.030897315591573715,-0.02488728053867817,-0.014962040819227695,0.04109904542565346,0.0021100942976772785,0.04839513450860977,-0.019339045509696007,0.04637948423624039,-0.03665692359209061,0.036577679216861725,0.025046976283192635,0.04141036793589592,-0.042954061180353165,-0.0197614636272192,0.05460494011640549,-0.049629539251327515,-0.06799215823411942,0.028252987191081047,-0.02391841448843479,0.06621537357568741,-0.13316063582897186,-0.022934067994356155,-0.01910841464996338,0.07767327129840851,0.013893095776438713,-0.05796733498573303,0.019855506718158722,-0.05179169774055481,-0.003584382589906454,0.09205299615859985,-0.03134126961231232,0.09361051023006439,-0.01801050268113613,0.02640318125486374,0.023278189823031425,0.046901822090148926,0.021909574046730995,0.08049926161766052,-0.07919163256883621,0.06513764709234238,0.02021067775785923,-0.0062709832563996315,0.08025611937046051,-0.012999041937291622,-0.06497465819120407,-0.010914199985563755,0.017794091254472733,0.053522996604442596,-0.05800389125943184,0.05220123380422592,-2.260090070649312e-8,0.05010882019996643,-0.05867411568760872,0.01316632330417633,-0.00904234778136015,0.007263666018843651,-0.025697385892271996,-0.034414857625961304,-0.09219450503587723,-0.009311097674071789,-0.003138637403026223,0.0267528984695673,-0.05750005319714546,0.010471153073012829,0.07307109236717224,-0.034061167389154434,-0.0712566003203392,0.0027223536744713783,-0.057151615619659424,-0.021566547453403473,-0.07895131409168243,0.02943391725420952,0.07983289659023285,0.017132626846432686,0.023112241178750992,-0.015890149399638176,0.06109929457306862,0.011030777357518673,0.06767449527978897,-0.041232045739889145,0.01178670022636652,0.01414898969233036,0.08372186124324799,-0.08749470114707947,0.013846329413354397,-0.02970816008746624,-0.11328887194395065,0.02096993289887905,-0.004735469818115234,-0.016595253720879555,0.035787153989076614,0.02723095938563347,-0.054817795753479004,0.0802934393286705,0.07104449719190598,0.0265725739300251,-0.07240968942642212,0.014940745197236538,-0.049088798463344574,-0.02723456732928753,0.05429147556424141,-0.06206873059272766,0.008760464377701283,0.08353424072265625,0.02928854711353779,0.042860474437475204,0.00020677020074799657,0.026463620364665985,0.03423406183719635,-0.09252569079399109,0.12114867568016052,0.037993449717760086,-0.032223254442214966,-0.04398182034492493,0.047477446496486664]},{"text":"No, I don’t want your kisses.","book":"Down and Out in Paris and London","chapter":35,"embedding":[-0.08522959798574448,0.010319535620510578,0.05746234208345413,-0.02263106405735016,-0.10407319664955139,-0.010809171944856644,0.05543965473771095,-0.044156476855278015,0.036402348428964615,-0.01215756218880415,-0.07586374878883362,-0.038822948932647705,-0.06694436073303223,-0.004919522907584906,0.027222955599427223,0.03572661429643631,-0.023482022807002068,-0.01425607968121767,-0.03472480922937393,0.06901374459266663,-0.03183400258421898,0.011337392032146454,0.02905878983438015,-0.04793528467416763,-0.028828628361225128,0.014284771867096424,0.09255556017160416,-0.05986852943897247,-0.0232619047164917,0.02062217704951763,-0.11489000916481018,0.003667716169729829,0.006026494316756725,0.01856428198516369,0.05584215745329857,-0.015774937346577644,-0.027868984267115593,-0.060337912291288376,0.008874941617250443,0.019473005086183548,0.010754049755632877,-0.013849766924977303,0.012444918975234032,0.012058837339282036,-0.032547883689403534,0.04934467747807503,-0.038470517843961716,0.003819790668785572,-0.034593235701322556,-0.01573876664042473,0.02794392593204975,0.03910108655691147,-0.014903854578733444,0.05021419748663902,0.14493834972381592,-0.019775548949837685,0.04482302442193031,-0.10470019280910492,-0.024284129962325096,0.07787831127643585,-0.012408566661179066,0.03849027678370476,0.0004569909651763737,0.07578747719526291,-0.024941828101873398,-0.02514193207025528,0.007294280454516411,0.008232141844928265,-0.034300003200769424,0.06661807745695114,-0.050218451768159866,0.032834574580192566,0.023505739867687225,-0.02098667621612549,0.003691720776259899,-0.03554534912109375,-0.026049800217151642,0.008993145078420639,-0.011631160043179989,-0.015407593920826912,-0.07919565588235855,-0.07710808515548706,-0.01654820144176483,0.07891456037759781,-0.1060413271188736,-0.08302370458841324,0.033297229558229446,-0.06064692139625549,-0.043467000126838684,0.0034629807341843843,-0.07193326950073242,-0.02571706473827362,-0.07452260702848434,-0.0037905387580394745,-0.09409565478563309,0.02154681272804737,-0.004648879170417786,-0.001624662079848349,-0.07098372280597687,0.033257290720939636,0.03888532146811485,0.018692759796977043,-0.05601976066827774,0.10226703435182571,0.026903051882982254,-0.012117496691644192,-0.13321532309055328,-0.04108372703194618,0.0021805439610034227,-0.011123629286885262,-0.006145841907709837,0.012210584245622158,0.002610086929053068,-0.10974962264299393,0.020666662603616714,-0.07567829638719559,-0.011068946681916714,0.05388365313410759,0.11198406666517258,0.050788626074790955,0.008717521093785763,-0.0839870497584343,-0.03554393723607063,0.08319222927093506,-0.060079846531152725,-0.1450568437576294,-0.053700145334005356,-7.307577446637863e-33,-0.0027688043192029,-0.01732037030160427,-0.003670987207442522,0.03307539224624634,0.0067512234672904015,0.05375208333134651,0.030110705643892288,-0.0031887239310890436,-0.03679986298084259,0.029875123873353004,0.00756190437823534,0.05584166571497917,0.05064672604203224,0.01795770972967148,-0.01211906224489212,0.10385547578334808,0.07358875125646591,-0.06932169944047928,0.13057249784469604,0.004760000389069319,-0.005704201757907867,-0.048225175589323044,-0.011500186286866665,0.021032629534602165,-0.10826334357261658,-0.021615689620375633,-0.07112598419189453,-0.00961990561336279,-0.015769995748996735,-0.004872452467679977,-0.014399007894098759,-0.019991613924503326,0.019319631159305573,-0.01155652292072773,0.06288878619670868,-0.06929274648427963,0.005696978885680437,-0.007099897600710392,-0.06074797734618187,0.01612977683544159,0.03535861521959305,0.06333699077367783,-0.09032177925109863,0.03756335750222206,-0.05683755502104759,-0.028722256422042847,0.0880797803401947,-0.023002488538622856,0.021608270704746246,-0.09764081984758377,-0.014441310428082943,0.07071427255868912,-0.007677578367292881,0.05997395142912865,-0.023809796199202538,-0.03385259956121445,0.030743900686502457,0.024386761710047722,-0.0037013019900768995,0.019302459433674812,-0.08027354627847672,-0.01176345907151699,0.00972213689237833,-0.032307133078575134,-0.005190784577280283,0.003170727752149105,-0.011199872009456158,0.03524913638830185,0.08753736317157745,-0.04604325070977211,-0.029653020203113556,-0.01472781877964735,-0.016552656888961792,-0.006621958687901497,0.03301099315285683,-0.00788230448961258,0.10244462639093399,0.11732959747314453,0.09095089882612228,-0.07572083920240402,0.08658911287784576,0.10568041354417801,0.006638409104198217,0.011615775525569916,0.0294233039021492,-0.04246705397963524,0.00024209124967455864,-0.025348516181111336,0.07465805858373642,-0.0036600346211344004,-0.13495329022407532,0.017430538311600685,0.06250013411045074,-0.025133494287729263,-0.18361523747444153,4.893301598512955e-33,0.07468755543231964,0.04433036968111992,-0.03417172282934189,-0.06910579651594162,-0.02743707224726677,0.05010522902011871,0.05018540471792221,0.04122809320688248,0.0035170905757695436,0.056078627705574036,0.08164648711681366,-0.07593454420566559,0.03380903601646423,-0.022035684436559677,0.07578140497207642,0.06185653433203697,0.011943771503865719,-0.044839344918727875,-0.06563892215490341,-0.023872051388025284,-0.09694291651248932,0.10133343935012817,-0.023830093443393707,0.026838842779397964,-0.006947486661374569,-0.016305172815918922,-0.010730973444879055,0.0824974775314331,0.027012377977371216,0.03942228853702545,0.04906516522169113,-0.05883819982409477,-0.09150684624910355,-0.032004401087760925,-0.031723108142614365,-0.01320654060691595,-0.011584837920963764,0.002982960781082511,-0.06840020418167114,0.03108740970492363,-0.000005327855888026534,-0.04342057555913925,0.0005218074074946344,0.07221293449401855,-0.007756815291941166,-0.0024158423766493797,0.0030243154615163803,0.09806619584560394,0.050067681819200516,0.03839215636253357,0.06294603645801544,0.020033743232488632,-0.037142038345336914,-0.012129944749176502,0.03910844400525093,0.024474218487739563,0.004101351834833622,0.057079438120126724,0.04687614366412163,-0.015359967947006226,0.031092341989278793,0.02395915426313877,-0.048127494752407074,-0.006030783988535404,0.0593765489757061,0.0692792609333992,0.016352741047739983,0.04306221008300781,0.029091835021972656,0.003294788533821702,0.029775753617286682,0.0031793920788913965,-0.024525457993149757,0.018568910658359528,0.060338836163282394,0.04533388838171959,0.02253212407231331,-0.04230750724673271,-0.01141471415758133,-0.009114927612245083,-0.05294696241617203,-0.006239017471671104,0.00078059226507321,0.0013094970490783453,0.0009957345901057124,-0.023297443985939026,-0.01815067231655121,0.005248127039521933,-0.027938436716794968,-0.036646824330091476,-0.013089659623801708,-0.030459143221378326,0.08656921982765198,-0.06124996393918991,0.029539067298173904,-2.157166356653306e-8,0.023878170177340508,-0.01829063892364502,0.07560263574123383,-0.04832439124584198,-0.04341384023427963,-0.013456632383167744,-0.09836441278457642,0.006811102852225304,0.01183992438018322,0.06681745499372482,0.0796339362859726,0.03214089572429657,0.027671992778778076,0.014511054381728172,-0.04671221598982811,0.061179257929325104,0.10634426772594452,-0.09361221641302109,0.014495542272925377,-0.06266756355762482,-0.030331186950206757,0.020030446350574493,-0.04222259670495987,0.05888693034648895,0.054304469376802444,-0.00266642146743834,0.11960271745920181,0.007456236053258181,-0.08675872534513474,-0.03531685471534729,0.034899745136499405,-0.021522151306271553,-0.01370901707559824,0.04358426108956337,0.06623537838459015,-0.07854599505662918,-0.08756712079048157,-0.01645480841398239,-0.053471650928258896,0.05248314514756203,-0.00465050246566534,0.13189050555229187,-0.013914578594267368,0.050778795033693314,-0.026968860998749733,0.0034007884096354246,0.08808797597885132,-0.021310074254870415,-0.01904500648379326,0.022937709465622902,-0.030267953872680664,0.02477576769888401,-0.012316936627030373,0.019445275887846947,0.007053534500300884,0.005968825425952673,0.038183845579624176,0.0748121365904808,0.06333590298891068,0.023546336218714714,0.03689868748188019,0.0298396497964859,-0.007478735409677029,-0.11572811752557755]},{"text":"I thought from your trying to kiss me that you had given up being so particular.","book":"Down and Out in Paris and London","chapter":36,"embedding":[-0.0035269695799797773,-0.03616414591670036,0.06949929893016815,-0.033862389624118805,-0.006776635069400072,-0.03180130943655968,0.09319499135017395,-0.011898644268512726,-0.030152667313814163,-0.042309533804655075,-0.07083170115947723,-0.009240458719432354,-0.05791941657662392,0.03352765738964081,0.026069510728120804,0.0023921504616737366,0.10825562477111816,-0.047149039804935455,-0.026101533323526382,0.09103650599718094,-0.009075343608856201,0.10187684744596481,0.07674945890903473,-0.04845394939184189,-0.08429795503616333,0.010931936092674732,0.06649202853441238,-0.022429397329688072,0.061634525656700134,0.07297060638666153,-0.03557113930583,0.12802109122276306,0.014705801382660866,-0.042304206639528275,-0.02443663962185383,0.006608293857425451,-0.09284689277410507,0.03545898199081421,0.05743337422609329,-0.020033882930874825,0.005113145802170038,-0.01594359613955021,0.08856035023927689,0.021140864118933678,0.029522398486733437,-0.015203004702925682,-0.037145476788282394,0.02698349580168724,-0.006707295309752226,-0.0808480754494667,0.008730631321668625,-0.04824110493063927,0.0005697014858014882,-0.040095504373311996,0.006787668913602829,-0.053314123302698135,0.06852903217077255,0.0065652430057525635,0.005469064693897963,0.02391594648361206,-0.005989094730466604,0.01850070431828499,-0.006074090488255024,0.015758391469717026,0.04355570673942566,0.035316940397024155,-0.03123730793595314,-0.0141305485740304,-0.058700110763311386,-0.006929628551006317,-0.04772846773266792,0.039232879877090454,-0.012479308061301708,0.03950809687376022,0.04238231107592583,-0.0384640209376812,0.013612567447125912,0.004354470409452915,0.023229939863085747,0.024430593475699425,0.024910176172852516,0.03519825264811516,-0.042900510132312775,0.05547083169221878,-0.0651865229010582,-0.11450383067131042,0.016422905027866364,-0.07590208947658539,0.00674626836553216,0.023308435454964638,-0.1015234962105751,-0.04602319747209549,-0.002076022094115615,-0.02997715026140213,-0.00026978077949024737,-0.024577446281909943,0.042154960334300995,0.04524684324860573,-0.007221896667033434,0.07301335781812668,0.041760534048080444,-0.028351422399282455,-0.04296063631772995,0.033609289675951004,0.04316515102982521,-0.05153387412428856,-0.0795903429389,-0.030522381886839867,-0.024324949830770493,-0.03639934957027435,-0.03575221449136734,-0.07657948136329651,-0.03294882923364639,-0.03316531702876091,-0.01119605265557766,-0.004796067718416452,0.0029733041301369667,0.06797493249177933,0.002894200850278139,0.07174670696258545,-0.0051546841859817505,-0.0022424061316996813,-0.1286812573671341,0.06446856260299683,-0.06231842190027237,-0.06852135062217712,-0.02683098241686821,-5.351427746542894e-33,-0.008801083080470562,-0.044338345527648926,0.0201420858502388,0.031157227233052254,-0.000022828988221590407,0.06717988103628159,-0.02883903495967388,-0.012856864370405674,-0.0686827078461647,0.04784980043768883,0.05724593997001648,0.020202387124300003,0.02196560613811016,0.021820111200213432,-0.025952227413654327,0.10784278064966202,-0.05466955900192261,0.00808989442884922,0.04759611561894417,0.03464493528008461,0.0035203637089580297,0.06956182420253754,-0.010987096466124058,-0.04334741085767746,-0.09705290198326111,-0.023823140189051628,-0.07254047691822052,0.019931264221668243,0.015104521065950394,-0.005821190308779478,0.010395036078989506,-0.03460697457194328,0.014878333546221256,-0.002244391944259405,0.014045462012290955,-0.06750711798667908,0.08154715597629547,-0.067801333963871,-0.013315754942595959,-0.03838416188955307,0.05132531002163887,0.015528157353401184,-0.09161296486854553,0.07597372680902481,-0.08470989018678665,0.020861294120550156,-0.03812862187623978,-0.02783920057117939,-0.07052867114543915,-0.053928881883621216,-0.03726805001497269,0.07071128487586975,0.06301026791334152,0.041051235049963,-0.0668637752532959,-0.02628391794860363,-0.01416658703237772,0.08835900574922562,-0.038959674537181854,0.044719163328409195,0.0077653140760958195,0.05939948186278343,-0.002948674838989973,-0.029871836304664612,-0.047038596123456955,-0.055772654712200165,0.06557568162679672,0.014712403528392315,0.002555598272010684,0.020801950246095657,-0.06280670315027237,-0.013629105873405933,0.05044425278902054,-0.008298724889755249,-0.04279477521777153,-0.04173659533262253,0.06679327040910721,0.11636389046907425,0.06721579283475876,-0.05317525193095207,0.06091342866420746,0.11862243711948395,-0.05253377556800842,-0.06324655562639236,-0.04585372656583786,-0.06283028423786163,0.007789769675582647,-0.028327347710728645,0.09446916729211807,0.013221860863268375,-0.08207181841135025,0.008772495202720165,0.025497782975435257,-0.053053274750709534,-0.11816652864217758,2.831024962347888e-33,-0.0017622116720303893,0.00208811042830348,0.020807191729545593,-0.02071145363152027,0.014857363887131214,-0.04139396920800209,-0.03893747925758362,0.01306125521659851,-0.01722150854766369,0.04123569652438164,0.0920848697423935,-0.04312247782945633,0.05909091234207153,-0.002131729619577527,-0.012501591816544533,0.05493505671620369,-0.061495471745729446,0.017461832612752914,-0.021429985761642456,-0.018064992502331734,-0.043985411524772644,0.09555324167013168,-0.057809777557849884,-0.03634880855679512,0.011008534580469131,0.07596651464700699,0.021863412111997604,0.04563954472541809,-0.055163562297821045,-0.035268161445856094,0.013734426349401474,-0.015385649167001247,-0.16986031830310822,0.07687852531671524,-0.03258576989173889,-0.011986552737653255,-0.006508590187877417,0.12391168624162674,-0.07750652730464935,-0.045116670429706573,-0.10732962191104889,-0.058486416935920715,0.010931583121418953,0.08128180354833603,0.056055959314107895,-0.018074072897434235,0.017761491239070892,0.07167337834835052,0.07008185982704163,0.06599067151546478,-0.0687255710363388,-0.059897370636463165,-0.0414263941347599,-0.04041473940014839,0.019956614822149277,0.06358681619167328,0.11271265894174576,-0.00747760571539402,-0.011295275762677193,0.008106494322419167,0.004703204147517681,-0.060312286019325256,0.03927735984325409,-0.0514511801302433,0.028608281165361404,-0.014078077860176563,0.026170918717980385,-0.05752693489193916,-0.053869348019361496,-0.004339042119681835,-0.0007862903876230121,-0.016406500712037086,-0.04991986230015755,0.020412256941199303,0.03020886704325676,-0.021353308111429214,0.03560063987970352,-0.06243833526968956,-0.04149046167731285,-0.06423603743314743,0.0013484795344993472,0.05737001821398735,0.00656204903498292,-0.008294738829135895,0.06501585990190506,0.07487368583679199,-0.05904741957783699,0.05325034260749817,0.04928423464298248,-0.01829257607460022,-0.02602195367217064,-0.03209835663437843,-0.04780196398496628,-0.07375074923038483,0.10499012470245361,-3.060250008957155e-8,0.013646082952618599,0.03162774443626404,-0.11625033617019653,0.041977912187576294,0.036742184311151505,-0.04294474050402641,-0.08234427124261856,-0.11341454833745956,0.003772103227674961,-0.012733960524201393,0.054630082100629807,0.020332323387265205,0.061952464282512665,0.04902837425470352,-0.013369320891797543,-0.02162071317434311,0.0071058799512684345,-0.03241243213415146,-0.030179737135767937,-0.007699980400502682,-0.024480752646923065,0.03264039754867554,-0.08310103416442871,-0.0024951270315796137,0.041337329894304276,-0.027595767751336098,0.03820203244686127,0.0003093672567047179,0.013135919347405434,-0.03479883447289467,0.06041237711906433,-0.019053146243095398,-0.05524410307407379,-0.04102889820933342,0.03589045628905296,-0.04294617474079132,0.0032226743642240763,-0.010900449939072132,0.01766916736960411,-0.0160102229565382,0.010267388075590134,0.011255253106355667,-0.005381803493946791,0.14561840891838074,-0.026875371113419533,0.04540054127573967,0.11359380930662155,0.0513768345117569,0.0015038878191262484,0.06675271689891815,0.013836752623319626,-0.012599052861332893,0.04388061910867691,0.04601675644516945,0.12694396078586578,0.06908684968948364,-0.049526192247867584,0.09758718311786652,0.008558942005038261,0.03305865451693535,0.09295760095119476,0.058528151363134384,-0.08859746903181076,-0.02769717574119568]},{"text":"Besides, you would tell that I told you; and I should lose my place.","book":"Down and Out in Paris and London","chapter":36,"embedding":[0.04785619303584099,0.020587172359228134,0.07257883995771408,-0.02389654517173767,0.05525156110525131,-0.037070147693157196,0.06922555714845657,-0.005286150146275759,-0.028475705534219742,-0.04293465241789818,-0.005936381407082081,-0.015036213211715221,0.03306028991937637,-0.02937854267656803,0.06879916042089462,-0.012622757814824581,0.043133292347192764,0.057353705167770386,0.010894293896853924,0.002784546697512269,0.0759078785777092,0.08871588110923767,0.0691581442952156,0.03159898519515991,0.022044839337468147,0.03447733819484711,0.014804333448410034,0.08255554735660553,-0.07842209190130234,0.014303434640169144,0.007109866943210363,-0.008172241970896721,-0.008779595606029034,-0.0009235396282747388,0.006015430670231581,0.020658669993281364,0.020078368484973907,-0.054477062076330185,0.030348947271704674,-0.051480431109666824,0.08067531138658524,0.07391411066055298,0.07314038276672363,0.02815481647849083,-0.03861001506447792,0.018660031259059906,-0.04188879579305649,0.03297625854611397,-0.011518350802361965,-0.035427581518888474,0.03231201320886612,-0.002827052492648363,-0.08531852811574936,-0.04149670526385307,0.007117629516869783,0.015019280835986137,-0.013522944413125515,0.03366313502192497,-0.06877919286489487,0.07134511321783066,0.12969882786273956,0.005383657291531563,-0.0016944070812314749,0.04544155299663544,0.050090670585632324,0.03164424002170563,-0.026076732203364372,0.09866390377283096,-0.0479419119656086,-0.016024239361286163,-0.06452947109937668,0.029788468033075333,-0.009539431892335415,-0.02942810207605362,-0.10425340384244919,-0.0742335096001625,0.019546402618288994,-0.016561152413487434,0.0532071515917778,0.07362119108438492,-0.03571859002113342,0.01948232762515545,-0.058976929634809494,0.029534827917814255,-0.08156910538673401,-0.06657622754573822,0.09727716445922852,-0.06674768775701523,0.0124719999730587,-0.0647200271487236,-0.011619562283158302,-0.027838503941893578,0.03744913637638092,-0.019266720861196518,-0.028328940272331238,0.05242696776986122,-0.10809669643640518,0.029091205447912216,-0.06579931825399399,0.08541984111070633,0.002555676968768239,-0.01950957626104355,0.003556610085070133,-0.0194662194699049,-0.020829781889915466,-0.032348763197660446,-0.05707794055342674,0.03570485860109329,-0.01773858442902565,-0.0339885838329792,0.000800850975792855,0.0020727897062897682,0.020477652549743652,0.03496119752526283,0.043686069548130035,0.047031912952661514,0.07078481465578079,0.06590424478054047,-0.01917555369436741,-0.040859803557395935,-0.04072297364473343,0.040388137102127075,-0.0032396989408880472,0.0789092406630516,-0.06730742752552032,-0.03123302571475506,-0.0374930165708065,-9.236395433708276e-33,0.01006301213055849,-0.023547736927866936,-0.014797482639551163,0.022408848628401756,0.05505066737532616,0.03734436258673668,-0.10303772985935211,0.046972427517175674,0.06590244174003601,0.016932355239987373,0.05483981966972351,-0.07844918221235275,-0.01582062803208828,0.05126470699906349,-0.03066747635602951,0.17212311923503876,0.04633411765098572,0.055485863238573074,0.012545616365969181,-0.09246185421943665,0.07020469754934311,0.016178380697965622,-0.00305417412891984,0.003634934313595295,0.02440646104514599,-0.07014250010251999,-0.036091096699237823,-0.07378065586090088,0.007118199020624161,-0.007777294609695673,-0.028209835290908813,-0.00897416565567255,0.08208885043859482,-0.06863725185394287,0.03028237074613571,0.034343600273132324,-0.04904166981577873,-0.011580279096961021,-0.0031594811007380486,-0.015222571790218353,0.010686696507036686,-0.06808341294527054,-0.06749824434518814,0.07268643379211426,0.039297595620155334,-0.049945756793022156,-0.0011790782446041703,-0.0011501499684527516,-0.03329714387655258,-0.0024240766651928425,-0.019158313050866127,0.019620779901742935,0.048914000391960144,0.015392765402793884,0.03767940029501915,-0.027671582996845245,0.02919231541454792,-0.005872506648302078,0.027447639033198357,0.035302042961120605,-0.01195323932915926,-0.0379534512758255,-0.0013962984085083008,0.05740433558821678,-0.09403648972511292,-0.07290239632129669,0.035057228058576584,0.02703021466732025,0.02659781277179718,0.011297762393951416,-0.029228907078504562,0.0010693735675886273,-0.0076224301010370255,0.07712903618812561,-0.04188189655542374,-0.06708337366580963,-0.13000273704528809,-0.04029381275177002,0.013234402053058147,-0.108433298766613,0.14093928039073944,-0.00346977892331779,-0.15857763588428497,0.07848015427589417,0.1379949450492859,0.045261602848768234,0.11723066866397858,-0.04141496494412422,-0.04201198369264603,-0.0261986181139946,-0.06688638776540756,0.032220128923654556,0.06795071065425873,-0.04220035299658775,-0.04711350053548813,5.261719527817907e-33,-0.012500863522291183,0.02874530479311943,0.007458644453436136,-0.040151625871658325,-0.03884223848581314,-0.024688908830285072,-0.06763987988233566,0.041143547743558884,0.06122088432312012,0.12160133570432663,-0.03134008124470711,0.016632959246635437,-0.020218560472130775,0.021081790328025818,-0.034455861896276474,0.02673814259469509,0.04137376695871353,-0.10013548284769058,-0.03398912027478218,0.01845552958548069,-0.10356493294239044,0.02243172936141491,-0.05902891978621483,0.06309479475021362,0.04963085427880287,-0.02523660659790039,0.04073357582092285,0.016069825738668442,-0.05233063921332359,-0.05093534663319588,-0.005545256193727255,-0.04217436909675598,-0.10875220596790314,0.00796444620937109,0.004259610082954168,0.01525059249252081,-0.025723256170749664,-0.07330865412950516,-0.07762974500656128,0.058847539126873016,-0.029542170464992523,-0.024764107540249825,-0.04409601911902428,-0.015758274123072624,-0.016724402084946632,-0.053914815187454224,0.03131560608744621,-0.03798118233680725,0.07381074875593185,0.0956563800573349,-0.011154619045555592,-0.06733741611242294,0.020993178710341454,0.0059504457749426365,-0.008745933882892132,0.007774253375828266,0.05706195905804634,0.014045179821550846,0.008616658858954906,-0.02046603336930275,-0.0230385921895504,0.030686991289258003,-0.018878106027841568,0.047453537583351135,0.06144607439637184,-0.06899845600128174,-0.08244546502828598,0.04376952350139618,0.017468420788645744,-0.01881951279938221,0.10692451149225235,0.0047813900746405125,-0.06242220476269722,0.025035807862877846,-0.007905698381364346,0.028873123228549957,0.024893494322896004,0.02215723507106304,-0.023404095321893692,0.03341773897409439,0.02153804525732994,-0.01982283778488636,0.041561309248209,-0.06994625926017761,0.02445177175104618,0.029167035594582558,-0.017660874873399734,-0.01904533989727497,0.021796029061079025,0.027967507019639015,-0.013971175067126751,0.023165669292211533,-0.000164710872923024,-0.14474277198314667,-0.018015902489423752,-2.586336478316298e-8,-0.010767386294901371,-0.0049135154113173485,0.04453277960419655,-0.008137053810060024,0.004396761767566204,-0.012560756877064705,0.06224853917956352,0.03834860026836395,0.004479993134737015,-0.033117447048425674,0.05016166344285011,0.0021674830932170153,-0.04259799048304558,-0.009520649909973145,0.004121044185012579,0.09500875324010849,0.020748047158122063,-0.11599546670913696,-0.01871657744050026,0.06230891868472099,0.014377051964402199,0.09584855288267136,-0.036781758069992065,0.016658008098602295,-0.0451982282102108,-0.010781987570226192,0.017544036731123924,0.04463403299450874,0.007518559228628874,0.13925516605377197,0.04052099213004112,-0.10428913682699203,-0.04742337763309479,0.05971163138747215,-0.06353625655174255,-0.017685240134596825,-0.06208335980772972,-0.03276697173714638,-0.01811700314283371,0.029003582894802094,-0.09182163327932358,0.0008008230361156166,0.042035918682813644,0.03389754146337509,-0.005056076217442751,0.0009658291819505394,0.09532439708709717,-0.055948514491319656,-0.05997176468372345,-0.04623949155211449,-0.0891307070851326,-0.012118998914957047,0.0026348652318120003,0.05438808724284172,0.06435228884220123,0.01834126003086567,-0.01373104564845562,0.01631801202893257,-0.0625130906701088,0.028783896937966347,-0.013507727533578873,0.00902318861335516,-0.14282982051372528,-0.06956465542316437]},{"text":"And I tell you that if that gentleman ever comes here again, Miss Raina will marry him, whether he likes it or not.","book":"Down and Out in Paris and London","chapter":36,"embedding":[-0.045400217175483704,0.031049134209752083,0.02741440385580063,-0.03514791280031204,-0.08092710375785828,-0.0024676132015883923,0.07791827619075775,-0.05419400706887245,0.03209585323929787,-0.018693435937166214,-0.056432582437992096,-0.05657258629798889,-0.008223277516663074,-0.05760665610432625,-0.0027074897661805153,0.021912559866905212,0.0008953998330980539,-0.10534752905368805,-0.015552176162600517,0.07213662564754486,-0.034209080040454865,-0.001459431485272944,0.02388153038918972,0.04843805730342865,-0.06248860061168671,0.0029395802412182093,0.08467061817646027,0.10257277637720108,-0.002452511340379715,-0.02272232249379158,0.04841388016939163,0.08539928495883942,0.021752936765551567,0.038371749222278595,0.014202749356627464,0.010860688053071499,0.009311148896813393,0.0024645309895277023,0.027920139953494072,0.027942221611738205,0.030978985130786896,-0.010061424225568771,-0.007301331963390112,-0.01843838579952717,-0.02531871758401394,-0.10635362565517426,0.029634198173880577,-0.006418799050152302,0.035743627697229385,0.0007733369129709899,0.0586407370865345,0.060763195157051086,0.0005848129512742162,-0.04906376823782921,0.02799355797469616,0.02973066456615925,0.06134125962853432,-0.00933112483471632,-0.01740327477455139,-0.010396904312074184,-0.0016126984264701605,0.05791885033249855,-0.03947729617357254,0.03305419161915779,0.04993293061852455,-0.11274748295545578,-0.054212842136621475,0.02880845218896866,-0.025158176198601723,-0.012106458656489849,-0.040368564426898956,0.0769471675157547,-0.06298419833183289,0.0739271268248558,-0.11118854582309723,-0.0301143117249012,0.016316743567585945,-0.017269711941480637,-0.023135915398597717,0.01890731416642666,-0.054428160190582275,-0.07844679802656174,0.037225060164928436,0.06034783273935318,-0.03765661269426346,-0.02877751924097538,-0.009805701673030853,-0.1425410509109497,-0.015546024776995182,-0.02540343441069126,-0.05941750854253769,-0.09389349073171616,-0.019494550302624702,0.038977041840553284,-0.00019245555449742824,0.0800836831331253,-0.023807331919670105,-0.0475558377802372,-0.05492722615599632,0.07057003676891327,0.014119943603873253,0.0156551580876112,-0.02288581058382988,0.012051851488649845,-0.05635113641619682,0.07806215435266495,-0.0051467204466462135,0.03534286841750145,0.015277666039764881,-0.10465997457504272,-0.008555092848837376,-0.045941613614559174,0.0031461594626307487,0.06970547884702682,-0.014635804109275341,-0.02865321934223175,0.002858266467228532,0.020846311002969742,-0.009944546967744827,-0.00873930286616087,-0.05388293415307999,0.028442449867725372,0.009568559937179089,0.017211753875017166,0.024729082360863686,-0.09557636827230453,0.018550194799900055,-2.052127711813655e-33,0.05842239037156105,-0.036181967705488205,0.04453950375318527,-0.05342002585530281,0.05748703330755234,0.04346166551113129,0.027037957683205605,-0.061056409031152725,-0.015892891213297844,-0.07977086305618286,-0.010041527450084686,-0.026586247608065605,-0.03952266648411751,-0.05142579600214958,-0.06297856569290161,0.07844192534685135,0.05062041059136391,-0.013461975380778313,-0.03608522191643715,0.005332661792635918,0.04314729943871498,0.003934143576771021,-0.024139588698744774,-0.007746121380478144,-0.009310920722782612,0.01580202765762806,0.13108491897583008,0.04470043629407883,0.09191356599330902,0.0247565396130085,-0.04950139671564102,0.06553328037261963,0.06037825345993042,-0.038554053753614426,0.06543586403131485,-0.010725066997110844,-0.0545894131064415,-0.04018421843647957,-0.03984228894114494,0.0821230411529541,0.0000819023625808768,-0.04288242757320404,-0.06279923021793365,0.014733050018548965,-0.1310250610113144,-0.06299568712711334,0.07014681398868561,0.05128384381532669,0.08028282225131989,-0.066281758248806,0.023817263543605804,-0.006211607251316309,-0.007555506657809019,-0.008419196121394634,0.04327208176255226,0.024812569841742516,0.01786612533032894,-0.030413122847676277,0.15663672983646393,0.02538008987903595,0.05243171378970146,-0.044717203825712204,0.037204157561063766,-0.030416075140237808,0.01929725520312786,-0.0017569510964676738,0.018139511346817017,0.019825901836156845,-0.056728191673755646,-0.006501610856503248,0.000667769752908498,-0.01773473247885704,-0.08497920632362366,0.03696800395846367,-0.0004470150452107191,-0.0766916424036026,0.029229972511529922,0.04632839560508728,0.132638081908226,-0.04530462995171547,-0.011285608634352684,0.07673956453800201,-0.002804615767672658,0.008057992905378342,-0.03949393704533577,-0.04798227176070213,0.03832298144698143,-0.03805820643901825,-0.02367238514125347,-0.028297562152147293,0.09285328537225723,0.038208622485399246,0.10794878005981445,-0.11155723035335541,0.03678737208247185,-1.381932556497286e-33,-0.004773751832544804,-0.07120466977357864,0.002103562233969569,0.013319753110408783,0.061125438660383224,-0.02715357206761837,-0.03089432418346405,0.019918596372008324,0.08562273532152176,0.0812065377831459,-0.011390432715415955,0.03232603892683983,-0.008648298680782318,0.0043843528255820274,-0.011020384728908539,0.01344367116689682,0.09527406841516495,-0.05394914373755455,-0.06611595302820206,-0.04262307286262512,0.07686898857355118,-0.04408620297908783,0.030888505280017853,-0.04005527123808861,-0.08466124534606934,-0.05652286857366562,-0.009131146594882011,0.006695188116282225,-0.09777246415615082,-0.016429180279374123,0.010839560069143772,-0.10618675500154495,-0.14017754793167114,0.045513078570365906,0.053520429879426956,-0.05142824351787567,-0.013768977485597134,-0.010430622845888138,-0.03486621752381325,0.03156683221459389,-0.05934135988354683,-0.07216262072324753,0.02361026033759117,0.026199940592050552,0.062443993985652924,-0.045568954199552536,0.06785079091787338,0.08972510695457458,-0.017355579882860184,0.0053800540044903755,-0.018347686156630516,0.006156218238174915,0.021401287987828255,0.013335936702787876,0.005307198502123356,-0.09071383625268936,0.09432773292064667,-0.006411955691874027,-0.006883635185658932,0.03624538704752922,-0.024194607511162758,-0.06837116926908493,-0.0303613543510437,0.0749126449227333,0.012939891777932644,-0.05216815695166588,-0.0488133430480957,-0.039729043841362,-0.031171021983027458,0.0176886934787035,0.04155963659286499,-0.11423836648464203,-0.09103694558143616,0.04570525884628296,0.04154109209775925,0.05193115770816803,0.01611420325934887,-0.027356982231140137,0.06883812695741653,-0.09561409801244736,0.004963614046573639,0.006138678174465895,-0.0389106422662735,-0.01249692589044571,-0.002518975641578436,-0.05731557682156563,-0.008004735223948956,0.006104051135480404,0.0205573458224535,0.05480479449033737,-0.0028404395561665297,-0.05612029880285263,0.10365968942642212,-0.1353529542684555,0.022344818338751793,-2.8113708694377237e-8,-0.10423426330089569,-0.01880444958806038,-0.025234263390302658,-0.06361901760101318,-0.03548136726021767,0.03030857816338539,0.07576465606689453,-0.02232840657234192,0.04893224313855171,-0.07024569809436798,0.048824239522218704,0.09951212257146835,0.07693490386009216,0.00862948689609766,0.04756610840559006,0.07318799197673798,0.1653551310300827,-0.06763622909784317,-0.015245728194713593,-0.015316115692257881,0.07123106718063354,-0.039994604885578156,0.01342772226780653,0.008956041187047958,-0.005723210051655769,0.04685736447572708,0.018225258216261864,-0.006705319043248892,0.019325939938426018,0.03897897154092789,0.03653838858008385,-0.01298560481518507,-0.032953642308712006,-0.019857054576277733,0.0437241792678833,0.036287158727645874,0.01738169975578785,0.031786829233169556,-0.043638572096824646,-0.035448890179395676,0.011857209727168083,-0.019743772223591805,-0.028858300298452377,-0.04257672652602196,0.01369401440024376,0.012988029979169369,0.07330351322889328,0.024058962240815163,-0.08279656618833542,-0.005153921898454428,-0.07778100669384003,0.007491362746804953,0.048755619674921036,0.041809357702732086,0.030263688415288925,-0.03533273935317993,-0.02006426639854908,-0.018439294770359993,0.03068959340453148,-0.028616340830922127,0.09064766019582748,-0.06534408777952194,0.033570028841495514,-0.03410978615283966]},{"text":"And you have betrayed your mistress— LOUKA. (_writhing_).","book":"Down and Out in Paris and London","chapter":37,"embedding":[-0.012472482398152351,0.05999356135725975,0.022063789889216423,0.05628621205687523,-0.05477198585867882,-0.016935046762228012,0.033273398876190186,-0.04266732931137085,-0.01022834237664938,-0.05856314301490784,0.019448895007371902,-0.02642676793038845,-0.0170955341309309,-0.061072938144207,-0.010066995397210121,-0.022269509732723236,0.007294983137398958,0.00033936003455892205,-0.0406554639339447,0.04839368909597397,0.006018092390149832,0.0062481556087732315,0.028558745980262756,-0.009550467133522034,-0.0033812157344073057,-0.01219585258513689,0.05150114744901657,0.004322165623307228,-0.0856713354587555,-0.04342889040708542,-0.05876115337014198,0.00928144808858633,-0.05337105318903923,0.03434637188911438,-0.036301612854003906,0.013742371462285519,-0.08809421211481094,0.007550990208983421,0.08056383579969406,-0.004159975331276655,0.0341709665954113,-0.06518587470054626,0.013767998665571213,0.0446210540831089,0.0030218397732824087,0.007316853851079941,-0.0659109503030777,-0.012076304294168949,0.0011355540482327342,-0.016144994646310806,-0.09950918704271317,0.06839953362941742,-0.07140948623418808,0.11915598809719086,-0.013838759623467922,-0.03319816663861275,0.08358638733625412,0.013935285620391369,0.008044134825468063,0.09179116785526276,0.000966935302130878,0.07422666251659393,0.005695122294127941,0.11945267021656036,-0.07872045040130615,-0.03954359143972397,-0.028983090072870255,0.015021649189293385,-0.09441991150379181,0.14369970560073853,-0.03404196351766586,0.030818503350019455,-0.06316938996315002,-0.0034624445252120495,-0.06243876740336418,-0.060560304671525955,0.01820799894630909,-0.03269721567630768,0.09104736894369125,0.02668881043791771,-0.07150601595640182,0.061007943004369736,-0.021710485219955444,0.08413908630609512,-0.05529830604791641,-0.07975282520055771,0.08584172278642654,-0.04328829422593117,0.03866904601454735,-0.02890275977551937,-0.013360937125980854,-0.028651930391788483,-0.03933771327137947,0.00978415459394455,-0.03215623274445534,0.02539089322090149,-0.04055553302168846,0.04668830707669258,-0.09272240102291107,0.025466259568929672,-0.013374934904277325,-0.012700068764388561,-0.020839890465140343,-0.011414083652198315,-0.03363335505127907,0.06942405551671982,0.031073743477463722,-0.06952985376119614,0.02336079068481922,-0.062476836144924164,0.009803957305848598,-0.08870146423578262,0.022633207961916924,-0.060049232095479965,0.029002254828810692,0.07350344955921173,0.0945989117026329,0.005904304329305887,-0.005592672154307365,0.056545209139585495,0.048083607107400894,-0.03712933883070946,0.005397509783506393,0.08674611896276474,-0.0505816787481308,-0.105587899684906,-0.04612196981906891,-8.06685863519275e-33,0.02262755297124386,0.001806585700251162,-0.00916746910661459,0.05535353347659111,-0.02670319378376007,0.013740559108555317,-0.0142811369150877,0.04506723955273628,-0.06255534291267395,0.04097669944167137,0.048463981598615646,0.010078195482492447,-0.1371447741985321,-0.0465015284717083,-0.12172769755125046,0.17587068676948547,0.035533539950847626,0.019759202376008034,-0.0033280064817517996,0.03593147546052933,0.09684645384550095,0.04130687937140465,0.03375934064388275,0.001465741777792573,-0.02130461111664772,-0.0316939651966095,-0.01087413914501667,-0.03451966494321823,0.007762324530631304,0.03563719987869263,0.017840474843978882,0.011543761007487774,0.08032646030187607,-0.01547988224774599,0.003512426046654582,-0.011428727768361568,-0.04702899977564812,-0.05976562574505806,-0.09141429513692856,0.039610981941223145,-0.05174380913376808,-0.0524967722594738,0.008984922431409359,-0.023529721423983574,-0.023197975009679794,-0.0005944516160525382,0.0015620561316609383,0.06047694757580757,0.03341028839349747,0.0353376567363739,-0.09388473629951477,-0.02148253284394741,0.04651163890957832,0.09118526428937912,0.01345017459243536,0.0013477943139150739,0.0577293299138546,0.022741910070180893,0.06545712798833847,-0.013005487620830536,-0.006874764803797007,0.0014427152927964926,-0.059850845485925674,-0.014423503540456295,-0.06816381961107254,-0.07542870938777924,0.016327379271388054,0.023710476234555244,0.006808843929320574,0.011911872774362564,-0.08281956613063812,0.01629052497446537,-0.11044477671384811,0.03021487593650818,-0.0668470486998558,-0.04421425238251686,0.017729973420500755,0.014888684265315533,0.0291097741574049,-0.11285185813903809,-0.005063060205429792,0.02880794368684292,-0.01129896380007267,0.06211550906300545,-0.010237324051558971,-0.024367913603782654,0.03768354654312134,-0.10432790219783783,-0.016887282952666283,0.02300642617046833,-0.08121063560247421,0.08294451981782913,0.033868320286273956,-0.05799790844321251,-0.05735837295651436,3.432767500031525e-33,0.01944267563521862,-0.02378491871058941,-0.061676617711782455,0.07771783322095871,0.01577444188296795,-0.014000581577420235,-0.040764566510915756,0.0036585088819265366,-0.03816662356257439,-0.016374487429857254,0.003208037232980132,-0.012831284664571285,0.04176634922623634,0.03380722552537918,0.0934993252158165,-0.07379831373691559,0.06661655008792877,-0.0454508438706398,-0.01906031370162964,0.00243059522472322,-0.11003179848194122,0.07753609120845795,0.009929381310939789,0.007773694582283497,0.00010290480713592842,-0.0028870985843241215,0.1419036090373993,-0.012785486876964569,-0.08841025084257126,0.01322182361036539,0.0019354865653440356,-0.014020995236933231,-0.10211478173732758,0.02588934823870659,0.045810215175151825,0.02801181934773922,0.024983558803796768,-0.07639604061841965,-0.021820511668920517,-0.02496352791786194,-0.020669657737016678,-0.07029276341199875,0.028242716565728188,0.027920501306653023,-0.0389702282845974,-0.08029878884553909,0.020539116114377975,0.0219506174325943,0.08602098375558853,0.046303752809762955,0.036837659776210785,-0.0743035227060318,-0.057784005999565125,-0.013630107045173645,-0.07493431866168976,0.031030932441353798,0.049673885107040405,-0.04128561541438103,0.1170981153845787,-0.04536795988678932,-0.07770209014415741,0.012734762392938137,-0.024600842967629433,-0.006008148659020662,0.0309247188270092,0.02077101543545723,0.0065906113013625145,-0.014823194593191147,0.016265297308564186,0.059819113463163376,0.02962247096002102,0.038916900753974915,-0.09511999040842056,0.049166154116392136,0.02075488306581974,0.04856984689831734,-0.04227495566010475,-0.03730904683470726,0.011335132643580437,0.022351233288645744,0.015290457755327225,-0.07135660201311111,0.052979081869125366,-0.02644958533346653,-0.017929837107658386,-0.05801182985305786,-0.006486471276730299,0.004969781264662743,-0.054650645703077316,0.00018170250405091792,-0.001864301972091198,0.004312490578740835,0.044898949563503265,-0.050712574273347855,-0.0041067167185246944,-2.2264787347126003e-8,-0.04066448286175728,0.03414199501276016,0.014582453295588493,-0.06569743156433105,0.03075350448489189,-0.0756419450044632,0.052087657153606415,-0.03392863646149635,-0.013084529899060726,0.06688264012336731,-0.04114655405282974,0.0687248706817627,0.1245633065700531,-0.0011413872707635164,0.12697559595108032,-0.002441111719235778,0.10111328214406967,0.03146979585289955,-0.04514091834425926,-0.014293252490460873,-0.0069175115786492825,0.02133083902299404,-0.06740374863147736,-0.0978490486741066,-0.05598067492246628,0.07074393332004547,0.04964730888605118,0.014639726839959621,0.050968438386917114,0.05008140206336975,0.0950770452618599,0.022490616887807846,0.0031750549096614122,0.02446317858994007,-0.06477971374988556,0.06585729867219925,-0.03596476465463638,-0.021095575764775276,0.031927626579999924,-0.030844606459140778,-0.007118394132703543,0.04212983697652817,0.033093396574258804,-0.01160253956913948,-0.008716929703950882,-0.03773754462599754,0.08202756196260452,-0.03583697974681854,-0.039324190467596054,0.036418672651052475,-0.0007194533827714622,0.07594048976898193,0.01591498777270317,0.06339515000581741,0.06711973249912262,-0.06822065263986588,0.07502494752407074,-0.0023170597851276398,-0.018409740179777145,0.06084055453538895,0.053797777742147446,-0.012332861311733723,-0.006486322730779648,-0.0654442086815834]},{"text":"She finishes packing the tray, and laps the cloth over the edges, so as to carry all out together.","book":"Down and Out in Paris and London","chapter":37,"embedding":[-0.0030779936350882053,0.09904403984546661,0.004319679457694292,0.042895395308732986,-0.028743349015712738,-0.005235197488218546,0.09938111901283264,-0.04680312052369118,-0.07982608675956726,0.037470538169145584,0.031894903630018234,-0.036875076591968536,-0.07607703655958176,0.03944365680217743,-0.0330645926296711,-0.01774236187338829,0.020433643832802773,0.03257440775632858,-0.10059640556573868,0.019871298223733902,-0.0058845947496593,-0.07504778355360031,0.06863488256931305,0.04655234143137932,0.00877388659864664,0.09454573690891266,-0.04964748024940491,-0.07271552085876465,0.1157136857509613,0.003041208256036043,-0.005767133552581072,-0.010830007493495941,0.0019236959051340818,0.09179724007844925,0.023635612800717354,0.11338293552398682,0.040352944284677505,-0.013906153850257397,0.06345674395561218,0.012988409958779812,0.044062379747629166,-0.0016993990866467357,-0.08782902359962463,0.019223766401410103,-0.03506714850664139,0.010150796733796597,-0.011742559261620045,0.011456582695245743,0.008667140267789364,-0.05368747562170029,-0.024778226390480995,-0.01567799411714077,-0.0866914838552475,-0.023692239075899124,-0.06335034966468811,0.07304736971855164,0.10824914276599884,-0.0625133290886879,-0.0022804385516792536,0.007662549149245024,-0.06235550343990326,0.014707685448229313,-0.04259989410638809,0.09539249539375305,-0.046216484159231186,-0.11567634344100952,0.018383877351880074,0.06443723291158676,-0.05898663029074669,0.09240606427192688,0.003379873465746641,0.10542025417089462,-0.03972744941711426,0.09263788163661957,0.08391372114419937,-0.12388486415147781,0.08002392202615738,0.023005487397313118,0.03717491403222084,0.052304670214653015,-0.033307019621133804,0.019340788945555687,0.03601879999041557,0.0976143330335617,-0.07289578020572662,-0.026513833552598953,-0.026843752712011337,-0.019191298633813858,0.03282724693417549,-0.05695705860853195,-0.02550063468515873,0.007481898181140423,-0.08067866414785385,-0.00846712663769722,-0.08900732547044754,0.02617151476442814,-0.08203069865703583,0.03768763691186905,0.07242690026760101,-0.0004766095371451229,-0.009435451589524746,0.02496459148824215,0.05713018774986267,0.003560833167284727,-0.05801805108785629,-0.08116725832223892,0.010915953665971756,-0.07512032985687256,0.025845441967248917,-0.007259768433868885,0.003716300241649151,-0.05242306366562843,-0.02066909149289131,0.013958333060145378,-0.06465409696102142,0.09510196000337601,-0.030115578323602676,0.036993592977523804,0.033268485218286514,-0.0006005115574225783,0.025909746065735817,0.005676609463989735,0.01435130089521408,0.020956551656126976,-0.01827133819460869,-0.03705159202218056,0.08748171478509903,-4.3376285211479664e-33,-0.017948169261217117,-0.024724680930376053,0.03075653687119484,0.10918889939785004,0.09355749189853668,0.009103230200707912,0.00046268347068689764,-0.05310707166790962,-0.010921906679868698,0.030727606266736984,0.01152824331074953,-0.05541326850652695,-0.09390214085578918,0.029801828786730766,0.053851254284381866,-0.0334598571062088,-0.03547726944088936,0.049713484942913055,-0.029303429648280144,0.05171908438205719,0.04565056785941124,-0.08851909637451172,0.035967983305454254,-0.012243414297699928,0.02458169125020504,0.006622817367315292,-0.006730755791068077,0.02959916554391384,0.007676939480006695,0.050502318888902664,0.013755613937973976,0.03721708059310913,-0.027649402618408203,0.01724541001021862,-0.044950831681489944,0.11270841211080551,-0.04828133434057236,-0.0045304009690880775,0.04385906457901001,0.0288663599640131,-0.07362926751375198,-0.03489388898015022,0.07967117428779602,0.006007849704474211,-0.1158505380153656,-0.02775133214890957,0.08815315365791321,0.046395521610975266,0.0003049124497920275,0.07049795985221863,0.01178702712059021,0.00043693312909454107,0.07583839446306229,-0.018524546176195145,-0.06422466784715652,0.005313783884048462,0.03745090961456299,-0.08556069433689117,0.04557116702198982,-0.010884160175919533,0.06655051559209824,-0.02603827975690365,-0.08823222666978836,0.04639426991343498,0.06009173393249512,-0.0396759994328022,0.013752338476479053,0.014960430562496185,0.06265280395746231,-0.0023462981916964054,-0.1370132565498352,0.06270060688257217,-0.03609689325094223,0.022813262417912483,-0.03782061114907265,0.02437172830104828,0.06889796257019043,-0.04606834799051285,-0.002427162602543831,-0.10604443401098251,-0.02307746931910515,0.024489738047122955,-0.021177710965275764,-0.021174609661102295,-0.012162313796579838,-0.01981193944811821,0.04315296933054924,0.007902225479483604,0.02828526496887207,-0.015377492643892765,0.010466779582202435,-0.012736927717924118,0.04153035208582878,-0.04383719712495804,-0.04400928318500519,2.2576709805785938e-33,0.1186390221118927,0.015446810983121395,-0.03525377810001373,0.003999535925686359,-0.04266215115785599,-0.029836993664503098,-0.07437589764595032,-0.04308222234249115,-0.02811439521610737,0.01614437997341156,-0.08302441984415054,-0.023521658033132553,0.009585753083229065,0.008552922867238522,-0.015132815577089787,0.07168221473693848,0.05093544349074364,-0.008307628333568573,0.034293629229068756,-0.13653449714183807,-0.038287244737148285,-0.02646055445075035,0.060284435749053955,-0.04040803015232086,-0.047771356999874115,-0.050267543643713,0.04312959685921669,-0.02695213444530964,0.0405757911503315,-0.027484914287924767,0.00990558136254549,-0.1521063596010208,-0.005966518074274063,0.045762788504362106,0.01766323298215866,-0.009058082476258278,-0.04168110340833664,0.002893878612667322,0.06635917723178864,-0.0926462784409523,0.05195071920752525,-0.07657195627689362,-0.04713703691959381,0.10546902567148209,0.053891099989414215,-0.00901297852396965,-0.05560773238539696,0.06531958281993866,-0.08013860881328583,0.0076694181188941,-0.04697590693831444,-0.036367978900671005,-0.02192656323313713,-0.007397009525448084,-0.003966164775192738,0.0826014056801796,-0.009125864133238792,-0.020073112100362778,0.0007859822362661362,-0.07926735281944275,-0.03871280327439308,0.0724717229604721,-0.02769053913652897,-0.02256738394498825,0.00407163193449378,-0.02835540659725666,-0.025317104533314705,-0.04231662675738335,-0.043298717588186264,0.042932625859975815,-0.0689045712351799,0.03925145044922829,-0.07161030173301697,-0.04187148064374924,0.014299486763775349,0.031002234667539597,-0.0029606614261865616,-0.08727356791496277,-0.007737764157354832,0.04325275123119354,-0.07229703664779663,-0.059759609401226044,0.057194359600543976,-0.023734675720334053,-0.00915087852627039,-0.10196886956691742,-0.015143915079534054,0.052570633590221405,-0.03546447679400444,0.005551205947995186,0.038083769381046295,-0.003624336328357458,0.08523713052272797,0.021669073030352592,-0.007492752280086279,-2.433550427838327e-8,-0.04668036848306656,-0.014100301079452038,-0.04178271070122719,-0.07883386313915253,0.0469808429479599,0.0010618986561894417,0.04790669307112694,0.03220804035663605,-0.029882676899433136,-0.009444882161915302,0.03286345675587654,0.0037035688292235136,-0.02685273252427578,0.06182199344038963,-0.024288471788167953,0.06784521788358688,-0.016801953315734863,0.0733942985534668,-0.04272934049367905,-0.02626146748661995,-0.0034989898558706045,-0.04469061270356178,0.059546928852796555,0.06683935970067978,-0.02831607311964035,0.05737628415226936,-0.09007401764392853,0.05918186902999878,0.01306224800646305,0.03066103719174862,0.058282315731048584,0.006822020746767521,0.03604917600750923,0.021288910880684853,-0.03295082598924637,-0.029082084074616432,0.009588271379470825,-0.014185001142323017,0.09030505269765854,0.026031864807009697,0.027447083964943886,0.0015756654320284724,0.030294641852378845,0.040359463542699814,0.018868986517190933,0.01348724402487278,0.0019111901056021452,0.008069589734077454,-0.027372876182198524,0.05095437914133072,0.032814882695674896,-0.10223236680030823,0.04028947278857231,0.018480762839317322,-0.004675823729485273,-0.012202156707644463,-0.03623448312282562,-0.07311274856328964,0.10275688022375107,0.0737127959728241,-0.09774613380432129,0.03374594449996948,0.034077513962984085,0.01678703911602497]},{"text":"Oh, you wish to be paid for the hurt? (_He puts on his shako, and takes some money from his pocket._) LOUKA. (_her eyes filling with tears in spite of herself_).","book":"Down and Out in Paris and London","chapter":37,"embedding":[-0.0007105875411070883,0.1310451775789261,0.009314311668276787,-0.007608955260366201,0.02176804468035698,0.05842301994562149,0.09406273066997528,0.03944937139749527,0.02819262258708477,-0.03152346611022949,-0.019290948286652565,-0.10904967784881592,-0.08640515059232712,0.01690046675503254,0.014178452081978321,-0.022950230166316032,0.051175449043512344,0.007210306357592344,-0.06666027009487152,0.1208483949303627,-0.005474449135363102,-0.003209472168236971,-0.01419428177177906,0.008918425999581814,0.03899297118186951,-0.05347124859690666,0.12012606859207153,0.010612468235194683,-0.0038606487214565277,-0.0452813059091568,-0.03163296729326248,-0.04653807729482651,-0.026495162397623062,0.037668198347091675,-0.023783525452017784,0.04266504943370819,-0.05922028794884682,-0.01832684315741062,0.008322356268763542,0.02325299009680748,0.03869135305285454,-0.08702734857797623,-0.046107999980449677,0.0013735131360590458,0.005921703763306141,0.0015709215076640248,0.010007164441049099,0.032210931181907654,0.0140311811119318,-0.034892477095127106,-0.12227882444858551,0.015797734260559082,-0.018055252730846405,0.05881790071725845,0.011251325719058514,-0.049667343497276306,0.09129009395837784,-0.033838901668787,-0.008053885772824287,0.07878518104553223,-0.05595653876662254,0.04305148497223854,-0.021981842815876007,0.11084678769111633,-0.056305285543203354,-0.05498487129807472,0.00023916832287795842,-0.03914095088839531,-0.10575757920742035,0.14263947308063507,0.00013096524344291538,0.019789379090070724,-0.012901405803859234,-0.08166306465864182,-0.06079036742448807,-0.011988167650997639,0.0006051931413821876,-0.0012304444098845124,0.07133703678846359,0.009314465336501598,-0.014810208231210709,-0.05120297893881798,-0.01388073805719614,0.06078449636697769,-0.06941390037536621,0.015143356285989285,0.0773516446352005,-0.04802805930376053,0.0335223451256752,-0.017660407349467278,0.017868272960186005,0.033811233937740326,0.011488858610391617,-0.029604004696011543,-0.00233640824444592,0.079889677464962,-0.02975703775882721,-0.014451681636273861,-0.0735720694065094,0.0330493189394474,0.02484307810664177,-0.016878662630915642,0.03641205281019211,-0.025136766955256462,-0.016580067574977875,0.04226457327604294,-0.03674432635307312,-0.06107725948095322,-0.01491105742752552,-0.006951411720365286,0.02257896400988102,-0.06685551255941391,-0.029127513989806175,-0.08882541954517365,0.00033265716047026217,0.0722719207406044,0.024971680715680122,-0.026915475726127625,0.0021433786023408175,0.0061103529296815395,0.040325406938791275,-0.029336653649806976,-0.022268950939178467,0.06208380311727524,-0.003643129952251911,-0.04837976396083832,-0.10102441161870956,-2.8638262138526223e-33,0.12156660109758377,0.0006396459066309035,-0.04727549850940704,-0.056495342403650284,-0.06405533105134964,0.0022326188627630472,-0.023573460057377815,0.0034335621166974306,-0.05763369798660278,0.022962937131524086,-0.02158096618950367,0.03568121790885925,-0.06712275743484497,-0.06669435650110245,-0.055158164352178574,0.11833848804235458,-0.028517143800854683,-0.0018033185042440891,-0.08302336931228638,0.08073090016841888,0.08314593881368637,0.06289952248334885,-0.018200501799583435,0.051827289164066315,-0.041032373905181885,-0.011629349552094936,0.017471561208367348,-0.09425568580627441,-0.03980857506394386,-0.0009772076737135649,-0.054589275270700455,0.027686450630426407,0.11499078571796417,0.013344654813408852,-0.053605176508426666,-0.05039358511567116,-0.053820304572582245,-0.014551871456205845,-0.08277875930070877,-0.06671106815338135,-0.01949557475745678,-0.0035894394386559725,0.04650568962097168,0.029379170387983322,-0.06396061927080154,-0.05635114759206772,0.019280049949884415,0.04253881424665451,0.04864957183599472,-0.04920819029211998,-0.021283172070980072,0.0023071826435625553,0.01601291447877884,0.017376035451889038,-0.010258790105581284,-0.017145594581961632,0.023422982543706894,-0.021192628890275955,0.09813143312931061,-0.0013417275622487068,-0.000534898485057056,-0.08633580058813095,0.042227912694215775,0.02309824898838997,-0.034498900175094604,-0.02896069549024105,0.041071128100156784,0.005516050383448601,0.02188187651336193,-0.07792098820209503,-0.07422469556331635,0.046081893146038055,-0.06233955919742584,0.000813378777820617,-0.09138619154691696,0.005317875184118748,-0.0003406541654840112,0.013071954250335693,0.05528843402862549,-0.020626427605748177,0.016591791063547134,-0.05386165902018547,0.01997111365199089,0.04614867642521858,0.025997726246714592,0.01523569505661726,-0.027231840416789055,-0.11162855476140976,-0.10375884920358658,-0.010214529931545258,-0.01221827045083046,0.06570640206336975,0.022784467786550522,-0.07964387536048889,0.01574757695198059,-1.5130810836860863e-33,0.07278928905725479,0.01811242662370205,-0.03506409749388695,0.10194415599107742,0.10533514618873596,-0.07281020283699036,-0.03215049207210541,0.027308247983455658,0.07058071345090866,0.05716248229146004,-0.046209994703531265,-0.08217807114124298,-0.009198850952088833,0.005952701438218355,0.013668841682374477,-0.09499166160821915,0.034396544098854065,-0.0910511314868927,0.031808268278837204,0.00020661891903728247,-0.02079707197844982,0.0854663997888565,0.06798141449689865,0.04704202711582184,0.0015903260791674256,0.011002912186086178,0.11107146739959717,-0.04869941249489784,-0.1453762650489807,0.08336113393306732,-0.05894684046506882,-0.039642490446567535,-0.059677496552467346,-0.0072097270749509335,0.034557487815618515,0.04673111438751221,0.008994944393634796,-0.035021618008613586,-0.04761977866292,0.08882968872785568,0.07336928695440292,-0.11914191395044327,0.00183499651029706,0.025164088234305382,0.020215800032019615,-0.11148438602685928,-0.013684147037565708,-0.0017908907029777765,0.07993911951780319,-0.028648866340517998,0.002185867400839925,-0.027234552428126335,-0.09539201855659485,0.12470441311597824,-0.06236673891544342,0.06469444185495377,0.033792637288570404,0.00398898683488369,0.02597714029252529,-0.06669158488512039,-0.055774934589862823,-0.05851033702492714,0.0287797711789608,0.030909396708011627,-0.04794945940375328,0.04873086139559746,0.04995371028780937,-0.0823584571480751,-0.040974415838718414,-0.03485424816608429,-0.03679853677749634,-0.005105241201817989,-0.021356670185923576,0.030950848013162613,0.05469276010990143,0.09926161170005798,-0.049851883202791214,0.0025741609279066324,0.05783573538064957,0.005658079404383898,0.027070192620158195,-0.06801331788301468,-0.006593933328986168,0.0028126405086368322,0.05647905170917511,-0.0399385504424572,0.005382360890507698,-0.0002222791372332722,-0.04917540401220322,-0.06275039166212082,0.03717990592122078,0.052988674491643906,0.06306275725364685,0.008343609981238842,-0.03475932776927948,-3.5347632376669935e-8,-0.020582981407642365,0.050886593759059906,-0.052635062485933304,-0.041862089186906815,0.011743882670998573,-0.027582889422774315,-0.03758598491549492,-0.02545166201889515,-0.06095009669661522,0.11787860840559006,0.04116326943039894,0.1223016157746315,0.04721461609005928,-0.029929684475064278,0.02700888365507126,0.043612148612737656,-0.01364712230861187,0.0165406484156847,-0.047000057995319366,0.014614662155508995,-0.0017523523420095444,-0.007339352276176214,0.010521283373236656,-0.012037845328450203,-0.02951870858669281,0.0028233113698661327,-0.06014637276530266,0.007346670143306255,0.014939959160983562,0.053394582122564316,0.06443187594413757,0.04027877748012543,-0.06230410560965538,-0.03445874899625778,0.010139175690710545,0.028166351839900017,-0.02560500241816044,-0.028625166043639183,0.031016329303383827,0.06537335366010666,0.011967290192842484,0.018230721354484558,-0.05320663005113602,0.009537466801702976,0.03396322950720787,-0.03190722316503525,0.02641572803258896,-0.08771642297506332,-0.04376664757728577,-0.03693639859557152,0.011677288450300694,0.0194272268563509,0.005194184836000204,0.008517817594110966,0.029008345678448677,-0.10405571758747101,0.07556675374507904,0.052714720368385315,-0.0012545132776722312,0.04195830225944519,0.019086521118879318,-0.03522190451622009,0.03455825522542,-0.0033165202476084232]},{"text":"Amazed, he looks at her; at the arm; at her again; hesitates; and then, with shuddering intensity, exclaims_) SERGIUS.","book":"Down and Out in Paris and London","chapter":37,"embedding":[0.010294049978256226,0.05329083651304245,0.06797648221254349,0.010348605923354626,0.01440268661826849,0.003976505249738693,0.12193985283374786,0.044353969395160675,-0.03965093195438385,-0.10989987850189209,0.05837877467274666,-0.042776189744472504,-0.028352051973342896,-0.05452629551291466,-0.00400197971612215,-0.026892194524407387,0.08117806911468506,0.03280290588736534,0.001205796841531992,0.09051260352134705,0.0950927659869194,-0.021741561591625214,0.0819225013256073,-0.01101069524884224,0.018823107704520226,0.007813180796802044,-0.0017494146013632417,0.019522257149219513,0.050275515764951706,-0.039968859404325485,-0.058816492557525635,-0.0013721220893785357,-0.01356506161391735,0.04378683120012283,-0.005494985729455948,0.06650865823030472,0.03153581917285919,-0.060808390378952026,0.06763968616724014,-0.07382240891456604,-0.056196264922618866,-0.007719037588685751,-0.045808132737874985,0.004935814067721367,-0.060499873012304306,-0.032200369983911514,0.0538112074136734,0.05252871289849281,0.027519918978214264,-0.07388458400964737,-0.1459774225950241,-0.1050347089767456,-0.06521979719400406,-0.05595524609088898,-0.07616650313138962,0.03618622571229935,0.02659447491168976,-0.0783223956823349,-0.0033987173810601234,-0.043566685169935226,-0.06160528212785721,0.018518131226301193,0.10327097773551941,0.09091755002737045,0.033994127064943314,-0.0057078697718679905,0.06121893972158432,-0.03442159295082092,-0.02632228471338749,0.13350103795528412,0.07994221895933151,-0.006274043582379818,-0.03560406714677811,0.002700568176805973,-0.03662143275141716,-0.021707279607653618,0.03920735418796539,-0.05327655002474785,0.07345888018608093,-0.01800486259162426,-0.061640508472919464,-0.028101587668061256,0.00869764480739832,0.017310820519924164,-0.049310702830553055,-0.048352520912885666,0.03147709742188454,-0.025599747896194458,-0.00816858559846878,0.013717635534703732,-0.010964076966047287,-0.08801288902759552,-0.15845710039138794,-0.006520066875964403,-0.021098751574754715,0.04840761423110962,-0.029642047360539436,-0.03344421833753586,-0.040496308356523514,-0.016206011176109314,0.03852185979485512,0.07149562984704971,0.08032785356044769,0.04677803814411163,-0.09901519864797592,-0.022392764687538147,-0.03438747674226761,-0.08748199045658112,-0.03678157180547714,-0.021349575370550156,0.021420735865831375,-0.10854049026966095,-0.08930838108062744,0.032265063375234604,0.016102047637104988,0.07673350721597672,-0.05014157295227051,-0.04161132127046585,-0.03618144989013672,-0.0097828209400177,0.09684790670871735,0.06358639895915985,0.05133852735161781,0.04105914756655693,-0.024570036679506302,0.048472825437784195,-0.0047843665815889835,-2.475320555460056e-33,0.054336726665496826,0.013333908282220364,0.03367425128817558,-0.030096672475337982,-0.062062766402959824,-0.01680155098438263,0.028048653155565262,0.03737116977572441,-0.04613857343792915,0.03975239396095276,-0.10125799477100372,0.01828112080693245,0.08542262762784958,0.025654325261712074,-0.0797615498304367,-0.046213023364543915,0.06396256387233734,-0.01652701199054718,0.03886393830180168,0.10423850268125534,0.03287884220480919,0.04527328908443451,0.015029090456664562,-0.0645357221364975,-0.03394143655896187,-0.10224009305238724,-0.03513268008828163,0.06111970171332359,0.04467322677373886,0.05079146474599838,0.028134530410170555,-0.0025744715239852667,-0.031146330758929253,-0.008712751790881157,0.022684313356876373,0.024219945073127747,-0.02001379057765007,0.030927220359444618,-0.0030214511789381504,0.02042628452181816,-0.053995899856090546,-0.0017969466280192137,-0.013465438038110733,-0.01615223102271557,-0.11069725453853607,-0.0539739727973938,-0.015424131415784359,0.05435391515493393,0.02702414244413376,-0.0029499183874577284,-0.021316401660442352,-0.01510933693498373,0.030412059277296066,0.04304607957601547,0.022161539644002914,0.042849306017160416,-0.028596237301826477,0.035628121346235275,0.03690805286169052,0.0012037931010127068,0.031228233128786087,-0.09461513161659241,0.021119700744748116,-0.07082872837781906,0.00671512633562088,-0.015069299377501011,-0.04182323068380356,-0.009523773565888405,-0.002193903550505638,0.05813419818878174,-0.08471089601516724,0.0023599211126565933,-0.005226573906838894,0.04805423691868782,-0.032281480729579926,-0.005942034535109997,-0.024539638310670853,-0.046062175184488297,0.018061438575387,-0.059592317789793015,-0.002572618192061782,-0.013459192588925362,-0.07811640948057175,0.10828456282615662,-0.00815330445766449,-0.0173871498554945,0.015595805831253529,-0.053882896900177,-0.08396178483963013,0.03224646672606468,-0.007374946493655443,0.0650852620601654,0.070524662733078,-0.02414742484688759,-0.030629346147179604,-2.3125897093070265e-33,0.0815630778670311,0.03807526081800461,-0.07222284376621246,0.037488169968128204,-0.06060761585831642,0.01486426591873169,0.012562471441924572,0.03549913316965103,-0.06269879639148712,-0.07680650800466537,0.010158270597457886,-0.029698723927140236,-0.0027708590496331453,-0.03464260324835777,-0.061683282256126404,0.003566269064322114,0.010227993130683899,-0.008157441392540932,0.06733179837465286,0.010224597528576851,-0.019014641642570496,0.07083557546138763,0.133137047290802,-0.0870286077260971,0.020240968093276024,0.0257527194917202,0.0335228368639946,-0.08481775224208832,-0.07624564319849014,-0.0259969774633646,0.04055819660425186,-0.02283034287393093,-0.007059588562697172,0.0946459248661995,0.04725094884634018,0.05372096970677376,0.02551680989563465,-0.09420043975114822,-0.0023790765553712845,-0.014118547551333904,0.08515330404043198,0.017042208462953568,0.09255664050579071,0.053457848727703094,0.05276399478316307,0.05655662342905998,-0.05272030830383301,0.0785922184586525,0.009373868815600872,-0.0046006254851818085,-0.01274394802749157,0.0039093405939638615,-0.019591789692640305,-0.005855791736394167,-0.016179198399186134,-0.028185537084937096,0.020806919783353806,-0.028765112161636353,-0.03689710795879364,-0.019038740545511246,-0.047531694173812866,-0.03861696273088455,-0.028988884761929512,0.08263477683067322,0.04441250115633011,-0.028292058035731316,-0.026619452983140945,-0.006330099888145924,0.04261059686541557,-0.03489508852362633,0.05756575986742973,0.010468076914548874,-0.08109541237354279,0.035777829587459564,0.017683492973446846,0.027671653777360916,-0.005699923727661371,-0.11617889255285263,0.03017335943877697,-0.1745997667312622,-0.003486975561827421,-0.026241343468427658,-0.0010839806636795402,-0.10783492028713226,-0.018534410744905472,0.0208311565220356,-0.05695332586765289,0.037716884166002274,0.02140997350215912,-0.0417402908205986,0.019490797072649002,-0.013429047539830208,0.09133360534906387,-0.032783038914203644,0.007861746475100517,-2.951361111058759e-8,-0.061444174498319626,-0.02949017472565174,0.034423232078552246,-0.05398520827293396,0.017381124198436737,0.04536998271942139,-0.001229863497428596,-0.008210944943130016,-0.0824679583311081,-0.08633352071046829,0.01630401238799095,0.01744343712925911,0.046808332204818726,-0.03456300497055054,0.05301198363304138,-0.03758396580815315,-0.006521032657474279,0.019454652443528175,-0.03482167422771454,-0.07707974314689636,0.026167163625359535,-0.021196477115154266,-0.00601201131939888,0.03349702060222626,0.030859848484396935,0.05829725041985512,-0.03384483978152275,0.03426477685570717,-0.07627777010202408,-0.02975713089108467,0.06443764269351959,0.031707439571619034,-0.015847371891140938,-0.06709465384483337,-0.0016564071411266923,0.017800817266106606,0.016583258286118507,0.021358540281653404,0.07007858157157898,-0.021641550585627556,-0.007075836416333914,-0.013384964317083359,-0.02192600443959236,-0.020705891773104668,0.09082378447055817,0.017298055812716484,0.14435197412967682,-0.09644876420497894,0.021746249869465828,-0.0021574522834271193,-0.011382457800209522,-0.01305468287318945,-0.020459866151213646,0.03977678343653679,-0.09839711338281631,-0.0053394865244627,-0.005097172688692808,-0.006998374126851559,-0.050265196710824966,-0.005245578940957785,0.09683956950902939,0.053194560110569,-0.050094228237867355,-0.03570789843797684]},{"text":"Forgive me, dear: it was only a jest.","book":"Down and Out in Paris and London","chapter":38,"embedding":[-0.036735650151968,0.1514742225408554,0.07865860313177109,0.030241549015045166,0.06191196292638779,-0.026806723326444626,-0.003704607021063566,0.000021884110537939705,0.10003557056188583,-0.03196802735328674,-0.0706852599978447,0.05166495963931084,-0.006813566666096449,-0.0236781295388937,-0.0342862606048584,-0.06617895513772964,-0.05162127688527107,-0.0021096179261803627,-0.034962963312864304,-0.05767537280917168,-0.009953086264431477,0.04672827571630478,0.06911315768957138,-0.04123217612504959,0.015707412734627724,-0.04480896517634392,0.0024590231478214264,0.02339276298880577,-0.00585473608225584,-0.006168791092932224,0.0023068743757903576,0.037421680986881256,0.010343887843191624,0.011079035699367523,-0.11066270619630814,0.03583790734410286,0.014807726256549358,-0.01222635805606842,0.060482900589704514,-0.0025315708480775356,0.02859196811914444,0.0643911361694336,-0.02295263111591339,0.012193869799375534,0.11018349230289459,0.036493200808763504,0.014369304291903973,-0.03998281806707382,-0.05888350307941437,-0.0441414937376976,-0.09715034812688828,-0.012843573465943336,-0.0015348027227446437,-0.002850604010745883,0.00004568594158627093,0.012725448235869408,-0.02517123892903328,0.01819608360528946,0.08886660635471344,0.02763417549431324,-0.01618514209985733,-0.016472145915031433,0.0689922347664833,0.007926860824227333,0.04031122848391533,-0.08968891203403473,-0.06594761461019516,0.018822431564331055,-0.005642445757985115,0.020153788849711418,-0.017148489132523537,0.03608151525259018,0.06241649389266968,0.06277996301651001,-0.06359654664993286,-0.0782877653837204,0.0021521381568163633,-0.029740454629063606,0.08407805114984512,0.09295997768640518,-0.06610476970672607,-0.09558925032615662,-0.038774508982896805,-0.08040741831064224,-0.032059233635663986,-0.015583151020109653,0.046145860105752945,-0.0642181858420372,0.01536113303154707,0.014018738642334938,-0.05379336699843407,-0.05734098330140114,0.06932500749826431,0.04976630583405495,0.018305782228708267,-0.12412963062524796,-0.09393838793039322,0.05575874447822571,-0.07941240072250366,0.07257457077503204,0.02605593204498291,0.03639338165521622,0.07183806598186493,0.028416195884346962,0.004882517736405134,0.041856423020362854,-0.06041307747364044,0.0537281259894371,-0.0038897863123565912,-0.023196330294013023,-0.027148263528943062,-0.005140087567269802,0.030450185760855675,-0.09675684571266174,-0.010834733955562115,-0.030551515519618988,0.0029539784882217646,-0.015638820827007294,0.06262177228927612,0.05349770188331604,0.05332532897591591,-0.03455685079097748,0.03509203717112541,0.07031019777059555,-0.04452686384320259,-0.0589829720556736,0.05071256309747696,-6.902214831912521e-33,0.03590899705886841,0.05070623755455017,-0.0018369316821917892,0.020157217979431152,-0.010707864537835121,0.035361409187316895,-0.08517906814813614,0.00732156028971076,-0.06165270879864693,-0.057900384068489075,0.04374197870492935,-0.002340837847441435,-0.03585958480834961,0.00981906708329916,-0.09674789011478424,0.07502027601003647,-0.007504600565880537,0.0066879973746836185,0.09929589182138443,0.006366773974150419,-0.034708909690380096,0.030362632125616074,0.020100710913538933,-0.12383199483156204,-0.08568917959928513,0.007935628294944763,0.021957149729132652,0.06130843237042427,0.014547723345458508,-0.026553194969892502,0.03625993803143501,-0.016629381105303764,0.02633339911699295,0.0333557091653347,0.03827938064932823,-0.009770968928933144,0.022254446521401405,-0.024627335369586945,-0.05950014665722847,-0.042894069105386734,0.00265185977332294,0.042231544852256775,0.03534621372818947,0.024771561846137047,-0.022693905979394913,0.005862898658961058,0.009233411401510239,0.06757763028144836,0.15767711400985718,0.021695110946893692,0.01724446378648281,0.05161017179489136,0.10230059176683426,-0.006243651267141104,-0.04368223994970322,0.07399173825979233,0.06733356416225433,0.06676822900772095,-0.0037456294521689415,0.05784717574715614,-0.0390644446015358,0.06782875955104828,0.01661980338394642,-0.023812074214220047,-0.07060261815786362,-0.012490584515035152,-0.05810544267296791,0.03876049816608429,-0.0036708929110318422,0.029165010899305344,-0.008848350495100021,0.0018978473963215947,0.0618135966360569,0.005792002193629742,-0.10756394267082214,0.008737137541174889,-0.001842457102611661,-0.03074459731578827,0.09050624817609787,-0.047962162643671036,0.0403888076543808,-0.06464223563671112,-0.07374261319637299,0.0489666648209095,-0.05746394768357277,-0.06814491003751755,-0.02951209619641304,-0.08588694036006927,0.05776219442486763,0.04812736064195633,-0.07354393601417542,0.024497896432876587,0.01385730504989624,-0.05191747471690178,-0.06125015392899513,3.769454428703968e-33,0.023782342672348022,0.07486632466316223,-0.05508313700556755,0.06419777125120163,0.01826348342001438,-0.01124577410519123,0.05215134099125862,0.035113248974084854,-0.04113370552659035,0.031989507377147675,-0.007728110533207655,-0.07286185771226883,0.12319507449865341,-0.013136802241206169,0.020968930795788765,0.0035853220615535975,0.04085884243249893,-0.030713532119989395,-0.018362682312726974,0.03256199136376381,-0.042524438351392746,0.10085485130548477,0.02500968426465988,0.030540024861693382,-0.02240855060517788,0.06180238723754883,0.0714210569858551,-0.009159460663795471,-0.051188450306653976,-0.09985718876123428,0.04904633387923241,-0.005820664577186108,-0.10247688740491867,-0.0059096841141581535,0.053690556436777115,-0.007825570181012154,0.04597247391939163,-0.04446263611316681,0.013065742328763008,-0.06105389818549156,-0.0363723523914814,-0.02729121595621109,-0.023465702310204506,0.05612429976463318,0.05685998499393463,-0.03733397647738457,0.04390760138630867,0.06201712787151337,0.10216376930475235,0.06587973237037659,-0.0950033888220787,-0.012171002104878426,-0.04507170245051384,-0.09322579950094223,-0.0255991630256176,-0.012088232673704624,-0.0742395892739296,0.04893913492560387,-0.022236866876482964,0.03775225952267647,-0.007038850337266922,-0.12378589063882828,-0.03513381630182266,-0.05973537266254425,0.029899349436163902,0.025433247908949852,-0.060054536908864975,0.016818981617689133,0.074651338160038,0.025105679407715797,0.08376150578260422,0.06159184128046036,-0.011118879541754723,-0.0076534380204975605,0.011214789003133774,-0.010943125002086163,-0.01344908308237791,-0.02133302576839924,0.0015568447997793555,0.03752943128347397,0.015194077976047993,0.02375047840178013,0.01997087150812149,-0.01495246309787035,0.021651508286595345,-0.022805258631706238,-0.037389855831861496,0.012102462351322174,-0.006004480645060539,0.03919569030404091,-0.01707695610821247,-0.059183716773986816,0.0536416694521904,0.02664332650601864,0.03481237590312958,-2.180888003522341e-8,-0.0128127820789814,-0.013887831941246986,-0.053447794169187546,-0.03479521721601486,-0.019900856539607048,-0.07028956711292267,0.027266819030046463,-0.12957490980625153,-0.08440481871366501,0.09053070843219757,-0.061780523508787155,0.11497294902801514,-0.040334559977054596,0.009342177771031857,-0.00453594047576189,-0.006855175830423832,-0.004017676692456007,-0.05117068812251091,-0.04774981737136841,0.0021699313074350357,0.0040429625660181046,0.055508557707071304,-0.10636033117771149,0.024286320433020592,0.002285606227815151,-0.05336328595876694,-0.0450994037091732,0.027561206370592117,0.012446107342839241,-0.062139227986335754,0.03677937015891075,-0.020999174565076828,-0.05419830232858658,-0.009525633417069912,-0.09201742708683014,0.02731001190841198,0.007169719319790602,0.0563998706638813,0.007781011518090963,0.05167635902762413,0.02211187593638897,-0.0770755410194397,0.034546781331300735,0.03935259208083153,-0.06314011663198471,0.02909349463880062,-0.08295509964227676,-0.07669395208358765,-0.015330108813941479,-0.06378308683633804,0.054658107459545135,-0.06325198709964752,-0.08360246568918228,0.08922751992940903,0.07014132291078568,-0.03113066777586937,-0.015041178092360497,0.021204493939876556,0.028615666553378105,-0.0007686298340559006,0.1021069586277008,-0.0560210719704628,0.03365980461239815,0.004829022567719221]},{"text":"He is in the library.","book":"Down and Out in Paris and London","chapter":38,"embedding":[0.013849224895238876,0.006703504826873541,-0.05740348622202873,-0.029633134603500366,0.012574011459946632,0.06018352508544922,0.0544729121029377,0.04425777494907379,0.004781572613865137,-0.023131558671593666,-0.011306953616440296,0.05779578909277916,-0.04076875001192093,-0.02348371036350727,0.04523533582687378,-0.035210467875003815,-0.008595465682446957,0.05420549958944321,-0.03797144815325737,-0.05880354717373848,0.04143591225147247,0.08153314143419266,0.04503192752599716,-0.025109944865107536,0.016060905531048775,-0.05381820350885391,-0.034302689135074615,-0.10342313349246979,0.00970244500786066,0.012037532404065132,0.034846335649490356,-0.028544912114739418,-0.023935923352837563,-0.03952596336603165,-0.002244196832180023,0.040368471294641495,0.0457708016037941,-0.019913259893655777,0.03895731642842293,0.004737040493637323,-0.06834518164396286,-0.005317275878041983,-0.049423571676015854,0.13538020849227905,-0.09397392719984055,-0.01635831408202648,0.02401234768331051,-0.0613759309053421,0.04426402226090431,0.03967317193746567,-0.08780402690172195,-0.015992699190974236,0.008417901583015919,-0.022096894681453705,0.012647132389247417,0.0791286900639534,0.04284510761499405,0.02835570089519024,0.033678267151117325,0.007633092347532511,0.009724550880491734,-0.015320686623454094,-0.03490430861711502,0.09312019497156143,0.03752369433641434,0.06666571646928787,0.03976454958319664,-0.0322093702852726,0.06875353306531906,-0.07679414749145508,0.019660713151097298,0.023122714832425117,0.05545071139931679,-0.024606389924883842,0.05081965774297714,-0.10883825272321701,-0.051938582211732864,0.011141384020447731,0.12408030033111572,-0.01696666330099106,-0.0005356359179131687,-0.0522567480802536,0.021543636918067932,-0.036323316395282745,0.007980931550264359,0.044269245117902756,0.03148958086967468,-0.0053823706693947315,-0.025374973192811012,0.06984817981719971,0.045489780604839325,-0.031692665070295334,-0.04467858001589775,0.01597505249083042,-0.11232347041368484,0.03620732203125954,0.02091599814593792,0.03732680901885033,-0.03630535304546356,0.10731329768896103,0.01925581507384777,0.05139135196805,0.1045059934258461,0.011372100561857224,-0.06270185858011246,-0.08290132135152817,-0.06969248503446579,-0.002155313268303871,-0.05992615967988968,-0.022247247397899628,0.046600498259067535,-0.0699811652302742,0.010078432969748974,0.0026823559310287237,0.05870553106069565,0.025383953005075455,0.08336799591779709,0.025863949209451675,-0.0049761394038796425,0.0072680991142988205,0.021984679624438286,0.07636447250843048,0.01270213257521391,0.056030649691820145,-0.09449241310358047,-0.036900680512189865,0.029238922521471977,-8.585327316354212e-33,0.09495244175195694,-0.01716572418808937,0.037092287093400955,0.020626569166779518,0.003095699707046151,-0.02416238747537136,0.03365422412753105,0.032686103135347366,-0.03893238306045532,-0.054892539978027344,0.03378208354115486,-0.01574597880244255,-0.000968677515629679,0.06765400618314743,-0.1126745343208313,0.05516139417886734,-0.004066891502588987,0.0005071745836175978,-0.05039612948894501,-0.014109843410551548,-0.007383913267403841,-0.037752602249383926,0.042167529463768005,0.0439542680978775,0.004310626070946455,0.0149757731705904,-0.0010039262706413865,-0.07653877139091492,0.0712617039680481,0.04159248620271683,-0.14197231829166412,-0.004026787355542183,-0.04858541488647461,-0.05705128237605095,0.06256283074617386,-0.05404340848326683,-0.06816717982292175,0.003544040722772479,-0.009635760448873043,0.01510586403310299,0.05144753307104111,0.03990636393427849,-0.06719920784235,0.02245919220149517,-0.06498519331216812,0.05102096498012543,0.09637955576181412,0.07614220678806305,0.097123883664608,-0.04390363767743111,-0.021304693073034286,0.003310306929051876,-0.11637228727340698,-0.10268568247556686,0.04075752943754196,-0.0463353656232357,0.027315931394696236,0.07502041757106781,0.10707518458366394,-0.057356640696525574,0.1310531049966812,0.06875891983509064,0.030484110116958618,0.053647443652153015,0.04587860032916069,-0.07154816389083862,-0.14309373497962952,-0.0680025964975357,0.08139237016439438,-0.03857521340250969,-0.05312831699848175,0.019977526739239693,0.010854552499949932,-0.025647617876529694,-0.006283976603299379,0.026277631521224976,-0.10591764003038406,-0.015674244612455368,-0.09838014096021652,-0.020230697467923164,-0.06710802018642426,-0.056329790502786636,0.03335251286625862,0.040350835770368576,-0.08475305885076523,-0.017439747229218483,0.0010989427100867033,-0.04994099959731102,-0.011157719418406487,0.05352509021759033,0.007973898202180862,-0.025270991027355194,-0.04524477198719978,-0.005132488906383514,-0.02255776710808277,3.7762767040425525e-33,0.056806810200214386,-0.07038368284702301,0.010004197247326374,-0.03295459225773811,-0.006612909957766533,0.01585068367421627,-0.04701775684952736,0.06063045561313629,0.05452951416373253,0.002338181948289275,-0.0345948226749897,0.05996785685420036,0.0745544508099556,0.0026775584556162357,0.07248225063085556,0.03323802351951599,0.0013932164292782545,-0.0012839343398809433,-0.02899600751698017,0.07232871651649475,0.0053335437551140785,0.011041657067835331,0.09393341839313507,0.004713748581707478,-0.053706083446741104,-0.01829531602561474,0.05599871650338173,-0.0567069873213768,-0.06113690137863159,-0.02265062928199768,-0.07956217974424362,-0.019907359033823013,-0.049926456063985825,-0.04598795250058174,-0.09614589810371399,-0.02809958904981613,0.020483026280999184,-0.057562097907066345,-0.014807547442615032,0.00675274757668376,0.11146090924739838,0.03529367595911026,0.03106144443154335,-0.04009026661515236,0.02746265009045601,-0.04764001443982124,-0.09023137390613556,0.05075475201010704,0.009066741913557053,-0.02524072863161564,0.016558552160859108,0.003662962932139635,0.0020148814655840397,-0.07372376322746277,0.029865561053156853,0.1214742586016655,-0.0784701406955719,0.009314147755503654,0.048971086740493774,0.04282478243112564,-0.0901477262377739,-0.011091279797255993,-0.003631395986303687,0.0325147844851017,-0.04951757937669754,0.018187178298830986,-0.08526357263326645,0.03569900244474411,0.018752967938780785,-0.014525885693728924,0.024876542389392853,-0.029990574344992638,0.043526340276002884,-0.06655863672494888,-0.011022467166185379,0.07873939722776413,0.05910814180970192,-0.011353015899658203,0.008922851644456387,-0.06837181001901627,-0.033976905047893524,0.015591607429087162,-0.05098908394575119,-0.009764852933585644,0.0021757069043815136,-0.068029023706913,0.07938966900110245,-0.05995287373661995,0.005984761752188206,-0.0508372038602829,0.019517891108989716,0.014643394388258457,-0.03792273998260498,0.017140572890639305,0.08182087540626526,-1.6705770988778568e-8,-0.05141335725784302,0.011929879896342754,-0.04719778150320053,-0.07671020925045013,0.03133673965930939,0.09695836901664734,0.032785817980766296,-0.01610581949353218,-0.06356393545866013,0.052657388150691986,0.010985743254423141,-0.03642488270998001,0.01774125173687935,-0.018146125599741936,0.031719107180833817,-0.015791116282343864,0.04794927313923836,-0.06410902738571167,-0.06577537208795547,0.03121224418282509,0.02908899448812008,-0.026782840490341187,0.10518880188465118,0.04546387866139412,-0.04162868112325668,0.022869743406772614,0.06294851005077362,0.0017570684431120753,0.009261495433747768,0.016794651746749878,-0.030614176765084267,0.11488180607557297,-0.024791745468974113,-0.06965439766645432,0.05721097066998482,0.018340375274419785,0.020532973110675812,-0.0071999854408204556,0.015581340529024601,0.049689069390296936,-0.0524422824382782,-0.13903072476387024,-0.020478982478380203,0.010220560245215893,0.01655602641403675,0.016040347516536713,0.05324144288897514,0.03291243314743042,-0.006730230525135994,0.06645578145980835,-0.0329752042889595,-0.041985251009464264,0.05960899963974953,-0.024399777874350548,0.019931945949792862,-0.04164138436317444,0.0011840278748422861,-0.0558963268995285,-0.10045517235994339,-0.04697113484144211,0.0111472113057971,0.018882686272263527,0.005615466274321079,-0.01321254950016737]},{"text":"If you are a moment longer than five minutes, I shall go in and fetch you, regiments or no regiments.","book":"Down and Out in Paris and London","chapter":38,"embedding":[-0.02296299673616886,-0.0009735195199027658,0.033801935613155365,-0.04323366656899452,0.038307785987854004,0.049259331077337265,-0.05296047404408455,-0.045183487236499786,-0.03588509559631348,-0.03679006174206734,0.02189543843269348,-0.012581883929669857,0.004375941585749388,-0.011440612375736237,0.005141508765518665,-0.0024641884956508875,0.02894790843129158,-0.03500595688819885,-0.056085873395204544,0.012727354653179646,0.013632948510348797,0.0067193289287388325,0.009572726674377918,0.06481672078371048,-0.060301054269075394,-0.016407234594225883,-0.04018020257353783,0.0017694106791168451,-0.07016359269618988,-0.018739696592092514,-0.052765846252441406,0.009678835980594158,-0.013573206029832363,0.040491487830877304,-0.03265446797013283,0.1181456446647644,0.0680028647184372,-0.02989533543586731,0.07271450757980347,0.048688504844903946,0.0008985822787508368,-0.07010211795568466,0.01281602680683136,0.07809961587190628,0.07227926701307297,0.10321440547704697,-0.06967834383249283,-0.02916668727993965,0.04840093478560448,-0.03878985345363617,-0.027686072513461113,0.005094924475997686,-0.017611777409911156,0.04415769875049591,-0.019777812063694,-0.02241581119596958,0.033219873905181885,-0.021250464022159576,0.023342732340097427,0.013936689123511314,-0.0853516012430191,0.03633291646838188,-0.005824447609484196,-0.014208696782588959,-0.08827938139438629,-0.057951416820287704,0.005041891243308783,0.0731000304222107,0.044179484248161316,0.020479733124375343,-0.027958638966083527,0.025669971480965614,-0.035112056881189346,0.027877308428287506,-0.1062452495098114,0.047997672110795975,0.04719711095094681,0.004222906660288572,0.09618586301803589,-0.08084360510110855,-0.048901915550231934,0.014750640839338303,0.034586839377880096,0.012160076759755611,0.00647212378680706,-0.04485063627362251,0.046932708472013474,0.06192192807793617,0.005126656498759985,0.010950491763651371,0.007172591984272003,0.027760876342654228,-0.04885019734501839,0.05200821906328201,0.05496400594711304,0.046348657459020615,-0.019789710640907288,0.06913962960243225,-0.1438017636537552,0.02753441408276558,0.09298301488161087,-0.04790622368454933,-0.08136647939682007,0.04535447433590889,-0.03553047776222229,-0.018681887537240982,-0.02058894746005535,0.081387959420681,-0.030924765393137932,-0.08796323090791702,0.07828885316848755,0.015445619821548462,-0.022020837292075157,-0.046690117567777634,-0.033893510699272156,0.0452936515212059,-0.09183139353990555,-0.03470476716756821,0.013239119201898575,0.06291395425796509,-0.0034120783675462008,-0.010450348258018494,-0.0456140972673893,0.01845044083893299,-0.011244984343647957,-0.008430669084191322,0.06713970750570297,-3.601377103635612e-33,-0.09208173304796219,-0.026495300233364105,-0.047129739075899124,0.05160073935985565,-0.0176397692412138,-0.039447180926799774,-0.013366361148655415,-0.007474757265299559,-0.027241045609116554,-0.01572558842599392,-0.07123200595378876,0.008413505740463734,0.009943321347236633,-0.04552201181650162,-0.04608535021543503,-0.020396137610077858,0.05607803165912628,0.0070525058545172215,0.02320937067270279,-0.011336659081280231,0.021842055022716522,-0.042960479855537415,-0.07743183523416519,-0.010820029303431511,0.08364406228065491,-0.05495228245854378,-0.064137764275074,0.019523750990629196,0.050855547189712524,0.046714406460523605,0.01764514669775963,0.005323728080838919,-0.02963404729962349,-0.04321577399969101,-0.0014429260045289993,-0.06476806104183197,0.016025904566049576,-0.010130233131349087,-0.0906524658203125,-0.03551775962114334,-0.035605333745479584,-0.002107067499309778,-0.02828126586973667,0.0929732695221901,-0.009680645540356636,0.021350843831896782,0.07013770937919617,-0.011715381406247616,-0.052034784108400345,-0.033154282718896866,-0.06421011686325073,0.03168870508670807,-0.009842216037213802,-0.04588198661804199,-0.0033182792831212282,0.0761185735464096,-0.005305794067680836,0.1283484846353531,-0.0692664384841919,-0.022896358743309975,-0.00597683060914278,0.021735256537795067,0.06486815959215164,-0.008482840843498707,0.03526242822408676,-0.08751291781663895,-0.06713131815195084,-0.011082508601248264,0.09382998198270798,-0.022176694124937057,0.016711464151740074,0.01956561952829361,0.03996793180704117,0.010538825765252113,0.0015230851713567972,-0.009064256213605404,0.050997406244277954,0.008254176937043667,-0.015626542270183563,-0.05678912252187729,0.020237702876329422,-0.06533560156822205,-0.12461089342832565,0.0873030349612236,0.14635494351387024,0.03683996573090553,0.1095607802271843,-0.10567017644643784,-0.0105361333116889,-0.010514291934669018,-0.08367906510829926,0.020944707095623016,0.05059405043721199,-0.02766929380595684,-0.04809733107686043,2.36258917784826e-33,0.15539762377738953,0.0066219293512403965,0.022373557090759277,0.0547943077981472,0.06727032363414764,0.07264304161071777,0.0727182924747467,0.08094773441553116,-0.043366387486457825,0.10571400076150894,-0.04947030544281006,0.01980205625295639,-0.039426565170288086,-0.022518428042531013,-0.01583624817430973,-0.015197900123894215,0.05479433387517929,-0.023983506485819817,0.019857974722981453,0.059116676449775696,0.05641840025782585,-0.03059518150985241,0.030815618112683296,-0.006407211534678936,0.015550953336060047,0.09095756709575653,0.00035792923881672323,0.008169879205524921,-0.10607064515352249,-0.05646171793341637,0.041610777378082275,-0.13038788735866547,-0.07189318537712097,-0.011796213686466217,-0.008028647862374783,-0.005031495820730925,0.08173542469739914,0.019535424187779427,-0.013662685640156269,0.09602478891611099,-0.014365294016897678,0.021995114162564278,-0.01951104961335659,0.03619370236992836,-0.05771515890955925,-0.06729556620121002,0.06748073548078537,0.03931064531207085,-0.019224954769015312,0.06908198446035385,-0.014758020639419556,-0.03925662487745285,-0.019256960600614548,-0.005872568115592003,0.034004587680101395,-0.09614162147045135,0.00242607481777668,-0.052896589040756226,0.01957210898399353,0.05163950473070145,0.031144628301262856,-0.024509843438863754,-0.06430061161518097,0.03737751021981239,0.058257292956113815,-0.029174694791436195,-0.03634518012404442,0.121660016477108,-0.01752430945634842,0.049870312213897705,0.011074359528720379,-0.035500358790159225,-0.007228846661746502,-0.012313981540501118,-0.012973410077393055,-0.028564944863319397,0.04363719001412392,-0.03998611494898796,-0.008254234679043293,-0.05254504084587097,0.03484421223402023,-0.05275975167751312,-0.036817628890275955,-0.03532177209854126,-0.033084969967603683,0.005418109241873026,0.10516122728586197,0.11424723267555237,0.07981161028146744,-0.044909875839948654,0.03287520632147789,-0.01093992218375206,0.09568672627210617,-0.029504956677556038,0.014322396367788315,-2.486490124908869e-8,0.06972189247608185,0.05258888751268387,0.04924243316054344,0.03730752319097519,0.030033625662326813,-0.0421462282538414,-0.09637483954429626,-0.03812088817358017,0.011493658646941185,0.02926674298942089,0.05859217792749405,-0.01729089953005314,0.011045161634683609,-0.02729622647166252,0.001546518295072019,0.028042655438184738,-0.1119987815618515,-0.1488223671913147,-0.022659216076135635,-0.06471081078052521,-0.059994086623191833,0.027212724089622498,-0.04049638658761978,-0.0065060569904744625,0.024593016132712364,0.08003021776676178,0.00892225094139576,0.010150128044188023,0.011980134062469006,0.01315910741686821,-0.04098593443632126,0.06151122972369194,-0.08357524126768112,0.0025674805510789156,0.02734125778079033,0.028473805636167526,-0.00064398831455037,-0.004685618914663792,-0.03019547089934349,-0.011074816808104515,-0.08108485490083694,-0.042690593749284744,0.06954479962587357,0.049741774797439575,-0.008475321345031261,0.04008631408214569,0.08541841059923172,-0.03119213506579399,-0.005805450025945902,-0.03390149027109146,0.025704681873321533,-0.04411490634083748,0.04222822189331055,0.11749859899282455,-0.020367011427879333,0.049875348806381226,0.00019903579959645867,-0.07102126628160477,0.020019959658384323,0.05943186208605766,-0.03194345161318779,-0.03666868060827255,-0.07830534875392914,-0.1071554571390152]},{"text":"A nice mess you have got us into!","book":"Down and Out in Paris and London","chapter":39,"embedding":[-0.056021057069301605,0.057729631662368774,0.023183921352028847,-0.045679301023483276,-0.023298798128962517,-0.011301222257316113,0.02340877614915371,-0.09069063514471054,-0.012563087977468967,0.020528022199869156,-0.010495082475244999,-0.01673239655792713,0.0023576035164296627,-0.005227663554251194,0.01112306397408247,-0.02208814024925232,-0.03881978243589401,-0.07219221442937851,0.016466135159134865,0.07106781005859375,-0.11413948982954025,0.05795501172542572,0.016368895769119263,0.0027910242788493633,-0.07247021049261093,0.09511169046163559,0.020656822249293327,0.02500787563621998,-0.021376583725214005,-0.04533042758703232,-0.025679444894194603,0.01397224422544241,0.0429164357483387,0.00008843967225402594,0.03074890561401844,0.056862398982048035,0.04753028601408005,-0.03852410241961479,0.06881876289844513,-0.06586948782205582,0.01677301712334156,-0.061746902763843536,0.037154268473386765,0.03507336229085922,-0.038523655384778976,0.03627048060297966,-0.023468175902962685,0.0014918157830834389,0.023499108850955963,0.004604493733495474,-0.03266196697950363,-0.025434648618102074,-0.005441396497189999,0.0040160841308534145,0.027531586587429047,0.018801391124725342,-0.004092653747648001,-0.006128255277872086,-0.01965928077697754,-0.03616761043667793,-0.06436766684055328,0.022330403327941895,0.041126709431409836,0.016749262809753418,0.03695790842175484,-0.0699898824095726,-0.009199898689985275,0.07173661142587662,0.01931704394519329,0.026052366942167282,-0.06380022317171097,0.08143213391304016,0.03602178394794464,-0.018868334591388702,-0.029488783329725266,-0.05257854983210564,0.03840439394116402,-0.01732216216623783,0.029628794640302658,0.03161993250250816,0.04728012904524803,-0.04148601368069649,-0.014657574705779552,0.061369311064481735,-0.056248050183057785,-0.07681168615818024,-0.004665027838200331,-0.056366223841905594,0.04871048405766487,-0.007841947488486767,-0.028434451669454575,-0.009357883594930172,0.10442236810922623,0.002844955073669553,-0.014595509506762028,-0.019128095358610153,-0.007434340193867683,0.09830260276794434,-0.03222388029098511,0.09237849712371826,-0.01711115427315235,0.052379678934812546,-0.02576361782848835,-0.09537137299776077,0.04761774465441704,0.02828185260295868,0.007941188290715218,-0.010801023803651333,-0.01265683677047491,-0.016077646985650063,0.037668101489543915,0.018419815227389336,0.053238771855831146,0.008493740111589432,0.04206879436969757,-0.09151609987020493,0.09680623561143875,0.0002727001265157014,0.03576900437474251,-0.01912035420536995,0.014976191334426403,-0.011275902390480042,-0.14268147945404053,0.0551893524825573,0.0013614165363833308,-0.07059142738580704,0.09938228875398636,-6.815979831652229e-33,0.03809670731425285,0.06315957754850388,-0.0022256725933402777,0.1410197913646698,0.07415284961462021,0.09109119325876236,-0.09499773383140564,-0.02047821693122387,-0.05659130588173866,0.05570397153496742,0.03528323769569397,0.03764255344867706,-0.0570610947906971,0.12534290552139282,0.06467261165380478,0.01018250361084938,-0.0875956267118454,-0.06448151171207428,-0.03833778575062752,-0.020389631390571594,-0.03258255869150162,-0.014119550585746765,0.007416480220854282,0.03196202218532562,0.04767840355634689,-0.0014333735452964902,-0.04082409292459488,0.0029137381352484226,0.05628688260912895,-0.008627350442111492,-0.03256397694349289,0.013389325700700283,0.036780063062906265,0.03361397981643677,-0.07445377111434937,0.017774755135178566,-0.0536162294447422,-0.11064724624156952,0.01550645474344492,0.05970187857747078,0.018808217719197273,-0.003844731952995062,-0.05348985642194748,0.018168166279792786,-0.020696189254522324,0.019521482288837433,0.03230176120996475,0.06400957703590393,-0.005871989764273167,-0.0361204594373703,-0.03759245574474335,-0.003330514533445239,0.08903323113918304,-0.02297012135386467,-0.11760417371988297,-0.005086845718324184,0.030365662649273872,-0.044118862599134445,0.015128729864954948,-0.020714882761240005,0.05757802352309227,0.022090895101428032,-0.007579937111586332,-0.06608889251947403,0.0023990783374756575,-0.06220525503158569,0.0017379762139171362,0.03944820910692215,0.041231464594602585,-0.03076598234474659,-0.1354125589132309,0.021392319351434708,-0.007206066511571407,-0.024166259914636612,0.003074346110224724,0.0238607507199049,-0.0009337461669929326,-0.04497349262237549,0.033365700393915176,-0.02815322019159794,-0.0578998327255249,-0.07072312384843826,-0.04517820477485657,-0.06353364884853363,-0.04866000637412071,0.03256020322442055,0.04741749167442322,-0.007603885605931282,-0.029802264645695686,-0.019819168373942375,-0.0811949148774147,-0.05032425746321678,0.10780227929353714,0.0022782941814512014,0.033283453434705734,3.07225770897173e-33,-0.03299771621823311,0.02282504364848137,0.041360314935445786,-0.008651547133922577,0.0397220253944397,-0.0173268374055624,0.04479711875319481,0.08569283783435822,-0.03296695277094841,-0.007949769496917725,-0.0029404715169221163,0.03602118417620659,0.01521410420536995,-0.04994181543588638,-0.02971005067229271,0.005516190081834793,0.09356536716222763,-0.009242243133485317,-0.025579065084457397,-0.1032857820391655,-0.02598874643445015,0.006117148790508509,0.04151638224720955,0.0009691666928119957,-0.012801495380699635,0.08186965435743332,0.00570116750895977,-0.01633731834590435,-0.049166321754455566,-0.032642584294080734,-0.024804770946502686,0.01297476701438427,-0.10226447880268097,-0.0305186714977026,0.017225690186023712,-0.06392773240804672,0.06286433339118958,-0.030135029926896095,-0.017229486256837845,-0.06007923558354378,-0.023238975554704666,-0.0018552595283836126,-0.03988698869943619,0.14626991748809814,-0.01941012591123581,0.02567783184349537,0.01758945733308792,0.03786410018801689,-0.08004769682884216,-0.0018099445151165128,0.03201470896601677,-0.03324738144874573,-0.0833824947476387,-0.09972546994686127,-0.04343356192111969,-0.006459454540163279,-0.026575366035103798,-0.031714942306280136,0.08199211955070496,0.014533190988004208,-0.12533637881278992,0.058417245745658875,-0.044275593012571335,-0.011346641927957535,0.05079822242259979,-0.04891454055905342,0.050346389412879944,0.008442288264632225,-0.07541339099407196,0.09210484474897385,-0.01114240474998951,0.027196720242500305,-0.06900173425674438,0.07124233990907669,0.0685340091586113,-0.036635980010032654,0.0556013323366642,-0.10086121410131454,-0.029170949012041092,0.09921707212924957,-0.018856123089790344,-0.010372512973845005,0.02093895897269249,-0.031279511749744415,0.10355892777442932,-0.042631663382053375,0.036194153130054474,-0.04261185973882675,0.00966346263885498,0.02846573479473591,-0.01938224583864212,0.029550597071647644,-0.05089336633682251,-0.005269642919301987,0.036212533712387085,-2.4258469011328998e-8,0.09474782645702362,0.001238532247953117,-0.01585172675549984,0.09278170019388199,0.062486644834280014,-0.06711264699697495,-0.12357671558856964,0.02790599688887596,-0.01489624660462141,0.0005135655519552529,0.043795395642519,0.12857931852340698,-0.11289069056510925,0.0329260490834713,0.00022849971719551831,0.08252768218517303,-0.05109379440546036,0.11608335375785828,-0.04033096134662628,0.005325214006006718,-0.042066168040037155,0.07551316916942596,-0.05930575355887413,0.08852580189704895,0.025525640696287155,-0.027993258088827133,0.001956951105967164,0.008496411144733429,0.015406559221446514,-0.0024148516822606325,0.0075078378431499004,0.07653214782476425,-0.04236745461821556,0.02027336321771145,-0.13752171397209167,-0.01852797530591488,-0.06625760346651077,0.007745071314275265,0.027561800554394722,-0.04570844769477844,-0.016583947464823723,-0.08113005757331848,0.00574174290522933,0.021844996139407158,-0.1472827047109604,-0.04162868857383728,-0.030086806043982506,0.09265821427106857,0.015451328828930855,-0.013043851591646671,0.026993609964847565,0.03643597289919853,0.034087393432855606,0.04393799230456352,0.06574331223964691,-0.09395218640565872,0.016239652410149574,0.021447593346238136,0.027121497318148613,0.033012863248586655,0.010873883962631226,0.05548304691910744,-0.0432145819067955,-0.0014289469690993428]},{"text":"Did he really climb up after the soldiers were gone, or was he there when that officer searched the room?","book":"Down and Out in Paris and London","chapter":39,"embedding":[-0.029986640438437462,0.07190031558275223,-0.05966605618596077,0.033962249755859375,0.01935390941798687,0.038261085748672485,-0.0222067441791296,0.03655442222952843,-0.047967392951250076,-0.0014759463956579566,0.10740925371646881,0.0445973165333271,0.055738575756549835,0.016190126538276672,0.03993050754070282,-0.010909422300755978,-0.02502669021487236,0.056409094482660294,0.0052336049266159534,-0.05381372198462486,0.023326052352786064,-0.010525697842240334,0.09943592548370361,0.012313066981732845,0.03705921396613121,-0.00860337819904089,-0.0392499677836895,0.02425289899110794,0.03203586861491203,0.017843393608927727,0.03752470389008522,-0.057650379836559296,0.02130664326250553,-0.03018825128674507,0.05318676307797432,0.04513448849320412,0.10863929241895676,0.005246820859611034,0.02180841565132141,-0.004902353510260582,-0.015718329697847366,-0.011281992308795452,0.006042381748557091,0.027584455907344818,0.031530942767858505,0.053900379687547684,0.017026228830218315,-0.03988732025027275,0.0456070676445961,0.03917369619011879,0.02248106710612774,0.04789360240101814,-0.003435480874031782,-0.024852929636836052,-0.03535131365060806,0.04709850251674652,0.04695277288556099,-0.0823567733168602,0.0892067551612854,-0.0023280493915081024,-0.015190589241683483,0.010225379839539528,0.03237420693039894,0.011794477701187134,-0.007547734305262566,-0.03310590609908104,-0.059758301824331284,-0.1353256106376648,0.1429370790719986,0.04100863263010979,0.08001609146595001,0.03822240233421326,0.05206243321299553,-0.03249126300215721,-0.04104508459568024,-0.06491029262542725,0.014546839520335197,0.06534714996814728,0.006972643546760082,-0.09660536795854568,-0.017274904996156693,-0.001543012447655201,0.00013634024071507156,0.07604722678661346,-0.059967003762722015,-0.033342741429805756,0.009261254221200943,-0.02824699692428112,-0.03283116966485977,0.05918359011411667,0.04785286635160446,-0.020558303222060204,-0.1572108417749405,0.030422357842326164,0.04796331748366356,-0.03523387014865875,-0.034967683255672455,0.04657410457730293,-0.07478339970111847,-0.03722555190324783,0.039427198469638824,0.011750571429729462,-0.013570879586040974,-0.006493508815765381,-0.037689387798309326,0.000614294724073261,0.0507187694311142,0.0071274335496127605,-0.03686266392469406,-0.0006993814604356885,-0.015297045931220055,-0.06522546708583832,0.03012107126414776,0.005982140079140663,0.017273036763072014,0.05825824290513992,-0.0354437492787838,-0.029183868318796158,-0.09285857528448105,0.04597894102334976,0.05228869244456291,-0.002681539161130786,0.0339830256998539,0.01029694452881813,-0.029652537778019905,0.013852010481059551,0.0692371055483818,-4.297932076920698e-33,0.07566487789154053,-0.042200230062007904,-0.0666736513376236,-0.028770064935088158,0.09081914275884628,0.005510764196515083,-0.03193562477827072,-0.01648334413766861,0.04889979958534241,0.09434499591588974,-0.11394962668418884,-0.018041545525193214,-0.034489478915929794,-0.03392455726861954,-0.04168225824832916,0.017860833555459976,0.03276734799146652,-0.02701256051659584,-0.07004612684249878,-0.03033721074461937,0.070650614798069,0.018973739817738533,-0.03354911133646965,0.10283111035823822,0.044950880110263824,0.030941741541028023,-0.019973739981651306,0.05453544110059738,-0.020364509895443916,0.006589767523109913,-0.13852815330028534,-0.0010161136742681265,0.018732817843556404,-0.005056648049503565,0.016972364857792854,0.01790446788072586,0.05580213665962219,-0.030722137540578842,-0.11471009254455566,-0.016229983419179916,0.03818617761135101,0.015865543857216835,0.01143528800457716,0.04034117981791496,-0.11730622500181198,-0.05732002109289169,-0.08785031735897064,-0.03136838600039482,0.007814378477633,-0.007757991086691618,0.017638307064771652,0.04390927404165268,-0.021215472370386124,-0.06724555045366287,0.0002815272891893983,0.11007305979728699,0.006470846943557262,0.07237166911363602,0.05676829069852829,0.039703723043203354,0.016647735610604286,0.08030800521373749,0.02780105173587799,0.05081299692392349,-0.059676021337509155,-0.11947842687368393,-0.05535028874874115,-0.011596696451306343,-0.04311554506421089,-0.03858887776732445,-0.04523006081581116,0.010417203418910503,0.023543663322925568,-0.06592252105474472,-0.06531810760498047,-0.014988982118666172,-0.10029169172048569,0.03554745763540268,-0.005548997316509485,-0.11176833510398865,-0.0022256651427596807,-0.033359888941049576,0.030270198360085487,0.07304695248603821,0.04028039425611496,-0.014457936398684978,-0.02138632722198963,-0.10491997003555298,-0.051820121705532074,0.022269723936915398,-0.056790146976709366,0.004948344547301531,0.03934211656451225,-0.050107017159461975,-0.08318313956260681,6.168100334560267e-34,0.018844934180378914,0.0031176218762993813,0.04695354774594307,-0.04263557866215706,-0.009833612479269505,-0.01210275012999773,-0.032778214663267136,0.006885823793709278,-0.03325732424855232,-0.012677711434662342,-0.04642551392316818,0.05732634291052818,0.006695464253425598,0.05017441511154175,0.029345057904720306,0.08220677822828293,0.05675627291202545,0.007513151504099369,-0.04440607875585556,0.0890653133392334,0.01383904553949833,-0.07881633937358856,-0.004673211835324764,-0.04722100496292114,-0.00916055403649807,0.06529202312231064,0.11676538735628128,0.044131938368082047,-0.02996012754738331,-0.05437825992703438,0.01353816594928503,-0.05219438299536705,-0.06031059846282005,0.024004478007555008,0.03722809627652168,0.08167849481105804,0.03593025729060173,0.04657240957021713,-0.06613161414861679,0.034107428044080734,0.051299020648002625,0.048622533679008484,-0.0060683791525661945,-0.01066411379724741,0.01033762190490961,-0.02658294141292572,-0.06129901111125946,0.04039393737912178,-0.10456166416406631,-0.05632700398564339,-0.08828440308570862,-0.004971731454133987,0.018025364726781845,0.023779291659593582,-0.04300820454955101,0.0822259932756424,-0.09368572384119034,-0.004326918162405491,0.027955982834100723,-0.013481034897267818,0.009908265434205532,-0.03099186159670353,-0.024500133469700813,0.03557593375444412,-0.023717377334833145,0.0363190583884716,0.0026176057290285826,0.06144434213638306,-0.09973669797182083,0.002365514636039734,0.033251408487558365,-0.04360099881887436,0.07979418337345123,0.02492176927626133,0.05209624022245407,0.012591365724802017,-0.04449452459812164,-0.0006492885877378285,0.011649408377707005,-0.10057886689901352,-0.007067914120852947,-0.11029274761676788,-0.08648430556058884,-0.004069595132023096,-0.044763416051864624,-0.019825220108032227,0.03193920478224754,0.05363229289650917,0.025591054931282997,-0.12176378071308136,0.052959293127059937,-0.09852761775255203,0.020779158920049667,-0.03724517300724983,0.029948949813842773,-2.216190608805846e-8,-0.10284320265054703,0.10118577629327774,0.0069373841397464275,0.003730479395017028,0.01190925668925047,-0.015105176717042923,0.023317569866776466,0.03510948270559311,0.004331544041633606,-0.048151466995477676,-0.03912881389260292,0.019782187417149544,-0.0034909499809145927,-0.029207024723291397,-0.03586829826235771,0.021942822262644768,-0.08623272180557251,-0.08945942670106888,-0.003871695604175329,-0.0027189317625015974,-0.013561750762164593,-0.019624346867203712,-0.030955974012613297,0.06612890213727951,0.02632278949022293,0.08428522199392319,-0.09056840091943741,-0.004429308231920004,0.025656230747699738,0.10380418598651886,0.038332268595695496,0.021448127925395966,-0.06169173866510391,0.0032955447677522898,0.07712702453136444,0.0869370773434639,0.09837063401937485,-0.024282552301883698,-0.026050401851534843,-0.07379116863012314,-0.01800267957150936,-0.08123290538787842,0.028831064701080322,-0.00210330612026155,0.043909747153520584,0.03774616867303848,0.0355442650616169,0.03182678669691086,-0.021268228068947792,-0.08296070247888565,-0.01365224551409483,0.036883123219013214,-0.0324840322136879,0.12290045619010925,0.01988171972334385,-0.05162285268306732,0.03684432804584503,-0.08434401452541351,-0.05534619837999344,0.042853567749261856,-0.06424526870250702,-0.00732969818636775,-0.048056621104478836,0.024972377344965935]},{"text":"You would just suit him.","book":"Down and Out in Paris and London","chapter":39,"embedding":[0.031636133790016174,0.1348341852426529,0.0024308408610522747,-0.04560434818267822,0.008253936655819416,-0.06503517180681229,0.01943214051425457,-0.058052465319633484,-0.11100094020366669,-0.04358014091849327,-0.02257167175412178,-0.05940847098827362,-0.029601892456412315,0.096328504383564,0.11832275986671448,0.0014576661633327603,0.12761694192886353,0.09863626956939697,-0.04552313685417175,0.03587872534990311,0.0002803028910420835,0.05106277018785477,-0.03174067661166191,-0.09916706383228302,-0.05123992636799812,0.006172374822199345,0.06593954563140869,0.02108791097998619,-0.00782399345189333,0.037310097366571426,-0.007387569639831781,-0.03732379525899887,-0.06850889325141907,-0.00617552176117897,-0.06883775442838669,-0.03419927507638931,-0.011990324594080448,0.03780701756477356,-0.028258290141820908,0.005188256502151489,0.027472900226712227,0.0059899212792515755,0.005591502878814936,0.1341143250465393,-0.08152001351118088,0.015791818499565125,0.030212892219424248,0.06954894959926605,0.048679169267416,0.04485524818301201,0.001880520605482161,-0.03851799666881561,-0.035857345908880234,-0.018272142857313156,0.04583318531513214,-0.001185180968604982,-0.0031820840667933226,0.016699137166142464,-0.014305680058896542,0.011587501503527164,-0.04279375076293945,0.07285705208778381,-0.010175170376896858,0.060991983860731125,0.0207405723631382,0.04229522496461868,-0.032795656472444534,0.04125995561480522,0.02771436795592308,0.0930226743221283,0.04928408935666084,0.036555010825395584,-0.04152983799576759,-0.006147240754216909,-0.07641031593084335,-0.038187600672245026,-0.013620642013847828,-0.05837296321988106,0.08030188828706741,0.04858136177062988,-0.08107293397188187,-0.0544857382774353,0.011551412753760815,0.018069468438625336,-0.027679266408085823,0.021793285384774208,0.02682044915854931,-0.07714452594518661,0.005853910930454731,0.04753212258219719,-0.021410193294286728,-0.0024337894283235073,0.05575031414628029,-0.029229046776890755,-0.08838079124689102,0.046533167362213135,-0.07456248253583908,0.05310465022921562,-0.07784918695688248,0.07489094138145447,-0.0008534922380931675,-0.027557233348488808,-0.003718599211424589,0.05941295623779297,0.007501650135964155,0.02481536567211151,0.007818487472832203,-0.023771777749061584,-0.009482568129897118,-0.027491480112075806,-0.0031531222630292177,-0.04348556697368622,0.05092424526810646,-0.025402985513210297,0.0028590725269168615,-0.030279042199254036,0.01738695800304413,0.04817235469818115,-0.05752195790410042,-0.006221383810043335,0.05796390771865845,0.06830459088087082,-0.051594071090221405,0.09153155237436295,-0.10621706396341324,-0.06955911219120026,-0.02619040757417679,-5.9258216734706814e-33,0.08989102393388748,0.06239775940775871,0.019728275015950203,-0.01144628506153822,0.09563663601875305,0.028423398733139038,0.0236793365329504,-0.05162985250353813,0.01890944130718708,-0.0221254862844944,0.003989247605204582,0.005454397294670343,0.00813363678753376,0.05262558162212372,-0.08107766509056091,0.14660167694091797,0.018986377865076065,0.04256034269928932,0.03308221697807312,-0.060236308723688126,-0.035882413387298584,-0.09592975676059723,0.026643430814146996,-0.004605770111083984,0.04483165591955185,-0.08401887118816376,0.022346505895256996,-0.05208687484264374,0.08353389799594879,-0.0009877923876047134,-0.05683679133653641,0.060955535620450974,-0.008293231949210167,0.04677354171872139,-0.01968117617070675,0.04773012548685074,0.0035309891682118177,0.04854615405201912,-0.06905004382133484,-0.016711482778191566,-0.04180173575878143,-0.018166061490774155,-0.026438631117343903,0.06872865557670593,-0.06065508723258972,-0.019284969195723534,0.14208796620368958,0.04359465092420578,-0.011669334024190903,-0.04899366945028305,0.07338371872901917,-0.03881599009037018,0.02550431154668331,-0.06066615879535675,-0.09075099974870682,-0.03162531554698944,0.047424063086509705,0.009143603965640068,0.027915578335523605,0.05402221903204918,0.008394923992455006,-0.07415459305047989,0.04816863685846329,0.1000942662358284,-0.07693451642990112,-0.122196726500988,-0.013353455811738968,-0.048527952283620834,-0.01299466285854578,-0.050803061574697495,-0.0089944526553154,-0.0314355194568634,-0.015156588517129421,-0.03147009387612343,-0.11284756660461426,-0.07499267905950546,-0.034024111926555634,0.04473058506846428,-0.007592747453600168,-0.07713188976049423,-0.017622727900743484,0.01962532103061676,-0.09350690990686417,0.00837806984782219,0.055217258632183075,0.04910820350050926,0.03007877990603447,0.05208607390522957,-0.018679238855838776,0.0016600193921476603,-0.014451732859015465,-0.03674932196736336,0.039545197039842606,-0.05190086364746094,0.0504472590982914,3.728694162089205e-33,0.05033589154481888,0.012714006006717682,0.0764273926615715,0.02062610164284706,0.0012027713237330317,-0.017942212522029877,-0.043492391705513,-0.005270753987133503,0.018414493650197983,0.025196917355060577,0.06521138548851013,0.08780288696289062,0.06782601773738861,-0.055137280374765396,0.02883906103670597,0.06205003336071968,-0.011848130263388157,-0.07375137507915497,-0.02116193063557148,0.08286003768444061,0.05552349612116814,-0.037069786339998245,0.05481696501374245,0.054803378880023956,-0.08605357259511948,-0.04953031241893768,0.04143334925174713,-0.008718552999198437,0.007422714028507471,0.04288990795612335,0.005057480651885271,-0.07990794628858566,-0.09666965156793594,-0.023063084110617638,-0.006499334238469601,0.04061116278171539,-0.033811915665864944,-0.01689057983458042,0.011971109546720982,0.07816153764724731,0.06195449456572533,-0.07124108821153641,0.04071400687098503,0.05956783890724182,0.08691595494747162,-0.06831279397010803,0.03385791555047035,-0.06787537783384323,-0.015596222132444382,0.09127192199230194,-0.03550481051206589,0.024962574243545532,-0.04195469617843628,-0.035152267664670944,-0.06656661629676819,0.01213442999869585,-0.055187810212373734,0.003785619745030999,-0.00034212262835353613,0.006495319306850433,-0.004891372285783291,-0.02055876888334751,0.119895800948143,-0.04667479172348976,-0.06375722587108612,-0.01913417875766754,-0.010152362287044525,0.06268525868654251,-0.01164721604436636,0.053043071180582047,0.044329989701509476,-0.011422398500144482,0.04334402456879616,-0.021031277254223824,0.03096489980816841,-0.10041166096925735,0.07271214574575424,0.03952013701200485,-0.003996252082288265,0.009928655810654163,0.026374023407697678,-0.027915507555007935,0.041180942207574844,0.013581553474068642,-0.0016864847857505083,0.03376593068242073,-0.05726221576333046,-0.012914379127323627,0.05643308162689209,-0.06149116903543472,0.033426664769649506,0.0017870357260107994,0.03886806592345238,-0.007711152080446482,0.027159610763192177,-1.7183159783940027e-8,-0.03667217120528221,-0.06352324783802032,0.06926319748163223,0.0273272767663002,-0.01203859318047762,0.09087109565734863,-0.08145076036453247,-0.10117342323064804,0.022487733513116837,0.02083507366478443,-0.026177378371357918,0.009549709968268871,0.04801059514284134,-0.015796121209859848,0.0017591121140867472,0.018380144611001015,-0.04801500216126442,-0.04108760878443718,-0.036502014845609665,0.12271106988191605,-0.031726859509944916,0.08357002586126328,-0.0410456657409668,0.024372732266783714,-0.012145521119236946,-0.0496702566742897,0.013922495767474174,-0.05833342671394348,0.04199743643403053,0.13451629877090454,-0.01253514178097248,-0.019079530611634254,-0.09460433572530746,-0.03381755203008652,0.07056604325771332,-0.023788033053278923,-0.02182733826339245,-0.019494926556944847,0.04119347035884857,0.013394108042120934,0.008108780719339848,0.04670802131295204,0.016916656866669655,-0.008634177036583424,-0.05225097015500069,-0.025710562244057655,0.08986916393041611,-0.08363442867994308,-0.007823079824447632,0.020193014293909073,0.009744797833263874,-0.035677697509527206,0.010568004101514816,0.024611003696918488,0.03339756652712822,-0.05595317855477333,-0.004242382477968931,0.020623352378606796,0.008034390397369862,0.020391641184687614,-0.013033867813646793,-0.10732442140579224,-0.042174290865659714,-0.05188065022230148]},{"text":"RAINA. (_over her shoulder, from the top of the two steps_).","book":"Down and Out in Paris and London","chapter":40,"embedding":[-0.06129097566008568,0.03988150507211685,0.029129214584827423,0.016729403287172318,-0.0047423699870705605,0.0035190011840313673,0.11915957927703857,-0.03463083505630493,-0.006187372375279665,-0.03388439118862152,0.014334818348288536,-0.0904741957783699,-0.043363507837057114,-0.01231219619512558,0.03484040126204491,0.060671158134937286,-0.028688138350844383,-0.012235415168106556,-0.01681347005069256,0.03675929456949234,0.01508435420691967,-0.03521491959691048,0.038885846734046936,0.0749187245965004,-0.043189696967601776,0.04493864253163338,0.12534748017787933,0.012438276782631874,0.02556062862277031,-0.07722947746515274,-0.01913481578230858,0.01889464631676674,-0.03871774673461914,0.014374845661222935,-0.04290398210287094,0.08183383196592331,0.041686397045850754,-0.06308382004499435,0.01866799406707287,-0.06178830936551094,0.03638908639550209,0.021931814029812813,-0.10114380717277527,-0.03752835839986801,-0.011025887914001942,-0.048842206597328186,0.13145017623901367,0.06447654962539673,0.008163749240338802,0.04514479264616966,-0.015552228316664696,-0.015533392317593098,-0.10123041272163391,0.09255154430866241,-0.00045839519589208066,0.008265828713774681,0.06661635637283325,-0.09256590902805328,0.01276614423841238,0.028377413749694824,-0.06291106343269348,0.02102569304406643,-0.06802401691675186,0.1267211139202118,-0.017454270273447037,-0.11145123839378357,-0.027643756940960884,-0.018536048009991646,-0.05816280469298363,0.07060621678829193,0.030411487445235252,0.032109323889017105,0.012921572662889957,-0.03989250957965851,-0.05954069644212723,-0.062296606600284576,0.030102167278528214,-0.029977494850754738,0.029476700350642204,0.04114040732383728,0.00930254440754652,-0.05019282549619675,0.0033422824926674366,0.07490573823451996,-0.017809391021728516,0.08895066380500793,-0.03862368315458298,-0.08873477578163147,-0.027810771018266678,-0.041169293224811554,-0.01226772926747799,-0.007239107973873615,-0.00959780253469944,0.04612409323453903,0.02346203476190567,0.06479311734437943,-0.01593615487217903,-0.1421446055173874,0.022182928398251534,0.02083439938724041,0.011981108225882053,0.006017166655510664,0.06179586425423622,0.05864040553569794,-0.030490266159176826,-0.006401452701538801,-0.04137255251407623,-0.10250239819288254,0.0103880874812603,-0.009912105277180672,0.005344311706721783,-0.09246724098920822,0.009789870120584965,0.04314429312944412,0.015788201242685318,0.020121153444051743,-0.012309891171753407,-0.018554646521806717,0.013936512172222137,0.06081091985106468,-0.010459966026246548,0.03729940205812454,0.021533656865358353,-0.018241949379444122,-0.0597885437309742,-0.017197508364915848,0.009321228601038456,-4.127409723602632e-33,0.07960193604230881,0.039730627089738846,-0.005022434983402491,0.017498347908258438,0.01947113685309887,0.02468642219901085,0.006554530467838049,0.003983542323112488,-0.06552992016077042,0.051886025816202164,-0.09517620503902435,-0.041495658457279205,-0.048583321273326874,-0.03985108807682991,-0.014390846714377403,-0.008081874810159206,0.02848062664270401,0.018667684867978096,-0.0729234591126442,0.058608852326869965,0.03748730942606926,0.026042496785521507,-0.003734658006578684,-0.010423152707517147,0.004706209059804678,-0.04677920788526535,0.06750144809484482,0.006302188150584698,0.04792442172765732,0.012390931136906147,-0.023033807054162025,0.02009822055697441,0.06308054178953171,0.030782122164964676,0.07040000706911087,-0.011071087792515755,0.02278442680835724,0.008401629514992237,-0.056437816470861435,0.003116130828857422,-0.07874152809381485,0.016003092750906944,0.02654029056429863,0.013560183346271515,-0.09581588953733444,-0.0825967937707901,-0.015014681033790112,0.07098212838172913,-0.01063372939825058,-0.03342251107096672,-0.017073603346943855,0.007438138127326965,0.029265200719237328,-0.00605107331648469,-0.048681244254112244,0.03710804507136345,0.05743400752544403,0.00039910763734951615,0.05584649369120598,0.02795492485165596,0.01375084463506937,0.02657054178416729,0.03067682310938835,-0.06977327913045883,0.04007434472441673,-0.0700778216123581,-0.09724204242229462,-0.019578149542212486,0.08430280536413193,-0.020438045263290405,-0.0657961368560791,0.03243367373943329,-0.005985221825540066,0.12547019124031067,-0.01658719778060913,-0.033817242830991745,-0.029347721487283707,-0.026754355058073997,0.09060347080230713,-0.07759855687618256,-0.07363240420818329,0.056883081793785095,-0.05374705046415329,0.07114522159099579,-0.02324148826301098,0.012363476678729057,-0.046881165355443954,-0.02490677684545517,-0.09559953957796097,-0.005096222274005413,-0.06749099493026733,0.07685993611812592,0.0790972039103508,-0.09627873450517654,-0.002374795498326421,1.5328014707890687e-33,0.08357998728752136,0.010738099925220013,0.03361557796597481,-0.01130752544850111,-0.0010456428863108158,-0.050703901797533035,0.020776627585291862,-0.04223436489701271,0.07190924882888794,0.058278441429138184,-0.06170404329895973,-0.036763861775398254,0.022310329601168633,-0.062306929379701614,0.1695932149887085,0.04710733890533447,0.06856290251016617,-0.021917613223195076,0.005756526254117489,-0.030325165018439293,-0.027161067351698875,-0.05678856745362282,-0.02854853868484497,-0.02579175867140293,-0.06574071198701859,-0.040458135306835175,0.16624988615512848,0.027864713221788406,-0.0005412568571045995,0.008958833292126656,-0.044580087065696716,-0.11326012015342712,-0.011151223443448544,0.064779132604599,-0.0327480286359787,0.05831952020525932,-0.06801822036504745,-0.11507612466812134,0.014825161546468735,-0.05767136439681053,0.015100997872650623,-0.04161593317985535,0.06152452155947685,0.07019828259944916,0.05372210964560509,-0.005169153679162264,-0.05488844960927963,0.11648721992969513,-0.04001619666814804,-0.03980278968811035,-0.03457232192158699,-0.03892996907234192,-0.020560014992952347,0.1092989593744278,0.10663583874702454,0.045757051557302475,0.059069134294986725,0.000040363098378293216,0.017220530658960342,-0.031635068356990814,0.049469392746686935,0.012174724601209164,0.032453592866659164,-0.017415260896086693,-0.03606702387332916,-0.002406374318525195,-0.05354608967900276,-0.03793809190392494,-0.06752735376358032,-0.05166293680667877,0.016774974763393402,0.02084197662770748,-0.06391536444425583,-0.00856221467256546,0.04586515203118324,0.018901009112596512,-0.024137146770954132,-0.04316522181034088,0.0558849535882473,-0.11604514718055725,-0.1030893549323082,-0.03488954156637192,-0.06455828249454498,-0.05346132442355156,0.08044123649597168,-0.036411602050065994,0.010062387213110924,-0.006248554214835167,0.0023103412240743637,-0.027058951556682587,0.03961948677897453,0.050117481499910355,0.08746786415576935,-0.05089908093214035,-0.015125786885619164,-2.173602098309857e-8,-0.05838582664728165,-0.019736289978027344,0.008674737066030502,-0.08233708143234253,-0.030324652791023254,0.05937373265624046,0.03802983835339546,0.04445377737283707,0.00062785908812657,-0.11280545592308044,0.021726276725530624,0.10703200846910477,0.08878085017204285,0.014434495009481907,0.012590184807777405,0.10205042362213135,0.006006910931318998,0.05957470461726189,-0.036618489772081375,-0.008473404683172703,-0.0020916347857564688,-0.01130317710340023,-0.02461802214384079,0.01375065091997385,-0.00377571489661932,0.053595393896102905,-0.05602984130382538,0.0157286636531353,-0.02233060449361801,0.012724664993584156,0.09179937839508057,0.022581227123737335,-0.037924472242593765,-0.02782973274588585,0.001640231697820127,0.025177501142024994,0.04675014317035675,0.04673014581203461,-0.02549094706773758,0.07986313104629517,0.05492759868502617,0.006617567967623472,0.004503374453634024,0.013557620346546173,0.01179887168109417,0.02407735399901867,0.06584997475147247,-0.05011727660894394,-0.00383445480838418,-0.02750556357204914,-0.021897191181778908,-0.06439320743083954,0.02039841189980507,0.03067452646791935,-0.040564049035310745,-0.024930445477366447,-0.02015020325779915,-0.027182769030332565,-0.05777546390891075,0.046107400208711624,0.035219982266426086,0.010143592022359371,-0.01741023175418377,0.05612071231007576]},{"text":"I suppose we shall have them calling every day to pay their compliments.","book":"Down and Out in Paris and London","chapter":40,"embedding":[-0.13700123131275177,0.040392715483903885,0.04938172549009323,-0.03506666049361229,-0.1080937311053276,-0.0736510306596756,0.05851238965988159,-0.05047981068491936,0.020025115460157394,-0.09421189874410629,-0.033607110381126404,-0.016060685738921165,-0.015183746814727783,-0.03627440705895424,0.004961324855685234,0.005235473159700632,0.021980134770274162,-0.042619846761226654,0.006710202433168888,0.049829885363578796,-0.02867080084979534,0.09302518516778946,0.04490210860967636,0.0438205823302269,-0.0065007926896214485,-0.04504826292395592,0.0367361344397068,-0.014270378276705742,0.02005581744015217,0.07149958610534668,-0.04049909487366676,0.049190182238817215,0.039654411375522614,0.07538579404354095,-0.1284734457731247,0.07432994991540909,0.026597078889608383,-0.027483996003866196,-0.045841753482818604,-0.06087467819452286,-0.023784244433045387,-0.04863843321800232,0.00028680963441729546,0.008115231990814209,-0.11665740609169006,0.013944040983915329,0.0030577562283724546,-0.0008964982116594911,0.0638945996761322,-0.003020647680386901,0.0059006414376199245,-0.023683486506342888,0.05900254845619202,-0.03131076321005821,-0.034961000084877014,0.06811726838350296,0.058737173676490784,-0.03082381933927536,0.0427684485912323,0.0632963478565216,-0.07408124208450317,0.04480527713894844,-0.01669037528336048,-0.02375904470682144,-0.010557868517935276,0.015686046332120895,-0.05844840779900551,0.11678147315979004,-0.04963759705424309,0.013658571988344193,-0.07200846076011658,0.045205630362033844,0.06283260136842728,0.07069703191518784,-0.045115381479263306,0.07100546360015869,-0.04864420369267464,-0.07299283891916275,-0.05759134516119957,-0.01867596060037613,-0.04094758257269859,-0.030219748616218567,0.04668467119336128,-0.028206918388605118,0.0021898411214351654,0.030454372987151146,0.012617296539247036,-0.031722865998744965,-0.026205696165561676,-0.0013417594600468874,-0.10877513140439987,-0.01937042362987995,-0.017178265377879143,-0.053008925169706345,-0.06658093631267548,-0.030774185433983803,-0.10477442294359207,-0.09247491508722305,-0.024946630001068115,0.09874574095010757,-0.0403706356883049,0.09347956627607346,-0.047766946256160736,0.030341805890202522,-0.0041170548647642136,0.014904741197824478,-0.07595180720090866,0.05051502585411072,-0.002315953141078353,-0.045011311769485474,0.026897314935922623,0.02440735697746277,0.07030344754457474,-0.033665746450424194,0.017175273969769478,-0.040497470647096634,0.0108692217618227,-0.05138683691620827,0.016330420970916748,-0.05884141847491264,0.02603944018483162,0.050208691507577896,-0.02070390060544014,-0.011550257913768291,0.04926026985049248,-0.02006407454609871,0.001514425384812057,-4.87441691442501e-33,0.036616548895835876,0.17788976430892944,0.09338836371898651,0.05770493298768997,-0.014298315159976482,-0.009584908373653889,-0.03904522582888603,-0.005101582035422325,0.03075549378991127,-0.08723271638154984,-0.01511091087013483,-0.01599772647023201,0.07145361602306366,-0.00515794986858964,-0.021219376474618912,0.025856394320726395,0.026351112872362137,0.028793031349778175,0.012869258411228657,-0.015163644216954708,0.02122032456099987,-0.010841727256774902,0.050903622061014175,0.056823402643203735,0.04531305655837059,-0.10729753226041794,0.0455009788274765,0.06057592108845711,0.01750125363469124,-0.02117372862994671,0.03315895423293114,-0.03406012803316116,0.007101940456777811,0.04016100615262985,-0.012331602163612843,-0.02785157971084118,0.04523749276995659,0.010003115050494671,-0.033087216317653656,-0.038520071655511856,0.08907500654459,0.0285005085170269,-0.04549321159720421,0.03597981855273247,0.02786630392074585,0.04139968752861023,0.015987901017069817,0.025412464514374733,-0.018329795449972153,0.0028843143954873085,0.042601000517606735,0.051122259348630905,0.03726429119706154,0.030912227928638458,-0.02316492609679699,-0.010548191145062447,-0.05984513834118843,-0.04242439195513725,0.03684286028146744,-0.0799989402294159,0.015229192562401295,-0.07958266884088516,-0.03239615634083748,-0.04933132603764534,-0.02664119191467762,0.026746192947030067,-0.0005676494329236448,0.03836531937122345,-0.060510460287332535,0.04877445846796036,0.02173667773604393,0.05588769540190697,-0.06385968625545502,-0.06832782924175262,-0.02500900812447071,-0.007315794005990028,0.04576752707362175,-0.07168617099523544,0.12547411024570465,0.05679989978671074,0.0927000492811203,0.02013406530022621,-0.012713393196463585,-0.027585860341787338,0.15478332340717316,0.031034229323267937,0.04338124394416809,-0.04977412894368172,-0.015933960676193237,0.06255492568016052,-0.07386445999145508,0.0235080998390913,-0.006295082159340382,0.029120545834302902,-0.09480740129947662,1.1377227785944904e-33,0.02935853973031044,-0.04035104438662529,-0.03229901194572449,0.11710117012262344,-0.01688442938029766,-0.010899338871240616,-0.07117564976215363,0.11112020909786224,-0.021096061915159225,0.10619491338729858,-0.02308354713022709,0.00394938699901104,-0.05135471373796463,0.020068122074007988,0.03982090577483177,-0.08754550665616989,0.07826241105794907,-0.023755960166454315,-0.02578034996986389,-0.018795451149344444,0.0278122927993536,0.01923021674156189,0.025716504082083702,0.03452923893928528,-0.012206296436488628,-0.01795036345720291,0.028681013733148575,-0.017805300652980804,-0.03296049311757088,-0.01835504174232483,-0.02960624359548092,-0.02049114927649498,-0.13147902488708496,0.03056456334888935,0.0685885027050972,0.004269896075129509,-0.03306395187973976,0.1324957311153412,0.005472695920616388,0.0943865180015564,-0.02772398665547371,-0.027885494753718376,-0.06301309913396835,-0.028444018214941025,-0.07413548231124878,-0.074856236577034,0.031078455969691277,-0.02588196098804474,-0.1457851678133011,-0.04541953653097153,-0.04346267133951187,-0.013572045601904392,-0.058505866676568985,0.03234505280852318,-0.0899960994720459,-0.03668983280658722,0.08916553854942322,0.011902352795004845,0.06575034558773041,0.025807147845625877,-0.03066832199692726,-0.055411405861377716,-0.0003525311185512692,-0.041909363120794296,-0.0033783449325710535,0.004656006582081318,0.011116594076156616,0.007219523191452026,0.08603382855653763,0.0381796769797802,0.05418628454208374,-0.039547961205244064,-0.07704287767410278,-0.013410969637334347,-0.050131652504205704,0.0562058687210083,0.010365068912506104,-0.021586693823337555,-0.07027366757392883,-0.010146425105631351,0.033937714993953705,-0.08754654228687286,0.046591199934482574,0.03826986253261566,0.021947624161839485,-0.05857943743467331,0.059829168021678925,0.0251278355717659,-0.018892604857683182,0.020855562761425972,-0.01667226292192936,-0.0534694530069828,0.015917222946882248,-0.06987837702035904,-0.0250973179936409,-2.4624499772585295e-8,-0.0075503080151975155,-0.02370857261121273,0.018411070108413696,0.04521462321281433,0.008394506759941578,-0.04255007579922676,0.02341945469379425,-0.020807666704058647,0.0013407479273155332,-0.008002951741218567,0.11954148858785629,-0.013057196512818336,0.04500337317585945,0.018282003700733185,0.0644179955124855,0.0726916491985321,0.04034091904759407,-0.04685363173484802,-0.06240629404783249,0.04298064112663269,0.001526450039818883,0.026003707200288773,0.043184805661439896,0.08401744812726974,-0.04273788258433342,-0.026676416397094727,-0.031711552292108536,-0.00004020537016913295,0.015315287746489048,0.04123886674642563,-0.0020909232553094625,0.010661812499165535,-0.09508199244737625,0.007976706139743328,0.03896556794643402,-0.02864866890013218,-0.09580953419208527,-0.07109954208135605,0.05430721491575241,-0.036767683923244476,-0.05900926515460014,0.039932530373334885,-0.024913594126701355,0.08277492970228195,0.08463656902313232,-0.02111946977674961,0.04632148891687393,0.049239370971918106,-0.017062446102499962,-0.03344306722283363,-0.019985055550932884,0.03258303180336952,0.03423794358968735,0.07515162229537964,-0.005677183624356985,-0.012627849355340004,0.02308291383087635,-0.06391526013612747,-0.018229592591524124,0.02523871324956417,0.024358434602618217,-0.012386118993163109,-0.05654950439929962,-0.1153264194726944]},{"text":"He gave me this little ticket for you. (_She takes a card out of her bosom; puts it on the salver and offers it to Catherine._) CATHERINE. (_reading_). “Captain Bluntschli!” That’s a German name.","book":"Down and Out in Paris and London","chapter":40,"embedding":[0.005870955064892769,0.07619494199752808,0.02826428972184658,0.043438952416181564,-0.05433643236756325,0.0355643630027771,0.16451017558574677,-0.018380971625447273,-0.008725760504603386,-0.06601989269256592,-0.044835999608039856,-0.09638294577598572,0.0007834491552785039,-0.02091149054467678,-0.0690346285700798,0.032585259526968,0.046950679272413254,0.040043920278549194,0.0019054411677643657,0.08650034666061401,-0.04756586253643036,-0.0042508188635110855,-0.00943063199520111,0.02954530157148838,-0.027578718960285187,-0.04749799147248268,0.024348344653844833,-0.010796822607517242,-0.07467541098594666,-0.03306461125612259,-0.017745375633239746,-0.002737236674875021,0.020902302116155624,0.045083481818437576,0.00080956268357113,0.011927063576877117,0.002034993376582861,0.03246346116065979,0.01608150079846382,0.028041476383805275,-0.09285610169172287,-0.07548564672470093,-0.00441198842599988,0.12468492239713669,-0.008735264651477337,0.006119376514106989,0.007519187405705452,0.0376148484647274,-0.024050742387771606,0.040250930935144424,-0.0726235955953598,-0.06540748476982117,-0.04140038043260574,-0.0030452117789536715,-0.01798151805996895,-0.05553077533841133,0.06970261037349701,0.04374455660581589,0.003285772167146206,0.06677962094545364,-0.07650160044431686,-0.01676805503666401,-0.041890304535627365,0.06266189366579056,-0.06406167149543762,-0.04002314805984497,-0.03834434971213341,-0.014796971343457699,-0.09179619699716568,0.09212697297334671,0.03014068864285946,-0.017873723059892654,0.05869105085730553,-0.01621127687394619,-0.0295932125300169,-0.06515605002641678,-0.04160838946700096,-0.010691162198781967,0.03127104416489601,0.025482110679149628,-0.0944930836558342,-0.02645447663962841,-0.14838451147079468,0.0014706497313454747,-0.014663523994386196,0.048859238624572754,-0.0010660039260983467,-0.10552702844142914,-0.08504444360733032,-0.05641913414001465,-0.09931115806102753,-0.0787481889128685,0.008014598861336708,0.020152408629655838,-0.08519530296325684,0.017674144357442856,-0.017816955223679543,0.013125093653798103,-0.10436616837978363,0.030688202008605003,0.007062885910272598,0.11280176043510437,0.0011724330252036452,0.026702269911766052,-0.04235824942588806,0.0078729884698987,-0.028474876657128334,-0.09327000379562378,-0.029852580279111862,-0.11363773047924042,0.02778393030166626,-0.024685610085725784,-0.035895247012376785,-0.08254127949476242,0.035764120519161224,0.05087144672870636,0.02869413048028946,-0.105963334441185,0.01783597283065319,-0.040407419204711914,-0.004626738838851452,0.0621069110929966,-0.04327457398176193,0.057401809841394424,-0.10100790858268738,0.016687685623764992,0.053811103105545044,-4.424785549789685e-33,0.0024479972198605537,0.019091440364718437,0.04728623107075691,0.08640921860933304,0.025574862957000732,-0.07236433029174805,-0.0632186084985733,0.0404980443418026,-0.08140157163143158,0.018168676644563675,0.025567566975951195,-0.09029566496610641,-0.018943941220641136,-0.030384361743927002,-0.04069646820425987,0.07878784090280533,0.013871620409190655,-0.010877021588385105,0.011043560691177845,0.003927259240299463,0.008776780217885971,0.07842713594436646,0.014894581399857998,0.01342118438333273,0.016545135527849197,-0.037055980414152145,0.0012383753200992942,-0.027735162526369095,0.12727360427379608,0.04369477182626724,0.002608170034363866,0.09944062680006027,0.021599026396870613,0.01207940187305212,0.018017766997218132,-0.04230834171175957,-0.09211279451847076,-0.05943348631262779,-0.006713578477501869,0.08084170520305634,-0.02536165714263916,-0.03370865806937218,-0.0347340926527977,0.026188531890511513,-0.1158059611916542,-0.04261834919452667,-0.01768408715724945,-0.004854937084019184,0.09877511858940125,-0.026364469900727272,-0.033486463129520416,-0.07441507279872894,0.043073732405900955,0.05092320218682289,-0.02630353718996048,0.042303264141082764,0.0707467645406723,0.05347490310668945,0.02487926557660103,-0.04977283626794815,-0.00041674196836538613,-0.015632126480340958,0.02541504055261612,0.056292835623025894,0.06771022081375122,-0.0446874164044857,-0.018973734229803085,-0.01635102555155754,0.01793503761291504,0.0492292121052742,-0.020958760753273964,0.062652088701725,0.017314862459897995,-0.008788364939391613,0.013694249093532562,0.034402038902044296,-0.021614747121930122,0.06979259103536606,0.0373741015791893,-0.02453235350549221,-0.045850969851017,0.02430560439825058,-0.05561847239732742,0.011340920813381672,-0.025279885157942772,0.021862143650650978,0.02761811390519142,-0.11086762696504593,-0.08051368594169617,0.07703567296266556,-0.06728950142860413,0.025182586163282394,-0.010846121236681938,-0.07083475589752197,-0.07199440151453018,2.1437628229190294e-33,0.09645716100931168,-0.011680452153086662,-0.019429529085755348,0.04111036658287048,-0.0002174568799091503,0.002118525793775916,-0.06774386763572693,0.012005477212369442,0.046071309596300125,-0.017625054344534874,-0.027927249670028687,-0.015541551634669304,0.054642774164676666,-0.060430314391851425,0.0997743085026741,-0.06592019647359848,0.015348182059824467,-0.01168090756982565,0.0159041378647089,0.021434564143419266,0.010385911911725998,-0.042705923318862915,-0.07360000908374786,-0.03310110419988632,-0.05171528831124306,-0.015864599496126175,0.11058847606182098,0.020248418673872948,-0.05490134656429291,-0.04086028411984444,-0.04706168174743652,-0.007189882453531027,-0.04973695054650307,-0.05080849677324295,-0.014919759705662727,0.04666326940059662,0.0210026353597641,0.027796249836683273,-0.004380953032523394,0.009001154452562332,-0.0694933533668518,-0.003304608166217804,0.07365784794092178,0.046148017048835754,0.06036151573061943,-0.08254250138998032,-0.08558865636587143,0.04212425276637077,0.02020334079861641,0.04667193815112114,-0.034589044749736786,-0.07882469892501831,-0.0543292872607708,0.008263450115919113,-0.008148448541760445,0.06084134429693222,-0.020255476236343384,-0.07388865202665329,0.12932582199573517,-0.027387328445911407,-0.03900747373700142,0.028710616752505302,-0.01547087449580431,0.06170208752155304,-0.03453318402171135,-0.0502437986433506,-0.09174030274152756,-0.018277453258633614,-0.00009290532761951908,0.007190443575382233,0.06977557390928268,0.009410757571458817,0.023971837013959885,0.05560889095067978,-0.0012225587852299213,0.008832136169075966,0.03956951946020126,0.011066069826483727,-0.0055892313830554485,0.0031704893335700035,0.01892297901213169,-0.04472709819674492,-0.012120555154979229,0.05279567465186119,0.10125890374183655,-0.03653276711702347,-0.0025557009503245354,0.005918345879763365,0.0215897373855114,-0.013986079953610897,0.054865941405296326,0.05774134770035744,0.09417721629142761,-0.05488719046115875,0.022407250478863716,-3.370852041939543e-8,-0.015185076743364334,-0.00566965714097023,-0.06718575954437256,-0.0602179653942585,0.010970468632876873,-0.10767289996147156,-0.03295058384537697,-0.0698794350028038,-0.06794039905071259,-0.041482917964458466,0.03093547746539116,0.06607314944267273,0.035986945033073425,-0.05814199522137642,0.05325475335121155,0.00284529197961092,0.07509917765855789,0.0050218235701322556,0.0023889769800007343,0.11088867485523224,0.019693974405527115,0.05283021926879883,0.11068349331617355,-0.0378967709839344,-0.05074767768383026,0.10026644915342331,0.09848716855049133,0.015057485550642014,-0.0016755957622081041,-0.022602850571274757,0.09610575437545776,0.08847729861736298,-0.011554524302482605,0.024484796449542046,0.011149761267006397,0.08266166597604752,-0.041260480880737305,-0.007110544480383396,0.04575397074222565,0.06362587213516235,0.05925745889544487,0.0019658238161355257,-0.03481186926364899,0.02466835454106331,0.011609143577516079,0.02867741324007511,0.03812989965081215,-0.03202073276042938,0.05083775892853737,0.011207346804440022,-0.009383853524923325,0.026785537600517273,0.013906280510127544,0.0471780002117157,-0.021290961652994156,0.02593533881008625,0.08409935235977173,0.03748766705393791,-0.006293036043643951,0.0006754542118869722,0.04865552484989166,0.03418731316924095,-0.006046143360435963,0.004732875153422356]},{"text":"Louka waits._) The master and Major Saranoff are busy in the library, aren’t they?","book":"Down and Out in Paris and London","chapter":40,"embedding":[0.01939747855067253,-0.0852941945195198,-0.00238740723580122,-0.007980961352586746,0.033669184893369675,0.03973640501499176,-0.046980682760477066,-0.02793118543922901,-0.026727814227342606,-0.02415810339152813,-0.04056473821401596,0.0138798076659441,-0.05993121117353439,-0.09463761001825333,0.008753801696002483,-0.06147577613592148,0.02786233276128769,-0.06139669194817543,-0.019874246791005135,0.11840002238750458,-0.04693123698234558,0.0008895982755348086,0.006208683364093304,0.006173779256641865,0.04909292981028557,0.005888756364583969,-0.0005191758391447365,-0.09113022685050964,0.004619934596121311,-0.05326157063245773,-0.033919159322977066,0.059031225740909576,-0.009674236178398132,0.012925975024700165,0.02159259282052517,0.07802730053663254,0.030223194509744644,-0.0059931036084890366,0.015740446746349335,0.03440285474061966,0.025138266384601593,0.02030801959335804,-0.02346457727253437,0.02993302047252655,-0.05751935765147209,-0.03338110074400902,-0.07643485069274902,-0.05118124186992645,-0.02616390585899353,-0.03606420382857323,-0.08310414105653763,-0.015841227024793625,0.006967924535274506,0.059614598751068115,0.05938548222184181,0.06160050258040428,0.0706249251961708,-0.08758417516946793,-0.013540460728108883,0.09649679064750671,-0.02874264121055603,0.043822288513183594,-0.07119134813547134,0.06962460279464722,0.07874775677919388,0.04215095192193985,-0.057075951248407364,-0.0165256280452013,0.027829112485051155,-0.03307712450623512,-0.009461846202611923,0.018631642684340477,0.0014220998855307698,-0.01578093133866787,0.027930041775107384,-0.061308544129133224,-0.03968653827905655,0.03687698394060135,0.09318318963050842,-0.02192278578877449,-0.053629059344530106,-0.05915628373622894,0.010093778371810913,0.044760990887880325,-0.039205025881528854,0.02072848379611969,0.06172851473093033,0.025581801310181618,-0.0029057811480015516,-0.03264506533741951,0.06766624003648758,-0.004858429078012705,-0.04146396368741989,0.017037464305758476,-0.05254067853093147,0.051957640796899796,-0.029383964836597443,0.03760847821831703,-0.02532937005162239,0.055846456438302994,-0.024456530809402466,0.08551909029483795,0.08905017375946045,-0.020315974950790405,-0.1246429830789566,-0.034211818128824234,-0.0002771627623587847,-0.04026874154806137,-0.03388836979866028,-0.025188984349370003,0.04793856292963028,-0.06899327784776688,0.02210385911166668,0.01249482948333025,-0.014697144739329815,0.0622473880648613,0.0943634882569313,-0.02311839908361435,-0.025061560794711113,-0.0019945502281188965,0.08479922264814377,0.019447356462478638,0.015966445207595825,-0.02519281581044197,-0.003998109605163336,-0.010049245320260525,-0.09464597702026367,-3.933189404171989e-33,0.04902990534901619,-0.046061113476753235,0.009464520029723644,0.050813011825084686,-0.03425952047109604,-0.007398291956633329,-0.02334476448595524,0.02354092337191105,-0.030233541503548622,-0.00972056481987238,-0.019276011735200882,0.020291311666369438,-0.07414993643760681,-0.02946346066892147,-0.0625050887465477,0.06049326807260513,0.06236524507403374,-0.007664262317121029,-0.0667925551533699,0.023271508514881134,0.10433728247880936,0.01436647493392229,-0.030456667765975,0.06492410600185394,-0.007986233569681644,0.027827991172671318,-0.02797154150903225,-0.06606787443161011,0.07810938358306885,0.048501890152692795,-0.058872535824775696,0.010916478000581264,-0.05952106788754463,-0.003819837002083659,0.016444670036435127,-0.011644775979220867,-0.003764204913750291,-0.1043739914894104,-0.02312149479985237,-0.03806600719690323,-0.06888758391141891,0.02578967623412609,-0.029343929141759872,0.05026554688811302,-0.08862229436635971,-0.048374589532613754,0.05596601963043213,-0.008682736195623875,0.08544918894767761,-0.01173983234912157,-0.07960017770528793,0.016177287325263023,-0.08928270637989044,-0.018813610076904297,0.061250586062669754,0.010720774531364441,0.022449947893619537,0.03437289968132973,0.05191653594374657,0.010141870938241482,0.08842648565769196,0.04479890689253807,0.026043960824608803,-0.025342917069792747,0.10543151944875717,0.027480950579047203,-0.032166603952646255,0.04198989272117615,0.1842707246541977,-0.037254903465509415,-0.007177174557000399,-0.02061893232166767,-0.032059382647275925,0.03344477340579033,0.046041835099458694,0.05043097585439682,-0.09587348252534866,0.029414575546979904,-0.006825522053986788,-0.019208639860153198,0.10144667327404022,-0.013309404253959656,-0.009432421997189522,0.04099901393055916,-0.04566357284784317,-0.03767995908856392,0.0257191751152277,-0.008808603510260582,-0.05625905096530914,0.05675511062145233,-0.04660419002175331,0.08046623319387436,0.03801139071583748,0.02228500507771969,-0.06946966797113419,1.2880741998654227e-33,0.12505178153514862,-0.1083928644657135,-0.060698315501213074,-0.014651590026915073,0.09621144831180573,0.04585287719964981,-0.0544433668255806,0.007678509224206209,0.0013398682931438088,0.050539951771497726,-0.06644783914089203,-0.030126802623271942,0.015367697924375534,-0.028102992102503777,0.049269456416368484,-0.04982486367225647,0.15105491876602173,0.004028694704174995,0.007967405021190643,0.0019760974682867527,-0.060540616512298584,0.07631190866231918,-0.01824737712740898,-0.0034321288112550974,-0.07844028621912003,0.04833172634243965,0.04052063450217247,-0.004328025970607996,-0.16007837653160095,0.06534464657306671,-0.08248919993638992,-0.0012381140841171145,-0.09671525657176971,-0.06438276171684265,0.014645544812083244,0.03720179572701454,-0.02288803830742836,0.052246399223804474,-0.08296806365251541,0.03763537481427193,0.06324885040521622,-0.07163653522729874,0.016098886728286743,-0.014380083419382572,-0.010945693589746952,-0.08696819096803665,-0.04697667062282562,0.03449471667408943,0.005960933864116669,-0.00030977188725955784,-0.013892332091927528,-0.05450499802827835,-0.03392525017261505,-0.05796315148472786,0.008030688390135765,0.10438902676105499,-0.022286497056484222,-0.019242113456130028,0.03880380094051361,-0.006286997348070145,-0.031828273087739944,-0.029057353734970093,0.04660900682210922,-0.06967531144618988,0.004967379849404097,0.0330258347094059,0.0014161239378154278,-0.008865528739988804,0.03682401776313782,-0.004356373567134142,0.018091212958097458,0.004983041435480118,-0.03290121629834175,0.03898020088672638,-0.0010336959967389703,0.11124731600284576,-0.01583283580839634,-0.008887656033039093,0.06246587261557579,-0.03425201028585434,-0.03431752696633339,0.017249159514904022,-0.07344234734773636,0.015688329935073853,0.01731950230896473,0.03284917771816254,0.09588364511728287,-0.0004294211103115231,-0.013472969643771648,-0.05397562310099602,0.059291936457157135,0.044271063059568405,0.02760857716202736,-0.02646622434258461,0.008502998389303684,-2.369953122638435e-8,0.035929206758737564,0.08286839723587036,-0.04809565097093582,-0.028165241703391075,-0.007581216748803854,-0.07375103235244751,0.004358432721346617,0.019695833325386047,-0.072745680809021,0.14884646236896515,0.09093939512968063,0.038060981780290604,0.04774242639541626,-0.026344163343310356,0.09476708620786667,0.009129265323281288,0.027895521372556686,-0.04106973856687546,-0.09792967140674591,-0.03030635416507721,0.03316321223974228,-0.023203080520033836,0.05225052684545517,0.0038065204862505198,-0.07949822396039963,0.028639981523156166,0.06412623077630997,-0.030282583087682724,0.021358469501137733,0.032746896147727966,0.017884623259305954,0.07045018672943115,-0.09829003363847733,-0.025412462651729584,0.05154256522655487,-0.07582475244998932,-0.021341096609830856,-0.033574722707271576,0.05278903618454933,0.00522148422896862,0.023337356746196747,-0.1366230994462967,-0.004998650401830673,0.07865799218416214,0.049069978296756744,-0.002515988890081644,0.05420439690351486,-0.01911129057407379,0.009027466177940369,-0.059385035187006,-0.04717852547764778,-0.054321784526109695,0.012465878389775753,-0.010045260190963745,0.008691120892763138,-0.036044519394636154,0.025618981570005417,-0.06456132978200912,-0.05575920268893242,-0.017366787418723106,0.02555437758564949,-0.0833330973982811,-0.011898742988705635,0.03601972013711929]},{"text":"Tell Nicola to bring his bag here after him.","book":"Down and Out in Paris and London","chapter":41,"embedding":[0.06653804332017899,0.08997299522161484,-0.004261719062924385,0.00033434282522648573,0.07898883521556854,-0.02172229439020157,0.1332814246416092,-0.026687927544116974,-0.047182682901620865,-0.014376123435795307,-0.06404067575931549,-0.030537506565451622,-0.028426960110664368,0.09176553785800934,-0.017574869096279144,0.004174310248345137,-0.029576867818832397,-0.0076387799344956875,-0.03314117342233658,0.049523282796144485,-0.01143355667591095,0.02556733787059784,0.08270756155252457,0.043512020260095596,-0.0360444150865078,0.06483530253171921,0.06218956410884857,-0.02609284780919552,0.00684075802564621,-0.00743644405156374,0.01790483482182026,-0.08410068601369858,-0.03053470328450203,0.03291581943631172,-0.019525863230228424,0.06421864032745361,0.019560793414711952,0.051676973700523376,-0.01741744950413704,-0.034042924642562866,0.01763013005256653,-0.10792078822851181,-0.0688585638999939,0.06887168437242508,0.04293425753712654,0.03956371173262596,-0.013632101938128471,-0.012560653500258923,0.10586676001548767,-0.0183123592287302,-0.025610489770770073,0.011585087515413761,-0.06480778753757477,-0.05932702496647835,-0.028094755485653877,0.06101221218705177,0.10016640275716782,-0.03356560692191124,-0.01683342643082142,-0.021588869392871857,-0.007522473577409983,0.0035953086335211992,-0.06485730409622192,0.010047607123851776,0.04009302332997322,0.001975625054910779,-0.023261750116944313,0.017578527331352234,0.013659926131367683,0.10844917595386505,0.0023719065356999636,0.021447116509079933,-0.018365371972322464,-0.018143173307180405,-0.010640240274369717,-0.00652064336463809,0.0213216133415699,-0.023571833968162537,0.07452912628650665,0.016652891412377357,-0.05179788917303085,-0.020268062129616737,-0.020768433809280396,0.04389914870262146,-0.015705415979027748,-0.010293068364262581,0.007889004424214363,-0.1672440767288208,-0.003674177685752511,0.005252469796687365,-0.021295515820384026,-0.06431557983160019,-0.03555407375097275,0.09892295300960541,-0.06749489158391953,0.013344710692763329,-0.0496973916888237,0.07776186615228653,-0.053397927433252335,0.06993366777896881,-0.050240401178598404,0.09515947848558426,-0.06334958225488663,0.04516565427184105,-0.050457995384931564,-0.016464464366436005,0.005765438545495272,-0.113119937479496,-0.003161621978506446,0.02025180123746395,-0.023822037503123283,-0.013614636845886707,-0.022729095071554184,-0.03486967086791992,0.019672077149152756,0.13190190494060516,0.025190938264131546,0.07399114221334457,-0.04963569715619087,-0.0058794403448700905,-0.008626388385891914,0.08962862193584442,-0.039959169924259186,0.1069750115275383,0.025193093344569206,-0.036651771515607834,0.005953806918114424,-3.6755845926350846e-33,-0.016195686534047127,-0.02012111432850361,0.03612135350704193,0.09321906417608261,0.014622075483202934,0.04325532168149948,-0.044607046991586685,-0.0348980687558651,-0.033456120640039444,0.0027043423615396023,0.022214850410819054,-0.07112707197666168,0.037083398550748825,-0.050260964781045914,-0.08789581060409546,0.038484517484903336,0.06005936115980148,-0.07166951894760132,0.0007807657239027321,-0.021713532507419586,-0.052368082106113434,-0.05093616247177124,0.04852493479847908,0.011909768916666508,0.06360165774822235,-0.009466901421546936,0.0023946096189320087,0.01886298507452011,0.055271927267313004,0.03307197242975235,-0.04397118091583252,0.0708569809794426,-0.0313272625207901,0.07842686772346497,-0.1007365882396698,0.0008313542348332703,-0.02608591876924038,-0.019741566851735115,-0.038414888083934784,0.014141433872282505,-0.033185023814439774,-0.016303932294249535,0.006695326883345842,0.008872202597558498,-0.08717469871044159,-0.08631817251443863,0.08001293987035751,0.014733048155903816,0.04171609506011009,-0.010701249353587627,0.008129579946398735,0.008121433667838573,-0.010889118537306786,-0.017224282026290894,-0.011941191740334034,-0.09660813212394714,0.053597867488861084,0.03635339066386223,0.12057209014892578,-0.042981699109077454,0.12235407531261444,0.042407356202602386,0.023424802348017693,0.06645116955041885,0.057241201400756836,-0.1015857607126236,-0.01848314143717289,-0.005494960583746433,-0.006541180890053511,-0.007636203896254301,-0.026845160871744156,0.08806092292070389,-0.04934089258313179,-0.012539020739495754,-0.04190349951386452,-0.029410818591713905,-0.061969418078660965,0.06183261051774025,0.03830788657069206,-0.02628612145781517,0.019994886592030525,-0.07006832957267761,0.023738687857985497,0.03907143697142601,0.007941179908812046,-0.003972528502345085,0.02627999521791935,-0.07160038501024246,-0.020740395411849022,0.030166178941726685,-0.053860221058130264,-0.020100008696317673,0.06880392879247665,-0.0762300118803978,-0.033173948526382446,4.873615649721032e-34,0.1181948259472847,-0.01863374561071396,-0.02377161756157875,0.07045909762382507,0.010866750031709671,-0.00498199462890625,-0.04785499349236488,-0.08424092084169388,0.03089754469692707,0.029645957052707672,-0.056579284369945526,-0.02445303276181221,0.0756538137793541,0.018916040658950806,0.07360763102769852,0.057154085487127304,-0.013699106872081757,-0.02263699285686016,-0.03041074052453041,0.013765267096459866,0.01663143001496792,0.0023813084699213505,0.0048326291143894196,0.04833167791366577,-0.10519424825906754,-0.048507846891880035,0.043874554336071014,0.0016184892738237977,-0.12917837500572205,-0.029894404113292694,-0.11371953785419464,-0.09979771077632904,-0.03197263926267624,0.019399266690015793,0.01099865511059761,0.03845004364848137,0.017992235720157623,-0.005435456987470388,0.032006051391363144,0.04888240993022919,0.003933706786483526,-0.03529223054647446,-0.04506835713982582,0.003612191416323185,0.0007317632553167641,-0.0710521787405014,0.030676009133458138,0.019914623349905014,0.03175121545791626,0.05973442271351814,0.045086219906806946,0.02770662121474743,-0.11348454654216766,-0.02768516167998314,-0.024582205340266228,0.05225106701254845,-0.05834902077913284,-0.078367218375206,0.0920826643705368,-0.05864090472459793,-0.012653251178562641,-0.04686847701668739,-0.0259188674390316,-0.031100036576390266,-0.01071824412792921,0.03113185614347458,-0.07119562476873398,0.06730148196220398,0.037639982998371124,0.03555143252015114,-0.016462428495287895,-0.08252032101154327,0.03531601279973984,-0.021962160244584084,0.05141911655664444,0.03566528484225273,0.13349056243896484,0.040391262620687485,0.09000556170940399,-0.04706311225891113,0.018065497279167175,-0.09339389950037003,0.028010720387101173,0.023772194981575012,0.09961891919374466,-0.015088656917214394,0.044632721692323685,-0.044110845774412155,-0.020731821656227112,-0.001055156346410513,0.033161383122205734,0.0021318159997463226,0.048763174563646317,-0.015799274668097496,0.056537240743637085,-1.7872567426024943e-8,-0.01098705269396305,-0.0709487646818161,-0.03553810343146324,0.043493032455444336,0.09170964360237122,0.06301059573888779,-0.012377972714602947,0.00036000856198370457,-0.09154912084341049,0.08262287825345993,0.0024929975625127554,0.03414875641465187,0.009336397983133793,-0.04169037565588951,0.025856930762529373,0.019267132505774498,-0.04177870228886604,-0.009485479444265366,-0.07693153619766235,0.0457751527428627,-0.07865890860557556,0.020469943061470985,0.03473585098981857,0.01320910919457674,-0.0015768634621053934,-0.013460427522659302,0.004849425051361322,0.00047758431173861027,0.05810963734984398,0.056171905249357224,-0.02830325812101364,-0.04118625819683075,-0.09800197184085846,-0.024523574858903885,-0.038942329585552216,-0.0440676212310791,0.02538244053721428,0.04231259971857071,0.06583782285451889,0.009334311820566654,-0.05347711965441704,-0.04518509656190872,-0.039793916046619415,0.0019372469978407025,-0.04093439131975174,0.020478323101997375,-0.04265885800123215,0.02695496566593647,-0.09312461316585541,0.0098331980407238,-0.0258781798183918,0.013476899825036526,0.11977039277553558,0.04105095937848091,0.069032683968544,0.030448835343122482,-0.0018020711140707135,-0.06593487411737442,-0.018462931737303734,0.07897687703371048,-0.11473165452480316,-0.024536697193980217,-0.05613289400935173,-0.053576596081256866]},{"text":"He is the man of the adventure in Raina’s room.","book":"Down and Out in Paris and London","chapter":41,"embedding":[-0.03690429776906967,0.04980112984776497,-0.04863743856549263,-0.0019679670222103596,-0.06347665935754776,0.014463966712355614,0.1364666372537613,-0.05284658074378967,0.008636252023279667,0.01559734158217907,-0.041707027703523636,-0.04135356843471527,-0.028626712039113045,0.025822971016168594,0.06925680488348007,-0.010784352198243141,0.006058569066226482,0.0009089645463973284,0.03473995625972748,-0.02028525620698929,0.01413082517683506,0.00907016359269619,0.02907581813633442,0.021453866735100746,-0.08378756046295166,0.016385015100240707,0.08404972404241562,0.038856685161590576,0.03684069588780403,-0.0893787294626236,0.030253738164901733,0.055280059576034546,0.03524968773126602,-0.050476085394620895,0.035478778183460236,0.10578519105911255,0.019810453057289124,-0.047909095883369446,0.020447812974452972,-0.020147958770394325,0.017398668453097343,0.10204751789569855,-0.051429539918899536,-0.001431620679795742,-0.016547320410609245,-0.09726522117853165,-0.001916556037031114,-0.06036807969212532,0.0765167698264122,0.05637911334633827,0.03330551087856293,0.08437052369117737,0.013812792487442493,-0.036690518260002136,0.015209132805466652,0.027040742337703705,0.08687068521976471,-0.029174193739891052,0.02280639484524727,-0.07266315817832947,0.03566966578364372,0.0052942028269171715,-0.0026380072813481092,0.1037193238735199,0.03258281573653221,-0.08493258059024811,-0.03959863260388374,0.012018679641187191,-0.048822563141584396,-0.08751536905765533,0.015394513495266438,0.01113403681665659,0.056023865938186646,-0.0007938644266687334,-0.02496761456131935,-0.0695805549621582,-0.023970622569322586,-0.014178315177559853,0.027306487783789635,0.06573859602212906,0.019427895545959473,-0.08799468725919724,0.004785924218595028,0.05058929696679115,-0.0009310105815529823,0.03716448321938515,-0.014243408106267452,-0.09347856044769287,-0.019299698993563652,-0.014551941305398941,0.012996625155210495,-0.06463022530078888,-0.0018962085014209151,0.073093481361866,0.018556086346507072,0.09167046844959259,-0.006746326107531786,-0.01395305898040533,-0.08381762355566025,0.03768260404467583,0.05282691866159439,-0.09094102680683136,0.061987169086933136,-0.04391299560666084,-0.023965172469615936,-0.012036685831844807,0.030338965356349945,-0.02750399149954319,0.042218565940856934,-0.03306332603096962,-0.08142701536417007,-0.09063894301652908,0.057752031832933426,0.02262989617884159,0.06352417916059494,-0.04155343025922775,-0.03443969786167145,0.02703552506864071,0.001342981238849461,0.05124589055776596,0.05652542784810066,0.05652935057878494,0.05666123703122139,0.04669208452105522,-0.0055816322565078735,-0.01817811280488968,0.02085677906870842,-7.733046157550052e-33,0.0903611108660698,-0.010966594330966473,0.01184862107038498,0.01396405603736639,0.10937278717756271,0.01852773129940033,0.016027402132749557,-0.004649352747946978,-0.027537724003195763,-0.040137894451618195,-0.05705230310559273,-0.018169749528169632,-0.07027402520179749,-0.0259839054197073,-0.0445135273039341,0.05384218320250511,-0.00023325320216827095,-0.03331452235579491,0.008825843222439289,-0.031900886446237564,-0.00788679625838995,0.0045652627013623714,-0.039961282163858414,-0.012785539962351322,0.06673891842365265,0.07496462762355804,0.10327034443616867,-0.01720331981778145,0.05717787146568298,0.02142299711704254,-0.10212316364049911,0.07460635155439377,0.01549090351909399,-0.007407821714878082,0.05331548675894737,-0.00851384922862053,-0.05088618025183678,0.01819189079105854,-0.06443926692008972,0.025630423799157143,-0.0034217487554997206,0.0171266607940197,-0.03226552903652191,-0.0032062733080238104,-0.12056238949298859,-0.07167434692382812,0.04990559071302414,0.04309438169002533,0.0668553039431572,0.000439582800026983,0.019369302317500114,-0.00026582751888781786,-0.07100777328014374,-0.10494180768728256,-0.0008892268524505198,-0.01447220891714096,0.059326909482479095,0.00814540684223175,0.12983426451683044,0.039597537368535995,0.02590283192694187,0.06251907348632812,0.09293490648269653,0.00119206088129431,0.03188967704772949,-0.07830297946929932,-0.08731521666049957,-0.012736202217638493,-0.0021000783890485764,-0.03200313076376915,-0.07918516546487808,-0.05401608720421791,0.007776819169521332,0.045920807868242264,-0.004150764085352421,-0.10695105791091919,-0.06383834779262543,0.02880578488111496,-0.11061152070760727,0.005883729085326195,-0.07659263908863068,0.02783910743892193,0.0538921132683754,0.047059040516614914,-0.131636843085289,-0.011116520501673222,0.02666168101131916,0.00789905060082674,-0.004146462306380272,0.04404909908771515,0.09684991091489792,0.005399858579039574,0.0617322102189064,-0.0439334474503994,0.008641109801828861,2.5178510430987603e-33,-0.007554000709205866,-0.06219625845551491,-0.019047154113650322,-0.08323009312152863,0.09539363533258438,-0.026258332654833794,-0.03376072272658348,0.06492041051387787,0.059350818395614624,0.02042287401854992,-0.10759563744068146,0.11125492304563522,0.002029141178354621,-0.013688094913959503,0.035394664853811264,0.059399500489234924,0.06740818917751312,-0.017183518037199974,-0.0432308129966259,-0.0346950888633728,0.05057847499847412,-0.036857280880212784,-0.01698356121778488,-0.11744805425405502,-0.03783486410975456,-0.047048721462488174,0.0725487768650055,0.03559887036681175,-0.040297169238328934,0.022534064948558807,-0.058382920920848846,-0.0559491403400898,-0.11955323815345764,0.0488613061606884,-0.018483171239495277,-0.010430109687149525,0.004226988647133112,-0.022331543266773224,-0.06649302691221237,-0.04918334260582924,0.06314948946237564,-0.029466528445482254,0.016000598669052124,0.04779526963829994,0.05412132665514946,-0.019569212570786476,-0.001065147458575666,0.050136223435401917,-0.08274902403354645,0.020062671974301338,-0.06671933829784393,0.01641540229320526,0.008442549034953117,-0.016036778688430786,0.05060749128460884,-0.04955337569117546,-0.009538360871374607,-0.046573493629693985,0.01446570921689272,0.08834010362625122,-0.04854143038392067,-0.027976471930742264,0.034304309636354446,0.07402202486991882,-0.045687075704336166,0.007127795834094286,-0.09168187528848648,-0.019584814086556435,-0.023207027465105057,-0.0037373972591012716,0.025354992598295212,-0.09261481463909149,-0.07554249465465546,0.017949258908629417,0.018429210409522057,0.04315185546875,-0.03873789682984352,0.020021533593535423,0.06019678711891174,-0.1456552892923355,-0.03471328690648079,-0.0344608798623085,-0.0764039158821106,-0.010631588287651539,-0.009259544312953949,-0.02998374216258526,0.01204945333302021,-0.011753050610423088,-0.031710799783468246,0.025218553841114044,0.043328870087862015,-0.05002106726169586,0.030329013243317604,-0.07952630519866943,0.004033255856484175,-2.0836584013750326e-8,-0.0852183923125267,-0.03878021612763405,0.00319112092256546,-0.09330721944570541,-0.026738828048110008,0.013650661334395409,0.024200228974223137,0.020763207226991653,0.06029382348060608,0.005626503378152847,0.08822683990001678,0.03480244055390358,0.124967560172081,0.05013604089617729,0.07989337295293808,0.06154697760939598,0.07506708800792694,-0.02682441845536232,-0.025326497852802277,0.0036427793093025684,0.07364453375339508,-0.028080269694328308,0.024668119847774506,-0.010060025379061699,0.059339623898267746,0.0538729690015316,-0.060075778514146805,-0.014463203027844429,-0.010480890981853008,0.09356945753097534,0.03564303368330002,0.07929808646440506,-0.03658493235707283,-0.04907798394560814,-0.004618026781827211,0.031091634184122086,0.028901513665914536,0.04163147136569023,-0.012083159759640694,-0.0573449432849884,0.011517565697431564,-0.0012823750730603933,0.006621279288083315,-0.031214196234941483,0.0015310439048334956,0.03335384279489517,0.07121308892965317,0.03422350436449051,0.0052907420322299,-0.04515876621007919,-0.0935577005147934,-0.039607904851436615,0.04288428649306297,-0.006886318325996399,0.03257518261671066,-0.06343990564346313,-0.026726530864834785,-0.04988137260079384,-0.03952612727880478,-0.056067485362291336,0.007666760589927435,-0.0075166248716413975,-0.03367764502763748,-0.034110765904188156]},{"text":"If he discovered our secret, he would never forgive me; and my daughter’s life would hardly be safe.","book":"Down and Out in Paris and London","chapter":41,"embedding":[-0.057492177933454514,0.09175167977809906,0.019498655572533607,0.03584420680999756,0.08156095445156097,-0.05789266154170036,0.03993287310004234,-0.05192036181688309,0.09612192958593369,0.06561283767223358,0.035671673715114594,0.022231239825487137,0.04531427472829819,0.022312358021736145,0.032201215624809265,-0.004693795461207628,-0.006924085784703493,0.015236752107739449,-0.04879099875688553,-0.0796051025390625,0.03952554240822792,0.03632746636867523,0.025321485474705696,-0.05729134753346443,-0.01769317500293255,0.03435390442609787,0.03325449302792549,0.040410365909338,-0.08712118864059448,0.0021088863722980022,-0.00014929857570677996,-0.06203358247876167,0.023503873497247696,-0.0025524087250232697,-0.06601785123348236,-0.04635344073176384,-0.020004643127322197,0.02179158851504326,0.060606785118579865,-0.028700215741991997,-0.01709556020796299,0.059516772627830505,0.022743796929717064,0.04362455755472183,-0.029978707432746887,0.06643522530794144,0.014356940984725952,-0.025771087035536766,-0.0019058575853705406,-0.023575134575366974,-0.07005149871110916,-0.02912331558763981,-0.07553128898143768,-0.0006518083391711116,-0.026643559336662292,-0.006577980704605579,-0.011159454472362995,0.024097368121147156,-0.0026616721879690886,0.06968403607606888,-0.019939463585615158,-0.03284899890422821,-0.012609568424522877,0.003617906244471669,-0.006069978699088097,0.07766933739185333,-0.019999360665678978,0.006210040766745806,0.09263787418603897,0.053668197244405746,0.027405336499214172,0.023215752094984055,-0.01697324402630329,-0.04738685116171837,-0.10941547155380249,-0.013538460247218609,0.027620365843176842,-0.017681462690234184,0.051942192018032074,-0.0252694059163332,-0.053256552666425705,0.036094002425670624,0.018235258758068085,0.006840551272034645,0.0032567414455115795,0.023387763649225235,0.11336212605237961,-0.1144305169582367,0.007183403708040714,0.028061090037226677,-0.056699398905038834,-0.15468955039978027,0.038984980434179306,-0.022015905007719994,-0.06908197700977325,-0.03995674476027489,-0.07162851095199585,0.040749479085206985,-0.1711711883544922,-0.04298332706093788,-0.03220551460981369,0.06681311130523682,-0.008298691362142563,-0.029727257788181305,0.02226560190320015,0.07318075746297836,0.02211323194205761,0.01481979712843895,0.054512869566679,0.045640211552381516,0.061280008405447006,-0.00026701862225309014,0.02611386403441429,0.021954746916890144,0.06265170872211456,0.00006635156023548916,0.08488326519727707,0.0049531059339642525,-0.06956009566783905,0.018703779205679893,-0.03127554804086685,0.06248527765274048,0.06602394580841064,0.09796756505966187,-0.11463838070631027,-0.05441645160317421,-0.027732372283935547,-3.2008255668829945e-33,-0.00550531130284071,0.04764959216117859,0.03022022359073162,0.01588260941207409,0.045593664050102234,0.1132841557264328,0.022548634558916092,0.002877875231206417,0.01067871693521738,0.046320222318172455,0.032618533819913864,-0.019884996116161346,-0.018629539757966995,-0.008689556270837784,-0.07946930080652237,0.13899311423301697,-0.01345075387507677,0.0031167184934020042,0.08584026992321014,-0.06109696626663208,-0.03598139435052872,-0.03594982251524925,0.006277385167777538,-0.10653074830770493,0.09578969329595566,-0.02976188063621521,0.07630490511655807,-0.021142655983567238,0.02213669754564762,-0.000691594963427633,-0.07897766679525375,0.12764674425125122,0.12186513841152191,0.011830789968371391,-0.026336120441555977,-0.0017146472819149494,0.002586391754448414,-0.062217410653829575,0.005349678453058004,0.008268027566373348,0.002341338898986578,-0.05861937627196312,0.0038857359904795885,-0.053549982607364655,-0.0355241522192955,-0.05425093322992325,-0.029477858915925026,0.09593337774276733,0.08666472882032394,-0.04364960640668869,-0.058192599564790726,0.02085384912788868,-0.0008890816243365407,-0.12303174287080765,-0.04241285100579262,0.03847957029938698,0.005158769432455301,0.00275796907953918,0.02930685319006443,0.07029104232788086,-0.03562983125448227,-0.04679962620139122,0.029296036809682846,-0.039562467485666275,-0.11439066380262375,-0.026990631595253944,0.0068672047927975655,-0.08971355855464935,0.022325772792100906,-0.04476238414645195,-0.07882310450077057,-0.010627255775034428,-0.04453018307685852,-0.06802879273891449,-0.07995260506868362,0.020180892199277878,-0.014591023325920105,0.056969817727804184,0.05792628601193428,-0.0828833058476448,-0.014738564379513264,0.004584646318107843,0.016755694523453712,0.07727954536676407,-0.020586581900715828,-0.025200240314006805,0.03545493260025978,-0.017193663865327835,-0.09703341871500015,0.08864407241344452,-0.020424509420990944,0.037389643490314484,0.06447746604681015,-0.01816326379776001,-0.02252219431102276,-4.302468658595406e-34,0.03640633821487427,-0.04217732697725296,0.07533682882785797,-0.03193509206175804,0.06467044353485107,-0.06824753433465958,-0.11397421360015869,0.014506806619465351,0.013669359497725964,0.07860598713159561,0.05295088142156601,0.04736809805035591,0.02576598897576332,-0.009581908583641052,-0.006589293945580721,-0.011905519291758537,0.027473444119095802,0.009896934032440186,-0.0260796956717968,-0.014540049247443676,-0.05378899723291397,0.017724372446537018,-0.04760352149605751,0.09842109680175781,0.0502178892493248,-0.0292537659406662,-0.0035743501503020525,-0.014807588420808315,-0.029132382944226265,0.06965416669845581,0.011286972090601921,0.0172556284815073,0.026874590665102005,0.009094989858567715,-0.012373545207083225,-0.03922160342335701,-0.06397754698991776,-0.023371480405330658,0.019278163090348244,-0.01783524826169014,-0.045805733650922775,0.0044809007085859776,0.006501686293631792,0.00930288340896368,0.007615388371050358,-0.02470097504556179,0.06982054561376572,0.0576358400285244,0.00818269606679678,0.08571310341358185,0.022828325629234314,-0.023535124957561493,-0.04219593480229378,-0.08474937826395035,-0.035706497728824615,0.0734352320432663,0.01463758572936058,-0.005564983934164047,0.04333694279193878,-0.01753733679652214,-0.004238672088831663,0.0008743274374864995,0.025204312056303024,0.010146043263375759,-0.0018322033574804664,0.0592997744679451,-0.09427285194396973,0.04674366116523743,-0.07566939294338226,0.011485418304800987,0.024137364700436592,0.006849594879895449,0.013238255865871906,-0.012212046422064304,0.005106483120471239,-0.08420133590698242,-0.08727383613586426,-0.05857998505234718,-0.007712915539741516,0.0848604068160057,0.04823024198412895,0.0027395200449973345,0.03667810186743736,-0.050573959946632385,0.017433185130357742,-0.07753659039735794,0.010136517696082592,-0.04162777587771416,0.018047241494059563,-0.045140668749809265,0.006620610598474741,-0.07145600020885468,-0.01076458115130663,-0.10365729033946991,0.05820596218109131,-2.2753873452074913e-8,0.04351386800408363,0.01420630607753992,-0.019297536462545395,-0.0581832230091095,-0.003336981637403369,0.014788827858865261,-0.022946711629629135,-0.049246896058321,-0.06318951398134232,0.03968686982989311,0.019135398790240288,0.0223843976855278,0.008773195557296276,0.032419346272945404,0.049133896827697754,-0.0029423795640468597,-0.039992690086364746,-0.09153243899345398,0.012610770761966705,0.027111778035759926,0.0017995084635913372,0.08626528084278107,-0.05823998153209686,-0.023257769644260406,-0.012068985030055046,-0.0018158224411308765,0.08826342970132828,-0.0005106470198370516,0.03225992992520332,0.07473769038915634,-0.0018300778465345502,-0.12804748117923737,-0.030837155878543854,0.1402939409017563,-0.08048208802938461,-0.025656981393694878,-0.03786558285355568,0.031182074919342995,0.031584225594997406,0.0362919382750988,0.02705453708767891,0.05009850487112999,0.02266685850918293,0.04436182230710983,-0.03565989062190056,0.015004300512373447,0.06293535977602005,-0.0134628526866436,-0.10426589846611023,-0.020435774698853493,-0.0729030966758728,0.046300385147333145,0.00026179812266491354,0.006024403963238001,0.11727564036846161,-0.03373809903860092,-0.029285745695233345,-0.025909017771482468,-0.08155258744955063,0.016776613891124725,0.06929135322570801,-0.03504449501633644,-0.033428266644477844,-0.07043221592903137]},{"text":"You will leave me your address.","book":"Down and Out in Paris and London","chapter":42,"embedding":[-0.012618291191756725,0.00733105419203639,0.07351341098546982,0.01618815027177334,0.03305162861943245,-0.02052118256688118,0.02633770927786827,-0.04313073307275772,0.017850220203399658,-0.09534547477960587,-0.05780082195997238,-0.029195239767432213,0.02171114832162857,-0.06622827798128128,-0.02083156444132328,0.07656506448984146,0.014775147661566734,-0.007509554736316204,0.01381100807338953,0.062100086361169815,-0.03744421899318695,0.07214252650737762,0.04850073903799057,-0.02778960019350052,-0.04222475364804268,-0.031198939308524132,0.05760946869850159,0.03603118658065796,-0.06277379393577576,-0.06859596073627472,0.03328748792409897,0.02647768333554268,0.006938662845641375,-0.001265712664462626,0.06911661475896835,0.02040519006550312,-0.03793087229132652,-0.08006027340888977,0.05147630721330643,0.03941504284739494,-0.02601209282875061,-0.034656643867492676,0.0527438148856163,-0.011383737437427044,0.051566533744335175,0.056176550686359406,-0.08441353589296341,0.08498264849185944,0.10512927174568176,0.015053178183734417,-0.06042421981692314,0.033669546246528625,-0.034937985241413116,0.03338651731610298,0.04505568742752075,-0.026504436507821083,0.06928126513957977,-0.03426968306303024,-0.0214760210365057,0.03897278383374214,0.05989868938922882,0.05503789708018303,-0.06777338683605194,0.045668795704841614,-0.011012984439730644,-0.015598741360008717,-0.006996499840170145,0.058594487607479095,-0.01900520920753479,0.03418711572885513,-0.11161100119352341,0.037066880613565445,-0.051342882215976715,0.03951749578118324,0.01872413232922554,-0.021399056538939476,-0.00016381300520151854,-0.06698933988809586,0.04952332749962807,0.09982798248529434,-0.006630416493862867,-0.08792773634195328,-0.007397864013910294,-0.02252434752881527,-0.07137005776166916,-0.04297526180744171,0.052607350051403046,0.012841365300118923,0.018864456564188004,-0.016426721587777138,0.005283687729388475,-0.013605022802948952,0.007104555610567331,-0.05256994441151619,-0.012101253494620323,-0.070709228515625,-0.020136279985308647,-0.05962182208895683,-0.13579651713371277,0.07946208119392395,0.06680165231227875,-0.013881360180675983,-0.04820004850625992,0.02045975625514984,0.044837385416030884,0.0031646741554141045,-0.03694383054971695,0.07380085438489914,-0.03169595077633858,0.006433352828025818,0.015281318686902523,-0.0470941998064518,-0.1216549426317215,0.009239492937922478,0.03343332186341286,0.048131298273801804,0.0330522395670414,0.08803912997245789,0.0842418447136879,-0.03465396538376808,0.07226701080799103,-0.04085114598274231,-0.07354789227247238,0.014833086170256138,-0.05344366654753685,-0.11322135478258133,0.005829817149788141,-7.788748426731704e-33,-0.031712427735328674,-0.03201906755566597,0.007675621192902327,0.049201395362615585,0.07440885156393051,-0.01889783889055252,-0.08898652344942093,0.00979561172425747,-0.007809621747583151,-0.029072484001517296,0.019324203953146935,-0.01862572692334652,0.06130561977624893,0.019809426739811897,-0.011057342402637005,0.08987843990325928,0.07905610650777817,-0.01137787476181984,0.0009600660996511579,-0.019814463332295418,-0.010152631439268589,0.019646689295768738,-0.005233369767665863,0.04929518327116966,0.003367299446836114,-0.032456785440444946,-0.03263618424534798,0.001958012580871582,0.04771295562386513,0.018303118646144867,-0.03315459564328194,0.016271626576781273,-0.017493251711130142,-0.018598375841975212,0.05843312665820122,0.0216263048350811,-0.07979876548051834,-0.11077503114938736,-0.03816888853907585,-0.04970115050673485,0.0018408168107271194,0.02952667884528637,-0.041397858411073685,0.054932571947574615,0.04068304970860481,-0.00479630334302783,0.1335170716047287,0.040335267782211304,0.10318375378847122,-0.023015769198536873,-0.008782198652625084,-0.002778296358883381,-0.10481194406747818,0.05064404010772705,-0.055575016885995865,-0.02369033545255661,-0.03013410046696663,-0.015602681785821915,0.08774059265851974,-0.018112320452928543,-0.04052983596920967,0.03895530849695206,-0.07157786190509796,0.10008031129837036,-0.035399094223976135,-0.09853995591402054,-0.03772212564945221,-0.04758293926715851,-0.017903005704283714,0.06647597253322601,0.016756074503064156,0.02316589280962944,0.04471849277615547,-0.019487079232931137,-0.07042489945888519,0.00671378243714571,-0.05946025997400284,0.03484763950109482,-0.004046984016895294,0.009452744387090206,0.09339503943920135,0.12366394698619843,-0.09469843655824661,0.020181307569146156,0.14932887256145477,-0.0027288119308650494,0.0735669657588005,0.0031026205979287624,-0.009696876630187035,-0.007065445650368929,0.0046664997935295105,-0.050610050559043884,0.016894230619072914,-0.060086123645305634,-0.10183843970298767,3.7911018918583294e-33,0.008972451090812683,-0.0019332035444676876,-0.003650437807664275,0.009927854873239994,-0.10018599033355713,-0.062122892588377,0.09236770868301392,0.14603357017040253,0.018947312608361244,0.024131841957569122,-0.11692792177200317,-0.006805884651839733,0.028965115547180176,0.03355535864830017,0.06622163206338882,0.00839252956211567,0.07850107550621033,-0.0033681727945804596,-0.13496020436286926,-0.026420004665851593,-0.08888314664363861,0.07518897205591202,-0.05249621719121933,-0.011759376153349876,0.007524676155298948,-0.01214128639549017,0.10529456287622452,0.05901148170232773,-0.05751286819577217,0.00468540471047163,0.005644154269248247,-0.012542198412120342,-0.06506361067295074,0.03984362632036209,0.01850803755223751,-0.07610783725976944,-0.02757691778242588,0.028873464092612267,-0.0007936756010167301,0.00003401958747417666,0.00456734374165535,0.006146934349089861,0.06489506363868713,0.004134286195039749,0.03821033611893654,-0.02878914587199688,0.009348238818347454,0.0420694425702095,-0.014817394316196442,0.018179651349782944,0.021089760586619377,0.02592761628329754,0.028168901801109314,-0.018478238955140114,-0.016426676884293556,-0.004155793692916632,0.014376059174537659,-0.01199488714337349,-0.008954258635640144,-0.022081773728132248,-0.014060543850064278,0.06723479181528091,-0.012785462662577629,0.034372128546237946,0.11966405063867569,-0.028500480577349663,-0.0493716225028038,0.005602739751338959,0.012715606950223446,-0.03782065957784653,0.05492042377591133,-0.03703941032290459,-0.036295413970947266,-0.02336920239031315,-0.026145322248339653,0.03779294714331627,0.0869818702340126,0.01487888302654028,-0.01465960219502449,-0.032528355717659,0.05145666003227234,0.015564406290650368,0.02055284008383751,-0.07677239924669266,0.02164601720869541,-0.059253010898828506,0.05931184068322182,-0.01830785721540451,0.010179193690419197,-0.017341597005724907,0.0027297039050608873,0.00947105698287487,0.05315817520022392,-0.10354148596525192,-0.023940380662679672,-1.8161371073688315e-8,-0.01130836270749569,-0.015222289599478245,0.115904800593853,0.008736224845051765,-0.024695532396435738,0.0330614373087883,0.004463242366909981,0.05782904475927353,-0.005190976895391941,0.06781885027885437,-0.0009194148005917668,0.041459500789642334,-0.03931517153978348,0.008835740387439728,-0.026192812249064445,0.10225559771060944,0.017452022060751915,-0.14866168797016144,-0.032245054841041565,0.01896781101822853,-0.03229020908474922,0.02242664434015751,0.021173037588596344,-0.047493066638708115,-0.00699220784008503,-0.01090132724493742,0.05320790037512779,0.09192359447479248,0.011506718583405018,-0.02305503562092781,0.02801564708352089,0.061589136719703674,-0.023018358275294304,-0.012969261966645718,-0.012915708124637604,-0.02117152139544487,-0.07193951308727264,-0.0478670634329319,-0.045743536204099655,0.04983498156070709,-0.05003643408417702,0.03165973722934723,-0.05820009112358093,-0.009007017128169537,-0.02373175323009491,-0.07521568238735199,0.0583769828081131,-0.08794771134853363,0.021665476262569427,0.01357670035213232,-0.035816993564367294,0.03334669768810272,0.01773037388920784,0.09155844151973724,0.10786998271942139,0.05309782549738884,-0.057720035314559937,-0.04102461785078049,0.0224011167883873,0.03308485448360443,0.054035358130931854,0.010716200806200504,-0.10124757140874863,-0.09049946069717407]},{"text":"I was wondering why you didn’t come in.","book":"Down and Out in Paris and London","chapter":42,"embedding":[0.053426191210746765,0.013285665772855282,0.0340244397521019,-0.006459727883338928,0.12642556428909302,-0.08201846480369568,0.031075697392225266,0.039817675948143005,0.06253873556852341,-0.03580063581466675,0.018582338467240334,-0.03723786398768425,0.014603354968130589,-0.053662385791540146,0.05777823179960251,-0.05377307906746864,0.06107773259282112,-0.18458759784698486,-0.03275712579488754,-0.004460461437702179,-0.034801118075847626,0.033299777656793594,-0.049163833260536194,0.005445055663585663,-0.04196930304169655,0.03715677559375763,-0.08186360448598862,0.09183105826377869,-0.012111225165426731,0.001265631872229278,-0.055540964007377625,0.07421715557575226,-0.011658095754683018,-0.00804837979376316,0.014406781643629074,-0.04146375507116318,0.0867379829287529,-0.04899972304701805,0.013885836116969585,-0.055434826761484146,0.034603845328092575,-0.07419073581695557,0.03351759910583496,0.03367983177304268,0.0637144073843956,-0.014382711611688137,-0.07039420306682587,-0.04380320385098457,0.08720234036445618,-0.03861194849014282,-0.03764167055487633,0.023350220173597336,-0.05314943566918373,0.025611788034439087,-0.043886784464120865,0.05335869640111923,0.024859663099050522,-0.017702201381325722,-0.03570988401770592,-0.023403147235512733,-0.04929133132100105,-0.05726896971464157,0.006153547205030918,0.07199567556381226,-0.0778479054570198,-0.06881123781204224,-0.0455051027238369,0.010898872278630733,0.0675194263458252,-0.068348228931427,0.04128800705075264,-0.02392626367509365,-0.015483872033655643,0.07424759864807129,-0.0661243125796318,-0.09384854137897491,0.017737824469804764,-0.006996701005846262,0.05944260209798813,0.05625143647193909,0.006560835521668196,0.0028975452296435833,-0.03810765966773033,0.04485151544213295,0.02739804796874523,-0.0019801422022283077,0.0844312533736229,0.015253936871886253,-0.07131034880876541,0.019332310184836388,0.06874275207519531,-0.0001102513269870542,-0.0416145995259285,0.02467450313270092,-0.07683983445167542,-0.047635696828365326,-0.029582848772406578,0.09021604061126709,-0.01478306669741869,0.14370693266391754,0.08498658984899521,0.0064789410680532455,-0.017159901559352875,-0.03126022592186928,-0.03774591535329819,-0.07133401930332184,0.0033381811808794737,-0.024076854810118675,0.07014815509319305,0.01862621307373047,-0.04458833858370781,-0.022166302427649498,0.12355268746614456,0.04623689875006676,0.018936995416879654,0.02727549895644188,0.0009795267833396792,0.020817406475543976,0.09244953095912933,0.0288257859647274,0.012262905016541481,0.006123687606304884,-0.0695662721991539,-0.008289805613458157,-0.0858292430639267,-0.08760157972574234,-0.012606373056769371,-8.067688093394048e-33,-0.02818939834833145,-0.011861395090818405,0.015036294236779213,-0.019750012084841728,0.011135442182421684,-0.014914480969309807,-0.01715126261115074,-0.030000606551766396,-0.017241833731532097,0.01922045648097992,0.005352922715246677,-0.05751621350646019,0.011570255272090435,-0.0346653014421463,-0.014035545289516449,0.11777672171592712,-0.0162227563560009,0.022500639781355858,0.030473172664642334,0.028022050857543945,0.04679403826594353,-0.014724369160830975,-0.003432267112657428,0.10682865232229233,-0.08655489236116409,0.14423459768295288,-0.022228648886084557,-0.02679443359375,0.053924281150102615,0.01817452721297741,0.0482114814221859,-0.029572147876024246,0.00027836355729959905,-0.0025900292675942183,0.10804495960474014,0.005153348669409752,0.04695181921124458,-0.12110645323991776,-0.06314112991094589,-0.1267678588628769,-0.05106433108448982,-0.013753789477050304,0.04257235303521156,0.05108914151787758,-0.02464134246110916,0.03523090481758118,0.04208066314458847,-0.04620892181992531,-0.0594993494451046,0.027461141347885132,-0.015309922397136688,0.03818643093109131,0.014202797785401344,0.07461447268724442,-0.060886118561029434,-0.029331322759389877,0.029022006317973137,-0.04704546928405762,-0.07222648710012436,0.019774051383137703,-0.08675555139780045,0.05600743368268013,-0.004960345569998026,-0.0035014068707823753,-0.0885319709777832,-0.12329363077878952,0.037691306322813034,-0.012696548365056515,0.0021721331868320704,-0.02795153111219406,-0.0028440554160624743,-0.03288394212722778,-0.09429233521223068,0.008173264563083649,0.06251128762960434,-0.016922956332564354,-0.04243628680706024,0.056544817984104156,0.04818553104996681,-0.10934822261333466,0.08128383755683899,-0.008290445432066917,-0.07712364196777344,-0.0060930741019546986,-0.008437417447566986,0.011062762700021267,0.0787046030163765,-0.06791689991950989,-0.05222418159246445,-0.02958410233259201,0.05111885070800781,0.00604649493470788,0.06433037668466568,-0.015527807176113129,-0.009530147537589073,5.053963390937545e-33,0.046587735414505005,-0.011812393553555012,0.023700518533587456,-0.11060948669910431,0.08375078439712524,0.013297987170517445,-0.010127066634595394,-0.004142141900956631,0.11724409461021423,0.0576980896294117,0.12151359766721725,0.010507890023291111,0.10253719985485077,-0.04919954389333725,0.061081673949956894,0.005021571647375822,0.019511645659804344,0.005666304845362902,0.011903055012226105,0.00987761840224266,0.04833229258656502,0.05973751097917557,0.003813583869487047,0.06783793866634369,-0.007831244729459286,0.038376420736312866,0.028740454465150833,0.06295792013406754,-0.01693105325102806,-0.018241791054606438,-0.006634602323174477,-0.019236745312809944,-0.1269250214099884,0.07202493399381638,-0.000019980978322564624,0.12834356725215912,0.07006621360778809,0.05266103893518448,-0.03815215453505516,-0.026819240301847458,-0.023480428382754326,-0.024363500997424126,0.05468595400452614,0.07600852847099304,-0.07848956435918808,0.02404005452990532,0.016329117119312286,-0.006414422765374184,0.11461704224348068,0.05442315712571144,-0.06497042626142502,0.024318255484104156,0.028684107586741447,-0.01697653718292713,-0.01645188219845295,0.020167451351881027,-0.014950264245271683,-0.005238596815615892,0.007955704815685749,0.027127468958497047,-0.04702996462583542,0.07135306298732758,-0.014862457290291786,-0.054613951593637466,-0.04091846942901611,-0.0458391010761261,-0.01049775630235672,0.03664866462349892,-0.025041308254003525,-0.02110857143998146,-0.037723224610090256,0.025750603526830673,0.0190016757696867,0.010004180483520031,0.0049414620734751225,0.001179222366772592,-0.02087000012397766,0.02799338661134243,-0.0509410984814167,-0.0538097582757473,-0.072011299431324,0.029720792546868324,-0.017991933971643448,-0.001984640723094344,0.006906363647431135,-0.019801268354058266,0.04320412874221802,-0.03874335438013077,0.02900596521794796,0.014749838039278984,0.05147397145628929,0.05818041041493416,0.13696430623531342,0.03268963843584061,-0.001660689478740096,-2.4232448936345463e-8,-0.027086099609732628,0.08433528989553452,-0.014073478057980537,0.00576920248568058,0.010813800618052483,-0.025701746344566345,-0.052791643887758255,0.02185460552573204,0.0169892106205225,0.09722061455249786,-0.07258132845163345,-0.06895215064287186,-0.054195255041122437,-0.03467884287238121,0.012350228615105152,0.002623623237013817,-0.009866194799542427,-0.014253615401685238,0.01529141329228878,-0.02393965981900692,-0.02616479992866516,-0.0016602431423962116,-0.05618959665298462,0.028480762615799904,-0.05417447164654732,0.04751168563961983,-0.06059494987130165,0.0075984857976436615,0.042775433510541916,-0.01620873436331749,0.006398293189704418,0.10580568760633469,-0.021054847165942192,0.0037696282379329205,-0.10928165912628174,0.02020633965730667,-0.015041950158774853,-0.029885899275541306,0.010094303637742996,-0.1361517459154129,-0.056238140910863876,0.01565013825893402,0.05854291468858719,0.0009832076029852033,0.007964976131916046,0.029439400881528854,-0.020597567781805992,0.06676764786243439,0.027534393593668938,0.024321284145116806,-0.04150478169322014,-0.038208890706300735,-0.024156412109732628,0.00048630076344124973,0.07110223174095154,0.026709193363785744,0.022675931453704834,-0.012083101086318493,-0.010728497989475727,0.02613251283764839,0.00223406869918108,0.01934794709086418,-0.038599561899900436,-0.01831102930009365]},{"text":"I was just asking Captain Bluntschli to stay to lunch; but he declares he must go at once.","book":"Down and Out in Paris and London","chapter":42,"embedding":[0.10045261681079865,-0.030369356274604797,-0.004709783010184765,0.057980623096227646,0.00943183433264494,0.03242182359099388,0.0761985257267952,-0.05777059495449066,-0.003131614765152335,-0.020271239802241325,0.03179755434393883,-0.03359968587756157,-0.017071936279535294,0.07706084847450256,0.059504300355911255,-0.03758051618933678,0.028352539986371994,-0.018930010497570038,0.01506558246910572,0.019442180171608925,0.031938668340444565,-0.01140743587166071,-0.041955575346946716,0.04238547384738922,0.0032823297660797834,-0.05826197564601898,0.029935790225863457,-0.010305817238986492,-0.0415889210999012,-0.045781783759593964,0.018413539975881577,0.002507117111235857,-0.036178551614284515,0.05656704679131508,0.014076145365834236,0.044356975704431534,0.04553594812750816,0.027869563549757004,0.05375095084309578,-0.02780400775372982,0.024773886427283287,-0.023546624928712845,0.03947990760207176,-0.015896670520305634,-0.08521707355976105,-0.04490000382065773,-0.1073407381772995,-0.05064808577299118,0.06677911430597305,0.02222086489200592,-0.03950292989611626,-0.015060003846883774,0.012825721874833107,-0.03045075200498104,0.06307338923215866,0.06188938766717911,0.023029860109090805,0.025933075696229935,0.03471369668841362,0.004309201613068581,-0.04184746369719505,-0.034171219915151596,-0.013213842175900936,0.05894426628947258,0.06796012818813324,0.03839246556162834,-0.06006196513772011,-0.025969188660383224,-0.02030935510993004,0.1504431664943695,-0.043494440615177155,-0.01974898763000965,0.025553282350301743,-0.03698792681097984,-0.034352194517850876,-0.06514398008584976,0.024002645164728165,0.009108048863708973,0.013120699673891068,0.010752766393125057,-0.11095113307237625,-0.011468283832073212,-0.04978746920824051,0.009880474768579006,-0.031931933015584946,-0.018226413056254387,-0.0474197156727314,-0.07405063509941101,-0.0028749050106853247,0.005672327242791653,0.050420522689819336,0.023240836337208748,-0.0012567939702421427,-0.006580028682947159,0.00635360786691308,0.0020420162472873926,-0.10402510315179825,0.07077153772115707,-0.03655664622783661,0.03495680168271065,-0.006164945662021637,0.06996769458055496,0.07144246995449066,0.015613867901265621,-0.052970871329307556,-0.1012243703007698,-0.0012896859552711248,-0.08130209892988205,0.0057060010731220245,-0.0677281990647316,-0.0007254205993376672,0.03315800428390503,0.10534984618425369,-0.03132551535964012,-0.008073898032307625,0.1285323202610016,-0.026705604046583176,0.05294245108962059,-0.01806439273059368,-0.0048141032457351685,-0.03802036494016647,-0.0031352266669273376,0.004159425385296345,0.012470570392906666,-0.08218688517808914,-0.06445740908384323,0.08184868842363358,-9.798599484218036e-34,0.015902036800980568,-0.11127742379903793,-0.007598505355417728,0.05370057746767998,0.0795871764421463,-0.07541343569755554,-0.06893599033355713,0.005810888018459082,-0.01836036890745163,-0.02505302242934704,0.05107981339097023,-0.12987294793128967,0.005187135189771652,0.008004372008144855,-0.07713645696640015,0.083686962723732,0.04375356808304787,0.04153657332062721,0.03306801989674568,-0.08833838999271393,0.08263026922941208,-0.03140285983681679,0.02364933304488659,-0.0012503588804975152,0.005545018706470728,0.03792431205511093,0.012160565704107285,-0.018647268414497375,0.11390630155801773,0.05807715654373169,-0.11214819550514221,0.15116830170154572,-0.09895801544189453,0.07133645564317703,0.05508559197187424,0.05451115220785141,-0.033559650182724,0.03393331542611122,-0.05090785026550293,-0.03193045035004616,-0.021098166704177856,-0.024797705933451653,-0.0669138953089714,0.05059826746582985,-0.05853758752346039,-0.08413057774305344,-0.05526309460401535,0.03561673313379288,0.07049895823001862,0.05410252511501312,-0.014475367031991482,-0.028063135221600533,0.053119152784347534,-0.09576007723808289,-0.02027457021176815,-0.021264752373099327,0.020404092967510223,0.014462248422205448,0.07265591621398926,0.04282707720994949,0.027118097990751266,0.040898434817790985,-0.04633304476737976,0.03397226706147194,0.07885974645614624,0.01837310940027237,-0.07445592433214188,-0.021778687834739685,0.029881199821829796,-0.021185528486967087,0.07126186788082123,-0.03569474816322327,-0.07970941066741943,-0.060322556644678116,-0.008313103578984737,-0.08118455857038498,-0.026352448388934135,-0.013769645243883133,0.07446755468845367,0.007261955179274082,0.04569016396999359,-0.0061740330420434475,-0.054026588797569275,-0.011668181978166103,-0.00010465270315762609,0.03628288581967354,0.027787327766418457,-0.04077259078621864,0.02892463468015194,0.0717824324965477,-0.04442496970295906,-0.00792554672807455,0.04873732477426529,-0.03830907493829727,-0.05745541304349899,-1.204826057282173e-33,0.056866902858018875,-0.02364635281264782,-0.01313402783125639,0.0917707085609436,0.0936354398727417,0.04606933519244194,-0.08351287245750427,-0.03136395663022995,0.029977746307849884,0.03559223189949989,-0.06053139641880989,0.04072001203894615,0.025339124724268913,-0.01417089719325304,0.010153631679713726,0.012465312145650387,0.11313688009977341,-0.011004144325852394,-0.031008046120405197,0.0528375618159771,0.002421839162707329,-0.08523450791835785,-0.03704048693180084,0.009268015623092651,-0.0337943360209465,0.038595907390117645,0.06776540726423264,0.0838605985045433,-0.12986412644386292,-0.038471002131700516,0.0010233233915641904,0.004199629183858633,-0.06705351918935776,-0.0723157748579979,0.00900566391646862,0.05551214888691902,-0.10552710294723511,0.12197417765855789,-0.05277499184012413,0.10525434464216232,0.009573339484632015,-0.056336406618356705,0.028878092765808105,0.028599070385098457,0.027584321796894073,-0.022746598348021507,0.006739517208188772,-0.05850301310420036,-0.07287731766700745,0.04743505269289017,-0.04949335381388664,-0.033780116587877274,-0.06032554432749748,-0.038217656314373016,-0.008339566178619862,0.034895844757556915,-0.10108776390552521,-0.022709378972649574,0.022024651989340782,-0.06835165619850159,0.015476703643798828,-0.03464994207024574,0.003155676182359457,0.06539855897426605,-0.019204646348953247,-0.029585300013422966,-0.07791627943515778,-0.010894492268562317,-0.054150164127349854,0.03817922621965408,-0.029702289029955864,-0.06348451226949692,0.057877738028764725,0.01089344173669815,-0.07159862667322159,-0.03449980169534683,-0.008490690030157566,-0.019385604187846184,-0.03804590553045273,-0.06392478942871094,0.00927573349326849,-0.040954798460006714,-0.01798398792743683,-0.032046593725681305,-0.01555781438946724,-0.03183126822113991,0.03562327101826668,-0.013155466876924038,0.046464353799819946,0.0797702893614769,0.059239380061626434,-0.020822500810027122,0.03562382608652115,-0.058042511343955994,-0.00853867456316948,-2.5774671286171724e-8,0.01509828306734562,0.03736051544547081,-0.004074696451425552,0.008367533795535564,0.022766167297959328,-0.053738147020339966,0.06372509896755219,-0.10739842802286148,0.03361544385552406,0.08960901200771332,0.025601448491215706,0.026322081685066223,0.06607960164546967,-0.0009831860661506653,0.017185309901833534,-0.0019526013638824224,0.043402206152677536,-0.08814922720193863,-0.056030794978141785,0.09061472117900848,-0.034665338695049286,-0.004269332159310579,0.07256495207548141,0.017780231311917305,0.04590082913637161,0.08897190541028976,0.024288920685648918,0.05569515377283096,0.04359631985425949,0.03307655453681946,0.010268840938806534,0.09372548758983612,-0.13706839084625244,-0.033219583332538605,-0.022182246670126915,0.010598042979836464,0.031020812690258026,-0.030476687476038933,0.005750376731157303,-0.040547214448451996,-0.0597970150411129,0.060309670865535736,-0.06990315020084381,0.07375665009021759,-0.015113042667508125,0.016364634037017822,-0.007411344908177853,0.036743730306625366,-0.07989175617694855,0.025364117696881294,-0.0663561150431633,-0.009959632530808449,-0.024885430932044983,0.050307754427194595,0.06460288912057877,-0.002408103784546256,0.022342754527926445,-0.026361633092164993,-0.038718122988939285,-0.024833478033542633,-0.009337130934000015,-0.006210192572325468,-0.013250376097857952,-0.044856827706098557]},{"text":"I think I can shew you how to manage that.","book":"Down and Out in Paris and London","chapter":43,"embedding":[-0.007498483639210463,-0.018375303596258163,-0.05496559292078018,-0.021441994234919548,-0.009784850291907787,0.02903788723051548,0.06452251970767975,0.012614483945071697,-0.09242958575487137,0.0173959843814373,-0.04066131263971329,0.013025431893765926,0.006680350285023451,0.037118542939424515,0.09824983775615692,0.04113120213150978,-0.0029849468264728785,-0.05362222343683243,-0.15615080296993256,0.021629471331834793,0.04160943627357483,-0.0010527995182201266,-0.020350906997919083,-0.028242934495210648,-0.04815186560153961,0.024996530264616013,-0.07224949449300766,0.016725072637200356,0.007651762571185827,-0.09048701077699661,0.02103528380393982,-0.02883482165634632,0.01801910065114498,0.04793441668152809,-0.03677290678024292,-0.0075689353980124,-0.07488949596881866,0.0006152490386739373,0.008836197666823864,-0.05506138876080513,-0.0091102235019207,0.015804357826709747,0.010598722845315933,0.0018119752639904618,-0.06636275351047516,0.014386293478310108,0.0067422217689454556,-0.007966330274939537,-0.0305645652115345,-0.016571199521422386,-0.023507997393608093,0.004551209043711424,-0.02635563164949417,-0.023957088589668274,-0.01112549751996994,0.04517063871026039,0.02396496571600437,0.006529899779707193,-0.06321320682764053,0.00013936933828517795,-0.02653581090271473,0.029000161215662956,-0.06820692867040634,0.03396539017558098,-0.007112041115760803,0.056942738592624664,0.011371638625860214,0.059885185211896896,-0.02896747551858425,0.04070885479450226,0.013012273237109184,0.03695686161518097,-0.12211689352989197,0.0074678584933280945,0.06633249670267105,0.019177651032805443,-0.03592937812209129,-0.026689086109399796,0.09393870830535889,0.10034746676683426,-0.0079507390037179,0.05355177819728851,-0.03179340064525604,0.023150071501731873,-0.10109785944223404,-0.013607009314000607,-0.01967753656208515,0.004897058941423893,0.03438494727015495,0.010845919139683247,-0.027582969516515732,-0.020866768434643745,-0.001640267320908606,0.01863606460392475,-0.04287663847208023,-0.07343298196792603,-0.0070571089163422585,0.050819430500268936,-0.018437640741467476,0.03580501303076744,0.043581172823905945,-0.01443906594067812,0.05039076879620552,0.09232643246650696,-0.022214360535144806,0.011326732113957405,0.009571266360580921,0.03662722930312157,-0.04177716374397278,0.00445546256378293,-0.05328165367245674,0.04045868292450905,-0.039392922073602676,-0.08925935626029968,-0.016164695844054222,0.06625989079475403,-0.04679848253726959,0.03532863035798073,0.0401553139090538,-0.05195704475045204,-0.0052455696277320385,-0.006243420764803886,0.014460086822509766,0.0045652869157493114,-0.07874928414821625,-0.0851641297340393,0.018414733931422234,-5.8557798425769354e-33,0.03287269175052643,0.010177532210946083,-0.03551595285534859,-0.017672857269644737,0.055775199085474014,0.05017959326505661,-0.008003187365829945,0.01657060906291008,-0.05926760658621788,-0.03609136492013931,0.09469723701477051,0.03172905370593071,0.023466849699616432,-0.06631749123334885,0.1176828071475029,-0.07312852144241333,0.03470626845955849,0.07677609473466873,-0.04067942500114441,0.04463980719447136,0.010117805562913418,-0.10920048505067825,-0.01573721505701542,-0.053483523428440094,0.04382519796490669,0.02310905046761036,0.07983408868312836,0.031012309715151787,0.09696917980909348,0.05448867380619049,0.015229403972625732,0.021982433274388313,-0.06944157183170319,0.006441315170377493,-0.016884898766875267,-0.039580319076776505,0.0373835414648056,0.01127006858587265,-0.0008064986323006451,-0.013639206998050213,-0.004298164043575525,0.01622178964316845,-0.027772773057222366,0.03831171989440918,-0.08789810538291931,0.06574845314025879,0.16702750325202942,-0.03311594948172569,-0.0877993255853653,0.014287961646914482,-0.009752712212502956,0.019685011357069016,-0.021625777706503868,-0.07709932327270508,-0.014212180860340595,-0.006883183028548956,0.034155067056417465,-0.0481535829603672,0.057542674243450165,0.04975395277142525,0.02954237349331379,0.01172292698174715,-0.036664705723524094,0.04604988917708397,0.031142765656113625,-0.060449305921792984,0.017360616475343704,0.002809812780469656,0.03193022310733795,-0.07912688702344894,-0.06306808441877365,0.0021401059348136187,-0.0011458609951660037,-0.0094317477196455,-0.11382758617401123,0.010845172218978405,0.03633556514978409,-0.00022187107242643833,-0.03177977353334427,-0.047895073890686035,0.007245409768074751,-0.007990622892975807,-0.03873101994395256,0.06275254487991333,0.03562763333320618,-0.08095533400774002,-0.0027640012558549643,0.08064647763967514,0.011866405606269836,0.029101379215717316,-0.06966737657785416,0.06966869533061981,0.07049425691366196,-0.013738776557147503,-0.04390200972557068,4.110035182413509e-33,-0.001266519888304174,-0.059554021805524826,-0.010642003268003464,-0.05640086904168129,0.030818603932857513,0.008448881097137928,0.02944330684840679,0.09670819342136383,0.02730761095881462,0.013616069220006466,-0.013348658569157124,-0.0277660321444273,0.007990195415914059,-0.028031766414642334,-0.05022653937339783,-0.01590234600007534,-0.021433843299746513,-0.012099257670342922,-0.02646435983479023,-0.007632461842149496,-0.1414514034986496,0.1040092408657074,0.039489228278398514,0.044867996126413345,-0.0510583333671093,0.060319140553474426,0.030703743919730186,0.07282654196023941,0.03180096298456192,0.01429155096411705,0.10167749971151352,-0.15300823748111725,-0.09554687887430191,-0.019011879339814186,0.050134699791669846,-0.05203516408801079,-0.11989913135766983,0.007580451667308807,0.04289501532912254,0.004947070963680744,0.025404859334230423,-0.018470177426934242,-0.027015957981348038,-0.027957269921898842,0.05550089478492737,-0.0051101939752697945,0.08806317299604416,-0.0675279051065445,-0.015507458709180355,0.0673995316028595,0.06395812332630157,0.009326965548098087,-0.03378123417496681,-0.09529583901166916,0.008440732024610043,-0.042324941605329514,0.20069177448749542,-0.04476511850953102,0.007968309335410595,-0.048057831823825836,-0.0110081247985363,-0.02845066599547863,0.029978936538100243,0.05107242241501808,0.1267140805721283,-0.06595659255981445,0.0036285242531448603,-0.07325500249862671,-0.049403030425310135,0.06188144534826279,-0.027007609605789185,-0.030189329758286476,0.02886326052248478,0.01938355341553688,0.07784278690814972,-0.10353156924247742,-0.0030860123224556446,-0.02291218936443329,-0.031496234238147736,-0.10215725004673004,0.011831089854240417,-0.001910036662593484,0.10757662355899811,-0.06924335658550262,0.01668112725019455,-0.014433266595005989,-0.008336947299540043,0.06348481774330139,0.03732640668749809,-0.024398818612098694,-0.07874497026205063,0.011821592226624489,0.008870906196534634,-0.03218366578221321,0.05680069327354431,-2.341857552323745e-8,-0.003488092916086316,-0.1292290836572647,0.12319786101579666,0.018088489770889282,0.037997081875801086,0.020468033850193024,-0.01425730437040329,-0.046600960195064545,0.04696334898471832,0.017190689221024513,0.07520236074924469,-0.05203135311603546,-0.040920715779066086,-0.006967255380004644,0.029267000034451485,-0.03269404172897339,0.02535918354988098,0.05541716143488884,-0.04502264782786369,-0.06943228840827942,0.01070860493928194,0.0351330004632473,0.029972035437822342,0.06511561572551727,0.0038708581123501062,0.012782907113432884,-0.007767115253955126,0.039652999490499496,-0.03695988655090332,0.06812705844640732,0.014494444243609905,-0.04921483248472214,-0.0162655096501112,0.034442607313394547,-0.00790557824075222,-0.0440082922577858,-0.04152381792664528,0.010088670067489147,-0.0018835579976439476,-0.0007101570372469723,-0.02761465311050415,-0.022321177646517754,0.031339604407548904,0.14716745913028717,-0.025593450292944908,0.026534834876656532,0.03276142477989197,-0.10548199713230133,0.0007426624069921672,-0.02490677498281002,-0.007100525312125683,0.006067981943488121,0.10634088516235352,0.037903688848018646,0.020330658182501793,0.06488488614559174,0.0950000211596489,0.04638703912496567,-0.014284330420196056,0.06319749355316162,0.1258925497531891,0.007676627952605486,-0.046673282980918884,-0.002399803139269352]},{"text":"How silly of me! (_She comes down into the centre of the group, between Bluntschli and Petkoff_) I made a beautiful ornament this morning for the ice pudding; and that stupid Nicola has just put down a pile of plates on it and spoiled it. (_To Bluntschli, winningly._) I hope you didn’t think that you were the chocolate cream soldier, Captain Bluntschli.","book":"Down and Out in Paris and London","chapter":43,"embedding":[0.028643382713198662,-0.07617087662220001,0.08453746140003204,0.006227715872228146,0.008758009411394596,0.022087465971708298,0.10536451637744904,0.03517580404877663,-0.06369630247354507,-0.020257748663425446,-0.09079200029373169,-0.09984574466943741,-0.0037312002386897802,-0.04071683809161186,-0.04995299503207207,0.018152309581637383,0.009373648092150688,-0.06122700870037079,-0.020409567281603813,0.015274997800588608,-0.06393468379974365,0.015882989391684532,0.05057638883590698,0.08000361919403076,-0.010813206434249878,0.049191977828741074,0.043518152087926865,0.006946766749024391,-0.03601247817277908,-0.020802978426218033,-0.04868258535861969,-0.03270053490996361,-0.01707390695810318,-0.028937866911292076,0.0047217984683811665,0.01102145854383707,0.045554328709840775,0.054055020213127136,0.030530747026205063,-0.034019503742456436,-0.030924562364816666,-0.07892797142267227,0.0032333938870579004,0.049771834164857864,0.010661261156201363,0.010412808507680893,-0.01494055986404419,-0.038034837692976,-0.002080790000036359,-0.017146684229373932,-0.05356227234005928,-0.026072027161717415,-0.010340476408600807,-0.06986790150403976,-0.06482648104429245,-0.014886141754686832,0.021642137318849564,0.0259057879447937,0.044398196041584015,0.06367764621973038,-0.0818590372800827,-0.033697739243507385,-0.029656965285539627,0.07672417163848877,0.06370755285024643,-0.05172433331608772,-0.01355905830860138,0.015558836050331593,-0.04454436153173447,0.1170213371515274,0.06164642050862312,0.007327940780669451,0.08618166297674179,0.004731469787657261,-0.01610264554619789,0.024330761283636093,0.025662297382950783,0.01922580599784851,0.03469926863908768,0.07047320157289505,0.005447717849165201,0.005478146485984325,-0.03844825550913811,0.03966248780488968,-0.03286357223987579,-0.020821193233132362,0.029016338288784027,-0.09526482224464417,-0.02178473025560379,-0.05190504714846611,-0.004234116990119219,0.05815044417977333,0.09617042541503906,0.05019396170973778,-0.00040983184590004385,-0.04022196680307388,-0.019625218585133553,0.021755756810307503,-0.05494634062051773,0.102098748087883,-0.05092759430408478,0.07367170602083206,-0.07269822061061859,-0.06945690512657166,-0.029288241639733315,-0.016967983916401863,-0.0795271024107933,-0.07245342433452606,0.04522290453314781,-0.018811611458659172,-0.0023539443500339985,-0.01056607998907566,0.007333043031394482,-0.04411172494292259,-0.04103285074234009,-0.023762447759509087,-0.0066178045235574245,-0.0462799072265625,0.0008221317548304796,-0.022487344220280647,-0.007669540587812662,0.05753253027796745,-0.06209170073270798,0.12132934480905533,-0.017509670928120613,0.012104183435440063,-0.029754620045423508,-2.3511036796857648e-33,-0.02688315138220787,0.03620517626404762,0.02277400530874729,0.09550643712282181,0.07248084992170334,0.016577351838350296,-0.06447342038154602,0.03181955963373184,-0.05058331415057182,0.001883723889477551,0.03135698661208153,-0.05956093594431877,-0.07419398427009583,0.007547020446509123,-0.11192025244235992,0.079254649579525,0.01404463779181242,-0.022001881152391434,-0.042494211345911026,0.04009348526597023,-0.0118224723264575,0.10508599132299423,-0.001722207642160356,0.06843724846839905,-0.059167053550481796,0.10355421155691147,0.032864801585674286,-0.030570942908525467,0.03991489112377167,0.0195753276348114,-0.001208569621667266,0.05776522308588028,-0.017271872609853745,0.060846954584121704,-0.018182329833507538,-0.012046168558299541,-0.021428607404232025,-0.0983634665608406,-0.054207298904657364,0.050238799303770065,0.004797203000634909,-0.01738470420241356,0.001645018346607685,0.040239542722702026,-0.1566838026046753,-0.05970427393913269,-0.002035096986219287,0.06116420775651932,0.07790539413690567,-0.04736606404185295,-0.02226482704281807,0.02568225748836994,0.03522980213165283,0.10348200052976608,0.018200106918811798,-0.014527580700814724,0.00439718272536993,-0.015933504328131676,0.0906878188252449,-0.10694558918476105,0.049434490501880646,0.046422168612480164,0.0348362922668457,-0.021061822772026062,0.048150405287742615,-0.02032954804599285,-0.05552401393651962,-0.01676855981349945,0.05632378160953522,-0.014202849008142948,0.036604639142751694,0.015868009999394417,0.007653343491256237,-0.062200337648391724,-0.022164633497595787,-0.005347986239939928,-0.026710322126746178,0.03960160166025162,0.03752531856298447,-0.02264099195599556,0.043485432863235474,-0.02802599035203457,-0.04875889793038368,-0.06468886137008667,-0.04946800321340561,-0.039878133684396744,0.016893062740564346,-0.07722226530313492,0.0026010898873209953,0.06527799367904663,-0.06772826611995697,-0.06863246858119965,0.06444314122200012,-0.011013781651854515,-0.16059529781341553,3.6213300641326147e-34,0.007885174825787544,-0.0246632881462574,-0.01845741830766201,0.039662741124629974,0.019674152135849,-0.011966817080974579,-0.06341257691383362,0.013299043290317059,0.03663849085569382,0.06518297642469406,0.07486353814601898,-0.050631098449230194,0.013605307787656784,-0.09817466884851456,0.051925450563430786,-0.023148126900196075,0.06862008571624756,0.026812667027115822,-0.01935407891869545,-0.042738139629364014,-0.03939008712768555,0.014258311130106449,-0.08705908060073853,0.033845119178295135,-0.02728208340704441,0.03777899965643883,0.18502427637577057,-0.00968941394239664,-0.03744576871395111,-0.0445830300450325,-0.036762285977602005,-0.03415749967098236,-0.060759950429201126,-0.12356442958116531,0.044347211718559265,0.08459002524614334,-0.04343155026435852,-0.06637395173311234,-0.04221463203430176,0.012437814846634865,-0.11774642020463943,-0.019081130623817444,-0.005536359269171953,0.07361561059951782,0.030491624027490616,-0.10424394905567169,-0.01596842147409916,0.0032356916926801205,0.03111106902360916,0.0744500383734703,0.021243654191493988,-0.02665967494249344,-0.03474591299891472,-0.040471021085977554,0.010205361992120743,0.03826156258583069,-0.024856379255652428,-0.07806041091680527,0.06401359289884567,-0.0211792029440403,-0.07033184170722961,-0.02380833774805069,-0.029947642236948013,-0.03315456584095955,-0.02482529729604721,-0.003929101396352053,-0.08257684111595154,-0.03858014568686485,-0.016636939719319344,0.03907547518610954,-0.030344463884830475,-0.007897577248513699,0.029103746637701988,-0.0039857556112110615,0.031230729073286057,-0.025402870029211044,0.037275396287441254,0.004214630462229252,0.0003109201497863978,-0.08050922304391861,0.0018008413026109338,-0.027755681425333023,0.03890269994735718,0.08158005028963089,0.07675541192293167,-0.0041777463629841805,0.054848816245794296,0.0539005808532238,-0.017619803547859192,0.09227260947227478,0.10464294254779816,0.034453731030225754,0.036364875733852386,-0.0027288629207760096,0.03626541048288345,-4.596650171606598e-8,0.0876714289188385,0.015865912660956383,-0.0646900162100792,0.0616413839161396,0.040606990456581116,-0.09670630097389221,-0.052574291825294495,-0.04752893000841141,-0.08195467293262482,0.04972488060593605,0.026493756100535393,0.07185009866952896,-0.004354193806648254,-0.059898942708969116,0.06523996591567993,0.01585763320326805,0.07227212935686111,0.04913754016160965,-0.0742434710264206,0.015669001266360283,-0.03571388125419617,0.022557741031050682,0.045659128576517105,-0.11288385838270187,-0.031002063304185867,0.04353976994752884,0.02297527901828289,-0.00998067669570446,-0.02356152981519699,0.03956516459584236,-0.02807566523551941,0.07362432777881622,-0.10584878921508789,0.0326799675822258,0.005502751097083092,0.016501396894454956,-0.007109520491212606,-0.015933146700263023,-0.011121301911771297,0.046185821294784546,-0.06076420471072197,0.009592054411768913,0.0549544133245945,0.074516162276268,-0.024493979290127754,0.02443644404411316,-0.04934748634696007,0.03200643137097359,0.025608142837882042,0.06585277616977692,-0.038386113941669464,0.05849643051624298,-0.024698052555322647,0.08488890528678894,0.018500957638025284,0.02358752302825451,0.04018828645348549,0.040535517036914825,-0.06719522178173065,0.0528697669506073,0.017986977472901344,-0.08043817430734634,-0.05254993587732315,-0.03270629793405533]},{"text":"He used to be careful enough.","book":"Down and Out in Paris and London","chapter":43,"embedding":[0.10295416414737701,0.07302720099687576,0.024112090468406677,0.05068368837237358,0.057194784283638,-0.003917407244443893,0.1049942746758461,0.0022310405038297176,-0.06731980293989182,-0.012676573358476162,0.047442369163036346,0.028077097609639168,0.03284261375665665,0.05938715115189552,0.007870578207075596,-0.0006310693570412695,0.001517298398539424,0.011031229048967361,-0.09525205194950104,0.008881863206624985,-0.07300089299678802,0.06703661382198334,0.08911004662513733,-0.02172025851905346,-0.09628716856241226,-0.04178377240896225,-0.008395283482968807,0.02158047817647457,0.07220311462879181,-0.051219575107097626,0.029348943382501602,-0.01535447221249342,-0.03894137591123581,-0.005235900171101093,-0.06724067777395248,-0.05527053400874138,0.016405582427978516,-0.005663930904120207,0.00918414443731308,0.010545761324465275,-0.03683675080537796,-0.016243228688836098,-0.022053025662899017,0.06617526710033417,-0.048343904316425323,-0.026134859770536423,0.01256179716438055,-0.10346213728189468,0.15395574271678925,0.05218564718961716,0.010836116038262844,0.012675135396420956,0.06604614108800888,-0.10697866976261139,0.04996376484632492,-0.04387110844254494,0.022109054028987885,-0.002860917244106531,-0.015016342513263226,-0.014706643298268318,-0.010751616209745407,0.023430433124303818,-0.08052420616149902,0.062610924243927,-0.0720621645450592,-0.009460720233619213,-0.074494868516922,0.007367103826254606,0.03430942818522453,0.20283322036266327,0.000054407075367635116,0.02854861691594124,0.02387409657239914,-0.025956353172659874,-0.020408498123288155,-0.0660872831940651,-0.007969529367983341,-0.06629084050655365,0.04988741874694824,-0.06567484885454178,-0.01426598709076643,0.0005175219266675413,0.007169617805629969,0.012148958630859852,-0.019891250878572464,0.035716712474823,0.029865862801671028,-0.08424301445484161,0.007532497402280569,-0.0008374046301469207,0.034607842564582825,0.012195211835205555,-0.019114676862955093,0.011756368912756443,0.011494704522192478,-0.06535094976425171,-0.048586487770080566,0.0003574701549950987,-0.10288491100072861,0.07971954345703125,-0.06695537269115448,-0.01546149980276823,-0.027705898508429527,0.010260946117341518,-0.03505289554595947,0.023818541318178177,0.018325353041291237,0.06969434022903442,0.008221193216741085,0.11819206178188324,0.0023225934710353613,-0.037351906299591064,-0.012027952820062637,0.03857759013772011,-0.01660269685089588,-0.017549868673086166,-0.1523788869380951,0.00265854992903769,-0.05216921865940094,0.07167108356952667,0.04966026917099953,0.0425410233438015,-0.025976676493883133,0.07262112200260162,-0.05837396904826164,-0.022719042375683784,0.07716938853263855,-7.402602205906429e-33,0.09087841212749481,-0.03625904396176338,-0.03803705424070358,0.04890492185950279,0.0018709987634792924,0.06980684399604797,0.005249920766800642,-0.022244460880756378,0.0011031823232769966,-0.018995631486177444,0.07054004818201065,0.0627209022641182,-0.10477668792009354,-0.08152001351118088,-0.0241362527012825,0.1037951186299324,0.009546474553644657,0.058719176799058914,0.011798803694546223,-0.019659793004393578,-0.07038730382919312,-0.04318881407380104,0.020170951262116432,-0.0025933573488146067,0.0039666988886892796,0.020145542919635773,0.030413668602705002,0.0626121312379837,0.0805080458521843,0.04209278151392937,-0.06967185437679291,0.08684647083282471,-0.06355863064527512,0.07114273309707642,0.03163864091038704,0.060701634734869,-0.03628234565258026,0.007883889600634575,-0.05305051431059837,0.03894655779004097,0.06402082741260529,0.002270872239023447,0.05830386281013489,0.024724025279283524,-0.04203585907816887,-0.021014830097556114,-0.08531853556632996,0.04457557201385498,-0.056157588958740234,-0.04373405873775482,0.02867262065410614,0.022914694622159004,0.05689433217048645,0.011472444981336594,-0.03780268505215645,0.008569899015128613,0.006589626427739859,0.03889888897538185,0.0011387858539819717,0.07895704358816147,0.008895309641957283,0.041265785694122314,-0.015076854266226292,0.02934585139155388,-0.021383173763751984,-0.028005575761198997,-0.016830693930387497,0.010465111583471298,-0.10003417730331421,0.012966379523277283,-0.17508800327777863,-0.04632476717233658,-0.037701793015003204,-0.03523304685950279,-0.14543364942073822,-0.08062709122896194,-0.02712433971464634,-0.01277762558311224,-0.005109401885420084,-0.08069244027137756,0.008212730288505554,0.02160034142434597,0.08022020757198334,0.023623015731573105,-0.00565643236041069,-0.04632842540740967,0.005365563090890646,-0.08833973854780197,-0.03760547563433647,0.05977413058280945,-0.0005924876313656569,-0.0490347295999527,0.038760095834732056,-0.1342850774526596,-0.09611224383115768,3.184756559107254e-33,-0.08009296655654907,0.026429511606693268,0.04551612585783005,0.09232200682163239,-0.04739152640104294,-0.042225249111652374,-0.05411413684487343,0.028708813712000847,0.012445713393390179,-0.09066122025251389,0.005697616841644049,0.025054223835468292,0.12012932449579239,-0.03546101599931717,-0.010589937679469585,0.047658395022153854,0.014746229164302349,0.016676781699061394,-0.018711987882852554,-0.02271278016269207,0.03677055239677429,-0.016412697732448578,0.010547945275902748,0.05491900071501732,-0.02564072795212269,0.0006520769675262272,-0.07612485438585281,-0.0558183416724205,-0.0969129353761673,-0.03692356124520302,-0.05183231458067894,-0.027586692944169044,0.030345696955919266,0.04244764894247055,-0.03235391899943352,0.0008426884305663407,0.05030466988682747,0.1071416586637497,-0.006773002911359072,-0.015686487779021263,0.022137638181447983,0.02732705883681774,0.06591591238975525,0.04176134243607521,0.0205120537430048,0.0121599230915308,-0.00700592715293169,0.024897323921322823,0.02167131006717682,0.034533556550741196,-0.05739554390311241,-0.02010597474873066,-0.055012330412864685,-0.048401352018117905,-0.0243935976177454,-0.003409966826438904,0.008383097127079964,-0.014219334349036217,-0.02747170999646187,-0.0037698782980442047,-0.10724914073944092,-0.04434455186128616,-0.04359711706638336,0.037839263677597046,0.008945408277213573,0.03373788669705391,-0.04682907089591026,-0.009995248168706894,0.008265858516097069,0.04828260838985443,0.010285663418471813,-0.008899612352252007,0.018783999606966972,0.013688691891729832,-0.02888868935406208,0.020495794713497162,-0.07482974231243134,-0.06299509853124619,-0.08140851557254791,0.009557105600833893,0.0025700379628688097,-0.061490725725889206,-0.02121291682124138,0.02874603495001793,0.0497114472091198,0.02990456111729145,0.029383469372987747,-0.07946974039077759,0.03184952959418297,0.053136177361011505,0.02216014266014099,-0.04367825761437416,0.02078636735677719,0.041100967675447464,-0.03415324538946152,-1.9807384177283893e-8,-0.01660112850368023,0.06753309071063995,0.06519194692373276,-0.026773173362016678,0.10326855629682541,0.06374488025903702,0.02860395796597004,0.02495511807501316,0.0009064499172382057,0.032320573925971985,-0.008867784403264523,0.03537769988179207,0.07627210021018982,-0.02073630504310131,0.043449074029922485,-0.027560560032725334,-0.05749180540442467,-0.07653692364692688,-0.09717921912670135,0.12078498303890228,-0.005520732142031193,0.02316238544881344,-0.023695368319749832,0.05941057205200195,0.017520051449537277,-0.014968113042414188,-0.06850989907979965,0.02280663140118122,0.040447428822517395,0.020093053579330444,0.01848321594297886,-0.0013986184494569898,-0.07141505926847458,-0.06439047306776047,-0.01875629462301731,0.03126879036426544,0.008803456090390682,-0.01782788708806038,0.10310645401477814,0.009117981418967247,0.016284259036183357,0.07004737108945847,0.07380206882953644,0.040672771632671356,0.008019495755434036,0.022984469309449196,0.0287887342274189,0.03755470737814903,0.0273805633187294,0.00009566930384607986,-0.02097286470234394,0.06368928402662277,-0.011946185491979122,0.04400947690010071,0.06969273835420609,-0.04877704381942749,0.0012431767536327243,-0.02171199955046177,-0.00392111437395215,0.009634844027459621,-0.10848241299390793,0.0221683569252491,0.04976242408156395,0.00038943812251091003]},{"text":"What have you brought that for?","book":"Down and Out in Paris and London","chapter":43,"embedding":[-0.0295381061732769,0.0855015367269516,0.04108419269323349,-0.01736748404800892,0.05696721747517586,0.03646494820713997,0.12160954624414444,0.04211575165390968,-0.10569347441196442,-0.032973211258649826,0.09544197469949722,-0.01196867786347866,-0.0397462472319603,0.010030622594058514,0.03146515414118767,0.0016288760816678405,-0.03067760169506073,-0.05472971871495247,0.010466297157108784,-0.04513868689537048,-0.10959050059318542,-0.0032313892152160406,0.05922091007232666,0.037029705941677094,-0.026363613083958626,0.07005402445793152,-0.02136835642158985,0.08772704005241394,0.016407042741775513,-0.0863688588142395,-0.010485212318599224,-0.028681378811597824,-0.025386588647961617,0.0270229484885931,-0.07744032144546509,0.004586412571370602,0.03469866141676903,-0.08833568543195724,0.004050843883305788,-0.025753583759069443,0.05595645308494568,-0.00504849711433053,0.12726381421089172,-0.007910823449492455,0.0525381863117218,-0.04520874470472336,0.08227433264255524,-0.009927823208272457,0.14744257926940918,-0.059930212795734406,0.02811260335147381,-0.029810357838869095,-0.02247408777475357,-0.012254062108695507,-0.009441984817385674,-0.028217969462275505,-0.02783045917749405,0.08082117885351181,-0.033294107764959335,0.06090493127703667,0.015238585881888866,0.007215854711830616,-0.05021321028470993,0.10200218856334686,-0.08239909261465073,-0.0793682113289833,-0.049952417612075806,0.13778041303157806,0.009039743803441525,0.028478216379880905,-0.10850122570991516,-0.008228713646531105,0.02546091377735138,0.0775001123547554,-0.06829000264406204,-0.07015740871429443,0.10566957294940948,-0.04558011516928673,0.0939057320356369,-0.008176571689546108,0.04038923606276512,0.038567740470170975,0.017785677686333656,0.049487095326185226,0.08555001765489578,0.015526067465543747,0.07422635704278946,-0.03513912484049797,-0.11125177890062332,-0.023620249703526497,0.03526056557893753,-0.04239613562822342,-0.02464880608022213,0.007338178344070911,-0.07210439443588257,0.04379131644964218,-0.027888281270861626,-0.1035737618803978,0.0058264415711164474,0.08750978112220764,0.0034043786581605673,-0.016183197498321533,0.08460821211338043,-0.047653041779994965,-0.02904871106147766,-0.06629137694835663,-0.026948217302560806,0.04605145752429962,0.01403735764324665,-0.03363197669386864,-0.01612505130469799,-0.00005972126018605195,-0.052194010466337204,-0.0316782221198082,-0.019174054265022278,0.04590345174074173,-0.05900009721517563,0.04787305369973183,0.09333715587854385,-0.06253436952829361,0.03110175020992756,0.026697218418121338,-0.0399509035050869,0.0046360427513718605,-0.02456432580947876,-0.08427394926548004,-0.04924967512488365,-7.643660832429556e-33,-0.009940925054252148,0.06336899846792221,0.0026041241362690926,0.0659426674246788,0.030346021056175232,-0.0031355228275060654,-0.0371728241443634,-0.039603427052497864,-0.03453895449638367,0.04277072846889496,-0.02205626294016838,0.06577225029468536,-0.06716101616621017,0.06063622608780861,-0.05940939113497734,-0.0050384122878313065,-0.06653816998004913,0.056583769619464874,0.04264979436993599,-0.057484813034534454,-0.006543118506669998,-0.020235396921634674,0.05324793606996536,0.03935195878148079,-0.0028536829631775618,0.04473401978611946,0.09765872359275818,-0.05855744704604149,0.0648735910654068,0.02671416476368904,0.027744431048631668,-0.001015523448586464,0.029634525999426842,-0.08090243488550186,-0.04566008597612381,0.01723123900592327,-0.06453564763069153,-0.13440127670764923,0.00759967602789402,0.002815017942339182,-0.01590166985988617,0.06803818792104721,-0.03819476068019867,-0.043805863708257675,0.07768377661705017,-0.031858012080192566,0.013509165495634079,0.04259657859802246,-0.0798824205994606,0.0019071355927735567,0.014661506749689579,-0.054376084357500076,-0.04092363268136978,-0.0669228807091713,-0.040436871349811554,-0.01724296063184738,0.058437664061784744,-0.05183884873986244,0.04853464663028717,-0.01647365465760231,-0.037696897983551025,-0.012934357859194279,0.01685020886361599,-0.016956564038991928,0.03186473995447159,-0.01618039980530739,-0.017330540344119072,-0.008057957515120506,-0.02827598713338375,-0.05135716497898102,-0.030796345323324203,0.02203124761581421,0.07519121468067169,0.020093655213713646,-0.053937796503305435,-0.03030223399400711,-0.006987022701650858,-0.014715055003762245,-0.020024694502353668,-0.046224065124988556,-0.003990365657955408,-0.09767058491706848,-0.005341393407434225,0.057201605290174484,0.03516580909490585,0.00583660788834095,0.025444643571972847,-0.04706578329205513,0.047527801245450974,-0.04285170137882233,-0.01919764094054699,-0.07369188964366913,-0.035468753427267075,-0.01835690252482891,-0.07899371534585953,4.141501329475099e-33,-0.02055918425321579,-0.0350862517952919,-0.0025349725037813187,0.08659333735704422,0.0771552249789238,0.05948794260621071,0.06945792585611343,-0.0618094801902771,0.0008234541746787727,-0.0475948341190815,0.04932083934545517,-0.0061824992299079895,0.0658578872680664,0.025069810450077057,0.1040882095694542,0.026282144710421562,-0.004285342525690794,-0.04986737295985222,-0.010384692810475826,-0.05090247094631195,0.006124808918684721,0.10985159128904343,0.05124611780047417,0.036053963005542755,0.013153871521353722,0.017125271260738373,0.02425750531256199,-0.0689423605799675,-0.03520286828279495,0.040574897080659866,0.036798421293497086,-0.018987735733389854,-0.09962670505046844,-0.07455194741487503,-0.019058315083384514,0.06425295025110245,0.11040029674768448,-0.019514791667461395,-0.03402791544795036,-0.02593446522951126,0.020034175366163254,0.03707025572657585,-0.007179140113294125,0.09521837532520294,-0.007680825889110565,0.08521769195795059,0.01219085045158863,-0.032162345945835114,0.02585740201175213,0.022098390385508537,-0.00292427116073668,-0.054182060062885284,-0.0370209664106369,-0.08703223615884781,-0.033447664231061935,0.034086260944604874,0.027528250589966774,-0.06423438340425491,0.003483160398900509,-0.022984441369771957,-0.006717415526509285,0.004498095717281103,-0.08830282092094421,-0.005139449145644903,-0.003061604918912053,0.052708785980939865,0.04273954778909683,-0.012889290228486061,-0.01856406033039093,-0.022860215976834297,0.04789169132709503,0.0027311178855597973,0.002743583405390382,0.02907208353281021,-0.07348085939884186,0.014307038858532906,0.09046115726232529,-0.0142214922234416,0.03310281038284302,0.07684831321239471,-0.06268985569477081,-0.024448610842227936,0.020795268937945366,0.0163036547601223,0.14570307731628418,-0.030677124857902527,0.03134980797767639,0.018260523676872253,-0.016416747123003006,-0.010164055973291397,0.016410768032073975,0.034245070070028305,-0.10325455665588379,0.009029647335410118,0.03127186372876167,-2.1207162248515488e-8,-0.01924334280192852,0.04950956255197525,-0.08308927714824677,0.003484992077574134,0.0018992918776348233,-0.02231130376458168,0.05023520067334175,-0.007187621667981148,0.002624747110530734,-0.06534071266651154,0.059922367334365845,0.04679867625236511,-0.0218458641320467,0.07370936125516891,0.06180834770202637,0.010890447534620762,-0.00436213007196784,0.01426179613918066,-0.08095968514680862,-0.0314275361597538,-0.01423921063542366,0.030331013724207878,0.10981304198503494,0.04996335506439209,0.012185467407107353,-0.013716655783355236,0.01290823519229889,0.07990863174200058,0.07259557396173477,0.03320584073662758,0.004382535349577665,0.0648290291428566,-0.08445052057504654,0.02183166705071926,-0.016671836376190186,0.0580376535654068,-0.07001809775829315,-0.017786653712391853,0.06875548511743546,0.004633528646081686,-0.020248262211680412,0.008529138751327991,-0.05217381566762924,0.032006632536649704,-0.09519856423139572,-0.03289473056793213,-0.15153999626636505,0.009292091242969036,-0.018726978451013565,0.09830908477306366,0.01009274460375309,-0.0023617828264832497,0.0063673327676951885,0.050039663910865784,0.018332134932279587,0.001412161043845117,-0.006414259783923626,-0.013057847507297993,-0.018799690529704094,0.06333289295434952,0.012211717665195465,-0.0034148828126490116,-0.05884942784905434,0.026152353733778]},{"text":"I hope you’ll overlook it! (_He bows, and is going to the steps with the bag, when Petkoff addresses him angrily._) PETKOFF.","book":"Down and Out in Paris and London","chapter":44,"embedding":[-0.01869719661772251,0.056997377425432205,-0.060835156589746475,-0.04221698269248009,0.026118792593479156,0.00167080236133188,0.0801035687327385,0.034167494624853134,0.0063589890487492085,-0.032423075288534164,-0.04939884692430496,0.024318750947713852,-0.12819711863994598,0.03703547269105911,-0.08109941333532333,0.024069787934422493,-0.05352211743593216,0.007658682763576508,0.018787559121847153,0.09357567876577377,-0.020217876881361008,0.04454372078180313,0.13404689729213715,0.0067343879491090775,-0.011535756289958954,-0.0010093225864693522,0.05410114675760269,-0.0269248578697443,0.059185806661844254,-0.006344626657664776,0.04207848384976387,0.04907115921378136,-0.021658264100551605,0.06120783090591431,-0.06196395307779312,-0.013061965815722942,0.07051112502813339,0.006783177610486746,0.03872678056359291,-0.036672960966825485,0.02786765806376934,-0.02568315900862217,-0.12266890704631805,0.05082320794463158,-0.03230862319469452,0.048509493470191956,-0.015157541260123253,-0.03280818834900856,0.012720782309770584,-0.08413658291101456,-0.06715477257966995,-0.05209130421280861,-0.04768235608935356,-0.034565072506666183,0.0034332312643527985,-0.015347262844443321,0.0752752423286438,-0.07234552502632141,0.012599749490618706,0.03591969236731529,-0.005724692717194557,-0.029307978227734566,-0.07170017808675766,0.1267452836036682,0.02777022495865822,-0.00011462176189525053,-0.017606521025300026,-0.030426939949393272,-0.0817490965127945,0.13690334558486938,0.0009515854180790484,-0.0010433039860799909,0.016313020139932632,-0.03506099060177803,-0.08731523156166077,-0.02472592703998089,0.03826240822672844,-0.008039775304496288,0.10200358182191849,-0.04602503404021263,-0.02995716966688633,-0.02398063614964485,0.01591748371720314,0.06740399450063705,0.0650673657655716,-0.03612116351723671,0.036020077764987946,-0.01858719065785408,0.023362938314676285,0.0003087373625021428,0.00993665773421526,0.036074381321668625,-0.023268094286322594,0.07154297083616257,-0.08954616636037827,0.007446091156452894,0.02134997770190239,0.011475495994091034,-0.12008737772703171,0.0486949160695076,-0.02886303886771202,0.08589597046375275,0.05872117727994919,-0.023251386359333992,-0.02515045739710331,-0.003484437707811594,0.0075660590082407,-0.11893336474895477,-0.021427646279335022,0.044001396745443344,-0.059999190270900726,-0.04862593859434128,0.05182182043790817,-0.010639995336532593,0.04833357781171799,0.015514521859586239,-0.04511090740561485,0.023206742480397224,-0.036870937794446945,0.04351591691374779,-0.03117854706943035,0.05614372715353966,-0.01497268583625555,0.07786282896995544,-0.034379743039608,-0.0008632360259070992,-0.11086449027061462,-4.7578056707715314e-33,0.014623704366385937,0.05208849161863327,-0.0408606231212616,0.016487417742609978,0.00006094403215683997,0.044354550540447235,-0.0506066270172596,-0.051649030297994614,0.02093622274696827,0.10211139172315598,-0.060705870389938354,-0.030342871323227882,0.0011711156694218516,-0.0030046002939343452,-0.10237810760736465,0.023961149156093597,-0.021749772131443024,0.028626468032598495,-0.03960290923714638,0.011302001774311066,0.034676212817430496,-0.013363078236579895,-0.069380983710289,-0.028916146606206894,0.03913076967000961,0.014863293617963791,0.06277589499950409,-0.053383719176054,0.005154350306838751,0.02761691063642502,-0.06201004981994629,-0.003094749990850687,-0.020127184689044952,0.045778535306453705,-0.04743769019842148,-0.05184810981154442,-0.002005553338676691,-0.04396653547883034,-0.017917728051543236,-0.00042448510066606104,0.02464151382446289,-0.0605153813958168,-0.027330700308084488,0.01439754944294691,-0.06106910482048988,-0.058811984956264496,0.02798258326947689,0.026602257043123245,0.044835418462753296,-0.05757291242480278,0.008742154575884342,0.002567178336903453,0.009186916053295135,-0.030057769268751144,-0.054133154451847076,-0.04615485295653343,-0.004339203704148531,-0.03953196108341217,0.109852135181427,0.015268553979694843,0.01426613423973322,0.03339311107993126,-0.00799320824444294,0.039789002388715744,0.01797190122306347,0.010243362747132778,-0.10209627449512482,-0.04475618898868561,0.009029983542859554,-0.007552781607955694,-0.033864669501781464,-0.04378736391663551,0.032223861664533615,0.002565008355304599,-0.008774278685450554,-0.04855646565556526,0.00011767949035856873,0.041037190705537796,0.028636032715439796,-0.05468689650297165,-0.09187456220388412,-0.045023802667856216,0.036929283291101456,0.015573769807815552,-0.028928734362125397,-0.034957919269800186,0.035137027502059937,-0.05988744646310806,-0.07876589149236679,0.06925737112760544,-0.053990669548511505,-0.08127526938915253,0.03866681456565857,0.010703671723604202,-0.029226040467619896,9.043202937150633e-34,0.04893669858574867,-0.00033612054539844394,-0.10913172364234924,-0.00406327610835433,-0.015895064920186996,0.019929097965359688,-0.012583262287080288,-0.02265307679772377,0.032203469425439835,-0.08563070744276047,-0.04524363949894905,0.016560891643166542,0.025701196864247322,0.02726086974143982,0.05818038433790207,-0.03299969062209129,0.02056502178311348,-0.03543972969055176,-0.0616423636674881,-0.045504190027713776,0.041041016578674316,-0.009523516520857811,-0.0292157381772995,0.06680552661418915,-0.06817632913589478,0.010259709320962429,0.18117624521255493,-0.08624239265918732,-0.05593942478299141,-0.0010610721074044704,-0.011001519858837128,-0.055405423045158386,-0.04591555520892143,0.04400245472788811,0.04262742027640343,0.06000199168920517,0.031377892941236496,-0.10239401459693909,-0.07749520987272263,0.05381729453802109,0.09916174411773682,-0.03517449274659157,-0.019548632204532623,0.015761591494083405,-0.03676445037126541,-0.05389103293418884,0.015062524005770683,0.03235066682100296,-0.008198784664273262,-0.09601278603076935,-0.011821979656815529,0.04519845172762871,-0.09117916226387024,0.015668515115976334,-0.013008814305067062,0.17209015786647797,0.00499015673995018,-0.08674990385770798,-0.0061854287050664425,-0.035548821091651917,-0.00928144995123148,0.03760384023189545,0.015467965044081211,-0.007047730498015881,0.02782636508345604,0.020796220749616623,-0.05122973024845123,-0.021106798201799393,0.11444035172462463,0.02502499707043171,0.018965085968375206,-0.014203060418367386,-0.065827377140522,0.001579912262968719,0.07183593511581421,0.10328494012355804,0.09057538956403732,-0.012225951068103313,0.05059254169464111,-0.08597280085086823,0.033010333776474,-0.12551532685756683,0.03301004320383072,0.032445333898067474,0.0384136363863945,-0.02105102129280567,-0.01781361736357212,-0.03999118506908417,-0.007960325106978416,-0.024511942639946938,0.09890276193618774,0.03264174982905388,0.025928154587745667,0.02626763842999935,0.07331760972738266,-2.9468910867080922e-8,-0.0440935343503952,0.057458456605672836,0.02964349277317524,-0.025885609909892082,0.06680519878864288,0.013915298506617546,-0.0272436011582613,0.010114911943674088,-0.14492297172546387,0.0339646115899086,0.062236156314611435,0.01900325156748295,0.010902497917413712,-0.005198364611715078,0.06931766867637634,0.057024408131837845,-0.03884919732809067,-0.02309630811214447,-0.0606355257332325,-0.013892469927668571,-0.05743281543254852,-0.010064818896353245,-0.005400378722697496,0.018315356224775314,-0.0012050435179844499,0.0030992382671684027,-0.04923153668642044,0.07127522677183151,0.05208737775683403,0.09265587478876114,0.06776338070631027,0.043121010065078735,-0.10712387412786484,0.04695526510477066,0.06544549763202667,0.06524980813264847,0.021244291216135025,0.010270125232636929,0.08088676631450653,0.059186484664678574,-0.025640878826379776,-0.04529203474521637,0.035500667989254,0.03663838282227516,-0.0332578681409359,0.05428106337785721,0.009411219507455826,-0.010102069936692715,0.042951229959726334,-0.029518408700823784,0.030958499759435654,0.079149030148983,-0.008746218867599964,0.041316915303468704,0.031050102785229683,0.06099678575992584,-0.10610203444957733,-0.05852292850613594,-0.032460328191518784,0.042442627251148224,0.05347703397274017,-0.0327436700463295,-0.04795222356915474,-0.006209933664649725]},{"text":"I’ll teach him. (_Recollecting his guest._) Oh, well, never mind.","book":"Down and Out in Paris and London","chapter":44,"embedding":[0.02464987337589264,0.0021137981675565243,0.019067825749516487,-0.056304000318050385,-0.058268096297979355,-0.029298648238182068,0.05652293935418129,-0.08284459263086319,-0.06658242642879486,0.0005829723668284714,-0.003507017157971859,0.02515539899468422,-0.015835806727409363,0.057043254375457764,0.037622906267642975,0.004582968540489674,0.0114551717415452,-0.011307351291179657,-0.03575165942311287,0.043494030833244324,-0.007822559215128422,0.058407414704561234,0.07512157410383224,-0.06437841057777405,-0.03135363757610321,-0.02132284827530384,0.06055274233222008,-0.013453873805701733,0.003150505479425192,-0.07381974160671234,-0.03714495524764061,0.03643864393234253,-0.008399087004363537,0.030399246141314507,-0.07464867830276489,-0.015554947778582573,0.02796933799982071,0.021648989990353584,-0.020155848935246468,-0.009386804886162281,-0.017954623326659203,0.012310990132391453,-0.018540486693382263,0.062105368822813034,0.009316747076809406,-0.014298062771558762,-0.009218557737767696,-0.06417767703533173,0.018908796831965446,0.009590315632522106,-0.011109664104878902,-0.004687415435910225,0.012307306751608849,0.02564901113510132,0.018261883407831192,0.06846261024475098,0.05969256907701492,-0.00503926444798708,-0.013866220600903034,-0.016184566542506218,-0.0808427557349205,0.025640347972512245,-0.08860417455434799,0.0980851799249649,-0.0262867771089077,-0.09929104149341583,-0.07973702251911163,0.06772644072771072,-0.04149222746491432,0.034974005073308945,-0.039573974907398224,0.04496842622756958,0.07353509962558746,-0.01954537443816662,-0.029575811699032784,-0.08592592179775238,-0.03434448689222336,-0.028347721323370934,0.051659855991601944,-0.011085308156907558,-0.05742742866277695,0.0027825164142996073,-0.016038265079259872,-0.022878464311361313,-0.00913225021213293,0.03470519185066223,0.07870820164680481,0.0026511705946177244,-0.08110501617193222,0.05026182532310486,0.018290871754288673,0.009533343836665154,-0.0037106594536453485,-0.029307899996638298,-0.032698459923267365,0.10014180839061737,-0.11747045069932938,-0.016697097569704056,-0.12321923673152924,0.06159812957048416,0.04602779448032379,0.01727781817317009,0.023232975974678993,0.0890512764453888,-0.05795068293809891,0.06258465349674225,-0.056477032601833344,0.02647983841598034,0.04191337525844574,-0.07003103196620941,-0.05245961621403694,0.011460738256573677,0.005382317118346691,0.029010193422436714,0.03580502048134804,0.057722289115190506,0.10852812230587006,-0.028364788740873337,-0.052498139441013336,-0.012756191194057465,0.041655682027339935,0.04636511206626892,0.0200362466275692,0.05903591960668564,-0.05574210360646248,-0.1449684053659439,-0.0016799928853288293,-7.551884845673075e-33,0.12726950645446777,0.03343570977449417,-0.03392976149916649,0.0593523345887661,0.06099645793437958,0.12864108383655548,0.038520924746990204,0.021672002971172333,-0.0220485869795084,0.008186910301446915,0.0805167406797409,0.0418221578001976,0.04066810756921768,0.04764308035373688,-0.11220275610685349,0.08630599081516266,-0.02649548463523388,-0.013083131052553654,-0.004767528735101223,-0.025973830372095108,0.017764879390597343,-0.03426088020205498,0.029453083872795105,-0.005375381093472242,0.041880618780851364,-0.011500638909637928,0.04897516965866089,-0.016330473124980927,0.16195636987686157,0.035306524485349655,-0.08262023329734802,0.0718463733792305,-0.03624219819903374,0.021208811551332474,-0.01668376289308071,-0.015722302719950676,-0.021528789773583412,-0.0026938319206237793,-0.08177708089351654,-0.03028636984527111,0.0610501766204834,-0.002376709831878543,0.013761320151388645,0.03524661436676979,-0.10143673419952393,-0.03549126535654068,0.17077820003032684,0.03974061831831932,0.0262190792709589,-0.0014583611628040671,-0.04498006030917168,-0.04214755445718765,-0.03054804354906082,-0.07069844752550125,0.018515655770897865,0.02644118294119835,0.037310920655727386,0.05857257917523384,-0.020264705643057823,0.021321790292859077,0.0027773440815508366,0.05134984478354454,0.06365716457366943,0.04903378710150719,-0.041811395436525345,-0.06943842768669128,-0.07752785086631775,-0.017821913585066795,0.00811102893203497,-0.10378111153841019,-0.07431722432374954,0.007999672554433346,-0.11711882054805756,-0.04324464872479439,-0.02528611570596695,-0.07959495484828949,-0.027782941237092018,-0.0468694344162941,0.06514973938465118,-0.07041317969560623,0.015346749685704708,-0.056847572326660156,-0.0422685407102108,-0.013034636154770851,-0.11353055387735367,-0.05160856619477272,0.03258492797613144,-0.0447331927716732,0.023636318743228912,0.008357462473213673,0.011419971473515034,-0.04085101559758186,0.009636136703193188,0.02071950025856495,0.017579231411218643,3.0174133669951853e-33,0.06636983156204224,0.07290320843458176,-0.01558278501033783,0.0279983077198267,-0.03470458835363388,-0.03017055056989193,-0.03745168820023537,0.06391236186027527,0.009458149783313274,-0.07078295201063156,-0.06447350978851318,0.059942711144685745,-0.0348840206861496,-0.030509503558278084,-0.026608360931277275,-0.05315713584423065,-0.009104312397539616,-0.025095568969845772,-0.02663464844226837,0.0006594488513655961,-0.018442075699567795,0.13525547087192535,-0.03964458033442497,-0.010648233816027641,-0.0367472767829895,0.0012347010197117925,0.1020606979727745,0.021866459399461746,-0.01396130956709385,0.04911638796329498,0.02656436525285244,-0.08157534897327423,-0.029947834089398384,-0.02373158000409603,0.007256692741066217,0.06389588117599487,0.021095050498843193,-0.029821984469890594,-0.053255919367074966,0.04586368426680565,0.04486905783414841,-0.06385324895381927,0.013370742090046406,-0.009462224319577217,0.010743510909378529,-0.020682083442807198,0.013483108952641487,0.06412762403488159,0.08399126678705215,0.024744756519794464,-0.029969166964292526,-0.039831168949604034,-0.05798644199967384,-0.07345980405807495,0.0500580333173275,0.03121979534626007,0.019031966105103493,-0.031632278114557266,0.030069032683968544,-0.035354964435100555,-0.044565599411726,-0.07523293048143387,0.07878882437944412,0.038880471140146255,-0.04522432014346123,-0.02696901373565197,-0.02998768538236618,0.15480700135231018,0.042631931602954865,0.0069972132332623005,0.07664605230093002,0.06327951699495316,-0.05709073692560196,-0.05514351278543472,0.04894160106778145,0.022524550557136536,0.07884757220745087,-0.035871721804142,0.0012950063683092594,-0.05359809845685959,0.02752353623509407,-0.06702975183725357,0.01440169382840395,-0.014911689795553684,0.029328400269150734,-0.054574016481637955,0.04235399141907692,0.03438904881477356,0.031526725739240646,0.008850125595927238,-0.022493619471788406,0.07958906143903732,0.09298309683799744,-0.07277657091617584,0.04012908414006233,-2.792011599694888e-8,-0.07054486125707626,-0.03769766539335251,0.013886622153222561,-0.03133011609315872,0.0012299976078793406,0.0243564173579216,-0.02725321799516678,-0.021517351269721985,-0.0807771235704422,0.06819146126508713,-0.0002261713962070644,0.04522012919187546,0.08102142065763474,-0.05358322337269783,0.143527090549469,0.0031711633782833815,0.01042079832404852,0.02785993181169033,-0.04526345431804657,-0.02767091989517212,0.024937743321061134,0.027792153880000114,0.007947573438286781,0.004654650576412678,-0.0038737875875085592,-0.025289485231041908,0.060938309878110886,0.09242737293243408,-0.030427105724811554,0.04402248561382294,-0.003419123589992523,0.03977344557642937,-0.12331458926200867,-0.06903381645679474,-0.01093631237745285,-0.03711755573749542,-0.065496064722538,-0.04464094713330269,0.03551501780748367,0.03885246813297272,-0.05750760808587074,-0.014433598145842552,-0.008062636479735374,0.015030651353299618,-0.01819714345037937,0.004373558331280947,0.024454187601804733,-0.05549222230911255,0.004156531300395727,0.031743161380290985,-0.08045845478773117,0.03163089603185654,-0.00629405677318573,0.01949460245668888,0.097958505153656,-0.003651297651231289,-0.0214239452034235,-0.04047461599111557,-0.017161177471280098,-0.024546068161725998,0.02320665679872036,0.08468060195446014,-0.08836928755044937,-0.0049178809858858585]},{"text":"Of course I shall be only too delighted if (_appealingly_) Captain Bluntschli really wishes to stay.","book":"Down and Out in Paris and London","chapter":44,"embedding":[0.08765797317028046,-0.03546227887272835,0.03864186629652977,-0.0012704040855169296,0.04692116752266884,0.029661783948540688,0.0382407009601593,0.009900374338030815,-0.045151486992836,0.02069593034684658,-0.01564287580549717,-0.05571916326880455,-0.007459518499672413,0.03548736497759819,0.036526020616292953,0.03349560126662254,-0.011952098459005356,-0.048927851021289825,-0.03840494528412819,0.09562183916568756,-0.04367617145180702,0.034619469195604324,-0.03698420524597168,0.013236602768301964,-0.012827886268496513,-0.056229930371046066,0.09571905434131622,0.0670800656080246,-0.05205817148089409,-0.06336896866559982,0.040262557566165924,0.013696803711354733,0.028879040852189064,0.04478892311453819,0.06217391788959503,0.016652962192893028,-0.03251166641712189,-0.003961966373026371,0.05479615554213524,-0.06913261115550995,-0.015014855191111565,-0.022297328338027,0.07085233926773071,0.047055259346961975,-0.03706797957420349,-0.0926845446228981,-0.030500132590532303,-0.0674329325556755,-0.036798618733882904,0.03595326468348503,-0.016966305673122406,-0.022765839472413063,0.048516739159822464,-0.06316229701042175,-0.021189237013459206,-0.027779417112469673,0.03222230449318886,0.01693008653819561,0.026572277769446373,-0.06580636650323868,-0.02904416434466839,0.05311212316155434,-0.018341386690735817,0.016513770446181297,0.0020395671017467976,-0.04770592972636223,0.020219190046191216,0.004447531420737505,-0.014755233190953732,0.040573783218860626,-0.06479497998952866,-0.011865303851664066,0.01609826646745205,-0.028449393808841705,-0.04828406497836113,-0.06487393379211426,0.03851058706641197,0.03848445042967796,0.011829493567347527,0.032914627343416214,0.005117366556078196,-0.026828063651919365,-0.0727211982011795,-0.037668537348508835,-0.07529787719249725,-0.034813668578863144,-0.014958943240344524,-0.09696055203676224,-0.058216191828250885,0.006371334660798311,0.014933877624571323,0.06320979446172714,0.02538987621665001,-0.02687039226293564,-0.04346293583512306,0.02254507504403591,-0.06856879591941833,-0.0031932953279465437,-0.08550205081701279,0.08933892101049423,-0.02018357813358307,0.03783706575632095,-0.006411025766283274,-0.040552206337451935,-0.08122272044420242,-0.04297081381082535,0.02049521915614605,-0.012142600491642952,0.016244392842054367,-0.13171006739139557,-0.057596370577812195,0.04732248932123184,0.01623048074543476,-0.0022171817254275084,0.04879007861018181,0.07803798466920853,-0.014111262746155262,0.049688708037137985,0.029382633045315742,-0.06424924731254578,0.030200915411114693,0.028660058975219727,0.018086282536387444,0.01564805768430233,-0.04783347621560097,-0.062373943626880646,-0.004716682247817516,-2.4825140298741115e-33,-0.02967214025557041,-0.025995640084147453,-0.058697838336229324,0.07029470801353455,0.03306197747588158,-0.04623638466000557,-0.0263917725533247,0.00397364841774106,-0.05611487478017807,0.022701764479279518,-0.014838317409157753,-0.019971627742052078,-0.008616304956376553,-0.010478046722710133,-0.08578215539455414,0.05642888695001602,0.024327874183654785,0.006203383207321167,-0.006573036778718233,-0.0025359883438795805,0.025744596496224403,0.05519751459360123,0.029571158811450005,0.020196519792079926,-0.0062858243472874165,0.0177160557359457,0.07920758426189423,-0.023561883717775345,0.09220655262470245,0.047668952494859695,-0.1230316087603569,0.17027458548545837,-0.04882562533020973,0.006575397215783596,0.015655430033802986,0.02973482757806778,-0.0814700573682785,-0.008147441782057285,0.0023078599479049444,-0.011630186811089516,-0.004440299700945616,0.030454585328698158,-0.04670101776719093,0.09355533868074417,-0.04510850831866264,-0.04620254039764404,0.04363342002034187,0.044400449842214584,0.12840844690799713,-0.03233318403363228,-0.0006533658597618341,-0.07275747507810593,0.05800478905439377,0.0029475188348442316,0.0410371832549572,-0.010680881328880787,-0.021416490897536278,0.0494760200381279,0.11589480191469193,-0.02881855145096779,-0.0138775072991848,0.010827277787029743,-0.029137223958969116,-0.03551622852683067,0.04994506761431694,0.017867622897028923,-0.021473590284585953,-0.07775992900133133,-0.0371396504342556,-0.01779448427259922,0.0058172037824988365,-0.0008322552894242108,-0.08652424067258835,-0.10150551795959473,-0.07052230834960938,-0.06337287276983261,-0.030389972031116486,0.028468210250139236,0.14213606715202332,0.026279648765921593,0.07727818191051483,0.02543264627456665,-0.0619024857878685,-0.0401017963886261,0.11133930832147598,-0.017171647399663925,0.05430790036916733,-0.06586768478155136,-0.004861901514232159,0.09100919961929321,0.029243670403957367,-0.037401773035526276,0.022633206099271774,-0.057194121181964874,-0.03393656015396118,-9.344922375676092e-35,0.04822125658392906,-0.010409178212285042,-0.01339829433709383,0.0720871165394783,-0.014078011736273766,0.03746435418725014,-0.03648222237825394,0.040228717029094696,-0.011604306288063526,0.03418032079935074,0.008471988141536713,0.027816254645586014,0.044246233999729156,-0.011593046598136425,-0.06432405859231949,-0.029137752950191498,0.05512135848402977,-0.03330357000231743,-0.03873463720083237,0.007797283586114645,0.0007434245198965073,0.0030415658839046955,-0.0780118927359581,0.046258069574832916,-0.06386855244636536,0.0075785014778375626,0.06301920115947723,0.06283356249332428,-0.1230243369936943,-0.03149547055363655,-0.027382081374526024,0.049599479883909225,-0.12776988744735718,-0.07072810083627701,0.03762973099946976,0.013079270720481873,-0.014548306353390217,0.06852057576179504,-0.08820405602455139,0.09998226165771484,-0.03469650819897652,-0.04166579619050026,0.06826245784759521,0.013995343819260597,0.04583792760968208,-0.08524803072214127,0.06822888553142548,-0.007577287498861551,-0.024930857121944427,0.06248987838625908,-0.025709645822644234,0.025852883234620094,-0.05673729628324509,0.001636297209188342,0.029972171410918236,0.03616181015968323,-0.0956200435757637,-0.07527530193328857,0.06918369978666306,-0.05960836261510849,-0.1118631511926651,-0.012181476689875126,0.007327219936996698,0.026872852817177773,0.01648828573524952,-0.008943858556449413,-0.01804601401090622,0.022737352177500725,-0.051877159625291824,0.03730100765824318,0.01272751484066248,-0.14711084961891174,-0.045223165303468704,0.023384027183055878,-0.010695328004658222,-0.06360343098640442,0.030593080446124077,-0.00009811707423068583,0.0035739990416914225,-0.021061204373836517,0.08644376695156097,-0.013661643490195274,0.01297048944979906,-0.05057014524936676,0.032012514770030975,-0.015900973230600357,-0.0043950448743999004,-0.0241318941116333,0.06049826368689537,0.006210163701325655,0.037383079528808594,-0.010164055041968822,0.010039602406322956,-0.15195131301879883,0.05630240961909294,-2.8431408338747133e-8,-0.02388896234333515,-0.002747258171439171,-0.03514299914240837,0.030052870512008667,-0.011944340541958809,0.0003631538129411638,0.023045074194669724,-0.056439485400915146,0.00849707517772913,0.0660754069685936,0.02079288475215435,0.06898579001426697,0.08814691007137299,-0.04870815575122833,0.0018617197638377547,0.06838535517454147,0.07441854476928711,0.022528506815433502,-0.020113356411457062,0.11036860197782516,-0.011535008437931538,0.03394027054309845,0.06302542239427567,-0.008782962337136269,-0.014755481854081154,0.03375175595283508,-0.009978801012039185,-0.03865614905953407,-0.0036933491937816143,0.07308221608400345,0.035108260810375214,0.04572765901684761,-0.13760194182395935,-0.011609837412834167,-0.025253960862755775,-0.012391366064548492,0.018594300374388695,-0.010996618308126926,0.0009211988071911037,0.03962523117661476,-0.0250391848385334,0.10764702409505844,-0.05655290558934212,0.09030745178461075,-0.06324202567338943,-0.07901459187269211,0.08776185661554337,0.05171478912234306,-0.04071979224681854,0.026242556050419807,-0.02222687192261219,-0.014854449778795242,-0.04223193973302841,0.0757652074098587,0.04506666958332062,0.015839170664548874,-0.031220706179738045,0.12020810693502426,-0.08784114569425583,0.032128069549798965,0.06993120908737183,-0.11460892111063004,0.010890364646911621,-0.051519911736249924]},{"text":"But it is a most comfortable sitting-room.","book":"Down and Out in Paris and London","chapter":45,"embedding":[0.09410174936056137,-0.024877887219190598,-0.019135432317852974,0.03862369805574417,0.01022566482424736,-0.015110179781913757,0.010193980298936367,-0.033672645688056946,0.026625830680131912,0.07068371027708054,0.007467887829989195,0.05801534652709961,0.09243397414684296,0.011937860399484634,0.03855513036251068,-0.11718766391277313,0.09484227001667023,-0.016127612441778183,0.09012813121080399,0.020617565140128136,-0.06974171102046967,0.08656731247901917,0.053277138620615005,-0.02661367878317833,0.060942143201828,-0.019770555198192596,0.0029507421422749758,0.05226879194378853,0.07448524236679077,-0.003946365788578987,-0.01964448019862175,0.014600815251469612,0.056898877024650574,-0.05583370849490166,0.036430034786462784,0.01677166298031807,-0.02189258113503456,-0.0347280316054821,-0.006570417433977127,-0.03624992445111275,-0.037514396011829376,0.03627780079841614,0.04295825585722923,-0.010583586990833282,-0.03340804576873779,-0.003659962210804224,-0.06641895323991776,-0.05968382582068443,0.06300389766693115,0.021746288985013962,0.03499549627304077,0.004808356054127216,-0.020167946815490723,0.013033343479037285,0.002321865176782012,0.04784313961863518,-0.01019364595413208,-0.04668433964252472,-0.03253574296832085,-0.022708509117364883,0.050295766443014145,0.010852157138288021,0.0307454913854599,0.05511632189154625,-0.014579696580767632,0.010903199203312397,-0.03032885119318962,0.02165970206260681,-0.031077774241566658,0.0031650131568312645,-0.07686464488506317,0.06364355236291885,0.04959225654602051,0.027732720598578453,0.0048244064673781395,-0.08957573771476746,0.03629055619239807,-0.013552708551287651,0.0723647028207779,0.13590390980243683,-0.03163938969373703,0.05038803070783615,0.024165723472833633,0.09423118084669113,-0.04768002778291702,-0.04043901339173317,-0.008687932975590229,-0.07079029828310013,-0.16883626580238342,-0.049018505960702896,0.0030960170552134514,0.020960606634616852,-0.06948455423116684,0.01080173347145319,0.009223301894962788,0.04674742370843887,-0.0436621755361557,0.11155176907777786,-0.0453440397977829,-0.013203933835029602,-0.029283395037055016,0.11147693544626236,0.06534610688686371,0.07291445881128311,-0.05854001268744469,-0.10195357352495193,0.017230713739991188,-0.023354440927505493,-0.04166651517152786,-0.07150232791900635,-0.08907417207956314,-0.011962343007326126,-0.026487911120057106,0.032356612384319305,-0.07972006499767303,0.04213350638747215,0.040703240782022476,-0.03340449184179306,0.04377555102109909,0.05513773486018181,0.00199869554489851,0.0499340295791626,0.018241459503769875,0.037983838468790054,-0.020771004259586334,-0.13488006591796875,-0.015645338222384453,-5.610561802761821e-33,-0.035513218492269516,0.006293291691690683,-0.00981491431593895,-0.05952068045735359,0.10072483867406845,-0.012155726552009583,-0.024340597912669182,0.054798923432826996,0.02112388424575329,0.019825706258416176,-0.011167798191308975,-0.07013320177793503,0.04862184822559357,-0.09645924717187881,0.08448656648397446,0.003322049044072628,-0.05967837944626808,0.06488838791847229,-0.10795415937900543,-0.054672714322805405,-0.03365304693579674,0.007077783811837435,0.03645038604736328,-0.016544440761208534,-0.010933169163763523,0.008655421435832977,0.04265148565173149,-0.02609821781516075,-0.0503658801317215,0.029682008549571037,-0.06515692919492722,-0.026309220120310783,-0.09455502778291702,-0.025359325110912323,0.040673863142728806,0.02417648211121559,0.028796451166272163,0.021386731415987015,-0.014980955049395561,0.023717712610960007,-0.08221159875392914,0.04133555293083191,-0.012669221498072147,0.030961478129029274,0.021925661712884903,0.09909316897392273,0.039411142468452454,-0.05166596546769142,-0.06882123649120331,-0.00790462363511324,-0.05743261054158211,-0.010796545073390007,0.030518759042024612,-0.024195324629545212,-0.05322224274277687,-0.04540995880961418,0.09878836572170258,0.07140111923217773,0.023171063512563705,0.04738903418183327,-0.06656486541032791,0.01473976206034422,0.02332385443150997,-0.05012832581996918,-0.030734313651919365,0.016483165323734283,0.05181290954351425,0.017477575689554214,0.05659117549657822,0.014048183336853981,-0.042819902300834656,0.03169038146734238,0.0062022740021348,0.019233250990509987,0.016464317217469215,-0.026093054562807083,-0.021605737507343292,0.01667221449315548,-0.029435139149427414,-0.11184337735176086,0.0577680841088295,-0.0345119908452034,0.019973764196038246,0.07112724334001541,0.014387736096978188,-0.05548511818051338,-0.03178233280777931,0.027907902374863625,-0.08703161776065826,-0.029587777331471443,0.003468730952590704,-0.04652811586856842,0.06388328224420547,-0.03130811080336571,-0.0708748921751976,3.154750229092592e-33,0.03218451514840126,-0.018837234005331993,-0.03618526831269264,0.0801706314086914,-0.001585138845257461,-0.06979847699403763,0.03893912211060524,-0.0008953841752372682,-0.07805615663528442,0.08673056215047836,-0.025679659098386765,0.03143307566642761,0.07756543159484863,0.02696067839860916,0.1257534772157669,0.09770642966032028,0.0631355419754982,-0.02786877751350403,-0.028397440910339355,0.03687359020113945,0.055960770696401596,0.025456970557570457,-0.025749510154128075,-0.015519517473876476,-0.035188499838113785,0.036406923085451126,-0.08018974214792252,0.007704578340053558,-0.032792817801237106,0.07403861731290817,-0.07613782584667206,0.00663598021492362,-0.10937657207250595,-0.002044674474745989,0.0013571662129834294,-0.03915898874402046,-0.08209426701068878,0.010392657481133938,-0.08190198987722397,0.09611768275499344,0.09867584705352783,-0.07209542393684387,-0.008203892037272453,0.033404771238565445,0.07385474443435669,-0.023810192942619324,0.0012676401529461145,-0.04387696087360382,-0.0001213463328895159,-0.00741554144769907,-0.03817812725901604,-0.01925179734826088,0.041715942323207855,-0.06735178828239441,0.019109807908535004,0.040211666375398636,-0.040848009288311005,0.017520345747470856,-0.05293533205986023,-0.0055784075520932674,0.009757835417985916,0.02417939156293869,-0.04926958307623863,0.08476166427135468,0.007806173525750637,0.061306558549404144,-0.09686863422393799,0.0005805077380500734,0.004158325027674437,0.09002970904111862,-0.037414733320474625,-0.003078957786783576,-0.019710183143615723,0.11579075455665588,-0.041334040462970734,0.01474129967391491,0.14457745850086212,0.020234668627381325,0.02904326654970646,0.012948487885296345,-0.05691678822040558,-0.06107387691736221,0.016902850940823555,-0.10804280638694763,0.025364411994814873,-0.008529235608875751,-0.03622813895344734,-0.05969537794589996,-0.0880928486585617,-0.01889730803668499,-0.032914478331804276,-0.017329512163996696,-0.03435591980814934,-0.046155769377946854,0.03228524699807167,-2.0265050082457492e-8,-0.057199422270059586,-0.07467246055603027,0.057236865162849426,0.02802598476409912,-0.06260751932859421,-0.0800456628203392,0.07047594338655472,-0.02508276328444481,0.01822024956345558,0.07838299125432968,0.033434949815273285,-0.04369910806417465,0.021586580201983452,0.017336318269371986,-0.04651853069663048,0.07563775032758713,-0.04697703197598457,0.011866407468914986,-0.05187303572893143,0.08257916569709778,0.042865462601184845,-0.047822292894124985,-0.03766116499900818,0.02896212786436081,0.05919395014643669,-0.03451910987496376,0.010016676038503647,0.0032138689421117306,0.06516683101654053,-0.02467494271695614,0.020197011530399323,-0.01590637117624283,-0.05306336283683777,0.01100772712379694,-0.014272894710302353,-0.023578142747282982,0.07045409828424454,-0.05100390315055847,0.017523029819130898,-0.032949112355709076,-0.10116478055715561,-0.09042537212371826,-0.06204957142472267,0.060410648584365845,0.042777638882398605,-0.036389127373695374,0.09945529699325562,-0.022844277322292328,-0.007961416617035866,0.010409335605800152,0.04158541560173035,-0.03841375932097435,0.04569504037499428,0.017065057530999184,0.006122941616922617,0.01613621786236763,-0.021589193493127823,-0.0066709076054394245,-0.01117472443729639,0.004740588832646608,-0.011452015489339828,0.05310243368148804,-0.027999792248010635,0.07562970370054245]},{"text":"This is a small kitchen table, much the worse for wear, fitted as a writing table with an old canister full of pens, an eggcup filled with ink, and a deplorable scrap of severely used pink blotting paper.","book":"Down and Out in Paris and London","chapter":45,"embedding":[-0.007388840429484844,0.12071795016527176,-0.007097245194017887,0.0456589013338089,0.023390138521790504,-0.0040801092982292175,0.06760530918836594,-0.004620656371116638,-0.011355401948094368,0.036569993942976,-0.02068422921001911,0.005124845076352358,-0.012249869294464588,0.006620630156248808,-0.10220035910606384,-0.0519273467361927,0.042758285999298096,-0.03761211410164833,0.005256502889096737,0.048795562237501144,-0.05302414298057556,0.04221199080348015,0.007429028395563364,0.01370672695338726,0.023159084841609,0.05726029351353645,-0.05934438109397888,-0.003948231227695942,-0.020264875143766403,-0.03457871079444885,-0.06432989984750748,0.030055399984121323,-0.004645783454179764,0.043849073350429535,0.014199416153132915,-0.06648225337266922,0.07430155575275421,0.08097387105226517,0.030682777985930443,-0.04800353944301605,-0.061247166246175766,-0.042211469262838364,0.015123025514185429,0.007134007290005684,0.014256425201892853,-0.0015852503711357713,0.019703904166817665,-0.058119453489780426,-0.09756726026535034,-0.044959601014852524,0.0323692224919796,0.022974388673901558,0.0053819878958165646,-0.046422701328992844,0.05099860951304436,0.006371014751493931,-0.026278775185346603,-0.03706194832921028,0.03161933645606041,0.01604658178985119,-0.06571554392576218,0.053556691855192184,0.05336805060505867,0.015552789904177189,-0.03542401269078255,0.0285676047205925,-0.04278245195746422,-0.029822321608662605,-0.015182284638285637,0.08332094550132751,-0.008180960081517696,0.0012441618600860238,-0.00674785953015089,0.03457837551832199,-0.006429247558116913,-0.07660116255283356,-0.023255011066794395,-0.07997865974903107,-0.04178125038743019,0.03688374534249306,-0.07485990226268768,-0.0050614094361662865,0.022763993591070175,0.12786899507045746,-0.06424862146377563,-0.03660890460014343,-0.01989693194627762,-0.08808720111846924,-0.00911595020443201,-0.08364813774824142,0.027805516496300697,0.08134909719228745,0.03307047486305237,0.00460778595879674,-0.03690245747566223,0.048293035477399826,0.04809208959341049,0.026061294600367546,0.020796112716197968,0.09751392900943756,-0.036621253937482834,0.03188837319612503,0.050487220287323,0.027328746393322945,-0.032171525061130524,-0.08866222202777863,0.02227937802672386,-0.11130296438932419,0.01701275072991848,-0.08597584813833237,-0.03285149112343788,0.00682207802310586,-0.08594339340925217,-0.06228622421622276,-0.08564840257167816,-0.03191593661904335,-0.011979660950601101,-0.039997830986976624,0.02133089117705822,0.07642601430416107,0.01731622777879238,0.013983028009533882,-0.12362126260995865,0.02529105916619301,-0.05855017900466919,0.023411868140101433,-0.002168151782825589,3.0725523172434048e-33,0.017034756019711494,0.10010825097560883,0.01824062131345272,0.00860688742250204,0.19829979538917542,0.02973082661628723,0.07578720897436142,0.007507308851927519,0.07531752437353134,0.033792126923799515,0.05339495837688446,-0.006438880693167448,-0.049014098942279816,0.07976581156253815,0.06142636388540268,0.09553889185190201,-0.05154524743556976,0.002843453548848629,0.0011481530964374542,-0.050277192145586014,-0.0449664480984211,0.022489849478006363,0.039754319936037064,-0.0073782894760370255,0.0031249336898326874,0.0733015313744545,-0.005488512106239796,0.025420891121029854,0.045642804354429245,0.029428064823150635,0.07871133834123611,0.011684534139931202,-0.02194061502814293,-0.13499775528907776,-0.07846586406230927,-0.033814553171396255,-0.06120673567056656,-0.021204544231295586,0.030338464304804802,0.03381919488310814,-0.08345949649810791,0.030792701989412308,-0.012425179593265057,-0.007606100756675005,0.021751271560788155,0.09582539647817612,0.08787829428911209,0.07329335808753967,-0.029167981818318367,-0.003782923799008131,0.007863067090511322,-0.04935150220990181,0.021561024710536003,0.053498465567827225,0.00011028054723283276,-0.03244897723197937,0.06026855483651161,-0.05972032621502876,0.05794188380241394,0.03335803002119064,0.06956374645233154,0.03853066265583038,-0.03950505703687668,0.06060791015625,0.012525415979325771,-0.0134583106264472,-0.03546622768044472,-0.02374258264899254,0.046618834137916565,-0.1333538442850113,-0.010242790915071964,0.019082339480519295,0.011552168987691402,-0.038970448076725006,-0.012246793136000633,0.013432702980935574,0.008329189382493496,-0.03599667176604271,-0.007720937021076679,-0.15437263250350952,0.006509263999760151,-0.0073669664561748505,-0.058125462383031845,-0.06472562998533249,-0.07920082658529282,-0.03602633252739906,0.026026327162981033,-0.019565274938941002,-0.015606996603310108,0.03965733200311661,0.006214263383299112,-0.04747961834073067,0.014830978587269783,-0.03256488963961601,-0.10998351126909256,-4.7256522268566955e-33,-0.022789709270000458,-0.038400374352931976,-0.06926418840885162,0.09078739583492279,0.006004011258482933,-0.03590194880962372,0.05804281309247017,0.04119114205241203,0.08093460649251938,0.02735515497624874,-0.08660657703876495,-0.05803688243031502,0.007358929608017206,0.00518553052097559,0.052111923694610596,0.022648565471172333,0.048165109008550644,0.06720439344644547,-0.04816440865397453,-0.07986588031053543,0.00637948838993907,0.06364158540964127,0.018868600949645042,0.049049261957407,-0.022953826934099197,0.02449474111199379,-0.023896383121609688,-0.1109243854880333,-0.06727324426174164,0.02501361258327961,-0.06904195994138718,-0.026091318577528,0.08436732739210129,0.004886098206043243,0.013537216931581497,-0.0077096628956496716,-0.002002991735935211,-0.08175215870141983,-0.01824689283967018,-0.05162734165787697,0.00975383073091507,-0.0020073072519153357,0.011893343180418015,0.09199755638837814,0.00014838123752269894,-0.02882401831448078,-0.0867389515042305,0.030199142172932625,0.08296363055706024,-0.007762711029499769,-0.002056979574263096,-0.08678140491247177,0.02947916090488434,-0.049089621752500534,-0.04220053553581238,0.02930976077914238,-0.08817717432975769,-0.011090870946645737,-0.013045326806604862,0.12818633019924164,-0.026430344209074974,0.04845350980758667,-0.008538070134818554,0.09015645831823349,0.08348754048347473,-0.029703421518206596,0.00624171644449234,-0.01982712559401989,-0.006782387383282185,0.05859634652733803,0.020990930497646332,-0.0246804840862751,-0.026266111060976982,0.03336464241147041,0.05339828506112099,0.04455065354704857,0.055655837059020996,0.05116213858127594,-0.044969283044338226,0.04319702088832855,-0.055175550282001495,-0.05897146090865135,-0.0018639863701537251,-0.04870327189564705,0.014398613944649696,-0.023233050480484962,-0.05385725945234299,0.0343763567507267,-0.05205898359417915,0.021066173911094666,-0.005558651871979237,0.008270476944744587,-0.0031348986085504293,0.04423320293426514,0.03160013258457184,-4.2247808806905596e-8,-0.02249186672270298,-0.1081165075302124,0.011544100940227509,-0.0565650537610054,0.03158024698495865,-0.11845174431800842,0.12401122599840164,0.02063252590596676,0.018058795481920242,0.02446901611983776,0.020408891141414642,-0.0032670185901224613,-0.02929857186973095,-0.0269381795078516,-0.06153682619333267,0.08297798037528992,-0.01261820551007986,-0.07595492154359818,-0.06364339590072632,0.0001009775951388292,0.033022426068782806,-0.003508423687890172,-0.038415417075157166,-0.06057332828640938,-0.03390005603432655,-0.04592793807387352,0.038498539477586746,0.046348828822374344,-0.04681043699383736,0.05352665111422539,0.0016388120129704475,0.02370724268257618,0.07612515240907669,0.06830982118844986,0.003543545724824071,-0.03731990233063698,-0.01833534613251686,-0.04281199350953102,-0.04739406704902649,0.009281720034778118,-0.0829218178987503,-0.08479437232017517,-0.06885963678359985,-0.037808045744895935,0.020671173930168152,-0.012271986342966557,-0.06335919350385666,0.03621599078178406,-0.07870606333017349,-0.0005691203405149281,0.014385700225830078,-0.03743724524974823,0.05150150880217552,0.04948220029473305,-0.08332256227731705,-0.015059332363307476,0.05980714038014412,0.09916684776544571,0.050474949181079865,-0.01737496256828308,0.04674367606639862,-0.0032557896338403225,0.02728903293609619,0.04675542190670967]},{"text":"The door is on the left.","book":"Down and Out in Paris and London","chapter":45,"embedding":[0.00553359929472208,0.07552099227905273,-0.04708031192421913,0.062200114130973816,0.02057643048465252,0.03955088555812836,0.0031663156114518642,-0.054439738392829895,0.04629261791706085,0.03837084025144577,0.031803566962480545,0.06867137551307678,0.009032739326357841,-0.03882376849651337,0.0027612594421952963,-0.019855372607707977,-0.061450161039829254,0.018376538529992104,-0.0016487975372001529,0.030131475999951363,-0.06171889975667,-0.019515298306941986,-0.011848275549709797,-0.06960074603557587,-0.06601253151893616,-0.03155123442411423,-0.02438039518892765,0.0007728328928351402,-0.029280100017786026,-0.035633984953165054,0.0013247404713183641,0.002448896411806345,-0.0116941649466753,-0.033513039350509644,0.004142965655773878,0.033260006457567215,0.037916794419288635,-0.01583193615078926,0.032666079699993134,-0.0903247594833374,-0.03473756089806557,-0.00726773776113987,0.010304590687155724,0.03622807189822197,-0.05762455612421036,0.019689811393618584,-0.027276277542114258,-0.013058575801551342,0.09109657257795334,-0.03365156799554825,-0.0863981619477272,0.09711693972349167,-0.07329021394252777,0.07091160118579865,-0.05346379056572914,0.07517166435718536,0.08336406201124191,-0.0997723788022995,0.010983248241245747,0.004391652066260576,0.07996430993080139,0.05731944367289543,-0.058379024267196655,0.030824929475784302,-0.00954763125628233,-0.07378420233726501,-0.0029017936903983355,-0.04061085358262062,-0.019869264215230942,-0.07178013771772385,0.11285955458879471,-0.06654796749353409,0.04597877338528633,-0.05195225775241852,0.05578823760151863,-0.10805699229240417,-0.05334186926484108,0.0639718696475029,0.025716863572597504,0.000662555277813226,0.0018752333708107471,-0.014285726472735405,-0.06032824516296387,0.04256812855601311,0.017785213887691498,0.0335775762796402,0.0033528299536556005,0.04431555047631264,0.029547424986958504,0.09483131766319275,-0.026158753782510757,0.013904196210205555,-0.022135701030492783,-0.0019384021870791912,-0.05706235393881798,-0.052926842123270035,-0.05519147962331772,0.08019354194402695,0.00023846724070608616,0.08556337654590607,0.0015472810482606292,-0.027752136811614037,0.03200162574648857,-0.02637750469148159,0.055730465799570084,0.0040067522786557674,-0.020534636452794075,0.0032394693698734045,0.015960920602083206,-0.055448200553655624,-0.0328918881714344,0.027599353343248367,-0.028254592791199684,0.11123500764369965,0.0319371335208416,-0.07821571826934814,-0.015052113682031631,0.02819899469614029,0.11746631562709808,0.011076388880610466,0.020398719236254692,-0.06724488735198975,0.005391010548919439,-0.04720968008041382,-0.005629903171211481,-0.08908503502607346,-0.03190409019589424,-1.1456229087843823e-32,0.010823915712535381,-0.007291611284017563,0.018721072003245354,-0.05318417772650719,0.07839547097682953,0.09775330126285553,-0.03023422136902809,0.06959609687328339,-0.10046831518411636,0.033260099589824677,-0.017786148935556412,-0.1134994849562645,-0.040618784725666046,-0.041680432856082916,-0.03506765142083168,-0.023090487346053123,-0.03564925119280815,0.00162938900757581,-0.078776516020298,0.0012643537484109402,0.025717420503497124,0.005763072986155748,0.007166590075939894,0.030081091448664665,0.04820665344595909,-0.027493296191096306,0.024975208565592766,-0.03386235237121582,0.009239069186151028,0.004886513575911522,0.00911422073841095,0.004251130390912294,0.07237119972705841,0.02630534954369068,-0.06486671417951584,-0.0451437272131443,0.014076804742217064,-0.01590093970298767,-0.05339111015200615,-0.07421800494194031,-0.12411195039749146,-0.009964141063392162,0.02615484781563282,0.009639727883040905,-0.0509418323636055,0.06496270000934601,0.05592040345072746,0.004520155023783445,0.037331968545913696,0.036406587809324265,-0.057633887976408005,-0.0033657043240964413,0.018519805744290352,0.046316396445035934,-0.10717404633760452,-0.09183348715305328,0.031032683327794075,0.058027371764183044,0.0059951115399599075,-0.018852872774004936,0.00031222993857227266,0.06765800714492798,0.06136966869235039,0.017501818016171455,0.037778083235025406,-0.07672124356031418,-0.04974982142448425,-0.08216128498315811,0.06475642323493958,-0.03162553161382675,-0.12128203362226486,-0.05774713680148125,0.05516079068183899,0.05481765791773796,-0.042023915797472,0.004332432989031076,-0.04232402145862579,-0.03279759734869003,0.0484032966196537,-0.045370861887931824,-0.020700877532362938,0.03969249501824379,-0.03282272443175316,0.05046258121728897,0.04091383516788483,-0.01713385246694088,-0.09050951898097992,-0.0596395879983902,0.031219637021422386,0.006158794276416302,-0.05064019560813904,-0.01925763674080372,0.004420048091560602,0.06388216465711594,-0.037365734577178955,6.626507040030969e-33,0.001832957030273974,-0.03803365305066109,-0.023194681853055954,-0.05258779227733612,0.01226572785526514,0.026714738458395004,-0.016835732385516167,-0.04502080753445625,0.057639338076114655,0.08234401047229767,0.10090836137533188,0.04230320826172829,0.057517923414707184,0.026850733906030655,0.012898087501525879,0.025129755958914757,0.1571396440267563,-0.028072066605091095,0.0075520360842347145,0.042747557163238525,-0.03093770146369934,-0.018956594169139862,-0.05172768607735634,0.024647925049066544,-0.037091370671987534,0.003978689666837454,0.14291851222515106,0.07140476256608963,-0.05431903153657913,0.01145869679749012,-0.10248031467199326,-0.05695563182234764,0.03551384434103966,0.09161829203367233,-0.014518131501972675,-0.0442730151116848,0.027977611869573593,-0.037680987268686295,-0.05179733410477638,0.027777820825576782,0.1127488985657692,0.04985072463750839,0.05403058975934982,0.050858255475759506,0.029045671224594116,0.05637892335653305,-0.010915751568973064,0.024490943178534508,-0.0218341164290905,-0.03714769333600998,0.06521625816822052,0.10091570019721985,0.009734278544783592,-0.03202206268906593,0.04924054816365242,0.04277073219418526,-0.09314480423927307,-0.028632592409849167,0.09875921159982681,0.039209846407175064,-0.00041992319165728986,0.045170143246650696,0.06515171378850937,-0.002535965060815215,-0.015764418989419937,-0.021898601204156876,0.02722903899848461,-0.021159876137971878,-0.05556456372141838,-0.06419890373945236,0.10281620174646378,0.03144638612866402,-0.04889371991157532,-0.04269452020525932,0.013243070803582668,0.05028096213936806,-0.006016485393047333,-0.09517372399568558,-0.06472010910511017,-0.01453509833663702,-0.011547659523785114,-0.09018637239933014,-0.02936764806509018,-0.06650353968143463,-0.034016478806734085,-0.09662287682294846,0.0734485313296318,0.031067226082086563,0.06877961754798889,0.01305126491934061,-0.03310816362500191,0.1192430853843689,0.022954732179641724,-0.05873572826385498,-0.004453928209841251,-2.266834009390095e-8,0.035631656646728516,-0.07902269810438156,0.027811110019683838,-0.0862797200679779,0.015360509045422077,0.048885244876146317,0.0883818045258522,0.022175665944814682,-0.02831915020942688,-0.018239907920360565,-0.0033978901337832212,0.07895947247743607,-0.03351539745926857,-0.01606792025268078,-0.02559868060052395,0.0741688534617424,-0.13340072333812714,-0.03687091916799545,0.008136934600770473,0.0061412290669977665,0.09500893205404282,-0.05022313445806503,0.058176878839731216,0.0139617333188653,-0.04561091959476471,-0.010548782534897327,-0.03571975231170654,-0.0030346170533448458,-0.04105290025472641,0.031060747802257538,0.02225405164062977,0.0220148004591465,0.05366169288754463,0.007861161604523659,-0.01957167498767376,-0.018230287358164787,0.000691182678565383,0.04855305328965187,-0.004286084324121475,-0.05442234128713608,0.011311747133731842,-0.090801902115345,-0.06439486891031265,-0.0017846995033323765,-0.0315396711230278,0.067487433552742,0.045444048941135406,0.012517006136476994,-0.03849632665514946,0.03219923377037048,0.007460464257746935,-0.009675129316747189,0.033844418823719025,-0.11483275145292282,0.020904306322336197,0.014810175634920597,-0.0015571638941764832,-0.05145815759897232,0.01554680336266756,0.032992906868457794,0.0236752200871706,0.117758609354496,0.007062664721161127,0.04555035009980202]},{"text":"He finds out what to do; draws up the orders; and I sign ’em.","book":"Down and Out in Paris and London","chapter":46,"embedding":[0.044544290751218796,0.06086258962750435,0.03104531392455101,-0.04122697934508324,-0.014195564202964306,-0.03332608565688133,0.07934156060218811,-0.08673166483640671,0.022731440141797066,-0.0376502089202404,-0.017981871962547302,0.056213703006505966,-0.026192691177129745,0.03412777557969093,0.091348797082901,-0.03865205869078636,0.004082512576133013,-0.03353733569383621,-0.038861677050590515,0.024585997685790062,0.00753253186121583,0.006449391134083271,0.00022174294281285256,-0.03949183225631714,-0.004379135090857744,-0.03559635952115059,-0.003805774264037609,-0.022205693647265434,0.00130800053011626,-0.023166298866271973,-0.021619297564029694,0.028209399431943893,-0.028694571927189827,0.02533430978655815,-0.0016500832280144095,0.024881605058908463,0.03306594118475914,-0.045880161225795746,0.036580849438905716,-0.016077175736427307,0.07328715175390244,0.0007212135242298245,0.019401032477617264,0.09192317724227905,-0.02812836691737175,0.05386314541101456,0.0037743092980235815,0.038078032433986664,0.05787992849946022,-0.018765058368444443,-0.013691527768969536,-0.0498017743229866,-0.04559711366891861,0.03072263114154339,-0.03551454097032547,0.05006417632102966,0.11829934269189835,-0.045865289866924286,0.021655680611729622,0.0016379763837903738,-0.02174806036055088,0.043707117438316345,-0.03073589876294136,0.04596193507313728,-0.009607585147023201,0.02707591839134693,-0.010652591474354267,0.025871239602565765,-0.03266633301973343,0.08341947942972183,0.06534262746572495,-0.013615227304399014,-0.008446605876088142,0.016471099108457565,-0.012984751723706722,-0.043387364596128464,-0.00738595612347126,-0.09154141694307327,0.022346263751387596,-0.12642662227153778,-0.1666087806224823,-0.04106384515762329,-0.11961840838193893,0.059712447226047516,0.0033024849835783243,-0.037352144718170166,0.0366695374250412,-0.04673508182168007,0.09684807062149048,0.09266511350870132,-0.05282500013709068,-0.05926445126533508,0.011563872918486595,-0.08121208846569061,-0.045052867382764816,0.09020227938890457,0.05673447623848915,0.11105456203222275,-0.10921888053417206,0.03477640822529793,0.024497026577591896,0.03761037439107895,0.07705803215503693,-0.010160711593925953,0.01208165567368269,-0.02420680969953537,-0.057209741324186325,-0.09609602391719818,-0.020840542390942574,-0.05367995798587799,-0.03181802108883858,-0.01828104257583618,0.04046119749546051,0.0010655552614480257,0.026257868856191635,0.09026102721691132,-0.03850170597434044,0.04954522103071213,-0.05481432378292084,-0.01352604478597641,0.034945107996463776,0.05263426527380943,-0.019849048927426338,0.07887199521064758,-0.1304093450307846,-0.03568848967552185,0.015157388523221016,-5.210091815929792e-33,0.046719200909137726,0.033880069851875305,-0.028613103553652763,0.02929636649787426,0.12000951915979385,0.04069986566901207,0.01320449635386467,-0.018232548609375954,-0.05189806595444679,0.12740306556224823,0.02342236042022705,0.026355667039752007,0.03602054342627525,0.13108041882514954,-0.11736243963241577,-0.015267366543412209,0.021135469898581505,0.051449697464704514,-0.04379408806562424,-0.05204315856099129,-0.02142007276415825,-0.036648426204919815,-0.01764126867055893,0.04618046432733536,0.02045764960348606,0.0034443542826920748,-0.01906357891857624,0.03889201581478119,-0.0015181164490059018,0.0054604047909379005,-0.0033952866215258837,0.07243701815605164,0.027941294014453888,-0.02188967354595661,-0.043246496468782425,0.03661869466304779,-0.07083002477884293,-0.026691587641835213,-0.03674006834626198,-0.013495517894625664,-0.0786004289984703,-0.022079283371567726,-0.07133612036705017,0.04039468988776207,-0.04737216979265213,0.0206109881401062,0.04538015276193619,0.012918563559651375,0.07643107324838638,0.04508562386035919,0.00016697176033630967,0.008595229126513004,0.07961438596248627,-0.018199454993009567,-0.023615635931491852,-0.09032458811998367,0.03830908611416817,-0.065846286714077,0.01213409285992384,-0.01864318922162056,0.04266473278403282,-0.01147028710693121,0.019583020359277725,0.15523914992809296,-0.016100943088531494,-0.08239345252513885,-0.04839155822992325,-0.028207197785377502,0.10893016308546066,-0.03483589366078377,-0.050912901759147644,0.04016760364174843,-0.047567788511514664,-0.02628932148218155,-0.01653733290731907,-0.0459771454334259,-0.039253052324056625,0.04190941900014877,-0.005467147566378117,-0.05965086445212364,0.03519254922866821,0.011852000840008259,-0.01094124000519514,0.11096225678920746,0.01606208086013794,0.040195077657699585,0.011755427345633507,-0.07846435904502869,-0.028672972694039345,0.035321738570928574,-0.041046954691410065,0.009663415141403675,0.042000386863946915,0.0461670458316803,0.020124491304159164,2.296170808290924e-33,0.011074165813624859,-0.03390488401055336,0.007450010161846876,-0.0248259324580431,-0.020769193768501282,-0.06696542352437973,-0.09047875553369522,-0.05413920804858208,0.04793497174978256,0.008328383788466454,-0.056425467133522034,0.07419223338365555,-0.02473343349993229,0.020036514848470688,0.052703533321619034,-0.07148422300815582,0.05308115854859352,-0.006836512126028538,0.06523770093917847,-0.04100026935338974,-0.01933233253657818,0.01940949819982052,0.08401031792163849,0.053666166961193085,-0.06397116929292679,-0.020409533753991127,0.07491324096918106,-0.024557173252105713,-0.07247777283191681,-0.031696006655693054,0.031082240864634514,-0.06503503769636154,-0.03840399906039238,0.027236323803663254,0.028150144964456558,-0.05610460788011551,-0.06447256356477737,0.02628767490386963,-0.0015016088727861643,0.043187763541936874,-0.00520432461053133,0.0026074170600622892,0.061731867492198944,0.020002786070108414,-0.017398081719875336,-0.04341267794370651,0.05497239530086517,0.03379771485924721,-0.051718179136514664,0.0724499449133873,0.024081803858280182,0.0009759651147760451,-0.05336678773164749,-0.09690863639116287,-0.060812342911958694,0.10191414505243301,-0.00347417825832963,0.03858041763305664,0.07656700164079666,-0.003980015870183706,0.016583725810050964,0.07699702680110931,0.050723593682050705,0.006849969737231731,-0.041890159249305725,-0.0058355494402348995,-0.00828489288687706,0.018391527235507965,0.030115583911538124,0.030882839113473892,0.011529089882969856,-0.0821382999420166,-0.014364738948643208,-0.04858548939228058,0.06506843119859695,-0.0326465480029583,0.0034648713190108538,-0.08663632720708847,-0.009828684851527214,-0.08434459567070007,-0.05841774120926857,-0.06410615891218185,-0.0065591298043727875,0.08268416672945023,-0.04073655232787132,-0.0009812518255785108,-0.046553097665309906,-0.01721307821571827,0.03725422918796539,0.002202132483944297,0.09221114218235016,0.013538632541894913,0.09608699381351471,-0.011164143681526184,-0.019543778151273727,-2.443871949253662e-8,-0.015275664627552032,-0.0370071642100811,0.041284866631031036,-0.06633435934782028,0.02748684585094452,0.03798361122608185,-0.025027086958289146,-0.009534311480820179,-0.03956054151058197,-0.018969185650348663,0.09286262094974518,-0.04932340234518051,-0.018699301406741142,-0.08707726001739502,0.07049068063497543,-0.03180732578039169,0.031071702018380165,-0.09334490448236465,-0.11260128021240234,-0.005904159042984247,-0.05764243006706238,0.026809345930814743,0.033884283155202866,0.005868539679795504,-0.04461880028247833,0.008167063817381859,0.05501716211438179,0.1091817244887352,0.010013611055910587,0.11209595948457718,0.041246525943279266,0.04094226658344269,-0.01974278874695301,0.011846428737044334,0.020609760656952858,-0.005566325504332781,-0.027764437720179558,-0.05192885920405388,0.13498550653457642,-0.013975011184811592,-0.038950204849243164,0.03390790894627571,-0.013721446506679058,0.022424399852752686,-0.08235986530780792,0.03538062795996666,-0.008086777292191982,-0.015299161896109581,0.010958587750792503,-0.0766327977180481,-0.0647704228758812,-0.04715503007173538,0.07130836695432663,0.03326009586453438,0.09011013805866241,-0.058024223893880844,0.021322542801499367,-0.013197195716202259,0.04588176682591438,-0.02449297346174717,0.045334529131650925,-0.044829364866018295,-0.05530233308672905,-0.06596124172210693]},{"text":"You can stop interrupting, Paul.","book":"Down and Out in Paris and London","chapter":46,"embedding":[0.02098313346505165,0.00005698457607650198,0.02421748638153076,-0.06673269718885422,-0.02260422892868519,0.011856861412525177,0.04367521405220032,-0.05221317335963249,0.03532925993204117,-0.018108682706952095,-0.002789740916341543,0.07779056578874588,-0.0491337813436985,-0.08716823905706406,-0.08585904538631439,-0.01265142485499382,0.04823499545454979,0.05218173563480377,-0.043301843106746674,0.025953294709324837,0.05744079127907753,0.1008797213435173,0.0846342146396637,-0.008869804441928864,-0.03483281657099724,0.07692020386457443,-0.002946983091533184,-0.0475817546248436,0.024007540196180344,-0.044370297342538834,0.042275313287973404,0.04266481474041939,0.0005619171424768865,0.003823639126494527,0.014126495458185673,0.02522890642285347,-0.026353752240538597,0.1063346415758133,0.06426947563886642,-0.02613329142332077,0.03946709260344505,-0.07982461154460907,-0.054270047694444656,-0.06152991205453873,0.04719870164990425,-0.018389923498034477,-0.04998317360877991,-0.040538240224123,0.07564812898635864,-0.039913345128297806,-0.06590206176042557,0.01744382083415985,0.02527848817408085,-0.004840013571083546,0.05119674280285835,0.0481739342212677,0.049293361604213715,0.050004828721284866,0.04278096184134483,-0.033251065760850906,-0.11837448924779892,0.019047679379582405,-0.09904724359512329,0.1009521484375,-0.04855255037546158,0.12018952518701553,0.012552939355373383,0.014499337412416935,-0.03366997465491295,0.12944379448890686,-0.005471981596201658,-0.02884955145418644,-0.05152568593621254,-0.01341127697378397,0.073234923183918,0.051545340567827225,0.032293323427438736,-0.08202885836362839,0.028477992862462997,0.06700478494167328,-0.032597560435533524,-0.1617043912410736,0.02493097260594368,-0.023810582235455513,-0.006104215979576111,-0.001864208490587771,0.04218137636780739,0.037107255309820175,0.022082531824707985,-0.026645734906196594,-0.10365676134824753,-0.010775153525173664,0.055280741304159164,0.006653085350990295,-0.010470728389918804,0.015560142695903778,-0.05007403343915939,-0.026738377287983894,-0.030548593029379845,0.03801640123128891,0.009749792516231537,-0.012430178001523018,0.0326155349612236,-0.03312584385275841,0.00928638968616724,-0.03998444229364395,0.0018150811083614826,0.07442214339971542,0.003362389514222741,-0.08734927326440811,-0.023790258914232254,-0.04732167348265648,-0.039063699543476105,-0.04056789353489876,0.1064252108335495,0.12382667511701584,0.06912097334861755,0.058049242943525314,0.04264916479587555,-0.038180191069841385,0.07938697189092636,0.02790260501205921,-0.016055142506957054,0.12163996696472168,-0.05216647684574127,-0.060752708464860916,0.0036203416530042887,-6.102061704779544e-33,-0.053610604256391525,-0.0313529334962368,-0.016384540125727654,0.018226109445095062,0.03775437921285629,0.07868222147226334,-0.049632079899311066,0.01309272088110447,0.03255869820713997,-0.04519177973270416,0.005313562694936991,0.011154185980558395,0.026957616209983826,-0.05810869112610817,0.030642233788967133,-0.0031261714175343513,0.019733678549528122,0.058162737637758255,-0.000014866923265799414,-0.10055423527956009,0.049888961017131805,-0.06381476670503616,-0.0059007806703448296,0.057740483433008194,0.04222244769334793,-0.07030085474252701,0.07433384656906128,0.0068325502797961235,0.15300001204013824,0.013185884803533554,-0.026938268914818764,0.07039868086576462,0.05970903858542442,0.02650364488363266,-0.055361952632665634,0.008224931545555592,-0.05038782209157944,0.020512593910098076,-0.02625005878508091,-0.049167025834321976,-0.08700007200241089,0.05009309574961662,-0.025593582540750504,0.014906199648976326,0.012512859888374805,-0.10383142530918121,0.040568795055150986,-0.010687951929867268,-0.07398265600204468,0.11052688211202621,0.055114127695560455,0.06551681458950043,0.024040164425969124,-0.02492505870759487,-0.06623423844575882,0.017314203083515167,0.07178426533937454,0.04664355516433716,-0.03613882511854172,0.007385255768895149,-0.011315025389194489,0.036611005663871765,0.032090768218040466,0.07149858772754669,-0.02186570316553116,0.05153680965304375,-0.07417060434818268,0.010247662663459778,-0.007664810866117477,0.03172183781862259,-0.07122253626585007,-0.05471717193722725,0.006439448334276676,0.010152673348784447,-0.06373628973960876,0.003598063252866268,-0.0790400505065918,-0.007132692728191614,0.04043982923030853,0.011977964080870152,0.05706457793712616,-0.01697329245507717,-0.030954623594880104,-0.023914571851491928,0.035674259066581726,-0.11537841707468033,-0.027524106204509735,-0.008678179234266281,0.010874978266656399,0.016205569729208946,-0.08600106835365295,0.030231434851884842,0.034618984907865524,0.04357657581567764,-0.07008808851242065,4.3751844636307846e-33,0.04702172428369522,0.013042774051427841,-0.04602661356329918,0.030644193291664124,-0.07924767583608627,0.011910717934370041,-0.05013823136687279,-0.013002458959817886,-0.027692293748259544,-0.040385425090789795,0.03343361243605614,-0.039003316313028336,0.020515967160463333,-0.011194190010428429,0.0013051590649411082,-0.08155184239149094,0.031987305730581284,0.0708160549402237,-0.09303781390190125,0.09621267765760422,-0.036546491086483,-0.07411559671163559,0.05050300434231758,-0.0519520528614521,-0.04170702397823334,-0.004531497601419687,-0.030409282073378563,0.0823291763663292,0.02793436497449875,-0.05160749703645706,-0.03600330650806427,-0.03462404012680054,-0.04292839765548706,-0.02463136427104473,0.01764557883143425,0.042221564799547195,-0.05457242578268051,-0.007391130086034536,0.013390944339334965,-0.026431657373905182,0.08336237818002701,-0.012591972947120667,0.005379162263125181,0.052905526012182236,0.061699606478214264,-0.062102604657411575,0.04771346226334572,-0.023893414065241814,-0.108180470764637,-0.02916516736149788,-0.11571061611175537,0.010254540480673313,0.03903092443943024,-0.024368317797780037,-0.0331689827144146,0.03741553798317909,0.05069658160209656,0.05765809491276741,-0.015303424559533596,-0.07562100887298584,0.01644706539809704,0.004743938334286213,0.026200994849205017,0.06443816423416138,0.16549743711948395,-0.002726770704612136,-0.034385796636343,0.022991862148046494,0.04994501918554306,0.017452022060751915,0.020294131711125374,0.030187975615262985,-0.08074422925710678,-0.008223166689276695,0.014022961258888245,0.017695510759949684,-0.07892449200153351,-0.06247788295149803,-0.02779972366988659,-0.12791292369365692,0.014905557967722416,0.01875975914299488,-0.02487485110759735,0.07564868032932281,-0.05704658851027489,-0.0022800061851739883,0.007647755555808544,0.018630459904670715,0.023157691583037376,0.009453984908759594,0.027972565963864326,0.020138097926974297,0.010622921399772167,0.018544109538197517,-0.04231695830821991,-1.491391721231139e-8,-0.03340649977326393,-0.00656881183385849,0.01602134108543396,0.022979186847805977,0.11320823431015015,-0.05303293094038963,-0.00623059319332242,-0.016449637711048126,-0.03335697576403618,0.06306949257850647,0.07272692024707794,-0.014156064949929714,0.0354992039501667,0.04388149455189705,0.07702763378620148,0.022411853075027466,0.014757785014808178,-0.07878140360116959,0.012808100320398808,0.02530757524073124,0.01956266351044178,-0.03788784146308899,-0.008661637082695961,0.04807475954294205,-0.0028858089353889227,0.0044371155090630054,0.014903201721608639,0.07652589678764343,0.026121841743588448,-0.07551074773073196,0.03855660930275917,-0.00820993259549141,-0.08291943371295929,0.048351842910051346,-0.08551645278930664,-0.030851978808641434,0.03091922402381897,-0.03017549403011799,0.029992761090397835,-0.002078697783872485,-0.04876257851719856,0.038796309381723404,0.0006221123039722443,0.03363552317023277,-0.03168509900569916,0.015661614015698433,0.08698417246341705,-0.025726309046149254,-0.010641645640134811,0.06544429063796997,-0.0571073442697525,-0.018935732543468475,0.020550858229398727,-0.040156636387109756,0.08148697763681412,0.026959102600812912,0.020285477861762047,0.0467827133834362,-0.07686915248632431,0.05510103702545166,0.016810128465294838,-0.02117783948779106,-0.11248160153627396,-0.03413363918662071]},{"text":"It must be hanging in the blue closet where you left it.","book":"Down and Out in Paris and London","chapter":46,"embedding":[0.043060753494501114,0.03367409110069275,0.004721060860902071,0.0755743607878685,0.11799164116382599,0.03692395240068436,-0.017026320099830627,-0.028604313731193542,0.08084288984537125,0.05116911977529526,-0.002714268397539854,0.06508149951696396,-0.005729662720113993,-0.037612464278936386,-0.02803933434188366,0.03710484132170677,-0.0934731662273407,-0.051219724118709564,-0.02120806835591793,-0.005139500834047794,-0.05485253408551216,0.06742171943187714,0.06150442734360695,0.025009410455822945,0.004309403244405985,0.04762372747063637,-0.04751373082399368,0.009693949483335018,-0.0336381234228611,0.01659468002617359,0.01843968592584133,-0.03605819493532181,0.03102158196270466,-0.003977020736783743,0.06781666725873947,-0.026821382343769073,0.01741689071059227,-0.030068770051002502,0.06471135467290878,-0.025423409417271614,-0.026441209018230438,0.030998243018984795,-0.008370445109903812,-0.044486574828624725,-0.01383260264992714,0.023315628990530968,0.015109842643141747,-0.01724907197058201,0.0872802883386612,0.008978379890322685,0.012253481894731522,0.05641533061861992,-0.044146548956632614,0.06306467205286026,-0.040302615612745285,0.10013167560100555,0.13106109201908112,-0.016696877777576447,0.049797818064689636,0.04588015004992485,0.09512581676244736,0.025279035791754723,-0.0708128958940506,0.056878525763750076,-0.025712667033076286,0.02093583531677723,-0.036030542105436325,0.08284308016300201,0.024893008172512054,-0.07900246977806091,0.006364780478179455,-0.04611838236451149,-0.04578131437301636,0.07648662477731705,0.06460930407047272,0.007042539305984974,0.10789738595485687,-0.04191429167985916,0.03822297602891922,0.053660813719034195,-0.09665755927562714,-0.03171079233288765,0.02130662091076374,0.13523352146148682,0.0011479643872007728,0.057417064905166626,0.06541652977466583,-0.03589434176683426,-0.04956753924489021,-0.05731852352619171,-0.03557419031858444,0.0040724799036979675,-0.09365158528089523,0.0002915581571869552,-0.009348869323730469,-0.051120396703481674,-0.04046260565519333,0.09208522737026215,-0.02340378798544407,0.07954306155443192,0.001754735829308629,-0.03569233790040016,0.061598919332027435,0.02585292048752308,-0.028082555159926414,-0.07273491472005844,-0.007488345727324486,0.03908185660839081,0.04643193259835243,-0.047704532742500305,0.023247573524713516,-0.08227375149726868,0.06777092814445496,0.06594546139240265,-0.0016183193074539304,0.036852993071079254,-0.014418481849133968,0.059649307280778885,-0.004630196373909712,0.027163954451680183,0.07048942893743515,0.026277070865035057,-0.03378885239362717,0.049891628324985504,-0.14167702198028564,0.013505441136658192,0.00005131295256433077,-5.021978556993655e-33,0.04086734727025032,-0.01225498877465725,0.03110714815557003,0.025696447119116783,0.10142841935157776,-0.00871996209025383,-0.011050522327423096,0.028364822268486023,-0.06213509663939476,0.024909820407629013,0.07229232043027878,-0.030079687014222145,-0.07320600748062134,-0.01297472883015871,-0.027649693191051483,-0.03375356271862984,-0.014242875389754772,-0.03982226550579071,0.0005202150205150247,0.009832974523305893,-0.005691017955541611,0.01749013178050518,-0.02375849522650242,-0.0557360015809536,-0.008733847178518772,0.08853773772716522,0.040026597678661346,0.01532687060534954,-0.020373119041323662,0.039496373385190964,0.016615020111203194,0.03588630259037018,0.03154716268181801,-0.05453266203403473,-0.004754668567329645,-0.09086823463439941,0.06476806104183197,-0.016835061833262444,-0.10850974917411804,-0.040271807461977005,0.05831262469291687,0.0009409387712366879,0.013103592209517956,0.03446716442704201,0.07148661464452744,0.017500728368759155,0.12729807198047638,0.03553606942296028,0.010478902608156204,0.0827973261475563,-0.009908853098750114,-0.006752277258783579,0.04696628451347351,-0.022274959832429886,-0.050207529217004776,-0.0887608677148819,0.0021082712337374687,0.014376088976860046,0.04913057014346123,-0.006651474628597498,0.020196860656142235,0.14547431468963623,0.033809252083301544,0.0237697996199131,0.07688278704881668,-0.08540134131908417,-0.040254462510347366,-0.01823744922876358,0.03870207816362381,-0.05876165255904198,-0.016712654381990433,-0.002409877022728324,0.013365112245082855,-0.03050907514989376,-0.0394144244492054,-0.04020049795508385,-0.1409592181444168,-0.03265167400240898,-0.0462883859872818,-0.0757909044623375,0.06919816136360168,-0.05903034284710884,0.0038266093470156193,0.051824234426021576,0.0050057657063007355,-0.06237088516354561,0.006313392426818609,-0.07460406422615051,-0.024721983820199966,-0.0036656653974205256,-0.017451312392950058,-0.004984571132808924,-0.023224862292408943,-0.05586768686771393,-0.01713046245276928,2.288222629769442e-33,0.028382010757923126,-0.13014782965183258,-0.03166547417640686,-0.012789211235940456,0.026542706415057182,-0.020143963396549225,-0.038973938673734665,0.021579114720225334,-0.041065167635679245,0.09233476966619492,0.07287824898958206,-0.004420067183673382,0.037591855973005295,0.06843357533216476,0.13780294358730316,0.05335098132491112,0.019645148888230324,0.0017355212476104498,-0.06790848821401596,-0.03501584753394127,-0.0343690849840641,0.01879250444471836,0.05963153392076492,0.05220242589712143,-0.04506027698516846,0.022099046036601067,0.09708930552005768,-0.0382915623486042,-0.03722191974520683,-0.02674786001443863,-0.10485883802175522,-0.009461801499128342,-0.08827707171440125,0.021798325702548027,0.015312864445149899,-0.040103811770677567,-0.08865053951740265,-0.06338761001825333,-0.044607847929000854,-0.0770605206489563,-0.045785900205373764,-0.021121399477124214,-0.08228050917387009,-0.005084002390503883,-0.030839040875434875,-0.05567368119955063,0.012417968362569809,0.03523065894842148,0.07844570279121399,0.027639802545309067,-0.03591267392039299,-0.04849329590797424,0.051380693912506104,-0.05925990268588066,-0.018756136298179626,0.08067627996206284,-0.04288157820701599,0.040652357041835785,0.0414276048541069,0.03559916093945503,0.0056677768006920815,0.039600588381290436,-0.015349242836236954,0.007201682776212692,0.052675265818834305,-0.005830290261656046,0.0005533687071874738,-0.02655436098575592,-0.08630448579788208,0.0012254951288923621,-0.026521552354097366,0.08768825978040695,-0.010820972733199596,-0.017249083146452904,0.007516787387430668,0.0821521058678627,-0.01910657063126564,-0.03662071377038956,-0.08387546241283417,0.004036867059767246,0.01399908121675253,-0.023702360689640045,-0.019454702734947205,-0.08049293607473373,-0.00252282596193254,-0.13483093678951263,-0.007225811015814543,0.041366949677467346,-0.060754720121622086,-0.112148717045784,0.0018705991096794605,0.05276460945606232,-0.046249862760305405,0.01950431615114212,-0.013580281287431717,-1.982492392471613e-8,0.01958218589425087,-0.038148071616888046,0.05985212326049805,-0.009854341857135296,0.074074387550354,0.0022654326166957617,0.10686042159795761,-0.022201374173164368,-0.00396724371239543,-0.031870704144239426,-0.04780316725373268,-0.04914037138223648,-0.006834530737251043,0.06549297273159027,-0.04266006499528885,-0.07989960163831711,-0.0953446626663208,-0.07492208480834961,-0.012730009853839874,0.009152278304100037,-0.013585386797785759,-0.054586347192525864,0.05805162340402603,-0.03753116726875305,-0.03966900706291199,0.004717656411230564,-0.015148251317441463,0.003214967669919133,0.09308870881795883,0.014594314619898796,0.07165881246328354,0.03531800955533981,0.009037029929459095,-0.025960279628634453,-0.08343148231506348,0.01885945349931717,-0.013740970753133297,0.03348148614168167,-0.021070297807455063,-0.06899239867925644,0.0250209029763937,-0.06333880871534348,-0.03835633769631386,0.04972745478153229,0.028566356748342514,-0.007416393607854843,0.03329739719629288,0.08056211471557617,-0.0316258929669857,0.022950030863285065,-0.023663530126214027,-0.07331071048974991,-0.0061483983881771564,0.008883771486580372,0.008883778937160969,-0.10582046210765839,0.034213755279779434,0.016897406429052353,-0.039496246725320816,-0.0016122912056744099,0.010242572985589504,0.004431324079632759,-0.1109185665845871,0.003797497134655714]},{"text":"I bet you any piece of jewellery you like to order from Sofia against a week’s housekeeping money, that the coat isn’t there.","book":"Down and Out in Paris and London","chapter":46,"embedding":[0.003641835879534483,0.10106577724218369,0.09014678001403809,0.013711309991776943,0.021744778379797935,-0.012263047508895397,0.06954546272754669,-0.09213589131832123,0.008645548485219479,-0.0787132978439331,-0.037428680807352066,-0.014832902699708939,-0.029552558436989784,-0.02885170839726925,-0.010233601555228233,-0.040275562554597855,0.018711913377046585,-0.07888644933700562,-0.05071965977549553,0.05710824951529503,-0.06842485815286636,0.0002243545459350571,0.030675217509269714,0.05189087614417076,-0.02251707762479782,0.04176747426390648,-0.010674498975276947,-0.025560857728123665,-0.024565570056438446,-0.025916507467627525,0.017779165878891945,0.036351822316646576,-0.09276078641414642,0.059557944536209106,0.019112732261419296,0.02216232195496559,-0.028834113851189613,-0.07044535130262375,0.02505710907280445,0.07490402460098267,-0.03419478237628937,-0.05257663503289223,-0.0847308561205864,0.04460962861776352,-0.004267218057066202,-0.020226426422595978,0.1001415103673935,0.0796753540635109,0.02093547023832798,-0.038747306913137436,-0.0009154502768069506,0.02909334935247898,-0.05187040567398071,-0.09683112055063248,-0.060748979449272156,0.009233156219124794,0.035174764692783356,0.00042649003444239497,0.02064705826342106,-0.009968608617782593,0.04355290159583092,0.04359793663024902,-0.024889744818210602,0.037598866969347,-0.04508017376065254,0.006273049861192703,-0.04673405736684799,0.087527334690094,-0.01221233606338501,-0.0352981798350811,0.11928115785121918,-0.029220573604106903,-0.03510089963674545,0.07558261603116989,0.015832645818591118,0.03529467433691025,0.06454623490571976,-0.07316581904888153,-0.04098312929272652,0.002377015072852373,-0.11730784922838211,-0.0693095400929451,-0.02925567515194416,0.07214703410863876,0.0012729924637824297,0.01036490872502327,0.015812814235687256,-0.047565046697854996,0.003951115533709526,-0.00459591718390584,0.024229662492871284,-0.04288407787680626,0.006203017197549343,-0.0045402864925563335,-0.0011138240806758404,0.01142219826579094,0.0600929856300354,0.03894181549549103,-0.074715755879879,0.10970424115657806,0.023608969524502754,0.010516749694943428,-0.025699816644191742,0.02794569730758667,-0.02158433012664318,0.00708864675834775,-0.03140132874250412,-0.03406449034810066,-0.020894436165690422,-0.07671106606721878,-0.07265529781579971,-0.021318083629012108,0.044490646570920944,-0.0877421647310257,-0.024419065564870834,-0.005829095374792814,0.010319261811673641,0.011959519237279892,0.0563596673309803,-0.019200697541236877,0.09518283605575562,0.03897116705775261,-0.02346775121986866,-0.028180446475744247,-0.10469168424606323,-0.027070827782154083,0.02138497121632099,-4.433699837730749e-33,-0.03522900864481926,0.06729085743427277,0.06770597398281097,0.001906918827444315,0.04779551923274994,0.004872518591582775,-0.010256800800561905,0.027343854308128357,0.0011221005115658045,0.04798979312181473,-0.012153875082731247,-0.04212774336338043,0.00547199510037899,-0.016610126942396164,-0.02742254175245762,0.13859237730503082,0.05529225990176201,-0.013633739203214645,0.033860139548778534,0.01621728017926216,0.02558482624590397,-0.05081668123602867,-0.0030340044759213924,0.0291494969278574,-0.07513157278299332,0.022297147661447525,0.08160078525543213,0.021985331550240517,0.0481107197701931,0.05633416026830673,-0.02179816924035549,0.013734173960983753,0.0911179706454277,-0.006945966277271509,-0.13498423993587494,0.02052123285830021,-0.03892512619495392,-0.07978715747594833,-0.010823659598827362,-0.04442112520337105,0.0723806694149971,-0.007129319477826357,0.08716778457164764,0.08433587104082108,-0.032431043684482574,0.050684425979852676,0.08699194341897964,0.03078349493443966,-0.025864167138934135,-0.04552384838461876,0.06227100268006325,0.02074221521615982,-0.013134320266544819,0.0703788623213768,-0.04140593484044075,-0.042517825961112976,0.04234945774078369,0.004519294016063213,0.07047980278730392,-0.042539361864328384,0.09271097928285599,0.019594745710492134,0.0016567379934713244,0.016662918031215668,-0.01740868017077446,0.010196853429079056,0.01390447560697794,0.043727368116378784,-0.049258098006248474,-0.004525566939264536,-0.001751694711856544,0.1206323578953743,0.01398835051804781,0.020323924720287323,0.0427875742316246,-0.01449696347117424,-0.009336575865745544,-0.017727134749293327,0.07402420043945312,-0.0352819561958313,-0.029203498736023903,0.05621757358312607,0.11631468683481216,0.00006459965516114607,0.03435830771923065,0.017928797751665115,0.05023353546857834,0.010949630290269852,0.012749371118843555,0.021227072924375534,-0.00533315259963274,-0.05236907675862312,0.0331585668027401,-0.08296568691730499,-0.04197360947728157,2.7097086188842507e-33,0.029389657080173492,-0.12288667261600494,0.03438783437013626,0.029818302020430565,0.07200738042593002,0.022394733503460884,-0.07749692350625992,0.027148306369781494,-0.026800695806741714,0.0821114107966423,0.04681379720568657,-0.0709826797246933,0.008307019248604774,-0.03803050518035889,0.05357641726732254,0.0008384909015148878,0.08263824880123138,-0.05957438051700592,-0.0033780813682824373,-0.008050165139138699,-0.045005861669778824,0.018071025609970093,-0.02657211944460869,0.0328061506152153,-0.1744057983160019,-0.0017030005110427737,0.05164039880037308,-0.033967580646276474,-0.037433087825775146,-0.011447904631495476,-0.01715092919766903,-0.0813543051481247,-0.1595274955034256,0.01605822890996933,0.009536893106997013,0.04748636856675148,-0.008101049810647964,-0.04245233163237572,-0.02487458661198616,0.07076813280582428,-0.05545419082045555,-0.05927713215351105,-0.020806757733225822,0.057935357093811035,0.03336666151881218,-0.05264005437493324,0.046477194875478745,0.005377911496907473,0.0665207952260971,0.002419777913019061,0.0493197999894619,0.004680252633988857,-0.07113560289144516,0.05371513217687607,-0.0764809101819992,0.09730864316225052,-0.04049825668334961,0.015191749669611454,0.07903177291154861,0.07001848518848419,0.021194159984588623,0.016401302069425583,-0.04131019860506058,-0.025292357429862022,-0.051392991095781326,0.019009988754987717,-0.026318471878767014,0.04576265066862106,-0.03097773715853691,0.0024698032066226006,-0.008089845068752766,0.012899104505777359,-0.046979524195194244,0.018343335017561913,-0.02135571651160717,0.03418022021651268,0.05679813772439957,0.004915348254144192,0.07595991343259811,-0.0005763286026194692,0.03223080933094025,-0.09017922729253769,-0.03203895315527916,0.015962177887558937,0.18090222775936127,-0.028209254145622253,-0.07844295352697372,-0.007178099360316992,0.01174181792885065,-0.04975191131234169,-0.05002190172672272,0.0393100306391716,0.006225152872502804,0.003778570331633091,0.032078418880701065,-2.7674001756849975e-8,0.0846964493393898,0.017521318048238754,0.11536560207605362,-0.04309142008423805,-0.041025061160326004,-0.04840729758143425,0.005329119972884655,-0.006479993928223848,-0.046671926975250244,0.022831520065665245,-0.001769720925949514,-0.027256367728114128,-0.08222649991512299,-0.07495440542697906,-0.09236558526754379,0.06299406290054321,-0.007225819863379002,-0.022135145962238312,-0.029588593170046806,-0.09013188630342484,0.07322385907173157,0.0376838743686676,0.04348408058285713,-0.06504392623901367,-0.05661698058247566,-0.029159720987081528,0.01894337683916092,0.010363511741161346,0.046842318028211594,0.03290380537509918,0.018930844962596893,-0.05686677247285843,0.00029573464416898787,-0.03712506592273712,-0.011287904344499111,-0.04876954108476639,0.021903101354837418,-0.017380638048052788,0.02488219365477562,-0.049417681992053986,0.006917866412550211,-0.14077986776828766,-0.10063350200653076,0.022097237408161163,0.04359734058380127,-0.02204969897866249,0.016758406534790993,-0.05305590108036995,-0.022114111110568047,-0.04401626065373421,-0.001492588547989726,-0.03515271097421646,0.0026331988628953695,0.12485241889953613,0.0009355352376587689,0.005234187468886375,-0.014561332762241364,-0.03754652291536331,0.013715741224586964,0.05083085969090462,-0.05527172610163689,-0.11781510710716248,-0.05153783783316612,0.02658124826848507]},{"text":"Major: I bet my best charger against an Arab mare for Raina that Nicola finds the coat in the blue closet.","book":"Down and Out in Paris and London","chapter":47,"embedding":[-0.05347365885972977,0.11795006692409515,0.10081255435943604,0.002570164855569601,0.04539049044251442,0.008235538378357887,0.06834010034799576,-0.03347735106945038,-0.06235244497656822,0.03807894140481949,-0.040761638432741165,-0.047705091536045074,-0.00475810281932354,0.019546285271644592,-0.07844682037830353,0.016673695296049118,-0.007972145453095436,-0.010635840706527233,-0.014743988402187824,0.06566152721643448,-0.15146197378635406,-0.0017298809252679348,0.07104934006929398,0.09280956536531448,-0.06898421794176102,-0.025008810684084892,0.02576887607574463,0.0368630550801754,-0.1169438585639,-0.0934343934059143,-0.0423230417072773,0.047600697726011276,0.02940521202981472,-0.009435326792299747,-0.06509293615818024,0.099745012819767,-0.01236877590417862,-0.04838155210018158,0.05362230911850929,0.0536692850291729,0.0641237422823906,-0.09262297302484512,-0.03643418848514557,-0.03412465751171112,0.0502965971827507,-0.020885420963168144,0.10959440469741821,0.04606655612587929,0.04655829444527626,0.022502679377794266,0.02119816653430462,0.003641105955466628,-0.1038661003112793,-0.007883364334702492,-0.048383790999650955,-0.04240977764129639,0.04750416800379753,0.02264993265271187,-0.004865806084126234,-0.033905595541000366,-0.04923780634999275,0.09702844172716141,-0.04236891493201256,0.07630224525928497,0.04283760115504265,-0.029494840651750565,-0.05188503861427307,0.1058017835021019,-0.06680981069803238,0.005983193404972553,0.06371653079986572,-0.0489693321287632,-0.040460411459207535,-0.029710156843066216,0.004763572011142969,0.042686499655246735,-0.05913259834051132,-0.020849104970693588,0.005434256512671709,0.0019026704831048846,-0.015035266056656837,-0.08144568651914597,-0.04309908673167229,0.04255211725831032,0.06921213120222092,-0.032559480518102646,0.051877234131097794,-0.15977519750595093,0.0016240185359492898,-0.04867616668343544,0.017694270238280296,-0.06373737752437592,-0.01664365455508232,0.04746347293257713,-0.0018056223634630442,0.05426142364740372,-0.0013553588651120663,-0.040276724845170975,-0.010216742753982544,0.06941027194261551,0.02147812768816948,-0.045174095779657364,-0.049327511340379715,-0.05529292672872543,-0.0027150814421474934,-0.015525315888226032,0.01259449403733015,-0.07449822127819061,0.042222701013088226,-0.08813256770372391,-0.03246938809752464,-0.08194729685783386,0.058125089854002,-0.012340309098362923,0.05603279173374176,0.11964519321918488,-0.06638362258672714,0.029410120099782944,0.027018990367650986,0.015171961858868599,0.027592284604907036,0.06970012933015823,-0.005763752851635218,-0.02467137575149536,-0.05803993344306946,0.017293423414230347,-0.0024668744299560785,-2.461238133137205e-33,0.047305889427661896,-0.016114579513669014,0.0072812167927622795,0.07596149295568466,0.051695581525564194,0.07267749309539795,-0.021464038640260696,0.06182574853301048,-0.0970766544342041,0.028151225298643112,-0.030333008617162704,0.023252645507454872,0.03169851005077362,0.020013336092233658,0.0029125043656677008,0.0616355761885643,0.0332837849855423,-0.0022780848667025566,-0.001453388947993517,-0.008365287445485592,-0.0030988063663244247,0.11356495320796967,-0.019343281164765358,-0.060912277549505234,0.042454902082681656,0.014882470481097698,0.10184699296951294,-0.0492328405380249,0.04646802693605423,0.043545711785554886,-0.03973749652504921,0.0023436537012457848,0.03268236666917801,0.018199443817138672,-0.08774301409721375,0.03483028709888458,-0.09742902964353561,-0.08405227214097977,-0.0633242055773735,0.03142409399151802,-0.04242285341024399,-0.014355265535414219,0.019685175269842148,0.03131502866744995,-0.07788319140672684,-0.019944950938224792,0.029646914452314377,0.013751325197517872,-0.021928120404481888,-0.05354712903499603,0.04097513481974602,-0.013680004514753819,0.021140357479453087,0.00225691101513803,0.03451528772711754,0.08374439179897308,0.03975386545062065,-0.007639546412974596,0.03263351321220398,0.01869998313486576,0.06232834979891777,0.06884731352329254,0.04007268697023392,-0.03821195662021637,-0.027509212493896484,-0.061075884848833084,-0.057360727339982986,0.0011446515563875437,-0.01165324542671442,-0.009412196464836597,-0.019076339900493622,0.06033102422952652,0.016018372029066086,-0.03807913511991501,-0.022602003067731857,0.003046996658667922,-0.01607019640505314,0.0014901570975780487,0.024089448153972626,-0.08028039336204529,-0.05909757316112518,0.006947177462279797,0.06830843538045883,0.024618636816740036,-0.09918133169412613,0.02899911440908909,0.08105137944221497,-0.01527729257941246,-0.025938671082258224,0.04541680961847305,0.06694010645151138,0.023374490439891815,0.03209211677312851,-0.12748044729232788,0.007242339197546244,5.4458802788349e-34,0.0453459657728672,-0.020375465974211693,0.042350053787231445,0.056137990206480026,0.0056198411621153355,-0.04185657948255539,-0.002610535826534033,-0.05314787104725838,0.009666910395026207,0.07990506291389465,-0.001838903990574181,-0.006603224202990532,0.05370292440056801,-0.022815126925706863,0.11762432008981705,0.00088424829300493,0.019631529226899147,-0.02020682953298092,0.016284143552184105,-0.02986701764166355,0.007849817164242268,-0.01140320673584938,0.017747415229678154,0.025836652144789696,-0.1282215565443039,-0.007993733510375023,0.026908624917268753,-0.04331741854548454,-0.03271679952740669,-0.013045591302216053,-0.06964558362960815,-0.045482393354177475,-0.16113737225532532,0.03264433518052101,-0.03331953287124634,0.09644538164138794,0.0150236701592803,-0.07180440425872803,-0.07247349619865417,0.06473056972026825,0.014762691222131252,-0.1046401858329773,0.016194889321923256,0.040029387921094894,0.02816626988351345,-0.06482068449258804,0.009414922446012497,0.10632481426000595,0.04744448512792587,0.03934616222977638,-0.03084365278482437,-0.001042695832438767,-0.053233928978443146,0.01857094280421734,0.04350651055574417,-0.005307442974299192,0.02964068576693535,-0.07404827326536179,0.042131416499614716,0.05273134633898735,0.04633913189172745,-0.014225122518837452,-0.0032970337197184563,-0.00005389705620473251,-0.10070060193538666,-0.012083247303962708,-0.09161464124917984,-0.058443665504455566,0.00200621853582561,0.0358293317258358,0.03892920911312103,-0.006243771407753229,-0.0756373479962349,-0.017057569697499275,-0.006013176869601011,0.06479975581169128,0.022803787142038345,0.016746794804930687,0.06361488997936249,0.04905274137854576,-0.006999129895120859,-0.07624245434999466,-0.004187355283647776,0.02443641982972622,0.08834169059991837,-0.0619366317987442,0.018995532765984535,0.012332958169281483,0.06698576360940933,-0.019617019221186638,0.013535408303141594,-0.033425018191337585,0.035615473985672,-0.05203986540436745,0.0013207917800173163,-2.2579532910071975e-8,-0.02202402614057064,-0.025137512013316154,-0.029307113960385323,-0.007275763899087906,-0.014832395128905773,-0.005214370787143707,-0.08053715527057648,-0.019994251430034637,-0.047854360193014145,0.05551115795969963,0.06405436247587204,-0.007163964677602053,-0.007076999172568321,-0.021349351853132248,0.07246658951044083,0.057877469807863235,0.10043489933013916,-0.0020906962454319,-0.06429529190063477,-0.030377471819519997,-0.0014082409907132387,0.05149611085653305,-0.04936845228075981,-0.031552549451589584,-0.02217492088675499,0.04644753783941269,0.044953372329473495,0.03916281834244728,0.014691458083689213,0.06450194120407104,-0.009320618584752083,-0.03938896209001541,-0.06201804056763649,-0.07525145262479782,0.05217717960476875,0.03414660692214966,-0.021898670122027397,0.04601078853011131,0.08046577125787735,-0.003989056684076786,-0.022433413192629814,-0.08263036608695984,-0.01995851658284664,0.018669769167900085,0.018849875777959824,0.018566152080893517,0.07494260370731354,-0.057086631655693054,-0.01857408508658409,0.004797244444489479,0.004636741708964109,-0.0414692647755146,0.12004310637712479,0.087188221514225,0.04232114553451538,0.01802833192050457,-0.020975280553102493,-0.04365295171737671,-0.06810639798641205,0.024069055914878845,0.025207897648215294,-0.08050075173377991,-0.06380705535411835,-0.0022047944366931915]},{"text":"Well, I am d— CATHERINE. (_stopping him_).","book":"Down and Out in Paris and London","chapter":47,"embedding":[0.006609453819692135,0.07724136859178543,0.10265391319990158,-0.035711389034986496,-0.020579060539603233,-0.014792777597904205,0.17003288865089417,-0.027577221393585205,-0.056061260402202606,-0.013506574556231499,-0.07517585903406143,-0.07055982947349548,-0.017861109226942062,-0.04648888111114502,-0.08013030141592026,-0.003584936261177063,0.06429719179868698,-0.004662098828703165,-0.056699637323617935,0.08552994579076767,-0.07781326025724411,0.05186842754483223,0.04983760043978691,0.04594765231013298,-0.0463700070977211,0.0038755815476179123,0.046468064188957214,-0.03537384048104286,-0.01699855923652649,-0.0006166460225358605,-0.03954501822590828,-0.048631951212882996,-0.020465852692723274,0.008889298886060715,-0.020713549107313156,0.009357905015349388,-0.011693778447806835,0.020492618903517723,0.016640223562717438,0.030697297304868698,-0.028925158083438873,-0.0932333841919899,-0.008152641355991364,0.09088443964719772,0.007061517331749201,0.016487596556544304,-0.05552133172750473,0.03584450110793114,-0.05755818262696266,-0.022533366456627846,-0.059460047632455826,0.07567662745714188,-0.052134834229946136,0.08651362359523773,0.03388197347521782,0.003940869122743607,0.09570653736591339,0.0298500657081604,0.017738400027155876,0.045787133276462555,-0.055524758994579315,0.07488605380058289,-0.03540484979748726,0.09338253736495972,0.0015699807554483414,0.03985727205872536,-0.0718139037489891,-0.009630703367292881,-0.036145467311143875,0.09955214709043503,0.003796469885855913,-0.006269612815231085,-0.016187667846679688,-0.003273097798228264,0.03932793065905571,-0.09787815064191818,0.022248296067118645,-0.09963351488113403,0.07335444539785385,0.0246836319565773,0.016864510253071785,-0.0027366692665964365,-0.08160003274679184,0.05079714208841324,-0.019938042387366295,0.004610346630215645,0.004980534315109253,-0.05801663175225258,-0.03278784453868866,0.005893633235245943,-0.10097616165876389,-0.013467555865645409,0.012948568910360336,0.036432065069675446,-0.062265004962682724,0.01776718534529209,-0.007729751523584127,-0.016078291460871696,-0.08033771067857742,0.006376137491315603,-0.02588011883199215,0.05545908212661743,-0.04818027466535568,0.07083838433027267,-0.05675693228840828,-0.048723623156547546,-0.06984083354473114,-0.06738899648189545,-0.019827302545309067,-0.0775366798043251,0.020247258245944977,-0.08112158626317978,-0.035971011966466904,-0.0365108959376812,0.04522140696644783,0.056967560201883316,0.04097006469964981,0.01316828466951847,0.0384506992995739,-0.03511977940797806,0.0033559435978531837,0.08161602914333344,0.0076972623355686665,0.08442983776330948,-0.030466757714748383,-0.03653731569647789,0.04258790984749794,-8.71504532201936e-33,0.03557136282324791,-0.029943883419036865,0.028936045244336128,0.059267234057188034,-0.06445428729057312,0.007507239002734423,-0.10065474361181259,0.020064223557710648,-0.029954226687550545,-0.011458171531558037,-0.005081673618406057,-0.06985131651163101,-0.05223416909575462,-0.007544036488980055,0.0042001535184681416,0.11130478978157043,0.10834299027919769,-0.07504930347204208,-0.0502890944480896,0.009823664091527462,0.08071457594633102,-0.005622983910143375,-0.01880328729748726,0.032937005162239075,0.014564826153218746,-0.08018580079078674,-0.04806014895439148,0.0028636923525482416,0.133853480219841,0.02896149456501007,-0.06527400761842728,0.0710785835981369,0.03449779003858566,0.07601598650217056,-0.014994198456406593,-0.04594244435429573,-0.06097039207816124,0.0010649237083271146,0.017135899513959885,-0.022435329854488373,-0.09492641687393188,-0.027605993673205376,0.04999840632081032,-0.018695736303925514,-0.0751548558473587,-0.08684752881526947,0.06432179361581802,0.031616367399692535,-0.0375220812857151,0.0071715423837304115,0.04145102575421333,-0.01000616978853941,0.046857256442308426,0.03833930194377899,-0.019150985404849052,-0.06334367394447327,0.00328824226744473,0.050501953810453415,0.01335214078426361,0.06009572744369507,0.0013115506153553724,0.04194953292608261,0.04800756275653839,0.0853150486946106,-0.05539330840110779,-0.08693505823612213,-0.044950731098651886,0.017303166911005974,0.06355123221874237,0.008235469460487366,-0.095277339220047,0.03459898754954338,0.010747839696705341,-0.020142020657658577,0.008961821906268597,-0.0009059403673745692,-0.04253653436899185,0.06657752394676208,-0.00844111293554306,-0.01957007683813572,-0.043315425515174866,0.05554215982556343,-0.13018271327018738,-0.00965355895459652,0.05946760252118111,-0.0299005676060915,-0.005549266934394836,-0.12769846618175507,-0.004670439753681421,0.04790080338716507,-0.055125150829553604,0.04085390269756317,0.01197822205722332,0.052908945828676224,-0.051350876688957214,3.381978429894325e-33,0.05048060417175293,-0.0039033209905028343,0.016805818304419518,-0.03340486064553261,-0.07654640823602676,-0.07148753851652145,0.025433959439396858,-0.025359882041811943,0.007606069091707468,-0.03269767761230469,0.0020798207260668278,-0.020173607394099236,-0.00029617961263284087,-0.026166031137108803,0.06294175982475281,-0.037298351526260376,-0.01314342487603426,-0.005614040419459343,-0.044170547276735306,0.013977819122374058,-0.05595112964510918,0.0013296204851940274,-0.0906604528427124,-0.04758390411734581,0.0020252009853720665,-0.02208980731666088,0.11156333982944489,0.01415575947612524,0.06866907328367233,-0.022182878106832504,-0.001252064947038889,-0.008466714061796665,-0.11356829851865768,0.0125485360622406,-0.001976868137717247,0.05433092266321182,-0.023228125646710396,-0.08981381356716156,-0.007721254602074623,0.04678963124752045,-0.041593749076128006,-0.023641465231776237,0.026570862159132957,0.12139460444450378,0.05766735225915909,-0.02476712130010128,0.025800121948122978,0.05895642936229706,0.04677319526672363,0.056054119020700455,-0.017524832859635353,-0.06734273582696915,0.013283746317029,0.01782354526221752,0.0014549653278663754,0.059440042823553085,0.0824214443564415,-0.01963343285024166,0.017083020880818367,-0.01702842488884926,-0.01587757281959057,-0.008006766438484192,0.042102355509996414,0.020422438159585,-0.00425706198439002,-0.0916580930352211,-0.07984320819377899,0.0865948423743248,0.014136673882603645,-0.07192348688840866,0.098470538854599,-0.018359962850809097,-0.05807584896683693,-0.017373455688357353,-0.011408238671720028,-0.07488059252500534,-0.007857481017708778,0.0007756184786558151,0.048999421298503876,0.04392976686358452,-0.06532397121191025,0.014686748385429382,0.052590083330869675,0.005150100216269493,-0.03878907114267349,-0.04983821138739586,-0.03281380236148834,-0.018388357013463974,-0.002236364409327507,-0.001173077616840601,0.05105814337730408,0.04946628585457802,0.06489250808954239,-0.03518195077776909,-0.009448481723666191,-2.3519657332826682e-8,-0.0011823599925264716,-0.043638426810503006,-0.029192257672548294,-0.0661572739481926,0.08050204068422318,-0.018827175721526146,-0.05251901596784592,0.021729618310928345,-0.06440474092960358,0.00980472844094038,0.03389168158173561,0.1011168360710144,0.027631230652332306,-0.06666623055934906,0.08926223963499069,-0.045619264245033264,0.03863803297281265,0.002939043566584587,-0.00883189495652914,0.05136491358280182,-0.0020696448627859354,-0.01197742111980915,-0.09867364913225174,-0.0668012723326683,-0.10619798302650452,0.04761643707752228,0.09181506186723709,-0.03881135210394859,-0.046697817742824554,0.04158175736665726,0.10254567861557007,0.001512098708190024,-0.09191428869962692,0.002473097527399659,-0.016634851694107056,0.016107825562357903,-0.03234820067882538,0.037491682916879654,0.047195084393024445,0.01216517761349678,0.1032625064253807,0.022338608279824257,-0.04230980947613716,0.08446129411458969,0.002438254887238145,0.028489142656326294,0.056216008961200714,-0.045130424201488495,0.009550041519105434,0.04149804636836052,-0.04703662917017937,-0.00996965542435646,0.0729033350944519,-0.020578352734446526,0.0686444416642189,0.04391837492585182,0.03164438158273697,0.013478807173669338,-0.027332425117492676,-0.0067237867042422295,0.10209906101226807,-0.03755440562963486,-0.0024475539103150368,0.03195063769817352]},{"text":"Eh, Raina? (_He looks round at her; but she is again rapt in the landscape.","book":"Down and Out in Paris and London","chapter":47,"embedding":[0.0020056937355548143,0.006111190188676119,0.05616423115134239,-0.02041681855916977,0.01686497963964939,-0.011552851647138596,0.1300322711467743,-0.06238250806927681,-0.0024431515485048294,-0.033316414803266525,-0.05085787922143936,-0.09883210062980652,-0.07740367203950882,-0.011464037001132965,0.019764365628361702,0.025730956345796585,-0.034183379262685776,-0.034997522830963135,-0.02183985337615013,0.0025443544145673513,-0.04871508106589317,0.007991346530616283,0.04185798764228821,0.10733962804079056,-0.03953969478607178,0.027844924479722977,0.1409584879875183,0.03834424912929535,0.008940472267568111,-0.061207905411720276,-0.04076853767037392,0.1385633647441864,-0.06433744728565216,0.03123459778726101,-0.05418766662478447,0.11480582505464554,0.030657164752483368,-0.03619759902358055,-0.004800263326615095,-0.06169850379228592,0.0468205064535141,0.04441286250948906,-0.046147312968969345,-0.06544394791126251,-0.022586284205317497,-0.11204703152179718,0.03903110697865486,0.043568480759859085,0.025937395170331,-0.017818322405219078,0.012548675760626793,0.0032973510678857565,-0.03135884180665016,-0.036931656301021576,0.019391626119613647,0.04031246528029442,0.11920372396707535,-0.04423479363322258,0.07288866490125656,0.011970503255724907,-0.04175126180052757,0.03221292793750763,-0.050736770033836365,0.11785808205604553,0.017997916787862778,-0.04393172636628151,-0.04985766485333443,0.013318347744643688,-0.07474161684513092,0.0751553475856781,0.05035826936364174,0.038031499832868576,-0.04611961171030998,0.03262743353843689,-0.05606160685420036,0.013353407382965088,-0.007352209184318781,-0.01882936805486679,0.030690815299749374,0.019113006070256233,0.018596019595861435,0.029309730976819992,0.033963192254304886,0.008282817900180817,-0.016590146347880363,0.02212422713637352,-0.03755280002951622,-0.09476860612630844,0.01243832241743803,-0.03684522211551666,0.006486617960035801,-0.017688222229480743,-0.036928318440914154,0.06183122843503952,0.030957946553826332,0.022206805646419525,-0.013543900102376938,-0.15708306431770325,-0.030016791075468063,0.011521679349243641,0.05764921009540558,-0.03653077781200409,0.03916536644101143,0.042308930307626724,-0.01337981503456831,-0.0031577858608216047,-0.007064430508762598,-0.06878527998924255,-0.001445880625396967,-0.010645458474755287,-0.0025491369888186455,-0.08384139090776443,-0.01066716481000185,0.03787292540073395,0.013411158695816994,-0.02346217818558216,-0.005496248137205839,-0.0037400161381810904,-0.07022468745708466,0.0568789467215538,-0.0510520413517952,0.006435851566493511,0.01906847395002842,-0.028828829526901245,0.02893669158220291,-0.04279712587594986,0.026949772611260414,-2.3739857792504745e-33,0.07991153746843338,0.005772879347205162,-0.03641596436500549,-0.0234376173466444,0.04529835283756256,0.036930620670318604,0.03138499706983566,-0.001209445297718048,-0.043364763259887695,-0.032892048358917236,-0.08051194250583649,-0.01910378411412239,-0.022265180945396423,-0.02959364280104637,-0.013547787442803383,0.020355744287371635,0.09979048371315002,-0.02790297009050846,-0.06222047656774521,0.027770308777689934,-0.010894618928432465,-0.010365251451730728,-0.0003208490670658648,-0.012928969226777554,-0.03123936802148819,-0.006299983244389296,0.1338071972131729,-0.03057105280458927,0.07217278331518173,0.022167639806866646,-0.04683491960167885,0.05799880251288414,0.09169480204582214,-0.031120222061872482,0.0841301679611206,0.025287378579378128,0.046001140028238297,0.007355606649070978,-0.016645004972815514,0.018326690420508385,-0.04452540725469589,0.024062054231762886,0.03814774751663208,-0.01783767342567444,-0.11797844618558884,-0.052492521703243256,0.0022336372639983892,0.020978769287467003,-0.017227480188012123,-0.002961555263027549,0.02499227784574032,0.022939519956707954,-0.024339864030480385,-0.03483719378709793,0.036705709993839264,0.07434451580047607,0.04174499958753586,-0.0023522167466580868,0.1403416246175766,0.04160471260547638,0.013151832856237888,-0.010958491824567318,0.056627172976732254,-0.12004546821117401,0.030306397005915642,-0.04372115060687065,-0.08833898603916168,-0.02820364013314247,-0.0003947776567656547,0.0019443422788754106,-0.02705799601972103,-0.007079116068780422,-0.062236238270998,0.10681425034999847,-0.03473276272416115,-0.05051756277680397,0.01009219791740179,0.005509486421942711,0.0654134675860405,-0.01122967153787613,-0.039051469415426254,0.023404927924275398,-0.028893498703837395,0.023681048303842545,-0.11439795047044754,-0.05669182166457176,0.05014173313975334,-0.0685528963804245,-0.03313786908984184,0.02422678843140602,0.015007148496806622,0.13832442462444305,0.07427984476089478,-0.08239387720823288,0.009170318953692913,-1.1928906570239996e-33,0.02300024777650833,0.03900120407342911,-0.009873170405626297,-0.021217552945017815,0.003576582996174693,-0.06152670830488205,0.006483991630375385,-0.0042419168166816235,0.06383226811885834,-0.04567556083202362,-0.051754605025053024,-0.00011080399417551234,-0.02973303012549877,-0.03917176276445389,0.12033964693546295,0.01897290162742138,0.04587888345122337,0.0015327660366892815,-0.04320135340094566,0.004353213589638472,-0.005626001860946417,-0.061594896018505096,0.025135835632681847,-0.049967680126428604,0.005316783674061298,-0.02261844277381897,0.05687326937913895,0.03305890038609505,-0.014722080901265144,-0.025031089782714844,-0.018354365602135658,-0.10723371803760529,-0.09766779839992523,0.022284885868430138,0.003227861598134041,-0.021019652485847473,-0.00005651510218740441,-0.1689578890800476,-0.032667238265275955,-0.012257708236575127,0.025911888107657433,-0.0894860178232193,0.09234599769115448,0.05515028536319733,-0.025673221796751022,-0.010399091988801956,0.010551420040428638,0.1721915304660797,0.01501043327152729,-0.017010832205414772,0.03212694451212883,-0.06906885653734207,0.03304583951830864,0.11544244736433029,0.04125409200787544,-0.08548402786254883,0.09604179114103317,0.003670064965263009,-0.05650624632835388,-0.01849266327917576,0.023379111662507057,-0.044797882437705994,0.04496931657195091,0.012794834561645985,-0.047523461282253265,-0.05416654422879219,-0.025322146713733673,-0.042452044785022736,-0.018147187307476997,0.003770699491724372,0.029022231698036194,-0.031405843794345856,-0.08382238447666168,-0.009989500977098942,-0.02443377487361431,0.03874560818076134,-0.035470880568027496,-0.04297442361712456,0.06067604944109917,-0.1416543573141098,-0.035712167620658875,0.021449822932481766,-0.04088885709643364,-0.08315011858940125,0.0842256173491478,0.002782544121146202,0.008090767078101635,-0.030102133750915527,0.04454902186989784,0.057161133736371994,0.05517379194498062,-0.07659510523080826,0.07305671274662018,-0.03398294746875763,-0.002004978246986866,-2.6050368973074e-8,-0.08367398381233215,-0.034417107701301575,-0.019464580342173576,-0.03996339812874794,-0.07536853849887848,0.019993308931589127,0.06372053921222687,0.010825294069945812,0.003832987742498517,-0.09110278636217117,0.0031145347747951746,0.06229613721370697,0.11404997110366821,-0.0000678036012686789,0.04155083745718002,0.06597092002630234,0.0613747201859951,-0.03249717876315117,-0.04538263753056526,0.029004419222474098,-0.014389751479029655,0.0005714965518563986,-0.04155747592449188,0.025244222953915596,-0.04708658158779144,0.04120959714055061,-0.06461977958679199,0.013498984277248383,0.0035702113527804613,0.025425536558032036,0.10593732446432114,0.041242070496082306,-0.014827226288616657,-0.021885428577661514,0.005875678732991219,0.004349754191935062,0.07375878095626831,0.08186634629964828,-0.018584338948130608,0.005132952239364386,0.010723529383540154,0.020461110398173332,-0.013968989253044128,-0.03974667936563492,-0.0066087995655834675,0.005218587350100279,0.0947190523147583,-0.013773376122117043,0.029418140649795532,-0.05116601660847664,-0.07161357998847961,-0.015673164278268814,0.018735414370894432,0.0055761137045919895,0.03230753913521767,-0.04316459223628044,-0.008640879765152931,-0.03990927338600159,-0.007421697955578566,-0.008474446833133698,-0.005094629246741533,-0.06776663661003113,0.02912549115717411,0.013021704740822315]},{"text":"Finished. (_Petkoff goes beside Sergius; looks curiously over his left shoulder as he signs; and says with childlike envy_) Haven’t you anything for me to sign?","book":"Down and Out in Paris and London","chapter":48,"embedding":[-0.0032240450382232666,0.05198919028043747,0.03801960125565529,-0.059675250202417374,0.04251250997185707,-0.04116756469011307,0.10981722176074982,0.0015736720524728298,-0.06364048272371292,-0.09802163392305374,-0.02438259683549404,-0.0008922077249735594,-0.11742702126502991,0.010857926681637764,0.03349936753511429,0.009895027615129948,0.01082648802548647,-0.038232214748859406,0.04314972087740898,0.092891164124012,-0.052487291395664215,0.006853947881609201,0.09768890589475632,-0.011706031858921051,0.012587198987603188,0.051241859793663025,0.058812595903873444,-0.013183936476707458,-0.02533438242971897,0.017243657261133194,-0.03738079220056534,0.002683333121240139,-0.024204418063163757,-0.011868821457028389,0.02365397848188877,0.04614730179309845,0.047189295291900635,-0.0752202495932579,0.069305919110775,-0.07738211005926132,0.01668682135641575,-0.05473840981721878,-0.0800325870513916,0.05834457278251648,-0.041146449744701385,-0.0018747454741969705,-0.004098853096365929,-0.0023243585601449013,-0.008242637850344181,-0.057800788432359695,-0.06780146062374115,-0.10668044537305832,-0.07876034826040268,-0.006157930940389633,0.006225345190614462,0.0333569273352623,-0.0010717607801780105,-0.08241526037454605,0.030153097584843636,0.003738050814718008,-0.014073635451495647,0.02603747509419918,-0.05072551965713501,0.11652307957410812,0.06679615378379822,-0.059287700802087784,-0.004053808283060789,-0.05220990628004074,-0.05728926509618759,0.15408048033714294,0.04840550944209099,-0.005769586656242609,-0.05792953446507454,-0.039464689791202545,-0.06095075234770775,-0.04405343160033226,0.013962855562567711,-0.04404488950967789,0.07199250906705856,-0.07829449325799942,-0.08167148381471634,-0.09046726673841476,-0.048280682414770126,0.09163684397935867,0.0074393050745129585,0.010111961513757706,0.048709508031606674,0.022683707997202873,0.0166672021150589,0.030695943161845207,0.006759831681847572,0.08202280104160309,-0.014943649061024189,-0.008968538604676723,-0.08214683085680008,0.04452000930905342,-0.00983505416661501,0.01890534907579422,-0.07894358038902283,0.05417902022600174,0.021797219291329384,0.029357070103287697,0.13453224301338196,-0.045175470411777496,-0.0339803583920002,0.00648028077557683,-0.07478618621826172,-0.07403020560741425,-0.04354305937886238,-0.05246582254767418,-0.08597087115049362,-0.05747290328145027,0.005284271668642759,0.008930079638957977,0.05416851490736008,0.03259903937578201,0.027978360652923584,-0.021898183971643448,-0.0025774165987968445,0.03891652449965477,0.05219031870365143,0.05996417626738548,-0.0551968477666378,0.07588343322277069,-0.06695947051048279,-0.019805990159511566,-0.04765363782644272,-2.2480258657591046e-33,0.01853368431329727,0.07142779231071472,-0.03330840915441513,0.04194633662700653,-0.0063413274474442005,0.048470646142959595,-0.03664306923747063,0.022356726229190826,-0.06370336562395096,0.09780147671699524,-0.055358387529850006,0.014046990312635899,0.016165796667337418,0.021868402138352394,-0.09412981569766998,0.007129707373678684,0.05367084592580795,-0.03424246981739998,-0.017034804448485374,0.043616559356451035,0.09721214324235916,0.015393677167594433,-0.036917544901371,0.02476559951901436,-0.007254598196595907,-0.016047555953264236,0.0013410004321485758,-0.030133137479424477,0.05288605019450188,0.002443309174850583,-0.026476632803678513,-0.012792190536856651,-0.013952529989182949,-0.020013082772493362,-0.0026937988586723804,0.007035683840513229,0.010609889402985573,-0.09581165015697479,0.017475945875048637,-0.01776009239256382,-0.08331354707479477,0.005819124635308981,-0.08228552341461182,-0.0351797416806221,-0.04133595898747444,-0.06336185336112976,0.029239164665341377,0.061787091195583344,0.07001712918281555,-0.014613740146160126,-0.02116503193974495,-0.017231401056051254,-0.03398514539003372,-0.03110376000404358,-0.05189850181341171,-0.041919540613889694,-0.05650293081998825,0.06555017083883286,-0.0152406245470047,-0.014727124944329262,0.031325194984674454,-0.06614787876605988,0.05232105404138565,-0.07530218362808228,-0.004349859431385994,-0.01651916466653347,-0.05055583268404007,0.03780904412269592,0.1082906723022461,-0.09997383505105972,-0.047401852905750275,-0.03170451521873474,-0.05287298560142517,0.05086180195212364,0.034229107201099396,-0.03580843284726143,-0.03638081252574921,0.035812653601169586,0.025485467165708542,0.0018317208159714937,-0.06103851646184921,0.021449990570545197,-0.07897159457206726,0.02847023867070675,0.08942793309688568,-0.021098000928759575,0.01827690564095974,-0.0803573951125145,-0.10032469779253006,0.0009443835006095469,-0.04451759532094002,-0.011761242523789406,0.010111029259860516,0.04870414733886719,-0.039463017135858536,-1.9554223629653978e-33,0.015998154878616333,-0.06734813749790192,-0.06910376250743866,-0.003613546257838607,-0.07785142213106155,-0.05305471643805504,-0.0022854383569210768,-0.040632881224155426,-0.025476893410086632,-0.0176833625882864,0.05393027141690254,-0.002470680745318532,0.07083410769701004,-0.03157378360629082,-0.050064440816640854,-0.042540714144706726,0.05393597111105919,0.034981366246938705,0.027408303692936897,-0.014373065903782845,0.011082641780376434,0.05931520089507103,0.004667565226554871,0.04083334654569626,-0.008179455995559692,0.03600025922060013,0.11416897922754288,-0.03791562467813492,-0.08338708430528641,0.03958694636821747,0.04414678364992142,-0.05330788344144821,0.003168831579387188,0.00765229482203722,0.0805082693696022,0.003910164348781109,0.04434508457779884,-0.10857619345188141,-0.03833559900522232,0.03162926435470581,0.07408091425895691,-0.03269510716199875,0.10280464589595795,0.06509595364332199,0.005435209721326828,0.02451159805059433,-0.011232399381697178,0.06635300070047379,0.01057397574186325,-0.001920971437357366,0.029606686905026436,0.01071234606206417,-0.05181010067462921,-0.04748433083295822,0.0009085862548090518,0.07847179472446442,0.0030517338309437037,-0.031586118042469025,0.05562090873718262,-0.048662833869457245,-0.051117412745952606,0.020920995622873306,0.09346987307071686,-0.07321835309267044,0.06089439243078232,-0.027001842856407166,0.021916832774877548,0.042133163660764694,0.01674831099808216,-0.05135233700275421,-0.018009599298238754,-0.007136079948395491,-0.14555971324443817,-0.0013684676960110664,0.06273550540208817,0.042014673352241516,0.11364946514368057,-0.08261699229478836,0.025314783677458763,-0.08108040690422058,-0.04268414527177811,-0.052216459065675735,-0.015058551914989948,-0.03952605649828911,0.0736105740070343,-0.013426936231553555,-0.034453704953193665,0.05480077490210533,0.02530178613960743,-0.0034735153894871473,0.11124065518379211,0.0880766287446022,0.11005263030529022,0.012231007218360901,-0.008084249682724476,-3.1668626832015434e-8,0.03481672331690788,0.060328442603349686,0.0026232064701616764,-0.08657198399305344,-0.006280334200710058,0.017913611605763435,-0.04719078168272972,-0.050265029072761536,-0.057691123336553574,-0.023821601644158363,0.023892609402537346,0.03994448855519295,-0.03519635275006294,-0.036401063203811646,0.038475602865219116,-0.01578260399401188,-0.02259429357945919,0.00254809926263988,-0.03361932188272476,-0.07497061789035797,0.015578722581267357,0.021043118089437485,-0.06442650407552719,0.039113160222768784,0.0069374265149235725,0.06775572896003723,0.032926350831985474,0.043761372566223145,-0.03795473650097847,0.00117736856918782,0.09892470389604568,0.04381120577454567,-0.06190640479326248,-0.0050347005017101765,0.052062131464481354,-0.011124907992780209,0.028829246759414673,0.008584322407841682,0.05006365478038788,0.0634322538971901,0.06758146733045578,0.019920896738767624,0.04001631587743759,0.04745187237858772,-0.0104233268648386,0.0584389753639698,0.05747271329164505,-0.005837622098624706,0.017746800556778908,-0.03264086693525314,-0.031212184578180313,-0.05841590464115143,0.0213566143065691,-0.02025485597550869,-0.025944143533706665,0.040894415229558945,-0.010934552177786827,0.04788089916110039,0.01360681839287281,-0.016561754047870636,0.14174601435661316,-0.005465117748826742,-0.125232994556427,-0.0340455062687397]},{"text":"Quite right, Bluntschli, quite right.","book":"Down and Out in Paris and London","chapter":48,"embedding":[0.09291964769363403,-0.05891668424010277,-0.010308410972356796,0.053929463028907776,-0.09019585698843002,0.03940218314528465,0.12525063753128052,0.02405633218586445,0.0011852227617055178,-0.014767352491617203,0.054217640310525894,-0.0019290612544864416,-0.04621662199497223,0.01078882534056902,-0.016218150034546852,0.01669449359178543,0.023751359432935715,0.034728121012449265,-0.031746748834848404,0.01702539436519146,-0.09872790426015854,0.10112734884023666,-0.01159338466823101,0.07198683172464371,-0.014308829791843891,0.039424750953912735,0.06840431690216064,0.017126405611634254,-0.003963591065257788,-0.08595535159111023,0.020116249099373817,0.008206873200833797,0.041190896183252335,0.0016996831400319934,-0.013757636770606041,0.0012318291701376438,-0.08829613029956818,-0.002781257964670658,0.0526127815246582,-0.019361181184649467,-0.10172780603170395,-0.05443396419286728,0.04098431020975113,-0.00849043857306242,-0.09655926376581192,-0.043336376547813416,-0.07575943320989609,-0.00522628566250205,0.001115160994231701,0.03342908248305321,-0.06333859264850616,-0.10222815722227097,-0.01504313200712204,0.0766114890575409,-0.04883108288049698,-0.04205349460244179,-0.05010297894477844,0.07235649228096008,0.02412961609661579,0.04789476841688156,-0.00425042724236846,-0.02176368236541748,-0.026682402938604355,0.043354716151952744,-0.0379716232419014,-0.004073001444339752,0.028283243998885155,-0.08660261332988739,-0.05182073637843132,0.10814870893955231,0.032330360263586044,-0.00821953359991312,0.06840991973876953,-0.0415978841483593,0.00256018596701324,0.007380861788988113,0.020936904475092888,0.0480625294148922,0.018571747466921806,0.026461130008101463,0.07685699313879013,-0.012464691884815693,-0.08441834151744843,-0.03596167638897896,-0.043966811150312424,-0.01927579566836357,-0.045737698674201965,-0.04545961320400238,-0.018900327384471893,-0.022885605692863464,-0.017222784459590912,0.03063470683991909,-0.009640917181968689,0.023326922208070755,-0.011430149897933006,-0.0012807261664420366,-0.004198187496513128,0.01938171498477459,-0.08082328736782074,0.05043966323137283,-0.0073949676007032394,0.0539054349064827,-0.001928408513776958,-0.039934948086738586,-0.02544156275689602,-0.026784230023622513,-0.066966712474823,-0.06421444565057755,-0.04769036918878555,-0.06097787246108055,-0.017245128750801086,0.00021016778191551566,-0.015215860679745674,-0.007853585295379162,0.03059488907456398,0.0040039606392383575,0.023699605837464333,0.029299240559339523,0.03890298306941986,-0.025710927322506905,-0.05103358253836632,0.0006531369872391224,-0.004178112372756004,0.03168148174881935,-0.04811090603470802,-0.06019216403365135,-0.03054070845246315,-4.0751545916047656e-33,0.0066054207272827625,0.006515789311379194,0.04894037917256355,0.06981638073921204,0.020144233480095863,-0.08348012715578079,-0.10141221433877945,0.017007043585181236,-0.085249163210392,0.04023512825369835,-0.015784181654453278,-0.09141978621482849,-0.06510704755783081,0.017514582723379135,0.005650106817483902,0.03983021154999733,-0.002596501028165221,0.023755988106131554,-0.014607525430619717,-0.039638616144657135,-0.0214372631162405,0.10753575712442398,-0.009517180733382702,0.01348663866519928,-0.03571123257279396,0.008914845064282417,0.0754559189081192,-0.005179385654628277,0.06238892301917076,0.01767014153301716,-0.019752442836761475,0.12496958673000336,-0.058981429785490036,0.06873925030231476,0.021840861067175865,0.054435472935438156,-0.004114714916795492,0.011755096726119518,-0.001702838228084147,0.024131042882800102,-0.018535586073994637,0.07842863351106644,-0.019987652078270912,-0.012883929535746574,0.0014493471244350076,0.02204153500497341,-0.07030250132083893,0.037669166922569275,0.09927908331155777,0.0191508736461401,-0.019002778455615044,-0.03633267059922218,0.11765658110380173,0.10568907111883163,-0.005574817303568125,0.005846463143825531,-0.011986390687525272,0.12197060883045197,0.0826217532157898,0.008635478094220161,0.022571340203285217,0.06669246405363083,-0.03308765962719917,-0.00949156004935503,0.024549925699830055,0.00412773760035634,-0.03476370498538017,-0.06893077492713928,0.052140895277261734,0.0255427323281765,0.007976073771715164,0.008538048714399338,-0.01949738711118698,-0.003416762687265873,-0.02029314450919628,-0.04266967251896858,0.0055013601668179035,0.041305601596832275,0.11497651785612106,-0.004447156563401222,-0.00059059466002509,0.004194492008537054,0.013719813898205757,-0.015979638323187828,-0.050868455320596695,-0.008334320038557053,0.027756467461586,0.00009907298954203725,0.01506600622087717,0.0555325485765934,-0.10118915885686874,0.028299536556005478,0.027226779609918594,-0.026745490729808807,-0.09407483786344528,2.066958777101186e-33,-0.011512436904013157,-0.030093809589743614,0.03597264364361763,0.17512547969818115,0.01436473149806261,0.0855507180094719,-0.0732007697224617,0.0149687509983778,0.03858408331871033,0.07865075021982193,0.1478579044342041,-0.07711238414049149,-0.019171886146068573,-0.07283742725849152,0.0527932234108448,-0.039653800427913666,0.05489921197295189,-0.05033649876713753,-0.05582026019692421,-0.01413990743458271,-0.07655656337738037,-0.06772354990243912,-0.04981588199734688,0.015686029568314552,-0.03548995032906532,-0.04244386404752731,0.007566761691123247,0.07210490852594376,-0.12606364488601685,0.029826052486896515,-0.02171405963599682,-0.028496168553829193,-0.07151904702186584,-0.06873749196529388,-0.03947720304131508,-0.026136215776205063,-0.06930980831384659,0.08238336443901062,-0.007074270397424698,0.0589408241212368,-0.08386101573705673,-0.011707283556461334,0.008784017525613308,0.06123661994934082,0.028840603306889534,-0.061830367892980576,-0.01287865824997425,0.027446644380688667,0.0027244340162724257,-0.021880239248275757,0.033921435475349426,0.01828474923968315,-0.07873445004224777,0.017567237839102745,0.039293207228183746,0.013145592994987965,-0.09692426025867462,-0.08950388431549072,-0.020997513085603714,-0.025168679654598236,-0.016917388886213303,0.03240680322051048,-0.017721910029649734,0.013747141696512699,0.02916516363620758,0.01673879660665989,-0.08633138984441757,-0.01901339739561081,0.035240549594163895,0.06939973682165146,0.02921118773519993,-0.02839791588485241,0.0009283832041546702,-0.004153125919401646,0.006145014427602291,-0.06189437955617905,0.002238062908872962,0.0551050528883934,0.0022210008464753628,-0.06920687854290009,0.10523366928100586,-0.04294096678495407,-0.034694790840148926,-0.03734859824180603,0.10362359136343002,-0.042003341019153595,0.000993559486232698,-0.09747225046157837,0.045701198279857635,0.08065713942050934,0.05526450648903847,0.053296543657779694,-0.017724743112921715,-0.07458551228046417,0.01824263110756874,-2.2068205041136935e-8,0.029873259365558624,-0.006979295983910561,-0.15301038324832916,0.049170393496751785,0.043355196714401245,-0.001958908513188362,0.08779547363519669,-0.04216843843460083,-0.07541294395923615,0.013668346218764782,-0.009824838489294052,0.03890238329768181,0.04803110659122467,0.01296103373169899,-0.0261969193816185,-0.031126519665122032,0.005699860397726297,0.04119211807847023,-0.013493483886122704,0.13192225992679596,0.03322877362370491,0.029916971921920776,0.127086341381073,-0.06985843926668167,0.011060895398259163,0.008497534319758415,0.013132820837199688,-0.036074526607990265,0.00401743408292532,0.01768375188112259,0.012794490903615952,0.0856303945183754,-0.07586869597434998,-0.04239990934729576,0.03161901980638504,0.015824636444449425,-0.02395104616880417,-0.011345721781253815,-0.07143492996692657,-0.006099277175962925,-0.060588009655475616,0.0315111018717289,-0.0006844711606390774,0.03106258250772953,-0.007297027390450239,-0.08569645881652832,0.05051270127296448,0.038116492331027985,-0.028670337051153183,0.01626201532781124,-0.010013364255428314,0.03624670207500458,-0.016675753518939018,0.013930583372712135,0.03692250698804855,0.02404237724840641,0.02437184937298298,0.08440269529819489,-0.1150108203291893,-0.07217659801244736,0.07090779393911362,-0.02366214245557785,0.08639802038669586,0.06183537095785141]},{"text":"They make cannons out of cherry trees; and the officers send for their wives to keep discipline! (_He begins to fold and docket the papers.","book":"Down and Out in Paris and London","chapter":48,"embedding":[0.0021030909847468138,0.11594182997941971,0.04853728413581848,0.03541946783661842,0.008373898454010487,-0.035653963685035706,0.04292992129921913,-0.1014450341463089,-0.15290187299251556,0.010686772875487804,0.010553059168159962,0.03337793052196503,0.018169861286878586,-0.0004722602025140077,-0.08196499198675156,-0.008001078851521015,-0.007008484099060297,-0.04341951385140419,0.010055762715637684,0.06207673251628876,0.00802413746714592,0.018049927428364754,0.09272594749927521,0.0748932808637619,-0.08396787196397781,0.04083029553294182,-0.06885731965303421,-0.05866573005914688,-0.03678036108613014,-0.05719404295086861,0.014465516433119774,0.03495168685913086,0.01962686888873577,0.04103311151266098,0.006453078705817461,0.046280212700366974,0.13032180070877075,0.0036283370573073626,0.022822698578238487,0.015946701169013977,0.033837608993053436,-0.06523445248603821,0.03096489980816841,0.10424769669771194,-0.052829064428806305,0.027509979903697968,-0.07066517323255539,-0.018004078418016434,0.008405077271163464,-0.002732775639742613,0.027414806187152863,0.036793287843465805,0.005953488405793905,-0.02871604450047016,0.07298737019300461,-0.04849586635828018,0.051201578229665756,-0.010544699616730213,0.07330352067947388,0.0866498351097107,-0.057536590844392776,0.12080024927854538,-0.08389529585838318,0.04911080747842789,0.01233380101621151,-0.03590185195207596,-0.04487214609980583,0.06276266276836395,0.0013527155388146639,0.021039048209786415,-0.002255238825455308,0.05660732835531235,-0.055979326367378235,-0.020828187465667725,-0.08862342685461044,-0.025171639397740364,-0.04325984790921211,0.029543180018663406,0.011379453353583813,-0.08612287789583206,-0.10038025677204132,-0.11304686963558197,-0.04312431439757347,0.03982831537723541,0.008499656803905964,0.025048434734344482,0.017414923757314682,-0.05760877579450607,0.021613799035549164,0.0376027449965477,-0.008988676592707634,-0.07384900003671646,-0.035807035863399506,0.02909242734313011,-0.11133473366498947,0.0787353590130806,-0.003414867212995887,-0.0070979711599648,-0.05722760781645775,0.0528181791305542,0.05908561870455742,0.020082522183656693,0.032433342188596725,-0.08744221925735474,-0.07409468293190002,0.004674726631492376,-0.1235862597823143,-0.06513343006372452,-0.03945201262831688,-0.0452992282807827,0.03738090395927429,-0.047442033886909485,-0.05842730775475502,0.01681174337863922,-0.027776872739195824,0.03249784931540489,-0.07291467487812042,-0.024353500455617905,-0.07624800503253937,0.016081562265753746,0.054115477949380875,0.019559143111109734,-0.04358799755573273,0.028012346476316452,0.025619003921747208,-0.0022626821883022785,0.00559579860419035,-3.2903556247454355e-33,0.008660017512738705,0.03189646452665329,-0.09470055997371674,0.06379546225070953,0.0446782261133194,0.018647326156497,-0.07307089120149612,0.02402377314865589,0.021872350946068764,0.0671297088265419,-0.12568750977516174,0.007603936363011599,-0.03224238008260727,-0.033075012266635895,-0.03227655217051506,-0.01902744732797146,-0.024795114994049072,-0.0031113990116864443,-0.015340314246714115,-0.014149872586131096,-0.02730751782655716,0.035121429711580276,-0.044168949127197266,0.050744082778692245,0.06565229594707489,0.041472598910331726,-0.036853302270174026,0.002505646785721183,0.03818187490105629,0.062436699867248535,-0.004632059950381517,0.08533042669296265,0.03995954245328903,-0.0018705211114138365,0.030869070440530777,0.07100395113229752,-0.03776739165186882,-0.039514362812042236,-0.07463009655475616,0.036077242344617844,-0.041364870965480804,-0.006540396716445684,0.01603715680539608,0.05612773448228836,-0.03899974748492241,-0.06012465059757233,0.014964987523853779,0.021433867514133453,0.0822354257106781,0.020376134663820267,0.012655776925384998,0.015864048153162003,-0.006673549301922321,0.01155573409050703,0.08303871005773544,0.03930456191301346,0.01744864694774151,0.004062647465616465,0.0718274936079979,-0.022566568106412888,0.10987935215234756,0.06399459391832352,0.00767851248383522,0.06823686510324478,0.02893485315144062,-0.0019325618632137775,-0.03829193487763405,0.04862372204661369,0.04717227444052696,-0.0387573167681694,-0.03773275762796402,0.0518559068441391,-0.033095940947532654,-0.05459701269865036,-0.0509345643222332,0.023320499807596207,0.021960876882076263,-0.005290398374199867,0.015832243487238884,-0.041328106075525284,-0.024748189374804497,-0.018517453223466873,-0.04632691666483879,0.016606174409389496,0.08023925870656967,-0.06493071466684341,0.056255459785461426,-0.03958607837557793,-0.05947253480553627,0.04009964317083359,-0.035514261573553085,-0.03992627188563347,0.06222713366150856,-0.0021033852826803923,0.00009196552855428308,5.414446366032462e-34,0.04418027773499489,-0.01128318440169096,-0.06566330045461655,-0.029682708904147148,-0.016752120107412338,0.004840922076255083,-0.030529530718922615,-0.08711065351963043,-0.02990647219121456,-0.06499551981687546,-0.14536191523075104,0.009232494048774242,-0.007691298145800829,0.049054332077503204,0.029296277090907097,-0.15422594547271729,0.1323758065700531,0.09765266627073288,-0.030551739037036896,0.036998067051172256,0.05838972330093384,-0.03001868538558483,-0.0022429211530834436,0.07098568230867386,-0.02554527297616005,0.019471479579806328,0.043445441871881485,-0.08309019356966019,-0.017635460942983627,-0.0007698966655880213,-0.0012578805908560753,-0.09284491091966629,-0.06924191862344742,-0.0262726079672575,-0.02171902172267437,-0.04902365803718567,-0.021785935387015343,0.005248927511274815,-0.00924530066549778,-0.009451262652873993,-0.0012746936408802867,-0.014232875779271126,0.019020404666662216,0.06290749460458755,-0.05918075144290924,0.0333934985101223,-0.024330459535121918,0.09120170027017593,-0.07120028138160706,0.012275952845811844,0.02655438892543316,-0.05234501138329506,-0.008013308048248291,-0.03069039061665535,-0.11780687421560287,-0.004705711267888546,-0.023090902715921402,-0.03618243709206581,0.004509869497269392,0.03929607570171356,-0.028018128126859665,-0.035028811544179916,-0.020522184669971466,0.06486605852842331,-0.050424277782440186,-0.04154573380947113,-0.03466188162565231,0.06150225177407265,-0.023733727633953094,0.06305143982172012,0.0587751604616642,-0.05013495683670044,-0.024721726775169373,0.07495396584272385,0.002927537076175213,0.01231034379452467,-0.028108518570661545,-0.064055897295475,0.009036688134074211,-0.019481809809803963,-0.03622570261359215,-0.0448320209980011,-0.03942184895277023,0.03420185670256615,0.005520059261471033,-0.010116162709891796,0.0522567518055439,0.02922726236283779,0.04749302566051483,0.013263220898807049,0.013715392909944057,0.033421777188777924,0.09275366365909576,0.03951980918645859,0.030028758570551872,-2.925382602825266e-8,-0.033299002796411514,0.04492359980940819,0.009936079382896423,-0.03800579160451889,-0.019860925152897835,-0.06407749652862549,0.04970568045973778,0.033545367419719696,-0.06300674378871918,-0.11262966692447662,0.042606502771377563,0.07117045670747757,0.024942288175225258,-0.03350136801600456,0.06495089828968048,0.05537640303373337,0.06881513446569443,-0.06578344851732254,-0.08204687386751175,-0.06688512116670609,-0.039793942123651505,-0.06773891299962997,-0.007490894291549921,0.04425846040248871,-0.12830017507076263,0.04584203660488129,0.018314072862267494,0.012354795821011066,0.07880254089832306,0.14313198626041412,0.09105559438467026,-0.004979906603693962,-0.06008537858724594,0.04457058012485504,-0.008481591939926147,0.0218187402933836,0.015849361196160316,-0.005069788079708815,0.05460875853896141,-0.036935824900865555,-0.10579582303762436,0.0015935321571305394,-0.02918963134288788,0.004453181754797697,-0.010765950195491314,0.00528911966830492,0.013652981258928776,0.0747486799955368,-0.017153369262814522,0.01048517506569624,0.05553196370601654,0.034254055470228195,0.0014669735683128238,0.031835563480854034,0.05073852837085724,0.024319294840097427,0.10235849767923355,-0.033763863146305084,-0.00028166730771772563,0.013809665106236935,0.0045250179246068,-0.04370750114321709,0.03895784169435501,0.04245133325457573]},{"text":"No, they were glad; because they’d all just run away themselves.","book":"Down and Out in Paris and London","chapter":49,"embedding":[0.04825907573103905,0.09882009774446487,0.0014749896945431828,0.02542179264128208,0.08673424273729324,-0.05005994811654091,-0.01030472107231617,-0.04002109915018082,-0.05974053218960762,0.020290015265345573,0.13193008303642273,0.010064737871289253,0.04730459302663803,-0.0434640608727932,0.007055796682834625,-0.04295322299003601,-0.06941579282283783,0.00014772028953302652,-0.07147230952978134,0.07530058920383453,-0.08917977660894394,0.043262675404548645,0.05629589408636093,0.04181443154811859,-0.011382115073502064,0.003242438193410635,0.03422606736421585,0.010777415707707405,0.022728044539690018,0.023910172283649445,-0.044333089143037796,-0.03492719307541847,0.02626817114651203,0.02552115172147751,0.020927853882312775,0.021481730043888092,0.07418617606163025,0.0025439949240535498,-0.03010111302137375,-0.0303778238594532,0.06536402553319931,0.022057680413126945,0.04080531746149063,0.034035574644804,0.010409925132989883,-0.05821788311004639,-0.05173816904425621,0.009615377523005009,0.015149474143981934,-0.031159671023488045,0.13600048422813416,-0.0292381439357996,-0.009900139644742012,-0.12202950567007065,0.01913907378911972,0.018192438408732414,0.008119557984173298,-0.04374375939369202,0.03235127404332161,0.027565205469727516,-0.011934494599699974,0.025144627317786217,0.025993622839450836,-0.014225775375962257,0.02417917735874653,-0.007676782552152872,-0.02463810332119465,-0.0053925602696835995,-0.023925714194774628,0.03719696030020714,-0.005750539246946573,-0.0028491802513599396,0.06640100479125977,-0.04105736315250397,-0.08570365607738495,-0.0088447080925107,0.027455726638436317,-0.017752693966031075,-0.03909562528133392,0.01048950757831335,-0.010610578581690788,-0.06210847198963165,-0.048437897115945816,0.011593860574066639,0.05039912462234497,-0.036881957203149796,0.014429830946028233,-0.047196391969919205,0.0524342805147171,0.015254558064043522,-0.06860893219709396,0.05506462976336479,0.05343940854072571,-0.002974956063553691,0.04609706252813339,-0.04910774528980255,-0.0593692809343338,0.05994074419140816,-0.0273115374147892,0.004428815096616745,0.039104584604501724,-0.00491280946880579,-0.04957716166973114,-0.01647905819118023,-0.03200608864426613,-0.0038877329789102077,-0.09453556686639786,0.003563971957191825,0.024621672928333282,-0.09320259839296341,-0.08816920965909958,-0.039301227778196335,0.12459208071231842,0.008254442363977432,0.017864292487502098,-0.027237439528107643,-0.047493964433670044,-0.014644281007349491,-0.06871622055768967,0.039363931864500046,0.04614746943116188,0.04470240697264671,-0.014030509628355503,0.03427180275321007,0.0519849918782711,0.0501374714076519,0.009745128452777863,-4.274582718351536e-33,0.026161259040236473,-0.013812036253511906,-0.01108574215322733,-0.070789635181427,0.013454044237732887,-0.040868598967790604,-0.04931403324007988,-0.00579934474080801,0.029011890292167664,-0.06602396816015244,-0.06884551048278809,0.015424450859427452,-0.07177585363388062,-0.0664469450712204,-0.012433493509888649,0.030472341924905777,-0.026745932176709175,0.014271916821599007,0.024416565895080566,-0.012103588320314884,-0.030073916539549828,0.08946482092142105,-0.009258262813091278,0.00906312745064497,-0.05325576663017273,0.0635392889380455,-0.0165869127959013,0.10719907283782959,0.06848981976509094,0.004068456124514341,-0.02480682171881199,-0.035712458193302155,0.012743583880364895,0.05115589499473572,0.05773195996880531,0.02742987684905529,-0.0035292278043925762,0.05632352828979492,-0.013171600177884102,0.03535126894712448,-0.033550627529621124,0.0033173318952322006,0.012117018923163414,-0.02741675265133381,-0.0677647665143013,-0.02606147900223732,-0.09643179178237915,0.03746805712580681,-0.03664540871977806,0.013126440346240997,0.008647199720144272,0.039921775460243225,0.026477215811610222,0.03574807569384575,-0.027154643088579178,0.029263151809573174,-0.023798657581210136,0.10000689327716827,-0.001725689391605556,0.024338752031326294,-0.10241125524044037,0.059076812118291855,0.017692888155579567,-0.028779268264770508,-0.038138315081596375,-0.0174466110765934,0.06321316212415695,0.060595665127038956,-0.01844540424644947,0.05527525767683983,0.007531682960689068,0.02368961088359356,-0.08575426787137985,-0.05274220556020737,-0.009145253337919712,-0.010416729375720024,-0.026666609570384026,0.02003387175500393,0.01541263610124588,-0.12590153515338898,0.10537184774875641,-0.020804861560463905,-0.038913119584321976,-0.04555603861808777,0.07661475241184235,0.0037726748269051313,0.017930734902620316,-0.10759135335683823,-0.038336604833602905,-0.04036762937903404,0.009366550482809544,0.053913380950689316,0.028741294518113136,-0.0681183859705925,-0.10109299421310425,1.2893171933059211e-33,0.00870534498244524,0.06322240084409714,-0.05540943890810013,-0.010042404755949974,-0.008685149252414703,0.03488083556294441,-0.044412631541490555,-0.02897966094315052,-0.039511505514383316,0.0447230190038681,0.05788012593984604,-0.03941655531525612,-0.007522802799940109,0.06004956364631653,-0.03744642809033394,-0.05250893905758858,0.10575653612613678,-0.03518642857670784,-0.052491553127765656,-0.000449256767751649,-0.00844153854995966,-0.018654119223356247,-0.03959522023797035,0.059892669320106506,0.04713500663638115,0.049227721989154816,0.02854423224925995,-0.010207299143075943,-0.040180597454309464,-0.01310789119452238,0.12447990477085114,-0.024805959314107895,-0.06033771485090256,0.01608351059257984,0.06905853748321533,0.018624046817421913,-0.04812385514378548,0.1131279245018959,0.019434290006756783,0.01223941519856453,-0.010624382644891739,-0.09159082174301147,-0.039680059999227524,0.09904007613658905,-0.019938752055168152,0.039894092828035355,0.03477302938699722,-0.02776193432509899,-0.04546848312020302,0.04305040091276169,-0.10622736066579819,0.021352088078856468,-0.0027070585638284683,0.011065607890486717,-0.07904835790395737,-0.07627154886722565,0.04570262134075165,-0.03340615704655647,0.023252012208104134,-0.13135308027267456,-0.13117791712284088,-0.0715683326125145,0.045249126851558685,-0.08704881370067596,0.003546959487721324,-0.05668910965323448,-0.007106750272214413,0.03792443871498108,0.0026946302969008684,0.012537388131022453,0.04417404159903526,0.0358407087624073,-0.1292363405227661,0.02916405163705349,-0.08082883805036545,0.055261462926864624,-0.10194163769483566,-0.008819975890219212,-0.0430946983397007,0.042006462812423706,-0.07629471272230148,0.0060872468166053295,0.015690892934799194,-0.005882539786398411,-0.048062168061733246,-0.017057443037629128,0.0357995331287384,0.0012798183597624302,0.020627813413739204,0.08785847574472427,0.0514996238052845,-0.08922050893306732,0.1285003274679184,0.020002715289592743,-0.064787358045578,-2.3834530793465092e-8,-0.04448850825428963,0.08897581696510315,-0.0751163512468338,0.05467713996767998,-0.025884518399834633,-0.0020343998912721872,0.04185841605067253,0.10388640314340591,-0.034467779099941254,0.09641072899103165,-0.013363106176257133,0.0657615065574646,-0.002902348292991519,0.04962771385908127,0.0508674681186676,0.0475224107503891,0.06517912447452545,-0.06572623550891876,0.0009285236010327935,0.025392314419150352,0.016836412250995636,0.04600253328680992,-0.07969707995653152,0.027750251814723015,-0.025966189801692963,0.024406366050243378,-0.009303231723606586,-0.1599709540605545,-0.01591203734278679,0.0030367218423634768,-0.016324596479535103,-0.06931181252002716,-0.09290145337581635,0.02862446941435337,0.03552572801709175,0.06781108677387238,0.029855558648705482,0.0023887353017926216,0.08383757621049881,-0.017489753663539886,-0.06620560586452484,0.08682692795991898,0.018406148999929428,0.025624915957450867,0.06943293660879135,-0.028338976204395294,0.036850206553936005,0.006291417870670557,0.023440003395080566,-0.0768623948097229,0.043698035180568695,-0.0025267149321734905,-0.13792873919010162,0.014390384778380394,0.05416443571448326,-0.06763207912445068,-0.032225318253040314,0.007730329409241676,-0.04929086193442345,0.009539688006043434,-0.04914597421884537,-0.04518638923764229,0.041137803345918655,0.018472934141755104]},{"text":"No! you don’t mean that, do you?","book":"Down and Out in Paris and London","chapter":49,"embedding":[0.12371206283569336,-0.007983718998730183,0.13142061233520508,-0.08798961341381073,-0.06236591190099716,-0.0355001762509346,0.02886604517698288,0.00817107129842043,-0.03423997387290001,0.013673868961632252,-0.07243533432483673,0.023951223120093346,0.03096252866089344,0.03407420590519905,0.0745844766497612,-0.010072341188788414,-0.052763789892196655,0.08130450546741486,-0.09117984026670456,0.05131947621703148,-0.004969948437064886,0.05300172045826912,0.04096083715558052,0.04296257346868515,-0.02962186187505722,-0.012290761806070805,0.005025731399655342,0.05232180655002594,0.025086598470807076,-0.030937334522604942,-0.03452996164560318,0.05550527572631836,0.04893176630139351,0.11405859887599945,0.05252118036150932,0.009041753597557545,-0.01135651208460331,0.007024125661700964,-0.019224049523472786,-0.01609732396900654,-0.017487909644842148,0.0710771456360817,0.07340069860219955,-0.06219994276762009,-0.02845960110425949,-0.051400598138570786,0.003925797995179892,-0.08239782601594925,-0.05106925219297409,-0.0366598404943943,0.016414934769272804,0.027482593432068825,0.09651127457618713,-0.022563908249139786,0.015814466401934624,0.01762659288942814,0.031237337738275528,-0.052721139043569565,0.02969130128622055,0.018404843285679817,0.06758217513561249,0.02238016203045845,0.013947263360023499,0.1162598729133606,0.03418540582060814,0.021022135391831398,0.03289584070444107,0.029183266684412956,0.005267533473670483,-0.010620436631143093,-0.016026893630623817,-0.0036240695044398308,0.05939861387014389,0.02053159661591053,-0.056997038424015045,0.0003335907240398228,-0.007195552811026573,-0.05210874229669571,0.05695001780986786,0.03962049260735512,-0.02224467135965824,-0.06307289749383926,0.016413871198892593,0.049156107008457184,-0.045593831688165665,-0.09471267461776733,0.030398525297641754,-0.07720590382814407,0.0023552540224045515,0.009570653550326824,-0.05630340427160263,-0.06672054529190063,-0.03658033162355423,0.014193993993103504,-0.0810963436961174,-0.09230725467205048,0.005005310755223036,-0.045614905655384064,-0.09720811992883682,0.06738141924142838,0.03273944929242134,0.01640276610851288,0.08101222664117813,0.009480088017880917,0.016538793221116066,-0.12069477885961533,-0.10803664475679398,0.010669903829693794,-0.03399517014622688,-0.03974388912320137,-0.04414017125964165,-0.03191407397389412,-0.02059503085911274,-0.08996715396642685,0.0701664462685585,-0.036535318940877914,-0.011202016845345497,-0.030869297683238983,-0.03331131115555763,-0.01036690454930067,0.011272471398115158,0.06374744325876236,0.008899605832993984,0.10961578786373138,-0.06914588809013367,-0.12993676960468292,0.06580809503793716,-3.940236125463184e-33,0.022162029519677162,-0.09301545470952988,0.008478982374072075,0.051862336695194244,-0.03563877195119858,0.06615106016397476,-0.027903256937861443,0.01763058640062809,-0.046206146478652954,0.07627089321613312,0.03687616065144539,-0.00784365925937891,0.01599779538810253,-0.01771162636578083,-0.04453732818365097,0.07950826734304428,0.018026504665613174,-0.041488055139780045,-0.008134111762046814,-0.0074937790632247925,-0.0021154654677957296,0.024634188041090965,0.049361057579517365,0.040716253221035004,-0.014172972179949284,0.002768290461972356,-0.02102169580757618,0.0002549690252635628,-0.010617547668516636,0.009791547432541847,0.043167594820261,0.027609260752797127,-0.05837707594037056,0.012987163849174976,-0.0780298188328743,0.08652688562870026,-0.019391503185033798,0.07529906183481216,-0.021899856626987457,0.02543741650879383,0.05298911780118942,0.06161588430404663,-0.021186741068959236,0.06227417662739754,-0.05177802965044975,-0.049938563257455826,0.07095754891633987,-0.02331485226750374,-0.027709854766726494,-0.013696020469069481,-0.03996715694665909,0.03520841524004936,0.047313883900642395,-0.00989606510847807,0.02368650585412979,-0.017683202400803566,0.03606456518173218,-0.03201691433787346,-0.01042110938578844,-0.0012120255269110203,-0.054304007440805435,-0.0171082504093647,-0.04348168894648552,-0.06156747788190842,0.03645672649145126,-0.02118217758834362,-0.019409673288464546,-0.0019812090322375298,0.029438678175210953,0.007783080451190472,-0.0011688999366015196,-0.017684834077954292,-0.09530884027481079,-0.06706861406564713,-0.07080881297588348,0.05278799682855606,0.02913648448884487,0.050439558923244476,0.034364279359579086,-0.057812295854091644,0.04667792096734047,0.017337767407298088,0.005510229617357254,0.01091258879750967,0.020691562443971634,-0.055793456733226776,0.019821248948574066,-0.0057250456884503365,0.049123615026474,-0.07673151791095734,-0.05724731832742691,0.02100413665175438,-0.02677733451128006,0.049001455307006836,-0.09637853503227234,1.18410438776458e-33,-0.05926356092095375,-0.07923907041549683,0.007355354260653257,0.019285013899207115,0.004372783936560154,-0.01422127801924944,0.014226295053958893,-0.03212257847189903,0.10262179374694824,0.031186584383249283,0.022498304024338722,-0.062123700976371765,-0.04991701990365982,0.0051970044150948524,0.015392915345728397,-0.03149151802062988,-0.004383056424558163,-0.03493613004684448,-0.03733070194721222,-0.007327288389205933,-0.1401575654745102,-0.031032394617795944,-0.07674644142389297,0.016837725415825844,-0.06901513040065765,0.08390413969755173,0.0648314505815506,0.034501396119594574,0.014173692092299461,-0.014778616838157177,0.06710334867238998,-0.050027720630168915,-0.0036064886953681707,0.0014842699747532606,-0.06313063204288483,0.057120680809020996,0.059860970824956894,-0.012389570474624634,-0.02260233461856842,-0.004529196303337812,-0.04174797609448433,-0.027646323665976524,-0.03509443253278732,0.16252508759498596,-0.0023351917043328285,0.012158193625509739,0.0427483431994915,-0.03121044673025608,0.02085277996957302,-0.029149120673537254,-0.01231826189905405,0.08412749320268631,-0.061535995453596115,-0.08468669652938843,-0.025540608912706375,-0.03280182555317879,0.06131598725914955,0.02933705411851406,0.013534258119761944,-0.017371121793985367,0.12416396290063858,0.004957940895110369,-0.0587211549282074,0.07781854271888733,0.03682573512196541,-0.03165367990732193,-0.026705821976065636,-0.007717097643762827,0.10294920206069946,0.035995032638311386,0.117511086165905,-0.08857516199350357,-0.09429297596216202,0.03140784800052643,-0.05454090237617493,0.045186299830675125,-0.009431431069970131,-0.028201283887028694,0.03888065367937088,-0.061556607484817505,-0.04192965105175972,-0.006962520070374012,-0.011294673196971416,-0.04074589163064957,0.0036062852013856173,0.0007071501458995044,0.016107499599456787,-0.03218253329396248,-0.07436689734458923,0.058977480977773666,-0.038100745528936386,0.03862665593624115,-0.0007904084050096571,-0.043346744030714035,0.05147013068199158,-3.35476606494467e-8,0.010221323929727077,0.04594634100794792,0.05821989104151726,0.04754994064569473,-0.03779667243361473,0.002739367075264454,-0.05357692018151283,0.008045043796300888,-0.04705945774912834,-0.07991039752960205,0.056907620280981064,-0.00015020088176243007,0.061069682240486145,-0.0630560964345932,0.03050541691482067,0.06481952220201492,0.07741057872772217,-0.022285643965005875,-0.06984084099531174,-0.08664672076702118,0.025894785299897194,0.04931601881980896,0.02546056918799877,0.1242293193936348,0.020360298454761505,-0.02697772905230522,0.05190479755401611,0.04712241515517235,0.00013859866885468364,-0.011209814809262753,-0.017814427614212036,-0.026694796979427338,-0.019884083420038223,-0.02986670285463333,-0.05615265667438507,-0.0906292200088501,-0.034056250005960464,0.015590028837323189,0.008055235259234905,0.0016900516347959638,-0.10351986438035965,0.02735649049282074,0.09317509084939957,0.037433262914419174,-0.06446417421102524,-0.01431052852421999,-0.033859092742204666,-0.07293061167001724,0.03742445260286331,-0.05358213558793068,0.0010318311396986246,0.025954796001315117,0.04168756306171417,0.041764065623283386,0.06938879936933517,-0.0512540265917778,0.05250311270356178,-0.003912691492587328,-0.019599754363298416,-0.010235028341412544,0.20202326774597168,-0.06559985876083374,0.05838799476623535,-0.05632641166448593]},{"text":"Can you realize what it is to me to deceive him?","book":"Down and Out in Paris and London","chapter":49,"embedding":[-0.03563205152750015,0.07842742651700974,0.047932129353284836,0.020019343122839928,0.09310943633317947,-0.054656606167554855,0.05948658660054207,-0.05905161798000336,0.016883959993720055,0.011667239479720592,-0.06401191651821136,-0.02940557338297367,0.08168329298496246,0.04156813025474548,0.030270470306277275,-0.040715817362070084,-0.04770619794726372,0.060241006314754486,-0.0030945201870054007,-0.024063969030976295,0.07580242305994034,0.02643352374434471,-0.015013224445283413,-0.07759882509708405,0.08090261369943619,0.0255600456148386,0.011654878966510296,0.038874972611665726,-0.0760771706700325,-0.044294748455286026,0.08880513906478882,-0.04545370116829872,0.054459553211927414,0.0005922179552726448,-0.009616413153707981,-0.039686571806669235,-0.040566008538007736,-0.013812878169119358,0.06859428435564041,0.00821423064917326,0.03402985259890556,0.02410346083343029,0.05030788108706474,0.1033468171954155,-0.011805329471826553,0.06465877592563629,-0.014578280039131641,0.07390743494033813,0.039116181433200836,-0.053413111716508865,-0.07173041999340057,0.035997435450553894,-0.023748958483338356,0.007896402850747108,-0.0721382200717926,-0.0021937398705631495,0.07724697142839432,0.06160876899957657,-0.09699667990207672,0.06333543360233307,0.062429096549749374,0.027600957080721855,0.018251024186611176,0.014204242266714573,-0.10265553742647171,0.07269230484962463,-0.06685268878936768,0.014719356782734394,0.011364908888936043,0.07393916696310043,0.06119083613157272,0.0203152634203434,0.009203646332025528,-0.019320333376526833,-0.10519221425056458,-0.021086661145091057,-0.017806878313422203,-0.017889659851789474,-0.017132427543401718,0.004080501385033131,0.02042156644165516,0.02565084397792816,0.0073137362487614155,-0.006034291349351406,-0.025877123698592186,-0.02851298078894615,0.01074992585927248,-0.04877258464694023,0.007291269022971392,0.04847072809934616,-0.031072666868567467,-0.08719124644994736,-0.043838631361722946,0.04062263295054436,-0.036190882325172424,-0.02182561159133911,-0.09835343807935715,0.0690709799528122,-0.09816430509090424,0.010481014847755432,-0.0511072538793087,-0.04082198813557625,0.015777748078107834,-0.09811737388372421,-0.001641283743083477,0.05122653767466545,-0.019206266850233078,0.02692856267094612,0.01393821556121111,-0.0024666329845786095,0.00425310991704464,-0.03287889435887337,-0.006581163965165615,-0.01860399730503559,0.05776624381542206,0.04794731363654137,0.0754522904753685,0.06121906638145447,-0.0562196746468544,0.07013474404811859,0.02320108376443386,0.06255460530519485,0.05753229185938835,0.1630699336528778,-0.08506537973880768,-0.07960009574890137,0.007450489327311516,-4.4898921411199005e-33,0.04321679472923279,0.027115952223539352,0.034975964576005936,-0.03520946204662323,-0.020140208303928375,0.0581522136926651,-0.03609580546617508,0.010674906894564629,-0.005680062808096409,0.043016500771045685,0.0013411880936473608,0.14185206592082977,0.030621763318777084,0.05520936846733093,-0.07577797025442123,0.10489683598279953,-0.01577978953719139,0.009168678894639015,0.029634324833750725,-0.05361633747816086,0.0026898030191659927,-0.1074179857969284,-0.025432128459215164,-0.11078674346208572,0.02724527008831501,-0.0289947260171175,0.0029716319404542446,0.060173407196998596,0.06461197882890701,0.01053418219089508,-0.09353980422019958,0.039957329630851746,0.04930936545133591,0.03901257365942001,-0.04861080273985863,-0.0038704355247318745,0.01684635318815708,-0.03418702259659767,-0.04688011482357979,0.0019720238633453846,-0.043345313519239426,0.0031301667913794518,-0.06587344408035278,0.04932592436671257,-0.11580529063940048,-0.011354622431099415,0.001931839855387807,-0.025820568203926086,-0.03551755100488663,-0.028300024569034576,0.01247489359229803,0.005160967819392681,0.04017608240246773,-0.03931577131152153,-0.0020848007407039404,0.024004094302654266,0.010942979715764523,-0.0146199194714427,0.09834104031324387,0.08632609993219376,0.012585550546646118,-0.06851392239332199,-0.05313872545957565,0.01023312471807003,-0.10900969803333282,-0.08047367632389069,-0.01892024278640747,-0.006037660874426365,-0.049084920436143875,0.011200829409062862,-0.0011335150338709354,-0.07809840142726898,-0.09058389812707901,-0.021012963727116585,0.012651994824409485,0.004400190897285938,-0.005383303854614496,0.028194058686494827,0.020883243530988693,-0.03823712095618248,-0.005288648419082165,-0.023034557700157166,-0.046396058052778244,-0.007134701125323772,-0.04504666477441788,0.005560119636356831,0.027965199202299118,0.013179358094930649,-0.05903073027729988,0.024748006835579872,-0.03844353184103966,0.05255241319537163,0.06826386600732803,-0.020918820053339005,-0.04698024317622185,1.2264067560308278e-33,-0.08340349048376083,0.01226631086319685,0.048172153532505035,0.020962420850992203,-0.041984908282756805,-0.04015515372157097,-0.0057886093854904175,-0.03145614638924599,0.010709799826145172,0.006478721741586924,-0.025307074189186096,0.008897119201719761,0.058756809681653976,0.01118350587785244,0.012531301006674767,-0.033536288887262344,0.07819407433271408,0.0002936039527412504,-0.03968963399529457,-0.06317885965108871,0.002081913873553276,0.01682860776782036,-0.01033333782106638,-0.046894438564777374,0.012450839392840862,-0.03630586341023445,0.12073969095945358,0.028516730293631554,0.06121557950973511,-0.07250958681106567,-0.06511685997247696,0.017763936892151833,0.03877047076821327,0.03686418756842613,-0.03963093459606171,0.03137204423546791,0.007566876709461212,0.047341249883174896,0.032094698399305344,-0.02293160930275917,-0.01974957063794136,-0.06581287831068039,-0.06131042540073395,-0.07384475320577621,0.033997248858213425,-0.09634418040513992,0.13290099799633026,0.03394363448023796,0.15275521576404572,0.013088819570839405,0.023411795496940613,0.018458351492881775,-0.04570712521672249,-0.03713146224617958,-0.023776045069098473,0.004204628057777882,-0.05626742169260979,0.04564061015844345,0.02701229602098465,-0.005951609928160906,-0.004924905486404896,0.015269885770976543,0.04607050493359566,0.00999328214675188,0.03835640102624893,0.008473580703139305,0.0016346100019291043,0.05247366428375244,0.020072752609848976,-0.03710836544632912,0.012926972471177578,-0.043087806552648544,-0.06314438581466675,-0.07131039351224899,0.05497181415557861,-0.06088858097791672,-0.08108199387788773,0.020044440403580666,-0.03950972855091095,-0.08437719941139221,0.11938576400279999,-0.05208984389901161,0.11095637083053589,-0.04230262339115143,-0.01458816695958376,-0.034898966550827026,-0.021133901551365852,0.04547626152634621,0.003467766335234046,0.07853793352842331,0.00493302708491683,0.04155580326914787,-0.02012607268989086,0.021479571238160133,0.10647369176149368,-2.329470838446923e-8,0.00856366939842701,-0.03721920773386955,-0.031033674255013466,-0.10650111734867096,0.005748621188104153,0.06362920999526978,-0.03422412648797035,-0.08395735174417496,-0.03172245994210243,-0.10044944286346436,0.06668871641159058,-0.0023138110991567373,0.0437522754073143,0.000056612716434756294,0.02648378536105156,0.09742289036512375,-0.034558508545160294,-0.09919048100709915,0.04185369238257408,0.03466445580124855,0.060814931988716125,0.0630064457654953,-0.053538545966148376,-0.03604023903608322,0.0070489514619112015,-0.020465852692723274,-0.0456075482070446,0.06763119250535965,0.03670355677604675,0.07352450489997864,-0.07183816283941269,-0.05440440773963928,-0.056629978120326996,0.0345722958445549,0.05626467987895012,-0.040623243898153305,0.021691448986530304,-0.0021418838296085596,0.00713636539876461,-0.07281942665576935,0.015268037095665932,0.0021095562260597944,0.032484620809555054,0.025767985731363297,-0.07013142108917236,-0.012668771669268608,0.09278363734483719,-0.012675900012254715,-0.05987109988927841,-0.000941834005061537,-0.03516199812293053,0.0541156567633152,0.007544956635683775,0.047877516597509384,0.08877044171094894,-0.05138985067605972,-0.06958304345607758,-0.0188133604824543,-0.046363912522792816,0.015896160155534744,0.06548687815666199,-0.08441408723592758,0.01712799444794655,-0.03718315437436104]},{"text":"But I did it to save your life.","book":"Down and Out in Paris and London","chapter":49,"embedding":[0.015769541263580322,0.06558442115783691,-0.004221461247652769,-0.036838188767433167,0.10500514507293701,-0.031853675842285156,0.04220353066921234,0.02162700705230236,0.05008711665868759,-0.0335477851331234,0.04009930044412613,0.026602348312735558,0.06553652882575989,0.05624264106154442,-0.033472463488578796,-0.038988616317510605,-0.04273803532123566,0.019537150859832764,-0.08565434068441391,0.0016840019961819053,0.045290667563676834,0.0705416202545166,0.0038575688377022743,-0.022167794406414032,0.02581697329878807,-0.019859254360198975,0.032009322196245193,0.04809331148862839,0.001539221964776516,0.08329327404499054,-0.016388941556215286,-0.023908432573080063,0.042287010699510574,-0.05668393895030022,-0.016881156712770462,-0.004373311530798674,0.04942946881055832,0.0028078637551516294,0.062247924506664276,-0.030916862189769745,0.005309960804879665,-0.0077223023399710655,0.03718378767371178,0.01926242746412754,0.053999219089746475,0.012637846171855927,-0.04905378445982933,-0.05714985355734825,0.12432867288589478,-0.05614023655653,0.04077909514307976,-0.06014997512102127,-0.08752899616956711,-0.017347509041428566,0.012953849509358406,0.0029313135892152786,-0.0365176647901535,0.010074455291032791,0.011580003425478935,0.03008759580552578,-0.00551057793200016,-0.05299049988389015,0.05156479403376579,0.04590555652976036,-0.012271761894226074,0.05009005218744278,-0.0002207696670666337,-0.07220906019210815,0.006802338175475597,0.051479730755090714,-0.00625089043751359,0.028819147497415543,-0.0023116047959774733,0.046232763677835464,-0.033029817044734955,0.03551877290010452,0.07854269444942474,-0.07685212790966034,0.0316079780459404,0.03909606114029884,-0.0386628694832325,-0.06404346972703934,0.015151879750192165,0.04018382728099823,0.0250178724527359,-0.047450367361307144,0.09248967468738556,-0.08761947602033615,0.041174594312906265,0.007039043121039867,0.004830364603549242,-0.00047253756201826036,-0.005431399680674076,-0.009685540571808815,-0.08763463795185089,-0.05917761102318764,-0.0638311579823494,0.03257031366229057,-0.06836617738008499,0.015941742807626724,0.059141747653484344,-0.06285963952541351,-0.05068215727806091,-0.023608790710568428,0.07464085519313812,-0.052892886102199554,-0.007292342372238636,0.0012593448627740145,0.02138245292007923,-0.007649585604667664,0.02088562585413456,0.025717727839946747,0.022604554891586304,0.026951445266604424,0.012119108811020851,0.029407378286123276,-0.09702933579683304,0.032950300723314285,0.05499052256345749,0.008106044493615627,0.07996521145105362,0.04348624870181084,-0.03031088598072529,0.083309605717659,-0.1496826410293579,-0.20321330428123474,0.08707857877016068,-7.059799400531849e-33,0.039052363485097885,0.006603078451007605,0.07042666524648666,-0.07257641851902008,0.021806804463267326,0.0038230123464018106,-0.08983197063207626,-0.018076002597808838,-0.02148699015378952,0.02535521425306797,0.09604490548372269,-0.0957380011677742,0.03673507645726204,-0.0391109324991703,-0.07464910298585892,0.06420915573835373,-0.05190511792898178,0.01857849396765232,0.03491790220141411,0.013430610299110413,0.010459640063345432,-0.08044441789388657,-0.002405308885499835,0.029360191896557808,-0.07154952734708786,0.042458660900592804,-0.007425451185554266,-0.03920608013868332,0.084063321352005,0.010488423518836498,0.006968234665691853,-0.01955970749258995,0.012240472249686718,-0.03999585285782814,-0.007712468039244413,0.042961183935403824,0.02047291398048401,-0.0818934217095375,-0.09394960105419159,-0.015546228736639023,-0.04254027456045151,0.03414196893572807,0.07472506910562515,0.04128629341721535,0.03988613188266754,-0.053168948739767075,-0.01965736225247383,0.038873009383678436,0.007126743905246258,-0.00819019041955471,-0.044259559363126755,-0.0017524434952065349,0.10277631878852844,0.0002993109228555113,-0.06875874102115631,0.058113567531108856,0.0358031690120697,0.024796929210424423,0.01278142910450697,0.032884009182453156,-0.07515957206487656,-0.0896979421377182,-0.02889273315668106,0.06293340027332306,0.033072762191295624,-0.040961287915706635,0.0659376010298729,-0.04493994638323784,0.03416428714990616,-0.017815643921494484,-0.04007865861058235,-0.042861826717853546,0.02175106108188629,-0.036337897181510925,-0.013765235431492329,-0.0342133454978466,-0.07041844725608826,0.01082098949700594,-0.03652055934071541,-0.03908050060272217,0.1119980588555336,-0.05334509164094925,-0.10638952255249023,-0.0517965666949749,0.12164290994405746,-0.020250311121344566,0.009268996305763721,-0.06746473908424377,-0.03669705614447594,0.006741874851286411,-0.021046610549092293,0.03319708630442619,0.04739002510905266,-0.09723244607448578,-0.07279027998447418,4.519854757438391e-33,0.00045059784315526485,0.0011170814977958798,-0.011908059939742088,-0.025925640016794205,0.05436161905527115,-0.06560463458299637,-0.0880390927195549,-0.09143700450658798,0.025933312252163887,0.07845543324947357,0.05402238667011261,0.03553399816155434,0.050861895084381104,0.006635183468461037,0.09082379937171936,0.0010836728615686297,-0.015107079409062862,0.01476500928401947,-0.13659979403018951,-0.0649091899394989,-0.007675693836063147,0.019514454528689384,-0.025148330256342888,0.08065879344940186,0.029492860659956932,0.04639508202672005,0.03707685321569443,0.011666624806821346,0.09131117910146713,0.002933097304776311,0.07114942371845245,-0.019303251057863235,-0.1900707632303238,-0.009094553999602795,0.022716302424669266,0.06653760373592377,0.04956164211034775,0.006884555798023939,-0.030079543590545654,-0.07453770190477371,-0.028651950880885124,-0.003549078945070505,-0.04166797176003456,-0.022677943110466003,-0.021107934415340424,0.0016578503418713808,0.05259385332465172,0.007347453851252794,0.0490325391292572,0.09120465070009232,-0.009537488222122192,-0.048762522637844086,0.02794901840388775,-0.0820445865392685,0.017114169895648956,-0.056816212832927704,0.03537187725305557,0.032219305634498596,0.08090386539697647,-0.08634599298238754,-0.05009269341826439,0.08246731758117676,-0.08111486583948135,-0.01770831272006035,-0.004088771063834429,-0.0348619744181633,-0.0184884462505579,0.08606809377670288,-0.018274597823619843,-0.08934317529201508,0.04085111245512962,0.0930572897195816,0.00027466361643746495,0.01900838315486908,-0.01965401880443096,-0.10064665973186493,-0.01833198219537735,0.033094145357608795,-0.02414168417453766,-0.0018420706037431955,0.011514074169099331,-0.018834169954061508,0.005255653988569975,0.015292398631572723,0.027330545708537102,0.001880152034573257,0.05426011234521866,-0.014589091762900352,0.00675241881981492,0.01202181726694107,0.022402511909604073,0.06557632982730865,0.10298528522253036,0.01620633527636528,-0.012394835241138935,-2.0999870287141675e-8,0.027667127549648285,0.04717538133263588,0.04558978229761124,0.06810470670461655,-0.07050015032291412,0.011263443157076836,-0.0018024623859673738,-0.019001642242074013,-0.01922452636063099,-0.0020149443298578262,-0.020110005512833595,0.027929121628403664,0.052293505519628525,0.07493610680103302,0.050394825637340546,-0.08187095820903778,0.017501236870884895,-0.10307320952415466,0.012586546130478382,0.061592020094394684,0.040503714233636856,0.014793950133025646,-0.03726724162697792,-0.0700768455862999,-0.04435335472226143,-0.00022449292009696364,0.05849897488951683,0.09731480479240417,0.013215413317084312,-0.032261259853839874,0.04155614599585533,-0.027783486992120743,-0.058093927800655365,0.04746168106794357,-0.05281586945056915,-0.007484092377126217,0.054600492119789124,-0.03433319181203842,0.06499187648296356,0.06010741367936134,0.0027169170789420605,0.07645153254270554,0.058940328657627106,0.025656988844275475,0.030300579965114594,-0.004536847583949566,-0.002036426682025194,-0.054695356637239456,0.03146408125758171,0.03856213763356209,-0.040590204298496246,0.022741753607988358,0.06741764396429062,0.057888615876436234,0.031159166246652603,-0.04236852005124092,-0.012531500309705734,-0.04075905680656433,0.030146051198244095,0.009186355397105217,0.035008009523153305,-0.04201836138963699,-0.07171405106782913,-0.07036018371582031]},{"text":"It cost you nothing: it cost me a lie!—a lie!! (_She sits down on the ottoman, looking straight before her with her hands clasped on her knee.","book":"Down and Out in Paris and London","chapter":50,"embedding":[-0.015652449801564217,0.11971049755811691,0.02585664391517639,0.04282023757696152,0.009929018095135689,0.011539602652192116,0.08283092081546783,-0.05202289670705795,0.07896095514297485,-0.008630815893411636,-0.03406023606657982,-0.03777041658759117,0.0003205159737262875,0.012604102492332458,-0.03970798850059509,-0.035467639565467834,-0.005251562688499689,0.09056597203016281,-0.04731221869587898,0.03800100460648537,0.001681659952737391,-0.009099559858441353,0.04055190458893776,0.04087187349796295,-0.03578975796699524,-0.05033380538225174,0.024095110595226288,-0.06386683881282806,-0.022664396092295647,0.029519131407141685,-0.06496597826480865,0.04747192934155464,-0.07245739549398422,0.002038521459326148,0.052727919071912766,0.01635647378861904,-0.007636603433638811,-0.05107000470161438,0.020169051364064217,0.028113583102822304,-0.03924984484910965,-0.08676088601350784,-0.06126222386956215,0.034758925437927246,-0.03336634486913681,0.03947734460234642,0.0277581587433815,0.09276798367500305,0.019078688696026802,0.018990803509950638,-0.10008413344621658,0.022103609517216682,-0.04781189560890198,-0.08877889066934586,-0.05115208774805069,-0.020817551761865616,0.08377207815647125,-0.04243944212794304,0.03173881024122238,0.0786208063364029,-0.04468122869729996,0.051391713321208954,-0.017263449728488922,0.1182178258895874,-0.03353959321975708,0.032054875046014786,0.008182051591575146,-0.08866272121667862,-0.06833875924348831,0.0883379802107811,-0.0038562805857509375,0.04325152933597565,-0.028073973953723907,0.013403595425188541,-0.052739743143320084,-0.06289883702993393,0.08487528562545776,-0.06625755876302719,0.05796753987669945,0.09833800047636032,-0.045305751264095306,-0.02962017059326172,-0.05273495614528656,0.07318276166915894,0.01455133780837059,-0.088158518075943,-0.0012199083575978875,-0.029121562838554382,0.012381080538034439,-0.08460111916065216,0.038024090230464935,-0.08052831143140793,-0.13085424900054932,0.0065360888838768005,0.048262253403663635,0.0009180870838463306,-0.0934855118393898,0.02190561220049858,-0.08112422376871109,0.003998687956482172,0.0581141822040081,0.030276967212557793,0.06854603439569473,0.03367725387215614,-0.01156257838010788,0.010779489763081074,0.0300418920814991,-0.025125326588749886,-0.009077480062842369,0.00747937336564064,0.012674271129071712,-0.08035825192928314,0.005901689641177654,-0.03914153575897217,-0.012748848646879196,0.05788806453347206,0.04865041747689247,-0.06533719599246979,-0.012182082049548626,0.01621343567967415,-0.025216378271579742,-0.009593809023499489,-0.03129812702536583,0.0440625362098217,-0.11499062180519104,-0.12735258042812347,0.014366182498633862,-3.095126584224993e-33,-0.007519685663282871,-0.022572748363018036,0.04078180715441704,-0.03686864674091339,0.008368137292563915,-0.019745104014873505,-0.04675056412816048,0.07721556723117828,-0.09923915565013885,0.09677704423666,-0.00395009433850646,0.003332630032673478,-0.01558543648570776,-0.026588406413793564,0.001389744458720088,0.043469227850437164,-0.010626384988427162,-0.04366903379559517,0.07887426018714905,0.05586405470967293,0.041368402540683746,-0.014612104743719101,0.08535465598106384,-0.0003306111611891538,-0.08462569117546082,-0.022621052339673042,-0.02151414565742016,-0.0751476064324379,0.015337514691054821,0.005352554842829704,-0.07262908667325974,-0.020524149760603905,0.07909083366394043,-0.06418871879577637,0.008754221722483635,0.015472490340471268,-0.03358180448412895,-0.0025853808037936687,-0.06555134803056717,-0.009959660470485687,-0.07960105687379837,-0.007218109909445047,0.09565818309783936,-0.07642249017953873,-0.05910765007138252,0.010884897783398628,-0.049747247248888016,0.059200163930654526,0.016034262254834175,-0.02668236568570137,-0.06309332698583603,0.07107673585414886,-0.000512263854034245,0.03751669079065323,-0.007020322605967522,-0.07773923128843307,0.05919191613793373,0.036822881549596786,0.059298958629369736,0.004185208119452,0.021930476650595665,-0.1311597377061844,-0.032211218029260635,-0.07979076355695724,-0.06792309880256653,-0.004996058996766806,-0.03474060073494911,-0.032198622822761536,0.061459388583898544,0.008518424816429615,-0.04232208803296089,0.07334847748279572,-0.02377302013337612,0.05194953829050064,-0.04503229260444641,0.05942879244685173,0.014834169298410416,0.009971736930310726,0.08018040657043457,-0.06535552442073822,0.0738271176815033,-0.021906550973653793,-0.004209049977362156,0.034763023257255554,-0.020520050078630447,-0.020217543467879295,-0.08410319685935974,-0.02626432664692402,-0.0720108225941658,-0.02723415195941925,-0.036803752183914185,0.05581798776984215,0.019090767949819565,-0.0632871612906456,0.02384074777364731,-1.563662972943954e-33,0.027699938043951988,0.04092530533671379,-0.03200478479266167,0.04498285800218582,-0.002511832397431135,-0.06286529451608658,-0.0278327614068985,0.0037970116827636957,0.04971804842352867,0.05593997985124588,-0.07191400974988937,-0.03807006776332855,0.051086653023958206,-0.007152480538934469,0.06221162527799606,0.005523000843822956,0.025588257238268852,-0.015038867481052876,0.04258137568831444,0.04565424472093582,-0.03448684513568878,0.10245881229639053,0.04307461902499199,-0.0027968052309006453,-0.0792892724275589,0.008257254026830196,0.14249572157859802,-0.0463816374540329,-0.02576594240963459,0.04586781561374664,0.014776772819459438,-0.05932740122079849,-0.10751798003911972,0.004214425105601549,-0.004256417043507099,0.03196270391345024,-0.034896112978458405,-0.034445568919181824,-0.08734627813100815,0.009824713692069054,0.046697381883859634,0.00812980905175209,0.00046105965157039464,0.013930943794548512,0.06675366312265396,-0.06799427419900894,-0.05889708176255226,-0.024083178490400314,0.0770450159907341,-0.04142719507217407,-0.041756629943847656,-0.019715605303645134,0.02139497920870781,0.04833110794425011,-0.051885731518268585,0.007871617563068867,0.01837293989956379,0.017217278480529785,0.0724337249994278,0.0002480198454577476,-0.05455000326037407,0.05719785392284393,-0.014786526560783386,-0.014682577922940254,0.004971264861524105,0.017704982310533524,0.06447625160217285,0.015389375388622284,-0.005821879021823406,-0.011266476474702358,0.0016087312251329422,0.04494498670101166,-0.09448215365409851,-0.0006150890840217471,-0.007725994102656841,0.0508141815662384,0.052751801908016205,-0.056347329169511795,0.04523869976401329,0.020573129877448082,0.06355106085538864,-0.08113352209329605,0.09102825820446014,-0.07814584672451019,0.029978064820170403,-0.02313636615872383,0.031221432611346245,0.018132349476218224,-0.10307848453521729,0.06758933514356613,-0.02707606554031372,0.016677074134349823,0.079072505235672,-0.04657562077045441,0.02873891592025757,-3.195514253206966e-8,-0.03627849370241165,0.019946161657571793,0.05208565294742584,-0.023249762132763863,-0.06183619052171707,-0.06073974817991257,-0.014651899226009846,0.048215728253126144,-0.11230036616325378,-0.033427901566028595,0.03154447302222252,-0.009459761902689934,0.02478109300136566,0.05934805050492287,-0.011852755211293697,0.1361575722694397,-0.04369928687810898,-0.02907598204910755,0.012987399473786354,0.008282446302473545,0.010958055034279823,0.018042854964733124,-0.022101981565356255,-0.008715715259313583,-0.043672770261764526,0.034842465072870255,0.02748967707157135,0.12311648577451706,0.022192813456058502,0.04547891020774841,0.06660590320825577,0.004149718210101128,-0.007928363047540188,-0.009700317867100239,-0.08036047220230103,-0.03182993456721306,-0.026853550225496292,0.03409208729863167,0.027213208377361298,-0.06224243715405464,-0.10557765513658524,0.005418272688984871,-0.018524380400776863,0.021554691717028618,0.06363510340452194,0.052960146218538284,-0.05296248942613602,-0.08265659958124161,-0.04518277943134308,0.033358022570610046,0.047439079731702805,-0.0027841944247484207,-0.006460400298237801,0.07020627707242966,0.030401485040783882,-0.0923984944820404,0.05504477769136429,-0.005045742727816105,0.05566854402422905,0.06758007407188416,0.06157796457409859,-0.04243788123130798,-0.07505727559328079,-0.05451834574341774]},{"text":"And so he becomes a creature incapable of faith and of gratitude.","book":"Down and Out in Paris and London","chapter":50,"embedding":[0.057641349732875824,0.06960026919841766,0.06381060928106308,0.08328492194414139,-0.056636594235897064,-0.02209094911813736,0.03699936717748642,-0.08018587529659271,0.08602486550807953,-0.06260163336992264,0.004355601035058498,0.03640423342585564,-0.0006987201632000506,0.05124596133828163,-0.0025008029770106077,-0.014352843165397644,-0.031413525342941284,0.026867473497986794,0.003506260458379984,0.03663850948214531,0.04017549380660057,0.043533243238925934,0.010167783126235008,-0.019614212214946747,-0.0329156219959259,-0.05408073589205742,0.0020202219020575285,-0.028878122568130493,0.07652117311954498,-0.051463231444358826,0.03585372120141983,-0.064876027405262,0.022663872689008713,-0.00015173543943092227,-0.029684677720069885,0.04724637418985367,0.0689251720905304,0.03230349346995354,0.02436353638768196,-0.044624119997024536,0.03384917229413986,0.001164267654530704,-0.0707191526889801,0.02541370503604412,-0.020965583622455597,-0.09187807142734528,-0.028294719755649567,-0.030242400243878365,0.11174745112657547,-0.02606704831123352,-0.0514150895178318,0.0148055674508214,-0.005219664890319109,-0.036581214517354965,-0.07529789954423904,0.038136061280965805,0.053257014602422714,0.05209551751613617,-0.03808905929327011,-0.00599053967744112,0.012368455529212952,0.03900818154215813,0.011650112457573414,0.04050886631011963,0.08191811293363571,0.012585603632032871,-0.011430609039962292,-0.044101882725954056,-0.18541844189167023,0.058231912553310394,0.05114338546991348,-0.0014838872011750937,0.06709323823451996,-0.07148861885070801,-0.048398688435554504,-0.051438894122838974,-0.03651230409741402,-0.02545139752328396,0.08123809844255447,0.08555670827627182,-0.07043963670730591,0.09153258055448532,0.007809662725776434,0.014816815964877605,-0.03385551646351814,-0.06407005339860916,0.052350785583257675,-0.16741833090782166,-0.042390670627355576,0.06747633963823318,-0.056425224989652634,-0.05143949016928673,-0.0621899850666523,0.027259252965450287,-0.012309321202337742,0.05349268391728401,-0.032244350761175156,-0.031742822378873825,-0.060005102306604385,0.04641291871666908,-0.027605675160884857,0.006950294598937035,-0.010572358965873718,0.02911487966775894,0.09053155034780502,-0.00020375530584715307,-0.060621000826358795,-0.06686253100633621,-0.001462488085962832,-0.013088688254356384,-0.039559658616781235,-0.04702945798635483,0.016364747658371925,0.007011756766587496,0.030049046501517296,0.0925011932849884,-0.06714051216840744,0.02218858152627945,-0.1262412816286087,0.032643742859363556,0.04985729977488518,0.020422546193003654,0.011749029159545898,0.11794024705886841,-0.013886915519833565,-0.06252402812242508,0.011283625848591328,-3.388157489417819e-33,0.052477676421403885,0.015395567752420902,0.055967628955841064,-0.041812919080257416,0.00933634489774704,0.03016629070043564,-0.008013528771698475,0.0004984229453839362,-0.029526712372899055,-0.11722797155380249,-0.0748179703950882,-0.01695914939045906,0.007833699695765972,-0.0009003254235722125,-0.0790935680270195,0.00026074497145600617,-0.06695491075515747,0.04147813841700554,0.09859952330589294,-0.0583978071808815,-0.05583643540740013,-0.009563605301082134,-0.0055883717723190784,-0.00038156320806592703,0.027085166424512863,-0.057108037173748016,0.09180847555398941,0.060798536986112595,-0.06716775894165039,0.0265651848167181,-0.06275211274623871,0.040753018110990524,0.04382520541548729,0.0010792812099680305,-0.012756465934216976,-0.010918522253632545,-0.06609803438186646,-0.003015903290361166,-0.001384909264743328,-0.016766805201768875,0.034830059856176376,0.017380831763148308,-0.01821882091462612,-0.013207525946199894,-0.04974070563912392,-0.048948854207992554,0.08763745427131653,-0.06835378706455231,0.02254170924425125,0.04107464477419853,0.026268135756254196,-0.012018777430057526,0.08565729111433029,-0.05382902920246124,-0.07213432341814041,0.002768309321254492,0.016580866649746895,0.03627003729343414,0.00146365852560848,-0.05704193189740181,-0.04883258044719696,-0.0811336413025856,-0.02105093002319336,0.0007440604967996478,0.002519954228773713,-0.054070763289928436,-0.032103680074214935,-0.013100026175379753,-0.12777793407440186,0.03795525059103966,-0.05371499061584473,0.019226087257266045,-0.034045688807964325,0.032892338931560516,-0.057605545967817307,-0.08325699716806412,0.007666999939829111,-0.03838561102747917,0.05714759603142738,-0.03363069146871567,-0.03308675065636635,0.021605661138892174,0.025214029476046562,0.03080068528652191,0.01265505701303482,-0.03361235931515694,0.06455862522125244,-0.09576395899057388,0.0004565588023979217,0.0017143161967396736,0.11196595430374146,-0.00376721378415823,0.012137427926063538,-0.07022019475698471,-0.03475891798734665,1.076747958071919e-33,-0.0036971510853618383,-0.03914213180541992,-0.03085179254412651,0.06601524353027344,-0.07993924617767334,-0.002615084173157811,-0.1198916956782341,0.11745675653219223,0.014804031699895859,-0.009296148084104061,0.010131408460438251,0.03926267474889755,0.04650219902396202,-0.004339362494647503,-0.06254412978887558,-0.04820345714688301,0.02070271410048008,0.07125434279441833,-0.060466401278972626,-0.01820456050336361,0.07805533707141876,0.0661899521946907,-0.005868167616426945,-0.023555990308523178,0.009544367901980877,0.053896401077508926,-0.008918974548578262,-0.016235683113336563,-0.02551441080868244,-0.0260967705398798,0.013482470996677876,0.046916913241147995,-0.09642446786165237,0.0023279532324522734,0.010885503143072128,-0.019125692546367645,-0.005155939608812332,0.059241991490125656,-0.02225666679441929,0.010457229800522327,0.05263917148113251,-0.05609140172600746,0.05230884626507759,0.0360477976500988,0.07662303745746613,-0.029860617592930794,0.09392081946134567,0.09900975972414017,0.03554271161556244,-0.004227909259498119,-0.018756242468953133,-0.07492046058177948,0.019713029265403748,0.038411375135183334,-0.0184105783700943,-0.008491282351315022,-0.042566705495119095,-0.05023301765322685,0.05160491541028023,-0.02370929718017578,-0.03498079255223274,-0.02869325876235962,0.03879324346780777,0.04055352509021759,0.013565603643655777,0.03638860210776329,-0.012893494218587875,0.13594676554203033,0.05946533381938934,0.04448731988668442,0.08143327385187149,0.03497738018631935,-0.026684435084462166,-0.043284304440021515,-0.0006800114060752094,0.04107692092657089,-0.0837370976805687,-0.05233626440167427,0.0428532250225544,-0.0766981914639473,0.0005479679093696177,-0.04714524373412132,0.047505684196949005,-0.009823097847402096,-0.018376249819993973,-0.11473603546619415,-0.0674988254904747,-0.009450642392039299,0.050059106200933456,0.043444160372018814,0.008675456047058105,-0.030424421653151512,0.025009071454405785,0.01911766827106476,0.0014389532152563334,-2.0134717004793856e-8,0.0071187978610396385,-0.029126804322004318,-0.049758780747652054,-0.013210131786763668,0.06896299123764038,0.07790485769510269,0.08414658159017563,-0.10122516006231308,-0.010555538348853588,0.04617277532815933,-0.015478366985917091,0.010048863478004932,-0.015329819172620773,0.01405051164329052,0.06356265395879745,0.05229493975639343,0.021773578599095345,-0.05012691766023636,-0.03566869720816612,0.02175845019519329,-0.04956457391381264,-0.012234385125339031,0.010672018863260746,0.014420143328607082,-0.02445250004529953,-0.047394827008247375,-0.08835811913013458,0.043767914175987244,0.030799327418208122,0.046717431396245956,0.0619431771337986,-0.017832882702350616,-0.06048956885933876,0.040100082755088806,0.056051068007946014,0.04101225733757019,-0.1008947491645813,0.004861070308834314,0.1293777972459793,-0.04727772995829582,0.03644590079784393,0.13221067190170288,-0.01289522647857666,-0.00812256895005703,0.021473150700330734,-0.01279469858855009,0.01945256069302559,0.07301684468984604,0.02683565579354763,-0.016545649617910385,0.05093151330947876,0.06682255119085312,-0.03637441620230675,-0.04239780828356743,0.020774178206920624,0.015116873197257519,0.025540584698319435,0.00485960254445672,-0.023085657507181168,-0.056694820523262024,0.053861867636442184,-0.010089338757097721,0.13196158409118652,-0.038371291011571884]},{"text":"To you it was something I probably did every day—every hour.","book":"Down and Out in Paris and London","chapter":50,"embedding":[-0.051023468375205994,0.06454961001873016,0.1174711287021637,0.02393457666039467,0.005704693961888552,-0.11276350915431976,0.12258698791265488,-0.011420754715800285,-0.016387641429901123,-0.044453639537096024,-0.03806813061237335,0.02125895582139492,0.06817244738340378,0.09305569529533386,-0.01928725279867649,0.0156402587890625,0.01359540969133377,-0.07673676311969757,-0.10336137562990189,0.02981514483690262,-0.07647773623466492,0.044224824756383896,0.050008248537778854,0.032995302230119705,-0.003874255111441016,0.09574837982654572,0.045379336923360825,0.007488171104341745,-0.03835989907383919,-0.017078503966331482,-0.07539191097021103,-0.0278075709939003,0.018133534118533134,-0.002045601373538375,-0.011428979225456715,-0.007983807474374771,-0.0038791298866271973,-0.02731464058160782,0.002241636160761118,-0.0375436469912529,0.0442734956741333,-0.005616501439362764,0.06739721447229385,0.0029834627639502287,-0.04339325800538063,-0.015095587819814682,0.021516315639019012,-0.0848378986120224,0.026667846366763115,0.04788244515657425,0.03294820711016655,-0.033205606043338776,0.014197049662470818,-0.07910974323749542,-0.01608177274465561,0.04592103511095047,0.0359298475086689,0.06552444398403168,0.08341134339570999,0.002852775389328599,-0.061189692467451096,0.04756864160299301,0.01127556897699833,0.04257794842123985,-0.013159703463315964,0.0284360870718956,-0.0796099379658699,0.04652993381023407,0.05680396780371666,0.046419523656368256,-0.0929669514298439,0.04268777742981911,-0.01479562558233738,0.08174894005060196,0.0024173741694539785,-0.02545209601521492,0.043107081204652786,-0.11448362469673157,0.03120649978518486,0.018303874880075455,-0.047889940440654755,0.0033977595157921314,0.030344096943736076,0.060917410999536514,0.013582277111709118,0.00527238892391324,0.06542124599218369,0.007056339643895626,0.024141883477568626,-0.03846331685781479,-0.030908552929759026,-0.0595223531126976,-0.02048242650926113,-0.041186124086380005,-0.047324541956186295,-0.04467148333787918,-0.08873191475868225,0.0018670198041945696,-0.015204796567559242,0.06259530037641525,-0.0007332489476539195,-0.016552090644836426,-0.012272306717932224,0.027784314006567,0.009568536654114723,0.0411788634955883,-0.01694682613015175,0.011202913708984852,-0.04204442352056503,-0.02821696177124977,-0.06938186287879944,0.05015873908996582,0.04969072341918945,0.005347815342247486,-0.009117989800870419,0.004999039229005575,-0.0050144800916314125,0.03535383194684982,-0.054209690541028976,0.0664995014667511,-0.01997484639286995,0.07406561821699142,-0.019283747300505638,-0.031985413283109665,-0.08165568858385086,-0.029901325702667236,0.0591292604804039,-5.265562292319142e-33,0.048177771270275116,0.02248634211719036,0.01401540171355009,0.07560861855745316,0.03491247445344925,-0.023068299517035484,-0.08005663752555847,0.03718394413590431,0.05809571221470833,-0.004163844045251608,0.09416814148426056,0.008618100546300411,-0.03412260115146637,0.06539882719516754,-0.027862170711159706,0.07934935390949249,-0.010512331500649452,0.06130620092153549,-0.0065772621892392635,-0.02730962634086609,0.011825481429696083,-0.08660577982664108,0.005380634218454361,0.01951276697218418,-0.03985723853111267,-0.04858366400003433,-0.01631929911673069,-0.042800284922122955,0.10048098862171173,-0.020144976675510406,0.07516903430223465,0.0562090240418911,0.022719020023941994,-0.04549678787589073,-0.0024184423964470625,0.0028182021342217922,0.13169574737548828,-0.008137410506606102,-0.053991999477148056,-0.0018234928138554096,-0.03935186192393303,-0.056276414543390274,0.03975974768400192,-0.01209363341331482,0.00767595786601305,0.04486865550279617,0.030186697840690613,0.009083238430321217,-0.03824343532323837,0.006037489511072636,-0.016787264496088028,0.05254988744854927,0.14503107964992523,-0.010720591992139816,-0.06136895343661308,0.02058660425245762,-0.015020085498690605,-0.01320390123873949,0.004331665579229593,0.11028476804494858,-0.005308258347213268,-0.046130914241075516,-0.03338932245969772,-0.04807578772306442,-0.11748713999986649,0.0047378987073898315,0.049165718257427216,0.022169772535562515,0.04830256849527359,0.04761383309960365,0.02169349603354931,-0.02087659016251564,-0.028149086982011795,-0.06530357897281647,-0.020773183554410934,-0.08443640172481537,-0.001250474713742733,-0.03924928605556488,-0.07949241250753403,-0.012977874837815762,0.04911449924111366,0.004408194683492184,0.05567815527319908,-0.04693056270480156,0.07923425734043121,0.0032103918492794037,0.015689631924033165,-0.007637958042323589,-0.0855216309428215,0.005623847246170044,-0.021235119551420212,-0.023591846227645874,0.025282474234700203,-0.017729898914694786,-0.033435191959142685,2.821230706682638e-33,0.002541567664593458,0.019161386415362358,0.03213123977184296,0.0663379654288292,-0.03185037896037102,-0.0482410229742527,-0.10924766957759857,0.03659713268280029,0.008137354627251625,0.1329881101846695,0.03949781507253647,0.022155435755848885,-0.01566137559711933,0.010370672680437565,0.014140917919576168,-0.00884829368442297,0.00340495677664876,-0.046686191111803055,-0.06243671849370003,0.03186609596014023,-0.07624277472496033,0.0467933714389801,0.03813215717673302,-0.04396253079175949,0.022635983303189278,0.014730553142726421,0.047720037400722504,0.05428994074463844,0.000014079149877943564,-0.01541663333773613,0.055323608219623566,0.006847802083939314,-0.1401435136795044,-0.019657371565699577,0.006268775090575218,0.0449865385890007,-0.023289622738957405,0.03808724880218506,0.021235842257738113,-0.008988059125840664,-0.11093160510063171,-0.03892388567328453,-0.05625399574637413,-0.04630442336201668,-0.04560351371765137,0.018392018973827362,-0.053723499178886414,-0.07038594037294388,-0.04857665300369263,0.0022926314268261194,-0.026958471164107323,-0.053700145334005356,-0.024630948901176453,-0.018097074702382088,-0.04485408961772919,0.11709289252758026,0.08987702429294586,-0.040205180644989014,0.0761706680059433,-0.0008116174140013754,-0.07257425785064697,-0.01949610561132431,-0.058649834245443344,-0.005199015606194735,-0.02193380892276764,0.0025530019775032997,-0.019063584506511688,-0.048175010830163956,-0.06144556775689125,-0.030332449823617935,-0.015092785470187664,0.01730697602033615,-0.024948742240667343,0.11940085142850876,-0.08871910721063614,-0.009257087484002113,0.021100474521517754,-0.028754763305187225,-0.049163687974214554,-0.021951530128717422,-0.10905728489160538,-0.08579640090465546,0.03588113561272621,-0.012022925540804863,-0.11685935407876968,0.006368579808622599,-0.005283548031002283,-0.012381824664771557,0.01527267787605524,0.05700717121362686,-0.0005960054113529623,-0.011065935716032982,-0.03655031695961952,0.06459121406078339,0.06979940831661224,-2.5296213124192946e-8,0.00009820669220061973,0.01173141598701477,0.028188100084662437,0.0489722304046154,-0.009752397425472736,-0.027965877205133438,0.08721539378166199,-0.006596638821065426,-0.0521523654460907,-0.03799235820770264,0.055053893476724625,0.03151360899209976,0.036978740245103836,0.03571812063455582,0.07070062309503555,-0.01961582526564598,0.1053793802857399,-0.04072115942835808,-0.02537318505346775,0.014970356598496437,0.10904113203287125,0.00862864125519991,-0.03264651447534561,-0.013979154638946056,-0.0017027526628226042,0.029236674308776855,0.013467976823449135,0.13252626359462738,0.01940084993839264,0.02890748903155327,0.08310520648956299,-0.08763235807418823,-0.09351018071174622,0.014413832686841488,-0.09301093965768814,0.003543754806742072,0.06914635747671127,-0.13059654831886292,-0.03754676878452301,-0.006358664948493242,-0.0011427291901782155,-0.006085880100727081,0.03497667983174324,0.07120734453201294,0.06581348180770874,0.03445376083254814,0.024011684581637383,-0.04976728931069374,0.0768837183713913,0.032244227826595306,-0.009015068411827087,0.0020587597973644733,0.037965327501297,0.05728958174586296,0.10852833837270737,0.0370720811188221,0.02947252430021763,-0.01603248529136181,-0.00895601511001587,-0.037810344249010086,0.09328813850879669,0.004952844697982073,-0.1590571403503418,-0.1023046150803566]},{"text":"Do you know, sir, that you are insulting me?","book":"Down and Out in Paris and London","chapter":51,"embedding":[0.028656212612986565,-0.034194160252809525,0.02213299460709095,-0.027246514335274696,-0.021166620776057243,-0.04744792729616165,0.13811570405960083,0.011763080954551697,-0.0515536367893219,0.03320892155170441,-0.05666746199131012,-0.07755504548549652,0.02712547779083252,-0.0359652079641819,-0.06553047895431519,0.07031086087226868,0.04212452471256256,-0.04414714127779007,0.003890030784532428,0.017195774242281914,0.005011500790715218,0.09377186000347137,0.06499418616294861,-0.049736227840185165,-0.02309267409145832,-0.004180446267127991,0.00012176876771263778,0.12118435651063919,-0.034358296543359756,-0.031999096274375916,-0.049517370760440826,0.012953718192875385,-0.022446146234869957,0.00048129388596862555,-0.016760652884840965,0.029719403013586998,0.05867726728320122,0.017898639664053917,-0.00007427317905239761,-0.046259257942438126,-0.018650367856025696,-0.0017117010429501534,0.05869593098759651,-0.03833283111453056,0.030315114185214043,0.08630190044641495,-0.0935017392039299,0.08535753190517426,-0.03434399887919426,-0.10699205100536346,-0.034907106310129166,0.00302030798047781,0.039283815771341324,0.06704796850681305,0.024137714877724648,0.004478435032069683,0.05579022318124771,0.023047398775815964,-0.03905962035059929,0.07884812355041504,-0.01361153181642294,-0.060366641730070114,-0.06047152727842331,0.10657290369272232,-0.06535899639129639,-0.02519267052412033,-0.02885892614722252,-0.041988689452409744,-0.06627587229013443,0.07761316001415253,-0.03323856741189957,-0.031103268265724182,0.031179113313555717,0.03418085724115372,-0.041949063539505005,0.016004713252186775,0.033347249031066895,0.009023844264447689,0.012152123264968395,0.04164670407772064,-0.04336553439497948,-0.07915065437555313,0.000011691718100337312,0.05320391803979874,-0.03280525282025337,-0.06765716522932053,0.0028653389308601618,-0.05171012878417969,-0.022835852578282356,-0.010485961101949215,0.025507846847176552,-0.008345304988324642,0.031534016132354736,0.022320110350847244,0.008165964856743813,-0.044161587953567505,-0.024420030415058136,-0.005476396065205336,-0.06384455412626266,0.10623209178447723,0.01371411420404911,-0.00020720881002489477,-0.09458162635564804,-0.013358994387090206,0.062204476445913315,-0.008987510576844215,-0.0914824977517128,0.009653673507273197,-0.056930188089609146,-0.05183294415473938,-0.08516500890254974,-0.04014744982123375,-0.025916390120983124,-0.06403385102748871,0.012521143071353436,-0.056788891553878784,0.07125526666641235,-0.006704758387058973,-0.06952977180480957,-0.004947655368596315,0.02543889544904232,0.04988411068916321,-0.0943797305226326,0.07259030640125275,0.012814893387258053,-0.14030124247074127,0.019061408936977386,-1.0111533345480206e-32,0.038355205208063126,0.010247384198009968,0.04635724797844887,0.08909707516431808,-0.09175000339746475,0.03906837850809097,-0.022858692333102226,-0.030131276696920395,0.028010865673422813,-0.06077698618173599,0.03210938721895218,0.02285660430788994,-0.05047571659088135,0.05783456936478615,-0.02819001115858555,0.08023509383201599,0.09095846861600876,0.02698538266122341,0.054208144545555115,-0.08408914506435394,0.004007835406810045,0.004665279295295477,0.026625851169228554,-0.03648070618510246,-0.034582190215587616,0.005830264184623957,0.0592673160135746,0.008228885941207409,0.07187270373106003,0.046713583171367645,-0.012264421209692955,0.04202563315629959,-0.044247034937143326,-0.059426892548799515,-0.0575186163187027,-0.03698590770363808,0.02834222838282585,-0.06305704265832901,-0.05954438075423241,-0.01806601509451866,-0.009938767179846764,-0.01551241148263216,0.061761487275362015,0.04092619568109512,-0.08688630908727646,0.04420193284749985,0.040332991629838943,0.012334374710917473,0.01603618636727333,0.010552356950938702,-0.04056220129132271,-0.008951284922659397,-0.012545944191515446,0.010152208618819714,0.0284618828445673,-0.06223113834857941,-0.010205181315541267,0.011914188042283058,0.006566907279193401,0.02934294193983078,-0.04584566876292229,0.012265474535524845,-0.04372623562812805,0.027186432853341103,0.020902516320347786,-0.07442319393157959,-0.030843112617731094,0.029308069497346878,-0.01926160231232643,0.048794928938150406,0.025601396337151527,0.01312442310154438,0.011429248377680779,0.008828610181808472,-0.015015929937362671,-0.016694800928235054,-0.011765670031309128,0.015723060816526413,0.030577989295125008,-0.018210023641586304,0.07100310176610947,0.10157442092895508,-0.03080502152442932,-0.02361495979130268,0.09367793053388596,-0.09625593572854996,0.05495218560099602,-0.02998388186097145,0.0897473692893982,-0.0240731593221426,-0.15579892694950104,0.00741472328081727,-0.06921087205410004,0.10255742818117142,-0.18324431777000427,5.551262520866652e-33,0.010837210342288017,-0.006768482271581888,0.04578700289130211,0.11108113825321198,-0.06755051016807556,0.006264702416956425,-0.020946014672517776,0.1552719622850418,-0.04416545853018761,0.0051143718883395195,-0.02299220860004425,-0.03534063696861267,-0.04537605866789818,-0.058876678347587585,0.08944220840930939,-0.05579990893602371,0.018380094319581985,-0.003043628763407469,-0.06325100362300873,-0.056361354887485504,-0.04791681468486786,0.018153011798858643,0.007658070884644985,0.00629589194431901,-0.04262789338827133,-0.04789810627698898,0.07746624201536179,-0.019414713606238365,0.005822622682899237,0.022753747180104256,0.061424415558576584,-0.05924217775464058,-0.0700751394033432,-0.005580906290560961,0.0010071626165881753,0.05526716634631157,0.02460193634033203,-0.07125071436166763,-0.02972085401415825,0.03575896844267845,-0.1036154106259346,0.02254210226237774,-0.04108788073062897,-0.03233485296368599,0.039085134863853455,-0.10387307405471802,0.0533040426671505,0.040467508137226105,0.0546252466738224,-0.011346286162734032,0.014110303483903408,0.013100581243634224,0.013756290078163147,-0.01193386409431696,0.002265870338305831,-0.031032580882310867,0.026106080040335655,0.0032629037741571665,0.05108187347650528,0.010655316524207592,0.06340938061475754,-0.016558866947889328,-0.12873554229736328,0.09074274450540543,0.025827955454587936,0.015013022348284721,-0.02041156403720379,0.008230156265199184,0.06329447031021118,0.0339994914829731,-0.0054010325111448765,-0.045733850449323654,0.03474824130535126,-0.06701558828353882,0.03442174196243286,0.06158217415213585,0.03209685534238815,-0.021552041172981262,-0.07621617615222931,-0.09320168197154999,0.046215929090976715,-0.05713509023189545,0.12176227569580078,0.030397161841392517,-0.002595163881778717,-0.039750851690769196,-0.016762297600507736,0.08786346763372421,0.020217830315232277,0.02568068727850914,0.06351158022880554,0.05410554260015488,-0.020432356745004654,0.015692010521888733,0.02726820483803749,-2.704957147159348e-8,0.0002046972804237157,0.03161301463842392,0.03324543312191963,-0.013165503740310669,-0.045702237635850906,-0.0397934652864933,-0.07272836565971375,-0.0022053816355764866,0.06783343851566315,0.0310317724943161,0.0645810216665268,0.04096902161836624,0.09054233133792877,-0.018346348777413368,0.03272438049316406,0.10576130449771881,-0.03131674975156784,-0.06646700203418732,-0.007624933961778879,-0.06977815926074982,-0.010988119058310986,0.03982435166835785,0.0068714553490281105,0.03422527760267258,0.007092386018484831,-0.020018381997942924,-0.00013398980081547052,0.057919684797525406,-0.013575853779911995,0.036287300288677216,0.0008006386924535036,0.010089730843901634,-0.05920518562197685,-0.052273496985435486,0.004389781039208174,0.04113534837961197,-0.02851339988410473,0.018454162403941154,-0.013431518338620663,0.033165477216243744,-0.063017837703228,-0.04297982156276703,-0.02007470279932022,0.0600411519408226,0.06522056460380554,0.023245887830853462,-0.08204539120197296,0.004840439185500145,-0.037774816155433655,-0.07191779464483261,0.016156526282429695,-0.011007227934896946,0.010611897334456444,0.042143840342760086,0.10998757928609848,-0.032534800469875336,0.03169356286525726,-0.010370939038693905,-0.002830106532201171,0.03056342713534832,0.16739089787006378,-0.014178788289427757,-0.005459817126393318,-0.06610057502985]},{"text":"She suddenly sits down beside him, and adds, with a complete change of manner from the heroic to the familiar_) How did you find me out?","book":"Down and Out in Paris and London","chapter":51,"embedding":[-0.039847180247306824,0.036177244037389755,0.015037676319479942,0.04118598625063896,0.050484977662563324,0.035303905606269836,0.06987018883228302,0.005139322020113468,-0.06261925399303436,-0.038836557418107986,-0.010516546666622162,-0.011688996106386185,-0.062364161014556885,-0.07645390182733536,0.01551811397075653,-0.01696985960006714,-0.036057379096746445,0.004381172358989716,-0.03907570615410805,0.07809460163116455,0.029252851381897926,-0.02407652698457241,0.08620160073041916,0.006283702794462442,0.03178948163986206,-0.027115987613797188,0.0629163458943367,0.021105298772454262,0.06457522511482239,-0.020173100754618645,-0.041539516299963,0.0513070672750473,0.004484296310693026,0.020150767639279366,-0.05466645956039429,0.006684582680463791,-0.0013572010211646557,0.009868810884654522,0.05751197785139084,-0.08896875381469727,-0.011442052200436592,0.0025047333911061287,-0.03142973780632019,-0.0004778093134518713,-0.08896954357624054,-0.04637052118778229,-0.010847593657672405,-0.026578394696116447,0.04035428166389465,-0.027376297861337662,-0.05296960473060608,-0.06523892283439636,-0.14058127999305725,0.009386003948748112,-0.022015083581209183,0.0441705584526062,0.05905648693442345,-0.012658439576625824,0.010274154134094715,0.03278954327106476,0.031248249113559723,-0.03516297787427902,0.015265952795743942,0.07721009105443954,-0.023403655737638474,-0.0015951896784827113,-0.025602353736758232,0.009100496768951416,-0.0182522963732481,0.00794554129242897,0.018111810088157654,0.036291658878326416,-0.02073575370013714,-0.15144075453281403,-0.06761162728071213,-0.0856432095170021,0.06719301640987396,-0.05666988343000412,0.027754876762628555,0.008757667616009712,-0.029224425554275513,0.06028725206851959,-0.008023305796086788,0.1417102813720703,0.04204978048801422,0.037151679396629333,0.014876578003168106,-0.0645093321800232,-0.029095398262143135,-0.030435938388109207,-0.04971762374043465,-0.05381852760910988,-0.07642839848995209,0.0032740614842623472,-0.009287435561418533,0.0550115630030632,-0.0378214567899704,0.007476414553821087,0.025987083092331886,0.026147229596972466,0.03125714883208275,0.06442920863628387,-0.010990473441779613,-0.0002561494766268879,-0.042026735842227936,0.06674175709486008,-0.03756848722696304,-0.027906633913517,0.012221514247357845,-0.0047513581812381744,0.017965203151106834,-0.09234871715307236,-0.03726371005177498,0.013623662292957306,-0.03842310607433319,0.041391145437955856,-0.00759147061035037,-0.04856450855731964,-0.08664130419492722,0.045678749680519104,0.09170947223901749,0.04996662214398384,-0.016609713435173035,0.0471472404897213,-0.08383438736200333,0.06824055314064026,0.03772461786866188,-4.069953763786346e-33,0.06700241565704346,0.05798071622848511,-0.0074460976757109165,0.03524501249194145,0.05299583822488785,0.0606762133538723,-0.09043411910533905,0.06197366490960121,-0.05725151300430298,0.018239455297589302,-0.02523406594991684,-0.019237345084547997,0.00897615309804678,0.06735160946846008,-0.12518711388111115,-0.036436282098293304,0.04576817527413368,0.010226797312498093,0.036123886704444885,0.07240834087133408,0.05406114086508751,0.06982769072055817,-0.0111542372033,-0.10955774784088135,0.013651416637003422,0.01304819155484438,0.007911463268101215,0.024863796308636665,0.08366531878709793,0.02234799414873123,-0.04193534329533577,0.041393961757421494,0.006692634895443916,0.03052096627652645,0.05192006379365921,0.07092597335577011,-0.01692444086074829,0.0034652594476938248,-0.017305409535765648,-0.01090422086417675,-0.014116449281573296,0.026709983125329018,-0.03169926255941391,-0.035894572734832764,-0.18100489675998688,-0.04251488670706749,0.012485479936003685,0.021040158346295357,-0.025023672729730606,0.009506055153906345,-0.09278418868780136,0.01180721540004015,-0.021023010835051537,0.048605553805828094,-0.017021581530570984,-0.0017579183913767338,0.01491199154406786,-0.024259785190224648,0.0886998325586319,0.02581683360040188,0.09232158958911896,-0.008276949636638165,0.04169781878590584,0.06795268505811691,0.020748160779476166,-0.053446847945451736,-0.062134094536304474,-0.05945872515439987,0.10812146216630936,-0.020090676844120026,-0.04075388237833977,0.04393197223544121,-0.04437962919473648,0.07963842898607254,-0.027107035741209984,0.0009292718605138361,-0.054694656282663345,-0.007863182574510574,0.004934699274599552,-0.07756423205137253,0.03906841203570366,-0.008842594921588898,-0.054378386586904526,0.1016906350851059,-0.048444025218486786,-0.04489026218652725,0.012634359300136566,-0.06274912506341934,-0.10004917532205582,-0.0036799844820052385,-0.01909329555928707,0.023444311693310738,0.018752887845039368,-0.049938980489969254,-0.0422978550195694,5.035895859094414e-34,0.06606593728065491,0.018198249861598015,-0.0033627599477767944,-0.04859893023967743,0.0033598183654248714,-0.07937349379062653,-0.04995960369706154,-0.03358396142721176,0.027562875300645828,-0.039684999734163284,0.03927632048726082,-0.04225468263030052,-0.01225331425666809,-0.04115142673254013,0.07257949560880661,0.047942209988832474,-0.036241449415683746,0.014319299720227718,0.0789869949221611,0.03571443632245064,0.024334298446774483,-0.06772066652774811,0.06844698637723923,-0.0751875787973404,0.021243412047624588,0.00772517267614603,0.10021055489778519,0.028505390509963036,-0.11090892553329468,-0.049414318054914474,-0.04510943219065666,-0.07526678591966629,-0.06440450251102448,0.06710154563188553,-0.021432600915431976,0.1127966120839119,-0.006112358067184687,-0.04327657073736191,-0.013744406402111053,-0.08169462531805038,0.058364395052194595,0.004253352992236614,-0.0020849700085818768,0.052520234137773514,0.01846923492848873,0.0338968001306057,0.007457259111106396,0.10443487763404846,0.06620452553033829,0.03186479210853577,0.08058657497167587,-0.07393725961446762,0.0007370697567239404,-0.0013489269185811281,0.003920037765055895,0.06883250921964645,0.03704112023115158,-0.026220491155982018,0.001980452099815011,-0.045118194073438644,0.06038457155227661,0.010103657841682434,-0.08880292624235153,0.020370114594697952,-0.01126466691493988,0.02902994491159916,-0.054180044680833817,-0.04918920621275902,-0.06920526921749115,-0.007813196629285812,-0.011239942163228989,-0.02938857302069664,-0.04570051655173302,-0.10873844474554062,0.03573533520102501,0.018132058903574944,-0.03125758469104767,-0.14414341747760773,0.024249570444226265,-0.12442313879728317,-0.07522192597389221,-0.0799364447593689,0.03490243852138519,-0.0906151756644249,0.02611268125474453,0.06878072023391724,-0.023950742557644844,0.1301819533109665,0.014253290370106697,-0.0020141361746937037,-0.032179608941078186,0.05104060098528862,0.05052230879664421,-0.080794557929039,-0.053804684430360794,-2.6116321549807253e-8,-0.011611223220825195,-0.059457384049892426,-0.014822786673903465,-0.07436402887105942,0.0306999608874321,0.023019269108772278,0.025076288729906082,0.03291084244847298,-0.07222717255353928,-0.06109223887324333,-0.028734298422932625,0.0663926973938942,0.09339817613363266,-0.04506412893533707,-0.006863183341920376,0.06691411137580872,-0.05705158784985542,0.002916872501373291,-0.057171400636434555,0.0026078077498823404,0.047535158693790436,0.020200734958052635,0.02169136516749859,0.023510998114943504,-0.0658225566148758,0.07364653050899506,-0.00655793072655797,0.0233626626431942,0.018062632530927658,0.0256782379001379,0.08611144870519638,0.02931326813995838,-0.03728656470775604,-0.055688805878162384,0.0220172218978405,0.03881416097283363,0.10491159558296204,0.018048543483018875,0.02105877548456192,-0.02637171931564808,0.036408595740795135,-0.05028276890516281,-0.016272911801934242,0.03313789516687393,0.060540445148944855,0.03261297568678856,0.1038244217634201,-0.06713692098855972,0.017116552218794823,-0.020033420994877815,0.021487094461917877,-0.0005640782183036208,0.05002591013908386,-0.018009832128882408,-0.05179574340581894,-0.05640660598874092,0.04074594005942345,0.06230493262410164,-0.03007572703063488,0.04722783714532852,0.013766158372163773,0.006283487193286419,-0.0196157768368721,0.0024960541632026434]},{"text":"I did it when I was a tiny child to my nurse.","book":"Down and Out in Paris and London","chapter":51,"embedding":[0.025706550106406212,0.046447962522506714,-0.036327559500932693,0.06100744754076004,-0.035447265952825546,-0.044202644377946854,0.023997565731406212,0.038162704557180405,-0.03219272196292877,0.01895967125892639,-0.0006761210970580578,0.09721103310585022,-0.03783753141760826,0.11929410696029663,-0.06030210107564926,-0.016736332327127457,-0.013899818994104862,0.051562342792749405,-0.008248616009950638,0.003978344611823559,-0.008952129632234573,0.007035254035145044,-0.01056074071675539,-0.021198725327849388,0.08127245306968689,0.015591145493090153,-0.02745215594768524,-0.007518212776631117,0.009312489069998264,0.029608462005853653,-0.05249297618865967,-0.056135717779397964,0.011770538054406643,-0.021203935146331787,-0.07533304393291473,0.017836570739746094,0.040891341865062714,0.057868096977472305,-0.02158311940729618,-0.008129213936626911,0.10620355606079102,-0.009986810386180878,0.015206904150545597,-0.019962377846240997,0.03476931154727936,-0.02023932710289955,0.0430167093873024,0.01520467083901167,0.054915495216846466,-0.014696354977786541,0.002124713035300374,-0.08905218541622162,-0.035502661019563675,0.013495051302015781,-0.03829273581504822,-0.048836320638656616,0.028543001040816307,-0.008446543477475643,-0.02672218158841133,0.053844988346099854,-0.10133274644613266,0.04138795658946037,0.04915788024663925,0.011010787449777126,0.007277112454175949,0.06356392055749893,0.01893911138176918,-0.025799576193094254,0.08951575309038162,0.012308242730796337,-0.00961261335760355,-0.02569577284157276,0.048917077481746674,0.10068508982658386,-0.020040443167090416,-0.0042994157411158085,0.06571643799543381,-0.05664433166384697,-0.01450846903026104,0.039118096232414246,-0.13209712505340576,0.02405177243053913,0.026865843683481216,0.022601740434765816,-0.04017767682671547,0.039429787546396255,0.058421164751052856,-0.020732488483190536,0.028007371351122856,-0.055537108331918716,0.07095549255609512,0.0582902729511261,-0.01780954748392105,0.036510974168777466,-0.02295009419322014,-0.10573165863752365,-0.09242184460163116,-0.01427195779979229,-0.053468476980924606,0.0025170776061713696,0.017179792746901512,0.013731383718550205,0.0370023138821125,0.09844169020652771,0.005582976620644331,-0.058932721614837646,-0.006381107959896326,-0.10429162532091141,-0.04785604774951935,-0.042643025517463684,-0.04888997599482536,0.08198868483304977,0.08817865699529648,0.031201906502246857,-0.062041059136390686,0.0007218995015136898,-0.008866834454238415,-0.04300174489617348,-0.003770496929064393,0.04169538989663124,-0.0031747142784297466,0.05767877399921417,-0.09116414189338684,-0.04457647353410721,-0.007939495146274567,-0.05428348109126091,0.050743378698825836,-7.727212766834096e-33,-0.0027650524862110615,0.04622793570160866,0.08648337423801422,0.08477267622947693,0.04399324953556061,0.0492173470556736,-0.04572892189025879,-0.025224212557077408,0.026611343026161194,0.038512468338012695,0.09282997995615005,-0.0327664315700531,0.03943324089050293,-0.06195241957902908,-0.04224945232272148,0.046006254851818085,-0.08069038391113281,0.04340798035264015,0.0016906391829252243,0.10401357710361481,-0.034798555076122284,-0.045591454952955246,-0.03794146701693535,0.10946329683065414,0.011075589805841446,0.0649109035730362,-0.05483515188097954,-0.04924406483769417,0.13183476030826569,0.020160671323537827,0.029133740812540054,-0.05166074261069298,-0.04196690395474434,-0.08401455730199814,-0.10223741829395294,-0.032012153416872025,0.07866129279136658,-0.01256435364484787,-0.020013656467199326,0.000810993486084044,-0.012961963191628456,0.007769136223942041,0.08883244544267654,0.013080376200377941,0.032149285078048706,-0.005539224948734045,0.021535709500312805,-0.003921461291611195,-0.023296935483813286,-0.0753786563873291,0.019013646990060806,-0.03461519628763199,-0.01213008351624012,-0.11363562941551208,0.038697633892297745,0.01693648472428322,0.03965961933135986,-0.07871139049530029,-0.03963393718004227,0.02157442644238472,-0.01895817182958126,-0.031342823058366776,-0.011771336197853088,0.034661777317523956,-0.058761805295944214,-0.039732854813337326,-0.026160040870308876,0.029574397951364517,0.08021490275859833,-0.10601651668548584,-0.05272288620471954,0.004183633718639612,-0.0896012932062149,-0.08792150765657425,-0.008695144206285477,-0.011797613464295864,0.07553890347480774,-0.02695515938103199,-0.027723677456378937,-0.13599346578121185,0.1381647139787674,0.0013678210088983178,-0.037180397659540176,0.07400528341531754,0.047765180468559265,-0.057809922844171524,-0.0917624831199646,0.005276595242321491,-0.05363897606730461,0.017612500116229057,-0.03120953030884266,0.003897631075233221,0.07665684074163437,-0.06570226699113846,-0.05935252830386162,4.841865639140818e-33,-0.013435546308755875,0.013884304091334343,-0.024198971688747406,0.01139670517295599,-0.010118118487298489,-0.1002231240272522,0.007313075475394726,0.029796721413731575,-0.009318413212895393,0.0938449278473854,-0.005524840671569109,-0.03399267792701721,0.04112881049513817,-0.0682312548160553,-0.020547254011034966,0.019360825419425964,-0.02002228982746601,0.05774466693401337,-0.009657904505729675,-0.044315237551927567,-0.021732432767748833,-0.019769521430134773,0.022721944376826286,0.054759085178375244,0.02175573632121086,0.02235683612525463,0.0400143601000309,-0.009094426408410072,-0.0386984683573246,-0.016406936571002007,-0.028083274140954018,0.030375534668564796,-0.04030749574303627,-0.08640627562999725,-0.06636091321706772,0.004365590866655111,-0.047760944813489914,-0.011447806842625141,-0.0055716573260724545,-0.10999030619859695,0.04115598276257515,-0.048429328948259354,0.004415734671056271,0.08855118602514267,-0.034051742404699326,-0.035602301359176636,0.02341373823583126,-0.035099390894174576,-0.02443327009677887,0.0430290512740612,-0.07253171503543854,0.01549534872174263,-0.026248527690768242,-0.08628979325294495,-0.02404765412211418,0.012445997446775436,0.10524646192789078,-0.029419176280498505,0.02458670735359192,0.0304800383746624,0.006407536566257477,0.0037646556738764048,-0.10560343414545059,0.0025380700826644897,-0.019691050052642822,0.012645541690289974,-0.025165557861328125,0.03636020049452782,-0.0386580228805542,-0.0040029739029705524,0.04426094517111778,0.08638039976358414,0.0550818108022213,0.04690113663673401,-0.0465632900595665,-0.09175747632980347,0.013570641167461872,-0.015825321897864342,-0.04477546364068985,0.0033209561370313168,-0.08104531466960907,-0.06476445496082306,0.07048554718494415,0.02197304181754589,0.005749767646193504,-0.04651487618684769,0.04808317869901657,0.007466239854693413,-0.09108197689056396,0.008913152851164341,-0.03731195256114006,0.01698368415236473,0.045084696263074875,-0.04859091714024544,0.05264265090227127,-2.040171587225359e-8,-0.02501199021935463,0.07271870225667953,0.11253617703914642,0.045548371970653534,-0.012574372813105583,-0.016452381387352943,-0.005671269726008177,0.03932313621044159,-0.010942013002932072,0.021870164200663567,-0.05794388800859451,0.04887004941701889,0.047102510929107666,0.05803874880075455,0.17140910029411316,-0.026797300204634666,0.09888901561498642,-0.06843803077936172,-0.02132086269557476,0.006366635672748089,-0.049359213560819626,0.03834987431764603,-0.020365536212921143,0.03845546022057533,0.013738919980823994,-0.05637551099061966,0.013332162983715534,0.09564793109893799,-0.05507548525929451,-0.01949925720691681,0.08986112475395203,0.02382569946348667,-0.019612977281212807,0.08550690859556198,-0.09837770462036133,-0.038863539695739746,0.07304013520479202,-0.0050931996665894985,0.0531454011797905,-0.06570933759212494,-0.029546957463026047,0.03390481323003769,0.02988663874566555,0.032176680862903595,-0.016967229545116425,0.05504756420850754,0.01900000497698784,-0.005918294191360474,0.04920048266649246,0.07378184795379639,0.05799834802746773,-0.051541589200496674,0.05867452919483185,0.02951352298259735,0.03824238106608391,0.054773855954408646,0.006345338653773069,-0.06652677059173584,-0.03199378028512001,0.044749192893505096,0.009302557446062565,0.07171845436096191,-0.05746403709053993,-0.02805890329182148]},{"text":"If I thought that—! (_Discouraged._) Ah, well, what does it matter?","book":"Down and Out in Paris and London","chapter":52,"embedding":[-0.009164324030280113,-0.034350354224443436,-0.038084726780653,-0.021614324301481247,0.012994225136935711,-0.035302020609378815,0.0598064586520195,-0.06324908882379532,0.045688655227422714,-0.001266192994080484,0.013682844117283821,0.07185225188732147,-0.012692352756857872,0.008185923099517822,0.057329289615154266,-0.07651490718126297,-0.007830689661204815,-0.008734425529837608,-0.0410824678838253,0.06850165128707886,0.014434218406677246,0.016487129032611847,-0.0027400716207921505,-0.003243041457608342,-0.02620707079768181,0.04265887290239334,-0.051028989255428314,0.04451479762792587,-0.028455747291445732,0.02320566028356552,-0.0463264063000679,0.11021958291530609,-0.018754862248897552,-0.01364928763359785,-0.05164897441864014,0.05631255730986595,0.051762115210294724,-0.01070154458284378,0.0544799342751503,-0.054977335035800934,0.0017239907756447792,0.008716435171663761,0.04975471645593643,0.06111463904380798,0.016390295699238777,0.006441542413085699,-0.013895362615585327,-0.06893844902515411,-0.09122437238693237,-0.02242201380431652,-0.03827527165412903,0.04089169576764107,-0.034687742590904236,0.04675878584384918,0.01328928954899311,0.018002832308411598,-0.059002943336963654,-0.053625352680683136,-0.01950489543378353,0.07668426632881165,-0.009439513087272644,0.020853932946920395,-0.0717717781662941,0.14145302772521973,0.07817468792200089,-0.07859289646148682,-0.02667963318526745,0.008568855002522469,-0.06327702850103378,0.06012019142508507,0.02347755990922451,0.013069044798612595,-0.01574847102165222,0.07109656929969788,-0.01097006443887949,-0.014249117113649845,0.07354900240898132,0.019607719033956528,0.009640085510909557,0.06772086769342422,-0.009054246358573437,0.05770184099674225,0.022873517125844955,0.04451621696352959,0.02828400768339634,0.019065210595726967,-0.008940703235566616,-0.08488573133945465,-0.13305796682834625,-0.020221972838044167,-0.04021696001291275,-0.09050755947828293,0.09158401936292648,0.06532219797372818,-0.026869719848036766,0.07961632311344147,-0.03252800554037094,0.030249837785959244,-0.13401396572589874,0.009354284964501858,-0.006972876377403736,0.011079222895205021,0.01673855260014534,0.029290642589330673,-0.037650059908628464,-0.03300505131483078,-0.030694037675857544,0.05234915390610695,0.015601676888763905,-0.0348704494535923,-0.034005165100097656,-0.04159209877252579,0.058692432940006256,0.016487712040543556,-0.02800099365413189,0.09030641615390778,-0.028819993138313293,0.005989720579236746,0.0551435612142086,0.10077634453773499,-0.0772290751338005,0.042668573558330536,0.05143408477306366,0.021586792543530464,-0.021111642941832542,-0.07600277662277222,-0.021403204649686813,-7.773132718965e-33,0.006931678857654333,0.021618638187646866,0.013065259903669357,0.0090457359328866,-0.029654130339622498,0.015553215518593788,-0.12051218748092651,-0.0006468978826887906,-0.0024898976553231478,-0.00038054201286286116,-0.0037875825073570013,-0.024461954832077026,-0.006386321969330311,0.03481703996658325,0.042642444372177124,0.07337118685245514,-0.04741509258747101,0.031124938279390335,-0.01175191905349493,-0.060785502195358276,0.004788615740835667,0.03145681694149971,-0.0011485145660117269,-0.029635963961482048,-0.07072943449020386,-0.03654778003692627,0.0377923920750618,-0.03626714646816254,0.014630564488470554,0.04515445604920387,-0.07207845151424408,0.04141969606280327,0.03501453623175621,-0.045233335345983505,0.0528506338596344,0.11290696263313293,-0.04139542207121849,-0.06680922210216522,0.001774002448655665,-0.029678910970687866,-0.02503320574760437,0.04487796500325203,-0.014389939606189728,-0.014049908146262169,-0.015741752460598946,0.004506419412791729,0.09751614928245544,-0.04189221188426018,-0.05048647150397301,0.038342464715242386,0.018213380128145218,-0.0028362281154841185,0.11665157973766327,0.03100789710879326,0.014738806523382664,0.005400099791586399,0.06616279482841492,0.06951805204153061,-0.003410126781091094,0.05775195732712746,-0.07831023633480072,-0.010598497465252876,0.11718308925628662,0.03829226642847061,-0.0564059279859066,0.13108454644680023,-0.045641615986824036,0.04028027877211571,-0.03111214190721512,-0.019817231222987175,0.007967224344611168,0.007796842604875565,-0.030315807089209557,-0.012274661101400852,-0.06811295449733734,-0.03702770173549652,-0.04524753615260124,-0.016389785334467888,0.08818382769823074,-0.08547955006361008,-0.01356198638677597,0.04439135268330574,-0.08187586814165115,0.014950268901884556,0.012155462987720966,-0.05703651160001755,0.07936323434114456,0.0012743440456688404,0.015049395151436329,-0.023738374933600426,0.050829049199819565,0.015960190445184708,-0.028585610911250114,-0.05904199555516243,-0.1649654656648636,2.8240019346147017e-33,-0.049694959074258804,-0.0642048716545105,-0.026280833408236504,-0.0016847122460603714,-0.0186303723603487,-0.01524312887340784,0.06088623031973839,-0.08557023853063583,0.002047354355454445,-0.0027837809175252914,0.030216602608561516,-0.02016162872314453,-0.048412762582302094,-0.03383657708764076,0.06459464877843857,-0.04567977413535118,-0.07058674097061157,-0.026104383170604706,-0.03825385868549347,-0.009774553589522839,-0.012911750935018063,-0.027867645025253296,-0.08238550275564194,0.005187304224818945,0.006505060475319624,0.06752674281597137,0.04691426828503609,-0.03982957452535629,0.004080072045326233,-0.047397587448358536,0.013493052683770657,0.00021545188792515546,-0.15415315330028534,-0.07012121379375458,0.002491401042789221,-0.016045911237597466,-0.030543886125087738,-0.023200225085020065,-0.0015927513595670462,-0.00935101043432951,-0.02057252824306488,0.015204641968011856,0.05129241570830345,0.16291634738445282,-0.049348603934049606,-0.0006677612545900047,0.07688555866479874,0.058771297335624695,0.011481323279440403,0.018005240708589554,-0.06559702008962631,-0.04919969290494919,-0.0018385878065600991,-0.07259055227041245,-0.01702568307518959,0.016943268477916718,-0.023153014481067657,-0.01312332134693861,-0.038178782910108566,0.04670116305351257,0.06879375129938126,-0.05688140168786049,0.0366571806371212,-0.03721679374575615,-0.05002789944410324,-0.023524099960923195,0.002612571930512786,0.07443613559007645,0.05269607901573181,0.002057779813185334,0.15653689205646515,-0.006954008247703314,-0.0945993959903717,0.024718064814805984,-0.09737128019332886,0.024742625653743744,0.13972708582878113,-0.02805415727198124,0.02299308404326439,-0.012615855783224106,-0.11924969404935837,-0.036022718995809555,0.013017474673688412,-0.037434596568346024,-0.015308823436498642,-0.07167127728462219,-0.06701294332742691,0.00012086315109627321,-0.006639293860644102,0.006940331310033798,-0.09216482937335968,0.06232498958706856,0.08415961265563965,-0.025727316737174988,0.05991530418395996,-3.790826497152011e-8,-0.02350001037120819,0.025786932557821274,0.025317737832665443,-0.004837093874812126,-0.012769578956067562,-0.01187220960855484,0.013915269635617733,-0.11228924989700317,-0.034165702760219574,0.0360044501721859,0.04179941490292549,-0.0496252067387104,-0.0023719999007880688,0.005338066723197699,0.0647168904542923,0.016634276136755943,0.11491064727306366,0.01099257543683052,-0.09204240888357162,0.03945073112845421,-0.045460592955350876,0.027876393869519234,-0.039778340607881546,0.028773510828614235,-0.03581811860203743,0.008441301062703133,0.058056849986314774,0.0704168900847435,-0.005214445758610964,-0.06124335899949074,0.03578382357954979,0.016926635056734085,-0.05980341508984566,0.06064895913004875,-0.09659132361412048,-0.02204843796789646,-0.0489000640809536,0.02573634311556816,-0.021016621962189674,-0.013452199287712574,0.016590222716331482,-0.07853775471448898,0.027705425396561623,0.10792843252420425,0.02087780274450779,0.01773170568048954,0.004151876084506512,0.017117593437433243,-0.05860091745853424,-0.031324777752161026,0.00813501700758934,0.013130920007824898,0.0008387985872104764,0.009691155515611172,0.07939416915178299,0.02730272337794304,-0.019655775278806686,-0.0019215003121644258,-0.08314383029937744,0.05270802974700928,0.08939631283283234,-0.0744507908821106,0.0595436729490757,0.04127919673919678]},{"text":"But what did you think of me for giving you my portrait?","book":"Down and Out in Paris and London","chapter":52,"embedding":[-0.0464719720184803,0.14386820793151855,0.013338149525225163,-0.05409365892410278,0.061519671231508255,-0.05484496429562569,0.07868902385234833,-0.01344761997461319,0.004964732564985752,-0.0411626435816288,-0.029399216175079346,-0.02160635218024254,0.014176052995026112,-0.0054541174322366714,-0.005538788624107838,-0.01144657377153635,0.046787019819021225,-0.0598684661090374,-0.05267908796668053,0.10081333667039871,-0.06646830588579178,0.10344091802835464,0.028024764731526375,-0.04870450869202614,-0.07224091142416,0.02335054613649845,-0.027916448190808296,-0.025768281891942024,-0.018036842346191406,-0.014629404060542583,-0.006716775707900524,-0.002260732464492321,-0.015383307822048664,0.03885440528392792,-0.01786700263619423,-0.0009599010809324682,-0.009286981076002121,0.003668723162263632,0.010494873858988285,-0.010470652021467686,-0.06189243867993355,-0.02854488044977188,0.036793727427721024,0.05170203372836113,0.07515377551317215,-0.042223963886499405,-0.008247754536569118,0.0294206365942955,0.06940072029829025,-0.030607113614678383,0.015068624168634415,-0.05867695063352585,-0.010177417658269405,-0.045903656631708145,-0.0018130568787455559,0.018384557217359543,0.07296696305274963,0.02324828878045082,0.023973707109689713,0.03804462030529976,-0.03283190354704857,-0.0016471910057589412,-0.033737681806087494,0.03638489544391632,0.010646242648363113,-0.07620841264724731,-0.04338637366890907,-0.046582065522670746,-0.07504995912313461,0.025892332196235657,0.017484940588474274,0.02845248021185398,-0.01985861174762249,-0.01691732555627823,-0.02642240561544895,-0.1363610327243805,0.02102014794945717,-0.05990484356880188,0.0020599979907274246,0.025752944871783257,0.04858541488647461,-0.009106460958719254,-0.027572784572839737,0.0608367919921875,-0.025291811674833298,-0.056742094457149506,0.00008975149830803275,-0.061292864382267,-0.09764719009399414,-0.014661089517176151,-0.02182205393910408,0.06911399960517883,0.009515923447906971,-0.059584926813840866,0.003077511675655842,0.007125431206077337,-0.06720767915248871,0.010818343609571457,-0.02812134474515915,0.0876864567399025,0.08105678111314774,-0.03813666105270386,0.021533893421292305,0.02147762104868889,0.06758106499910355,-0.0008192922105081379,-0.06552854925394058,-0.04424384981393814,-0.019834380596876144,-0.0398680679500103,0.034013692289590836,0.014403186738491058,-0.09993433207273483,0.013669314794242382,0.05993925407528877,-0.03335316851735115,0.0022897289600223303,-0.023527411743998528,0.01132778637111187,-0.04485776275396347,0.014145881868898869,0.02831312268972397,-0.06156511232256889,0.038691990077495575,-0.14597541093826294,-0.1246228814125061,0.05239980295300484,-6.281877075624829e-33,-0.027702653780579567,0.0586056150496006,0.03800250217318535,0.10441207140684128,0.0877225324511528,0.04291514679789543,-0.0462668240070343,0.06207463890314102,-0.07481110841035843,-0.006273525767028332,0.06935594975948334,0.006425841245800257,0.034175071865320206,0.11861704289913177,-0.07854382693767548,0.10759110003709793,0.032912928611040115,-0.04114973917603493,0.08097878843545914,0.06728106737136841,-0.02693932130932808,-0.07745968550443649,-0.0058785914443433285,-0.03502378612756729,-0.07020951807498932,-0.00833000149577856,0.0035378627944737673,-0.07230599969625473,0.036384932696819305,0.003191004041582346,-0.04642879590392113,0.049376294016838074,0.05682048574090004,-0.06352867931127548,0.020804928615689278,0.021400704979896545,0.01876075379550457,-0.07534081488847733,0.013071384280920029,0.03786883130669594,0.005855466239154339,0.0329173244535923,0.023242663592100143,0.030528713017702103,-0.023128632456064224,0.0713767409324646,0.06386974453926086,0.0645018219947815,-0.07311756908893585,0.015035090036690235,-0.01596115157008171,-0.04295998439192772,-0.02450667880475521,0.05582239851355553,-0.03909935802221298,-0.056157875806093216,-0.021894395351409912,0.04761321470141411,0.012098163366317749,-0.06412135064601898,0.013677719980478287,0.000771551625803113,-0.0426703579723835,-0.05156329646706581,0.004055661149322987,-0.10084021091461182,-0.0269516222178936,0.0056930845603346825,0.049967389553785324,0.00607196195051074,-0.027783824130892754,0.03168730065226555,-0.02268911339342594,-0.021788062527775764,-0.001179530518129468,-0.0010364053305238485,0.0426679290831089,-0.004741373937577009,-0.001188549562357366,-0.015225397422909737,0.06714675575494766,0.08935104310512543,-0.11234971880912781,-0.052130598574876785,0.013469795696437359,-0.036040205508470535,0.060309235006570816,-0.008630356751382351,0.020313018932938576,0.009476820006966591,-0.045980535447597504,0.006874637212604284,0.05492294207215309,-0.07618352025747299,-0.11175162345170975,2.724867720564058e-33,0.05430193990468979,0.04793497547507286,0.013121920637786388,-0.018475912511348724,0.03872695192694664,-0.03944658860564232,-0.010953881777822971,0.07160691171884537,0.049869269132614136,0.07234907895326614,0.041397932916879654,0.026923416182398796,0.0032257188577204943,-0.06812511384487152,0.06744306534528732,-0.0606154166162014,-0.05877280980348587,-0.06442683190107346,-0.09421685338020325,-0.050788745284080505,0.0018048625206574798,0.15198513865470886,0.012957679107785225,-0.016345379874110222,-0.06483263522386551,0.07669275254011154,0.044036608189344406,-0.07446280866861343,0.05555596947669983,0.028239967301487923,0.04754698649048805,-0.09508981555700302,-0.09422794729471207,0.08343792706727982,0.0521760992705822,0.03774016350507736,-0.05039354786276817,-0.04351420700550079,0.016445646062493324,-0.020865440368652344,-0.05779620260000229,0.024104220792651176,-0.01574608124792576,0.04808567836880684,-0.0010401501785963774,-0.12853096425533295,0.03760736808180809,-0.00893388967961073,0.10741683095693588,0.06348436325788498,-0.0709586888551712,0.0266026072204113,0.01003446988761425,0.029798611998558044,-0.06436490267515182,-0.10105790942907333,0.058162838220596313,0.00557772908359766,0.1070237085223198,-0.024162743240594864,-0.0802159309387207,0.02673489786684513,-0.0783904418349266,-0.044836580753326416,-0.00214768061414361,-0.04058222472667694,0.05242331698536873,0.005908118095248938,-0.08676847815513611,-0.006834803614765406,-0.00025618719519115984,0.08629260957241058,0.018085436895489693,0.09245645254850388,0.03722134232521057,-0.010558970272541046,0.10749715566635132,0.04379452019929886,0.012987066991627216,-0.06806642562150955,-0.08807487785816193,-0.052626632153987885,0.004391219932585955,-0.07037825137376785,0.0720379650592804,-0.060680635273456573,0.008260141126811504,-0.04188288003206253,0.008143811486661434,-0.05311407148838043,-0.014329226687550545,0.05793902650475502,0.029020430520176888,0.02395213209092617,0.0569254532456398,-2.003483068335754e-8,0.0002479902177583426,0.007458850275725126,0.026398353278636932,0.013231232762336731,-0.04667815566062927,-0.03126721829175949,-0.04554897919297218,-0.08528776466846466,-0.026355339214205742,-0.03841589391231537,0.03650597855448723,0.012330510653555393,-0.027409572154283524,-0.026529796421527863,-0.03975342586636543,-0.00011263432679697871,0.010310355573892593,-0.009556835517287254,-0.012057656422257423,-0.0201931893825531,0.03613870218396187,0.06682150810956955,-0.062146879732608795,-0.046551112085580826,-0.03273135796189308,0.03520878776907921,0.019726084545254707,-0.006359288468956947,-0.06488350033760071,0.0034482902847230434,0.03321664407849312,0.09296122938394547,-0.03473427891731262,0.010452697984874249,-0.007212164346128702,-0.009896725416183472,-0.10144052654504776,-0.055314335972070694,0.0419781357049942,-0.022368039935827255,0.01570926420390606,0.02329947054386139,-0.012402976863086224,0.034563835710287094,0.004587981384247541,0.030613690614700317,0.07931189239025116,0.014432303607463837,-0.0008677451987750828,0.058074455708265305,-0.02826007641851902,-0.051421284675598145,0.014156486839056015,0.10129915922880173,0.022430675104260445,-0.0044667767360806465,0.04868045449256897,0.022069793194532394,0.029374750331044197,0.03834094479680061,0.0680454820394516,0.029633883386850357,-0.15796434879302979,-0.039690133184194565]},{"text":"It must be there still.","book":"Down and Out in Paris and London","chapter":52,"embedding":[0.002317402046173811,-0.013034855015575886,-0.037573885172605515,-0.009059280157089233,0.13742655515670776,0.001784740248695016,-0.106423519551754,-0.12928907573223114,0.017995158210396767,-0.005689908284693956,0.014320402406156063,0.06254517287015915,-0.014650402590632439,0.0023005164694041014,-0.018533609807491302,0.005360496696084738,-0.005406755022704601,-0.10607919096946716,0.03710875287652016,-0.028185412287712097,-0.022316183894872665,0.09828075021505356,0.013616384007036686,-0.041834283620119095,0.07227068394422531,0.01835821010172367,-0.009319296106696129,0.04292091727256775,-0.04586213082075119,-0.04950057342648506,-0.04170913249254227,0.029852429404854774,0.03553156182169914,-0.007412200793623924,0.03902998939156532,0.008978063240647316,0.07053688913583755,-0.06559896469116211,0.07905206829309464,-0.02417767234146595,-0.018781892955303192,-0.04651900753378868,-0.06329423189163208,0.010624938644468784,0.0030286137480288744,0.047559671103954315,-0.0032232964877039194,-0.036270856857299805,0.07480403035879135,0.022586630657315254,-0.018961234018206596,-0.03542105108499527,-0.004452535882592201,0.03571535274386406,0.031642764806747437,0.02020275965332985,0.12277816981077194,-0.0217442587018013,0.019141003489494324,0.01715482957661152,-0.03769281879067421,0.012992145493626595,-0.06215235963463783,0.042192891240119934,-0.03149649500846863,-0.05399331450462341,0.017313454300165176,-0.09128561615943909,0.0807914212346077,-0.031137047335505486,0.01585140824317932,-0.01731978915631771,-0.02413259446620941,0.01729517988860607,0.01935262605547905,0.023542482405900955,0.05477944761514664,-0.02580769918859005,-0.006675833836197853,0.010510124266147614,-0.05389297008514404,-0.041548021137714386,0.05356477200984955,0.06235518679022789,0.007560921832919121,0.028153836727142334,-0.0061514293774962425,-0.01855085976421833,-0.04494131729006767,-0.00886076595634222,0.014489690773189068,0.04166853055357933,-0.07224725931882858,-0.0010175415081903338,0.034110989421606064,-0.08011762797832489,-0.01109188050031662,0.07433471083641052,-0.022288445383310318,0.06560950726270676,-0.06000615283846855,-0.024460768327116966,-0.006057554855942726,0.012747910805046558,-0.05252603068947792,0.000606242218054831,0.021976197138428688,0.08002452552318573,0.004536749795079231,0.023234155029058456,-0.013380181975662708,0.010975307784974575,0.09058116376399994,0.04452481493353844,0.03847278282046318,0.0482652448117733,0.030144641175866127,0.0461580753326416,-0.011313332244753838,-0.017823126167058945,0.01928892731666565,0.01127233449369669,0.029758509248495102,-0.010833975858986378,-0.0027512747328728437,0.009916587732732296,0.03870327025651932,-7.12955617404552e-33,-0.02514777146279812,-0.038544896990060806,-0.02956385537981987,-0.041575051844120026,0.06419607996940613,-0.0076142847537994385,0.05374477431178093,0.03991370275616646,-0.06113739311695099,-0.11751867830753326,-0.010781700722873211,-0.07287515699863434,-0.07818529009819031,-0.062048375606536865,-0.04053429141640663,-0.021812455728650093,0.02187427692115307,-0.013572254218161106,-0.023774420842528343,-0.03913386911153793,0.014073950238525867,0.08797147125005722,-0.03822115808725357,-0.053555767983198166,-0.05056411027908325,0.14971789717674255,0.057596758008003235,0.03739345073699951,0.04297738894820213,0.020174739882349968,-0.09326788783073425,0.00990920141339302,0.011809137649834156,0.012965047731995583,-0.00311997439712286,-0.023997284471988678,0.04533449932932854,-0.07146589457988739,-0.016065092757344246,-0.022437769919633865,0.05204290896654129,-0.030435742810368538,-0.09197907894849777,0.011446819640696049,0.0013199109816923738,0.01698377914726734,0.10528092086315155,0.06364180892705917,0.0326598659157753,0.07449313998222351,-0.01964430697262287,-0.003612393280491233,0.0427059680223465,-0.09082043915987015,-0.07239449769258499,-0.0017597463447600603,-0.05493546277284622,-0.002369693946093321,0.05063154175877571,-0.009846283122897148,0.042775094509124756,0.08153185248374939,0.04592868685722351,0.014905817806720734,0.08439763635396957,0.006411292590200901,-0.0731956735253334,-0.023311298340559006,-0.0425385981798172,0.027885885909199715,-0.0021839898545295,0.026768704876303673,-0.03331737965345383,0.009735023602843285,-0.027717426419258118,-0.05191429704427719,-0.0676383227109909,-0.0268818698823452,0.003181931795552373,0.0034222370013594627,0.00762066850438714,-0.052857354283332825,-0.013108816929161549,0.05136394500732422,0.08031005412340164,-0.052029263228178024,0.07249251008033752,-0.08808933198451996,-0.009785243310034275,0.044290121644735336,-0.1589028239250183,-0.006586638279259205,0.016474364325404167,-0.00547825125977397,0.0005903776036575437,4.307127381480005e-33,-0.019946405664086342,-0.05977462977170944,-0.07383736222982407,0.021405739709734917,0.02972298115491867,0.04020324721932411,0.04773784056305885,0.0127598587423563,-0.13446545600891113,0.04810657724738121,0.058262791484594345,0.028431931510567665,0.04137622192502022,-0.014604685828089714,0.04908987879753113,0.15235136449337006,0.006281913723796606,0.029577769339084625,-0.01715601049363613,0.004491325933486223,-0.018933599814772606,0.014551554806530476,0.03920552879571915,0.04369710013270378,-0.058818571269512177,0.07116254419088364,0.046302441507577896,-0.07407190650701523,-0.04781400039792061,-0.04963143914937973,-0.02616209164261818,-0.02465190552175045,-0.12408161163330078,-0.01491208653897047,0.04150441288948059,-0.04383145272731781,0.011289880611002445,-0.039317790418863297,-0.09548164159059525,0.005005930550396442,0.004409219138324261,-0.010716244578361511,-0.07846809178590775,0.11237317323684692,0.05515633523464203,0.0014705158537253737,0.07400525361299515,0.0005126898759044707,0.03943420201539993,0.03386630117893219,-0.05143241211771965,-0.0629311203956604,0.003552505047991872,-0.02284066751599312,-0.05204806476831436,0.13765889406204224,-0.04826385900378227,0.04540543630719185,-0.01623573713004589,-0.05221841484308243,0.04528911039233208,0.021957751363515854,-0.0546785444021225,0.004748355131596327,0.13027402758598328,0.02209293097257614,0.04792444780468941,0.04959896579384804,-0.026456302031874657,-0.020579975098371506,-0.037202198058366776,-0.010492685250937939,0.029241524636745453,-0.015674635767936707,-0.0020168479532003403,0.09567747265100479,0.03156808763742447,0.03738784417510033,0.024359343573451042,0.0068768602795898914,0.08193878829479218,-0.007884901016950607,-0.05221085995435715,-0.06032490357756615,0.132889524102211,-0.044008780270814896,0.043996307998895645,0.044954586774110794,0.0034736734814941883,0.0012486532796174288,-0.07914945483207703,-0.0022892956621944904,-0.06697217375040054,0.053144413977861404,-0.02569974772632122,-1.873835309140759e-8,0.05584355816245079,0.09172913432121277,0.002608146285638213,-0.05901220440864563,0.1317862868309021,0.07622267305850983,0.20503947138786316,-0.012813836336135864,0.010443542152643204,0.01297985203564167,-0.0552285872399807,0.004495119210332632,-0.0651201382279396,-0.013883695006370544,-0.03005087375640869,-0.0966956689953804,-0.10456958413124084,-0.10571643710136414,-0.03619234263896942,-0.033817920833826065,-0.061574045568704605,0.01897895336151123,0.02857951447367668,-0.0854501947760582,0.014950986951589584,0.025607556104660034,-0.012155622243881226,0.036907847970724106,-0.04283212125301361,-0.018607156351208687,0.052399661391973495,0.02376752719283104,0.021741636097431183,-0.0612797737121582,-0.002218489535152912,0.03198867663741112,0.01766410656273365,0.03933348134160042,-0.02418254315853119,-0.048769380897283554,0.01306365430355072,-0.02960558794438839,0.0273334551602602,0.032046977430582047,0.09110596030950546,0.0523645393550396,0.061792708933353424,-0.04442767798900604,-0.015597021207213402,-0.06799089163541794,-0.024650467559695244,-0.03018851764500141,0.0012006679316982627,0.04291056841611862,-0.03418975695967674,0.027187583968043327,-0.023065373301506042,-0.03359139710664749,-0.06964423507452011,0.019547725096344948,0.02403530478477478,0.014243912883102894,0.054005805402994156,0.031086459755897522]},{"text":"You wrote something on it.","book":"Down and Out in Paris and London","chapter":52,"embedding":[-0.011599954217672348,0.044726770371198654,0.030781496316194534,-0.0020350320264697075,0.04613203555345535,-0.03517578914761543,0.04470839351415634,-0.006562543101608753,0.01855558156967163,0.03207039833068848,-0.039230916649103165,0.12585684657096863,0.017295030876994133,0.01647736318409443,-0.012293665669858456,0.0012269046856090426,0.019168119877576828,-0.09601740539073944,-0.03737975284457207,-0.015343131497502327,-0.03534673899412155,0.1112469732761383,0.006267140153795481,-0.02094755508005619,-0.01161703560501337,0.053968798369169235,-0.016218634322285652,0.05085187777876854,-0.0727979838848114,0.04141595959663391,-0.06850741803646088,0.029690302908420563,0.05095645412802696,-0.018582865595817566,0.0009621083154343069,0.051640767604112625,-0.04359960928559303,-0.020823568105697632,0.05038393288850784,-0.08270920813083649,0.04909451678395271,-0.06273295730352402,0.0713411271572113,0.05257926136255264,0.04460238292813301,-0.031748998910188675,-0.04118368402123451,-0.02728136256337166,-0.03312607482075691,0.00665518781170249,0.03841725364327431,-0.05701015144586563,0.04124968871474266,-0.07597534358501434,-0.0335632860660553,0.014202098362147808,0.002535367151722312,0.001186317065730691,0.0032563027925789356,-0.07660898566246033,0.05261331796646118,0.032735466957092285,-0.021713552996516228,0.12020032852888107,0.09259866923093796,0.0350513830780983,-0.056751757860183716,0.041390370577573776,-0.10019102692604065,0.01055057905614376,0.06971757858991623,0.07932668924331665,0.0561310350894928,0.08762523531913757,0.011160364374518394,-0.05631270259618759,0.043524064123630524,-0.017652586102485657,0.06021300330758095,0.02942611463367939,-0.05247458070516586,-0.06449469178915024,0.011475903913378716,0.07593925297260284,0.0301145538687706,-0.06296797841787338,0.03972669318318367,0.0070851948112249374,-0.0015005981549620628,0.021329062059521675,0.04958849400281906,-0.046203672885894775,0.07685156166553497,-0.04213469848036766,-0.044359348714351654,-0.056296635419130325,-0.08232404291629791,0.0729653388261795,-0.02952132374048233,0.0320528969168663,0.03091505356132984,0.06285593658685684,-0.04906656593084335,0.11270122230052948,0.0026643406599760056,-0.0302096176892519,-0.05359822139143944,-0.002877298044040799,-0.04057316854596138,-0.07936222851276398,-0.05098336935043335,0.026290597394108772,-0.027758585289120674,0.04856732860207558,0.055833976715803146,-0.026113305240869522,0.033985286951065063,-0.0011719886679202318,0.046604886651039124,0.002610226161777973,0.06197576969861984,-0.009852150455117226,-0.1167801097035408,0.029656097292900085,-0.16389259696006775,-0.08967921137809753,0.03072934038937092,-7.908842807083463e-33,0.07640912383794785,-0.0562189556658268,-0.003821458900347352,-0.014007736928761005,0.11038332432508469,0.005323654506355524,0.021129833534359932,-0.003560967044904828,-0.04242235794663429,-0.0006982804625295103,0.08681667596101761,-0.014945550821721554,0.02912927232682705,0.07385096698999405,0.07695627212524414,-0.06726334989070892,-0.010280396789312363,-0.0834028348326683,-0.007292536087334156,-0.06661026179790497,0.08442578464746475,0.02859475091099739,-0.02526140958070755,-0.06613848358392715,-0.01691984198987484,0.06984221935272217,0.007178389001637697,-0.06778736412525177,-0.022790435701608658,0.03332412615418434,-0.006831595674157143,0.014357401058077812,0.05359482392668724,-0.09806118160486221,-0.06135018169879913,-0.015613420866429806,-0.011745635420084,-0.10148406773805618,-0.0158097967505455,0.052464891225099564,-0.030878352001309395,-0.04750186204910278,-0.017076142132282257,-0.07065529376268387,0.011376594193279743,0.03652117773890495,-0.0018767181318253279,0.02691979520022869,0.033112768083810806,0.0051198359578847885,0.018027953803539276,0.014435197226703167,0.07745736837387085,-0.03639809042215347,-0.00958277191966772,0.024444259703159332,-0.03705146536231041,0.002025252440944314,0.07614830881357193,0.02427041344344616,-0.01392066478729248,0.04221626743674278,-0.0369117334485054,0.015209436416625977,-0.059399597346782684,0.023780126124620438,-0.03161030635237694,-0.014725969173014164,0.08224799484014511,-0.02986362762749195,-0.0711745172739029,-0.021557912230491638,0.00678782444447279,0.0048048063181340694,-0.03138820454478264,-0.02782876044511795,-0.015713617205619812,0.013445300981402397,-0.04470391944050789,0.05839097499847412,-0.003935249522328377,-0.07821439206600189,0.016881944611668587,-0.07087568193674088,-0.04874972254037857,-0.07087242603302002,-0.005870268680155277,-0.022544339299201965,-0.0214082058519125,-0.07925374060869217,-0.02533014677464962,-0.007871848531067371,0.010540399700403214,-0.09622330963611603,-0.09110213071107864,4.511328382633099e-33,-0.10102374106645584,-0.027840834110975266,-0.00013171926548238844,0.025589223951101303,0.004167556297034025,-0.03369831666350365,-0.06134560704231262,0.007153553422540426,-0.036825843155384064,0.0914425328373909,0.0024387293960899115,-0.04480074346065521,-0.0481884703040123,0.04042470455169678,0.08916368335485458,-0.06722767651081085,-0.02480674348771572,0.028533803299069405,-0.022687984630465508,-0.0026139169931411743,-0.08474858105182648,0.026540609076619148,0.016619380563497543,0.08415492624044418,0.07143489271402359,0.07147035747766495,0.11844588071107864,-0.005125666968524456,-0.06211460754275322,-0.014648658223450184,-0.004696824122220278,-0.029275421053171158,-0.10566266626119614,0.02393396757543087,0.025387102738022804,0.031342681497335434,-0.022866347804665565,-0.09599114954471588,-0.09791772067546844,-0.036021508276462555,0.05954330787062645,-0.05359852686524391,-0.06359938532114029,0.03531598672270775,-0.019215969368815422,0.0009848036570474505,-0.03474808856844902,0.02744460292160511,0.11110436916351318,0.045105941593647,0.07878648489713669,-0.01960587315261364,0.053108975291252136,0.027944190427660942,-0.0116958636790514,0.0022246402222663164,0.029066182672977448,-0.05977899581193924,0.08087767660617828,-0.04451581463217735,-0.03667881339788437,0.06399278342723846,-0.04836268723011017,0.0004219684633426368,0.06751542538404465,-0.09241265803575516,-0.05562009662389755,-0.026271773502230644,0.03175335377454758,0.012345343828201294,0.034996312111616135,0.004637881647795439,0.024944521486759186,-0.042172472923994064,0.06369799375534058,-0.01521998830139637,0.023110901936888695,0.009285680018365383,-0.07923639565706253,0.0008125883177854121,0.05671362578868866,-0.05563995987176895,-0.03974958136677742,0.05939014256000519,0.1198432520031929,0.034604545682668686,0.006448180880397558,-0.0075097521767020226,0.01798989437520504,0.0518203005194664,-0.009156476706266403,0.038578957319259644,0.006371351890265942,-0.001120144734159112,-0.00602817302569747,-2.050357572613848e-8,-0.03622211888432503,0.08946439623832703,0.08442618697881699,0.04996176436543465,0.004717216826975346,0.04934772476553917,0.0915493443608284,-0.09048067033290863,-0.05331041291356087,-0.010055122897028923,0.0368388332426548,-0.008549442514777184,-0.0909111425280571,0.010639501735568047,0.10101651400327682,-0.019767343997955322,-0.003794533433392644,-0.007182703819125891,-0.03443294018507004,-0.0073749045841395855,0.011938290670514107,0.06513858586549759,-0.066728375852108,-0.0846206471323967,-0.018431976437568665,-0.004122796934098005,-0.0028417925350368023,0.020704034715890884,-0.05839133262634277,0.03600497171282768,0.05870981886982918,0.02741391211748123,-0.011381261982023716,0.008635473437607288,0.015645518898963928,-0.003801059676334262,0.05182833597064018,-0.03275294229388237,0.04637952148914337,0.009898442775011063,0.029334787279367447,0.12215838581323624,0.06632627546787262,0.057869140058755875,0.08634074777364731,-0.03660568967461586,-0.08978260308504105,-0.06170184910297394,0.029639577493071556,0.022711563855409622,0.012208829633891582,0.047677308320999146,0.07545925676822662,0.05195813626050949,0.06498517096042633,-0.0818922147154808,0.04585300385951996,0.055939801037311554,-0.03393438830971718,-0.06442344933748245,0.03722715005278587,0.0332123301923275,-0.05055955797433853,-0.02560843713581562]},{"text":"What did you do with it?","book":"Down and Out in Paris and London","chapter":53,"embedding":[-0.005306127481162548,0.13663800060749054,0.042675603181123734,0.04788728430867195,0.06778541207313538,-0.06602255254983902,0.052462417632341385,0.00809765700250864,-0.01610061712563038,-0.013677726499736309,0.0531592071056366,0.10211974382400513,-0.019804690033197403,0.0563947968184948,-0.006364636123180389,0.007194245234131813,-0.11831217259168625,-0.0538618266582489,-0.004486409481614828,-0.046140581369400024,-0.16012683510780334,0.024180224165320396,0.016480758786201477,0.007466149050742388,0.008512040600180626,0.1303507387638092,0.016379959881305695,0.08014721423387527,-0.08682789653539658,-0.11307614296674728,-0.03403915837407112,0.010496371425688267,0.030186159536242485,-0.010319468565285206,-0.060721661895513535,-0.01929488778114319,0.04692239314317703,-0.05302324518561363,0.07430445402860641,-0.044637951999902725,0.06951149553060532,-0.008342386223375797,0.02012726105749607,-0.02231086604297161,0.0845491886138916,-0.013640914112329483,0.060266267508268356,-0.03578771650791168,0.09199712425470352,-0.019771944731473923,0.06449136137962341,-0.10465791821479797,0.014318471774458885,-0.006400617305189371,-0.02363969199359417,-0.027867205440998077,0.0109767010435462,0.05665786936879158,0.02721421606838703,-0.04303879663348198,0.0465068556368351,-0.0031367449555546045,0.008990493603050709,0.08743865042924881,-0.0009561876649968326,-0.02578010968863964,-0.07534477114677429,-0.055839281529188156,0.061184320598840714,0.029527634382247925,0.02369600720703602,0.0052889673970639706,0.017858225852251053,0.06271132081747055,-0.06472080200910568,-0.029214637354016304,0.0777023509144783,-0.09904848039150238,0.08175845444202423,0.029285065829753876,-0.021246593445539474,0.010152795352041721,0.023742690682411194,0.08333706110715866,0.028049884364008904,-0.02709103375673294,0.05669991672039032,0.06509388238191605,0.02410977892577648,-0.01923070289194584,0.0648738294839859,0.02342783473432064,0.026439040899276733,0.008884476497769356,-0.033720675855875015,-0.04139895364642143,-0.0015330822207033634,-0.037722837179899216,-0.11024802178144455,0.12153565883636475,0.003536178730428219,0.04278413578867912,-0.016143925487995148,-0.08096331357955933,-0.025062821805477142,-0.02757023461163044,-0.009984561242163181,0.049894724041223526,-0.02937416546046734,-0.056921374052762985,0.001491692615672946,0.04094764590263367,-0.03090641088783741,-0.021965937688946724,-0.011531720869243145,0.007007702719420195,0.05975804105401039,0.04723598435521126,0.06541995704174042,-0.0006248715799301863,-0.0026365926023572683,0.03228005766868591,-0.07116720080375671,0.01298527792096138,-0.10313116014003754,0.044286902993917465,0.015594720840454102,-6.646901867017736e-33,0.004029696341603994,0.020430810749530792,-0.03971932828426361,0.02216012217104435,0.06776227802038193,0.023233870044350624,0.06354780495166779,0.027711614966392517,-0.07217824459075928,0.029467307031154633,0.131476491689682,0.07034487277269363,-0.05560464411973953,-0.027137814089655876,-0.05639839172363281,-0.07138155400753021,-0.05022607371211052,0.06204729154706001,0.049267299473285675,-0.013010534457862377,0.006191289518028498,0.09482327103614807,-0.0453571192920208,0.08490391075611115,-0.009481974877417088,0.1329772025346756,-0.053324099630117416,-0.049082059413194656,0.05122464522719383,0.029607295989990234,0.05247759073972702,0.03427005931735039,0.04112447798252106,-0.02123185619711876,-0.07182933390140533,0.005689091049134731,-0.04928179457783699,-0.06590557098388672,-0.055325474590063095,0.024092387408018112,-0.008549966849386692,0.04077215865254402,-0.006532537750899792,-0.011167632415890694,0.0024301924277096987,-0.017954980954527855,0.013411948457360268,0.04334349185228348,-0.004012548364698887,0.011907365173101425,-0.022439533844590187,0.018196463584899902,0.02162804827094078,-0.0058716339990496635,-0.0812465101480484,0.028366468846797943,0.030746659263968468,-0.12104316055774689,0.021557729691267014,-0.010490872897207737,0.07094521820545197,0.008847812190651894,-0.037139471620321274,-0.0104707982391119,0.04564286023378372,-0.035695187747478485,-0.0317484587430954,-0.017345581203699112,-0.01960056833922863,-0.11253906041383743,-0.04994320869445801,-0.008360887877643108,-0.013857763260602951,-0.016787918284535408,-0.04879460856318474,-0.016625965014100075,-0.030589815229177475,0.008845994248986244,-0.10073262453079224,-0.1161181628704071,0.06418472528457642,-0.07242850214242935,-0.010913555510342121,0.0157751627266407,-0.04454006627202034,0.0032941580284386873,0.004142122343182564,-0.05899530276656151,0.03249935060739517,0.0020292068365961313,-0.07339304685592651,-0.058352723717689514,0.0005833620089106262,-0.04275568202137947,-0.026026275008916855,3.5761623824684894e-33,-0.021382328122854233,-0.0747988373041153,0.0117022804915905,-0.022211069241166115,0.0005208407528698444,-0.06265681236982346,-0.00823159422725439,0.07363946735858917,-0.03561995178461075,-0.040200620889663696,0.00803777389228344,0.019183211028575897,0.10486464202404022,-0.03931845352053642,0.05666832998394966,0.01687169261276722,0.012508801184594631,0.006034159101545811,-0.006753095425665379,-0.08067411184310913,0.009120047092437744,-0.011036963202059269,0.0936896950006485,0.030577288940548897,-0.013435660861432552,0.03270840644836426,0.03717062994837761,-0.0950646847486496,-0.01486701425164938,-0.00238582375459373,0.03275095671415329,-0.03361270949244499,-0.0010298723354935646,-0.06120328605175018,0.016171861439943314,0.07257702946662903,0.06000136956572533,-0.012079425156116486,-0.02563057653605938,-0.1725081503391266,-0.012558654882013798,-0.010734622366726398,-0.03147570788860321,0.16529154777526855,0.06024787575006485,0.018390920013189316,-0.07762683182954788,-0.06097251921892166,0.07650132477283478,0.008641009218990803,0.0328330472111702,-0.05667763575911522,-0.0025899989996105433,-0.0069360253401100636,0.024608395993709564,0.0029044514521956444,0.056186191737651825,0.040243931114673615,-0.04592343792319298,-0.015929998829960823,-0.01558373961597681,0.04174339026212692,-0.06902685016393661,-0.013306975364685059,0.025127798318862915,0.007819890044629574,0.06854215264320374,-0.03234066814184189,-0.055325474590063095,-0.031613852828741074,0.021567078307271004,0.08484740555286407,0.0037890824023634195,0.04234142601490021,0.06255105137825012,-0.032574139535427094,0.0016583342803642154,-0.012359238229691982,-0.022025978192687035,0.0733380913734436,-0.0012996371369808912,0.003584726480767131,0.009367323480546474,-0.05994783714413643,0.07490822672843933,-0.021902795881032944,-0.015271005220711231,-0.019440285861492157,-0.032603174448013306,0.008732122369110584,-0.010103574022650719,0.04406451806426048,-0.03383145481348038,0.04094435274600983,-0.000599178543779999,-2.006409971500034e-8,-0.03287195414304733,0.10423365235328674,0.038174428045749664,-0.023433202877640724,0.06819650530815125,-0.022153260186314583,0.05014188587665558,0.12016993761062622,0.005437769927084446,0.00221662106923759,-0.07950467616319656,0.015776360407471657,-0.11302962154150009,0.009253532625734806,0.07506802678108215,-0.026060692965984344,0.012356077320873737,0.0427195280790329,0.012464129365980625,-0.06268376111984253,-0.022315772250294685,0.039757613092660904,0.06381187587976456,-0.11007820069789886,-0.008381472900509834,-0.0425039678812027,0.05030395835638046,0.10700792819261551,-0.055484749376773834,0.003863011486828327,0.019181065261363983,0.021257592365145683,-0.01980188861489296,-0.009852164424955845,-0.09162737429141998,-0.03670213371515274,-0.019771665334701538,-0.046596821397542953,0.04234515503048897,0.03576899319887161,0.010793302208185196,0.025622181594371796,0.01098476443439722,-0.00961330160498619,0.006678433157503605,0.0041683996096253395,-0.054816991090774536,-0.026837361976504326,0.007418193854391575,0.012437792494893074,-0.005140392575412989,-0.005514143500477076,-0.031172459945082664,0.0751819983124733,-0.003374893683940172,-0.03713364899158478,0.04997514188289642,-0.01289775874465704,-0.04280684143304825,-0.011454476043581963,0.012617276050150394,-0.07084867358207703,-0.14091116189956665,0.0071269674226641655]},{"text":"RAINA. (_furious—throwing the words right into his face_).","book":"Down and Out in Paris and London","chapter":53,"embedding":[-0.034601978957653046,0.06072010099887848,-0.014906199648976326,0.03416147083044052,-0.033154819160699844,0.0378921814262867,0.1470194160938263,-0.05644151568412781,-0.03781699389219284,-0.020456938073039055,-0.011571782641112804,-0.10959221422672272,-0.02159128524363041,0.037073083221912384,0.025893209502100945,0.05479951202869415,-0.002904485445469618,-0.006887665018439293,-0.006895607803016901,0.016745423898100853,0.016333382576704025,0.06444571912288666,-0.0038352340925484896,0.04563191905617714,-0.019976472482085228,0.0769098624587059,0.06994827091693878,0.05358521640300751,-0.01338647585362196,-0.08086507767438889,-0.009207765571773052,0.03144051879644394,-0.02450995333492756,-0.010233934968709946,-0.07255205512046814,0.05587604269385338,-0.023513834923505783,-0.014754291623830795,0.0022973348386585712,-0.08428581804037094,-0.02559758350253105,0.05340257287025452,-0.05136257782578468,-0.015620849095284939,0.06282373517751694,-0.11813074350357056,0.06165412813425064,0.05959215760231018,0.019093934446573257,0.0037076971493661404,-0.010161244310438633,-0.022001756355166435,-0.02139527164399624,0.032594647258520126,-0.006354793906211853,-0.07194437086582184,0.07652054727077484,-0.05739517882466316,-0.005844711791723967,0.0611770935356617,-0.02930111065506935,0.043387483805418015,-0.03564336523413658,0.11605378240346909,-0.017628703266382217,-0.08056505769491196,-0.031174907460808754,0.031349439173936844,-0.07968328893184662,0.15424613654613495,0.025303419679403305,0.026874689385294914,0.028883807361125946,-0.004647854249924421,-0.08842873573303223,-0.06887957453727722,-0.005009784828871489,-0.014896017499268055,0.038121115416288376,0.008913692086935043,0.05347372591495514,-0.028583303093910217,-0.04590815678238869,0.012008963152766228,-0.02116336114704609,0.05509478971362114,-0.026564955711364746,-0.10453423857688904,-0.004790894687175751,-0.02338765561580658,-0.027900878340005875,-0.03380761668086052,0.0825047418475151,0.05172434821724892,0.012134897522628307,0.02737320028245449,-0.015510124154388905,-0.14787758886814117,-0.07313060760498047,0.0570545457303524,0.014177308417856693,-0.043711282312870026,-0.016485150903463364,0.011205248534679413,-0.014653529971837997,-0.00038062885869294405,-0.038011763244867325,-0.06033649295568466,-0.03539922460913658,-0.020089417695999146,-0.08647605776786804,-0.061669182032346725,-0.011979375965893269,-0.01187155395746231,0.032230768352746964,0.0618719607591629,-0.04267772659659386,-0.028042487800121307,0.023866521194577217,0.09796395152807236,-0.0001960796507773921,0.0559072270989418,0.002258305437862873,0.030632050707936287,-0.009338944219052792,0.006719640921801329,0.005509026814252138,-4.631812145488568e-33,0.12020840495824814,0.027139117941260338,-0.022751804441213608,0.07115569710731506,0.03224625810980797,-0.00945314858108759,0.01676156371831894,-0.005572922993451357,-0.05343024805188179,0.025881022214889526,-0.08677677810192108,-0.022734906524419785,-0.029915843158960342,0.0187050960958004,0.0009754315251484513,0.09179213643074036,-0.0160775538533926,0.01028099749237299,-0.016880765557289124,-0.03099653497338295,-0.01664668135344982,0.07662993669509888,-0.055417630821466446,-0.001106979325413704,-0.03949252516031265,0.029761403799057007,0.0852605476975441,-0.007887111976742744,0.08957237005233765,0.028924426063895226,-0.02022167295217514,0.04163102060556412,0.13144399225711823,0.011682618409395218,0.0840018093585968,-0.03289395570755005,-0.033425282686948776,-0.03763400763273239,-0.05530549958348274,-0.01967088133096695,-0.09767872095108032,0.014692861586809158,-0.07850490510463715,-0.023930588737130165,-0.0759328156709671,-0.0601680651307106,-0.04928306117653847,0.043561890721321106,0.04165497422218323,-0.005653184838593006,0.046240419149398804,0.053965166211128235,0.0525968000292778,0.03509629890322685,-0.026715606451034546,0.06031088903546333,0.05657278746366501,0.02506108395755291,0.0900568962097168,0.024080587550997734,0.012324290350079536,0.04369765892624855,0.05574002116918564,-0.08131677657365799,-0.04320811852812767,-0.07352084666490555,-0.07765980809926987,0.04318254441022873,0.03504861146211624,-0.03736114129424095,-0.07219137251377106,-0.02063087187707424,-0.04592616856098175,0.02593507245182991,0.009113720618188381,-0.08178504556417465,-0.020385798066854477,0.017789149656891823,-0.00534654688090086,0.0013642148114740849,-0.06905141472816467,0.012056888081133366,-0.006483064498752356,0.013424215838313103,-0.12812982499599457,-0.005211883690208197,-0.0030157817527651787,-0.10190276056528091,-0.052044060081243515,0.04552305117249489,0.00477072037756443,0.04990483075380325,0.10577142983675003,-0.04991433396935463,-0.049985699355602264,5.711155833859392e-34,0.0024597845040261745,-0.02466787025332451,-0.02936672791838646,0.03781610354781151,0.03207526355981827,-0.030093137174844742,0.006862134672701359,0.007779757026582956,0.12186095118522644,0.020120825618505478,-0.10910127311944962,0.020431431010365486,-0.03142893314361572,-0.061140190809965134,0.12386608123779297,0.0027718604542315006,0.04505208134651184,-0.03117942065000534,-0.018725410103797913,0.050335440784692764,-0.03212546557188034,-0.07367096841335297,-0.013100333511829376,-0.08294159173965454,0.027211572974920273,-0.033193908631801605,0.1457900106906891,0.030131828039884567,0.0013232241617515683,0.016092786565423012,-0.02138361893594265,-0.022891653701663017,-0.08613327145576477,0.06029165908694267,-0.02865774556994438,0.01848415844142437,-0.05818939954042435,-0.10490530729293823,-0.04036988690495491,-0.04080035164952278,-0.031894177198410034,-0.03507164493203163,0.04663461446762085,0.1037587895989418,0.013020522892475128,-0.02996000647544861,-0.06774941086769104,0.028529075905680656,-0.003904099343344569,0.004555555991828442,-0.004373390227556229,-0.022248517721891403,-0.01040639914572239,0.07285542041063309,0.06303288787603378,-0.028228215873241425,0.07397722452878952,-0.07115776836872101,-0.01514221727848053,0.04390900582075119,0.004940659739077091,-0.08353359252214432,0.028433367609977722,0.0004036124737467617,-0.039762698113918304,-0.06890533864498138,-0.08055336773395538,-0.050254181027412415,0.02505035325884819,-0.03949359431862831,0.06747905164957047,-0.028939373791217804,-0.1173376739025116,-0.012782944366335869,-0.0164287518709898,0.048810362815856934,-0.06403850764036179,-0.0017105938168242574,-0.01384256687015295,-0.08849260210990906,-0.052355632185935974,0.0309566929936409,-0.04127190262079239,-0.038457099348306656,0.053312480449676514,-0.06248963996767998,-0.0011150725185871124,-0.03218616545200348,0.050602469593286514,0.05327022448182106,0.06271269917488098,-0.002779243979603052,0.12564612925052643,-0.049233436584472656,-0.022616706788539886,-2.2125522747273862e-8,-0.10190976411104202,-0.02659269981086254,0.004174822475761175,-0.039494093507528305,-0.0036647641099989414,0.04031863063573837,0.02428172156214714,0.014812275767326355,0.03277206793427467,-0.058426808565855026,0.08350320905447006,0.08471488207578659,0.06085343658924103,0.009541427716612816,0.042733363807201385,0.02258688025176525,0.07109604775905609,0.06775379925966263,-0.02495904266834259,-0.03667489066720009,0.007630172185599804,0.0539969801902771,-0.048070501536130905,-0.018189800903201103,-0.011400584131479263,0.04868583008646965,-0.04608108475804329,0.02716759778559208,-0.027708550915122032,0.04545952379703522,0.07000158727169037,0.03980160132050514,-0.07071187347173691,-0.01832263171672821,-0.02510625682771206,0.09891405701637268,0.02422909066081047,0.06122741103172302,-0.015367371030151844,0.021879060193896294,0.05246913433074951,0.055506374686956406,-0.006952736526727676,-0.03242504969239235,0.051891956478357315,0.03674361854791641,0.056406743824481964,-0.01093599945306778,-0.004152389708906412,-0.04744363948702812,-0.0001344948832411319,-0.019492795690894127,-0.03627368062734604,0.03376016765832901,0.020948829129338264,-0.009557937271893024,-0.025034889578819275,0.0025367550551891327,-0.019115041941404343,-0.029548661783337593,0.0723273754119873,-0.011724954470992088,0.010410814546048641,0.09317388385534286]},{"text":"For you. (_She empties the salver recklessly on the table._) The messenger is waiting. (_She is determined not to be civil to a Servian, even if she must bring him his letters._) BLUNTSCHLI. (_to Raina_).","book":"Down and Out in Paris and London","chapter":53,"embedding":[0.024458477273583412,0.03238421306014061,0.08469697088003159,0.01728290133178234,-0.008823826909065247,0.050806332379579544,0.1584666222333908,-0.06861525774002075,0.022689880803227425,-0.01571531966328621,0.023803895339369774,-0.09693527221679688,-0.06699935346841812,-0.038635168224573135,0.008247646503150463,0.02701103687286377,-0.017737453803420067,-0.004572757985442877,-0.037799619138240814,0.10170254856348038,0.02475268766283989,0.006979199592024088,0.00036099617136642337,0.0611499547958374,-0.05635971948504448,0.018982326611876488,0.07254228740930557,-0.016465889289975166,-0.024703003466129303,-0.04082632437348366,-0.054775647819042206,-0.007828562520444393,0.026500944048166275,0.04749405384063721,0.03599363937973976,0.07670202851295471,0.034318309277296066,0.004074539057910442,0.06846000254154205,-0.016399769112467766,-0.06142180413007736,-0.08909427374601364,-0.00441739521920681,0.05782044678926468,-0.04598601162433624,-0.09624671936035156,0.03051402047276497,0.08421899378299713,-0.05588683485984802,-0.07017706334590912,-0.10291220247745514,-0.024771511554718018,-0.1488581895828247,0.06345734745264053,-0.02836800366640091,-0.05443350225687027,0.027976226061582565,0.016234874725341797,0.05906934291124344,-0.019705746322870255,-0.07782968133687973,0.029795963317155838,-0.03847675770521164,0.10473015159368515,-0.05042155086994171,-0.021491654217243195,0.015285811387002468,-0.03298649191856384,-0.09479307383298874,0.17664742469787598,0.03807983174920082,0.02745678648352623,-0.020174456760287285,0.014423877000808716,-0.09051008522510529,-0.024365173652768135,0.03539178892970085,-0.030581064522266388,0.04547928646206856,0.0026403472293168306,-0.03905496746301651,-0.007872029207646847,-0.04266433045268059,0.06398143619298935,-0.04899740219116211,0.05011403560638428,-0.05213406682014465,-0.10351217538118362,0.007190532051026821,-0.04687893018126488,0.006362159736454487,-0.0518789142370224,0.03815882280468941,0.021451786160469055,-0.0720052644610405,0.06943781673908234,-0.038257744163274765,-0.02066049911081791,-0.04700891673564911,0.07277188450098038,0.01821824535727501,0.1093413233757019,-0.026058144867420197,0.007259322330355644,-0.08754292130470276,-0.006526049226522446,-0.04639396816492081,-0.17148254811763763,-0.08043336123228073,-0.024780968204140663,-0.04321180656552315,-0.08178642392158508,0.0012284264666959643,-0.07011013478040695,0.007591838017106056,0.0416521318256855,0.02216588892042637,-0.05151888728141785,-0.002833698643371463,0.02925906516611576,-0.01428138930350542,0.04118172451853752,-0.026900572702288628,0.0694519430398941,-0.03459324687719345,-0.0018258823547512293,0.018251195549964905,-1.549170229624269e-33,0.024260427802801132,0.026236338540911674,-0.01596206985414028,0.0434287004172802,0.00028076491435058415,0.0012526207137852907,-0.03791686147451401,0.023233894258737564,-0.03149636834859848,0.005968859419226646,-0.09982930123806,-0.04775630310177803,-0.04771755635738373,-0.020803028717637062,-0.025937195867300034,0.07073791325092316,0.055709224194288254,-0.04341219365596771,-0.01656576432287693,0.02426028996706009,0.038190681487321854,0.03904381021857262,-0.016331760212779045,0.023095563054084778,-0.034012675285339355,-0.0481329970061779,0.06614480912685394,-0.00814228504896164,0.02948235534131527,0.07014717161655426,-0.07267852872610092,0.026546278968453407,0.03874942660331726,0.015528990887105465,0.04516449570655823,0.010795418173074722,-0.04864271730184555,-0.0044408924877643585,-0.06490650027990341,0.01008295826613903,-0.12050444632768631,0.03716067597270012,-0.018390202894806862,0.03702410310506821,0.019212674349546432,-0.05477144196629524,-0.0012877124827355146,0.02663920447230339,0.0467471145093441,-0.024896584451198578,-0.022398024797439575,-0.04192277789115906,0.04335948824882507,0.021003765985369682,0.011326558887958527,-0.0013623256236314774,0.023042557761073112,0.0522737018764019,0.056296441704034805,0.022388597950339317,0.06236300244927406,-0.02153637260198593,0.04410841315984726,-0.004502073395997286,0.08845803886651993,-0.011990497820079327,-0.06465410441160202,-0.026928847655653954,0.025089824572205544,-0.045310165733098984,-0.04118886962532997,0.0560055635869503,-0.020570455119013786,0.0810759887099266,-0.06649304926395416,-0.01250650268048048,-0.03203563019633293,-0.0336182601749897,0.11035250127315521,-0.08198999613523483,-0.049718037247657776,-0.01309256162494421,-0.09159380197525024,0.05559782683849335,-0.04131067916750908,-0.017255006358027458,0.01476222462952137,-0.062050458043813705,-0.053412627428770065,0.10311730206012726,-0.021584611386060715,0.05759947746992111,0.05507338419556618,-0.08667492121458054,-0.04642241448163986,-1.1994391707485375e-33,0.06266940385103226,0.00951040256768465,-0.09733069688081741,0.061160165816545486,-0.014058697037398815,0.0070262751542031765,-0.06997396796941757,-0.014771409332752228,0.03128696605563164,0.003371270839124918,-0.08196955174207687,-0.07797576487064362,0.052540477365255356,-0.055355872958898544,0.043695054948329926,-0.029230283573269844,0.07726292312145233,-0.03136160969734192,-0.003460200736299157,0.018767638131976128,0.01697927713394165,0.0196872279047966,-0.09043055027723312,0.015047101303935051,0.021904872730374336,-0.04407018795609474,0.05289267748594284,0.017141541466116905,-0.09046907722949982,0.03757813572883606,0.036963947117328644,-0.06281322985887527,-0.056764278560876846,-0.024888593703508377,0.012405558489263058,0.010492214933037758,0.017807085067033768,-0.042417582124471664,0.017824852839112282,0.04514037445187569,-0.01862659677863121,-0.003084787167608738,0.08404184132814407,0.05642516165971756,0.07298358529806137,-0.022811703383922577,-0.016809893772006035,-0.003110922174528241,0.021561602130532265,-0.01758229173719883,-0.00034098440664820373,-0.108695387840271,-0.0007692082435823977,0.035554852336645126,0.06243421137332916,0.04677814245223999,-0.012605411000549793,-0.08707810193300247,-0.0005630628438666463,-0.028614435344934464,-0.02269556000828743,-0.0562041774392128,0.01175366248935461,0.019444216042757034,0.0025504855439066887,-0.05699073150753975,-0.07341611385345459,0.015126190148293972,-0.00027519953437149525,0.026743322610855103,0.03565620258450508,-0.06562122702598572,-0.12227462232112885,-0.006257889326661825,0.04701696336269379,0.008115673437714577,-0.020269077271223068,-0.03064507432281971,0.019630810245871544,-0.06630823016166687,-0.03245708346366882,-0.02886234037578106,-0.015224284492433071,-0.018475426360964775,0.032638587057590485,-0.031205296516418457,0.02728452906012535,-0.013824977912008762,0.0332738496363163,0.011200015433132648,0.054768990725278854,0.02509242296218872,0.09383992105722427,-0.038147587329149246,0.011934584006667137,-3.7094192606446086e-8,-0.020570963621139526,-0.0786348283290863,-0.023442378267645836,-0.05446493253111839,-0.0028153653256595135,-0.00984322652220726,0.007830740883946419,-0.06890279054641724,-0.03808518499135971,0.004521888680756092,0.04667824134230614,0.09564746171236038,0.014952408149838448,-0.006725524086505175,0.07855431735515594,0.05129667744040489,0.11874742060899734,0.024490494281053543,-0.06866098940372467,0.0036511546932160854,0.06307362765073776,0.049451012164354324,0.008850893005728722,-0.02552090212702751,-0.05108604580163956,0.04275243356823921,-0.03198898956179619,-0.01608770154416561,-0.01235136017203331,0.08852309733629227,0.046889204531908035,0.044880855828523636,-0.04706365987658501,-0.05221070349216461,-0.046730294823646545,0.06565509736537933,-0.046657439321279526,0.018001487478613853,0.045241016894578934,0.11427466571331024,0.07651893049478531,0.02309648133814335,-0.11093077063560486,0.021249333396553993,0.04912373423576355,-0.0159271452575922,0.041563257575035095,-0.05114736407995224,-0.07885049283504486,0.004482574760913849,-0.02345607988536358,-0.019618704915046692,0.04268911853432655,0.03527604043483734,0.012085498310625553,0.0006842350121587515,0.05219527706503868,0.0713137537240982,-0.03620132803916931,-0.010288082994520664,0.10056735575199127,0.0838664174079895,-0.010996759869158268,-0.018938381224870682]},{"text":"Yes: I shall have to start for home in an hour.","book":"Down and Out in Paris and London","chapter":54,"embedding":[-0.026108670979738235,-0.08137238025665283,0.011226771399378777,-0.016340170055627823,-0.008334241807460785,-0.00011773008736781776,-0.055651843547821045,-0.08081371337175369,-0.10556457936763763,-0.049582190811634064,-0.05152572691440582,0.05025766044855118,-0.02807994931936264,0.06868419051170349,0.05679142847657204,0.03159678354859352,0.01004777755588293,-0.09889206290245056,0.003465375630185008,0.0660063624382019,-0.05202186480164528,0.025133032351732254,-0.03806571662425995,0.01691427268087864,0.060133349150419235,-0.0016259875847026706,0.08094260841608047,0.037253037095069885,-0.015554280951619148,-0.05053943023085594,-0.09543867409229279,-0.05297417193651199,0.09963558614253998,0.005374893080443144,0.11348672211170197,0.07690548896789551,0.09903281182050705,-0.009594187140464783,0.03587605059146881,0.016699915751814842,0.1305069476366043,-0.06782413274049759,-0.007262974977493286,0.03589577600359917,0.0063181607984006405,0.03284791484475136,-0.05777295306324959,-0.10028000175952911,0.0537010058760643,0.01951620541512966,-0.0028551381547003984,0.03415052965283394,0.031246796250343323,-0.03185252845287323,0.044585686177015305,0.07479348033666611,0.02364370971918106,-0.06341096758842468,0.07170744985342026,0.021833578124642372,-0.013872436247766018,-0.006743582431226969,-0.04228615388274193,0.09874697774648666,0.14826777577400208,-0.04325093328952789,-0.035514481365680695,-0.027013055980205536,0.024477273225784302,-0.009660916402935982,-0.06961648911237717,0.053639914840459824,0.02506730705499649,0.0005249602254480124,-0.07524531334638596,-0.01830323040485382,0.059017304331064224,-0.012778746895492077,0.06119783595204353,-0.029748693108558655,-0.05346357449889183,0.0038227327167987823,0.006128009408712387,0.029380250722169876,-0.09485393017530441,0.0025600644294172525,0.04005080461502075,0.08981886506080627,0.027911581099033356,-0.021545210853219032,0.058943599462509155,0.05443571135401726,-0.010190162807703018,0.019801845774054527,0.02031603828072548,-0.025793228298425674,0.024714279919862747,-0.03592812642455101,-0.06982961297035217,-0.007096556480973959,-0.01423673052340746,-0.04011085629463196,0.030311724171042442,-0.002649185247719288,-0.007274390198290348,-0.025263842195272446,-0.023364339023828506,0.08005104213953018,-0.02273583970963955,-0.04029391333460808,-0.041117820888757706,-0.010163936764001846,0.09472013264894485,-0.03861634060740471,0.04533419758081436,0.09305985271930695,-0.023089585825800896,-0.03636997565627098,0.061068467795848846,-0.022661738097667694,0.09656500816345215,0.0026944447308778763,0.02598661184310913,-0.07398015260696411,0.04895632714033127,-0.059095170348882675,0.048429638147354126,-4.3341501598954864e-33,0.0014121507992967963,0.0027318857610225677,-0.04868817329406738,0.03798742964863777,0.007868380285799503,-0.031511977314949036,-0.028307951986789703,0.023662224411964417,-0.03615396097302437,-0.0031885714270174503,-0.03140503168106079,0.0479416623711586,-0.011103996075689793,-0.023035885766148567,-0.03785783797502518,0.04392107576131821,0.0990973711013794,0.016323862597346306,-0.048872169107198715,-0.05420229956507683,0.0338437519967556,-0.1015378013253212,-0.06856059283018112,-0.025700828060507774,-0.049478061497211456,-0.043422866612672806,0.02165733277797699,-0.07460279017686844,0.10820140689611435,0.029344191774725914,0.012819498777389526,-0.052056074142456055,-0.10154551267623901,0.04014553874731064,-0.03380298614501953,0.014852886088192463,-0.044655315577983856,-0.00659485999494791,-0.025104397907853127,-0.05361592769622803,-0.033002953976392746,0.08876340836286545,0.013809499330818653,-0.03697730600833893,0.011875810101628304,-0.04122384637594223,0.04069361835718155,-0.0016938926419243217,0.009785841219127178,0.048101045191287994,-0.10274094343185425,0.008849534206092358,0.005184575449675322,-0.03878394886851311,0.029632702469825745,0.09655177593231201,-0.00547616695985198,-0.021256322041153908,-0.020600881427526474,-0.014165651053190231,-0.02601703442633152,-0.007652777247130871,-0.04546952620148659,-0.01742975041270256,0.000034360189602011815,0.01564842090010643,0.01956433244049549,0.001375460415147245,0.04990623891353607,-0.019105834886431694,-0.03762144595384598,-0.059731047600507736,-0.026888936758041382,-0.011419142596423626,0.07053008675575256,0.11008424311876297,0.03237355500459671,0.0003702863759826869,-0.08158840239048004,0.01658637262880802,0.08727103471755981,0.007544695865362883,0.038020484149456024,0.017258012667298317,0.10820860415697098,-0.014763631857931614,0.060944054275751114,-0.008324069902300835,-0.007302567362785339,-0.036519166082143784,-0.029281001538038254,-0.024387549608945847,0.0841871052980423,0.007589312735944986,-0.06538717448711395,2.8387635722671372e-33,0.0032316753640770912,-0.07746049016714096,-0.019269483163952827,0.031159963458776474,0.056530341506004333,0.021946709603071213,0.051625680178403854,0.04548651725053787,-0.08557291328907013,0.10309562087059021,0.02225983887910843,0.0026775398291647434,-0.02405967004597187,-0.038613930344581604,0.011656060814857483,-0.06323430687189102,0.039346836507320404,0.0523378849029541,0.023687833920121193,0.006816504057496786,-0.07825420796871185,-0.036937128752470016,-0.07895366847515106,-0.09734705090522766,0.019006554037332535,0.0864645466208458,0.050210949033498764,0.11574886739253998,-0.12718746066093445,0.045423682779073715,-0.006653700955212116,-0.05987488478422165,-0.03864232823252678,0.0438503697514534,-0.08832260966300964,0.020108046010136604,0.08990349620580673,-0.0315575897693634,0.04139796644449234,0.011575296521186829,-0.02617771551012993,-0.0666864812374115,-0.02537865936756134,0.04807198792695999,-0.059392545372247696,-0.017628971487283707,0.10384079068899155,-0.04789343848824501,-0.0944567546248436,0.014911179430782795,0.016930250450968742,0.04494341462850571,0.06487337499856949,-0.10157330334186554,0.015014789998531342,-0.048210203647613525,0.05478426069021225,-0.001952183316461742,0.019845344126224518,0.03734824061393738,-0.0021559891756623983,0.02530622109770775,0.0007762415334582329,0.003333065193146467,0.044059667736291885,-0.07198448479175568,-0.04069529473781586,0.05723251402378082,0.01121259480714798,-0.023554963991045952,-0.007210593204945326,-0.0631556510925293,-0.03393320366740227,0.045394085347652435,-0.007350756321102381,-0.05997198075056076,0.09899958223104477,-0.07132767885923386,-0.021343082189559937,-0.04307211562991142,0.025687862187623978,-0.00830077100545168,0.01290430873632431,-0.07141261547803879,0.050541650503873825,-0.056065112352371216,0.025396795943379402,0.07517534494400024,-0.0036023948341608047,0.060859475284814835,0.014861398376524448,0.04856736585497856,0.10624895989894867,0.009861081838607788,0.029316946864128113,-2.0880532858313927e-8,0.044398266822099686,0.021804925054311752,0.07226186990737915,0.03957117721438408,-0.05557434633374214,-0.027749722823500633,-0.004832131322473288,-0.03428492695093155,-0.037445083260536194,0.05585503578186035,0.061294011771678925,-0.00030276202596724033,0.027495326474308968,0.017369462177157402,-0.044148918241262436,-0.005315958522260189,0.11520054936408997,-0.049894530326128006,-0.03552056476473808,-0.01667230948805809,0.030960017815232277,0.03818850219249725,-0.02379695326089859,0.0822204053401947,0.06336484849452972,-0.029000362381339073,0.042029209434986115,0.018741466104984283,0.03808842599391937,0.04153168201446533,-0.03607509657740593,0.061344798654317856,-0.023714309558272362,0.006671614944934845,-0.04359947517514229,-0.09509097039699554,-0.05517088621854782,-0.023499397560954094,-0.0827871635556221,-0.04716392606496811,0.041464973241090775,-0.07271910458803177,-0.03689661994576454,-0.01735420897603035,-0.056014545261859894,-0.01758667267858982,-0.049007710069417953,-0.06329517811536789,0.018754037097096443,-0.09758620709180832,-0.05987712740898132,-0.006449629552662373,0.06874118745326996,-0.0673985481262207,0.053068168461322784,0.0860784649848938,0.0021143872290849686,-0.04299355298280716,0.05699329078197479,0.004830704536288977,0.05683402717113495,-0.03943689540028572,-0.06593968719244003,-0.04881461709737778]},{"text":"He has not much heart, that Swiss, though he is so fond of the Servians.","book":"Down and Out in Paris and London","chapter":54,"embedding":[0.05809285119175911,0.07736189663410187,0.007700029294937849,-0.02835145778954029,0.03312137722969055,-0.03931611776351929,0.029433155432343483,-0.015731802210211754,0.016850434243679047,-0.05798330530524254,-0.06946147978305817,-0.08677642792463303,-0.0536917969584465,0.013133080676198006,0.0625036284327507,-0.06007656455039978,-0.047305312007665634,-0.08322835713624954,0.017817098647356033,0.06178176775574684,-0.010885271243751049,-0.03417477756738663,0.05255754664540291,0.011761359870433807,-0.0033979066647589207,0.0032714989501982927,0.10002298653125763,-0.07940656691789627,0.013931361958384514,0.018846683204174042,0.05243422091007233,0.006948578637093306,-0.05410674214363098,0.02223094366490841,-0.05088086798787117,0.09791820496320724,0.016741974279284477,0.07464691251516342,-0.0779443085193634,-0.008531302213668823,0.011294638738036156,0.019333453848958015,0.040417831391096115,0.02047291025519371,-0.0084863705560565,-0.03412271663546562,-0.02072576805949211,-0.06639935076236725,0.00774346711114049,0.04790386185050011,-0.09962575882673264,-0.03085428476333618,-0.02402053214609623,-0.06798868626356125,-0.026649579405784607,0.02284954860806465,0.008012973703444004,-0.050015415996313095,0.002103871898725629,-0.055618587881326675,0.04034728556871414,0.006758887320756912,-0.01871742121875286,-0.011639886535704136,-0.01741560734808445,-0.022351838648319244,-0.05823562294244766,-0.003265292849391699,-0.11887944489717484,0.04797802120447159,0.035846222192049026,-0.015009683556854725,0.048679761588573456,0.013462787494063377,-0.03124873712658882,-0.05948268249630928,-0.042668916285037994,-0.03580145165324211,0.03466947004199028,-0.00947461649775505,0.025537099689245224,0.009242590516805649,-0.08337855339050293,0.07209212332963943,0.009735248982906342,0.02266506850719452,-0.00982267502695322,-0.1431857794523239,-0.05126289650797844,-0.0035917903296649456,0.05178692564368248,-0.08784857392311096,0.02205975167453289,0.019204504787921906,-0.022560518234968185,0.028179168701171875,0.04672136902809143,0.15623591840267181,-0.16336172819137573,0.036703139543533325,0.08165644109249115,0.01447339914739132,-0.018126942217350006,0.044619303196668625,-0.10921038687229156,0.011298399418592453,-0.023447293788194656,0.04938621446490288,-0.010066382586956024,0.0249747596681118,-0.06729555130004883,-0.045170437544584274,0.023626424372196198,-0.04282493144273758,0.03786393627524376,0.034514375030994415,-0.013930868357419968,-0.07821104675531387,-0.024851268157362938,0.06780577450990677,0.07422947138547897,0.047500502318143845,-0.012039171531796455,0.06480416655540466,-0.0526902861893177,-0.0020591404754668474,-0.04530627653002739,-3.7919592680504604e-33,0.03699406981468201,0.039700668305158615,0.11620723456144333,-0.020500872284173965,-0.023107757791876793,0.01907789707183838,-0.011785799637436867,-0.05654529854655266,-0.044988345354795456,-0.04186694324016571,-0.13080047070980072,0.007429576013237238,-0.05576153099536896,0.03048713691532612,-0.07235711812973022,0.009008815512061119,-0.0015682202065363526,-0.043507106602191925,0.02868342213332653,0.02642291970551014,0.031241975724697113,0.04764949530363083,0.01563195325434208,0.015985136851668358,0.016730474308133125,-0.030932137742638588,0.06226109713315964,0.017696784809231758,-0.0786825492978096,0.05214840918779373,-0.09091587364673615,0.06713802367448807,-0.04572242498397827,-0.0273843202739954,0.033123910427093506,0.0474693700671196,-0.09792261570692062,-0.02851073443889618,-0.05877794325351715,0.00500310817733407,0.06527866423130035,0.01254623755812645,-0.06897634267807007,0.021288031712174416,-0.05072237551212311,-0.009156906045973301,0.03621765971183777,0.03175155073404312,0.06306761503219604,-0.06078614667057991,0.03154442459344864,-0.0019217877415940166,-0.013253319077193737,-0.011882806196808815,0.030524274334311485,0.017236031591892242,0.05578925088047981,0.05597385764122009,-0.04650687053799629,0.011812921613454819,0.05929224193096161,-0.01980864442884922,0.0749766081571579,0.033419180661439896,-0.00009867345943348482,0.062038812786340714,-0.027285033836960793,0.04165750741958618,-0.10836264491081238,-0.01274686399847269,-0.0022797861602157354,0.01625976897776127,-0.006886597257107496,-0.024295248091220856,-0.09080643951892853,0.004842920228838921,0.0016411341493949294,0.04379715770483017,-0.0059307897463440895,-0.0004186304868198931,-0.0910586416721344,-0.03266965225338936,0.042863328009843826,-0.003176528960466385,-0.06342879682779312,0.04861271381378174,0.0843745768070221,-0.03922111913561821,-0.0002370347938267514,0.050524067133665085,0.0182053130120039,-0.07856927067041397,0.040472887456417084,-0.07005049288272858,-0.13151738047599792,7.974968772421033e-34,-0.06061062589287758,-0.08940760791301727,0.05012328550219536,-0.018302110955119133,-0.009119566529989243,0.03892083093523979,-0.016747837886214256,0.12535740435123444,0.021215315908193588,0.01891024224460125,0.011267510242760181,0.053730156272649765,0.10208561271429062,-0.02848336286842823,-0.0011396718909963965,0.02791241556406021,0.09068525582551956,0.009237915277481079,0.08266827464103699,-0.009146451950073242,0.08350224047899246,0.009117670357227325,-0.029571963474154472,0.0380278117954731,-0.12137104570865631,0.038354188203811646,-0.04913659393787384,-0.0066505963914096355,-0.11342494189739227,-0.06479573994874954,-0.0011200850130990148,-0.017564089968800545,-0.0632709413766861,-0.03628475219011307,-0.026273177936673164,0.054070401936769485,-0.09033938497304916,0.05068571865558624,0.03224847838282585,0.03376828879117966,-0.07514885812997818,-0.04960663989186287,0.0692073181271553,0.04714079573750496,0.06677421927452087,-0.02868928574025631,-0.04138314723968506,-0.0014851976884528995,-0.02693990431725979,-0.07185319066047668,-0.05094059556722641,0.04924251139163971,-0.03352750092744827,0.038158152252435684,0.014746281318366528,0.02571807987987995,-0.09834456443786621,0.05661514401435852,0.04542630538344383,-0.04509042203426361,-0.04119483381509781,-0.0313209630548954,0.0021751467138528824,0.015287024900317192,0.001705232192762196,-0.07288793474435806,-0.10369261354207993,-0.039595507085323334,0.008538800291717052,0.014155085198581219,0.023341258987784386,0.025397349148988724,-0.06130668893456459,0.07833050936460495,0.004959487356245518,0.03941383212804794,0.0027092054951936007,-0.008748316206037998,0.037761982530355453,-0.037405144423246384,-0.03836746886372566,-0.05252748727798462,-0.0003182277432642877,0.01429145410656929,-0.044326286762952805,0.06339909881353378,0.033999647945165634,-0.07643549144268036,0.06703593581914902,0.014845137484371662,0.0024497886188328266,0.012464944273233414,-0.026164857670664787,-0.04329715296626091,0.03969769924879074,-2.214448358017762e-8,-0.012189901433885098,-0.06242000311613083,-0.026871122419834137,-0.038412727415561676,-0.13389554619789124,0.03007078729569912,0.01120417844504118,-0.09711362421512604,-0.025182517245411873,0.09309685975313187,-0.008954259566962719,0.0831262618303299,0.0291153397411108,-0.055626362562179565,0.03588138148188591,-0.027404194697737694,0.08515754342079163,0.060841672122478485,0.01709725894033909,0.08560165017843246,0.053074948489665985,0.014298263005912304,0.03993403911590576,-0.025939442217350006,0.023370876908302307,-0.05750541016459465,0.04075446352362633,-0.060567956417798996,0.05420874059200287,0.04852543771266937,-0.026101671159267426,-0.03362003713846207,0.013816243968904018,-0.05293726921081543,0.08464862406253815,0.014366070739924908,-0.10324153304100037,-0.041369568556547165,0.03710794448852539,0.023964431136846542,0.07502426207065582,0.05848030373454094,0.017967015504837036,0.01955818571150303,-0.010710597969591618,-0.026616474613547325,0.054564740508794785,0.004645225126296282,0.004838773515075445,0.018117330968379974,0.03508614003658295,0.10866088420152664,0.0193440243601799,0.004216912668198347,0.032813750207424164,-0.07751107960939407,-0.04712577536702156,0.05013146251440048,-0.02585802972316742,0.030368376523256302,0.08816120773553848,0.008599319495260715,0.024029433727264404,0.010154878720641136]},{"text":"I’ve been trying all the afternoon to get a minute alone with you, my girl. (_His countenance changes as he notices her arm._) Why, what fashion is that of wearing your sleeve, child?","book":"Down and Out in Paris and London","chapter":54,"embedding":[-0.06455051898956299,0.1468537151813507,0.12696002423763275,0.0054015349596738815,0.06997189670801163,-0.05737365409731865,0.0977943167090416,-0.05500975251197815,0.053774431347846985,-0.017855152487754822,-0.01285630650818348,-0.04500715807080269,-0.049899108707904816,-0.018876949325203896,0.10447162389755249,0.01801115833222866,0.09600532799959183,-0.04543386772274971,-0.015581433661282063,0.054293811321258545,-0.04021713137626648,0.09736862033605576,0.04116629809141159,-0.023211505264043808,-0.0459921695291996,0.041774503886699677,0.005991397425532341,-0.0012840558774769306,-0.026836279779672623,-0.009269113652408123,-0.04750708490610123,0.006947485730051994,0.0129732396453619,0.035257190465927124,-0.1365668922662735,-0.00791932549327612,0.042515989392995834,0.022612757980823517,0.0046005225740373135,0.07678379118442535,-0.02297201380133629,-0.021945077925920486,-0.06820205599069595,0.07936149090528488,-0.03638680651783943,0.10920707881450653,0.03546903282403946,0.06595955789089203,-0.013656975701451302,-0.008486108854413033,-0.07734452188014984,0.008739722892642021,-0.013662259094417095,0.024288224056363106,0.011718911118805408,0.036635443568229675,0.0076181949116289616,0.01973489299416542,0.04929298162460327,0.04362766817212105,-0.010501979850232601,0.013295171782374382,-0.10144533216953278,0.08224542438983917,-0.001727368449792266,-0.08838736265897751,0.02992289885878563,0.05943651497364044,-0.019150307402014732,0.05738082900643349,0.09132365882396698,0.027006326243281364,-0.03658789396286011,0.10738509893417358,-0.051101017743349075,0.015379677526652813,0.043377965688705444,-0.05866750702261925,0.03398390859365463,-0.004783280659466982,-0.13501261174678802,0.009007076732814312,0.016396593302488327,0.061187561601400375,-0.06970114260911942,0.08928264677524567,0.020882051438093185,-0.08039607107639313,-0.1382831633090973,-0.02322443015873432,-0.07171428948640823,-0.019742071628570557,-0.039384789764881134,-0.06587811559438705,0.02341679483652115,-0.0002103487349813804,-0.041355423629283905,0.005236501805484295,-0.12623651325702667,0.007466701325029135,0.12695828080177307,0.04252822324633598,0.06743258982896805,0.10063517838716507,-0.05034292861819267,-0.09752676635980606,-0.04855271801352501,-0.006728853099048138,-0.0592513270676136,-0.022628823295235634,0.019692793488502502,-0.09283869713544846,-0.0449649877846241,-0.08620478957891464,-0.05065035820007324,-0.06577813625335693,0.01726982556283474,0.035315293818712234,0.060138218104839325,0.09922394901514053,-0.0014972067438066006,0.06343340873718262,-0.05684267356991768,-0.0815676674246788,-0.06542930006980896,-0.0066573163494467735,-0.02188318409025669,-2.561809389031729e-33,0.025309547781944275,0.017393305897712708,-0.005861860699951649,0.04801825433969498,0.031969547271728516,0.022969309240579605,0.010798620991408825,-0.07143077999353409,0.026390770450234413,0.032009899616241455,0.04740371182560921,0.00014229753287509084,-0.030773330479860306,0.0383761003613472,-0.012932275421917439,0.04652205854654312,0.02985905297100544,0.038542672991752625,0.017967674881219864,0.06688761711120605,-0.0821719765663147,-0.003693185281008482,0.008811498992145061,-0.022317450493574142,-0.0416661836206913,-0.004237054847180843,0.020465169101953506,-0.010897797532379627,-0.0006869760109111667,0.019877351820468903,-0.049066830426454544,0.05826910212635994,0.0006957630394026637,-0.01378826703876257,0.03183721378445625,-0.06338468939065933,-0.023884860798716545,-0.024828117340803146,-0.0431588850915432,0.04589717835187912,0.0015348916640505195,-0.008072460070252419,-0.022080479189753532,-0.008380007930099964,-0.06207099184393883,0.0425400584936142,0.026118231937289238,0.0652967095375061,-0.058186840265989304,0.008285054937005043,0.05815637484192848,0.023693783208727837,0.00460404809564352,-0.046457115560770035,-0.03191595897078514,-0.0026409057900309563,0.0013937401818111539,0.0250714048743248,-0.005610305350273848,-0.036375902593135834,0.01687496155500412,0.037775468081235886,0.08416744321584702,-0.0369935967028141,0.0432661697268486,-0.04297813028097153,0.037819281220436096,-0.007474088575690985,-0.00759121123701334,-0.01760140433907509,0.06588729470968246,0.04212132841348648,-0.05578669533133507,0.10127060860395432,-0.006527563091367483,-0.016100822016596794,0.054561179131269455,-0.006123354192823172,0.048152826726436615,-0.08169768005609512,-0.00782930850982666,0.08131160587072372,0.014357573352754116,0.005611096508800983,-0.05707722529768944,-0.06189592555165291,0.013220191933214664,-0.010368402116000652,-0.06470634043216705,-0.00263819913379848,-0.05344783142209053,-0.013987850397825241,0.007099301554262638,-0.07613416016101837,-0.051716841757297516,-6.525985099797882e-34,0.13728168606758118,-0.03318566083908081,0.01689932495355606,-0.07752471417188644,0.031031083315610886,-0.05572964623570442,-0.054478488862514496,0.025507157668471336,-0.014017049223184586,0.07362934201955795,0.060577452182769775,-0.022186772897839546,-0.06545273959636688,-0.08214050531387329,0.06311044096946716,0.010228472761809826,0.038936953991651535,-0.02439928986132145,-0.012211233377456665,-0.013154959306120872,0.08846226334571838,-0.013232468627393246,0.04967404156923294,0.019832991063594818,-0.07520026713609695,-0.049069419503211975,0.07101219892501831,-0.034441541880369186,-0.030321141704916954,-0.012487893924117088,0.005662730894982815,-0.08683674782514572,-0.007842457853257656,0.09434682130813599,0.019497845321893692,-0.015702327713370323,-0.09927169233560562,0.04688721150159836,0.04206319898366928,0.005059397779405117,-0.034495383501052856,-0.027743063867092133,0.07570704817771912,-0.0022246132139116526,0.04494215548038483,-0.04985533282160759,-0.05321420729160309,-0.006611652206629515,-0.06004719063639641,0.03767723590135574,-0.08883952349424362,0.027011888101696968,0.010752144269645214,-0.025115754455327988,-0.05605202913284302,0.003630537772551179,-0.035301949828863144,0.0418272502720356,0.01138131320476532,0.06296024471521378,0.027580618858337402,-0.004780833143740892,-0.011784521862864494,-0.027820659801363945,-0.025169353932142258,0.02248777449131012,-0.06907840818166733,-0.08676282316446304,-0.06794677674770355,-0.06576447188854218,0.027631880715489388,-0.02404847927391529,-0.009546404704451561,0.053128376603126526,-0.07263968884944916,-0.027047108858823776,0.08829168230295181,-0.01776416413486004,0.011249514296650887,0.0036659701727330685,-0.0562472902238369,-0.10143007338047028,-0.03777378052473068,-0.002686471911147237,0.015594732016324997,0.028838198632001877,-0.053775910288095474,0.08278293907642365,-0.0025162489619106054,-0.0599898137152195,0.061294104903936386,0.007767051924020052,-0.05357261002063751,0.09128352999687195,0.044786546379327774,-3.2658292070664174e-8,0.019749606028199196,-0.002047700574621558,0.006879584863781929,-0.047438785433769226,-0.010118409059941769,0.10555549710988998,-0.05753256753087044,-0.12455225735902786,-0.011963198892772198,-0.04204001650214195,-0.012660485692322254,0.04557344689965248,0.0184149369597435,0.05579569935798645,-0.009876735508441925,-0.03694377467036247,-0.04920108988881111,-0.08000065386295319,-0.03096315823495388,-0.059839922934770584,0.03899841010570526,0.02380330301821232,0.009953091852366924,0.011065356433391571,-0.007107843179255724,0.03701954334974289,-0.007634673733264208,0.042051058262586594,-0.03232681751251221,0.07586901634931564,0.06293009221553802,0.06928454339504242,-0.0628427192568779,-0.03693830594420433,-0.03050386533141136,-0.027204249054193497,0.03170172497630119,0.01121848076581955,0.049174949526786804,-0.04655897617340088,0.03375900909304619,-0.052452247589826584,-0.00702188303694129,0.030430341139435768,0.03137765824794769,-0.03357712924480438,0.09264389425516129,0.018844086676836014,-0.05504625290632248,0.09881271421909332,-0.0547417514026165,-0.05976756289601326,0.04374932497739792,0.043253738433122635,0.01029281597584486,-0.03691457211971283,0.01951410621404648,-0.006226801313459873,-0.008848756551742554,0.07957156747579575,0.03831874206662178,-0.027062026783823967,-0.05914073809981346,0.04064878448843956]},{"text":"Sergius gave me that out of pure swagger.","book":"Down and Out in Paris and London","chapter":55,"embedding":[-0.03312813118100166,0.1272265613079071,-0.03553662821650505,-0.028237322345376015,-0.012660921551287174,-0.05766444653272629,0.07701931893825531,0.055210817605257034,0.006655186880379915,-0.08704821765422821,0.028089061379432678,-0.00020165373280178756,-0.007135812658816576,-0.017807358875870705,0.0714312344789505,-0.053295429795980453,0.05123164877295494,0.07462760806083679,0.004629145376384258,0.012936647050082684,0.11096833646297455,0.00840801652520895,0.03962160274386406,0.009571792557835579,0.020805133506655693,0.001407108036801219,-0.028744269162416458,-0.008053701370954514,-0.001284274971112609,-0.035825859755277634,0.048940982669591904,0.05617927014827728,-0.07822103053331375,-0.009633718989789486,-0.045366138219833374,0.06139407306909561,0.047709010541439056,-0.033196721225976944,0.028532451018691063,0.0009469809010624886,-0.018848812207579613,0.021681036800146103,0.006715715397149324,0.0037732182536274195,-0.06753804534673691,-0.09101855009794235,-0.018940579146146774,-0.025291280820965767,0.0325322188436985,-0.028208110481500626,-0.07946739345788956,-0.04576576128602028,-0.0059258416295051575,-0.0662870705127716,0.016887471079826355,0.04078748822212219,0.020455678924918175,-0.0501452200114727,0.021671084687113762,-0.07279747724533081,-0.043652623891830444,0.03217180073261261,0.07347560673952103,-0.002989271655678749,0.026302121579647064,-0.09460071474313736,-0.029938042163848877,0.013224407099187374,-0.007980771362781525,0.0919724553823471,0.025748509913682938,-0.028107842430472374,0.022336019203066826,0.006907993461936712,-0.05200713127851486,0.018844060599803925,-0.0229377169162035,-0.08170294016599655,0.0510234534740448,0.01603505201637745,-0.006584397051483393,-0.007410011719912291,-0.012375576421618462,0.07544637471437454,0.05355868488550186,-0.04656892269849777,0.07255455106496811,-0.030324263498187065,0.08985389769077301,0.020146319642663002,0.02297101728618145,-0.11317538470029831,-0.05337962880730629,0.04037671163678169,-0.04362057149410248,-0.03244912251830101,-0.07842471450567245,-0.019021403044462204,-0.09481552243232727,0.08732322603464127,-0.023968493565917015,-0.024670042097568512,0.10600703209638596,0.011311816982924938,0.03250432386994362,-0.04843940958380699,-0.0037455728743225336,0.007805178873240948,-0.04664210230112076,-0.012623661197721958,-0.04223470762372017,-0.014163253828883171,-0.05867031216621399,0.06536386907100677,0.02736598439514637,0.07805366069078445,-0.06626862287521362,0.04454917833209038,-0.13380786776542664,0.044769175350666046,0.0663769468665123,0.051218580454587936,-0.0013259329134598374,0.11698636412620544,0.004867992363870144,0.07744418829679489,-0.048324089497327805,-2.8491409833329902e-33,0.07534659653902054,0.053860075771808624,0.03153412044048309,-0.04213679954409599,0.011027966625988483,-0.08210348337888718,-0.04308751970529556,0.059131260961294174,-0.00848983321338892,0.015253293327987194,-0.09220384806394577,0.09005752950906754,-0.014298609457910061,0.05873649939894676,0.002715418115258217,-0.07063174992799759,-0.06456992030143738,0.012776538729667664,0.056315965950489044,0.005987201817333698,0.003621169365942478,0.07685862481594086,0.07488399744033813,-0.14054104685783386,-0.05710560455918312,0.02378375083208084,-0.02530466392636299,0.025590907782316208,-0.015798185020685196,0.09803947061300278,0.08146429806947708,-0.04384392499923706,0.04907399043440819,-0.04809947684407234,0.06343858689069748,0.03579706326127052,-0.056564584374427795,-0.11106506735086441,-0.036445651203393936,0.009114781394600868,-0.08553995937108994,0.010599353350698948,-0.048067085444927216,-0.025906460359692574,-0.050164803862571716,-0.01616179384291172,-0.030339214950799942,-0.01378167886286974,0.07261991500854492,-0.005400221794843674,-0.023894403129816055,0.017813289538025856,0.06198067218065262,-0.04922212287783623,-0.01309559028595686,-0.048594582825899124,0.05020320415496826,0.03743273392319679,0.016347788274288177,0.024743778631091118,-0.03555233031511307,-0.10844263434410095,0.06357403844594955,-0.03748474642634392,0.005623027682304382,-0.014218034222722054,-0.019563429057598114,0.09367937594652176,-0.04491123557090759,-0.008118940517306328,-0.03320201858878136,0.012079712934792042,-0.07475940138101578,0.043609604239463806,-0.014680746011435986,-0.061889708042144775,0.09342588484287262,-0.04189275577664375,-0.00023669151414651424,-0.0016376887215301394,-0.02224164828658104,0.029222426936030388,-0.10872936248779297,-0.035097021609544754,0.10143611580133438,0.0316394679248333,0.040679533034563065,0.005705410148948431,-0.07636698335409164,0.011901045218110085,-0.023795070126652718,-0.0005908249877393246,0.025788769125938416,-0.06021535396575928,-0.0840279832482338,6.648545538727971e-35,-0.04678554832935333,-0.04635385423898697,-0.014071897603571415,0.03655608370900154,0.02841603383421898,0.08641624450683594,0.025069940835237503,0.0782257691025734,-0.02317628636956215,0.08266288042068481,0.013146745972335339,-0.032338812947273254,-0.00462960172444582,-0.07367929816246033,0.03077811561524868,-0.0653267353773117,0.027706926688551903,-0.00538831390440464,0.026120545342564583,0.024906715378165245,0.062237150967121124,0.08237892389297485,0.03425078094005585,0.016428567469120026,0.012500316835939884,0.02558937296271324,-0.05066768825054169,-0.022039633244276047,-0.14248478412628174,-0.012545790523290634,0.08566465973854065,-0.006824210286140442,-0.08087639510631561,-0.005431320983916521,0.004492806736379862,0.044833019375801086,0.030319727957248688,0.10527319461107254,-0.01704222336411476,-0.009328356012701988,-0.005723531823605299,-0.002849777927622199,0.038457516580820084,0.1109846830368042,0.020868727937340736,-0.04111688956618309,-0.055929034948349,0.0027610163670033216,-0.015526987612247467,0.02243342250585556,-0.12546692788600922,-0.04199441522359848,0.06858757138252258,-0.04273291304707527,0.010605351999402046,-0.04355844110250473,-0.020111549645662308,-0.044618263840675354,-0.08751431852579117,0.019513288512825966,-0.0482642725110054,-0.019413156434893608,-0.08270309865474701,0.014678382314741611,0.06993737071752548,0.0021631200797855854,-0.013645519502460957,-0.026074809953570366,-0.06706523895263672,0.0007059425697661936,-0.01927373744547367,-0.004955292213708162,-0.12352102249860764,0.048813093453645706,0.008426808752119541,-0.014663943089544773,-0.04580206051468849,0.015335812233388424,-0.015137137845158577,-0.10752302408218384,0.000038994126953184605,-0.07010933756828308,0.0278814397752285,-0.034952495247125626,0.057717639952898026,-0.007904157973825932,-0.016692813485860825,0.01752408966422081,0.09051033109426498,0.01743769645690918,0.03632521256804466,-0.005496316589415073,-0.005858737975358963,0.039939604699611664,0.009439664892852306,-2.035568513747421e-8,-0.02702491730451584,0.0644088014960289,0.09761383384466171,0.06694572418928146,-0.0008454556809738278,0.02098185569047928,-0.05635352060198784,-0.06854167580604553,-0.02062591351568699,0.018573420122265816,-0.0188202615827322,0.0870811864733696,0.010712780989706516,0.0120595283806324,-0.011641019023954868,-0.02049582451581955,-0.020877668634057045,0.029373258352279663,-0.03347824886441231,-0.06065381318330765,-0.02419290877878666,0.009443216025829315,0.06874635070562363,-0.005972923710942268,0.012495364062488079,0.042590584605932236,-0.0748935267329216,0.013169038109481335,-0.018166134133934975,-0.010710260830819607,0.06783825159072876,-0.00623804097995162,-0.06935296952724457,0.003275529248639941,-0.07828608900308609,0.03587669879198074,-0.05613457038998604,0.0026570113841444254,0.023682549595832825,0.019296377897262573,0.037584979087114334,0.08370658755302429,0.024686839431524277,0.03498836234211922,0.048320554196834564,0.1217241957783699,0.042254723608493805,-0.05330139771103859,-0.03715238347649574,0.035171136260032654,0.03095654398202896,-0.018458561971783638,-0.011564115062355995,0.08946023881435394,-0.06420227140188217,0.051176443696022034,-0.0018691563745960593,-0.014443299733102322,-0.026753397658467293,-0.05067141354084015,0.12590493261814117,-0.00939610879868269,-0.06993184983730316,-0.01236638892441988]},{"text":"I get tired of being a servant occasionally.","book":"Down and Out in Paris and London","chapter":55,"embedding":[0.010716344229876995,0.007581642363220453,0.09769683331251144,0.09201306104660034,-0.01730072870850563,-0.0632353276014328,-0.000776573724579066,-0.0831422507762909,-0.004624519497156143,0.033407945185899734,-0.06542880833148956,-0.03793511912226677,-0.012757412157952785,0.015591096132993698,0.09394661337137222,-0.061061568558216095,0.03641388565301895,0.03234587982296944,-0.022702965885400772,-0.006107701919972897,-0.06174018606543541,0.015611947514116764,-0.02141149714589119,0.016012629494071007,-0.03801252320408821,-0.055597372353076935,-0.05918976664543152,-0.08765927702188492,-0.014005357399582863,-0.039748020470142365,-0.09208621084690094,-0.010677271522581577,-0.06228630244731903,0.004049227572977543,0.019713740795850754,0.11152157932519913,0.03415076807141304,0.05005219951272011,-0.01026973593980074,0.006792506203055382,0.06038198992609978,-0.005175167694687843,0.03858913108706474,-0.03758285194635391,0.009237181395292282,-0.07258506119251251,0.001639600726775825,-0.09088397026062012,0.04316377267241478,-0.039848074316978455,0.025850096717476845,0.05317351222038269,0.033811043947935104,0.060714974999427795,0.005552247166633606,-0.005620383657515049,0.06331465393304825,0.07608480751514435,0.013118921779096127,0.017838528379797935,-0.10112489759922028,0.111623615026474,-0.0011998537229374051,0.03180524706840515,-0.013776414096355438,-0.005384792573750019,0.018775194883346558,0.02436208538711071,-0.06813037395477295,-0.006923028267920017,-0.08631807565689087,-0.05384780094027519,-0.01792461797595024,0.005624508950859308,0.04152708873152733,0.02821943908929825,0.009655236266553402,-0.11722750961780548,0.048907991498708725,0.02368275821208954,-0.07055370509624481,-0.025421418249607086,0.013648124411702156,0.10610899329185486,-0.05769651383161545,-0.07733066380023956,0.06139595806598663,0.005975300911813974,0.09452330321073532,-0.027763476595282555,0.003837205935269594,0.017284883186221123,0.05185801163315773,0.038001302629709244,0.0025028849486261606,-0.0019172481261193752,-0.04906498268246651,0.06620755046606064,-0.11989259719848633,0.07262731343507767,-0.07453128695487976,0.015598490834236145,0.03414984792470932,0.10313459485769272,-0.03506917506456375,0.045501578599214554,-0.03820963203907013,0.010308056138455868,-0.03909721598029137,-0.05766730755567551,-0.03102761134505272,0.018608473241329193,-0.06415563821792603,-0.005453474819660187,-0.039993226528167725,0.0808999091386795,-0.022108126431703568,-0.021154018118977547,-0.055548977106809616,0.14614176750183105,0.0823233351111412,0.010846467688679695,-0.053859859704971313,0.03473607450723648,0.00022355138207785785,-0.006309123244136572,0.061433061957359314,-4.4766740744868885e-33,0.009220888838171959,-0.031599607318639755,0.08299985527992249,0.06702886521816254,0.012696447782218456,0.03704183176159859,0.013932487927377224,0.11129017174243927,0.02970121242105961,-0.031890206038951874,0.06940996646881104,0.06678812950849533,-0.10376963019371033,-0.013355808332562447,-0.029109111055731773,0.00015539424202870578,-0.006913757883012295,0.006655121687799692,0.08630751073360443,-0.019794324412941933,-0.012851628474891186,0.008556787855923176,-0.04520159587264061,0.06588827818632126,0.037885215133428574,-0.021532053127884865,0.024605223909020424,0.0007395906723104417,-0.01642421819269657,0.03849443048238754,0.05562538653612137,0.014502163976430893,0.02485792525112629,-0.02116226963698864,-0.0669003278017044,-0.054037608206272125,-0.013175957836210728,0.04150751233100891,-0.04383932426571846,-0.058289311826229095,-0.08194921165704727,-0.006444593425840139,0.08004441112279892,0.02726702019572258,-0.028448035940527916,-0.014696650207042694,0.10775981843471527,-0.030262785032391548,-0.05958976224064827,0.09561578929424286,0.035792723298072815,0.045887675136327744,0.07644598931074142,0.07680098712444305,-0.012653887271881104,-0.07545153796672821,0.018020614981651306,0.00020958356617484242,-0.010392858646810055,-0.052077457308769226,0.027237607166171074,-0.02657184936106205,-0.009061465971171856,0.07318662852048874,-0.0035824121441692114,-0.024298567324876785,-0.007994408719241619,0.07314764708280563,0.0008129211491905153,0.021897513419389725,-0.01260689552873373,0.004950397182255983,-0.04243914783000946,-0.017302222549915314,0.009213404729962349,-0.0455324724316597,0.048269860446453094,-0.11014755815267563,-0.06939015537500381,-0.11288831382989883,0.07644511014223099,0.011861046776175499,-0.027049122378230095,0.007019557058811188,0.10546522587537766,-0.03333893045783043,0.0013852175325155258,-0.10691340267658234,0.0746174231171608,0.03966999426484108,0.02478804625570774,-0.03330201283097267,-0.003992467653006315,0.01787598244845867,-0.0896754115819931,3.853086076319173e-33,0.03320624679327011,-0.04166868329048157,0.006928283255547285,0.007385640870779753,-0.04692146182060242,-0.04877569153904915,-0.05808742716908455,0.027925707399845123,-0.07230410724878311,0.07348260283470154,-0.03299965336918831,0.006269341334700584,0.0020602382719516754,0.03746841847896576,-0.01667146012187004,-0.10450507700443268,-0.009785445407032967,0.03321808576583862,0.016127686947584152,0.02846069075167179,-0.019200647249817848,0.12930043041706085,0.027939746156334877,-0.05277629196643829,-0.07798556983470917,0.009790193289518356,-0.08794795721769333,0.07351504266262054,-0.0601080060005188,-0.0701894611120224,0.015300434082746506,-0.014425341039896011,-0.052189189940690994,-0.09175928682088852,-0.016379334032535553,0.003830678528174758,-0.06702205538749695,0.06734347343444824,0.02149055153131485,0.051151957362890244,-0.03976275399327278,-0.08111759275197983,0.0569264180958271,0.01932910829782486,0.018886692821979523,-0.030960416421294212,0.08412197977304459,-0.03350655734539032,0.028680631890892982,0.044673651456832886,-0.042444221675395966,0.010847299359738827,-0.050106316804885864,-0.035250745713710785,0.01800423301756382,0.007087360136210918,-0.04508986324071884,-0.0060473112389445305,-0.025697976350784302,0.013725186698138714,-0.008376147598028183,0.02267751656472683,-0.0008211826789192855,0.05801526457071304,0.08886571228504181,-0.0489787794649601,0.04576405510306358,0.01836414448916912,0.004679583944380283,0.041650936007499695,-0.007167340721935034,-0.011671783402562141,-0.033184196799993515,0.02111213468015194,-0.009520000778138638,-0.009230338037014008,0.019307637587189674,-0.08536060154438019,-0.005512113682925701,-0.08930694311857224,-0.048419490456581116,-0.07327018678188324,0.05706414207816124,-0.04099351167678833,-0.11268498748540878,-0.010746276937425137,0.012628584168851376,0.1102943941950798,0.03951551392674446,0.021679816767573357,0.025731757283210754,-0.03815299645066261,-0.044599972665309906,-0.0018445162568241358,0.039191510528326035,-1.7762555870604047e-8,0.0467962846159935,-0.036068394780159,0.05345600098371506,0.000008775659807724878,0.03191681206226349,-0.07559861987829208,0.0011143398005515337,-0.009080223739147186,-0.011065230704843998,0.0046904669143259525,0.08159565925598145,-0.04309428483247757,0.0975802093744278,-0.04200108349323273,0.127102792263031,0.045950934290885925,0.09357593953609467,-0.06652924418449402,-0.06524966657161713,-0.013777296990156174,-0.0475766658782959,-0.003923095762729645,-0.026547707617282867,-0.05072370544075966,-0.0815020427107811,0.012970010749995708,-0.06570025533437729,-0.02692710980772972,0.009004201740026474,0.052106454968452454,0.04026443511247635,0.032814353704452515,-0.0019046097295358777,0.008675825782120228,-0.041107915341854095,0.017730388790369034,-0.04809999093413353,-0.08416769653558731,-0.017424630001187325,0.009666156023740768,0.00945376604795456,0.06782092154026031,0.012345371767878532,0.07019884139299393,0.019963338971138,0.10589493811130524,0.06519324332475662,0.04405393451452255,0.00798692274838686,0.05234340578317642,0.01144164428114891,-0.029322121292352676,0.04721236601471901,-0.0154036283493042,0.015393925830721855,-0.008871527388691902,0.06698411703109741,0.027617279440164566,0.01889072172343731,0.07185487449169159,0.05402437970042229,-0.07273664325475693,-0.10174956917762756,-0.030160682275891304]},{"text":"We shall have our evenings to ourselves; and I shall be master in my own house, I promise you. (_He throws the logs down and kneels at the stove._) LOUKA.","book":"Down and Out in Paris and London","chapter":55,"embedding":[0.018448183313012123,0.0829039067029953,0.03539417311549187,-0.005208638962358236,-0.013448584824800491,-0.030579082667827606,0.03907734900712967,-0.077457495033741,-0.0031462563201785088,-0.048388004302978516,-0.046620603650808334,-0.030130188912153244,-0.022458184510469437,-0.036674484610557556,0.06089446693658829,-0.005929945036768913,0.010278531350195408,-0.03228624537587166,0.019547345116734505,0.0689796656370163,-0.006591580342501402,0.023804495111107826,0.03607127442955971,0.010683311149477959,0.029087772592902184,0.014349663630127907,0.07899845391511917,-0.007339597679674625,-0.010545098222792149,-0.061613429337739944,0.006149551831185818,0.004590431693941355,-0.05174747109413147,0.07125891745090485,0.01395194698125124,0.02054494246840477,-0.02273179590702057,-0.06143295019865036,0.06762814521789551,0.045746684074401855,0.0734381377696991,-0.04102785140275955,-0.012918293476104736,0.012996927835047245,-0.07540147006511688,0.053820185363292694,-0.0820712223649025,-0.04574974626302719,-0.04677708446979523,0.0021237926557660103,-0.09856653958559036,0.07760392129421234,-0.003237371798604727,0.09156756848096848,0.0079617565497756,0.029929108917713165,0.06982092559337616,-0.058220356702804565,0.03094281069934368,0.07650410383939743,-0.06339578330516815,0.11885805428028107,-0.038668639957904816,0.060481343418359756,-0.0005749330157414079,-0.15351490676403046,-0.03752319514751434,0.09051051735877991,-0.12744414806365967,0.13749802112579346,-0.06831539422273636,0.021904533728957176,-0.007726934272795916,-0.0010890027042478323,-0.03518602252006531,-0.10537783056497574,-0.0386664904654026,-0.07768160849809647,0.0724906176328659,0.028453433886170387,-0.06916327774524689,0.023940112441778183,-0.03257601335644722,0.05971392244100571,-0.18168622255325317,0.015592066571116447,0.0638219490647316,0.08540282398462296,0.06960798054933548,-0.02405504696071148,-0.025077683851122856,-0.04763343557715416,-0.045381903648376465,0.01241640467196703,-0.0040470631793141365,0.03511643037199974,-0.03488264977931976,-0.03631201013922691,-0.08732067048549652,0.03598424419760704,0.005663663148880005,0.0082953916862607,0.019931361079216003,-0.018285494297742844,-0.09783855080604553,0.03573458269238472,-0.05109110102057457,-0.008299675770103931,0.03004189394414425,-0.04345982149243355,0.019728610292077065,-0.056782472878694534,-0.01563679426908493,-0.020128503441810608,0.010740410536527634,0.015865681692957878,0.029441429302096367,-0.07963216304779053,-0.03829055652022362,0.03731372207403183,0.041454266756772995,0.020767230540513992,0.057881101965904236,0.07165685296058655,0.06030317768454552,-0.04955364763736725,-0.0711977481842041,-5.519806292038648e-33,0.08581572771072388,0.014798510819673538,-0.0421125628054142,0.03454660624265671,0.09277619421482086,0.055447790771722794,-0.056731801480054855,0.00045325991231948137,-0.045651573687791824,0.02978348545730114,0.006643205415457487,0.021366605535149574,-0.07598381489515305,0.03505866602063179,-0.05373581871390343,0.10523765534162521,0.03641332685947418,-0.038144949823617935,-0.0021011957433074713,0.0033381301909685135,0.0345420204102993,0.01963026635348797,-0.0010410487884655595,0.010095450095832348,-0.034095220267772675,-0.09915240854024887,0.023362182080745697,-0.07016801834106445,-0.028256138786673546,0.022539522498846054,0.03625058755278587,0.043185483664274216,-0.010058442130684853,0.044717516750097275,0.01738283410668373,-0.01731014810502529,-0.0629182904958725,-0.03602189943194389,-0.13213956356048584,-0.009350012987852097,-0.04235212504863739,0.015398531220853329,0.029961921274662018,0.02817569114267826,-0.02763804979622364,0.0039401487447321415,0.036628466099500656,0.06804820895195007,0.03419220820069313,-0.027721434831619263,-0.055245764553546906,0.02424735203385353,0.053446508944034576,-0.046080853790044785,0.046239644289016724,-0.0017836038023233414,-0.008448324166238308,0.010640880092978477,0.07151099294424057,-0.0389435812830925,0.014692901633679867,-0.10409629344940186,0.005524138920009136,-0.032702747732400894,0.006634989753365517,-0.09169185906648636,0.048912905156612396,0.04013274982571602,0.056378040462732315,-0.04948064312338829,-0.031857941299676895,-0.07739013433456421,-0.04116622358560562,-0.003682073438540101,-0.020854564383625984,-0.004686128813773394,0.025214266031980515,0.0064180707558989525,0.006557234097272158,-0.029466846957802773,0.055025991052389145,-0.02138359285891056,-0.04437568783760071,0.0395611897110939,0.06134326756000519,-0.019730087369680405,0.01876966841518879,-0.06871258467435837,-0.06644967198371887,0.09338631480932236,-0.049353402107954025,0.02688535302877426,0.07534809410572052,-0.04361869767308235,-0.053116634488105774,2.007545435519789e-33,0.07535006105899811,-0.006963216233998537,-0.09268347173929214,0.08966270089149475,0.06011522561311722,-0.06094345450401306,-0.018474794924259186,-0.01754428818821907,0.04580310359597206,0.030727900564670563,-0.05294638127088547,0.024260323494672775,0.004199386574327946,0.009183601476252079,0.05841754376888275,-0.08064109832048416,0.06326473504304886,0.032650165259838104,0.02886677347123623,-0.01771652139723301,-0.020535321906208992,0.09191786497831345,-0.012865908443927765,0.004652600269764662,0.0032856257166713476,0.025266950950026512,0.04028201103210449,0.053836382925510406,-0.10217037796974182,0.017354385927319527,-0.00990353710949421,-0.05911465361714363,-0.07327545434236526,-0.029142839834094048,0.04559827968478203,0.021654298529028893,0.018945913761854172,-0.016065290197730064,-0.07973163574934006,0.01404588483273983,0.036193232983350754,-0.06277736276388168,0.058591119945049286,0.007641240488737822,-0.011844545602798462,-0.07619692385196686,-0.06010963395237923,-0.002934751333668828,0.034135330468416214,0.029989423230290413,0.021093815565109253,-0.04337233304977417,-0.08169079571962357,-0.035234492272138596,-0.033545080572366714,-0.02636684477329254,0.047276854515075684,-0.0191926471889019,0.06617340445518494,0.023416563868522644,-0.022511662915349007,-0.0010284167947247624,0.0259415153414011,0.06731836497783661,-0.03846948221325874,-0.006209611892700195,-0.03378637507557869,0.011232458986341953,-0.005224047694355249,0.06078692153096199,-0.020784087479114532,-0.01583792455494404,-0.07772039622068405,0.06407076865434647,0.026703104376792908,0.04594307765364647,0.05280333012342453,-0.03305502608418465,0.01802329160273075,-0.08509495854377747,-0.007702352944761515,-0.07481477409601212,-0.06900421530008316,-0.009310178458690643,0.02586357295513153,-0.14527277648448944,0.007992742583155632,0.021768078207969666,-0.019532395526766777,0.022513389587402344,0.030722977593541145,0.05291377753019333,0.03802914172410965,-0.05502099171280861,0.01262660976499319,-3.3104605279277166e-8,-0.07005619257688522,-0.0073670572601258755,-0.046154316514730453,0.015759708359837532,0.0574750080704689,-0.04968119412660599,0.08512873202562332,-0.06418658047914505,-0.02974257431924343,0.04436367750167847,0.058129046112298965,0.052334416657686234,0.12579277157783508,0.009106396697461605,0.11908596754074097,-0.026636715978384018,-0.00010224682773696259,0.003552658949047327,-0.04571658372879028,0.00491754338145256,0.05746867507696152,0.004520168527960777,0.01658668741583824,-0.006906936410814524,-0.05250000208616257,0.00963735580444336,0.005578749347478151,0.051661379635334015,0.02253510057926178,0.10976515710353851,0.0620560422539711,0.08494743704795837,-0.06327730417251587,-0.02516845054924488,-0.06963914632797241,-0.02290576882660389,-0.0675630271434784,-0.012375644408166409,-0.004505055025219917,-0.040651820600032806,-0.03456411138176918,0.00033151148818433285,-0.011827521957457066,-0.04021385312080383,-0.02419660985469818,-0.06667342036962509,0.04405838996171951,-0.005468136630952358,-0.03382425755262375,-0.0034158509224653244,-0.03568123281002045,0.008705871179699898,0.1000843420624733,0.013271916657686234,0.08564199507236481,-0.08031325787305832,0.05255219340324402,-0.014623397961258888,0.04982750117778778,-0.03169182687997818,0.09729332476854324,0.015506977215409279,-0.055557142943143845,-0.09250833839178085]},{"text":"Me! do you hear that? me! (_She tosses her head defiantly; and he rises, ill-humoredly, adding more coolly_) I’ve often thought that if Raina were out of the way, and you just a little less of a fool and Sergius just a little more of one, you might come to be one of my grandest customers, instead of only being my wife and costing me money.","book":"Down and Out in Paris and London","chapter":55,"embedding":[-0.0173940472304821,-0.02495882473886013,0.08452468365430832,-0.015765346586704254,0.013978002592921257,-0.03682195022702217,0.19995565712451935,-0.012819712981581688,-0.01766298897564411,-0.03460589796304703,-0.09245023131370544,-0.0654013454914093,-0.018677741289138794,-0.039714232087135315,0.04056873172521591,0.004917981568723917,0.03886749967932701,-0.05184125900268555,-0.03483859449625015,0.07785605639219284,-0.052520252764225006,-0.004171456675976515,0.049410175532102585,0.05540173500776291,-0.08892591297626495,-0.02624020352959633,0.04292459413409233,0.018372340127825737,-0.04590277001261711,-0.03396264463663101,-0.026885513216257095,0.0860271006822586,0.005580872762948275,-0.012560250237584114,0.02963743545114994,0.05348103493452072,0.03248118609189987,-0.026078984141349792,0.05901770666241646,0.016687361523509026,0.016087694093585014,0.004554298240691423,-0.04838201776146889,-0.02103544771671295,-0.06897477060556412,-0.0885009840130806,0.04006391018629074,0.037631500512361526,0.004106149543076754,-0.0059385825879871845,-0.03896600753068924,0.04626518860459328,-0.022035550326108932,-0.01450923178344965,-0.03581172972917557,-0.006508452817797661,0.09776875376701355,-0.004969617817550898,0.026249058544635773,0.0516459122300148,-0.056375861167907715,0.03357601910829544,0.002998693846166134,0.08170728385448456,0.05011187866330147,-0.0827411338686943,-0.060334719717502594,0.06787838041782379,-0.12562903761863708,0.0973435640335083,0.020006176084280014,0.05487890541553497,0.006221740040928125,0.08298551291227341,-0.06700588762760162,-0.0010471937712281942,0.07023798674345016,-0.033892467617988586,0.0978233590722084,0.09228797256946564,-0.014153107069432735,-0.048213861882686615,0.05210806429386139,0.033897798508405685,-0.04959296062588692,-0.04061337187886238,0.03464656323194504,-0.059851862490177155,0.05748724564909935,-0.07122360169887543,-0.04908010736107826,-0.01932877115905285,-0.020616112276911736,0.07336947321891785,0.01810457371175289,0.030387260019779205,-0.02588207833468914,-0.050244469195604324,-0.05615823715925217,0.06840778887271881,0.030007218942046165,0.04480035603046417,0.07779408246278763,-0.02376752346754074,-0.025782134383916855,0.02915872260928154,-0.08785821497440338,-0.00583819393068552,-0.0331692174077034,-0.0498703233897686,-0.04516379162669182,-0.07373066246509552,0.03231729567050934,-0.008070461452007294,0.04672497510910034,-0.01095511019229889,-0.02606593444943428,-0.013332168571650982,-0.07319825142621994,0.0030378953088074923,0.0367061048746109,0.06634541600942612,-0.014297666028141975,0.06475398689508438,0.043345414102077484,-0.009992171078920364,-0.04903215914964676,1.7331454270212748e-34,0.02047155797481537,0.028310619294643402,0.02628651075065136,0.021402133628726006,0.09796138107776642,-0.008891225792467594,-0.02765549346804619,0.027368182316422462,-0.04615357890725136,0.021288754418492317,-0.09557775408029556,-0.005220548249781132,-0.04558894783258438,-0.005198948085308075,-0.1013912633061409,0.08335423469543457,-0.039287637919187546,-0.03339870646595955,0.008529768325388432,0.017678286880254745,0.026544852182269096,-0.006065863650292158,0.04508840665221214,-0.03119020350277424,-0.04418989643454552,-0.026857782155275345,0.06885809451341629,0.03500723838806152,0.09421593695878983,0.04261627048254013,-0.03974725678563118,0.008281300775706768,0.10630378872156143,-0.04556277021765709,-0.007403454277664423,-0.01490230206400156,-0.08463650941848755,-0.01208614744246006,-0.05174287036061287,0.035178933292627335,-0.07675874978303909,-0.027601221576333046,0.06736420094966888,0.008468934334814548,-0.1609378457069397,-0.04817776754498482,-0.022007424384355545,0.0767306536436081,-0.013242230750620365,-0.05494939908385277,-0.030331553891301155,0.00985340029001236,0.021892927587032318,0.053991205990314484,0.02520199492573738,-0.019350199028849602,0.05476634204387665,-0.06245047599077225,0.14006026089191437,-0.001953222556039691,-0.003162184963002801,-0.02895442210137844,0.032219305634498596,-0.09506412595510483,0.03991661220788956,-0.055965956300497055,-0.034286465495824814,0.022917786613106728,-0.028262272477149963,-0.005193839315325022,0.009427027776837349,0.021699128672480583,-0.08307122439146042,0.06311113387346268,-0.021589023992419243,-0.04985380917787552,-0.007287622429430485,-0.0017213270766660571,0.08804742246866226,-0.04662705212831497,0.02229955606162548,0.025307178497314453,-0.028367336839437485,0.05288650840520859,0.0057309516705572605,-0.032081007957458496,0.035118088126182556,0.006902758497744799,-0.04888651892542839,0.03249470517039299,0.026591671630740166,0.05355008319020271,0.09996415674686432,-0.10130363702774048,-0.013811327517032623,-2.865760453072702e-33,-0.002908100839704275,0.0007263788138516247,-0.0421992689371109,0.014612918719649315,-0.01811329461634159,0.021680094301700592,0.03125728666782379,0.0022946889512240887,0.05418982729315758,0.04354395717382431,-0.07326096296310425,-0.009029759094119072,-0.01772245392203331,-0.051820870488882065,0.02082115039229393,-0.10672060400247574,0.06691091507673264,-0.028650127351284027,0.020433126017451286,-0.07417565584182739,-0.007981142960488796,-0.03914273902773857,0.018910693004727364,-0.02588891051709652,-0.04658995568752289,-0.07017840445041656,0.0673072338104248,0.012469364330172539,-0.08231265097856522,-0.0020867660641670227,0.004632672760635614,-0.0666283667087555,-0.13193610310554504,-0.01457503903657198,0.06101720780134201,-0.008553110994398594,-0.09771770983934402,-0.09819002449512482,-0.005602092482149601,0.011839124374091625,-0.06865257769823074,-0.07690417021512985,0.08598675578832626,0.024824362248182297,0.052867017686367035,-0.024321146309375763,0.03648272901773453,0.014913409948348999,0.03831321746110916,0.0036021764390170574,-0.09848961979150772,-0.05569379776716232,-0.0004935343749821186,0.08176051825284958,-0.0005416428321041167,0.0037710522301495075,0.09087607264518738,-0.011049546301364899,0.011951099149882793,-0.017855824902653694,-0.022608570754528046,-0.058803971856832504,0.01563860848546028,0.016010763123631477,-0.0046310145407915115,-0.05307213217020035,-0.01854425109922886,-0.04387487843632698,0.03899747505784035,-0.012364856898784637,0.03309722989797592,-0.04678495600819588,-0.11777464300394058,0.022567693144083023,-0.0030132830142974854,0.03965748846530914,-0.031562816351652145,-0.08257332444190979,0.0012998591409996152,-0.10231524705886841,-0.004232478328049183,-0.004025598987936974,0.010924248024821281,-0.050197944045066833,0.007717930246144533,-0.0662836804986,-0.0025847405195236206,0.021372947841882706,-0.012984747998416424,0.0676778256893158,0.05861765518784523,0.013361332006752491,0.0781855657696724,-0.09822536259889603,0.0021258285269141197,-5.047419193715541e-8,-0.07439318299293518,-0.02446666546165943,0.034291449934244156,-0.03747112676501274,0.02239844761788845,0.0004186175065115094,0.012637912295758724,0.018452294170856476,-0.02772851660847664,-0.08905047178268433,0.08712101727724075,0.05561548098921776,0.10669852793216705,0.045332346111536026,0.09140710532665253,0.11991358548402786,0.08479883521795273,0.013807076029479504,-0.042750656604766846,-0.09981882572174072,0.04650791734457016,0.07492367178201675,0.02291370928287506,-0.0266265906393528,-0.024233940988779068,0.041142262518405914,-0.014102389104664326,0.037397921085357666,0.00122086051851511,0.0015672285808250308,0.02322237752377987,0.0511963851749897,-0.11065228283405304,-0.037261828780174255,-0.01595480740070343,0.006186291575431824,-0.015112131834030151,0.06550097465515137,-0.03800903260707855,0.011009474284946918,-0.018071400001645088,-0.0005732435383833945,-0.032241061329841614,0.018959911540150642,0.03214089572429657,0.03945545852184296,0.04270153492689133,0.014110698364675045,-0.04394043609499931,0.016551658511161804,-0.05465048924088478,-0.027163544669747353,0.071585513651371,0.03888258337974548,0.03281039372086525,-0.03188663348555565,-0.04747691750526428,-0.03328496590256691,-0.048545338213443756,0.013943953439593315,0.05677833780646324,-0.031183604151010513,-0.04009991139173508,-0.054102834314107895]},{"text":"If you want to be a lady, your present behaviour to me won’t do at all, unless when we’re alone.","book":"Down and Out in Paris and London","chapter":56,"embedding":[0.006769072264432907,-0.09376887232065201,0.012631883844733238,0.01610933057963848,-0.03156092390418053,-0.06314723193645477,-0.007330841384828091,-0.057437390089035034,-0.004346722736954689,0.0033961848821491003,-0.010411283001303673,-0.056683409959077835,-0.013720916584134102,-0.0038473119493573904,0.07469581812620163,0.03837834671139717,0.029580337926745415,-0.07655909657478333,0.028677446767687798,0.07771673053503036,0.009119170717895031,-0.022768031805753708,0.06364572048187256,-0.04904671758413315,-0.05169669911265373,-0.07280410826206207,-0.0077883475460112095,-0.06211163476109505,0.041544169187545776,0.022785793989896774,0.030453504994511604,0.0398532934486866,-0.011626544408500195,-0.013051358982920647,-0.07923635840415955,0.03846892714500427,-0.04682740569114685,-0.057455938309431076,0.09058072417974472,0.07099559158086777,-0.051096443086862564,-0.04277288168668747,0.08942100405693054,0.00403651362285018,0.052270084619522095,0.06348463147878647,0.023552795872092247,-0.012627992779016495,-0.05310811474919319,-0.11587167531251907,0.02999577857553959,0.06246586889028549,-0.016355637460947037,0.019131146371364594,0.05096494406461716,0.005455314181745052,0.050090204924345016,0.06418973207473755,0.016697077080607414,-0.0110925929620862,-0.036187998950481415,0.04932631179690361,0.004263274371623993,0.05834885314106941,0.012143298052251339,0.012198412790894508,-0.02113874815404415,0.09135910868644714,0.011655678041279316,0.05801329016685486,-0.054187189787626266,0.020846998319029808,-0.08023076504468918,0.05244113504886627,-0.0013008490204811096,-0.02461289055645466,0.07605407387018204,-0.03266999125480652,0.04385525733232498,0.08716540783643723,-0.13644985854625702,-0.046196796000003815,0.013036499731242657,0.029798153787851334,-0.07410924881696701,-0.0652393028140068,0.0048847501166164875,0.01077229529619217,0.000996362534351647,0.03954372555017471,-0.14387449622154236,0.00826113298535347,-0.025340186432003975,-0.019207339733839035,-0.027315545827150345,0.003994027618318796,-0.14347653090953827,0.06965979933738708,-0.02685576304793358,0.03486432507634163,0.05089723318815231,0.09925034642219543,0.056403715163469315,0.12118200957775116,-0.03507446125149727,0.018732542172074318,0.05356989800930023,-0.028570134192705154,-0.030371172353625298,-0.039267055690288544,-0.011840400286018848,0.007999280467629433,-0.06449592113494873,0.0052629923447966576,-0.007288278080523014,-0.043242182582616806,0.04448441416025162,-0.025830306112766266,0.019652996212244034,-0.02140071801841259,-0.017248617485165596,-0.033740442246198654,0.012358500622212887,0.038081880658864975,0.02993084490299225,-0.06019733473658562,0.009119590744376183,-5.175462854380521e-33,0.03415578976273537,-0.0181619580835104,0.02080286294221878,0.014886760152876377,-0.0021420696284621954,0.07068842649459839,0.02671913243830204,-0.031124893575906754,0.05895645171403885,0.014542851597070694,0.10310374945402145,-0.023631878197193146,-0.06702125072479248,-0.04365311935544014,-0.0127881383523345,0.0814691111445427,0.04920301213860512,0.025072678923606873,0.018262429162859917,-0.0006567327072843909,0.0044008647091686726,-0.015949934720993042,0.037764377892017365,-0.020356791093945503,-0.0016959789209067822,-0.06294098496437073,0.06630120426416397,-0.09124477207660675,-0.02766672894358635,-0.0031138011254370213,-0.013384598307311535,0.03596407175064087,-0.0678195133805275,0.02100817859172821,0.051531512290239334,0.03812561556696892,-0.06811821460723877,0.05609508231282234,-0.032376479357481,0.0011014888295903802,0.006580483168363571,-0.01985708437860012,0.019394898787140846,-0.035860225558280945,-0.08622623980045319,-0.02507886290550232,0.03864523395895958,0.0484488271176815,-0.062427494674921036,-0.008307522162795067,-0.07034790515899658,0.0383157804608345,-0.00846328865736723,-0.01535545289516449,-0.0636594295501709,-0.10219404846429825,0.05471158027648926,-0.015841497108340263,0.027569029480218887,-0.050775088369846344,-0.005636725574731827,-0.04079999029636383,-0.010053235106170177,-0.017213983461260796,-0.06729937344789505,-0.046958353370428085,0.0693109780550003,0.015799690037965775,0.03815288469195366,-0.02914927341043949,0.006343817804008722,0.03869300335645676,-0.07982087880373001,0.019637485966086388,0.034439798444509506,-0.019235482439398766,0.03507329896092415,-0.08692266792058945,0.054208703339099884,-0.0856359526515007,0.049118366092443466,0.047326888889074326,-0.10032576322555542,0.04215849190950394,0.08173529803752899,-0.0017323357751592994,0.008357378654181957,-0.07073862105607986,0.03835063427686691,0.025375453755259514,-0.0072227600030601025,-0.0199529230594635,0.003609349951148033,0.009054500609636307,-0.01588059961795807,2.1175663802979778e-33,0.07727039605379105,0.02547285333275795,-0.022724224254488945,-0.043784864246845245,-0.02021685801446438,0.006550215184688568,-0.0236955713480711,0.03885676711797714,0.005041172262281179,0.04532161355018616,-0.050027552992105484,-0.030505139380693436,0.005247798282653093,-0.008624128066003323,-0.03900442644953728,-0.0814964771270752,-0.022219879552721977,-0.03695790097117424,-0.005222239997237921,0.027666984125971794,-0.11076495051383972,0.13519254326820374,-0.009672330692410469,0.026906434446573257,-0.07425840198993683,0.053822048008441925,0.03363901749253273,-0.05698894336819649,-0.0014389845309779048,-0.032965708523988724,0.02185721881687641,-0.06825046986341476,-0.1608966439962387,-0.05109764635562897,0.08051934838294983,0.005030385684221983,-0.052092745900154114,0.07739658653736115,0.07643938064575195,0.04549523442983627,-0.09028786420822144,-0.025047803297638893,-0.06244871765375137,0.0001430158008588478,0.11616096645593643,-0.041928697377443314,0.02889089100062847,0.040959928184747696,0.009882189333438873,0.08317482471466064,-0.06665059924125671,0.04638136178255081,0.04037698358297348,-0.07173831015825272,-0.029608096927404404,0.0016161727253347635,0.08941568434238434,0.022700384259223938,-0.018296366557478905,0.00548529950901866,-0.017384927719831467,0.051112100481987,-0.07783229649066925,-0.021874889731407166,-0.06860224157571793,0.01160114724189043,-0.01970413699746132,0.019645199179649353,0.06768947094678879,-0.003423035144805908,0.04652860388159752,0.00939357653260231,-0.027698885649442673,-0.022273439913988113,-0.016352074220776558,-0.04981283098459244,0.009753243997693062,-0.12537705898284912,0.008686501532793045,-0.07888168841600418,0.028849737718701363,-0.009289881214499474,0.08114641904830933,-0.09868674725294113,-0.06948713958263397,-0.02469773218035698,0.019835935905575752,0.054306965321302414,-0.016170382499694824,-0.05200132355093956,-0.04484208673238754,0.028654495254158974,-0.010243095457553864,-0.019538916647434235,0.029403427615761757,-3.1859574534109925e-8,-0.01523927878588438,0.02271333523094654,0.06452517211437225,-0.03560236096382141,0.06837839633226395,0.031401246786117554,-0.07419238239526749,-0.08605208247900009,0.023018425330519676,-0.04164772853255272,0.04576320946216583,-0.055241912603378296,0.10320636630058289,-0.019254175946116447,0.05198470130562782,0.03280813992023468,0.059318553656339645,-0.07141445577144623,-0.05616515874862671,0.03219705820083618,0.06152347847819328,-0.08745519071817398,-0.06098797917366028,-0.0041151647455990314,-0.04543229192495346,0.017143430188298225,0.05974527448415756,0.04789722338318825,-0.034526433795690536,0.009237758815288544,0.12138226628303528,0.10743880271911621,-0.030269736424088478,-0.028370119631290436,-0.042380183935165405,-0.006913775112479925,0.11044272780418396,-0.00806855596601963,-0.0019808681681752205,-0.006845091935247183,-0.044206880033016205,-0.030489960685372353,0.040578339248895645,0.11006294935941696,-0.04510747268795967,0.09197060763835907,0.0003393252845853567,-0.05309112370014191,-0.017880462110042572,0.055870093405246735,0.0801227018237114,-0.033571720123291016,0.04386682063341141,0.04184838384389877,0.08503944426774979,0.05719636380672455,0.01869954541325569,0.015625985339283943,0.044968072324991226,0.008763261139392853,0.04404338449239731,0.002392482478171587,-0.0561600998044014,-0.07605789601802826]},{"text":"Act as if you expected to have your own way, not as if you expected to be ordered about.","book":"Down and Out in Paris and London","chapter":56,"embedding":[-0.006402927916496992,-0.01487853191792965,0.07440491020679474,0.012848639860749245,-0.03453179448843002,0.03431975468993187,-0.006083475425839424,-0.06231984868645668,0.013569633476436138,0.03270893543958664,0.10914403945207596,0.0684233084321022,-0.01789993979036808,-0.03442755341529846,0.039672039449214935,-0.05378398299217224,0.032137949019670486,-0.06249793991446495,-0.09644629061222076,0.11606607586145401,0.0034633036702871323,-0.027792342007160187,0.01719025708734989,0.044523339718580246,-0.04329448938369751,-0.03693998232483864,-0.06057518348097801,-0.0075752828270196915,-0.00120048807002604,-0.027415184304118156,-0.001071628532372415,0.003111309139057994,0.03385753929615021,0.05722656473517418,-0.0430307611823082,-0.03536002337932587,0.01252228207886219,-0.07990410178899765,0.005580281373113394,-0.08480039238929749,0.02661050669848919,-0.009267858229577541,0.020554134622216225,0.026182938367128372,-0.011119434610009193,-0.010236203670501709,0.009592859074473381,-0.029720023274421692,-0.006597122177481651,-0.04431398585438728,-0.11472520232200623,0.006111137103289366,-0.1589767336845398,0.0002247595984954387,0.001888640341348946,0.08199523389339447,-0.0038861020002514124,-0.03155657276511192,0.009796510450541973,-0.001995751401409507,-0.0281162578612566,-0.014262538403272629,-0.054043032228946686,0.013521297834813595,0.020966729149222374,0.05948497727513313,0.034175485372543335,0.02296437695622444,-0.07084143906831741,0.056724146008491516,-0.01989281363785267,-0.046207766979932785,0.01657949946820736,0.13188014924526215,-0.012980472296476364,-0.004888324532657862,0.022913824766874313,-0.03195318207144737,-0.04646055027842522,0.052561838179826736,-0.16135966777801514,0.01908189430832863,-0.014196382835507393,0.049670349806547165,0.024495763704180717,-0.021939605474472046,-0.002454329514876008,0.002324585570022464,0.0989503413438797,0.046930037438869476,-0.10686790198087692,-0.07037249952554703,0.013645673170685768,0.014471173286437988,0.007981101982295513,0.019092027097940445,0.008741452358663082,-0.001222770195454359,-0.022977828979492188,0.06520535796880722,0.012392918579280376,0.04106902331113815,-0.012205921113491058,-0.01194917131215334,0.026905694976449013,-0.0528799332678318,-0.04502373933792114,-0.07064388692378998,-0.04949336498975754,-0.009899614378809929,-0.0759991928935051,-0.07885849475860596,0.06937795877456665,-0.05360899120569229,0.015967529267072678,0.059524279087781906,-0.029252713546156883,0.06012486293911934,0.012833304703235626,-0.06631877273321152,0.0033480150159448385,0.06468451023101807,0.02673153579235077,0.05216400325298309,-0.07424164563417435,-0.0583074614405632,0.11165167391300201,-3.729022198481481e-33,-0.03794819489121437,-0.025031210854649544,0.08967630565166473,-0.017096227034926414,0.050581879913806915,0.018249504268169403,-0.009661451913416386,-0.046176571398973465,0.05074070394039154,0.05215417593717575,0.08958723396062851,0.021824531257152557,0.08522562682628632,0.034504733979701996,-0.07474162429571152,0.023730063810944557,-0.026431778445839882,0.0985250324010849,0.041907064616680145,0.010046293959021568,0.014709921553730965,-0.050406377762556076,-0.04643672704696655,-0.056147199124097824,-0.018899433314800262,-0.08267807960510254,-0.04710429161787033,0.023804379627108574,-0.0020714595448225737,-0.0002996586263179779,0.02481265924870968,-0.0021017889957875013,0.01688425801694393,-0.014376020058989525,0.025798240676522255,0.01870206743478775,-0.0594799630343914,-0.008191358298063278,0.008433901704847813,-0.07788146287202835,-0.002683936385437846,0.003038588212803006,-0.04164878651499748,0.007053386885672808,-0.00683428393676877,0.07376585900783539,0.026380473747849464,-0.02755347639322281,0.025606760755181313,-0.03119019605219364,0.0044975895434618,0.023312967270612717,0.1362808644771576,0.015763815492391586,-0.029993752017617226,-0.09022482484579086,0.07004055380821228,0.027330489829182625,0.030610276386141777,-0.054808758199214935,0.018729792907834053,-0.02920524775981903,-0.03513709828257561,0.08433960378170013,-0.0528542622923851,-0.059520479291677475,-0.022414257749915123,-0.0553646944463253,0.04003407061100006,-0.04790893942117691,0.0262419655919075,0.029520926997065544,-0.09660448133945465,0.042761433869600296,-0.07015015929937363,0.022429566830396652,-0.08770768344402313,-0.06048344820737839,0.08343417197465897,-0.14185041189193726,0.007771290838718414,0.01560357864946127,-0.04361778497695923,0.07356226444244385,0.06742296367883682,0.0574471689760685,0.05459427833557129,-0.02961965650320053,0.06282950937747955,0.06998926401138306,0.019955018535256386,0.002445697085931897,-0.0013720004353672266,0.010550473816692829,0.06697434186935425,1.9746622667524816e-33,0.028188204392790794,0.025664763525128365,-0.023604070767760277,0.019582413136959076,0.029298482462763786,-0.017663942649960518,-0.031821828335523605,-0.07488568127155304,0.10590273141860962,0.05421063303947449,-0.024647092446684837,0.011762927286326885,0.10108880698680878,0.011242891661822796,0.06425096094608307,0.025274762883782387,0.0548485703766346,-0.07487412542104721,-0.010014481842517853,-0.050598859786987305,-0.04381309449672699,0.08590015769004822,-0.0010989679722115397,0.07208474725484848,-0.036219265311956406,0.043415531516075134,0.06459809839725494,0.004841658752411604,-0.08830463886260986,-0.11771860718727112,-0.04881807044148445,-0.04438497871160507,-0.041111063212156296,0.02332036942243576,0.03677644208073616,0.007650783751159906,-0.039721228182315826,0.06579575687646866,-0.026136605069041252,0.011785529553890228,-0.07019966840744019,-0.021370090544223785,-0.04299847036600113,0.04756363108754158,0.016731295734643936,-0.06569325923919678,0.11812747269868851,-0.029610423371195793,-0.02370128221809864,0.023863045498728752,-0.10226282477378845,0.0689459890127182,0.03248513117432594,-0.06869114190340042,-0.04414692148566246,0.04282669723033905,0.059336863458156586,0.03138970211148262,0.014725297689437866,0.046770304441452026,0.06174785643815994,0.013934578746557236,0.0443955697119236,-0.04886837303638458,-0.04108964279294014,-0.044710610061883926,-0.028250031173229218,-0.013603844679892063,0.04449617862701416,-0.011546390131115913,-0.016491616144776344,-0.12383157014846802,-0.046946097165346146,-0.019885357469320297,0.0197948906570673,-0.09037680178880692,0.014840221963822842,-0.010139663703739643,-0.05672735720872879,-0.03455095738172531,0.02266225591301918,0.01960529014468193,0.07089736312627792,0.04299556836485863,-0.08444014936685562,0.0059245890006423,0.04365153610706329,-0.01710696332156658,0.0417812243103981,0.03668146952986717,0.04123309254646301,-0.0015490372898057103,0.04411695897579193,0.0783793181180954,0.040596578270196915,-2.9543212320959356e-8,-0.0006358401733450592,-0.03882242366671562,0.09978698194026947,0.06117330119013786,0.03263381868600845,0.0008663570624776185,0.0005206868518143892,-0.037437207996845245,-0.058052174746990204,-0.022703655064105988,0.007592471316456795,-0.022729774937033653,0.02159186080098152,0.08687260001897812,0.023595653474330902,-0.015693388879299164,0.027473067864775658,-0.08833716064691544,-0.0959741622209549,0.062297094613313675,-0.050377655774354935,0.015697039663791656,0.07025625556707382,-0.020629025995731354,-0.014724093489348888,0.07631788402795792,0.023903215304017067,-0.005575325805693865,0.05569508299231529,0.10773217678070068,0.0603511668741703,0.037271950393915176,-0.03730328008532524,-0.035661060363054276,-0.11220235377550125,-0.02382156066596508,-0.00820078793913126,0.0351872481405735,0.052206579595804214,-0.08314894884824753,-0.054366644471883774,0.008966520428657532,0.09000695496797562,0.05896023288369179,-0.04755043983459473,0.05845846235752106,-0.05932684615254402,-0.02454969473183155,-0.011788802221417427,-0.038488633930683136,0.026854978874325752,-0.04604381322860718,0.04825662449002266,-0.032137125730514526,0.05863551050424576,0.03401932865381241,0.004952375777065754,0.07254549115896225,0.016746923327445984,0.016438331454992294,0.0575975626707077,-0.03862294554710388,-0.08756359666585922,-0.021605733782052994]},{"text":"You take all the courage out of me with your cold-blooded wisdom.","book":"Down and Out in Paris and London","chapter":56,"embedding":[0.026755712926387787,0.08129199594259262,-0.024103568866848946,0.04990372434258461,0.042912013828754425,0.010066160000860691,0.07291550934314728,-0.033054351806640625,0.007425663992762566,-0.03436773270368576,-0.04678136855363846,-0.03785557299852371,0.07873719930648804,-0.023641038686037064,-0.0062452321872115135,0.059620071202516556,-0.028560355305671692,-0.04699403792619705,-0.05848940834403038,0.05291898921132088,-0.08857251703739166,0.09296448528766632,0.02689496800303459,-0.0054709394462406635,-0.00024085573386400938,-0.011944489553570747,0.0012320226524025202,-0.012545640580356121,-0.012543280608952045,0.04992692917585373,0.003419559681788087,-0.08783186972141266,0.033781811594963074,-0.042373720556497574,0.0032657396513968706,0.07563718408346176,0.011794332414865494,-0.02532847784459591,0.011990167200565338,0.08561335504055023,0.061895254999399185,-0.028879087418317795,-0.03390120342373848,0.11656832695007324,-0.01300724595785141,0.010510027408599854,-0.13424094021320343,-0.011365793645381927,0.02373805083334446,-0.1066979393362999,-0.05940686911344528,-0.0057604024186730385,-0.1664966642856598,0.07011830806732178,0.020297273993492126,0.07631218433380127,-0.004397498443722725,0.020428510382771492,0.005611969158053398,0.011147253215312958,0.00046786636812612414,-0.0029002144001424313,-0.05117538198828697,0.09283610433340073,0.023818708956241608,0.07804904878139496,0.06298796832561493,-0.012776589952409267,-0.054862361401319504,-0.021784573793411255,0.006834532134234905,-0.008358239196240902,0.047905486077070236,-0.013055921532213688,-0.07776699960231781,0.07492896914482117,-0.01044743973761797,-0.09446927905082703,0.03610735386610031,0.08661840856075287,0.00783704873174429,-0.04476641118526459,-0.038510337471961975,0.017899753525853157,0.013824153691530228,-0.06800274550914764,0.03776107728481293,-0.0720113143324852,-0.005781334824860096,0.04380704462528229,-0.04766581952571869,-0.04049322381615639,0.015194777399301529,0.0029596409294754267,-0.06984836608171463,-0.007932700216770172,-0.05853770300745964,0.025450585409998894,-0.10039646923542023,0.051315788179636,0.041435759514570236,-0.009500909596681595,-0.01865992695093155,0.020249268040060997,0.017134305089712143,-0.0029388770926743746,-0.042239587754011154,-0.10141246765851974,-0.03784172609448433,-0.03841184452176094,-0.015674946829676628,-0.03585125878453255,0.050377555191516876,0.1001172885298729,0.08123768866062164,0.041971612721681595,-0.0601617805659771,0.024555524811148643,-0.010537326335906982,0.001474002725444734,0.023663455620408058,0.01661759428679943,-0.04482511058449745,0.08673331886529922,0.004009428899735212,-0.06215128302574158,-0.04541793093085289,-5.33913501436917e-33,0.009175070561468601,0.03129482641816139,0.03206237778067589,0.10819723457098007,-0.019062761217355728,0.017818095162510872,0.005353879649192095,0.01289648748934269,-0.023764843121170998,0.1294150948524475,0.03484932333230972,0.052930090576410294,0.01592877507209778,0.005818673875182867,-0.058584704995155334,0.013952739536762238,-0.04281042516231537,-0.006441210396587849,0.06852251291275024,-0.023757535964250565,-0.002976048504933715,-0.026576552540063858,0.011567375622689724,-0.0011696976143866777,-0.007231239229440689,-0.025985054671764374,0.02549826167523861,0.040867824107408524,-0.05779017508029938,0.04348604753613472,-0.003586630569770932,-0.03884442150592804,-0.024604756385087967,-0.030251532793045044,0.008505669422447681,-0.07849172502756119,-0.03869973123073578,-0.044164497405290604,-0.07146047055721283,-0.008788861334323883,-0.012995165772736073,0.03464575856924057,-0.06486503034830093,0.05552147328853607,0.008140604011714458,0.023830944672226906,0.009281243197619915,-0.03922796994447708,-0.026132289320230484,-0.06602319329977036,-0.09605997800827026,0.03926238417625427,0.0825190395116806,-0.004916646983474493,0.07489199936389923,0.023812102153897285,-0.02143486961722374,0.06618399173021317,0.019570980221033096,-0.0609649196267128,-0.07365699857473373,0.02903534658253193,-0.11160452663898468,0.019623998552560806,0.04296572878956795,-0.020237309858202934,-0.1466255933046341,-0.01614130288362503,-0.07310613989830017,0.015382286161184311,0.06249094009399414,-0.015347880311310291,0.0037879145238548517,-0.059049949049949646,-0.034940995275974274,-0.016159217804670334,0.03934087976813316,-0.09238709509372711,0.058255139738321304,-0.0650443509221077,0.04748858883976936,0.07516710460186005,-0.06445392966270447,0.02426348812878132,0.17090055346488953,0.02692592330276966,0.04802905023097992,-0.04114837944507599,0.047674957662820816,-0.01501166820526123,-0.07579795271158218,-0.049104757606983185,0.03629952669143677,-0.1575387865304947,-0.0999564528465271,3.8097845378547265e-33,0.08654424548149109,-0.08460982143878937,0.046577729284763336,0.009727033786475658,0.0562901608645916,0.014297820627689362,-0.06559202820062637,0.07275278866291046,0.10468319058418274,-0.01358080841600895,0.02120409905910492,0.04160967096686363,-0.007365330588072538,-0.04306582361459732,0.08398306369781494,-0.01715165190398693,-0.012158278375864029,-0.01872730255126953,-0.08724230527877808,-0.021654192358255386,-0.04858448728919029,-0.017272893339395523,-0.09378644824028015,0.06609683483839035,0.005627255886793137,-0.021192874759435654,0.019524911418557167,0.007355429697781801,0.07867410033941269,-0.0035479762591421604,0.009035223163664341,-0.10290167480707169,-0.07467007637023926,0.02634737268090248,-0.056899458169937134,0.022934388369321823,0.03339769318699837,0.010585685260593891,-0.04308314993977547,-0.02005690149962902,-0.05137181282043457,-0.019323723390698433,-0.007076798472553492,-0.06730253249406815,0.040669988840818405,0.0034196532797068357,0.057392023503780365,0.013371417298913002,-0.06581781059503555,0.01401561964303255,-0.0692848414182663,-0.005793654825538397,-0.06463935971260071,0.010782615281641483,0.04014122858643532,-0.03992275893688202,-0.0020875779446214437,0.02374192140996456,0.006226929370313883,-0.09196563810110092,0.01550352293998003,-0.013563978485763073,0.013163232244551182,-0.02970283478498459,0.05664459988474846,0.04880362004041672,-0.04343962296843529,0.09886360168457031,-0.05456853285431862,0.04457422345876694,0.01987280137836933,0.012057436630129814,-0.04991450905799866,-0.03913288936018944,0.04001373052597046,-0.031224731355905533,-0.02612370438873768,0.012407573871314526,0.03348648175597191,-0.0030974517576396465,0.02082439884543419,0.0012379392283037305,0.05032308027148247,0.041035447269678116,0.08241131901741028,0.01708138734102249,0.06914882361888885,-0.0035842384677380323,-0.013744118623435497,-0.04098000004887581,0.016201019287109375,0.04712200164794922,0.07864318788051605,0.06736259162425995,0.06649049371480942,-2.460271453230689e-8,0.013805911876261234,0.03353526070713997,0.02373519353568554,0.021278198808431625,0.0100873913615942,0.0019027813104912639,-0.08399800211191177,-0.044792063534259796,-0.029219716787338257,0.03345934674143791,0.0370127409696579,0.029041912406682968,0.07817580550909042,0.0769670382142067,0.0050943889655172825,0.06713411211967468,-0.015673816204071045,-0.012036350555717945,-0.010263212956488132,-0.10392739623785019,-0.006001598667353392,0.032625045627355576,0.04698679968714714,0.04130326211452484,0.012886272743344307,0.023766223341226578,-0.005365969147533178,-0.019816333428025246,0.05335330590605736,0.08917400240898132,-0.0570279024541378,-0.04267772287130356,-0.06439834088087082,-0.02690657414495945,0.036318495869636536,-0.03520582988858223,0.011886991560459137,0.05372823774814606,0.029089346528053284,0.042987968772649765,-0.0468691885471344,0.09507065266370773,-0.03649488091468811,0.09750664234161377,-0.07274950295686722,0.0052129486575722694,0.0321735218167305,0.04891156032681465,-0.03372933343052864,0.012527252547442913,0.02294502779841423,-0.01927548088133335,0.0005733100115321577,0.07775607705116272,0.024133380502462387,0.0058950153179466724,-0.003115450032055378,-0.002440837910398841,-0.0914781242609024,0.029800180345773697,0.07024955749511719,-0.046004023402929306,0.004197574220597744,-0.12406328320503235]},{"text":"I was only speaking to this foolish girl about her habit of running up here to the library whenever she gets a chance, to look at the books.","book":"Down and Out in Paris and London","chapter":57,"embedding":[0.015019971877336502,-0.00005248811430647038,0.04525893181562424,0.017070837318897247,0.027768680825829506,0.004957486409693956,0.020615385845303535,0.023332130163908005,0.024946745485067368,-0.012763239443302155,-0.03062468394637108,0.08608609437942505,0.02297193557024002,-0.0958344042301178,-0.04314031824469566,-0.03623442351818085,-0.03592757135629654,-0.022830167785286903,-0.013912483118474483,0.05200502276420593,0.0017430986044928432,0.051941122859716415,0.07192228734493256,0.020226331427693367,-0.03531434014439583,-0.02567199431359768,-0.039862651377916336,-0.09007081389427185,-0.0655338317155838,0.03886936604976654,-0.043968766927719116,0.04970914497971535,-0.04593916982412338,-0.016795743256807327,0.03431566059589386,0.045164693146944046,0.0810694471001625,0.040670085698366165,0.05183986946940422,0.0018030356150120497,-0.04159208759665489,-0.04301394149661064,-0.040934398770332336,0.0800396278500557,-0.09744786471128464,-0.07077119499444962,-0.024434085935354233,-0.006921977736055851,-0.009194775484502316,-0.0906444638967514,-0.08724118769168854,-0.0028285738080739975,-0.10476671159267426,-0.05421559140086174,0.031278014183044434,0.08559846878051758,-0.025893449783325195,0.03679832071065903,0.047008734196424484,0.04731316119432449,-0.003729798598214984,-0.041247762739658356,-0.012666326947510242,0.039118580520153046,-0.027863599359989166,0.06888807564973831,-0.0017411054577678442,-0.0008481277036480606,0.03183974325656891,0.007964091375470161,-0.011495710350573063,0.07179024815559387,0.04409613087773323,0.03352566808462143,0.021848855540156364,-0.0482766255736351,0.0020431531593203545,-0.10258646309375763,0.12011338770389557,0.008015572093427181,-0.12332682311534882,-0.010889805853366852,0.08273836225271225,0.016238505020737648,-0.01909758150577545,-0.00837794505059719,0.006126231048256159,-0.0808815211057663,0.08435563743114471,-0.04775017127394676,0.019694585353136063,-0.06488717347383499,-0.007933443412184715,0.08100248873233795,0.0028443639166653156,-0.0030638915486633778,-0.0540381595492363,-0.007540292106568813,0.015068499371409416,0.05790497735142708,0.046017032116651535,0.16571661829948425,0.08904897421598434,-0.016305508092045784,-0.028781510889530182,-0.07264760136604309,0.004864036571234465,-0.07013605535030365,-0.05056535825133324,-0.06780687719583511,0.03747183457016945,-0.060461193323135376,0.06148187816143036,-0.000602498825173825,-0.013978969305753708,0.012642827816307545,0.06802643835544586,0.030421530827879906,0.013651018962264061,0.04227367788553238,0.04580416530370712,0.0680876150727272,0.009167579934000969,0.050366438925266266,-0.03698068484663963,-0.15818269550800323,0.018452363088726997,-1.9138655152569605e-33,0.004397653043270111,-0.018688810989260674,0.003566332394257188,-0.024631014093756676,0.029574774205684662,-0.035398226231336594,0.06943199038505554,-0.0018844699952751398,0.03964066505432129,-0.05184954032301903,0.07917390763759613,-0.0416543185710907,-0.04218451306223869,-0.05050801858305931,-0.02705221436917782,0.10025326162576675,-0.04373300448060036,0.08618627488613129,0.023184381425380707,0.049565985798835754,0.09335660189390182,-0.019046304747462273,0.050521861761808395,0.012605995871126652,0.03678989037871361,0.020902927964925766,0.0383031964302063,-0.02127973549067974,0.036994822323322296,0.06126627326011658,-0.02673068642616272,-0.016042981296777725,-0.013272539712488651,-0.09877310693264008,0.03692062571644783,-0.011801007203757763,0.011349523440003395,-0.003428254509344697,0.011066044680774212,0.0330263152718544,-0.03207096830010414,-0.03498217463493347,0.08490658551454544,-0.007357784081250429,-0.09388711303472519,0.1034790500998497,0.030780551955103874,0.04241519793868065,-0.02903580665588379,-0.0036569125950336456,-0.09131865203380585,0.00929220300167799,-0.014600446447730064,0.023560969159007072,0.039213139563798904,0.035941172391176224,0.024395432323217392,0.007765673566609621,0.06998660415410995,-0.030954279005527496,0.032101117074489594,0.0354551300406456,-0.00523682264611125,-0.07491601258516312,-0.009468188509345055,0.005986679345369339,-0.09554719924926758,-0.021044064313173294,-0.006702313665300608,-0.01589062809944153,-0.0289461612701416,0.03305748850107193,-0.04573368653655052,0.007067109923809767,-0.07517224550247192,0.047928597778081894,0.010822238400578499,-0.011873014271259308,-0.03555138409137726,-0.1541290283203125,0.07682410627603531,-0.020412109792232513,-0.012182704173028469,0.014855087734758854,-0.026426510885357857,-0.049740709364414215,0.07550937682390213,-0.1310882866382599,-0.04157482832670212,-0.03680418059229851,0.08464957028627396,0.08971050381660461,-0.029868487268686295,-0.09262453019618988,-0.12478089332580566,-2.4458595905393282e-34,0.09772282838821411,-0.09034093469381332,0.00826573371887207,0.009739252738654613,-0.01790522411465645,0.02118474617600441,-0.05652879923582077,-0.001491541275754571,0.07310523837804794,-0.023525135591626167,-0.04562009125947952,-0.039081037044525146,0.013247567228972912,-0.017673354595899582,0.054953157901763916,-0.07691976428031921,0.08742198348045349,-0.05911353603005409,-0.0477021187543869,-0.014448932372033596,-0.09344824403524399,-0.001264767488464713,0.03326743468642235,-0.053001098334789276,0.041948769241571426,0.004001707304269075,0.03765786811709404,-0.07427387684583664,-0.08544785529375076,0.025269068777561188,0.03764859959483147,0.021379610523581505,-0.10139796882867813,-0.0423608273267746,-0.04084989055991173,-0.008361547254025936,0.006658772472292185,-0.04879934713244438,-0.00029817098402418196,-0.05790603905916214,0.026886818930506706,-0.050609201192855835,0.0194480549544096,-0.04951616749167442,0.01948011852800846,-0.05727256089448929,0.06711689382791519,0.06325667351484299,0.01410724874585867,-0.02170456387102604,-0.03439469635486603,-0.026122301816940308,0.03361033648252487,-0.03845524415373802,0.014350766316056252,0.06142822653055191,0.05596864968538284,0.0028564301319420338,0.09241201728582382,-0.012621888890862465,-0.08117153495550156,-0.051936738193035126,-0.11204420030117035,-0.009144511073827744,-0.04368705675005913,-0.02681639976799488,-0.08328299224376678,0.020736606791615486,0.05456303805112839,0.014655530452728271,-0.009939983487129211,0.05431170389056206,-0.016751481220126152,-0.01989864557981491,-0.0585135743021965,0.06699982285499573,-0.007987193763256073,-0.06825217604637146,-0.017383188009262085,-0.04140041768550873,0.022815531119704247,0.03223932534456253,0.02302219532430172,-0.04082773998379707,0.01237899623811245,-0.012937099672853947,-0.00714980298653245,0.014829742722213268,-0.00826268084347248,-0.03236989676952362,0.0065755597315728664,-0.051901236176490784,0.038843970745801926,0.016932163387537003,0.035818006843328476,-2.8759751913298714e-8,-0.02509516291320324,0.05692365765571594,-0.014255351386964321,-0.024722440168261528,0.040295980870723724,0.019071465358138084,0.05862908065319061,0.07652857899665833,-0.057238295674324036,-0.02282416820526123,0.024489466100931168,-0.013904709368944168,0.040284063667058945,0.02023434452712536,0.04178294166922569,0.018048707395792007,0.16441771388053894,-0.05570148676633835,-0.036406077444553375,0.03903473541140556,0.12731923162937164,0.021189197897911072,0.024124501273036003,0.0024398702662438154,-0.07833647727966309,0.05283921957015991,0.040430255234241486,0.010561488568782806,0.01616843231022358,-0.01821359060704708,-0.008795280009508133,0.07644131779670715,-0.037742819637060165,-0.03243487700819969,0.010052780620753765,0.01929015852510929,0.01828433759510517,0.04795929044485092,-0.04304559528827667,0.047198373824357986,-0.011422909796237946,-0.0870613381266594,0.032460056245326996,0.08759357035160065,0.01513097994029522,-0.008331501856446266,0.022110983729362488,-0.028263499960303307,0.05088934302330017,0.028107885271310806,-0.021924464032053947,0.024167777970433235,0.07849033921957016,0.021663812920451164,0.012719898484647274,-0.046414565294981,-0.03076331876218319,-0.01310211792588234,-0.1575002372264862,0.04236430674791336,0.020406579598784447,-0.015380476601421833,-0.06138725206255913,-0.016768962144851685]},{"text":"You cannot cure it now.","book":"Down and Out in Paris and London","chapter":57,"embedding":[0.05524202436208725,-0.011238900944590569,0.02166679874062538,0.02898154780268669,0.014723589643836021,-0.055974774062633514,0.01717757061123848,0.026171963661909103,0.007413219660520554,-0.044626690447330475,-0.04277201369404793,0.062096577137708664,0.03147746995091438,0.02045666053891182,-0.11355142295360565,0.06099092587828636,-0.048182904720306396,-0.021950233727693558,-0.02984442189335823,0.027595706284046173,-0.04846935719251633,0.09967419505119324,0.05286801978945732,0.012812244705855846,-0.03553900122642517,0.019567245617508888,0.031514592468738556,-0.06788671761751175,-0.04829220473766327,-0.025617344304919243,0.026407668367028236,0.04833933338522911,-0.064207524061203,-0.05325876176357269,-0.04488370195031166,0.024420691654086113,-0.053880419582128525,0.021209560334682465,0.0270954929292202,-0.008768154308199883,0.07044176012277603,-0.029357891529798508,-0.028915075585246086,-0.03386203572154045,0.0494687557220459,0.00334931374527514,-0.037080612033605576,0.04814520105719566,0.0599813312292099,-0.00693864980712533,-0.011585954576730728,-0.0560627318918705,-0.012387850321829319,0.045224253088235855,0.03761176019906998,0.029049210250377655,-0.012620877474546432,0.03771258518099785,-0.018361784517765045,0.061618730425834656,-0.017955003306269646,-0.04148702695965767,0.003105416428297758,0.009774436242878437,0.06101898476481438,0.03702102228999138,-0.03217840567231178,-0.06000232324004173,0.001498362747952342,0.15698926150798798,0.027378272265195847,0.02641175501048565,-0.025237636640667915,0.0031668320298194885,0.04096127301454544,0.06767773628234863,-0.020256243646144867,-0.058608897030353546,0.10036811977624893,0.12044406682252884,-0.016343625262379646,-0.010264738462865353,0.0691428929567337,0.04296042025089264,0.01465993095189333,-0.00380856916308403,0.0779169425368309,-0.040049538016319275,-0.044562019407749176,0.020410774275660515,-0.025312287732958794,-0.05282710865139961,0.0015864807646721601,0.08033300936222076,-0.02473960444331169,-0.04152669012546539,-0.03342770040035248,-0.046846915036439896,-0.12988519668579102,0.0773584246635437,-0.08395642042160034,-0.08718489110469818,0.011851636692881584,-0.00491968123242259,0.02853415533900261,0.022179286926984787,0.01911751553416252,0.055981043726205826,-0.03651772066950798,-0.08716375380754471,-0.036926861852407455,0.007504004053771496,0.046131182461977005,-0.021420136094093323,-0.017805367708206177,0.0001260490098502487,0.01202659122645855,0.010909385047852993,0.005901949945837259,0.01959599368274212,0.0010231907945126295,-0.03786337748169899,-0.004542342387139797,0.03998318314552307,-0.056582748889923096,-0.1090051606297493,0.03686945512890816,-6.537469220427935e-33,-0.018430564552545547,-0.005715526640415192,0.05130388215184212,-0.0841604545712471,0.04754175990819931,0.03079621121287346,0.009458527900278568,-0.010242962278425694,-0.041836246848106384,-0.10017658770084381,0.13576464354991913,-0.030762048438191414,-0.009785140864551067,-0.0842370018362999,-0.0542658232152462,-0.01760857366025448,0.014209390617907047,0.014020075090229511,0.022163204848766327,-0.05133398249745369,0.06996177136898041,0.00891557615250349,-0.04813924804329872,-0.06313350051641464,-0.023648269474506378,0.060479409992694855,0.01653994433581829,0.006182442884892225,0.06748607754707336,0.020386477932333946,0.034962255507707596,0.08079931139945984,0.03641790524125099,0.057526081800460815,-0.09997712820768356,-0.018888507038354874,0.055782392621040344,-0.0474853552877903,-0.0778006762266159,0.006341327913105488,-0.008499417454004288,0.013712632469832897,-0.036224085837602615,0.0397956557571888,0.0505637489259243,-0.008026215247809887,0.00133005459792912,-0.005811830051243305,-0.09276068955659866,-0.024425163865089417,0.06816984713077545,0.054230593144893646,0.027756907045841217,-0.008441189303994179,0.017735926434397697,0.03261581435799599,0.004431283101439476,0.009773560799658298,-0.06586328148841858,0.026334546506404877,0.05433439463376999,-0.04837410897016525,0.0450049564242363,-0.002277233637869358,-0.05455410107970238,0.006720974110066891,-0.01255485974252224,-0.005542459897696972,-0.04109395295381546,-0.03663305193185806,-0.01615145616233349,-0.02486233413219452,0.004743012599647045,0.02303643338382244,-0.12227343022823334,-0.03660719841718674,0.05047744885087013,0.0033082207664847374,-0.0599389411509037,0.044262371957302094,-0.00419584522023797,-0.04494878277182579,0.013492911122739315,0.0390084832906723,0.07489363849163055,-0.0023181464057415724,-0.06837134063243866,0.08643390238285065,-0.010582187213003635,-0.00853277463465929,-0.029831288382411003,0.03910576552152634,0.05001232400536537,-0.014242473989725113,-0.173272967338562,4.960689383567735e-33,0.052531030029058456,-0.035906556993722916,-0.020766016095876694,0.06339198350906372,0.008178683929145336,0.0009503553155809641,0.0692174956202507,0.09225489944219589,-0.006575723644345999,0.01032053679227829,0.05853964015841484,-0.004019498825073242,0.023893581703305244,-0.012257401831448078,0.056762054562568665,0.09742704778909683,-0.005338583141565323,0.10220656543970108,-0.12650887668132782,0.012682308442890644,-0.038889601826667786,0.08037499338388443,-0.005919952876865864,0.037830933928489685,-0.011688788421452045,0.0322558730840683,0.06400638073682785,0.02112082578241825,0.03298542648553848,0.08706396818161011,0.11557041853666306,-0.06918797641992569,-0.1369364708662033,-0.0455658845603466,0.019520029425621033,0.036162883043289185,-0.005190195981413126,-0.15371327102184296,0.03186307102441788,-0.08656037598848343,0.05922628566622734,-0.0710732638835907,-0.012444819323718548,0.05684248358011246,0.09644871205091476,0.0332823321223259,0.03176736459136009,-0.010489119216799736,0.006666739471256733,0.04513981565833092,0.05137602239847183,-0.008848987519741058,0.024870263412594795,-0.052546072751283646,0.01606288179755211,-0.05393712967634201,-0.008554451167583466,0.005946025252342224,-0.006259424611926079,0.007997012697160244,-0.03126564994454384,-0.005588287953287363,-0.07804224640130997,0.053881995379924774,0.07839825004339218,0.0716841071844101,0.0271895844489336,0.09646866470575333,0.09008769690990448,-0.08572840690612793,0.08679640293121338,0.0492246076464653,-0.11626522243022919,-0.054951947182416916,-0.02330182120203972,0.006324689369648695,-0.07230588048696518,0.0928703248500824,0.012349720112979412,-0.08723868429660797,-0.06149674206972122,0.011022884398698807,0.055465541779994965,-0.007028419058769941,0.04232735186815262,0.031892914324998856,0.10238063335418701,0.015077252872288227,-0.04044961556792259,-0.01775171607732773,-0.07217703759670258,-0.05686634033918381,-0.041311733424663544,0.02172955684363842,-0.023164590820670128,-1.6043669504028912e-8,-0.005059176590293646,-0.07928276062011719,-0.017632534727454185,-0.0017489296151325107,-0.04454828053712845,-0.016851121559739113,-0.03575781360268593,0.045216094702482224,-0.02350100316107273,-0.021137753501534462,-0.04748513922095299,0.10058938711881638,0.006324758753180504,0.07494716346263885,-0.017792265862226486,-0.07330726087093353,-0.0252314954996109,0.00630323588848114,-0.021878791972994804,-0.04137957841157913,-0.026738012209534645,0.028268221765756607,-0.00018926203483715653,-0.04910261929035187,0.009007536806166172,0.023740580305457115,0.01497570052742958,0.05691476911306381,-0.04537080600857735,-0.003177500097081065,0.03555324301123619,-0.03917570039629936,-0.011762704700231552,0.03447245433926582,-0.06916984915733337,-0.03802044689655304,0.11357007920742035,-0.034113809466362,-0.008844079449772835,-0.029078256338834763,0.004890528041869402,0.10328114777803421,0.006592357996851206,-0.027670951560139656,-0.06482097506523132,-0.02645844593644142,0.054184235632419586,0.004155125468969345,0.0037226646672934294,-0.012380185537040234,0.055447857826948166,0.15748098492622375,0.07185789942741394,0.06214139983057976,-0.020865334197878838,-0.015561744570732117,-0.009040150791406631,0.013037382625043392,0.0012677221093326807,-0.02551034465432167,-0.009927339851856232,-0.07522405683994293,0.019824163988232613,-0.006933485623449087]},{"text":"No. (_Looking at him for the first time._) Are you sorry?","book":"Down and Out in Paris and London","chapter":57,"embedding":[0.003282226389274001,0.055095989257097244,0.052087362855672836,-0.01620646007359028,0.03927202522754669,-0.022225691005587578,0.05915210396051407,-0.039507489651441574,-0.009929810650646687,-0.05045465752482414,0.013567349873483181,-0.0049513401463627815,-0.016553813591599464,0.04666553810238838,0.022500010207295418,-0.006509616505354643,-0.08681605011224747,0.03741403669118881,-0.01693069562315941,0.0738079696893692,-0.048512089997529984,0.0013566408306360245,-0.033115725964307785,0.0005151854711584747,0.011050357483327389,-0.0600600391626358,0.07736414670944214,0.04353198781609535,-0.01444484293460846,-0.010957840830087662,-0.022477740421891212,-0.04628625884652138,0.012588183395564556,-0.028809210285544395,0.03194638714194298,0.0067610167898237705,0.03205396607518196,0.000726137834135443,-0.03272733837366104,-0.01698380708694458,-0.01472330093383789,0.03548923134803772,-0.007143447641283274,0.030193399637937546,0.036900635808706284,-0.0714043602347374,0.05021239444613457,-0.05144098401069641,-0.013297769241034985,-0.09486977010965347,-0.029659520834684372,0.013853340409696102,0.11696485430002213,-0.007393068168312311,0.09160663932561874,0.023820532485842705,0.06610424816608429,0.021858541294932365,0.027868300676345825,0.04968550056219101,-0.05538129806518555,-0.0021521265152841806,-0.06732811778783798,0.10572987049818039,0.03112957440316677,0.064576156437397,-0.0736202523112297,-0.14517730474472046,0.07175258547067642,0.11881201714277267,0.07450433075428009,-0.014512194320559502,0.042987629771232605,0.009161700494587421,-0.13417810201644897,-0.01541023701429367,0.013578148558735847,0.011797230690717697,0.05324922129511833,0.033727966248989105,-0.01744801737368107,-0.06634505838155746,0.02816103585064411,0.005867576692253351,-0.07061359286308289,0.012274008244276047,0.038134876638650894,0.01785149984061718,-0.03961830213665962,0.06816351413726807,0.02805614285171032,0.05992073938250542,-0.02928989566862583,0.022391028702259064,-0.09713388979434967,-0.03007540851831436,-0.01425120234489441,0.009570990689098835,-0.14232896268367767,0.03802270069718361,0.07420036941766739,0.043891582638025284,0.05182727053761482,0.057745546102523804,0.008162974379956722,0.02581259422004223,-0.04630475491285324,0.03981611505150795,-0.0071815126575529575,-0.03214609995484352,-0.04858106002211571,-0.036351278424263,0.0158871877938509,-0.05668036639690399,0.0366230271756649,-0.030224772170186043,-0.014156296849250793,-0.061560794711112976,-0.0050430758856236935,0.07092203199863434,0.09662587195634842,0.021740762516856194,-0.021546345204114914,0.06830424070358276,-0.05845170468091965,-0.10055732727050781,0.014762751758098602,-6.415591762082772e-33,0.09879795461893082,0.0007052356959320605,-0.02908385545015335,-0.035571347922086716,-0.04222498834133148,0.049334052950143814,-0.03852122649550438,-0.0013936797622591257,-0.022904884070158005,-0.021219991147518158,0.03202119469642639,0.04558749496936798,0.0387292355298996,-0.06284041702747345,-0.09297570586204529,0.08011963218450546,0.04798896610736847,0.03187847509980202,0.022353151813149452,-0.06004243716597557,-0.022673282772302628,-0.0787786915898323,-0.009125790558755398,0.018063578754663467,0.016431881114840508,0.02137085609138012,-0.0009362472919747233,-0.07662523537874222,0.08389831334352493,0.014590372331440449,-0.1787080466747284,0.06782613694667816,-0.02284090593457222,-0.032314762473106384,0.06930067390203476,0.0007898772018961608,0.017540551722049713,0.03664669021964073,-0.10476873070001602,0.02121744304895401,-0.03880295529961586,0.030342595651745796,-0.03071855939924717,0.009438646025955677,-0.10676354169845581,-0.030636297538876534,-0.023044239729642868,0.04296796768903732,0.08866627514362335,-0.028404364362359047,0.02613050863146782,0.03407981991767883,-0.006351811811327934,-0.05257141962647438,0.012691646814346313,0.0043321154080331326,0.04981781169772148,0.006220157723873854,0.08153031021356583,0.05744077265262604,-0.04091981425881386,-0.05878638103604317,-0.03283476456999779,0.0019147226121276617,-0.0021048421040177345,-0.05829460173845291,-0.035290494561195374,0.03718678653240204,0.043951645493507385,-0.03964712843298912,-0.010588398203253746,0.015553233213722706,-0.051359646022319794,-0.059170812368392944,-0.0034981821663677692,-0.010891816578805447,-0.03242954611778259,0.046635743230581284,0.05369452014565468,-0.08821514248847961,0.012497780844569206,-0.0068111238069832325,-0.014873535372316837,-0.001993853133171797,-0.16482754051685333,0.014994367025792599,0.010042537935078144,-0.04217686876654625,-0.03260189667344093,0.05139771103858948,0.011640474200248718,0.02019987255334854,0.0008817597408778965,-0.0385744534432888,-0.11809452623128891,1.8870671827940894e-33,0.008109906688332558,0.010724415071308613,0.050048138946294785,-0.034896641969680786,-0.03427068889141083,-0.02894025482237339,0.04178573563694954,0.03690148890018463,0.04628097265958786,-0.010190792381763458,0.0997500792145729,-0.0014042533002793789,0.0795108899474144,-0.037784311920404434,0.09679412841796875,-0.016427267342805862,-0.0029060100205242634,-0.008312094956636429,-0.043176088482141495,-0.07500346004962921,-0.02293870411813259,-0.019799411296844482,0.015330102294683456,-0.0748758614063263,-0.06681012362241745,0.04496913403272629,0.12736433744430542,-0.046026021242141724,-0.09762568771839142,-0.04545382782816887,0.09827055782079697,-0.035651519894599915,0.017816506326198578,0.038113854825496674,-0.0034851960372179747,-0.0020765729714185,0.01739472709596157,-0.05385519936680794,0.00577577156946063,-0.0051373448222875595,0.015644336119294167,-0.034228213131427765,-0.014452347531914711,0.08129754662513733,0.03333470970392227,-0.0722162127494812,0.09137730300426483,0.012092615477740765,0.05889226868748665,-0.0002961455611512065,-0.039449293166399,0.029858214780688286,-0.008704164065420628,-0.024372311308979988,0.03796927258372307,0.09124885499477386,0.002117134165018797,0.056587107479572296,0.004751655738800764,-0.027027757838368416,-0.029787449166178703,-0.058985572308301926,-0.019738061353564262,0.0021677061449736357,0.007403289899230003,0.01281675323843956,-0.03473884239792824,-0.0013823367189615965,0.0002542678848840296,-0.05597205087542534,0.014299853704869747,-0.04574740678071976,-0.06606558710336685,-0.030664533376693726,0.03497772291302681,-0.007168545853346586,0.07264465093612671,-0.014224659651517868,-0.02074500359594822,-0.09420977532863617,0.003855800023302436,-0.00807946640998125,0.030505748465657234,-0.010587763041257858,0.04245296120643616,-0.07540487498044968,0.009961132891476154,-0.026642924174666405,-0.016701670363545418,0.018972547724843025,-0.03615541011095047,0.04258783161640167,0.13818548619747162,0.05268276482820511,0.0028359282296150923,-2.981468938401122e-8,-0.06926439702510834,0.02606923133134842,-0.007384930737316608,0.00524282269179821,-0.027824891731142998,0.030849464237689972,-0.03826940059661865,-0.01615285500884056,-0.15333150327205658,-0.027707895264029503,0.013866855762898922,0.09946940839290619,0.028480829671025276,-0.019263865426182747,-0.030569028109312057,-0.02894376404583454,0.07008236646652222,-0.0743214413523674,-0.05758165940642357,-0.007542913313955069,0.007962306961417198,0.09782085567712784,-0.057269349694252014,0.07011343538761139,0.024964600801467896,0.05245567858219147,-0.005140318069607019,-0.013120608404278755,-0.012570424936711788,-0.04399963840842247,0.02457372471690178,0.02945346012711525,0.005646307021379471,-0.04547446221113205,0.08845894038677216,-0.05740795657038689,0.006796494126319885,0.03379341587424278,-0.02554413676261902,0.008771958760917187,0.04090449959039688,-0.010449375957250595,-0.005108574405312538,0.05187928304076195,-0.04250238463282585,0.04993036016821861,0.08270121365785599,-0.03233172744512558,0.014522865414619446,-0.09843655675649643,-0.18015652894973755,0.018734946846961975,-0.03658738359808922,-0.020345579832792282,0.008852498605847359,-0.08493475615978241,-0.005167103838175535,-0.011954921297729015,0.016209425404667854,-0.05373070389032364,0.07424546778202057,-0.0932307094335556,0.06587930023670197,-0.04861054569482803]},{"text":"My heart jumped like a woman’s at the first shot; but in the charge I found that I was brave.","book":"Down and Out in Paris and London","chapter":58,"embedding":[0.015071701258420944,0.08061205595731735,-0.02026926353573799,0.06675849109888077,0.101797915995121,0.029483092948794365,0.016371218487620354,-0.03675202652812004,0.05331242084503174,-0.013497335836291313,0.04729074239730835,-0.006486660335212946,0.057562205940485,0.009392017498612404,0.05610022321343422,-0.03495894744992256,0.02262123115360737,0.012128397822380066,-0.025048499926924706,0.10615569353103638,-0.08110073953866959,0.0001249109918717295,0.0590248666703701,0.03964286670088768,-0.06053903326392174,-0.04143960401415825,0.046927448362112045,0.043473489582538605,0.009988299570977688,-0.05170765146613121,0.016416598111391068,-0.07420607656240463,0.012591224163770676,0.016382936388254166,-0.03721103072166443,0.020844701677560806,-0.00021596586157102138,0.008190949447453022,0.07320018857717514,0.04720893129706383,-0.00228203390724957,-0.05159514769911766,0.05750327184796333,-0.00025005609495565295,0.04112158715724945,0.03414022922515869,0.01849033124744892,-0.037376031279563904,0.01792951300740242,-0.05849101021885872,-0.018681799992918968,-0.006883865687996149,-0.056180860847234726,-0.09607011824846268,0.028285712003707886,-0.04627129063010216,0.051364075392484665,-0.024264665320515633,0.03523777052760124,-0.009388544596731663,-0.007909725420176983,-0.022785261273384094,-0.0055939145386219025,0.04029952734708786,-0.014345903880894184,0.016980597749352455,-0.023623818531632423,0.032815929502248764,0.10800564289093018,0.021127451211214066,0.10616378486156464,0.04937075078487396,-0.0008829183061607182,-0.009821820072829723,-0.08523591607809067,0.009855755604803562,0.046801671385765076,-0.06623420864343643,0.011315722018480301,0.07534512132406235,0.039182644337415695,-0.11136934906244278,-0.0940130427479744,0.1104569286108017,-0.004026283510029316,-0.008611232042312622,0.00885885488241911,-0.042165860533714294,0.0033439884427934885,-0.015133127570152283,-0.04364580288529396,-0.023476917296648026,0.024498002603650093,0.055283159017562866,0.012570076622068882,-0.05692042037844658,-0.05643020197749138,0.0362732857465744,-0.05723986402153969,0.019554734230041504,0.10568103939294815,0.004064351320266724,-0.010253713466227055,0.044769465923309326,0.0635133758187294,0.012703748419880867,0.046519406139850616,-0.09838904440402985,-0.01839703880250454,0.03306233882904053,0.027920512482523918,0.0004941716906614602,0.06454488635063171,0.023819321766495705,-0.008787786588072777,0.011043539270758629,-0.09190945327281952,-0.034405678510665894,0.06285526603460312,0.025186650454998016,0.08501476049423218,-0.005607060622423887,-0.043646931648254395,-0.04473142698407173,-0.02915092185139656,-0.035066869109869,0.07881041616201401,-5.714084651502863e-33,0.07487965375185013,0.02054750919342041,0.03371976688504219,0.033170051872730255,0.033560894429683685,-0.025916801765561104,0.02110404707491398,-0.04043091833591461,-0.09226305782794952,0.06256373971700668,0.013408305123448372,-0.036641594022512436,-0.048409730195999146,-0.02539011463522911,-0.11874140799045563,-0.04196615889668465,-0.12550704181194305,-0.017339883372187614,-0.006906286347657442,0.09847170114517212,-0.02566705085337162,-0.023119628429412842,-0.06175289675593376,0.020025035366415977,-0.013992534950375557,0.075362429022789,0.026531921699643135,-0.02364751137793064,-0.0245747659355402,0.03957255184650421,-0.003330948995426297,0.008967753499746323,-0.010642994195222855,-0.031746476888656616,0.032158780843019485,-0.026436682790517807,0.010863970033824444,-0.016643483191728592,-0.05130819231271744,0.06318241357803345,-0.06928457319736481,0.0026830739807337523,0.013706069439649582,-0.07188528031110764,-0.05359428748488426,-0.03375406190752983,-0.09205546975135803,-0.004810828249901533,-0.07819356769323349,0.0012589326361194253,-0.05343084782361984,-0.0014434991171583533,0.11006718873977661,0.07131583988666534,0.017016204074025154,0.030751768499612808,0.014950635842978954,-0.03483027592301369,-0.059847500175237656,0.020652370527386665,-0.015239355154335499,0.02193985879421234,-0.03324533998966217,-0.011637382209300995,-0.022559326142072678,0.001403549569658935,-0.02822873555123806,-0.025263583287596703,0.014645494520664215,0.024168474599719048,-0.034276627004146576,-0.007752327248454094,-0.09747841209173203,-0.04520942270755768,-0.011300611309707165,0.02768193744122982,0.005962572991847992,0.03433963283896446,0.056002937257289886,-0.1309017390012741,0.00876474380493164,-0.0027617118321359158,-0.05822430178523064,0.09617725014686584,0.028674902394413948,-0.0035400292836129665,0.02807275392115116,-0.17178773880004883,-0.0795624852180481,-0.043962668627500534,0.08515369892120361,0.051884088665246964,0.07679012417793274,-0.07890722155570984,-0.0740746557712555,4.177251418761466e-33,0.048495613038539886,-0.02094416506588459,0.051744673401117325,0.016851669177412987,-0.009879144839942455,-0.01926071010529995,0.007619216572493315,0.0684366226196289,0.053807374089956284,0.07276153564453125,0.02077927254140377,0.026542145758867264,-0.011641117744147778,0.013375292532145977,0.08372475951910019,-0.011665512807667255,-0.01514375489205122,-0.022432634606957436,-0.006932508200407028,-0.010417883284389973,-0.00017698007286526263,0.0033417302183806896,0.09638192504644394,0.008393308147788048,0.026307787746191025,0.016020724549889565,0.058788757771253586,-0.036616768687963486,0.0539887472987175,-0.08821719139814377,0.06879220902919769,-0.02587226778268814,-0.08063069730997086,0.008680739440023899,-0.05087004229426384,0.07221198827028275,0.004074490629136562,0.0367010124027729,0.028039852157235146,-0.02910136990249157,-0.04808292165398598,0.04018409177660942,-0.003755531506612897,0.03362986445426941,-0.00647755479440093,-0.025122366845607758,0.03795444592833519,-0.02678822912275791,0.0019363467581570148,0.030208641663193703,-0.1762278825044632,0.005796536337584257,-0.07708503305912018,0.014193474315106869,0.041444819420576096,-0.05103202909231186,0.10831215232610703,0.01822352223098278,0.01759832538664341,-0.038821324706077576,-0.06809154152870178,0.008812271989881992,-0.1001463234424591,0.021241063252091408,-0.0027042950969189405,0.04595286399126053,-0.08232204616069794,-0.03497195988893509,-0.12194240093231201,0.033143751323223114,-0.019865671172738075,0.07644905894994736,-0.0645107850432396,0.044088348746299744,-0.01764003187417984,-0.11818358302116394,0.010262266732752323,0.05390078201889992,-0.0035173743963241577,-0.01592343859374523,0.06460875272750854,-0.01084817573428154,-0.015707993879914284,-0.027047887444496155,0.009995907545089722,0.12625937163829803,0.034531015902757645,-0.05710325390100479,-0.051987990736961365,-0.016476545482873917,-0.06370687484741211,0.05063415318727493,0.026477323845028877,0.060420211404561996,0.04754802584648132,-2.629836792777951e-8,-0.09977591782808304,0.08099698275327682,-0.0638006404042244,0.0006932929973118007,-0.00072713871486485,0.027911152690649033,-0.05167698860168457,-0.035051796585321426,-0.07730906456708908,-0.061466462910175323,0.022671692073345184,0.032512325793504715,0.08579730987548828,0.05570178106427193,-0.010171801783144474,0.01166150439530611,0.026054495945572853,-0.07183210551738739,0.020590241998434067,0.061237581074237823,0.07948493212461472,0.059893906116485596,-0.04237993434071541,-0.0004969238652847707,-0.059310078620910645,0.044395655393600464,-0.018281277269124985,-0.07527825981378555,0.01636389084160328,0.0011088041355833411,0.014179563149809837,0.003739394713193178,-0.07722508907318115,0.006636033300310373,-0.06110753118991852,0.07616111636161804,0.07636621594429016,-0.044254641979932785,0.013435712084174156,-0.050123631954193115,-0.03266382962465286,0.015963245183229446,-0.012791207991540432,0.009578683413565159,-0.07262926548719406,0.09393293410539627,0.11365003883838654,-0.07380852103233337,0.020911891013383865,0.028715677559375763,0.03301262483000755,-0.008212922140955925,0.006872992031276226,0.074851855635643,0.041297025978565216,0.02753978595137596,-0.05334264039993286,-0.028210433200001717,-0.03245365619659424,0.029202111065387726,0.10232728719711304,-0.02025282382965088,-0.08639252185821533,-0.013144949451088905]},{"text":"I have an English bull terrier who has as much of that sort of courage as the whole Bulgarian nation, and the whole Russian nation at its back.","book":"Down and Out in Paris and London","chapter":58,"embedding":[0.06804363429546356,0.01583637110888958,0.01448252983391285,0.0523722879588604,-0.01345478743314743,0.05096301808953285,-0.0013855628203600645,-0.047390520572662354,0.012223469093441963,-0.05956542119383812,-0.02162436582148075,-0.0318804495036602,0.035557813942432404,0.06703456491231918,-0.02618575282394886,-0.0008376963087357581,0.0071193864569067955,-0.03597627207636833,0.0047577447257936,-0.06013128161430359,-0.07525870949029922,-0.008258763700723648,0.15711520612239838,0.052106261253356934,-0.07780640572309494,-0.10536640882492065,0.015380076132714748,-0.013865937478840351,0.03714122250676155,-0.04941074550151825,-0.011820315383374691,-0.08578559011220932,0.004098798613995314,-0.014428598806262016,-0.03439949452877045,-0.022403283044695854,0.031150536611676216,-0.004779567010700703,0.034147780388593674,0.10270828753709793,0.025629907846450806,0.03991328924894333,-0.006893402896821499,0.04526260495185852,-0.010846043936908245,0.01620979979634285,-0.10212519019842148,-0.01707208901643753,0.03704666346311569,-0.05207410827279091,-0.009698173962533474,-0.014133431948721409,-0.0045128678902983665,-0.08051790297031403,-0.0005188251961953938,-0.06906813383102417,0.005537855438888073,-0.00020058793597854674,0.02920977957546711,-0.02439292147755623,0.031732674688100815,0.09935878962278366,0.0035166412126272917,0.03246106207370758,-0.04033704474568367,0.022694259881973267,-0.02964692749083042,0.10532263666391373,-0.017476268112659454,0.05458686500787735,0.05951365828514099,-0.04610695317387581,-0.008420758880674839,0.010616520419716835,-0.10386695712804794,-0.02980661392211914,-0.039028555154800415,-0.026862751692533493,0.04613243043422699,0.036164287477731705,-0.028307141736149788,-0.011233224533498287,-0.06796689331531525,0.022439096122980118,0.12231110036373138,-0.05894838646054268,0.05846572294831276,-0.042171649634838104,-0.020792551338672638,0.01860462687909603,0.024355577304959297,-0.03733554482460022,0.08925195783376694,0.025781257078051567,0.010935128666460514,-0.013586564920842648,0.07796735316514969,0.012211169116199017,-0.10518854856491089,0.02591850981116295,-0.009402741678059101,-0.04043407738208771,0.012172224931418896,0.014499734155833721,-0.049768414348363876,-0.0006284390692599118,-0.12050630897283554,-0.0021688586566597223,0.01037427969276905,-0.030389348044991493,-0.04840089753270149,-0.05648211017251015,0.04714888334274292,0.10630657523870468,0.10886397212743759,-0.012117782607674599,-0.09346234798431396,-0.057457126677036285,0.02507731132209301,-0.025703709572553635,0.09673035889863968,0.03206885606050491,-0.04298115894198418,-0.017641505226492882,0.09318148344755173,0.025157436728477478,-0.07104184478521347,-8.540944506758001e-34,0.05236024037003517,-0.009337769821286201,-0.055750712752342224,0.0342571996152401,-0.06774415075778961,-0.03008124604821205,-0.019558900967240334,-0.007909025996923447,-0.09515326470136642,0.04241988807916641,-0.03031906671822071,0.07748538255691528,-0.0006978051969781518,-0.01571982353925705,-0.06377124041318893,0.05134887620806694,-0.00828611571341753,0.06765874475240707,0.027174264192581177,0.03841744735836983,0.009495251812040806,0.07821445912122726,0.04471975564956665,0.02517993189394474,0.04821010306477547,-0.0056148977018892765,0.0022741646971553564,-0.10989923030138016,-0.07263286411762238,0.012418430298566818,-0.02964828535914421,-0.044740453362464905,-0.05620787665247917,-0.011259930208325386,-0.09482680261135101,-0.07259226590394974,-0.058839187026023865,-0.10035794973373413,-0.021130908280611038,0.08782362937927246,0.0727723091840744,-0.07462911307811737,-0.013312572613358498,0.06011397764086723,0.05322987213730812,-0.01218525692820549,0.026197174564003944,-0.0388123020529747,-0.09486667066812515,-0.03950543329119682,-0.016483688727021217,-0.008363846689462662,0.04422304034233093,-0.011087410151958466,0.029081035405397415,0.053834907710552216,0.07250118255615234,0.053363606333732605,0.004435669630765915,-0.05676841363310814,0.03252404183149338,-0.025202041491866112,0.03547282889485359,-0.07770493626594543,0.12011388689279556,-0.08869556337594986,-0.08471237868070602,0.04635066166520119,-0.052091311663389206,-0.0013144778786227107,0.041096534579992294,0.02778586931526661,-0.04776448756456375,-0.06970708072185516,0.0037818248383700848,-0.018487513065338135,0.049608953297138214,-0.024065541103482246,0.044961102306842804,-0.04064032807946205,-0.015383725054562092,0.04480806738138199,-0.007264759391546249,0.06988132745027542,0.056240566074848175,0.03333049267530441,0.06316272169351578,-0.08319850265979767,-0.0012234189780429006,0.029705610126256943,-0.05722350627183914,-0.05441977456212044,0.04997267946600914,-0.043512456119060516,-0.0107782743871212,4.307460376989074e-34,0.041867513209581375,-0.056889548897743225,0.05650864169001579,0.05284906178712845,0.01816975697875023,0.027799447998404503,0.001542915590107441,0.11484237760305405,0.01583683490753174,0.041760340332984924,0.005197704304009676,-0.027090588584542274,0.07051106542348862,0.04080424830317497,0.05002833157777786,-0.0165733490139246,0.05394663289189339,0.017888236790895462,-0.011731769889593124,-0.09176204353570938,-0.09784775227308273,0.027573224157094955,-0.025020964443683624,0.08094871044158936,-0.055594902485609055,0.01663299836218357,-0.04182685166597366,-0.07201472669839859,-0.024858489632606506,-0.12327413260936737,0.009661690331995487,-0.06393049657344818,-0.006335755344480276,-0.014046985656023026,0.015542411245405674,0.08729712665081024,-0.0058231414295732975,-0.021572191268205643,-0.015454456210136414,0.10753604024648666,-0.04980937018990517,-0.021014567464590073,-0.019821444526314735,0.023742036893963814,0.037426549941301346,0.03544533997774124,0.07752833515405655,-0.0822920873761177,0.006318238563835621,-0.0034548596013337374,-0.00866683479398489,0.009545431472361088,-0.073588527739048,0.03206409513950348,0.01806277222931385,-0.02610817737877369,-0.015290198847651482,-0.0509834811091423,0.04363076016306877,-0.05882854759693146,-0.060925327241420746,0.009189744479954243,0.027315471321344376,-0.013715657405555248,-0.06281166523694992,-0.046521034091711044,-0.08570568263530731,0.06891371309757233,0.03521453216671944,-0.06495369225740433,0.09022471308708191,-0.007738291285932064,-0.019097523763775826,0.04898460581898689,0.05593239516019821,0.05292205885052681,0.014454263262450695,0.0002975801471620798,0.0891973152756691,0.031456202268600464,-0.009362764656543732,-0.056773632764816284,-0.01724647916853428,0.04108578711748123,0.05227909982204437,0.05832493305206299,-0.026416506618261337,0.05358535051345825,0.0964566022157669,0.005229799542576075,-0.021145205944776535,0.07111257314682007,0.05730684474110603,0.000025337298211525194,0.07698363810777664,-2.447539237948604e-8,-0.015675831586122513,0.04804076626896858,0.01440403237938881,0.06477660685777664,0.008260796777904034,-0.006468750070780516,-0.030396759510040283,-0.10116229951381683,-0.11704880744218826,0.02462637983262539,-0.006221356336027384,-0.026510225608944893,-0.07434213906526566,-0.008701504208147526,0.005438900552690029,0.07635647803544998,0.02230868488550186,0.04149329289793968,0.041611798107624054,0.029321562498807907,-0.03521266207098961,0.05667222663760185,0.0021708249114453793,-0.06172974035143852,-0.08569815009832382,-0.05999857187271118,-0.04289528355002403,-0.10588923841714859,0.015043172985315323,0.03780579939484596,-0.004006412345916033,-0.002340840408578515,-0.0787198469042778,0.003729167627170682,0.03593125566840172,0.026592107489705086,0.01883321814239025,-0.04224354028701782,0.10144250094890594,-0.0016359551809728146,0.027469223365187645,0.05461126193404198,-0.009373935870826244,0.03029225952923298,0.015663616359233856,0.005904930643737316,-0.009969839826226234,-0.10298369079828262,-0.03306803107261658,-0.060142189264297485,-0.052056778222322464,0.004080782178789377,-0.04110422357916832,0.12179713696241379,0.012327528558671474,0.004000075627118349,-0.006086333654820919,-0.06657007336616516,-0.021664934232831,0.06356467306613922,-0.002308352617546916,-0.03918721154332161,0.0028368146158754826,-0.002365118358284235]},{"text":"How easy it is to talk!","book":"Down and Out in Paris and London","chapter":58,"embedding":[-0.009976816363632679,-0.04962863400578499,0.04776320978999138,0.024225737899541855,-0.039356499910354614,-0.0390377976000309,0.07970571517944336,-0.007793910335749388,0.021544547751545906,-0.05571495369076729,-0.06320614367723465,-0.03302641585469246,-0.036004941910505295,0.045808300375938416,0.07113684713840485,-0.03940795361995697,0.05199594795703888,-0.02922939322888851,-0.032857295125722885,-0.009093057364225388,-0.0026473032776266336,0.03545784950256348,-0.001619878108613193,-0.02734016440808773,0.01716160587966442,0.03162581846117973,-0.10860435664653778,0.012865721248090267,0.06406515091657639,0.02863674983382225,0.0005104727461002767,0.07575473189353943,0.07230830937623978,0.0850427895784378,-0.13698656857013702,0.06407924741506577,0.04328189045190811,0.010242772288620472,-0.020503751933574677,-0.01137421652674675,-0.08835599571466446,0.005464467220008373,0.04877227917313576,-0.030051907524466515,-0.016671793535351753,-0.07608099281787872,-0.017232665792107582,0.08529335260391235,0.030376676470041275,0.019975338131189346,-0.03260910511016846,0.002175776520743966,0.021784530952572823,0.056883469223976135,-0.024183912202715874,0.06525569409132004,-0.04968700185418129,0.037107765674591064,0.003824338549748063,0.009376871399581432,-0.05022364482283592,-0.08313841372728348,-0.004950841888785362,0.01986905187368393,-0.007470493204891682,-0.009702442213892937,0.022920645773410797,-0.009633180685341358,-0.027095085009932518,0.03582269698381424,-0.03657787665724754,0.06317997723817825,-0.027686521410942078,0.011221444234251976,-0.0036837083753198385,-0.04369877651333809,0.02706868201494217,-0.09583217650651932,0.05358341336250305,0.11090895533561707,0.03950854763388634,-0.0801699161529541,-0.000963639235123992,0.029032206162810326,0.010367483831942081,-0.11229154467582703,-0.03030858188867569,0.009806027635931969,-0.03973083943128586,0.026660414412617683,-0.006018461659550667,-0.01529112458229065,-0.03517574444413185,0.008737651631236076,0.012374592944979668,-0.014945375733077526,0.021534118801355362,0.04641614481806755,-0.16072343289852142,0.06481907516717911,-0.04731890559196472,0.00668086064979434,0.022889453917741776,-0.06853893399238586,-0.05929027125239372,0.03848010301589966,0.00012123745545977727,0.02119886688888073,-0.09046578407287598,0.01137648057192564,-0.06379362940788269,-0.004070041701197624,0.02541119046509266,0.05626200884580612,0.017562955617904663,0.005965606775134802,-0.0021464615128934383,-0.06510700285434723,-0.007840712554752827,0.03529513254761696,0.009964367374777794,0.05286281928420067,0.041855502873659134,0.020402168855071068,-0.006281483452767134,0.01882859505712986,0.06785205006599426,-5.668570612264978e-33,0.08583470433950424,0.1088651716709137,0.0449480302631855,0.16786102950572968,-0.10268846154212952,0.03466181457042694,-0.03897999972105026,-0.047561317682266235,-0.008931837044656277,0.015102798119187355,0.059881940484046936,-0.035448357462882996,0.0020765294320881367,-0.025282150134444237,0.08990930020809174,-0.017006097361445427,-0.13360199332237244,-0.02088099718093872,-0.0181080624461174,-0.020448561757802963,0.0027291805017739534,0.021286167204380035,-0.00021840918634552509,0.045053351670503616,0.060119617730379105,0.008926519192755222,0.02299564704298973,-0.13081330060958862,0.05737655982375145,-0.005422078538686037,-0.06915213912725449,-0.013342751190066338,-0.005010880064219236,0.016761384904384613,0.03671489655971527,-0.06801389902830124,0.06007297709584236,-0.051072120666503906,0.0007152919424697757,-0.0031629116274416447,0.005549598019570112,-0.007411965634673834,0.003407427342608571,-0.09138970822095871,0.0552494078874588,0.10948537290096283,-0.07218513637781143,-0.03084561601281166,-0.029813021421432495,-0.05522279068827629,-0.08976662158966064,-0.012375283986330032,-0.055614057928323746,0.021529288962483406,0.0172455795109272,-0.018977856263518333,0.01786763034760952,-0.03818271681666374,0.04104694724082947,0.06513600796461105,0.041468556970357895,0.08794162422418594,0.010307446122169495,-0.04418710619211197,0.020540161058306694,0.014733707532286644,-0.11057201027870178,0.04882396385073662,0.04486161470413208,-0.0707026869058609,0.019907284528017044,-0.018605370074510574,-0.06298088282346725,-0.06800901144742966,0.013378827832639217,0.09271886944770813,0.08596191555261612,-0.06824149936437607,-0.017840351909399033,0.08700919151306152,-0.008440956473350525,0.0025695485528558493,-0.03475188836455345,0.003369132522493601,-0.020622946321964264,-0.04613516107201576,-0.0823010504245758,-0.11447691917419434,-0.024958044290542603,0.04128829762339592,0.007297702599316835,0.007036630529910326,0.05355565994977951,-0.016433460637927055,0.007298870012164116,3.356572323553209e-33,0.04433037340641022,0.05588708445429802,0.046118687838315964,0.06608664244413376,-0.04511071369051933,0.02496505342423916,0.07684516161680222,0.09333576261997223,-0.0030167875811457634,0.040648382157087326,-0.0767500028014183,0.002020900836214423,0.01962672546505928,-0.05907189100980759,0.09888209402561188,-0.0036015016958117485,0.06701379269361496,0.029613541439175606,0.07237637042999268,0.01648576557636261,0.004361759405583143,0.014956172555685043,-0.0453687384724617,0.003449853742495179,-0.08322644978761673,-0.029423989355564117,0.013422892428934574,-0.07097858935594559,-0.039526280015707016,-0.04729508236050606,-0.054914724081754684,0.06584326177835464,-0.07637958228588104,0.020868755877017975,-0.02299593761563301,0.08891560137271881,-0.057737696915864944,0.0074035292491316795,-0.0024259977508336306,-0.0250433050096035,-0.02252390794456005,0.013584677129983902,-0.021539220586419106,0.01610652543604374,0.01646495796740055,-0.014537419192492962,0.04018586874008179,-0.0810442864894867,-0.07396608591079712,0.07426571846008301,-0.000006865210707474034,-0.0038381479680538177,0.057584747672080994,-0.07637783885002136,-0.003088534576818347,-0.043517183512449265,0.05097198486328125,0.008441423997282982,0.041891131550073624,0.016311541199684143,-0.05808337777853012,0.05173609405755997,-0.004304639063775539,0.02005988359451294,0.0173525121062994,-0.014709641225636005,-0.06524214893579483,-0.019422998651862144,0.08840849995613098,-0.005657747853547335,0.018949534744024277,0.01935620978474617,-0.04898447170853615,0.038707200437784195,0.015178969129920006,0.025419071316719055,-0.00025464172358624637,-0.13486474752426147,-0.029705051332712173,-0.06109394505620003,-0.018989404663443565,0.07549041509628296,0.009495191276073456,-0.09500613063573837,-0.04804990068078041,0.06384741514921188,0.03810082748532295,-0.027759680524468422,0.010272620245814323,-0.0013915107119828463,-0.06090189516544342,0.013694646768271923,0.056272007524967194,-0.011666064150631428,-0.02129318192601204,-1.9167591958080266e-8,-0.040665771812200546,-0.08165194094181061,0.02535356394946575,-0.049346622079610825,0.021595997735857964,-0.009730076417326927,-0.0017659245058894157,0.04113379120826721,-0.008798955008387566,0.01654507964849472,0.010769722051918507,0.027630597352981567,-0.07781396061182022,0.13240808248519897,0.005277179181575775,0.03183421492576599,0.04419626668095589,0.0617721825838089,0.005098448600620031,0.02149425633251667,0.04378993809223175,-0.03884352743625641,-0.07547196745872498,0.09181457757949829,-0.021655729040503502,-0.018459651619195938,0.06936660408973694,0.08277370780706406,0.002757972339168191,-0.008908374235033989,-0.004259724635630846,0.023372666910290718,-0.08088120818138123,0.09353071451187134,-0.04594578593969345,-0.08927235752344131,0.0013690978521481156,-0.08456437289714813,-0.021368563175201416,-0.024636343121528625,-0.0021296488121151924,0.025611817836761475,0.0041063884273171425,-0.015975307673215866,-0.0005306301172822714,0.07815289497375488,-0.0007690104539506137,-0.12402036786079407,-0.009236058220267296,-0.05575022101402283,0.03271404281258583,0.03272450342774391,0.07662339508533478,-0.020474297925829887,0.03530195355415344,0.07392875105142593,0.033233094960451126,0.018920447677373886,0.009064528159797192,0.08042606711387634,0.04133152589201927,0.12510675191879272,-0.10795950144529343,-0.005616479087620974]},{"text":"How could that degrade me if it did not degrade you to have it done for you?","book":"Down and Out in Paris and London","chapter":58,"embedding":[-0.019721413031220436,0.08390797674655914,0.10222042351961136,0.03531726077198982,0.04264998808503151,-0.1463082730770111,-0.028094211593270302,0.0408969484269619,-0.030664615333080292,-0.02213861048221588,0.024238815531134605,0.11396625638008118,0.026598744094371796,0.011992727406322956,-0.0574796199798584,-0.03146745264530182,0.04930824413895607,-0.018863793462514877,-0.04289320483803749,0.01974588632583618,-0.013312654569745064,0.04189020022749901,-0.02027723751962185,-0.018146377056837082,0.02082241326570511,0.05201840400695801,-0.07987233251333237,0.04186397045850754,-0.03859465569257736,-0.07307539880275726,-0.013005363754928112,0.02820526249706745,0.03232111036777496,-0.03819733113050461,-0.03428267315030098,0.01202474907040596,-0.044564925134181976,-0.005309123080223799,0.04512530192732811,-0.005585171282291412,0.024120140820741653,0.09284479916095734,-0.00046411703806370497,-0.03809841349720955,0.07092617452144623,-0.05138873681426048,-0.019283093512058258,-0.05588284879922867,0.057675816118717194,0.03169482573866844,-0.007629590108990669,-0.05993355065584183,-0.06067641079425812,-0.06441634148359299,-0.060943979769945145,0.021829470992088318,-0.01969980262219906,0.11930930614471436,-0.06758533418178558,0.03176033869385719,-0.05647774413228035,-0.04564186558127403,-0.018759794533252716,-0.005096027161926031,0.028733670711517334,-0.002416168572381139,0.03342724218964577,-0.057685427367687225,0.02802492491900921,0.0716542899608612,-0.007895492017269135,-0.05307099223136902,0.008962399326264858,0.015933649614453316,-0.05797376111149788,-0.02228131704032421,0.026570430025458336,-0.059225425124168396,-0.04512684419751167,0.02228880673646927,-0.019210640341043472,0.035385433584451675,-0.006258080713450909,0.034934524446725845,0.00797794945538044,-0.024526245892047882,0.06311152130365372,-0.1649380326271057,0.01016447227448225,0.013489949516952038,0.06776778399944305,0.03105972521007061,-0.02253333479166031,0.0006251326412893832,-0.035036612302064896,-0.009899231605231762,-0.07286501675844193,0.03956395760178566,-0.053463954478502274,0.06383901089429855,-0.06291013956069946,-0.021244607865810394,-0.018692966550588608,-0.02793499268591404,0.007144549395889044,-0.034310586750507355,0.009945353493094444,-0.030478045344352722,-0.029308347031474113,0.008048334158957005,-0.057831935584545135,0.002605519024655223,0.07037469744682312,0.05868092551827431,-0.012764936313033104,0.036053918302059174,0.027938097715377808,0.054844532161951065,-0.015436030924320221,-0.021593576297163963,-0.012839023023843765,-0.006823789328336716,0.0012790937907993793,-0.01399125438183546,-0.13688737154006958,-0.10857780277729034,0.015642419457435608,-3.3579230400307006e-33,0.0050760614685714245,-0.06480012089014053,0.053788527846336365,-0.0009630132117308676,0.09550829231739044,-0.020054161548614502,-0.02323148585855961,0.03730875998735428,-0.05281060189008713,0.01299438625574112,0.13414809107780457,-0.025542136281728745,-0.06433208286762238,0.04760456085205078,0.033748090267181396,0.04139146953821182,-0.014576285146176815,0.02887754514813423,0.0034674375783652067,0.05914391949772835,-0.004651634953916073,-0.041219741106033325,-0.04560745880007744,-0.054178573191165924,-0.10352926701307297,0.09298962354660034,0.03521423414349556,0.008464369922876358,-0.0013174538034945726,0.010526546277105808,-0.02149250917136669,0.009266955778002739,0.030839942395687103,-0.03997861221432686,-0.014592649415135384,0.09439856559038162,0.05305621027946472,-0.006856221705675125,0.05926337093114853,0.027026863768696785,0.009308623149991035,0.03408238664269447,0.014181935228407383,-0.036787208169698715,0.053766291588544846,-0.014092644676566124,0.0813642293214798,0.03111087530851364,-0.08646363019943237,0.00024136666615959257,0.01970943994820118,0.0791577473282814,0.07305380702018738,0.005268871784210205,-0.07388012856245041,-0.008760941214859486,0.07456126809120178,-0.018922073766589165,0.011589246802031994,0.01893068477511406,0.0039092241786420345,-0.03452318534255028,-0.031723618507385254,-0.040225401520729065,-0.026164589449763298,-0.07953000068664551,0.015133204869925976,0.008436175063252449,-0.016260216012597084,-0.04400820657610893,-0.052048396319150925,-0.035690195858478546,-0.03483130410313606,0.02289157174527645,0.04055675491690636,-0.0277764443308115,-0.04486370459198952,0.04241286963224411,0.057555388659238815,-0.1308663934469223,-0.019091332331299782,-0.009707705117762089,-0.08492220193147659,-0.027288217097520828,0.15553739666938782,0.011240649037063122,-0.021622566506266594,-0.0386388786137104,0.060666218400001526,-0.024701355025172234,0.00040959444595500827,-0.05942991375923157,-0.0471670888364315,-0.012884820811450481,-0.024220308288931847,1.204588387018116e-33,-0.0667443498969078,-0.029484091326594353,-0.07706062495708466,0.05469556152820587,-0.0620126873254776,0.007340807933360338,0.005637438036501408,-0.024246085435152054,-0.048207756131887436,0.000349920621374622,0.08660808205604553,-0.012797344475984573,0.02035955712199211,-0.01766998879611492,0.062421392649412155,0.06917376816272736,-0.04355645179748535,-0.028890449553728104,-0.07394897937774658,-0.06304971873760223,-0.005655392538756132,0.17009250819683075,0.06963229179382324,0.040172185748815536,-0.06924531608819962,0.026947181671857834,0.022698206827044487,-0.013149511069059372,0.08567637950181961,-0.020217088982462883,0.049683377146720886,-0.0249934084713459,-0.07625152170658112,0.049978166818618774,0.04204334691166878,0.03736454248428345,-0.04959649220108986,-0.0031272622290998697,-0.005155496299266815,-0.11228237301111221,-0.07275344431400299,-0.008541574701666832,-0.021444221958518028,0.013241712935268879,0.04342692717909813,-0.043769244104623795,0.07401864230632782,-0.09103568643331528,0.08882568031549454,0.09402170777320862,0.04235566779971123,0.026654889807105064,0.0038042699452489614,0.025411374866962433,-0.035218819975852966,-0.05964888632297516,0.18466289341449738,-0.0810752734541893,0.04647774249315262,0.08477857708930969,-0.03134933114051819,0.041808921843767166,0.03528175503015518,-0.04243713989853859,0.035266753286123276,0.0362769216299057,0.0360938161611557,0.06562540680170059,-0.0009497069986537099,-0.018053241074085236,0.026722844690084457,0.07323159277439117,-0.020778637379407883,0.003253183327615261,0.018211478367447853,-0.017773045226931572,-0.02699091099202633,0.08036419004201889,-0.06912446022033691,-0.06757067143917084,-0.027816984802484512,-0.05255008116364479,-0.0058920541778206825,0.015644367784261703,0.01429546345025301,-0.011178333312273026,-0.005389037076383829,0.061051953583955765,-0.13125166296958923,0.08537506312131882,0.02596650831401348,-0.023430567234754562,-0.053898394107818604,0.07981714606285095,0.03378036618232727,-2.6281911758019305e-8,-0.10382844507694244,0.04354391619563103,-0.014139043167233467,0.07381094247102737,0.06350083649158478,-0.09567756950855255,0.034241195768117905,0.004025543574243784,0.005978620611131191,-0.09003188461065292,-0.04047529026865959,0.005858784541487694,0.01784512773156166,0.07545686513185501,-0.020136695355176926,0.03876927122473717,-0.05309440195560455,-0.008056952618062496,-0.01227301824837923,-0.01700466312468052,-0.020725645124912262,-0.031025152653455734,-0.010123959742486477,-0.034440360963344574,-0.007377751171588898,0.031326763331890106,0.06827125698328018,0.0826115533709526,-0.0045066350139677525,-0.009650486521422863,0.10046562552452087,-0.010135767050087452,0.03422136604785919,0.03679179027676582,-0.027955206111073494,-0.07766759395599365,0.007599812466651201,0.01127148699015379,0.00297486106865108,0.062150854617357254,-0.03974587842822075,0.026451099663972855,-0.039196740835905075,0.10438517481088638,-0.052662406116724014,-0.04066016525030136,-0.021142398938536644,-0.04227696359157562,-0.04747023433446884,0.02561730518937111,0.07827386260032654,0.05907365679740906,0.0011322476202622056,0.04244930297136307,0.03456534072756767,0.00501952925696969,0.04008057713508606,0.018024608492851257,-0.015405007638037205,0.05459564924240112,0.08781129866838455,-0.043612491339445114,-0.02919807843863964,-0.044328171759843826]},{"text":"No: if you felt the beginnings of love for me you would not let it grow.","book":"Down and Out in Paris and London","chapter":59,"embedding":[-0.05985135957598686,0.047096118330955505,0.08570096641778946,0.07032421976327896,0.05941523239016533,-0.014859789982438087,0.002800443908199668,-0.0058350092731416225,0.05081024020910263,0.022671664133667946,0.013999846763908863,0.035227060317993164,-0.004659030120819807,0.03465883433818817,-0.002403675578534603,0.055903710424900055,-0.03564636781811714,-0.02933119237422943,-0.08123187720775604,0.07625254988670349,-0.0210806243121624,0.041774261742830276,-0.07240166515111923,-0.06764917075634003,-0.01379155833274126,0.02905108965933323,0.050221528857946396,0.06396874785423279,0.002498279558494687,0.04144022613763809,0.07535649836063385,0.0664757713675499,0.06401442736387253,0.010445719584822655,0.011601037345826626,0.024384675547480583,-0.0430370457470417,0.06056930124759674,0.018798986449837685,0.040009018033742905,0.03405442088842392,-0.032036930322647095,0.023879865184426308,-0.027971353381872177,-0.01236878614872694,-0.07142987102270126,0.028524169698357582,-0.026996225118637085,-0.09584981948137283,-0.0835639163851738,-0.005810081493109465,0.018331466242671013,-0.0009388257167302072,0.005947691388428211,0.04205131158232689,0.050321903079748154,-0.0011632242240011692,-0.016798963770270348,0.016023730859160423,0.051602866500616074,0.006107700057327747,0.08430539816617966,-0.01931322179734707,-0.02580418437719345,0.027453288435935974,0.05528133735060692,0.012374798767268658,-0.05964617058634758,0.033264487981796265,0.0034169184509664774,0.04889176785945892,0.11119803041219711,0.014867706224322319,0.04092466086149216,-0.058523569256067276,0.04018695652484894,-0.016606535762548447,-0.033410489559173584,0.07597645372152328,0.04465304687619209,-0.03183533251285553,0.03359570726752281,-0.014361949637532234,-0.002708748448640108,-0.15254612267017365,0.012140259146690369,0.048155974596738815,-0.09615431725978851,-0.035737209022045135,0.0330728255212307,-0.028600551187992096,-0.023224269971251488,-0.06741421669721603,0.03535236790776253,-0.044244877994060516,-0.0723295509815216,-0.10338296741247177,-0.013065056875348091,-0.061769939959049225,-0.00542054558172822,-0.0035124910064041615,0.0027497592382133007,-0.05377916991710663,0.06974013894796371,-0.03911133110523224,-0.023119285702705383,-0.10850485414266586,0.017125701531767845,-0.013352054171264172,0.016962362453341484,-0.004223141353577375,-0.04025053232908249,0.037847988307476044,0.0009865271858870983,0.028515171259641647,-0.021927284076809883,0.027606986463069916,-0.04136515036225319,0.06646127998828888,0.07918071001768112,0.05479370430111885,0.06554006040096283,-0.012923442758619785,0.056761156767606735,-0.11054827272891998,-0.18918882310390472,0.0027564670890569687,-4.0689523895362396e-33,-0.09840498864650726,-0.09046310186386108,0.037055984139442444,0.011581923812627792,-0.004172799177467823,-0.012466639280319214,-0.0010623120469972491,-0.0005893465713597834,-0.0880916491150856,-0.046210337430238724,0.01755410246551037,0.059413742274045944,-0.04494985193014145,-0.06839991360902786,0.007022093515843153,0.018105192109942436,0.02278219722211361,-0.01909921132028103,-0.019455473870038986,-0.016088154166936874,-0.05242248997092247,-0.0546967089176178,0.01159267220646143,-0.04840812459588051,-0.07334306836128235,-0.0467444509267807,-0.03521043434739113,-0.010100838728249073,0.028446746990084648,-0.019151486456394196,-0.0396944023668766,0.007953411899507046,-0.04138663411140442,-0.12949426472187042,-0.0023455237969756126,0.011301911436021328,0.028214819729328156,0.026769468560814857,0.015809478238224983,0.016705745831131935,-0.009776397608220577,0.04838123172521591,-0.000436841364717111,0.03305903449654579,-0.006475526839494705,0.04008510708808899,0.03999379649758339,-0.010853532701730728,-0.09090700000524521,-0.10974910110235214,0.006140863988548517,0.00664911326020956,0.08095133304595947,-0.029603371396660805,0.012960726395249367,0.01788872294127941,0.027111351490020752,0.05826403200626373,0.042677368968725204,-0.017065662890672684,-0.040771666914224625,-0.12364230304956436,-0.030113207176327705,0.06005715951323509,-0.002646037144586444,-0.04134506732225418,0.1094459667801857,0.030363038182258606,-0.032412923872470856,-0.006965539883822203,0.020928924903273582,0.016674362123012543,-0.040786486119031906,-0.025557691231369972,-0.01104043424129486,-0.0856604352593422,0.056365642696619034,0.013120576739311218,0.008962319232523441,-0.0530504547059536,0.03840894624590874,0.017459914088249207,-0.018892912194132805,0.01583024673163891,0.04684055224061012,-0.08809521049261093,0.017371205613017082,0.004184270277619362,0.013113576918840408,-0.0009590325644239783,0.018772577866911888,-0.005380481015890837,0.007971521466970444,-0.09634522348642349,-0.06291460245847702,2.4390402080188724e-33,0.05113833397626877,-0.014314953237771988,0.06915760040283203,-0.010670778341591358,-0.007966271601617336,-0.00450564082711935,-0.02654767781496048,0.0351128987967968,-0.037374284118413925,0.09434090554714203,0.043622419238090515,-0.04654168337583542,0.08997183293104172,0.005712336394935846,-0.0014381540240719914,-0.008306845091283321,-0.03700990974903107,-0.03816758468747139,-0.006431876216083765,0.0013429125538095832,-0.04832940176129341,-0.01272741798311472,-0.06002177298069,0.012067610397934914,0.02283683605492115,-0.006795240566134453,0.07791351526975632,0.04160507768392563,-0.028912628069519997,0.02752307988703251,0.040210939943790436,-0.02303759753704071,-0.052304498851299286,-0.04321584105491638,0.05049354210495949,-0.0024786435533314943,-0.01749931275844574,-0.027061980217695236,0.049580905586481094,0.011765267699956894,-0.03417875990271568,0.05708475038409233,-0.010957007296383381,0.021320773288607597,0.006631380412727594,-0.09776657819747925,0.17514708638191223,0.0415947362780571,0.04396931454539299,0.03964942693710327,-0.07137201726436615,0.05691775679588318,0.0010815489804372191,-0.045754995197057724,-0.03132089227437973,-0.006337338592857122,0.1679888367652893,0.07517508417367935,-0.04111620783805847,-0.07353335618972778,-0.05715116485953331,-0.011166214942932129,-0.01745934784412384,-0.08252178132534027,0.04208230972290039,0.012782936915755272,0.041711125522851944,0.0036019287072122097,-0.07930266112089157,-0.06519141048192978,0.06484340131282806,-0.006586278788745403,-0.01877918466925621,0.08048039674758911,-0.009075834415853024,-0.0994960218667984,-0.02301015891134739,-0.039558544754981995,-0.003321884199976921,-0.04501540586352348,-0.08437317609786987,0.020667267963290215,0.07739996165037155,-0.020945267751812935,-0.00964873842895031,-0.017405450344085693,-0.03810108080506325,-0.021429134532809258,-0.09942235052585602,0.022409509867429733,-0.047913700342178345,-0.0396018922328949,0.032484885305166245,-0.08940616250038147,0.0097047109156847,-2.4136014076248102e-8,-0.08731196820735931,-0.00863693468272686,0.002123332815244794,0.04234629124403,0.028183922171592712,0.045735448598861694,0.020503705367445946,-0.042742304503917694,0.01441210974007845,0.03398928418755531,-0.06685111671686172,0.030779534950852394,0.046265359967947006,0.0858447328209877,-0.010877968743443489,0.03396090120077133,0.15866640210151672,-0.08996178209781647,-0.004083708394318819,0.019568752497434616,0.07217816263437271,0.1661428064107895,-0.009573230519890785,0.0028900871984660625,-0.04963454604148865,0.005097271408885717,0.02229813113808632,-0.04665587097406387,-0.0644230917096138,-0.06356121599674225,0.10313102602958679,0.022695790976285934,0.007607686799019575,0.04365694150328636,0.0329207107424736,-0.019910680130124092,-0.05970776453614235,0.03908854350447655,-0.05586416274309158,-0.004468034952878952,0.05526392534375191,0.0791010856628418,0.058435991406440735,-0.002570187905803323,-0.08263548463582993,-0.020169563591480255,0.05251108109951019,-0.011124923825263977,0.009086063131690025,-0.08965528011322021,0.018112558871507645,0.06637973338365555,-0.024481147527694702,-0.01477134134620428,0.055681727826595306,0.014727715402841568,0.014533151872456074,0.12151304632425308,0.007027792278677225,-0.044171493500471115,0.036378294229507446,-0.044042084366083145,0.0459514744579792,-0.05470201373100281]},{"text":"I have no reason to be.","book":"Down and Out in Paris and London","chapter":59,"embedding":[-0.007303761783987284,-0.03435599058866501,-0.007047383580356836,0.006689694244414568,0.014869005419313908,-0.031166359782218933,0.07469889521598816,-0.039904817938804626,-0.0006084979395382106,0.0523599311709404,-0.06451670825481415,-0.10375884920358658,-0.0436822809278965,-0.004863284528255463,0.03937475383281708,-0.014095625840127468,0.01978827826678753,-0.13666780292987823,-0.03740105777978897,0.1143372505903244,-0.13419561088085175,-0.006141665391623974,0.05859464034438133,0.003684246214106679,0.009378422051668167,-0.018520524725317955,-0.007347473409026861,-0.02948063053190708,-0.08776290714740753,0.028344109654426575,-0.01657167822122574,0.014637205749750137,-0.06516005098819733,-0.007895846851170063,-0.0027096804697066545,0.030850067734718323,0.09404714405536652,-0.07636374235153198,0.028114933520555496,0.027924897149205208,0.052716344594955444,-0.03878041356801987,-0.0004617435915861279,0.013866120018064976,0.052830010652542114,-0.022321589291095734,0.001025940990075469,-0.07324773818254471,-0.008806692436337471,-0.06923194229602814,0.046041082590818405,0.03653411939740181,-0.018228137865662575,0.043029237538576126,-0.009546061977744102,0.014533288776874542,0.05737785995006561,-0.034059781581163406,0.047662511467933655,0.006095098331570625,-0.019383946433663368,0.03696252033114433,-0.0027567101642489433,0.009173344820737839,0.005896987393498421,-0.004882649518549442,-0.005460376385599375,0.04495714232325554,0.005747135728597641,0.003616997506469488,-0.017850957810878754,0.05954888463020325,0.008523955941200256,0.0335269421339035,-0.007993544451892376,-0.0754149928689003,0.04364345967769623,-0.010986670851707458,0.06287328898906708,0.10313639789819717,0.04442750662565231,-0.042940959334373474,-0.0008411043090745807,0.020305242389440536,-0.06742797791957855,-0.04905393347144127,0.0422249436378479,-0.0019350943621248007,0.0016454057767987251,0.020504796877503395,-0.04874716326594353,0.11263624578714371,0.03440621495246887,-0.014247122220695019,-0.051430243998765945,0.023669715970754623,-0.08223480731248856,0.0604301281273365,-0.08636590838432312,0.0942441076040268,-0.004576931241899729,-0.021705148741602898,0.018939631059765816,0.0561746209859848,0.03313685581088066,0.022045891731977463,-0.0015798091189935803,0.03701192885637283,-0.006364205852150917,-0.0659901574254036,-0.006972926203161478,0.028910264372825623,0.05994820594787598,-0.030372202396392822,0.0017337604658678174,0.028069794178009033,-0.015061919577419758,0.007172893732786179,0.049791451543569565,0.03580658882856369,0.026536762714385986,0.025326872244477272,-0.07649316638708115,0.0974879339337349,0.008354512974619865,-0.09137985855340958,-0.03402983024716377,-6.557542990520133e-33,-0.020680807530879974,0.046721842139959335,0.04050716012716293,-0.020886223763227463,-0.047700364142656326,0.02410797029733658,0.017714496701955795,-0.0025668146554380655,0.06406647711992264,-0.03459247201681137,0.026353972032666206,0.04640166088938713,-0.060534052550792694,-0.10950253903865814,0.04880174621939659,0.06993401795625687,0.0029712466057389975,0.061069127172231674,0.00635508494451642,-0.001465060282498598,-0.001645646640099585,-0.03651462495326996,-0.03687647730112076,0.02661088854074478,-0.08405490964651108,-0.022873608395457268,-0.024435289204120636,-0.054129090160131454,0.06322062015533447,0.0017448149155825377,-0.03036358579993248,-0.024137046188116074,0.00791611522436142,-0.0234408937394619,-0.012680639512836933,-0.10815387964248657,-0.03318512439727783,-0.01997862011194229,-0.053923383355140686,-0.037771884351968765,0.054543569684028625,-0.017531920224428177,0.014642199501395226,0.05890675261616707,0.023989763110876083,-0.01861484907567501,0.07221539318561554,0.04948984459042549,-0.1021033301949501,-0.021855046972632408,-0.0021429548505693674,0.04074295610189438,0.0805661752820015,-0.03694435581564903,0.043342120945453644,-0.1090366467833519,0.046389348804950714,0.011419914662837982,0.033692117780447006,-0.02822181209921837,-0.09616904705762863,0.0719497948884964,-0.07675720751285553,0.05843767896294594,-0.13776443898677826,-0.0225966926664114,0.06404649466276169,0.04556193947792053,0.06117074191570282,-0.05495389178395271,0.007327822968363762,-0.026803314685821533,-0.07764048129320145,-0.01120094582438469,0.06053812801837921,-0.010853187181055546,0.00586217176169157,0.056671034544706345,0.04911334440112114,-0.021137844771146774,0.034373074769973755,0.09183245897293091,-0.10757752507925034,0.005841108039021492,0.04964707791805267,-0.061344098299741745,0.010104984045028687,-0.024298330768942833,0.06894766539335251,0.06662841886281967,0.03218598663806915,-0.013330011628568172,0.029909322038292885,-0.09426411986351013,-0.1479254961013794,4.916134106909739e-33,0.0051186466589570045,0.020659858360886574,0.0009661631193011999,-0.05442395061254501,-0.027778049930930138,0.008653339929878712,0.04564720019698143,0.022501027211546898,0.02665402740240097,0.03366328030824661,0.08881839364767075,0.006623843684792519,0.03780008479952812,-0.02821466512978077,0.05897648259997368,-0.039468854665756226,0.008856945671141148,0.006904850713908672,-0.050066422671079636,-0.0787888839840889,-0.05293157324194908,0.09765192121267319,-0.14179910719394684,0.05014066398143768,-0.004122874699532986,0.0026701183523982763,0.008682857267558575,0.031018758192658424,0.04639054834842682,0.03877811133861542,-0.006798583082854748,0.043838899582624435,-0.03874445706605911,-0.10641996562480927,-0.023551136255264282,0.07963569462299347,0.08973831683397293,0.030648859217762947,-0.0316145196557045,-0.06916225701570511,-0.03702365607023239,0.00746172247454524,-0.053561750799417496,0.014736533164978027,0.028271017596125603,-0.020696310326457024,0.13509519398212433,0.045259904116392136,0.06893340498209,0.035257428884506226,-0.08479799330234528,0.01749790646135807,0.026603305712342262,0.0057112970389425755,0.04932834580540657,0.007960652932524681,-0.05200992524623871,0.0017679817974567413,0.0232850294560194,-0.03266935795545578,-0.022524427622556686,-0.007850891910493374,0.027844557538628578,-0.027375947684049606,0.1214403435587883,-0.02614184282720089,-0.061783984303474426,0.05720493942499161,-0.02802451141178608,-0.0790170431137085,-0.009946868754923344,-0.0991162359714508,-0.05745718628168106,0.08074896782636642,-0.03616134822368622,-0.003638830501586199,0.020025311037898064,0.06019328534603119,0.041097674518823624,-0.12311107665300369,-0.045728620141744614,0.02463366463780403,0.08288337290287018,0.020813720300793648,-0.022772004827857018,-0.0005615029367618263,-0.007640026975423098,0.0700240284204483,0.06437668204307556,-0.044615983963012695,-0.011408586986362934,-0.003753058146685362,0.012221237644553185,0.04423867166042328,-0.01248839870095253,-2.0986275828249745e-8,0.07942134141921997,0.024035366252064705,0.012013541534543037,-0.04786316305398941,-0.10200396180152893,-0.006919080391526222,-0.03350476175546646,-0.06953797489404678,-0.0094938725233078,0.06790068000555038,0.052360113710165024,-0.016088327392935753,-0.12527042627334595,0.024131445214152336,0.041605107486248016,0.04775196686387062,0.010050014592707157,-0.09797937422990799,-0.025843074545264244,0.09410689026117325,-0.03780016675591469,0.004657119978219271,-0.07369176298379898,0.038968175649642944,0.02407698892056942,-0.009259327314794064,0.04094477370381355,0.01684661954641342,0.06667105853557587,0.031343843787908554,0.02488597296178341,0.07169482856988907,-0.04864681884646416,0.041355960071086884,-0.05841929093003273,-0.07956207543611526,-0.025816617533564568,-0.024406500160694122,-0.03560715168714523,0.03587455302476883,0.009812898002564907,0.10401802510023117,0.03752189129590988,0.0834236890077591,-0.010372001677751541,-0.025795696303248405,0.07570488750934601,-0.04933234304189682,-0.004649304784834385,0.0508769191801548,-0.0726919025182724,-0.06087397783994675,0.0517381876707077,0.06446715444326401,-0.010129889473319054,0.05010400712490082,-0.008233161643147469,0.01787535659968853,-0.062094878405332565,0.06854555010795593,0.09034371376037598,-0.004260675981640816,0.022564908489584923,-0.028660204261541367]},{"text":"You are not good enough for me. (_She turns to the door._) SERGIUS. (_springing after her and catching her fiercely in his arms_).","book":"Down and Out in Paris and London","chapter":59,"embedding":[0.03789715841412544,0.01232477929443121,0.04483898729085922,0.015113119967281818,-0.01410854235291481,0.004019035492092371,0.09659043699502945,-0.08480719476938248,-0.03906743600964546,-0.021534422412514687,0.021702967584133148,-0.0613105334341526,-0.043970074504613876,0.05304606631398201,0.09448026120662689,0.0024415459483861923,0.09456275403499603,0.003745605703443289,-0.03425540775060654,0.13260814547538757,0.07320749759674072,-0.01935005746781826,0.10890784114599228,-0.03593098372220993,-0.12602968513965607,-0.021745409816503525,0.013154787942767143,-0.05045048147439957,0.008333995006978512,-0.05670297518372536,-0.0597023107111454,-0.016649087890982628,-0.0695565864443779,0.0016765648033469915,-0.005767728667706251,0.08390453457832336,0.015463842079043388,-0.10660391300916672,0.047097913920879364,-0.01046681497246027,0.04538955166935921,0.007175113540142775,0.00232681748457253,0.002043041866272688,-0.034700799733400345,-0.01496992539614439,-0.007594718597829342,0.042082689702510834,-0.016412891447544098,-0.11126881837844849,-0.14068816602230072,0.028407016769051552,-0.11309611052274704,0.10295473784208298,0.026717010885477066,-0.002348662819713354,0.06176294758915901,-0.07690849155187607,0.027381472289562225,-0.01046031154692173,-0.004410098772495985,0.041258104145526886,0.010470876470208168,0.08834054321050644,-0.06460157781839371,-0.04981643334031105,-0.019976232200860977,-0.0059754373505711555,-0.02808867208659649,0.15615741908550262,0.023364463821053505,-0.008794717490673065,-0.09624052792787552,0.04382559657096863,-0.05504625663161278,0.015449545346200466,0.020484866574406624,-0.045025039464235306,0.11035871505737305,-0.000004517642992141191,-0.08425942808389664,-0.03766154870390892,-0.03674561157822609,0.10344167053699493,-0.02415630780160427,0.0449194610118866,0.03051343560218811,-0.0008797688642516732,0.03332114964723587,0.03378239646553993,-0.058588624000549316,-0.0391441248357296,-0.056563399732112885,0.004082608036696911,-0.054732661694288254,0.01958874799311161,-0.056101005524396896,-0.060822948813438416,-0.05646863579750061,0.010557233355939388,0.03643609955906868,0.05953046306967735,0.04638051986694336,0.034626007080078125,-0.03842781111598015,0.061853621155023575,-0.055140845477581024,-0.04652874171733856,-0.026210950687527657,-0.025960495695471764,-0.00932964775711298,-0.08915538340806961,-0.021868474781513214,0.03938785195350647,0.03740889951586723,0.011747406795620918,0.012586621567606926,-0.008658261969685555,-0.015421559102833271,0.12602071464061737,0.07705885171890259,-0.006798980291932821,-0.0008860438247211277,0.03150037303566933,-0.058002375066280365,-0.004363381303846836,-0.021084679290652275,-4.4261843880671635e-34,0.07590603828430176,0.02231392078101635,0.03133485093712807,-0.05434369668364525,-0.04139663279056549,-0.0008611945086158812,-0.019193043932318687,0.03646523132920265,0.00455855717882514,0.10244203358888626,-0.11714515089988708,0.004939245991408825,-0.055332984775304794,-0.017303187400102615,-0.010505029000341892,-0.029344191774725914,-0.00024881979334168136,-0.017005598172545433,-0.010242865420877934,0.08358157426118851,0.05906256288290024,0.010958780534565449,0.029848134145140648,-0.02017807774245739,-0.01993195153772831,-0.11311338096857071,-0.02513636089861393,-0.0007189346360974014,0.015792116522789,0.023864705115556717,0.05037977546453476,-0.05431557819247246,0.00739889033138752,0.022316450253129005,0.037117939442396164,0.0002339664933970198,-0.043333519250154495,0.0014410425210371614,-0.09502935409545898,0.007200189400464296,-0.18478479981422424,-0.00509550841525197,0.011586671695113182,0.043484415858983994,-0.0487271323800087,-0.06871133297681808,-0.03399954363703728,0.056071046739816666,-0.0566309317946434,-0.037001658231019974,-0.03902769833803177,-0.02392079494893551,0.07755544781684875,0.0033686973620206118,-0.05466271936893463,0.0018895328976213932,0.052502166479825974,0.04405941441655159,0.021693198010325432,0.021669398993253708,0.03322015330195427,-0.039762262254953384,0.048024438321590424,-0.044289879500865936,0.027950618416070938,-0.06054338440299034,0.0073510874062776566,-0.025900425389409065,0.03549067676067352,-0.05176912248134613,-0.05906457453966141,0.033698562532663345,-0.03378533199429512,0.09373544901609421,0.03073674999177456,-0.04408508539199829,0.026205426082015038,-0.04890705272555351,0.044133659452199936,-0.09900745749473572,-0.0023851634468883276,0.033914580941200256,-0.1084330603480339,0.08347766101360321,0.024530284106731415,0.0015950517263263464,-0.007391294930130243,-0.03837490454316139,-0.03768571838736534,0.04306012764573097,-0.02194405347108841,0.046674709767103195,0.045583877712488174,-0.0438089482486248,-0.029822876676917076,-1.5015528820178775e-33,0.09712548553943634,-0.0014509552856907248,-0.053391117602586746,-0.008825482800602913,-0.04409823939204216,0.01660553552210331,-0.03288908302783966,-0.07401753216981888,0.04451241344213486,-0.02301494963467121,-0.06662272661924362,-0.038552794605493546,0.12366139888763428,-0.006210834253579378,0.032444972544908524,-0.06882788240909576,0.034346193075180054,-0.01258647721260786,0.07195722311735153,0.05809418857097626,0.0004898365586996078,0.05780623108148575,-0.024427538737654686,0.03755979984998703,-0.015947682783007622,0.003304645186290145,0.08474823832511902,0.006609710864722729,-0.08130791038274765,0.054518405348062515,0.03340562805533409,-0.14242076873779297,0.014435817487537861,0.015631210058927536,0.03597774729132652,0.02519926428794861,0.0058925095945596695,-0.07564585655927658,0.021956119686365128,-0.01759575679898262,-0.006370869465172291,0.028929416090250015,0.10369982570409775,0.0841529443860054,0.0463840588927269,0.029312554746866226,-0.024946173653006554,0.09903154522180557,0.0037531054113060236,0.021992169320583344,-0.029889240860939026,-0.06382222473621368,-0.03091173619031906,-0.009775486774742603,0.03515927866101265,0.04601340740919113,0.07741839438676834,-0.03512730449438095,0.043199796229600906,-0.01239525806158781,-0.04581702500581741,-0.003925879020243883,0.010001015849411488,0.038723647594451904,-0.02118062414228916,-0.04275355488061905,-0.03671776130795479,-0.006469789892435074,-0.026207320392131805,-0.07321009039878845,-0.026595626026391983,0.03465070202946663,-0.049310412257909775,-0.02977832779288292,0.0294078029692173,0.0413689911365509,-0.028217192739248276,-0.07382778823375702,0.028271544724702835,-0.15414206683635712,-0.016271095722913742,-0.029932796955108643,-0.007781376130878925,-0.06159914657473564,-0.0029151365160942078,-0.009508688002824783,0.027121413499116898,0.039607565850019455,0.030768685042858124,-0.03469603881239891,0.024344881996512413,0.07187825441360474,0.14251422882080078,-0.04429866373538971,0.02759811095893383,-3.04678202667219e-8,-0.008795632049441338,0.008972114883363247,0.04700227826833725,-0.0797504335641861,-0.03508748859167099,0.06102919206023216,-0.07512680441141129,-0.03976721689105034,-0.026454119011759758,-0.08742309361696243,0.058511219918727875,0.06526146084070206,0.048699527978897095,-0.044403076171875,0.029969168826937675,0.043934907764196396,-0.0275705698877573,0.04508474841713905,-0.04894345626235008,-0.032121915370225906,0.013223176822066307,-0.01377175748348236,0.029836971312761307,-0.011722780764102936,-0.005544449668377638,0.03814799711108208,-0.023534473031759262,-0.01720106042921543,-0.022097108885645866,0.02402808703482151,0.08522595465183258,0.027127394452691078,-0.04601876065135002,-0.011145637370646,-0.028061551973223686,0.042405273765325546,-0.019902199506759644,0.031986285001039505,0.02846531756222248,0.021849649026989937,0.012969099916517735,0.01149033848196268,-0.06572059541940689,0.007395762950181961,-0.009933342225849628,0.051106661558151245,0.12590305507183075,-0.07809370011091232,-0.013411578722298145,0.015233288519084454,-0.015328825451433659,-0.05312744155526161,-0.01432592049241066,-0.013005583547055721,-0.04329753294587135,0.028628835454583168,-0.005650606006383896,-0.025950105860829353,-0.019679367542266846,0.021795742213726044,0.045606765896081924,0.0726928561925888,-0.031060250476002693,0.0037936584558337927]},{"text":"Do you think I believe that she—she! whose worst thoughts are higher than your best ones, is capable of trifling with another man behind my back?","book":"Down and Out in Paris and London","chapter":60,"embedding":[0.02680348977446556,-0.12210261821746826,0.013694040477275848,-0.053679101169109344,-0.05154736340045929,-0.054937634617090225,0.07906956225633621,0.043694231659173965,-0.011742832139134407,0.000027405279979575425,-0.0478486530482769,0.009905222803354263,0.07137351483106613,-0.014817021787166595,-0.009233909659087658,0.030463047325611115,-0.024792388081550598,-0.013446785509586334,-0.028261102735996246,0.13047249615192413,-0.05590105429291725,-0.005413526203483343,0.009423342533409595,-0.010144834406673908,-0.033793848007917404,-0.020293209701776505,-0.012659484520554543,-0.00979829952120781,-0.06154805049300194,0.020805219188332558,-0.03764437884092331,0.00568125955760479,-0.05949424207210541,0.025766516104340553,0.09174183011054993,0.026285650208592415,-0.0245316531509161,0.02875014953315258,0.07264133542776108,-0.002195945708081126,-0.06398522108793259,-0.04566872864961624,0.04262609779834747,-0.041722819209098816,-0.05686955526471138,0.017158783972263336,0.03176742419600487,-0.012650425545871258,-0.10420899838209152,-0.15149353444576263,-0.06031206250190735,0.11269384622573853,0.04429875686764717,0.035964589565992355,-0.0004930846043862402,-0.00164496258366853,0.05409809201955795,0.025646137073636055,-0.02144666574895382,0.05969088152050972,0.011293703690171242,0.09124159812927246,0.03852013871073723,0.03773133456707001,0.03299606591463089,0.006591737270355225,-0.02566930092871189,0.04880982264876366,-0.08196673542261124,0.09882295876741409,-0.000844719645101577,0.09201284497976303,-0.09557648003101349,0.013843358494341373,0.02389068901538849,-0.012068931013345718,0.0694950670003891,-0.05162323638796806,0.014773458242416382,0.04478823393583298,0.04579412192106247,0.0717049092054367,0.07816966623067856,0.06338857114315033,0.017611252143979073,-0.1081724613904953,0.000029197313779150136,-0.03409584239125252,0.007142634596675634,0.011539201252162457,-0.10069902241230011,-0.09289012849330902,-0.013088135980069637,0.042029399424791336,-0.016985956579446793,0.05882352963089943,-0.1506265103816986,0.010313868522644043,-0.1048651933670044,-0.0030479026027023792,-0.0007869453984312713,-0.0037174890749156475,-0.007810309529304504,0.021373454481363297,0.05515894666314125,0.04086029529571533,0.07568138837814331,-0.04324079304933548,-0.029872331768274307,-0.06443707644939423,0.021760957315564156,-0.040908925235271454,-0.050443384796381,-0.03320813551545143,0.010820404626429081,0.03285319730639458,0.03247029334306717,-0.011083650402724743,-0.031171193346381187,-0.09845197945833206,0.009144962765276432,0.066196970641613,0.1030537411570549,0.04906371608376503,0.07189299911260605,-0.12541943788528442,-0.01941104419529438,7.301466529052518e-34,0.008148222230374813,0.05614779517054558,0.0341372974216938,-0.06206154823303223,0.026831626892089844,0.07572933286428452,-0.03457747399806976,0.03472014516592026,0.05148835480213165,0.001184399938210845,-0.06492497771978378,0.03759795427322388,-0.04375382512807846,-0.008064753375947475,-0.0729222297668457,0.08158023655414581,-0.037204086780548096,0.015468229539692402,-0.04020107164978981,-0.002034147270023823,0.030361516401171684,0.07648895680904388,-0.006373780779540539,-0.08529634773731232,-0.04921009764075279,-0.019871095195412636,0.0955890640616417,0.016838958486914635,-0.0023000380024313927,0.01725381799042225,-0.08539226651191711,0.0032529975287616253,0.04724595323204994,0.03742178529500961,-0.0043362807482481,0.0010232331696897745,-0.025657637044787407,0.016483381390571594,-0.005646212957799435,0.04903213307261467,-0.00153638469055295,-0.018058011308312416,0.06456149369478226,0.006732433568686247,-0.09671013057231903,-0.02208244614303112,0.00363402278162539,0.038141001015901566,-0.08201742172241211,-0.08363423496484756,-0.0695023387670517,0.0070079416036605835,0.037618041038513184,0.008660254999995232,0.013002337887883186,0.009653527289628983,0.11052820086479187,-0.004270931705832481,0.11200203746557236,0.037450291216373444,-0.044343747198581696,-0.06677791476249695,-0.07754919677972794,-0.03008143976330757,0.00792272761464119,-0.03571189567446709,-0.013684811070561409,-0.04616180434823036,0.021442832425236702,0.05073372274637222,-0.03406383842229843,0.07803158462047577,-0.03924841061234474,0.010351396165788174,-0.058544937521219254,-0.014284176751971245,0.0135649424046278,-0.014226519502699375,0.04377139359712601,-0.1018456518650055,0.012202855199575424,0.002726250560954213,-0.010177930817008018,-0.007603361736983061,-0.010251456871628761,-0.012606113217771053,-0.09026248753070831,-0.07067163288593292,0.04170346260070801,0.06143182888627052,-0.016294334083795547,0.06405050307512283,0.06744324415922165,-0.06206749752163887,-0.14062446355819702,-2.2771450648808805e-33,-0.059325553476810455,-0.00922904908657074,0.10710972547531128,0.042709361761808395,0.0264273714274168,-0.010971995070576668,0.030716296285390854,-0.021892864257097244,-0.02953832969069481,0.0293353833258152,0.039185915142297745,-0.0355335995554924,0.04235135391354561,0.019423406571149826,0.09340357780456543,-0.12400315701961517,-0.028415895998477936,-0.09276935458183289,0.028975695371627808,-0.08406363427639008,-0.02573736198246479,0.017292045056819916,0.04360638186335564,0.06136874482035637,-0.0006475546979345381,0.03473075106739998,0.1383914053440094,0.00937596708536148,0.05892429128289223,-0.04911942034959793,-0.012326285243034363,-0.06874614953994751,-0.03905940428376198,0.004983431193977594,0.050188906490802765,-0.0036603508051484823,-0.08658534288406372,-0.050852369517087936,0.040047723799943924,-0.04145372658967972,-0.06897567957639694,-0.026454083621501923,-0.007482819724828005,-0.004047560039907694,-0.0133783845230937,-0.00834402721375227,0.032653044909238815,0.022148292511701584,0.06396890431642532,-0.020815320312976837,-0.11452993750572205,-0.03487425670027733,-0.09096213430166245,0.06651472300291061,0.026749085634946823,-0.07895485311746597,0.07547270506620407,-0.009940731339156628,0.0856333002448082,-0.024781035259366035,0.03781943395733833,0.0262158140540123,-0.0556756854057312,0.01940634287893772,0.08007103949785233,-0.013144664466381073,-0.016755947843194008,-0.06752857565879822,-0.03969162702560425,0.06059454008936882,0.03184078633785248,-0.004007600247859955,-0.030356349423527718,0.04302304983139038,0.028120718896389008,0.03609788045287132,-0.00201455713249743,-0.09816628694534302,0.04579076170921326,-0.0833437442779541,-0.029619572684168816,-0.017088433727622032,0.055159348994493484,-0.04067853465676308,-0.0005445971619337797,-0.05963179096579552,0.004674299620091915,0.03402813896536827,0.02440500818192959,0.0028075093869119883,-0.004224490374326706,-0.004016157705336809,0.04256509989500046,-0.07550220936536789,-0.005466410890221596,-2.9721048733222233e-8,-0.06744935363531113,-0.04472578689455986,0.02940724976360798,-0.015561189502477646,-0.01325791236013174,0.024415437132120132,0.027798481285572052,-0.05139671638607979,-0.023488979786634445,-0.04709475114941597,0.03420358896255493,-0.0001018596813082695,0.06575468927621841,0.01652926206588745,0.032654862850904465,0.02426646463572979,0.03314274549484253,-0.05059113726019859,0.0031759561970829964,-0.035568539053201675,0.06199762597680092,0.04822768643498421,0.019022483378648758,-0.01543919276446104,-0.07086121290922165,0.03306596726179123,-0.007726377807557583,0.03319501131772995,-0.03790353983640671,-0.005481785163283348,0.03650948777794838,0.020123161375522614,-0.021406684070825577,0.014538830146193504,-0.023205837234854698,0.024974027648568153,0.018480541184544563,0.08668190985918045,-0.05187169089913368,-0.0015304825501516461,-0.02034245990216732,-0.008873030543327332,-0.028522847220301628,0.04555945098400116,0.016579091548919678,-0.06208718940615654,-0.008128857240080833,-0.06587845832109451,0.017541984096169472,-0.009648431092500687,0.015921663492918015,0.05794718489050865,0.10084553807973862,0.04617304727435112,0.0010419960599392653,-0.018310459330677986,0.013765066862106323,-0.0008752959547564387,-0.08444101363420486,0.011422388255596161,0.13865086436271667,-0.0738847479224205,-0.026666443794965744,0.01570645160973072]},{"text":"It means that you love me, and that I have had you here in my arms, and will perhaps have you there again.","book":"Down and Out in Paris and London","chapter":60,"embedding":[-0.0813390240073204,0.07287177443504333,0.13336403667926788,0.08437469601631165,0.025145623832941055,-0.0031385396141558886,0.09267177432775497,0.00048273784341290593,0.02556866779923439,-0.09922075271606445,0.015392458066344261,-0.020034298300743103,0.022253522649407387,-0.12938301265239716,0.012766563333570957,0.010557307861745358,0.015517831780016422,-0.017085183411836624,-0.032000377774238586,0.05256441608071327,-0.045583389699459076,0.03695235401391983,-0.022551249712705612,0.009410844184458256,-0.07102687656879425,0.02414010465145111,-0.04690972715616226,0.05386391282081604,0.0005954307271167636,0.024355441331863403,-0.025382990017533302,0.03967425599694252,-0.005477935075759888,0.057598087936639786,-0.049955159425735474,0.051995571702718735,-0.05101950094103813,-0.0553339347243309,-0.029538290575146675,0.008046147413551807,-0.01023178081959486,-0.06212231144309044,0.07099250704050064,-0.03453139215707779,-0.02802475355565548,0.04968217760324478,-0.019977012649178505,0.06355275213718414,0.04537161439657211,0.042588971555233,-0.04857611283659935,0.0032957405783236027,-0.01712113991379738,-0.012465174309909344,0.03183143958449364,-0.027271727100014687,0.06213057413697243,-0.06045413017272949,-0.04359861835837364,0.04016278684139252,0.04291835054755211,0.006861742585897446,0.04832284152507782,0.06470251828432083,0.05639225244522095,-0.048943936824798584,0.02048218809068203,0.04119955003261566,-0.10234913975000381,-0.0014822237426415086,0.031667452305555344,-0.06944804638624191,-0.02427605912089348,-0.013367241248488426,-0.024615349248051643,-0.01636531576514244,0.030155310407280922,0.010454383678734303,0.06385329365730286,0.05245518684387207,-0.018672652542591095,0.0420820377767086,-0.06900665909051895,-0.025871358811855316,-0.12858588993549347,-0.007705305237323046,-0.008826243691146374,-0.0668957382440567,-0.04040122032165527,-0.005059562157839537,0.022878367453813553,-0.026869293302297592,-0.06179071590304375,0.03312617540359497,-0.047131139785051346,-0.034533992409706116,0.018884742632508278,0.06062411144375801,-0.09135062247514725,0.001978413201868534,0.06255651265382767,0.030834803357720375,0.0486142560839653,0.015047434717416763,0.012304793111979961,-0.03726574033498764,-0.026913266628980637,-0.10004522651433945,-0.028650974854826927,-0.07159839570522308,0.011131335981190205,-0.07744119316339493,-0.026150425896048546,0.059312604367733,-0.04497046023607254,0.09542414546012878,-0.006835993379354477,-0.03899845480918884,0.05121021345257759,0.05679931864142418,-0.0049317446537315845,0.042286910116672516,0.012502486817538738,-0.021791767328977585,-0.0535028800368309,-0.13189736008644104,-0.011463710106909275,-5.013073452602207e-33,0.022774312645196915,-0.024966713041067123,0.001706242561340332,0.017726434394717216,0.022600097581744194,-0.03488985076546669,-0.014675457030534744,-0.03526703268289566,-0.07734137773513794,0.0019601592794060707,0.007386164739727974,-0.005740173161029816,0.08673114329576492,0.04508569836616516,-0.05210321024060249,0.036272820085287094,0.033643048256635666,-0.07428630441427231,0.0696301981806755,0.00905289314687252,-0.04435361921787262,-0.03208835422992706,0.014753453433513641,-0.09394671022891998,-0.052499525249004364,-0.012741617858409882,-0.036879610270261765,0.0661168172955513,0.025991015136241913,-0.010108372196555138,-0.00847158208489418,0.07029648870229721,-0.024988213554024696,-0.056367892771959305,0.026790913194417953,0.03294120728969574,-0.008258301764726639,-0.02440207451581955,-0.05176755040884018,0.06795932352542877,0.010053041391074657,-0.013982965610921383,-0.1178884208202362,-0.037859123200178146,-0.008774375542998314,-0.015512095764279366,-0.004422797821462154,0.07567746937274933,-0.043309617787599564,0.012709403410553932,0.01936684362590313,-0.0016871007392182946,0.017054539173841476,0.003083939664065838,-0.058721840381622314,0.011126135475933552,-0.01761901192367077,0.10671468824148178,-0.030778082087635994,-0.08398673683404922,-0.013457938097417355,-0.05104491487145424,-0.024234110489487648,-0.03635844215750694,-0.017386306077241898,-0.07369532436132431,0.022278567776083946,-0.015499676577746868,0.026937156915664673,0.06859385967254639,-0.0037781032733619213,-0.013145695440471172,0.043369848281145096,0.06912590563297272,-0.014341139234602451,-0.05191176012158394,0.033752404153347015,0.0028721720445901155,0.05759431794285774,0.002016660990193486,-0.04983316734433174,0.06368199735879898,-0.021229300647974014,0.04334653913974762,0.0827166810631752,0.005472197663038969,0.0271865613758564,-0.10064626485109329,-0.09467270225286484,0.015490571968257427,-0.011675984598696232,0.014081014320254326,-0.03768926486372948,-0.027366913855075836,-0.0400901697576046,1.9242842522960847e-34,0.04754602909088135,-0.03160950541496277,-0.043152254074811935,0.026836534962058067,-0.011235284619033337,-0.08499635010957718,0.0007655782392248511,0.08911105990409851,0.0037968847900629044,-0.08786418288946152,0.04018179327249527,-0.07053213566541672,0.05705251544713974,0.08130862563848495,0.028446458280086517,0.0752125233411789,-0.04651203751564026,-0.042168717831373215,-0.04335114359855652,0.08369892090559006,0.04297100380063057,-0.033748868852853775,0.1398598998785019,0.03313323110342026,-0.041834961622953415,-0.07378270477056503,0.11186467111110687,-0.057073723524808884,-0.053572751581668854,-0.11416496336460114,0.11684615164995193,-0.09712685644626617,-0.1282639354467392,0.11369094997644424,0.05138792470097542,-0.008962025865912437,0.055023062974214554,-0.0202489010989666,0.0007465917733497918,-0.04631871357560158,-0.0358312651515007,-0.008304071612656116,-0.01300195511430502,0.005407801829278469,0.0110597163438797,0.046167224645614624,-0.023648235946893692,0.022759169340133667,0.006619302090257406,0.011121874675154686,0.03592536598443985,-0.01162144634872675,-0.007625435944646597,0.010387950576841831,-0.0316525474190712,-0.0816582664847374,0.07054506242275238,-0.025791170075535774,0.04194290190935135,0.01722918637096882,0.009338424541056156,-0.018291007727384567,-0.061876535415649414,0.03903429955244064,0.0149058997631073,0.07360448688268661,-0.026606036350131035,-0.04819246754050255,-0.08472572267055511,0.08432231843471527,-0.00285492860712111,-0.00892650056630373,-0.03711489960551262,0.10407199710607529,-0.02654920518398285,0.045325785875320435,0.031623151153326035,-0.07974100857973099,-0.005753533449023962,-0.018913766369223595,-0.046284765005111694,-0.05595363304018974,-0.01563793234527111,0.07743231952190399,0.003220923710614443,-0.06573057174682617,-0.002415680093690753,0.08355986326932907,-0.053516291081905365,-0.051646243780851364,0.03215346112847328,-0.012053819373250008,-0.0708840936422348,-0.0040178121998906136,-0.01706032082438469,-2.2689954803922774e-8,-0.0006059301667846739,-0.0359240286052227,-0.0704614594578743,-0.02982146479189396,0.017905354499816895,-0.044334784150123596,0.05307082086801529,-0.11172395199537277,0.03451349586248398,-0.03281876817345619,0.04008917137980461,0.0017018074868246913,0.01829485222697258,-0.0610356330871582,0.08173166215419769,0.09205511957406998,0.0323050394654274,-0.08365149050951004,0.06584546715021133,-0.011003391817212105,0.06699440628290176,-0.007635779213160276,0.07045210897922516,-0.02002723328769207,-0.027462339028716087,0.07391155511140823,0.04773504287004471,0.004229554440826178,-0.027361702173948288,-0.06856467574834824,0.037524331361055374,-0.002014193683862686,0.0701117143034935,-0.04115380719304085,0.006953419651836157,0.07514853030443192,0.014441187493503094,-0.06480059772729874,0.024992942810058594,-0.05464239418506622,0.001405221875756979,0.08557210117578506,-0.025387082248926163,-0.03911583870649338,-0.04785897210240364,-0.03467300906777382,0.107791468501091,0.10483410209417343,0.01328089740127325,-0.07185312360525131,-0.017655298113822937,0.048550479114055634,-0.01020053494721651,0.07384616136550903,-0.05884845182299614,0.044286806136369705,-0.00772363506257534,0.056065164506435394,0.014738418161869049,-0.02007223293185234,0.10557784885168076,0.06826324015855789,-0.062425822019577026,-0.06765882670879364]},{"text":"I will not wait long.","book":"Down and Out in Paris and London","chapter":60,"embedding":[-0.10550545901060104,-0.04285338521003723,0.04563406482338905,-0.059117190539836884,-0.036708392202854156,-0.017369991168379784,-0.1290222555398941,-0.066661037504673,0.028057442978024483,-0.04322589188814163,0.035797279328107834,0.04210647940635681,0.0017316174926236272,-0.056426554918289185,0.03717992827296257,0.026860279962420464,0.0492214560508728,-0.03389502316713333,-0.04034773260354996,0.025620155036449432,0.026069175451993942,-0.047302037477493286,-0.010886229574680328,0.008374997414648533,-0.05267608165740967,-0.004491572733968496,-0.027611544355750084,-0.012896791100502014,0.0028736998792737722,0.004801657050848007,0.008626892231404781,-0.0022992941085249186,-0.0029011559672653675,0.032630253583192825,0.0402645468711853,0.06721196323633194,-0.012439983896911144,-0.05790311470627785,0.08874612301588058,-0.028632037341594696,0.016357313841581345,-0.09610594809055328,-0.03986348956823349,0.11820561438798904,0.025573501363396645,-0.03799646347761154,-0.020074745640158653,-0.028201384469866753,0.016600951552391052,-0.01380430068820715,-0.05477242171764374,-0.053532347083091736,-0.08129775524139404,-0.010527296923100948,-0.02078062854707241,0.0017074545612558722,0.06811710447072983,-0.058868084102869034,0.009200801141560078,0.0018727126298472285,0.0035787345841526985,-0.02315978705883026,-0.042431481182575226,0.07644446939229965,0.02419682964682579,-0.006826627999544144,0.03527463600039482,0.0221459548920393,0.026769863441586494,0.027635719627141953,-0.09292645752429962,-0.00971438642591238,-0.050862882286310196,-0.017573915421962738,-0.0585225410759449,0.013680479489266872,0.08881619572639465,0.015458974055945873,0.04203468933701515,-0.04570983350276947,-0.03899670019745827,-0.08579356223344803,-0.002643768209964037,-0.011433470994234085,-0.08070093393325806,-0.020527206361293793,0.09365728497505188,0.008039135485887527,-0.1129823550581932,-0.03613118827342987,0.07996474206447601,-0.07363066077232361,-0.021495532244443893,0.022557906806468964,-0.0996735692024231,0.08813969045877457,-0.02682986855506897,0.006314187776297331,-0.10856494307518005,0.09848501533269882,0.014149751514196396,0.019681906327605247,-0.06572499126195908,-0.010124558582901955,-0.035255253314971924,-0.055900100618600845,-0.018157152459025383,0.02902493067085743,-0.059543438255786896,-0.0310957133769989,-0.012215090915560722,0.03936023265123367,-0.015784695744514465,0.016714666038751602,-0.05713357776403427,0.09895738959312439,-0.007470090873539448,0.060922771692276,0.06523408740758896,0.014487550593912601,0.08722200989723206,0.0059552984312176704,-0.017617080360651016,0.002219644607976079,-0.03272462263703346,-0.07489196211099625,0.03307248651981354,-6.60905903044492e-33,-0.13470791280269623,-0.0044615906663239,-0.0030307737179100513,0.01881772093474865,-0.07408620417118073,0.030389796942472458,0.09189765900373459,-0.006011932156980038,-0.09299921989440918,-0.016464795917272568,-0.04338517785072327,-0.029879789799451828,-0.05269089713692665,-0.0335814394056797,-0.006981902290135622,-0.008036094717681408,0.034155674278736115,0.047753673046827316,0.008388464339077473,0.07790253311395645,0.040377210825681686,-0.060572631657123566,-0.06233053281903267,0.023310210555791855,0.057443711906671524,-0.031196851283311844,-0.021078338846564293,-0.0629972293972969,0.021567048504948616,0.07177369296550751,-0.10356900095939636,0.11530163139104843,0.015757547691464424,-0.0018581397598609328,0.03787636011838913,-0.028980586677789688,-0.0035763997584581375,-0.06936606764793396,-0.041144903749227524,-0.06614832580089569,0.018221601843833923,0.06197348237037659,-0.07764270156621933,0.02031170390546322,0.009240065701305866,-0.05046215280890465,0.06393410265445709,0.03374789282679558,-0.07265470921993256,-0.053066372871398926,-0.011487849988043308,0.016882240772247314,-0.01910225860774517,0.01699063926935196,0.03051384724676609,0.01478433795273304,0.037351448088884354,-0.05312535539269447,0.04697870835661888,0.047516606748104095,-0.02657792717218399,-0.009374136105179787,-0.05503431707620621,0.04742162302136421,-0.07890806347131729,0.0620277002453804,0.010776286944746971,0.01975705288350582,0.0023315707221627235,-0.03444194048643112,0.010734539479017258,0.0018123158952221274,0.040209949016571045,-0.014056905172765255,-0.010728957131505013,-0.017262497916817665,-0.03911471366882324,0.015286595560610294,-0.023986317217350006,0.04426141083240509,0.019955607131123543,0.011966954916715622,-0.11648434400558472,0.04914824664592743,0.10685119032859802,0.00784340687096119,0.009332183748483658,-0.0015079802833497524,-0.032670702785253525,-0.040220148861408234,-0.015358547680079937,-0.0038001653738319874,0.0837651714682579,0.020562246441841125,0.00007866240048315376,4.359352758777116e-33,0.04535570740699768,-0.06018867716193199,-0.051997967064380646,-0.02635193057358265,0.09855351597070694,-0.06719810515642166,-0.028915636241436005,0.22263848781585693,-0.01928366720676422,0.025363299995660782,-0.008387568406760693,0.0037448080256581306,0.08908997476100922,0.017985893413424492,0.0831255316734314,-0.02147294394671917,0.15807309746742249,-0.02303762175142765,0.038505278527736664,0.09141978621482849,0.031654100865125656,0.03426032513380051,-0.07859692722558975,0.0632181465625763,-0.0494784340262413,0.014177899807691574,0.056559015065431595,-0.004393787123262882,-0.05250430852174759,0.02149382419884205,-0.03574724122881889,-0.1440887451171875,-0.09130413830280304,0.027953658252954483,0.047769464552402496,0.04470963776111603,0.08124394714832306,-0.06758608669042587,-0.03275001421570778,0.01568884216248989,0.05734436213970184,-0.05013706535100937,0.030562540516257286,-0.06019768491387367,0.011636961251497269,-0.053976815193891525,0.09665495157241821,0.015278042294085026,0.04694298282265663,0.1287580281496048,0.01891917549073696,0.08028402924537659,0.017405224964022636,-0.02928689308464527,0.07814870774745941,-0.025888364762067795,0.018648909404873848,0.003966315183788538,0.001009833300486207,0.017474306747317314,-0.04217677563428879,0.054393745958805084,-0.03146383911371231,-0.026206130161881447,0.08272584527730942,0.012058754451572895,0.032740384340286255,0.009760282002389431,0.017558423802256584,0.03572516143321991,-0.02524285763502121,-0.024292895570397377,-0.08196370303630829,-0.018760597333312035,0.01895349659025669,-0.03778478875756264,0.021724170073866844,0.06870264559984207,0.044663116335868835,-0.035318296402692795,0.1047213152050972,0.0679340809583664,0.010845337994396687,0.0026157929096370935,0.07740956544876099,0.04979012534022331,0.09579648822546005,0.01823219284415245,-0.008708324283361435,0.01801684871315956,0.021540828049182892,0.010714027099311352,0.06910376995801926,-0.03849297761917114,0.031848546117544174,-1.8700037074381726e-8,0.007962756790220737,-0.03082266077399254,0.05775807052850723,0.006600037217140198,0.02164320833981037,0.018225252628326416,-0.04922042787075043,-0.0607394240796566,-0.0045765358954668045,-0.034422289580106735,0.02605905756354332,0.045874763280153275,0.030489113181829453,-0.007672648876905441,0.016231585294008255,0.0931219533085823,-0.062262896448373795,-0.039360836148262024,-0.008764234371483326,-0.021957125514745712,-0.030620751902461052,0.04427729919552803,0.08273429423570633,-0.04599574953317642,-0.0380106046795845,-0.014355987310409546,0.021284127607941628,0.03265097364783287,-0.0021083324681967497,0.013449307531118393,-0.016563110053539276,0.027212906628847122,-0.04185618832707405,-0.04888923466205597,-0.013328298926353455,-0.08783926069736481,-0.02643159031867981,0.01682882197201252,0.07252448797225952,0.021610477939248085,-0.03162682056427002,0.05870511755347252,-0.018322281539440155,0.041982147842645645,-0.020669685676693916,-0.10901948809623718,0.008258729241788387,0.017984135076403618,-0.023055145516991615,0.05066154897212982,-0.002484207972884178,-0.03548653796315193,0.03278053551912308,0.08912946283817291,0.03919414058327675,0.04454253613948822,0.0039027761667966843,-0.04793139547109604,0.1008489727973938,0.05777088925242424,0.04390241578221321,-0.08981537818908691,-0.04379419609904289,-0.0257930438965559]},{"text":"That’s a remarkable looking young woman.","book":"Down and Out in Paris and London","chapter":61,"embedding":[-0.04380817338824272,0.0631052777171135,0.009419519454240799,-0.023130392655730247,-0.02578742243349552,0.016001684591174126,-0.005945362616330385,0.05309829115867615,-0.01332517433911562,0.02025412581861019,0.06563396006822586,-0.022520292550325394,-0.007743647322058678,-0.040949497371912,-0.08712925761938095,0.03154752403497696,0.0458892397582531,-0.01799910143017769,0.08268600702285767,-0.025461561977863312,-0.028497902676463127,0.06895372271537781,0.060264792293310165,0.0008215716225095093,0.018876204267144203,-0.021180355921387672,-0.0032722509931772947,-0.02635158598423004,0.02136714942753315,0.037577781826257706,0.02827044203877449,0.00025381703744642437,-0.022968335077166557,0.0242706760764122,-0.005297878757119179,0.03877132013440132,0.03755059093236923,0.07848655432462692,-0.0045637404546141624,-0.004237453918904066,-0.049540743231773376,-0.04796779900789261,-0.03228478878736496,-0.025198081508278847,-0.000867971742991358,-0.08120053261518478,-0.004157494753599167,0.012862637639045715,0.03781386837363243,-0.08593607693910599,-0.0692334994673729,-0.04467477649450302,-0.02774806320667267,-0.09017814695835114,0.07098174095153809,0.035655610263347626,-0.046401794999837875,-0.05988794565200806,0.03429354354739189,-0.018240703269839287,0.012538469396531582,0.09597177058458328,-0.05740973353385925,0.0012893312377855182,-0.08022455871105194,-0.02636002004146576,0.03799295052886009,-0.061159633100032806,0.052896540611982346,-0.04664606228470802,0.038738738745450974,0.04585807025432587,-0.06840872019529343,0.011325398460030556,0.0076621463522315025,-0.004272667691111565,0.0894717425107956,-0.002809967612847686,0.045838095247745514,0.022574923932552338,0.0497920960187912,-0.11481183022260666,0.11163408309221268,0.031260743737220764,-0.03229786083102226,-0.04184586554765701,0.037850309163331985,-0.04308624565601349,-0.051725130528211594,-0.01162622682750225,-0.07131515443325043,0.04682893678545952,-0.056026145815849304,0.019503606483340263,-0.0007427865639328957,-0.053719669580459595,-0.012787475250661373,-0.06652485579252243,-0.05039628967642784,0.053493205457925797,-0.019591324031352997,0.0902627632021904,0.14418822526931763,0.036020439118146896,-0.04649714007973671,-0.03374452143907547,0.07081206887960434,-0.0018015655223280191,0.003579546697437763,-0.00035955526982434094,0.075283944606781,0.019302554428577423,-0.13836875557899475,0.001995883882045746,0.01620515249669552,0.024673784151673317,-0.07093185931444168,0.032784488052129745,0.037133269011974335,-0.012040112167596817,0.05599784106016159,-0.028403883799910545,-0.10463165491819382,-0.043614163994789124,-0.014664856716990471,-0.14262564480304718,0.017354510724544525,-7.031001258304641e-33,-0.014892551116645336,0.07054383307695389,0.04774734377861023,0.02317076362669468,0.056205205619335175,0.05499767139554024,0.016190703958272934,0.016973739489912987,-0.07860875129699707,0.027484966441988945,-0.0006850308272987604,-0.0823061391711235,-0.05355462804436684,-0.07574005424976349,-0.01990886963903904,0.03347382694482803,-0.05664166435599327,-0.04473200440406799,-0.019120490178465843,0.05680375546216965,0.052193429321050644,-0.0011610822984948754,-0.0003265884006395936,0.006231766659766436,-0.02103206142783165,-0.07121589034795761,0.09721344709396362,0.03257439285516739,0.005590441171079874,0.0099067073315382,-0.011772755533456802,0.022232046350836754,-0.029849380254745483,-0.01029811892658472,-0.039813023060560226,-0.09051521867513657,0.04057883098721504,-0.04662160575389862,0.06262144446372986,0.02182074449956417,0.023517796769738197,-0.032133668661117554,0.06382913887500763,0.046018023043870926,-0.03152238577604294,0.024688642472028732,0.06948331743478775,-0.02224472351372242,0.00853725429624319,0.03945999592542648,-0.053856585174798965,0.04214128851890564,-0.04108068719506264,0.005071642808616161,-0.044324882328510284,0.06497429311275482,0.04193483665585518,0.041439201682806015,-0.0037437807768583298,-0.00889356154948473,-0.014076362363994122,0.010802662000060081,-0.07709380239248276,0.04093821346759796,0.017468750476837158,0.007545996457338333,0.08118682354688644,0.027340060099959373,0.07429084926843643,0.08808770030736923,-0.05460132658481598,0.05486053228378296,0.056075066328048706,0.030354123562574387,-0.08461195230484009,-0.01908298023045063,0.056235168129205704,-0.10408753901720047,0.08640658855438232,0.02966802567243576,0.06734666973352432,0.11564812809228897,0.036893874406814575,0.0014133191434666514,0.008079469203948975,-0.023687589913606644,-0.10537097603082657,-0.05119645968079567,-0.012656137347221375,0.007536476477980614,0.1013699471950531,-0.029059024527668953,0.039853744208812714,-0.019304517656564713,-0.08078572899103165,4.735303770160916e-33,0.05155779421329498,-0.041179507970809937,0.08018515259027481,0.0143983643501997,0.04903484508395195,-0.022879719734191895,0.03544508293271065,0.10620859265327454,-0.030371641740202904,0.029018672183156013,0.15213945508003235,-0.02448355406522751,-0.030924499034881592,-0.047571245580911636,0.04207316413521767,0.02181953378021717,0.007550053298473358,0.05507086589932442,-0.08104956150054932,-0.06954283267259598,-0.08689320832490921,0.03467108681797981,0.006848625838756561,-0.04084913432598114,-0.06918726116418839,0.06748763471841812,0.05658738687634468,-0.050118327140808105,-0.05042169988155365,0.050050925463438034,-0.00018531482783146203,-0.05072961002588272,0.019826892763376236,-0.02668054774403572,-0.03859931603074074,0.03456559404730797,-0.006341489963233471,-0.07192883640527725,0.00846857763826847,-0.04792952910065651,0.03446684032678604,-0.014700680039823055,0.06111716106534004,0.01791483163833618,0.033044829964637756,-0.010826587677001953,0.023750854656100273,-0.019088637083768845,-0.030360860750079155,0.008131831884384155,-0.02832828462123871,-0.010646090842783451,-0.018907595425844193,0.08468654751777649,0.01111561432480812,-0.06417063623666763,0.037377286702394485,0.06050073727965355,0.07603033632040024,0.017636943608522415,-0.05959707498550415,-0.01668820157647133,-0.0956975445151329,0.026020221412181854,0.01584974303841591,-0.06096641719341278,-0.06250301003456116,-0.0872216448187828,-0.07644284516572952,0.05063072219491005,0.05358416959643364,-0.026940613985061646,-0.07661581039428711,0.052177540957927704,0.02372102625668049,-0.09960377216339111,0.10580676048994064,0.03171675279736519,0.015981944277882576,-0.028660446405410767,-0.00761930737644434,-0.06245948746800423,0.0483124814927578,-0.012131243012845516,0.10243498533964157,0.0456477515399456,-0.0651918351650238,-0.010632863268256187,-0.007759939879179001,0.029724135994911194,-0.0468122735619545,0.008663114160299301,-0.03207055479288101,-0.09092270582914352,-0.019176069647073746,-1.9816315699472398e-8,-0.02645060047507286,-0.00648224912583828,-0.08524241298437119,-0.0740138366818428,0.03988391533493996,0.019064554944634438,0.06442076712846756,-0.009332595393061638,-0.04198729246854782,-0.008261880837380886,-0.011601491831243038,0.046384118497371674,0.06842882186174393,-0.0024686444085091352,-0.0023229208309203386,-0.0504356324672699,0.04279791936278343,0.08597442507743835,0.0027262114454060793,0.00827660784125328,0.09377864748239517,-0.008278082124888897,0.06274150311946869,0.05717804282903671,-0.07407590746879578,-0.001101561589166522,-0.009309525601565838,0.08277557790279388,-0.1415538787841797,0.007558285724371672,0.06088646873831749,0.07274774461984634,0.050030820071697235,-0.02790900506079197,0.03222554922103882,0.04498104006052017,-0.016175074502825737,-0.0404963381588459,-0.05776800960302353,-0.08006218075752258,-0.011630063876509666,0.0016702227294445038,-0.036655984818935394,0.08252932131290436,0.05241675674915314,-0.07576559484004974,0.029246054589748383,0.023023696616292,0.030155688524246216,0.05800838768482208,0.009872683323919773,0.04517051577568054,0.053419727832078934,0.021227901801466942,-0.012079048901796341,-0.027975410223007202,0.00428446289151907,-0.04176398739218712,-0.011090856045484543,0.11149711906909943,0.07923183590173721,-0.04357238858938217,0.03973331302404404,-0.003202921710908413]},{"text":"And there shall be no mistake about the cartridges this time.","book":"Down and Out in Paris and London","chapter":61,"embedding":[-0.06576043367385864,0.04848126694560051,-0.048616744577884674,-0.024173984304070473,-0.007922819815576077,-0.03844117000699043,-0.0767030417919159,-0.050096649676561356,-0.0677594467997551,-0.0294363833963871,0.0979979932308197,0.11763820797204971,0.03512129932641983,-0.012996096163988113,-0.05293828248977661,-0.007220054045319557,-0.03613286465406418,-0.03885701671242714,0.01083045732229948,0.019970640540122986,-0.04755019024014473,-0.05042101442813873,-0.014170599170029163,0.04522830992937088,-0.018501389771699905,0.05952192842960358,0.026605643332004547,0.004486721940338612,0.014609425328671932,-0.04905334860086441,-0.002099728211760521,0.05288904905319214,-0.016648052260279655,-0.0435393862426281,0.14610238373279572,-0.07038555294275284,0.051869407296180725,-0.03611452877521515,0.06653793901205063,-0.10692998766899109,0.06539487093687057,-0.06609034538269043,-0.08128943294286728,0.060393791645765305,-0.036608368158340454,-0.025230778381228447,-0.054872941225767136,-0.03890202194452286,-0.024722695350646973,0.05957635119557381,0.08748746663331985,-0.028204211965203285,-0.0831465795636177,-0.05328868329524994,0.010014445520937443,-0.03650401905179024,-0.020052727311849594,0.02074252814054489,0.03134401515126228,0.015979548916220665,-0.06750627607107162,-0.06399104744195938,-0.08923713862895966,0.04354717582464218,-0.007730551064014435,0.03511611744761467,0.038401100784540176,-0.11571621149778366,-0.011559143662452698,0.06103016063570976,-0.07604305446147919,0.06523842364549637,0.03516703471541405,0.011625166982412338,-0.027750788256525993,0.06505448371171951,-0.009326987899839878,-0.029849428683519363,0.008392375893890858,0.07102518528699875,-0.0629347637295723,-0.04482708126306534,0.026345523074269295,0.008466418832540512,0.02447672002017498,0.0009941377211362123,-0.027335667982697487,-0.047640543431043625,0.026455748826265335,-0.05382871255278587,-0.02591365948319435,0.024167368188500404,0.06417100131511688,0.06803114712238312,0.004396650940179825,-0.023382248356938362,0.021513817831873894,0.09794379770755768,0.03321347385644913,0.002844571601599455,-0.01784716732800007,-0.01590586081147194,-0.03440332040190697,0.030118903145194054,0.0029282039031386375,-0.012249501422047615,-0.0001620846160221845,0.0441850870847702,0.010193748399615288,-0.053768761456012726,-0.034866880625486374,-0.043183766305446625,0.015789499506354332,-0.009801961481571198,-0.04865749180316925,-0.005571878980845213,-0.06545013189315796,0.027490787208080292,-0.03341164067387581,0.02236485853791237,-0.03136825188994408,-0.0022019098978489637,-0.035338133573532104,-0.06323529034852982,-0.06978102773427963,-0.059890031814575195,0.0012840554118156433,-6.309620946356143e-33,-0.02638743259012699,0.06203371286392212,-0.038087792694568634,-0.014642168767750263,-0.04520715773105621,0.1172267273068428,-0.008296076208353043,0.01653238572180271,0.004683086182922125,-0.044730547815561295,0.017708795145154,0.012407961301505566,-0.06635402888059616,-0.019690170884132385,0.015057099051773548,0.044260989874601364,0.06554020196199417,0.15429946780204773,0.053204577416181564,0.02936890348792076,-0.02990904450416565,-0.004528367426246405,0.01893618144094944,-0.07375705242156982,-0.014595430344343185,0.10050797462463379,-0.05805942043662071,-0.005006300751119852,0.004161567892879248,0.020627114921808243,-0.004327883943915367,-0.00872028712183237,0.01588161289691925,0.012521116994321346,-0.02208140306174755,0.08028911799192429,-0.026133282110095024,-0.05849718302488327,-0.04798750579357147,0.004385331179946661,0.013112980872392654,0.08074185997247696,-0.05996330827474594,-0.04552467539906502,0.01688724011182785,-0.016715893521904945,-0.021875377744436264,-0.024999234825372696,0.012694835662841797,0.034166768193244934,-0.06749613583087921,0.06589257717132568,0.021128227934241295,0.12342096865177155,0.019592996686697006,-0.05400080233812332,0.05717126652598381,0.03289831057190895,0.04034758359193802,-0.042699314653873444,0.014295714907348156,0.00946787465363741,0.004819273017346859,-0.05011828616261482,0.05741070583462715,0.07332880795001984,0.03841884061694145,0.020381171256303787,-0.03544719144701958,0.029806606471538544,-0.0518852137029171,0.0027396325021982193,0.032203152775764465,-0.019567765295505524,-0.01262301579117775,0.012704514898359776,0.058429162949323654,-0.017330164089798927,0.03230435401201248,-0.034672919660806656,0.023494772613048553,-0.00523344986140728,-0.044233597815036774,-0.054680150002241135,0.011455712839961052,-0.0526137538254261,0.05547141656279564,-0.04472845047712326,-0.01016151998192072,0.0617360919713974,0.02870684303343296,-0.06454356014728546,0.030087236315011978,-0.0572371706366539,-0.013654389418661594,2.753694148124082e-33,-0.012137914076447487,0.047872867435216904,-0.016587117686867714,0.0922548696398735,-0.08039332926273346,0.005401757545769215,0.07642022520303726,0.05873534455895424,0.027737248688936234,-0.01972907781600952,0.00008175481343641877,0.039832934737205505,-0.016694728285074234,0.00025367102352902293,0.004325451795011759,0.019408708438277245,0.0266486257314682,-0.021446865051984787,0.028740158304572105,-0.09688350558280945,0.017403176054358482,0.0329122357070446,-0.053473688662052155,0.12771020829677582,0.07475795596837997,0.08333683758974075,-0.008675618097186089,-0.07009580731391907,-0.06970055401325226,0.06447969377040863,-0.02639283798635006,0.0299798883497715,-0.03143145143985748,0.022935910150408745,0.01995726488530636,-0.08635357767343521,0.11930184811353683,0.0936092734336853,0.024187179282307625,-0.019916048273444176,-0.02569277212023735,0.012781808152794838,-0.09095481038093567,0.019367437809705734,-0.03500324487686157,-0.07288260757923126,0.10454810410737991,-0.007478069514036179,0.060047633945941925,0.08008243888616562,-0.011240205727517605,-0.05070533603429794,-0.05039398744702339,-0.0519590899348259,-0.046735990792512894,0.04475656896829605,0.0320923738181591,0.03227679803967476,0.033771317452192307,0.01529073715209961,-0.023055993020534515,0.024864695966243744,-0.045898307114839554,-0.054877929389476776,0.061803799122571945,0.043524838984012604,0.010713507421314716,0.05172387883067131,0.09238183498382568,-0.0030039981938898563,0.04561014100909233,-0.010876386426389217,-0.03070504404604435,-0.03669397905468941,0.0291694737970829,-0.06882379949092865,-0.027146639302372932,0.012787474319338799,0.03299617022275925,-0.05130144953727722,-0.008854435756802559,-0.007989967241883278,0.01859917677938938,0.08206069469451904,0.008788878098130226,0.010636315681040287,0.045856066048145294,-0.14255394041538239,-0.04693036526441574,-0.09860508888959885,0.0024820049293339252,0.04927348345518112,-0.001399392494931817,0.09072723984718323,-0.06614358723163605,-2.01806109600966e-8,0.027063721790909767,0.019085707142949104,0.03805834427475929,0.06892143934965134,0.03883013129234314,-0.06163555011153221,0.020487738773226738,0.03546484187245369,-0.028045352548360825,0.04316825047135353,0.16576366126537323,-0.05765381455421448,0.02597750537097454,-0.03421325981616974,0.09215716272592545,0.03021428734064102,-0.03909832984209061,-0.0877198576927185,-0.09671733528375626,0.02286619320511818,-0.0788295567035675,0.07296926528215408,0.05609576776623726,-0.03421531990170479,-0.08130969107151031,-0.042929138988256454,-0.04224172234535217,0.07245620340108871,0.007416566833853722,0.02997741289436817,-0.05179624632000923,-0.04026714712381363,0.0475863553583622,0.005680427420884371,-0.02524062804877758,-0.08586405217647552,0.05489528924226761,0.042361147701740265,0.0069166747853159904,-0.012590264901518822,-0.0538957379758358,-0.07857254147529602,-0.06796787679195404,0.06624509394168854,-0.03305661305785179,-0.06517202407121658,0.08462278544902802,0.0826055258512497,-0.10350660979747772,-0.03922877088189125,-0.007189290132373571,0.08772604912519455,0.007163623347878456,0.03416058421134949,0.06227650120854378,-0.09757165610790253,-0.07653529942035675,-0.010440618731081486,0.03531484305858612,0.03845036402344704,0.042445749044418335,-0.05412372201681137,0.07623627781867981,-0.031879305839538574]},{"text":"SERGIUS. (_fiercely delighted to find his opponent a man of spirit_).","book":"Down and Out in Paris and London","chapter":61,"embedding":[0.0009478842839598656,0.10111162811517715,-0.04754319787025452,-0.008972052484750748,-0.04722192883491516,0.037546783685684204,0.11719296872615814,-0.01954633742570877,0.018449636176228523,0.00929019134491682,0.023062115535140038,-0.07185231894254684,-0.05332376807928085,0.021239090710878372,0.08501701802015305,-0.01648917980492115,0.035889510065317154,0.03558215871453285,0.05605226010084152,0.029872719198465347,0.06110158935189247,0.020833419635891914,0.013151062652468681,-0.021213019266724586,-0.023674994707107544,-0.04808923229575157,-0.0046262419782578945,0.006505287252366543,0.052458569407463074,-0.11816705018281937,-0.0012487147469073534,-0.0055602360516786575,0.009133011102676392,0.015098661184310913,-0.06302930414676666,0.03488977998495102,-0.02037990279495716,-0.03306667134165764,0.016560863703489304,-0.08404360711574554,-0.00866778939962387,0.05227166786789894,-0.004394293297082186,0.006726199761033058,-0.029234429821372032,-0.066351979970932,0.004291540011763573,0.03422524034976959,0.0034186500124633312,-0.07726182788610458,-0.09801856428384781,-0.07805453985929489,-0.029041415080428123,0.06435389071702957,0.007576219271868467,-0.026804225519299507,-0.0022263338323682547,-0.10743878781795502,0.003175092628225684,-0.05868521332740784,-0.026707813143730164,0.08475152403116226,0.04917033761739731,0.049364954233169556,-0.026167303323745728,-0.10178215056657791,-0.02337525598704815,-0.0147289102897048,0.0039644865319132805,0.08525151014328003,0.04416331276297569,-0.014351736754179,0.03629355505108833,-0.015977052971720695,-0.052606187760829926,-0.02628711424767971,0.0031591816805303097,-0.05553847923874855,0.04846280440688133,-0.0075025055557489395,-0.0009145549265667796,0.004552178084850311,-0.07309896498918533,0.05062912032008171,0.005781121551990509,-0.02664685994386673,-0.006072805263102055,0.06740555912256241,0.05466190725564957,-0.0104292593896389,-0.03532908111810684,-0.003217634279280901,0.017826033756136894,0.047516435384750366,-0.03931790590286255,0.03600342199206352,-0.04191198572516441,0.017113180831074715,-0.0853026956319809,0.06586526334285736,0.03420668840408325,0.04197589308023453,0.035611264407634735,0.04875119403004646,0.023602338507771492,0.03094554878771305,-0.07201587408781052,-0.0514112152159214,-0.011528140865266323,-0.051640111953020096,-0.04878704622387886,-0.0909968838095665,-0.07963428646326065,0.030782613903284073,0.0020021959207952023,0.07374458014965057,-0.04818745329976082,0.02101709134876728,-0.07858818769454956,0.10358552634716034,0.03984072431921959,0.06525835394859314,0.032899919897317886,0.0378384031355381,0.00923452340066433,0.10865064710378647,-0.08315449208021164,-3.722404899970321e-33,0.06528005748987198,-0.012535021640360355,0.016509318724274635,-0.022011224180459976,-0.046312108635902405,-0.03929579257965088,-0.00013107345148455352,0.030873727053403854,-0.04045733064413071,0.030867276713252068,-0.13039793074131012,0.03613058850169182,-0.020596573129296303,0.06484146416187286,-0.0373077392578125,-0.046925827860832214,-0.07558318972587585,0.029505759477615356,-0.0036308332346379757,-0.012577381916344166,-0.00045275106094777584,0.1710670441389084,-0.034051503986120224,-0.033089373260736465,0.002659968566149473,-0.031956929713487625,0.02155875973403454,-0.02360197715461254,0.04941637068986893,0.049562182277441025,0.06280308216810226,-0.0475449338555336,0.015605377964675426,0.024529287591576576,0.042854275554418564,0.039232201874256134,-0.04589008912444115,-0.09791593253612518,-0.06253550946712494,0.039280135184526443,-0.10485190898180008,0.0019171556923538446,-0.03827405720949173,-0.001038159360177815,-0.06219332665205002,-0.10889813303947449,-0.04329754784703255,0.035926587879657745,-0.024793999269604683,0.00215433188714087,-0.10103773325681686,-0.003842144040390849,0.0929475799202919,-0.002712886780500412,-0.0568087212741375,-0.04563746601343155,0.05611323565244675,0.080508291721344,0.008409949950873852,0.012715445831418037,-0.04462362080812454,-0.0617557168006897,0.04672100394964218,-0.01806114800274372,0.023201940581202507,-0.0728314220905304,0.0026208336930722,-0.009237067773938179,-0.020808912813663483,-0.03311799094080925,-0.0577264167368412,0.019071852788329124,-0.018808910623192787,0.031964074820280075,0.0193190798163414,-0.04860585555434227,-0.02423991449177265,-0.022461961954832077,-0.09055261313915253,-0.03698413819074631,-0.0872722789645195,0.007684376556426287,-0.12068312615156174,0.06035613268613815,-0.022746291011571884,0.029557090252637863,-0.0011879218509420753,-0.10059143602848053,-0.04289291426539421,0.028265411034226418,-0.06252605468034744,0.008240291848778725,0.021633876487612724,0.017066283151507378,-0.03320614993572235,9.430305165490912e-34,-0.01617199368774891,-0.04815702512860298,-0.010664046742022038,0.040839143097400665,0.05261989310383797,-0.0003504956257529557,0.01067509688436985,0.030679861083626747,-0.025724586099386215,0.009004740044474602,-0.03401339799165726,-0.0015707333805039525,0.12197771668434143,-0.050457894802093506,0.003904338926076889,-0.013834781013429165,-0.030064426362514496,-0.006667956244200468,0.04964281991124153,0.07190252840518951,0.0014154716627672315,0.09401967376470566,-0.04823296144604683,-0.0645064264535904,-0.0038925192784518003,0.03780283406376839,0.05994660034775734,-0.04732691869139671,-0.09874708205461502,0.043366119265556335,-0.030534230172634125,-0.001827490865252912,-0.0390106625854969,-0.01943163014948368,0.03366624563932419,0.10451476275920868,0.018694017082452774,-0.04436560720205307,0.0141732944175601,0.037474412471055984,0.0007340207230299711,0.04292408004403114,0.13165055215358734,0.13240478932857513,0.01120966486632824,-0.0033393879421055317,-0.04768313467502594,0.06641369313001633,0.03171118348836899,0.011156369000673294,-0.08610165119171143,0.00530202453956008,-0.036744389683008194,-0.05915229395031929,0.06952179968357086,0.0593346543610096,-0.05279683694243431,-0.02074531279504299,-0.04714653640985489,0.055182360112667084,-0.02334420569241047,-0.04142041131854057,0.012146596796810627,0.05934269353747368,0.006532821338623762,0.05455971136689186,-0.06400042027235031,0.0665346309542656,-0.055137306451797485,-0.035687241703271866,0.006040824111551046,0.00626974506303668,-0.10336345434188843,0.05338278040289879,0.04523449391126633,0.043515294790267944,-0.020976437255740166,0.013188515789806843,0.0733313113451004,-0.08190777152776718,-0.02752300351858139,-0.03283004090189934,-0.02487896755337715,-0.03142654895782471,0.06262655556201935,0.009224414825439453,-0.03158293291926384,0.03843409940600395,0.06404121220111847,-0.03648752346634865,0.06184101477265358,0.0421198308467865,0.07024458050727844,-0.02913268469274044,0.0020523483399301767,-1.992189702093583e-8,-0.025561483576893806,0.047461554408073425,0.06900184601545334,0.01775382272899151,0.03692280873656273,0.00929549802094698,0.003103763796389103,-0.09492547810077667,-0.06299196183681488,0.0286191925406456,-0.008455823175609112,0.06957339495420456,0.036984656006097794,-0.08840791136026382,0.0675295889377594,-0.055877506732940674,-0.006268688011914492,0.07190678268671036,-0.03784994035959244,-0.09880520403385162,0.0057135154493153095,-0.012475050985813141,0.0356501080095768,-0.006173664703965187,0.0015533278929069638,0.027444103732705116,-0.026966936886310577,-0.029731357470154762,-0.013487879186868668,0.04142909124493599,0.07605455070734024,0.09144750982522964,-0.11212581396102905,-0.019943110644817352,0.026715852320194244,0.09083213657140732,-0.127935528755188,-0.01937313936650753,0.06436619162559509,0.04835096001625061,0.040801674127578735,0.011789470911026001,0.01729438453912735,-0.005928796250373125,0.058802198618650436,0.06624574959278107,0.1230253055691719,-0.055381037294864655,-0.009463840164244175,-0.03921471908688545,0.030224397778511047,-0.008010880090296268,0.01051870733499527,0.0410398505628109,-0.020819634199142456,0.023876983672380447,-0.027754299342632294,0.028025593608617783,-0.01724160462617874,-0.06740210950374603,0.1285022348165512,-0.0038060250226408243,-0.04328729212284088,0.0274947676807642]},{"text":"Why? (_Sergius turns away in silence, and goes to the stove, where he stands watching her as she continues, to Bluntschli_) What about?","book":"Down and Out in Paris and London","chapter":61,"embedding":[-0.00018612988060340285,0.022760633379220963,0.04404909536242485,0.040444377809762955,0.06491473317146301,0.04288243502378464,0.10070021450519562,-0.04471296817064285,0.046631522476673126,-0.12953580915927887,0.013963432051241398,-0.07256947457790375,-0.11139039695262909,-0.01998155564069748,0.005168735980987549,-0.033071596175432205,0.021269209682941437,-0.022760052233934402,-0.061101652681827545,0.05381350219249725,0.06659260392189026,-0.015146126039326191,0.09577196836471558,0.0142107754945755,-0.00653538852930069,0.017632801085710526,0.057259008288383484,0.013281489722430706,0.004257600288838148,-0.022711563855409622,0.018464013934135437,0.012152589857578278,-0.04879828914999962,0.009763826616108418,0.006620815489441156,0.012187591753900051,0.036974191665649414,-0.03380270674824715,0.050633810460567474,-0.06009633466601372,-0.04930735006928444,0.024187864735722542,-0.04468667507171631,-0.008656751364469528,-0.09779591113328934,-0.04392372816801071,-0.019263586029410362,0.0024630152620375156,0.034132421016693115,-0.08325283974409103,-0.12792335450649261,-0.035620156675577164,-0.13989120721817017,0.027143340557813644,0.01664266176521778,-0.04215003177523613,0.02288023568689823,-0.03728864714503288,0.03213256597518921,-0.01573885977268219,-0.09046772867441177,0.008088277652859688,-0.025218283757567406,0.12003138661384583,-0.03309036046266556,-0.07398553937673569,0.01246827282011509,-0.02453375607728958,-0.024732103571295738,0.15228454768657684,0.021409105509519577,0.024877745658159256,-0.04896256700158119,-0.015411403961479664,-0.08436127007007599,0.04590807855129242,0.027591295540332794,-0.1017092615365982,0.04460509866476059,-0.008494507521390915,0.036213599145412445,-0.06438565254211426,-0.04409561678767204,0.07755685597658157,-0.04082852229475975,0.04081707447767258,-0.0032053489703685045,-0.06401454657316208,-0.012530055828392506,0.004912628326565027,-0.003971020691096783,-0.06786106526851654,-0.05030699819326401,0.06986900418996811,-0.06119360029697418,0.052416179329156876,-0.021550891920924187,-0.0022527824621647596,-0.03317182883620262,0.008900804445147514,0.0367605946958065,0.04095156863331795,0.043557554483413696,0.02920646220445633,-0.060466159135103226,0.043433986604213715,-0.06345492601394653,-0.0582742840051651,-0.04839678853750229,-0.03637173771858215,-0.03145430609583855,-0.10730506479740143,0.002858104882761836,0.00475985836237669,-0.016490574926137924,0.025080744177103043,0.0581369549036026,-0.04110053554177284,-0.052700478583574295,0.07582961022853851,0.0618516243994236,0.04251851141452789,-0.002201733412221074,0.05838652700185776,-0.00846585538238287,-0.0037904337514191866,-0.039838384836912155,-1.659802729930248e-34,0.04116305708885193,0.027068011462688446,-0.05215786397457123,-0.030494438484311104,0.02191820926964283,-0.025398455560207367,-0.061533164232969284,0.07190985977649689,-0.044647667557001114,0.06950391083955765,-0.11816366016864777,-0.02847813069820404,-0.022616105154156685,-0.018263861536979675,-0.03709670528769493,-0.015098651871085167,0.09386871010065079,0.02631077542901039,0.023150041699409485,0.015950508415699005,0.04343896731734276,0.05508389323949814,0.034036364406347275,0.04579376056790352,-0.0620296411216259,-0.06047341600060463,0.007574059534817934,-0.01800575666129589,0.033083222806453705,0.05299048498272896,-0.04574691876769066,-0.011454048566520214,-0.03280539810657501,-0.03271064907312393,0.07338207215070724,0.05317174643278122,-0.0022772024385631084,0.008609446696937084,-0.0624484084546566,0.00008875312050804496,-0.17734749615192413,0.051346439868211746,-0.03571351617574692,0.07577817142009735,-0.08842609077692032,-0.10411103069782257,-0.07177244126796722,0.13962127268314362,0.07264512032270432,0.02629641629755497,-0.05392787978053093,-0.018991436809301376,0.057976871728897095,0.021042296662926674,0.032160259783267975,0.022383874282240868,0.06746663898229599,-0.019911617040634155,0.0720997303724289,-0.002480848226696253,0.03324636444449425,0.004513659980148077,0.06661438196897507,-0.0427943617105484,0.09962718933820724,0.008915198035538197,-0.05052103474736214,-0.04225483164191246,0.013441207818686962,-0.024770380929112434,-0.0310685858130455,0.034593209624290466,-0.051988277584314346,0.05782594904303551,-0.022775957360863686,-0.02404194138944149,-0.030303657054901123,-0.001907913014292717,0.07039645314216614,-0.07647068798542023,0.00487440824508667,-0.05373554304242134,-0.13752003014087677,0.050062764436006546,-0.039134059101343155,-0.015281801111996174,0.0011019350495189428,-0.038061972707509995,-0.08008141815662384,0.05412808805704117,0.004739221651107073,0.018000824376940727,0.01951518841087818,-0.027433987706899643,-0.01476200856268406,-3.539273165687778e-33,0.04031839966773987,0.04395289346575737,-0.09706921875476837,0.04133548587560654,-0.05643109977245331,0.009998196735978127,-0.021967489272356033,-0.026273299008607864,0.02726718969643116,0.004194475244730711,0.01282155979424715,-0.06741496175527573,0.003811987116932869,-0.013459384441375732,0.010411497205495834,-0.06756684929132462,0.047413039952516556,-0.023471428081393242,0.05356047302484512,0.03877093270421028,-0.03534992039203644,0.048788294196128845,-0.09453132003545761,-0.02905798703432083,0.020932510495185852,0.0074105155654251575,0.024002064019441605,0.03753646835684776,-0.10828149318695068,0.05930420011281967,0.06657665967941284,-0.08183714002370834,-0.04154306650161743,-0.021533705294132233,0.0545562282204628,0.04642535373568535,-0.04898088425397873,-0.06842530518770218,0.05157697945833206,-0.02130250446498394,0.04283834248781204,0.026957964524626732,0.10176688432693481,0.061951179057359695,0.027220623567700386,0.036041222512722015,-0.0021247363183647394,0.07442185282707214,0.08325142413377762,-0.013656352646648884,0.027217892929911613,-0.05433545634150505,0.026957474648952484,0.031906936317682266,0.021130507811903954,0.08627458661794662,0.0020935267675668,0.0007374822744168341,-0.04929276555776596,-0.018922390416264534,0.020090607926249504,0.006647186353802681,0.05799681693315506,0.0037383988965302706,0.01324016135185957,0.008931096643209457,-0.03674712032079697,0.03413219749927521,0.10817751288414001,-0.08863405883312225,0.022034602239727974,-0.043777938932180405,-0.05939507484436035,-0.00862072128802538,-0.02784702740609646,0.05069457367062569,-0.000972098030615598,-0.08065380156040192,0.05059228464961052,-0.1092967763543129,-0.029875513166189194,-0.071851447224617,0.016940496861934662,-0.08420244604349136,0.03512485697865486,-0.040834248065948486,-0.04418124631047249,0.02424713224172592,0.03636697679758072,-0.0028800317086279392,0.05916479974985123,0.04519447684288025,0.10484286397695541,-0.08557411283254623,-0.0450727604329586,-3.296340267411324e-8,-0.04570659250020981,0.0168057382106781,-0.011935998685657978,-0.04215126112103462,-0.026449115946888924,-0.051813479512929916,0.04071098193526268,-0.08566971123218536,-0.04938465356826782,0.0011795915197581053,-0.0113651929423213,0.08487523347139359,0.06121131032705307,0.006100604776293039,0.020833272486925125,-0.008901064284145832,0.03714372590184212,-0.014416554011404514,-0.0317019559442997,-0.015619469806551933,0.028191830962896347,-0.0511404350399971,-0.01806391216814518,0.01779804937541485,-0.02560928650200367,0.061975568532943726,-0.01458834484219551,0.005262861028313637,0.024575671181082726,0.04533003270626068,0.10880693048238754,0.04620553180575371,-0.06596392393112183,0.01737133227288723,-0.04971301928162575,0.024494146928191185,-0.019742446020245552,0.01923166960477829,0.0002754373708739877,-0.007920115254819393,0.04813883453607559,-0.05122419819235802,-0.06085008755326271,0.012359384447336197,0.000039034879591781646,0.03831658512353897,0.12823939323425293,-0.06811999529600143,-0.045321572571992874,0.06197620555758476,-0.025054320693016052,-0.05077134072780609,0.0050855060108006,-0.004405046347528696,-0.016341859474778175,-0.012096538208425045,0.047601163387298584,0.0404343418776989,-0.044356394559144974,-0.06298421323299408,0.058840394020080566,0.05589940398931503,0.016008080914616585,-0.03651325777173042]},{"text":"You and he will then make it up and live happily ever after.","book":"Down and Out in Paris and London","chapter":62,"embedding":[-0.026946336030960083,0.09668947011232376,0.0604231022298336,-0.0017608099151402712,0.017808131873607635,-0.030848665162920952,-0.014990792609751225,-0.07736606895923615,0.09033606946468353,-0.10410711914300919,-0.029808443039655685,0.008926511742174625,-0.012188611552119255,0.01592009700834751,0.0835714191198349,0.051695261150598526,-0.03799412027001381,0.022102395072579384,-0.024716084823012352,-0.030357733368873596,0.07077201455831528,0.00791892223060131,-0.002953174291178584,-0.07957015931606293,0.01777074486017227,0.0383618026971817,0.05001082271337509,0.049854714423418045,0.05686667934060097,0.08758191764354706,0.0003631514264270663,-0.04997943714261055,0.011146540753543377,-0.004198491107672453,-0.07707782834768295,-0.10707815736532211,-0.07746847718954086,-0.012515533715486526,0.04143240302801132,0.03904961794614792,-0.037303440272808075,0.03311702609062195,0.007944677025079727,0.04688503220677376,-0.05172676593065262,0.04601554945111275,0.055878814309835434,-0.017795931547880173,0.04518549144268036,0.05385853350162506,-0.0373845174908638,-0.009789487347006798,0.01031834352761507,-0.023296207189559937,-0.017155103385448456,0.07519225776195526,0.007156264968216419,0.02757941372692585,0.009098833426833153,0.008163658902049065,-0.059568192809820175,0.057135336101055145,-0.02841828763484955,0.06039359048008919,0.13175994157791138,0.021908938884735107,-0.019552798941731453,0.03972068428993225,0.007303724531084299,0.02993939444422722,-0.07316893339157104,0.002877870574593544,-0.02748194895684719,0.048447225242853165,-0.054355163127183914,-0.008499191142618656,-0.041121579706668854,0.01279666367918253,0.06013531610369682,0.05202098563313484,-0.054253898561000824,0.03373473510146141,-0.04493516683578491,-0.05630937218666077,-0.12845546007156372,-0.09969498217105865,0.041957441717386246,-0.03255750983953476,0.009527085348963737,0.09646811336278915,-0.07743129134178162,-0.06971868127584457,0.04772423580288887,-0.03899042680859566,-0.08673269301652908,0.0665735974907875,-0.09571806341409683,0.02150285616517067,-0.06270783394575119,0.05863799527287483,-0.04273479804396629,-0.012834971770644188,-0.012496321462094784,0.03934688866138458,0.03612044081091881,0.08217025548219681,-0.02040427178144455,0.02766481041908264,0.043771035969257355,0.025295913219451904,0.034246403723955154,-0.040894292294979095,0.010189688764512539,0.0404847227036953,0.06964222341775894,0.03603638336062431,-0.007456660736352205,0.0662890374660492,-0.030302107334136963,-0.02392304688692093,-0.014124034903943539,-0.02629810757935047,0.04168439283967018,0.08858656138181686,-0.11272910982370377,-0.08692570775747299,0.0614904910326004,-2.36863305552141e-33,0.08436904102563858,-0.028131604194641113,-0.003454189281910658,0.012370532378554344,-0.015321614220738411,0.03456033393740654,-0.0020388218108564615,-0.03157877177000046,-0.03959094360470772,-0.015906158834695816,0.02017349749803543,0.023551132529973984,0.03219765052199364,0.088706374168396,-0.0656907707452774,0.05346576124429703,0.04184379428625107,0.009027096442878246,-0.022097382694482803,0.0320470817387104,-0.08819087594747543,-0.1011892557144165,0.0189462061971426,-0.09652935713529587,0.03855690732598305,-0.03691281005740166,0.020518360659480095,-0.017789090052247047,-0.06279671937227249,-0.028167981654405594,-0.02663271501660347,0.10592324286699295,-0.003669059369713068,-0.04823727533221245,0.04653903841972351,0.06680861860513687,-0.012340646237134933,-0.006736717652529478,-0.04861171543598175,0.06938260793685913,0.03140503913164139,0.013341479934751987,-0.09486646950244904,0.0027136700227856636,-0.08894498646259308,-0.026368632912635803,0.06332723796367645,0.09562382102012634,0.07126208394765854,-0.11593657732009888,0.006475003436207771,-0.06548304110765457,0.012427502311766148,-0.04133220016956329,-0.08165262639522552,-0.007730217184871435,0.028109800070524216,-0.0803556963801384,0.10573691874742508,0.011873931623995304,0.0386912040412426,-0.10775958001613617,-0.0030506092589348555,0.07027730345726013,-0.00010564144031377509,-0.011526967398822308,0.04277811571955681,-0.05379878729581833,-0.02483024261891842,0.004895464051514864,0.011754619888961315,0.06190259009599686,-0.03291834145784378,-0.007414329331368208,0.0004359424638096243,-0.016177717596292496,-0.0454668328166008,-0.040193360298871994,-0.016312848776578903,0.049120135605335236,0.03067377768456936,0.040636736899614334,-0.0810040682554245,-0.007825421169400215,0.051992278546094894,0.03185075521469116,0.014242379926145077,-0.06193070858716965,-0.03666716814041138,0.01593892276287079,0.06908626854419708,0.0000036228614135325188,0.04877867549657822,0.014092870987951756,0.07801937311887741,6.652723479831309e-35,0.058178626000881195,0.015316803008317947,-0.0193343423306942,-0.0514901764690876,0.009303753264248371,-0.002056965371593833,-0.09171685576438904,0.07837066054344177,0.04731537029147148,0.03928867727518082,0.03581519052386284,0.004387314431369305,0.1052367240190506,0.04252047464251518,0.00034542250796221197,-0.014475415460765362,0.021928241476416588,-0.08897565305233002,-0.03858207166194916,0.06115168705582619,-0.037125617265701294,0.038617879152297974,0.0020899304654449224,0.04083012044429779,-0.04931515455245972,-0.03352811560034752,0.05504990741610527,-0.0014108094619587064,-0.02669418975710869,-0.015266663394868374,0.02619876153767109,-0.10940378904342651,-0.0995665118098259,0.010202579200267792,0.05375861003994942,-0.038359180092811584,-0.03022930957376957,-0.10461249947547913,0.05075548216700554,-0.03877728059887886,0.021336326375603676,-0.08830796182155609,-0.07197636365890503,-0.026822198182344437,0.08926478773355484,-0.07580922544002533,0.060083892196416855,0.078888900578022,0.03927839919924736,0.041301969438791275,0.060781996697187424,0.07072796672582626,0.0008344011148437858,-0.025698363780975342,-0.0024863602593541145,-0.03822023794054985,0.036997921764850616,0.03770652040839195,-0.0493503138422966,-0.0276373028755188,-0.04963873699307442,0.09680061042308807,0.06657589226961136,0.042200494557619095,-0.011992818675935268,0.05353527516126633,-0.029896073043346405,-0.0235468540340662,-0.00606451416388154,0.04201148822903633,0.04170830547809601,-0.032937679439783096,-0.021187525242567062,-0.04159765690565109,0.044284652918577194,-0.03817303851246834,-0.00409180112183094,-0.014391259290277958,0.05545667186379433,-0.0120555330067873,0.05368203669786453,0.050318848341703415,-0.014843459241092205,0.03800627589225769,-0.02361348830163479,-0.06570301949977875,-0.05095262825489044,-0.04070151597261429,0.0003503465559333563,0.03245839476585388,0.03711472079157829,0.041811391711235046,-0.024173442274332047,-0.03463702276349068,0.0088525814935565,-2.1794093640892243e-8,-0.05515766888856888,-0.08486800640821457,-0.05199560523033142,-0.06673011928796768,-0.026844793930649757,0.09775002300739288,0.13929258286952972,-0.12276024371385574,-0.00526440842077136,-0.010351044125854969,-0.020855890586972237,0.0023691763635724783,0.04427145794034004,-0.08309148252010345,-0.06681368499994278,0.026519911363720894,0.09279707074165344,-0.047810912132263184,-0.03195183351635933,-0.021715406328439713,-0.002097244607284665,-0.011901798658072948,0.0002976189134642482,-0.002355527598410845,-0.0599500872194767,0.0329977385699749,0.07580398768186569,-0.000874580699019134,-0.054645609110593796,0.039191268384456635,0.016001826152205467,-0.05374833568930626,-0.024972956627607346,0.016401445493102074,0.05434008315205574,-0.02310997061431408,-0.013711072504520416,-0.0012862840667366982,0.09722775220870972,-0.010061565786600113,-0.010328267700970173,0.007374410517513752,-0.030311759561300278,-0.025042545050382614,-0.06530621647834778,-0.011607257649302483,0.09489507973194122,-0.04665041342377663,-0.08832508325576782,-0.08032391965389252,0.00008215020352508873,0.0366397462785244,-0.027078496292233467,0.0345890037715435,0.018186088651418686,-0.0459941029548645,0.03768257424235344,0.07076132297515869,0.01677374169230461,-0.009357616305351257,0.06083274260163307,-0.059787407517433167,0.036136336624622345,-0.07185076922178268]},{"text":"I have received no favours.","book":"Down and Out in Paris and London","chapter":62,"embedding":[-0.031001843512058258,0.035095445811748505,0.0029397655744105577,-0.02963990345597267,-0.003560577053576708,0.029239756986498833,0.025098757818341255,-0.059537701308727264,-0.029190095141530037,0.0012612845748662949,0.008323843590915203,-0.015387814491987228,0.0352352000772953,0.018753837794065475,-0.054293423891067505,0.07314082235097885,0.025720350444316864,-0.11238885670900345,-0.012978658080101013,0.024885263293981552,-0.10565303266048431,0.059899523854255676,0.02894677221775055,0.020341036841273308,-0.05899019166827202,-0.030271176248788834,-0.03646831214427948,0.0025600753724575043,-0.008089221082627773,-0.1328064650297165,-0.01573561690747738,0.0495162196457386,0.01195022277534008,-0.00269313994795084,-0.02422408200800419,-0.030589990317821503,0.01770651713013649,-0.07180075347423553,-0.03188052400946617,-0.014422195963561535,0.012786864303052425,-0.004179231822490692,0.058205682784318924,0.03674288094043732,0.10051197558641434,0.007353191729635,0.04240234196186066,-0.04696953669190407,0.10587330907583237,-0.03297031298279762,0.01571432128548622,-0.03956251218914986,-0.03181452676653862,-0.005183698609471321,-0.02858702652156353,-0.061097148805856705,0.008879109285771847,0.06668788194656372,-0.01540247444063425,-0.06812464445829391,-0.04688062146306038,-0.04331290349364281,-0.05112522840499878,0.023061776533722878,-0.06323231756687164,-0.030836671590805054,-0.07251042127609253,0.020721040666103363,-0.03480556234717369,0.08249286562204361,-0.010962422005832195,0.04520502686500549,0.09355339407920837,0.044760577380657196,-0.004370832350105047,0.043967604637145996,-0.009007344953715801,-0.06766454130411148,0.07379882782697678,-0.009590298868715763,-0.022988947108387947,-0.03195963054895401,0.007084880955517292,0.005519462749361992,-0.03814331814646721,0.0016101064393296838,-0.00027795633650384843,0.003513028845191002,0.04314189776778221,0.014482636004686356,-0.03718474134802818,0.08095146715641022,0.05426478013396263,0.024153584614396095,-0.012130233459174633,-0.025908106938004494,-0.022846756502985954,0.01115258689969778,-0.08830443769693375,0.1607242375612259,0.028109068050980568,0.05898439139127731,-0.05735769867897034,0.04763023182749748,0.03924373537302017,0.07286763191223145,-0.11707434058189392,0.06723470985889435,-0.04722055420279503,-0.002191373845562339,-0.04682689532637596,0.03104807250201702,-0.010048307478427887,-0.014380590990185738,-0.11139583587646484,0.028713777661323547,0.023456091061234474,0.007223665714263916,0.06657632440328598,0.03825284540653229,0.01993878372013569,0.0065437364391982555,-0.02906496450304985,-0.004383857361972332,-0.0765385776758194,-0.0849660336971283,0.008275073021650314,-5.012432440839024e-33,-0.10352302342653275,0.01714920438826084,-0.023430483415722847,-0.004023044835776091,0.037045009434223175,-0.00834348052740097,-0.02527584508061409,0.012757549993693829,-0.03819267079234123,0.0018252662848681211,0.02997600845992565,0.09804794192314148,0.04427451267838478,-0.05978970602154732,0.032565195113420486,0.035752568393945694,0.07273739576339722,0.038833726197481155,0.003958664834499359,-0.01389320008456707,0.06015271693468094,0.059232696890830994,-0.00031878569279797375,0.03814132139086723,-0.044518981128931046,-0.06977048516273499,-0.023548321798443794,0.02044229954481125,0.03941094130277634,0.011059305630624294,-0.011082337237894535,0.009191104210913181,0.029820865020155907,-0.10098077356815338,0.0213211290538311,0.09914630651473999,-0.045635372400283813,-0.04484649747610092,0.002304707420989871,-0.038790397346019745,-0.06415008008480072,-0.01722387969493866,-0.09267017990350723,0.004122522193938494,0.05888885259628296,0.09487846493721008,0.05152541399002075,-0.00787388626486063,-0.12499191612005234,-0.0013692363863810897,-0.015461200848221779,-0.01232975721359253,0.00006439664139179513,0.1338547021150589,-0.06533010303974152,-0.009705484844744205,-0.0269483495503664,0.00159582553897053,-0.006096741184592247,-0.08019053936004639,0.022412924095988274,-0.02294081449508667,-0.01955232582986355,-0.08726010471582413,-0.07806625217199326,-0.0335267148911953,-0.01391933299601078,-0.0291080791503191,-0.08377229422330856,-0.017681987956166267,-0.003806734224781394,0.10268016904592514,0.03182992339134216,-0.07075565308332443,-0.007738249376416206,-0.049233753234148026,-0.06498167663812637,0.052175119519233704,0.08634232729673386,-0.02144988253712654,0.004916104022413492,0.021658482030034065,-0.027371743693947792,-0.015598578378558159,0.12005013227462769,-0.011880449950695038,0.043744344264268875,0.018763411790132523,0.09333708882331848,0.027050435543060303,-0.03999970108270645,-0.013931138440966606,0.03424034267663956,0.004055707715451717,-0.06812437623739243,4.475437234024633e-33,-0.06550917774438858,0.05411834642291069,-0.04100266844034195,0.04716446250677109,-0.05708589032292366,0.026376595720648766,-0.039848361164331436,0.06362283229827881,0.06727240979671478,0.07626460492610931,0.11074065417051315,0.01786557398736477,0.051513344049453735,-0.027401618659496307,0.06599022448062897,-0.03930047154426575,0.0045468672178685665,0.06229541078209877,0.0041049630381166935,-0.022890811786055565,-0.026104535907506943,0.13693048059940338,-0.05259008705615997,-0.005964020267128944,-0.032420024275779724,0.024394623935222626,0.051765505224466324,-0.010943177156150341,-0.0575113520026207,0.006706753745675087,0.08653868734836578,0.03709588199853897,-0.15599431097507477,-0.008882778696715832,0.026069924235343933,-0.007054044399410486,0.000906698580365628,0.06780185550451279,0.06812314689159393,0.024802329018712044,-0.060479894280433655,0.0302676223218441,0.003347300458699465,-0.014093508012592793,-0.02850520610809326,-0.049697697162628174,-0.053223658353090286,-0.03910180553793907,0.07012754678726196,-0.03139076754450798,-0.018745852634310722,0.014597395434975624,0.03701768070459366,-0.007222289685159922,-0.016262266784906387,0.021694529801607132,0.03742789477109909,0.028314832597970963,0.1065603718161583,0.01888521946966648,-0.045820072293281555,0.025036700069904327,-0.09305889159440994,-0.021583175286650658,0.11219669878482819,0.03778742998838425,0.046197544783353806,0.0028195844497531652,0.07414241880178452,-0.021044515073299408,-0.013166896998882294,0.027509884908795357,-0.057601671665906906,-0.018533365800976753,0.08404048532247543,0.06589999049901962,-0.025099163874983788,0.04888236150145531,-0.052658811211586,-0.027129964902997017,0.1236717626452446,0.05847746878862381,0.08223564177751541,-0.026980780065059662,0.002778475172817707,-0.07961004227399826,0.09899242967367172,-0.05240592360496521,0.005663007963448763,0.028873339295387268,0.06243943050503731,-0.02812584489583969,0.11458878964185715,0.006276432424783707,0.08126405626535416,-2.0487094687382523e-8,0.014992641285061836,-0.05282498523592949,0.06901852041482925,0.07507304847240448,-0.03998293727636337,-0.031842898577451706,-0.08347179740667343,0.08528419584035873,-0.017093360424041748,0.01994403637945652,0.0441720075905323,0.03441781923174858,-0.06880105286836624,-0.0934695154428482,0.12316900491714478,0.058524444699287415,0.05077793821692467,-0.0332823172211647,-0.07312755286693573,-0.00007566253043478355,-0.04102221876382828,0.04970996081829071,0.04561097174882889,-0.11140312254428864,-0.01925479993224144,0.008574245497584343,0.015142125077545643,-0.03571680933237076,0.027650602161884308,-0.026655368506908417,-0.003973717335611582,0.056527454406023026,-0.06633380055427551,-0.03485918790102005,0.0066119651310145855,-0.016392987221479416,-0.037455979734659195,-0.03989103436470032,-0.021800760179758072,0.009358423762023449,0.0069563318975269794,0.02140115201473236,0.0021225963719189167,-0.044479548931121826,-0.05281801521778107,0.05119546130299568,0.006207303609699011,0.013637403957545757,0.021554911509156227,0.006803308147937059,0.025992995128035545,-0.028148064389824867,0.01970035955309868,0.09715671837329865,-0.010647916235029697,-0.023782456293702126,-0.01981615647673607,-0.037363793700933456,0.042048707604408264,0.08374390006065369,0.01766515150666237,-0.03677206113934517,-0.03335077688097954,0.0013729536440223455]},{"text":"Your cavalry were at my heels.","book":"Down and Out in Paris and London","chapter":62,"embedding":[-0.07369103282690048,0.04383281245827675,-0.023762667551636696,-0.035505279898643494,0.026506755501031876,-0.044221408665180206,-0.034978002309799194,0.020853117108345032,-0.03212209418416023,-0.051002874970436096,-0.002960832789540291,-0.03178366646170616,0.06091245636343956,-0.005031723063439131,-0.022239774465560913,0.003476138925179839,-0.013079699128866196,0.025790175423026085,0.013438728637993336,0.005035562440752983,-0.10889656841754913,0.1469329595565796,0.0042286524549126625,0.040414344519376755,0.03377939388155937,-0.0221717469394207,-0.026485806331038475,0.012654049322009087,-0.1156182661652565,0.02098976820707321,-0.09276968240737915,-0.07741571962833405,-0.014636892825365067,0.016901707276701927,0.012588419951498508,0.08745446056127548,0.025368111208081245,0.00046430787188000977,0.05519599840044975,0.02627072110772133,0.023673180490732193,-0.1058596819639206,0.028069239109754562,0.02623799256980419,0.11982398480176926,0.05662930756807327,0.05174829438328743,-0.03344998136162758,-0.022703202441334724,0.06315965205430984,-0.028550149872899055,-0.005700383801013231,-0.033074863255023956,-0.0029423742089420557,-0.027978308498859406,-0.0174760352820158,0.029730921611189842,-0.010751428082585335,0.07385236769914627,-0.0087665393948555,0.0013145220000296831,0.03329785168170929,-0.01306904572993517,0.07072784006595612,-0.14428095519542694,-0.043496157974004745,-0.038931671530008316,-0.02193119190633297,-0.05159611627459526,0.08751009404659271,0.015640223398804665,-0.00237471261061728,0.028870917856693268,-0.01122857816517353,-0.06304914504289627,0.058320604264736176,-0.02648685872554779,-0.007570270448923111,0.03951499983668327,-0.0892559215426445,-0.022567233070731163,-0.03445889428257942,-0.00005553001756197773,0.022486025467514992,0.0445331335067749,-0.08055174350738525,0.029041044414043427,-0.03611910715699196,0.036173827946186066,-0.03501937910914421,0.04502754658460617,-0.057211801409721375,-0.022011494264006615,0.08232976496219635,-0.03976525366306305,-0.006350204814225435,0.027112668380141258,0.004889338742941618,-0.07737546414136887,0.09127580374479294,0.01453049760311842,-0.05142803117632866,-0.11200866103172302,0.02559685707092285,-0.013719410635530949,0.06327889859676361,-0.028290851041674614,0.029571592807769775,-0.046792011708021164,-0.042315877974033356,0.0793081596493721,-0.02170727401971817,-0.007831833325326443,0.04391506686806679,-0.013302922248840332,0.06503988057374954,-0.09328530728816986,0.002408701227977872,-0.07948959618806839,0.09289059787988663,-0.011155588552355766,0.009658144786953926,-0.06660481542348862,0.0073968893848359585,0.0542631670832634,-0.033049359917640686,0.042974766343832016,-5.572880229320259e-33,-0.02079188823699951,0.0504208505153656,-0.038914088159799576,0.010852104984223843,0.018550299108028412,-0.07028403878211975,-0.040856875479221344,0.028226252645254135,-0.07534635812044144,-0.009444723837077618,-0.027572261169552803,0.10698504000902176,0.02311336062848568,-0.03155346214771271,-0.09210722148418427,-0.03604846075177193,0.06027177721261978,-0.023104531690478325,0.05688309296965599,-0.03317520022392273,-0.04921158030629158,0.0470995232462883,-0.02911350689828396,-0.0486438162624836,-0.034649744629859924,0.02214866876602173,-0.007185089867562056,-0.03943603113293648,0.000206991724553518,0.0513991080224514,0.006097229663282633,-0.04613010957837105,0.06901431828737259,-0.05185219272971153,0.004796402994543314,-0.03807444125413895,-0.056198835372924805,-0.11636507511138916,-0.07275936752557755,0.05726034194231033,-0.008405894041061401,-0.028609730303287506,0.004172070417553186,-0.00544830784201622,-0.028846170753240585,0.06931059062480927,0.06063272804021835,0.04631142318248749,-0.0979834571480751,-0.002749056788161397,-0.003800141392275691,0.05836040526628494,0.09448891133069992,0.025598302483558655,0.04135575890541077,0.054299212992191315,-0.023486383259296417,0.08863425999879837,-0.08816468715667725,0.008865139447152615,-0.011018794029951096,0.037693411111831665,-0.04856928810477257,-0.0743352621793747,-0.1329742968082428,-0.08271916955709457,-0.03623510152101517,0.037681110203266144,0.029164927080273628,0.041236571967601776,-0.046661488711833954,-0.03449380025267601,0.05314403027296066,-0.05833476781845093,0.02269795350730419,0.02988128364086151,-0.004382203333079815,0.0005960758426226676,-0.0008037351071834564,-0.1283242553472519,-0.08340026438236237,-0.03555559366941452,-0.07682754844427109,-0.0058579519391059875,0.017303336411714554,-0.04692110791802406,0.03633732348680496,-0.05090278387069702,0.014399194158613682,0.03876463696360588,-0.13733676075935364,0.04552657902240753,0.043615590780973434,-0.0751948356628418,-0.015702342614531517,3.810898686094115e-33,0.030163398012518883,0.13105855882167816,0.024463994428515434,0.022804297506809235,-0.0024804247077554464,-0.045096807181835175,0.03292803466320038,0.009820990264415741,-0.040135569870471954,0.07608300447463989,-0.024988677352666855,0.06436623632907867,-0.07861518859863281,-0.005132083781063557,0.04867769405245781,-0.034938469529151917,0.05198017507791519,0.05522914603352547,0.08651525527238846,0.028676506131887436,-0.05491159111261368,0.09185381233692169,0.034378666430711746,0.0023191007785499096,0.057808175683021545,0.08597729355096817,-0.023321792483329773,-0.031723231077194214,0.015865491703152657,-0.01192375086247921,0.04202382639050484,-0.08535771071910858,-0.10093404352664948,-0.01669038087129593,0.013876765966415405,0.059838395565748215,-0.07761485874652863,0.021304549649357796,-0.022862108424305916,-0.021316442638635635,-0.05918144807219505,-0.02143756113946438,0.006563250906765461,0.08883333206176758,-0.030078519135713577,-0.02605404518544674,0.009356739930808544,0.092190682888031,0.007139962632209063,0.03917671740055084,-0.06947797536849976,-0.013673480600118637,0.014558399096131325,0.0053376369178295135,-0.014374705962836742,0.008457998745143414,0.057721033692359924,-0.02908666804432869,-0.07645288854837418,-0.02021600492298603,0.006586075760424137,-0.005574463866651058,-0.0392659492790699,-0.03838033229112625,0.0316576287150383,0.025230007246136665,-0.025328485295176506,0.08135463297367096,-0.061939992010593414,0.06516781449317932,-0.029691515490412712,-0.015580728650093079,-0.047297991812229156,0.01655358076095581,0.05259197577834129,-0.005445944145321846,0.03363873064517975,0.03513941913843155,0.046750202775001526,-0.03337284177541733,0.017119552940130234,-0.08247017115354538,0.0001372718543279916,-0.028051253408193588,0.000295883568469435,0.06274722516536713,0.08177072554826736,0.01690869964659214,0.06803333759307861,0.027908645570278168,0.05536987632513046,0.015514317899942398,0.07772986590862274,0.04212026670575142,0.030279310420155525,-1.7973651011971015e-8,0.041399385780096054,0.05448136478662491,0.018171610310673714,0.05071711167693138,-0.03848688304424286,0.014882493764162064,-0.014601875096559525,0.03986433520913124,0.003274379763752222,0.06750628352165222,0.027494078502058983,0.036021433770656586,0.03147483617067337,-0.012043838389217854,0.05652383342385292,0.06464142352342606,-0.030724061653017998,-0.06291083246469498,-0.04059973359107971,-0.027974897995591164,-0.06826367974281311,0.007101801224052906,-0.04586423933506012,-0.05851196497678757,-0.02590375766158104,-0.023496460169553757,0.00452939560636878,0.02290390431880951,0.012909326702356339,0.11106957495212555,0.07374774664640427,-0.017098739743232727,-0.030223088338971138,-0.04513922706246376,0.005075117573142052,0.0544513575732708,-0.05230692774057388,0.01689204014837742,0.10422876477241516,-0.00952444039285183,-0.01134530920535326,0.06426986306905746,0.04858114570379257,0.04595821350812912,0.020689265802502632,0.06444726884365082,0.08728659898042679,0.003162398701533675,-0.010441250167787075,-0.09840962290763855,-0.026816779747605324,-0.029799893498420715,0.06890502572059631,0.09951325505971909,0.07190612703561783,0.06000051274895668,0.02763528935611248,-0.006964624393731356,-0.07543284446001053,0.12070930749177933,-0.003153769299387932,-0.05090053752064705,-0.08272702991962433,-0.06782403588294983]},{"text":"It is he who is spreading this horrible story about me. (_She walks about excitedly._) BLUNTSCHLI.","book":"Down and Out in Paris and London","chapter":63,"embedding":[0.06018033251166344,-0.00476090656593442,0.09194562584161758,0.05719001591205597,0.05145590752363205,-0.028660837560892105,0.11304569244384766,-0.030214576050639153,0.03163876757025719,-0.08505077660083771,-0.0494624488055706,-0.07621422410011292,-0.016063209623098373,0.002135691698640585,-0.012810101732611656,0.012244760990142822,0.021483808755874634,-0.03752344474196434,-0.08152154833078384,0.04827797785401344,0.021916603669524193,0.12559205293655396,-0.004679680336266756,0.03936099261045456,-0.01351433340460062,-0.0337509848177433,0.07032942771911621,-0.028559351339936256,-0.0034185333643108606,-0.027549579739570618,-0.025384224951267242,-0.030752258375287056,-0.006228131242096424,0.022457435727119446,0.003927635960280895,-0.03634136542677879,-0.015016191639006138,-0.041327059268951416,0.09596790373325348,-0.00377646554261446,-0.045212272554636,-0.03429808467626572,0.07802537083625793,0.0747334361076355,-0.06268304586410522,-0.052363310009241104,-0.019982557743787766,0.02153334952890873,-0.05659154802560806,-0.07470028847455978,-0.1030505895614624,-0.04615151137113571,-0.0076034218072891235,0.007677651476114988,-0.0309523344039917,-0.0748029500246048,0.052527010440826416,0.10602004081010818,0.05182819440960884,0.05296120047569275,-0.04977080598473549,0.015256200917065144,-0.03066793456673622,0.07364695519208908,-0.05683787539601326,0.009701165370643139,0.01647328771650791,-0.0030140632297843695,-0.05758749693632126,0.10732726007699966,0.08667053282260895,0.011324886232614517,0.03511379659175873,0.05403108522295952,-0.026369785889983177,-0.06390813738107681,0.041530124843120575,-0.0005601527518592775,0.039425499737262726,0.07164304703474045,0.08182834088802338,-0.02074364386498928,-0.05574106052517891,-0.029406754299998283,-0.05332886427640915,0.01580347865819931,-0.018541399389505386,-0.03403259441256523,-0.03704262524843216,-0.006827769801020622,-0.03259579837322235,-0.0011829372961074114,-0.018498098477721214,0.008319010026752949,-0.05955490097403526,0.04823029413819313,-0.060579124838113785,-0.021259276196360588,-0.1227017268538475,0.03753211349248886,0.008527664467692375,0.06406479328870773,0.03761427477002144,0.017431655898690224,-0.0154789499938488,-0.026129435747861862,-0.08789356052875519,-0.04513119161128998,-0.042983148247003555,-0.009421040304005146,0.043236974626779556,-0.03640830144286156,-0.04846229404211044,-0.07151556015014648,0.09625072032213211,-0.005455288104712963,0.09956716001033783,0.009592127986252308,-0.04941237345337868,0.04016534984111786,0.0005314509035088122,0.05993502587080002,-0.03886335343122482,0.10631360113620758,-0.06643017381429672,-0.05367560312151909,-0.005404443014413118,-4.037946521981394e-33,0.05345864221453667,0.04957224801182747,0.007568710949271917,0.06841818988323212,0.0956525206565857,-0.020800311118364334,-0.08553057163953781,0.04207095131278038,-0.06686722487211227,0.04663980379700661,-0.06447610259056091,-0.021881308406591415,-0.03696409985423088,0.02144189365208149,-0.09770810604095459,0.06073389947414398,-0.0050908662378787994,-0.025897560641169548,-0.0008844704716466367,0.00868262629956007,0.04619302228093147,-0.013108871877193451,-0.026093631982803345,-0.00016542374214623123,-0.029774591326713562,0.01217951811850071,0.045272160321474075,-0.01838180609047413,0.10191968828439713,0.04421285167336464,-0.09950759261846542,0.14699694514274597,-0.016688210889697075,0.00261625531129539,0.0707569345831871,0.046056799590587616,-0.049128253012895584,-0.038072142750024796,-0.039229486137628555,0.04021729901432991,-0.02967015467584133,0.03237210959196091,-0.030038030818104744,-0.0295358095318079,-0.06682654470205307,0.04511743038892746,-0.014272761531174183,0.017925571650266647,0.014587344601750374,-0.055854156613349915,-0.02513282001018524,-0.02676529251039028,0.05087403580546379,0.03651626035571098,0.03604756295681,-0.0602857768535614,0.03545470908284187,0.0012238096678629518,0.15039511024951935,0.05578194186091423,0.02184898965060711,0.020344458520412445,-0.06104910746216774,0.000047121615352807567,0.07109291106462479,-0.11607798933982849,-0.03785531595349312,-0.05730412155389786,0.08639257401227951,-0.022039690986275673,0.012677138671278954,0.05884178727865219,-0.058649491518735886,-0.015457185916602612,-0.056970350444316864,-0.059964340180158615,-0.06880643963813782,0.03864983841776848,0.0674157664179802,-0.0427376925945282,0.00008213257387978956,-0.04122026637196541,-0.06429117918014526,-0.0499524250626564,-0.09686380624771118,0.027652248740196228,-0.06752172112464905,-0.01856284588575363,-0.06803710758686066,0.061990898102521896,-0.018356965854763985,0.027315916493535042,-0.0038465189281851053,-0.000860771513544023,-0.032050423324108124,5.276384095350903e-34,0.03549171984195709,0.0458856001496315,-0.04111381992697716,0.04017971456050873,0.015071375295519829,-0.05206938460469246,-0.08434512466192245,0.05133260041475296,0.08617766946554184,-0.03024638630449772,0.03372965008020401,-0.01407650113105774,0.0816274881362915,-0.015349320136010647,0.11346647143363953,-0.044131387025117874,0.04798198491334915,-0.09078830480575562,-0.07724569737911224,-0.05198245495557785,-0.09141385555267334,0.013574574142694473,-0.07902643829584122,-0.02080286107957363,0.0013194240164011717,-0.06735841184854507,0.14574921131134033,0.08100104331970215,-0.015712987631559372,-0.011835379526019096,0.02112773060798645,-0.03338536620140076,-0.03241747245192528,-0.07274570316076279,0.014904307201504707,0.058779019862413406,-0.06751929968595505,-0.04879508540034294,0.057087671011686325,-0.04642604663968086,-0.011871693655848503,0.024886636063456535,0.0757334977388382,0.0016925149830058217,0.01091599091887474,-0.004326592665165663,0.048721134662628174,0.0276171937584877,0.03679903224110603,-0.005625956226140261,-0.044743862003088,-0.044017236679792404,0.012731347233057022,0.011752767488360405,0.017392579466104507,0.06363417953252792,-0.08175954967737198,-0.011352816596627235,0.0006501131574623287,-0.01957346312701702,-0.027441730722784996,0.0484054870903492,-0.009776728227734566,0.04725326597690582,0.00019670685287564993,-0.039155129343271255,-0.04802623391151428,-0.032575495541095734,0.011951295658946037,-0.007700314745306969,0.01694059930741787,-0.0040163216181099415,-0.03235866129398346,-0.01663399673998356,0.0054503572173416615,-0.00425050500780344,-0.04130179435014725,-0.03384291008114815,0.027774062007665634,-0.03804333135485649,0.07513120770454407,-0.04851119592785835,0.02269461192190647,-0.01829606667160988,0.08520058542490005,-0.04041990265250206,-0.0002789758436847478,0.013599926605820656,0.0018143152119591832,0.026654083281755447,0.016179852187633514,0.011154069565236568,0.031242888420820236,-0.0633748397231102,0.01600799150764942,-2.548614652653214e-8,-0.010243618860840797,-0.09521954506635666,-0.08634378761053085,-0.05766744911670685,0.06316933780908585,0.0846872478723526,-0.010021078400313854,0.0041435337625443935,-0.08061911165714264,0.0022068005055189133,-0.060838405042886734,0.05144466832280159,0.03705339506268501,-0.004979990888386965,0.036217980086803436,0.009594130329787731,0.07926717400550842,-0.0010877307504415512,0.0036501579452306032,0.025734515860676765,0.08127876371145248,0.03235499560832977,0.050031449645757675,-0.09159623831510544,-0.027219999581575394,0.04627542570233345,0.022065619006752968,-0.015213153325021267,-0.007127334829419851,0.026745745912194252,0.03216644749045372,0.07750608026981354,-0.10553684830665588,0.013367789797484875,-0.07595887035131454,0.06724406778812408,0.019930509850382805,0.0110773965716362,0.011934644542634487,0.026450756937265396,0.049325570464134216,0.02485669031739235,-0.0324661061167717,0.03619261458516121,-0.07389994710683823,0.004161353688687086,0.05948109179735184,-0.11344687640666962,-0.0010082105873152614,0.03639272227883339,-0.08968072384595871,-0.013584171421825886,0.02496698684990406,0.07992473244667053,0.0070797898806631565,-0.08908799290657043,-0.0234898142516613,0.07899085432291031,-0.04933837428689003,-0.03084666281938553,0.0664486363530159,-0.036607321351766586,0.03589124232530594,0.0285998173058033]},{"text":"Come, Saranoff: that matter is explained.","book":"Down and Out in Paris and London","chapter":63,"embedding":[0.06778456270694733,-0.01782814972102642,0.016651134938001633,0.05547714605927467,0.11109703034162521,-0.013092673383653164,0.05635690316557884,0.02635084092617035,0.017967963591217995,0.0015748045407235622,-0.05577326565980911,-0.053271643817424774,0.026428665965795517,0.004784621763974428,0.007889245636761189,-0.04463612288236618,0.0030962268356233835,0.022268148139119148,-0.06368114054203033,0.06622926145792007,0.09877167642116547,-0.06919927895069122,0.008192752487957478,-0.006652574520558119,0.01729493960738182,0.0909208431839943,-0.0026695700362324715,0.021592548117041588,0.06817945092916489,-0.03348851948976517,-0.018439553678035736,0.15403451025485992,-0.0458032451570034,0.016264790669083595,-0.04446211829781532,0.020152417942881584,0.04251784458756447,0.08843652904033661,-0.07590927183628082,-0.00012511563545558602,0.022560428828001022,0.023098405450582504,0.03280354291200638,0.037934884428977966,0.0182977095246315,-0.04342286288738251,0.018103066831827164,-0.0020343607757240534,-0.010323948226869106,-0.08095313608646393,-0.089996837079525,0.02629214897751808,-0.04318198189139366,-0.04714847728610039,0.09307429939508438,0.016803918406367302,-0.03018929995596409,-0.04235871508717537,-0.0239594466984272,0.04765728861093521,0.060216136276721954,0.01348950620740652,-0.054077088832855225,0.051069989800453186,0.1528465747833252,-0.0016902220668271184,-0.04670243710279465,-0.004929279908537865,-0.007953163236379623,0.0012377290986478329,-0.013999121263623238,0.04519594460725784,-0.01644822210073471,-0.01412810105830431,-0.04395405203104019,-0.006063064560294151,0.03618159890174866,0.04860752075910568,0.06873840093612671,0.06319359689950943,-0.03018971160054207,0.04050634056329727,-0.02237832546234131,0.0175605658441782,0.009853510186076164,-0.008663952350616455,0.12571510672569275,-0.06699445843696594,-0.08690982311964035,0.0744442343711853,-0.015782203525304794,-0.09491623193025589,-0.023853935301303864,0.02527768164873123,0.0075449831783771515,-0.060548242181539536,-0.08618193864822388,0.015575740486383438,-0.002529874676838517,0.054013822227716446,-0.07398718595504761,0.019874123856425285,0.03563946485519409,0.0998682752251625,-0.06638094037771225,-0.0799826979637146,-0.014441355131566525,-0.1169385239481926,-0.03462821617722511,0.0029879517387598753,-0.04003572091460228,-0.03798768296837807,-0.04515117034316063,0.045800767838954926,0.0460374616086483,0.015007846057415009,0.017703259363770485,-0.014808004721999168,-0.06492594629526138,-0.04819207265973091,-0.04063502326607704,-0.02855675481259823,-0.13067662715911865,0.06834179908037186,0.04008982703089714,-0.0035796891897916794,0.04107891023159027,-2.733808273457023e-33,-0.027957972139120102,-0.007266240194439888,0.09296779334545135,0.04390643537044525,0.040527552366256714,-0.0071557797491550446,-0.04861587658524513,0.01006961241364479,0.07308752089738846,0.04559149593114853,-0.029440732672810555,0.050432879477739334,-0.009739384055137634,-0.046039897948503494,-0.04553781822323799,-0.0002261591434944421,-0.014859374612569809,-0.02828666940331459,0.039882395416498184,-0.04144757613539696,0.0607471838593483,0.14733698964118958,-0.024831358343362808,-0.04295883700251579,-0.039110228419303894,-0.02491084858775139,0.04338560253381729,-0.034084752202034,-0.0029309357050806284,0.02638695202767849,-0.041451919823884964,0.017822831869125366,-0.003649272723123431,0.0074946205131709576,-0.03924774378538132,0.022430919110774994,0.0071722110733389854,-0.09467723965644836,-0.04557477682828903,-0.04709797725081444,-0.06671369075775146,0.0013555323239415884,-0.03713275119662285,0.025551624596118927,-0.1005573645234108,-0.09517218917608261,0.07512305676937103,-0.032216038554906845,0.012638138607144356,0.016225391998887062,-0.025331255048513412,0.020837891846895218,0.026702167466282845,0.005196736194193363,-0.013416626490652561,-0.0032831113785505295,0.025097934529185295,-0.022902844473719597,-0.018917931243777275,0.10015324503183365,0.0015339930541813374,-0.022579403594136238,0.012821049429476261,-0.01625611074268818,0.05445723235607147,0.030649911612272263,-0.013697373680770397,0.0061935195699334145,0.06764638423919678,0.026184938848018646,-0.08358535170555115,0.023903489112854004,-0.017201142385601997,0.04084067791700363,-0.03787051886320114,-0.011675640940666199,-0.02356342040002346,0.051483407616615295,0.09753353893756866,-0.08279460668563843,0.004756432957947254,0.058201711624860764,0.01881900615990162,-0.01701604202389717,-0.045043669641017914,0.0005387277342379093,0.07259005308151245,-0.028898730874061584,-0.013414544984698296,-0.024011781439185143,-0.00000998839550447883,0.006881593260914087,0.06820815801620483,0.03033686801791191,-0.05842835083603859,-4.7532294161624826e-34,-0.0009877056581899524,-0.11102970689535141,-0.049020297825336456,0.02636360004544258,-0.0030581532046198845,0.06766623258590698,-0.046332575380802155,0.015421641990542412,0.057649046182632446,0.0047595142386853695,-0.030896831303834915,-0.08490540087223053,0.07483262568712234,-0.03748977556824684,0.0484536737203598,-0.05500280112028122,0.0640517994761467,0.06058527156710625,-0.01335887610912323,0.00402481947094202,-0.015488052740693092,0.14701779186725616,-0.059921994805336,-0.00783993024379015,-0.04712788388133049,-0.001132698729634285,0.065686896443367,-0.03488403186202049,-0.10154355317354202,0.007457905448973179,0.0035300850868225098,-0.08742029964923859,-0.16933973133563995,-0.06934622675180435,-0.01387803629040718,0.003721964079886675,0.021168924868106842,0.10292716324329376,-0.02150469645857811,-0.007027395535260439,0.004090441856533289,-0.011433829553425312,0.02588007226586342,0.049216486513614655,-0.021329937502741814,-0.028878426179289818,0.016677208244800568,0.08025893568992615,0.036284513771533966,0.004086697939783335,0.01705261506140232,-0.053207457065582275,0.004954766947776079,-0.033943451941013336,-0.06672058999538422,0.061907846480607986,0.04538486897945404,-0.023616788908839226,0.014589691534638405,0.06689444184303284,0.05123503506183624,-0.06140900403261185,-0.0407354012131691,-0.006416097283363342,0.0703563317656517,-0.0033024633303284645,-0.10296083241701126,0.024492938071489334,0.08005213737487793,-0.0486806258559227,0.0009238243801519275,0.0071044485084712505,-0.03672755882143974,0.03546208515763283,-0.02158401906490326,0.05488903447985649,-0.09746833145618439,-0.0328870452940464,0.02365192025899887,-0.002899202983826399,-0.009788066148757935,0.00015800536493770778,-0.006033535581082106,-0.04448335990309715,-0.016286233440041542,0.030760707333683968,0.0598791241645813,-0.05816690996289253,0.05804017186164856,-0.090599924325943,-0.055879659950733185,-0.07597754150629044,-0.06018882617354393,-0.03315022960305214,-0.00963603612035513,-2.293378820183989e-8,-0.03686973452568054,-0.0008653352269902825,-0.009682091884315014,-0.016056643798947334,0.01100427657365799,0.02726593241095543,-0.017175128683447838,0.031683459877967834,0.0029181481804698706,0.04138346016407013,0.09745550900697708,0.0287587009370327,-0.007249872665852308,0.010585528798401356,0.08475517481565475,0.09878082573413849,0.036571599543094635,-0.028204811736941338,-0.06009003892540932,0.01451915968209505,-0.08467354625463486,-0.06339407712221146,0.006789988838136196,-0.020648928359150887,0.009614760987460613,0.008102741092443466,-0.0002461857511661947,0.13500627875328064,0.0029667674098163843,0.05357321351766586,0.03682056814432144,-0.056579314172267914,-0.11417403817176819,-0.014425721950829029,-0.0594758577644825,0.04107452183961868,0.015971561893820763,-0.014557295478880405,0.0785573199391365,-0.03667173534631729,-0.02351502515375614,-0.013464627787470818,0.031218215823173523,0.10797114670276642,-0.01474117860198021,0.052253805100917816,-0.06651564687490463,-0.017425259575247765,-0.09118156135082245,-0.0012974028941243887,0.03218233957886696,0.023803578689694405,-0.04580400884151459,-0.021796323359012604,0.05067272484302521,-0.061412617564201355,-0.052129801362752914,-0.022866452112793922,-0.06627114862203598,0.06521505117416382,0.013643302023410797,-0.023533374071121216,0.14942027628421783,0.01607525162398815]},{"text":"You were with her this morning all that time after—-after—-Oh, what sort of god is this I have been worshipping! (_He meets her gaze with sardonic enjoyment of her disenchantment.","book":"Down and Out in Paris and London","chapter":63,"embedding":[0.007351676933467388,0.08106060326099396,0.11085572093725204,-0.00009266873530577868,0.046378105878829956,-0.0147023294121027,0.13731397688388824,-0.04371098428964615,0.027944881469011307,-0.07757486402988434,-0.12117111682891846,-0.031971611082553864,-0.03136233612895012,-0.00022345749312080443,0.009460710920393467,0.05512554571032524,0.022486332803964615,-0.023766815662384033,-0.011082571931183338,0.0780583918094635,-0.003912313841283321,0.015930788591504097,0.061499953269958496,0.00924381148070097,0.01783045381307602,0.02126869186758995,0.05912347882986069,-0.05035756900906563,-0.007590640336275101,-0.007443613838404417,-0.05246541276574135,0.00951251108199358,-0.050544239580631256,0.003996263723820448,-0.04197196662425995,0.10272116959095001,-0.01283214520663023,0.011253963224589825,0.003040304407477379,-0.035890016704797745,-0.0019694550428539515,-0.028437664732336998,-0.04678989574313164,-0.03547925502061844,-0.08970754593610764,-0.03685125336050987,0.0004287698830012232,0.007640068884938955,-0.011974094435572624,-0.0846158117055893,-0.11998874694108963,0.05202314257621765,-0.05598979443311691,0.008190437220036983,-0.013567827641963959,0.016649024561047554,0.02977009117603302,-0.034224022179841995,0.05466732382774353,0.028104465454816818,-0.05247504636645317,0.10500570386648178,0.037555593997240067,0.0747872069478035,-0.028001826256513596,-0.022953245788812637,0.033965568989515305,0.02930089272558689,-0.04659537225961685,0.1306554228067398,0.019196948036551476,0.03699278458952904,-0.04223117232322693,-0.018685532733798027,-0.049285802990198135,-0.0005544417072087526,0.036808907985687256,-0.058480750769376755,0.08303242921829224,-0.009635062888264656,-0.0404973030090332,-0.0048960549756884575,0.03840940073132515,0.0672711730003357,-0.0028173397295176983,0.003242029109969735,-0.00002779154419840779,-0.04079968482255936,0.022066205739974976,-0.05109152942895889,-0.017818467691540718,0.022011013701558113,-0.09133333712816238,-0.03322087973356247,0.049638573080301285,-0.034325096756219864,-0.10195533186197281,-0.061044346541166306,-0.03787150979042053,0.09451502561569214,0.030296429991722107,0.13198444247245789,-0.02847868949174881,0.08510702103376389,-0.0015125747304409742,0.07033252716064453,-0.08193798363208771,-0.031216232106089592,-0.054017193615436554,0.005480229388922453,0.10790176689624786,-0.051391229033470154,-0.06737310439348221,-0.07801958918571472,-0.032642170786857605,0.05911121144890785,-0.002778318477794528,-0.044733963906764984,-0.026602551341056824,0.05160260945558548,-0.03281671181321144,-0.01801144704222679,-0.00704048341140151,-0.02320134826004505,0.0008052861667238176,-0.11221327632665634,0.019452394917607307,2.6421500198066168e-33,0.048085883259773254,0.01417528372257948,-0.023814814165234566,-0.03793349862098694,0.035317160189151764,0.06798239797353745,0.014223773032426834,0.02145068719983101,-0.05295804888010025,-0.08498598635196686,-0.05256679281592369,0.04607229307293892,-0.055899571627378464,-0.020604070276021957,-0.09569817036390305,0.015957001596689224,0.07709476351737976,-0.026890479028224945,0.053323615342378616,0.04597317427396774,-0.014522062614560127,0.01413154136389494,0.018380841240286827,0.015073634684085846,-0.024234112352132797,-0.08211468905210495,0.007251719478517771,-0.0075037311762571335,0.007602804806083441,0.05724824592471123,-0.043159667402505875,0.03421976417303085,0.07834188640117645,-0.002654712414368987,0.028464602306485176,0.03500141575932503,-0.01907867006957531,-0.04668065533041954,0.0021517814602702856,-0.0713948905467987,0.003809231100603938,0.0038347849622368813,0.039434000849723816,-0.04599994793534279,-0.18700163066387177,-0.041441939771175385,0.02394404448568821,0.073636993765831,-0.03678174316883087,-0.022471709176898003,-0.014578412286937237,0.019040681421756744,-0.0013720542192459106,-0.02278287522494793,-0.03962244093418121,0.050967492163181305,0.04945411905646324,-0.04770814999938011,0.13451938331127167,0.06607689708471298,-0.05653689429163933,-0.08669868111610413,0.04614672064781189,-0.06983208656311035,0.012172059156000614,-0.09943364560604095,-0.005491621792316437,-0.010664394125342369,-0.018911030143499374,-0.027241341769695282,-0.0644836500287056,0.04593878611922264,-0.027497438713908195,0.06130385026335716,-0.053104713559150696,-0.052616510540246964,0.01412985846400261,-0.04028657451272011,0.03945821151137352,-0.03684797137975693,0.08880269527435303,0.0015517512802034616,-0.10390861332416534,0.014240410178899765,-0.030880998820066452,0.01672806218266487,0.0181611105799675,-0.12484946846961975,-0.08538505434989929,0.00652657262980938,0.016975780948996544,0.08352205157279968,0.06057463958859444,-0.09655135124921799,-0.048158787190914154,-5.496327629090896e-33,0.06500314176082611,-0.017383834347128868,-0.03311594948172569,0.04581000655889511,-0.05275825411081314,-0.08936495333909988,-0.04775922745466232,0.006273339968174696,-0.03412418067455292,-0.015355262905359268,0.06119491904973984,-0.05151234567165375,0.02006368897855282,-0.03243929520249367,-0.025623338297009468,-0.051724642515182495,0.052012037485837936,-0.017712779343128204,0.008021899498999119,-0.02027277462184429,0.00009489266813034192,0.05185326188802719,0.0780152902007103,0.01768823154270649,0.01804623194038868,0.007700582034885883,0.06380484998226166,0.008651219308376312,0.01110446359962225,-0.029079468920826912,0.04553734511137009,-0.06532509624958038,-0.056281473487615585,0.024175668135285378,0.06589377671480179,0.012251695618033409,-0.0313577800989151,-0.05779118463397026,0.029428832232952118,-0.06662461906671524,-0.004183158278465271,0.016587035730481148,0.054625969380140305,0.07708049565553665,0.03396417945623398,0.00870471354573965,0.004524972289800644,0.07367101311683655,0.07282309234142303,-0.0018196303863078356,-0.013100167736411095,-0.1243027001619339,0.002441219985485077,-0.007538164965808392,-0.0333099439740181,-0.015324883162975311,0.03823317587375641,-0.053919561207294464,0.028956010937690735,-0.039976734668016434,0.03875385597348213,-0.0053826868534088135,0.009537878446280956,0.017001861706376076,-0.03931098431348801,-0.030754467472434044,-0.004422593861818314,-0.04754757508635521,-0.03847495838999748,0.04661993309855461,-0.05929723381996155,0.043458063155412674,-0.10334302484989166,0.04932983219623566,-0.005473352037370205,0.019822953268885612,0.043286409229040146,-0.13031841814517975,0.09108299762010574,-0.06687377393245697,-0.040094971656799316,0.03353036940097809,0.04624135047197342,-0.07931258529424667,-0.033915337175130844,-0.06605490297079086,-0.006803490221500397,0.05422384664416313,-0.0020219103898853064,0.002456346293911338,-0.02806328982114792,0.018940681591629982,0.048437170684337616,-0.08691821992397308,-0.0059488010592758656,-4.1061539945985714e-8,0.00599568011239171,-0.032549839466810226,-0.01251263078302145,-0.038457177579402924,0.06226786971092224,-0.017591945827007294,0.027633529156446457,-0.09559452533721924,-0.09434349089860916,-0.07672366499900818,0.04084821790456772,0.08058749884366989,-0.0065214079804718494,0.011347671039402485,-0.022735530510544777,0.06422524154186249,0.07345972955226898,0.020537007600069046,0.014427857473492622,-0.08213331550359726,0.0080746253952384,0.06611853092908859,0.047718893736600876,-0.0867636427283287,0.013570579700171947,0.1082252785563469,-0.04435829073190689,0.01645696721971035,0.011084345169365406,0.06672852486371994,0.10465209186077118,0.05466945469379425,-0.05889362469315529,0.021008417010307312,-0.0352768711745739,-0.01969194784760475,-0.03379737213253975,0.03175194561481476,0.009925507009029388,-0.0740758627653122,0.055511318147182465,0.0353408046066761,-0.04321710765361786,0.007055583875626326,-0.03340202197432518,-0.055514201521873474,0.059362974017858505,-0.03945053368806839,0.013026469387114048,0.08376656472682953,-0.02799980156123638,0.017340822145342827,0.05128580331802368,-0.0014852494932711124,-0.04037347435951233,-0.02991354651749134,0.01183569710701704,-0.04726315662264824,-0.018047871068120003,0.00734662264585495,0.03140616789460182,-0.004025456961244345,-0.03499121963977814,-0.016944032162427902]},{"text":"Bluntschli: I have allowed you to call me a blockhead.","book":"Down and Out in Paris and London","chapter":64,"embedding":[-0.055029090493917465,0.04859750345349312,-0.007545221131294966,0.026513034477829933,0.014401325955986977,0.0013042603386566043,0.12953859567642212,0.01288575679063797,0.033832449465990067,-0.058486077934503555,-0.018014874309301376,-0.10606527328491211,-0.057258639484643936,-0.02155268006026745,0.0034750360064208508,0.010647744871675968,0.006565554067492485,0.07100718468427658,-0.0022923278156667948,0.015318862162530422,-0.015841785818338394,0.13342411816120148,-0.03498655557632446,0.07416879385709763,-0.05559878423810005,-0.017916245386004448,-0.015027875080704689,0.06385191529989243,-0.02630755864083767,-0.09784363955259323,0.04237040504813194,-0.0699014887213707,-0.005853236187249422,0.020207921043038368,-0.033384304493665695,0.01528684888035059,-0.04758786782622337,0.06724770367145538,0.006028681993484497,-0.022400934249162674,-0.05062258243560791,-0.005479350220412016,-0.006365393754094839,-0.0034703994169831276,-0.048301536589860916,-0.030683370307087898,-0.0738302692770958,0.030439864844083786,-0.0000604355227551423,-0.01822974905371666,-0.02439716085791588,-0.08317358046770096,-0.014891342259943485,0.04588902369141579,-0.015822092071175575,-0.06069927662611008,0.05590429529547691,0.10960938781499863,0.005318023264408112,0.07808744162321091,-0.08325336128473282,-0.051380034536123276,-0.0030828944873064756,-0.0022060370538383722,-0.04656146094202995,-0.0009489387739449739,-0.07152124494314194,0.02693481184542179,-0.09717017412185669,0.13587667047977448,0.02807447873055935,-0.007938031107187271,0.03049405664205551,-0.015750328078866005,0.01995859481394291,-0.034826990216970444,-0.04050213471055031,0.014151540584862232,0.008448518812656403,0.00815463624894619,-0.02260669693350792,-0.024790769442915916,-0.11131701618432999,-0.06614258140325546,-0.08825866132974625,0.02529103122651577,-0.050754111260175705,0.02035031095147133,-0.10946546494960785,-0.00610932894051075,0.013998566195368767,-0.0035233553498983383,0.03257105126976967,0.02590704895555973,0.012669887393712997,-0.06685293465852737,-0.04157278314232826,-0.048045139759778976,-0.09851188957691193,0.10056031495332718,0.004670203197747469,-0.008743570186197758,-0.08857475221157074,-0.025808056816458702,0.02823622338473797,-0.03753481060266495,-0.023190747946500778,-0.06942609697580338,-0.053465936332941055,-0.06704923510551453,0.039060916751623154,-0.014187087304890156,-0.007948457263410091,-0.024087954312562943,0.03489995747804642,-0.017542794346809387,0.08318144828081131,-0.04877033084630966,0.06355742365121841,-0.06673546880483627,0.0007795591955073178,0.004620522726327181,-0.03172995522618294,-0.03294534608721733,-0.06331343948841095,-0.06782685220241547,-0.02735559083521366,-7.270584639417486e-33,0.005320190917700529,0.039024196565151215,-0.013944084756076336,0.07871919125318527,0.055706728249788284,-0.06263765692710876,-0.05303993448615074,0.044176869094371796,-0.08047609031200409,0.12316502630710602,0.025266045704483986,-0.10034795850515366,-0.001078160130418837,0.045190922915935516,-0.011708516627550125,0.03209586441516876,0.030801141634583473,0.043931834399700165,0.008097583428025246,0.003742129309102893,-0.0345507450401783,0.057037584483623505,0.01168129127472639,0.04269440099596977,-0.0848822221159935,0.037104908376932144,-0.008269012905657291,-0.04398582875728607,0.09521516412496567,0.051614172756671906,-0.06678515672683716,0.08322248607873917,-0.007074910681694746,0.0477130226790905,0.05506303161382675,0.08199705928564072,0.0049806199967861176,-0.031225888058543205,-0.05574425309896469,-0.008481305092573166,-0.029138818383216858,0.059268202632665634,-0.08897927403450012,0.0195497777312994,-0.022856449708342552,0.02098710834980011,-0.027911726385354996,-0.034560415893793106,0.04094467684626579,-0.014320955611765385,0.00843751709908247,0.030523724853992462,0.08983667939901352,0.038887087255716324,0.05330103263258934,0.013743088580667973,-0.04073048755526543,0.0838443860411644,0.05175650119781494,-0.0032963277772068977,0.07328915596008301,0.10373520106077194,-0.08973896503448486,-0.01291978731751442,0.013756204396486282,0.0052444813773036,-0.00890322681516409,0.010286875069141388,0.008960225619375706,-0.052734505385160446,0.02138984389603138,-0.023672932758927345,-0.05316739156842232,0.09590321779251099,-0.0033620926551520824,-0.0832623839378357,-0.03768405318260193,0.055240191519260406,0.07001684606075287,-0.04131079092621803,0.08986227959394455,0.018132831901311874,-0.04399847239255905,-0.0473112054169178,0.013323435559868813,-0.01205456629395485,0.00802093930542469,0.003778345650061965,-0.006251923739910126,-0.007424620445817709,-0.10144949704408646,0.0303768590092659,0.04827183857560158,0.008505583740770817,-0.09562704712152481,3.676386500187536e-33,0.03691033273935318,-0.017873238772153854,0.008201580494642258,0.08246408402919769,0.038723934441804886,0.023664752021431923,-0.0700303465127945,0.01453639566898346,0.021472476422786713,-0.001243168138898909,0.04687301814556122,0.0001951562735484913,0.0047093904577195644,-0.009919635020196438,0.09471277892589569,-0.08871108293533325,-0.01356137078255415,-0.056247975677251816,-0.058249182999134064,-0.025743264704942703,-0.11956309527158737,-0.03322511538863182,-0.07650937139987946,0.05554495379328728,-0.07052537053823471,-0.050069089978933334,-0.023050853982567787,0.10087086260318756,0.02452671341598034,-0.038985058665275574,0.008370584808290005,0.03690942004323006,-0.11516759544610977,-0.08604443818330765,0.004590026568621397,0.01616973988711834,-0.06005355715751648,0.06882421672344208,-0.03425448760390282,-0.037445660680532455,-0.024418169632554054,0.011680515483021736,0.10516825318336487,0.052461814135313034,0.04569566622376442,-0.04987243935465813,-0.01648091711103916,0.004015869926661253,-0.024857308715581894,0.015171469189226627,-0.04142336547374725,-0.0037875529378652573,-0.030450619757175446,-0.013639776967465878,0.01284054759889841,0.013025583699345589,-0.026093708351254463,-0.012649000622332096,0.05438670516014099,-0.0214290302246809,-0.02236832119524479,-0.04501855745911598,-0.09279419481754303,0.05515017360448837,0.09966114163398743,0.033474382013082504,-0.06685132533311844,-0.08501873165369034,-0.02283080294728279,0.07119511812925339,-0.007748727686703205,0.027887126430869102,-0.02467409335076809,0.0455305352807045,-0.011272525414824486,-0.030574297532439232,-0.015848908573389053,0.06334856152534485,-0.008252241648733616,0.003182249143719673,0.03743942081928253,-0.017147323116660118,0.0000344873005815316,-0.035290636122226715,0.19710850715637207,0.02735074982047081,-0.044703539460897446,-0.04414668306708336,-0.013444488868117332,-0.03701198846101761,0.07597333937883377,-0.015065561048686504,-0.06454554945230484,-0.04483481124043465,-0.04536734148859978,-2.1736891397949876e-8,0.07300557941198349,-0.012133028358221054,-0.06617961823940277,-0.036938052624464035,-0.020105432718992233,0.03798621520400047,0.06427440047264099,-0.10274288058280945,-0.037735264748334885,-0.012685940600931644,-0.006473473273217678,0.0468270443379879,0.07430601865053177,0.046621207147836685,-0.02678629569709301,0.06796687096357346,0.04073430597782135,0.04963228479027748,-0.0034462828189134598,0.07247018814086914,0.01717575266957283,0.0478692427277565,0.0536968894302845,-0.02963958866894245,-0.02579418756067753,0.012026098556816578,0.024963464587926865,-0.0060554188676178455,0.05258318781852722,0.036607202142477036,0.04109356552362442,0.10508940368890762,-0.11434349417686462,0.010317555628716946,0.0014893867773935199,0.03416718542575836,-0.0406879223883152,0.017998578026890755,-0.003738928586244583,0.02539186179637909,0.02756929211318493,0.08827018737792969,0.02012876234948635,0.013535166159272194,-0.040646202862262726,0.0187955554574728,0.020279908552765846,0.03675210848450661,-0.06055053323507309,0.05979889631271362,0.003935077227652073,0.006030267104506493,0.04762709513306618,0.09703154116868973,0.04715746268630028,0.03548930585384369,0.04537976533174515,0.015707753598690033,-0.07339262962341309,-0.04462059587240219,0.0898885503411293,-0.01852261833846569,0.018684210255742073,0.04891248047351837]},{"text":"You’re only an amateur: you think fighting’s an amusement.","book":"Down and Out in Paris and London","chapter":64,"embedding":[0.08954369276762009,0.06914642453193665,0.0230348389595747,-0.012243319302797318,0.01398561056703329,0.02691497839987278,0.1522262543439865,-0.024431632831692696,-0.05504424870014191,0.03767412155866623,-0.014504332095384598,-0.02544386498630047,-0.04412036016583443,0.0007624120335094631,-0.06745800375938416,-0.013990620151162148,0.03950938954949379,-0.07713198661804199,0.012180009856820107,0.08992630988359451,-0.049226514995098114,0.09090357273817062,0.07908469438552856,0.03232346847653389,-0.03786773607134819,0.04878167062997818,-0.012160650454461575,0.048960182815790176,-0.04226759448647499,-0.002965939696878195,-0.00827690027654171,0.05274133011698723,0.016715887933969498,-0.018716687336564064,-0.03650766611099243,-0.01255189348012209,0.008406043983995914,0.08533219248056412,0.01370928343385458,-0.024334272369742393,-0.04000060260295868,-0.05605389550328255,0.017097730189561844,-0.025167081505060196,0.059638913720846176,0.010415656492114067,0.0049114045687019825,-0.0172475203871727,0.05566903203725815,-0.04137225076556206,0.004718263633549213,-0.021197639405727386,-0.0004715700924862176,-0.0637694001197815,0.02805226482450962,-0.08222082257270813,0.038465436547994614,-0.03129134327173233,-0.009886236861348152,0.029909681528806686,-0.03213576227426529,0.04635482281446457,-0.0024108777288347483,0.08460482954978943,-0.015845289453864098,-0.047697097063064575,0.07747601717710495,0.10142315179109573,-0.01661941409111023,0.015326627530157566,0.0062500364147126675,-0.014353548176586628,0.0324317067861557,0.06263867020606995,0.006286717485636473,-0.031239112839102745,-0.05792102962732315,0.008609653450548649,0.06739671528339386,0.020960209891200066,-0.011542527936398983,-0.026806296780705452,-0.06205373629927635,0.0051473816856741905,0.030387913808226585,-0.08224418759346008,0.01555184368044138,0.03730582445859909,0.049610503017902374,0.006038486957550049,-0.11316020786762238,-0.03764422982931137,0.024376455694437027,-0.0038686515763401985,0.03385886177420616,-0.028488866984844208,0.0026477626524865627,0.028098955750465393,-0.11477088183164597,0.084872767329216,0.030194301158189774,-0.08818057179450989,0.02527688816189766,0.016778241842985153,-0.010643398389220238,0.058390308171510696,0.01095233391970396,-0.02164524234831333,0.02786863222718239,-0.04092519357800484,-0.03271396830677986,0.0038933244068175554,-0.03236325830221176,-0.057196881622076035,0.05271490290760994,0.1447022557258606,-0.10834255069494247,-0.012754516676068306,0.034564703702926636,0.024129653349518776,0.04544801637530327,-0.02459527552127838,-0.06017708033323288,0.07606209814548492,0.03262641653418541,-0.1298753321170807,-0.004549677949398756,-8.480479097732618e-33,0.06152362376451492,-0.0001561656827107072,0.0012354381615296006,0.10803725570440292,0.034984882920980453,0.002080310136079788,0.009030153974890709,-0.12233398854732513,-0.025505099445581436,0.09106162190437317,0.034532830119132996,0.08639900386333466,0.06632742285728455,0.09084624797105789,0.003461294574663043,0.08023011684417725,-0.10941903293132782,-0.02362099476158619,0.04604536294937134,-0.008935678750276566,-0.008216463029384613,-0.048250943422317505,-0.08580070734024048,0.00022726393945049495,-0.04000882804393768,-0.011367157101631165,0.021213609725236893,0.0042237634770572186,0.06410948187112808,0.031021643429994583,-0.06045809015631676,0.02425309456884861,0.01582465134561062,-0.0770135372877121,0.006049612537026405,0.027454761788249016,0.052213408052921295,0.022945640608668327,-0.028132911771535873,0.050668783485889435,-0.06358859688043594,0.02829974703490734,-0.1119651049375534,0.025600818917155266,-0.03577904775738716,0.05963050201535225,0.003766515990719199,-0.0005818470963276923,-0.09390859305858612,0.05778009444475174,0.018340012058615685,0.0018355217762291431,0.07290720194578171,-0.012080356478691101,-0.003977341577410698,0.06704162806272507,0.055983711034059525,0.05333869531750679,-0.062293607741594315,-0.06494063884019852,-0.051091115921735764,0.06000031903386116,-0.05722212791442871,0.033626679331064224,-0.043418120592832565,0.08030422776937485,-0.05443143844604492,0.022995634004473686,0.020437967032194138,-0.047642823308706284,-0.016669880598783493,-0.004334723576903343,0.014443766325712204,-0.1090516597032547,-0.05275255814194679,-0.027169736102223396,-0.04093782603740692,-0.003051520325243473,0.07076198607683182,0.004363507963716984,0.05435454100370407,-0.04181228578090668,-0.021075021475553513,0.030399005860090256,-0.023105019703507423,-0.09733562916517258,0.05707510560750961,-0.03442787751555443,0.0340462401509285,0.039782751351594925,-0.0357556976377964,0.029139308258891106,0.03991152346134186,0.049747779965400696,-0.03223349526524544,5.37665458999551e-33,0.010113046504557133,-0.028276721015572548,-0.025185266509652138,0.08947218954563141,0.02067129872739315,0.013752156868577003,-0.00440804660320282,0.014057663269340992,-0.056422144174575806,0.024318629875779152,0.019061481580138206,0.034229863435029984,-0.11452256143093109,0.019989294931292534,0.06857919692993164,-0.12722985446453094,-0.010403011925518513,0.07429982721805573,0.010208192281425,0.013938834890723228,0.019558556377887726,0.04207930341362953,0.06313745677471161,-0.12662026286125183,0.03388410806655884,0.07363425940275192,0.004249911289662123,0.058347903192043304,-0.02373698353767395,-0.021504923701286316,0.048060715198516846,-0.04526976868510246,-0.07339029014110565,-0.026146922260522842,0.044615454971790314,0.10420158505439758,-0.0030697137117385864,-0.01419079676270485,-0.0800199881196022,-0.07397451251745224,-0.09000184386968613,0.0347721092402935,0.018374308943748474,0.044529471546411514,-0.02690696530044079,-0.061116673052310944,0.006596662569791079,-0.045273181051015854,-0.01704174280166626,0.008379963226616383,-0.023887941613793373,-0.020167140290141106,-0.07387307286262512,-0.09832637757062912,-0.03885367885231972,0.0021862133871763945,0.014913092367351055,-0.006290287710726261,-0.015551786869764328,0.004450691398233175,0.013970116153359413,0.004544257186353207,-0.0554339624941349,0.04193732514977455,-0.03481356427073479,-0.02528376504778862,-0.07831138372421265,0.037645213305950165,-0.04123087599873543,0.06395024061203003,-0.01650182157754898,0.020655864849686623,-0.07192346453666687,-0.036456648260354996,0.05413883179426193,0.05173099413514137,0.0205221064388752,0.0450018011033535,-0.029843414202332497,-0.03592757508158684,-0.010935799218714237,-0.041488755494356155,0.02641674503684044,-0.013525210320949554,-0.09281619638204575,0.09682857245206833,-0.07982473075389862,0.03145326301455498,-0.04224403575062752,0.036877959966659546,0.07055717706680298,-0.03202154487371445,-0.027471816167235374,-0.037124525755643845,0.010568533092737198,-2.5895532829167678e-8,-0.08410334587097168,0.03958380967378616,-0.018499627709388733,0.009026805870234966,0.00015689388965256512,0.02304401807487011,0.027879061177372932,-0.06719919294118881,0.01526438258588314,-0.03264937177300453,0.14052413403987885,-0.006456996779888868,0.06074932962656021,0.022976240143179893,0.042823776602745056,0.03020036779344082,-0.013588514178991318,-0.09563339501619339,-0.09862207621335983,0.01757928915321827,0.08015725016593933,0.02398229017853737,-0.01455610804259777,-0.0352669395506382,-0.10705846548080444,0.055205244570970535,-0.005954146385192871,-0.013925195671617985,-0.011669677682220936,0.07004299014806747,-0.021399179473519325,0.043735481798648834,-0.10061673074960709,0.020501574501395226,0.038678258657455444,-0.058146122843027115,0.04747961089015007,-0.0427299328148365,-0.05759673938155174,-0.06971856206655502,-0.13267874717712402,-0.04530202969908714,0.08518572896718979,0.02919057011604309,0.009510508738458157,0.016132572665810585,-0.0013177271466702223,-0.07047105580568314,0.010674956254661083,0.000657829747069627,0.07927699387073517,-0.03833940625190735,0.03818732872605324,0.026178283616900444,0.035195156931877136,0.06864068657159805,-0.012615559622645378,0.0418478325009346,-0.0618109256029129,0.006437522359192371,0.0332254022359848,-0.046591781079769135,-0.06265772134065628,-0.017181238159537315]},{"text":"But now that you’ve found that life isn’t a farce, but something quite sensible and serious, what further obstacle is there to your happiness?","book":"Down and Out in Paris and London","chapter":64,"embedding":[0.0639982596039772,0.017261473461985588,-0.04383401572704315,0.04718540608882904,0.11830133199691772,0.006673615425825119,-0.028204796835780144,-0.01638929359614849,0.008050767704844475,-0.033715859055519104,0.029626447707414627,-0.08148618042469025,-0.018848484382033348,0.00047527917195111513,0.04964539781212807,-0.08040739595890045,-0.019141536206007004,-0.046641815453767776,-0.021849362179636955,0.0932503417134285,-0.017224116250872612,0.07616610080003738,0.006207754835486412,0.023891666904091835,-0.06893778592348099,0.04193659871816635,0.07850480079650879,0.010401645675301552,-0.031696539372205734,-0.041670989245176315,0.03882024064660072,0.03739623352885246,-0.00797264277935028,0.014368345960974693,0.014816231094300747,0.009974071756005287,0.019158940762281418,-0.04964756965637207,0.0823577418923378,-0.05950120836496353,0.0030890153720974922,0.001075432519428432,0.0341813750565052,-0.008128533139824867,0.06831818073987961,-0.06334987282752991,0.052462026476860046,-0.04866443946957588,0.008473250083625317,-0.04298727959394455,-0.05689712241292,-0.014769421890377998,-0.1347181797027588,0.0266200453042984,-0.024351146072149277,0.025116847828030586,-0.02774411253631115,0.014360706321895123,-0.010020289570093155,0.0648222491145134,0.04884485900402069,-0.012676458805799484,0.06328193098306656,-0.00408686650916934,0.03670094534754753,-0.04056214168667793,-0.04959859326481819,0.016765883192420006,-0.07530921697616577,0.058546870946884155,-0.0884770080447197,-0.04485824704170227,-0.064876027405262,0.003244375344365835,0.027286911383271217,-0.04462675750255585,0.03754344582557678,-0.0283719003200531,0.08606158196926117,-0.015751834958791733,0.02816099300980568,0.0003628103295341134,-0.053067371249198914,0.03709939122200012,-0.056078746914863586,-0.028924856334924698,0.006334709003567696,0.017943009734153748,0.05162319913506508,0.0037462867330759764,-0.11837372928857803,-0.07544879615306854,-0.018136262893676758,-0.0069758896715939045,0.035377949476242065,-0.015143008902668953,-0.06122617796063423,-0.01719071716070175,-0.02426469326019287,-0.0003208598936907947,-0.010675896890461445,-0.0026560158003121614,-0.01930229552090168,0.057992029935121536,0.05889178812503815,0.05850483849644661,-0.12408386915922165,0.0005896775983273983,0.02333827316761017,-0.05120544508099556,-0.027715153992176056,0.023685477674007416,0.10084796696901321,-0.03400564566254616,0.020099995657801628,-0.021030697971582413,-0.006375742144882679,0.00023475734633393586,0.01923223026096821,0.10259542614221573,-0.06800691038370132,0.03900114819407463,0.04831352457404137,0.053776614367961884,-0.029678065329790115,-0.06697998195886612,-0.05255667120218277,-2.3757183477209912e-33,0.013750031590461731,0.007062142249196768,0.06527673453092575,0.013710319064557552,-0.028758350759744644,0.02483721636235714,-0.020895864814519882,-0.049006570130586624,0.02382662147283554,0.06044876202940941,-0.008438601158559322,0.07578101754188538,-0.0334111712872982,-0.0006205347599461675,-0.03398333117365837,-0.0400005467236042,-0.1076633483171463,0.02161162905395031,0.014932974241673946,0.023039674386382103,-0.07170147448778152,-0.06722670048475266,0.03046911396086216,0.003626015270128846,0.04130520671606064,-0.007949193008244038,0.09015186131000519,-0.11978372931480408,0.04894595965743065,-0.02713104337453842,-0.06123849377036095,0.08174565434455872,0.06709614396095276,-0.03880017623305321,-0.030964503064751625,0.05157634615898132,-0.10179625451564789,-0.08228247612714767,-0.0027618014719337225,-0.011718755587935448,-0.0874999612569809,0.011249788105487823,0.01507847011089325,0.010400300845503807,0.026283003389835358,0.04693179205060005,0.09634426981210709,0.04568267613649368,-0.13551954925060272,0.013303314335644245,-0.06858207285404205,-0.01143201906234026,0.04492364078760147,-0.05516180768609047,-0.08065326511859894,-0.12090621888637543,-0.015104436315596104,0.03671585023403168,-0.002446300582960248,-0.021288223564624786,-0.07250310480594635,-0.012534377165138721,-0.0091224554926157,-0.012145348824560642,0.05731016770005226,0.035789381712675095,-0.03597728908061981,-0.06482832878828049,0.022494472563266754,0.03288043662905693,0.013756556436419487,0.01562553085386753,0.03724341094493866,-0.0347539559006691,-0.005112501326948404,-0.02103094384074211,-0.013901198282837868,-0.09470444172620773,-0.02422831393778324,-0.08675859868526459,0.018712101504206657,0.03322041034698486,-0.0510345920920372,0.02578522078692913,0.09750258922576904,-0.015921566635370255,0.006669553462415934,-0.0829576700925827,-0.07210628688335419,0.019187482073903084,0.03990853950381279,-0.015602819621562958,0.04907185584306717,-0.030635492876172066,0.029239822179079056,1.5005360794044162e-33,0.08373428136110306,-0.09595810621976852,-0.0788126289844513,0.0566352903842926,0.05700021609663963,-0.0021206210367381573,0.02056545577943325,-0.00607078243046999,-0.043964728713035583,0.038876429200172424,0.014085633680224419,0.004936977755278349,0.15365803241729736,-0.017404962331056595,-0.07945869117975235,-0.025568805634975433,-0.029169315472245216,0.05966789275407791,-0.005225549917668104,0.0391351692378521,0.012398616410791874,0.058929819613695145,-0.0212397500872612,0.048665545880794525,-0.01867021434009075,0.0964927226305008,0.03600447624921799,-0.04366910830140114,-0.09804419428110123,-0.016403811052441597,-0.001132634817622602,0.05263451114296913,-0.054014548659324646,-0.14133641123771667,0.12389795482158661,-0.006070034112781286,-0.003191523253917694,-0.014106464572250843,-0.05957389622926712,-0.04659659042954445,-0.04313734173774719,-0.010017544031143188,0.03758087009191513,0.06695391237735748,0.00923923123627901,0.020146368071436882,0.04361946880817413,-0.0015264949761331081,0.009847048670053482,0.022051705047488213,0.018693963065743446,-0.03598300740122795,0.04155391827225685,0.017635829746723175,0.061202775686979294,0.024508269503712654,-0.056107811629772186,-0.06006704643368721,0.08733009546995163,0.018619216978549957,-0.05056606978178024,0.0724305585026741,-0.012898189015686512,0.009911802597343922,-0.006580982822924852,0.0168837308883667,-0.036314260214567184,0.06207311525940895,-0.02529795840382576,-0.019794046878814697,0.005165039096027613,-0.0360448881983757,0.03897836059331894,0.003715828061103821,-0.03340868651866913,0.09243551641702652,0.06199389323592186,-0.0015085998456925154,-0.006387127563357353,0.05854758620262146,-0.020196080207824707,-0.05406489595770836,0.061107706278562546,0.005349378567188978,0.006528517231345177,-0.06903388351202011,-0.09844061732292175,-0.017558179795742035,0.1097036600112915,-0.030633913353085518,-0.04056034982204437,0.0009216614416800439,-0.07072734832763672,-0.06299658119678497,0.046280451118946075,-2.7117502909845825e-8,0.021503843367099762,-0.10423780232667923,-0.08582185953855515,-0.04738761484622955,0.03853369504213333,0.06285396963357925,0.12473276257514954,0.03974022716283798,-0.03168437257409096,-0.01783985272049904,0.023836389183998108,-0.018771307542920113,0.07966015487909317,0.07065069675445557,0.0640302523970604,-0.00041608684114180505,0.05442681536078453,-0.03445673733949661,0.005504665896296501,0.01838403195142746,0.019816026091575623,-0.02169262431561947,0.03232809156179428,-0.04577474668622017,-0.08435152471065521,0.02504301443696022,0.028988882899284363,0.0006170227425172925,-0.037464190274477005,0.051568880677223206,0.07627599686384201,-0.0502704419195652,-0.04931130260229111,0.08356686681509018,-0.01475092489272356,0.022756893187761307,0.004243855364620686,0.051018789410591125,-0.04607025161385536,0.05531835928559303,-0.008700154721736908,0.06965028494596481,0.00895897950977087,0.04936663433909416,-0.06463292241096497,-0.04618553817272186,0.030839689075946808,0.026974108070135117,-0.032068558037281036,-0.010205763392150402,0.03195821866393089,0.023140374571084976,0.05800967290997505,0.014973888173699379,-0.004571560770273209,0.02419663779437542,-0.04926896095275879,0.0984218642115593,-0.11097606271505356,0.07531473785638809,0.15099014341831207,-0.026366662234067917,-0.003329323139041662,0.01007019355893135]},{"text":"A shocking sacrifice, isn’t it?","book":"Down and Out in Paris and London","chapter":64,"embedding":[0.014386313036084175,0.07448915392160416,-0.02449195459485054,-0.017711341381072998,0.0002524116716813296,-0.010324545204639435,0.09126391261816025,-0.00045201359898783267,0.03154109790921211,0.01805947721004486,0.008735730312764645,-0.005951495375484228,-0.01362984161823988,0.07520947605371475,-0.07192584872245789,-0.08853351324796677,-0.01869163289666176,-0.061886779963970184,-0.05165236443281174,0.058965619653463364,0.027916425839066505,0.07223918288946152,0.02497318759560585,-0.02667357213795185,0.09168214350938797,-0.04409591108560562,0.04061540588736534,-0.004224021919071674,-0.07242205739021301,-0.03073476441204548,0.03291965648531914,-0.10017193108797073,-0.009439879097044468,-0.021729851141572,-0.0067079681903123856,0.09931378811597824,0.044169098138809204,-0.005078967660665512,0.021517299115657806,0.0024629354011267424,0.04197225347161293,-0.056359559297561646,-0.020652860403060913,0.0616249181330204,0.030019817873835564,0.04117918014526367,-0.07809855788946152,-0.019220741465687752,-0.03987450525164604,-0.08932732045650482,0.062172625213861465,0.023097727447748184,0.006468421313911676,-0.023813841864466667,0.010531647130846977,-0.011447633616626263,-0.025592343881726265,-0.034565407782793045,-0.010907002724707127,-0.06510433554649353,0.00016869672981556505,0.07391459494829178,0.031584106385707855,0.058620672672986984,0.0191731546074152,-0.06780758500099182,0.07798577100038528,-0.119468554854393,-0.015430881641805172,0.05261712893843651,0.03903569281101227,-0.003106549382209778,0.11223633587360382,-0.07412300258874893,-0.09256008267402649,0.006089260336011648,0.003351384773850441,-0.07341782748699188,-0.012977572157979012,-0.0008064602152444422,0.09066341072320938,-0.1261393278837204,0.021393120288848877,0.043703701347112656,0.0017522801645100117,0.014836031943559647,-0.0024218671023845673,-0.05052325874567032,0.04779188334941864,0.06632021069526672,0.021645670756697655,-0.03100179135799408,0.03168264031410217,0.05881171673536301,-0.036339640617370605,0.005279416684061289,-0.018883109092712402,-0.01765378564596176,-0.10381480306386948,0.03534257411956787,-0.0262066051363945,0.027254542335867882,0.013205164112150669,-0.0912925973534584,0.022512076422572136,-0.02556118369102478,-0.12015845626592636,0.017369819805026054,-0.03817656636238098,-0.014225845225155354,-0.0027657344471663237,0.06422518193721771,-0.04168710857629776,0.019273627549409866,-0.009879429824650288,0.10898292809724808,-0.05930166319012642,-0.06887385249137878,-0.04004991799592972,0.1173178181052208,0.08863721042871475,0.04439805820584297,-0.00869755633175373,0.06205606088042259,-0.026075147092342377,0.0006833338993601501,-0.026741527020931244,-7.994625242018689e-33,0.10174625366926193,-0.07624557614326477,-0.030321946367621422,-0.06307096034288406,-0.06046680733561516,-0.057764142751693726,-0.05232524126768112,0.030143067240715027,-0.03729291632771492,-0.015145627781748772,-0.01855781115591526,-0.04412522166967392,0.05472160130739212,-0.020197127014398575,-0.0743078738451004,-0.002262105466797948,-0.01865197718143463,-0.01243002712726593,0.07200003415346146,-0.05525420606136322,-0.04650292545557022,0.08300616592168808,0.027040649205446243,-0.07505431771278381,-0.05662374943494797,-0.042521052062511444,-0.039666976779699326,0.04698945954442024,0.030772283673286438,0.005719066597521305,-0.08297474682331085,-0.015618549659848213,0.07263822108507156,-0.018295686691999435,0.011751548387110233,-0.028653139248490334,0.011882232502102852,-0.024661071598529816,-0.0698724240064621,0.03265915811061859,-0.005485471338033676,0.06549250334501266,-0.026752328500151634,0.019181475043296814,0.01940907910466194,-0.00450779078528285,0.03813214600086212,-0.06225093454122543,-0.06949711591005325,0.03281627595424652,0.06781166046857834,-0.01384104136377573,0.06821847707033157,0.018702086061239243,0.012569457292556763,0.05192476511001587,0.04131203517317772,0.04770941659808159,-0.008641575463116169,-0.041699010878801346,0.044222280383110046,-0.08335352689027786,-0.05589306727051735,0.03195168450474739,-0.08798312395811081,0.03524249419569969,0.07422509789466858,0.016376430168747902,-0.07259218394756317,0.07138721644878387,-0.06573853641748428,-0.02066190540790558,-0.036399487406015396,-0.0354853980243206,-0.03268463537096977,0.03759755939245224,0.0725545808672905,0.02461129054427147,0.018097631633281708,-0.04894695803523064,0.024967724457383156,0.02725152298808098,0.06260596960783005,0.03795967623591423,0.028447989374399185,0.027314212173223495,-0.004053695593029261,-0.02594571001827717,-0.041492100805044174,-0.027361826971173286,0.011691674590110779,0.054567206650972366,-0.05521305650472641,-0.1775711327791214,0.03481335937976837,5.578402481375231e-33,-0.03853803873062134,-0.021626614034175873,-0.03486325964331627,0.10270234942436218,0.07614557445049286,-0.04384522885084152,-0.03154219314455986,-0.01734241098165512,-0.07371042668819427,0.012024562805891037,-0.05883806198835373,-0.0015957829309627414,0.02578270621597767,0.0981232300400734,0.06477519124746323,-0.05982594937086105,0.013503450900316238,0.07494104653596878,-0.0020051782485097647,-0.05329234153032303,-0.019030556082725525,0.0477064773440361,0.07789923250675201,-0.10373587161302567,-0.0790080651640892,0.06812085956335068,-0.06122817471623421,0.019455822184681892,0.015724478289484978,-0.04237159341573715,0.007281232625246048,0.002894470700994134,0.00014758175530005246,0.037406183779239655,-0.028977522626519203,0.10840427130460739,0.033917080610990524,0.083958201110363,-0.05338798835873604,0.016091248020529747,-0.0469980388879776,0.009155858308076859,-0.05322383716702461,0.10834742337465286,-0.044853948056697845,-0.035258837044239044,0.09819293767213821,0.03320886194705963,0.1090613454580307,-0.010192561894655228,-0.0806390792131424,0.01730598695576191,-0.02527572028338909,0.07523137331008911,-0.032487716525793076,-0.017795924097299576,-0.02529394067823887,-0.06588825583457947,0.06186680123209953,-0.03963293507695198,0.009204343892633915,0.012441623955965042,-0.005657857749611139,0.026309583336114883,0.03488634154200554,0.06970226764678955,-0.001337020774371922,-0.048298005014657974,-0.06113210693001747,0.1156117171049118,0.00010432958515593782,-0.0028082244098186493,-0.15755142271518707,0.013631178997457027,-0.05915330350399017,0.04602964222431183,-0.059481263160705566,0.03511476144194603,-0.017787430435419083,0.03858013451099396,0.03437892347574234,-0.04514575004577637,0.013683176599442959,0.029140077531337738,0.05424836650490761,-0.055300112813711166,0.03796384856104851,0.03463099151849747,-0.01640586368739605,0.02306421473622322,-0.013722918927669525,0.004899521358311176,0.05878296494483948,0.014796596951782703,-0.0007151554455049336,-2.0114404364335314e-8,0.004010660573840141,0.046910446137189865,-0.13125313818454742,0.006009422242641449,-0.0018080229638144374,-0.0042943647131323814,0.10680527985095978,-0.1035916656255722,-0.009302944876253605,0.062205005437135696,-0.011211148463189602,0.033043939620256424,0.07567661255598068,0.019312461838126183,0.03272765502333641,-0.0073179202154278755,-0.04648272693157196,-0.09393440186977386,-0.06779391318559647,-0.01643044501543045,-0.021121418103575706,0.018702317029237747,-0.0066856276243925095,-0.05222145467996597,0.010719222947955132,0.04267161339521408,-0.012317176908254623,0.10531345754861832,-0.010535676963627338,-0.003292967565357685,0.03767360746860504,-0.018962673842906952,-0.004605382680892944,0.012376071885228157,-0.044378336519002914,0.03894900158047676,0.017038676887750626,-0.03314059227705002,0.01822453923523426,0.010191753506660461,0.006103232502937317,-0.043683476746082306,0.053322795778512955,0.11211330443620682,0.01856037974357605,0.011981982737779617,0.007087924517691135,0.0013944183010607958,0.020096614956855774,-0.04339330270886421,-0.00837575364857912,-0.03715754300355911,-0.025198718532919884,0.010494774207472801,0.07098650187253952,-0.0355609729886055,0.02747904509305954,0.045461349189281464,0.008397228084504604,0.011363993398845196,0.10245858877897263,-0.06485660374164581,0.04019363224506378,-0.01895228400826454]},{"text":"Do you realize what he has done, Captain Bluntschli?","book":"Down and Out in Paris and London","chapter":65,"embedding":[0.06755632162094116,-0.015700416639447212,-0.0014071805635467172,0.008985454216599464,0.005383115727454424,0.025404391810297966,0.1466437429189682,0.05568012222647667,-0.03275853395462036,0.028759442269802094,0.007129315752536058,-0.03310463950037956,-0.015259502455592155,0.048923954367637634,0.033340923488140106,0.022066766396164894,-0.08803434669971466,0.026379074901342392,0.0010015363804996014,0.01589374989271164,-0.03157242760062218,0.08958626538515091,0.003916749730706215,0.014953183941543102,-0.00952280592173338,-0.026150643825531006,0.041946835815906525,0.06308218836784363,-0.02702605351805687,-0.059695880860090256,0.07219748198986053,-0.006992317270487547,0.03326969966292381,0.025678839534521103,0.00882695708423853,0.027790024876594543,0.03232710435986519,0.10260193049907684,0.021759601309895515,-0.06447438895702362,-0.0028637179639190435,-0.03710164502263069,0.031165137887001038,0.04178350791335106,-0.03239875286817551,-0.08945030719041824,-0.019452983513474464,-0.08361253887414932,0.013555558398365974,-0.05798007547855377,-0.01011967845261097,-0.045762091875076294,0.06392037868499756,-0.07594422250986099,-0.02520090527832508,-0.024192389100790024,0.03245579078793526,0.07296130061149597,0.034827347844839096,-0.04425838217139244,0.015049650333821774,0.0025927189271897078,-0.03160493075847626,0.01974721997976303,0.01057195570319891,0.0075031183660030365,-0.011740793474018574,-0.06208500266075134,-0.0014212650712579489,0.12222820520401001,0.03807883337140083,0.03311135247349739,0.06350098550319672,-0.06761901825666428,-0.061616960912942886,-0.03274979069828987,0.016571050509810448,0.06843050569295883,-0.011636578477919102,0.04381711408495903,0.03049341030418873,-0.008698470890522003,-0.09055285900831223,0.037638019770383835,-0.0014938517706468701,-0.040830060839653015,0.01891564205288887,-0.034629032015800476,-0.09655092656612396,0.0016253868816420436,0.011260748840868473,0.05110161378979683,-0.06493844836950302,-0.04522788152098656,-0.05149894580245018,-0.038201071321964264,-0.029413174837827682,0.056759390980005264,-0.077303946018219,0.057526394724845886,0.0018888585036620498,0.0315934494137764,-0.002205053810030222,-0.11620264500379562,0.008465572260320187,0.023890722543001175,0.06892229616641998,0.02764500305056572,-0.0238818172365427,-0.10023152828216553,-0.05922684445977211,-0.028527757152915,-0.01574866846203804,-0.01732770726084709,0.0525350458920002,0.07663321495056152,0.021048199385404587,0.00900818221271038,-0.05657362565398216,-0.037560150027275085,0.03882468491792679,0.01762988232076168,-0.0023998429533094168,0.09704060852527618,-0.06357011198997498,-0.08394955098628998,0.018188193440437317,-4.0297125513958684e-33,0.010755954310297966,-0.032103635370731354,-0.04277176782488823,0.0448123924434185,0.06026226654648781,0.00047037744661793113,-0.050473809242248535,-0.019136687740683556,0.00039382209070026875,0.05906524136662483,0.03133305907249451,0.014833705499768257,-0.02733595296740532,0.04992401972413063,-0.09065566211938858,0.1092720627784729,-0.009919851087033749,0.033352140337228775,-0.01066430564969778,-0.02111033722758293,0.006761934142559767,0.07774405926465988,0.03538214787840843,0.04705896973609924,0.01882394589483738,0.05653401464223862,0.05509089305996895,0.023069288581609726,0.036990921944379807,0.02629917860031128,-0.10023556649684906,0.16568151116371155,-0.09677715599536896,0.10197838395833969,-0.03772906959056854,0.014358030632138252,-0.022062622010707855,-0.01892159692943096,-0.025455577298998833,0.027706142514944077,-0.004082784987986088,0.0519871823489666,-0.1192479208111763,0.008622613735496998,-0.14259648323059082,-0.07915156334638596,-0.04489920288324356,0.0041176266968250275,0.1542537361383438,0.00423336960375309,0.05497485026717186,-0.015561781823635101,0.010888883844017982,-0.03305331990122795,0.00902195181697607,0.061941418796777725,-0.021180739626288414,-0.011838076636195183,0.15360888838768005,0.05319587141275406,-0.012898320332169533,0.014251491986215115,-0.04043286293745041,0.023216133937239647,0.041799407452344894,0.03540177270770073,-0.0291640292853117,-0.015826648101210594,-0.03302369639277458,-0.0032329666428267956,-0.02770429663360119,-0.04173114523291588,-0.1020844355225563,-0.11561169475317001,-0.023634448647499084,-0.06600161641836166,-0.020555170252919197,0.019177058711647987,0.06952932476997375,0.007740409579128027,0.03029903955757618,0.007551335729658604,0.004965243395417929,-0.07956594228744507,-0.017785409465432167,-0.02878567948937416,0.07440722733736038,0.014803152531385422,0.025494465604424477,0.0270384568721056,-0.08682538568973541,-0.038264140486717224,0.022974200546741486,-0.03888033702969551,-0.09962768107652664,1.4975033039792947e-33,-0.013709536753594875,0.006778537295758724,0.02641976624727249,0.07225017249584198,-0.011334266513586044,0.02509431354701519,-0.10194265097379684,-0.01954488828778267,-0.04115193337202072,-0.019924858585000038,0.06065819784998894,0.020213274285197258,-0.06941055506467819,-0.022779012098908424,0.012146268971264362,-0.05712314695119858,0.0539739616215229,-0.01239846646785736,-0.05080689489841461,-0.048192255198955536,-0.017966849729418755,-0.04729436710476875,0.03626815974712372,0.002739341463893652,-0.10152548551559448,-0.03205925598740578,0.029338188469409943,0.10922728478908539,-0.07748083025217056,-0.08380987495183945,0.011094199493527412,0.0496990904211998,-0.023874254897236824,-0.08986759930849075,-0.022642726078629494,0.07270576059818268,-0.032731737941503525,0.078331857919693,0.015803935006260872,0.02645888738334179,0.0026073602493852377,-0.033092740923166275,-0.050811734050512314,0.03401569277048111,0.024122659116983414,-0.13113215565681458,-0.0009610519628040493,0.016548458486795425,-0.03794391453266144,-0.0009350511245429516,-0.026508888229727745,0.026650603860616684,-0.03818463906645775,-0.019374312832951546,0.021339505910873413,0.07717124372720718,-0.03924774006009102,-0.04666442424058914,0.019424758851528168,-0.03162308782339096,-0.06165400147438049,-0.008876834996044636,-0.035795923322439194,0.005812425632029772,0.04633919522166252,0.008885528892278671,-0.006082658190280199,-0.03217241168022156,-0.030551156029105186,0.03144589811563492,-0.008680712431669235,-0.09248103946447372,-0.05927064269781113,0.014973231591284275,0.004375626798719168,-0.05841831490397453,-0.08177114278078079,0.02393549308180809,-0.033984918147325516,-0.04730894789099693,0.06397082656621933,-0.0728413462638855,0.03116866946220398,-0.047845903784036636,0.018286889418959618,0.04669099673628807,-0.027059271931648254,-0.038196589797735214,0.07809100300073624,0.04228087142109871,0.011111379601061344,0.019623903557658195,-0.07798899710178375,-0.019638963043689728,0.04125060513615608,-1.9443525900442182e-8,-0.05112748593091965,0.06030021235346794,-0.0764225646853447,0.040738075971603394,0.009054635651409626,0.03949775919318199,-0.050770364701747894,-0.019684044644236565,-0.013741031289100647,0.03016059845685959,0.06126362830400467,0.009535755962133408,0.036291755735874176,0.026817459613084793,0.022228945046663284,0.03796491399407387,0.08956586569547653,-0.009713266976177692,-0.020864583551883698,0.11880208551883698,0.04423641040921211,0.03455573320388794,0.06937709450721741,0.018998393788933754,0.021171312779188156,0.013828705996274948,-0.04500345140695572,0.01765262894332409,-0.015404485166072845,0.06752538681030273,0.03389860317111015,0.058420296758413315,-0.08301706612110138,-0.008395087905228138,0.027740102261304855,-0.016289567574858665,0.09567055851221085,-0.005589776206761599,-0.020616775378584862,-0.020789150148630142,-0.008331092074513435,0.11938629299402237,-0.02850561961531639,0.0262442659586668,-0.05331593379378319,-0.00336654600687325,-0.04495559260249138,0.06766242533922195,-0.0899166613817215,0.02201753668487072,-0.03938526660203934,0.05178928002715111,-0.00412300880998373,0.019996747374534607,0.09249275922775269,-0.004708562977612019,-0.015916138887405396,0.07660569995641708,-0.08165887743234634,-0.017298027873039246,0.03568436950445175,-0.13760587573051453,0.05252278223633766,-0.031670331954956055]},{"text":"That is quite enough for us. (_She turns her back on him and sweeps majestically back to the window._) BLUNTSCHLI. (_quietly, as Sergius, in an agony of mortification, sinks on the ottoman, clutching his averted head between his fists_).","book":"Down and Out in Paris and London","chapter":65,"embedding":[0.11292026937007904,0.028219496831297874,0.023438015952706337,0.06285262107849121,-0.028391098603606224,0.015626033768057823,0.08179512619972229,-0.0763007327914238,0.014499462209641933,-0.0610516294836998,0.002191658364608884,-0.06314392387866974,-0.0875982791185379,0.025032958015799522,0.018787922337651253,0.004093212075531483,0.050166476517915726,0.09321226924657822,-0.04744076728820801,0.10936437547206879,0.05479215830564499,0.004505940247327089,0.09630581736564636,-0.0018483458552509546,-0.03099871054291725,-0.0514119528234005,0.05166478082537651,-0.011768471449613571,-0.015121253207325935,-0.025388048961758614,-0.012765372171998024,-0.10671015083789825,-0.06275393068790436,-0.05740492418408394,-0.009092352353036404,0.04231278970837593,-0.021804578602313995,-0.012698667123913765,0.0803520530462265,-0.05494074523448944,-0.0388147197663784,-0.023710111156105995,-0.026209883391857147,0.06494233012199402,-0.07565506547689438,-0.07605373114347458,-0.04062963277101517,0.0638696476817131,0.031613789498806,-0.014716798439621925,-0.13368859887123108,-0.02882494032382965,-0.0892704650759697,0.019671427085995674,-0.02905876189470291,-0.05860039219260216,0.08879167586565018,-0.02020452730357647,0.021269541233778,0.004250635392963886,-0.071886345744133,0.061830244958400726,0.041233550757169724,0.10008686780929565,-0.06976214796304703,-0.05562867969274521,0.02852853201329708,-0.05095604062080383,-0.036481697112321854,0.18531283736228943,-0.005214556585997343,-0.010191167704761028,-0.022976741194725037,-0.042785465717315674,-0.0984892025589943,-0.03787059709429741,-0.012303284369409084,-0.08065003156661987,0.03623994067311287,0.012222640216350555,0.016005374491214752,-0.021636972203850746,-0.04328026622533798,0.04955793544650078,-0.03658583387732506,-0.02362050861120224,-0.005050127860158682,-0.00020441864035092294,-0.028310012072324753,-0.00745150214061141,-0.03831980377435684,-0.08278818428516388,0.014100417494773865,0.019294239580631256,0.03982159122824669,0.05568375438451767,-0.05705912783741951,0.0039662946946918964,-0.06260792911052704,0.021325578913092613,-0.01445203647017479,0.06218903511762619,0.017541689798235893,0.05131393298506737,-0.03370605409145355,0.06687166541814804,-0.06339187920093536,-0.13111095130443573,-0.06691180914640427,-0.07193166762590408,-0.010225550271570683,-0.11700718104839325,-0.022090336307883263,-0.009427900426089764,0.042304057627916336,0.0085047148168087,0.02551594376564026,-0.088950514793396,-0.05374692380428314,0.03972705826163292,0.05493812635540962,0.046382561326026917,0.031376153230667114,0.006968358531594276,0.02291140891611576,-0.0019088764674961567,-0.03420885279774666,6.4441247752325715e-34,0.06706037372350693,0.02500917576253414,0.010313520208001137,-0.04389490559697151,0.0278437789529562,-0.03987262398004532,-0.027986109256744385,0.08399085700511932,-0.031030887737870216,0.0732441395521164,-0.11142493784427643,-0.08769258856773376,-0.041245825588703156,-0.03715742751955986,-0.0695045217871666,0.03633714094758034,0.0675201267004013,-0.017289839684963226,0.007031197194010019,0.00401744619011879,-0.00012605266238097101,0.07712997496128082,-0.013212633319199085,-0.005168392788618803,-0.05075995996594429,-0.054491013288497925,0.0011312417918816209,0.023660799488425255,-0.009336045011878014,0.05104938894510269,-0.04131137579679489,0.027881646528840065,-0.01828945428133011,-0.009548960253596306,-0.016573701053857803,0.03834930807352066,-0.0627814456820488,-0.01739715225994587,-0.052024491131305695,0.06291957944631577,-0.10538448393344879,0.04012375324964523,0.01432974822819233,0.043673451989889145,-0.08452554047107697,-0.061967868357896805,-0.04302601143717766,0.07155856490135193,0.021610785275697708,0.009629749692976475,-0.007851398549973965,0.01936456561088562,0.04057540372014046,0.034406352788209915,-0.030262526124715805,0.041866131126880646,0.06824038177728653,0.05561043694615364,0.06377832591533661,0.026502715423703194,0.03847658634185791,-0.08713074773550034,0.026905355975031853,-0.04907875508069992,0.05613458529114723,-0.007556550670415163,0.006584867835044861,0.019208505749702454,-0.03272092714905739,-0.03749358654022217,-0.10097405314445496,0.07538314908742905,-0.07976830005645752,0.06067986786365509,-0.054538436233997345,-0.021033646538853645,0.050305817276239395,-0.04990777000784874,0.05666767433285713,-0.07366503030061722,0.0029865338001400232,0.031540647149086,-0.041653312742710114,0.033263929188251495,-0.05296245962381363,0.014914261177182198,-0.028692007064819336,-0.04219508916139603,-0.09727141261100769,0.05947214365005493,-0.04185059294104576,0.048334795981645584,0.045350220054388046,-0.058691348880529404,-0.04950358718633652,-4.438406590579838e-33,0.051057118922472,-0.006361369974911213,-0.07055720686912537,0.10380370914936066,-0.010951514355838299,0.04976671189069748,-0.07283925265073776,0.0012807577149942517,-0.00849861279129982,-0.0022751528304070234,-0.05228074640035629,-0.043536797165870667,0.06562716513872147,-0.0010299509158357978,0.06520798802375793,-0.06164861470460892,0.025221334770321846,-0.029870739206671715,0.043699461966753006,0.06414426118135452,0.025913119316101074,0.03360890969634056,-0.027747387066483498,0.023039810359477997,0.0007141795940697193,-0.0043152510188519955,0.05268272012472153,-0.03033168613910675,-0.08676281571388245,0.04311245679855347,0.03567574545741081,-0.10025621205568314,-0.04108487814664841,-0.03519430384039879,0.04785730317234993,0.06346651166677475,-0.02174154669046402,-0.03987811505794525,-0.012293807230889797,0.06784376502037048,0.012508262880146503,0.026694368571043015,0.09779883921146393,0.12819761037826538,0.04861940070986748,-0.00994977355003357,-0.04608603194355965,0.048755306750535965,0.0125125702470541,-0.05933433026075363,-0.07702645659446716,-0.02911170944571495,-0.0658530741930008,0.033439889550209045,0.03924775496125221,0.027541164308786392,0.06018202751874924,-0.06332414597272873,0.002067482564598322,-0.02339065633714199,-0.06263739615678787,0.006806105840951204,-0.01631125807762146,0.02853522263467312,-0.015732625499367714,-0.007670062594115734,-0.08656348288059235,0.02384823188185692,-0.01518761832267046,-0.024935301393270493,0.004011156503111124,-0.030162200331687927,-0.10836194455623627,0.013455594889819622,0.044912971556186676,0.05630313232541084,0.001788538065738976,-0.05803035944700241,0.05942162126302719,-0.05052229017019272,0.04568929225206375,-0.05911000818014145,0.02493637427687645,-0.09463664144277573,0.04616258665919304,-0.04341042414307594,-0.03653526306152344,-0.010435794480144978,0.00023871789744589478,-0.001506114611402154,0.02991342730820179,0.012934306636452675,0.1121203750371933,-0.11913826316595078,-0.027147602289915085,-4.2727357651983766e-8,-0.04797060787677765,-0.0037474799901247025,0.038658853620290756,-0.03181416913866997,-0.037581369280815125,0.010483875870704651,-0.010233672335743904,-0.017616594210267067,-0.0967959463596344,-0.0008580298162996769,0.00632441183552146,0.06320589780807495,0.07177895307540894,0.04521263763308525,-0.004733116831630468,0.046682823449373245,0.03638409450650215,0.051593028008937836,-0.02843581885099411,-0.0036817456129938364,0.014861784875392914,0.008787314407527447,0.06902884691953659,-0.027564939111471176,-0.03767266124486923,0.035674095153808594,-0.033259809017181396,-0.0014970528427511454,0.006519217509776354,0.03882383555173874,0.05533653497695923,0.03194223716855049,-0.11376399546861649,-0.013891386799514294,-0.06395431607961655,0.04410524666309357,-0.03304408863186836,-0.008366088382899761,0.03298727050423622,0.09507434815168381,0.03893642872571945,-0.028091905638575554,-0.06836677342653275,-0.0024599595926702023,0.059592559933662415,0.015478039160370827,0.07933614403009415,-0.07824655622243881,-0.04527055844664574,0.007336978800594807,0.01906701922416687,-0.02842349372804165,0.016818959265947342,0.06875016540288925,0.008634156547486782,-0.023189464583992958,0.02963292971253395,0.057564523071050644,-0.06771937757730484,-0.01045537181198597,0.08209576457738876,0.02364976517856121,0.025269238278269768,-0.02292007766664028]},{"text":"Come (_very persuasively_), don’t quarrel.","book":"Down and Out in Paris and London","chapter":65,"embedding":[0.051009513437747955,0.04944660887122154,-0.013121615163981915,-0.03336344286799431,-0.04904094710946083,-0.011529768817126751,0.03769323602318764,-0.055722203105688095,0.01541136298328638,0.05125613510608673,0.03863028809428215,0.013713330961763859,0.014068449847400188,-0.005491982214152813,0.020499171689152718,0.020666522905230522,0.056458402425050735,-0.06045263633131981,-0.07101191580295563,0.05501192808151245,-0.038300663232803345,0.07959886640310287,-0.00961180217564106,0.009462342597544193,-0.09283945709466934,-0.02373279631137848,0.03548470512032509,0.01622321456670761,0.026383254677057266,0.0005440894747152925,-0.00312248757109046,0.11412236094474792,-0.03116302378475666,0.005454197525978088,-0.0273598525673151,-0.026425039395689964,0.042339686304330826,0.004862076137214899,0.020788978785276413,-0.03583439067006111,-0.02423781342804432,-0.006838609930127859,0.002913226606324315,-0.028580743819475174,0.08354325592517853,-0.0032569030299782753,0.01296625379472971,0.04304533079266548,-0.036700986325740814,-0.02025831863284111,-0.14921168982982635,0.01630249246954918,-0.06323598325252533,0.00868773739784956,0.07034238427877426,-0.05164569243788719,0.0493091456592083,0.07245074957609177,0.02731109969317913,0.04671746492385864,-0.05803307890892029,-0.024163194000720978,-0.03814457729458809,0.04618757963180542,-0.055984847247600555,0.014208792708814144,0.03634162247180939,0.04100089520215988,-0.0715368464589119,0.11213541775941849,0.05153267830610275,0.07356474548578262,0.02667030692100525,0.03727652505040169,-0.05976550281047821,-0.03632465749979019,-0.023454004898667336,0.004629341419786215,0.11862872540950775,-0.05199424922466278,-0.09135008603334427,0.03411077335476875,-0.0860443040728569,0.014894077554345131,0.0632224753499031,-0.09562316536903381,0.00921610090881586,0.0022047306410968304,-0.005784890614449978,-0.009090113453567028,-0.02965579926967621,0.05375794693827629,-0.009341251105070114,0.022434428334236145,-0.09488525986671448,0.057364899665117264,-0.041154347360134125,-0.08505678921937943,-0.04298905283212662,0.04066735506057739,0.02877502515912056,0.06895551830530167,-0.009785608388483524,-0.00658681895583868,-0.006726755760610104,-0.003321357537060976,-0.055359382182359695,-0.05026177689433098,-0.05490215867757797,0.03507758304476738,-0.09086716920137405,0.04806159436702728,-0.019137607887387276,-0.010092693381011486,0.09427602589130402,0.056406717747449875,0.10434412956237793,0.0013517782790586352,0.06185951828956604,0.025660980492830276,0.043526772409677505,-0.04135064780712128,-0.06492850929498672,0.07394310086965561,0.015952004119753838,-0.15740598738193512,-0.03407639265060425,-5.153236092916395e-33,-0.018248407170176506,0.006605938542634249,0.014589108526706696,0.06917767971754074,0.02105017937719822,0.039415840059518814,-0.037286318838596344,-0.03274639695882797,0.048817019909620285,-0.013350021094083786,-0.0035023102536797523,-0.011707969009876251,0.05721830949187279,0.00548634072765708,0.07508222758769989,-0.041973501443862915,-0.07177450507879257,-0.04949289187788963,-0.019489051774144173,0.007625438738614321,0.015594555996358395,-0.052917543798685074,-0.04782837629318237,0.030721677467226982,-0.050858043134212494,-0.05095039680600166,0.08310169726610184,-0.06706158071756363,0.030292492359876633,0.058894865214824677,0.005003456957638264,0.0012626093812286854,0.0004908220143988729,0.05580223724246025,-0.004846470896154642,0.05246391147375107,-0.05711006000638008,-0.004704905673861504,-0.04987526684999466,-0.008247745223343372,-0.007569579407572746,0.03080347180366516,-0.048602767288684845,0.05238507315516472,0.05433649569749832,0.036282192915678024,0.051535990089178085,-0.044178687036037445,-0.037404581904411316,-0.0007262027356773615,-0.01478179357945919,0.013040013611316681,0.18008393049240112,-0.012033550068736076,-0.012794723734259605,-0.07811719924211502,-0.018831005319952965,0.011479976586997509,-0.024265510961413383,0.0033344796393066645,-0.04085534065961838,-0.008911102078855038,-0.013636674731969833,-0.042241133749485016,-0.1375098079442978,-0.03826054930686951,-0.020563825964927673,0.006478136871010065,-0.0399685800075531,-0.044683340936899185,0.05432133004069328,0.036528512835502625,-0.1366869956254959,-0.021344071254134178,-0.06399915367364883,0.00501506682485342,-0.058288805186748505,0.055472809821367264,0.15489472448825836,-0.1444370299577713,0.05649435892701149,-0.02464778535068035,-0.042743757367134094,0.028061412274837494,0.013666700571775436,0.0028179038781672716,0.03672993183135986,-0.029082275927066803,0.0772612988948822,0.03219112753868103,-0.04321470111608505,0.01547215599566698,0.06966498494148254,0.01966027542948723,-0.06898460537195206,2.5067203972934195e-33,0.005598744843155146,0.04479189217090607,-0.009634108282625675,0.10584858059883118,-0.027522610500454903,0.0113838454708457,-0.021418249234557152,-0.0012914049439132214,0.10771266371011734,0.003429694101214409,-0.04516319930553436,-0.07142683863639832,0.028203466907143593,-0.03603142127394676,0.11106833070516586,-0.09653905034065247,0.028497902676463127,0.055865488946437836,0.009381772950291634,0.05035518482327461,0.0231089536100626,-0.02475833147764206,-0.07197454571723938,-0.07177229225635529,-0.016644282266497612,0.03297761082649231,0.011116727255284786,-0.03386341407895088,0.023821813985705376,0.01167239435017109,0.018504181876778603,-0.03175845742225647,-0.07816509902477264,-0.06182156130671501,0.041284795850515366,0.058285053819417953,0.019349493086338043,0.003840074874460697,-0.0004395277064759284,0.027635565027594566,-0.037717703729867935,-0.0006391544593498111,0.010926793329417706,0.11232558637857437,-0.018825871869921684,-0.011800034902989864,0.06132625415921211,-0.014751863665878773,0.051438409835100174,0.0033329203724861145,0.007671660277992487,-0.02732793428003788,0.01936219446361065,-0.009457203559577465,0.004820841830223799,-0.042335230857133865,0.09163299202919006,-0.008805619552731514,-0.09573303908109665,-0.02389058656990528,-0.045783065259456635,-0.0341796800494194,-0.03405383601784706,-0.042099226266145706,0.003964271396398544,-0.11140119284391403,-0.06238360330462456,0.06490061432123184,0.06283465027809143,0.01926225610077381,0.002336966572329402,-0.03094402328133583,-0.09882274270057678,-0.05303001031279564,-0.00028852082323282957,0.05644282326102257,0.0035024334210902452,-0.055693406611680984,0.023674512282013893,0.028441457077860832,0.028513768687844276,0.027517909184098244,0.04639583081007004,-0.040174905210733414,-0.08926185220479965,-0.09441228955984116,0.015260325744748116,0.0332481786608696,0.008875171653926373,0.04509102925658226,0.007062201853841543,0.014538145624101162,0.10962226241827011,-0.022089803591370583,0.004466142505407333,-2.7535513424936653e-8,-0.04822017624974251,-0.02146846428513527,0.06772199273109436,0.01797616481781006,0.023103686049580574,0.014412490651011467,-0.00724442396312952,-0.029374003410339355,-0.030721280723810196,0.07786507904529572,0.01877366565167904,0.01638089306652546,0.01760966330766678,0.038476232439279556,0.03502994030714035,0.022460073232650757,0.07062701135873795,-0.08423977345228195,-0.01598426327109337,-0.050726886838674545,-0.01439917366951704,-0.04728248342871666,-0.028853487223386765,-0.02778904139995575,-0.013518823310732841,0.05138689652085304,0.038583606481552124,0.012533686123788357,-0.0016693002544343472,-0.014942302368581295,0.01514076255261898,0.041103169322013855,-0.12218982726335526,-0.060732971876859665,-0.12184188514947891,0.005451587960124016,-0.053003888577222824,0.04454842954874039,0.05924622714519501,-0.09855461865663528,-0.10304658114910126,0.07533753663301468,0.04716242849826813,0.04547944292426109,0.007565141189843416,-0.035107046365737915,-0.026407796889543533,-0.0016986302798613906,-0.08882995694875717,0.041220150887966156,-0.006903213914483786,-0.03481217846274376,0.06742539256811142,-0.018454095348715782,0.016305044293403625,0.07301577925682068,0.018652433529496193,-0.032273080199956894,0.019966620951890945,-0.0035293945111334324,0.1192663311958313,0.041355691850185394,0.033923693001270294,0.04231323301792145]},{"text":"Not at all, I assure you.","book":"Down and Out in Paris and London","chapter":66,"embedding":[0.011836341582238674,-0.04598855599761009,0.018533874303102493,-0.06396019458770752,0.03630795702338219,-0.051002975553274155,0.050550952553749084,-0.008107893168926239,-0.01609162613749504,0.01542767696082592,0.02458915300667286,-0.005220760125666857,0.08681438863277435,-0.05836749076843262,-0.02636338211596012,0.0014309999532997608,0.010769223794341087,-0.059953656047582626,-0.028204400092363358,0.08234871923923492,-0.06837925314903259,-0.020768411457538605,0.06287336349487305,-0.033869221806526184,0.09448057413101196,-0.04871309548616409,0.03609105944633484,-0.02510470151901245,-0.07063877582550049,-0.005216055549681187,-0.10739560425281525,-0.00241146981716156,0.01727375015616417,-0.010976113379001617,-0.03432890772819519,0.012954371981322765,0.023878909647464752,0.023292575031518936,0.028272759169340134,-0.04800320416688919,0.022421127185225487,-0.06846266239881516,0.03989610821008682,-0.015252167358994484,-0.011416496708989143,-0.034702591598033905,0.05193694680929184,-0.06041424348950386,0.01631964184343815,-0.04070497304201126,-0.04197922348976135,-0.060242924839258194,0.12438991665840149,-0.0024935374967753887,-0.0875435397028923,0.08871681988239288,-0.004624905530363321,-0.020254429429769516,0.029404088854789734,0.0403001606464386,0.014329199679195881,0.039426710456609726,0.011106634512543678,0.12510360777378082,0.03249378502368927,-0.03188188374042511,0.029085753485560417,-0.022284042090177536,0.07255487889051437,0.00034846432390622795,-0.015665262937545776,0.015767863020300865,0.04200725257396698,0.13058209419250488,-0.006472963839769363,-0.11732006818056107,0.02271946333348751,-0.05498756840825081,-0.03474869579076767,0.03664219751954079,0.03482065722346306,-0.04600527137517929,-0.017865167930722237,-0.04145926609635353,-0.040912285447120667,-0.03686932101845741,0.05740034207701683,-0.06561271101236343,-0.05942915752530098,0.07494643330574036,0.00664388295263052,-0.06368042528629303,0.07316067069768906,-0.0017437934875488281,0.03508106246590614,0.001116796163842082,-0.025221817195415497,-0.02182335965335369,-0.07672128826379776,-0.017401520162820816,-0.05916009843349457,0.01563229039311409,0.01625508815050125,-0.015295389108359814,0.04494437947869301,0.03136461600661278,-0.019358493387699127,-0.02610607258975506,-0.016718247905373573,0.018126191571354866,0.002289978787302971,-0.02776574343442917,0.05560027435421944,0.08147305995225906,-0.04692331328988075,-0.06183534860610962,-0.008827604353427887,0.0368538461625576,-0.03380471095442772,0.028707481920719147,-0.009173990227282047,-0.02410316839814186,-0.0140458345413208,0.11639650166034698,-0.1381821632385254,-0.10813427716493607,-0.011925052851438522,-6.591373717936798e-33,0.06490810960531235,0.012707612477242947,-0.03849660977721214,0.03556498885154724,-0.011651727370917797,-0.01958429627120495,-0.035809226334095,0.018761618062853813,0.05153697356581688,-0.007312886882573366,0.024449210613965988,0.10040818154811859,-0.017992764711380005,-0.018030591309070587,0.012062720023095608,0.11149399727582932,0.03180459886789322,0.011913132853806019,-0.006017080973833799,0.062471579760313034,-0.02272847294807434,-0.06529899686574936,-0.04875912144780159,-0.07833707332611084,0.02364002913236618,-0.01781594753265381,0.04147894307971001,0.033864688128232956,0.0250810869038105,-0.014555590227246284,-0.14348724484443665,0.03257701173424721,-0.01467065792530775,-0.06391693651676178,0.058107782155275345,0.07476112991571426,0.02194446697831154,0.00025987232220359147,-0.07157465070486069,0.01737201400101185,0.01343635842204094,-0.010138936340808868,0.05769047513604164,0.053295623511075974,-0.03748716041445732,-0.01096920296549797,0.02203398570418358,-0.008168824948370457,-0.11188637465238571,0.03507528081536293,-0.027401253581047058,-0.010010210797190666,0.08328580856323242,0.0672420784831047,0.00611910643056035,0.0009552401606924832,0.010853859595954418,0.05201372876763344,0.04455534741282463,0.07047370076179504,-0.002373501192778349,-0.01774749904870987,-0.08670023083686829,-0.04748322814702988,-0.10573730617761612,0.040140990167856216,-0.019815122708678246,0.05725375562906265,-0.01841188594698906,0.0570717453956604,0.0007834456046111882,-0.05518782138824463,0.02348051220178604,0.011062928475439548,0.06800402700901031,0.022732671350240707,-0.0475807785987854,0.009615274146199226,0.07320716232061386,-0.00982188805937767,0.06786299496889114,0.006564021110534668,0.057118888944387436,-0.038277145475149155,0.04314373806118965,-0.006298504304140806,0.03368641808629036,0.005958201363682747,0.07865381985902786,0.03762945532798767,-0.05896257609128952,0.030081866309046745,0.038382500410079956,-0.047472033649683,-0.11735149472951889,4.7502729560346683e-33,-0.016811111941933632,-0.0036946830805391073,0.05447981134057045,0.0065735382959246635,-0.07139001041650772,-0.01179671473801136,-0.01856803521513939,0.09170787781476974,0.02967733144760132,-0.0166490338742733,0.11139484494924545,0.08087416738271713,-0.0218423493206501,0.001939290901646018,0.1592256873846054,-0.06131972000002861,0.08027046173810959,0.03402768447995186,0.0018085564952343702,-0.09668438136577606,-0.001723918947391212,0.059731051325798035,0.011513284407556057,-0.03085312992334366,0.02380288392305374,-0.0225890651345253,-0.015259398147463799,-0.04597907140851021,-0.03285724297165871,-0.026845084503293037,0.07779659330844879,-0.015701260417699814,-0.07077648490667343,0.056846048682928085,0.026576660573482513,-0.05775333568453789,0.03452649712562561,0.04963388666510582,0.027710748836398125,-0.05498935282230377,-0.02927311323583126,-0.04766367748379707,-0.049532558768987656,0.04390310123562813,-0.00717453146353364,-0.06612323224544525,0.1642579734325409,0.025432752445340157,0.0034950897097587585,0.12262215465307236,0.01793111115694046,0.028556274250149727,-0.03046574629843235,-0.0754086822271347,0.055286336690187454,-0.07091638445854187,-0.007620581891387701,0.0181149672716856,-0.02423498034477234,-0.07540907710790634,0.05454683676362038,0.07587958127260208,-0.04497659206390381,-0.06237253174185753,0.09754759818315506,-0.04125605523586273,-0.024651776999235153,-0.024872681125998497,0.07757851481437683,0.06109166890382767,0.06070006638765335,-0.04355236515402794,-0.13483735918998718,0.003201650455594063,-0.0261593759059906,0.011605321429669857,0.028352942317724228,0.04103974997997284,-0.029813848435878754,-0.015088081359863281,-0.0014973650686442852,-0.0451410748064518,0.11848202347755432,-0.010147393681108952,-0.02601681277155876,0.04894217848777771,0.06783067435026169,-0.11059963703155518,-0.027514731511473656,0.04192584753036499,-0.0392112098634243,0.022978423163294792,-0.029670769348740578,-0.01275341585278511,0.04073898866772652,-2.140989252552572e-8,-0.011220511049032211,-0.013106451369822025,0.091862753033638,0.0073587666265666485,0.0042854477651417255,-0.0528857447206974,-0.07326259464025497,-0.01660795696079731,-0.03752231225371361,0.005980115383863449,0.03860083222389221,-0.02040090039372444,0.027761008590459824,-0.03574110195040703,0.018415259197354317,-0.0039543090388178825,0.05807221680879593,-0.013322471641004086,-0.07723291218280792,0.030443549156188965,0.029882514849305153,0.12909257411956787,-0.07840511202812195,0.011225836351513863,-0.035032469779253006,0.03535041958093643,0.025415178388357162,0.001802499988116324,-0.022768916562199593,0.004300023894757032,-0.009264785796403885,-0.04680467024445534,-0.06508108228445053,0.0050732968375086784,0.04108604043722153,-0.01662263460457325,0.059231121093034744,0.05163813754916191,-0.01107234600931406,0.0843714252114296,-0.05246548354625702,-0.061158668249845505,0.024395139887928963,0.07057636976242065,0.028961054980754852,-0.06366447359323502,0.07459545880556107,-0.06864762306213379,-0.0015539474552497268,-0.08045399934053421,0.0241303239017725,0.028791774064302444,0.004615585785359144,0.018545903265476227,0.06518501788377762,-0.006264356430619955,-0.00611984683200717,0.003739033592864871,0.03017568215727806,-0.01670282520353794,0.038856424391269684,-0.1097150668501854,-0.022747768089175224,-0.04357663542032242]},{"text":"I will prove that that, at least, is a calumny. (_He goes with dignity to the door and opens it.","book":"Down and Out in Paris and London","chapter":66,"embedding":[0.049112383276224136,0.058317575603723526,0.022737732157111168,-0.04465457424521446,-0.026996688917279243,-0.0364869050681591,0.07322728633880615,-0.04104670509696007,0.01738891378045082,0.0132405124604702,-0.02995615452528,-0.0458441860973835,0.040513280779123306,0.056154653429985046,0.07601751387119293,-0.037375759333372116,0.0007950931903906167,-0.055029019713401794,-0.034231118857860565,0.07993655651807785,0.055783964693546295,0.06886839121580124,0.09566985815763474,-0.10857082158327103,-0.0323045589029789,-0.025467468425631523,0.01499028317630291,0.008091658353805542,0.036590199917554855,0.09305069595575333,-0.03902934864163399,0.07761597633361816,0.014574599452316761,-0.016827266663312912,0.03453872725367546,0.056542567908763885,0.032308898866176605,-0.051897164434194565,0.0646149292588234,-0.03258970379829407,0.028967082500457764,-0.07622212916612625,0.034296296536922455,0.12978535890579224,-0.09177715331315994,0.03145727515220642,-0.007770491763949394,0.016185740008950233,-0.015626976266503334,-0.04994727298617363,-0.058737147599458694,0.1059335246682167,0.00950202438980341,0.07271572947502136,-0.06636591255664825,-0.01748945564031601,0.121444933116436,-0.021416500210762024,-0.034583333879709244,0.049950603395700455,0.05079104006290436,0.06492963433265686,-0.05819566547870636,0.07580263912677765,0.018855061382055283,0.07146897912025452,-0.05579887330532074,-0.02326001599431038,-0.0628015398979187,0.09292147308588028,0.0680859237909317,0.007237742654979229,0.013453490100800991,0.07544351369142532,-0.06677326560020447,-0.1221303790807724,-0.06436676532030106,0.027854692190885544,0.07275990396738052,0.03515809401869774,-0.07003672420978546,-0.06418730318546295,-0.10613668709993362,0.011822862550616264,-0.09719663113355637,0.03008754551410675,0.05722169950604439,-0.0643145963549614,-0.013658110052347183,0.0712500661611557,-0.059390220791101456,-0.013332007452845573,-0.010388748720288277,-0.07499846071004868,-0.0970732718706131,-0.05360214412212372,-0.03503713756799698,-0.010233904235064983,-0.13103742897510529,0.012421511113643646,-0.012886823154985905,0.05915829911828041,0.03396767005324364,0.038708433508872986,0.03924235329031944,0.07620911300182343,0.002300785854458809,0.03406168147921562,-0.04799988865852356,-0.020079869776964188,0.056614190340042114,-0.02328331582248211,0.026016566902399063,0.03769272565841675,0.06971526890993118,0.026065543293952942,-0.04867861047387123,0.024798886850476265,0.014757287688553333,0.010217082686722279,0.04134181886911392,0.012295595370233059,-0.014318768866360188,0.047156140208244324,-0.007702347356826067,-0.15581783652305603,-0.00387240550480783,-5.968094287036174e-33,0.026595257222652435,0.07508144527673721,-0.062078140676021576,-0.022131357342004776,0.03914642706513405,0.07687878608703613,-0.07209108769893646,-0.02454300969839096,0.04244810715317726,0.08382591605186462,0.049062080681324005,0.0667097270488739,-0.03853030130267143,0.01157708466053009,-0.010878211818635464,0.15270204842090607,-0.013671394437551498,-0.02597384713590145,0.010327908210456371,0.009253125637769699,0.07805471122264862,0.03988640382885933,0.013644649647176266,-0.0003411932848393917,-0.08417186886072159,-0.049979954957962036,0.029005981981754303,-0.008626788854598999,0.007937463000416756,0.021924788132309914,-0.02043742500245571,-0.0007931896834634244,0.036579012870788574,0.05299557372927666,-0.028727257624268532,-0.020547444000840187,0.035753246396780014,-0.02552253007888794,-0.09074614942073822,0.051968298852443695,-0.06844014674425125,-0.020073259249329567,0.03672084957361221,0.03752078115940094,-0.06288442015647888,-0.02862744778394699,0.010613013058900833,0.03161099553108215,0.0448111928999424,-0.02255736105144024,0.012939023785293102,0.0179034061729908,0.0496470183134079,-0.04274839907884598,-0.10563937574625015,-0.07609473168849945,0.013894516974687576,-0.02656719647347927,-0.009408079087734222,0.05533457547426224,0.01606328785419464,-0.00659334147349,0.07932988554239273,-0.010137071833014488,-0.10439464449882507,-0.0779014602303505,-0.058449242264032364,-0.024123774841427803,-0.005333456210792065,0.005660476628690958,-0.04340815171599388,0.05910833925008774,-0.0010927977273240685,0.021553276106715202,-0.01495880912989378,-0.03461248427629471,-0.012867250479757786,-0.07357924431562424,0.08047965914011002,-0.02972021885216236,0.04800649732351303,-0.009681913070380688,-0.00854527484625578,0.027746159583330154,-0.02080203779041767,0.027102062478661537,-0.08988863229751587,0.008516989648342133,0.006515772547572851,0.03783208131790161,-0.02949421852827072,-0.029145454987883568,-0.01740890182554722,0.001348906778730452,-0.037344589829444885,8.723436331303315e-34,0.026788586750626564,-0.025002406910061836,0.0367119126021862,0.055898312479257584,-0.03788702189922333,-0.040777675807476044,-0.05821416899561882,-0.020011568441987038,0.027638178318738937,-0.01529732532799244,-0.020832467824220657,0.042214833199977875,0.02200026996433735,-0.023970482870936394,0.014333990402519703,-0.0006231724983081222,0.10520172864198685,-0.10091495513916016,-0.004688707180321217,0.008001089096069336,0.0030991812236607075,0.07394775748252869,-0.061279430985450745,0.010833455249667168,-0.07815205305814743,-0.05527950078248978,0.13156446814537048,-0.013800980523228645,-0.029738718643784523,-0.036051537841558456,-0.025707293301820755,-0.10395444184541702,-0.04086630418896675,-0.028630753979086876,0.033339280635118484,-0.029233304783701897,0.07693307101726532,-0.005062871612608433,-0.0711585059762001,0.07100792229175568,0.034876514226198196,-0.067794568836689,-0.013481293804943562,0.0025393504183739424,0.06270108371973038,-0.06390410661697388,0.03196496143937111,-0.001333054038695991,-0.010468482971191406,0.09022557735443115,0.0317961648106575,-0.010111336596310139,-0.035592999309301376,0.012985791079699993,-0.013735656626522541,0.05017587170004845,-0.03025132231414318,0.044695112854242325,-0.054297082126140594,0.029248837381601334,0.013409691862761974,0.009717521257698536,0.04301362857222557,0.04131842777132988,0.01263945922255516,-0.08068563789129257,-0.09787821024656296,0.026787810027599335,-0.013020113110542297,-0.031179409474134445,0.08340650051832199,-0.054106514900922775,-0.03190074861049652,-0.04429524764418602,0.03708977997303009,0.0208137184381485,0.057654593139886856,-0.12228687107563019,0.01235645916312933,-0.0587899424135685,-0.021715736016631126,-0.06771992892026901,0.023618245497345924,-0.07404517382383347,-0.034144844859838486,0.015588334761559963,0.023107843473553658,-0.050141189247369766,-0.00162879831623286,0.05795123800635338,-0.026051532477140427,0.06329376250505447,-0.013966591097414494,-0.07573127001523972,0.03874444216489792,-3.367296486089799e-8,-0.043364837765693665,0.011816168203949928,0.00021313266188371927,-0.09082598239183426,0.008319287560880184,0.05469030514359474,0.02489226683974266,-0.042365532368421555,0.028457552194595337,-0.002254582941532135,0.010291500017046928,0.028015339747071266,-0.007991481572389603,0.02359876222908497,-0.010188799351453781,0.061140649020671844,-0.026526127010583878,-0.11239808797836304,-0.06122183799743652,-0.0001954645849764347,0.011955619789659977,-0.027165964245796204,0.035621434450149536,-0.005808561574667692,-0.09480606019496918,-0.02842240408062935,-0.06984899193048477,0.013458945788443089,-0.03437453508377075,0.0667412057518959,0.025285856798291206,-0.02676832303404808,-0.11205317080020905,-0.06100267916917801,0.008149045519530773,-0.006342306267470121,0.02807876467704773,0.015928298234939575,0.09000471979379654,0.05726410448551178,-0.02170761115849018,-0.03888355568051338,-0.10256914049386978,0.08161735534667969,0.01992143504321575,0.024312132969498634,0.048923347145318985,0.030685633420944214,-0.03059707023203373,0.04711264744400978,-0.00465580215677619,-0.01444437075406313,-0.04763714596629143,-0.07126682251691818,0.011930490843951702,-0.014188256114721298,0.02513721212744713,0.0016520251519978046,0.007100997492671013,0.07395028322935104,0.07297638803720474,-0.01748383790254593,0.02745104767382145,-0.08168245851993561]},{"text":"My love was at stake. (_Sergius flinches, ashamed of her in spite of himself._) I am not ashamed.","book":"Down and Out in Paris and London","chapter":66,"embedding":[0.023905351758003235,0.09828966856002808,0.07852071523666382,0.0283765010535717,0.08415372669696808,-0.005847692955285311,0.05372064933180809,0.004750345833599567,0.0667354092001915,-0.019734155386686325,0.004697098862379789,-0.07164768874645233,-0.034465961158275604,-0.039758261293172836,0.044433627277612686,-0.042575471103191376,-0.04828976094722748,0.020209191367030144,-0.028565293177962303,0.04621428623795509,0.0499480739235878,0.014511839486658573,0.10941553860902786,0.0011585085885599256,0.007225461304187775,-0.04273366928100586,0.02424166351556778,-0.0030969276558607817,-0.031075624749064445,0.04497816413640976,-0.026627996936440468,-0.0894591435790062,0.005009572487324476,0.04771796613931656,-0.0017920241225510836,0.06918789446353912,-0.03418683633208275,-0.1163896769285202,0.029584186151623726,-0.04087216779589653,0.03707212582230568,-0.03369580954313278,-0.008362933062016964,-0.009590571746230125,-0.06724201142787933,-0.04335453361272812,0.04755664989352226,0.02741382271051407,-0.037358466535806656,-0.06918768584728241,-0.04314350709319115,0.01376546360552311,-0.05000021308660507,-0.05479459464550018,-0.024650799110531807,0.005515750497579575,0.0323849618434906,-0.03890403360128403,0.04814181476831436,-0.014104196801781654,0.014012443833053112,0.08981239050626755,0.020868076011538506,0.06994566321372986,0.01931961625814438,0.003354043932631612,0.01622851751744747,-0.019964147359132767,0.045707106590270996,0.13224069774150848,0.03374441713094711,0.04991165176033974,-0.0029180324636399746,-0.02498173899948597,-0.11652395874261856,0.03309759870171547,-0.022082097828388214,-0.038210783153772354,0.06268860399723053,-0.08423531800508499,-0.04057743400335312,0.010340378619730473,0.02722768485546112,0.028355542570352554,-0.05143033713102341,-0.04278416931629181,0.0636126920580864,0.009877117350697517,-0.0051659406162798405,-0.03375266492366791,-0.0376717634499073,-0.03953838720917702,-0.08640772104263306,0.03925084322690964,-0.053061265498399734,-0.026586467400193214,-0.08885858207941055,0.07503943145275116,-0.11649134010076523,0.023649202659726143,0.02379399538040161,0.10716093331575394,-0.04539109766483307,0.01880229078233242,-0.034302763640880585,0.05344252660870552,-0.08537162840366364,-0.04127303138375282,-0.08486800640821457,-0.039826590567827225,-0.017510544508695602,-0.10795719176530838,-0.012906718999147415,0.013934202492237091,0.04581395909190178,0.058853328227996826,0.01953447423875332,-0.04121466353535652,-0.00993346981704235,0.08311870694160461,0.05100506916642189,0.04094626381993294,0.027652602642774582,0.0035099999513477087,-0.03704455494880676,-0.06190195679664612,-0.02716067060828209,-4.7419724965499245e-33,0.07266009598970413,-0.01588786579668522,-0.04676152765750885,-0.10351616889238358,-0.028875386342406273,0.017052967101335526,-0.002322789514437318,0.03533793240785599,-0.015013469383120537,0.11395113170146942,-0.012416532263159752,-0.00024918513372540474,-0.04002198949456215,-0.06310733407735825,-0.053544946014881134,-0.031375985592603683,0.009302563033998013,-0.005849145818501711,0.05184127762913704,0.05620488524436951,0.04798859730362892,0.09359122067689896,-0.00615353137254715,-0.03736036270856857,-0.06546492874622345,-0.074821837246418,-0.022955728694796562,0.06296919286251068,-0.06598008424043655,0.04707223176956177,0.008069616742432117,-0.02049264684319496,0.08120354264974594,-0.04420672357082367,0.039323072880506516,0.0077508422546088696,0.03304724395275116,-0.05016174167394638,-0.06171764060854912,0.03145473077893257,-0.05473293736577034,-0.015468173660337925,-0.006020793225616217,-0.05095672234892845,-0.10912314802408218,0.03953501582145691,-0.075981006026268,0.008975968696177006,-0.014599209651350975,-0.023192372173070908,-0.026268411427736282,0.0037130280397832394,0.06615440547466278,-0.031221354380249977,0.03362544998526573,0.04516430199146271,0.06600290536880493,-0.015254586935043335,0.06814688444137573,0.020253293216228485,-0.015297896228730679,-0.06577257812023163,0.02096608281135559,-0.0705464631319046,-0.07520352303981781,0.004735983908176422,0.04793832451105118,-0.04971645027399063,-0.06403274834156036,-0.04566892981529236,-0.09744683653116226,0.054358918219804764,-0.07666792720556259,-0.03533533215522766,-0.016957305371761322,-0.033855777233839035,-0.049235548824071884,-0.042798981070518494,0.03665188327431679,-0.047175921499729156,-0.03449075669050217,-0.03884954750537872,-0.08534130454063416,0.04136592149734497,0.01954580284655094,-0.009952230378985405,0.008917542174458504,-0.053165536373853683,-0.061408303678035736,0.03417322039604187,0.024421339854598045,0.05309102311730385,0.03344056010246277,-0.12136930227279663,-0.039865992963314056,8.99507838209896e-34,0.05142693221569061,0.04382884502410889,0.010937629267573357,0.05471440404653549,-0.04950297623872757,-0.0470750518143177,-0.03478819504380226,-0.023089054971933365,-0.04016285762190819,0.040072400122880936,-0.0491359569132328,-0.025691727176308632,0.053060512989759445,0.031342487782239914,-0.020914463326334953,-0.02609584853053093,-0.009417247027158737,0.014635071158409119,0.03874891251325607,-0.021112937480211258,-0.05848034843802452,0.14440585672855377,0.00914299488067627,0.05127822607755661,0.03147458657622337,-0.03649158775806427,0.07449200004339218,-0.06235045567154884,-0.013896000571548939,-0.06817582249641418,0.0647563636302948,-0.03533486649394035,-0.06620052456855774,-0.0474696159362793,0.0856255367398262,0.02087867073714733,0.030493833124637604,-0.011576415039598942,0.02641158364713192,-0.074525848031044,0.04044555127620697,-0.043124426156282425,0.013082713820040226,0.11951401084661484,0.041324082762002945,-0.04456993192434311,0.018680233508348465,0.05218420550227165,0.0800158679485321,0.04917716979980469,-0.14967688918113708,-0.041920993477106094,0.04709117114543915,-0.010816707275807858,0.07854922860860825,0.05674075335264206,0.04142249375581741,-0.017334163188934326,-0.05576339736580849,-0.07398728281259537,-0.051956601440906525,-0.024723496288061142,0.00981481559574604,0.06780406087636948,0.060209885239601135,0.013288727030158043,-0.027005910873413086,0.02374880015850067,-0.030290741473436356,0.026209399104118347,-0.05912778154015541,-0.05659148469567299,-0.10954630374908447,0.08693424612283707,0.031654901802539825,-0.0032847633119672537,-0.10433240979909897,-0.016647083684802055,0.06090647354722023,-0.03969674929976463,0.05128660053014755,-0.02221825160086155,-0.014726635068655014,-0.023033807054162025,-0.027825340628623962,-0.013435034081339836,0.02428560145199299,0.046261705458164215,-0.050745632499456406,-0.035864509642124176,0.00034620403312146664,-0.03814161196351051,0.08767706900835037,-0.025069182738661766,0.015148424543440342,-2.7937874236272364e-8,-0.024134982377290726,0.09437379240989685,0.019870733842253685,-0.0931304469704628,0.026354767382144928,0.008973757736384869,0.014611683785915375,-0.03897811472415924,-0.028198018670082092,0.026551291346549988,-0.026781685650348663,0.08702384680509567,-0.004136827774345875,0.01999892294406891,0.051948800683021545,-0.04822836071252823,0.05606875941157341,-0.003100690431892872,-0.011873248964548111,-0.06109126657247543,-0.00008883962436811998,0.08155837655067444,-0.0007757609710097313,-0.05278393253684044,0.006081064231693745,0.08130833506584167,-0.015720371156930923,-0.03185566887259483,-0.027516573667526245,0.0008402927778661251,0.11935875564813614,-0.0010473119327798486,-0.0819232165813446,0.05793081596493721,0.009531013667583466,0.07677368819713593,0.023960217833518982,0.05280796438455582,0.076915442943573,0.052361514419317245,0.0454358346760273,0.00687736039981246,0.0949116200208664,0.03180714324116707,0.007144737057387829,0.06552734225988388,0.07049407064914703,-0.05491432920098305,-0.02112097665667534,-0.03905109688639641,-0.05973215028643608,0.04521479457616806,-0.054815519601106644,0.0673367828130722,0.005764481611549854,-0.0015243547968566418,-0.00801208894699812,0.049594901502132416,-0.042808886617422104,-0.01624692603945732,0.10117708891630173,-0.030127590522170067,-0.0781417116522789,-0.050613731145858765]},{"text":"A paltry taunt, girl. (_Major Petkoff enters, in his shirtsleeves._) PETKOFF.","book":"Down and Out in Paris and London","chapter":67,"embedding":[-0.001652589882723987,0.007561542093753815,-0.03797592967748642,-0.02456500194966793,-0.011630549095571041,-0.01431868877261877,0.123805932700634,-0.045847684144973755,0.03538673371076584,-0.03660392388701439,0.012048011645674706,-0.0036548420321196318,-0.08360828459262848,-0.0025491369888186455,0.0024864336010068655,0.03316127136349678,0.06017303094267845,-0.02752283401787281,-0.001547919469885528,0.09781284630298615,-0.04833388701081276,0.013964667916297913,0.02743995375931263,0.029699338600039482,0.001097002997994423,-0.000664177758153528,0.019615355879068375,-0.035661209374666214,0.03124656341969967,0.014058077707886696,-0.012490279041230679,0.04055924341082573,-0.07499835640192032,0.022854430601000786,-0.07036976516246796,0.03757678344845772,0.057113949209451675,0.026977475732564926,0.025625422596931458,-0.02907855622470379,0.01473983097821474,-0.06334970891475677,-0.09010529518127441,0.05991120636463165,-0.025114309042692184,0.02310675010085106,-0.007459328509867191,-0.0013832030817866325,-0.020664548501372337,-0.046641718596220016,-0.07552215456962585,-0.08504368364810944,-0.10392649471759796,0.020648809149861336,-0.0019422722980380058,0.011874537914991379,0.05314931645989418,-0.10286072641611099,0.024624232202768326,0.02799568884074688,-0.05290086939930916,-0.04780799150466919,-0.02368992753326893,0.08637545257806778,0.06098319590091705,-0.06988302618265152,-0.003000727156177163,0.029698563739657402,-0.004277562256902456,0.12128488719463348,0.045144516974687576,-0.009689695201814175,-0.02419036254286766,0.04491344466805458,-0.04481786489486694,-0.05412448197603226,-0.01491151936352253,-0.025579331442713737,0.11165854334831238,-0.019845783710479736,-0.04013732820749283,0.010038810782134533,-0.03733289614319801,0.045075953006744385,0.09161931276321411,-0.012018058449029922,0.026142727583646774,-0.030035557225346565,-0.03771878406405449,0.005149648524820805,-0.049019210040569305,0.06866337358951569,-0.0026910759042948484,0.011845290660858154,-0.03625153750181198,-0.0025411697570234537,-0.011247452348470688,-0.0659070685505867,-0.04897458851337433,0.05532671883702278,0.008958887308835983,0.04282226413488388,0.11306796967983246,0.040954988449811935,-0.023220309987664223,-0.055192094296216965,-0.022281264886260033,-0.13118992745876312,0.006045057438313961,-0.014681888744235039,-0.05935640260577202,-0.1071821004152298,-0.017490943893790245,0.008123219944536686,0.1187090054154396,-0.05907976254820824,-0.02503916434943676,-0.028947848826646805,0.016621427610516548,0.09181410819292068,-0.015364591032266617,0.056763119995594025,-0.051561880856752396,0.014391809701919556,-0.07421629875898361,0.006928302813321352,-0.08922059834003448,-2.9113922254166615e-33,0.010766956023871899,0.10013451427221298,-0.03642427921295166,0.06371234357357025,0.005874127149581909,0.07801686972379684,-0.06492431461811066,-0.03870353102684021,0.007183915004134178,0.0416591502726078,-0.05948662757873535,-0.06920058280229568,-0.044403303414583206,0.06409145146608353,-0.022483952343463898,0.004833988379687071,0.022239692509174347,0.04669724404811859,-0.0419488400220871,-0.008349532261490822,-0.00005269722532830201,0.131254181265831,-0.08923599123954773,-0.0022093961015343666,0.012850391678512096,0.0038756278809159994,0.024924742057919502,-0.08143458515405655,-0.022851217538118362,0.021096890792250633,0.004747018218040466,0.029470060020685196,-0.018885238096117973,0.013427707366645336,-0.016729922965168953,-0.06581167131662369,-0.008598817512392998,-0.09052475541830063,0.004142668563872576,0.0005259715253487229,-0.024432171136140823,-0.06556634604930878,-0.058165181428194046,0.04253054037690163,-0.07693814486265182,0.017728405073285103,0.0710151270031929,0.005256549920886755,-0.02222328633069992,-0.06543976068496704,-0.026221105828881264,-0.033443015068769455,0.012496398761868477,-0.07158252596855164,-0.11041190475225449,-0.005507173947989941,0.057748280465602875,-0.055015191435813904,-0.0014606073964387178,-0.05216735601425171,-0.027155853807926178,0.014427555724978447,0.05229857563972473,-0.022270146757364273,0.014873392879962921,-0.0556277371942997,-0.08523021638393402,-0.06826910376548767,0.04396854713559151,-0.005472193006426096,-0.02663448452949524,0.020751627162098885,0.02423783764243126,0.06678654253482819,0.030096035450696945,-0.02049323357641697,0.00008851258462527767,0.052557654678821564,-0.09194456040859222,-0.05984852463006973,-0.12267335504293442,-0.012311127968132496,-0.004977846052497625,-0.0016609764425083995,-0.031866297125816345,0.003958618734031916,0.06358934193849564,-0.13730205595493317,-0.019090715795755386,0.030735695734620094,-0.05614057555794716,-0.024463754147291183,0.035500332713127136,0.018975242972373962,-0.06911752372980118,-5.748637573261315e-34,0.06686209887266159,-0.013902740553021431,-0.06277433037757874,-0.01598651520907879,0.05378516763448715,0.036569058895111084,-0.018369434401392937,0.07713226228952408,0.02005130425095558,-0.05024947226047516,0.04203534498810768,-0.0264701247215271,0.013072021305561066,-0.03981391340494156,0.06392677873373032,-0.017476288601756096,0.08658602833747864,0.013399356044828892,-0.034082625061273575,-0.03517837077379227,0.07148566842079163,-0.06627043336629868,-0.03583146631717682,0.06276459991931915,0.02497858554124832,0.017857156693935394,0.18145273625850677,-0.10008213669061661,-0.025628503412008286,0.02242172881960869,-0.07156165689229965,-0.012010414153337479,0.04609361290931702,0.03864346444606781,0.009636610746383667,0.0581078976392746,0.04005921259522438,-0.0848720371723175,-0.10510524362325668,0.022440390661358833,0.06845418363809586,0.05337582156062126,0.08080057054758072,0.05309370532631874,-0.0413653701543808,-0.043132152408361435,-0.035809699445962906,0.06310142576694489,-0.053768090903759,-0.025089435279369354,-0.02679256722331047,-0.01299099251627922,-0.06130579113960266,-0.06704245507717133,-0.03558710962533951,0.09765245765447617,0.04571680352091789,-0.06464758515357971,0.016371266916394234,0.04142071679234505,-0.015275897458195686,-0.0163100752979517,-0.00041520927334204316,0.015047386288642883,-0.01801391690969467,0.008378562517464161,-0.1111418828368187,-0.01906399056315422,0.062590591609478,0.0003599972988013178,0.09238411486148834,0.06054973974823952,-0.03970317542552948,0.02691211737692356,-0.004578246735036373,0.03597068786621094,0.050931915640830994,-0.03212909400463104,-0.008282359689474106,-0.07250344753265381,-0.05689738690853119,-0.10056091845035553,0.058656949549913406,0.03867672383785248,0.02619706094264984,-0.07596293836832047,-0.012984356842935085,0.0638648271560669,0.0210336372256279,-0.04389146715402603,0.050627700984478,0.05812732130289078,0.04475851356983185,0.02757883071899414,0.009025280363857746,-2.6714941370187262e-8,-0.023208539932966232,0.023068081587553024,0.009301144629716873,-0.04873344302177429,0.010083993896842003,0.05125300586223602,-0.041510846465826035,-0.0966527909040451,-0.03787371516227722,0.025855740532279015,-0.050442885607481,0.030943991616368294,0.03765232861042023,-0.06203969568014145,0.02856726199388504,0.033550623804330826,-0.01598437875509262,-0.0048508052714169025,-0.033823903650045395,-0.024230992421507835,0.01488679088652134,0.021769657731056213,0.017165781930088997,0.05198774114251137,0.012043767608702183,0.05910981819033623,-0.026435276493430138,0.10634003579616547,-0.00023703351325821131,0.074332095682621,0.05930888652801514,0.0906095802783966,-0.04160219058394432,0.011621521785855293,0.024889810010790825,0.12254446744918823,0.03131134435534477,-0.017453067004680634,0.07491207867860794,0.06773730367422104,0.03545769676566124,-0.006192095577716827,0.03320002928376198,0.010078300721943378,0.03381263092160225,0.02850053459405899,0.030515452846884727,-0.11194082349538803,0.062154024839401245,-0.019649138674139977,0.06036622077226639,0.09417973458766937,0.000009789787327463273,0.003015223890542984,-0.028559142723679543,0.05445750430226326,-0.06849252432584763,0.01650158315896988,-0.08377393335103989,0.009964093565940857,0.07007788121700287,0.01681327447295189,0.017023857682943344,-0.008586203679442406]},{"text":"No. (_She sits down at the stove with a tranquil air._) SERGIUS.","book":"Down and Out in Paris and London","chapter":67,"embedding":[0.027846477925777435,0.019207226112484932,0.005246252287179232,0.052573904395103455,-0.06278996169567108,0.0055549838580191135,0.1406858265399933,-0.07100819051265717,-0.020178962498903275,-0.06566295027732849,-0.02217230200767517,0.0060851192101836205,-0.028609436005353928,0.021115323528647423,0.057153958827257156,-0.04700884595513344,0.04067905992269516,-0.005830740090459585,0.01745404489338398,0.09968578815460205,-0.033137161284685135,0.053105298429727554,0.1108640804886818,0.01976284198462963,0.02236204594373703,-0.003189351176843047,0.04713602364063263,0.040048472583293915,0.004281014669686556,0.04924789443612099,-0.046824030578136444,0.011256315745413303,-0.1321147382259369,-0.018504401668906212,0.05075141414999962,0.0006993430433794856,0.04973529651761055,0.02548530511558056,0.05033710598945618,0.027351319789886475,0.03131724148988724,-0.03842846304178238,-0.057807356119155884,-0.05110960453748703,-0.07178159058094025,0.007913647219538689,-0.039187945425510406,-0.016827430576086044,-0.04970088228583336,-0.15612339973449707,-0.1123906597495079,0.030076848343014717,0.004974122159183025,0.12182887643575668,0.020300475880503654,-0.08688777685165405,0.023209255188703537,-0.10067342966794968,0.01885402202606201,0.03507033735513687,-0.12992045283317566,0.14635105431079865,0.01794392615556717,0.0830523744225502,0.023479409515857697,-0.019602127373218536,-0.021804125979542732,-0.0356619767844677,0.01407934445887804,0.0681525319814682,0.023314742371439934,0.05667705833911896,0.02627450041472912,0.0413627065718174,-0.08234350383281708,0.006637293379753828,0.06728692352771759,-0.05774000287055969,0.07433710247278214,0.06484286487102509,-0.0030146483331918716,-0.017498163506388664,-0.009414617903530598,0.12435461580753326,-0.07230880856513977,-0.008167661726474762,0.04125354066491127,0.010053982026875019,-0.0520000196993351,-0.03786005079746246,0.004441750701516867,0.003099263645708561,-0.0283152237534523,-0.0001763261534506455,-0.028391757979989052,-0.03261822834610939,-0.010079050436615944,0.009603692218661308,-0.082918681204319,-0.02028043381869793,-0.025887735188007355,0.05772693082690239,0.04819518327713013,0.05653000995516777,0.002663493389263749,0.032917317003011703,0.015268395654857159,-0.037792693823575974,0.005738659296184778,-0.07754257321357727,-0.05647268891334534,-0.04831065610051155,-0.011846601031720638,-0.03241056948900223,-0.04916733503341675,0.007996127009391785,0.010452174581587315,-0.09676088392734528,-0.12000031769275665,0.0015395352384075522,0.004787846468389034,-0.0020091987680643797,0.021227816119790077,0.08244209736585617,0.002663595601916313,-0.07690552622079849,0.022420883178710938,-2.9510267725195197e-33,0.019625375047326088,0.019307535141706467,0.04788864776492119,-0.011892983689904213,0.04198909178376198,0.03037956729531288,-0.0714694932103157,0.03858817368745804,0.054820604622364044,0.0654645785689354,-0.07771269977092743,0.018380239605903625,-0.05329734459519386,0.0004673166258726269,-0.008022146299481392,-0.0038019681815057993,-0.0005797866033390164,0.004494247492402792,0.04483801871538162,-0.004454880021512508,0.03895406052470207,-0.023917974904179573,0.036245957016944885,0.010173537768423557,-0.10293574631214142,-0.016974933445453644,0.0011666390346363187,0.015734156593680382,-0.04610131308436394,0.03637712448835373,-0.020940182730555534,-0.02273375540971756,-0.048386748880147934,-0.04125254228711128,0.004218747839331627,-0.008720498532056808,0.004495280794799328,0.017689554020762444,-0.09046834707260132,0.017872121185064316,-0.10596668720245361,0.02519768476486206,0.011372729204595089,0.08587217330932617,-0.07502221316099167,-0.05124624818563461,-0.06564706563949585,0.06982694566249847,0.03181619569659233,-0.026706930249929428,-0.08318144828081131,0.0019784143660217524,0.050867896527051926,-0.037017740309238434,0.00818665511906147,0.0018007283797487617,0.08884264528751373,-0.01676648110151291,0.12184884399175644,0.026658466085791588,-0.06508509069681168,-0.04670365899801254,-0.017411788925528526,-0.04240768402814865,0.05581746995449066,-0.033464305102825165,0.032184019684791565,0.008189111016690731,0.06821689009666443,0.026594655588269234,-0.04389430955052376,0.03491894528269768,-0.026503922417759895,0.025843661278486252,-0.044183067977428436,-0.039731208235025406,-0.00869525596499443,-0.03218129649758339,0.04684858396649361,-0.09985879063606262,0.05943968892097473,-0.07762672752141953,-0.05351373925805092,0.11523884534835815,0.008136306889355183,-0.047979533672332764,-0.03137923404574394,0.020356686785817146,-0.07061149179935455,0.03332735225558281,-0.004930954892188311,-0.019335607066750526,0.08501429855823517,-0.074101023375988,-0.044812969863414764,4.2598680086376374e-34,0.02760647051036358,0.0010179192759096622,-0.060770731419324875,0.019063565880060196,-0.019556516781449318,-0.0056360382586717606,-0.019240720197558403,-0.041676636785268784,-0.05481816828250885,0.04854588955640793,0.0417390801012516,-0.08183099329471588,0.05216649919748306,0.010549933649599552,0.057727765291929245,-0.006855047307908535,0.04012716934084892,-0.013460724614560604,0.058261170983314514,-0.010911206714808941,-0.0982312560081482,-0.0061308578588068485,-0.031615205109119415,0.05426253750920296,-0.001778327045030892,0.07012561708688736,0.0881071612238884,0.06552518159151077,-0.11964293569326401,-0.007865642197430134,0.059661418199539185,-0.042346831411123276,0.000548665237147361,-0.014500260353088379,-0.013724545016884804,0.01531458180397749,0.031064193695783615,-0.0969732329249382,-0.011885493993759155,-0.019860493019223213,0.026115715503692627,0.008329106494784355,0.03737657517194748,0.17839962244033813,0.04180514067411423,0.005284832324832678,-0.0390084907412529,0.004195664543658495,0.10550166666507721,0.002571916440501809,0.001798740471713245,-0.052228592336177826,-0.06729258596897125,-0.005669210571795702,0.04890326410531998,0.050157204270362854,-0.04566743224859238,-0.027136607095599174,-0.012610997073352337,-0.02942858822643757,0.05833031237125397,0.01800372451543808,-0.01083835307508707,-0.05585883930325508,-0.03937506675720215,-0.03676963225007057,-0.033337730914354324,0.01202086266130209,0.05627472698688507,-0.019798260182142258,0.0257998276501894,-0.005942135117948055,-0.07309477031230927,-0.005449239164590836,0.0006837856490164995,-0.003879687050357461,0.06566134840250015,-0.04086751118302345,0.05732250586152077,-0.10162543505430222,-0.09971486777067184,-0.07166827470064163,0.01518499106168747,-0.11998119950294495,0.04754661023616791,-0.09865804761648178,-0.0694420337677002,-0.013002599589526653,-0.012789265252649784,0.02463335171341896,0.03849279507994652,0.043579716235399246,0.07773775607347488,-0.02640596032142639,-0.03307180106639862,-2.303309365458972e-8,-0.024898586794734,0.06872200220823288,0.10607117414474487,0.017236897721886635,-0.07818374037742615,-0.020728114992380142,0.006425703875720501,-0.046521589159965515,-0.026240825653076172,0.02084781788289547,0.033502716571092606,0.07021410763263702,0.1145826056599617,0.046948645263910294,0.011133584193885326,0.01927275024354458,0.04850839078426361,0.04656317085027695,-0.03965764865279198,-0.037741608917713165,0.030074354261159897,-0.013885939493775368,0.007633853238075972,0.042617134749889374,0.04425514116883278,0.025231199339032173,0.016256636008620262,0.0031071172561496496,0.0244581438601017,0.042254962027072906,0.06373623013496399,-0.005415492691099644,-0.05977172404527664,0.004107302986085415,-0.05038934201002121,-0.10901907831430435,0.009721231646835804,0.01619596965610981,-0.044306185096502304,0.01035164576023817,-0.0338825099170208,-0.018582265824079514,-0.07592165470123291,0.024647120386362076,-0.015832964330911636,0.00806345883756876,0.05714315176010132,-0.06589090079069138,-0.008721308782696724,0.006759569048881531,0.05002550408244133,-0.04195079952478409,0.09774365276098251,-0.028566032648086548,-0.033387888222932816,-0.023576080799102783,0.040150340646505356,-0.0004563199763651937,0.0228386539965868,-0.045481495559215546,0.02988305687904358,0.011272995732724667,-0.01627887599170208,-0.04134836792945862]},{"text":"Nicola attends to the fire._) PETKOFF. (_to Raina, teasing her affectionately_).","book":"Down and Out in Paris and London","chapter":67,"embedding":[-0.01446145586669445,0.007818290963768959,0.009126409888267517,0.003912639804184437,-0.02515542507171631,0.047222983092069626,0.13123731315135956,-0.04131421819329262,0.006797653157263994,-0.005926819983869791,-0.06493612378835678,-0.07529422640800476,-0.12776917219161987,0.01928057335317135,-0.031938496977090836,0.022173335775732994,-0.008818666450679302,-0.024388417601585388,0.022902240976691246,0.09238164126873016,-0.08370662480592728,-0.044064100831747055,0.05619899183511734,0.06318865716457367,-0.02617434412240982,0.021045155823230743,0.07860706001520157,0.004422769416123629,0.008023804984986782,-0.01714552938938141,0.016003139317035675,0.0015881761210039258,-0.08052950352430344,0.0399184450507164,-0.04226325824856758,0.06928233057260513,0.029974007979035378,0.017105979844927788,-0.010651548393070698,0.03052554465830326,0.03604331612586975,-0.07184753566980362,-0.10654306411743164,-0.016948601230978966,0.0010330051882192492,-0.05089566484093666,0.03767282888293266,-0.01688549481332302,-0.008380953222513199,-0.050336603075265884,-0.01173335686326027,0.014015567488968372,-0.11039318889379501,0.012679154984652996,-0.003256584517657757,-0.04169946908950806,0.05566174536943436,-0.03799623250961304,0.0003193193406332284,0.00978280883282423,-0.06326842308044434,-0.0071123396046459675,-0.06637802720069885,0.10579704493284225,0.050522543489933014,-0.08503662794828415,-0.032431624829769135,0.030832462012767792,-0.05661693960428238,0.03511933237314224,0.03636961430311203,0.02268301323056221,0.05212624743580818,-0.04058297351002693,-0.1057407557964325,-0.005140840075910091,0.04261889308691025,0.013098245486617088,0.061737339943647385,-0.04519239068031311,0.04936731234192848,-0.027194811031222343,-0.008710386231541634,0.05275336280465126,0.031544845551252365,0.03999040648341179,-0.015731336548924446,-0.1469864845275879,0.02214922197163105,0.03621514514088631,-0.006528346799314022,0.04650354012846947,0.01477242074906826,0.08282802253961563,-0.043672122061252594,0.012856841087341309,0.04338228330016136,-0.07243657112121582,-0.03258274123072624,0.06448221951723099,-0.06775452196598053,0.0865621566772461,-0.06513494998216629,0.026710178703069687,-0.0742388665676117,-0.0582587793469429,-0.0883404091000557,-0.14199455082416534,0.017166078090667725,-0.004550958517938852,-0.040477387607097626,-0.05215727910399437,-0.02111513912677765,-0.05040942505002022,0.06690643727779388,-0.004515692591667175,-0.043747659772634506,-0.024399690330028534,0.01808791793882847,0.030886689200997353,-0.04692566394805908,0.09552571177482605,-0.04299348220229149,0.1066153421998024,-0.02594016306102276,0.027609972283244133,-0.0452180840075016,-4.604063131969469e-33,0.06600242108106613,0.027349630370736122,-0.013402172364294529,0.04328744858503342,0.021838365122675896,0.07950524240732193,-0.030151236802339554,-0.03109232895076275,-0.04379346966743469,0.0034019886516034603,-0.0679655522108078,-0.01221171673387289,-0.052952274680137634,-0.06293495744466782,-0.060539498925209045,0.06338334828615189,0.030980126932263374,0.036629050970077515,-0.07796569913625717,-0.010125196538865566,0.02011147513985634,0.10091835260391235,-0.06179949641227722,0.0396849699318409,0.015652621164917946,-0.005981391295790672,0.06574515998363495,0.007685027550905943,0.020780028775334358,0.025698713958263397,-0.018409471958875656,-0.024756653234362602,0.01465820986777544,0.01923011988401413,0.015542781911790371,-0.0736861526966095,-0.0216735377907753,-0.0804171934723854,-0.008982328698039055,-0.013705718331038952,-0.044422637671232224,-0.02865408919751644,0.03625469654798508,0.004102990031242371,-0.10424940288066864,-0.054903291165828705,0.01865694299340248,0.02850118838250637,0.025007136166095734,-0.056621573865413666,0.029456431046128273,-0.024404257535934448,0.01566283404827118,0.016381852328777313,-0.014853603206574917,0.002591343829408288,0.051689907908439636,-0.017790883779525757,0.12422154098749161,0.007799386978149414,0.056773073971271515,0.02772265113890171,0.045429326593875885,-0.0652395561337471,0.07382955402135849,-0.046968407928943634,-0.06793073564767838,-0.015556175261735916,0.09948114305734634,-0.029532860964536667,-0.05123266950249672,0.038406193256378174,0.03553011640906334,0.030532004311680794,0.0012602265924215317,-0.043077822774648666,-0.005129067227244377,0.013990015722811222,-0.013724284246563911,0.027853673323988914,-0.07580526173114777,-0.01278305146843195,0.01499776728451252,0.04097694158554077,-0.05009308457374573,-0.02973003499209881,0.023472798988223076,-0.08662096410989761,-0.043933603912591934,0.09292608499526978,-0.011128938756883144,0.002769970567896962,0.13873876631259918,-0.037383101880550385,-0.04790980741381645,1.9023836905143115e-33,0.07878048717975616,-0.02283134125173092,-0.10322094708681107,-0.025955867022275925,-0.0006966357468627393,-0.00361824338324368,-0.043493639677762985,-0.05496397241950035,0.03516474738717079,0.07178271561861038,-0.03883428871631622,-0.05414750427007675,0.046961426734924316,-0.023337727412581444,0.02309327758848667,-0.00471797538921237,0.05118265375494957,-0.01712963916361332,-0.03336934745311737,-0.05905138701200485,-0.00831303745508194,-0.015399507246911526,-0.08347030729055405,0.0399894118309021,-0.03697828948497772,-0.042164240032434464,0.13551495969295502,-0.03622361645102501,-0.10657642781734467,0.00810026004910469,-0.051736053079366684,-0.026847273111343384,-0.10641752928495407,0.021950367838144302,0.04857272654771805,0.08527003228664398,0.01504057552665472,-0.10293122380971909,-0.024327214807271957,0.006831773091107607,0.037858426570892334,-0.040792834013700485,0.06720750778913498,0.059261687099933624,0.019767627120018005,-0.03900494799017906,-0.011642562225461006,0.0702604129910469,0.011718976311385632,0.03721071034669876,-0.03359371796250343,-0.03225226327776909,-0.12128254026174545,0.06259491294622421,0.0480031818151474,0.0126937385648489,0.07901297509670258,-0.08792104572057724,0.032071202993392944,-0.00023604462330695242,0.04427587240934372,-0.08013388514518738,0.00900579895824194,0.018909644335508347,-0.044224463403224945,0.01646587811410427,-0.09348408877849579,0.003706935327500105,0.12429928779602051,0.009957906790077686,0.032450176775455475,-0.019814329221844673,-0.026831425726413727,0.006438106298446655,-0.0026686605997383595,0.07370235025882721,0.024686770513653755,0.014645620249211788,0.07921057194471359,-0.07002510130405426,-0.050968945026397705,-0.034743472933769226,-0.022983266040682793,0.04966721683740616,0.061632078140974045,-0.03305576741695404,0.06355919688940048,-0.03316596895456314,-0.007254946045577526,-0.0188309233635664,0.09719938039779663,0.00035800994373857975,0.14403878152370453,-0.06371382623910904,-0.023422962054610252,-2.121662845411265e-8,-0.04016878828406334,-0.04675004258751869,0.0070517235435545444,-0.01244861539453268,0.05556663125753403,-0.03996529057621956,0.010244963690638542,-0.015189852565526962,-0.06276395916938782,0.003469617571681738,0.03294442966580391,0.04345287010073662,0.11254727840423584,-0.04401763156056404,0.15822286903858185,0.06922431290149689,0.10366363823413849,0.027036277577280998,-0.0518849641084671,0.025389304384589195,-0.029196536168456078,0.04285390302538872,-0.012156616896390915,-0.009041564539074898,0.00620156479999423,0.02674873173236847,-0.002828473225235939,0.046561986207962036,0.03596324473619461,0.08858270198106766,0.04829546436667442,0.0074987150728702545,-0.0843718945980072,-0.02326088398694992,0.023981427773833275,0.05320308357477188,0.015889599919319153,0.002274620346724987,-0.020822305232286453,0.09068313986063004,-0.008720580488443375,-0.02891993522644043,0.02813885733485222,0.005530640948563814,-0.011210955679416656,0.05177786946296692,0.04129253327846527,-0.0599806047976017,0.011281139217317104,-0.021760163828730583,0.017543580383062363,0.02479751966893673,0.056422159075737,0.0094390157610178,0.007482504937797785,0.0069867209531366825,-0.03254547342658043,-0.019882971420884132,0.0042250556871294975,0.01372042577713728,0.018889421597123146,0.004321908112615347,-0.016583837568759918,0.014406825415790081]},{"text":"Turn your back. (_He turns his back and feels behind him with his arms for the sleeves.","book":"Down and Out in Paris and London","chapter":67,"embedding":[-0.014418896287679672,0.01753498800098896,0.030826684087514877,0.016971779987215996,-0.014334001578390598,0.0009013438830152154,0.05538196116685867,-0.1028803139925003,0.003658586647361517,-0.09324982017278671,-0.021649466827511787,-0.0720195546746254,-0.03872076794505119,0.031213609501719475,0.13331209123134613,-0.02730231173336506,0.04058355093002319,0.02030833438038826,0.03657308965921402,0.07807228714227676,-0.01418101042509079,-0.03268766775727272,-0.011923003941774368,-0.00955959502607584,-0.05799472704529762,0.0657893717288971,0.07095707207918167,-0.07202928513288498,0.02984795533120632,-0.013860845007002354,-0.09406545758247375,0.01108554471284151,-0.10200998187065125,-0.005745557136833668,-0.1546359360218048,0.08759723603725433,0.010573877021670341,-0.056875504553318024,-0.013343997299671173,0.02667342871427536,0.012981930747628212,0.008781703189015388,-0.019622880965471268,0.059921666979789734,-0.02147599868476391,0.0529194213449955,0.06674232333898544,0.07665843516588211,0.011633767746388912,0.03792079538106918,0.005105770193040371,-0.047698408365249634,-0.021500570699572563,0.033768050372600555,0.061203230172395706,0.061620552092790604,0.050047867000103,-0.02923274040222168,-0.016801131889224052,0.06483529508113861,-0.027296626940369606,-0.021945277228951454,-0.017343658953905106,0.03592803329229355,-0.04794519022107124,-0.0033832096960395575,-0.02156025357544422,-0.03266593813896179,-0.04793649539351463,0.045539580285549164,0.0920334979891777,0.03500300273299217,-0.021229593083262444,-0.04483351111412048,-0.0026092748157680035,-0.04458985477685928,0.000646917731501162,-0.02834075130522251,0.04961704462766647,0.060341887176036835,-0.05903995782136917,0.023714730516076088,-0.04291584715247154,0.07478984445333481,-0.02641293592751026,0.018494652584195137,0.03564384579658508,-0.022477464750409126,-0.10210008174180984,0.0457884818315506,-0.00028173907776363194,-0.04013776034116745,-0.007193357218056917,-0.01940722018480301,-0.017280366271734238,0.03993883728981018,-0.061028316617012024,0.024890536442399025,-0.06785022467374802,0.011768713593482971,0.10505443066358566,-0.0021744861733168364,0.11618675291538239,0.09726720303297043,-0.0047139255329966545,-0.031038625165820122,-0.030764542520046234,-0.046929311007261276,-0.04666794463992119,-0.05229963734745979,0.018365314230322838,-0.10059669613838196,-0.011056403629481792,-0.025460967794060707,0.02695639804005623,-0.015418171882629395,0.037049684673547745,0.002653095405548811,-0.0653059184551239,0.05293244495987892,-0.006188076455146074,0.034102991223335266,0.02756146900355816,-0.05294698476791382,-0.06810936331748962,-0.048596397042274475,0.02839103899896145,-7.103251090032514e-34,0.07203317433595657,0.05514701083302498,0.029086340218782425,-0.006493355147540569,-0.03149912878870964,-0.021391715854406357,0.012857559137046337,-0.02005806379020214,-0.04269109666347504,0.06162690743803978,0.04758781939744949,0.09909638017416,0.045790549367666245,0.049096621572971344,-0.08180490136146545,-0.05227009579539299,0.003892485983669758,-0.004653165116906166,0.02767891064286232,-0.05069505795836449,0.07089743763208389,-0.027750164270401,0.02974548190832138,0.03308219835162163,-0.020229389891028404,-0.03680238872766495,-0.056521400809288025,-0.09313677996397018,-0.023995015770196915,0.003813667455688119,0.0019122889498248696,0.08304808288812637,-0.02983228489756584,-0.030182303860783577,-0.006434816401451826,0.06088022515177727,-0.03135880082845688,0.04970331862568855,-0.03957854211330414,0.019905779510736465,-0.03558501601219177,0.02088557556271553,-0.09572170674800873,-0.01908368244767189,-0.019134242087602615,0.01580827310681343,0.04875164479017258,0.012392529286444187,0.04209062457084656,-0.025210706517100334,0.02356322482228279,0.010340461507439613,-0.04394952952861786,-0.051079198718070984,-0.06657414138317108,0.02627566270530224,0.03181963413953781,0.07675323635339737,-0.025130586698651314,0.011131453327834606,0.07420389354228973,-0.007298079319298267,0.0016639241948723793,-0.027078799903392792,-0.08149733394384384,-0.11811304092407227,-0.0483490414917469,-0.04118756577372551,0.017346607521176338,-0.021605582907795906,-0.0013863223139196634,0.032295823097229004,-0.04490877315402031,0.0432053878903389,-0.06678503751754761,-0.05218333378434181,-0.029206685721874237,0.0476696752011776,-0.0058236392214894295,-0.09936518967151642,-0.00573523947969079,-0.0008673955453559756,-0.011725206859409809,0.05103342607617378,0.02494851127266884,0.007691300939768553,-0.04917449876666069,-0.032843682914972305,-0.035627804696559906,0.030437657609581947,-0.03160976245999336,-0.01872490718960762,0.03784259408712387,-0.036345429718494415,0.005120760761201382,-1.9617108904003124e-33,0.08351142704486847,0.016042910516262054,0.01868579536676407,0.004917455371469259,-0.1057950034737587,-0.1293114423751831,-0.04623942822217941,0.019245129078626633,-0.03498692810535431,-0.0019881390035152435,0.032007355242967606,0.021997034549713135,-0.03142591193318367,0.04435763508081436,0.06344714015722275,0.027301307767629623,0.05617048963904381,-0.02056368812918663,-0.023096513003110886,0.09851168096065521,-0.003750883974134922,-0.009733382612466812,0.08679395169019699,0.0502462275326252,-0.07433921843767166,-0.02771051600575447,0.1752609759569168,-0.051488246768713,0.07541784644126892,-0.05442861095070839,-0.004808055702596903,-0.11045827716588974,0.010740164667367935,0.040016647428274155,-0.0595318004488945,0.04217639937996864,-0.11454661935567856,-0.05130473151803017,-0.006938325706869364,0.01623603329062462,-0.00007069539424264804,0.011442313902080059,0.009736191481351852,-0.001492523355409503,0.008784922771155834,0.022313574329018593,-0.05702660605311394,0.03651585429906845,-0.05878657475113869,-0.0057940357364714146,0.017633382230997086,0.008596266619861126,0.009158361703157425,-0.020496046170592308,-0.0013710209168493748,0.04628371819853783,0.031840648502111435,0.09214796870946884,0.0010220948606729507,0.007025215309113264,0.01658676005899906,-0.005849098786711693,0.08026459813117981,-0.0005590032669715583,-0.05641131103038788,0.02386360801756382,-0.08535052835941315,-0.023179715499281883,-0.016653209924697876,-0.039417050778865814,-0.005841926205903292,0.0971846729516983,0.0198225025087595,-0.011974906548857689,0.019185582175850868,0.014091127552092075,0.050557445734739304,-0.13647577166557312,0.04281628504395485,-0.09021157771348953,-0.026708368211984634,-0.07886471599340439,0.011247405782341957,-0.010629985481500626,-0.016921352595090866,0.058401986956596375,0.010783014819025993,-0.008407949469983578,-0.04434583708643913,-0.07446548342704773,-0.02543303370475769,0.03346405178308487,0.05595744028687477,0.06115357205271721,0.09488871693611145,-2.5248983348546972e-8,-0.10186372697353363,-0.08655527979135513,0.07105638086795807,-0.06785788387060165,-0.06335055828094482,0.13433855772018433,-0.05039876699447632,-0.043338626623153687,-0.07426228374242783,-0.10107120871543884,0.016105232760310173,0.024444017559289932,0.06241096183657646,0.02766825631260872,0.05761808156967163,0.07715120166540146,-0.07248809188604355,0.04207064211368561,-0.00725914491340518,-0.013464758172631264,-0.047482579946517944,0.010628663934767246,0.05357435718178749,0.08068661391735077,0.0727640688419342,0.050667036324739456,0.01693936064839363,-0.002023749053478241,-0.02609250694513321,0.0020094220526516438,0.14658677577972412,-0.04390467330813408,-0.054581742733716965,-0.024695686995983124,0.033341944217681885,0.06952351331710815,0.028958112001419067,0.04174657166004181,0.05634510517120361,-0.014122343622148037,-0.011432367376983166,0.000540869019459933,-0.0654965341091156,0.0016210911562666297,-0.11734950542449951,0.005223716609179974,0.14160557091236115,0.03295235335826874,-0.006201669108122587,-0.05303296819329262,0.0477961003780365,-0.06356579810380936,0.02388758957386017,0.013790611177682877,0.008256319910287857,-0.026616310700774193,-0.04231685400009155,0.002348381094634533,0.008367408998310566,0.04141585901379585,0.04116358980536461,0.006375852040946484,-0.05795428529381752,0.018775183707475662]},{"text":"Your photograph, with the inscription: “Raina, to her Chocolate Cream Soldier—a souvenir.” Now you know there’s something more in this than meets the eye; and I’m going to find it out. (_Shouting_) Nicola!","book":"Down and Out in Paris and London","chapter":68,"embedding":[-0.030520567670464516,0.07571050524711609,0.04044867306947708,0.03789636120200157,0.031593307852745056,0.029929108917713165,0.1544228494167328,-0.014138692989945412,-0.03108605556190014,-0.01823882944881916,-0.018945833668112755,-0.10210171341896057,-0.008041514083743095,-0.043947484344244,-0.04306599497795105,0.053705185651779175,-0.000947798602283001,-0.022285720333456993,0.022836051881313324,0.03496360778808594,-0.04703853279352188,-0.021692868322134018,0.06085696071386337,0.1138034537434578,-0.05140303447842598,0.11643662303686142,0.05615490302443504,-0.04570990428328514,-0.0719996765255928,-0.05168306827545166,-0.03877139836549759,-0.02545366995036602,-0.005955805070698261,0.05316627025604248,0.02379618212580681,0.08729299157857895,0.03699011355638504,0.009416889399290085,0.0542362742125988,0.012284058146178722,-0.04244504123926163,-0.0331866517663002,-0.02917415276169777,0.02469686046242714,0.07051259279251099,0.006610195618122816,0.049147993326187134,0.04923785477876663,0.028544705361127853,0.03195006027817726,-0.034952517598867416,-0.004550376906991005,-0.07576137036085129,-0.10181455314159393,-0.005028558429330587,-0.018994947895407677,0.017599882557988167,-0.03206544741988182,0.015039277262985706,0.05338773503899574,-0.050578780472278595,0.028949744999408722,-0.024348244071006775,0.08981607854366302,0.057466115802526474,-0.06765812635421753,0.002627213718369603,-0.039015382528305054,-0.036862198263406754,-0.004397893324494362,0.031258724629879,0.04917747899889946,0.03852070868015289,-0.0028194638434797525,-0.08650210499763489,-0.012563505209982395,0.04427553340792656,-0.015339294448494911,0.024034922942519188,0.03286667913198471,0.03247157111763954,-0.010550844483077526,0.048770710825920105,0.06612122803926468,-0.04942014068365097,0.006181962788105011,0.03514077141880989,-0.1591542810201645,0.015680750831961632,-0.08396723121404648,-0.026675544679164886,-0.059099894016981125,-0.01720927283167839,0.06105159595608711,-0.006251733750104904,-0.01675819233059883,-0.010586845688521862,-0.025673627853393555,-0.021383678540587425,0.10161557048559189,0.03106783889234066,-0.017358677461743355,-0.036360565572977066,-0.020844997838139534,-0.026137076318264008,-0.021419404074549675,-0.07709959149360657,-0.049249548465013504,0.050537411123514175,-0.026637515053153038,0.004627309273928404,-0.004047716967761517,-0.04440682381391525,0.004714580252766609,-0.052964720875024796,-0.008481715805828571,-0.03347034007310867,-0.058412130922079086,0.03359334170818329,0.035009194165468216,-0.030974172055721283,0.02064533531665802,-0.07846000045537949,0.06429760158061981,-0.0681772530078888,-0.020550843328237534,0.054844580590724945,-6.542102137538113e-33,0.019609611481428146,0.02679489739239216,0.09173819422721863,0.07008672505617142,0.08304034918546677,0.01063859649002552,0.0046526771038770676,-0.04862118512392044,-0.11322839558124542,-0.03302690014243126,-0.007375881541520357,0.003349439939484,-0.0461934469640255,0.09027203172445297,-0.06087927520275116,0.05525381118059158,-0.020115824416279793,-0.04198151454329491,0.08458397537469864,-0.013382766395807266,-0.07371001690626144,0.009264103136956692,-0.03067423775792122,0.03778396546840668,-0.0014006290584802628,0.04594707861542702,0.06142313405871391,0.010457422584295273,0.08463598787784576,0.021075185388326645,0.023757828399538994,0.07940199226140976,0.08605457842350006,-0.0630304291844368,0.022333044558763504,-0.04256408289074898,-0.025668663904070854,-0.08519303798675537,-0.08067510277032852,0.03042730689048767,0.012956813909113407,-0.01036394014954567,-0.007944365963339806,0.024577368050813675,-0.13535325229167938,-0.020976169034838676,0.004114530980587006,0.018942512571811676,0.01782403700053692,-0.07515531778335571,-0.009671402163803577,0.0073301298543810844,-0.04482471942901611,0.026380298659205437,-0.028237756341695786,-0.054252754896879196,-0.002473595319315791,0.022000452503561974,0.08100912719964981,-0.07315235584974289,0.10452331602573395,0.010342618450522423,0.072147436439991,0.024938566610217094,0.028947021812200546,-0.0891895443201065,-0.0673004686832428,0.01166443806141615,0.04835359379649162,-0.016016675159335136,-0.03966279327869415,0.1034906879067421,0.03847070038318634,-0.020433885976672173,-0.04504600912332535,0.026902124285697937,0.0015588789246976376,0.025700459256768227,0.02657640539109707,0.004161863587796688,-0.09039182960987091,0.005172883626073599,-0.002300083637237549,0.004212225787341595,-0.010924868285655975,-0.009290294721722603,0.03240557760000229,-0.10395842790603638,-0.0874648168683052,0.07072596251964569,-0.07363156974315643,0.04449772462248802,0.007053650915622711,-0.06155681237578392,-0.08599024266004562,2.4922019400348103e-33,0.02924032136797905,-0.02179897576570511,0.02768603339791298,0.03218158707022667,0.04221690073609352,-0.01291346549987793,-0.013867726549506187,0.06305760890245438,0.03937165066599846,0.10935380309820175,0.004266241565346718,-0.05725380405783653,0.0016836700960993767,-0.04439320042729378,0.020302865654230118,0.0022942840587347746,0.05261552706360817,0.06352638453245163,-0.06135263293981552,-0.05691986531019211,-0.06354199349880219,0.03406978026032448,0.012189854867756367,-0.04498051106929779,-0.06681440025568008,0.036552801728248596,0.1373971849679947,-0.07085251808166504,-0.08570387959480286,-0.056689176708459854,0.0042647309601306915,-0.07522697746753693,-0.05866294354200363,0.023029863834381104,-0.0014978013932704926,0.04327971115708351,0.044145818799734116,-0.1328205168247223,-0.02125537395477295,0.022143783047795296,-0.08235761523246765,-0.053272705525159836,0.033578526228666306,0.0984082892537117,0.06386914849281311,-0.08354956656694412,-0.03232422471046448,0.030522922053933144,0.09578677266836166,0.07721984386444092,0.028883187100291252,-0.04587401822209358,-0.011558824218809605,0.017402304336428642,-0.03000195510685444,-0.047272730618715286,-0.03205699846148491,-0.05428545922040939,0.09463678300380707,0.04454605653882027,0.02568206377327442,-0.03128505125641823,-0.09254520386457443,-0.0098703159019351,-0.016867611557245255,-0.03170568495988846,-0.06274845451116562,0.005558177828788757,-0.009000936523079872,0.05555941164493561,0.04153358191251755,-0.005001791287213564,-0.024532930925488472,0.07423723489046097,0.05226658657193184,-0.016283398494124413,0.08140965551137924,0.04783543571829796,0.04174734279513359,-0.052566852420568466,-0.03167114406824112,-0.0873216837644577,0.004921915475279093,0.0994415283203125,0.1076594740152359,-0.057486388832330704,0.024502763524651527,0.007213619537651539,-0.000693981593940407,0.019672857597470284,0.010476200841367245,0.009014438837766647,-0.0028598729986697435,-0.08661051094532013,0.033627599477767944,-3.5560709932269674e-8,0.013079659081995487,-0.0656307265162468,-0.0828016996383667,-0.026821747422218323,0.04492802545428276,-0.04739198833703995,0.028109604492783546,-0.0548701211810112,-0.05402301996946335,-0.05443164333701134,0.03843563795089722,0.03955960273742676,-0.004757966846227646,-0.01928543485701084,0.04237787052989006,0.0397467315196991,0.034672949463129044,0.03672168776392937,-0.02262943983078003,-0.021747564896941185,-0.02074844390153885,-0.014751712791621685,0.08083152025938034,-0.06713654845952988,-0.05820785462856293,0.0445525087416172,-0.010189970023930073,-0.0039256056770682335,-0.07939592003822327,-0.011326901614665985,0.0076372940093278885,0.04782713204622269,-0.024187279865145683,-0.04475374147295952,-0.015607934445142746,0.02611413411796093,-0.0016152369789779186,-0.023820078000426292,-0.01692204922437668,-0.005104202311486006,-0.021739652380347252,-0.01672212779521942,0.01452123187482357,0.043211087584495544,0.008583254180848598,0.04990507289767265,0.051178012043237686,0.014869551174342632,-0.0581137053668499,0.05878724157810211,-0.055523160845041275,-0.024363696575164795,0.04218253120779991,0.12642987072467804,-0.06010379642248154,-0.08359120041131973,0.07417682558298111,-0.052794199436903,0.026626484468579292,0.02940782532095909,0.06307867169380188,-0.03529654070734978,-0.10101297497749329,-0.02766023389995098]},{"text":"Then I’m not. (_Turning to the others._) Come: do you think I don’t see it all? (_Goes to Sergius, and slaps him on the shoulder._) Sergius: you’re the chocolate cream soldier, aren’t you?","book":"Down and Out in Paris and London","chapter":68,"embedding":[0.040703002363443375,-0.032668329775333405,0.06253069639205933,-0.007981101982295513,0.04061147943139076,-0.019587669521570206,0.1317535638809204,-0.012768378481268883,0.025332612916827202,-0.05172722041606903,-0.0285506509244442,-0.10662786662578583,-0.07215085625648499,0.018720446154475212,0.04213782772421837,-0.03160787373781204,0.035969119518995285,-0.01857680082321167,0.02804502844810486,0.0729382261633873,-0.0015441225841641426,0.03954259678721428,0.04655805602669716,-0.01459939032793045,-0.03953570872545242,0.023944828659296036,0.04943246394395828,0.018053622916340828,-0.06296554207801819,0.0447024330496788,-0.11848229169845581,-0.013406245037913322,-0.10173588991165161,-0.009322754107415676,-0.0022066833917051554,0.04264064133167267,0.08148050308227539,-0.02888304553925991,0.05316644906997681,-0.019705863669514656,0.0042197611182928085,0.028467509895563126,-0.026367442682385445,0.0070585221983492374,0.027285663411021233,-0.048458635807037354,-0.001725045032799244,-0.014913689345121384,-0.024239733815193176,-0.0633590891957283,-0.0907815545797348,0.024446764960885048,-0.01801457442343235,0.07091435045003891,0.04922345280647278,-0.006566919386386871,0.05498884990811348,-0.06513994187116623,0.08568460494279861,0.011991213075816631,-0.1062934622168541,0.007052293512970209,0.04422349855303764,0.10331286489963531,0.03523743152618408,-0.014205491170287132,-0.008414290845394135,-0.05069328472018242,-0.11607671529054642,0.15401485562324524,0.004337163642048836,0.04093354940414429,0.02465207129716873,0.04895944148302078,-0.06088672950863838,-0.03015805594623089,0.0381268747150898,-0.015217590145766735,0.049863919615745544,0.04088747128844261,-0.036359064280986786,-0.061570338904857635,0.019976850599050522,0.065245620906353,-0.06381566822528839,-0.007864799350500107,0.04941893741488457,0.024038489907979965,-0.012381224893033504,0.0259123295545578,-0.01887134276330471,0.01493809837847948,-0.00020083488197997212,0.06107278913259506,-0.055204927921295166,-0.03963176906108856,-0.07228345423936844,0.00009508347284281626,-0.11335114389657974,0.09846648573875427,0.024749726057052612,-0.024923406541347504,0.0862107053399086,-0.05065957456827164,-0.016628138720989227,0.039530541747808456,-0.03859688341617584,-0.04574008658528328,-0.06843792647123337,-0.05592767894268036,-0.03349033743143082,-0.07205596566200256,-0.012559698894619942,-0.0025090696290135384,0.035109683871269226,-0.008927939459681511,0.05663244426250458,-0.08857011049985886,-0.04033562168478966,0.11900898069143295,0.04576921463012695,0.026369472965598106,-0.0037879261653870344,0.14430516958236694,-0.020675504580140114,-0.01289711520075798,-0.03954493999481201,-7.416687566965157e-33,0.03968511521816254,-0.00004973396426066756,0.046089574694633484,-0.007798515725880861,-0.04973490536212921,0.010026092641055584,-0.05164064094424248,0.02821829915046692,0.01977410726249218,0.03938472643494606,-0.08607583492994308,0.06251110136508942,-0.041768137365579605,0.050384439527988434,-0.042795948684215546,0.06622414290904999,-0.01183343306183815,0.003966225311160088,0.08069685846567154,0.028498610481619835,-0.04214002937078476,0.0351032130420208,-0.0196398738771677,0.0569365993142128,-0.051975272595882416,-0.008720251731574535,0.0015280466759577394,0.004826490301638842,0.022636380046606064,0.026637930423021317,-0.013079955242574215,-0.024168677628040314,0.0703088566660881,-0.007791996002197266,0.018273718655109406,0.008201567456126213,-0.0239324439316988,0.005178650841116905,-0.11728737503290176,-0.03442555293440819,-0.09921719878911972,0.02819548174738884,-0.06587602943181992,0.030547868460416794,-0.09807292371988297,-0.053650204092264175,-0.005791568662971258,0.006234082859009504,-0.06437913328409195,-0.0538095124065876,-0.04040152579545975,0.03919672220945358,0.0840233564376831,0.013741699047386646,0.03418255224823952,-0.08025103062391281,0.003070312784984708,0.030118603259325027,0.02315666526556015,0.012996758334338665,-0.04138421267271042,-0.035506829619407654,0.0373699776828289,-0.022302625700831413,0.052459992468357086,0.04393323138356209,-0.018418990075588226,0.055770743638277054,0.051983531564474106,-0.03718889132142067,-0.023962581530213356,0.022598976269364357,-0.09165959060192108,0.027225852012634277,-0.0031112476717680693,-0.045495469123125076,0.0011599685531109571,0.03514781966805458,0.009281529113650322,-0.010610298253595829,0.003553729737177491,-0.03464103862643242,-0.09791506081819534,0.05466005578637123,0.014104790985584259,0.0015625932719558477,-0.009559099562466145,-0.03776182979345322,-0.032032955437898636,0.050826143473386765,-0.07822143286466599,-0.009642787277698517,0.04257780686020851,-0.008998777717351913,-0.11757837980985641,3.901785705247787e-33,-0.015812238678336143,0.01566886715590954,-0.01652386784553528,-0.00014256578288041055,-0.07967789471149445,-0.0011020697420462966,0.01583293452858925,0.02050068974494934,0.006473524495959282,0.0485198050737381,-0.025189144536852837,-0.04398783668875694,0.06937568634748459,-0.05811889097094536,0.050079867243766785,-0.03252257779240608,-0.0006057920400053263,0.05282871052622795,0.05132949352264404,-0.03216983377933502,-0.0696738064289093,0.10514987260103226,-0.028239063918590546,0.03798353672027588,-0.030272312462329865,0.04910765215754509,0.09448983520269394,0.025786086916923523,-0.0821036696434021,0.0018133927369490266,0.0519031286239624,-0.07953360676765442,-0.03950502350926399,-0.07493104040622711,0.013891393318772316,0.08075182139873505,-0.016060469672083855,-0.04198240116238594,0.04034942016005516,0.015448536723852158,-0.07818252593278885,-0.03899501636624336,-0.0025994423776865005,0.039829839020967484,-0.025769684463739395,-0.05818069726228714,-0.028099600225687027,0.05585123226046562,-0.015255156904459,0.06800124049186707,-0.12720122933387756,-0.022767651826143265,-0.014984804205596447,-0.0653216615319252,0.0071808407083153725,0.08901012688875198,-0.015210338868200779,0.02324863336980343,-0.01689022034406662,-0.020063623785972595,-0.0051861051470041275,-0.02564696967601776,0.0324307344853878,-0.0630154088139534,0.014694200828671455,-0.00935530848801136,-0.027521690353751183,0.0368807390332222,0.015930866822600365,-0.04489950090646744,-0.009244090877473354,-0.03922548145055771,-0.12821312248706818,-0.01634257286787033,0.049800824373960495,-0.011046823114156723,0.035773515701293945,-0.02512659877538681,-0.012714878655970097,-0.14942815899848938,0.0028893561102449894,-0.08676324039697647,0.08947056531906128,0.026464207097887993,-0.006944396998733282,-0.0007230102200992405,0.012623325921595097,0.07232827693223953,0.04716992378234863,0.0434727780520916,0.08767689019441605,0.025316905230283737,0.033861204981803894,-0.019741155207157135,-0.010227903723716736,-4.266265207775177e-8,0.015094367787241936,0.05479856953024864,0.06344154477119446,-0.016882695257663727,-0.05965660512447357,0.06431983411312103,-0.08778642863035202,-0.05400478094816208,-0.07891707867383957,-0.027340039610862732,0.07751880586147308,0.05404025688767433,-0.0032512752804905176,-0.040161632001399994,0.07166113704442978,0.05873415246605873,-0.04965148866176605,-0.07763179391622543,-0.04498402774333954,-0.06473259627819061,-0.0712699368596077,0.00351338810287416,0.03972451761364937,0.03814566135406494,-0.01928548514842987,0.06934965401887894,-0.014384623616933823,-0.06917180120944977,-0.04260408133268356,0.0017807986587285995,0.07928775250911713,0.051327530294656754,-0.1269555240869522,-0.01682928390800953,0.021028993651270866,0.011377898044884205,-0.029278457164764404,-0.016169773414731026,0.04667586460709572,0.016229253262281418,0.01698700711131096,0.06365588307380676,-0.0018655300373211503,0.09321866184473038,0.009382001124322414,0.08870254456996918,0.06565061956644058,-0.053917162120342255,-0.027109112590551376,0.002936490811407566,-0.05600965768098831,-0.06912490725517273,-0.019312094897031784,0.06715624779462814,0.019642570987343788,0.01504856999963522,0.008691243827342987,0.06536564230918884,0.005641886033117771,-0.01789851114153862,0.141584113240242,-0.019371885806322098,0.0018126353388652205,-0.074952132999897]},{"text":"My late friend Stolz told you the story at Peerot.","book":"Down and Out in Paris and London","chapter":68,"embedding":[0.037317074835300446,0.08215010911226273,-0.051721204072237015,0.10118792206048965,-0.010675720870494843,0.003810754744336009,-0.011587663553655148,0.015514576807618141,-0.05009970813989639,-0.015341561287641525,0.04235400632023811,0.10071384161710739,0.02414204180240631,-0.0030064729508012533,0.04054037109017372,-0.012518939562141895,-0.03600281849503517,0.028092684224247932,0.03392365202307701,-0.08466751128435135,0.05008931830525398,-0.05409704148769379,0.03362579643726349,0.012696846388280392,0.012351090088486671,0.010716910474002361,-0.03928879275918007,0.008550512604415417,-0.029441295191645622,-0.09569822996854782,-0.023291468620300293,0.021511679515242577,-0.01685202494263649,-0.03823886439204216,0.0028395378030836582,0.06411556899547577,0.020670399069786072,-0.04800441488623619,-0.05080295726656914,0.0009247695561498404,0.05062500387430191,-0.02087782509624958,0.022441087290644646,0.04391152411699295,-0.06430748850107193,0.0013454791624099016,-0.01841002330183983,0.0009429584024474025,-0.03756996989250183,-0.08385095745325089,-0.021794777363538742,-0.02042105421423912,0.030851464718580246,-0.04120708629488945,0.037188004702329636,0.03975047171115875,-0.018505236133933067,0.04511675238609314,0.05035645514726639,-0.0865442305803299,-0.010452650487422943,0.0017868425929918885,-0.07926841080188751,0.03322442248463631,0.09094127267599106,0.04186204820871353,0.017384903505444527,0.016742605715990067,0.006531508639454842,0.018976299092173576,0.013945423066616058,0.00513436459004879,-0.019641393795609474,0.009791207499802113,-0.08876780420541763,0.029164321720600128,0.05901552364230156,-0.02269355207681656,-0.051110923290252686,0.018127338960766792,-0.057795558124780655,0.016231706365942955,-0.04394351318478584,0.053687941282987595,-0.034727200865745544,-0.08659789711236954,-0.015489217825233936,-0.04935159534215927,0.021700195968151093,0.017669282853603363,0.024707579985260963,-0.05566836893558502,-0.10108403861522675,0.05601537227630615,-0.0009522406617179513,-0.017112821340560913,-0.05689100921154022,0.01741175726056099,-0.04339747875928879,0.04687783494591713,-0.0033995239064097404,0.010234687477350235,0.12948936223983765,0.06652940809726715,0.06512165069580078,0.007801546715199947,-0.042172860354185104,-0.007967956364154816,0.009020822122693062,0.015326974913477898,-0.04532498121261597,0.006984832230955362,0.004005032125860453,0.032811589539051056,0.1176748052239418,0.05458288639783859,0.06251946836709976,0.03917437046766281,-0.06100168451666832,-0.055545683950185776,-0.012784530408680439,0.12877996265888214,-0.02286510355770588,0.030222581699490547,-0.04041019454598427,-0.036277081817388535,0.06257376074790955,-2.364559600253826e-33,0.025069668889045715,-0.023723198100924492,0.01291392557322979,-0.004681613761931658,0.08752515912055969,0.01562657579779625,-0.04701608791947365,0.04895710200071335,-0.04568055644631386,0.03518923744559288,-0.010388398543000221,-0.028804320842027664,0.016620183363556862,-0.05824986845254898,-0.033491235226392746,-0.02094474621117115,-0.07758163660764694,0.03797347471117973,0.1067778542637825,0.02644944190979004,0.07317443192005157,-0.034771472215652466,-0.04398635774850845,-0.0016987533308565617,-0.058745190501213074,0.04453325644135475,0.01990632340312004,-0.010610894300043583,0.08442463725805283,0.06201210618019104,0.009459072723984718,0.029858248308300972,0.051608070731163025,-0.02534102462232113,0.021625591441988945,0.06394074112176895,-0.05530419945716858,-0.10365701466798782,-0.040210552513599396,0.010943541303277016,0.06806410849094391,-0.07649501413106918,-0.07339145988225937,-0.027598541229963303,-0.04557086154818535,-0.04304126277565956,-0.07117622345685959,-0.032660335302352905,-0.0579347163438797,-0.07293042540550232,-0.03264324367046356,0.07286432385444641,-0.07265372574329376,0.001134136226028204,-0.002899882150813937,0.07660787552595139,0.06820645928382874,-0.051290906965732574,0.0681385025382042,0.06476650387048721,0.12931451201438904,0.07026809453964233,-0.001390160177834332,-0.059147607535123825,-0.018541524186730385,-0.009315898641943932,-0.01899893209338188,-0.036533478647470474,0.024349389597773552,-0.08401982486248016,-0.03423135355114937,0.023813363164663315,-0.047123994678258896,0.012313956394791603,0.005152266938239336,0.043499551713466644,-0.06052350252866745,0.02576589025557041,0.0639696717262268,-0.0538809634745121,0.01070904266089201,-0.017856620252132416,-0.09758543223142624,-0.01374464575201273,-0.03658173605799675,-0.01003970019519329,0.029684003442525864,-0.090891033411026,-0.04226057603955269,0.02455992065370083,-0.006995608564466238,-0.06643671542406082,0.02411719225347042,-0.041956182569265366,0.016132567077875137,1.8494998814083402e-35,-0.04973694682121277,-0.019648000597953796,0.028391899541020393,0.0027382264379411936,0.14517512917518616,-0.09009455144405365,-0.040778521448373795,0.05240955576300621,0.0404367633163929,0.061607059091329575,-0.028975099325180054,-0.04368961229920387,0.03519248589873314,0.013504712842404842,0.09906670451164246,-0.0010818731971085072,0.05813232436776161,0.03607822582125664,-0.004281442612409592,0.011287497356534004,0.024327050894498825,0.026796378195285797,-0.019536776468157768,0.041218627244234085,0.03199029713869095,0.01774812489748001,0.10085733979940414,-0.062338441610336304,-0.1114380955696106,-0.021626761183142662,0.10395000129938126,-0.03239404037594795,-0.07450441271066666,-0.004537716507911682,-0.04566767439246178,0.07604768872261047,-0.08605089038610458,0.00526462635025382,0.017234625294804573,-0.1638323962688446,0.08283538371324539,-0.034360289573669434,-0.020670060068368912,-0.04704245179891586,0.02669372595846653,0.0834084153175354,0.024569261819124222,0.040141161531209946,0.020236680284142494,0.021178418770432472,-0.010728110559284687,0.1007300615310669,0.010269169695675373,-0.024018840864300728,-0.0010831390973180532,-0.07848291099071503,-0.02455245517194271,-0.09306087344884872,0.01882825419306755,0.0006245236727409065,0.013182862661778927,-0.005380971357226372,-0.08352107554674149,0.06656464189291,0.07757572829723358,-0.12143934518098831,-0.021533643826842308,-0.01280597411096096,-0.013389688916504383,0.0074113947339355946,0.023530319333076477,0.05549938231706619,-0.07762004435062408,0.0804075375199318,0.027859101071953773,0.014360010623931885,-0.10662275552749634,0.04669812321662903,-0.06301853060722351,-0.04014988988637924,-0.003893307177349925,0.026657797396183014,0.0757652148604393,0.009738675318658352,0.02969292923808098,-0.07493814080953598,0.08985594660043716,0.042830515652894974,0.01302336622029543,0.03536728397011757,-0.06890504062175751,0.007780891843140125,-0.009626772254705429,-0.006124997977167368,0.09232155233621597,-2.2261108512111605e-8,0.0057121096178889275,0.06548605859279633,0.008968525566160679,-0.03693711757659912,0.07293769717216492,0.05647597089409828,0.004337125923484564,0.022524097934365273,-0.005166677292436361,0.09143085032701492,-0.10751759260892868,-0.026223883032798767,0.03218797966837883,-0.019380537793040276,0.05019725114107132,0.010019803419709206,0.08144063502550125,-0.1079990342259407,0.04262881353497505,-0.07584714889526367,0.05276397243142128,0.022144462913274765,0.06516233831644058,-0.01215735450387001,-0.054088298231363297,0.05465703830122948,0.0012199197662994266,-0.033180419355630875,-0.03441321477293968,0.011936070397496223,-0.00009028991189552471,0.014159687794744968,-0.05228960141539574,-0.04752181097865105,0.0278097465634346,0.042979646474123,0.08031436800956726,-0.0025976416654884815,0.003475701902061701,0.014673532918095589,-0.01840333640575409,-0.06524994969367981,0.08120638132095337,0.05164306238293648,-0.004395816940814257,0.08990256488323212,-0.009640228934586048,-0.11149381846189499,-0.016676820814609528,0.010607465170323849,-0.024529477581381798,0.0017568320035934448,-0.054314833134412766,0.04647562652826309,0.057880278676748276,-0.08377395570278168,-0.07940402626991272,0.0004782715404871851,-0.056858886033296585,-0.06612842530012131,0.0488436333835125,-0.014602486975491047,-0.031802937388420105,0.016183603554964066]},{"text":"I never was married in my life.","book":"Down and Out in Paris and London","chapter":69,"embedding":[0.020442122593522072,0.06976936012506485,0.047913603484630585,0.11676634103059769,-0.002523864386603236,-0.005172319710254669,-0.005406248848885298,-0.04496689513325691,0.10668668150901794,-0.0318894200026989,0.026276325806975365,0.014948508702218533,0.036160074174404144,-0.07398978620767593,-0.027363402768969536,-0.006041489075869322,-0.03749503940343857,-0.09896276891231537,-0.014414601027965546,0.03175139054656029,-0.09491395950317383,0.009200413711369038,-0.004072259180247784,0.008062921464443207,-0.0013783395988866687,-0.04949978366494179,-0.037767257541418076,0.007176507730036974,-0.06411804258823395,-0.003000155556946993,-0.00008500442345393822,0.027941910549998283,-0.05423019826412201,0.05257438123226166,0.008147608488798141,-0.07485942542552948,-0.042146310210227966,0.1020316556096077,0.06556442379951477,0.026330308988690376,-0.03597892075777054,0.012422347441315651,0.05698460713028908,-0.026225050911307335,0.03898962214589119,-0.013382239267230034,-0.012153669260442257,-0.061383575201034546,-0.04125833511352539,0.041628818958997726,-0.09087864309549332,-0.0005380760412663221,0.009884215891361237,0.023121237754821777,0.026037314906716347,0.018880873918533325,-0.056683577597141266,0.06639721989631653,0.03229658678174019,0.05964677408337593,0.017429547384381294,0.020530205219984055,0.015233764424920082,-0.01210619043558836,-0.025919519364833832,0.14109556376934052,-0.021317793056368828,0.02534610964357853,0.051947593688964844,0.011735353618860245,-0.04455311596393585,0.03854421526193619,-0.02737782523036003,0.06360258907079697,-0.07188059389591217,-0.051409147679805756,0.053289756178855896,-0.020725645124912262,0.029936935752630234,0.05483973026275635,-0.14592118561267853,-0.041476666927337646,-0.02018817514181137,0.06055600568652153,0.023829087615013123,0.008118690922856331,0.0500677265226841,0.03625085577368736,-0.018745342269539833,-0.03703438863158226,-0.10212015360593796,-0.004054689314216375,-0.026278559118509293,-0.04464387148618698,-0.02829572930932045,0.03417845442891121,-0.0333513468503952,0.018688924610614777,-0.056854311376810074,0.07148831337690353,-0.030347544699907303,0.013744549825787544,0.043145641684532166,0.06343889236450195,0.007742918096482754,0.1167491227388382,0.043484143912792206,0.043954744935035706,0.011303296312689781,-0.007743843365460634,-0.054726649075746536,-0.04652450978755951,0.032712794840335846,0.03470650315284729,-0.06015263497829437,-0.0391748808324337,-0.006051136180758476,-0.006741609890013933,-0.00103067047894001,0.08654357492923737,-0.06073927506804466,0.027462497353553772,-0.05974173918366432,0.015780122950673103,-0.08327142894268036,-0.09685786068439484,0.0961523950099945,-4.0785392806511646e-33,0.014605119824409485,-0.07006074488162994,0.051813747733831406,0.047806404531002045,-0.06155551224946976,0.015987111255526543,-0.020186621695756912,-0.046522676944732666,0.06957556307315826,-0.0012565673096105456,0.11944638192653656,0.019099272787570953,-0.017927225679159164,-0.07184700667858124,-0.005881060846149921,0.09327825903892517,-0.018015088513493538,0.028323059901595116,0.10025660693645477,0.0323893167078495,-0.032276254147291183,0.028339847922325134,-0.04554083198308945,-0.007022065110504627,0.0001255333045264706,-0.025011684745550156,0.044862307608127594,-0.01007309090346098,0.00933193601667881,0.0218663290143013,-0.04053855687379837,0.04702027142047882,0.12073115259408951,-0.08827831596136093,0.052509769797325134,-0.004536597989499569,-0.05046750232577324,-0.02668130025267601,-0.08052483946084976,0.060712847858667374,-0.08795393258333206,-0.05490254610776901,0.0785045474767685,-0.08224861323833466,-0.04855089634656906,0.005705688148736954,0.047231629490852356,0.0826992467045784,-0.005020814016461372,-0.019020797684788704,0.016691550612449646,-0.014128717593848705,0.014483995735645294,0.054553817957639694,-0.021055001765489578,-0.03594037890434265,0.02414870262145996,-0.047373104840517044,-0.09132403880357742,0.05734632909297943,-0.09320282191038132,-0.093651682138443,0.0017809516284614801,0.01625901833176613,-0.044404372572898865,0.05381501466035843,0.02811885066330433,-0.01794254407286644,0.010058709420263767,-0.05046023428440094,0.020318562164902687,0.015467175282537937,-0.03531301021575928,-0.013769221492111683,0.022260917350649834,-0.07598234713077545,-0.042356256395578384,-0.06330227851867676,-0.017254779115319252,-0.0006641552899964154,0.029473567381501198,0.027992576360702515,-0.011465899646282196,-0.007841978222131729,0.11393100768327713,-0.04412534087896347,0.062060218304395676,0.06345028430223465,0.0005018232041038573,0.0626770555973053,0.08510896563529968,0.011312119662761688,0.022305715829133987,-0.10138886421918869,-0.022046929225325584,2.3856499892884933e-33,-0.043140433728694916,0.029412077739834785,0.01131585706025362,0.01722360961139202,0.01591554842889309,0.031000467017292976,0.003935353364795446,0.032109279185533524,-0.025586893782019615,-0.01299019530415535,0.12077592313289642,-0.025590822100639343,0.08288036286830902,0.05550587922334671,0.04310203716158867,0.046627357602119446,-0.04128607362508774,-0.0452103465795517,-0.01960686966776848,-0.04516873136162758,0.008750873617827892,0.05100102722644806,0.004826481454074383,0.1007482036948204,-0.036920156329870224,0.03476288542151451,-0.06468550115823746,0.08571720123291016,-0.018876250833272934,0.002277050167322159,-0.052048057317733765,0.028238888829946518,-0.07242781668901443,-0.09750375151634216,0.06139799579977989,-0.006782509386539459,-0.02984965592622757,0.00802402663975954,0.025724001228809357,-0.08190036565065384,-0.10581563413143158,0.02695985697209835,-0.05762655660510063,0.055693671107292175,-0.023919297382235527,-0.021373968571424484,0.021328475326299667,-0.024151615798473358,0.04398392140865326,0.05415109172463417,-0.07306455075740814,0.04840018227696419,-0.06935764849185944,-0.07185681909322739,-0.0057167899794876575,-0.000024633167413412593,0.08493652194738388,0.02870253473520279,-0.061474986374378204,0.025539005175232887,-0.062015071511268616,-0.002531069563701749,-0.040863897651433945,0.09104292839765549,-0.02233484759926796,0.04181632399559021,-0.007078683003783226,0.06982844322919846,-0.056159939616918564,-0.007702603470534086,-0.0013819063315168023,-0.05246812850236893,0.031947530806064606,0.059556376188993454,0.01622440665960312,-0.05374084785580635,-0.050712618976831436,0.042435359209775925,0.004238016437739134,-0.03323150426149368,-0.04808950796723366,0.05110105127096176,-0.006293372251093388,0.043433405458927155,-0.04701580852270126,0.0034726166632026434,-0.022746456786990166,-0.09458736330270767,0.004491817206144333,0.040009357035160065,-0.004096711054444313,-0.0305609293282032,0.06010688096284866,0.001226097927428782,0.02713950164616108,-1.5263299957268828e-8,-0.013888044282793999,0.03455846756696701,0.027239130809903145,-0.04350437596440315,-0.05143103003501892,0.046041540801525116,0.10035095363855362,-0.030597593635320663,-0.056725114583969116,0.03053109347820282,-0.073797307908535,0.04786744341254234,-0.024889405816793442,-0.04320160299539566,0.014890942722558975,-0.028732184320688248,0.13863418996334076,-0.07656528800725937,-0.02601662091910839,-0.012561539188027382,0.0025358409620821476,-0.016682207584381104,-0.08758465200662613,-0.05269361287355423,-0.02228611893951893,0.07076956331729889,0.16656357049942017,-0.05650271847844124,0.0544363372027874,0.07246793806552887,0.029077637940645218,-0.007909557782113552,0.015346703119575977,-0.021838050335645676,-0.06124437227845192,0.07850421965122223,0.07661218196153641,-0.002418659394606948,-0.020843252539634705,0.06198519840836525,-0.09543686360120773,0.0400238111615181,-0.009456596337258816,-0.0366893969476223,-0.028029905632138252,0.0652734711766243,0.040233317762613297,0.04350665956735611,-0.09492035210132599,0.001278858631849289,0.017328253015875816,0.07725965231657028,-0.07734989374876022,0.009726244024932384,-0.0010686229215934873,0.02035057544708252,0.0902371034026146,-0.0024724879767745733,-0.0017219564178958535,-0.037913329899311066,0.05065319314599037,-0.010061691515147686,-0.061476483941078186,-0.04106985777616501]},{"text":"Not engaged to you, you scoundrel!","book":"Down and Out in Paris and London","chapter":69,"embedding":[0.07186201214790344,-0.02501819282770157,0.02937728352844715,0.035969991236925125,-0.0547175332903862,0.012375890277326107,0.032770585268735886,-0.04136268049478531,0.030148928984999657,-0.0019340688595548272,-0.03767750784754753,-0.027707086876034737,0.026741275563836098,0.03464260324835777,0.011448604054749012,-0.015123417600989342,-0.019779153168201447,-0.030147099867463112,-0.027425622567534447,0.08428598940372467,-0.0288121048361063,0.012354283593595028,0.0026143179275095463,0.03244161978363991,0.01180568989366293,0.031478505581617355,0.04593099653720856,0.01519211009144783,-0.06397449970245361,0.07475753873586655,0.06404811143875122,0.11489655822515488,-0.09453000873327255,0.00723264180123806,-0.010156202130019665,-0.06272523105144501,-0.04787081107497215,0.015512358397245407,0.08832169324159622,-0.024018991738557816,-0.022439509630203247,-0.008025281131267548,0.06652162224054337,-0.03497370705008507,-0.02418631874024868,0.0034718294627964497,-0.01887504570186138,0.010520263575017452,-0.0908617377281189,-0.0009548363741487265,-0.12923701107501984,0.004670910537242889,-0.00464088749140501,0.0706605389714241,-0.0038687041960656643,0.007677876856178045,-0.0025525058154016733,0.016585327684879303,0.07603945583105087,0.0013818314764648676,0.008591480553150177,0.04874086380004883,-0.034853432327508926,0.06798312813043594,-0.07863565534353256,0.009109057486057281,0.036443550139665604,0.04634542390704155,0.024951014667749405,0.09884531050920486,0.010187653824687004,0.0031957151368260384,-0.0768081396818161,0.009280998259782791,-0.05074199661612511,-0.044957276433706284,0.008414795622229576,-0.07052557915449142,0.13888654112815857,-0.03419092297554016,-0.029552211984992027,-0.07009437680244446,-0.021878108382225037,0.0017590532079339027,0.01829303801059723,-0.06335999816656113,-0.027822302654385567,-0.01673675701022148,0.025746284052729607,0.018506424501538277,-0.07584145665168762,-0.02057180181145668,0.018455075100064278,-0.039879657328128815,-0.08092674612998962,0.06889578700065613,-0.03707447275519371,-0.04182516410946846,-0.17049632966518402,0.08273965120315552,-0.027492966502904892,0.07107057422399521,-0.04388651251792908,-0.0002727769024204463,0.01906457357108593,0.09676552563905716,-0.10258318483829498,-0.08249897509813309,-0.02005712501704693,-0.03684906288981438,-0.03449801728129387,-0.041247978806495667,0.011070330627262592,0.011973404325544834,0.027993250638246536,0.08100050687789917,-0.008516482077538967,0.018643321469426155,0.056750938296318054,0.009153085760772228,0.05979195609688759,0.005008907523006201,-0.06745985895395279,0.06673379987478256,-0.0449504554271698,-0.17926479876041412,0.008985255844891071,-2.495487630416351e-33,0.034373946487903595,-0.01136605255305767,-0.01006488036364317,0.06995628029108047,-0.05190715566277504,-0.029000071808695793,-0.011165475472807884,0.012745102867484093,-0.02969055436551571,0.023787207901477814,0.02438291348516941,0.1158563643693924,0.003238625591620803,0.038352031260728836,-0.04895864054560661,0.052516382187604904,-0.010919671505689621,0.07695607095956802,0.05483414977788925,0.07352178543806076,-0.056960850954055786,-0.06773073226213455,-0.07903973758220673,-0.03843654692173004,-0.03060796670615673,-0.06166912242770195,0.006329827941954136,0.03140240162611008,0.0338759608566761,0.03168490156531334,-0.010409364476799965,0.08834008872509003,-0.014946401119232178,-0.041916269809007645,0.07445652782917023,0.0019205963471904397,-0.035039760172367096,-0.06589216738939285,-0.07471966743469238,0.026408590376377106,0.07290522009134293,-0.014370263554155827,-0.08621121942996979,0.010991834104061127,-0.04438668116927147,0.012235704809427261,0.025714335963129997,0.062460996210575104,0.09704605489969254,-0.001942076371051371,-0.017502576112747192,0.01480670366436243,0.11473067104816437,0.0798928290605545,0.05916360020637512,-0.011047418229281902,0.07820852100849152,-0.020350737497210503,0.02223513461649418,-0.004297316074371338,-0.06953452527523041,-0.03829699382185936,-0.11672835797071457,-0.03023681789636612,0.005150422919541597,-0.016131887212395668,-0.012150930240750313,0.012713409960269928,-0.029330991208553314,0.011727271601557732,-0.009698809124529362,0.11135399341583252,0.004556883126497269,-0.04632842540740967,-0.02816428802907467,-0.021687449887394905,-0.0018908092752099037,0.014237537980079651,0.04998796433210373,0.012797098606824875,0.0418659932911396,0.014024662785232067,-0.07030060142278671,-0.005450213793665171,-0.015253194607794285,-0.04791530594229698,0.0153080178424716,-0.02714396081864834,0.05518413335084915,0.03891284018754959,-0.008311291225254536,0.012149874120950699,-0.02587948739528656,-0.0357847735285759,0.01320256944745779,2.337472353320042e-33,-0.03311412036418915,0.000853912380989641,-0.00974271073937416,0.0728820338845253,0.01638270728290081,0.03503933176398277,0.0504627525806427,-0.005745244212448597,0.051974106580019,-0.05521946772933006,0.019546693190932274,-0.00019348929345142096,0.07177069038152695,0.002920156344771385,0.10408812761306763,-0.07740741223096848,0.05172378942370415,-0.017727892845869064,0.03739365190267563,-0.0152967544272542,-0.00013680812844540924,-0.0361282080411911,0.017355110496282578,0.0008403155370615423,0.03681567311286926,0.012054854072630405,0.04739069566130638,0.010289790108799934,-0.029325857758522034,0.040401890873909,0.0384819321334362,-0.033505529165267944,-0.1328272521495819,-0.04073791950941086,0.03501993790268898,0.06152765452861786,-0.10580214112997055,0.011160781607031822,-0.03448592126369476,-0.11924496293067932,-0.05699576437473297,0.023434197530150414,-0.006015289109200239,0.07353834062814713,0.013216591440141201,-0.04363657906651497,0.07089335471391678,0.03033982776105404,0.11737152189016342,0.0070895543321967125,0.00433704536408186,0.016813380643725395,0.03388608992099762,-0.08670590072870255,0.06691111624240875,-0.0666162297129631,0.0670529454946518,-0.025470426306128502,0.008717348799109459,-0.03931359574198723,-0.034629128873348236,0.08952650427818298,-0.028809761628508568,0.056792017072439194,0.09795275330543518,-0.001971959136426449,-0.07111364603042603,0.03979303315281868,-0.004696250893175602,-0.009317109361290932,0.06315914541482925,-0.02743547037243843,-0.015957141295075417,0.020628508180379868,0.044626615941524506,0.014246325939893723,-0.06664890795946121,-0.07579181343317032,-0.01294864621013403,0.01019876915961504,0.05009811744093895,0.01715218834578991,0.08428618311882019,-0.0610850565135479,-0.05921163782477379,-0.009944720193743706,-0.10985849797725677,-0.013571910560131073,0.031953781843185425,0.028039079159498215,-0.04328244552016258,0.0020048371516168118,0.05790317803621292,-0.011037253774702549,0.06925269216299057,-1.920539816069322e-8,-0.016027722507715225,0.020776372402906418,-0.020330160856246948,-0.06035511940717697,-0.009628460742533207,0.006841263733804226,-0.007388164289295673,-0.09385009109973907,0.01078714244067669,-0.0186545941978693,-0.026178618893027306,-0.0677931010723114,0.08273506164550781,0.020848950371146202,0.04336538910865784,0.011669888161122799,0.0852816253900528,-0.09305600076913834,-0.06855683028697968,-0.02374466322362423,0.027481039986014366,0.026226332411170006,-0.02980542741715908,-0.047044262290000916,-0.05398758128285408,0.10084947198629379,0.1424178034067154,0.07827296108007431,0.1218331828713417,0.06257506459951401,-0.015800872817635536,-0.04600554704666138,-0.04732585325837135,-0.003486980451270938,-0.06465059518814087,-0.02257952280342579,-0.05604171007871628,0.05920721963047981,0.037155043333768845,-0.025031495839357376,-0.04236800968647003,-0.021666355431079865,-0.04901577904820442,0.03425385057926178,-0.026512539014220238,0.08457024395465851,0.08642298728227615,-0.0121624069288373,-0.03635968267917633,-0.02307208441197872,-0.07206190377473831,0.018092826008796692,-0.006492176093161106,0.004917014855891466,-0.026908017694950104,-0.014477744698524475,0.03666779026389122,0.026384994387626648,0.009985807351768017,-0.0071035283617675304,0.00030508797499351203,-0.07592130452394485,-0.062452301383018494,0.01953868567943573]},{"text":"This is either the finest heroism or the most crawling baseness.","book":"Down and Out in Paris and London","chapter":69,"embedding":[-0.1247205063700676,0.04707607254385948,0.03919012099504471,-0.01863854005932808,-0.05203138291835785,-0.02895374596118927,-0.031238168478012085,0.001399562112055719,-0.08369889855384827,0.044300377368927,-0.03293580189347267,-0.03584089130163193,0.012899641878902912,0.08230741322040558,-0.06339610368013382,0.07015639543533325,-0.00707977544516325,0.10459434986114502,0.022802961990237236,0.016430893912911415,-0.008847953751683235,-0.007808298338204622,0.02982553280889988,0.0028412959072738886,-0.018288271501660347,0.06428982317447662,-0.04183255508542061,-0.015527916140854359,0.042925577610731125,-0.02800426445901394,-0.01661180704832077,0.017567235976457596,0.09213761985301971,-0.009477515704929829,0.06402842700481415,0.028195548802614212,0.01653905026614666,-0.014206581749022007,0.0316588394343853,-0.0067380438558757305,0.014531674794852734,-0.012989227660000324,0.005197514779865742,0.0514063723385334,-0.07053740322589874,-0.0525912344455719,-0.017580660060048103,-0.03843509033322334,-0.022061984986066818,-0.10562243312597275,-0.02199624851346016,-0.025375479832291603,-0.015162430703639984,0.014285806566476822,-0.022777074947953224,-0.047189563512802124,0.05595138296484947,-0.04061580076813698,0.030802909284830093,-0.006529969163239002,0.051525987684726715,0.10012999922037125,0.08827522397041321,-0.022572601214051247,0.024858547374606133,-0.08644136041402817,0.01239272952079773,-0.009074757806956768,-0.004585586953908205,0.08460934460163116,0.03895799443125725,0.008194624446332455,0.02724103443324566,0.023276709020137787,-0.04722125083208084,0.026422102004289627,0.023409806191921234,-0.03175700828433037,0.002105959225445986,0.04422210901975632,-0.06588104367256165,0.012939227744936943,0.07074879109859467,0.07496726512908936,-0.004869456402957439,-0.043700750917196274,0.007047949358820915,-0.07648017257452011,0.013168273493647575,0.03353586047887802,-0.04443647339940071,-0.05317524075508118,0.001928611658513546,0.04646308720111847,-0.01690603978931904,0.012216368690133095,-0.02199515700340271,-0.0015236340695992112,-0.1148691475391388,0.0402648039162159,-0.04314866289496422,-0.024565087631344795,-0.024479517713189125,-0.06873929500579834,0.07006881386041641,-0.03513875976204872,-0.014295573346316814,-0.013044035993516445,0.05881606787443161,-0.01050054281949997,0.00805080309510231,-0.05519651249051094,-0.00374473980627954,0.06174422428011894,-0.037871699780225754,-0.031694188714027405,-0.0959501639008522,-0.0073529877699911594,0.042051784694194794,0.08919312059879303,0.12512868642807007,0.0016648020828142762,0.020051050931215286,0.01850275509059429,0.02654430828988552,-0.1339259147644043,0.01058453880250454,-5.826301015652205e-33,0.08261656016111374,0.11804426461458206,-0.033294957131147385,-0.05522283539175987,0.06764847040176392,-0.011622175574302673,-0.019286734983325005,0.02040695957839489,0.006895082537084818,0.00011554556112969294,-0.10494545847177505,0.017603224143385887,0.020356398075819016,-0.01456749439239502,-0.173148974776268,0.02224484644830227,-0.06614638864994049,-0.01963401772081852,-0.02620677649974823,-0.023914439603686333,0.06743831187486649,0.0189738217741251,-0.016464034095406532,-0.03552670404314995,0.09303469210863113,0.019130267202854156,-0.03130331635475159,-0.04656532406806946,-0.061105191707611084,0.020049812272191048,0.02220669761300087,0.016867436468601227,0.043737102299928665,0.019360264763236046,0.038637351244688034,0.07234250754117966,0.04015358164906502,-0.03331391513347626,-0.09825175255537033,0.004229429643601179,-0.0014589898055419326,-0.040341440588235855,0.047549955546855927,-0.006161525379866362,-0.01854226179420948,0.005950557999312878,-0.029825329780578613,-0.008871810510754585,-0.005270666442811489,-0.02596607431769371,0.06480369716882706,0.08159717917442322,0.13966098427772522,0.008307992480695248,0.04004044830799103,0.05142547935247421,0.08639882504940033,0.003174138255417347,0.0013709281338378787,0.061317961663007736,0.03644995018839836,-0.025693949311971664,-0.03877527266740799,-0.06099535524845123,-0.00867175031453371,-0.09585413336753845,-0.04179644584655762,0.03349774703383446,-0.046240534633398056,0.04102121293544769,-0.08766364306211472,0.022549640387296677,0.03219479322433472,-0.06597042828798294,-0.11392234265804291,-0.037751566618680954,0.08799777179956436,-0.00005551498907152563,-0.061785679310560226,-0.06592776626348495,-0.025567850098013878,-0.021670352667570114,0.03452009707689285,-0.06286195665597916,0.06342199444770813,-0.013597022742033005,0.020435357466340065,-0.13142013549804688,-0.054095976054668427,0.12823747098445892,0.025890478864312172,-0.034871503710746765,0.03157034516334534,-0.07715947180986404,-0.07032658159732819,4.30918890469776e-33,0.008398179896175861,0.021841784939169884,0.021373601630330086,0.05832676962018013,-0.026970000937581062,-0.02045687846839428,0.004766537342220545,0.048730410635471344,-0.05480150133371353,0.062485601752996445,-0.0420382022857666,0.028404470533132553,0.035923682153224945,-0.017635371536016464,0.09693635255098343,-0.0034192600287497044,0.07701641321182251,-0.06940647214651108,0.020561113953590393,-0.031545381993055344,-0.01728825271129608,0.08374089002609253,-0.0985322892665863,-0.010223619639873505,-0.014794155023992062,0.06013590842485428,-0.008423740975558758,0.0009149411343969405,-0.006922855041921139,0.00911775603890419,0.01754189468920231,-0.02482088841497898,-0.05474511533975601,0.007024272810667753,0.019194835796952248,0.15481866896152496,-0.0944860428571701,0.02008136548101902,-0.008793934248387814,-0.017304347828030586,0.04014648124575615,-0.04714712128043175,-0.05476776883006096,0.051089998334646225,0.047025468200445175,-0.02782873436808586,0.039814796298742294,0.08298581838607788,-0.026475977152585983,-0.021279778331518173,-0.03909117728471756,-0.008739489130675793,-0.03529863804578781,0.04397197440266609,0.03717758134007454,-0.007770363241434097,-0.04836863651871681,-0.02577275037765503,0.00952180940657854,-0.07870045304298401,-0.0054320418275892735,0.02077905647456646,-0.08016636967658997,0.11848437786102295,-0.0425940565764904,-0.002670418005436659,-0.06700508296489716,0.028562013059854507,-0.16197821497917175,0.011223842389881611,-0.042241547256708145,0.005924581550061703,-0.0638735294342041,-0.029856016859412193,-0.0004938069614581764,0.011464245617389679,0.04735840484499931,-0.01887829601764679,-0.0030413505155593157,-0.045345887541770935,-0.04768650233745575,-0.08356358110904694,0.03371032699942589,0.03480195999145508,0.0948047786951065,0.07428252696990967,-0.0645429790019989,0.0242824275046587,0.04519856721162796,-0.026420006528496742,-0.022702768445014954,-0.012006712146103382,-0.005136881954967976,-0.04360571503639221,0.04819576442241669,-2.276748034546472e-8,-0.022290265187621117,0.012261170893907547,-0.07198923826217651,-0.046419963240623474,0.06791596114635468,0.01570061780512333,0.03291867673397064,-0.0012386171147227287,-0.031894851475954056,0.09430458396673203,-0.00415358180180192,-0.0022210890892893076,0.023116683587431908,0.0825968086719513,0.0987580269575119,0.05020074173808098,0.0035276717972010374,-0.04261253774166107,-0.04920976236462593,-0.003556410316377878,-0.0998506024479866,0.007411859929561615,-0.014790122397243977,-0.035981450229883194,-0.05252795293927193,-0.014351041056215763,-0.008729105815291405,-0.029353542253375053,-0.0648379996418953,0.12449363619089127,-0.01225214172154665,0.0046479287557303905,-0.05297189950942993,0.04395202919840813,0.05309145152568817,0.12990817427635193,0.06082382798194885,-0.006424613296985626,0.032162413001060486,-0.013629522174596786,0.014564082957804203,0.0935259610414505,0.004998103249818087,0.02361319214105606,0.0014436959754675627,0.020087245851755142,-0.009281785227358341,0.019680026918649673,0.019714461639523506,-0.010538493283092976,0.015822140499949455,-0.019649464637041092,-0.04460132494568825,0.06529414653778076,0.0768544152379036,0.02125980705022812,0.02293764241039753,-0.013592857867479324,-0.02799685113132,0.11460008472204208,0.04024059325456619,-0.005490270908921957,0.06104167550802231,-0.005739409010857344]},{"text":"You set them the example.","book":"Down and Out in Paris and London","chapter":70,"embedding":[0.016454653814435005,0.027059148997068405,-0.051927048712968826,0.034940190613269806,-0.07686003297567368,0.037551771849393845,-0.0378774031996727,0.010655751451849937,-0.0056414357386529446,-0.02322298102080822,0.05433450639247894,-0.04008892551064491,0.0318189337849617,-0.04286912828683853,0.050343483686447144,0.012577571906149387,-0.06756331771612167,0.0072881137020885944,-0.09951486438512802,-0.0004181182594038546,0.07056457549333572,-0.0726543590426445,0.0019531131256371737,-0.02076500467956066,0.030455298721790314,-0.03144880011677742,-0.002713035559281707,0.07582447677850723,0.102559395134449,-0.017048867419362068,-0.002314369659870863,-0.006254110485315323,0.06042446941137314,0.042372845113277435,-0.03245722874999046,0.04844936355948448,-0.059019431471824646,0.06470146775245667,-0.029144829139113426,-0.0018445753958076239,-0.004978352691978216,-0.05026358738541603,0.02198324166238308,0.0012397458776831627,-0.025553636252880096,-0.03768230229616165,0.03132970631122589,0.026421284303069115,0.01771952211856842,-0.035789407789707184,0.007127796299755573,-0.01788056269288063,-0.11684320122003555,0.05526501685380936,-0.009513397701084614,0.017138194292783737,0.0069015840999782085,0.0871228352189064,0.041311148554086685,-0.014613473787903786,-0.05399841442704201,-0.027984648942947388,-0.04467282444238663,0.07951974868774414,0.00046751793706789613,0.036905426532030106,-0.021223178133368492,0.02294069714844227,-0.05040428042411804,0.020362282171845436,-0.046024054288864136,0.039964478462934494,0.005959028843790293,0.0010573382023721933,-0.006537068169564009,0.052591778337955475,-0.021602628752589226,-0.011528616771101952,0.022915970534086227,-0.04462228715419769,-0.11755646020174026,-0.10361502319574356,0.03378426283597946,-0.005468412302434444,0.10475463420152664,0.060912180691957474,0.02595272660255432,-0.059507761150598526,0.03507257625460625,0.04311429336667061,-0.020988890901207924,-0.11287661641836166,-0.025517862290143967,0.006641712039709091,-0.04998483881354332,0.024057941511273384,0.012107661925256252,0.010059317573904991,0.02637329511344433,0.0925242081284523,-0.007894164882600307,-0.011162816546857357,0.05400224030017853,0.12052634358406067,-0.016072453930974007,-0.12503577768802643,0.03438982367515564,-0.03561786934733391,0.025656038895249367,-0.037663329392671585,0.025388579815626144,0.02329099178314209,0.01410633884370327,-0.004193807020783424,-0.01921689324080944,-0.0472036749124527,-0.06436963379383087,0.015663912519812584,-0.010238677263259888,-0.07933519780635834,0.028598476201295853,0.001167450100183487,0.018345138058066368,-0.021852562204003334,-0.12226983904838562,-0.024910295382142067,-0.03654040768742561,-6.397453149565615e-33,0.0488974004983902,-0.06557616591453552,0.05207158252596855,-0.004031346645206213,0.01049224752932787,-0.013027495704591274,-0.11991698294878006,0.03913155943155289,-0.0005533870426006615,0.06550063192844391,0.04380930960178375,0.002376310061663389,0.04894103854894638,0.095388263463974,-0.057388924062252045,0.000760955736041069,-0.03941730409860611,0.07774478942155838,-0.020099906250834465,-0.03421878069639206,-0.003509293310344219,0.04563456401228905,-0.022469311952590942,-0.0476529560983181,0.003263385035097599,0.07832810282707214,0.03003859706223011,0.03111540712416172,-0.0038405191153287888,0.029236925765872,0.046529676765203476,-0.0030803477857261896,-0.01046451460570097,0.04262242466211319,0.05045728385448456,0.06817826628684998,0.037741996347904205,0.02409359999001026,0.053850047290325165,-0.06628970056772232,0.05556401610374451,-0.0399010106921196,0.007087941747158766,-0.010466702282428741,0.029531138017773628,-0.007229510694742203,0.04888155311346054,0.06402665376663208,-0.022489195689558983,0.005447160918265581,-0.010578390210866928,0.03339157998561859,-0.09248077124357224,-0.00013159235822968185,0.05115076154470444,-0.04028509184718132,-0.03999227657914162,0.0013639603275805712,-0.012297520413994789,-0.053962983191013336,0.03184568136930466,0.009296535514295101,0.018884561955928802,0.06774555891752243,-0.0552193820476532,0.047857169061899185,-0.003323380136862397,-0.07258357852697372,0.05622735992074013,0.053614355623722076,-0.06967645138502121,0.04442363232374191,-0.046260908246040344,0.055117931216955185,-0.06534167379140854,-0.02416257932782173,-0.04187384620308876,0.042083196341991425,-0.05232209339737892,0.0008631166419945657,0.020373353734612465,0.01287935022264719,-0.07749149948358536,0.04423336684703827,0.029995249584317207,-0.09943915158510208,0.07142110913991928,-0.014041364192962646,0.04673212021589279,-0.08661171048879623,-0.023881820961833,0.027598625048995018,0.04573462903499603,-0.013251430355012417,-0.08729942888021469,3.519533676801595e-33,-0.058959562331438065,0.09222909063100815,-0.14878948032855988,0.004279471468180418,0.013737507164478302,0.04288697987794876,0.06550946086645126,-0.08886341750621796,0.025571465492248535,0.07702916115522385,-0.007155874278396368,-0.000006995028343226295,-0.11371771991252899,-0.08731051534414291,-0.007198621518909931,-0.09877299517393112,-0.016199031844735146,-0.016454137861728668,-0.01240723766386509,-0.021123182028532028,-0.08370918780565262,0.029005540534853935,-0.0011176109546795487,0.048490118235349655,0.03313753381371498,0.0012711059534922242,0.04024228826165199,-0.008723502047359943,0.021474141627550125,-0.05678990110754967,0.0001837931340560317,-0.006506040226668119,-0.15060438215732574,0.023658687248826027,-0.06282759457826614,-0.02900991588830948,-0.04078364372253418,0.030749918892979622,-0.016613641753792763,0.0355653278529644,0.03735712915658951,-0.0001116109051508829,-0.11043532192707062,0.10590849071741104,-0.0472608245909214,-0.0056018768809735775,0.07769617438316345,-0.041904695332050323,0.013677791692316532,-0.00003137555904686451,-0.04780605807900429,-0.04648754373192787,-0.015586522407829762,-0.035306405276060104,-0.023360300809144974,-0.029016923159360886,0.07551820576190948,-0.032195933163166046,0.05576413869857788,0.03332487866282463,-0.03846549987792969,-0.05641360580921173,0.04094269871711731,0.01942746527493,-0.006129835266619921,-0.030138516798615456,-0.09011206775903702,0.035733506083488464,0.00047166351578198373,-0.013531326316297054,-0.0426526814699173,-0.0442114882171154,0.014340715482831001,-0.1205550879240036,-0.029336698353290558,-0.09658375382423401,-0.00411018542945385,-0.03733767941594124,0.021377822384238243,-0.1059059351682663,0.05452905222773552,-0.00844714604318142,-0.01706605590879917,0.05840884894132614,-0.02736702561378479,0.040797971189022064,0.036421772092580795,0.03862805292010307,-0.018969185650348663,0.01076317485421896,0.01788451336324215,0.07615403831005096,0.07174089550971985,0.13297279179096222,-0.10850480943918228,-1.6721886098025607e-8,-0.039636533707380295,0.047323811799287796,0.16071902215480804,0.06573799252510071,-0.044892605394124985,-0.0250625628978014,-0.015244437381625175,0.050004564225673676,-0.0590994656085968,-0.1032424345612526,0.02989885024726391,0.03644108399748802,-0.004211916122585535,0.015523933805525303,0.10100296884775162,-0.015940753743052483,-0.015538452193140984,0.0051821316592395306,-0.05195219814777374,0.006477468181401491,-0.09006046503782272,0.040721744298934937,0.023980440571904182,0.040261007845401764,0.0931868776679039,0.0041713109239935875,0.02281910553574562,0.04314710572361946,-0.02524302527308464,0.12053041905164719,0.05974061042070389,0.056923527270555496,0.03226155415177345,-0.017963461577892303,0.02285221591591835,0.05716072395443916,-0.07296086847782135,0.060153037309646606,0.09962829947471619,0.02462076209485531,-0.030256012454628944,-0.06744163483381271,-0.06510568410158157,0.02477908693253994,0.03617238625884056,0.0440700426697731,0.01795034296810627,-0.06887180358171463,-0.010152208618819714,-0.0010571464663371444,-0.019623558968305588,0.055718034505844116,0.04525269195437431,0.00551735470071435,0.05577477812767029,0.009003324434161186,0.1272437870502472,-0.004692781716585159,0.024614758789539337,0.02887618914246559,-0.03542656823992729,0.07959628105163574,-0.01612355187535286,-0.022337112575769424]},{"text":"You can withdraw if you like.","book":"Down and Out in Paris and London","chapter":70,"embedding":[0.049215298146009445,-0.00040306150913238525,-0.011566383764147758,0.0004921565996482968,0.01578635536134243,0.030896175652742386,0.08947093784809113,-0.07500113546848297,0.03932739421725273,-0.035452790558338165,0.04205036163330078,0.07808315753936768,-0.02177555486559868,-0.011255958117544651,0.03842904418706894,-0.021131359040737152,0.041470423340797424,0.0077275861985981464,0.004677369259297848,0.0543675534427166,-0.038302674889564514,-0.038066454231739044,-0.08208122104406357,0.04387408494949341,0.07694333791732788,0.0494692400097847,-0.024291303008794785,0.056274764239788055,0.0001575528149260208,-0.06163845956325531,-0.01288945134729147,0.010221109725534916,-0.0881563052535057,-0.04853318631649017,-0.048812173306941986,-0.03789852187037468,-0.044795483350753784,0.08505232632160187,0.03615359589457512,-0.013867232948541641,0.019511865451931953,-0.01414306927472353,0.012172061018645763,-0.050304021686315536,-0.0028046604711562395,0.028419947251677513,-0.11247539520263672,-0.026408955454826355,0.03820564225316048,0.07954796403646469,0.036896467208862305,-0.005147183779627085,-0.0734441876411438,0.06261277198791504,-0.005145006813108921,0.0013750366633757949,0.039899516850709915,0.02453542686998844,0.010052895173430443,0.01560647040605545,-0.04529785364866257,-0.04584817960858345,-0.050395384430885315,0.039193037897348404,0.02030814066529274,0.036305982619524,-0.01593410223722458,-0.04748883843421936,0.05882648378610611,-0.017571769654750824,-0.04184792563319206,-0.09544315934181213,-0.03794752433896065,-0.06721113622188568,-0.006488753482699394,-0.003969212528318167,0.08622131496667862,-0.019795719534158707,0.04349546134471893,0.04263204336166382,-0.026370476931333542,0.006355741992592812,0.02009882777929306,-0.07253801822662354,-0.03870435804128647,-0.05650458112359047,-0.023071184754371643,0.02392713725566864,0.0680212527513504,-0.0075027430430054665,0.03496953472495079,0.10302890837192535,0.10499904304742813,-0.05091313645243645,0.0006006084731779993,-0.06366945803165436,-0.03606775775551796,0.0013995867921039462,-0.08785489946603775,0.05384219065308571,0.06424468010663986,0.06215793639421463,-0.10603169351816177,-0.043951500207185745,-0.015973510220646858,-0.052264098078012466,0.042889028787612915,-0.003725751070305705,0.027266617864370346,-0.05253047123551369,-0.07391516864299774,0.09619313478469849,0.11387908458709717,-0.004069957882165909,-0.04021270200610161,0.12115669250488281,-0.05211452767252922,0.013267755508422852,0.05630211532115936,0.037711001932621,0.03476977348327637,0.08524298667907715,0.000060286398365860805,0.02782057411968708,-0.06807668507099152,-0.026773490011692047,0.06859461963176727,-6.15867865550293e-33,-0.04559680446982384,0.005547503940761089,-0.01705438271164894,0.021068204194307327,0.024937164038419724,-0.04447874799370766,0.02088814787566662,0.0001430446864105761,-0.05800182372331619,-0.07587969303131104,-0.0026368247345089912,-0.03253516927361488,-0.010531323961913586,0.026118222624063492,0.05937200412154198,-0.06728840619325638,0.08078423887491226,0.012422002851963043,0.07462520897388458,-0.0022704980801790953,0.09397828578948975,-0.0862588882446289,-0.037038687616586685,0.04740990698337555,0.005868399981409311,-0.018289152532815933,-0.052505213767290115,-0.03662141039967537,0.03481309488415718,0.04325953871011734,-0.03529376909136772,0.009519176557660103,-0.0980004370212555,-0.06252724677324295,0.002707995241507888,0.0066995080560445786,0.0015741782262921333,-0.014525780454277992,0.02050430327653885,-0.06318270415067673,-0.038602475076913834,0.07595660537481308,-0.07688318938016891,0.08017071336507797,0.04184839501976967,0.002098945202305913,0.05495704710483551,-0.06794833391904831,-0.059301480650901794,0.05157926306128502,0.0090580303221941,-0.016933858394622803,0.0010860712500289083,0.03417903929948807,-0.06449800729751587,-0.046844009310007095,0.0038334582932293415,0.017278630286455154,0.005083383060991764,-0.02331106923520565,0.03650057315826416,0.036773763597011566,-0.04825615510344505,0.0015074914554134011,-0.11301290988922119,0.05932944640517235,-0.11970369517803192,-0.0007554385811090469,-0.12234483659267426,0.025463204830884933,-0.08063899725675583,0.02173498645424843,0.06727857142686844,-0.052937671542167664,-0.015775037929415703,-0.029734987765550613,-0.03079712577164173,0.020947473123669624,0.09895512461662292,-0.0063212038949131966,0.014429234899580479,-0.03938397020101547,0.00035925928386859596,0.02719973400235176,0.10256115347146988,0.04476075619459152,0.0865950807929039,-0.08154355734586716,0.055550865828990936,-0.046325039118528366,-0.05095489323139191,0.017389168962836266,0.07793180644512177,0.032871097326278687,0.020998356863856316,4.656166919069667e-33,-0.06722325086593628,-0.04340203106403351,0.00894414447247982,0.011244049295783043,-0.020418129861354828,0.061057332903146744,0.026506835594773293,0.08602690696716309,0.02417023479938507,0.07090681046247482,0.007596918381750584,0.05551351606845856,0.02635286934673786,-0.00009727455471875146,0.015398655086755753,-0.08868663012981415,0.008696690201759338,0.008578095585107803,-0.07646724581718445,0.014749004505574703,-0.06969401985406876,0.01212313398718834,0.040257807821035385,-0.021147049963474274,-0.018697986379265785,0.03836959972977638,-0.02089972421526909,0.034596383571624756,-0.022065460681915283,0.01721061021089554,0.043548405170440674,-0.009756875224411488,-0.11898792535066605,-0.005902317352592945,0.0024275118485093117,-0.031599149107933044,-0.08676895499229431,0.03796505555510521,-0.0934513583779335,0.08550649881362915,0.003045405261218548,-0.023282881826162338,0.026410434395074844,0.05571636185050011,-0.0461704358458519,0.038354285061359406,0.0864458829164505,-0.08068428933620453,-0.009781068190932274,0.07000672072172165,0.001258311909623444,0.003878883086144924,0.03918655589222908,0.05412500724196434,0.0017012268071994185,-0.00013047373795416206,0.03578370809555054,-0.019839001819491386,-0.01153175625950098,-0.04918405041098595,0.02366696111857891,0.05556793883442879,-0.030238553881645203,0.05038458853960037,0.14077219367027283,-0.06913945823907852,-0.06025608628988266,0.026644984260201454,0.06894874572753906,0.0010265104938298464,-0.006764533463865519,-0.06799689680337906,0.0331747829914093,-0.003135143080726266,0.0565386600792408,-0.02034975029528141,-0.019212106242775917,-0.042192187160253525,-0.02457229234278202,-0.049825169146060944,-0.03319674730300903,0.049503106623888016,-0.00030911742942407727,-0.026721006259322166,0.03096562623977661,-0.041921522468328476,-0.04544615000486374,-0.07616647332906723,0.021627312526106834,-0.012719657272100449,0.06711888313293457,-0.04323505610227585,0.08588866144418716,-0.011302167549729347,0.04719587042927742,-1.5692378951825958e-8,-0.053603388369083405,-0.06176532804965973,0.1585337370634079,0.08425524830818176,0.030195079743862152,0.007385884877294302,-0.08785446733236313,-0.007379061542451382,0.0023930359166115522,0.061205122619867325,0.17507968842983246,0.047938957810401917,-0.037205278873443604,-0.0673949345946312,-0.036151282489299774,-0.006920958869159222,0.06741195917129517,-0.02145269513130188,0.03830902278423309,0.027753429487347603,-0.09453828632831573,0.0007130688754841685,0.002107944106683135,0.0004801423638127744,-0.020608413964509964,0.048677679151296616,0.12998758256435394,0.08705230057239532,0.022391485050320625,-0.04261668026447296,-0.033430080860853195,-0.012959753163158894,0.055704180151224136,0.036757804453372955,-0.07596796005964279,-0.007826592773199081,-0.027658827602863312,0.00223716557957232,0.014361953362822533,-0.015159931033849716,0.022572573274374008,-0.07298482209444046,-0.008233734406530857,0.021128198131918907,-0.0930124968290329,0.024121956899762154,0.021631425246596336,-0.06761814653873444,0.03961155191063881,-0.01996695250272751,0.02578207105398178,-0.03093334287405014,0.04103592783212662,0.07677877694368362,0.042506203055381775,0.015079251490533352,-0.03809446468949318,-0.007319564465433359,-0.06866394728422165,-0.054279837757349014,0.06851816922426224,-0.02194843254983425,-0.010658962652087212,-0.04814763367176056]},{"text":"These heroics of yours have their practical side after all. (_To Louka._) Gracious young lady: the best wishes of a good Republican! (_He kisses her hand, to Raina’s great disgust._) CATHERINE. (_threateningly_).","book":"Down and Out in Paris and London","chapter":70,"embedding":[-0.0677332878112793,0.08262597769498825,0.008171936497092247,-0.02646647021174431,-0.020572364330291748,0.04890851676464081,0.050440263003110886,-0.07949256151914597,-0.0295348409563303,0.0006214031018316746,-0.029875529929995537,0.01397521048784256,0.01453031413257122,-0.07159500569105148,-0.0659693107008934,0.03255791217088699,0.004614286124706268,-0.022259505465626717,-0.02103007398545742,0.16561882197856903,-0.0949646383523941,-0.029513787478208542,0.043146762996912,0.0955263078212738,0.010752216912806034,0.02718714252114296,0.0910959541797638,0.0008564304444007576,-0.08673179894685745,-0.04110715165734291,-0.029110824689269066,-0.03728080168366432,-0.026015302166342735,0.025506822392344475,0.0402938574552536,0.028864042833447456,0.013015259988605976,0.05013111233711243,0.08217498660087585,0.03515587002038956,0.014956304803490639,-0.09458106756210327,-0.027218516916036606,0.021449435502290726,0.02134125493466854,-0.05844331905245781,-0.02275475114583969,0.02404644526541233,-0.0008063393761403859,-0.041823610663414,-0.003578369040042162,0.05146176740527153,-0.07114151120185852,0.004430335480719805,0.005927863530814648,-0.05116814002394676,0.043612875044345856,-0.03194709122180939,-0.006433977745473385,0.05431612953543663,-0.03686194866895676,0.05624072626233101,-0.016950663179159164,0.047998346388339996,-0.05849559232592583,-0.09834319353103638,-0.011801795102655888,0.05216250196099281,-0.1472952514886856,0.10137614607810974,-0.059365469962358475,0.06877423822879791,0.032495103776454926,-0.01567630097270012,-0.0976744145154953,-0.08135733008384705,0.008329899050295353,0.006297068204730749,0.03909032419323921,0.0026802129577845335,-0.03454212844371796,0.022705018520355225,0.009564475156366825,0.0851559042930603,-0.04459935426712036,-0.00973837822675705,0.0033733819145709276,-0.12548594176769257,0.05913044512271881,-0.049853213131427765,-0.05155198276042938,-0.03165184333920479,0.057907380163669586,0.024553563445806503,-0.03191857784986496,0.03969622030854225,0.011272990144789219,-0.12169342488050461,-0.08784489333629608,0.060488972812891006,-0.016676371917128563,-0.014149857684969902,-0.01555593404918909,-0.040298040956258774,-0.03358066454529762,-0.004997564479708672,-0.07322357594966888,-0.11119174212217331,-0.016055341809988022,-0.050478387624025345,0.05924054980278015,-0.049874886870384216,0.03535256162285805,-0.04189813882112503,0.0787009745836258,0.026970304548740387,-0.022448858246207237,-0.07453855872154236,-0.01862003095448017,-0.03823203220963478,-0.00426615122705698,-0.011355758644640446,0.030843863263726234,0.10068735480308533,0.051232196390628815,-0.03279555216431618,-0.04481007903814316,-3.308216159380226e-33,0.07532854378223419,0.0005405453266575933,-0.01618080586194992,0.04407574608922005,-0.03830808401107788,0.04730610176920891,-0.03920721635222435,-0.05043992027640343,-0.020200712606310844,-0.02046363428235054,0.016383592039346695,0.01804952695965767,-0.06327860802412033,0.006461805198341608,-0.12753090262413025,0.1162138506770134,-0.09947308152914047,-0.00017160455172415823,-0.0360826812684536,0.013616194948554039,0.05145616829395294,0.07115489989519119,-0.02404685877263546,-0.0031434001866728067,0.02590438537299633,-0.037233464419841766,0.048261795192956924,0.02291112020611763,-0.01119306217879057,0.022794313728809357,0.013923533260822296,0.04042428731918335,0.07678783684968948,0.02304055355489254,0.04936975985765457,-0.028196774423122406,-0.0641302764415741,-0.06220218166708946,-0.017971990630030632,0.035810139030218124,-0.011889240704476833,0.0303943008184433,0.05658992752432823,0.019894661381840706,-0.002899894490838051,-0.026665491983294487,0.0837649554014206,0.040469326078891754,0.04611039534211159,-0.04448370262980461,-0.045172255486249924,0.017543170601129532,0.027524489909410477,0.007600039709359407,-0.038322560489177704,0.004936676472425461,-0.012030595913529396,0.06788631528615952,0.05352313816547394,-0.07700089365243912,0.031934987753629684,0.008077581413090229,0.00021610951807815582,-0.11150844395160675,-0.0022788001224398613,-0.02539198473095894,-0.059089694172143936,0.08079247176647186,0.038137707859277725,0.0004907684051431715,-0.011719665490090847,-0.0024992565158754587,-0.021977238357067108,-0.0004837273445446044,-0.06563553214073181,0.007188932504504919,0.037495993077754974,-0.00933235976845026,0.05268372967839241,-0.014079710468649864,0.03793058544397354,0.032226916402578354,0.02179875783622265,-0.002171423053368926,-0.011708986014127731,-0.039705801755189896,0.03825429081916809,-0.16893965005874634,-0.08023262768983841,0.057323116809129715,-0.02634711004793644,0.03903670608997345,0.08260368555784225,-0.10141479969024658,-0.10979562252759933,-6.665418474437079e-34,0.05925742909312248,-0.03418739512562752,-0.026211142539978027,0.08202245086431503,0.12275885790586472,-0.04666784405708313,-0.051683951169252396,-0.052827075123786926,0.03846307843923569,0.030714580789208412,0.006310729309916496,0.019754601642489433,-0.049870461225509644,-0.002525969175621867,0.09608712047338486,-0.08103907108306885,0.03813594579696655,-0.0010279557900503278,-0.03811788558959961,-0.04682529345154762,-0.0004943335661664605,0.08019740134477615,-0.07733089476823807,0.002651684684678912,0.007936119101941586,-0.038892798125743866,0.05177697539329529,-0.03875903785228729,-0.05966801568865776,-0.02459787018597126,-0.010213833302259445,0.00484703341498971,-0.11044946312904358,0.01673256792128086,0.05908920615911484,0.026698142290115356,-0.014651075005531311,-0.027137145400047302,0.014187350869178772,-0.0033483055885881186,0.034762490540742874,-0.11073247343301773,0.1096065491437912,0.07977525144815445,0.0009326568688265979,-0.072666235268116,-0.05733193829655647,0.0112993149086833,0.01583840511739254,0.023091115057468414,-0.07342377305030823,-0.05899396538734436,-0.011748012155294418,0.07616839557886124,0.008053120225667953,-0.0560869425535202,0.04420281574130058,-0.044768426567316055,0.10536499321460724,-0.02383599802851677,-0.08798938989639282,-0.0008640170563012362,-0.02157577872276306,-0.021111123263835907,-0.050479985773563385,-0.04176948219537735,-0.04888403043150902,0.024549812078475952,0.009044929407536983,0.03602222725749016,-0.003692220663651824,-0.06498638540506363,-0.09470900148153305,0.007688154932111502,0.09765247255563736,0.02910761907696724,-0.06823165714740753,0.018257325515151024,0.010986517183482647,-0.0041482942178845406,-0.005699189845472574,-0.06431197375059128,-0.06330608576536179,-0.026856156066060066,0.03942880034446716,-0.004597667139023542,-0.016370292752981186,-0.0023983572609722614,0.0008260026224888861,0.06157970428466797,0.029253872111439705,-0.039509207010269165,0.12253470718860626,-0.04344997927546501,0.008119601756334305,-3.779530999281633e-8,0.03469280153512955,-0.018720775842666626,-0.019797930493950844,-0.024635586887598038,-0.0371701717376709,-0.06338488310575485,0.010765360668301582,-0.00885162502527237,-0.04140014946460724,0.04569739103317261,0.05849602445960045,0.09712572395801544,0.04870183393359184,0.013837790116667747,0.07224883884191513,0.013190272264182568,0.06304962933063507,-0.008565923199057579,-0.04386799409985542,-0.05013784021139145,0.027708815410733223,0.007925320416688919,0.026978373527526855,-0.038649607449769974,-0.04454636946320534,0.0666700229048729,-0.009778601117432117,-0.03566182032227516,-0.02437204122543335,0.09754037857055664,0.05756551772356033,0.03434685617685318,-0.10019174218177795,-0.03794602304697037,0.03510115295648575,0.10684794932603836,-0.07619676738977432,0.0204059649258852,0.059660330414772034,0.028011944144964218,0.042514532804489136,0.025750329717993736,-0.006600610446184874,0.00532878190279007,0.05083258077502251,-0.018752066418528557,0.03647257760167122,-0.02494853362441063,0.01049485057592392,-0.01778944581747055,-0.021708691492676735,-0.0020582263823598623,0.035846155136823654,0.046243343502283096,0.017292749136686325,0.011186017654836178,0.06520293653011322,0.03140239417552948,0.04150066524744034,0.023923378437757492,0.06628241389989853,0.03423147648572922,-0.036859817802906036,0.017809709534049034]},{"text":"I thought you were fonder of him than of Sergius.","book":"Down and Out in Paris and London","chapter":70,"embedding":[-0.0019403055775910616,0.06315348297357559,0.013964435085654259,-0.02105795405805111,-0.00005201206658966839,-0.024535683915019035,0.13427519798278809,0.10986486077308655,0.06055165454745293,-0.07017205655574799,-0.0478258840739727,-0.016935288906097412,-0.04781474173069,0.009523674845695496,0.08267387747764587,-0.06214214116334915,-0.011250126175582409,0.04412168264389038,-0.03466841205954552,0.053175751119852066,-0.000048505051381653175,0.029981320723891258,0.04903249070048332,-0.02730579301714897,-0.019084613770246506,0.0012171146227046847,0.035499267280101776,0.027294473722577095,0.0015123822959139943,0.06362185627222061,0.03746563568711281,0.0008062873384915292,-0.03228265047073364,-0.0448421947658062,-0.03108348324894905,0.015467124059796333,0.008480487391352654,0.0016435422003269196,0.006930902600288391,-0.05040103942155838,0.047170400619506836,0.052607301622629166,0.01963728666305542,0.022416988387703896,-0.11113397777080536,-0.07442411035299301,-0.02581506408751011,-0.013695930130779743,0.027274323627352715,-0.04095420613884926,-0.061945997178554535,0.035936661064624786,0.0542009174823761,-0.07030827552080154,-0.0034080594778060913,0.03516506031155586,0.006153535563498735,-0.057509467005729675,0.030603215098381042,-0.06609844416379929,-0.098149873316288,0.05289286747574806,0.05363660305738449,-0.038794733583927155,-0.005587923806160688,-0.1213591992855072,-0.03010418824851513,-0.030855704098939896,0.0014519969699904323,0.09609337151050568,0.011268035508692265,-0.006432723719626665,0.04003225266933441,0.016947513446211815,-0.07035242021083832,-0.01886568032205105,-0.00013516373292077333,0.010841064155101776,0.05727768316864967,-0.011940130963921547,-0.0034544786904007196,0.013984725810587406,0.01597883738577366,0.07074837386608124,-0.022367017343640327,-0.0779135450720787,0.07605722546577454,-0.028358371928334236,0.035132311284542084,0.050428297370672226,0.06929625570774078,-0.05483449995517731,-0.010467484593391418,0.04188281670212746,-0.003556550247594714,-0.012981581501662731,-0.06170499324798584,0.1574997901916504,-0.1508491486310959,0.07515940815210342,0.00037701649125665426,0.019718710333108902,0.042084481567144394,0.028795773163437843,-0.007469200994819403,0.06373394280672073,-0.025711990892887115,-0.003124693175777793,-0.03768879547715187,-0.05047808587551117,-0.07615655660629272,-0.11075129359960556,-0.016541065648198128,0.019565749913454056,-0.012700727209448814,0.04443536698818207,-0.010219061747193336,0.011872335337102413,-0.04996763914823532,-0.01977650448679924,0.02637767419219017,0.05215757340192795,0.006614105775952339,0.11683320254087448,0.00654622120782733,-0.041475772857666016,-0.04378758370876312,-4.102975971494837e-33,0.009745328687131405,0.011057022027671337,-0.021515322849154472,-0.09651853144168854,-0.044937845319509506,-0.023869313299655914,0.0005658725276589394,0.04399538412690163,-0.018329821527004242,-0.00521111860871315,-0.026560556143522263,-0.007367034442722797,-0.060987409204244614,0.01471958588808775,-0.013722305186092854,0.02248741313815117,-0.033873848617076874,0.008061250671744347,0.07636379450559616,0.0014030722668394446,0.009538542479276657,0.07753627747297287,0.056314822286367416,-0.02694670855998993,-0.038922518491744995,-0.007858927361667156,-0.04987737908959389,-0.005818243138492107,-0.027863716706633568,0.0602598562836647,0.051106587052345276,0.020246144384145737,0.04182538017630577,-0.047052692621946335,0.08012609928846359,0.02974984236061573,-0.03397233784198761,-0.04702579602599144,-0.07649581879377365,-0.013186411000788212,-0.02045837603509426,0.002608751878142357,-0.010077043436467648,0.05683489143848419,-0.10442479699850082,-0.04726568982005119,-0.008599473163485527,0.05780201032757759,0.04095807671546936,-0.03335161879658699,-0.010347296483814716,-0.030678952112793922,0.07419463247060776,0.011827445589005947,-0.036537304520606995,-0.02127785235643387,0.028851564973592758,0.05161479860544205,0.08611422032117844,0.05604133382439613,-0.04764661192893982,-0.061515871435403824,0.07474663108587265,-0.030200937762856483,0.022254040464758873,-0.020128875970840454,0.007680259644985199,0.08517330139875412,-0.05885399878025055,-0.013860992155969143,-0.04824092611670494,0.027987683191895485,-0.03036322630941868,0.00028736653621308506,-0.059430498629808426,-0.06418659538030624,0.012274108827114105,-0.002030154224485159,-0.0033932961523532867,-0.025179423391819,-0.023738062009215355,-0.002713376423344016,-0.09419960528612137,-0.042804114520549774,-0.05359886586666107,0.039080191403627396,0.05593247711658478,0.06867001205682755,0.008407552726566792,0.05093175917863846,-0.004401205573230982,-0.006542980670928955,0.054864659905433655,-0.050791580229997635,-0.10464256256818771,4.77393832054611e-34,-0.07623272389173508,-0.03797207772731781,0.04322272539138794,-0.034215349704027176,-0.05352604389190674,0.010332606732845306,-0.0347430594265461,0.03557547181844711,-0.011739300563931465,0.025467591360211372,0.023526543751358986,0.00890312809497118,0.0682772547006607,-0.06386725604534149,-0.04650468751788139,0.02947336621582508,-0.01974538527429104,-0.006429565139114857,-0.013040597550570965,-0.016153616830706596,-0.023163165897130966,0.1284136027097702,-0.005429775454103947,0.011695691384375095,-0.03656569495797157,-0.013489452190697193,-0.024101871997117996,-0.008073875680565834,-0.15888483822345734,0.0482284314930439,0.06496494263410568,-0.0005462716799229383,-0.11514667421579361,-0.07361982017755508,0.059603121131658554,0.05982861667871475,0.0023057665675878525,0.01332972664386034,0.06051453575491905,-0.006818837020546198,-0.0005163472378626466,-0.028600195422768593,0.08771289139986038,0.06333926320075989,0.04308073967695236,-0.06482823193073273,-0.047922227531671524,0.08685854822397232,0.0448727160692215,0.03075544349849224,-0.15025649964809418,0.01893424428999424,0.029548410326242447,-0.05546008422970772,0.028799502179026604,0.009745746850967407,0.015975942835211754,-0.008289926685392857,-0.0732765793800354,-0.00908481702208519,-0.06688503921031952,-0.09988667815923691,0.04753347858786583,-0.024786965921521187,0.04997050762176514,0.034699875861406326,-0.027085579931735992,0.024097001180052757,-0.006113619077950716,0.009832631796598434,-0.03454366698861122,-0.038001757115125656,-0.11943564563989639,0.08298789709806442,0.05922555550932884,-0.0372261144220829,-0.04729880020022392,0.030264494940638542,-0.001744968700222671,-0.10750120878219604,-0.0044720652513206005,-0.03608326241374016,-0.014246809296309948,-0.09059352427721024,0.0050524030812084675,0.02913300134241581,-0.011046189814805984,-0.001993912737816572,0.03227342665195465,-0.06954122334718704,0.058372803032398224,-0.08559305965900421,0.06210697442293167,0.025372644886374474,-0.016134776175022125,-2.1227139157531383e-8,-0.046115148812532425,-0.010926695540547371,0.05735009163618088,0.0756794661283493,-0.01976807415485382,-0.027025770395994186,-0.09484797716140747,-0.03405999392271042,-0.05323752015829086,0.09851521253585815,0.07548011839389801,0.06432664394378662,0.00659705325961113,-0.033368486911058426,0.06821424514055252,-0.04471683129668236,0.09603102505207062,0.003910376224666834,-0.0076561300083994865,-0.03768391162157059,0.0018785938154906034,0.01494528166949749,0.03364561125636101,-0.0001941236259881407,0.05595681071281433,0.02829209715127945,0.008401460945606232,-0.06420809775590897,0.02377246506512165,-0.015382861718535423,0.09340815246105194,0.050403621047735214,-0.12208231538534164,-0.04251544550061226,0.06103958934545517,0.019815415143966675,-0.07919972389936447,-0.023646146059036255,0.028268806636333466,0.05312373489141464,0.04206943139433861,0.012348772026598454,-0.018713481724262238,0.037614818662405014,0.06434602290391922,0.10713235288858414,0.11883077025413513,-0.022029273211956024,-0.03607704117894173,-0.01796359196305275,0.020087789744138718,0.07077281177043915,0.009889242239296436,0.056583140045404434,0.03491086885333061,-0.03185528889298439,-0.05827828124165535,0.04458342120051384,0.009319565258920193,-0.06414654850959778,0.12232530117034912,-0.010448779910802841,-0.0837836042046547,-0.05785064399242401]},{"text":"And I, a common-place Swiss soldier who hardly knows what a decent life is after fifteen years of barracks and battles—a vagabond—a man who has spoiled all his chances in life through an incurably romantic disposition—a man— SERGIUS. (_starting as if a needle had pricked him and interrupting Bluntschli in incredulous amazement_).","book":"Down and Out in Paris and London","chapter":71,"embedding":[-0.010502261109650135,0.09394721686840057,-0.02888321690261364,0.013109136372804642,-0.036138564348220825,-0.03680616617202759,0.11056528240442276,-0.002750894520431757,-0.00868056807667017,0.007097759284079075,0.014303907752037048,-0.053661927580833435,-0.05881231650710106,0.032603632658720016,-0.012127353809773922,-0.06763792783021927,-0.043755944818258286,0.012661981396377087,0.03232424706220627,0.1095769852399826,-0.023960191756486893,0.04968709498643875,0.06222381815314293,0.009339791722595692,0.03347117826342583,-0.0627504214644432,0.0005414346815086901,-0.006404795218259096,-0.03679744154214859,0.04365398734807968,0.018609127029776573,0.012746321968734264,-0.03565840423107147,-0.006533672101795673,0.06458789855241776,0.0602470263838768,-0.005207565613090992,0.047882553189992905,-0.009681401774287224,-0.00022884862846694887,-0.0122463908046484,0.019893692806363106,0.03241521120071411,0.014856760390102863,-0.033411428332328796,-0.1010320708155632,-0.051994066685438156,-0.07649987936019897,-0.0031526575330644846,-0.010799036361277103,-0.08787553757429123,-0.08761635422706604,0.045797258615493774,0.021307604387402534,-0.009676460176706314,-0.06436602026224136,-0.030559243634343147,-0.0027891083154827356,0.008984769694507122,-0.029752546921372414,-0.0364488810300827,0.04287073016166687,0.056570954620838165,0.013355560600757599,0.002028165152296424,-0.02365434356033802,-0.02883061021566391,-0.03646579384803772,-0.05535707250237465,0.10463596135377884,-0.012981484644114971,0.024022186174988747,-0.030859297141432762,0.06526470184326172,-0.07927615940570831,-0.057280924171209335,-0.007042967714369297,-0.034166932106018066,0.05223933234810829,-0.011603044345974922,0.0001019396077026613,0.03148844093084335,-0.053802572190761566,0.07704430818557739,-0.050277408212423325,-0.036376919597387314,0.03686763346195221,-0.010481543838977814,0.06759415566921234,-0.03327227011322975,-0.06927210092544556,-0.011329391971230507,0.015400581061840057,0.04975612461566925,-0.07198617607355118,0.0011552422074601054,0.032540906220674515,0.10384621471166611,-0.18509478867053986,0.10903763771057129,-0.008649447932839394,-0.034636981785297394,0.010306041687726974,0.01042797602713108,0.0001734201068757102,0.05172682926058769,-0.06406200677156448,-0.0007208595052361488,-0.10310520976781845,-0.07378092408180237,-0.05082147568464279,0.008886209689080715,-0.021617133170366287,-0.009574702009558678,0.05786401778459549,0.05669475346803665,-0.05364878848195076,-0.06521020084619522,-0.025113321840763092,0.0488729402422905,0.04385826364159584,0.042335622012615204,-0.011209881864488125,0.05805737525224686,-0.02834014967083931,-0.011846015229821205,-0.007081976160407066,3.534546209029534e-34,0.02611708827316761,-0.01087949238717556,0.04934398829936981,0.0718950405716896,-0.08030478656291962,0.001766762463375926,-0.052199263125658035,-0.011277779005467892,0.010471532121300697,0.011665071360766888,-0.03477666154503822,0.007069955579936504,-0.07588481158018112,0.12291520833969116,-0.024531053379178047,0.06686446070671082,-0.08576874434947968,-0.03154349699616432,0.02227238565683365,0.036026906222105026,0.04002276435494423,0.09059690684080124,-0.026033753529191017,-0.010860569775104523,-0.036407724022865295,-0.06679974496364594,0.02711733989417553,0.0528278648853302,-0.0020294927526265383,0.050292596220970154,0.03241579234600067,0.09056340157985687,0.025237927213311195,-0.06071259826421738,0.003544542705640197,0.0026765738148242235,-0.05211610719561577,-0.04040156677365303,-0.10302916169166565,0.02316179871559143,-0.03144588693976402,0.024848563596606255,-0.07787884026765823,0.0037953737191855907,0.009344195015728474,-0.02699887380003929,0.019391348585486412,0.036511749029159546,0.006402409635484219,-0.029168272390961647,-0.10970439016819,0.0171267781406641,0.006111603230237961,0.04414273053407669,-0.06067052111029625,0.01687326468527317,0.0684436485171318,0.015557577833533287,-0.06770314276218414,0.01006587129086256,0.05538906529545784,-0.009259294718503952,0.027119813486933708,0.0033572607208043337,0.0172879621386528,-0.08999975025653839,0.006770248990505934,0.030722811818122864,-0.0818285197019577,-0.0018874965608119965,-0.011974253691732883,0.0024857856333255768,-0.06730968505144119,-0.02638724073767662,-0.028154369443655014,-0.05594745650887489,0.036895573139190674,0.019401686266064644,-0.03902672603726387,-0.052316561341285706,0.023755673319101334,-0.0633849948644638,-0.10859446227550507,-0.02314867451786995,-0.037367165088653564,0.051220573484897614,0.05726912245154381,-0.09223724901676178,-0.03221401944756508,0.03155820444226265,-0.011148384772241116,-0.01790003851056099,0.06432918459177017,-0.06104511395096779,-0.08073776215314865,-4.121875349262167e-33,-0.024390768259763718,-0.004120727069675922,0.014635048806667328,0.09197733551263809,0.0592343844473362,0.06691794097423553,-0.008918900042772293,0.05017921328544617,-0.02807610109448433,0.09554973989725113,-0.07898575812578201,0.011602646671235561,0.06041496992111206,-0.01909058354794979,-0.016953930258750916,-0.05916852131485939,0.026022231206297874,-0.018249470740556717,0.06307458132505417,0.029566137120127678,0.056740328669548035,0.049594324082136154,-0.07386451959609985,-0.04965430125594139,-0.016589077189564705,0.03804328292608261,0.00579242454841733,0.037653498351573944,-0.19446584582328796,-0.0024328678846359253,0.023611024022102356,0.02142198011279106,-0.04778765141963959,-0.06663118302822113,0.015462437644600868,0.03633963316679001,-0.004729916341602802,0.005856800824403763,0.05291270464658737,0.050995077937841415,-0.10921431332826614,-0.012301955372095108,0.020819246768951416,0.03202587738633156,0.06106541305780411,-0.032926443964242935,-0.07248606532812119,-0.05441567674279213,-0.01618916355073452,-0.01601264998316765,-0.06646193563938141,0.055655427277088165,-0.033954109996557236,-0.020003221929073334,0.033745624125003815,-0.015122748911380768,-0.0774804949760437,-0.03430040925741196,0.04233618825674057,0.07229527831077576,-0.034014154225587845,0.02442275732755661,-0.02204703539609909,0.047085292637348175,-0.019200684502720833,-0.07838881015777588,-0.06903495639562607,-0.0004957413766533136,-0.022301454097032547,0.008878441527485847,0.06983357667922974,-0.040118880569934845,-0.05268861725926399,-0.006782145239412785,-0.02421092428267002,-0.0014643321046605706,-0.022943846881389618,-0.03875308111310005,0.027575673535466194,-0.09574160724878311,-0.03025755099952221,-0.0957510694861412,0.029301272705197334,0.015395930968225002,-0.04702897369861603,-0.004590617958456278,-0.04537960886955261,0.044341184198856354,0.09268408268690109,0.03761594742536545,0.03687090426683426,-0.032130151987075806,0.00834255013614893,-0.0791439563035965,-0.0008744292426854372,-4.945147225043911e-8,-0.004483838565647602,0.04574296623468399,-0.07968466728925705,0.02611539699137211,-0.03893991559743881,-0.06232314556837082,-0.0071022543124854565,-0.05553124099969864,0.018655944615602493,0.05570415034890175,-0.07537751644849777,0.08217465877532959,0.04204989969730377,0.006138864904642105,0.07128109037876129,0.02973945438861847,0.061542920768260956,0.0591791607439518,-0.051508840173482895,0.0568716935813427,0.0586337186396122,-0.030764345079660416,-0.014736542478203773,-0.006522777024656534,-0.03768540173768997,0.033275309950113297,-0.005618363618850708,-0.03334924206137657,-0.0011429628357291222,0.06243341416120529,-0.01731933280825615,0.08129044622182846,-0.0654928907752037,-0.09418853372335434,0.03334680199623108,0.12268031388521194,-0.13919183611869812,-0.0737689658999443,0.02812487818300724,0.0026814776938408613,0.02807200513780117,-0.008296919986605644,0.061281152069568634,0.031425658613443375,0.03781852498650551,0.01121386606246233,0.0761016383767128,-0.057577017694711685,-0.047111257910728455,0.06067872419953346,0.08506503701210022,0.07666656374931335,0.03422267362475395,0.06074277684092522,-0.013549786992371082,0.006027319934219122,0.003053416730836034,0.07576650381088257,-0.05297188088297844,-0.08809348940849304,0.1331772357225418,-0.07910117506980896,-0.044211119413375854,-0.01146325096487999]},{"text":"BLUNTSCHLI.—Yes: that’s the coat I mean—would have sent it back and gone quietly home.","book":"Down and Out in Paris and London","chapter":71,"embedding":[0.013850887306034565,0.13347236812114716,0.054733239114284515,0.05602509528398514,0.06789696961641312,-0.040379058569669724,0.13101282715797424,-0.014974887482821941,-0.03114456683397293,-0.048212505877017975,0.00485445698723197,-0.02081329934298992,-0.02353757619857788,0.00556595902889967,-0.06198141723871231,-0.021733328700065613,-0.00897213164716959,0.03262215107679367,-0.014813409186899662,0.0651860237121582,-0.05407664179801941,0.11623110622167587,-0.006274111568927765,0.07695633172988892,-0.002794108586385846,0.04120384901762009,0.015090384520590305,0.02336789108812809,-0.062170542776584625,-0.11053559929132462,0.017606185749173164,-0.031425829976797104,0.007682459894567728,-0.002587234601378441,-0.01599598117172718,0.0002855851489584893,0.009621038101613522,0.03429345041513443,0.048151541501283646,0.03294568136334419,-0.060764871537685394,0.021357698366045952,-0.005667006131261587,0.02396492473781109,-0.028028564527630806,-0.038071777671575546,-0.009480769746005535,0.02536839246749878,0.006355601828545332,0.06406381726264954,-0.018990015611052513,-0.08900559693574905,-0.07787132263183594,-0.002782851457595825,-0.05423411726951599,0.017280036583542824,0.018527843058109283,0.02743559516966343,-0.011206834577023983,0.06929421424865723,-0.035677097737789154,-0.00017584905435796827,-0.02074851654469967,0.08744017779827118,0.014359408989548683,0.016129260882735252,-0.03864246606826782,-0.0868130773305893,0.028891153633594513,0.04518897831439972,0.11158433556556702,-0.009852571412920952,0.06071966886520386,-0.06392304599285126,-0.006463500205427408,-0.0051394314505159855,-0.023051150143146515,-0.005730305332690477,-0.04542774707078934,0.01076218020170927,0.01695864647626877,-0.008874683640897274,-0.12013091892004013,0.06473823636770248,-0.01123872958123684,0.014612225815653801,-0.071917325258255,-0.07433605194091797,-0.03223596140742302,-0.030783547088503838,0.0213746540248394,-0.02001677267253399,-0.011550751514732838,0.05430077016353607,-0.04338287562131882,0.012895843014121056,0.04677192494273186,0.022497760131955147,-0.07054387032985687,0.08484213054180145,-0.01076765637844801,-0.017410077154636383,-0.029539858922362328,-0.08286308497190475,-0.014846565201878548,-0.05844788998365402,-0.03626061603426933,-0.11992070823907852,-0.05946670472621918,-0.09399784356355667,-0.04177815839648247,-0.05323396995663643,0.004236006643623114,-0.01916368119418621,0.016211925074458122,-0.017665766179561615,0.04498384892940521,-0.0034939011093229055,0.007287334185093641,-0.03849741071462631,-0.010385999456048012,0.0038610289338976145,-0.010290605947375298,-0.046163707971572876,-0.09458336979150772,-0.047777626663446426,0.059191130101680756,-5.884784430999506e-33,-0.02191370353102684,0.08645137399435043,-0.009831203147768974,0.024516863748431206,0.09529008716344833,-0.05229204520583153,0.033196546137332916,0.018806971609592438,-0.1269693672657013,0.022825121879577637,-0.00862951297312975,-0.08119864016771317,-0.0479043647646904,0.055893607437610626,-0.04449049383401871,0.12368858605623245,0.017908424139022827,-0.00908836629241705,0.03426917642354965,-0.04031623527407646,0.022060107439756393,0.1262749582529068,0.002382233738899231,0.036599352955818176,-0.0397467315196991,0.026944922283291817,0.052581023424863815,-0.005510937888175249,0.024760175496339798,0.04248729348182678,0.017066912725567818,0.07956265658140182,0.0416935496032238,0.04721171036362648,-0.08501812815666199,0.05580902844667435,-0.03486965224146843,-0.07461871206760406,0.00753265293315053,0.046524226665496826,0.023888161405920982,0.03709594905376434,0.024960260838270187,0.08185116946697235,-0.03687115013599396,-0.01581716537475586,-0.03900076448917389,0.0240183025598526,0.018793391063809395,-0.01903049647808075,0.04873615875840187,-0.001244199345819652,0.1091548278927803,0.043723657727241516,-0.05308318883180618,0.026485614478588104,0.05941081792116165,0.09237400442361832,0.048944517970085144,-0.00383910839445889,0.08929244428873062,0.11530118435621262,0.022743480280041695,-0.039964620023965836,0.12744668126106262,-0.07843675464391708,-0.03536997362971306,0.022131294012069702,-0.022260429337620735,-0.04572669416666031,0.036553602665662766,0.04401324689388275,-0.06364575773477554,-0.0033915217500180006,0.02585352584719658,-0.06661021709442139,-0.025596778839826584,0.002619749866425991,0.1334553062915802,-0.1053699254989624,-0.008010713383555412,0.04162698984146118,-0.05843062698841095,0.026327138766646385,-0.024440661072731018,0.05435871705412865,0.04811909794807434,0.02884373813867569,-0.04994266852736473,0.01745147816836834,-0.026427319273352623,-0.014769974164664745,0.020940622314810753,-0.08002131432294846,-0.05191175639629364,3.82357529064178e-33,0.07233335077762604,-0.008594878017902374,-0.009247022680938244,0.15960761904716492,0.028305508196353912,0.02294488251209259,-0.0952453538775444,0.04995037242770195,-0.014650147408246994,0.0599481537938118,0.09500866383314133,-0.04679013043642044,-0.004818703513592482,0.005778140388429165,0.03672327846288681,0.017892563715577126,0.010885042138397694,-0.0452064573764801,-0.037150438874959946,-0.045249056071043015,-0.06961150467395782,-0.03950398415327072,-0.057278867810964584,0.03756803646683693,-0.12546171247959137,-0.026342513039708138,0.06599035114049911,0.005987782496958971,-0.11287636309862137,-0.05077631399035454,0.002620843006297946,-0.04664669930934906,-0.07173062115907669,-0.030439255759119987,0.012048963457345963,0.10128767788410187,-0.017115872353315353,0.0010128244757652283,-0.042592231184244156,0.06603070348501205,-0.057954996824264526,-0.04693656787276268,0.07196240872144699,0.07872006297111511,0.07712813466787338,-0.030486075207591057,-0.03377027064561844,0.003755907528102398,0.03548026457428932,0.07918546348810196,0.028808658942580223,-0.004949494730681181,-0.055434755980968475,0.031607210636138916,0.004422029945999384,0.07284365594387054,-0.08319640159606934,-0.029222924262285233,-0.003321707481518388,0.02568705752491951,-0.009228097274899483,-0.0009715554770082235,-0.04765349254012108,-0.03627961128950119,0.002529511693865061,-0.04119979962706566,-0.08461549878120422,-0.04937787726521492,-0.022917916998267174,0.006304054521024227,0.06402666866779327,0.0036078135017305613,0.003605266334488988,0.017663760110735893,0.023717598989605904,-0.026844695210456848,0.05612847954034805,0.038144130259752274,-0.012453394941985607,-0.0025573712773621082,0.053267672657966614,-0.0883549228310585,-0.02936740033328533,-0.008298284374177456,0.17554828524589539,-0.04097295179963112,-0.042402297258377075,-0.048435647040605545,0.060431282967329025,-0.035855483263731,0.04083138331770897,0.04701204597949982,0.03507527336478233,-0.0915842279791832,0.008473539724946022,-2.6867585489753765e-8,0.04952912777662277,0.0643826425075531,-0.045785292983055115,-0.01623324491083622,0.03200818970799446,-0.021026063710451126,0.06857552379369736,-0.07314377278089523,-0.07657879590988159,-0.014921669848263264,-0.0755123421549797,0.04600729048252106,-0.038062531501054764,0.03620821237564087,-0.07509089261293411,0.017480844631791115,0.02704189531505108,0.015657203271985054,-0.040518540889024734,0.007093011401593685,0.03689918294548988,0.03315848112106323,0.04725786671042442,-0.014528155326843262,-0.0008069791365414858,-0.010008611716330051,0.015492474660277367,-0.04417530447244644,0.027822239324450493,0.06979860365390778,-0.01210515946149826,0.0005047167651355267,-0.07238022983074188,-0.012571776285767555,0.03591982275247574,0.02212628349661827,-0.01831943914294243,-0.025387577712535858,0.013089416548609734,-0.027413878589868546,0.0018444083398208022,-0.024830590933561325,-0.0723656713962555,0.01078667864203453,0.014881987124681473,-0.042902830988168716,0.05519918352365494,-0.005161155480891466,-0.08423321694135666,0.006106132175773382,-0.02297959290444851,-0.042065177112817764,-0.022689180448651314,0.1037730798125267,-0.02140885591506958,-0.011659208685159683,0.024929668754339218,0.04232080653309822,-0.03574434295296669,-0.04921635240316391,0.008329031988978386,-0.03605944290757179,-0.024315588176250458,0.09208771586418152]},{"text":"That’s what I was looking for.","book":"Down and Out in Paris and London","chapter":71,"embedding":[0.000035088665754301473,-0.05131586641073227,-0.04433082044124603,0.05442486330866814,0.05780591070652008,0.020667970180511475,-0.018408916890621185,0.03434868901968002,-0.047266844660043716,-0.0864979699254036,0.07246270030736923,0.013408921658992767,-0.020275045186281204,0.01249665580689907,-0.01185100618749857,-0.011587290093302727,0.03438812121748924,0.042888808995485306,0.12480112910270691,-0.04474423825740814,-0.000986064551398158,0.026919402182102203,-0.03936580568552017,-0.008996337652206421,0.002009051851928234,0.019690752029418945,-0.037252895534038544,0.004864061251282692,0.0926692932844162,-0.02942824363708496,-0.012396506033837795,-0.006395622622221708,0.03829836845397949,0.015960244461894035,-0.04843937233090401,-0.07600458711385727,0.03154269605875015,0.05173128470778465,0.047536443918943405,0.013557412661612034,-0.02606659010052681,-0.047308776527643204,0.05894289165735245,0.04000994190573692,-0.042149294167757034,-0.010906153358519077,-0.09351999312639236,-0.03428144007921219,0.08691372722387314,0.009294159710407257,-0.013830548152327538,-0.0648946687579155,-0.020312020555138588,0.0066454713232815266,0.09715081006288528,-0.0017856102203950286,0.021099675446748734,0.05342089384794235,0.0892602875828743,-0.008302473463118076,-0.044916365295648575,-0.020690929144620895,-0.14103004336357117,0.08818446099758148,-0.029528208076953888,0.045089803636074066,-0.020824303850531578,-0.03730957210063934,-0.013880262151360512,-0.06688632071018219,0.10838620364665985,-0.10224360972642899,0.003101561451330781,-0.08016188442707062,-0.027121592313051224,-0.04526234418153763,-0.0020143785513937473,-0.0898083969950676,-0.0295393243432045,0.09329486638307571,-0.0787397027015686,-0.07754772901535034,-0.01289039384573698,-0.02424984611570835,0.1327403485774994,-0.0010854100110009313,0.10927363485097885,0.055198993533849716,0.10518679022789001,0.02335796318948269,-0.1017279401421547,0.027736946940422058,0.008705099113285542,-0.010817470028996468,-0.07555599510669708,-0.06186484917998314,0.0018168734386563301,-0.08739908039569855,-0.018340209499001503,0.05520046502351761,0.0014206963824108243,-0.01500345952808857,0.06434424221515656,-0.06101444363594055,-0.07541278004646301,-0.05485052987933159,-0.05319148302078247,0.0063115330412983894,-0.041743867099285126,0.04072815924882889,-0.10168904811143875,-0.02818569354712963,-0.02279025875031948,0.016546400263905525,0.0148397795855999,0.003045795252546668,-0.028374601155519485,0.04939740151166916,0.07290292531251907,0.02342531830072403,0.09772694855928421,-0.028136838227510452,-0.08871829509735107,-0.06925921887159348,-0.040100883692502975,-0.023123541846871376,-0.024113072082400322,-4.0607430308636844e-33,0.05419546365737915,0.07312021404504776,0.06659024208784103,-0.02334032766520977,0.0729159489274025,-0.018249699845910072,-0.05375206470489502,-0.038292139768600464,0.05517981946468353,0.0026339308824390173,-0.06998453289270401,0.021079283207654953,-0.059837840497493744,-0.001652936334721744,-0.014871789142489433,-0.07202515006065369,-0.029150081798434258,0.0745367780327797,-0.0493839867413044,-0.018505804240703583,-0.06091511249542236,-0.022414717823266983,-0.04063912853598595,-0.039441127330064774,0.07274457067251205,0.03847012296319008,0.010280601680278778,-0.050947558134794235,0.09520594030618668,0.07460950314998627,0.04512988403439522,0.05832088738679886,-0.019769039005041122,-0.06688101589679718,0.06146173179149628,-0.0056862859055399895,-0.04831971973180771,-0.003884398378431797,0.019583111628890038,0.040778663009405136,0.0007560470257885754,0.0020654655527323484,-0.01540563628077507,-0.034100864082574844,-0.07443994283676147,-0.03736409172415733,-0.0258036982268095,-0.08631830662488937,0.025549093261361122,-0.014577195979654789,0.05150631070137024,0.031205499544739723,-0.014002250507473946,-0.11091538518667221,-0.035561684519052505,0.0059026144444942474,0.03445418179035187,0.07223103940486908,0.009596588090062141,0.006753929890692234,0.0476885661482811,0.03153131529688835,0.025873564183712006,-0.009521028026938438,-0.0759420096874237,-0.05258790776133537,0.0005013165064156055,0.039287764579057693,-0.03282869979739189,0.02049422077834606,-0.0428762286901474,-0.06270007789134979,0.09771282225847244,0.04552818834781647,-0.10079488903284073,-0.009491419419646263,-0.0644725039601326,0.01255346741527319,0.02789316698908806,-0.027218863368034363,-0.02839936502277851,-0.030819501727819443,-0.007064859848469496,0.04033709317445755,0.022584959864616394,-0.03911501541733742,0.09086578339338303,0.01075198594480753,-0.03342007100582123,-0.004822194576263428,-0.05282589793205261,0.029772546142339706,0.06555673480033875,-0.024173332378268242,0.045924726873636246,2.5212923028107926e-33,-0.05596916377544403,0.006280571222305298,0.008690853603184223,0.10409902781248093,0.10548953711986542,0.00737840635702014,0.04540718346834183,0.0301982294768095,0.0531291663646698,0.02610471472144127,0.030507758259773254,-0.015180679969489574,0.028883352875709534,0.007703701965510845,0.016285648569464684,0.07061059772968292,0.032043520361185074,0.024094952270388603,0.06661820411682129,0.0069368514232337475,-0.013456908985972404,0.003242252394556999,-0.05226960778236389,0.07951118052005768,0.03597038611769676,0.04710569232702255,0.03193019703030586,0.03804619237780571,-0.0758151113986969,0.11301261186599731,-0.06578416377305984,-0.12149833887815475,-0.06787080317735672,-0.010870940051972866,-0.050575003027915955,-0.046227920800447464,0.0808539018034935,0.06179321929812431,-0.07302173972129822,-0.05731203779578209,-0.006065661553293467,-0.08103993535041809,0.006937539670616388,0.13201472163200378,-0.07850734889507294,0.014628197997808456,-0.007208961993455887,0.028478605672717094,0.025061070919036865,0.03322141245007515,-0.005377819295972586,0.007557223085314035,0.037426963448524475,0.037911467254161835,-0.018172303214669228,-0.03839202597737312,0.006209051236510277,-0.0079012680798769,-0.008448762819170952,-0.01639019325375557,0.03794858604669571,-0.0107072489336133,-0.009054966270923615,0.02746325545012951,0.04543652385473251,0.00610488373786211,0.050586819648742676,0.026133427396416664,-0.11947859078645706,0.016849134117364883,0.07887428253889084,-0.023227710276842117,0.01825052872300148,0.0011015709023922682,0.058151666074991226,-0.0951765850186348,0.08465326577425003,-0.06486776471138,-0.0344889834523201,-0.06246522441506386,-0.0799725130200386,-0.03992477059364319,-0.009625015780329704,0.12117844820022583,0.057787515223026276,0.00270935264416039,0.011890452355146408,-0.014059745706617832,0.001236570649780333,0.026302866637706757,-0.043411705642938614,-0.027044139802455902,-0.01454781275242567,-0.06981100887060165,0.011709875427186489,-3.08615106803245e-8,0.01597323827445507,0.055054567754268646,0.02505892515182495,-0.01935497298836708,-0.010117475874722004,-0.022810373455286026,0.01854640617966652,-0.04279734566807747,0.020562976598739624,0.11714758723974228,-0.016257621347904205,-0.01626114547252655,0.06260832399129868,-0.030163507908582687,-0.04166581109166145,-0.07100469619035721,-0.03547833114862442,-0.009534681215882301,-0.0496421679854393,0.03744881600141525,-0.06716760993003845,0.034481197595596313,0.030646901577711105,0.007611154578626156,-0.008601556532084942,0.020431434735655785,-0.022674905136227608,-0.025507353246212006,0.06546414643526077,-0.05273628607392311,0.05375553295016289,0.14220526814460754,0.08423998951911926,-0.08466102927923203,0.07286039739847183,0.06037912517786026,-0.08265035599470139,0.004028326366096735,-0.011114579625427723,-0.011836111545562744,0.059536129236221313,-0.010994510725140572,0.016382310539484024,0.098826102912426,0.026932550594210625,0.0404193140566349,0.007120870519429445,-0.012220554053783417,-0.05258466303348541,-0.010874368250370026,0.08120336383581161,-0.010011027567088604,-0.03957953304052353,0.03044470027089119,-0.012780772522091866,-0.02434912510216236,0.025522522628307343,0.014510467648506165,-0.0440223254263401,-0.003422575071454048,0.015301108360290527,0.025485360994935036,0.04932478070259094,0.059941522777080536]},{"text":"Bluntschli: my one last belief is gone.","book":"Down and Out in Paris and London","chapter":72,"embedding":[0.05387578904628754,-0.04282398521900177,0.004118470475077629,0.042578428983688354,0.052690569311380386,0.011265230365097523,0.11721046268939972,0.016130056232213974,0.0908777117729187,-0.03431519865989685,-0.008505460806190968,-0.008467351086437702,-0.018890416249632835,0.009352545253932476,-0.020085277035832405,-0.005722295492887497,-0.08182898908853531,0.04619354009628296,-0.059747226536273956,-0.0026949094608426094,-0.08478271961212158,0.04362872987985611,-0.058821577578783035,0.07114876061677933,-0.028381824493408203,0.02850523218512535,0.07070398330688477,-0.010510125197470188,-0.055414292961359024,-0.11041566729545593,0.0223749577999115,-0.015103939920663834,0.0022891084663569927,-0.02600567415356636,0.03766201436519623,0.006599814631044865,-0.06104200705885887,0.021136293187737465,0.032565683126449585,-0.015085393562912941,-0.06349671632051468,-0.04215708374977112,0.042937908321619034,0.0058101266622543335,-0.03557349368929863,-0.05787286534905434,-0.056353140622377396,-0.025766296312212944,0.00540898134931922,0.02601402811706066,-0.05201002210378647,-0.07715199142694473,0.013301966711878777,0.029260016977787018,-0.07191041111946106,-0.1175050362944603,0.000625666871201247,0.1173943355679512,0.030258599668741226,-0.0022383579052984715,0.004047614522278309,-0.019321879372000694,-0.052021324634552,0.05464913696050644,0.03203897178173065,0.013708882965147495,0.04798205941915512,-0.07260195910930634,-0.07923191040754318,0.11156351119279861,0.05152006074786186,-0.024769442155957222,-0.028052639216184616,-0.025629205629229546,0.000636580865830183,-0.025958243757486343,-0.004143602680414915,-0.0457143560051918,-0.006205094512552023,0.031126292422413826,0.09944751858711243,0.013400150462985039,-0.07806864380836487,-0.07951905578374863,-0.05270946025848389,-0.02173721417784691,-0.07009266316890717,-0.028727471828460693,-0.060002900660037994,-0.0008872477919794619,-0.02573269046843052,-0.009668917395174503,-0.05060111731290817,0.04918663948774338,0.00547157833352685,0.011433618143200874,-0.03273617476224899,-0.0033695960883051157,-0.05447781831026077,0.10841117054224014,-0.08771281689405441,0.03351728990674019,0.023624839261174202,-0.06733507663011551,0.04092477634549141,-0.0384930856525898,-0.05284929275512695,-0.08189065009355545,-0.011095919646322727,-0.029697228223085403,-0.04881558194756508,-0.011750132776796818,-0.025900976732373238,0.004360172897577286,0.058739934116601944,0.11498824506998062,0.1004786342382431,0.035431694239377975,-0.02338857203722,-0.019341981038451195,-0.055056020617485046,0.018943941220641136,0.0183955579996109,0.06587600708007812,-0.01759241335093975,-0.0504683256149292,-0.0356094166636467,-3.493761330501801e-33,-0.004619629122316837,-0.04036829620599747,-0.00494991522282362,0.06721298396587372,0.03827083483338356,-0.06086976081132889,-0.044499970972537994,0.039236921817064285,-0.11336550116539001,0.005392541643232107,-0.0016858999151736498,-0.006585677620023489,-0.06835424154996872,-0.013490406796336174,-0.015353722497820854,0.03468445688486099,-0.03648333624005318,-0.00018766007269732654,-0.006044878624379635,0.003243877785280347,-0.0014354842714965343,0.15655802190303802,-0.03115435503423214,-0.022461818531155586,-0.024151194840669632,0.09940189868211746,0.10827991366386414,0.052512988448143005,0.003801829880103469,0.03264101967215538,-0.06198607385158539,0.13915973901748657,-0.04224222153425217,0.06389135867357254,0.008409269154071808,0.06272539496421814,-0.011620279401540756,-0.031075915321707726,0.02407156489789486,-0.009972215630114079,-0.00553226238116622,0.05220460146665573,-0.02893923409283161,-0.03268180787563324,0.0353814996778965,0.01777549274265766,-0.018783053383231163,0.00845892634242773,0.04776321351528168,0.028761526569724083,-0.02419939823448658,-0.0063412911258637905,0.08576669543981552,-0.00959857739508152,-0.030848097056150436,-0.02273734100162983,-0.020203718915581703,0.058959659188985825,0.066915363073349,-0.024241987615823746,0.02301213890314102,0.04509454220533371,-0.05026505887508392,-0.02124560810625553,0.031050635501742363,-0.0011248806258663535,-0.045237671583890915,-0.05194618180394173,0.009816469624638557,-0.00787707045674324,-0.00903856661170721,-0.03309481218457222,-0.10862941294908524,-0.06619057059288025,-0.028257962316274643,-0.10167822986841202,-0.050304118543863297,0.007091728039085865,0.10845271497964859,-0.040421463549137115,0.057123973965644836,0.012232032604515553,-0.02033398672938347,0.019625484943389893,0.029762092977762222,0.0027793024200946093,0.003033725079149008,-0.06282959133386612,-0.040516484528779984,0.04623159021139145,-0.08235851675271988,0.026629600673913956,0.04080980271100998,-0.012891688384115696,-0.06591546535491943,8.43040395674255e-34,0.020590072497725487,0.01627274416387081,0.014838268980383873,0.1689598560333252,0.010070910677313805,0.012961666099727154,-0.09826651215553284,0.05553652346134186,0.050833627581596375,0.018979094922542572,0.11245053261518478,-0.04199864715337753,0.05226572975516319,0.0071294913068413734,-0.01242111250758171,-0.04550874978303909,0.028698546811938286,-0.037969257682561874,-0.049266669899225235,-0.03115410916507244,-0.010734686627984047,0.013147959485650063,-0.1063227578997612,0.003167565679177642,-0.034777719527482986,-0.03721879795193672,0.030642012134194374,0.11229219287633896,-0.06457726657390594,-0.026608619838953018,0.03410939499735832,-0.02663922682404518,-0.04970454424619675,-0.09021010249853134,0.003008499974384904,0.041914958506822586,-0.042270299047231674,0.109747976064682,-0.025471411645412445,-0.020225929096341133,-0.03280960023403168,-0.018547410145401955,0.04211752489209175,0.035017963498830795,0.07709866017103195,-0.03192100301384926,0.009910175576806068,0.06643036752939224,0.02596966363489628,-0.007271280512213707,-0.036060307174921036,-0.0027258924674242735,-0.05789180472493172,-0.007147702854126692,0.023819217458367348,0.032354481518268585,-0.024639997631311417,-0.0522577166557312,0.0012614366132766008,-0.03204962611198425,-0.02436596155166626,0.023651324212551117,-0.032993145287036896,0.04145851358771324,0.031716007739305496,0.004990738816559315,-0.02617134153842926,0.004976175259798765,-0.03870042786002159,0.07278122752904892,-0.024427372962236404,0.013182318769395351,-0.049883902072906494,0.02566790208220482,0.02545669674873352,-0.005124198272824287,-0.030763421207666397,0.044846560806035995,0.013267445378005505,-0.03344767540693283,0.09166862070560455,-0.04928551986813545,0.031125767156481743,-0.026136288419365883,0.14745813608169556,-0.008458861149847507,-0.014316883869469166,-0.09648622572422028,0.03803621977567673,0.07487907260656357,-0.009724302217364311,0.012530605308711529,-0.015490284189581871,-0.06087695062160492,-0.024916673079133034,-2.0409666845466745e-8,0.039343684911727905,-0.005803417880088091,-0.11823644489049911,-0.015104314312338829,0.0784352570772171,0.02619447559118271,0.05154985561966896,-0.044871192425489426,-0.07717008888721466,0.03427531197667122,-0.0408468060195446,0.0722089484333992,0.035811666399240494,0.05800585821270943,-0.01282735075801611,0.0056341467425227165,0.06230171397328377,-0.023004887625575066,0.0058622038923203945,0.07522769272327423,0.030260536819696426,0.012754821218550205,0.11220403015613556,-0.12528005242347717,0.017006875947117805,0.024953246116638184,-0.03666124492883682,0.012842860072851181,0.023588459938764572,0.004508200567215681,0.04272753372788429,0.050163958221673965,-0.09896223247051239,0.012253396213054657,-0.05179383605718613,0.025942089036107063,-0.020365538075566292,0.044732023030519485,-0.031966689974069595,-0.016402631998062134,0.001533614587970078,0.059699952602386475,-0.052544966340065,0.025124747306108475,-0.0627509281039238,-0.020292501896619797,0.08277168869972229,-0.031203987076878548,-0.030801014974713326,0.09163904935121536,-0.008305092342197895,-0.007005536928772926,0.011769847944378853,0.07234624773263931,0.027553927153348923,0.021312478929758072,-0.016100598499178886,0.13245077431201935,-0.1522732824087143,-0.06428742408752441,0.09829404205083847,-0.04380529373884201,0.009632283821702003,0.05639948695898056]},{"text":"The Petkoffs and the Saranoffs are known as the richest and most important families in the country.","book":"Down and Out in Paris and London","chapter":72,"embedding":[0.01988166570663452,-0.07265686988830566,-0.0883418619632721,-0.033609967678785324,-0.0009436830878257751,0.0262565016746521,0.02560243383049965,0.021707631647586823,-0.03087066486477852,-0.022770598530769348,0.0030760469380766153,0.04921795800328255,-0.03440874069929123,-0.017645524814724922,-0.10654176026582718,0.014443776570260525,0.006686540320515633,0.04127107188105583,0.009181242436170578,0.08678645640611649,-0.07669177651405334,-0.08911359310150146,0.10419421643018723,0.0017008122522383928,0.0350373275578022,0.08239341527223587,-0.016494981944561005,-0.05628489702939987,0.005758533254265785,-0.0025639599189162254,0.02783947065472603,0.04013219103217125,0.044007182121276855,0.0482884906232357,-0.01277492381632328,0.017376573756337166,0.09253843873739243,0.052183423191308975,0.010620661079883575,0.002564611379057169,0.050082799047231674,0.027028359472751617,0.0034290659241378307,-0.06780286133289337,-0.05745593085885048,-0.008127523586153984,-0.010301238857209682,-0.01093341875821352,0.021696429699659348,-0.04726441949605942,-0.03973530977964401,-0.029370110481977463,-0.0015817774692550302,-0.054606322199106216,0.06789862364530563,0.0034534300211817026,-0.054944660514593124,-0.07537856698036194,-0.06559418141841888,0.033256638795137405,0.035868339240550995,-0.008356980979442596,-0.04474189504981041,-0.004135912749916315,0.04611322283744812,0.05815274640917778,-0.05153251439332962,0.05658158287405968,-0.050952229648828506,-0.01766996644437313,-0.018834037706255913,-0.024572374299168587,-0.03589882329106331,0.05631105229258537,-0.15463481843471527,0.045051880180835724,0.05983447656035423,0.04354352504014969,-0.029986273497343063,-0.028070740401744843,-0.008505342528223991,-0.0075205727480351925,-0.007429851684719324,0.0029633627273142338,0.051687903702259064,0.01472384948283434,0.038160473108291626,-0.003640150185674429,0.031033804640173912,0.05216953158378601,0.03595276549458504,0.019417069852352142,0.006983626168221235,-0.022625738754868507,-0.033999938517808914,-0.04223397746682167,0.02476559206843376,0.021834755316376686,-0.057485323399305344,0.024997709318995476,-0.008080893196165562,-0.0016254652291536331,0.12018625438213348,0.023846831172704697,-0.053600214421749115,-0.05866006761789322,-0.053070202469825745,-0.07032515853643417,0.012520709075033665,0.0018628168618306518,-0.05269414559006691,0.05806780233979225,-0.07908463478088379,0.023593414574861526,0.021744173020124435,-0.11036153137683868,0.01556952204555273,-0.02558656595647335,-0.005441321991384029,-0.05353594198822975,-0.03038918226957321,0.03063417784869671,-0.09270555526018143,-0.01366506703197956,-0.02412695437669754,0.04367322474718094,-0.09679136425256729,-4.895230878616242e-33,-0.06989088654518127,0.07078618556261063,0.05677611753344536,-0.023128721863031387,-0.01684044487774372,0.03962074965238571,-0.0943756029009819,-0.01611931622028351,-0.003434183541685343,0.015961017459630966,-0.02731235884130001,0.08292579650878906,-0.009013531729578972,-0.04261959716677666,-0.036935508251190186,0.017536476254463196,-0.0522054061293602,0.010192666202783585,0.010292316786944866,-0.04456144571304321,0.048490386456251144,0.12652969360351562,-0.019895456731319427,-0.00261978548951447,-0.026030108332633972,-0.04287976399064064,0.043822407722473145,-0.04153652489185333,-0.01158420741558075,0.02111036516726017,-0.01160453725606203,-0.05466433987021446,-0.008960997685790062,-0.08874088525772095,-0.07592274993658066,-0.00870004203170538,0.029640784487128258,-0.12490256130695343,0.04344342648983002,-0.0016601034440100193,-0.017414726316928864,-0.09194009006023407,0.058803245425224304,0.11700849235057831,-0.07620631158351898,0.02211039513349533,0.022153794765472412,0.0056048729456961155,0.042498644441366196,-0.008525555953383446,-0.05904684215784073,-0.06625249981880188,-0.08115354925394058,-0.025690970942378044,-0.08517299592494965,-0.017674192786216736,0.01711360737681389,-0.018133632838726044,0.0015248589916154742,0.010230028070509434,-0.027240464463829994,-0.07058116793632507,0.020441502332687378,-0.0000690820743329823,0.067506343126297,0.06545715034008026,0.026559118181467056,0.07711044698953629,0.05196559056639671,0.07811088114976883,0.02837982028722763,-0.02802659384906292,0.0745319202542305,0.010301010683178902,0.03700552135705948,0.08319109678268433,0.023925192654132843,0.04826199263334274,-0.045344796031713486,0.039477720856666565,-0.01661268062889576,0.09153594821691513,0.0899871438741684,-0.002727186307311058,0.018201889470219612,0.06458588689565659,0.0661030188202858,0.02573707327246666,-0.03450745344161987,0.06332598626613617,-0.057575590908527374,-0.011890647932887077,0.14066465198993683,-0.040050771087408066,-0.06473471969366074,2.2285962298369584e-33,-0.005776355974376202,-0.049689821898937225,0.035523924976587296,-0.06355282664299011,0.043687283992767334,0.03010541759431362,-0.009138846769928932,-0.016166454181075096,-0.053547900170087814,0.026600150391459465,-0.05829952657222748,-0.022020988166332245,0.11956177651882172,-0.04110727831721306,-0.02098350040614605,-0.08015833050012589,0.03375299647450447,-0.004336691461503506,-0.0018162608612328768,-0.17925654351711273,0.010236067697405815,0.09095449000597,-0.005024560261517763,0.09350066632032394,-0.0055822571739554405,-0.0052668433636426926,-0.08538419008255005,-0.018674787133932114,-0.09525761008262634,-0.003629951272159815,0.00906622689217329,0.03875766694545746,0.004099190700799227,0.020099356770515442,0.035301581025123596,0.08916907757520676,-0.018689146265387535,0.010242855176329613,-0.06127670779824257,0.04970947653055191,0.007312919944524765,-0.015036394819617271,-0.08089757710695267,0.005573550704866648,-0.07310636341571808,-0.06401930004358292,-0.09741903096437454,0.04704824090003967,0.04270618036389351,-0.04637855291366577,-0.005258794408291578,0.04046003893017769,-0.0435464046895504,0.011234740726649761,0.010243399068713188,0.09951423853635788,0.024973277002573013,-0.05047326534986496,-0.013922343961894512,0.009582986123859882,-0.04481937736272812,-0.007301132660359144,-0.014703909866511822,0.08263345062732697,-0.0013562440872192383,-0.0244260523468256,-0.06533879786729813,-0.03982005640864372,0.09883955121040344,-0.048150233924388885,-0.019770830869674683,-0.034846097230911255,0.015730300918221474,0.008362461812794209,-0.026215914636850357,0.14163589477539062,-0.01646001823246479,0.03712518885731697,0.0792623907327652,-0.02960873395204544,0.04453267529606819,-0.0916265994310379,0.0262165404856205,-0.005331295542418957,-0.0400671549141407,0.04674244672060013,0.04898921400308609,-0.052575599402189255,0.019253049045801163,-0.030436500906944275,0.028327764943242073,-0.04525860399007797,0.01147057581692934,0.0161561481654644,0.007506859488785267,-2.1462591703880207e-8,0.04959394782781601,0.0034604137763381004,0.01210509892553091,0.0025028951931744814,-0.01394791528582573,-0.0881873294711113,0.02913554199039936,0.08808903396129608,-0.060121361166238785,0.1063028946518898,-0.024429000914096832,-0.03882959485054016,0.005202788859605789,-0.003925045020878315,0.04144452512264252,0.017756262794137,0.05187471583485603,-0.012763552367687225,-0.0014284945791587234,0.029603686183691025,0.02252708375453949,-0.0037281981203705072,0.06415947526693344,0.02350044436752796,-0.04501928389072418,0.025209980085492134,0.025058766826987267,0.0009054585825651884,0.01728004775941372,0.17758259177207947,0.031046835705637932,-0.06708969920873642,-0.03637903183698654,0.02240252122282982,0.06311734020709991,0.022153671830892563,-0.05249769613146782,-0.03163906931877136,-0.0026950687170028687,0.032612789422273636,0.042885251343250275,-0.08298195153474808,0.02129482477903366,0.10356293618679047,-0.056869152933359146,0.002345949411392212,0.0020918468944728374,0.0670621395111084,0.061077360063791275,-0.0018242301885038614,-0.013449606485664845,0.09179429709911346,-0.041201427578926086,-0.07041091471910477,-0.08226529508829117,-0.03125109151005745,-0.0562969334423542,0.02010621502995491,-0.01615261472761631,0.0004051135038025677,0.050829265266656876,-0.028750596567988396,0.12006480991840363,0.03556825965642929]},{"text":"Oh, well, if it comes to a question of an establishment, here goes! (_He goes impetuously to the table and seizes the papers in the blue envelope._) How many horses did you say?","book":"Down and Out in Paris and London","chapter":72,"embedding":[0.05364971607923508,0.06519284844398499,0.04961555823683739,0.022141477093100548,-0.11725547909736633,-0.017023742198944092,0.08503693342208862,-0.035456884652376175,-0.014905736781656742,-0.01222357526421547,-0.020743608474731445,-0.04086318612098694,0.059586845338344574,-0.024854784831404686,-0.07939483970403671,0.045096393674612045,-0.028211118653416634,-0.05253230780363083,-0.028432536870241165,0.06836342811584473,0.007689450867474079,0.040995802730321884,0.04013736918568611,0.02197176404297352,0.03576379641890526,-0.05835549533367157,-0.09229011833667755,-0.03237578272819519,-0.005480208899825811,0.019730953499674797,-0.038520071655511856,0.024555429816246033,0.027140537276864052,0.05741029605269432,0.024721894413232803,-0.03617521747946739,0.052202604711055756,-0.03994398191571236,0.08442212641239166,0.0429236926138401,0.012972911819815636,-0.0849982276558876,-0.04270252212882042,0.02065046690404415,0.05582820251584053,0.031357116997241974,-0.018668433651328087,0.038077954202890396,0.06084730476140976,0.013537519611418247,-0.051895592361688614,0.044215310364961624,-0.03399684280157089,0.04823329672217369,-0.02019321173429489,-0.01075031515210867,-0.04750264436006546,0.03743831813335419,-0.03027738817036152,0.06420446932315826,-0.05186694860458374,0.05513955280184746,-0.02115575782954693,0.10013546794652939,-0.03905918076634407,0.07033546268939972,-0.1348039209842682,-0.01613311655819416,-0.11934803426265717,0.0710836723446846,0.04688698425889015,-0.001117026899009943,0.008915398269891739,-0.02747175097465515,-0.06191853806376457,-0.05366057530045509,-0.023059898987412453,-0.014917328953742981,0.06729275733232498,-0.06938554346561432,-0.027534503489732742,-0.08682996034622192,0.0032494799233973026,0.029142165556550026,-0.005505303852260113,-0.00819596741348505,0.03821819648146629,0.00796807836741209,-0.03199439495801926,0.0035447352565824986,-0.056751690804958344,-0.04194280877709389,0.008226688951253891,0.017707377672195435,0.01678314618766308,0.05726560950279236,-0.02196304313838482,0.05560500919818878,-0.006894477177411318,0.05759372189640999,0.050028398633003235,0.04151394963264465,0.07295522093772888,-0.0394960381090641,-0.11120129376649857,0.03369632363319397,-0.11713937669992447,-0.03648829460144043,-0.010249322280287743,-0.09518007189035416,-0.03304135054349899,-0.04522387310862541,0.052017807960510254,-0.0026324554346501827,-0.03386775776743889,0.03639966994524002,-0.045276887714862823,0.02614196203649044,-0.02139751799404621,-0.009821944870054722,-0.0022567440755665302,0.06540317833423615,-0.0055793048813939095,0.011734122410416603,-0.10785780102014542,-0.018481822684407234,0.011551068164408207,-3.6595479109539916e-33,-0.033207330852746964,-0.029033616185188293,0.020662914961576462,0.09777858853340149,0.03468675538897514,0.004570266231894493,-0.033474404364824295,0.028821591287851334,-0.003330376697704196,0.04534706473350525,0.007789917290210724,-0.0571339912712574,0.07903270423412323,-0.046733710914850235,0.015049058943986893,0.04985591396689415,0.023879118263721466,-0.007405936252325773,0.011432305909693241,-0.03952452167868614,0.011079703457653522,0.011902942322194576,-0.0018886631587520242,0.04049612581729889,0.05053187534213066,-0.037755925208330154,-0.021435869857668877,-0.043706268072128296,0.02328580617904663,0.06014282628893852,-0.0468769408762455,-0.03954694792628288,-0.02069113403558731,-0.04177580401301384,-0.03232373669743538,0.008069156669080257,-0.02733934111893177,-0.030440939590334892,-0.034761205315589905,0.024753009900450706,-0.03401697427034378,0.010959970764815807,0.03903564438223839,0.06329387426376343,-0.07179316133260727,0.11850367486476898,-0.015048650093376637,0.11871137470006943,0.03290997073054314,0.03159639239311218,-0.0033431423362344503,0.02923867106437683,0.0022835342679172754,0.018948784098029137,0.08867039531469345,-0.068539097905159,-0.0002799631911329925,0.048855360597372055,0.023898812010884285,0.03333625942468643,0.05789460614323616,0.061655666679143906,-0.019319770857691765,0.05299178510904312,0.0017600454157218337,-0.07260441035032272,-0.15567484498023987,0.033817313611507416,0.05925552919507027,-0.014351923018693924,0.06161491572856903,0.048713840544223785,-0.080558180809021,-0.10193502902984619,-0.02642674185335636,-0.03205398470163345,-0.008936462923884392,-0.023227985948324203,0.010975721292197704,-0.06762155145406723,-0.004255619831383228,0.007275338284671307,-0.06494984030723572,0.044256389141082764,-0.007893840782344341,0.0825890377163887,0.05244188383221626,-0.01331921387463808,-0.0066176727414131165,0.035765476524829865,0.0045829154551029205,-0.02233828417956829,-0.026902811601758003,-0.09758034348487854,-0.022476164624094963,1.047593769626107e-33,-0.04077114164829254,0.0064488970674574375,-0.06862884014844894,0.09353352338075638,0.005167877301573753,-0.045752327889204025,0.0424429215490818,-0.05022242292761803,0.0803503692150116,-0.0016293992521241307,-0.021290792152285576,0.05139482393860817,0.08136413991451263,0.014876195229589939,0.020372949540615082,-0.07792659103870392,0.016920706257224083,-0.006080121733248234,0.01722516305744648,-0.002422227757051587,-0.025474997237324715,-0.04956486448645592,0.024428246542811394,0.07478615641593933,-0.03960632160305977,0.07787196338176727,-0.010822141543030739,-0.11330865323543549,-0.04859437048435211,-0.010300119407474995,-0.07608715444803238,-0.08536525815725327,-0.023019852116703987,0.08841951936483383,-0.014820082113146782,0.026347577571868896,0.03971466049551964,-0.03323642164468765,-0.04621017724275589,0.05953703075647354,0.02677461877465248,-0.04816412925720215,-0.018084973096847534,0.01835288107395172,-0.05821773037314415,-0.024073828011751175,-0.054123248904943466,0.00534245278686285,0.018244275823235512,0.011417659930884838,-0.03926161304116249,0.015894025564193726,0.017573988065123558,-0.03708109259605408,-0.02130185067653656,0.0643765926361084,-0.05873098596930504,-0.008765303529798985,0.03444282338023186,0.0030147507786750793,0.006874860264360905,0.09719067066907883,-0.017914632335305214,0.0951048955321312,-0.03821714222431183,-0.0448155552148819,-0.07415936887264252,-0.015315516851842403,-0.04818883165717125,-0.06571921706199646,0.020392416045069695,-0.03039439767599106,-0.039802584797143936,-0.04112055152654648,0.01916477270424366,0.10268180817365646,0.03738922253251076,-0.10248059034347534,0.0054609645158052444,-0.05820966884493828,-0.019755894318223,-0.08794807642698288,0.06468046456575394,-0.002736723283305764,-0.0054684653878211975,-0.06959386169910431,0.03057166375219822,-0.028066841885447502,0.04893650487065315,0.09279821813106537,0.08884913474321365,0.005193599034100771,0.05764380469918251,-0.095291368663311,0.009612257592380047,-3.744436583019706e-8,-0.03355169668793678,0.04405045136809349,0.01872149482369423,-0.0183721873909235,0.07977110892534256,-0.05896148085594177,0.002156525617465377,0.02545248530805111,-0.062291257083415985,-0.036862812936306,0.09182075411081314,0.049064453691244125,-0.0924459770321846,-0.0065237958915531635,0.029147498309612274,0.021360525861382484,0.044683925807476044,-0.051149625331163406,-0.07897990196943283,-0.052503038197755814,-0.033884257078170776,0.053975898772478104,-0.0067939613945782185,-0.004516957327723503,-0.02461271919310093,0.004759280942380428,0.043450985103845596,0.055386096239089966,0.03522691875696182,0.00017920690879691392,0.03301982954144478,0.03147405758500099,-0.13804195821285248,-0.07822851836681366,0.058172352612018585,0.008427387103438377,-0.10176753997802734,0.05998460575938225,0.08612944930791855,-0.03108278661966324,-0.14711704850196838,-0.07282515615224838,-0.014747229404747486,0.036645274609327316,0.07446280866861343,0.05523955449461937,-0.06183723360300064,0.07491139322519302,-0.03557075932621956,-0.12409548461437225,-0.03875729814171791,-0.0525989904999733,0.11737670004367828,0.03996002674102783,0.05532178655266762,-0.0153119545429945,0.07292095571756363,-0.0025637145154178143,-0.009700581431388855,-0.005833086092025042,0.014700726605951786,0.05919251963496208,0.004620970692485571,-0.010730584152042866]},{"text":"I have ten thousand knives and forks, and the same quantity of dessert spoons.","book":"Down and Out in Paris and London","chapter":73,"embedding":[0.014486855827271938,-0.03869733214378357,-0.03658701851963997,-0.03852737694978714,-0.057973798364400864,-0.03057631105184555,0.07924140989780426,-0.009623180143535137,0.0026807333342731,-0.021360699087381363,0.011640114709734917,-0.07493390142917633,0.03738690912723541,-0.001560655073262751,0.010422893799841404,-0.07548678666353226,0.031005369499325752,-0.002895511919632554,-0.060971617698669434,-0.03791331499814987,0.012395748868584633,-0.024347985163331032,0.02509169839322567,-0.007703165058046579,0.03203324228525162,0.023020939901471138,0.0035847024992108345,-0.03588217496871948,-0.009200239554047585,-0.013341196812689304,0.026731211692094803,0.02585810236632824,-0.03934408351778984,0.0010521042859181762,0.015856308862566948,-0.028342459350824356,-0.04211200028657913,-0.017544733360409737,0.000049421323637943715,-0.005808734335005283,-0.012617398053407669,0.041756145656108856,0.044272832572460175,-0.01444638054817915,0.05464192479848862,0.034782227128744125,-0.053100284188985825,0.019024083390831947,0.10696973651647568,-0.0029682028107345104,-0.027492519468069077,0.0904259905219078,-0.04637709632515907,-0.032101575285196304,0.05493703484535217,-0.06435639411211014,0.03300490975379944,0.04529523104429245,-0.02414141781628132,0.08229386061429977,0.01409053523093462,-0.005338233429938555,0.0004468537517823279,-0.03248464688658714,0.026750095188617706,0.06276728957891464,0.007932097651064396,0.010226895101368427,-0.12443060427904129,0.050611864775419235,-0.019192446023225784,0.04248405247926712,-0.023883653804659843,0.07924317568540573,-0.004159755539149046,-0.03780830651521683,0.036625877022743225,-0.05768212303519249,-0.14205306768417358,0.058527231216430664,-0.15619204938411713,0.0680319219827652,0.0434236153960228,-0.03762463107705116,-0.03677228093147278,-0.04434869810938835,0.0027764912229031324,0.04616960510611534,-0.005572900641709566,0.0014809798449277878,-0.026965653523802757,0.010975212790071964,0.08111189305782318,0.03954605013132095,-0.0429057776927948,0.029776541516184807,-0.0011633385438472033,0.033592354506254196,0.0023088466841727495,0.06122315302491188,-0.03396748751401901,-0.007573720999062061,-0.0015226865652948618,0.0029174138326197863,-0.002096625044941902,0.06213286891579628,-0.02619161084294319,-0.034278642386198044,-0.005290679167956114,-0.04995148256421089,0.025202589109539986,0.04145270958542824,-0.0378991924226284,0.015896128490567207,-0.03426410257816315,-0.06511881202459335,0.024213062599301338,0.005455170292407274,0.06541366875171661,0.06288981437683105,0.05023699253797531,0.03901255875825882,0.0318942554295063,0.0439269132912159,-0.07587812095880508,0.022319357842206955,-0.014493963681161404,-2.430796502870754e-33,-0.05436079949140549,-0.010133081115782261,0.06674859672784805,0.06675197929143906,0.02864573337137699,-0.03871613368391991,0.010282374918460846,0.10343188047409058,0.05824243649840355,0.020492659881711006,0.02422502264380455,0.0048810881562530994,-0.0665031298995018,0.03315667808055878,0.0035241935402154922,-0.053899068385362625,0.05394292622804642,0.05885851010680199,0.034837186336517334,-0.04060980677604675,-0.06198343634605408,-0.07965274155139923,-0.0018502521561458707,0.0312081016600132,-0.02701397053897381,0.07418932765722275,0.02822161838412285,0.04754282534122467,0.022288942709565163,-0.010201646946370602,0.05416059121489525,0.04487093910574913,0.034494463354349136,-0.07427064329385757,-0.029967745766043663,0.026594126597046852,0.03214728832244873,-0.007321030832827091,0.06688189506530762,-0.08546359091997147,-0.07914147526025772,0.042241666465997696,0.03932221233844757,0.02634311281144619,-0.05474954470992088,0.01735149323940277,0.054447442293167114,0.09920696914196014,-0.056952234357595444,-0.05146031081676483,-0.0827227234840393,0.007948663085699081,0.0013779174769297242,0.10547637939453125,-0.017639201134443283,-0.09538113325834274,-0.005641098599880934,0.00442465441301465,0.013060021214187145,0.025302089750766754,0.009830583818256855,-0.010555063374340534,-0.05071283131837845,0.07292168587446213,-0.04356027767062187,0.0959087535738945,0.02806805819272995,0.0464094914495945,0.11682751029729843,0.013796099461615086,-0.033189840614795685,-0.008740175515413284,0.039241816848516464,0.0049057090654969215,0.04312150180339813,-0.028511954471468925,0.07540138810873032,-0.03645564615726471,-0.05520428717136383,0.014088533818721771,0.04011571779847145,0.04782991111278534,-0.028993232175707817,0.010964709334075451,0.005049208644777536,0.041015591472387314,-0.017365163192152977,-0.04253827780485153,0.021191004663705826,-0.005488737020641565,-0.08254815638065338,-0.028787478804588318,0.032576389610767365,-0.042005181312561035,-0.11973543465137482,1.4945201197220985e-33,-0.03239798918366432,0.03507881239056587,-0.061467837542295456,0.07247518002986908,-0.007300717756152153,-0.011832264252007008,0.013076746836304665,-0.06966999918222427,-0.10406212508678436,-0.007952363230288029,-0.047525934875011444,0.008872920647263527,-0.00932829175144434,-0.03273273631930351,-0.08750303834676743,0.016201667487621307,-0.011510227806866169,0.0775597095489502,0.08607691526412964,-0.08459290862083435,-0.05175693705677986,0.08162163943052292,0.06236313655972481,-0.041075192391872406,-0.054822683334350586,0.0418609082698822,-0.06664268672466278,-0.0005850997404195368,-0.0953138992190361,0.008874837309122086,-0.0037274553906172514,-0.15385694801807404,0.007159029599279165,-0.04262702539563179,-0.0590084046125412,-0.01873580552637577,-0.0370609425008297,-0.033115506172180176,-0.015616293996572495,0.030270058661699295,0.0027644047513604164,-0.07336016744375229,0.03334639593958855,0.019460320472717285,-0.04396329075098038,-0.02838403917849064,-0.028134845197200775,0.00346931884996593,0.06713373214006424,0.02113395929336548,0.06645172834396362,0.06553082913160324,-0.021649900823831558,-0.06031929701566696,-0.043586939573287964,0.028658127412199974,0.027381932362914085,-0.017921969294548035,0.016135431826114655,0.00023761588090565056,-0.03332766890525818,0.044301588088274,0.01682850532233715,0.14998678863048553,0.07567792385816574,0.007319657132029533,0.021277334541082382,-0.020772378891706467,-0.013657616451382637,-0.006081862840801477,0.021817272529006004,-0.025258898735046387,0.10458098351955414,-0.02541809156537056,-0.04690055176615715,-0.00504757184535265,0.03575722128152847,0.0008877369109541178,0.024605102837085724,0.024728629738092422,-0.0694599449634552,-0.08633016049861908,0.05082638934254646,0.026527397334575653,-0.04303547739982605,0.007110872771590948,0.02756153978407383,0.011262589134275913,0.0023496709764003754,0.1084355041384697,-0.05658524110913277,0.023605193942785263,0.09386909008026123,-0.08337771147489548,0.029355788603425026,-1.9971261977502763e-8,0.11523064225912094,-0.005996801424771547,0.02101314067840576,0.0070631070993840694,-0.03224197402596474,-0.021027784794569016,-0.06618659198284149,0.04289703816175461,-0.0635167732834816,-0.03191889822483063,0.06551343202590942,0.018605181947350502,-0.06382142752408981,0.06946627050638199,-0.013456783257424831,-0.03578079864382744,0.05371781066060066,-0.023166034370660782,-0.031765762716531754,0.05434410646557808,0.010173479095101357,0.05108065903186798,0.07908499240875244,-0.05056126415729523,-0.041145388036966324,0.029228996485471725,0.0025497900787740946,0.09236513078212738,0.02168748527765274,0.07467420399188995,0.005082107149064541,-0.06502558290958405,-0.058459531515836716,0.018733663484454155,0.012245477177202702,-0.011683831922709942,-0.2533341348171234,0.022879397496581078,0.007790572941303253,0.020278552547097206,-0.11572545766830444,-0.09632163494825363,-0.02887486107647419,0.08934693783521652,0.00220605474896729,0.055715132504701614,-0.1371244341135025,0.01872509904205799,0.004395469557493925,0.01240170281380415,0.009299698285758495,0.04787067323923111,0.05171551555395126,-0.00015016809629742056,-0.004355972167104483,0.025217989459633827,0.037303484976291656,-0.015646712854504585,0.03154687210917473,0.08052720129489899,0.026512445881962776,-0.057754166424274445,-0.11911381781101227,-0.07748793810606003]},{"text":"My rank is the highest known in Switzerland: I’m a free citizen.","book":"Down and Out in Paris and London","chapter":73,"embedding":[-0.006204257253557444,-0.0011289688991382718,0.002390677575021982,-0.004326562397181988,0.1092725396156311,0.029303913936018944,0.0672701746225357,0.031151631847023964,-0.05432834103703499,-0.01014684047549963,-0.001822293153963983,-0.04711113125085831,0.08404061198234558,-0.023867135867476463,0.004537954926490784,-0.06414283066987991,-0.006258990149945021,-0.023679295554757118,-0.023722264915704727,0.004260332323610783,-0.05527263879776001,-0.043940648436546326,0.07448867708444595,0.034143418073654175,0.04497839882969856,-0.0704280212521553,0.043345220386981964,-0.051650237292051315,-0.012821536511182785,-0.04271211475133896,-0.033321939408779144,0.044613491743803024,0.00015795718354638666,0.03977077081799507,-0.005289202090352774,0.027784643694758415,0.05193714052438736,-0.030559848994016647,-0.06755655258893967,0.01999843493103981,0.03413911908864975,-0.020339494571089745,0.004766035825014114,-0.01500377245247364,0.09260108321905136,0.06118801608681679,0.018018923699855804,0.017293283715844154,-0.02644561603665352,0.01073555089533329,-0.032308902591466904,0.10031335055828094,-0.011413909494876862,0.07526431977748871,-0.05381648242473602,-0.043543241918087006,0.030932912603020668,-0.05290709435939789,-0.04401707276701927,-0.00009337881056126207,-0.032920148223638535,-0.013614761643111706,-0.039063431322574615,-0.01212616078555584,0.015077970921993256,0.06139763444662094,-0.09649260342121124,-0.018505599349737167,-0.0762891173362732,-0.036764148622751236,-0.044614873826503754,-0.00013959695934318006,-0.00285270600579679,0.07452782988548279,0.03142203018069267,-0.14048919081687927,-0.029634984210133553,0.013351968489587307,0.027377182617783546,0.09323947876691818,0.05350784212350845,-0.025286609306931496,-0.085316963493824,0.07924780994653702,0.041065018624067307,-0.013862255029380322,-0.04518163204193115,-0.018469776958227158,-0.00012587980017997324,-0.058555129915475845,0.052560824900865555,-0.0024824042338877916,0.05042758956551552,0.049785468727350235,-0.016199294477701187,-0.040403906255960464,0.05922505632042885,0.07851619273424149,-0.0771813914179802,0.054875750094652176,-0.0017924001440405846,-0.06851686537265778,-0.06455043703317642,0.04166019335389137,-0.04043366760015488,0.03427993506193161,0.013789957389235497,0.023771047592163086,0.01232155691832304,-0.015316391363739967,0.0007895001908764243,0.03712289780378342,0.01391452457755804,0.009016103111207485,-0.014931761659681797,0.02465055137872696,-0.021790608763694763,-0.05732757970690727,0.057551488280296326,0.010605680756270885,0.06355257332324982,0.06351009756326675,-0.02495565451681614,-0.009976847097277641,-0.014405736699700356,0.018551629036664963,0.03788979351520538,-6.478995723314219e-33,-0.010312793776392937,0.08896182477474213,0.11883629113435745,0.03184254840016365,-0.011518069542944431,0.042612310498952866,-0.09521316736936569,-0.04516427963972092,-0.09872513264417648,0.040891263633966446,0.0024699647910892963,0.047969087958335876,0.012248811312019825,0.022180087864398956,0.027707571163773537,0.02095772698521614,0.026146333664655685,0.004234541207551956,0.010594435036182404,0.10237550735473633,0.0964403823018074,-0.011335630901157856,-0.003937069326639175,0.03264474496245384,0.022934352979063988,-0.058266498148441315,-0.037051454186439514,-0.06483451277017593,-0.0036413948982954025,0.00023425339895766228,-0.018420830368995667,0.07427624613046646,0.021862667053937912,-0.062112413346767426,0.029997864738106728,0.07128099352121353,-0.02034754306077957,0.018231550231575966,0.02000759355723858,-0.06775254756212234,-0.04330950230360031,-0.03789506107568741,-0.026321399956941605,-0.023836398497223854,-0.012935792095959187,0.009537873789668083,0.0021137346047908068,0.0033621317707002163,0.02345954440534115,0.009047594852745533,-0.05213260278105736,0.05073259770870209,-0.07535524666309357,-0.03725249320268631,-0.011631605215370655,-0.00518372468650341,-0.00318207498639822,0.07119541615247726,-0.1190769299864769,-0.0695485919713974,-0.047344669699668884,0.021468449383974075,-0.07146959006786346,0.08796477317810059,-0.05607862398028374,-0.07269809395074844,-0.04687300696969032,0.006249843165278435,0.05980244278907776,-0.011072501540184021,0.055441826581954956,0.043776985257864,-0.021845461800694466,0.05121702328324318,-0.08760705590248108,0.08108801394701004,0.021324114874005318,0.0321975015103817,0.030345473438501358,-0.003712804289534688,0.00401069363579154,-0.05348450317978859,0.02235046774148941,0.00048772210720926523,0.08015909045934677,0.0012026509502902627,0.073084756731987,-0.06337528675794601,0.03198572248220444,0.007883802987635136,-0.001618522685021162,-0.03709107264876366,0.012901131995022297,-0.006904772017151117,-0.10339458286762238,3.509264264279224e-33,-0.014013806357979774,-0.08072661608457565,0.05836788937449455,-0.033951401710510254,0.0701308324933052,0.01885977014899254,0.02837994135916233,0.0868779718875885,-0.08086366206407547,0.041473034769296646,-0.013698645867407322,0.038179799914360046,0.07767631113529205,0.06126638874411583,0.08851742744445801,-0.017648711800575256,-0.06833955645561218,0.038332436233758926,0.01798201911151409,0.014336732216179371,-0.05139466002583504,0.04869241639971733,0.0029170417692512274,0.06725260615348816,-0.06607311964035034,0.0020256389398127794,-0.07227830588817596,0.038837626576423645,-0.026978587731719017,-0.06175723299384117,-0.03048001602292061,-0.029945150017738342,-0.12946867942810059,-0.036639999598264694,-0.07723762094974518,0.012881649658083916,-0.037573374807834625,-0.10172364115715027,0.01546521857380867,0.03816360607743263,-0.15566205978393555,-0.011963333934545517,-0.017866550013422966,-0.01859624683856964,-0.002127595478668809,-0.06564699858427048,-0.08136734366416931,-0.01717020384967327,-0.005802833940833807,-0.024549085646867752,-0.01662726327776909,0.03363686054944992,0.07816866040229797,-0.010249574668705463,0.007498565129935741,-0.03819733485579491,-0.08203408122062683,-0.0075060282833874226,0.07102787494659424,0.0022402997128665447,0.07639829069375992,0.08730395883321762,-0.10184282809495926,0.07773122191429138,0.010820768773555756,-0.15508557856082916,-0.06390243768692017,0.017485231161117554,-0.035572122782468796,0.006206005346029997,0.029138904064893723,0.02569812536239624,-0.025554051622748375,-0.011902894824743271,-0.060422662645578384,-0.014843221753835678,0.02887338027358055,0.12035215646028519,0.008379518985748291,-0.05670991167426109,0.042075976729393005,-0.02197757177054882,0.0048583983443677425,-0.007142122834920883,-0.036930426955223083,0.0003946041106246412,0.10816904902458191,-0.07698814570903778,0.0659487321972847,-0.04215824976563454,-0.02116803452372551,0.016103224828839302,-0.09056111425161362,-0.05345185846090317,0.0215566698461771,-2.0111135867750818e-8,-0.004986715968698263,0.040218621492385864,-0.061016835272312164,0.06488140672445297,-0.0854158103466034,-0.009628033265471458,-0.023074906319379807,-0.06212739273905754,0.014426223933696747,0.010129671543836594,-0.045313719660043716,-0.05157386139035225,0.03971211984753609,-0.02924923598766327,0.04296831041574478,0.016693314537405968,-0.017539123073220253,0.06250294297933578,-0.0028128563426434994,0.07726681232452393,0.016163986176252365,0.09860091656446457,0.0238470658659935,-0.05055707320570946,-0.0633530393242836,0.0023391188587993383,0.08919145166873932,-0.018038757145404816,0.03596440702676773,0.06834883987903595,-0.08915668725967407,-0.024143671616911888,-0.011062217876315117,-0.06062212958931923,0.02749323844909668,0.07303603738546371,-0.1265842765569687,-0.020339639857411385,0.01933589018881321,-0.06631382554769516,0.004340519197285175,0.04628098011016846,0.049162596464157104,0.05652207136154175,-0.04176678508520126,-0.02032289281487465,-0.02475385181605816,-0.0307674091309309,0.11420657485723495,0.025900406762957573,0.05943916365504265,0.016316290944814682,0.04845232889056206,0.015450039878487587,0.04157222807407379,0.09863150119781494,0.0013527650153264403,0.08577152341604233,-0.055697109550237656,-0.01582457311451435,0.10362528264522552,-0.08624041080474854,-0.07244499027729034,0.026791909709572792]},{"text":"I appealed to you as a fugitive, a beggar, and a starving man.","book":"Down and Out in Paris and London","chapter":73,"embedding":[-0.047332268208265305,0.0688505694270134,-0.01472534704953432,-0.0153673579916358,0.0032418756745755672,-0.013404862955212593,0.12871937453746796,-0.034635357558727264,-0.037051841616630554,-0.09028317779302597,0.021644508466124535,-0.07444457709789276,0.03457469865679741,-0.0426187738776207,0.02470758929848671,-0.0190189890563488,0.06771033257246017,-0.03328023850917816,-0.02027950994670391,0.0195696372538805,0.014525773003697395,0.07369769364595413,-0.026854509487748146,-0.021221891045570374,-0.027477316558361053,-0.03717790171504021,-0.014421154744923115,0.019330546259880066,-0.020191548392176628,0.05257558822631836,-0.01964407041668892,-0.008404700085520744,0.06630568951368332,0.03366468474268913,0.04477729648351669,0.039004359394311905,-0.0001415249571437016,-0.04396115615963936,0.02202613092958927,-0.04556666314601898,0.06016843765974045,-0.06654532253742218,0.05328752100467682,0.006061891093850136,0.0677930936217308,-0.05056656524538994,-0.07004714757204056,0.028196047991514206,0.04479845240712166,-0.04891682788729668,-0.07375405728816986,0.013639723882079124,-0.07140159606933594,0.04078569635748863,-0.020130876451730728,-0.0036323738750070333,0.007293246686458588,0.09987369924783707,-0.003531616646796465,-0.06632794439792633,0.017931856215000153,0.01979762688279152,0.0162105243653059,0.08201485872268677,0.004002302419394255,0.012824040837585926,-0.059778936207294464,-0.027936749160289764,0.014960911124944687,0.05129261314868927,0.05314291641116142,0.0038954417686909437,-0.04662467911839485,0.006616603583097458,-0.09384210407733917,-0.05000653862953186,0.05078014358878136,-0.0046929665841162205,0.030515043064951897,0.047375306487083435,-0.0676446184515953,-0.15126372873783112,-0.1352183073759079,-0.07550220191478729,-0.01602259650826454,-0.09387994557619095,0.01544871460646391,-0.05764919891953468,0.05831710994243622,0.03928842768073082,0.030437782406806946,-0.0216594859957695,0.02578515000641346,0.05506863072514534,-0.0372147262096405,-0.06092073395848274,-0.019936494529247284,-0.005969267338514328,-0.06116025522351265,0.09953800588846207,0.02433430589735508,0.02390945702791214,0.051031503826379776,-0.02687671035528183,0.04884921759366989,-0.02095639333128929,-0.06480701267719269,-0.031153801828622818,0.01884879358112812,-0.002115728100761771,-0.0376119539141655,0.05885215476155281,0.11803725361824036,0.015037338249385357,0.04229619726538658,0.009877171367406845,-0.008239234797656536,-0.0446111336350441,-0.004437066148966551,0.040298011153936386,0.017605556175112724,0.11125556379556656,-0.08772098273038864,0.10785025358200073,-0.05192918702960014,-0.07936980575323105,0.023883340880274773,-8.047927298672756e-33,-0.05427427589893341,-0.01877790130674839,0.05870995670557022,0.04316573590040207,-0.028232866898179054,-0.03410061076283455,-0.03181302919983864,-0.018259389325976372,-0.020262889564037323,-0.02291294001042843,-0.021687433123588562,0.04357479512691498,0.05970590189099312,0.08149340003728867,-0.08593154698610306,0.058050405234098434,-0.02596171386539936,0.020847048610448837,0.09316310286521912,0.031095879152417183,-0.01741444319486618,-0.013975492678582668,-0.021602652966976166,0.06383123993873596,-0.02429363876581192,-0.07341394573450089,-0.0255825724452734,-0.09299030154943466,0.1483723372220993,0.03758701682090759,-0.0012099159648641944,0.07411997020244598,0.05992957577109337,-0.0732310488820076,0.03342503681778908,0.016409089788794518,-0.005517452023923397,-0.024389538913965225,-0.0974704772233963,-0.024231133982539177,-0.033023517578840256,0.03200606256723404,0.08116934448480606,0.027750300243496895,-0.001612834632396698,-0.03361764922738075,0.043309010565280914,0.046453870832920074,0.00538702541962266,0.049021098762750626,-0.05638836696743965,-0.04289944842457771,0.032337844371795654,0.02558121830224991,-0.03684096783399582,-0.07360709458589554,-0.021362168714404106,0.07666999846696854,-0.04553094133734703,0.028296399861574173,-0.014715740457177162,-0.011267446912825108,0.014197645708918571,0.03850322589278221,-0.06499938666820526,-0.07792729884386063,-0.030213339254260063,-0.024237876757979393,0.01914014108479023,0.032093461602926254,-0.01567174680531025,-0.005511435214430094,-0.014848957769572735,0.07517316192388535,0.0072761294431984425,-0.03978436812758446,0.03624347969889641,0.01134414877742529,0.003618717659264803,-0.09514346718788147,0.06146644428372383,0.02572488784790039,-0.04279261827468872,0.039043836295604706,0.11180343478918076,0.02618034929037094,-0.016305038705468178,-0.1930389553308487,0.06286299973726273,-0.04211866110563278,-0.06172548979520798,0.04969083517789841,-0.08363143354654312,-0.016243914142251015,0.013400116004049778,4.040102084747214e-33,0.025147980079054832,-0.021475262939929962,0.029402069747447968,0.021883774548768997,0.0387890562415123,-0.02104262448847294,-0.04769688472151756,-0.030243519693613052,0.05068930238485336,0.05172042176127434,-0.08156021684408188,-0.005711228586733341,0.13605527579784393,0.016059786081314087,-0.01863923668861389,-0.023958351463079453,0.06432836502790451,-0.0583672821521759,-0.05846511572599411,-0.01939254254102707,-0.06894251704216003,0.07402858883142471,-0.010519640520215034,-0.005807459820061922,-0.07607309520244598,0.06644608080387115,0.06508610397577286,0.0013349050423130393,0.0057734777219593525,-0.055063653737306595,0.03438901528716087,-0.0122980372980237,-0.10543587058782578,0.0035973195917904377,-0.0095072565600276,0.06147177517414093,0.07264023274183273,-0.05595238134264946,-0.04141802713274956,-0.02651888318359852,-0.08085153996944427,-0.014651370234787464,0.03230063617229462,-0.005783412139862776,-0.01009716372936964,-0.029610833153128624,0.13097277283668518,-0.019394509494304657,-0.030317140743136406,-0.02030721865594387,0.013211076147854328,0.008764033205807209,0.04318195953965187,0.09755498915910721,-0.008405333384871483,-0.11161958426237106,0.004930663388222456,-0.07103083282709122,0.07121794670820236,-0.018634971231222153,-0.07006454467773438,0.04110320657491684,-0.013074818067252636,0.0169485155493021,0.02174456976354122,-0.07945945113897324,-0.022217009216547012,-0.00906921923160553,-0.06225554645061493,-0.08184900134801865,0.0904315933585167,-0.038152340799570084,0.00637911818921566,-0.006833203602582216,0.023426806554198265,0.008289213292300701,0.014254837296903133,0.041692666709423065,-0.029456039890646935,-0.10538265854120255,0.0033300628419965506,-0.034444164484739304,0.09466434270143509,-0.027168311178684235,-0.037098608911037445,0.01653607375919819,0.006933961529284716,-0.02739296481013298,-0.03908402845263481,0.030332505702972412,0.03656666353344917,-0.03346480429172516,0.09124227613210678,0.0017714608693495393,0.024572154507040977,-2.4937891751619645e-8,0.04266615957021713,0.11557400226593018,-0.03467072173953056,0.03461851924657822,-0.029712609946727753,0.019861971959471703,-0.03428073227405548,-0.06413397192955017,-0.02699553221464157,-0.024533433839678764,0.015379530377686024,0.04867921769618988,0.058595772832632065,0.013834103010594845,0.016677798703312874,-0.005594389978796244,0.02621261216700077,-0.06030736863613129,-0.03324322775006294,0.06097830832004547,-0.03615998104214668,0.04782640561461449,-0.08057067543268204,-0.04929743707180023,0.039978738874197006,0.06616684794425964,-0.00667191669344902,0.02925545908510685,0.039618976414203644,0.06859317421913147,-0.006396453827619553,0.05739498510956764,-0.10908398032188416,-0.02504490129649639,-0.05915159359574318,-0.004997225943952799,-0.06257179379463196,-0.018009744584560394,0.0010653858771547675,0.02866201288998127,0.0030660792253911495,0.03699814900755882,0.0020330119878053665,-0.007648263592272997,-0.025083966553211212,0.007288847118616104,0.02877223864197731,-0.002422451740130782,0.03362371772527695,0.005519510712474585,-0.014060795307159424,-0.0743711069226265,0.06467552483081818,0.008788892067968845,0.10292511433362961,-0.04460975527763367,-0.024631736800074577,0.0017700380412861705,0.0165616013109684,0.023224690929055214,0.10196567326784134,-0.05896194651722908,-0.1040704995393753,0.00010332112287869677]},{"text":"BLUNTSCHLI. (_with a boyish laugh of delight_).","book":"Down and Out in Paris and London","chapter":73,"embedding":[0.017280561849474907,-0.08350218832492828,-0.005780126433819532,0.053168363869190216,-0.0678485855460167,-0.02425539307296276,0.1628628969192505,-0.003631892381235957,0.021398335695266724,-0.06490977108478546,0.040260497480630875,-0.060008782893419266,-0.0517226904630661,0.03550475090742111,-0.010388005524873734,-0.009120465256273746,0.051481522619724274,0.02082146517932415,0.03821852430701256,0.023077746853232384,-0.03836110234260559,0.08225225657224655,0.01872830279171467,0.07432303577661514,-0.022905493155121803,-0.002334541641175747,0.09493699669837952,0.024790436029434204,-0.058051884174346924,-0.10397045314311981,0.023926232010126114,-0.040875136852264404,0.0729779452085495,-0.03796993941068649,-0.02078002132475376,-0.02352931722998619,-0.03932056203484535,-0.02852519042789936,0.04200882837176323,-0.009505967609584332,-0.11833179742097855,0.008864236995577812,0.03424810618162155,0.031573180109262466,-0.022922296077013016,-0.10699871182441711,-0.03862958773970604,0.024593010544776917,0.03378749638795853,0.0557546466588974,-0.05265539139509201,-0.11951741576194763,-0.05088278278708458,0.10458861291408539,-0.07350783050060272,-0.08833137154579163,-0.058978427201509476,0.038432374596595764,0.02294919453561306,0.0630774199962616,-0.056682661175727844,0.001918045454658568,-0.016953330487012863,0.062265582382678986,-0.05339217931032181,-0.018241645768284798,0.018210753798484802,-0.04212048649787903,-0.05077958479523659,0.0600208155810833,0.03417956829071045,-0.04875804856419563,0.036993302404880524,0.026815125718712807,-0.018382275477051735,-0.023786120116710663,0.01774117536842823,-0.01762061007320881,-0.006781109608709812,0.044568080455064774,0.025093533098697662,0.0069362386129796505,-0.10772060602903366,-0.053031012415885925,-0.05691972002387047,0.015066500753164291,-0.03937753289937973,0.0018568102968856692,-0.07573312520980835,-0.043331701308488846,-0.07262886315584183,0.012417150661349297,-0.026845505461096764,-0.02001067064702511,-0.04792580008506775,0.0031912431586533785,0.019168725237250328,-0.06670761108398438,-0.05667436122894287,0.05671662092208862,-0.02054971642792225,0.047005586326122284,0.028660904616117477,-0.030492033809423447,-0.03587290272116661,-0.001439334126189351,-0.04855046048760414,-0.06159417703747749,0.014482293277978897,-0.09873823076486588,0.0008248065132647753,-0.01795090176165104,0.01482392381876707,-0.07144343107938766,0.015314538031816483,0.010988529771566391,0.07630844414234161,-0.026567919179797173,0.046969395130872726,0.01967712491750717,0.001558678806759417,0.011077175848186016,-0.005929188337177038,0.0033043096773326397,-0.06543155014514923,-0.007167477626353502,-0.027310172095894814,-4.665339448425927e-33,0.045435886830091476,0.015017366968095303,0.018058229237794876,0.043504685163497925,0.056739144027233124,-0.08337114751338959,-0.0396413579583168,0.008467321284115314,-0.13564319908618927,0.0011784699745476246,-0.06101231276988983,-0.09127672016620636,-0.08758704364299774,0.027950376272201538,0.047487806528806686,0.06108666956424713,-0.01021937932819128,0.02668445184826851,0.02975885011255741,0.020286358892917633,-0.04272306710481644,0.09294071793556213,0.005477624945342541,0.05084707960486412,-0.027837038040161133,0.025428591296076775,0.06100489944219589,-0.026387406513094902,0.06080342084169388,0.014881365932524204,-0.02095704711973667,0.10307493805885315,-0.033977072685956955,0.05157449096441269,-0.004910161718726158,0.00918037723749876,-0.038633380085229874,-0.02867916226387024,0.004473487380892038,0.06980710476636887,-0.028884900733828545,0.03812986612319946,-0.03945111483335495,0.055732086300849915,-0.00425508851185441,0.011555354110896587,-0.037115126848220825,0.04227357730269432,0.11308526992797852,-0.04545312374830246,-0.04051928222179413,-0.019343912601470947,0.08231654763221741,0.05839360132813454,-0.03907189518213272,-0.007151138037443161,0.052872903645038605,0.04034595564007759,0.07570897042751312,-0.016837339848279953,0.020064039155840874,0.08596855401992798,-0.027159061282873154,-0.013654662296175957,0.03892510011792183,-0.031996965408325195,-0.006902257911860943,-0.029386352747678757,0.07347748428583145,-0.03848712891340256,0.017072025686502457,-0.00994480587542057,0.006100610829889774,-0.038099441677331924,-0.027273470535874367,-0.049130432307720184,-0.04108072444796562,0.003138143103569746,0.1166367381811142,-0.034382402896881104,0.031040020287036896,-0.026137853041291237,-0.06050863116979599,-0.013830454088747501,-0.04822363331913948,0.029998604208230972,-0.030948996543884277,-0.05107314512133598,-0.025660868734121323,0.022393707185983658,-0.11731987446546555,0.00692957965657115,0.0410039909183979,-0.03468991816043854,-0.022303124889731407,2.8669866406174034e-33,0.07847366482019424,-0.04130815342068672,-0.06559835374355316,0.16913717985153198,0.02490823343396187,0.06098583713173866,-0.05297502502799034,0.00028852687682956457,0.011233371682465076,0.026829754933714867,0.04869043081998825,-0.10155162960290909,0.05077836290001869,-0.06027338281273842,0.07938183844089508,-0.018233884125947952,0.06153490021824837,-0.025094756856560707,-0.04655161499977112,0.02078171633183956,-0.030556758865714073,-0.00819437950849533,-0.0977104976773262,0.0061236475594341755,-0.030507849529385567,-0.05049141123890877,0.029079526662826538,0.07285621017217636,-0.12338623404502869,0.03997384384274483,-0.0048961094580590725,-0.009343051351606846,0.0015100805321708322,-0.07327283918857574,0.02558201178908348,0.06508170068264008,-0.025671765208244324,-0.008340174332261086,-0.02540905587375164,0.0019803193863481283,-0.045160453766584396,0.012003319337964058,0.07504988461732864,0.14249151945114136,0.08803777396678925,-0.013457457534968853,-0.08034074306488037,0.014620008878409863,-0.00639120489358902,0.02350410632789135,-0.0015571395633742213,-0.01425028033554554,-0.06859449297189713,-0.05171600729227066,0.03443247079849243,0.04190850257873535,-0.04858095571398735,-0.03500841185450554,-0.019071238115429878,0.0005036731599830091,-0.04181002080440521,-0.013478108681738377,-0.008344347588717937,-0.007920281030237675,-0.0139407217502594,0.012082264758646488,-0.06300240755081177,-0.022768395021557808,-0.0177827849984169,0.05154341831803322,0.04931426793336868,-0.003406291361898184,0.06025972589850426,0.009155619889497757,-0.0009140195325016975,-0.007479896768927574,0.03778648376464844,0.0453094020485878,0.021230323240160942,-0.04544379562139511,0.07471165060997009,-0.043606825172901154,-0.02003326267004013,-0.0434408113360405,0.09571454674005508,-0.0006931343814358115,-0.01529979519546032,-0.018065737560391426,0.00304098566994071,0.09219236671924591,0.04169412702322006,0.0918152779340744,0.010187255218625069,-0.0929645225405693,0.02524799294769764,-2.0854121984825724e-8,0.04057823121547699,-0.009792471304535866,-0.12077462673187256,-0.01143556647002697,0.07201895862817764,-0.04780305549502373,0.06356418132781982,-0.038419682532548904,-0.04992201179265976,-0.029397286474704742,-0.03980724886059761,0.06602649390697479,0.04985302314162254,0.04714871570467949,0.001488338690251112,-0.003422581823542714,0.13480862975120544,0.0775734931230545,-0.012892582453787327,0.025383859872817993,0.03727371245622635,0.06586701422929764,0.08700261265039444,-0.09118329733610153,-0.05386609584093094,0.01492923591285944,0.03296578675508499,-0.004407163243740797,0.04958389326930046,-0.015618881210684776,0.011392130516469479,0.08761447668075562,-0.1009962260723114,-0.004937989637255669,-0.015719370916485786,0.056653790175914764,-0.04028008505702019,0.012708982452750206,-0.02260599099099636,0.0528467558324337,0.0140190739184618,0.061793867498636246,-0.00009384674194734544,-0.034656036645174026,-0.06778185069561005,-0.04476158320903778,0.05395178124308586,-0.023290380835533142,-0.007660169154405594,0.09354682266712189,-0.03109115920960903,-0.0120985833927989,-0.02849430777132511,0.028403354808688164,0.06022803485393524,-0.012271060608327389,0.008979140780866146,0.07827389240264893,-0.10843085497617722,0.002662201412022114,0.12862439453601837,-0.015461060218513012,0.054305095225572586,0.04696088284254074]},{"text":"What a man! *** END OF THE PROJECT GUTENBERG EBOOK ARMS AND THE MAN *** Updated editions will replace the previous one—the old editions will be renamed.","book":"Down and Out in Paris and London","chapter":74,"embedding":[-0.06290468573570251,0.029517266899347305,0.015113222412765026,-0.032022736966609955,-0.025269456207752228,-0.05368364229798317,-0.03662129491567612,-0.05322235822677612,0.00520937517285347,0.015825416892766953,-0.0038196260575205088,0.07904849201440811,-0.03966425359249115,-0.07656516134738922,0.03329278156161308,-0.048072896897792816,-0.08778902888298035,-0.013579782098531723,0.06703156232833862,0.09111639112234116,-0.017032602801918983,0.09628221392631531,-0.02137621119618416,-0.034509215503931046,-0.018782611936330795,-0.03574652969837189,-0.07130972295999527,-0.012798820622265339,-0.0168452188372612,-0.074826180934906,0.03963644057512283,0.009535021148622036,0.029112808406352997,-0.021514680236577988,0.04292355105280876,-0.019142577424645424,0.03447651490569115,0.009841939434409142,-0.02237277664244175,-0.0035199359990656376,0.004549306817352772,-0.0675639808177948,-0.011549506336450577,0.06632408499717712,0.0036411501932889223,0.08752454072237015,-0.062191806733608246,-0.07251381129026413,0.020476916804909706,0.05121239647269249,-0.01729874685406685,-0.08763066679239273,-0.0003128553507849574,-0.06917247921228409,0.0224175825715065,-0.03464999794960022,0.03917649760842323,0.0016448854003101587,-0.03845704719424248,-0.00992830004543066,0.021960824728012085,-0.04168502613902092,-0.016142768785357475,0.06152227520942688,0.09671393781900406,0.0030227862298488617,0.01382666639983654,0.007209457457065582,-0.04344387724995613,0.02534916251897812,-0.005615783855319023,-0.024246614426374435,0.04468211159110069,0.031105687841773033,-0.01072902325540781,-0.041781727224588394,-0.10597804188728333,-0.0440649650990963,-0.027798183262348175,-0.004204385913908482,-0.041037268936634064,-0.033590879291296005,-0.04441436752676964,0.01382718700915575,-0.05054757371544838,0.10321728140115738,0.04767286777496338,-0.03651556000113487,-0.009149136953055859,0.018694639205932617,-0.03372645750641823,-0.07342738658189774,0.1414630115032196,0.10454673320055008,-0.12650726735591888,0.03713743016123772,-0.015918180346488953,0.03587103635072708,-0.07547837495803833,0.06148713454604149,-0.01496900711208582,-0.005620007868856192,0.02515162155032158,-0.09329669177532196,-0.039612699300050735,-0.0864754244685173,0.007019493728876114,-0.0011246087960898876,-0.031683359295129776,-0.05339202657341957,-0.01318567804992199,-0.054009318351745605,-0.04975036159157753,-0.09258737415075302,0.04937181994318962,-0.08491960912942886,0.027667904272675514,0.021116890013217926,0.035450950264930725,0.05999693647027016,0.0349743627011776,0.09710352122783661,0.04283261299133301,0.0206544678658247,-0.0012220327043905854,-0.010120273567736149,0.011602718383073807,-2.6616676341340823e-33,-0.040119823068380356,0.020962312817573547,-0.031694445759058,0.07338738441467285,0.07255668938159943,-0.02358008548617363,0.0075975097715854645,0.01175731886178255,-0.018419688567519188,-0.08128706365823746,0.012167347595095634,0.0362447090446949,-0.1082809790968895,0.008454888127744198,-0.03379951789975166,-0.0301546361297369,-0.032915789633989334,0.05476755648851395,0.07215005904436111,0.006610111333429813,-0.03189363330602646,0.044578567147254944,-0.0050695971585810184,-0.0181290116161108,-0.016763128340244293,0.07748506963253021,0.05049978569149971,-0.0031447336077690125,-0.0001034911401802674,-0.0004372387193143368,-0.08630040287971497,0.02920769341289997,-0.014909175224602222,-0.0672590360045433,-0.022862643003463745,-0.023267416283488274,-0.07802201807498932,-0.03509125858545303,-0.03866935148835182,0.0014782201033085585,0.0082220658659935,0.04138824716210365,-0.035640254616737366,0.007897097617387772,0.08079345524311066,0.014073103666305542,0.10421747714281082,0.05960680916905403,0.13106787204742432,-0.051969755440950394,-0.046232521533966064,-0.009658834896981716,0.024413226172327995,-0.0321258008480072,0.012986266054213047,-0.017202628776431084,0.0021514741238206625,0.053627245128154755,-0.005024078767746687,-0.02167435549199581,0.12431377917528152,0.09442081302404404,0.11153056472539902,0.031815025955438614,0.011140300892293453,0.08305761963129044,-0.0059284307062625885,-0.002904995111748576,-0.05838526040315628,0.018681911751627922,-0.08974451571702957,-0.0720023587346077,0.0570911169052124,0.06080513074994087,0.029536841437220573,-0.02199839986860752,-0.0692710280418396,0.03211461007595062,-0.03993051126599312,-0.08277460932731628,-0.008762487210333347,0.0050839632749557495,0.006515217944979668,-0.01170932874083519,-0.0009169622207991779,-0.009177271276712418,0.017019063234329224,-0.10602360218763351,0.037668682634830475,0.03689181059598923,0.031406234949827194,-0.04586564376950264,-0.05074126273393631,0.05780165269970894,0.03871600702404976,-1.0449489302956308e-34,-0.005613886751234531,-0.07564585655927658,-0.10681577771902084,-0.00811217911541462,-0.03927129507064819,-0.011158319190144539,-0.0259755477309227,0.09596599638462067,-0.0004958121571689844,-0.022188793867826462,0.034796591848134995,-0.0022992168087512255,0.02299618162214756,0.0030812781769782305,0.04519214853644371,-0.02492150291800499,0.04169583320617676,-0.0962441936135292,-0.017736373469233513,-0.03501543030142784,-0.011224468238651752,-0.005026249215006828,0.049082014709711075,-0.031370729207992554,0.0745662972331047,0.0038460155483335257,0.08418154716491699,0.0322248712182045,0.03351553529500961,-0.03155336529016495,0.026684187352657318,-0.09268660843372345,-0.04378823935985565,0.06580469012260437,-0.0027535399422049522,-0.08914314955472946,0.02157653495669365,0.028127750381827354,0.023118630051612854,-0.0010992246679961681,0.026936057955026627,-0.0009542623884044588,0.03181643411517143,-0.03615634888410568,0.03940191492438316,-0.007672865875065327,-0.0284888818860054,0.03775504603981972,-0.0066468664444983006,-0.07205092161893845,0.0035638378467410803,-0.011853786185383797,0.004278435371816158,-0.1694878190755844,-0.03207322955131531,0.024517908692359924,0.06797448545694351,-0.056543685495853424,0.04533981904387474,0.05756879970431328,-0.09635575115680695,0.009826449677348137,0.0129782035946846,0.09085693955421448,-0.05512479320168495,0.03714422509074211,-0.06494101881980896,-0.04408707469701767,-0.0939100831747055,0.050266750156879425,-0.00897789653390646,-0.07027778029441833,-0.0528995618224144,-0.05017177388072014,0.014422222971916199,0.09015803039073944,0.0992981493473053,-0.007576967589557171,-0.012839960865676403,-0.11390499025583267,-0.05236160382628441,0.02436223439872265,0.016013221815228462,0.09547033160924911,0.03769125044345856,0.10523253679275513,0.0003408999473322183,-0.0014930320903658867,-0.05390017107129097,0.02255169488489628,-0.015484463423490524,0.027987074106931686,0.01422374788671732,0.042182039469480515,0.008058720268309116,-2.9510760057860352e-8,-0.04621206596493721,0.04968133941292763,-0.006329153198748827,-0.05356360599398613,0.03530596196651459,0.022111715748906136,-0.03236405923962593,-0.037541214376688004,0.02627227082848549,0.04675116017460823,0.004796457011252642,-0.00807098113000393,0.07280869781970978,0.08170607686042786,-0.006106504704803228,0.029053574427962303,0.03402591124176979,-0.06563364714384079,-0.053587157279253006,-0.004901896696537733,0.05241549015045166,-0.04732096567749977,0.05275259539484978,-0.037486229091882706,-0.005389356520026922,0.07494247704744339,-0.04174385592341423,0.0031544012017548084,-0.010527127422392368,0.005975728388875723,0.01062626764178276,0.07234618067741394,-0.016458643600344658,0.05791737139225006,0.036450207233428955,0.008146665059030056,-0.04524088278412819,0.14779263734817505,-0.012517491355538368,0.06875777989625931,-0.017989011481404305,-0.05330885574221611,-0.0502416230738163,0.041581422090530396,0.007391759660094976,-0.013179306872189045,-0.0032576783560216427,0.05472933501005173,0.040024735033512115,0.03163143992424011,0.08221479505300522,0.01338600181043148,0.06102277338504791,0.03223808854818344,0.07042822241783142,-0.018681446090340614,-0.0027447405736893415,0.0031792602967470884,-0.05144993215799332,0.007022377569228411,0.1185857355594635,-0.18316709995269775,-0.012036677449941635,0.0645110011100769]},{"text":"Project Gutenberg eBooks may be modified and printed and given away—you may do practically ANYTHING in the United States with eBooks not protected by U.S. copyright law.","book":"Down and Out in Paris and London","chapter":74,"embedding":[-0.05702000483870506,-0.02870255522429943,-0.009272433817386627,-0.018904652446508408,0.06901919841766357,0.046407703310251236,-0.12660063803195953,-0.006069163326174021,0.0063781337812542915,0.03475283086299896,0.005535672884434462,0.11799588054418564,-0.011328091844916344,-0.08541329205036163,-0.027259407564997673,-0.08016073703765869,0.03782040998339653,0.013559656217694283,0.04392334073781967,0.014831621199846268,0.02884579636156559,0.0753975659608841,0.07041297852993011,0.0351690948009491,0.06002407148480415,-0.029825707897543907,0.015829917043447495,-0.025079507380723953,-0.01598714292049408,-0.07089072465896606,-0.018899939954280853,-0.04841991513967514,0.04221595451235771,-0.041349027305841446,0.033952970057725906,0.04639705270528793,0.01940862648189068,-0.02380996011197567,0.05593973025679588,-0.027032295241951942,-0.0003460638108663261,-0.08795119822025299,-0.05892296880483627,0.035016078501939774,-0.00017979480617213994,0.024123677983880043,-0.056154172867536545,-0.01431887224316597,-0.0578550286591053,0.06803689152002335,0.020911091938614845,-0.007876098155975342,-0.01197256613522768,-0.10006096959114075,0.024691743776202202,-0.08849772065877914,0.051857467740774155,0.029387930408120155,-0.04754474014043808,-0.06181907281279564,-0.018432293087244034,-0.07633589953184128,-0.03806615248322487,0.030873393639922142,0.039213500916957855,0.11211885511875153,0.0001740815059747547,0.12306522578001022,-0.012493857182562351,-0.06262929737567902,-0.05261792987585068,-0.037240732461214066,0.0950179398059845,0.08634857833385468,0.024232100695371628,-0.06139916554093361,-0.030368339270353317,-0.016074929386377335,-0.010348357260227203,0.009749729186296463,-0.052012450993061066,-0.05091165751218796,0.03894655779004097,-0.009899656288325787,-0.08422017842531204,0.037900496274232864,0.06033601984381676,0.04086671024560928,0.07319220900535583,0.00015024728782009333,0.03350787237286568,-0.027344323694705963,0.12394263595342636,0.057088207453489304,-0.09203658252954483,-0.007816671393811703,0.024421988055109978,-0.03232775628566742,0.031649861484766006,0.025803057476878166,-0.047157224267721176,-0.021215789020061493,0.018571142107248306,-0.05909346416592598,-0.03534277155995369,-0.04196183755993843,0.00477557023987174,-0.08512585610151291,-0.04253580793738365,-0.020518474280834198,-0.00404618214815855,-0.026868833228945732,0.008726944215595722,-0.03911091387271881,0.08475171029567719,-0.1305987536907196,0.0857929214835167,-0.059752799570560455,0.09676916897296906,-0.014135090634226799,-0.045949049293994904,0.07726767659187317,0.06695184111595154,-0.01637878455221653,-0.06028806418180466,-0.06269920617341995,-0.0022672684863209724,1.0434206728451917e-33,0.030938642099499702,0.041367124766111374,-0.0012081284075975418,0.010467479936778545,0.09311997890472412,-0.0641527771949768,0.04729536175727844,-0.03323937952518463,-0.0741228386759758,-0.047865066677331924,0.054230697453022,0.036927297711372375,-0.0006526674842461944,0.05067622289061546,-0.009266293607652187,0.05979409068822861,0.0086440434679389,-0.011421587318181992,0.06272821128368378,0.004294598940759897,0.021019889041781425,-0.07944180816411972,0.06010173261165619,-0.01268160343170166,-0.0656089186668396,-0.035078950226306915,-0.005851142108440399,-0.05612924322485924,0.016208069398999214,-0.011113094165921211,-0.005266536958515644,0.023885149508714676,-0.021011652424931526,-0.12134874612092972,-0.019706156104803085,0.011618620716035366,-0.028636109083890915,-0.030395392328500748,0.016317877918481827,0.05619403347373009,-0.05232425034046173,-0.02018219605088234,0.025422750040888786,0.014564449898898602,0.06756559014320374,0.008163724094629288,0.08408451080322266,0.07729089260101318,0.1085922122001648,-0.039865851402282715,0.0033488585613667965,-0.008584894239902496,-0.0207411739975214,-0.13196012377738953,0.05896076187491417,0.014082283712923527,0.011990213766694069,0.0056320419535040855,0.06998168677091599,-0.012140444479882717,0.06691400706768036,0.061469465494155884,0.06109526753425598,-0.005466216243803501,-0.005700826644897461,0.07356297969818115,-0.07996020466089249,0.011281652376055717,-0.01825263537466526,-0.06869720667600632,-0.09803420305252075,-0.0710282027721405,0.05430622771382332,-0.0009602650534361601,-0.01768612116575241,-0.020921476185321808,-0.012462425976991653,0.03951273113489151,0.02825159765779972,-0.07668866962194443,-0.07451720535755157,-0.024420572444796562,-0.030938517302274704,-0.015931090340018272,0.000012659245840040967,0.03494490683078766,-0.06532838940620422,-0.0021311838645488024,0.0073466855101287365,0.10883798450231552,0.06039451062679291,-0.03542860969901085,-0.06876680254936218,0.014204563573002815,0.07300897687673569,-1.8700871668964615e-33,-0.06096722185611725,-0.09636570513248444,-0.08734161406755447,0.005589934531599283,-0.0005104205920360982,0.008806582540273666,-0.08972306549549103,0.021535297855734825,0.022807417437434196,0.02128204144537449,-0.08033569157123566,-0.0023985491134226322,0.00763742346316576,-0.02184051275253296,-0.005492934491485357,-0.07657952606678009,0.029796026647090912,-0.035677794367074966,-0.04786226898431778,-0.07847809046506882,-0.10458233207464218,0.015088827349245548,0.06829150766134262,-0.0039321365766227245,0.13212406635284424,-0.020204029977321625,-0.006104166153818369,0.02743297442793846,0.02616076171398163,-0.047997236251831055,0.018940633162856102,-0.0004016794846393168,-0.07176224887371063,0.054010648280382156,-0.04171622171998024,-0.049250952899456024,-0.04380466789007187,0.02417479082942009,0.003829708555713296,-0.05861635506153107,0.035585299134254456,0.008803675882518291,-0.014883598312735558,-0.04435673728585243,-0.01825566589832306,-0.030397657305002213,-0.0767207145690918,0.013045002706348896,0.01224709302186966,-0.05375193431973457,0.10178359597921371,0.012690246105194092,0.05512223020195961,-0.09472151845693588,0.028425928205251694,0.052140023559331894,0.021620072424411774,-0.03827892243862152,0.1005549430847168,0.00385869643650949,-0.057492610067129135,-0.025684740394353867,0.004827563650906086,0.05535799264907837,-0.022157754749059677,-0.049316730350255966,-0.02662377804517746,0.05358685180544853,-0.03404492139816284,0.05880269780755043,-0.029187846928834915,-0.010731826536357403,0.038129840046167374,-0.022993888705968857,0.049284469336271286,0.08280867338180542,0.0012439495185390115,0.12544582784175873,-0.03441430255770683,-0.01815195381641388,0.05960765853524208,0.05333294719457626,-0.019611287862062454,0.026899103075265884,0.05892432853579521,0.01758464425802231,-0.014180419035255909,-0.06031337007880211,-0.041657302528619766,-0.017260750755667686,-0.027148518711328506,0.061459265649318695,0.035658713430166245,0.07232025265693665,0.0716768279671669,-2.916118546636426e-8,0.0041564516723155975,0.0060579911805689335,-0.0047707767225801945,0.015489568002521992,-0.09110540896654129,0.05593832954764366,0.029861850664019585,-0.05106278881430626,-0.0009258806239813566,0.051757391542196274,0.005648721940815449,-0.07583186775445938,0.038144372403621674,0.022769244387745857,-0.06472067534923553,0.00811506062746048,0.103181853890419,-0.029471540823578835,0.009068441577255726,0.0425143837928772,0.0022388554643839598,0.021835215389728546,0.03689935430884361,0.004787187557667494,-0.0020419058855623007,0.08150838315486908,0.038970183581113815,-0.05718618631362915,0.02315228246152401,-0.010607178322970867,-0.014803812839090824,0.024423640221357346,0.047110557556152344,0.02265116572380066,0.06917434185743332,-0.026487018913030624,-0.07946062088012695,0.0380229726433754,-0.05250368267297745,0.12498639523983002,0.012631860561668873,-0.04295516759157181,-0.007882962003350258,0.015861693769693375,-0.061433255672454834,-0.037071794271469116,-0.0244264155626297,0.00448032608255744,0.03883291035890579,0.10271786153316498,0.06092056259512901,-0.05779967084527016,0.061860453337430954,0.021063823252916336,0.00229417672380805,0.022993311285972595,0.03986595943570137,0.0005792617448605597,0.01755797117948532,0.04058403521776199,0.06072945520281792,-0.13369373977184296,0.04807054623961449,0.016921743750572205]},{"text":"If you paid a fee for obtaining a copy of or access to a Project Gutenberg electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8. 1.B. “Project Gutenberg” is a registered trademark.","book":"Down and Out in Paris and London","chapter":74,"embedding":[-0.15106211602687836,0.0050137038342654705,0.04482243210077286,-0.042277395725250244,0.03259037435054779,0.030443869531154633,0.03545639291405678,0.017230156809091568,0.059474196285009384,-0.025401942431926727,0.023646870627999306,0.013374652713537216,0.014717568643391132,-0.06696901470422745,-0.10060618817806244,-0.09817622601985931,-0.00011997243564110249,0.020960049703717232,0.015345633961260319,0.05900834500789642,-0.008843673393130302,0.034647464752197266,0.03013705089688301,0.008405047468841076,0.10973894596099854,-0.003741153981536627,-0.007307554129511118,0.03130178526043892,-0.006502809468656778,-0.035236239433288574,-0.018639052286744118,-0.014293987303972244,-0.03553880378603935,-0.03665423393249512,0.07284242659807205,0.09176874160766602,0.009805547073483467,-0.019486472010612488,-0.04463781416416168,0.008342413231730461,-0.04804736375808716,-0.03758511319756508,-0.05115581676363945,0.04718052223324776,0.050434909760951996,0.02342752180993557,-0.0003841148572973907,-0.0025801605079323053,-0.050659582018852234,0.081694096326828,-0.017827942967414856,-0.06773041933774948,-0.014852655120193958,-0.010183644481003284,-0.0020471427123993635,-0.017827274277806282,0.07369505614042282,0.012526973150670528,-0.010775486007332802,-0.06318560987710953,-0.04375918582081795,-0.11523501574993134,-0.011422666721045971,0.04328755661845207,0.09627418220043182,0.0853334292769432,-0.05133035406470299,0.005689512938261032,-0.08382940292358398,-0.053481798619031906,0.04227437451481819,-0.013247172348201275,0.1264510452747345,0.055364277213811874,0.008220884948968887,0.023670246824622154,-0.042903441935777664,0.032603371888399124,-0.059634558856487274,0.05851620063185692,-0.01158018596470356,0.017456239089369774,-0.00653512729331851,-0.039531197398900986,-0.014054156839847565,0.012872771359980106,0.06892753392457962,0.0005120146670378745,0.12308989465236664,0.009128239937126637,0.017179973423480988,-0.08990330994129181,0.12819898128509521,-0.01054991502314806,-0.05450322479009628,0.015168161131441593,0.02114088088274002,-0.0012359110405668616,0.032432809472084045,-0.004843159578740597,-0.05628051236271858,-0.025801239535212517,-0.052303850650787354,-0.05146133154630661,0.011065959930419922,-0.03309290483593941,-0.008510066196322441,-0.026148483157157898,0.01920263096690178,-0.042757727205753326,-0.051436249166727066,-0.03319387510418892,0.03101181797683239,0.008879953064024448,0.06808270514011383,-0.06126004830002785,-0.026710145175457,-0.0511133186519146,0.07383421063423157,-0.11290377378463745,-0.053394727408885956,0.12137309461832047,0.049584705382585526,-0.08170615136623383,-0.07976240664720535,-0.12639325857162476,0.015228302218019962,-2.0360651325226453e-33,-0.05675225704908371,0.04892336577177048,-0.05452970415353775,-0.019709713757038116,0.09209403395652771,-0.09518115967512131,0.06589076668024063,0.10688672214746475,-0.12131097912788391,0.015494097955524921,-0.01092598307877779,0.04150007665157318,0.05960261449217796,0.013893812894821167,-0.0818243995308876,0.08649732172489166,-0.016906147822737694,0.01234052237123251,0.030935971066355705,0.0006159743061289191,0.012714585289359093,-0.035826604813337326,0.08904720097780228,0.0007171481847763062,-0.11330107599496841,-0.07803868502378464,-0.010470456443727016,-0.03321512043476105,0.014297496527433395,-0.018305763602256775,0.0063322605565190315,-0.015021194703876972,0.03750967979431152,-0.07867089658975601,-0.007792888209223747,0.055408354848623276,0.02646336704492569,-0.04170795902609825,0.03666318953037262,0.030289901420474052,-0.01632915809750557,-0.001672330778092146,-0.07831020653247833,-0.01725512556731701,0.002491970546543598,-0.035778433084487915,0.11160411685705185,0.00875041913241148,0.06761692464351654,-0.05635013431310654,0.008657272905111313,0.03516174480319023,-0.0038731645327061415,-0.02964308112859726,0.03913984075188637,-0.03997237980365753,0.008853883482515812,0.08770698308944702,0.03018239699304104,0.008562751114368439,0.0998215302824974,0.029624542221426964,-0.0032869684509932995,0.038751401007175446,-0.10064718872308731,0.08826547116041183,0.0012033197563141584,-0.00879679899662733,0.04796082526445389,-0.04858700931072235,-0.0016823143232613802,-0.09492062777280807,0.017231306061148643,0.047996439039707184,0.020614327862858772,-0.024175291880965233,-0.10019394755363464,0.047857578843832016,0.021576859056949615,0.008877579122781754,-0.08532066643238068,-0.036050375550985336,-0.03416229411959648,-0.018391180783510208,-0.08044208586215973,0.044173713773489,0.005117940250784159,-0.03296887129545212,0.006943142507225275,0.0271105095744133,0.06307714432477951,-0.08351626247167587,-0.08554834872484207,0.03495534881949425,0.10913126915693283,4.2566083077015095e-34,-0.04197370260953903,-0.05260450020432472,-0.09182341396808624,-0.041636936366558075,-0.00781683437526226,-0.015844302251935005,-0.10772627592086792,0.008459441363811493,0.031218288466334343,0.10623829811811447,0.021267510950565338,-0.056457486003637314,-0.04333585873246193,-0.038174450397491455,0.040433019399642944,-0.0514792762696743,-0.0314650721848011,-0.05882714316248894,0.00880546122789383,-0.07480674982070923,-0.047838401049375534,-0.017706643790006638,0.032338857650756836,-0.02881370484828949,0.03903741016983986,0.02935781516134739,0.025880886241793633,0.02093469724059105,0.06584392488002777,0.003564192447811365,0.04638222977519035,-0.017626967281103134,-0.14481644332408905,0.030469702556729317,0.04459351301193237,-0.03781401365995407,0.018488820642232895,0.009542743675410748,0.0020772311836481094,-0.044996146112680435,0.04910491779446602,0.07684895396232605,-0.005190424621105194,-0.008960219100117683,-0.01312820240855217,-0.07139450311660767,-0.03030933439731598,-0.06951834261417389,0.05740929767489433,-0.07382377237081528,0.05103207379579544,0.007088575046509504,0.1035912036895752,-0.0790410041809082,-0.03510177507996559,0.07530000060796738,0.013789729215204716,0.016087079420685768,0.11048150807619095,0.023360557854175568,0.08918089419603348,-0.0871872752904892,0.006330952513962984,0.03597470000386238,0.039213769137859344,0.007202181965112686,-0.0053399959579110146,0.03173045068979263,0.01036634761840105,0.06301917135715485,-0.024765755981206894,0.03362449258565903,0.0036117706913501024,-0.0014451341703534126,0.05307696759700775,0.03292620927095413,0.001232652342878282,0.07119077444076538,-0.017317837104201317,-0.02378223091363907,0.0679914653301239,0.02983449399471283,0.02194369211792946,0.036666397005319595,0.03001716360449791,-0.07536331564188004,-0.025491347536444664,-0.05039399862289429,-0.07016024738550186,0.000870264251716435,0.048462264239788055,-0.011058911681175232,0.04727975279092789,0.05908789113163948,0.042657073587179184,-3.930560410481121e-8,-0.03282556310296059,0.046117138117551804,0.05170956626534462,0.021761616691946983,-0.029407929629087448,-0.02861383929848671,-0.025864163413643837,0.007733047939836979,-0.01943892426788807,-0.00006296737410593778,0.013234865851700306,-0.08440282940864563,-0.007297257427126169,0.06924283504486084,-0.06604776531457901,-0.0022019613534212112,0.03597031906247139,0.057440999895334244,0.011322848498821259,0.10230959206819534,0.033750295639038086,-0.005284167360514402,0.03598179295659065,-0.03418004512786865,-0.020717009902000427,0.03702177852392197,0.07424701005220413,0.03488614782691002,0.025776535272598267,-0.051697444170713425,-0.07865922152996063,0.05974232405424118,0.06446824967861176,-0.0185414906591177,-0.0524623803794384,-0.03707931563258171,-0.040532436221838,0.02255355939269066,-0.014891407452523708,0.09079393744468689,0.007530296221375465,-0.011793097481131554,0.018394632264971733,0.018362505361437798,-0.00594356982037425,0.02891998365521431,-0.07504871487617493,-0.06271132081747055,0.021657001227140427,-0.005703149363398552,0.04274658113718033,-0.042285241186618805,0.07520721107721329,0.011807304807007313,-0.036903321743011475,-0.0588146410882473,0.008218408562242985,0.01297655701637268,-0.00912327691912651,-0.0031542545184493065,0.0375007800757885,-0.05443403124809265,0.05219445005059242,-0.03371192887425423]},{"text":"Nearly all the individual works in the collection are in the public domain in the United States.","book":"Down and Out in Paris and London","chapter":75,"embedding":[-0.002572882454842329,-0.07198020815849304,-0.07008246332406998,-0.031174957752227783,-0.007000232581049204,0.043739866465330124,-0.10480715334415436,-0.056684236973524094,0.05654720962047577,-0.0010619114618748426,-0.025682494044303894,0.10152146965265274,0.013510252349078655,-0.05472782999277115,0.018136071041226387,-0.017923567444086075,-0.006352737080305815,-0.014634152874350548,0.08736947178840637,0.025906385853886604,0.06838437169790268,0.08492270112037659,0.08225508779287338,0.013698934577405453,0.004733288660645485,-0.01782412640750408,-0.035642512142658234,-0.028912382200360298,0.010259813629090786,-0.05886172503232956,-0.050698548555374146,0.022991470992565155,-0.004306203220039606,-0.013676109723746777,0.0774223804473877,0.026992186903953552,0.01638653501868248,-0.009504388086497784,0.025443915277719498,-0.03201065585017204,-0.0002362653031013906,-0.013728058896958828,-0.007858390919864178,0.029339486733078957,-0.037697937339544296,0.05910992994904518,-0.021468045189976692,0.021710125729441643,-0.012056371197104454,0.05097827687859535,0.06103120371699333,-0.004959823563694954,0.0455685630440712,0.0806499794125557,0.06639602780342102,-0.07045374810695648,-0.008144192397594452,0.010498983785510063,-0.02729744091629982,-0.026739105582237244,-0.050695549696683884,-0.043420519679784775,-0.06872593611478806,0.018831362947821617,0.0514538511633873,0.04035702720284462,-0.0029745737556368113,0.03690396249294281,-0.010313622653484344,-0.14845791459083557,0.029323382303118706,0.029716787859797478,0.006017491687089205,0.12035251408815384,0.08514365553855896,-0.002657614415511489,0.0681133046746254,-0.035574376583099365,-0.034769196063280106,-0.04498754441738129,0.022504746913909912,-0.015222569927573204,0.07190350443124771,-0.04728684574365616,-0.01423107460141182,0.02490992471575737,-0.021609794348478317,0.024597374722361565,0.05370325595140457,0.00041124923154711723,-0.018864035606384277,-0.0609564371407032,0.08972571045160294,0.006320458836853504,-0.08418446779251099,-0.07419916242361069,0.09137000143527985,0.049625661224126816,0.0436147041618824,-0.014005249366164207,-0.04277189448475838,0.0200804453343153,0.11880289018154144,-0.035755354911088943,-0.0305793434381485,0.07606745511293411,-0.02543714828789234,0.03245203197002411,0.0005262515041977167,-0.001223897561430931,-0.036638043820858,-0.013640419580042362,-0.02580374665558338,0.04125838726758957,0.037583205848932266,-0.09683807939291,-0.05930507928133011,-0.017687438055872917,0.024271300062537193,-0.1084606796503067,-0.03307531774044037,0.054963983595371246,0.021318817511200905,-0.04017188027501106,-0.075376957654953,-0.06813782453536987,-0.04088015481829643,-3.800068342361211e-33,0.09329911321401596,0.05232968553900719,0.07744263857603073,0.002745638368651271,-0.010481760837137699,-0.011828928254544735,0.04654824361205101,0.03577404096722603,-0.007056312635540962,0.04217109456658363,0.047753673046827316,0.15880516171455383,-0.0023588596377521753,0.08971686661243439,0.026272723451256752,0.07952548563480377,0.013960656709969044,0.010182921774685383,0.085284024477005,0.01479572243988514,0.0036488869227468967,-0.00930063147097826,-0.014807257801294327,0.04968535155057907,-0.05752138793468475,0.0021250532008707523,-0.009409797377884388,-0.004659675993025303,-0.009617563337087631,0.02297566458582878,0.00742386607453227,0.0265069417655468,0.017368463799357414,-0.018091602250933647,0.09864252060651779,0.05330605059862137,0.05205406993627548,-0.00919883232563734,0.08529525995254517,-0.0055212597362697124,-0.002101671416312456,-0.0009321733959950507,0.028782648965716362,0.06816073507070541,-0.051900241523981094,0.025387046858668327,-0.01414403598755598,0.06637658923864365,0.066254161298275,0.08845505118370056,0.05599205940961838,0.026960641145706177,-0.13727135956287384,0.022633830085396767,0.041334450244903564,-0.004860610235482454,-0.02174297720193863,-0.012195538729429245,0.055061373859643936,-0.024007881060242653,-0.030775751918554306,0.07883915305137634,-0.005572623107582331,0.08663041889667511,-0.006269871257245541,0.0429493673145771,-0.019403288140892982,-0.04634565860033035,-0.005127690266817808,0.006608205381780863,0.023901905864477158,0.06337692588567734,-0.053133055567741394,-0.05033579468727112,0.01443558931350708,0.023348670452833176,0.048383768647909164,-0.013399106450378895,0.012201120145618916,0.014306649565696716,-0.07018430531024933,-0.028852898627519608,0.0006693248869851232,0.09729775786399841,-0.02305592969059944,0.07391615957021713,0.004341149237006903,-0.023721996694803238,0.002930502174422145,0.0646417960524559,-0.025647392496466637,0.022380348294973373,-0.003124589566141367,0.01378961093723774,-0.037975527346134186,1.2153847516174418e-33,-0.049828510731458664,-0.08414708077907562,-0.05393623933196068,0.020267294719815254,-0.008865032345056534,-0.0498589463531971,-0.006861143745481968,0.0008325098897330463,0.033536672592163086,0.013230172917246819,-0.029143201187253,-0.0683683305978775,-0.0866020992398262,0.05313815549015999,0.014007621444761753,-0.058345794677734375,0.028330840170383453,-0.060720015317201614,-0.06926589459180832,-0.020832635462284088,-0.06166022643446922,-0.05936530604958534,-0.0066526299342513084,0.0009609705884940922,0.10814608633518219,-0.04252879321575165,-0.07367051392793655,-0.10024089366197586,0.014853139407932758,-0.054672542959451675,0.06735599786043167,-0.024223171174526215,-0.0681847557425499,0.05082092806696892,-0.1102684736251831,-0.0489376001060009,0.0039519332349300385,0.0055893585085868835,0.13484151661396027,-0.06254427880048752,-0.030825039371848106,0.020400557667016983,-0.056853286921978,-0.013980033807456493,-0.08718971908092499,-0.05864406004548073,-0.07405104488134384,0.02949250116944313,-0.033683013170957565,0.04193427786231041,-0.04201827570796013,0.00040126958629116416,0.016497520729899406,-0.10658589005470276,-0.04451275244355202,0.05907826125621796,0.03593730181455612,-0.07330375909805298,0.05024866387248039,0.05661611631512642,0.015042854472994804,0.09813015908002853,-0.0984947606921196,0.12297680228948593,0.0003553734568413347,-0.12003957480192184,0.04019547253847122,0.0572698675096035,-0.06656396389007568,-0.016910111531615257,0.03159642964601517,-0.07772582024335861,-0.03517443314194679,-0.11041352897882462,-0.06699725240468979,0.045376356691122055,0.055081624537706375,0.029643522575497627,0.050246018916368484,-0.009191651828587055,0.06728055328130722,-0.01859939657151699,0.03821508213877678,0.03425634279847145,0.044744547456502914,0.03942139446735382,0.03884412348270416,-0.11786137521266937,-0.06650262326002121,0.007818076759576797,0.021468011662364006,-0.03958924487233162,0.030932193621993065,-0.023900127038359642,0.017925281077623367,-2.2166201318896128e-8,-0.02792605757713318,0.059411030262708664,-0.05178013816475868,-0.011413989588618279,-0.023778636008501053,0.03383550047874451,0.04002395644783974,0.026397569105029106,-0.05581928789615631,0.04015667736530304,0.03917652741074562,-0.07455739378929138,-0.04454731196165085,-0.02818865142762661,0.006383616477251053,-0.06421824544668198,0.0630529522895813,-0.01157483272254467,-0.05009545013308525,0.04496883600950241,-0.05664817616343498,0.013394906185567379,0.04533065855503082,-0.12034942954778671,-0.02760838158428669,0.06763886660337448,0.01761086843907833,-0.09894703328609467,-0.01778237707912922,0.05165592581033707,-0.02595430612564087,0.04990055784583092,-0.0024485276080667973,0.01771445758640766,0.08040078729391098,-0.04438462480902672,0.031076248735189438,0.013816267251968384,-0.0346054844558239,-0.038424763828516006,-0.05842677131295204,-0.021780703216791153,-0.02300160564482212,0.023078473284840584,0.011854288168251514,-0.03457903861999512,-0.004402277525514364,-0.006615265738219023,0.03698550537228584,0.0017155373934656382,-0.09899649024009705,-0.04840194433927536,0.04683702066540718,-0.03345806151628494,-0.01434438955038786,0.03804444894194603,0.0057349419221282005,-0.035130035132169724,0.01821758784353733,-0.05002649873495102,0.047667305916547775,-0.1186332106590271,0.016075484454631805,0.06207599118351936]},{"text":"If you are outside the United States, check the laws of your country in addition to the terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg work.","book":"Down and Out in Paris and London","chapter":75,"embedding":[-0.055799707770347595,-0.05489606782793999,0.01568041741847992,-0.05089852213859558,0.07854051142930984,-0.015691522508859634,-0.10963797569274902,0.007117587141692638,0.020644985139369965,0.024376248940825462,0.06542973220348358,0.09169380366802216,-0.07167341560125351,-0.02366546541452408,-0.027605559676885605,-0.023023739457130432,0.017204005271196365,0.027900971472263336,-0.005111814010888338,0.02948959358036518,0.019269924610853195,0.007885771803557873,0.05789889395236969,-0.01233655121177435,0.08393029123544693,-0.012357551604509354,-0.04085496813058853,0.01701047085225582,0.0674872025847435,-0.06767012178897858,-0.014064216054975986,-0.03333013132214546,0.013006900437176228,-0.05807098373770714,0.05949608236551285,0.06264489144086838,-0.0011347495019435883,-0.058377452194690704,0.014575161039829254,-0.019587818533182144,0.004330041818320751,-0.007828939706087112,-0.03975339233875275,0.03090103156864643,0.04448411241173744,-0.04730570688843727,-0.002495099324733019,0.011738000437617302,0.02175797149538994,0.07282747328281403,-0.024358805269002914,0.044916316866874695,-0.028862647712230682,-0.06786446273326874,0.008077486418187618,-0.07189331203699112,0.07225154340267181,0.07867804914712906,0.00938547682017088,0.011482443660497665,-0.05780747905373573,-0.10422646254301071,-0.028812812641263008,0.03688431158661842,0.05919478088617325,0.04902695119380951,-0.024364832788705826,0.014542651362717152,-0.09510014951229095,-0.030743010342121124,-0.07864648848772049,-0.055762238800525665,0.06471733748912811,0.02322983928024769,-0.016819894313812256,-0.08657372742891312,-0.0026948866434395313,0.023368913680315018,0.024991478770971298,-0.04345133155584335,-0.009808937087655067,-0.03387473151087761,0.06085627153515816,-0.014727356843650341,-0.032770439982414246,0.062009308487176895,0.08834991604089737,0.03287801146507263,0.07529757916927338,0.0017640063306316733,0.02504141815006733,-0.002356422832235694,0.12475007027387619,0.06750347465276718,-0.08883035182952881,-0.033320631831884384,0.003438432700932026,0.033114779740571976,0.020132718607783318,0.0577702596783638,-0.02883821912109852,-0.05877823010087013,-0.04707710072398186,-0.03718162328004837,-0.06895221769809723,-0.0669768899679184,0.04631630703806877,0.043690960854291916,0.0014416202902793884,0.016870437189936638,-0.05508220195770264,0.011557618156075478,-0.0049788434989750385,-0.10703872889280319,0.0072075785137712955,-0.08989034593105316,0.03423849493265152,-0.07046910375356674,0.1171451210975647,-0.060815852135419846,0.03318503126502037,0.025835666805505753,0.03861554339528084,-0.03287670388817787,-0.04018445685505867,-0.10618185251951218,0.06831338256597519,-1.4884650151595435e-34,-0.04203999415040016,-0.012698819860816002,-0.019563831388950348,0.01408298034220934,0.07844266295433044,-0.07464544475078583,0.02671501412987709,0.01967165246605873,-0.1447858214378357,-0.04612677916884422,-0.022026099264621735,0.01979430951178074,-0.07298299670219421,0.013290836475789547,-0.05578615888953209,0.03856946900486946,0.02151062898337841,0.011825727298855782,0.09236355870962143,0.06881745159626007,0.08054748177528381,-0.12134604156017303,0.06872415542602539,0.06222376227378845,-0.16328975558280945,-0.008535182103514671,-0.009185587987303734,0.031760022044181824,0.02109481766819954,-0.011570264585316181,-0.0017188061028718948,-0.011333771981298923,-0.013517867773771286,-0.11335814744234085,0.022153345867991447,0.05973400920629501,-0.04856402426958084,-0.05103527009487152,0.018751421943306923,0.02226302959024906,-0.050984691828489304,-0.027959080412983894,-0.011912058107554913,-0.055639781057834625,0.007898171432316303,0.06677385419607162,0.0797811895608902,0.06424124538898468,0.07086088508367538,-0.025553135201334953,-0.05185540020465851,0.061999931931495667,-0.03824809193611145,-0.052375033497810364,0.06076787784695625,0.01084731612354517,-0.049206722527742386,0.014533829875290394,0.0959220677614212,0.04123036190867424,0.04351044073700905,0.03616466373205185,-0.011163664050400257,-0.02385890670120716,-0.02964809164404869,0.02353011444211006,-0.047268517315387726,0.005920242518186569,-0.014812231995165348,-0.06948370486497879,-0.02843227982521057,-0.01640891097486019,0.032164763659238815,0.03655301034450531,0.05257966369390488,-0.035255976021289825,-0.06040003523230553,0.07015955448150635,0.07758871465921402,-0.0561390183866024,-0.06920214742422104,-0.012646900489926338,-0.03893747553229332,-0.0007559155928902328,-0.03005184233188629,0.026286767795681953,-0.052972208708524704,0.006213570013642311,0.03749210759997368,0.09477020055055618,0.011854380369186401,-0.06951230019330978,-0.042699869722127914,0.009606760926544666,0.05156185105443001,-9.396593273206275e-34,-0.05894770473241806,-0.047539159655570984,-0.0903237909078598,0.004655855242162943,-0.06542757898569107,0.05843093991279602,-0.08071023970842361,0.07413249462842941,0.05421953275799751,0.08023881912231445,0.02576383203268051,-0.029574409127235413,-0.049332257360219955,-0.03907649964094162,-0.03873208165168762,-0.01296625193208456,0.006505860481411219,-0.04360002651810646,-0.01523707713931799,-0.09090280532836914,-0.08131105452775955,0.05172235518693924,-0.007047383580356836,0.051919229328632355,0.06914794445037842,-0.005487758666276932,-0.010706711560487747,0.030742496252059937,0.044600944966077805,0.033413201570510864,0.011994509026408195,0.017841123044490814,-0.1622953563928604,0.014871292747557163,-0.022684643045067787,-0.044901106506586075,0.023666271939873695,0.05665537714958191,0.03893287479877472,-0.014669953845441341,-0.028811246156692505,-0.013118557631969452,-0.005393722094595432,-0.027056358754634857,0.011426745913922787,-0.0711897686123848,-0.029137544333934784,-0.004994064569473267,0.020923255011439323,-0.022592706605792046,0.07073839753866196,0.031124314293265343,0.07849342375993729,-0.1668570190668106,-0.02114713005721569,0.042946957051754,0.02839265950024128,-0.02002984657883644,0.046568889170885086,0.015801576897501945,0.01705993339419365,-0.03716116026043892,-0.021414756774902344,-0.024334724992513657,-0.01945127174258232,-0.017336884513497353,-0.04359975457191467,0.07221342623233795,0.04829534515738487,0.05889711156487465,-0.05534078925848007,-0.003787449561059475,0.08972707390785217,-0.0509030781686306,0.0690489113330841,-0.020193228498101234,0.07088316977024078,0.08917613327503204,0.03051699697971344,-0.004921445157378912,0.06556344032287598,0.10562016069889069,0.03265147656202316,0.02963223122060299,0.025236789137125015,-0.061529211699962616,0.02630453370511532,-0.07332641631364822,-0.04016644507646561,-0.029983729124069214,-0.04063291847705841,0.05362061411142349,0.013884774409234524,0.07259415090084076,0.04232434183359146,-3.862407638166587e-8,-0.05601286143064499,0.0009542160551063716,-0.0004421506018843502,-0.01992471143603325,-0.08271141350269318,0.06259436905384064,0.025805799290537834,-0.05108645185828209,-0.015927566215395927,-0.006523518823087215,0.006065488792955875,-0.04888066649436951,-0.033125583082437515,0.004969052504748106,-0.08294034004211426,0.029606396332383156,0.03482189401984215,0.07957819849252701,-0.01581735908985138,0.037740420550107956,-0.03345545753836632,0.024339549243450165,0.08764544874429703,-0.01567966118454933,0.022331004962325096,0.027327241376042366,0.04548812657594681,-0.030527805909514427,0.02181825041770935,-0.05428355932235718,-0.04092403128743172,0.05411605164408684,-0.00041286423220299184,-0.020264672115445137,0.012250072322785854,-0.026458611711859703,-0.0491754487156868,0.06886948645114899,0.005137937609106302,0.087760329246521,0.012924693524837494,-0.012944706715643406,0.024996215477585793,0.016944466158747673,-0.005281840916723013,-0.03248634561896324,-0.13287438452243805,-0.01976224035024643,0.02841581031680107,0.038167767226696014,0.08622974157333374,-0.03808426484465599,0.005149424076080322,0.025033608078956604,0.05068971589207649,-0.041379742324352264,0.029194273054599762,-0.02414923533797264,-0.017624948173761368,0.04234965890645981,0.042759936302900314,-0.04891703277826309,0.12166238576173782,-0.0030781282112002373]},{"text":"If you are redistributing or providing access to a work with the phrase “Project Gutenberg” associated with or appearing on the work, you must comply either with the requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for the use of the work and the Project Gutenberg trademark as set forth in paragraphs 1.E.8 or 1.E.9. 1.E.3.","book":"Down and Out in Paris and London","chapter":75,"embedding":[-0.11037842184305191,-0.04239761456847191,0.004412942100316286,-0.03257760778069496,0.02015141397714615,0.06821534037590027,-0.05811997503042221,0.03215142339468002,-0.016947947442531586,-0.05358295515179634,-0.005165517330169678,0.03098350390791893,-0.004019923973828554,0.012933136895298958,-0.023040227591991425,-0.017856145277619362,0.08483998477458954,-0.019780589267611504,0.05427444353699684,0.04959015175700188,0.06600315123796463,0.045712146908044815,0.08222562819719315,0.04235556349158287,0.06051771342754364,-0.008051159791648388,-0.031554918736219406,0.03644384816288948,0.022114727646112442,0.00857721921056509,-0.027643825858831406,-0.05510467663407326,0.035900212824344635,-0.003121397690847516,0.0916614904999733,0.07477294653654099,0.030020831152796745,-0.005190930794924498,-0.028977997601032257,0.010064021684229374,0.013221410103142262,-0.061273276805877686,-0.03297271206974983,0.04071994498372078,0.02449922449886799,-0.0493198037147522,0.03069416806101799,-0.036743201315402985,-0.007876508869230747,0.049128830432891846,-0.01011888962239027,-0.016364187002182007,-0.029972074553370476,-0.028414111584424973,-0.02122468128800392,-0.052820999175310135,0.0955435112118721,0.023593556135892868,-0.007937737740576267,-0.08124977350234985,-0.0010231436463072896,-0.05380885675549507,-0.017103925347328186,0.007090117782354355,0.06885392963886261,0.015653342008590698,-0.01736585982143879,0.06358527392148972,-0.10339762270450592,0.03673441335558891,0.016994977369904518,0.008101632818579674,0.04613189399242401,0.04078814387321472,-0.025661572813987732,-0.014146666042506695,-0.06072838976979256,-0.016907963901758194,-0.04874236509203911,-0.08127298951148987,0.01772349514067173,0.044713184237480164,0.04355933144688606,0.03935714811086655,-0.0506051629781723,0.06151740998029709,0.016529645770788193,0.018385710194706917,0.08800309151411057,-0.009109131060540676,0.02813883312046528,-0.16497191786766052,0.13120907545089722,0.04057449474930763,-0.050841107964515686,-0.0582495853304863,-0.015404201112687588,-0.003763408400118351,0.03461938723921776,-0.004799000918865204,-0.10555719584226608,-0.08299381285905838,0.0016945759998634458,0.047319065779447556,-0.009636664763092995,0.006348528899252415,-0.006064475513994694,-0.04638822376728058,-0.05078766867518425,-0.03975988179445267,0.027399029582738876,-0.0022390224039554596,-0.024977443739771843,-0.045768264681100845,-0.005040942691266537,-0.10680162161588669,0.05322748422622681,-0.06385499984025955,0.04547687619924545,-0.030747583135962486,-0.0010671848431229591,0.057250142097473145,0.10980947315692902,-0.03372829407453537,-0.08193489909172058,-0.09555437415838242,-0.012751869857311249,2.184478273811667e-33,-0.0079066576436162,0.012045596726238728,-0.027623364701867104,0.09215281903743744,0.09013638645410538,-0.0628490075469017,0.010434598661959171,0.04251134395599365,-0.09569922834634781,-0.050607047975063324,0.035803914070129395,-0.03155567869544029,0.03503010421991348,-0.014401230029761791,-0.0469524972140789,0.055101729929447174,0.007409219164401293,0.008498837240040302,0.03002963960170746,-0.014199526980519295,-0.01067114993929863,-0.09291031956672668,0.0391845628619194,0.01825852319598198,-0.09433292597532272,-0.010632812045514584,0.026384321972727776,-0.04510080814361572,-0.08282911777496338,0.0024839858524501324,0.040359996259212494,-0.01956496760249138,0.024921011179685593,-0.04785667732357979,-0.03927883878350258,0.02177339605987072,0.0004915519384667277,-0.04105282947421074,0.07926096767187119,0.02164999395608902,-0.023780906572937965,-0.02681470476090908,-0.008759677410125732,-0.030973099172115326,0.059369612485170364,0.035295214504003525,0.04924327880144119,0.09337078779935837,0.11146120727062225,0.005964410025626421,0.040099695324897766,0.06333831697702408,0.00860320869833231,-0.11602526158094406,0.12044459581375122,-0.0724622830748558,-0.004237702116370201,0.03526902198791504,0.10193635523319244,-0.032934367656707764,0.07545549422502518,0.07252752780914307,-0.02172497846186161,0.03957844898104668,-0.007616092916578054,0.14436568319797516,-0.04815562814474106,0.019211117178201675,0.054375551640987396,-0.09245427697896957,-0.06927008181810379,-0.06312984973192215,-0.04173175245523453,0.07504776865243912,0.019296659156680107,-0.02829592488706112,-0.04122103005647659,0.06610623747110367,0.033811304718256,0.006216158624738455,-0.025671370327472687,-0.06794343143701553,0.0013000249164178967,0.017112279310822487,-0.12698692083358765,0.03615451231598854,-0.06711544841527939,-0.0043191611766815186,0.01003992184996605,0.07035699486732483,0.12747304141521454,-0.0561121441423893,-0.06310837715864182,0.04694027826189995,0.010473673231899738,-3.271729549414672e-33,-0.03814561665058136,-0.04870917648077011,-0.09652213752269745,-0.04374973103404045,0.017565520480275154,0.04504682868719101,-0.05358891934156418,-0.02698196843266487,0.056332431733608246,0.12110842019319534,0.028563644737005234,-0.005078739020973444,-0.04350043460726738,-0.065123550593853,-0.0028309046756476164,0.047754429280757904,-0.012436063028872013,-0.0053254058584570885,-0.039201948791742325,-0.0329165942966938,-0.045044589787721634,-0.047731682658195496,-0.007449423428624868,-0.00831556599587202,0.09522322565317154,-0.03488766402006149,0.007530564442276955,-0.016234926879405975,0.03267937898635864,-0.08099111914634705,-0.0055916691198945045,-0.008014452643692493,-0.1313788890838623,-0.032560836523771286,-0.02651907317340374,-0.03215373679995537,-0.05756866931915283,0.022548379376530647,0.015160826966166496,-0.027974070981144905,0.09312199801206589,0.022289730608463287,-0.04231622815132141,0.03633473068475723,-0.055522069334983826,-0.05479416623711586,-0.045268815010786057,-0.057910095900297165,0.029253769665956497,-0.057208769023418427,0.03150886297225952,0.049809981137514114,0.16030435264110565,-0.11776041984558105,-0.02113901637494564,0.0375140979886055,0.026511741802096367,0.013461130671203136,0.07640539109706879,0.022720452398061752,0.07683908194303513,-0.024530373513698578,-0.027997231110930443,0.07350768148899078,0.05718591809272766,-0.1132437139749527,-0.08873079717159271,0.08979927748441696,0.0006394910742528737,0.004787650424987078,-0.08790384978055954,-0.05881267040967941,0.06687568128108978,-0.025718173012137413,-0.011916070245206356,-0.07272326201200485,0.04550681263208389,0.054122261703014374,-0.03632211312651634,0.031174952164292336,0.02205600216984749,0.07792482525110245,0.02009495161473751,0.007177293300628662,0.08391192555427551,-0.05986924096941948,0.0077767097391188145,-0.025580963119864464,-0.023888500407338142,-0.022342249751091003,0.032436590641736984,0.01952596753835678,-0.008325308561325073,0.06419118493795395,0.00395752489566803,-4.802188158237186e-8,0.0021524373441934586,0.012145554646849632,0.03410891816020012,-0.029127411544322968,-0.07071194797754288,0.03217073529958725,-0.06262027472257614,-0.05131958797574043,-0.0018438484985381365,-0.004860792774707079,0.023700986057519913,-0.044197797775268555,-0.022743230685591698,0.050616905093193054,-0.07057459652423859,-0.0672573670744896,-0.020610928535461426,0.004911759402602911,0.007868059910833836,0.05795839801430702,0.052438706159591675,-0.020877957344055176,0.02121754176914692,-0.01723608374595642,-0.02995593659579754,0.03028385527431965,-0.019237639382481575,-0.040515512228012085,0.0042091915383934975,-0.037677861750125885,-0.01559529360383749,0.0884256362915039,-0.005605023354291916,0.013118458911776543,-0.032020606100559235,0.03044491447508335,0.0327264703810215,0.043113335967063904,0.04467470943927765,0.023049211129546165,-0.0034219224471598864,-0.026581967249512672,-0.007446081377565861,0.05089351162314415,-0.006196801085025072,0.02482781931757927,-0.08220798522233963,-0.03761550411581993,0.02567479945719242,0.029971256852149963,0.03660782426595688,-0.04120773449540138,0.09172577410936356,0.0063382042571902275,0.020058538764715195,0.018320102244615555,0.059983257204294205,-0.019907508045434952,-0.011340917088091373,-0.039730824530124664,0.05470443144440651,0.005210014060139656,0.047960225492715836,0.027977537363767624]}] \ No newline at end of file diff --git a/web/ahnlich-web/static/wasm-pkg/.gitkeep b/web/ahnlich-web/static/wasm-pkg/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/web/ahnlich-web/yarn.lock b/web/ahnlich-web/yarn.lock index 2dddf1388..ef75ed00e 100644 --- a/web/ahnlich-web/yarn.lock +++ b/web/ahnlich-web/yarn.lock @@ -2,238 +2,228 @@ # yarn lockfile v1 -"@ai-sdk/gateway@2.0.19": - version "2.0.19" - resolved "https://registry.npmjs.org/@ai-sdk/gateway/-/gateway-2.0.19.tgz" - integrity sha512-cybb+k/3Kj9BX+Am1mun3dafZsHQLIzW2A4fu5FVTLSIGXXbcuXwXNNdYMGs+B0y6RYOQ8VHbf1QslMSDIxQMA== - dependencies: - "@ai-sdk/provider" "2.0.0" - "@ai-sdk/provider-utils" "3.0.18" - "@vercel/oidc" "3.0.5" - -"@ai-sdk/provider-utils@3.0.18": - version "3.0.18" - resolved "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.18.tgz" - integrity sha512-ypv1xXMsgGcNKUP+hglKqtdDuMg68nWHucPPAhIENrbFAI+xCHiqPVN8Zllxyv1TNZwGWUghPxJXU+Mqps0YRQ== - dependencies: - "@ai-sdk/provider" "2.0.0" - "@standard-schema/spec" "^1.0.0" - eventsource-parser "^3.0.6" - -"@ai-sdk/provider@2.0.0": - version "2.0.0" - resolved "https://registry.npmjs.org/@ai-sdk/provider/-/provider-2.0.0.tgz" - integrity sha512-6o7Y2SeO9vFKB8lArHXehNuusnpddKPk7xqL7T2/b+OvXMRIXUO1rR4wcv1hAFUAT9avGZshty3Wlua/XA7TvA== - dependencies: - json-schema "^0.4.0" - -"@ai-sdk/react@^2.0.30": - version "2.0.112" - resolved "https://registry.npmjs.org/@ai-sdk/react/-/react-2.0.112.tgz" - integrity sha512-TiDEKzgfG58FfN0uKph+NjjRRF+/pRkpbvJDgqfLG2jy0+P5K8aFDi9ZJS51yjYt/a0ArBv0dmgif/eFOl0mIg== +"@11ty/gray-matter@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@11ty/gray-matter/-/gray-matter-1.0.0.tgz#35ee04d76b870893c053f64f659c923a7a9db2d7" + integrity sha512-7mJJl+wf1AByoT0PknQiQfOPnVNT4fevGrUBVWO4HXsnYn1aQPyRyrELYrNUFleUBM++KzMKN6QaxHPk0t/6/g== dependencies: - "@ai-sdk/provider-utils" "3.0.18" - ai "5.0.110" - swr "^2.2.5" - throttleit "2.1.0" + js-yaml "^4.1.0" + kind-of "^6.0.3" + section-matter "^1.0.0" + strip-bom-string "^1.0.0" -"@algolia/abtesting@1.12.0": - version "1.12.0" - resolved "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.12.0.tgz" - integrity sha512-EfW0bfxjPs+C7ANkJDw2TATntfBKsFiy7APh+KO0pQ8A6HYa5I0NjFuCGCXWfzzzLXNZta3QUl3n5Kmm6aJo9Q== +"@algolia/abtesting@1.22.0": + version "1.22.0" + resolved "https://registry.yarnpkg.com/@algolia/abtesting/-/abtesting-1.22.0.tgz#7537637f52d2fe00b3714fe2d5ce8cb856be35ff" + integrity sha512-BFR6zNowNKcY7Ou7TaJc9QWexES4YKPbmf/OTFofpdsdhz4x6q0lbxp3duO0EHnyrN7rE4ba/TSXuY+BDGu4+g== dependencies: - "@algolia/client-common" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" + "@algolia/client-common" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" "@algolia/autocomplete-core@1.19.2": version "1.19.2" - resolved "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.19.2.tgz" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.19.2.tgz#702df67a08cb3cfe8c33ee1111ef136ec1a9e232" integrity sha512-mKv7RyuAzXvwmq+0XRK8HqZXt9iZ5Kkm2huLjgn5JoCPtDy+oh9yxUMfDDaVCw0oyzZ1isdJBc7l9nuCyyR7Nw== dependencies: "@algolia/autocomplete-plugin-algolia-insights" "1.19.2" "@algolia/autocomplete-shared" "1.19.2" +"@algolia/autocomplete-core@^1.19.2": + version "1.19.9" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.19.9.tgz#bbed371e56aeea4a31a3af239f16733e1b8aedca" + integrity sha512-4U2JKLMWlDu0CotYyUkWakDxr8AIav3QtIUXXRpfavYN29aVWfzlwJp9T0rPKEf/dO2QCPAUc0Kq1Tj1GJxo2A== + dependencies: + "@algolia/autocomplete-plugin-algolia-insights" "1.19.9" + "@algolia/autocomplete-shared" "1.19.9" + "@algolia/autocomplete-plugin-algolia-insights@1.19.2": version "1.19.2" - resolved "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.19.2.tgz" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.19.2.tgz#3584b625b9317e333d1ae43664d02358e175c52d" integrity sha512-TjxbcC/r4vwmnZaPwrHtkXNeqvlpdyR+oR9Wi2XyfORkiGkLTVhX2j+O9SaCCINbKoDfc+c2PB8NjfOnz7+oKg== dependencies: "@algolia/autocomplete-shared" "1.19.2" +"@algolia/autocomplete-plugin-algolia-insights@1.19.9": + version "1.19.9" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.19.9.tgz#f799737d13bf0c4ec8421619c7107fa05c836535" + integrity sha512-6mExC6X7762s2SV3eJy3QOkB8bdMmnUhQ2agvGVDuzwoGyr3PquGSY/0vPQXCfiAiCaXUz1rXn+lwghgSi0l0w== + dependencies: + "@algolia/autocomplete-shared" "1.19.9" + "@algolia/autocomplete-shared@1.19.2": version "1.19.2" - resolved "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.19.2.tgz" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.19.2.tgz#c0b7b8dc30a5c65b70501640e62b009535e4578f" integrity sha512-jEazxZTVD2nLrC+wYlVHQgpBoBB5KPStrJxLzsIFl6Kqd1AlG9sIAGl39V5tECLpIQzB3Qa2T6ZPJ1ChkwMK/w== -"@algolia/client-abtesting@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.46.0.tgz" - integrity sha512-eG5xV8rujK4ZIHXrRshvv9O13NmU/k42Rnd3w43iKH5RaQ2zWuZO6Q7XjaoJjAFVCsJWqRbXzbYyPGrbF3wGNg== - dependencies: - "@algolia/client-common" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" - -"@algolia/client-analytics@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.46.0.tgz" - integrity sha512-AYh2uL8IUW9eZrbbT+wZElyb7QkkeV3US2NEKY7doqMlyPWE8lErNfkVN1NvZdVcY4/SVic5GDbeDz2ft8YIiQ== - dependencies: - "@algolia/client-common" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" - -"@algolia/client-common@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.46.0.tgz" - integrity sha512-0emZTaYOeI9WzJi0TcNd2k3SxiN6DZfdWc2x2gHt855Jl9jPUOzfVTL6gTvCCrOlT4McvpDGg5nGO+9doEjjig== - -"@algolia/client-insights@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.46.0.tgz" - integrity sha512-wrBJ8fE+M0TDG1As4DDmwPn2TXajrvmvAN72Qwpuv8e2JOKNohF7+JxBoF70ZLlvP1A1EiH8DBu+JpfhBbNphQ== - dependencies: - "@algolia/client-common" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" - -"@algolia/client-personalization@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.46.0.tgz" - integrity sha512-LnkeX4p0ENt0DoftDJJDzQQJig/sFQmD1eQifl/iSjhUOGUIKC/7VTeXRcKtQB78naS8njUAwpzFvxy1CDDXDQ== - dependencies: - "@algolia/client-common" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" - -"@algolia/client-query-suggestions@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.46.0.tgz" - integrity sha512-aF9tc4ex/smypXw+W3lBPB1jjKoaGHpZezTqofvDOI/oK1dR2sdTpFpK2Ru+7IRzYgwtRqHF3znmTlyoNs9dpA== - dependencies: - "@algolia/client-common" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" - -"@algolia/client-search@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.46.0.tgz" - integrity sha512-22SHEEVNjZfFWkFks3P6HilkR3rS7a6GjnCIqR22Zz4HNxdfT0FG+RE7efTcFVfLUkTTMQQybvaUcwMrHXYa7Q== - dependencies: - "@algolia/client-common" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" +"@algolia/autocomplete-shared@1.19.9": + version "1.19.9" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.19.9.tgz#c5b05e23c71027e4e45a301f286593dffdcdfbdf" + integrity sha512-YosP9Uoek6y/Ur1r1qeogk4biMe/hzkyNcgMCciw0//3XpCM7VlYLSHnyt/vOnEOGhCCc0+3v+unEiH6zz+Z1A== + +"@algolia/client-abtesting@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/client-abtesting/-/client-abtesting-5.56.0.tgz#25be0db6f97ae91dfdbaffbe9eae99e963310891" + integrity sha512-7r4Z3NC7yU1oAQVWJNA2HX7tX481F3pJvCGyLIXiTdBcthz4Q/o21jwcMYDFkuI92UWTNBQQmHYgwHo1zS5dzg== + dependencies: + "@algolia/client-common" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" + +"@algolia/client-analytics@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-5.56.0.tgz#bcace36358cda26ca285f3a100544db0ce29aabe" + integrity sha512-avmjXQSq+jadFO8Xl2em05/uQdQnEmHsJyOAdVbZkmVgpMfxL12aJwVVfGNwYr9nulcpuJN1X0lTaQ5wxuNGcA== + dependencies: + "@algolia/client-common" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" + +"@algolia/client-common@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-5.56.0.tgz#6190221a7091dfa1a0e0a3b5964e92b1b59968ba" + integrity sha512-v2TPStUhY//ripPjIVclZ8AWc7DEGooXULZGFlFu37zNatgHjw34oZZ+OSbbc/YHO+xZwPl62I1k8xH1m4S2eg== + +"@algolia/client-insights@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/client-insights/-/client-insights-5.56.0.tgz#2ff179c8924ff188d4604e32aef645c709cc76be" + integrity sha512-P0ehROpM4Sem3Sqo5x2cKPgj67D3G3jy0rh1Amwkcvsfr6tkvIcdCmerieanqTF7NxUMPNFLkpIFeMO8Rpa50w== + dependencies: + "@algolia/client-common" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" + +"@algolia/client-personalization@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-5.56.0.tgz#64f8197c46c60306a115bc4024f6ebce2d8140d8" + integrity sha512-SXK3Vn3WVxyzbm31oePZBJkp1wpOyuWdd4B/Pv7n0aXDxmeSWhC1R1FC1517mMrFAIaPH4Rt0x6RUe7ZNjz8FA== + dependencies: + "@algolia/client-common" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" + +"@algolia/client-query-suggestions@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/client-query-suggestions/-/client-query-suggestions-5.56.0.tgz#e4a28bc249e9c69f0b5ef280b72a12e32e8c53c8" + integrity sha512-5+ZdX8garFnmycnZgKhtXHePEaLj5zqDxI/0lkhhluzCcvTn0/PvvTirTg8hHYetQHvn7GDyeAiqTAieMvMW4A== + dependencies: + "@algolia/client-common" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" + +"@algolia/client-search@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-5.56.0.tgz#66b19d5382bf47a16105817b78e372f5e9039508" + integrity sha512-+mKUdYvqOi0BcvpAEyCEw49vSBptufIcfibtHz2bdr1pI789M46Yt0uQEk/sxtK3teh71OQvVFHaTDzShUWewQ== + dependencies: + "@algolia/client-common" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" "@algolia/events@^4.0.1": version "4.0.1" - resolved "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/@algolia/events/-/events-4.0.1.tgz#fd39e7477e7bc703d7f893b556f676c032af3950" integrity sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ== -"@algolia/ingestion@1.46.0": - version "1.46.0" - resolved "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.46.0.tgz" - integrity sha512-2LT0/Z+/sFwEpZLH6V17WSZ81JX2uPjgvv5eNlxgU7rPyup4NXXfuMbtCJ+6uc4RO/LQpEJd3Li59ke3wtyAsA== +"@algolia/ingestion@1.56.0": + version "1.56.0" + resolved "https://registry.yarnpkg.com/@algolia/ingestion/-/ingestion-1.56.0.tgz#1b3c41b8f1c5a2d309610683e3d1b99f962d92df" + integrity sha512-9g/zj+AZx5moFcdFIrYQoVrueXivjUcc3MQHtCYT8WhIuk1lUh1AyEhvJCS0XBZld09cLvd1AZ3BvDBpVpX2UA== dependencies: - "@algolia/client-common" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" + "@algolia/client-common" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" -"@algolia/monitoring@1.46.0": - version "1.46.0" - resolved "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.46.0.tgz" - integrity sha512-uivZ9wSWZ8mz2ZU0dgDvQwvVZV8XBv6lYBXf8UtkQF3u7WeTqBPeU8ZoeTyLpf0jAXCYOvc1mAVmK0xPLuEwOQ== +"@algolia/monitoring@1.56.0": + version "1.56.0" + resolved "https://registry.yarnpkg.com/@algolia/monitoring/-/monitoring-1.56.0.tgz#11cc9198e778466eafde5a12d02fd02cfcbd1710" + integrity sha512-Qf3Sr6f9A9uxCZUf3MXS0d2b877uYzEB5yxqpVGXAhcJnBCQjrRRon0KvefpGkxy+BshrIJs96OUoMtGqXTFDA== dependencies: - "@algolia/client-common" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" + "@algolia/client-common" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" -"@algolia/recommend@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.46.0.tgz" - integrity sha512-O2BB8DuySuddgOAbhyH4jsGbL+KyDGpzJRtkDZkv091OMomqIA78emhhMhX9d/nIRrzS1wNLWB/ix7Hb2eV5rg== +"@algolia/recommend@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/recommend/-/recommend-5.56.0.tgz#6c96193cb91cf5c9f3c884fdf064e15dfe6cb742" + integrity sha512-GXWG1rWc5wu8hY4N33Y3b6ernY6sAdAvmKWN/zHAiACOx40WnpG0TVX5YazCAr/9gOYGInSiM2A0y2jy2xbiDA== dependencies: - "@algolia/client-common" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" + "@algolia/client-common" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" -"@algolia/requester-browser-xhr@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.46.0.tgz" - integrity sha512-eW6xyHCyYrJD0Kjk9Mz33gQ40LfWiEA51JJTVfJy3yeoRSw/NXhAL81Pljpa0qslTs6+LO/5DYPZddct6HvISQ== +"@algolia/requester-browser-xhr@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.56.0.tgz#b1f4705c53f1602ec14339999bfbf0e3e9a7bbc8" + integrity sha512-7t24cBxaInS3mZb7ddEaZT/tp6q+/aR4YttsQVyP1/i+LmwPR34atO35KjaLFCcRVrlP7sYOAqkCfg6lIRB+ew== dependencies: - "@algolia/client-common" "5.46.0" + "@algolia/client-common" "5.56.0" -"@algolia/requester-fetch@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.46.0.tgz" - integrity sha512-Vn2+TukMGHy4PIxmdvP667tN/MhS7MPT8EEvEhS6JyFLPx3weLcxSa1F9gVvrfHWCUJhLWoMVJVB2PT8YfRGcw== +"@algolia/requester-fetch@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/requester-fetch/-/requester-fetch-5.56.0.tgz#03f0aeea08efc991ab9f0663f1ea63df720fd9ba" + integrity sha512-R7ePHgVYmDFjZpvrsVAfbDz/d4RxKAYZ5/vgLfIsCVRZRryjWl/3INOxpOICzitehQ5FjNtNjcLQTrmHPTcHBQ== dependencies: - "@algolia/client-common" "5.46.0" + "@algolia/client-common" "5.56.0" -"@algolia/requester-node-http@5.46.0": - version "5.46.0" - resolved "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.46.0.tgz" - integrity sha512-xaqXyna5yBZ+r1SJ9my/DM6vfTqJg9FJgVydRJ0lnO+D5NhqGW/qaRG/iBGKr/d4fho34el6WakV7BqJvrl/HQ== +"@algolia/requester-node-http@5.56.0": + version "5.56.0" + resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-5.56.0.tgz#238bfa98ed145e261c1db7e133bee6390ba58c94" + integrity sha512-PIOUXlSnrqM0S+WOgDRb4RzotydJH7ZoT6tOyL7tAO7qJOfvX5wsEW8Pe+PMKMwvuI4/gIyK9cg2H7lJXqnc4Q== dependencies: - "@algolia/client-common" "5.46.0" + "@algolia/client-common" "5.56.0" "@alloc/quick-lru@^5.2.0": version "5.2.0" - resolved "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== -"@antfu/install-pkg@^1.0.0": +"@antfu/install-pkg@^1.1.0": version "1.1.0" - resolved "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/@antfu/install-pkg/-/install-pkg-1.1.0.tgz#78fa036be1a6081b5a77a5cf59f50c7752b6ba26" integrity sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ== dependencies: package-manager-detector "^1.3.0" tinyexec "^1.0.1" -"@antfu/utils@^8.1.0": - version "8.1.1" - resolved "https://registry.npmjs.org/@antfu/utils/-/utils-8.1.1.tgz" - integrity sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ== - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz" - integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.29.7.tgz#f2fbbfea87c44a21590ec515b778b2c26d8866e7" + integrity sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw== dependencies: - "@babel/helper-validator-identifier" "^7.27.1" + "@babel/helper-validator-identifier" "^7.29.7" js-tokens "^4.0.0" picocolors "^1.1.1" -"@babel/compat-data@^7.27.2", "@babel/compat-data@^7.27.7", "@babel/compat-data@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz" - integrity sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA== +"@babel/compat-data@^7.28.6", "@babel/compat-data@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.29.7.tgz#6f0237f0f36d2e51c0570a636faed9d2d0efe629" + integrity sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg== "@babel/core@^7.21.3", "@babel/core@^7.25.9": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz" - integrity sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw== - dependencies: - "@babel/code-frame" "^7.27.1" - "@babel/generator" "^7.28.5" - "@babel/helper-compilation-targets" "^7.27.2" - "@babel/helper-module-transforms" "^7.28.3" - "@babel/helpers" "^7.28.4" - "@babel/parser" "^7.28.5" - "@babel/template" "^7.27.2" - "@babel/traverse" "^7.28.5" - "@babel/types" "^7.28.5" + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.29.7.tgz#80c10b17248082968b57a857b91640971f2070f7" + integrity sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA== + dependencies: + "@babel/code-frame" "^7.29.7" + "@babel/generator" "^7.29.7" + "@babel/helper-compilation-targets" "^7.29.7" + "@babel/helper-module-transforms" "^7.29.7" + "@babel/helpers" "^7.29.7" + "@babel/parser" "^7.29.7" + "@babel/template" "^7.29.7" + "@babel/traverse" "^7.29.7" + "@babel/types" "^7.29.7" "@jridgewell/remapping" "^2.3.5" convert-source-map "^2.0.0" debug "^4.1.0" @@ -241,801 +231,810 @@ json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.25.9", "@babel/generator@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz" - integrity sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ== +"@babel/generator@^7.25.9", "@babel/generator@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.29.7.tgz#cca0b8827e6bcf3ba176788e7f3b180ad6db2fa3" + integrity sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ== dependencies: - "@babel/parser" "^7.28.5" - "@babel/types" "^7.28.5" + "@babel/parser" "^7.29.7" + "@babel/types" "^7.29.7" "@jridgewell/gen-mapping" "^0.3.12" "@jridgewell/trace-mapping" "^0.3.28" jsesc "^3.0.2" -"@babel/helper-annotate-as-pure@^7.27.1", "@babel/helper-annotate-as-pure@^7.27.3": - version "7.27.3" - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz" - integrity sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg== +"@babel/helper-annotate-as-pure@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz#c70fe3c6ecbdc3fd2dd1b0f498428b88b82ce47f" + integrity sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw== dependencies: - "@babel/types" "^7.27.3" + "@babel/types" "^7.29.7" -"@babel/helper-compilation-targets@^7.27.1", "@babel/helper-compilation-targets@^7.27.2": - version "7.27.2" - resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz" - integrity sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ== +"@babel/helper-compilation-targets@^7.28.6", "@babel/helper-compilation-targets@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz#7a1def704302401c47f64fa85589e974ae217042" + integrity sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g== dependencies: - "@babel/compat-data" "^7.27.2" - "@babel/helper-validator-option" "^7.27.1" + "@babel/compat-data" "^7.29.7" + "@babel/helper-validator-option" "^7.29.7" browserslist "^4.24.0" lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.27.1", "@babel/helper-create-class-features-plugin@^7.28.3", "@babel/helper-create-class-features-plugin@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz" - integrity sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.27.3" - "@babel/helper-member-expression-to-functions" "^7.28.5" - "@babel/helper-optimise-call-expression" "^7.27.1" - "@babel/helper-replace-supers" "^7.27.1" - "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" - "@babel/traverse" "^7.28.5" +"@babel/helper-create-class-features-plugin@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.29.7.tgz#6eddf286f2ec418f740c91d60a83347c55838ddd" + integrity sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.29.7" + "@babel/helper-member-expression-to-functions" "^7.29.7" + "@babel/helper-optimise-call-expression" "^7.29.7" + "@babel/helper-replace-supers" "^7.29.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.29.7" + "@babel/traverse" "^7.29.7" semver "^6.3.1" -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.27.1": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz" - integrity sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw== +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.29.7.tgz#5d4c3f928f315cf6c4184ea2fc3b5b38745b2430" + integrity sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg== dependencies: - "@babel/helper-annotate-as-pure" "^7.27.3" + "@babel/helper-annotate-as-pure" "^7.29.7" regexpu-core "^6.3.1" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.6.5": - version "0.6.5" - resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz" - integrity sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg== +"@babel/helper-define-polyfill-provider@^0.6.5", "@babel/helper-define-polyfill-provider@^0.6.8": + version "0.6.8" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.8.tgz#cf1e4462b613f2b54c41e6ff758d5dfcaa2c85d1" + integrity sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA== dependencies: - "@babel/helper-compilation-targets" "^7.27.2" - "@babel/helper-plugin-utils" "^7.27.1" - debug "^4.4.1" + "@babel/helper-compilation-targets" "^7.28.6" + "@babel/helper-plugin-utils" "^7.28.6" + debug "^4.4.3" lodash.debounce "^4.0.8" - resolve "^1.22.10" + resolve "^1.22.11" + +"@babel/helper-globals@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.29.7.tgz#f04a96fbd8473241b1079243f5b3f03a3010ab7b" + integrity sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA== + +"@babel/helper-member-expression-to-functions@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.29.7.tgz#8dbdb3ce0b5c487e1aec10e13c9a43a500814df8" + integrity sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg== + dependencies: + "@babel/traverse" "^7.29.7" + "@babel/types" "^7.29.7" + +"@babel/helper-module-imports@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz#ef25048a518e828d7393fac5882ddd73921d7396" + integrity sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g== + dependencies: + "@babel/traverse" "^7.29.7" + "@babel/types" "^7.29.7" + +"@babel/helper-module-transforms@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz#b062747a5997ba138637201328bbff77960574ae" + integrity sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg== + dependencies: + "@babel/helper-module-imports" "^7.29.7" + "@babel/helper-validator-identifier" "^7.29.7" + "@babel/traverse" "^7.29.7" + +"@babel/helper-optimise-call-expression@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.29.7.tgz#77b0b5b94f1997fa9d6e3125f445227b1faf9d85" + integrity sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong== + dependencies: + "@babel/types" "^7.29.7" -"@babel/helper-globals@^7.28.0": - version "7.28.0" - resolved "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz" - integrity sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw== - -"@babel/helper-member-expression-to-functions@^7.27.1", "@babel/helper-member-expression-to-functions@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz" - integrity sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg== - dependencies: - "@babel/traverse" "^7.28.5" - "@babel/types" "^7.28.5" - -"@babel/helper-module-imports@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz" - integrity sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w== - dependencies: - "@babel/traverse" "^7.27.1" - "@babel/types" "^7.27.1" - -"@babel/helper-module-transforms@^7.27.1", "@babel/helper-module-transforms@^7.28.3": - version "7.28.3" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz" - integrity sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw== - dependencies: - "@babel/helper-module-imports" "^7.27.1" - "@babel/helper-validator-identifier" "^7.27.1" - "@babel/traverse" "^7.28.3" - -"@babel/helper-optimise-call-expression@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz" - integrity sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw== - dependencies: - "@babel/types" "^7.27.1" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.27.1", "@babel/helper-plugin-utils@^7.8.0": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz" - integrity sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw== - -"@babel/helper-remap-async-to-generator@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz" - integrity sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.27.1" - "@babel/helper-wrap-function" "^7.27.1" - "@babel/traverse" "^7.27.1" - -"@babel/helper-replace-supers@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz" - integrity sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.27.1" - "@babel/helper-optimise-call-expression" "^7.27.1" - "@babel/traverse" "^7.27.1" - -"@babel/helper-skip-transparent-expression-wrappers@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz" - integrity sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg== - dependencies: - "@babel/traverse" "^7.27.1" - "@babel/types" "^7.27.1" - -"@babel/helper-string-parser@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz" - integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA== - -"@babel/helper-validator-identifier@^7.27.1", "@babel/helper-validator-identifier@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz" - integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q== - -"@babel/helper-validator-option@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz" - integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg== - -"@babel/helper-wrap-function@^7.27.1": - version "7.28.3" - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz" - integrity sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g== - dependencies: - "@babel/template" "^7.27.2" - "@babel/traverse" "^7.28.3" - "@babel/types" "^7.28.2" - -"@babel/helpers@^7.28.4": - version "7.28.4" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz" - integrity sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w== - dependencies: - "@babel/template" "^7.27.2" - "@babel/types" "^7.28.4" - -"@babel/parser@^7.27.2", "@babel/parser@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz" - integrity sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ== +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.28.6", "@babel/helper-plugin-utils@^7.29.7", "@babel/helper-plugin-utils@^7.8.0": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz#c0a0766f1a13617d8a17407d7ab8f9d486225ea4" + integrity sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw== + +"@babel/helper-remap-async-to-generator@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.29.7.tgz#34b1f68dd75b86d31df781a29c3ff2df88da82e6" + integrity sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og== + dependencies: + "@babel/helper-annotate-as-pure" "^7.29.7" + "@babel/helper-wrap-function" "^7.29.7" + "@babel/traverse" "^7.29.7" + +"@babel/helper-replace-supers@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.29.7.tgz#bc3c3964329043c79112e513c1b198f16589ac21" + integrity sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.29.7" + "@babel/helper-optimise-call-expression" "^7.29.7" + "@babel/traverse" "^7.29.7" + +"@babel/helper-skip-transparent-expression-wrappers@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.29.7.tgz#50c95c7e4c4f54936cfa0116428edc559862d551" + integrity sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ== + dependencies: + "@babel/traverse" "^7.29.7" + "@babel/types" "^7.29.7" + +"@babel/helper-string-parser@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz#7f0871d99824d23137d60f86fcf6130fd5a1b51f" + integrity sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw== + +"@babel/helper-validator-identifier@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz#bd87084ced0c796ec46bda492de6e83d29e89fc2" + integrity sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg== + +"@babel/helper-validator-option@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz#cf315be940213b354eb4abcc0bd01ebe3f73bc2a" + integrity sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw== + +"@babel/helper-wrap-function@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.29.7.tgz#eec72163044548a0935e9d182bf2d547ec5ff483" + integrity sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw== + dependencies: + "@babel/template" "^7.29.7" + "@babel/traverse" "^7.29.7" + "@babel/types" "^7.29.7" + +"@babel/helpers@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.29.7.tgz#45abfde7548997e34376c3e69feb475cffb4a607" + integrity sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg== + dependencies: + "@babel/template" "^7.29.7" + "@babel/types" "^7.29.7" + +"@babel/parser@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.29.7.tgz#837b87387cbf5ec5530cb634b3c622f68edb9334" + integrity sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg== dependencies: - "@babel/types" "^7.28.5" - -"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz" - integrity sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q== + "@babel/types" "^7.29.7" + +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.29.7.tgz#2b535896d933a85aa92377eaa3d51a437d54a4e3" + integrity sha512-j8SrR0zLZrRsC09DlszEx8FpMiwukKffYXMK0d5LmOglO7vGG6sz/BR/20yHqWH+Lnn31JTt2PE3hIWNgM2J6w== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/traverse" "^7.28.5" - -"@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz" - integrity sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA== + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/traverse" "^7.29.7" + +"@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.29.7.tgz#b00711a9e52bf4fe55ef7e54b2ef4a881bf804c8" + integrity sha512-r8j8escF+U2FUHo0KOhPUdMzUO+jp9fInva6+ACVAF3Y97Ev+5iNZwiqTghmzNeWwDkOPlYuTcfb1vDaoZKmAQ== + dependencies: + "@babel/helper-plugin-utils" "^7.29.7" + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.29.7.tgz#2375328852026a3cf6bc0bcf2de7d236f2d5e701" + integrity sha512-GE1TFSiuFeGsCxmYXZl8HwoPrVlwe4rHPFE8weieGKZqnDORK+Ar3vgWMgW+AOxQ6/2TgLSKx9p6W7O4rC6qgQ== + dependencies: + "@babel/helper-plugin-utils" "^7.29.7" + +"@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-rest-destructuring-rhs-array/-/plugin-bugfix-safari-rest-destructuring-rhs-array-7.29.7.tgz#759a857c46c4d2a6199685cf71070d81ae5f743a" + integrity sha512-oBNVCvnO5tND+xSopWvV8WNGfpTfgP4Zr/YXXSj8zfmcPktp5Ku/aZlsIowgSD4fjmgHn6sGmB9APVsU5zOdhA== + dependencies: + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.29.7" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.29.7.tgz#86de98dd8e03836178231ea96c27dab26016a705" + integrity sha512-QQt9qKHZ2sg/kivaLr7lnQr8HVrQDdBNSfCsTjiDxRuX/K5ORyKq+Bu8Xr0cDE3Dfkv0cw28Ve0EKyKMvulkOw== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz" - integrity sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA== - dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.29.7" + "@babel/plugin-transform-optional-chaining" "^7.29.7" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz" - integrity sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw== +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.29.7.tgz#f5d892681dbf4b08753436a5e55000d5ba728d6d" + integrity sha512-pn6QacGLgvCcwc+syUhKE/qSjV2D1IHDB84RNxWYSt1mW3K/SCtjinZ2p0cETJxAWBjPy3K/1lHwG5BjjPxNlw== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" - "@babel/plugin-transform-optional-chaining" "^7.27.1" - -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.28.3": - version "7.28.3" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz" - integrity sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw== - dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/traverse" "^7.28.3" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/traverse" "^7.29.7" "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": version "7.21.0-placeholder-for-preset-env.2" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== "@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-import-assertions@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz" - integrity sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg== +"@babel/plugin-syntax-import-assertions@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.29.7.tgz#c5cd868505269126cc18882e1f01f7b0e0e24b4e" + integrity sha512-/An1OCBN93thpBAGyfsK2pcf0jvju1SAtKkL2Ny++B5Sy6sqgzXDQH1cZxWbF96Wuk+bn41MDA9bLd4VVAw6rw== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-syntax-import-attributes@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz" - integrity sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww== +"@babel/plugin-syntax-import-attributes@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.29.7.tgz#6115264516e95ead0f35a41710906612e447f605" + integrity sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-syntax-jsx@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz" - integrity sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w== +"@babel/plugin-syntax-jsx@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.29.7.tgz#622c16f9ad63782fe6e83dadc7e40330744b7f1e" + integrity sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-syntax-typescript@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz" - integrity sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ== +"@babel/plugin-syntax-typescript@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.29.7.tgz#7c29388932313ed58413a0343048d75d92fb5b24" + integrity sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" "@babel/plugin-syntax-unicode-sets-regex@^7.18.6": version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-arrow-functions@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz" - integrity sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA== +"@babel/plugin-transform-arrow-functions@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.29.7.tgz#d651343f562c03f47951bd1802195d0e10605f27" + integrity sha512-N7zArUXWzAMzm+/N0uPBeVB3Fam5lMxtUwMmDK5f/IBBS7a7p1qeUoxd/6CckXoxUdgsntq1Dh8xNW06maZbDQ== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-async-generator-functions@^7.28.0": - version "7.28.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz" - integrity sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q== +"@babel/plugin-transform-async-generator-functions@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.29.7.tgz#a5365617921d82a1fee33124a1102bb38a1e677d" + integrity sha512-d98gXZkgswvkyohMBABkhm3GeXhYj8psWfwQ2C7gtfrKGTykQa/iOIi+JJhwMjPlZ6Vm2XN+DCf3Es1EoG4ZLA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-remap-async-to-generator" "^7.27.1" - "@babel/traverse" "^7.28.0" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-remap-async-to-generator" "^7.29.7" + "@babel/traverse" "^7.29.7" -"@babel/plugin-transform-async-to-generator@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz" - integrity sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA== +"@babel/plugin-transform-async-to-generator@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.29.7.tgz#3b5e8f1fb58133cf701bcf0baaf6f01bfd1a8889" + integrity sha512-pcUb2SS+RMo9TWVBwKGI5ShtoG7R+zBsFmCKDa6fe8c+hPr3XJlZgoE5j6i8W7gDjhyvy+85vmYexanvXh3d1w== dependencies: - "@babel/helper-module-imports" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-remap-async-to-generator" "^7.27.1" + "@babel/helper-module-imports" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-remap-async-to-generator" "^7.29.7" -"@babel/plugin-transform-block-scoped-functions@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz" - integrity sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg== +"@babel/plugin-transform-block-scoped-functions@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.29.7.tgz#96d292634434082d6687bcdb81139affedf77e8c" + integrity sha512-cUSmjh72N+rN4PrkFlN1dJwNCwjVp5d38/CQrEsFggkD10UiFlBFgdH3tv5dNsLuHY+3S8db2xCHjhZcv5WgvA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-block-scoping@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz" - integrity sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g== +"@babel/plugin-transform-block-scoping@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.29.7.tgz#baa376691ae16244cd14335422fca6900f54e17d" + integrity sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-class-properties@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz" - integrity sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA== +"@babel/plugin-transform-class-properties@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.29.7.tgz#034897b8a21beec163332fac2de235b14409abdf" + integrity sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA== dependencies: - "@babel/helper-create-class-features-plugin" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-create-class-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-class-static-block@^7.28.3": - version "7.28.3" - resolved "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz" - integrity sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg== +"@babel/plugin-transform-class-static-block@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.29.7.tgz#fed8efd19f3dd3e1114ee390707c70912778fd7c" + integrity sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A== dependencies: - "@babel/helper-create-class-features-plugin" "^7.28.3" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-create-class-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-classes@^7.28.4": - version "7.28.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz" - integrity sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA== +"@babel/plugin-transform-classes@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.29.7.tgz#61d3e5aaae0c838acc3204d9db7c8dc05c25815b" + integrity sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g== dependencies: - "@babel/helper-annotate-as-pure" "^7.27.3" - "@babel/helper-compilation-targets" "^7.27.2" - "@babel/helper-globals" "^7.28.0" - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-replace-supers" "^7.27.1" - "@babel/traverse" "^7.28.4" + "@babel/helper-annotate-as-pure" "^7.29.7" + "@babel/helper-compilation-targets" "^7.29.7" + "@babel/helper-globals" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-replace-supers" "^7.29.7" + "@babel/traverse" "^7.29.7" -"@babel/plugin-transform-computed-properties@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz" - integrity sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw== +"@babel/plugin-transform-computed-properties@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.29.7.tgz#95028787ca31901b9a20b5c6d9605c32346f55ad" + integrity sha512-RK7/IyU5phpuCdBAuig5VkzG/EnbDaui5SQGdU9BFrHdV+mV4cUjLMQ9lJDjLNtWHsqtiefpGZUXQP2BiTYMsA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/template" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/template" "^7.29.7" -"@babel/plugin-transform-destructuring@^7.28.0", "@babel/plugin-transform-destructuring@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz" - integrity sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw== +"@babel/plugin-transform-destructuring@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.29.7.tgz#5781ec6947852e27b64c1165f0db431f408090e4" + integrity sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/traverse" "^7.28.5" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/traverse" "^7.29.7" -"@babel/plugin-transform-dotall-regex@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz" - integrity sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw== +"@babel/plugin-transform-dotall-regex@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.29.7.tgz#b203de9740e4c7ff6b55ce436ed5313b88d70af8" + integrity sha512-3qc18hsD2RdZiyJNDNc7HQpv6xbncwh8FYtxNFFzclSyh/trPD9KkVR9BDECUjDLvb7yJVF15GfYUuC+LMkkiQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-create-regexp-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-duplicate-keys@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz" - integrity sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q== +"@babel/plugin-transform-duplicate-keys@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.29.7.tgz#8f3fe721835cb7a433420841dae90afc962ea7ae" + integrity sha512-6IvRRriEMqnBwD6chtxdLpMYCHWEzN+oL5cyQtjykya19UgzbmKhxmhZgKC/LHxS2nYr9Q/qYPZ5Lr6jOL9+yQ== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz" - integrity sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ== +"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.29.7.tgz#dc6c405e55c01b7657e1827a25332c4ac17e9cac" + integrity sha512-2wiIyo2BjtgU7HufSeDnL9L2O7zr8jmhFKuSr65VpRkUiRKRNpb0mdlk56+XPPKoIrfHqzbMuglDvZun0RISsA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-create-regexp-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-dynamic-import@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz" - integrity sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A== +"@babel/plugin-transform-dynamic-import@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.29.7.tgz#a83a6faec5bab5b619adf9d0eac6c1c270123c2a" + integrity sha512-giOlEm/EFjfjr+te9NsdjkUo2v4f8rS/SXPumRVHAtbNcyNlvtREkU1dZzaIDclNpnaVhlCqRdFKhJBjBikzLg== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-explicit-resource-management@^7.28.0": - version "7.28.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz" - integrity sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ== +"@babel/plugin-transform-explicit-resource-management@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.29.7.tgz#65c8b9f76ec915b02a0e1df703125a0fca58abaa" + integrity sha512-Rstj7coNz8sE+7Ju7ihpHLI564lsK5pUpNNlvptCIC/16E/S5hbl6n3kESPKdNRmqEWlpn5xpS5Q2dvXBsySLw== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/plugin-transform-destructuring" "^7.28.0" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/plugin-transform-destructuring" "^7.29.7" -"@babel/plugin-transform-exponentiation-operator@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz" - integrity sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw== +"@babel/plugin-transform-exponentiation-operator@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.29.7.tgz#00bf002fde8794356171f5d4df200f6bc0d5a303" + integrity sha512-zFpMOTLZBdW5LfObqcSbL6kefg4R4eLdmvS0wbN9M6D5Mym/sKm9toOoWyVOa+xDjvCnuWcHls2YonXwHvH3CQ== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-export-namespace-from@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz" - integrity sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ== +"@babel/plugin-transform-export-namespace-from@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.29.7.tgz#d6014f45cec61d7691335c6c9804204bee801d51" + integrity sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-for-of@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz" - integrity sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw== +"@babel/plugin-transform-for-of@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.29.7.tgz#c65a678592117717aacdb10c1b73a9cb85e830be" + integrity sha512-zeSIHh0+E1Um1WJRXCFlHQYu2ieJNdivLLjlBEp+dIBu3S51n+SZZmIXjxnItw6pz56Cn+KvK68BIBVsxq2JiQ== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.29.7" -"@babel/plugin-transform-function-name@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz" - integrity sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ== +"@babel/plugin-transform-function-name@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.29.7.tgz#8b87f8a7504dbcd96135167e3fc4f61126a7bd86" + integrity sha512-otRWaHXE6fbAGkePvaj/kvs3HsqXfPhlnzwSOlnFgbqCPMd975dW+4wZ00WFBt+/YlBGcJwNrARQTOJOb4ZrIg== dependencies: - "@babel/helper-compilation-targets" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/traverse" "^7.27.1" + "@babel/helper-compilation-targets" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/traverse" "^7.29.7" -"@babel/plugin-transform-json-strings@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz" - integrity sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q== +"@babel/plugin-transform-json-strings@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.29.7.tgz#f57d63dcc05b4481c281acedcd8fc4e3e439a1d4" + integrity sha512-RRnE2+eon1rJAq8MnoF1b5kTpY1vU88twHcvcKMrsqP/jxIRqDVs9iJB5fqPuqyeFAW0wJo4MlUIPpQCq/aRsg== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-literals@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz" - integrity sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA== +"@babel/plugin-transform-literals@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.29.7.tgz#b90bd47463326c2a9d779e1bd5e1f88b9f421921" + integrity sha512-DZ/oLP21ZuWx1vKqnoNv6/tvEK48AQOBRai40CX9dTjGluvT/YZCyY3rryDtyUqCEoyNroy5KKPwX2iQCiRvyw== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-logical-assignment-operators@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz" - integrity sha512-axUuqnUTBuXyHGcJEVVh9pORaN6wC5bYfE7FGzPiaWa3syib9m7g+/IT/4VgCOe2Upef43PHzeAvcrVek6QuuA== +"@babel/plugin-transform-logical-assignment-operators@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.29.7.tgz#9b29425adf5c794967aabe4b046a046a167bac2f" + integrity sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-member-expression-literals@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz" - integrity sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ== +"@babel/plugin-transform-member-expression-literals@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.29.7.tgz#1281689fa2fefc17b110d21ebafd0fe9402d5309" + integrity sha512-hl1kwFZCCiDyfH25Xmco9jTrkPgnS9pmOzSG7W5I4SaGbLeqKv417hcU2RKmaxoPEgsoJh7ZPOrnPGq99bHoUg== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-modules-amd@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz" - integrity sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA== +"@babel/plugin-transform-modules-amd@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.29.7.tgz#f05ca662c8a1dc4be2f337af9c7e80369c942d6c" + integrity sha512-fxtQoH3m5ywUSIfaH0FGCzWu4McsYon5bD3K4XnskC7f+OyQMj7rsOMi4NvvmJ83WwBAg4UCe+ov4VZlqEvyew== dependencies: - "@babel/helper-module-transforms" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-module-transforms" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-modules-commonjs@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz" - integrity sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw== +"@babel/plugin-transform-modules-commonjs@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.29.7.tgz#70e6835abf2663dafbe94b8ef1f51de7351ef135" + integrity sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ== dependencies: - "@babel/helper-module-transforms" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-module-transforms" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-modules-systemjs@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz" - integrity sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew== +"@babel/plugin-transform-modules-systemjs@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.29.7.tgz#e575dd2ab9882906de120ff7dc9dee9914d8b6f3" + integrity sha512-TM2ZcQLoG2/y4HODiStCo10DibYhWhGWAwVv+EQKmG/7GFl0N+AAmUiXOMKM+aiJ9XBJ9AHVZBvTzMnJ2sM3cQ== dependencies: - "@babel/helper-module-transforms" "^7.28.3" - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-validator-identifier" "^7.28.5" - "@babel/traverse" "^7.28.5" + "@babel/helper-module-transforms" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-validator-identifier" "^7.29.7" + "@babel/traverse" "^7.29.7" -"@babel/plugin-transform-modules-umd@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz" - integrity sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w== +"@babel/plugin-transform-modules-umd@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.29.7.tgz#391d1c0215aca6307257f2f608598dfe55feb6cf" + integrity sha512-B4UkaTK3QpgCwJnrxKfMPKdo92CN7OKXAlpAAnM3UPu0Q0lCCk57ylA9AJbRy2v8dDKOPAAWcoR6CMyeoHwRCA== dependencies: - "@babel/helper-module-transforms" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-module-transforms" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-named-capturing-groups-regex@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz" - integrity sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng== +"@babel/plugin-transform-named-capturing-groups-regex@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.29.7.tgz#21e75d847b31189842fa7a77703722ed4b43d27d" + integrity sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-create-regexp-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-new-target@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz" - integrity sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ== +"@babel/plugin-transform-new-target@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.29.7.tgz#714147ce7947e1b49cbd84137ca2e75e92b2a067" + integrity sha512-fEo41GmsOUhOBlw8ioo6zvjX5Xc2Lqkzlyfqbpsk3eB6TReV18uhxZ0esfEokVbY2+PVJAQHNKxER6lGrzNd3A== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-nullish-coalescing-operator@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz" - integrity sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA== +"@babel/plugin-transform-nullish-coalescing-operator@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.29.7.tgz#8a54cdf88c3f50433a6173117a286195b67714cc" + integrity sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-numeric-separator@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz" - integrity sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw== +"@babel/plugin-transform-numeric-separator@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.29.7.tgz#0266d5cd42ab87ec40fee45a4e36483cfdcbc66a" + integrity sha512-zR7fv/z14OjgHl4AgRtkDBvBMhIzCxqV/qN/2BCRC7LjFwvuzjYe7gDWxC4Wl/SNsLM6SE1IWvRPYMgSJaUvNw== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-object-rest-spread@^7.28.4": - version "7.28.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz" - integrity sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew== +"@babel/plugin-transform-object-rest-spread@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.29.7.tgz#e0d5060241803922c545676613cc8acbbda0d266" + integrity sha512-Ld98jn4c0smUywL57m7SgsHq3OpThOa6LqZJif3G6jYOovPleoFhVrBJ1WegRApSFB2wu4+RelAj9AC9G08Z4A== dependencies: - "@babel/helper-compilation-targets" "^7.27.2" - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/plugin-transform-destructuring" "^7.28.0" - "@babel/plugin-transform-parameters" "^7.27.7" - "@babel/traverse" "^7.28.4" + "@babel/helper-compilation-targets" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/plugin-transform-destructuring" "^7.29.7" + "@babel/plugin-transform-parameters" "^7.29.7" + "@babel/traverse" "^7.29.7" -"@babel/plugin-transform-object-super@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz" - integrity sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng== +"@babel/plugin-transform-object-super@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.29.7.tgz#e89283d14fa3c35817d4493ffc6bc649aa10e4eb" + integrity sha512-Ea/diGcw0twB5IlZPO5sgET6fJsLJqPABqTuFWIR+iMPGPZJkATEIWx0wa+aEQ5UY1CBQyP/gkAiLEqn1vBiQA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-replace-supers" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-replace-supers" "^7.29.7" -"@babel/plugin-transform-optional-catch-binding@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz" - integrity sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q== +"@babel/plugin-transform-optional-catch-binding@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.29.7.tgz#729664f79985be504eba112c51de9f71d009030b" + integrity sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-optional-chaining@^7.27.1", "@babel/plugin-transform-optional-chaining@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz" - integrity sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ== +"@babel/plugin-transform-optional-chaining@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.29.7.tgz#b84a1b574b3c73001023092567e16c492b720e51" + integrity sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.29.7" -"@babel/plugin-transform-parameters@^7.27.7": - version "7.27.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz" - integrity sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg== +"@babel/plugin-transform-parameters@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.29.7.tgz#a5ddc3b9bfb534814cb8334cbeba47d9cf9db090" + integrity sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-private-methods@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz" - integrity sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA== +"@babel/plugin-transform-private-methods@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.29.7.tgz#cea8bd3ab99533892897a02999d5b752584ad145" + integrity sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug== dependencies: - "@babel/helper-create-class-features-plugin" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-create-class-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-private-property-in-object@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz" - integrity sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ== +"@babel/plugin-transform-private-property-in-object@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.29.7.tgz#4a2f6be5aba47be7afbdb4cd7903c46edf3a7661" + integrity sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA== dependencies: - "@babel/helper-annotate-as-pure" "^7.27.1" - "@babel/helper-create-class-features-plugin" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-annotate-as-pure" "^7.29.7" + "@babel/helper-create-class-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-property-literals@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz" - integrity sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ== +"@babel/plugin-transform-property-literals@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.29.7.tgz#d45817cd72f9e134ab1f7fbb79264cfcb85cf636" + integrity sha512-bOMRLQuI0A5ZqHq3OWJ89/rXpJ/NJrbVhXiP4zwPGMs6kpcVsuTUNjwoE30K0Qm3mf48a/TnRYYD6vPNqcg6jA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" "@babel/plugin-transform-react-constant-elements@^7.21.3": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.27.1.tgz" - integrity sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug== + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.29.7.tgz#8264440ea2ffc5ec405aebd7eac074815d6e28b1" + integrity sha512-J0wGhKan+rIiE2OhfhRptySLrJ6SjQYM6b6N1FMlhyhCcw1Mig8vQjWchyB+bgHGDvaWo6Diu6CLRMra2uMtmg== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-react-display-name@^7.28.0": - version "7.28.0" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz" - integrity sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA== +"@babel/plugin-transform-react-display-name@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.29.7.tgz#bf161a6d750267b79db7ff6f8fb89c3369b02df3" + integrity sha512-+1wdDMGNb4UPeY3Q4L5yLiYe6TXPXubs4NjrgRFw13hPRLJfEMw2Q5OXkee6/IfdqePIeW4Jjwe3aBh7SdKz4Q== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-react-jsx-development@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz" - integrity sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q== +"@babel/plugin-transform-react-jsx-development@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.29.7.tgz#64e6aacb5cb43b9e80d3d5f19ddefc158a624f09" + integrity sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g== dependencies: - "@babel/plugin-transform-react-jsx" "^7.27.1" + "@babel/plugin-transform-react-jsx" "^7.29.7" -"@babel/plugin-transform-react-jsx@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.27.1.tgz" - integrity sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw== +"@babel/plugin-transform-react-jsx@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.29.7.tgz#3d16a0e5773f079400a8c82a190709cdf92ee204" + integrity sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A== dependencies: - "@babel/helper-annotate-as-pure" "^7.27.1" - "@babel/helper-module-imports" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/plugin-syntax-jsx" "^7.27.1" - "@babel/types" "^7.27.1" + "@babel/helper-annotate-as-pure" "^7.29.7" + "@babel/helper-module-imports" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/plugin-syntax-jsx" "^7.29.7" + "@babel/types" "^7.29.7" -"@babel/plugin-transform-react-pure-annotations@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz" - integrity sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA== +"@babel/plugin-transform-react-pure-annotations@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.29.7.tgz#76445c90112dd0a7371b63264563bfa9a4fcd6e3" + integrity sha512-H5E+HBgDpr6Q5t+Aj11tL7XkIui1jhbIoArVQnqjgXo5/3YxkN7ZEBcWF4RQlB0T4rrxJQbXS6kiFV6B7XTqUA== dependencies: - "@babel/helper-annotate-as-pure" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-annotate-as-pure" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-regenerator@^7.28.4": - version "7.28.4" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz" - integrity sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA== +"@babel/plugin-transform-regenerator@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.29.7.tgz#0f42626a7dbb0e7a7f52e036d3e43deebdc3ea4e" + integrity sha512-rNNFV0DBAJp988xW2DOntfDoYn1eR8GGF5AT5vYc+rjyfaQkM242c9tZUHHPe7KYaiJizXPWhQTzzdbXySyhBw== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-regexp-modifiers@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz" - integrity sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA== +"@babel/plugin-transform-regexp-modifiers@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.29.7.tgz#68311c0c10af2198212528863f8542843e424025" + integrity sha512-mB5Fs0VWrJ42ZCmc8114v60qetdaUVNkj9PmSZRmanCZM3S9hm0CFRLjRmYIsuXav14l2jvZ+4T8iiCGnhj3nQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-create-regexp-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-reserved-words@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz" - integrity sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw== +"@babel/plugin-transform-reserved-words@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.29.7.tgz#a6feeb179b36a5f1fc6e3154c1eb727bdbe35876" + integrity sha512-5+YhdpVgmfSmwZyLMftfaiffLRMHjzIRHFHHLdibcSyJm2pasMrKHrO3Ptrt2DRshjvpgjEJJ1zVW14WPq/6QA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" "@babel/plugin-transform-runtime@^7.25.9": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.28.5.tgz" - integrity sha512-20NUVgOrinudkIBzQ2bNxP08YpKprUkRTiRSd2/Z5GOdPImJGkoN4Z7IQe1T5AdyKI1i5L6RBmluqdSzvaq9/w== + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.29.7.tgz#7c7fb6e2a46dce67e278b6cc84421c1d16da5695" + integrity sha512-xmAscdE/AsqRW7vutbPNoUmu/nF5SrLKPs7aoJgEjo35lLKA/Bc0i2rMv/hr1+Y0o1bQCiVtith3u2vdgRL39Q== dependencies: - "@babel/helper-module-imports" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-module-imports" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" babel-plugin-polyfill-corejs2 "^0.4.14" babel-plugin-polyfill-corejs3 "^0.13.0" babel-plugin-polyfill-regenerator "^0.6.5" semver "^6.3.1" -"@babel/plugin-transform-shorthand-properties@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz" - integrity sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ== +"@babel/plugin-transform-shorthand-properties@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.29.7.tgz#25c0436b98f4bd9ca4b98e1fbd662743bbaab9bf" + integrity sha512-I+WYbGBAiCn7nA6xBrlgPH+MB7HWb4u8pv5S0Pv7OtwNvIFvCCb24YlttKEeUFVurfBCEaOTnuhlqsb7f0Z5Dg== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-spread@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz" - integrity sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q== +"@babel/plugin-transform-spread@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.29.7.tgz#a128bcdd6b5e5e47054907b2e50bc19c3f856edd" + integrity sha512-/u5K1QWada7tbYNqTjMh96718g9NTwh9tfPJMsSmVsQwGT447FskV+KcfeXkXq2GWki4EM/MuTdmBec+hOuVTQ== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.29.7" -"@babel/plugin-transform-sticky-regex@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz" - integrity sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g== +"@babel/plugin-transform-sticky-regex@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.29.7.tgz#a42c0fd1fa42f7e98e1e0c7757f72a1bbca3a015" + integrity sha512-BCHzNYJGe9l7EpwwDBN/ztlL2NYFFq8hp9ddjtUEM9f2O7S7kKV/lL6Fwo7IF7NSkYhPK2vO+86nIGltA90MsA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-template-literals@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz" - integrity sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg== +"@babel/plugin-transform-template-literals@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.29.7.tgz#ada97d8e0832bca8edb315888aa654b1570f3835" + integrity sha512-NCSEJ4sLFU2gqAub45HYh4fus2yQ36rr6ei6vpU7NdoJqCpxvEG8E6eJpscGyXP3VHD2Ny+fSXr04k1hoUrFqA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-typeof-symbol@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz" - integrity sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw== +"@babel/plugin-transform-typeof-symbol@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.29.7.tgz#d848a4677c1ee3485ab017f4018f04597798911c" + integrity sha512-223mNGoTkBiTEWFoK+Q6Go3tueMRclO8vxxxxquNCYuNI4jWOofFKJRRDu6SDrB8Sgo1UEGW9T4GAQ8ZyRso1A== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-typescript@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz" - integrity sha512-x2Qa+v/CuEoX7Dr31iAfr0IhInrVOWZU/2vJMJ00FOR/2nM0BcBEclpaf9sWCDc+v5e9dMrhSH8/atq/kX7+bA== +"@babel/plugin-transform-typescript@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.29.7.tgz#f0449c3df7037bbe232043476851c38f5e4a7615" + integrity sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw== dependencies: - "@babel/helper-annotate-as-pure" "^7.27.3" - "@babel/helper-create-class-features-plugin" "^7.28.5" - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1" - "@babel/plugin-syntax-typescript" "^7.27.1" + "@babel/helper-annotate-as-pure" "^7.29.7" + "@babel/helper-create-class-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.29.7" + "@babel/plugin-syntax-typescript" "^7.29.7" -"@babel/plugin-transform-unicode-escapes@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz" - integrity sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg== +"@babel/plugin-transform-unicode-escapes@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.29.7.tgz#1e99554b0cddfd650d649a9f2b996049893e5720" + integrity sha512-jCfXxSjf94lf4E0hKE0AByxF6F3/pVFqRdUUNkDJhsY0m1ZKjnN6ZYyMeHNpzflxb/0q5b7t3p+BE+SLF1WOtA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-unicode-property-regex@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz" - integrity sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q== +"@babel/plugin-transform-unicode-property-regex@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.29.7.tgz#44444afc73768c2190fac4d95f7716817b7f204a" + integrity sha512-OgZ+zoAJgZLUCunsTRQ5LAjOywDv5zzZ2/hQ5aMw1pGXyY2rtE8/chXYUmu3AlVHKpm10KEdG9aMwbI/K76ZGw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-create-regexp-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-unicode-regex@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz" - integrity sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw== +"@babel/plugin-transform-unicode-regex@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.29.7.tgz#c3064b293ff7f1794b71f7650eec8db9896d3e59" + integrity sha512-7D/x/23/d/3VqZ0QA+LGbZMlGwZjztBygSWWWsfTPoQ1oQ6Q1P6Mr3d0kk42XabyUVw+fha3LqdRsFqeKqvCyA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-create-regexp-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" -"@babel/plugin-transform-unicode-sets-regex@^7.27.1": - version "7.27.1" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz" - integrity sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw== +"@babel/plugin-transform-unicode-sets-regex@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.29.7.tgz#b03ac9f27326f6197e8e574add83bbf33fc34ecd" + integrity sha512-BLOhLht9DOJwIxlmp91wHvkXv1lguuHS3/FwUO8HL1H0u8s4hR1gASVFyilu9iGtcTRYqjTZmlsFFeQletntEg== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.27.1" - "@babel/helper-plugin-utils" "^7.27.1" + "@babel/helper-create-regexp-features-plugin" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" "@babel/preset-env@^7.20.2", "@babel/preset-env@^7.25.9": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.28.5.tgz" - integrity sha512-S36mOoi1Sb6Fz98fBfE+UZSpYw5mJm0NUHtIKrOuNcqeFauy1J6dIvXm2KRVKobOSaGq4t/hBXdN4HGU3wL9Wg== - dependencies: - "@babel/compat-data" "^7.28.5" - "@babel/helper-compilation-targets" "^7.27.2" - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-validator-option" "^7.27.1" - "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.28.5" - "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.27.1" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.27.1" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.27.1" - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.28.3" + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.29.7.tgz#5e2ab5e764b493fdefc99c43aeaa70a9533a37fd" + integrity sha512-GYzX36n1nsciIb0uyH0GHwxwtNwPQIcpxSeiVLDtG/B7jB5xXgchnmL1f/jCX5o+pwnaDBtO60ONSJhEBJfxYA== + dependencies: + "@babel/compat-data" "^7.29.7" + "@babel/helper-compilation-targets" "^7.29.7" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-validator-option" "^7.29.7" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.29.7" + "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.29.7" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.29.7" + "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array" "^7.29.7" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.29.7" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.29.7" "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" - "@babel/plugin-syntax-import-assertions" "^7.27.1" - "@babel/plugin-syntax-import-attributes" "^7.27.1" + "@babel/plugin-syntax-import-assertions" "^7.29.7" + "@babel/plugin-syntax-import-attributes" "^7.29.7" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.27.1" - "@babel/plugin-transform-async-generator-functions" "^7.28.0" - "@babel/plugin-transform-async-to-generator" "^7.27.1" - "@babel/plugin-transform-block-scoped-functions" "^7.27.1" - "@babel/plugin-transform-block-scoping" "^7.28.5" - "@babel/plugin-transform-class-properties" "^7.27.1" - "@babel/plugin-transform-class-static-block" "^7.28.3" - "@babel/plugin-transform-classes" "^7.28.4" - "@babel/plugin-transform-computed-properties" "^7.27.1" - "@babel/plugin-transform-destructuring" "^7.28.5" - "@babel/plugin-transform-dotall-regex" "^7.27.1" - "@babel/plugin-transform-duplicate-keys" "^7.27.1" - "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.27.1" - "@babel/plugin-transform-dynamic-import" "^7.27.1" - "@babel/plugin-transform-explicit-resource-management" "^7.28.0" - "@babel/plugin-transform-exponentiation-operator" "^7.28.5" - "@babel/plugin-transform-export-namespace-from" "^7.27.1" - "@babel/plugin-transform-for-of" "^7.27.1" - "@babel/plugin-transform-function-name" "^7.27.1" - "@babel/plugin-transform-json-strings" "^7.27.1" - "@babel/plugin-transform-literals" "^7.27.1" - "@babel/plugin-transform-logical-assignment-operators" "^7.28.5" - "@babel/plugin-transform-member-expression-literals" "^7.27.1" - "@babel/plugin-transform-modules-amd" "^7.27.1" - "@babel/plugin-transform-modules-commonjs" "^7.27.1" - "@babel/plugin-transform-modules-systemjs" "^7.28.5" - "@babel/plugin-transform-modules-umd" "^7.27.1" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.27.1" - "@babel/plugin-transform-new-target" "^7.27.1" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.27.1" - "@babel/plugin-transform-numeric-separator" "^7.27.1" - "@babel/plugin-transform-object-rest-spread" "^7.28.4" - "@babel/plugin-transform-object-super" "^7.27.1" - "@babel/plugin-transform-optional-catch-binding" "^7.27.1" - "@babel/plugin-transform-optional-chaining" "^7.28.5" - "@babel/plugin-transform-parameters" "^7.27.7" - "@babel/plugin-transform-private-methods" "^7.27.1" - "@babel/plugin-transform-private-property-in-object" "^7.27.1" - "@babel/plugin-transform-property-literals" "^7.27.1" - "@babel/plugin-transform-regenerator" "^7.28.4" - "@babel/plugin-transform-regexp-modifiers" "^7.27.1" - "@babel/plugin-transform-reserved-words" "^7.27.1" - "@babel/plugin-transform-shorthand-properties" "^7.27.1" - "@babel/plugin-transform-spread" "^7.27.1" - "@babel/plugin-transform-sticky-regex" "^7.27.1" - "@babel/plugin-transform-template-literals" "^7.27.1" - "@babel/plugin-transform-typeof-symbol" "^7.27.1" - "@babel/plugin-transform-unicode-escapes" "^7.27.1" - "@babel/plugin-transform-unicode-property-regex" "^7.27.1" - "@babel/plugin-transform-unicode-regex" "^7.27.1" - "@babel/plugin-transform-unicode-sets-regex" "^7.27.1" + "@babel/plugin-transform-arrow-functions" "^7.29.7" + "@babel/plugin-transform-async-generator-functions" "^7.29.7" + "@babel/plugin-transform-async-to-generator" "^7.29.7" + "@babel/plugin-transform-block-scoped-functions" "^7.29.7" + "@babel/plugin-transform-block-scoping" "^7.29.7" + "@babel/plugin-transform-class-properties" "^7.29.7" + "@babel/plugin-transform-class-static-block" "^7.29.7" + "@babel/plugin-transform-classes" "^7.29.7" + "@babel/plugin-transform-computed-properties" "^7.29.7" + "@babel/plugin-transform-destructuring" "^7.29.7" + "@babel/plugin-transform-dotall-regex" "^7.29.7" + "@babel/plugin-transform-duplicate-keys" "^7.29.7" + "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.29.7" + "@babel/plugin-transform-dynamic-import" "^7.29.7" + "@babel/plugin-transform-explicit-resource-management" "^7.29.7" + "@babel/plugin-transform-exponentiation-operator" "^7.29.7" + "@babel/plugin-transform-export-namespace-from" "^7.29.7" + "@babel/plugin-transform-for-of" "^7.29.7" + "@babel/plugin-transform-function-name" "^7.29.7" + "@babel/plugin-transform-json-strings" "^7.29.7" + "@babel/plugin-transform-literals" "^7.29.7" + "@babel/plugin-transform-logical-assignment-operators" "^7.29.7" + "@babel/plugin-transform-member-expression-literals" "^7.29.7" + "@babel/plugin-transform-modules-amd" "^7.29.7" + "@babel/plugin-transform-modules-commonjs" "^7.29.7" + "@babel/plugin-transform-modules-systemjs" "^7.29.7" + "@babel/plugin-transform-modules-umd" "^7.29.7" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.29.7" + "@babel/plugin-transform-new-target" "^7.29.7" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.29.7" + "@babel/plugin-transform-numeric-separator" "^7.29.7" + "@babel/plugin-transform-object-rest-spread" "^7.29.7" + "@babel/plugin-transform-object-super" "^7.29.7" + "@babel/plugin-transform-optional-catch-binding" "^7.29.7" + "@babel/plugin-transform-optional-chaining" "^7.29.7" + "@babel/plugin-transform-parameters" "^7.29.7" + "@babel/plugin-transform-private-methods" "^7.29.7" + "@babel/plugin-transform-private-property-in-object" "^7.29.7" + "@babel/plugin-transform-property-literals" "^7.29.7" + "@babel/plugin-transform-regenerator" "^7.29.7" + "@babel/plugin-transform-regexp-modifiers" "^7.29.7" + "@babel/plugin-transform-reserved-words" "^7.29.7" + "@babel/plugin-transform-shorthand-properties" "^7.29.7" + "@babel/plugin-transform-spread" "^7.29.7" + "@babel/plugin-transform-sticky-regex" "^7.29.7" + "@babel/plugin-transform-template-literals" "^7.29.7" + "@babel/plugin-transform-typeof-symbol" "^7.29.7" + "@babel/plugin-transform-unicode-escapes" "^7.29.7" + "@babel/plugin-transform-unicode-property-regex" "^7.29.7" + "@babel/plugin-transform-unicode-regex" "^7.29.7" + "@babel/plugin-transform-unicode-sets-regex" "^7.29.7" "@babel/preset-modules" "0.1.6-no-external-plugins" - babel-plugin-polyfill-corejs2 "^0.4.14" - babel-plugin-polyfill-corejs3 "^0.13.0" - babel-plugin-polyfill-regenerator "^0.6.5" - core-js-compat "^3.43.0" + babel-plugin-polyfill-corejs2 "^0.4.15" + babel-plugin-polyfill-corejs3 "^0.14.0" + babel-plugin-polyfill-regenerator "^0.6.6" + core-js-compat "^3.48.0" semver "^6.3.1" "@babel/preset-modules@0.1.6-no-external-plugins": version "0.1.6-no-external-plugins" - resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -1043,132 +1042,96 @@ esutils "^2.0.2" "@babel/preset-react@^7.18.6", "@babel/preset-react@^7.25.9": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.28.5.tgz" - integrity sha512-Z3J8vhRq7CeLjdC58jLv4lnZ5RKFUJWqH5emvxmv9Hv3BD1T9R/Im713R4MTKwvFaV74ejZ3sM01LyEKk4ugNQ== + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.29.7.tgz#2ed18366e38c2081bbf1760dc01e88fa5674eb17" + integrity sha512-C+PV1TFUPTmBQGoPBL8j2QmLpZ117YTCwxIZeJOM96GbYMFSc7/pOXU5lVykwnZxyTqQxRsvoRk6f2FktZgGHA== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-validator-option" "^7.27.1" - "@babel/plugin-transform-react-display-name" "^7.28.0" - "@babel/plugin-transform-react-jsx" "^7.27.1" - "@babel/plugin-transform-react-jsx-development" "^7.27.1" - "@babel/plugin-transform-react-pure-annotations" "^7.27.1" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-validator-option" "^7.29.7" + "@babel/plugin-transform-react-display-name" "^7.29.7" + "@babel/plugin-transform-react-jsx" "^7.29.7" + "@babel/plugin-transform-react-jsx-development" "^7.29.7" + "@babel/plugin-transform-react-pure-annotations" "^7.29.7" "@babel/preset-typescript@^7.21.0", "@babel/preset-typescript@^7.25.9": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz" - integrity sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g== + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.29.7.tgz#de9be1f47b785c979ec7b3a71f4cd8bae5267b62" + integrity sha512-/Foi8vKY2EVbed/1eZx0gJEEwHAIxogrySI7rULcRIvhZzbvoE/b5qG5Ghc0WKAFKOHA9SD1x7RsFlOYdutIiQ== dependencies: - "@babel/helper-plugin-utils" "^7.27.1" - "@babel/helper-validator-option" "^7.27.1" - "@babel/plugin-syntax-jsx" "^7.27.1" - "@babel/plugin-transform-modules-commonjs" "^7.27.1" - "@babel/plugin-transform-typescript" "^7.28.5" - -"@babel/runtime-corejs3@^7.25.9": - version "7.28.4" - resolved "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.28.4.tgz" - integrity sha512-h7iEYiW4HebClDEhtvFObtPmIvrd1SSfpI9EhOeKk4CtIK/ngBWFpuhCzhdmRKtg71ylcue+9I6dv54XYO1epQ== - dependencies: - core-js-pure "^3.43.0" + "@babel/helper-plugin-utils" "^7.29.7" + "@babel/helper-validator-option" "^7.29.7" + "@babel/plugin-syntax-jsx" "^7.29.7" + "@babel/plugin-transform-modules-commonjs" "^7.29.7" + "@babel/plugin-transform-typescript" "^7.29.7" "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.25.9": - version "7.26.7" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.7.tgz" - integrity sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ== - dependencies: - regenerator-runtime "^0.14.0" - -"@babel/template@^7.27.1", "@babel/template@^7.27.2": - version "7.27.2" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz" - integrity sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw== - dependencies: - "@babel/code-frame" "^7.27.1" - "@babel/parser" "^7.27.2" - "@babel/types" "^7.27.1" - -"@babel/traverse@^7.25.9", "@babel/traverse@^7.27.1", "@babel/traverse@^7.28.0", "@babel/traverse@^7.28.3", "@babel/traverse@^7.28.4", "@babel/traverse@^7.28.5": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz" - integrity sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ== - dependencies: - "@babel/code-frame" "^7.27.1" - "@babel/generator" "^7.28.5" - "@babel/helper-globals" "^7.28.0" - "@babel/parser" "^7.28.5" - "@babel/template" "^7.27.2" - "@babel/types" "^7.28.5" + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.29.7.tgz#12022450c45a4da6d8d8287b18a4ff2ddb23f768" + integrity sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw== + +"@babel/template@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.29.7.tgz#4d9d4004f645cdd304de958c725162784ecac700" + integrity sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg== + dependencies: + "@babel/code-frame" "^7.29.7" + "@babel/parser" "^7.29.7" + "@babel/types" "^7.29.7" + +"@babel/traverse@^7.25.9", "@babel/traverse@^7.29.7": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.29.7.tgz#c47b07a41b95da0907d026b5dd894d98de7d2f2d" + integrity sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw== + dependencies: + "@babel/code-frame" "^7.29.7" + "@babel/generator" "^7.29.7" + "@babel/helper-globals" "^7.29.7" + "@babel/parser" "^7.29.7" + "@babel/template" "^7.29.7" + "@babel/types" "^7.29.7" debug "^4.3.1" -"@babel/types@^7.21.3", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.28.2", "@babel/types@^7.28.4", "@babel/types@^7.28.5", "@babel/types@^7.4.4": - version "7.28.5" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz" - integrity sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA== - dependencies: - "@babel/helper-string-parser" "^7.27.1" - "@babel/helper-validator-identifier" "^7.28.5" - -"@braintree/sanitize-url@^7.0.4": - version "7.1.1" - resolved "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-7.1.1.tgz" - integrity sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw== - -"@chevrotain/cst-dts-gen@11.0.3": - version "11.0.3" - resolved "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz" - integrity sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ== - dependencies: - "@chevrotain/gast" "11.0.3" - "@chevrotain/types" "11.0.3" - lodash-es "4.17.21" - -"@chevrotain/gast@11.0.3": - version "11.0.3" - resolved "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.0.3.tgz" - integrity sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q== +"@babel/types@^7.21.3", "@babel/types@^7.29.7", "@babel/types@^7.4.4": + version "7.29.7" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.29.7.tgz#8005e31d82712ee7adaef6e23c63b71a62770a92" + integrity sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA== dependencies: - "@chevrotain/types" "11.0.3" - lodash-es "4.17.21" + "@babel/helper-string-parser" "^7.29.7" + "@babel/helper-validator-identifier" "^7.29.7" -"@chevrotain/regexp-to-ast@11.0.3": - version "11.0.3" - resolved "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz" - integrity sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA== - -"@chevrotain/types@11.0.3": - version "11.0.3" - resolved "https://registry.npmjs.org/@chevrotain/types/-/types-11.0.3.tgz" - integrity sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ== +"@braintree/sanitize-url@^7.1.2": + version "7.1.2" + resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-7.1.2.tgz#ca2035b0fefe956a8676ff0c69af73e605fcd81f" + integrity sha512-jigsZK+sMF/cuiB7sERuo9V7N9jx+dhmHHnQyDSVdpZwVutaBu7WvNYqMDLSgFgfB30n452TP3vjDAvFC973mA== -"@chevrotain/utils@11.0.3": - version "11.0.3" - resolved "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.0.3.tgz" - integrity sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ== +"@chevrotain/types@~11.1.2": + version "11.1.2" + resolved "https://registry.yarnpkg.com/@chevrotain/types/-/types-11.1.2.tgz#e83a1a2704f0c5e49e7592b214031a0f4a34d7e5" + integrity sha512-U+HFai5+zmJCkK86QsaJtoITlboZHBqrVketcO2ROv865xfCMSFpELQoz1GkX5GzME8pTa+3kbKrZHQtI0gdbw== "@colors/colors@1.5.0": version "1.5.0" - resolved "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz" + resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== "@csstools/cascade-layer-name-parser@^2.0.5": version "2.0.5" - resolved "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.5.tgz#43f962bebead0052a9fed1a2deeb11f85efcbc72" integrity sha512-p1ko5eHgV+MgXFVa4STPKpvPxr6ReS8oS2jzTukjR74i5zJNyWO1ZM1m8YKBXnzDKWfBN1ztLYlHxbVemDD88A== "@csstools/color-helpers@^5.1.0": version "5.1.0" - resolved "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-5.1.0.tgz#106c54c808cabfd1ab4c602d8505ee584c2996ef" integrity sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA== "@csstools/css-calc@^2.1.4": version "2.1.4" - resolved "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz" + resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-2.1.4.tgz#8473f63e2fcd6e459838dd412401d5948f224c65" integrity sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ== "@csstools/css-color-parser@^3.1.0": version "3.1.0" - resolved "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz#4e386af3a99dd36c46fef013cfe4c1c341eed6f0" integrity sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA== dependencies: "@csstools/color-helpers" "^5.1.0" @@ -1176,22 +1139,22 @@ "@csstools/css-parser-algorithms@^3.0.5": version "3.0.5" - resolved "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz" + resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz#5755370a9a29abaec5515b43c8b3f2cf9c2e3076" integrity sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ== "@csstools/css-tokenizer@^3.0.4": version "3.0.4" - resolved "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz#333fedabc3fd1a8e5d0100013731cf19e6a8c5d3" integrity sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw== "@csstools/media-query-list-parser@^4.0.3": version "4.0.3" - resolved "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.3.tgz#7aec77bcb89c2da80ef207e73f474ef9e1b3cdf1" integrity sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ== "@csstools/postcss-alpha-function@^1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@csstools/postcss-alpha-function/-/postcss-alpha-function-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-alpha-function/-/postcss-alpha-function-1.0.1.tgz#7989605711de7831bc7cd75b94c9b5bac9c3728e" integrity sha512-isfLLwksH3yHkFXfCI2Gcaqg7wGGHZZwunoJzEZk0yKYIokgre6hYVFibKL3SYAoR1kBXova8LB+JoO5vZzi9w== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1202,7 +1165,7 @@ "@csstools/postcss-cascade-layers@^5.0.2": version "5.0.2" - resolved "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.2.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.2.tgz#dd2c70db3867b88975f2922da3bfbae7d7a2cae7" integrity sha512-nWBE08nhO8uWl6kSAeCx4im7QfVko3zLrtgWZY4/bP87zrSPpSyN/3W3TDqz1jJuH+kbKOHXg5rJnK+ZVYcFFg== dependencies: "@csstools/selector-specificity" "^5.0.0" @@ -1210,7 +1173,7 @@ "@csstools/postcss-color-function-display-p3-linear@^1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@csstools/postcss-color-function-display-p3-linear/-/postcss-color-function-display-p3-linear-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function-display-p3-linear/-/postcss-color-function-display-p3-linear-1.0.1.tgz#3017ff5e1f65307d6083e58e93d76724fb1ebf9f" integrity sha512-E5qusdzhlmO1TztYzDIi8XPdPoYOjoTY6HBYBCYSj+Gn4gQRBlvjgPQXzfzuPQqt8EhkC/SzPKObg4Mbn8/xMg== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1221,7 +1184,7 @@ "@csstools/postcss-color-function@^4.0.12": version "4.0.12" - resolved "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.12.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-4.0.12.tgz#a7c85a98c77b522a194a1bbb00dd207f40c7a771" integrity sha512-yx3cljQKRaSBc2hfh8rMZFZzChaFgwmO2JfFgFr1vMcF3C/uyy5I4RFIBOIWGq1D+XbKCG789CGkG6zzkLpagA== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1232,7 +1195,7 @@ "@csstools/postcss-color-mix-function@^3.0.12": version "3.0.12" - resolved "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.12.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.12.tgz#2f1ee9f8208077af069545c9bd79bb9733382c2a" integrity sha512-4STERZfCP5Jcs13P1U5pTvI9SkgLgfMUMhdXW8IlJWkzOOOqhZIjcNhWtNJZes2nkBDsIKJ0CJtFtuaZ00moag== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1243,7 +1206,7 @@ "@csstools/postcss-color-mix-variadic-function-arguments@^1.0.2": version "1.0.2" - resolved "https://registry.npmjs.org/@csstools/postcss-color-mix-variadic-function-arguments/-/postcss-color-mix-variadic-function-arguments-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-variadic-function-arguments/-/postcss-color-mix-variadic-function-arguments-1.0.2.tgz#b4012b62a4eaa24d694172bb7137f9d2319cb8f2" integrity sha512-rM67Gp9lRAkTo+X31DUqMEq+iK+EFqsidfecmhrteErxJZb6tUoJBVQca1Vn1GpDql1s1rD1pKcuYzMsg7Z1KQ== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1254,7 +1217,7 @@ "@csstools/postcss-content-alt-text@^2.0.8": version "2.0.8" - resolved "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.8.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.8.tgz#1d52da1762893c32999ff76839e48d6ec7c7a4cb" integrity sha512-9SfEW9QCxEpTlNMnpSqFaHyzsiRpZ5J5+KqCu1u5/eEJAWsMhzT40qf0FIbeeglEvrGRMdDzAxMIz3wqoGSb+Q== dependencies: "@csstools/css-parser-algorithms" "^3.0.5" @@ -1264,7 +1227,7 @@ "@csstools/postcss-contrast-color-function@^2.0.12": version "2.0.12" - resolved "https://registry.npmjs.org/@csstools/postcss-contrast-color-function/-/postcss-contrast-color-function-2.0.12.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-contrast-color-function/-/postcss-contrast-color-function-2.0.12.tgz#ca46986d095c60f208d9e3f24704d199c9172637" integrity sha512-YbwWckjK3qwKjeYz/CijgcS7WDUCtKTd8ShLztm3/i5dhh4NaqzsbYnhm4bjrpFpnLZ31jVcbK8YL77z3GBPzA== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1275,7 +1238,7 @@ "@csstools/postcss-exponential-functions@^2.0.9": version "2.0.9" - resolved "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.9.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.9.tgz#fc03d1272888cb77e64cc1a7d8a33016e4f05c69" integrity sha512-abg2W/PI3HXwS/CZshSa79kNWNZHdJPMBXeZNyPQFbbj8sKO3jXxOt/wF7juJVjyDTc6JrvaUZYFcSBZBhaxjw== dependencies: "@csstools/css-calc" "^2.1.4" @@ -1284,7 +1247,7 @@ "@csstools/postcss-font-format-keywords@^4.0.0": version "4.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-4.0.0.tgz#6730836eb0153ff4f3840416cc2322f129c086e6" integrity sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw== dependencies: "@csstools/utilities" "^2.0.0" @@ -1292,7 +1255,7 @@ "@csstools/postcss-gamut-mapping@^2.0.11": version "2.0.11" - resolved "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.11.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.11.tgz#be0e34c9f0142852cccfc02b917511f0d677db8b" integrity sha512-fCpCUgZNE2piVJKC76zFsgVW1apF6dpYsqGyH8SIeCcM4pTEsRTWTLCaJIMKFEundsCKwY1rwfhtrio04RJ4Dw== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1301,7 +1264,7 @@ "@csstools/postcss-gradients-interpolation-method@^5.0.12": version "5.0.12" - resolved "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.12.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.12.tgz#0955cce4d97203b861bf66742bbec611b2f3661c" integrity sha512-jugzjwkUY0wtNrZlFeyXzimUL3hN4xMvoPnIXxoZqxDvjZRiSh+itgHcVUWzJ2VwD/VAMEgCLvtaJHX+4Vj3Ow== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1312,7 +1275,7 @@ "@csstools/postcss-hwb-function@^4.0.12": version "4.0.12" - resolved "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.12.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.12.tgz#07f7ecb08c50e094673bd20eaf7757db0162beee" integrity sha512-mL/+88Z53KrE4JdePYFJAQWFrcADEqsLprExCM04GDNgHIztwFzj0Mbhd/yxMBngq0NIlz58VVxjt5abNs1VhA== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1323,7 +1286,7 @@ "@csstools/postcss-ic-unit@^4.0.4": version "4.0.4" - resolved "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.4.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.4.tgz#2ee2da0690db7edfbc469279711b9e69495659d2" integrity sha512-yQ4VmossuOAql65sCPppVO1yfb7hDscf4GseF0VCA/DTDaBc0Wtf8MTqVPfjGYlT5+2buokG0Gp7y0atYZpwjg== dependencies: "@csstools/postcss-progressive-custom-properties" "^4.2.1" @@ -1332,12 +1295,12 @@ "@csstools/postcss-initial@^2.0.1": version "2.0.1" - resolved "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-initial/-/postcss-initial-2.0.1.tgz#c385bd9d8ad31ad159edd7992069e97ceea4d09a" integrity sha512-L1wLVMSAZ4wovznquK0xmC7QSctzO4D0Is590bxpGqhqjboLXYA16dWZpfwImkdOgACdQ9PqXsuRroW6qPlEsg== "@csstools/postcss-is-pseudo-class@^5.0.3": version "5.0.3" - resolved "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.3.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.3.tgz#d34e850bcad4013c2ed7abe948bfa0448aa8eb74" integrity sha512-jS/TY4SpG4gszAtIg7Qnf3AS2pjcUM5SzxpApOrlndMeGhIbaTzWBzzP/IApXoNWEW7OhcjkRT48jnAUIFXhAQ== dependencies: "@csstools/selector-specificity" "^5.0.0" @@ -1345,7 +1308,7 @@ "@csstools/postcss-light-dark-function@^2.0.11": version "2.0.11" - resolved "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.11.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.11.tgz#0df448aab9a33cb9a085264ff1f396fb80c4437d" integrity sha512-fNJcKXJdPM3Lyrbmgw2OBbaioU7yuKZtiXClf4sGdQttitijYlZMD5K7HrC/eF83VRWRrYq6OZ0Lx92leV2LFA== dependencies: "@csstools/css-parser-algorithms" "^3.0.5" @@ -1355,29 +1318,29 @@ "@csstools/postcss-logical-float-and-clear@^3.0.0": version "3.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-3.0.0.tgz#62617564182cf86ab5d4e7485433ad91e4c58571" integrity sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ== "@csstools/postcss-logical-overflow@^2.0.0": version "2.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-2.0.0.tgz#c6de7c5f04e3d4233731a847f6c62819bcbcfa1d" integrity sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA== "@csstools/postcss-logical-overscroll-behavior@^2.0.0": version "2.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-2.0.0.tgz#43c03eaecdf34055ef53bfab691db6dc97a53d37" integrity sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w== "@csstools/postcss-logical-resize@^3.0.0": version "3.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-logical-resize/-/postcss-logical-resize-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-resize/-/postcss-logical-resize-3.0.0.tgz#4df0eeb1a61d7bd85395e56a5cce350b5dbfdca6" integrity sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg== dependencies: postcss-value-parser "^4.2.0" "@csstools/postcss-logical-viewport-units@^3.0.4": version "3.0.4" - resolved "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.4.tgz#016d98a8b7b5f969e58eb8413447eb801add16fc" integrity sha512-q+eHV1haXA4w9xBwZLKjVKAWn3W2CMqmpNpZUk5kRprvSiBEGMgrNH3/sJZ8UA3JgyHaOt3jwT9uFa4wLX4EqQ== dependencies: "@csstools/css-tokenizer" "^3.0.4" @@ -1385,7 +1348,7 @@ "@csstools/postcss-media-minmax@^2.0.9": version "2.0.9" - resolved "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.9.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.9.tgz#184252d5b93155ae526689328af6bdf3fc113987" integrity sha512-af9Qw3uS3JhYLnCbqtZ9crTvvkR+0Se+bBqSr7ykAnl9yKhk6895z9rf+2F4dClIDJWxgn0iZZ1PSdkhrbs2ig== dependencies: "@csstools/css-calc" "^2.1.4" @@ -1395,7 +1358,7 @@ "@csstools/postcss-media-queries-aspect-ratio-number-values@^3.0.5": version "3.0.5" - resolved "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.5.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.5.tgz#f485c31ec13d6b0fb5c528a3474334a40eff5f11" integrity sha512-zhAe31xaaXOY2Px8IYfoVTB3wglbJUVigGphFLj6exb7cjZRH9A6adyE22XfFK3P2PzwRk0VDeTJmaxpluyrDg== dependencies: "@csstools/css-parser-algorithms" "^3.0.5" @@ -1404,22 +1367,22 @@ "@csstools/postcss-nested-calc@^4.0.0": version "4.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-4.0.0.tgz#754e10edc6958d664c11cde917f44ba144141c62" integrity sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A== dependencies: "@csstools/utilities" "^2.0.0" postcss-value-parser "^4.2.0" -"@csstools/postcss-normalize-display-values@^4.0.0": - version "4.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.0.tgz" - integrity sha512-HlEoG0IDRoHXzXnkV4in47dzsxdsjdz6+j7MLjaACABX2NfvjFS6XVAnpaDyGesz9gK2SC7MbNwdCHusObKJ9Q== +"@csstools/postcss-normalize-display-values@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.1.tgz#3738ecadb38cd6521c9565635d61aa4bf5457d27" + integrity sha512-TQUGBuRvxdc7TgNSTevYqrL8oItxiwPDixk20qCB5me/W8uF7BPbhRrAvFuhEoywQp/woRsUZ6SJ+sU5idZAIA== dependencies: postcss-value-parser "^4.2.0" "@csstools/postcss-oklab-function@^4.0.12": version "4.0.12" - resolved "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.12.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.12.tgz#416640ef10227eea1375b47b72d141495950971d" integrity sha512-HhlSmnE1NKBhXsTnNGjxvhryKtO7tJd1w42DKOGFD6jSHtYOrsJTQDKPMwvOfrzUAk8t7GcpIfRyM7ssqHpFjg== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1430,19 +1393,27 @@ "@csstools/postcss-position-area-property@^1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-position-area-property/-/postcss-position-area-property-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-position-area-property/-/postcss-position-area-property-1.0.0.tgz#41f0cbc737a81a42890d5ec035fa26a45f4f4ad4" integrity sha512-fUP6KR8qV2NuUZV3Cw8itx0Ep90aRjAZxAEzC3vrl6yjFv+pFsQbR18UuQctEKmA72K9O27CoYiKEgXxkqjg8Q== "@csstools/postcss-progressive-custom-properties@^4.2.1": version "4.2.1" - resolved "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.2.1.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.2.1.tgz#c39780b9ff0d554efb842b6bd75276aa6f1705db" integrity sha512-uPiiXf7IEKtUQXsxu6uWtOlRMXd2QWWy5fhxHDnPdXKCQckPP3E34ZgDoZ62r2iT+UOgWsSbM4NvHE5m3mAEdw== dependencies: postcss-value-parser "^4.2.0" +"@csstools/postcss-property-rule-prelude-list@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@csstools/postcss-property-rule-prelude-list/-/postcss-property-rule-prelude-list-1.0.0.tgz#700b7aa41228c02281bda074ae778f36a09da188" + integrity sha512-IxuQjUXq19fobgmSSvUDO7fVwijDJaZMvWQugxfEUxmjBeDCVaDuMpsZ31MsTm5xbnhA+ElDi0+rQ7sQQGisFA== + dependencies: + "@csstools/css-parser-algorithms" "^3.0.5" + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-random-function@^2.0.1": version "2.0.1" - resolved "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-random-function/-/postcss-random-function-2.0.1.tgz#3191f32fe72936e361dadf7dbfb55a0209e2691e" integrity sha512-q+FQaNiRBhnoSNo+GzqGOIBKoHQ43lYz0ICrV+UudfWnEF6ksS6DsBIJSISKQT2Bvu3g4k6r7t0zYrk5pDlo8w== dependencies: "@csstools/css-calc" "^2.1.4" @@ -1451,7 +1422,7 @@ "@csstools/postcss-relative-color-syntax@^3.0.12": version "3.0.12" - resolved "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.12.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.12.tgz#ced792450102441f7c160e1d106f33e4b44181f8" integrity sha512-0RLIeONxu/mtxRtf3o41Lq2ghLimw0w9ByLWnnEVuy89exmEEq8bynveBxNW3nyHqLAFEeNtVEmC1QK9MZ8Huw== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -1462,14 +1433,14 @@ "@csstools/postcss-scope-pseudo-class@^4.0.1": version "4.0.1" - resolved "https://registry.npmjs.org/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-4.0.1.tgz#9fe60e9d6d91d58fb5fc6c768a40f6e47e89a235" integrity sha512-IMi9FwtH6LMNuLea1bjVMQAsUhFxJnyLSgOp/cpv5hrzWmrUYU5fm0EguNDIIOHUqzXode8F/1qkC/tEo/qN8Q== dependencies: postcss-selector-parser "^7.0.0" "@csstools/postcss-sign-functions@^1.1.4": version "1.1.4" - resolved "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.4.tgz#a9ac56954014ae4c513475b3f1b3e3424a1e0c12" integrity sha512-P97h1XqRPcfcJndFdG95Gv/6ZzxUBBISem0IDqPZ7WMvc/wlO+yU0c5D/OCpZ5TJoTt63Ok3knGk64N+o6L2Pg== dependencies: "@csstools/css-calc" "^2.1.4" @@ -1478,16 +1449,23 @@ "@csstools/postcss-stepped-value-functions@^4.0.9": version "4.0.9" - resolved "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.9.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.9.tgz#36036f1a0e5e5ee2308e72f3c9cb433567c387b9" integrity sha512-h9btycWrsex4dNLeQfyU3y3w40LMQooJWFMm/SK9lrKguHDcFl4VMkncKKoXi2z5rM9YGWbUQABI8BT2UydIcA== dependencies: "@csstools/css-calc" "^2.1.4" "@csstools/css-parser-algorithms" "^3.0.5" "@csstools/css-tokenizer" "^3.0.4" +"@csstools/postcss-syntax-descriptor-syntax-production@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-syntax-descriptor-syntax-production/-/postcss-syntax-descriptor-syntax-production-1.0.1.tgz#98590e372e547cdae60aef47cfee11f3881307dd" + integrity sha512-GneqQWefjM//f4hJ/Kbox0C6f2T7+pi4/fqTqOFGTL3EjnvOReTqO1qUQ30CaUjkwjYq9qZ41hzarrAxCc4gow== + dependencies: + "@csstools/css-tokenizer" "^3.0.4" + "@csstools/postcss-system-ui-font-family@^1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-system-ui-font-family/-/postcss-system-ui-font-family-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-system-ui-font-family/-/postcss-system-ui-font-family-1.0.0.tgz#bd65b79078debf6f67b318dc9b71a8f9fa16f8c8" integrity sha512-s3xdBvfWYfoPSBsikDXbuorcMG1nN1M6GdU0qBsGfcmNR0A/qhloQZpTxjA3Xsyrk1VJvwb2pOfiOT3at/DuIQ== dependencies: "@csstools/css-parser-algorithms" "^3.0.5" @@ -1495,7 +1473,7 @@ "@csstools/postcss-text-decoration-shorthand@^4.0.3": version "4.0.3" - resolved "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.3.tgz#fae1b70f07d1b7beb4c841c86d69e41ecc6f743c" integrity sha512-KSkGgZfx0kQjRIYnpsD7X2Om9BUXX/Kii77VBifQW9Ih929hK0KNjVngHDH0bFB9GmfWcR9vJYJJRvw/NQjkrA== dependencies: "@csstools/color-helpers" "^5.1.0" @@ -1503,7 +1481,7 @@ "@csstools/postcss-trigonometric-functions@^4.0.9": version "4.0.9" - resolved "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.9.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.9.tgz#3f94ed2e319b57f2c59720b64e4d0a8a6fb8c3b2" integrity sha512-Hnh5zJUdpNrJqK9v1/E3BbrQhaDTj5YiX7P61TOvUhoDHnUmsNNxcDAgkQ32RrcWx9GVUvfUNPcUkn8R3vIX6A== dependencies: "@csstools/css-calc" "^2.1.4" @@ -1512,57 +1490,52 @@ "@csstools/postcss-unset-value@^4.0.0": version "4.0.0" - resolved "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-4.0.0.tgz#7caa981a34196d06a737754864baf77d64de4bba" integrity sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA== "@csstools/selector-resolve-nested@^3.1.0": version "3.1.0" - resolved "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.1.0.tgz#848c6f44cb65e3733e478319b9342b7aa436fac7" integrity sha512-mf1LEW0tJLKfWyvn5KdDrhpxHyuxpbNwTIwOYLIvsTffeyOf85j5oIzfG0yosxDgx/sswlqBnESYUcQH0vgZ0g== "@csstools/selector-specificity@^5.0.0": version "5.0.0" - resolved "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz#037817b574262134cabd68fc4ec1a454f168407b" integrity sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw== "@csstools/utilities@^2.0.0": version "2.0.0" - resolved "https://registry.npmjs.org/@csstools/utilities/-/utilities-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/utilities/-/utilities-2.0.0.tgz#f7ff0fee38c9ffb5646d47b6906e0bc8868bde60" integrity sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ== "@discoveryjs/json-ext@0.5.7": version "0.5.7" - resolved "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz" + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== -"@docsearch/core@4.3.1": - version "4.3.1" - resolved "https://registry.npmjs.org/@docsearch/core/-/core-4.3.1.tgz" - integrity sha512-ktVbkePE+2h9RwqCUMbWXOoebFyDOxHqImAqfs+lC8yOU+XwEW4jgvHGJK079deTeHtdhUNj0PXHSnhJINvHzQ== +"@docsearch/core@4.6.3": + version "4.6.3" + resolved "https://registry.yarnpkg.com/@docsearch/core/-/core-4.6.3.tgz#9954c75c3ae28418e06f8e7537a920d6cd2bc22e" + integrity sha512-rUOujwIpxJRgD7+kicVsI3D5sqBvdiRTquzWBpTEXZs8ZXfGbfzpus5HqumaNYTppN2HvH8E2yNuRwYdHJeOlA== -"@docsearch/css@4.3.2": - version "4.3.2" - resolved "https://registry.npmjs.org/@docsearch/css/-/css-4.3.2.tgz" - integrity sha512-K3Yhay9MgkBjJJ0WEL5MxnACModX9xuNt3UlQQkDEDZJZ0+aeWKtOkxHNndMRkMBnHdYvQjxkm6mdlneOtU1IQ== +"@docsearch/css@4.6.3": + version "4.6.3" + resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-4.6.3.tgz#a94065af4a996dd927dc5dda383395e583dbd638" + integrity sha512-nlOwcXcsNAptQl4vlL4MA78qNJKO0Qlds5GuBjCoePgkebTXLSf8Qt1oyZ3YBshYupKXG9VRGEsk1zr23d+bzQ== -"@docsearch/react@^3.9.0 || ^4.1.0": - version "4.3.2" - resolved "https://registry.npmjs.org/@docsearch/react/-/react-4.3.2.tgz" - integrity sha512-74SFD6WluwvgsOPqifYOviEEVwDxslxfhakTlra+JviaNcs7KK/rjsPj89kVEoQc9FUxRkAofaJnHIR7pb4TSQ== +"@docsearch/react@^3.9.0 || ^4.3.2": + version "4.6.3" + resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-4.6.3.tgz#80df785f9c5e484c960b914a22ea2a3e4c7210ad" + integrity sha512-Bg2wdDsoQVlNCcEKuEJAU04tvHCqgx8rIu+uIoM4pRtcx3TBKJuXutJik3LTA8LRc9YEyHkrYUrmcC0D7BYf+g== dependencies: - "@ai-sdk/react" "^2.0.30" "@algolia/autocomplete-core" "1.19.2" - "@docsearch/core" "4.3.1" - "@docsearch/css" "4.3.2" - ai "^5.0.30" - algoliasearch "^5.28.0" - marked "^16.3.0" - zod "^4.1.8" + "@docsearch/core" "4.6.3" + "@docsearch/css" "4.6.3" -"@docusaurus/babel@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/babel/-/babel-3.9.2.tgz" - integrity sha512-GEANdi/SgER+L7Japs25YiGil/AUDnFFHaCGPBbundxoWtCkA2lmy7/tFmgED4y1htAy6Oi4wkJEQdGssnw9MA== +"@docusaurus/babel@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/babel/-/babel-3.10.2.tgz#4d5f8ac4d16bfe26c06f256687831787edb46e8a" + integrity sha512-aJ1hpGyvfkte3dDAfNbWM4biW4yWZBVz7TIGLZP+v+tWOBgxX3e0N5ZIXHIvmfNNXTI77pcHUx3KmtOk05Ze3Q== dependencies: "@babel/core" "^7.25.9" "@babel/generator" "^7.25.9" @@ -1572,25 +1545,24 @@ "@babel/preset-react" "^7.25.9" "@babel/preset-typescript" "^7.25.9" "@babel/runtime" "^7.25.9" - "@babel/runtime-corejs3" "^7.25.9" "@babel/traverse" "^7.25.9" - "@docusaurus/logger" "3.9.2" - "@docusaurus/utils" "3.9.2" + "@docusaurus/logger" "3.10.2" + "@docusaurus/utils" "3.10.2" babel-plugin-dynamic-import-node "^2.3.3" fs-extra "^11.1.1" tslib "^2.6.0" -"@docusaurus/bundler@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/bundler/-/bundler-3.9.2.tgz" - integrity sha512-ZOVi6GYgTcsZcUzjblpzk3wH1Fya2VNpd5jtHoCCFcJlMQ1EYXZetfAnRHLcyiFeBABaI1ltTYbOBtH/gahGVA== +"@docusaurus/bundler@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/bundler/-/bundler-3.10.2.tgz#323492eb0550b6a7f6e5fa6b9877cdb2c53b1be3" + integrity sha512-i0ZNcy0f0WhaOlYVgzLsWhIoEXO9kS3HRoKPtgE6vQtZUq7arKZaYdNBudr3mqCmd+TyOkwtwfHgs1ENj07r5g== dependencies: "@babel/core" "^7.25.9" - "@docusaurus/babel" "3.9.2" - "@docusaurus/cssnano-preset" "3.9.2" - "@docusaurus/logger" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils" "3.9.2" + "@docusaurus/babel" "3.10.2" + "@docusaurus/cssnano-preset" "3.10.2" + "@docusaurus/logger" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils" "3.10.2" babel-loader "^9.2.1" clean-css "^5.3.3" copy-webpack-plugin "^11.0.0" @@ -1608,20 +1580,20 @@ tslib "^2.6.0" url-loader "^4.1.1" webpack "^5.95.0" - webpackbar "^6.0.1" - -"@docusaurus/core@3.9.2", "@docusaurus/core@^3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/core/-/core-3.9.2.tgz" - integrity sha512-HbjwKeC+pHUFBfLMNzuSjqFE/58+rLVKmOU3lxQrpsxLBOGosYco/Q0GduBb0/jEMRiyEqjNT/01rRdOMWq5pw== - dependencies: - "@docusaurus/babel" "3.9.2" - "@docusaurus/bundler" "3.9.2" - "@docusaurus/logger" "3.9.2" - "@docusaurus/mdx-loader" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-common" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" + webpackbar "^7.0.0" + +"@docusaurus/core@3.10.2", "@docusaurus/core@^3.9.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-3.10.2.tgz#349cae728fc3769b3f8aef4cf538ccb79aace8d0" + integrity sha512-EYByj6nk+aD9KeVxV6Hmo2/nAAT79P21Y82ycTBOBtrmqilloIbIEhgL2/8Xpt2Jz/pgNqHAwyusOGwmbKeJmA== + dependencies: + "@docusaurus/babel" "3.10.2" + "@docusaurus/bundler" "3.10.2" + "@docusaurus/logger" "3.10.2" + "@docusaurus/mdx-loader" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-common" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" boxen "^6.2.1" chalk "^4.1.2" chokidar "^3.5.3" @@ -1629,11 +1601,11 @@ combine-promises "^1.1.0" commander "^5.1.0" core-js "^3.31.1" - detect-port "^1.5.1" + detect-port "^2.1.0" escape-html "^1.0.3" eta "^2.2.0" eval "^0.1.8" - execa "5.1.1" + execa "^5.1.1" fs-extra "^11.1.1" html-tags "^3.3.1" html-webpack-plugin "^5.6.0" @@ -1644,12 +1616,12 @@ prompts "^2.4.2" react-helmet-async "npm:@slorber/react-helmet-async@1.3.0" react-loadable "npm:@docusaurus/react-loadable@6.0.0" - react-loadable-ssr-addon-v5-slorber "^1.0.1" + react-loadable-ssr-addon-v5-slorber "^1.0.3" react-router "^5.3.4" react-router-config "^5.1.1" react-router-dom "^5.3.4" semver "^7.5.4" - serve-handler "^6.1.6" + serve-handler "^6.1.7" tinypool "^1.0.2" tslib "^2.6.0" update-notifier "^6.0.2" @@ -1658,32 +1630,32 @@ webpack-dev-server "^5.2.2" webpack-merge "^6.0.1" -"@docusaurus/cssnano-preset@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.9.2.tgz" - integrity sha512-8gBKup94aGttRduABsj7bpPFTX7kbwu+xh3K9NMCF5K4bWBqTFYW+REKHF6iBVDHRJ4grZdIPbvkiHd/XNKRMQ== +"@docusaurus/cssnano-preset@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/cssnano-preset/-/cssnano-preset-3.10.2.tgz#e3ac7e85585f77e8fdef95176ab7c211d1296630" + integrity sha512-4gCnHRbJLTloiwfvFAa92tgb2gI4KYhvjfQVYnEaiMO/EgvWfCo1LwytHXen+1oZAN0VAlS0JAPxp3MsvKDa3A== dependencies: cssnano-preset-advanced "^6.1.2" postcss "^8.5.4" postcss-sort-media-queries "^5.2.0" tslib "^2.6.0" -"@docusaurus/logger@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.9.2.tgz" - integrity sha512-/SVCc57ByARzGSU60c50rMyQlBuMIJCjcsJlkphxY6B0GV4UH3tcA1994N8fFfbJ9kX3jIBe/xg3XP5qBtGDbA== +"@docusaurus/logger@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/logger/-/logger-3.10.2.tgz#280bed53d0eb9cdc56e896a155036207910e89c9" + integrity sha512-gSEwqtPfCAnC3ZSJY6xL7tcIfgg0vFD39jbv93eakuweyvO2864xR0K+kmKwBhkTCtWRNjuGGnb5rdmkD/ndqw== dependencies: chalk "^4.1.2" tslib "^2.6.0" -"@docusaurus/mdx-loader@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.9.2.tgz" - integrity sha512-wiYoGwF9gdd6rev62xDU8AAM8JuLI/hlwOtCzMmYcspEkzecKrP8J8X+KpYnTlACBUUtXNJpSoCwFWJhLRevzQ== +"@docusaurus/mdx-loader@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/mdx-loader/-/mdx-loader-3.10.2.tgz#3b4e7ffacff4ed856db2ec4e94c13b0a652d62eb" + integrity sha512-9Fd4V/SFjfrVQ0JH5EN0+iPWyFunvTeQE3gfyFeetqPaXMP0OylIjOw16dCuXG4NZJrYdBqwzjh18/h3gRi47w== dependencies: - "@docusaurus/logger" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" + "@docusaurus/logger" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" "@mdx-js/mdx" "^3.0.0" "@slorber/remark-comment" "^1.0.0" escape-html "^1.0.3" @@ -1706,12 +1678,12 @@ vfile "^6.0.1" webpack "^5.88.1" -"@docusaurus/module-type-aliases@3.9.2", "@docusaurus/module-type-aliases@^3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.9.2.tgz" - integrity sha512-8qVe2QA9hVLzvnxP46ysuofJUIc/yYQ82tvA/rBTrnpXtCjNSFLxEZfd5U8cYZuJIVlkPxamsIgwd5tGZXfvew== +"@docusaurus/module-type-aliases@3.10.2", "@docusaurus/module-type-aliases@^3.9.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/module-type-aliases/-/module-type-aliases-3.10.2.tgz#7c3b940c77d72e71d33a1e76f0e003b418e6163a" + integrity sha512-h/I5e4jaAhDHW4vaLENi1i2hnOEnXY1t9R+nnRTbgUl7ymVRzN/HF7dDfj8rKYGj8gfIge+Ef+iYRAMtbGvsrQ== dependencies: - "@docusaurus/types" "3.9.2" + "@docusaurus/types" "3.10.2" "@types/history" "^4.7.11" "@types/react" "*" "@types/react-router-config" "*" @@ -1719,20 +1691,21 @@ react-helmet-async "npm:@slorber/react-helmet-async@1.3.0" react-loadable "npm:@docusaurus/react-loadable@6.0.0" -"@docusaurus/plugin-content-blog@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.9.2.tgz" - integrity sha512-3I2HXy3L1QcjLJLGAoTvoBnpOwa6DPUa3Q0dMK19UTY9mhPkKQg/DYhAGTiBUKcTR0f08iw7kLPqOhIgdV3eVQ== - dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/logger" "3.9.2" - "@docusaurus/mdx-loader" "3.9.2" - "@docusaurus/theme-common" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-common" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" +"@docusaurus/plugin-content-blog@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.10.2.tgz#2374886ec3d76e8f014e85db8c3c010de6c419be" + integrity sha512-0cbEnNKf0InmLkhj/+nVRmqEnWEoOE8Mh+2x1qOXI0qYpCnphq4RXknVJ8BvybKRXqYVvbmdMfiJSup+k4tm5w== + dependencies: + "@docusaurus/core" "3.10.2" + "@docusaurus/logger" "3.10.2" + "@docusaurus/mdx-loader" "3.10.2" + "@docusaurus/theme-common" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-common" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" cheerio "1.0.0-rc.12" + combine-promises "^1.1.0" feed "^4.2.2" fs-extra "^11.1.1" lodash "^4.17.21" @@ -1743,20 +1716,20 @@ utility-types "^3.10.0" webpack "^5.88.1" -"@docusaurus/plugin-content-docs@3.9.2", "@docusaurus/plugin-content-docs@^2 || ^3": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.9.2.tgz" - integrity sha512-C5wZsGuKTY8jEYsqdxhhFOe1ZDjH0uIYJ9T/jebHwkyxqnr4wW0jTkB72OMqNjsoQRcb0JN3PcSeTwFlVgzCZg== - dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/logger" "3.9.2" - "@docusaurus/mdx-loader" "3.9.2" - "@docusaurus/module-type-aliases" "3.9.2" - "@docusaurus/theme-common" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-common" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" +"@docusaurus/plugin-content-docs@3.10.2", "@docusaurus/plugin-content-docs@^2 || ^3": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.10.2.tgz#249bbc806437f227b06410ecc771eb67d8910a9a" + integrity sha512-Sqwl4FPoZBDrlY8I2VU2H8O0M91CHp9T8ToMSkTZmjvHCif+1laqfXi6sTk8IfyVS/trN5yNjcWd1bFsGB6W5Q== + dependencies: + "@docusaurus/core" "3.10.2" + "@docusaurus/logger" "3.10.2" + "@docusaurus/mdx-loader" "3.10.2" + "@docusaurus/module-type-aliases" "3.10.2" + "@docusaurus/theme-common" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-common" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" "@types/react-router-config" "^5.0.7" combine-promises "^1.1.0" fs-extra "^11.1.1" @@ -1767,144 +1740,144 @@ utility-types "^3.10.0" webpack "^5.88.1" -"@docusaurus/plugin-content-pages@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.9.2.tgz" - integrity sha512-s4849w/p4noXUrGpPUF0BPqIAfdAe76BLaRGAGKZ1gTDNiGxGcpsLcwJ9OTi1/V8A+AzvsmI9pkjie2zjIQZKA== +"@docusaurus/plugin-content-pages@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.10.2.tgz#377c11b36a6a5e0c0c14dd9dea799f986d662ed7" + integrity sha512-h5R12sZ/vV9EPiVjvIl9YFCOwkpwXes7dQMYt3EvP6Pphu4amHxxTqWxf08Fl5DR8h+oZMbWpFTNw5vKEYfvzQ== dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/mdx-loader" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" + "@docusaurus/core" "3.10.2" + "@docusaurus/mdx-loader" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" fs-extra "^11.1.1" tslib "^2.6.0" webpack "^5.88.1" -"@docusaurus/plugin-css-cascade-layers@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/plugin-css-cascade-layers/-/plugin-css-cascade-layers-3.9.2.tgz" - integrity sha512-w1s3+Ss+eOQbscGM4cfIFBlVg/QKxyYgj26k5AnakuHkKxH6004ZtuLe5awMBotIYF2bbGDoDhpgQ4r/kcj4rQ== +"@docusaurus/plugin-css-cascade-layers@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-css-cascade-layers/-/plugin-css-cascade-layers-3.10.2.tgz#54edc6450b0bb95be5990ea416b4c4dc5e6bdde0" + integrity sha512-UkdvQby5OQUKWrw3lLnSTJXQ6VETaUVTuPQX9AABtmFm5h+ifEBx1OQ+LN726Q4byuwBf2ElHkf4qU4hTxdvRg== dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" + "@docusaurus/core" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" tslib "^2.6.0" -"@docusaurus/plugin-debug@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-3.9.2.tgz" - integrity sha512-j7a5hWuAFxyQAkilZwhsQ/b3T7FfHZ+0dub6j/GxKNFJp2h9qk/P1Bp7vrGASnvA9KNQBBL1ZXTe7jlh4VdPdA== +"@docusaurus/plugin-debug@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-debug/-/plugin-debug-3.10.2.tgz#2452f258668bb2514085d2d5fff700457c531aad" + integrity sha512-8vbZNOSCpnsT57EY6CgN7sgRVmx3KTYwO8Uvo2pbxOyb8tbqAwtT9SslqaQ41HbA1v1hpn5RP7u5s2KvRwAFpQ== dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils" "3.9.2" + "@docusaurus/core" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils" "3.10.2" fs-extra "^11.1.1" react-json-view-lite "^2.3.0" tslib "^2.6.0" -"@docusaurus/plugin-google-analytics@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.9.2.tgz" - integrity sha512-mAwwQJ1Us9jL/lVjXtErXto4p4/iaLlweC54yDUK1a97WfkC6Z2k5/769JsFgwOwOP+n5mUQGACXOEQ0XDuVUw== +"@docusaurus/plugin-google-analytics@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.10.2.tgz#7a0375c5a238cd9220166d9be8afc00ba508c55d" + integrity sha512-kMHMBK9j4VAtgd5owwrRLRIi0EjkrpXlX7ePj1+y68XfVZV9I1T4S+koPDm+Hfw2TtnyHvh0uNrDvjz+DjQGVA== dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" + "@docusaurus/core" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" tslib "^2.6.0" -"@docusaurus/plugin-google-gtag@3.9.2", "@docusaurus/plugin-google-gtag@^3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.9.2.tgz" - integrity sha512-YJ4lDCphabBtw19ooSlc1MnxtYGpjFV9rEdzjLsUnBCeis2djUyCozZaFhCg6NGEwOn7HDDyMh0yzcdRpnuIvA== +"@docusaurus/plugin-google-gtag@3.10.2", "@docusaurus/plugin-google-gtag@^3.9.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.10.2.tgz#65df25eb5fb3f2a3f2d0fba8ddd423060e09e1ca" + integrity sha512-Vt90nNFhtAChRe9+it1hcHFgFvETdSnOkL5Bma+p6E/yU2tAYrvvyk+gv+LJGM2ZUkyKuKXLRsZ2Lb0bO7+Vog== dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" - "@types/gtag.js" "^0.0.12" + "@docusaurus/core" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" tslib "^2.6.0" -"@docusaurus/plugin-google-tag-manager@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.9.2.tgz" - integrity sha512-LJtIrkZN/tuHD8NqDAW1Tnw0ekOwRTfobWPsdO15YxcicBo2ykKF0/D6n0vVBfd3srwr9Z6rzrIWYrMzBGrvNw== +"@docusaurus/plugin-google-tag-manager@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.10.2.tgz#882a24e51dc42487d2c1d4f2cde3f59c99a276cb" + integrity sha512-MLCffCldysi/R0nzJQP7ZWd0xAoGNnSTiVOo6TTR6mKVGFhE+/XArGe67ZcaZv1uytgQXoXs92VJrgVDrz80rQ== dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" + "@docusaurus/core" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" tslib "^2.6.0" -"@docusaurus/plugin-sitemap@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.9.2.tgz" - integrity sha512-WLh7ymgDXjG8oPoM/T4/zUP7KcSuFYRZAUTl8vR6VzYkfc18GBM4xLhcT+AKOwun6kBivYKUJf+vlqYJkm+RHw== - dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/logger" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-common" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" +"@docusaurus/plugin-sitemap@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.10.2.tgz#6c662c7df3bb7d36887f8b73f54d85dc4d36371d" + integrity sha512-PODkwg5XetLML3hU/3xpCKJUZ9cqExLaBnD/Fzzwj2VHogLeqnDisLIujae87zuze7T4mCm2A6KEqZkyiz07EQ== + dependencies: + "@docusaurus/core" "3.10.2" + "@docusaurus/logger" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-common" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" fs-extra "^11.1.1" sitemap "^7.1.1" tslib "^2.6.0" -"@docusaurus/plugin-svgr@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/plugin-svgr/-/plugin-svgr-3.9.2.tgz" - integrity sha512-n+1DE+5b3Lnf27TgVU5jM1d4x5tUh2oW5LTsBxJX4PsAPV0JGcmI6p3yLYtEY0LRVEIJh+8RsdQmRE66wSV8mw== +"@docusaurus/plugin-svgr@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-svgr/-/plugin-svgr-3.10.2.tgz#916fd0a5d39bf73cb621de9789cce243a7ef1754" + integrity sha512-JgfT3jWM0TJ8Uw0cEcqxHpybngQY1vlBYpuuNO+gEh5iPh5Ar+vxq/u9CFrYsWeXy48BN7Db76Pzp2edNXUQ8A== dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" + "@docusaurus/core" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" "@svgr/core" "8.1.0" "@svgr/webpack" "^8.1.0" tslib "^2.6.0" webpack "^5.88.1" "@docusaurus/preset-classic@^3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-3.9.2.tgz" - integrity sha512-IgyYO2Gvaigi21LuDIe+nvmN/dfGXAiMcV/murFqcpjnZc7jxFAxW+9LEjdPt61uZLxG4ByW/oUmX/DDK9t/8w== - dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/plugin-content-blog" "3.9.2" - "@docusaurus/plugin-content-docs" "3.9.2" - "@docusaurus/plugin-content-pages" "3.9.2" - "@docusaurus/plugin-css-cascade-layers" "3.9.2" - "@docusaurus/plugin-debug" "3.9.2" - "@docusaurus/plugin-google-analytics" "3.9.2" - "@docusaurus/plugin-google-gtag" "3.9.2" - "@docusaurus/plugin-google-tag-manager" "3.9.2" - "@docusaurus/plugin-sitemap" "3.9.2" - "@docusaurus/plugin-svgr" "3.9.2" - "@docusaurus/theme-classic" "3.9.2" - "@docusaurus/theme-common" "3.9.2" - "@docusaurus/theme-search-algolia" "3.9.2" - "@docusaurus/types" "3.9.2" - -"@docusaurus/theme-classic@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.9.2.tgz" - integrity sha512-IGUsArG5hhekXd7RDb11v94ycpJpFdJPkLnt10fFQWOVxAtq5/D7hT6lzc2fhyQKaaCE62qVajOMKL7OiAFAIA== - dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/logger" "3.9.2" - "@docusaurus/mdx-loader" "3.9.2" - "@docusaurus/module-type-aliases" "3.9.2" - "@docusaurus/plugin-content-blog" "3.9.2" - "@docusaurus/plugin-content-docs" "3.9.2" - "@docusaurus/plugin-content-pages" "3.9.2" - "@docusaurus/theme-common" "3.9.2" - "@docusaurus/theme-translations" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-common" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/preset-classic/-/preset-classic-3.10.2.tgz#e4419c811723ab913a946c63efcc15e7f5f60a0a" + integrity sha512-a4B3VczmDl99zK0EufDQYomdJ186WDingjmDXxhN2PNPS9Ty/Y2M5CLFX1KQMRKqRTLiRDKfutzG5IY1FC/ceg== + dependencies: + "@docusaurus/core" "3.10.2" + "@docusaurus/plugin-content-blog" "3.10.2" + "@docusaurus/plugin-content-docs" "3.10.2" + "@docusaurus/plugin-content-pages" "3.10.2" + "@docusaurus/plugin-css-cascade-layers" "3.10.2" + "@docusaurus/plugin-debug" "3.10.2" + "@docusaurus/plugin-google-analytics" "3.10.2" + "@docusaurus/plugin-google-gtag" "3.10.2" + "@docusaurus/plugin-google-tag-manager" "3.10.2" + "@docusaurus/plugin-sitemap" "3.10.2" + "@docusaurus/plugin-svgr" "3.10.2" + "@docusaurus/theme-classic" "3.10.2" + "@docusaurus/theme-common" "3.10.2" + "@docusaurus/theme-search-algolia" "3.10.2" + "@docusaurus/types" "3.10.2" + +"@docusaurus/theme-classic@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-classic/-/theme-classic-3.10.2.tgz#a64bd600c789b33c67c30c256b07e2ca0f57e2ae" + integrity sha512-JqTSLQmqmA9uKWZsD5iwBGJ4JyKB4/yTw6PsSXVPRJG/6GAm/u+add9Iip+hvwP12/AnPNztrdxsI14NJW4KeA== + dependencies: + "@docusaurus/core" "3.10.2" + "@docusaurus/logger" "3.10.2" + "@docusaurus/mdx-loader" "3.10.2" + "@docusaurus/module-type-aliases" "3.10.2" + "@docusaurus/plugin-content-blog" "3.10.2" + "@docusaurus/plugin-content-docs" "3.10.2" + "@docusaurus/plugin-content-pages" "3.10.2" + "@docusaurus/theme-common" "3.10.2" + "@docusaurus/theme-translations" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-common" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" "@mdx-js/react" "^3.0.0" clsx "^2.0.0" + copy-text-to-clipboard "^3.2.0" infima "0.2.0-alpha.45" lodash "^4.17.21" nprogress "^0.2.0" @@ -1916,15 +1889,15 @@ tslib "^2.6.0" utility-types "^3.10.0" -"@docusaurus/theme-common@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.9.2.tgz" - integrity sha512-6c4DAbR6n6nPbnZhY2V3tzpnKnGL+6aOsLvFL26VRqhlczli9eWG0VDUNoCQEPnGwDMhPS42UhSAnz5pThm5Ag== +"@docusaurus/theme-common@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-common/-/theme-common-3.10.2.tgz#5cf2a8b76554b8b38c6afe8448470c411f683e5b" + integrity sha512-R9b/vMpK1yye6hNZTA6x/ivRv+at6GhxnXcxkpzCGzO1R1RwiquqiFg2wMFh6aqlJTpWRFKpFD2TzCDQcyOU0A== dependencies: - "@docusaurus/mdx-loader" "3.9.2" - "@docusaurus/module-type-aliases" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-common" "3.9.2" + "@docusaurus/mdx-loader" "3.10.2" + "@docusaurus/module-type-aliases" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-common" "3.10.2" "@types/history" "^4.7.11" "@types/react" "*" "@types/react-router-config" "*" @@ -1935,31 +1908,32 @@ utility-types "^3.10.0" "@docusaurus/theme-mermaid@^3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/theme-mermaid/-/theme-mermaid-3.9.2.tgz" - integrity sha512-5vhShRDq/ntLzdInsQkTdoKWSzw8d1jB17sNPYhA/KvYYFXfuVEGHLM6nrf8MFbV8TruAHDG21Fn3W4lO8GaDw== - dependencies: - "@docusaurus/core" "3.9.2" - "@docusaurus/module-type-aliases" "3.9.2" - "@docusaurus/theme-common" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-mermaid/-/theme-mermaid-3.10.2.tgz#826e47a01fefbe49fdbb0f4f575c9399d3ccd92c" + integrity sha512-Stssh5MYQJ+EdYugUXf+ZcpeJFQPKXf0KCd/SWp10o3CmXNaOoh5IEgVjVqY1e1XhQf3on4+Y4BnrMiD95E2SQ== + dependencies: + "@docusaurus/core" "3.10.2" + "@docusaurus/module-type-aliases" "3.10.2" + "@docusaurus/theme-common" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" mermaid ">=11.6.0" tslib "^2.6.0" -"@docusaurus/theme-search-algolia@3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.9.2.tgz" - integrity sha512-GBDSFNwjnh5/LdkxCKQHkgO2pIMX1447BxYUBG2wBiajS21uj64a+gH/qlbQjDLxmGrbrllBrtJkUHxIsiwRnw== - dependencies: - "@docsearch/react" "^3.9.0 || ^4.1.0" - "@docusaurus/core" "3.9.2" - "@docusaurus/logger" "3.9.2" - "@docusaurus/plugin-content-docs" "3.9.2" - "@docusaurus/theme-common" "3.9.2" - "@docusaurus/theme-translations" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-validation" "3.9.2" +"@docusaurus/theme-search-algolia@3.10.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.10.2.tgz#e7756d4088a7df4d11fd734bfe0e8fa28ceac1dd" + integrity sha512-1msxllyhi/5m77JukXtp5UFnUAriwZIC1oJ7MTnpQpCwLTbclJi5BK5n28CTZuSXpQN2ewbbnqRgAhMM6c6ihg== + dependencies: + "@algolia/autocomplete-core" "^1.19.2" + "@docsearch/react" "^3.9.0 || ^4.3.2" + "@docusaurus/core" "3.10.2" + "@docusaurus/logger" "3.10.2" + "@docusaurus/plugin-content-docs" "3.10.2" + "@docusaurus/theme-common" "3.10.2" + "@docusaurus/theme-translations" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-validation" "3.10.2" algoliasearch "^5.37.0" algoliasearch-helper "^3.26.0" clsx "^2.0.0" @@ -1969,23 +1943,23 @@ tslib "^2.6.0" utility-types "^3.10.0" -"@docusaurus/theme-translations@3.9.2", "@docusaurus/theme-translations@^2 || ^3": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.9.2.tgz" - integrity sha512-vIryvpP18ON9T9rjgMRFLr2xJVDpw1rtagEGf8Ccce4CkTrvM/fRB8N2nyWYOW5u3DdjkwKw5fBa+3tbn9P4PA== +"@docusaurus/theme-translations@3.10.2", "@docusaurus/theme-translations@^2 || ^3": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-3.10.2.tgz#cd649083babd12df324e7129008aaccacd4cfb13" + integrity sha512-iv20wrxnyXkY89LM3TzRlzGlt5fIGO5UnaR6UL1ZVfB9RRFjxQFQ6awDrwAc6Km8Y5gD8pInuwYPF+6/TiCxXA== dependencies: fs-extra "^11.1.1" tslib "^2.6.0" "@docusaurus/tsconfig@^3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/tsconfig/-/tsconfig-3.9.2.tgz" - integrity sha512-j6/Fp4Rlpxsc632cnRnl5HpOWeb6ZKssDj6/XzzAzVGXXfm9Eptx3rxCC+fDzySn9fHTS+CWJjPineCR1bB5WQ== + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/tsconfig/-/tsconfig-3.10.2.tgz#0ad085ebf2900391632e2d56635d94c4283efffb" + integrity sha512-5GiB7h/nFsMFPO9mCqcRNE1yA5TSXXNCshNIgHPL6fCPOjcTDixs6qjQBu8ddkgPcicwCvOA7n3jeK2rGdJk6g== -"@docusaurus/types@3.9.2", "@docusaurus/types@^3.9.2": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/types/-/types-3.9.2.tgz" - integrity sha512-Ux1JUNswg+EfUEmajJjyhIohKceitY/yzjRUpu04WXgvVz+fbhVC0p+R0JhvEu4ytw8zIAys2hrdpQPBHRIa8Q== +"@docusaurus/types@3.10.2", "@docusaurus/types@^3.9.2": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/types/-/types-3.10.2.tgz#9ffe35adfb4587e49158ee9e10d94b86419a5932" + integrity sha512-B6rvfwIFSapUqUJjMriZswX13K8l5Z7AcmVE6uTEJpYddQieSTR12DsGaFtcZAIDsQd4p+0WTl0Vc6jmZK0Trw== dependencies: "@mdx-js/mdx" "^3.0.0" "@types/history" "^4.7.11" @@ -1998,43 +1972,43 @@ webpack "^5.95.0" webpack-merge "^5.9.0" -"@docusaurus/utils-common@3.9.2", "@docusaurus/utils-common@^2 || ^3": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.9.2.tgz" - integrity sha512-I53UC1QctruA6SWLvbjbhCpAw7+X7PePoe5pYcwTOEXD/PxeP8LnECAhTHHwWCblyUX5bMi4QLRkxvyZ+IT8Aw== +"@docusaurus/utils-common@3.10.2", "@docusaurus/utils-common@^2 || ^3": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/utils-common/-/utils-common-3.10.2.tgz#a65fcfffafa4e15a59fe61d7ba315ee5d4c49269" + integrity sha512-x3Dz6jv6iQKBNjBmVTu8p57abMp/VNTUgKBMgRVXJc5444orBTsArv0+cdfrXTiz/VMmHfDRVkPbL7GH2B7T7w== dependencies: - "@docusaurus/types" "3.9.2" + "@docusaurus/types" "3.10.2" tslib "^2.6.0" -"@docusaurus/utils-validation@3.9.2", "@docusaurus/utils-validation@^2 || ^3": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.9.2.tgz" - integrity sha512-l7yk3X5VnNmATbwijJkexdhulNsQaNDwoagiwujXoxFbWLcxHQqNQ+c/IAlzrfMMOfa/8xSBZ7KEKDesE/2J7A== +"@docusaurus/utils-validation@3.10.2", "@docusaurus/utils-validation@^2 || ^3": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/utils-validation/-/utils-validation-3.10.2.tgz#2624b0ca6675675da2f063828115b43c9a22de47" + integrity sha512-sn8unbDfUL585NtR3cwHefPicOyaHvPaX7VD0aOg/siIxUBoKyKKaGEqzJZDS64mM43TnxurkYDtmB1wsJlZsw== dependencies: - "@docusaurus/logger" "3.9.2" - "@docusaurus/utils" "3.9.2" - "@docusaurus/utils-common" "3.9.2" + "@docusaurus/logger" "3.10.2" + "@docusaurus/utils" "3.10.2" + "@docusaurus/utils-common" "3.10.2" fs-extra "^11.2.0" joi "^17.9.2" js-yaml "^4.1.0" lodash "^4.17.21" tslib "^2.6.0" -"@docusaurus/utils@3.9.2", "@docusaurus/utils@^2 || ^3": - version "3.9.2" - resolved "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.9.2.tgz" - integrity sha512-lBSBiRruFurFKXr5Hbsl2thmGweAPmddhF3jb99U4EMDA5L+e5Y1rAkOS07Nvrup7HUMBDrCV45meaxZnt28nQ== +"@docusaurus/utils@3.10.2", "@docusaurus/utils@^2 || ^3": + version "3.10.2" + resolved "https://registry.yarnpkg.com/@docusaurus/utils/-/utils-3.10.2.tgz#d99c1ffc5c7961e912344269a8728ce2aad8b3dc" + integrity sha512-xx0W3eav2uW1NRIpuHJWNwLTC15xPNjU4Uxi9NSnd3swYC96BE3vFiT93SD8s24kmAAWNwgZwfZ2fghGZ01Lcw== dependencies: - "@docusaurus/logger" "3.9.2" - "@docusaurus/types" "3.9.2" - "@docusaurus/utils-common" "3.9.2" + "@11ty/gray-matter" "^1.0.0" + "@docusaurus/logger" "3.10.2" + "@docusaurus/types" "3.10.2" + "@docusaurus/utils-common" "3.10.2" escape-string-regexp "^4.0.0" - execa "5.1.1" + execa "^5.1.1" file-loader "^6.2.0" fs-extra "^11.1.1" github-slugger "^1.5.0" globby "^11.1.0" - gray-matter "^4.0.3" jiti "^1.20.0" js-yaml "^4.1.0" lodash "^4.17.21" @@ -2049,16 +2023,16 @@ "@easyops-cn/autocomplete.js@^0.38.1": version "0.38.1" - resolved "https://registry.npmjs.org/@easyops-cn/autocomplete.js/-/autocomplete.js-0.38.1.tgz" + resolved "https://registry.yarnpkg.com/@easyops-cn/autocomplete.js/-/autocomplete.js-0.38.1.tgz#46dff5795a9a032fa9b9250fdf63ca6c61c07629" integrity sha512-drg76jS6syilOUmVNkyo1c7ZEBPcPuK+aJA7AksM5ZIIbV57DMHCywiCr+uHyv8BE5jUTU98j/H7gVrkHrWW3Q== dependencies: cssesc "^3.0.0" immediate "^3.2.3" "@easyops-cn/docusaurus-search-local@^0.55.0": - version "0.55.0" - resolved "https://registry.npmjs.org/@easyops-cn/docusaurus-search-local/-/docusaurus-search-local-0.55.0.tgz" - integrity sha512-pmyG+e9KZmo4wrufsneeoE2KG2zH9tbRGi0crJFY0kPxOTGSLeuU5w058Qzgpz8vZNui6i59lKjrlQtnXNBgog== + version "0.55.2" + resolved "https://registry.yarnpkg.com/@easyops-cn/docusaurus-search-local/-/docusaurus-search-local-0.55.2.tgz#563ab1f8fd7bc18541d889f4d5001a3ef85c5a1e" + integrity sha512-dI/riu+MbDxkAjAHAdc0uahjXRaWKvbIPe9IAmA6AGcUfnVb9xd8s2I/6wEPTOXsAd6eFqn4Yis3WBWh3KUd3g== dependencies: "@docusaurus/plugin-content-docs" "^2 || ^3" "@docusaurus/theme-translations" "^2 || ^3" @@ -2078,44 +2052,22 @@ mark.js "^8.11.1" tslib "^2.4.0" -"@emnapi/core@^1.4.3": - version "1.8.1" - resolved "https://registry.npmjs.org/@emnapi/core/-/core-1.8.1.tgz" - integrity sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg== - dependencies: - "@emnapi/wasi-threads" "1.1.0" - tslib "^2.4.0" - -"@emnapi/core@^1.6.0": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.11.1.tgz#b9e1064f3a6b1631e241e638eb48d736bfd372a6" - integrity sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ== +"@emnapi/core@^1.11.1", "@emnapi/core@^1.4.3": + version "1.11.2" + resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.11.2.tgz#fab0a0f3c492d11f5a9ac9065d0d73955ee1c1c9" + integrity sha512-TC8MkTuZUtcTSiFeuC0ksCh9QIJ5+F21MvZ4Wn4ORfYaFJ/0dsiudv5tVkejgwZlwQ39jL9WWDe2lz8x0WglOA== dependencies: "@emnapi/wasi-threads" "1.2.2" tslib "^2.4.0" -"@emnapi/runtime@^1.4.3": - version "1.8.1" - resolved "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz" - integrity sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg== +"@emnapi/runtime@^1.11.1", "@emnapi/runtime@^1.4.3", "@emnapi/runtime@^1.7.0": + version "1.11.2" + resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.11.2.tgz#eb22f04d76febfdf4f87fdaff54c8a53f6bf0dbd" + integrity sha512-kyOl3X0DuTiT1h2ft8r2fYO8JYtU9a9Xis/zBSiGArNaagCOWx90N1k2wxp18czFDH+OgcWGb5ZP/XMt3dcyPA== dependencies: tslib "^2.4.0" -"@emnapi/runtime@^1.6.0": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.11.1.tgz#58f1f3d5d81a9b12f793ab688c96371901027c24" - integrity sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw== - dependencies: - tslib "^2.4.0" - -"@emnapi/wasi-threads@1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz" - integrity sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ== - dependencies: - tslib "^2.4.0" - -"@emnapi/wasi-threads@1.2.2", "@emnapi/wasi-threads@^1.1.0": +"@emnapi/wasi-threads@1.2.2", "@emnapi/wasi-threads@^1.2.2": version "1.2.2" resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz#4c93becf5bfa3b13d1bbdcc06aee38321ad8139a" integrity sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA== @@ -2124,64 +2076,215 @@ "@giscus/react@^3.1.0": version "3.1.0" - resolved "https://registry.npmjs.org/@giscus/react/-/react-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/@giscus/react/-/react-3.1.0.tgz#0ab77cc80d765989e87403ea7f50ba7a790a36c7" integrity sha512-0TCO2TvL43+oOdyVVGHDItwxD1UMKP2ZYpT6gXmhFOqfAJtZxTzJ9hkn34iAF/b6YzyJ4Um89QIt9z/ajmAEeg== dependencies: giscus "^1.6.0" "@hapi/hoek@^9.0.0", "@hapi/hoek@^9.3.0": version "9.3.0" - resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== "@hapi/topo@^5.1.0": version "5.1.0" - resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== dependencies: "@hapi/hoek" "^9.0.0" +"@huggingface/jinja@^0.5.6": + version "0.5.9" + resolved "https://registry.yarnpkg.com/@huggingface/jinja/-/jinja-0.5.9.tgz#294f741fa098c2b3173788b44ca651958bffa36d" + integrity sha512-uWTG+l3VJRsl7EXxYizuL3P+cCPoc3cRqbWWRcQN0FhejRfbdq0RNhCmbY/YDtnTcz9icdLYuLDjsnz4d8JMuw== + +"@huggingface/tokenizers@^0.1.3": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@huggingface/tokenizers/-/tokenizers-0.1.3.tgz#d1bb2b25375e550c826e4c7151d5f764a14a6a69" + integrity sha512-8rF/RRT10u+kn7YuUbUg0OF30K8rjTc78aHpxT+qJ1uWSqxT1MHi8+9ltwYfkFYJzT/oS+qw3JVfHtNMGAdqyA== + +"@huggingface/transformers@4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@huggingface/transformers/-/transformers-4.2.0.tgz#5a5342a1a148c5d297ed8384d21cee1824fab031" + integrity sha512-8BRCoBMH0XsWaEIamuR0LrJGAfftgHAfb2Vrffy0VKlSAE/MnUJ5/h/zTfEP3fDIft+nk7TqB8xXEyABGitBjQ== + dependencies: + "@huggingface/jinja" "^0.5.6" + "@huggingface/tokenizers" "^0.1.3" + onnxruntime-node "1.24.3" + onnxruntime-web "1.26.0-dev.20260416-b7804b056c" + sharp "^0.34.5" + "@iconify/types@^2.0.0": version "2.0.0" - resolved "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/@iconify/types/-/types-2.0.0.tgz#ab0e9ea681d6c8a1214f30cd741fe3a20cc57f57" integrity sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg== -"@iconify/utils@^2.1.33": - version "2.3.0" - resolved "https://registry.npmjs.org/@iconify/utils/-/utils-2.3.0.tgz" - integrity sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA== +"@iconify/utils@^3.0.2": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@iconify/utils/-/utils-3.1.4.tgz#04dad014e8ed80b1bbe341f5d090059ea0c60578" + integrity sha512-b1S7B1k9ohZ+iNTi2ATxbRYG9fTrJmUT0rc46bvVnNxqNRGW7dyo/vRREwyniI5IRN2RSJHDcm+s3BjWrSAjHw== dependencies: - "@antfu/install-pkg" "^1.0.0" - "@antfu/utils" "^8.1.0" + "@antfu/install-pkg" "^1.1.0" "@iconify/types" "^2.0.0" - debug "^4.4.0" - globals "^15.14.0" - kolorist "^1.8.0" - local-pkg "^1.0.0" - mlly "^1.7.4" + import-meta-resolve "^4.2.0" -"@isaacs/cliui@^8.0.2": - version "8.0.2" - resolved "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz" - integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== +"@img/colour@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@img/colour/-/colour-1.1.0.tgz#b0c2c2fa661adf75effd6b4964497cd80010bb9d" + integrity sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ== + +"@img/sharp-darwin-arm64@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz#6e0732dcade126b6670af7aa17060b926835ea86" + integrity sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w== + optionalDependencies: + "@img/sharp-libvips-darwin-arm64" "1.2.4" + +"@img/sharp-darwin-x64@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz#19bc1dd6eba6d5a96283498b9c9f401180ee9c7b" + integrity sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw== + optionalDependencies: + "@img/sharp-libvips-darwin-x64" "1.2.4" + +"@img/sharp-libvips-darwin-arm64@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz#2894c0cb87d42276c3889942e8e2db517a492c43" + integrity sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g== + +"@img/sharp-libvips-darwin-x64@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz#e63681f4539a94af9cd17246ed8881734386f8cc" + integrity sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg== + +"@img/sharp-libvips-linux-arm64@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz#b1b288b36864b3bce545ad91fa6dadcf1a4ad318" + integrity sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw== + +"@img/sharp-libvips-linux-arm@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz#b9260dd1ebe6f9e3bdbcbdcac9d2ac125f35852d" + integrity sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A== + +"@img/sharp-libvips-linux-ppc64@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz#4b83ecf2a829057222b38848c7b022e7b4d07aa7" + integrity sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA== + +"@img/sharp-libvips-linux-riscv64@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz#880b4678009e5a2080af192332b00b0aaf8a48de" + integrity sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA== + +"@img/sharp-libvips-linux-s390x@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz#74f343c8e10fad821b38f75ced30488939dc59ec" + integrity sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ== + +"@img/sharp-libvips-linux-x64@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz#df4183e8bd8410f7d61b66859a35edeab0a531ce" + integrity sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw== + +"@img/sharp-libvips-linuxmusl-arm64@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz#c8d6b48211df67137541007ee8d1b7b1f8ca8e06" + integrity sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw== + +"@img/sharp-libvips-linuxmusl-x64@1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz#be11c75bee5b080cbee31a153a8779448f919f75" + integrity sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg== + +"@img/sharp-linux-arm64@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz#7aa7764ef9c001f15e610546d42fce56911790cc" + integrity sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg== + optionalDependencies: + "@img/sharp-libvips-linux-arm64" "1.2.4" + +"@img/sharp-linux-arm@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz#5fb0c3695dd12522d39c3ff7a6bc816461780a0d" + integrity sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw== + optionalDependencies: + "@img/sharp-libvips-linux-arm" "1.2.4" + +"@img/sharp-linux-ppc64@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz#9c213a81520a20caf66978f3d4c07456ff2e0813" + integrity sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA== + optionalDependencies: + "@img/sharp-libvips-linux-ppc64" "1.2.4" + +"@img/sharp-linux-riscv64@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz#cdd28182774eadbe04f62675a16aabbccb833f60" + integrity sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw== + optionalDependencies: + "@img/sharp-libvips-linux-riscv64" "1.2.4" + +"@img/sharp-linux-s390x@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz#93eac601b9f329bb27917e0e19098c722d630df7" + integrity sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg== + optionalDependencies: + "@img/sharp-libvips-linux-s390x" "1.2.4" + +"@img/sharp-linux-x64@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz#55abc7cd754ffca5002b6c2b719abdfc846819a8" + integrity sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ== + optionalDependencies: + "@img/sharp-libvips-linux-x64" "1.2.4" + +"@img/sharp-linuxmusl-arm64@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz#d6515ee971bb62f73001a4829b9d865a11b77086" + integrity sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg== + optionalDependencies: + "@img/sharp-libvips-linuxmusl-arm64" "1.2.4" + +"@img/sharp-linuxmusl-x64@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz#d97978aec7c5212f999714f2f5b736457e12ee9f" + integrity sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q== + optionalDependencies: + "@img/sharp-libvips-linuxmusl-x64" "1.2.4" + +"@img/sharp-wasm32@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz#2f15803aa626f8c59dd7c9d0bbc766f1ab52cfa0" + integrity sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw== dependencies: - string-width "^5.1.2" - string-width-cjs "npm:string-width@^4.2.0" - strip-ansi "^7.0.1" - strip-ansi-cjs "npm:strip-ansi@^6.0.1" - wrap-ansi "^8.1.0" - wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + "@emnapi/runtime" "^1.7.0" + +"@img/sharp-win32-arm64@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz#3706e9e3ac35fddfc1c87f94e849f1b75307ce0a" + integrity sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g== + +"@img/sharp-win32-ia32@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz#0b71166599b049e032f085fb9263e02f4e4788de" + integrity sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg== + +"@img/sharp-win32-x64@0.34.5": + version "0.34.5" + resolved "https://registry.yarnpkg.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz#a81ffb00e69267cd0a1d626eaedb8a8430b2b2f8" + integrity sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw== "@jest/schemas@^29.6.3": version "29.6.3" - resolved "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== dependencies: "@sinclair/typebox" "^0.27.8" "@jest/types@^29.6.3": version "29.6.3" - resolved "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== dependencies: "@jest/schemas" "^29.6.3" @@ -2193,15 +2296,15 @@ "@jridgewell/gen-mapping@^0.3.12", "@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5": version "0.3.13" - resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz#6342a19f44347518c93e43b1ac69deb3c4656a1f" integrity sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA== dependencies: "@jridgewell/sourcemap-codec" "^1.5.0" "@jridgewell/trace-mapping" "^0.3.24" -"@jridgewell/remapping@^2.3.4", "@jridgewell/remapping@^2.3.5": +"@jridgewell/remapping@^2.3.5": version "2.3.5" - resolved "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz#375c476d1972947851ba1e15ae8f123047445aa1" integrity sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ== dependencies: "@jridgewell/gen-mapping" "^0.3.5" @@ -2209,48 +2312,135 @@ "@jridgewell/resolve-uri@^3.1.0": version "3.1.2" - resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== "@jridgewell/source-map@^0.3.3": - version "0.3.6" - resolved "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz" - integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== + version "0.3.11" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.11.tgz#b21835cbd36db656b857c2ad02ebd413cc13a9ba" + integrity sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA== dependencies: "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0", "@jridgewell/sourcemap-codec@^1.5.5": version "1.5.5" - resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz#6912b00d2c631c0d15ce1a7ab57cd657f2a8f8ba" integrity sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25", "@jridgewell/trace-mapping@^0.3.28": - version "0.3.30" - resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.30.tgz" - integrity sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q== + version "0.3.31" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz#db15d6781c931f3a251a3dac39501c98a6082fd0" + integrity sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" +"@jsonjoy.com/base64@17.67.0": + version "17.67.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/base64/-/base64-17.67.0.tgz#7eeda3cb41138d77a90408fd2e42b2aba10576d7" + integrity sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw== + "@jsonjoy.com/base64@^1.1.2": version "1.1.2" - resolved "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/base64/-/base64-1.1.2.tgz#cf8ea9dcb849b81c95f14fc0aaa151c6b54d2578" integrity sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA== +"@jsonjoy.com/buffers@17.67.0", "@jsonjoy.com/buffers@^17.65.0": + version "17.67.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/buffers/-/buffers-17.67.0.tgz#5c58dbcdeea8824ce296bd1cfce006c2eb167b3d" + integrity sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw== + "@jsonjoy.com/buffers@^1.0.0", "@jsonjoy.com/buffers@^1.2.0": version "1.2.1" - resolved "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz#8d99c7f67eaf724d3428dfd9826c6455266a5c83" integrity sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA== +"@jsonjoy.com/codegen@17.67.0": + version "17.67.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/codegen/-/codegen-17.67.0.tgz#3635fd8769d77e19b75dc5574bc9756019b2e591" + integrity sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q== + "@jsonjoy.com/codegen@^1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz#5c23f796c47675f166d23b948cdb889184b93207" integrity sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g== +"@jsonjoy.com/fs-core@4.64.0": + version "4.64.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/fs-core/-/fs-core-4.64.0.tgz#82378ecedc5cbd8558fcc0a8e3c6b254db070fc8" + integrity sha512-zs2TAq7Six5jgMuoMNjpspAvOP3mhtgq/k1UyQodEzCtQi/N83y2/y+zcvnZSGp/Rxq96DBN+bValOBQAyn/ew== + dependencies: + "@jsonjoy.com/fs-node-builtins" "4.64.0" + "@jsonjoy.com/fs-node-utils" "4.64.0" + thingies "^2.5.0" + +"@jsonjoy.com/fs-fsa@4.64.0": + version "4.64.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/fs-fsa/-/fs-fsa-4.64.0.tgz#3cb0af64a33f075300ef63be97af89bb7849e6bd" + integrity sha512-nMWOVbkLFyEgmXZih3wyvxA9XpgyyqyfrINMHvEFqhi7uqfRl7c9ERJt6yX7vgMPrB9Uo+OJO+Spa0cFzPD01w== + dependencies: + "@jsonjoy.com/fs-core" "4.64.0" + "@jsonjoy.com/fs-node-builtins" "4.64.0" + "@jsonjoy.com/fs-node-utils" "4.64.0" + thingies "^2.5.0" + +"@jsonjoy.com/fs-node-builtins@4.64.0": + version "4.64.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.64.0.tgz#84371474b2a06d209ae9f0b2b06fc570b00fb612" + integrity sha512-/o7WRFhUWaM/fOrslwLZGnzn4RmRILykn+lAL+mNObqqRNw+CQSiij6hpCeZ+C7buhdoVo7go/OYqzaSUfDYmA== + +"@jsonjoy.com/fs-node-to-fsa@4.64.0": + version "4.64.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.64.0.tgz#fbb3026befa07d690f1523c0c166f0d447fa555e" + integrity sha512-WDD9WVs0hb7UAEKTgZW2f66WDrbj7gIIWwpP3spbLyXa0rghtUaFTB8L4gdR3ZCWwiKIsj38/CNijpVmpnuPUw== + dependencies: + "@jsonjoy.com/fs-fsa" "4.64.0" + "@jsonjoy.com/fs-node-builtins" "4.64.0" + "@jsonjoy.com/fs-node-utils" "4.64.0" + +"@jsonjoy.com/fs-node-utils@4.64.0": + version "4.64.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.64.0.tgz#5803eee4abd6871644a35ea35ad63a6b7f159892" + integrity sha512-k5Indsx9hWW9xSF7Y6oSKKwtCUNhzZxadub3owhIlitc+iMRVlPPdX2duTKQWBL3qNWpXya8jykgaaWpheeS4w== + dependencies: + "@jsonjoy.com/fs-node-builtins" "4.64.0" + glob-to-regex.js "^1.0.1" + +"@jsonjoy.com/fs-node@4.64.0": + version "4.64.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/fs-node/-/fs-node-4.64.0.tgz#e8c9c4346b38cc116ca0e9fb34b10419bcfc1916" + integrity sha512-dO+NNkODbUli4uV42bcNrrLvq5rE7SNpdZ5TNd0dtbLsAaNK3MDiIC9lUi+brboGoIjW6vd2fB1qao60nrk5xA== + dependencies: + "@jsonjoy.com/fs-core" "4.64.0" + "@jsonjoy.com/fs-node-builtins" "4.64.0" + "@jsonjoy.com/fs-node-utils" "4.64.0" + "@jsonjoy.com/fs-print" "4.64.0" + "@jsonjoy.com/fs-snapshot" "4.64.0" + glob-to-regex.js "^1.0.0" + thingies "^2.5.0" + +"@jsonjoy.com/fs-print@4.64.0": + version "4.64.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/fs-print/-/fs-print-4.64.0.tgz#375085d90b50c85754667671f58d13a63da4330d" + integrity sha512-PHZFccchvkhWrwPWHjmVAhbC3vSHCtyZvlZfJJ3ho2bnzl450hXri6/8e6pbkWdH+SkmLXNml0sV8e5HDAfxKw== + dependencies: + "@jsonjoy.com/fs-node-utils" "4.64.0" + tree-dump "^1.1.0" + +"@jsonjoy.com/fs-snapshot@4.64.0": + version "4.64.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.64.0.tgz#99a76af8664595875def5b20ed1cf159adc5f098" + integrity sha512-oM7UDeL83q6NBzzsfKAsYKXKVXlykKFqqOLh4xZZKAzzROTlInkPbc6LTDGThEOnPiFiUzA7tYziHG9xavd76Q== + dependencies: + "@jsonjoy.com/buffers" "^17.65.0" + "@jsonjoy.com/fs-node-utils" "4.64.0" + "@jsonjoy.com/json-pack" "^17.65.0" + "@jsonjoy.com/util" "^17.65.0" + "@jsonjoy.com/json-pack@^1.11.0": version "1.21.0" - resolved "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.21.0.tgz" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pack/-/json-pack-1.21.0.tgz#93f8dd57fe3a3a92132b33d1eb182dcd9e7629fa" integrity sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg== dependencies: "@jsonjoy.com/base64" "^1.1.2" @@ -2262,17 +2452,46 @@ thingies "^2.5.0" tree-dump "^1.1.0" +"@jsonjoy.com/json-pack@^17.65.0": + version "17.67.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pack/-/json-pack-17.67.0.tgz#8dd8ff65dd999c5d4d26df46c63915c7bdec093a" + integrity sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w== + dependencies: + "@jsonjoy.com/base64" "17.67.0" + "@jsonjoy.com/buffers" "17.67.0" + "@jsonjoy.com/codegen" "17.67.0" + "@jsonjoy.com/json-pointer" "17.67.0" + "@jsonjoy.com/util" "17.67.0" + hyperdyperid "^1.2.0" + thingies "^2.5.0" + tree-dump "^1.1.0" + +"@jsonjoy.com/json-pointer@17.67.0": + version "17.67.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pointer/-/json-pointer-17.67.0.tgz#74439573dc046e0c9a3a552fb94b391bc75313b8" + integrity sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA== + dependencies: + "@jsonjoy.com/util" "17.67.0" + "@jsonjoy.com/json-pointer@^1.0.2": version "1.0.2" - resolved "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pointer/-/json-pointer-1.0.2.tgz#049cb530ac24e84cba08590c5e36b431c4843408" integrity sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg== dependencies: "@jsonjoy.com/codegen" "^1.0.0" "@jsonjoy.com/util" "^1.9.0" +"@jsonjoy.com/util@17.67.0", "@jsonjoy.com/util@^17.65.0": + version "17.67.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/util/-/util-17.67.0.tgz#7c4288fc3808233e55c7610101e7bb4590cddd3f" + integrity sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew== + dependencies: + "@jsonjoy.com/buffers" "17.67.0" + "@jsonjoy.com/codegen" "17.67.0" + "@jsonjoy.com/util@^1.9.0": version "1.9.0" - resolved "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.9.0.tgz" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/util/-/util-1.9.0.tgz#7ee95586aed0a766b746cd8d8363e336c3c47c46" integrity sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ== dependencies: "@jsonjoy.com/buffers" "^1.0.0" @@ -2280,30 +2499,31 @@ "@leichtgewicht/ip-codec@^2.0.1": version "2.0.5" - resolved "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1" integrity sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw== "@lit-labs/ssr-dom-shim@^1.5.0": - version "1.5.1" - resolved "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.5.1.tgz" - integrity sha512-Aou5UdlSpr5whQe8AA/bZG0jMj96CoJIWbGfZ91qieWu5AWUMKw8VR/pAkQkJYvBNhmCcWnZlyyk5oze8JIqYA== + version "1.6.0" + resolved "https://registry.yarnpkg.com/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.6.0.tgz#693e129b809741fd23e98fcb57e41fd3d082db1a" + integrity sha512-VHb0ALPMTlgKjM6yIxxoQNnpKyUKLD04VzeQdsiXkMqkvYlAHxq9glGLmgbb889/1GsohSOAjvQYoiBppXFqrQ== "@lit/reactive-element@^2.1.0": version "2.1.2" - resolved "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/@lit/reactive-element/-/reactive-element-2.1.2.tgz#4c6af9042603c98e61ba90b294607904d51b61cb" integrity sha512-pbCDiVMnne1lYUIaYNN5wrwQXDtHaYtg7YEFPeW+hws6U47WeFvISGUWekPGKWOP1ygrs0ef0o1VJMk1exos5A== dependencies: "@lit-labs/ssr-dom-shim" "^1.5.0" "@mdx-js/mdx@^3.0.0": - version "3.1.0" - resolved "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.0.tgz" - integrity sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw== + version "3.1.1" + resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-3.1.1.tgz#c5ffd991a7536b149e17175eee57a1a2a511c6d1" + integrity sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ== dependencies: "@types/estree" "^1.0.0" "@types/estree-jsx" "^1.0.0" "@types/hast" "^3.0.0" "@types/mdx" "^2.0.0" + acorn "^8.0.0" collapse-white-space "^2.0.0" devlop "^1.0.0" estree-util-is-identifier-name "^3.0.0" @@ -2326,18 +2546,18 @@ vfile "^6.0.0" "@mdx-js/react@^3.0.0": - version "3.1.0" - resolved "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.0.tgz" - integrity sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ== + version "3.1.1" + resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-3.1.1.tgz#24bda7fffceb2fe256f954482123cda1be5f5fef" + integrity sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw== dependencies: "@types/mdx" "^2.0.0" -"@mermaid-js/parser@^0.6.2": - version "0.6.2" - resolved "https://registry.npmjs.org/@mermaid-js/parser/-/parser-0.6.2.tgz" - integrity sha512-+PO02uGF6L6Cs0Bw8RpGhikVvMWEysfAyl27qTlroUB8jSWr1lL0Sf6zi78ZxlSnmgSY2AMMKVgghnN9jTtwkQ== +"@mermaid-js/parser@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@mermaid-js/parser/-/parser-1.2.0.tgz#266d728c54d2d4034d270f8b31d790e26296a5fa" + integrity sha512-oYPyv8A4As1yH5Bx+04iQEQxXuIQDe0GKCNSRgao6z8AM9jixXIfP0vsppRLvGf+nKIOb9/LdpWA4YuJiVvESA== dependencies: - langium "3.3.1" + "@chevrotain/types" "~11.1.2" "@napi-rs/wasm-runtime@^0.2.3": version "0.2.12" @@ -2348,13 +2568,18 @@ "@emnapi/runtime" "^1.4.3" "@tybys/wasm-util" "^0.10.0" -"@napi-rs/wasm-runtime@^1.0.7": +"@napi-rs/wasm-runtime@^1.1.4": version "1.1.6" resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz#ed33806d0f9be98dc76d0c3d4fd872fda701b5d5" integrity sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg== dependencies: "@tybys/wasm-util" "^0.10.3" +"@noble/hashes@1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.4.0.tgz#45814aa329f30e4fe0ba49426f49dfccdd066426" + integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== + "@node-rs/jieba-android-arm-eabi@1.10.4": version "1.10.4" resolved "https://registry.yarnpkg.com/@node-rs/jieba-android-arm-eabi/-/jieba-android-arm-eabi-1.10.4.tgz#c8c0be3895f01c86a0138cbb1b2228d0895c6854" @@ -2367,7 +2592,7 @@ "@node-rs/jieba-darwin-arm64@1.10.4": version "1.10.4" - resolved "https://registry.npmjs.org/@node-rs/jieba-darwin-arm64/-/jieba-darwin-arm64-1.10.4.tgz" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-darwin-arm64/-/jieba-darwin-arm64-1.10.4.tgz#2f39e7f21d1f01afe06fb4c5deeb7ac098f7870c" integrity sha512-G++RYEJ2jo0rxF9626KUy90wp06TRUjAsvY/BrIzEOX/ingQYV/HjwQzNPRR1P1o32a6/U8RGo7zEBhfdybL6w== "@node-rs/jieba-darwin-x64@1.10.4": @@ -2429,7 +2654,7 @@ "@node-rs/jieba@^1.6.0": version "1.10.4" - resolved "https://registry.npmjs.org/@node-rs/jieba/-/jieba-1.10.4.tgz" + resolved "https://registry.yarnpkg.com/@node-rs/jieba/-/jieba-1.10.4.tgz#9bc8f7e65bbb968b329c7571086993b55a95ef56" integrity sha512-GvDgi8MnBiyWd6tksojej8anIx18244NmIOc1ovEw8WKNUejcccLfyu8vj66LWSuoZuKILVtNsOy4jvg3aoxIw== optionalDependencies: "@node-rs/jieba-android-arm-eabi" "1.10.4" @@ -2449,7 +2674,7 @@ "@nodelib/fs.scandir@2.1.5": version "2.1.5" - resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" @@ -2457,61 +2682,228 @@ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3": version "1.2.8" - resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@opentelemetry/api@1.9.0": - version "1.9.0" - resolved "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz" - integrity sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg== +"@peculiar/asn1-cms@^2.6.0", "@peculiar/asn1-cms@^2.8.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-cms/-/asn1-cms-2.8.0.tgz#b48a8389319228f929e9acd8cee8da6c858738de" + integrity sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA== + dependencies: + "@peculiar/asn1-schema" "^2.8.0" + "@peculiar/asn1-x509" "^2.8.0" + "@peculiar/asn1-x509-attr" "^2.8.0" + asn1js "^3.0.10" + tslib "^2.8.1" + +"@peculiar/asn1-csr@^2.6.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-csr/-/asn1-csr-2.8.0.tgz#c9bb5dec2eaff824a705e82a4a58d45e6d2c35d0" + integrity sha512-akbF8+uvleHs8sejNPQxwmVFuInAg6FMNHOwMILXfP518YfFJwdR3jr6oNUPOaEJfuEhn/vkNOCIT6ASUd4mbg== + dependencies: + "@peculiar/asn1-schema" "^2.8.0" + "@peculiar/asn1-x509" "^2.8.0" + asn1js "^3.0.10" + tslib "^2.8.1" + +"@peculiar/asn1-ecc@^2.6.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-ecc/-/asn1-ecc-2.8.0.tgz#d51ab2b07eca98e0cf492d051e98bbd0a071305a" + integrity sha512-ohwlk+u9Rv2NOAY1c6MfHj45ATVF8R1DUN/WCgABiRtLi2ZftlZWZX7KvpAbU8v9xPcmoILfELeEABj/rn18AQ== + dependencies: + "@peculiar/asn1-schema" "^2.8.0" + "@peculiar/asn1-x509" "^2.8.0" + asn1js "^3.0.10" + tslib "^2.8.1" + +"@peculiar/asn1-pfx@^2.8.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-pfx/-/asn1-pfx-2.8.0.tgz#8e189b6455e2bf9e5f921bb150ea86d7e7d1875d" + integrity sha512-5yof1ytoB++RQtaFbqSUJ8pxDJtZT6vbVqZ8XoJ61ph7UjNVvfFwAilnCodqkNsAodpy13gDhoxZXw00pghnyg== + dependencies: + "@peculiar/asn1-cms" "^2.8.0" + "@peculiar/asn1-pkcs8" "^2.8.0" + "@peculiar/asn1-rsa" "^2.8.0" + "@peculiar/asn1-schema" "^2.8.0" + asn1js "^3.0.10" + tslib "^2.8.1" + +"@peculiar/asn1-pkcs8@^2.8.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-pkcs8/-/asn1-pkcs8-2.8.0.tgz#a46cf8857b9b063896afa41d2b8b2aa6a07a70a2" + integrity sha512-qAKXtLpBEw9LqhKpjw3ajZSXlBur+ipW+y2ivVBQAG6F6qRx94yO+1ZR4mvw+YaCfKSaOzLeYEzsPaBp4SJELA== + dependencies: + "@peculiar/asn1-schema" "^2.8.0" + "@peculiar/asn1-x509" "^2.8.0" + asn1js "^3.0.10" + tslib "^2.8.1" + +"@peculiar/asn1-pkcs9@^2.6.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-pkcs9/-/asn1-pkcs9-2.8.0.tgz#6d62697af0bbd4f30fdf0d23b4018f3f09620de3" + integrity sha512-b5nDWCnkV60+cQ141D6sVVwK9nz64R5n3zSVnklGd+ECdkW2Ol3U1a6yYFlalpSOaD557yuJB64A+q42jG7lUQ== + dependencies: + "@peculiar/asn1-cms" "^2.8.0" + "@peculiar/asn1-pfx" "^2.8.0" + "@peculiar/asn1-pkcs8" "^2.8.0" + "@peculiar/asn1-schema" "^2.8.0" + "@peculiar/asn1-x509" "^2.8.0" + "@peculiar/asn1-x509-attr" "^2.8.0" + asn1js "^3.0.10" + tslib "^2.8.1" + +"@peculiar/asn1-rsa@^2.6.0", "@peculiar/asn1-rsa@^2.8.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-rsa/-/asn1-rsa-2.8.0.tgz#9d98d0fc42fec50119d2881b8a9925d36daaea73" + integrity sha512-zHEUlCqB2mk7x2lxDwHHJy7hWZOPdGHVlsmITWKB5/PbQo61atbu9PJ/0r9dQNMwFzbKPXZ8uK8/91eUhRznSg== + dependencies: + "@peculiar/asn1-schema" "^2.8.0" + "@peculiar/asn1-x509" "^2.8.0" + asn1js "^3.0.10" + tslib "^2.8.1" -"@pkgjs/parseargs@^0.11.0": - version "0.11.0" - resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz" - integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== +"@peculiar/asn1-schema@^2.6.0", "@peculiar/asn1-schema@^2.8.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-schema/-/asn1-schema-2.8.0.tgz#69699f84259b2161607cabfc34e512a4023dbef9" + integrity sha512-7YT0U/ze0tF2QOBbE15gKZwy5tvgGyLRiRHLzhlbOpf7BT032oBSd0haZqXn5W6l26WLlu3dyxzjM+2638/z2Q== + dependencies: + "@peculiar/utils" "^2.0.2" + asn1js "^3.0.10" + tslib "^2.8.1" + +"@peculiar/asn1-x509-attr@^2.8.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-x509-attr/-/asn1-x509-attr-2.8.0.tgz#bd168e3f5e8bc23e56b1a97891f9f2fb7f730204" + integrity sha512-tHjkfS/qhMnmrlB2J9NhflQlQ7In3khO3CfmVrriOlpTeErY9ZIKOso1hQ5JQiyrJ7ShvqVPk7E5fQmbclkSKA== + dependencies: + "@peculiar/asn1-schema" "^2.8.0" + "@peculiar/asn1-x509" "^2.8.0" + asn1js "^3.0.10" + tslib "^2.8.1" + +"@peculiar/asn1-x509@^2.6.0", "@peculiar/asn1-x509@^2.8.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-x509/-/asn1-x509-2.8.0.tgz#9958a9ef35dec8426aabad78ffe8798e318b06e2" + integrity sha512-N0CMuhWUzsWEVq6F1q9X6+VKUnWzSW+cSVg+aPaGGwDdbFoFWTYgin5MHwXgpWd6y9COMBxnfy/Qc+Xc7F0Zwg== + dependencies: + "@peculiar/asn1-schema" "^2.8.0" + "@peculiar/utils" "^2.0.2" + asn1js "^3.0.10" + tslib "^2.8.1" + +"@peculiar/utils@^2.0.2": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@peculiar/utils/-/utils-2.0.3.tgz#a27ca4c4b73652e110f19a7d16d664f458a5528e" + integrity sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ== + dependencies: + tslib "^2.8.1" + +"@peculiar/x509@^1.14.2": + version "1.14.3" + resolved "https://registry.yarnpkg.com/@peculiar/x509/-/x509-1.14.3.tgz#2c44c2b89474346afec38a0c2803ec4fb8ce959e" + integrity sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA== + dependencies: + "@peculiar/asn1-cms" "^2.6.0" + "@peculiar/asn1-csr" "^2.6.0" + "@peculiar/asn1-ecc" "^2.6.0" + "@peculiar/asn1-pkcs9" "^2.6.0" + "@peculiar/asn1-rsa" "^2.6.0" + "@peculiar/asn1-schema" "^2.6.0" + "@peculiar/asn1-x509" "^2.6.0" + pvtsutils "^1.3.6" + reflect-metadata "^0.2.2" + tslib "^2.8.1" + tsyringe "^4.10.0" "@pnpm/config.env-replace@^1.1.0": version "1.1.0" - resolved "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz#ab29da53df41e8948a00f2433f085f54de8b3a4c" integrity sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w== "@pnpm/network.ca-file@^1.0.1": version "1.0.2" - resolved "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz#2ab05e09c1af0cdf2fcf5035bea1484e222f7983" integrity sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA== dependencies: graceful-fs "4.2.10" -"@pnpm/npm-conf@^2.1.0": - version "2.3.1" - resolved "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz" - integrity sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw== +"@pnpm/npm-conf@^3.0.2": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@pnpm/npm-conf/-/npm-conf-3.0.3.tgz#17b59982126c86294a8d248aa1d7b185f2df6484" + integrity sha512-//0sR/cow/s4ICQaYoAobOl4aU8cjU6x/V24V7XkKotb9+O+3zySIYp146vpaobYHnxa4pZX8NkV54Z5AwbDKA== dependencies: "@pnpm/config.env-replace" "^1.1.0" "@pnpm/network.ca-file" "^1.0.1" config-chain "^1.1.11" "@polka/url@^1.0.0-next.24": - version "1.0.0-next.28" - resolved "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz" - integrity sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw== + version "1.0.0-next.29" + resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.29.tgz#5a40109a1ab5f84d6fd8fc928b19f367cbe7e7b1" + integrity sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww== "@popperjs/core@^2.9.3": version "2.11.8" - resolved "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz" + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.5.tgz#d9315ad7cf3f30aac70bda3c068443dc6f143659" + integrity sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g== + +"@protobufjs/eventemitter@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.1.tgz#d512cb26c0ae026091ee2c1167f1be6faf5c842a" + integrity sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg== + +"@protobufjs/fetch@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.1.tgz#4d6fc00c8fb64016a5c81b469d549046350f1065" + integrity sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.2.tgz#78d476333d85d5b1c792e257bca74ba080da49a4" + integrity sha512-b1UQwcEZ4yCnMCD8DAL1VlbvBJE9/IX4FTIp7BG1xYpf29SLazLSrqUkj4w7Y5y7cCVP6E5tcqqcI0xemPkHug== + "@rollup/plugin-node-resolve@^15.2.3": version "15.3.1" - resolved "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.1.tgz" + resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.1.tgz#66008953c2524be786aa319d49e32f2128296a78" integrity sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA== dependencies: "@rollup/pluginutils" "^5.0.1" @@ -2521,9 +2913,9 @@ resolve "^1.22.1" "@rollup/pluginutils@^5.0.1": - version "5.3.0" - resolved "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz" - integrity sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q== + version "5.4.0" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.4.0.tgz#ac23a29ced0247060a210815fca39c17de4d2f26" + integrity sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg== dependencies: "@types/estree" "^1.0.0" estree-walker "^2.0.2" @@ -2531,93 +2923,88 @@ "@sideway/address@^4.1.5": version "4.1.5" - resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz" + resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.5.tgz#4bc149a0076623ced99ca8208ba780d65a99b9d5" integrity sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q== dependencies: "@hapi/hoek" "^9.0.0" "@sideway/formula@^3.0.1": version "3.0.1" - resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f" integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== "@sideway/pinpoint@^2.0.0": version "2.0.0" - resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== "@sinclair/typebox@^0.27.8": - version "0.27.8" - resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz" - integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + version "0.27.12" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.12.tgz#0cacd3cff047a32936b1ace47ea7c86eaab60a7f" + integrity sha512-hhyNJ+nbR6ZR7pToHvllEFun9TL0sbL+tk/ON75lo+Xas054uez98qRbsuNt7MBCyZKK4+8Yli/OAGZhmfBZ/g== "@sindresorhus/is@^4.6.0": version "4.6.0" - resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== "@sindresorhus/is@^5.2.0": version "5.6.0" - resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-5.6.0.tgz#41dd6093d34652cddb5d5bdeee04eafc33826668" integrity sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g== "@slorber/remark-comment@^1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@slorber/remark-comment/-/remark-comment-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@slorber/remark-comment/-/remark-comment-1.0.0.tgz#2a020b3f4579c89dec0361673206c28d67e08f5a" integrity sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA== dependencies: micromark-factory-space "^1.0.0" micromark-util-character "^1.1.0" micromark-util-symbol "^1.0.1" -"@standard-schema/spec@^1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.0.0.tgz" - integrity sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA== - "@svgr/babel-plugin-add-jsx-attribute@8.0.0": version "8.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz#4001f5d5dd87fa13303e36ee106e3ff3a7eb8b22" integrity sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g== "@svgr/babel-plugin-remove-jsx-attribute@8.0.0": version "8.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz#69177f7937233caca3a1afb051906698f2f59186" integrity sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA== "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0": version "8.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz#c2c48104cfd7dcd557f373b70a56e9e3bdae1d44" integrity sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA== "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0": version "8.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz#8fbb6b2e91fa26ac5d4aa25c6b6e4f20f9c0ae27" integrity sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ== "@svgr/babel-plugin-svg-dynamic-title@8.0.0": version "8.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz#1d5ba1d281363fc0f2f29a60d6d936f9bbc657b0" integrity sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og== "@svgr/babel-plugin-svg-em-dimensions@8.0.0": version "8.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz#35e08df300ea8b1d41cb8f62309c241b0369e501" integrity sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g== "@svgr/babel-plugin-transform-react-native-svg@8.1.0": version "8.1.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz#90a8b63998b688b284f255c6a5248abd5b28d754" integrity sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q== "@svgr/babel-plugin-transform-svg-component@8.0.0": version "8.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz#013b4bfca88779711f0ed2739f3f7efcefcf4f7e" integrity sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw== "@svgr/babel-preset@8.1.0": version "8.1.0" - resolved "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-8.1.0.tgz#0e87119aecdf1c424840b9d4565b7137cabf9ece" integrity sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug== dependencies: "@svgr/babel-plugin-add-jsx-attribute" "8.0.0" @@ -2631,7 +3018,7 @@ "@svgr/core@8.1.0": version "8.1.0" - resolved "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-8.1.0.tgz#41146f9b40b1a10beaf5cc4f361a16a3c1885e88" integrity sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA== dependencies: "@babel/core" "^7.21.3" @@ -2642,7 +3029,7 @@ "@svgr/hast-util-to-babel-ast@8.0.0": version "8.0.0" - resolved "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz#6952fd9ce0f470e1aded293b792a2705faf4ffd4" integrity sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q== dependencies: "@babel/types" "^7.21.3" @@ -2650,7 +3037,7 @@ "@svgr/plugin-jsx@8.1.0": version "8.1.0" - resolved "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz#96969f04a24b58b174ee4cd974c60475acbd6928" integrity sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA== dependencies: "@babel/core" "^7.21.3" @@ -2660,7 +3047,7 @@ "@svgr/plugin-svgo@8.1.0": version "8.1.0" - resolved "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz#b115b7b967b564f89ac58feae89b88c3decd0f00" integrity sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA== dependencies: cosmiconfig "^8.1.3" @@ -2669,7 +3056,7 @@ "@svgr/webpack@^8.1.0": version "8.1.0" - resolved "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz" + resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-8.1.0.tgz#16f1b5346f102f89fda6ec7338b96a701d8be0c2" integrity sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA== dependencies: "@babel/core" "^7.21.3" @@ -2683,149 +3070,130 @@ "@szmarczak/http-timer@^5.0.1": version "5.0.1" - resolved "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-5.0.1.tgz#c7c1bf1141cdd4751b0399c8fc7b8b664cd5be3a" integrity sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw== dependencies: defer-to-connect "^2.0.1" -"@tailwindcss/node@4.1.17": - version "4.1.17" - resolved "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.17.tgz" - integrity sha512-csIkHIgLb3JisEFQ0vxr2Y57GUNYh447C8xzwj89U/8fdW8LhProdxvnVH6U8M2Y73QKiTIH+LWbK3V2BBZsAg== +"@tailwindcss/node@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/node/-/node-4.3.3.tgz#38ff04309ff036ea3589a7bad9069c44ec9d3883" + integrity sha512-/T8IKEsf9VTU6tLjgC7+sv2mOPtQxzE2jMw7u4Tt40Tx+QSZxpzh95/H6cMKoja9XuW7iMdLJYBB0o9G1CaAgg== dependencies: - "@jridgewell/remapping" "^2.3.4" - enhanced-resolve "^5.18.3" - jiti "^2.6.1" - lightningcss "1.30.2" + "@jridgewell/remapping" "^2.3.5" + enhanced-resolve "^5.24.1" + jiti "^2.7.0" + lightningcss "1.32.0" magic-string "^0.30.21" source-map-js "^1.2.1" - tailwindcss "4.1.17" - -"@tailwindcss/oxide-android-arm64@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.17.tgz#17f0dc901f88a979c5bff618181bce596dff596d" - integrity sha512-BMqpkJHgOZ5z78qqiGE6ZIRExyaHyuxjgrJ6eBO5+hfrfGkuya0lYfw8fRHG77gdTjWkNWEEm+qeG2cDMxArLQ== - -"@tailwindcss/oxide-darwin-arm64@4.1.17": - version "4.1.17" - resolved "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.17.tgz" - integrity sha512-EquyumkQweUBNk1zGEU/wfZo2qkp/nQKRZM8bUYO0J+Lums5+wl2CcG1f9BgAjn/u9pJzdYddHWBiFXJTcxmOg== - -"@tailwindcss/oxide-darwin-x64@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.17.tgz#6dad270d2777508f55e2b73eca0eaef625bc45a7" - integrity sha512-gdhEPLzke2Pog8s12oADwYu0IAw04Y2tlmgVzIN0+046ytcgx8uZmCzEg4VcQh+AHKiS7xaL8kGo/QTiNEGRog== - -"@tailwindcss/oxide-freebsd-x64@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.17.tgz#e7628b4602ac7d73c11a9922ecb83c24337eff55" - integrity sha512-hxGS81KskMxML9DXsaXT1H0DyA+ZBIbyG/sSAjWNe2EDl7TkPOBI42GBV3u38itzGUOmFfCzk1iAjDXds8Oh0g== - -"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.17.tgz#4d96a6fe4c7ed20e7a013101ee46f46caca2233e" - integrity sha512-k7jWk5E3ldAdw0cNglhjSgv501u7yrMf8oeZ0cElhxU6Y2o7f8yqelOp3fhf7evjIS6ujTI3U8pKUXV2I4iXHQ== - -"@tailwindcss/oxide-linux-arm64-gnu@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.17.tgz#adc3c01cd73610870bfc21db5713571e08fb2210" - integrity sha512-HVDOm/mxK6+TbARwdW17WrgDYEGzmoYayrCgmLEw7FxTPLcp/glBisuyWkFz/jb7ZfiAXAXUACfyItn+nTgsdQ== - -"@tailwindcss/oxide-linux-arm64-musl@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.17.tgz#39ceda30407af56a1ee125b2c5ce856c6d29250f" - integrity sha512-HvZLfGr42i5anKtIeQzxdkw/wPqIbpeZqe7vd3V9vI3RQxe3xU1fLjss0TjyhxWcBaipk7NYwSrwTwK1hJARMg== - -"@tailwindcss/oxide-linux-x64-gnu@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.17.tgz#a3d4bd876c04d09856af0c394f5095fbc8a2b14c" - integrity sha512-M3XZuORCGB7VPOEDH+nzpJ21XPvK5PyjlkSFkFziNHGLc5d6g3di2McAAblmaSUNl8IOmzYwLx9NsE7bplNkwQ== - -"@tailwindcss/oxide-linux-x64-musl@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.17.tgz#bdc20aa4fb2d28cc928f2cfffff7a9cd03a51d5b" - integrity sha512-k7f+pf9eXLEey4pBlw+8dgfJHY4PZ5qOUFDyNf7SI6lHjQ9Zt7+NcscjpwdCEbYi6FI5c2KDTDWyf2iHcCSyyQ== - -"@tailwindcss/oxide-wasm32-wasi@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.17.tgz#7c0804748935928751838f86ff4f879c38f8a6d7" - integrity sha512-cEytGqSSoy7zK4JRWiTCx43FsKP/zGr0CsuMawhH67ONlH+T79VteQeJQRO/X7L0juEUA8ZyuYikcRBf0vsxhg== - dependencies: - "@emnapi/core" "^1.6.0" - "@emnapi/runtime" "^1.6.0" - "@emnapi/wasi-threads" "^1.1.0" - "@napi-rs/wasm-runtime" "^1.0.7" - "@tybys/wasm-util" "^0.10.1" - tslib "^2.4.0" - -"@tailwindcss/oxide-win32-arm64-msvc@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.17.tgz#7222fc2ceee9d45ebe5aebf38707ee9833a20475" - integrity sha512-JU5AHr7gKbZlOGvMdb4722/0aYbU+tN6lv1kONx0JK2cGsh7g148zVWLM0IKR3NeKLv+L90chBVYcJ8uJWbC9A== - -"@tailwindcss/oxide-win32-x64-msvc@4.1.17": - version "4.1.17" - resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.17.tgz#ac79087f451dfcd5c3099589027a5732b045a3bf" - integrity sha512-SKWM4waLuqx0IH+FMDUw6R66Hu4OuTALFgnleKbqhgGU30DY20NORZMZUKgLRjQXNN2TLzKvh48QXTig4h4bGw== - -"@tailwindcss/oxide@4.1.17": - version "4.1.17" - resolved "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.17.tgz" - integrity sha512-F0F7d01fmkQhsTjXezGBLdrl1KresJTcI3DB8EkScCldyKp3Msz4hub4uyYaVnk88BAS1g5DQjjF6F5qczheLA== + tailwindcss "4.3.3" + +"@tailwindcss/oxide-android-arm64@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.3.tgz#848f93034155daf7892185028dfb18143bfc7d07" + integrity sha512-Y85A2gmPSkl5Ve5qR86GL4HT509cFqQh1aes9p3sSkyTPwt0Pppf3GkwGe4JPACcRYjgJIEhQgM6dBClnr0NYw== + +"@tailwindcss/oxide-darwin-arm64@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.3.tgz#5c779e32c1c361beb75136fd8e2c627fcb9a5b28" + integrity sha512-BiaWatpBcERQFDlOjRDpIVXuFK5PJez5SA4JMg6VYZdBYU+qKfV/vqjcIs+IYmtitf1xYQZTwXvU/8y4lfZUGw== + +"@tailwindcss/oxide-darwin-x64@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.3.tgz#ba292ff52fa3264139f7fe7874719ce0a4666875" + integrity sha512-fAeUqfV5ndhxRwai8cXGzdLvul9utWOmeTkv69unv4ZXixjn61Z+p9lCWdwOwA3TYboG3BwdVuN/RDjhBRl0mw== + +"@tailwindcss/oxide-freebsd-x64@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.3.tgz#07e589487b9a636235a4ade48cefc1f9eeeec57f" + integrity sha512-iyf5bV6+wnAlflVeEy7R25dupxTNECZN5QMI0qNT6eT+EgaGdZcKhGkr5SdoaWiLJ3spLqIY9VCeSGrwmtg4kw== + +"@tailwindcss/oxide-linux-arm-gnueabihf@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.3.tgz#0c8abc228d9e19e0065ddb707eba52e21855b3ff" + integrity sha512-aAYUprJAJQWWbRrPvtjdroZ56Md+JM8pMiopS6xGEwDfLhqj+2ver2p4nU4Mb3CRqcMmNBjo8KkUgcxhkzVQGQ== + +"@tailwindcss/oxide-linux-arm64-gnu@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.3.tgz#5067dc7afd15d2b97adc77a91177dc4bec8d1b8b" + integrity sha512-nDxldcEENOxZRzC2uu9jrutZdAAQtb+8WWDCSnWL1zvBk1+FN+x6MtDViPB5AJMfttVCUhehGWus3XBPgatM/w== + +"@tailwindcss/oxide-linux-arm64-musl@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.3.tgz#29ae5f279be2ce64db368711985b6ad8e4562e57" + integrity sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA== + +"@tailwindcss/oxide-linux-x64-gnu@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.3.tgz#7d693b40f69875744b499481359b227fd3ac3a3c" + integrity sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w== + +"@tailwindcss/oxide-linux-x64-musl@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.3.tgz#6a55d664f47c5ff9ad3f46bf05fe07d410b8cfd8" + integrity sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img== + +"@tailwindcss/oxide-wasm32-wasi@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.3.tgz#408a9bc620e68f1aaf0dfea33da7bd3b65f9e2ef" + integrity sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ== + dependencies: + "@emnapi/core" "^1.11.1" + "@emnapi/runtime" "^1.11.1" + "@emnapi/wasi-threads" "^1.2.2" + "@napi-rs/wasm-runtime" "^1.1.4" + "@tybys/wasm-util" "^0.10.2" + tslib "^2.8.1" + +"@tailwindcss/oxide-win32-arm64-msvc@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.3.tgz#3d582b00180fa4680e0b6c90be69fa5f4a209092" + integrity sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ== + +"@tailwindcss/oxide-win32-x64-msvc@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.3.tgz#ce4c663fef3b4fde67611a4c1391866f8c0aa79b" + integrity sha512-yJ0pwIVc/nYeGoV02WtsN8KYyLQv7kyI2wDnkezyJlGGjkd4QLwDGAwl47YpPJeuI0M0ObaXGSPjvWDPeTPggw== + +"@tailwindcss/oxide@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/oxide/-/oxide-4.3.3.tgz#6266109d025cfcb04f8e4c58954a6f630a415b7f" + integrity sha512-krXjAikiaFSPaK/FkAQT5UTx3VormQaiZ5hBFlJZ9UFQGB/rwg1MZIhHAG9smMQRTdyJxP6Qt5MwMtdyU5FWrA== optionalDependencies: - "@tailwindcss/oxide-android-arm64" "4.1.17" - "@tailwindcss/oxide-darwin-arm64" "4.1.17" - "@tailwindcss/oxide-darwin-x64" "4.1.17" - "@tailwindcss/oxide-freebsd-x64" "4.1.17" - "@tailwindcss/oxide-linux-arm-gnueabihf" "4.1.17" - "@tailwindcss/oxide-linux-arm64-gnu" "4.1.17" - "@tailwindcss/oxide-linux-arm64-musl" "4.1.17" - "@tailwindcss/oxide-linux-x64-gnu" "4.1.17" - "@tailwindcss/oxide-linux-x64-musl" "4.1.17" - "@tailwindcss/oxide-wasm32-wasi" "4.1.17" - "@tailwindcss/oxide-win32-arm64-msvc" "4.1.17" - "@tailwindcss/oxide-win32-x64-msvc" "4.1.17" + "@tailwindcss/oxide-android-arm64" "4.3.3" + "@tailwindcss/oxide-darwin-arm64" "4.3.3" + "@tailwindcss/oxide-darwin-x64" "4.3.3" + "@tailwindcss/oxide-freebsd-x64" "4.3.3" + "@tailwindcss/oxide-linux-arm-gnueabihf" "4.3.3" + "@tailwindcss/oxide-linux-arm64-gnu" "4.3.3" + "@tailwindcss/oxide-linux-arm64-musl" "4.3.3" + "@tailwindcss/oxide-linux-x64-gnu" "4.3.3" + "@tailwindcss/oxide-linux-x64-musl" "4.3.3" + "@tailwindcss/oxide-wasm32-wasi" "4.3.3" + "@tailwindcss/oxide-win32-arm64-msvc" "4.3.3" + "@tailwindcss/oxide-win32-x64-msvc" "4.3.3" "@tailwindcss/postcss@^4.1.17": - version "4.1.17" - resolved "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.17.tgz" - integrity sha512-+nKl9N9mN5uJ+M7dBOOCzINw94MPstNR/GtIhz1fpZysxL/4a+No64jCBD6CPN+bIHWFx3KWuu8XJRrj/572Dw== + version "4.3.3" + resolved "https://registry.yarnpkg.com/@tailwindcss/postcss/-/postcss-4.3.3.tgz#dc14df6477edc16087df1663617ee23bc1042610" + integrity sha512-JTSZZGQi1AyKirbLN3azmjVzef92tcX7h+iSqPdaeStyFpGpDlKvvpxeOE8njhbUanbRwr3z8DyzhICWnMtQeg== dependencies: "@alloc/quick-lru" "^5.2.0" - "@tailwindcss/node" "4.1.17" - "@tailwindcss/oxide" "4.1.17" - postcss "^8.4.41" - tailwindcss "4.1.17" - -"@trysound/sax@0.2.0": - version "0.2.0" - resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz" - integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== + "@tailwindcss/node" "4.3.3" + "@tailwindcss/oxide" "4.3.3" + postcss "^8.5.16" + tailwindcss "4.3.3" -"@tybys/wasm-util@^0.10.0": - version "0.10.1" - resolved "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz" - integrity sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg== - dependencies: - tslib "^2.4.0" - -"@tybys/wasm-util@^0.10.1", "@tybys/wasm-util@^0.10.3": +"@tybys/wasm-util@^0.10.0", "@tybys/wasm-util@^0.10.2", "@tybys/wasm-util@^0.10.3": version "0.10.3" resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.3.tgz#015cba9e9dd47ce14d03d2a8c5d547bfb169665d" integrity sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg== dependencies: tslib "^2.4.0" -"@types/acorn@^4.0.0": - version "4.0.6" - resolved "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz" - integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ== - dependencies: - "@types/estree" "*" - "@types/body-parser@*": version "1.19.6" - resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.6.tgz#1859bebb8fd7dac9918a45d54c1971ab8b5af474" integrity sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g== dependencies: "@types/connect" "*" @@ -2833,14 +3201,14 @@ "@types/bonjour@^3.5.13": version "3.5.13" - resolved "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.13.tgz#adf90ce1a105e81dd1f9c61fdc5afda1bfb92956" integrity sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ== dependencies: "@types/node" "*" "@types/connect-history-api-fallback@^1.5.4": version "1.5.4" - resolved "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz" + resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz#7de71645a103056b48ac3ce07b3520b819c1d5b3" integrity sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw== dependencies: "@types/express-serve-static-core" "*" @@ -2848,43 +3216,43 @@ "@types/connect@*": version "3.4.38" - resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858" integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== dependencies: "@types/node" "*" "@types/d3-array@*": - version "3.2.1" - resolved "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz" - integrity sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg== + version "3.2.2" + resolved "https://registry.yarnpkg.com/@types/d3-array/-/d3-array-3.2.2.tgz#e02151464d02d4a1b44646d0fcdb93faf88fde8c" + integrity sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw== "@types/d3-axis@*": version "3.0.6" - resolved "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.6.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-axis/-/d3-axis-3.0.6.tgz#e760e5765b8188b1defa32bc8bb6062f81e4c795" integrity sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw== dependencies: "@types/d3-selection" "*" "@types/d3-brush@*": version "3.0.6" - resolved "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.6.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-brush/-/d3-brush-3.0.6.tgz#c2f4362b045d472e1b186cdbec329ba52bdaee6c" integrity sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A== dependencies: "@types/d3-selection" "*" "@types/d3-chord@*": version "3.0.6" - resolved "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.6.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-chord/-/d3-chord-3.0.6.tgz#1706ca40cf7ea59a0add8f4456efff8f8775793d" integrity sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg== "@types/d3-color@*": version "3.1.3" - resolved "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-color/-/d3-color-3.1.3.tgz#368c961a18de721da8200e80bf3943fb53136af2" integrity sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A== "@types/d3-contour@*": version "3.0.6" - resolved "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.6.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-contour/-/d3-contour-3.0.6.tgz#9ada3fa9c4d00e3a5093fed0356c7ab929604231" integrity sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg== dependencies: "@types/d3-array" "*" @@ -2892,136 +3260,136 @@ "@types/d3-delaunay@*": version "6.0.4" - resolved "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz#185c1a80cc807fdda2a3fe960f7c11c4a27952e1" integrity sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw== "@types/d3-dispatch@*": version "3.0.7" - resolved "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz#ef004d8a128046cfce434d17182f834e44ef95b2" integrity sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA== "@types/d3-drag@*": version "3.0.7" - resolved "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-drag/-/d3-drag-3.0.7.tgz#b13aba8b2442b4068c9a9e6d1d82f8bcea77fc02" integrity sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ== dependencies: "@types/d3-selection" "*" "@types/d3-dsv@*": version "3.0.7" - resolved "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-dsv/-/d3-dsv-3.0.7.tgz#0a351f996dc99b37f4fa58b492c2d1c04e3dac17" integrity sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g== "@types/d3-ease@*": version "3.0.2" - resolved "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-ease/-/d3-ease-3.0.2.tgz#e28db1bfbfa617076f7770dd1d9a48eaa3b6c51b" integrity sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA== "@types/d3-fetch@*": version "3.0.7" - resolved "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-fetch/-/d3-fetch-3.0.7.tgz#c04a2b4f23181aa376f30af0283dbc7b3b569980" integrity sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA== dependencies: "@types/d3-dsv" "*" "@types/d3-force@*": version "3.0.10" - resolved "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-force/-/d3-force-3.0.10.tgz#6dc8fc6e1f35704f3b057090beeeb7ac674bff1a" integrity sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw== "@types/d3-format@*": version "3.0.4" - resolved "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-format/-/d3-format-3.0.4.tgz#b1e4465644ddb3fdf3a263febb240a6cd616de90" integrity sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g== "@types/d3-geo@*": version "3.1.0" - resolved "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-geo/-/d3-geo-3.1.0.tgz#b9e56a079449174f0a2c8684a9a4df3f60522440" integrity sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ== dependencies: "@types/geojson" "*" "@types/d3-hierarchy@*": version "3.1.7" - resolved "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz#6023fb3b2d463229f2d680f9ac4b47466f71f17b" integrity sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg== "@types/d3-interpolate@*": version "3.0.4" - resolved "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz#412b90e84870285f2ff8a846c6eb60344f12a41c" integrity sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA== dependencies: "@types/d3-color" "*" "@types/d3-path@*": version "3.1.1" - resolved "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-path/-/d3-path-3.1.1.tgz#f632b380c3aca1dba8e34aa049bcd6a4af23df8a" integrity sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg== "@types/d3-polygon@*": version "3.0.2" - resolved "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-polygon/-/d3-polygon-3.0.2.tgz#dfae54a6d35d19e76ac9565bcb32a8e54693189c" integrity sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA== "@types/d3-quadtree@*": version "3.0.6" - resolved "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz#d4740b0fe35b1c58b66e1488f4e7ed02952f570f" integrity sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg== "@types/d3-random@*": - version "3.0.3" - resolved "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz" - integrity sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/d3-random/-/d3-random-3.0.4.tgz#6bd3683b8332fc0f01e7059b7636bc5c7ede7337" + integrity sha512-UHYId5WTCx4L4YNel7NU00XUXXgvgpgZOvp10PuvsQENjMDXhh2RyFc0KBjO7B45ne4Ha1yVH7ii0vnzKkuzWA== "@types/d3-scale-chromatic@*": version "3.1.0" - resolved "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz#dc6d4f9a98376f18ea50bad6c39537f1b5463c39" integrity sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ== "@types/d3-scale@*": version "4.0.9" - resolved "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-scale/-/d3-scale-4.0.9.tgz#57a2f707242e6fe1de81ad7bfcccaaf606179afb" integrity sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw== dependencies: "@types/d3-time" "*" "@types/d3-selection@*": version "3.0.11" - resolved "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-selection/-/d3-selection-3.0.11.tgz#bd7a45fc0a8c3167a631675e61bc2ca2b058d4a3" integrity sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w== "@types/d3-shape@*": - version "3.1.7" - resolved "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.7.tgz" - integrity sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg== + version "3.1.8" + resolved "https://registry.yarnpkg.com/@types/d3-shape/-/d3-shape-3.1.8.tgz#d1516cc508753be06852cd06758e3bb54a22b0e3" + integrity sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w== dependencies: "@types/d3-path" "*" "@types/d3-time-format@*": version "4.0.3" - resolved "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-time-format/-/d3-time-format-4.0.3.tgz#d6bc1e6b6a7db69cccfbbdd4c34b70632d9e9db2" integrity sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg== "@types/d3-time@*": version "3.0.4" - resolved "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-time/-/d3-time-3.0.4.tgz#8472feecd639691450dd8000eb33edd444e1323f" integrity sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g== "@types/d3-timer@*": version "3.0.2" - resolved "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-timer/-/d3-timer-3.0.2.tgz#70bbda77dc23aa727413e22e214afa3f0e852f70" integrity sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw== "@types/d3-transition@*": version "3.0.9" - resolved "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-transition/-/d3-transition-3.0.9.tgz#1136bc57e9ddb3c390dccc9b5ff3b7d2b8d94706" integrity sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg== dependencies: "@types/d3-selection" "*" "@types/d3-zoom@*": version "3.0.8" - resolved "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-zoom/-/d3-zoom-3.0.8.tgz#dccb32d1c56b1e1c6e0f1180d994896f038bc40b" integrity sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw== dependencies: "@types/d3-interpolate" "*" @@ -3029,7 +3397,7 @@ "@types/d3@^7.4.3": version "7.4.3" - resolved "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz" + resolved "https://registry.yarnpkg.com/@types/d3/-/d3-7.4.3.tgz#d4550a85d08f4978faf0a4c36b848c61eaac07e2" integrity sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww== dependencies: "@types/d3-array" "*" @@ -3064,53 +3432,56 @@ "@types/d3-zoom" "*" "@types/debug@^4.0.0": - version "4.1.12" - resolved "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz" - integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ== + version "4.1.13" + resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.13.tgz#22d1cc9d542d3593caea764f974306ab36286ee7" + integrity sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw== dependencies: "@types/ms" "*" -"@types/eslint-scope@^3.7.7": - version "3.7.7" - resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz" - integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== - dependencies: - "@types/eslint" "*" - "@types/estree" "*" - -"@types/eslint@*": - version "9.6.1" - resolved "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz" - integrity sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag== - dependencies: - "@types/estree" "*" - "@types/json-schema" "*" - "@types/estree-jsx@^1.0.0": version "1.0.5" - resolved "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.5.tgz#858a88ea20f34fe65111f005a689fa1ebf70dc18" integrity sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg== dependencies: "@types/estree" "*" "@types/estree@*", "@types/estree@^1.0.0", "@types/estree@^1.0.8": - version "1.0.8" - resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz" - integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w== + version "1.0.9" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.9.tgz#cf3f0e876d7bee15a93ab925b82bf570a3904a24" + integrity sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg== -"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.21", "@types/express-serve-static-core@^4.17.33": - version "4.19.7" - resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.7.tgz" - integrity sha512-FvPtiIf1LfhzsaIXhv/PHan/2FeQBbtBDtfX2QfvPxdUelMDEckK08SM6nqo1MIZY3RUlfA+HV8+hFUSio78qg== +"@types/express-serve-static-core@*", "@types/express-serve-static-core@^5.0.0": + version "5.1.2" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-5.1.2.tgz#19afe821c79f18d05946892bbd5b924b96c8a4f6" + integrity sha512-d3KvEXBSo/lOAMc2u6fkyDHBvetBHeqD7wm/AcXfLpSOQwlmG9D/aQ0SFswVjv05p7ullQS7Mjohj6/VdbZuTg== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + "@types/send" "*" + +"@types/express-serve-static-core@^4.17.21", "@types/express-serve-static-core@^4.17.33": + version "4.19.9" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.19.9.tgz#b746a8bb6c389af7a31141397bb539f775b0ae84" + integrity sha512-QP2ESEe/ImWY0HDwNAnK9PvEffUyhLTnWkk7KXzHfyeWAnlrDe1fN77bXl6ia8KT3wPlmA7t9/VPRpnf4Ex9sg== dependencies: "@types/node" "*" "@types/qs" "*" "@types/range-parser" "*" "@types/send" "*" -"@types/express@*", "@types/express@^4.17.21": +"@types/express@*": + version "5.0.6" + resolved "https://registry.yarnpkg.com/@types/express/-/express-5.0.6.tgz#2d724b2c990dcb8c8444063f3580a903f6d500cc" + integrity sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^5.0.0" + "@types/serve-static" "^2" + +"@types/express@^4.17.25": version "4.17.25" - resolved "https://registry.npmjs.org/@types/express/-/express-4.17.25.tgz" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.25.tgz#070c8c73a6fee6936d65c195dbbfb7da5026649b" integrity sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw== dependencies: "@types/body-parser" "*" @@ -3120,136 +3491,119 @@ "@types/geojson@*": version "7946.0.16" - resolved "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz" + resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.16.tgz#8ebe53d69efada7044454e3305c19017d97ced2a" integrity sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg== -"@types/gtag.js@^0.0.12": - version "0.0.12" - resolved "https://registry.npmjs.org/@types/gtag.js/-/gtag.js-0.0.12.tgz" - integrity sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg== - "@types/hast@^3.0.0": - version "3.0.4" - resolved "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz" - integrity sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ== + version "3.0.5" + resolved "https://registry.yarnpkg.com/@types/hast/-/hast-3.0.5.tgz#48020de4c0e63492f4ca9db42068c108f68b7f8f" + integrity sha512-rp/ezSWaD1m44dPKICGhiskI13nVr7qTloFwDa/IYkhhf5nzwP+zIQcIJh3WIFSBOy/H1PzB40jPjMDksN4F+g== dependencies: "@types/unist" "*" "@types/history@^4.7.11": version "4.7.11" - resolved "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz" + resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.11.tgz#56588b17ae8f50c53983a524fc3cc47437969d64" integrity sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA== "@types/html-minifier-terser@^6.0.0": version "6.1.0" - resolved "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== "@types/http-cache-semantics@^4.0.2": - version "4.0.4" - resolved "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz" - integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + version "4.2.0" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#f6a7788f438cbfde15f29acad46512b4c01913b3" + integrity sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q== "@types/http-errors@*": version "2.0.5" - resolved "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.5.tgz#5b749ab2b16ba113423feb1a64a95dcd30398472" integrity sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg== "@types/http-proxy@^1.17.8": version "1.17.17" - resolved "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.17.tgz" + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.17.tgz#d9e2c4571fe3507343cb210cd41790375e59a533" integrity sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw== dependencies: "@types/node" "*" "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": version "2.0.6" - resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== "@types/istanbul-lib-report@*": version "3.0.3" - resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-reports@^3.0.0": version "3.0.4" - resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== dependencies: "@types/istanbul-lib-report" "*" -"@types/json-schema@*", "@types/json-schema@^7.0.15", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": +"@types/json-schema@^7.0.15", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": version "7.0.15" - resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/mdast@^4.0.0", "@types/mdast@^4.0.2": version "4.0.4" - resolved "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz" + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-4.0.4.tgz#7ccf72edd2f1aa7dd3437e180c64373585804dd6" integrity sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA== dependencies: "@types/unist" "*" "@types/mdx@^2.0.0": - version "2.0.13" - resolved "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz" - integrity sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw== + version "2.0.14" + resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.14.tgz#c1e54113265b152021ab0afe0434e3cadd90bfe3" + integrity sha512-T48PeuJtvLosNTPVhfnIp3i/n3a4g4Bad7YCq5k64D4u7NwDrAotikQ+5+sjtUvBmxCMlbo3dVL+C2dP0rWHzg== "@types/mime@^1": version "1.3.5" - resolved "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690" integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== "@types/ms@*": version "2.1.0" - resolved "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz#052aa67a48eccc4309d7f0191b7e41434b90bb78" integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== -"@types/node-forge@^1.3.0": - version "1.3.14" - resolved "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.14.tgz" - integrity sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw== +"@types/node@*", "@types/node@>=13.7.0": + version "26.1.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-26.1.1.tgz#bad758d601e97d6cf457d204ee76a35fce7bd119" + integrity sha512-nxAkRSVkN1Y0JC1W8ky/fTfkGsMmcrRsbx+3XoZE+rMOX71kLYTV7fLXpqud1GpbpP5TuffXFqfX7fH2GgZREw== dependencies: - "@types/node" "*" - -"@types/node@*": - version "22.13.1" - resolved "https://registry.npmjs.org/@types/node/-/node-22.13.1.tgz" - integrity sha512-jK8uzQlrvXqEU91UxiK5J7pKHyzgnI1Qnl0QDHIgVGuolJhRb9EEl28Cj9b3rGR8B2lhFCtvIm5os8lFnO/1Ew== - dependencies: - undici-types "~6.20.0" + undici-types "~8.3.0" "@types/node@^17.0.5": version "17.0.45" - resolved "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz" + resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== "@types/prismjs@^1.26.0": - version "1.26.5" - resolved "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.5.tgz" - integrity sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ== - -"@types/prop-types@*": - version "15.7.14" - resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz" - integrity sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ== + version "1.26.6" + resolved "https://registry.yarnpkg.com/@types/prismjs/-/prismjs-1.26.6.tgz#6ea27c126d645319ae4f7055eda63a9e835c0187" + integrity sha512-vqlvI7qlMvcCBbVe0AKAb4f97//Hy0EBTaiW8AalRnG/xAN5zOiWWyrNqNXeq8+KAuvRewjCVY1+IPxk4RdNYw== "@types/qs@*": - version "6.14.0" - resolved "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz" - integrity sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ== + version "6.15.1" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.15.1.tgz#8606884272c63f0db96986bd3548650d8a9388bf" + integrity sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw== "@types/range-parser@*": version "1.2.7" - resolved "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb" integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== "@types/react-router-config@*", "@types/react-router-config@^5.0.7": version "5.0.11" - resolved "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.11.tgz" + resolved "https://registry.yarnpkg.com/@types/react-router-config/-/react-router-config-5.0.11.tgz#2761a23acc7905a66a94419ee40294a65aaa483a" integrity sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw== dependencies: "@types/history" "^4.7.11" @@ -3258,7 +3612,7 @@ "@types/react-router-dom@*": version "5.3.3" - resolved "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz" + resolved "https://registry.yarnpkg.com/@types/react-router-dom/-/react-router-dom-5.3.3.tgz#e9d6b4a66fcdbd651a5f106c2656a30088cc1e83" integrity sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw== dependencies: "@types/history" "^4.7.11" @@ -3267,47 +3621,46 @@ "@types/react-router@*", "@types/react-router@^5.1.0": version "5.1.20" - resolved "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz" + resolved "https://registry.yarnpkg.com/@types/react-router/-/react-router-5.1.20.tgz#88eccaa122a82405ef3efbcaaa5dcdd9f021387c" integrity sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q== dependencies: "@types/history" "^4.7.11" "@types/react" "*" "@types/react@*": - version "18.3.23" - resolved "https://registry.npmjs.org/@types/react/-/react-18.3.23.tgz" - integrity sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w== + version "19.2.17" + resolved "https://registry.yarnpkg.com/@types/react/-/react-19.2.17.tgz#dccac365baa0f1734ec270ff4b51c89465e8dc7f" + integrity sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw== dependencies: - "@types/prop-types" "*" - csstype "^3.0.2" + csstype "^3.2.2" "@types/resolve@1.20.2": version "1.20.2" - resolved "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz" + resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.20.2.tgz#97d26e00cd4a0423b4af620abecf3e6f442b7975" integrity sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q== "@types/retry@0.12.2": version "0.12.2" - resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz" + resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a" integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== "@types/sax@^1.2.1": version "1.2.7" - resolved "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz" + resolved "https://registry.yarnpkg.com/@types/sax/-/sax-1.2.7.tgz#ba5fe7df9aa9c89b6dff7688a19023dd2963091d" integrity sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A== dependencies: "@types/node" "*" "@types/send@*": version "1.2.1" - resolved "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/@types/send/-/send-1.2.1.tgz#6a784e45543c18c774c049bff6d3dbaf045c9c74" integrity sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ== dependencies: "@types/node" "*" "@types/send@<1": version "0.17.6" - resolved "https://registry.npmjs.org/@types/send/-/send-0.17.6.tgz" + resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.6.tgz#aeb5385be62ff58a52cd5459daa509ae91651d25" integrity sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og== dependencies: "@types/mime" "^1" @@ -3315,74 +3668,85 @@ "@types/serve-index@^1.9.4": version "1.9.4" - resolved "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz" + resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.4.tgz#e6ae13d5053cb06ed36392110b4f9a49ac4ec898" integrity sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug== dependencies: "@types/express" "*" "@types/serve-static@^1", "@types/serve-static@^1.15.5": version "1.15.10" - resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.10.tgz" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.10.tgz#768169145a778f8f5dfcb6360aead414a3994fee" integrity sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw== dependencies: "@types/http-errors" "*" "@types/node" "*" "@types/send" "<1" +"@types/serve-static@^2": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-2.2.0.tgz#d4a447503ead0d1671132d1ab6bd58b805d8de6a" + integrity sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ== + dependencies: + "@types/http-errors" "*" + "@types/node" "*" + "@types/sockjs@^0.3.36": version "0.3.36" - resolved "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz" + resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.36.tgz#ce322cf07bcc119d4cbf7f88954f3a3bd0f67535" integrity sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q== dependencies: "@types/node" "*" "@types/trusted-types@^2.0.2", "@types/trusted-types@^2.0.7": version "2.0.7" - resolved "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz" + resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.7.tgz#baccb07a970b91707df3a3e8ba6896c57ead2d11" integrity sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw== "@types/unist@*", "@types/unist@^3.0.0": version "3.0.3" - resolved "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.3.tgz#acaab0f919ce69cce629c2d4ed2eb4adc1b6c20c" integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q== "@types/unist@^2.0.0": version "2.0.11" - resolved "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.11.tgz#11af57b127e32487774841f7a4e54eab166d03c4" integrity sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA== "@types/ws@^8.5.10": version "8.18.1" - resolved "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.18.1.tgz#48464e4bf2ddfd17db13d845467f6070ffea4aa9" integrity sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg== dependencies: "@types/node" "*" "@types/yargs-parser@*": version "21.0.3" - resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== "@types/yargs@^17.0.8": version "17.0.35" - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.35.tgz#07013e46aa4d7d7d50a49e15604c1c5340d4eb24" integrity sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg== dependencies: "@types/yargs-parser" "*" "@ungap/structured-clone@^1.0.0": - version "1.3.0" - resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz" - integrity sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g== + version "1.3.3" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.3.3.tgz#094041e1a4cb1987f038335421281ac8be390bcc" + integrity sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg== -"@vercel/oidc@3.0.5": - version "3.0.5" - resolved "https://registry.npmjs.org/@vercel/oidc/-/oidc-3.0.5.tgz" - integrity sha512-fnYhv671l+eTTp48gB4zEsTW/YtRgRPnkI2nT7x6qw5rkI1Lq2hTmQIpHPgyThI0znLK+vX2n9XxKdXZ7BUbbw== +"@upsetjs/venn.js@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@upsetjs/venn.js/-/venn.js-2.0.0.tgz#3be192038cdda927aa4f8b22ab51af82abf47f34" + integrity sha512-WbBhLrooyePuQ1VZxrJjtLvTc4NVfpOyKx0sKqioq9bX1C1m7Jgykkn8gLrtwumBioXIqam8DLxp88Adbue6Hw== + optionalDependencies: + d3-selection "^3.0.0" + d3-transition "^3.0.1" "@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.14.1": version "1.14.1" - resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.14.1.tgz#a9f6a07f2b03c95c8d38c4536a1fdfb521ff55b6" integrity sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ== dependencies: "@webassemblyjs/helper-numbers" "1.13.2" @@ -3390,22 +3754,22 @@ "@webassemblyjs/floating-point-hex-parser@1.13.2": version "1.13.2" - resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz#fcca1eeddb1cc4e7b6eed4fc7956d6813b21b9fb" integrity sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA== "@webassemblyjs/helper-api-error@1.13.2": version "1.13.2" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz#e0a16152248bc38daee76dd7e21f15c5ef3ab1e7" integrity sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ== "@webassemblyjs/helper-buffer@1.14.1": version "1.14.1" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz#822a9bc603166531f7d5df84e67b5bf99b72b96b" integrity sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA== "@webassemblyjs/helper-numbers@1.13.2": version "1.13.2" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz#dbd932548e7119f4b8a7877fd5a8d20e63490b2d" integrity sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA== dependencies: "@webassemblyjs/floating-point-hex-parser" "1.13.2" @@ -3414,12 +3778,12 @@ "@webassemblyjs/helper-wasm-bytecode@1.13.2": version "1.13.2" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz#e556108758f448aae84c850e593ce18a0eb31e0b" integrity sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA== "@webassemblyjs/helper-wasm-section@1.14.1": version "1.14.1" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz#9629dda9c4430eab54b591053d6dc6f3ba050348" integrity sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -3429,26 +3793,26 @@ "@webassemblyjs/ieee754@1.13.2": version "1.13.2" - resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz#1c5eaace1d606ada2c7fd7045ea9356c59ee0dba" integrity sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw== dependencies: "@xtuc/ieee754" "^1.2.0" "@webassemblyjs/leb128@1.13.2": version "1.13.2" - resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.13.2.tgz#57c5c3deb0105d02ce25fa3fd74f4ebc9fd0bbb0" integrity sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw== dependencies: "@xtuc/long" "4.2.2" "@webassemblyjs/utf8@1.13.2": version "1.13.2" - resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.13.2.tgz#917a20e93f71ad5602966c2d685ae0c6c21f60f1" integrity sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ== "@webassemblyjs/wasm-edit@^1.14.1": version "1.14.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz#ac6689f502219b59198ddec42dcd496b1004d597" integrity sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -3462,7 +3826,7 @@ "@webassemblyjs/wasm-gen@1.14.1": version "1.14.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz#991e7f0c090cb0bb62bbac882076e3d219da9570" integrity sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -3473,7 +3837,7 @@ "@webassemblyjs/wasm-opt@1.14.1": version "1.14.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz#e6f71ed7ccae46781c206017d3c14c50efa8106b" integrity sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -3483,7 +3847,7 @@ "@webassemblyjs/wasm-parser@1.14.1", "@webassemblyjs/wasm-parser@^1.14.1": version "1.14.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz#b3e13f1893605ca78b52c68e54cf6a865f90b9fb" integrity sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -3495,7 +3859,7 @@ "@webassemblyjs/wast-printer@1.14.1": version "1.14.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz#3bb3e9638a8ae5fdaf9610e7a06b4d9f9aa6fe07" integrity sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -3503,17 +3867,25 @@ "@xtuc/ieee754@^1.2.0": version "1.2.0" - resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== "@xtuc/long@4.2.2": version "4.2.2" - resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== -accepts@~1.3.4, accepts@~1.3.8: +accepts@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-2.0.0.tgz#bbcf4ba5075467f3f2131eab3cffc73c2f5d7895" + integrity sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng== + dependencies: + mime-types "^3.0.0" + negotiator "^1.0.0" + +accepts@~1.3.8: version "1.3.8" - resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== dependencies: mime-types "~2.1.34" @@ -3521,72 +3893,67 @@ accepts@~1.3.4, accepts@~1.3.8: acorn-import-phases@^1.0.3: version "1.0.4" - resolved "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz#16eb850ba99a056cb7cbfe872ffb8972e18c8bd7" integrity sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ== acorn-jsx@^5.0.0: version "5.3.2" - resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== acorn-walk@^8.0.0: - version "8.3.4" - resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz" - integrity sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g== + version "8.3.5" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.5.tgz#8a6b8ca8fc5b34685af15dabb44118663c296496" + integrity sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw== dependencies: acorn "^8.11.0" -acorn@^8.0.0, acorn@^8.0.4, acorn@^8.11.0, acorn@^8.14.0, acorn@^8.15.0, acorn@^8.8.2: - version "8.15.0" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz" - integrity sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg== +acorn@^8.0.0, acorn@^8.0.4, acorn@^8.11.0, acorn@^8.15.0, acorn@^8.16.0: + version "8.17.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.17.0.tgz#1785adb84faf8d8add10369b93826fc2bd08f1fe" + integrity sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg== -address@^1.0.1: - version "1.2.2" - resolved "https://registry.npmjs.org/address/-/address-1.2.2.tgz" - integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== +address@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/address/-/address-2.0.3.tgz#e910900615db3d8a20c040d4c710631062fc4ba8" + integrity sha512-XNAb/a6TCqou+TufU8/u11HCu9x1gYvOoxLwtlXgIqmkrYQADVv6ljyW2zwiPhHz9R1gItAWpuDrdJMmrOBFEA== + +adm-zip@^0.5.16: + version "0.5.18" + resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.5.18.tgz#283a05f2bf1e3fd315f0f31cde29b7a6e3c1619d" + integrity sha512-ufJnssQGbxzLNS1Ho9bCtX4rQKCCvoVuDLHoJyc3F9dOGDB4BkWs2Ci0kv53lqocAEQ/Cbi+I2XCsNYGqVYqng== aggregate-error@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== dependencies: clean-stack "^2.0.0" indent-string "^4.0.0" -ai@5.0.110, ai@^5.0.30: - version "5.0.110" - resolved "https://registry.npmjs.org/ai/-/ai-5.0.110.tgz" - integrity sha512-ZBq+5bvef4e5qoIG4U6NJ1UpCPWGjuaWERHXbHu2T2ND3c02nJ2zlnjm+N6zAAplQPxwqm7Sb16mrRX5uQNWtQ== - dependencies: - "@ai-sdk/gateway" "2.0.19" - "@ai-sdk/provider" "2.0.0" - "@ai-sdk/provider-utils" "3.0.18" - "@opentelemetry/api" "1.9.0" - ajv-formats@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== dependencies: ajv "^8.0.0" ajv-keywords@^3.5.2: version "3.5.2" - resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== ajv-keywords@^5.1.0: version "5.1.0" - resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== dependencies: fast-deep-equal "^3.1.3" ajv@^6.12.5: - version "6.12.6" - resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + version "6.15.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.15.0.tgz#07e982c74626167aa7a2495c53817892d7139492" + integrity sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw== dependencies: fast-deep-equal "^3.1.1" fast-json-stable-stringify "^2.0.0" @@ -3594,9 +3961,9 @@ ajv@^6.12.5: uri-js "^4.2.2" ajv@^8.0.0, ajv@^8.9.0: - version "8.17.1" - resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz" - integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== + version "8.20.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.20.0.tgz#304b3636add88ba7d936760dd50ece006dea95f9" + integrity sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA== dependencies: fast-deep-equal "^3.1.3" fast-uri "^3.0.1" @@ -3604,86 +3971,79 @@ ajv@^8.0.0, ajv@^8.9.0: require-from-string "^2.0.2" algoliasearch-helper@^3.26.0: - version "3.26.1" - resolved "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.26.1.tgz" - integrity sha512-CAlCxm4fYBXtvc5MamDzP6Svu8rW4z9me4DCBY1rQ2UDJ0u0flWmusQ8M3nOExZsLLRcUwUPoRAPMrhzOG3erw== + version "3.29.2" + resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.29.2.tgz#ceb699ae6ec9bb088f8a2b781b66868222e9c23a" + integrity sha512-SaV+rZM3drExb0punEYYjT+sNcH74YFwN8ocjya7IDOyQvKWeQpEaSMVG3+IGTVos+feuatj7ljQ4BXlXdUp3w== dependencies: "@algolia/events" "^4.0.1" -algoliasearch@^5.28.0, algoliasearch@^5.37.0: - version "5.46.0" - resolved "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.46.0.tgz" - integrity sha512-7ML6fa2K93FIfifG3GMWhDEwT5qQzPTmoHKCTvhzGEwdbQ4n0yYUWZlLYT75WllTGJCJtNUI0C1ybN4BCegqvg== - dependencies: - "@algolia/abtesting" "1.12.0" - "@algolia/client-abtesting" "5.46.0" - "@algolia/client-analytics" "5.46.0" - "@algolia/client-common" "5.46.0" - "@algolia/client-insights" "5.46.0" - "@algolia/client-personalization" "5.46.0" - "@algolia/client-query-suggestions" "5.46.0" - "@algolia/client-search" "5.46.0" - "@algolia/ingestion" "1.46.0" - "@algolia/monitoring" "1.46.0" - "@algolia/recommend" "5.46.0" - "@algolia/requester-browser-xhr" "5.46.0" - "@algolia/requester-fetch" "5.46.0" - "@algolia/requester-node-http" "5.46.0" +algoliasearch@^5.37.0: + version "5.56.0" + resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-5.56.0.tgz#042f1a39dfa951356206f43dece1c8d1ea1721bd" + integrity sha512-PrqppUmhT4ENdas2pH9caE7efUcxy6EcSFhWzosiVuQBzu2tQ5yLTI6jwomT/1cuBnivzGfxiJCqDNN9FRRh+Q== + dependencies: + "@algolia/abtesting" "1.22.0" + "@algolia/client-abtesting" "5.56.0" + "@algolia/client-analytics" "5.56.0" + "@algolia/client-common" "5.56.0" + "@algolia/client-insights" "5.56.0" + "@algolia/client-personalization" "5.56.0" + "@algolia/client-query-suggestions" "5.56.0" + "@algolia/client-search" "5.56.0" + "@algolia/ingestion" "1.56.0" + "@algolia/monitoring" "1.56.0" + "@algolia/recommend" "5.56.0" + "@algolia/requester-browser-xhr" "5.56.0" + "@algolia/requester-fetch" "5.56.0" + "@algolia/requester-node-http" "5.56.0" ansi-align@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== dependencies: string-width "^4.1.0" -ansi-escapes@^4.3.2: - version "4.3.2" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - ansi-html-community@^0.0.8: version "0.0.8" - resolved "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz" + resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== ansi-regex@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-regex@^6.0.1: - version "6.1.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz" - integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== +ansi-regex@^6.2.2: + version "6.2.2" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz#60216eea464d864597ce2832000738a0589650c1" + integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg== -ansi-styles@^4.0.0, ansi-styles@^4.1.0: +ansi-styles@^4.1.0: version "4.3.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" ansi-styles@^6.1.0: - version "6.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" - integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + version "6.2.3" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz#c044d5dcc521a076413472597a1acb1f103c4041" + integrity sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg== ansis@^3.2.0: version "3.17.0" - resolved "https://registry.npmjs.org/ansis/-/ansis-3.17.0.tgz" + resolved "https://registry.yarnpkg.com/ansis/-/ansis-3.17.0.tgz#fa8d9c2a93fe7d1177e0c17f9eeb562a58a832d7" integrity sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg== any-promise@^1.0.0: version "1.3.0" - resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== anymatch@~3.1.2: version "3.1.3" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" @@ -3691,51 +4051,52 @@ anymatch@~3.1.2: arg@^5.0.0, arg@^5.0.2: version "5.0.2" - resolved "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - argparse@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== array-flatten@1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== array-union@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== +asn1js@^3.0.10, asn1js@^3.0.6: + version "3.0.10" + resolved "https://registry.yarnpkg.com/asn1js/-/asn1js-3.0.10.tgz#df26c874c8a8b41ca605efea47b2ad07551013dd" + integrity sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg== + dependencies: + pvtsutils "^1.3.6" + pvutils "^1.1.5" + tslib "^2.8.1" + astring@^1.8.0: version "1.9.0" - resolved "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz" + resolved "https://registry.yarnpkg.com/astring/-/astring-1.9.0.tgz#cc73e6062a7eb03e7d19c22d8b0b3451fd9bfeef" integrity sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg== -autoprefixer@^10.4.19, autoprefixer@^10.4.20, autoprefixer@^10.4.22: - version "10.4.22" - resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.22.tgz" - integrity sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg== +autoprefixer@^10.4.19, autoprefixer@^10.4.20, autoprefixer@^10.4.23: + version "10.5.4" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.5.4.tgz#3b7dd848b4155514a95ad1f6ce598844bea09697" + integrity sha512-MaU0U/za7N3r6brxD4YB/l4NSrFzLPlANv6wEuQVaIPlD3L4W9rFcQPbL/EilY9BHhHvhfcz3gInDLrEtWT4EA== dependencies: - browserslist "^4.27.0" - caniuse-lite "^1.0.30001754" + browserslist "^4.28.6" + caniuse-lite "^1.0.30001806" fraction.js "^5.3.4" - normalize-range "^0.1.2" picocolors "^1.1.1" postcss-value-parser "^4.2.0" babel-loader@^9.2.1: version "9.2.1" - resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.2.1.tgz#04c7835db16c246dd19ba0914418f3937797587b" integrity sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA== dependencies: find-cache-dir "^4.0.0" @@ -3743,69 +4104,92 @@ babel-loader@^9.2.1: babel-plugin-dynamic-import-node@^2.3.3: version "2.3.3" - resolved "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== dependencies: object.assign "^4.1.0" -babel-plugin-polyfill-corejs2@^0.4.14: - version "0.4.14" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz" - integrity sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg== +babel-plugin-polyfill-corejs2@^0.4.14, babel-plugin-polyfill-corejs2@^0.4.15: + version "0.4.17" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz#198f970f1c99a856b466d1187e88ce30bd199d91" + integrity sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w== dependencies: - "@babel/compat-data" "^7.27.7" - "@babel/helper-define-polyfill-provider" "^0.6.5" + "@babel/compat-data" "^7.28.6" + "@babel/helper-define-polyfill-provider" "^0.6.8" semver "^6.3.1" babel-plugin-polyfill-corejs3@^0.13.0: version "0.13.0" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz#bb7f6aeef7addff17f7602a08a6d19a128c30164" integrity sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A== dependencies: "@babel/helper-define-polyfill-provider" "^0.6.5" core-js-compat "^3.43.0" -babel-plugin-polyfill-regenerator@^0.6.5: - version "0.6.5" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz" - integrity sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg== +babel-plugin-polyfill-corejs3@^0.14.0: + version "0.14.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.14.2.tgz#6ac08d2f312affb70c4c69c0fbba4cb417ee5587" + integrity sha512-coWpDLJ410R781Npmn/SIBZEsAetR4xVi0SxLMXPaMO4lSf1MwnkGYMtkFxew0Dn8B3/CpbpYxN0JCgg8mn67g== dependencies: - "@babel/helper-define-polyfill-provider" "^0.6.5" + "@babel/helper-define-polyfill-provider" "^0.6.8" + core-js-compat "^3.48.0" + +babel-plugin-polyfill-regenerator@^0.6.5, babel-plugin-polyfill-regenerator@^0.6.6: + version "0.6.8" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz#8a6bfd5dd54239362b3d06ce47ac52b2d95d7721" + integrity sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.8" bail@^2.0.0: version "2.0.2" - resolved "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d" integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw== balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -baseline-browser-mapping@^2.9.0: - version "2.9.6" - resolved "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.6.tgz" - integrity sha512-v9BVVpOTLB59C9E7aSnmIF8h7qRsFpx+A2nugVMTszEOMcfjlZMsXRm4LF23I3Z9AJxc8ANpIvzbzONoX9VJlg== +baseline-browser-mapping@^2.10.44: + version "2.11.1" + resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.11.1.tgz#390b4714558634093df77add4acca0c5c0c1605e" + integrity sha512-HYXq73DDpCtNzOmrFsm9eSwCvWCql0RzqjpDzXN9EadiLJ4DNat0nsZ/Bzmy+Ud12mb4/zKDY0cQ805ZzN+i0A== batch@0.6.1: version "0.6.1" - resolved "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== big.js@^5.2.2: version "5.2.2" - resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== binary-extensions@^2.0.0: version "2.3.0" - resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== -body-parser@~1.20.3: - version "1.20.4" - resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz" - integrity sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA== +body-parser@^2.2.1: + version "2.3.0" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-2.3.0.tgz#6d8662f4d8c336028b8ac9aa24251b0ca64ba437" + integrity sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw== + dependencies: + bytes "^3.1.2" + content-type "^2.0.0" + debug "^4.4.3" + http-errors "^2.0.1" + iconv-lite "^0.7.2" + on-finished "^2.4.1" + qs "^6.15.2" + raw-body "^3.0.2" + type-is "^2.1.0" + +body-parser@~1.20.5: + version "1.20.6" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.6.tgz#60c789c78e0992d906da0a29d71ae01d15c1ed76" + integrity sha512-p5tAzS57i5MV9fZFDj9LeIiTZEufbSe2eDozP+ElheSUq1m74CRq1jI4mYNDdVs9vQztXFLuk/Gd6BWTdwRJ5g== dependencies: bytes "~3.1.2" content-type "~1.0.5" @@ -3815,27 +4199,32 @@ body-parser@~1.20.3: http-errors "~2.0.1" iconv-lite "~0.4.24" on-finished "~2.4.1" - qs "~6.14.0" + qs "~6.15.1" raw-body "~2.5.3" type-is "~1.6.18" unpipe "~1.0.0" bonjour-service@^1.2.1: - version "1.3.0" - resolved "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz" - integrity sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA== + version "1.4.3" + resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.4.3.tgz#5854e34a33ab5252a66cc31ffb46687e30c3a5f6" + integrity sha512-2Kd5UYlFUVgAKMTyuBLl6w49wqfOnbxHqmuH0oCl/n7TfAikR0zoowNOP5BU4dfXmm+Vr9JyEN370auSMx+CNg== dependencies: fast-deep-equal "^3.1.3" multicast-dns "^7.2.5" boolbase@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== +boolean@^3.0.1: + version "3.2.0" + resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" + integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw== + boxen@^6.2.1: version "6.2.1" - resolved "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-6.2.1.tgz#b098a2278b2cd2845deef2dff2efc38d329b434d" integrity sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw== dependencies: ansi-align "^3.0.1" @@ -3849,7 +4238,7 @@ boxen@^6.2.1: boxen@^7.0.0: version "7.1.1" - resolved "https://registry.npmjs.org/boxen/-/boxen-7.1.1.tgz" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-7.1.1.tgz#f9ba525413c2fec9cdb88987d835c4f7cad9c8f4" integrity sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog== dependencies: ansi-align "^3.0.1" @@ -3862,68 +4251,66 @@ boxen@^7.0.0: wrap-ansi "^8.1.0" brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + version "1.1.16" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.16.tgz#723d3a30c0558c225abc9fc479a73e14e26c3c2f" + integrity sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" -brace-expansion@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== - dependencies: - balanced-match "^1.0.0" - braces@^3.0.3, braces@~3.0.2: version "3.0.3" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: fill-range "^7.1.1" -browserslist@^4.0.0, browserslist@^4.23.0, browserslist@^4.24.0, browserslist@^4.27.0, browserslist@^4.28.0: - version "4.28.1" - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz" - integrity sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA== +browserslist@^4.0.0, browserslist@^4.23.0, browserslist@^4.24.0, browserslist@^4.28.1, browserslist@^4.28.6: + version "4.28.7" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.28.7.tgz#409046517fccd2e51cdc20f077454b7141184028" + integrity sha512-JxV13hNrFxqjOc8alRbq9dK1MM79NEXYpma2B2J4wAtpWS5zIEIKqWPGCl7N4o7Uc7B7itylh7SuDujATRyyTw== dependencies: - baseline-browser-mapping "^2.9.0" - caniuse-lite "^1.0.30001759" - electron-to-chromium "^1.5.263" - node-releases "^2.0.27" - update-browserslist-db "^1.2.0" + baseline-browser-mapping "^2.10.44" + caniuse-lite "^1.0.30001806" + electron-to-chromium "^1.5.393" + node-releases "^2.0.51" + update-browserslist-db "^1.2.3" buffer-from@^1.0.0: version "1.1.2" - resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== bundle-name@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-4.1.0.tgz#f3b96b34160d6431a19d7688135af7cfb8797889" integrity sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q== dependencies: run-applescript "^7.0.0" bytes@3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== -bytes@3.1.2, bytes@~3.1.2: +bytes@3.1.2, bytes@^3.1.2, bytes@~3.1.2: version "3.1.2" - resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== +bytestreamjs@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/bytestreamjs/-/bytestreamjs-2.0.1.tgz#a32947c7ce389a6fa11a09a9a563d0a45889535e" + integrity sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ== + cacheable-lookup@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz#3476a8215d046e5a3202a9209dd13fec1f933a27" integrity sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w== cacheable-request@^10.2.8: version "10.2.14" - resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-10.2.14.tgz#eb915b665fda41b79652782df3f553449c406b9d" integrity sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ== dependencies: "@types/http-cache-semantics" "^4.0.2" @@ -3934,27 +4321,27 @@ cacheable-request@^10.2.8: normalize-url "^8.0.0" responselike "^3.0.0" -call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: +call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== dependencies: es-errors "^1.3.0" function-bind "^1.1.2" call-bind@^1.0.8: - version "1.0.8" - resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz" - integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + version "1.0.9" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.9.tgz#39a644700c80bc7d0ca9102fc6d1d43b2fd7eee7" + integrity sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ== dependencies: - call-bind-apply-helpers "^1.0.0" - es-define-property "^1.0.0" - get-intrinsic "^1.2.4" + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + get-intrinsic "^1.3.0" set-function-length "^1.2.2" call-bound@^1.0.2, call-bound@^1.0.3: version "1.0.4" - resolved "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a" integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== dependencies: call-bind-apply-helpers "^1.0.2" @@ -3962,12 +4349,12 @@ call-bound@^1.0.2, call-bound@^1.0.3: callsites@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camel-case@^4.1.2: version "4.1.2" - resolved "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== dependencies: pascal-case "^3.1.2" @@ -3975,22 +4362,22 @@ camel-case@^4.1.2: camelcase-css@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== camelcase@^6.2.0: version "6.3.0" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== camelcase@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-7.0.1.tgz#f02e50af9fd7782bc8b88a3558c32fd3a388f048" integrity sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw== caniuse-api@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== dependencies: browserslist "^4.0.0" @@ -3998,57 +4385,57 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001754, caniuse-lite@^1.0.30001759: - version "1.0.30001760" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001760.tgz" - integrity sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001806: + version "1.0.30001806" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz#1bc8e502b723fa393455dfbedd5ccec0c29bb74e" + integrity sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw== ccount@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5" integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg== chalk@^4.0.0, chalk@^4.1.2: version "4.1.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" chalk@^5.0.1, chalk@^5.2.0: - version "5.4.1" - resolved "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz" - integrity sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w== + version "5.6.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.6.2.tgz#b1238b6e23ea337af71c7f8a295db5af0c158aea" + integrity sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA== char-regex@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== character-entities-html4@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== character-entities-legacy@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b" integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== character-entities@^2.0.0: version "2.0.2" - resolved "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.2.tgz#2d09c2e72cd9523076ccb21157dff66ad43fcc22" integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ== character-reference-invalid@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9" integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw== cheerio-select@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== dependencies: boolbase "^1.0.0" @@ -4060,7 +4447,7 @@ cheerio-select@^2.1.0: cheerio@1.0.0-rc.12: version "1.0.0-rc.12" - resolved "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.12.tgz#788bf7466506b1c6bf5fae51d24a2c4d62e47683" integrity sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q== dependencies: cheerio-select "^2.1.0" @@ -4073,7 +4460,7 @@ cheerio@1.0.0-rc.12: cheerio@^1.0.0: version "1.2.0" - resolved "https://registry.npmjs.org/cheerio/-/cheerio-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.2.0.tgz#f23b777c49021ead7475dcf3390d3535a7f896d6" integrity sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg== dependencies: cheerio-select "^2.1.0" @@ -4088,28 +4475,9 @@ cheerio@^1.0.0: undici "^7.19.0" whatwg-mimetype "^4.0.0" -chevrotain-allstar@~0.3.0: - version "0.3.1" - resolved "https://registry.npmjs.org/chevrotain-allstar/-/chevrotain-allstar-0.3.1.tgz" - integrity sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw== - dependencies: - lodash-es "^4.17.21" - -chevrotain@~11.0.3: - version "11.0.3" - resolved "https://registry.npmjs.org/chevrotain/-/chevrotain-11.0.3.tgz" - integrity sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw== - dependencies: - "@chevrotain/cst-dts-gen" "11.0.3" - "@chevrotain/gast" "11.0.3" - "@chevrotain/regexp-to-ast" "11.0.3" - "@chevrotain/types" "11.0.3" - "@chevrotain/utils" "11.0.3" - lodash-es "4.17.21" - chokidar@^3.5.3, chokidar@^3.6.0: version "3.6.0" - resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== dependencies: anymatch "~3.1.2" @@ -4124,34 +4492,34 @@ chokidar@^3.5.3, chokidar@^3.6.0: chrome-trace-event@^1.0.2: version "1.0.4" - resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz#05bffd7ff928465093314708c93bdfa9bd1f0f5b" integrity sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ== ci-info@^3.2.0: version "3.9.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== clean-css@^5.2.2, clean-css@^5.3.3, clean-css@~5.3.2: version "5.3.3" - resolved "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.3.tgz#b330653cd3bd6b75009cc25c714cae7b93351ccd" integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg== dependencies: source-map "~0.6.0" clean-stack@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== cli-boxes@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-3.0.0.tgz#71a10c716feeba005e4504f36329ef0b17cf3145" integrity sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g== cli-table3@^0.6.3: version "0.6.5" - resolved "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz" + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.5.tgz#013b91351762739c16a9567c21a04632e449bf2f" integrity sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ== dependencies: string-width "^4.2.0" @@ -4160,7 +4528,7 @@ cli-table3@^0.6.3: clone-deep@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== dependencies: is-plain-object "^2.0.4" @@ -4169,96 +4537,96 @@ clone-deep@^4.0.1: clsx@^2.0.0, clsx@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.1.tgz#eed397c9fd8bd882bfb18deab7102049a2f32999" integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA== collapse-white-space@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-2.1.0.tgz#640257174f9f42c740b40f3b55ee752924feefca" integrity sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw== color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" color-name@~1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== colord@^2.9.3: version "2.9.3" - resolved "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz" + resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== colorette@^2.0.10: version "2.0.20" - resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== combine-promises@^1.1.0: version "1.2.0" - resolved "https://registry.npmjs.org/combine-promises/-/combine-promises-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/combine-promises/-/combine-promises-1.2.0.tgz#5f2e68451862acf85761ded4d9e2af7769c2ca6a" integrity sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ== comlink@^4.4.2: version "4.4.2" - resolved "https://registry.npmjs.org/comlink/-/comlink-4.4.2.tgz" + resolved "https://registry.yarnpkg.com/comlink/-/comlink-4.4.2.tgz#cbbcd82742fbebc06489c28a183eedc5c60a2bca" integrity sha512-OxGdvBmJuNKSCMO4NTl1L47VRp6xn2wG4F/2hYzB6tiCb709otOxtEYCSvK80PtjODfXXZu8ds+Nw5kVCjqd2g== comma-separated-tokens@^2.0.0: version "2.0.3" - resolved "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee" integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== commander@7, commander@^7.2.0: version "7.2.0" - resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== commander@^10.0.0: version "10.0.1" - resolved "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== commander@^2.20.0: version "2.20.3" - resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== commander@^4.0.0: version "4.1.1" - resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== commander@^5.1.0: version "5.1.0" - resolved "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== commander@^8.3.0: version "8.3.0" - resolved "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== common-path-prefix@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== compressible@~2.0.18: version "2.0.18" - resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== dependencies: mime-db ">= 1.43.0 < 2" -compression@^1.7.4: +compression@^1.8.1: version "1.8.1" - resolved "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.8.1.tgz#4a45d909ac16509195a9a28bd91094889c180d79" integrity sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w== dependencies: bytes "3.1.2" @@ -4271,22 +4639,12 @@ compression@^1.7.4: concat-map@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -confbox@^0.1.8: - version "0.1.8" - resolved "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz" - integrity sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w== - -confbox@^0.2.2: - version "0.2.2" - resolved "https://registry.npmjs.org/confbox/-/confbox-0.2.2.tgz" - integrity sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ== - config-chain@^1.1.11: version "1.1.13" - resolved "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz" + resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== dependencies: ini "^1.3.4" @@ -4294,7 +4652,7 @@ config-chain@^1.1.11: configstore@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-6.0.0.tgz#49eca2ebc80983f77e09394a1a56e0aca8235566" integrity sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA== dependencies: dot-prop "^6.0.1" @@ -4305,49 +4663,69 @@ configstore@^6.0.0: connect-history-api-fallback@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== consola@^3.2.3: version "3.4.2" - resolved "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz" + resolved "https://registry.yarnpkg.com/consola/-/consola-3.4.2.tgz#5af110145397bb67afdab77013fdc34cae590ea7" integrity sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA== content-disposition@0.5.2: version "0.5.2" - resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" integrity sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA== +content-disposition@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-1.1.0.tgz#f3db789c752d45564cc7e9e1e0b31790d4a38e17" + integrity sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g== + content-disposition@~0.5.4: version "0.5.4" - resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== dependencies: safe-buffer "5.2.1" -content-type@~1.0.4, content-type@~1.0.5: +content-type@^1.0.5, content-type@~1.0.4, content-type@~1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== +content-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-2.0.0.tgz#2fb3ede69dffa0af78ca7c4ce7589680638b56df" + integrity sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ== + convert-source-map@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== +cookie-signature@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.2.2.tgz#57c7fc3cc293acab9fec54d73e15690ebe4a1793" + integrity sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg== + cookie-signature@~1.0.6: version "1.0.7" - resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.7.tgz#ab5dd7ab757c54e60f37ef6550f481c426d10454" integrity sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA== -cookie@~0.7.1: +cookie@^0.7.1, cookie@~0.7.1: version "0.7.2" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.2.tgz#556369c472a2ba910f2979891b526b3436237ed7" integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== +copy-text-to-clipboard@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.2.tgz#99bc79db3f2d355ec33a08d573aff6804491ddb9" + integrity sha512-T6SqyLd1iLuqPA90J5N4cTalrtovCySh58iiZDGJ6FGznbclKh4UI+FGacQSgFzwKG77W7XT5gwbVEbd9cIH1A== + copy-webpack-plugin@^11.0.0: version "11.0.0" - resolved "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz" + resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz#96d4dbdb5f73d02dd72d0528d1958721ab72e04a" integrity sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ== dependencies: fast-glob "^3.2.11" @@ -4357,45 +4735,40 @@ copy-webpack-plugin@^11.0.0: schema-utils "^4.0.0" serialize-javascript "^6.0.0" -core-js-compat@^3.43.0: - version "3.47.0" - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.47.0.tgz" - integrity sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ== +core-js-compat@^3.43.0, core-js-compat@^3.48.0: + version "3.49.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.49.0.tgz#06145447d92f4aaf258a0c44f24b47afaeaffef6" + integrity sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA== dependencies: - browserslist "^4.28.0" - -core-js-pure@^3.43.0: - version "3.47.0" - resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.47.0.tgz" - integrity sha512-BcxeDbzUrRnXGYIVAGFtcGQVNpFcUhVjr6W7F8XktvQW2iJP9e66GP6xdKotCRFlrxBvNIBrhwKteRXqMV86Nw== + browserslist "^4.28.1" core-js@^3.31.1: - version "3.40.0" - resolved "https://registry.npmjs.org/core-js/-/core-js-3.40.0.tgz" - integrity sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ== + version "3.49.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.49.0.tgz#8b4d520ac034311fa21aa616f017ada0e0dbbddd" + integrity sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg== core-util-is@~1.0.0: version "1.0.3" - resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== cose-base@^1.0.0: version "1.0.3" - resolved "https://registry.npmjs.org/cose-base/-/cose-base-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/cose-base/-/cose-base-1.0.3.tgz#650334b41b869578a543358b80cda7e0abe0a60a" integrity sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg== dependencies: layout-base "^1.0.0" cose-base@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/cose-base/-/cose-base-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/cose-base/-/cose-base-2.2.0.tgz#1c395c35b6e10bb83f9769ca8b817d614add5c01" integrity sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g== dependencies: layout-base "^2.0.0" cosmiconfig@^8.1.3, cosmiconfig@^8.3.5: version "8.3.6" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== dependencies: import-fresh "^3.3.0" @@ -4403,9 +4776,9 @@ cosmiconfig@^8.1.3, cosmiconfig@^8.3.5: parse-json "^5.2.0" path-type "^4.0.0" -cross-spawn@^7.0.0, cross-spawn@^7.0.3: +cross-spawn@^7.0.3: version "7.0.6" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" @@ -4414,26 +4787,26 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.3: crypto-random-string@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-4.0.0.tgz#5a3cc53d7dd86183df5da0312816ceeeb5bb1fc2" integrity sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA== dependencies: type-fest "^1.0.1" css-blank-pseudo@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-7.0.1.tgz" + resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-7.0.1.tgz#32020bff20a209a53ad71b8675852b49e8d57e46" integrity sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag== dependencies: postcss-selector-parser "^7.0.0" css-declaration-sorter@^7.2.0: - version "7.3.0" - resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.3.0.tgz" - integrity sha512-LQF6N/3vkAMYF4xoHLJfG718HRJh34Z8BnNhd6bosOMIVjMlhuZK5++oZa3uYAgrI5+7x2o27gUqTR2U/KjUOQ== + version "7.4.0" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-7.4.0.tgz#9c215fbda2dcf4083bae69f125688158ae847deb" + integrity sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw== css-has-pseudo@^7.0.3: version "7.0.3" - resolved "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-7.0.3.tgz" + resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-7.0.3.tgz#a5ee2daf5f70a2032f3cefdf1e36e7f52a243873" integrity sha512-oG+vKuGyqe/xvEMoxAQrhi7uY16deJR3i7wwhBerVrGQKSqUC5GiOVxTpM9F9B9hw0J+eKeOWLH7E9gZ1Dr5rA== dependencies: "@csstools/selector-specificity" "^5.0.0" @@ -4442,7 +4815,7 @@ css-has-pseudo@^7.0.3: css-loader@^6.11.0: version "6.11.0" - resolved "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.11.0.tgz#33bae3bf6363d0a7c2cf9031c96c744ff54d85ba" integrity sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g== dependencies: icss-utils "^5.1.0" @@ -4456,7 +4829,7 @@ css-loader@^6.11.0: css-minimizer-webpack-plugin@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz#33effe662edb1a0bf08ad633c32fa75d0f7ec565" integrity sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg== dependencies: "@jridgewell/trace-mapping" "^0.3.18" @@ -4468,12 +4841,12 @@ css-minimizer-webpack-plugin@^5.0.1: css-prefers-color-scheme@^10.0.0: version "10.0.0" - resolved "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz" + resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz#ba001b99b8105b8896ca26fc38309ddb2278bd3c" integrity sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ== css-select@^4.1.3: version "4.3.0" - resolved "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== dependencies: boolbase "^1.0.0" @@ -4484,7 +4857,7 @@ css-select@^4.1.3: css-select@^5.1.0: version "5.2.2" - resolved "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.2.2.tgz#01b6e8d163637bb2dd6c982ca4ed65863682786e" integrity sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw== dependencies: boolbase "^1.0.0" @@ -4495,7 +4868,7 @@ css-select@^5.1.0: css-tree@^2.3.1: version "2.3.1" - resolved "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20" integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw== dependencies: mdn-data "2.0.30" @@ -4503,30 +4876,30 @@ css-tree@^2.3.1: css-tree@~2.2.0: version "2.2.1" - resolved "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032" integrity sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA== dependencies: mdn-data "2.0.28" source-map-js "^1.0.1" css-what@^6.0.1, css-what@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + version "6.2.2" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.2.2.tgz#cdcc8f9b6977719fdfbd1de7aec24abf756b9dea" + integrity sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA== -cssdb@^8.5.2: - version "8.5.2" - resolved "https://registry.npmjs.org/cssdb/-/cssdb-8.5.2.tgz" - integrity sha512-Pmoj9RmD8RIoIzA2EQWO4D4RMeDts0tgAH0VXdlNdxjuBGI3a9wMOIcUwaPNmD4r2qtIa06gqkIf7sECl+cBCg== +cssdb@^8.6.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-8.9.0.tgz#e24d44824895957a4a5c75ba72c910f94e7aed77" + integrity sha512-J8jOU/hLjaXcO1LldOLraJSQpfLXRKof0I7mtbRyOy2AAXgqst0x9rlgi2qXeD6d0ou3ZLqcPAMqYVbpCbrxEw== cssesc@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== cssnano-preset-advanced@^6.1.2: version "6.1.2" - resolved "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-6.1.2.tgz" + resolved "https://registry.yarnpkg.com/cssnano-preset-advanced/-/cssnano-preset-advanced-6.1.2.tgz#82b090872b8f98c471f681d541c735acf8b94d3f" integrity sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ== dependencies: autoprefixer "^10.4.19" @@ -4539,7 +4912,7 @@ cssnano-preset-advanced@^6.1.2: cssnano-preset-default@^6.1.2: version "6.1.2" - resolved "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz#adf4b89b975aa775f2750c89dbaf199bbd9da35e" integrity sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg== dependencies: browserslist "^4.23.0" @@ -4575,12 +4948,12 @@ cssnano-preset-default@^6.1.2: cssnano-utils@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-4.0.2.tgz#56f61c126cd0f11f2eef1596239d730d9fceff3c" integrity sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ== cssnano@^6.0.1, cssnano@^6.1.2: version "6.1.2" - resolved "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-6.1.2.tgz#4bd19e505bd37ee7cf0dc902d3d869f6d79c66b8" integrity sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA== dependencies: cssnano-preset-default "^6.1.2" @@ -4588,57 +4961,57 @@ cssnano@^6.0.1, cssnano@^6.1.2: csso@^5.0.5: version "5.0.5" - resolved "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz" + resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== dependencies: css-tree "~2.2.0" -csstype@^3.0.2: - version "3.1.3" - resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz" - integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== +csstype@^3.2.2: + version "3.2.3" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.2.3.tgz#ec48c0f3e993e50648c86da559e2610995cf989a" + integrity sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ== cytoscape-cose-bilkent@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz#762fa121df9930ffeb51a495d87917c570ac209b" integrity sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ== dependencies: cose-base "^1.0.0" cytoscape-fcose@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz#e4d6f6490df4fab58ae9cea9e5c3ab8d7472f471" integrity sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ== dependencies: cose-base "^2.2.0" -cytoscape@^3.29.3: - version "3.33.1" - resolved "https://registry.npmjs.org/cytoscape/-/cytoscape-3.33.1.tgz" - integrity sha512-iJc4TwyANnOGR1OmWhsS9ayRS3s+XQ185FmuHObThD+5AeJCakAAbWv8KimMTt08xCCLNgneQwFp+JRJOr9qGQ== +cytoscape@^3.33.3: + version "3.34.0" + resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.34.0.tgz#5fbe2eb1cf76b070a8ecd5647c35f65aa097c9c6" + integrity sha512-62rNSrioXw93uliKFBwjukeQyeWwH2PqDrTac31r2P6464u3AUvTk0xS4LVvT251g7IgkFunrI48ZEZGjywSOg== "d3-array@1 - 2": version "2.12.1" - resolved "https://registry.npmjs.org/d3-array/-/d3-array-2.12.1.tgz" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.12.1.tgz#e20b41aafcdffdf5d50928004ececf815a465e81" integrity sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ== dependencies: internmap "^1.0.0" "d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.2.0: version "3.2.4" - resolved "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5" integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg== dependencies: internmap "1 - 2" d3-axis@3: version "3.0.0" - resolved "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/d3-axis/-/d3-axis-3.0.0.tgz#c42a4a13e8131d637b745fc2973824cfeaf93322" integrity sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw== d3-brush@3: version "3.0.0" - resolved "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-3.0.0.tgz#6f767c4ed8dcb79de7ede3e1c0f89e63ef64d31c" integrity sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ== dependencies: d3-dispatch "1 - 3" @@ -4649,38 +5022,38 @@ d3-brush@3: d3-chord@3: version "3.0.1" - resolved "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-chord/-/d3-chord-3.0.1.tgz#d156d61f485fce8327e6abf339cb41d8cbba6966" integrity sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g== dependencies: d3-path "1 - 3" "d3-color@1 - 3", d3-color@3: version "3.1.0" - resolved "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== d3-contour@4: version "4.0.2" - resolved "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/d3-contour/-/d3-contour-4.0.2.tgz#bb92063bc8c5663acb2422f99c73cbb6c6ae3bcc" integrity sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA== dependencies: d3-array "^3.2.0" d3-delaunay@6: version "6.0.4" - resolved "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz" + resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-6.0.4.tgz#98169038733a0a5babbeda55054f795bb9e4a58b" integrity sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A== dependencies: delaunator "5" "d3-dispatch@1 - 3", d3-dispatch@3: version "3.0.1" - resolved "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz#5fc75284e9c2375c36c839411a0cf550cbfc4d5e" integrity sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg== "d3-drag@2 - 3", d3-drag@3: version "3.0.0" - resolved "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-3.0.0.tgz#994aae9cd23c719f53b5e10e3a0a6108c69607ba" integrity sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg== dependencies: d3-dispatch "1 - 3" @@ -4688,7 +5061,7 @@ d3-delaunay@6: "d3-dsv@1 - 3", d3-dsv@3: version "3.0.1" - resolved "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-3.0.1.tgz#c63af978f4d6a0d084a52a673922be2160789b73" integrity sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q== dependencies: commander "7" @@ -4697,19 +5070,19 @@ d3-delaunay@6: "d3-ease@1 - 3", d3-ease@3: version "3.0.1" - resolved "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-3.0.1.tgz#9658ac38a2140d59d346160f1f6c30fda0bd12f4" integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w== d3-fetch@3: version "3.0.1" - resolved "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-3.0.1.tgz#83141bff9856a0edb5e38de89cdcfe63d0a60a22" integrity sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw== dependencies: d3-dsv "1 - 3" d3-force@3: version "3.0.0" - resolved "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-3.0.0.tgz#3e2ba1a61e70888fe3d9194e30d6d14eece155c4" integrity sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg== dependencies: d3-dispatch "1 - 3" @@ -4717,57 +5090,57 @@ d3-force@3: d3-timer "1 - 3" "d3-format@1 - 3", d3-format@3: - version "3.1.0" - resolved "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz" - integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.2.tgz#01fdb46b58beb1f55b10b42ad70b6e344d5eb2ae" + integrity sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg== d3-geo@3: version "3.1.1" - resolved "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-3.1.1.tgz#6027cf51246f9b2ebd64f99e01dc7c3364033a4d" integrity sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q== dependencies: d3-array "2.5.0 - 3" d3-hierarchy@3: version "3.1.2" - resolved "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz" + resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz#b01cd42c1eed3d46db77a5966cf726f8c09160c6" integrity sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA== "d3-interpolate@1 - 3", "d3-interpolate@1.2.0 - 3", d3-interpolate@3: version "3.0.1" - resolved "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d" integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== dependencies: d3-color "1 - 3" d3-path@1: version "1.0.9" - resolved "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz" + resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf" integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg== "d3-path@1 - 3", d3-path@3, d3-path@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526" integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ== d3-polygon@3: version "3.0.1" - resolved "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-3.0.1.tgz#0b45d3dd1c48a29c8e057e6135693ec80bf16398" integrity sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg== "d3-quadtree@1 - 3", d3-quadtree@3: version "3.0.1" - resolved "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz#6dca3e8be2b393c9a9d514dabbd80a92deef1a4f" integrity sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw== d3-random@3: version "3.0.1" - resolved "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-3.0.1.tgz#d4926378d333d9c0bfd1e6fa0194d30aebaa20f4" integrity sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ== d3-sankey@^0.12.3: version "0.12.3" - resolved "https://registry.npmjs.org/d3-sankey/-/d3-sankey-0.12.3.tgz" + resolved "https://registry.yarnpkg.com/d3-sankey/-/d3-sankey-0.12.3.tgz#b3c268627bd72e5d80336e8de6acbfec9d15d01d" integrity sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ== dependencies: d3-array "1 - 2" @@ -4775,7 +5148,7 @@ d3-sankey@^0.12.3: d3-scale-chromatic@3: version "3.1.0" - resolved "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz#34c39da298b23c20e02f1a4b239bd0f22e7f1314" integrity sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ== dependencies: d3-color "1 - 3" @@ -4783,7 +5156,7 @@ d3-scale-chromatic@3: d3-scale@4: version "4.0.2" - resolved "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396" integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== dependencies: d3-array "2.10.0 - 3" @@ -4792,47 +5165,47 @@ d3-scale@4: d3-time "2.1.1 - 3" d3-time-format "2 - 4" -"d3-selection@2 - 3", d3-selection@3: +"d3-selection@2 - 3", d3-selection@3, d3-selection@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31" integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ== d3-shape@3: version "3.2.0" - resolved "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-3.2.0.tgz#a1a839cbd9ba45f28674c69d7f855bcf91dfc6a5" integrity sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA== dependencies: d3-path "^3.1.0" d3-shape@^1.2.0: version "1.3.7" - resolved "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz" + resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7" integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw== dependencies: d3-path "1" "d3-time-format@2 - 4", d3-time-format@4: version "4.1.0" - resolved "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg== dependencies: d3-time "1 - 3" "d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@3: version "3.1.0" - resolved "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7" integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q== dependencies: d3-array "2 - 3" "d3-timer@1 - 3", d3-timer@3: version "3.0.1" - resolved "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0" integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== -"d3-transition@2 - 3", d3-transition@3: +"d3-transition@2 - 3", d3-transition@3, d3-transition@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-3.0.1.tgz#6869fdde1448868077fdd5989200cb61b2a1645f" integrity sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w== dependencies: d3-color "1 - 3" @@ -4843,7 +5216,7 @@ d3-shape@^1.2.0: d3-zoom@3: version "3.0.0" - resolved "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-3.0.0.tgz#d13f4165c73217ffeaa54295cd6969b3e7aee8f3" integrity sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw== dependencies: d3-dispatch "1 - 3" @@ -4854,7 +5227,7 @@ d3-zoom@3: d3@^7.9.0: version "7.9.0" - resolved "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz" + resolved "https://registry.yarnpkg.com/d3/-/d3-7.9.0.tgz#579e7acb3d749caf8860bd1741ae8d371070cd5d" integrity sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA== dependencies: d3-array "3" @@ -4888,83 +5261,83 @@ d3@^7.9.0: d3-transition "3" d3-zoom "3" -dagre-d3-es@7.0.11: - version "7.0.11" - resolved "https://registry.npmjs.org/dagre-d3-es/-/dagre-d3-es-7.0.11.tgz" - integrity sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw== +dagre-d3-es@7.0.14: + version "7.0.14" + resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.14.tgz#1272276e26457cf3b97dac569f8f0531ec33c377" + integrity sha512-P4rFMVq9ESWqmOgK+dlXvOtLwYg0i7u0HBGJER0LZDJT2VHIPAMZ/riPxqJceWMStH5+E61QxFra9kIS3AqdMg== dependencies: d3 "^7.9.0" lodash-es "^4.17.21" -dayjs@^1.11.13: - version "1.11.13" - resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz" - integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== +dayjs@^1.11.20: + version "1.11.21" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.21.tgz#57f87562e62de76f3c704bd2b8d522fc33068eb2" + integrity sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA== debounce@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== debug@2.6.9: version "2.6.9" - resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" -debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.2.0, debug@^4.3.1, debug@^4.4.0, debug@^4.4.1: - version "4.4.1" - resolved "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz" - integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ== +debug@^4.0.0, debug@^4.1.0, debug@^4.2.0, debug@^4.3.1, debug@^4.4.0, debug@^4.4.3: + version "4.4.3" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" + integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== dependencies: ms "^2.1.3" decode-named-character-reference@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz" - integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg== + version "1.3.0" + resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz#3e40603760874c2e5867691b599d73a7da25b53f" + integrity sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q== dependencies: character-entities "^2.0.0" decompress-response@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== dependencies: mimic-response "^3.1.0" deep-extend@^0.6.0: version "0.6.0" - resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== deepmerge@^4.2.2, deepmerge@^4.3.1: version "4.3.1" - resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== default-browser-id@^5.0.0: version "5.0.1" - resolved "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-5.0.1.tgz#f7a7ccb8f5104bf8e0f71ba3b1ccfa5eafdb21e8" integrity sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q== default-browser@^5.2.1: - version "5.4.0" - resolved "https://registry.npmjs.org/default-browser/-/default-browser-5.4.0.tgz" - integrity sha512-XDuvSq38Hr1MdN47EDvYtx3U0MTqpCEn+F6ft8z2vYDzMrvQhVp0ui9oQdqW3MvK3vqUETglt1tVGgjLuJ5izg== + version "5.5.0" + resolved "https://registry.yarnpkg.com/default-browser/-/default-browser-5.5.0.tgz#2792e886f2422894545947cc80e1a444496c5976" + integrity sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw== dependencies: bundle-name "^4.1.0" default-browser-id "^5.0.0" defer-to-connect@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== define-data-property@^1.0.1, define-data-property@^1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== dependencies: es-define-property "^1.0.0" @@ -4973,17 +5346,17 @@ define-data-property@^1.0.1, define-data-property@^1.1.4: define-lazy-prop@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== define-lazy-prop@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f" integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== define-properties@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== dependencies: define-data-property "^1.0.1" @@ -4991,91 +5364,90 @@ define-properties@^1.2.1: object-keys "^1.1.1" delaunator@5: - version "5.0.1" - resolved "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz" - integrity sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw== + version "5.1.0" + resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-5.1.0.tgz#d13271fbf3aff6753f9ea6e235557f20901046ea" + integrity sha512-AGrQ4QSgssa1NGmWmLPqN5NY2KajF5MqxetNEO+o0n3ZwZZeTmt7bBnvzHWrmkZFxGgr4HdyFgelzgi06otLuQ== dependencies: robust-predicates "^3.0.2" -depd@2.0.0, depd@~2.0.0: +depd@2.0.0, depd@^2.0.0, depd@~2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== depd@~1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== -dequal@^2.0.0, dequal@^2.0.3: +dequal@^2.0.0: version "2.0.3" - resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== destroy@1.2.0, destroy@~1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== -detect-libc@^2.0.3: +detect-libc@^2.0.3, detect-libc@^2.1.2: version "2.1.2" - resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad" integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ== detect-node@^2.0.4: version "2.1.0" - resolved "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== -detect-port@^1.5.1: - version "1.6.1" - resolved "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz" - integrity sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q== +detect-port@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-2.1.0.tgz#03d72644891fa451ca5609b83107a8a0ebd03f91" + integrity sha512-epZuWb/6Q62L+nDHJc/hQAqf8pylsqgk3BpZXVBx1CDnr3nkrVNn73Uu1rXcFzkNcc+hkP3whuOg7JZYaQB65Q== dependencies: - address "^1.0.1" - debug "4" + address "^2.0.1" devlop@^1.0.0, devlop@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/devlop/-/devlop-1.1.0.tgz#4db7c2ca4dc6e0e834c30be70c94bbc976dc7018" integrity sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA== dependencies: dequal "^2.0.0" didyoumean@^1.2.2: version "1.2.2" - resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== dir-glob@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== dependencies: path-type "^4.0.0" dlv@^1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== dns-packet@^5.2.2: version "5.6.1" - resolved "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.1.tgz#ae888ad425a9d1478a0674256ab866de1012cf2f" integrity sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw== dependencies: "@leichtgewicht/ip-codec" "^2.0.1" dom-converter@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== dependencies: utila "~0.4" dom-serializer@^1.0.1: version "1.4.1" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== dependencies: domelementtype "^2.0.1" @@ -5084,7 +5456,7 @@ dom-serializer@^1.0.1: dom-serializer@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== dependencies: domelementtype "^2.3.0" @@ -5093,33 +5465,33 @@ dom-serializer@^2.0.0: domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: version "4.3.1" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== dependencies: domelementtype "^2.2.0" domhandler@^5.0.2, domhandler@^5.0.3: version "5.0.3" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== dependencies: domelementtype "^2.3.0" -dompurify@^3.2.5: - version "3.2.6" - resolved "https://registry.npmjs.org/dompurify/-/dompurify-3.2.6.tgz" - integrity sha512-/2GogDQlohXPZe6D6NOgQvXLPSYBqIWMnZ8zzOhn09REE4eyAzb+Hed3jhoM9OkuaJ8P6ZGTTVWQKAi8ieIzfQ== +dompurify@^3.3.3: + version "3.4.12" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.4.12.tgz#6fa2265e9bbdce882c4ace4107626051b448ffa8" + integrity sha512-zQvGet8Z2sWbQhCmfFz/T5QWH2oBmjnqK3qvOjaqaNLrLEF912WamU+ohnTp0TCep/MFVHpdJuCZEdFOdTnEFg== optionalDependencies: "@types/trusted-types" "^2.0.7" domutils@^2.5.2, domutils@^2.8.0: version "2.8.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== dependencies: dom-serializer "^1.0.1" @@ -5128,7 +5500,7 @@ domutils@^2.5.2, domutils@^2.8.0: domutils@^3.0.1, domutils@^3.2.2: version "3.2.2" - resolved "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.2.2.tgz#edbfe2b668b0c1d97c24baf0f1062b132221bc78" integrity sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw== dependencies: dom-serializer "^2.0.0" @@ -5137,7 +5509,7 @@ domutils@^3.0.1, domutils@^3.2.2: dot-case@^3.0.4: version "3.0.4" - resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== dependencies: no-case "^3.0.4" @@ -5145,19 +5517,19 @@ dot-case@^3.0.4: dot-prop@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-6.0.1.tgz#fc26b3cf142b9e59b74dbd39ed66ce620c681083" integrity sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== dependencies: is-obj "^2.0.0" dotenv@^17.2.3: - version "17.2.3" - resolved "https://registry.npmjs.org/dotenv/-/dotenv-17.2.3.tgz" - integrity sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w== + version "17.4.2" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-17.4.2.tgz#c07e54a746e11eba021dd9e1047ced5afdc1c034" + integrity sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw== dunder-proto@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== dependencies: call-bind-apply-helpers "^1.0.1" @@ -5166,127 +5538,132 @@ dunder-proto@^1.0.1: duplexer@^0.1.2: version "0.1.2" - resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== eastasianwidth@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== ee-first@1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== -electron-to-chromium@^1.5.263: - version "1.5.267" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz" - integrity sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw== +electron-to-chromium@^1.5.393: + version "1.5.395" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.395.tgz#b82e88344bdc9e5c00d280140e7ca278c7325661" + integrity sha512-7zt9Aw+SrmxLWLN0zhaTWZQiCdryLVrYTq5R7iZakLvi2UQPYMMsROYV/2qVCzMeCiSXHwKOU+sZ4zOVVlrtKA== emoji-regex@^8.0.0: version "8.0.0" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== emoji-regex@^9.2.2: version "9.2.2" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== emojilib@^2.4.0: version "2.4.0" - resolved "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz" + resolved "https://registry.yarnpkg.com/emojilib/-/emojilib-2.4.0.tgz#ac518a8bb0d5f76dda57289ccb2fdf9d39ae721e" integrity sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw== emojis-list@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== emoticon@^4.0.1: version "4.1.0" - resolved "https://registry.npmjs.org/emoticon/-/emoticon-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/emoticon/-/emoticon-4.1.0.tgz#d5a156868ee173095627a33de3f1e914c3dde79e" integrity sha512-VWZfnxqwNcc51hIy/sbOdEem6D+cVtpPzEEtVAFdaas30+1dgkyaOQ4sQ6Bp0tOMqWO1v+HQfYaoodOkdhK6SQ== -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== - -encodeurl@~2.0.0: +encodeurl@^2.0.0, encodeurl@~2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== encoding-sniffer@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.1.tgz" + resolved "https://registry.yarnpkg.com/encoding-sniffer/-/encoding-sniffer-0.2.1.tgz#396ec97ac22ce5a037ba44af1992ac9d46a7b819" integrity sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw== dependencies: iconv-lite "^0.6.3" whatwg-encoding "^3.1.1" -enhanced-resolve@^5.17.3, enhanced-resolve@^5.18.3: - version "5.18.3" - resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz" - integrity sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww== +enhanced-resolve@^5.22.2, enhanced-resolve@^5.24.1: + version "5.24.3" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.24.3.tgz#406bbf1ec20971265a30254f08030fce6a8207fe" + integrity sha512-PwKooW9JUzh5chmYfHM3IQl5OkK2u2Nm011MgeZrss3JmFraUx/fqrf78kk8GUMYoibx/14MdwTl/1WKkG7TpQ== dependencies: graceful-fs "^4.2.4" - tapable "^2.2.0" + tapable "^2.3.3" entities@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== entities@^4.2.0, entities@^4.4.0: version "4.5.0" - resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== entities@^6.0.0: version "6.0.1" - resolved "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/entities/-/entities-6.0.1.tgz#c28c34a43379ca7f61d074130b2f5f7020a30694" integrity sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g== entities@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz" + resolved "https://registry.yarnpkg.com/entities/-/entities-7.0.1.tgz#26e8a88889db63417dcb9a1e79a3f1bc92b5976b" integrity sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA== error-ex@^1.3.1: version "1.3.4" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz#b3a8d8bb6f92eecc1629e3e27d3c8607a8a32414" integrity sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ== dependencies: is-arrayish "^0.2.1" es-define-property@^1.0.0, es-define-property@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== es-errors@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== -es-module-lexer@^1.2.1: - version "1.6.0" - resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz" - integrity sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ== +es-module-lexer@^2.1.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-2.3.1.tgz#5bf2df06999dbbe5f006a5f46a11fb9f5b7b391b" + integrity sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA== es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz" - integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== + version "1.1.2" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.2.tgz#a2d0b373205724dfa525d23b0c3e1b1ca582c99b" + integrity sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw== dependencies: es-errors "^1.3.0" +es-toolkit@^1.45.1: + version "1.49.0" + resolved "https://registry.yarnpkg.com/es-toolkit/-/es-toolkit-1.49.0.tgz#93c5b031865792fc03cbf5bd20c132a4f976a52a" + integrity sha512-G5iZ6Pc/FNRY/soKZHC+TxGDD83rHUDXxzaWhGCX44vAv/tMs56WMusnm/KMNK+luUPsgA9U28cGr4RDlSzL2g== + +es6-error@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" + integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== + esast-util-from-estree@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz#8d1cfb51ad534d2f159dc250e604f3478a79f1ad" integrity sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ== dependencies: "@types/estree-jsx" "^1.0.0" @@ -5296,7 +5673,7 @@ esast-util-from-estree@^2.0.0: esast-util-from-js@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz#5147bec34cc9da44accf52f87f239a40ac3e8225" integrity sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw== dependencies: "@types/estree-jsx" "^1.0.0" @@ -5306,74 +5683,64 @@ esast-util-from-js@^2.0.0: escalade@^3.1.1, escalade@^3.2.0: version "3.2.0" - resolved "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== escape-goat@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-4.0.0.tgz#9424820331b510b0666b98f7873fe11ac4aa8081" integrity sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg== escape-html@^1.0.3, escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - escape-string-regexp@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== escape-string-regexp@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== eslint-scope@5.1.1: version "5.1.1" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== dependencies: esrecurse "^4.3.0" estraverse "^4.1.1" -esprima@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - esrecurse@^4.3.0: version "4.3.0" - resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== dependencies: estraverse "^5.2.0" estraverse@^4.1.1: version "4.3.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== estraverse@^5.2.0: version "5.3.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== estree-util-attach-comments@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz#344bde6a64c8a31d15231e5ee9e297566a691c2d" integrity sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw== dependencies: "@types/estree" "^1.0.0" estree-util-build-jsx@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz#b6d0bced1dcc4f06f25cf0ceda2b2dcaf98168f1" integrity sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ== dependencies: "@types/estree-jsx" "^1.0.0" @@ -5383,12 +5750,12 @@ estree-util-build-jsx@^3.0.0: estree-util-is-identifier-name@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz#0b5ef4c4ff13508b34dcd01ecfa945f61fce5dbd" integrity sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg== estree-util-scope@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/estree-util-scope/-/estree-util-scope-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/estree-util-scope/-/estree-util-scope-1.0.0.tgz#9cbdfc77f5cb51e3d9ed4ad9c4adbff22d43e585" integrity sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ== dependencies: "@types/estree" "^1.0.0" @@ -5396,7 +5763,7 @@ estree-util-scope@^1.0.0: estree-util-to-js@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz#10a6fb924814e6abb62becf0d2bc4dea51d04f17" integrity sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg== dependencies: "@types/estree-jsx" "^1.0.0" @@ -5405,14 +5772,14 @@ estree-util-to-js@^2.0.0: estree-util-value-to-estree@^3.0.1: version "3.5.0" - resolved "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-3.5.0.tgz" + resolved "https://registry.yarnpkg.com/estree-util-value-to-estree/-/estree-util-value-to-estree-3.5.0.tgz#cd70cf37e7f78eae3e110d66a3436ce0d18a8f80" integrity sha512-aMV56R27Gv3QmfmF1MY12GWkGzzeAezAX+UplqHVASfjc9wNzI/X6hC0S9oxq61WT4aQesLGslWP9tKk6ghRZQ== dependencies: "@types/estree" "^1.0.0" estree-util-visit@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-2.0.0.tgz#13a9a9f40ff50ed0c022f831ddf4b58d05446feb" integrity sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww== dependencies: "@types/estree-jsx" "^1.0.0" @@ -5420,34 +5787,34 @@ estree-util-visit@^2.0.0: estree-walker@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== estree-walker@^3.0.0: version "3.0.3" - resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d" integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== dependencies: "@types/estree" "^1.0.0" esutils@^2.0.2: version "2.0.3" - resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== eta@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/eta/-/eta-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/eta/-/eta-2.2.0.tgz#eb8b5f8c4e8b6306561a455e62cd7492fe3a9b8a" integrity sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g== -etag@~1.8.1: +etag@^1.8.1, etag@~1.8.1: version "1.8.1" - resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== eval@^0.1.8: version "0.1.8" - resolved "https://registry.npmjs.org/eval/-/eval-0.1.8.tgz" + resolved "https://registry.yarnpkg.com/eval/-/eval-0.1.8.tgz#2b903473b8cc1d1989b83a1e7923f883eb357f85" integrity sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw== dependencies: "@types/node" "*" @@ -5455,22 +5822,17 @@ eval@^0.1.8: eventemitter3@^4.0.0, eventemitter3@^4.0.4: version "4.0.7" - resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== events@^3.2.0: version "3.3.0" - resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== -eventsource-parser@^3.0.6: - version "3.0.6" - resolved "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.6.tgz" - integrity sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg== - -execa@5.1.1: +execa@^5.1.1: version "5.1.1" - resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== dependencies: cross-spawn "^7.0.3" @@ -5483,14 +5845,14 @@ execa@5.1.1: signal-exit "^3.0.3" strip-final-newline "^2.0.0" -express@^4.21.2: - version "4.22.1" - resolved "https://registry.npmjs.org/express/-/express-4.22.1.tgz" - integrity sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g== +express@^4.22.1: + version "4.22.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.22.2.tgz#c17ae0981e5efc24b22272f0e041c4662503b700" + integrity sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q== dependencies: accepts "~1.3.8" array-flatten "1.1.1" - body-parser "~1.20.3" + body-parser "~1.20.5" content-disposition "~0.5.4" content-type "~1.0.4" cookie "~0.7.1" @@ -5509,7 +5871,7 @@ express@^4.21.2: parseurl "~1.3.3" path-to-regexp "~0.1.12" proxy-addr "~2.0.7" - qs "~6.14.0" + qs "~6.15.1" range-parser "~1.2.1" safe-buffer "5.2.1" send "~0.19.0" @@ -5520,31 +5882,60 @@ express@^4.21.2: utils-merge "1.0.1" vary "~1.1.2" -exsolve@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/exsolve/-/exsolve-1.0.7.tgz" - integrity sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw== +express@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/express/-/express-5.2.1.tgz#8f21d15b6d327f92b4794ecf8cb08a72f956ac04" + integrity sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw== + dependencies: + accepts "^2.0.0" + body-parser "^2.2.1" + content-disposition "^1.0.0" + content-type "^1.0.5" + cookie "^0.7.1" + cookie-signature "^1.2.1" + debug "^4.4.0" + depd "^2.0.0" + encodeurl "^2.0.0" + escape-html "^1.0.3" + etag "^1.8.1" + finalhandler "^2.1.0" + fresh "^2.0.0" + http-errors "^2.0.0" + merge-descriptors "^2.0.0" + mime-types "^3.0.0" + on-finished "^2.4.1" + once "^1.4.0" + parseurl "^1.3.3" + proxy-addr "^2.0.7" + qs "^6.14.0" + range-parser "^1.2.1" + router "^2.2.0" + send "^1.1.0" + serve-static "^2.2.0" + statuses "^2.0.1" + type-is "^2.0.1" + vary "^1.1.2" extend-shallow@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== dependencies: is-extendable "^0.1.0" extend@^3.0.0: version "3.0.2" - resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" - resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.2: version "3.3.3" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818" integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -5555,52 +5946,50 @@ fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.2: fast-json-stable-stringify@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-uri@^3.0.1: - version "3.0.6" - resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz" - integrity sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw== + version "3.1.4" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.1.4.tgz#3b3daf9ce68f41f956df0b505132c0cfce9ec7af" + integrity sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw== fastq@^1.6.0: - version "1.19.0" - resolved "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz" - integrity sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA== + version "1.20.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.20.1.tgz#ca750a10dc925bc8b18839fd203e3ef4b3ced675" + integrity sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw== dependencies: reusify "^1.0.4" fault@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/fault/-/fault-2.0.1.tgz#d47ca9f37ca26e4bd38374a7c500b5a384755b6c" integrity sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ== dependencies: format "^0.2.0" faye-websocket@^0.11.3: version "0.11.4" - resolved "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== dependencies: websocket-driver ">=0.5.1" +fdir@^6.5.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350" + integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg== + feed@^4.2.2: version "4.2.2" - resolved "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz" + resolved "https://registry.yarnpkg.com/feed/-/feed-4.2.2.tgz#865783ef6ed12579e2c44bbef3c9113bc4956a7e" integrity sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ== dependencies: xml-js "^1.6.11" -figures@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - dependencies: - escape-string-regexp "^1.0.5" - file-loader@^6.2.0: version "6.2.0" - resolved "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== dependencies: loader-utils "^2.0.0" @@ -5608,14 +5997,26 @@ file-loader@^6.2.0: fill-range@^7.1.1: version "7.1.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" +finalhandler@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-2.1.1.tgz#a2c517a6559852bcdb06d1f8bd7f51b68fad8099" + integrity sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA== + dependencies: + debug "^4.4.0" + encodeurl "^2.0.0" + escape-html "^1.0.3" + on-finished "^2.4.1" + parseurl "^1.3.3" + statuses "^2.0.1" + finalhandler@~1.3.1: version "1.3.2" - resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.3.2.tgz#1ebc2228fc7673aac4a472c310cc05b77d852b88" integrity sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg== dependencies: debug "2.6.9" @@ -5628,7 +6029,7 @@ finalhandler@~1.3.1: find-cache-dir@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-4.0.0.tgz#a30ee0448f81a3990708f6453633c733e2f6eec2" integrity sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg== dependencies: common-path-prefix "^3.0.0" @@ -5636,7 +6037,7 @@ find-cache-dir@^4.0.0: find-up@^6.3.0: version "6.3.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== dependencies: locate-path "^7.1.0" @@ -5644,21 +6045,26 @@ find-up@^6.3.0: flat@^5.0.2: version "5.0.2" - resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz" + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== +flatbuffers@^25.1.24: + version "25.9.23" + resolved "https://registry.yarnpkg.com/flatbuffers/-/flatbuffers-25.9.23.tgz#346811557fe9312ab5647535e793c761e9c81eb1" + integrity sha512-MI1qs7Lo4Syw0EOzUl0xjs2lsoeqFku44KpngfIduHBYvzm8h2+7K8YMQh1JtVVVrUvhLpNwqVi4DERegUJhPQ== + flowbite-datepicker@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/flowbite-datepicker/-/flowbite-datepicker-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/flowbite-datepicker/-/flowbite-datepicker-2.0.0.tgz#2c957bc69a1f72f63dce054ac90729e02dac979b" integrity sha512-m81hl0Bimq45MUg4maJLOnXrX+C9lZ0AkjMb9uotuVUSr729k/YiymWDfVAm63AYDH7g7y3rI3ke3XaBzWWqLw== dependencies: "@rollup/plugin-node-resolve" "^15.2.3" "@tailwindcss/postcss" "^4.1.17" flowbite@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/flowbite/-/flowbite-4.0.1.tgz" - integrity sha512-UwUjvnqrQTiFm3uMJ0WWnzKXKoDyNyfyEzoNnxmZo6KyDzCedjqZw1UW0Oqdn+E0iYVdPu0fizydJN6e4pP9Rw== + version "4.0.2" + resolved "https://registry.yarnpkg.com/flowbite/-/flowbite-4.0.2.tgz#e93a5509c5817313b5f8c29da082c66877afe923" + integrity sha512-TxBdfZpd3HktHH4ashiYjirrSZeVPtG1OCRZMKTeXUa9FOlMxSF98zgjMB/AxE49KZ+rlfgWynAlaNpWxrqZmA== dependencies: "@popperjs/core" "^2.9.3" flowbite-datepicker "^2.0.0" @@ -5667,46 +6073,43 @@ flowbite@^4.0.1: tailwindcss "^4.1.12" follow-redirects@^1.0.0: - version "1.15.11" - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz" - integrity sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ== - -foreground-child@^3.1.0: - version "3.3.0" - resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz" - integrity sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg== - dependencies: - cross-spawn "^7.0.0" - signal-exit "^4.0.1" + version "1.16.0" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.16.0.tgz#28474a159d3b9d11ef62050a14ed60e4df6d61bc" + integrity sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw== form-data-encoder@^2.1.2: version "2.1.4" - resolved "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-2.1.4.tgz#261ea35d2a70d48d30ec7a9603130fa5515e9cd5" integrity sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw== format@^0.2.0: version "0.2.2" - resolved "https://registry.npmjs.org/format/-/format-0.2.2.tgz" + resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww== forwarded@0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== fraction.js@^5.3.4: version "5.3.4" - resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-5.3.4.tgz#8c0fcc6a9908262df4ed197427bdeef563e0699a" integrity sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ== -fresh@0.5.2, fresh@~0.5.2: +fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-2.0.0.tgz#8dd7df6a1b3a1b3a5cf186c05a5dd267622635a4" + integrity sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A== + +fresh@~0.5.2: version "0.5.2" - resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== fs-extra@^10.0.0: version "10.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== dependencies: graceful-fs "^4.2.0" @@ -5714,9 +6117,9 @@ fs-extra@^10.0.0: universalify "^2.0.0" fs-extra@^11.1.1, fs-extra@^11.2.0: - version "11.3.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz" - integrity sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew== + version "11.3.6" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.6.tgz#f7cb80e9df550cd1db6f537fa5cdd568d3e70d10" + integrity sha512-w8ZNZr2mKIc7qeNaQ9AVPT1+iFaI+Avd4xudVOvdDJ8VytREi1Ft5Ih7hd9jjehod8vAM5GMsfQ/TpPf4EyoEA== dependencies: graceful-fs "^4.2.0" jsonfile "^6.0.1" @@ -5724,22 +6127,22 @@ fs-extra@^11.1.1, fs-extra@^11.2.0: fsevents@~2.3.2: version "2.3.3" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== function-bind@^1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== gensync@^1.0.0-beta.2: version "1.0.0-beta.2" - resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== dependencies: call-bind-apply-helpers "^1.0.2" @@ -5755,12 +6158,12 @@ get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.3.0: get-own-enumerable-property-symbols@^3.0.0: version "3.0.2" - resolved "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== get-proto@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== dependencies: dunder-proto "^1.0.1" @@ -5768,72 +6171,70 @@ get-proto@^1.0.1: get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== giscus@^1.6.0: version "1.6.0" - resolved "https://registry.npmjs.org/giscus/-/giscus-1.6.0.tgz" + resolved "https://registry.yarnpkg.com/giscus/-/giscus-1.6.0.tgz#96c592e01829707b3a0ba72c2636c07a28b5c19d" integrity sha512-Zrsi8r4t1LVW950keaWcsURuZUQwUaMKjvJgTCY125vkW6OiEBkatE7ScJDbpqKHdZwb///7FVC21SE3iFK3PQ== dependencies: lit "^3.2.1" github-slugger@^1.5.0: version "1.5.0" - resolved "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz" + resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.5.0.tgz#17891bbc73232051474d68bd867a34625c955f7d" integrity sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw== glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob-parent@^6.0.1, glob-parent@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: is-glob "^4.0.3" -glob-to-regex.js@^1.0.1: +glob-to-regex.js@^1.0.0, glob-to-regex.js@^1.0.1: version "1.2.0" - resolved "https://registry.npmjs.org/glob-to-regex.js/-/glob-to-regex.js-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/glob-to-regex.js/-/glob-to-regex.js-1.2.0.tgz#2b323728271d133830850e32311f40766c5f6413" integrity sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ== -glob-to-regexp@^0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== - -glob@^10.3.10: - version "10.4.5" - resolved "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz" - integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== +global-agent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz#ae7cd31bd3583b93c5a16437a1afe27cc33a1ab6" + integrity sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q== dependencies: - foreground-child "^3.1.0" - jackspeak "^3.1.2" - minimatch "^9.0.4" - minipass "^7.1.2" - package-json-from-dist "^1.0.0" - path-scurry "^1.11.1" + boolean "^3.0.1" + es6-error "^4.1.1" + matcher "^3.0.0" + roarr "^2.15.3" + semver "^7.3.2" + serialize-error "^7.0.1" global-dirs@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.1.tgz#0c488971f066baceda21447aecb1a8b911d22485" integrity sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== dependencies: ini "2.0.0" -globals@^15.14.0: - version "15.15.0" - resolved "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz" - integrity sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg== +globalthis@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" + integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== + dependencies: + define-properties "^1.2.1" + gopd "^1.0.1" globby@^11.1.0: version "11.1.0" - resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== dependencies: array-union "^2.1.0" @@ -5845,7 +6246,7 @@ globby@^11.1.0: globby@^13.1.1: version "13.2.2" - resolved "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz" + resolved "https://registry.yarnpkg.com/globby/-/globby-13.2.2.tgz#63b90b1bf68619c2135475cbd4e71e66aa090592" integrity sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w== dependencies: dir-glob "^3.0.1" @@ -5856,12 +6257,12 @@ globby@^13.1.1: gopd@^1.0.1, gopd@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== got@^12.1.0: version "12.6.1" - resolved "https://registry.npmjs.org/got/-/got-12.6.1.tgz" + resolved "https://registry.yarnpkg.com/got/-/got-12.6.1.tgz#8869560d1383353204b5a9435f782df9c091f549" integrity sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ== dependencies: "@sindresorhus/is" "^5.2.0" @@ -5878,73 +6279,68 @@ got@^12.1.0: graceful-fs@4.2.10: version "4.2.10" - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: version "4.2.11" - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== -gray-matter@^4.0.3: - version "4.0.3" - resolved "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz" - integrity sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q== - dependencies: - js-yaml "^3.13.1" - kind-of "^6.0.2" - section-matter "^1.0.0" - strip-bom-string "^1.0.0" +guid-typescript@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/guid-typescript/-/guid-typescript-1.0.9.tgz#e35f77003535b0297ea08548f5ace6adb1480ddc" + integrity sha512-Y8T4vYhEfwJOTbouREvG+3XDsjr8E3kIr7uf+JZ0BYloFsttiHU0WfvANVsR7TxNUJa/WpCnw/Ino/p+DeBhBQ== gzip-size@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz#065367fd50c239c0671cbcbad5be3e2eeb10e462" integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q== dependencies: duplexer "^0.1.2" hachure-fill@^0.5.2: version "0.5.2" - resolved "https://registry.npmjs.org/hachure-fill/-/hachure-fill-0.5.2.tgz" + resolved "https://registry.yarnpkg.com/hachure-fill/-/hachure-fill-0.5.2.tgz#d19bc4cc8750a5962b47fb1300557a85fcf934cc" integrity sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg== handle-thing@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== dependencies: es-define-property "^1.0.0" has-symbols@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== has-yarn@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-3.0.0.tgz#c3c21e559730d1d3b57e28af1f30d06fac38147d" integrity sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA== -hasown@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" - integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== +hasown@^2.0.2, hasown@^2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.4.tgz#8c62d8cb90beb2aad5d0a5b67581ad9854c3f003" + integrity sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A== dependencies: function-bind "^1.1.2" hast-util-from-parse5@^8.0.0: version "8.0.3" - resolved "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz" + resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz#830a35022fff28c3fea3697a98c2f4cc6b835a2e" integrity sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg== dependencies: "@types/hast" "^3.0.0" @@ -5958,14 +6354,14 @@ hast-util-from-parse5@^8.0.0: hast-util-parse-selector@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz#352879fa86e25616036037dd8931fb5f34cb4a27" integrity sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A== dependencies: "@types/hast" "^3.0.0" hast-util-raw@^9.0.0: version "9.1.0" - resolved "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz" + resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-9.1.0.tgz#79b66b26f6f68fb50dfb4716b2cdca90d92adf2e" integrity sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw== dependencies: "@types/hast" "^3.0.0" @@ -5983,9 +6379,9 @@ hast-util-raw@^9.0.0: zwitch "^2.0.0" hast-util-to-estree@^3.0.0: - version "3.1.1" - resolved "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.1.tgz" - integrity sha512-IWtwwmPskfSmma9RpzCappDUitC8t5jhAynHhc1m2+5trOgsrp7txscUSavc5Ic8PATyAjfrCK1wgtxh2cICVQ== + version "3.1.3" + resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz#e654c1c9374645135695cc0ab9f70b8fcaf733d7" + integrity sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w== dependencies: "@types/estree" "^1.0.0" "@types/estree-jsx" "^1.0.0" @@ -5998,16 +6394,16 @@ hast-util-to-estree@^3.0.0: mdast-util-mdx-expression "^2.0.0" mdast-util-mdx-jsx "^3.0.0" mdast-util-mdxjs-esm "^2.0.0" - property-information "^6.0.0" + property-information "^7.0.0" space-separated-tokens "^2.0.0" - style-to-object "^1.0.0" + style-to-js "^1.0.0" unist-util-position "^5.0.0" zwitch "^2.0.0" hast-util-to-jsx-runtime@^2.0.0: - version "2.3.2" - resolved "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.2.tgz" - integrity sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg== + version "2.3.6" + resolved "https://registry.yarnpkg.com/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz#ff31897aae59f62232e21594eac7ef6b63333e98" + integrity sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg== dependencies: "@types/estree" "^1.0.0" "@types/hast" "^3.0.0" @@ -6019,15 +6415,15 @@ hast-util-to-jsx-runtime@^2.0.0: mdast-util-mdx-expression "^2.0.0" mdast-util-mdx-jsx "^3.0.0" mdast-util-mdxjs-esm "^2.0.0" - property-information "^6.0.0" + property-information "^7.0.0" space-separated-tokens "^2.0.0" - style-to-object "^1.0.0" + style-to-js "^1.0.0" unist-util-position "^5.0.0" vfile-message "^4.0.0" hast-util-to-parse5@^8.0.0: version "8.0.1" - resolved "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz" + resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz#95aa391cc0514b4951418d01c883d1038af42f5d" integrity sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA== dependencies: "@types/hast" "^3.0.0" @@ -6040,14 +6436,14 @@ hast-util-to-parse5@^8.0.0: hast-util-whitespace@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz#7778ed9d3c92dd9e8c5c8f648a49c21fc51cb621" integrity sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw== dependencies: "@types/hast" "^3.0.0" hastscript@^9.0.0: version "9.0.1" - resolved "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz" + resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-9.0.1.tgz#dbc84bef6051d40084342c229c451cd9dc567dff" integrity sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w== dependencies: "@types/hast" "^3.0.0" @@ -6058,12 +6454,12 @@ hastscript@^9.0.0: he@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== history@^4.9.0: version "4.10.1" - resolved "https://registry.npmjs.org/history/-/history-4.10.1.tgz" + resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3" integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew== dependencies: "@babel/runtime" "^7.1.2" @@ -6075,14 +6471,14 @@ history@^4.9.0: hoist-non-react-statics@^3.1.0: version "3.3.2" - resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== dependencies: react-is "^16.7.0" hpack.js@^2.1.6: version "2.1.6" - resolved "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== dependencies: inherits "^2.0.1" @@ -6092,12 +6488,12 @@ hpack.js@^2.1.6: html-escaper@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== html-minifier-terser@^6.0.2: version "6.1.0" - resolved "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== dependencies: camel-case "^4.1.2" @@ -6110,7 +6506,7 @@ html-minifier-terser@^6.0.2: html-minifier-terser@^7.2.0: version "7.2.0" - resolved "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz#18752e23a2f0ed4b0f550f217bb41693e975b942" integrity sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA== dependencies: camel-case "^4.1.2" @@ -6123,18 +6519,18 @@ html-minifier-terser@^7.2.0: html-tags@^3.3.1: version "3.3.1" - resolved "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz" + resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.3.1.tgz#a04026a18c882e4bba8a01a3d39cfe465d40b5ce" integrity sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== html-void-elements@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-3.0.0.tgz#fc9dbd84af9e747249034d4d62602def6517f1d7" integrity sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg== html-webpack-plugin@^5.6.0: - version "5.6.3" - resolved "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz" - integrity sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg== + version "5.6.7" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.6.7.tgz#429bab4e12abf3c07e1c608886608e2df2c06b11" + integrity sha512-md+vXtdCAe60s1k6AU3dUyMJnDxUyQAwfwPKoLisvgUF1IXjtlLsk2se54+qfL9Mdm26bbwvjJybpNx48NKRLw== dependencies: "@types/html-minifier-terser" "^6.0.0" html-minifier-terser "^6.0.2" @@ -6144,7 +6540,7 @@ html-webpack-plugin@^5.6.0: htmlparser2@^10.1.0: version "10.1.0" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.1.0.tgz" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-10.1.0.tgz#fe3f2e12c73b6e462d4e10395db9c1119e4d6ae4" integrity sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ== dependencies: domelementtype "^2.3.0" @@ -6154,7 +6550,7 @@ htmlparser2@^10.1.0: htmlparser2@^6.1.0: version "6.1.0" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== dependencies: domelementtype "^2.0.1" @@ -6164,7 +6560,7 @@ htmlparser2@^6.1.0: htmlparser2@^8.0.1: version "8.0.2" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21" integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== dependencies: domelementtype "^2.3.0" @@ -6173,39 +6569,18 @@ htmlparser2@^8.0.1: entities "^4.4.0" http-cache-semantics@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz" - integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== + version "4.2.0" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#205f4db64f8562b76a4ff9235aa5279839a09dd5" + integrity sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ== http-deceiver@^1.2.7: version "1.2.7" - resolved "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" - integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== - dependencies: - depd "2.0.0" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses "2.0.1" - toidentifier "1.0.1" - -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" - integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" - -http-errors@~2.0.0, http-errors@~2.0.1: +http-errors@^2.0.0, http-errors@^2.0.1, http-errors@~2.0.0, http-errors@~2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.1.tgz#36d2f65bc909c8790018dd36fb4d93da6caae06b" integrity sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ== dependencies: depd "~2.0.0" @@ -6214,15 +6589,26 @@ http-errors@~2.0.0, http-errors@~2.0.1: statuses "~2.0.2" toidentifier "~1.0.1" +http-errors@~1.8.0: + version "1.8.1" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c" + integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.1" + http-parser-js@>=0.5.1: version "0.5.10" - resolved "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.10.tgz#b3277bd6d7ed5588e20ea73bf724fcbe44609075" integrity sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA== http-proxy-middleware@^2.0.9: - version "2.0.9" - resolved "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.9.tgz" - integrity sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q== + version "2.0.10" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.10.tgz#b2df7b705203d7a8c269ac8450cf96b00c532f94" + integrity sha512-RKzRWNPxUZqbuk3BC5mGVJbBnWgr+diEnjJexIOytFbBzDy88Fbh/YvBr3DsNrl1jYAfjWfpATEv0NO35FDuPQ== dependencies: "@types/http-proxy" "^1.17.8" http-proxy "^1.18.1" @@ -6232,7 +6618,7 @@ http-proxy-middleware@^2.0.9: http-proxy@^1.18.1: version "1.18.1" - resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== dependencies: eventemitter3 "^4.0.0" @@ -6241,7 +6627,7 @@ http-proxy@^1.18.1: http2-wrapper@^2.1.10: version "2.2.1" - resolved "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz" + resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.2.1.tgz#310968153dcdedb160d8b72114363ef5fce1f64a" integrity sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ== dependencies: quick-lru "^5.1.1" @@ -6249,51 +6635,58 @@ http2-wrapper@^2.1.10: human-signals@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== hyperdyperid@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/hyperdyperid/-/hyperdyperid-1.2.0.tgz#59668d323ada92228d2a869d3e474d5a33b69e6b" integrity sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A== iconv-lite@0.6, iconv-lite@0.6.3, iconv-lite@^0.6.3: version "0.6.3" - resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== dependencies: safer-buffer ">= 2.1.2 < 3.0.0" +iconv-lite@^0.7.2, iconv-lite@~0.7.0: + version "0.7.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.7.3.tgz#84ee12f963e7de50bc01a13e160a078b3b0f415f" + integrity sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + iconv-lite@~0.4.24: version "0.4.24" - resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" icss-utils@^5.0.0, icss-utils@^5.1.0: version "5.1.0" - resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== ignore@^5.2.0, ignore@^5.2.4: version "5.3.2" - resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== image-size@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/image-size/-/image-size-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-2.0.2.tgz#84a7b43704db5736f364bf0d1b029821299b4bdc" integrity sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w== immediate@^3.2.3: version "3.3.0" - resolved "https://registry.npmjs.org/immediate/-/immediate-3.3.0.tgz" + resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.3.0.tgz#1aef225517836bcdf7f2a2de2600c79ff0269266" integrity sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q== import-fresh@^3.3.0: version "3.3.1" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.1.tgz#9cecb56503c0ada1f2741dbbd6546e4b13b57ccf" integrity sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ== dependencies: parent-module "^1.0.0" @@ -6301,84 +6694,84 @@ import-fresh@^3.3.0: import-lazy@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== +import-meta-resolve@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz#08cb85b5bd37ecc8eb1e0f670dc2767002d43734" + integrity sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg== + imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== indent-string@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== infima@0.2.0-alpha.45: version "0.2.0-alpha.45" - resolved "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.45.tgz" + resolved "https://registry.yarnpkg.com/infima/-/infima-0.2.0-alpha.45.tgz#542aab5a249274d81679631b492973dd2c1e7466" integrity sha512-uyH0zfr1erU1OohLk0fT4Rrb94AOhguWNOcD9uGrSpRvNB+6gZXUoJX5J0NtvzBO10YZ9PgvA4NFgt+fYg8ojw== -inherits@2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" - integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== - inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3, inherits@~2.0.4: version "2.0.4" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== ini@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== ini@^1.3.4, ini@~1.3.0: version "1.3.8" - resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== -inline-style-parser@0.2.4: - version "0.2.4" - resolved "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz" - integrity sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q== +inline-style-parser@0.2.7: + version "0.2.7" + resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.2.7.tgz#b1fc68bfc0313b8685745e4464e37f9376b9c909" + integrity sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA== "internmap@1 - 2": version "2.0.3" - resolved "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== internmap@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.1.tgz#0017cc8a3b99605f0302f2b198d272e015e5df95" integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw== invariant@^2.2.4: version "2.2.4" - resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" ipaddr.js@1.9.1: version "1.9.1" - resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== ipaddr.js@^2.1.0: - version "2.3.0" - resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.3.0.tgz" - integrity sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg== + version "2.4.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.4.0.tgz#038e9ceaf8219efc5bb76347b7eb787875d5095b" + integrity sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ== is-alphabetical@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b" integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ== is-alphanumerical@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875" integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw== dependencies: is-alphabetical "^2.0.0" @@ -6386,82 +6779,82 @@ is-alphanumerical@^2.0.0: is-arrayish@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-binary-path@~2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== dependencies: binary-extensions "^2.0.0" is-ci@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== dependencies: ci-info "^3.2.0" -is-core-module@^2.16.0: - version "2.16.1" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz" - integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w== +is-core-module@^2.16.1: + version "2.16.2" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.2.tgz#3e07450a8080ebce3fbf0cac494f4d2ab324e082" + integrity sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA== dependencies: - hasown "^2.0.2" + hasown "^2.0.3" is-decimal@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7" integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A== is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" - resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== is-docker@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200" integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== is-extendable@^0.1.0: version "0.1.1" - resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== is-fullwidth-code-point@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" is-hexadecimal@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027" integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg== is-inside-container@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4" integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== dependencies: is-docker "^3.0.0" is-installed-globally@^0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== dependencies: global-dirs "^3.0.0" @@ -6469,122 +6862,118 @@ is-installed-globally@^0.4.0: is-module@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g== is-network-error@^1.0.0: - version "1.3.0" - resolved "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.0.tgz" - integrity sha512-6oIwpsgRfnDiyEDLMay/GqCl3HoAtH5+RUKW29gYkL0QA+ipzpDLA16yQs7/RHCSu+BwgbJaOUqa4A99qNVQVw== + version "1.3.2" + resolved "https://registry.yarnpkg.com/is-network-error/-/is-network-error-1.3.2.tgz#9460bc30f8419a4bca77114f4de88a3ee5e0c519" + integrity sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA== is-npm@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz" - integrity sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ== + version "6.1.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-6.1.0.tgz#f70e0b6c132dfc817ac97d3badc0134945b098d3" + integrity sha512-O2z4/kNgyjhQwVR1Wpkbfc19JIhggF97NZNCpWTnjH7kVcZMUrnut9XSN7txI7VdyIYk5ZatOq3zvSuWpU8hoA== is-number@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-obj@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== is-obj@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== is-path-inside@^3.0.2: version "3.0.3" - resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== is-plain-obj@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== is-plain-obj@^4.0.0: version "4.1.0" - resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0" integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== is-plain-object@^2.0.4: version "2.0.4" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: isobject "^3.0.1" +is-promise@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-4.0.0.tgz#42ff9f84206c1991d26debf520dd5c01042dd2f3" + integrity sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ== + is-regexp@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== is-stream@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== is-typedarray@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== is-wsl@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== dependencies: is-docker "^2.0.0" is-wsl@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz" - integrity sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw== + version "3.1.1" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-3.1.1.tgz#327897b26832a3eb117da6c27492d04ca132594f" + integrity sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw== dependencies: is-inside-container "^1.0.0" is-yarn-global@^0.4.0: version "0.4.1" - resolved "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz" + resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.4.1.tgz#b312d902b313f81e4eaf98b6361ba2b45cd694bb" integrity sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ== isarray@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== isarray@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== isexe@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== isobject@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== -jackspeak@^3.1.2: - version "3.4.3" - resolved "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz" - integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== - dependencies: - "@isaacs/cliui" "^8.0.2" - optionalDependencies: - "@pkgjs/parseargs" "^0.11.0" - jest-util@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== dependencies: "@jest/types" "^29.6.3" @@ -6596,7 +6985,7 @@ jest-util@^29.7.0: jest-worker@^27.4.5: version "27.5.1" - resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== dependencies: "@types/node" "*" @@ -6605,7 +6994,7 @@ jest-worker@^27.4.5: jest-worker@^29.4.3: version "29.7.0" - resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== dependencies: "@types/node" "*" @@ -6613,20 +7002,20 @@ jest-worker@^29.4.3: merge-stream "^2.0.0" supports-color "^8.0.0" -jiti@^1.20.0, jiti@^1.21.6: +jiti@^1.20.0, jiti@^1.21.7: version "1.21.7" - resolved "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.7.tgz#9dd81043424a3d28458b193d965f0d18a2300ba9" integrity sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A== -jiti@^2.6.1: - version "2.6.1" - resolved "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz" - integrity sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ== +jiti@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.7.0.tgz#974228f2f4ca2bc21885a1797b45fea68e950c64" + integrity sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ== joi@^17.9.2: - version "17.13.3" - resolved "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz" - integrity sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA== + version "17.13.4" + resolved "https://registry.yarnpkg.com/joi/-/joi-17.13.4.tgz#ad6153d97ce558eb3a3b593e0d43eab51df1c474" + integrity sha512-1RuuER6kmt8K8I3nIWvPZKi5RQCb568ZPyY4Pwjlua+yo+63ZTmIwxLZH0heBmiKN4uxjvCiarDrjaeH84xicQ== dependencies: "@hapi/hoek" "^9.3.0" "@hapi/topo" "^5.1.0" @@ -6636,237 +7025,213 @@ joi@^17.9.2: "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + version "4.3.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.3.0.tgz#d1900572a7f7cf0b5f540c83673e60bad3436592" + integrity sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q== dependencies: argparse "^2.0.1" jsesc@^3.0.2, jsesc@~3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d" integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== json-buffer@3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== -json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: +json-parse-even-better-errors@^2.3.0: version "2.3.1" - resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-schema-traverse@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== -json-schema@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz" - integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== json5@^2.1.2, json5@^2.2.3: version "2.2.3" - resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + version "6.2.1" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.2.1.tgz#b6e31717f22cc37330b081ce0051ed5de53af2f6" + integrity sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q== dependencies: universalify "^2.0.0" optionalDependencies: graceful-fs "^4.1.6" -katex@^0.16.22: - version "0.16.22" - resolved "https://registry.npmjs.org/katex/-/katex-0.16.22.tgz" - integrity sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg== +katex@^0.16.45: + version "0.16.47" + resolved "https://registry.yarnpkg.com/katex/-/katex-0.16.47.tgz#0a13a42c2deb4f74e61f162d440b9165a548030f" + integrity sha512-Eeo8Ys1doU1z+x8AZsPpQu+p/QcZBI5PeOo7QGQdy2x2m0MU/hYagBbGOmXwr5KVbEfVuWv9LpnQWeehogurjg== dependencies: commander "^8.3.0" keyv@^4.5.3: version "4.5.4" - resolved "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== dependencies: json-buffer "3.0.1" khroma@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/khroma/-/khroma-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/khroma/-/khroma-2.1.0.tgz#45f2ce94ce231a437cf5b63c2e886e6eb42bbbb1" integrity sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw== -kind-of@^6.0.0, kind-of@^6.0.2: +kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3: version "6.0.3" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== klaw-sync@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/klaw-sync/-/klaw-sync-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== dependencies: graceful-fs "^4.1.11" kleur@^3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== -kolorist@^1.8.0: - version "1.8.0" - resolved "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz" - integrity sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ== - -langium@3.3.1: - version "3.3.1" - resolved "https://registry.npmjs.org/langium/-/langium-3.3.1.tgz" - integrity sha512-QJv/h939gDpvT+9SiLVlY7tZC3xB2qK57v0J04Sh9wpMb6MP1q8gB21L3WIo8T5P1MSMg3Ep14L7KkDCFG3y4w== - dependencies: - chevrotain "~11.0.3" - chevrotain-allstar "~0.3.0" - vscode-languageserver "~9.0.1" - vscode-languageserver-textdocument "~1.0.11" - vscode-uri "~3.0.8" - latest-version@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-7.0.0.tgz#843201591ea81a4d404932eeb61240fe04e9e5da" integrity sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg== dependencies: package-json "^8.1.0" -launch-editor@^2.6.1: - version "2.12.0" - resolved "https://registry.npmjs.org/launch-editor/-/launch-editor-2.12.0.tgz" - integrity sha512-giOHXoOtifjdHqUamwKq6c49GzBdLjvxrd2D+Q4V6uOHopJv7p9VJxikDsQ/CBXZbEITgUqSVHXLTG3VhPP1Dg== +launch-editor@^2.14.1: + version "2.14.1" + resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.14.1.tgz#f7e0da3f58aaea03fea01074d840b5f739ed7ddc" + integrity sha512-QWBrQsMpH7gPr965dsKD/3cKWiNoTjpATQf++Xq63N6sKRGMwlVXz41O1IZTMfZQgBctD/K5Zt06+/I6pP6+HA== dependencies: picocolors "^1.1.1" - shell-quote "^1.8.3" + shell-quote "^1.8.4" layout-base@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/layout-base/-/layout-base-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/layout-base/-/layout-base-1.0.2.tgz#1291e296883c322a9dd4c5dd82063721b53e26e2" integrity sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg== layout-base@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/layout-base/-/layout-base-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/layout-base/-/layout-base-2.0.1.tgz#d0337913586c90f9c2c075292069f5c2da5dd285" integrity sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg== leven@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== -lightningcss-android-arm64@1.30.2: - version "1.30.2" - resolved "https://registry.yarnpkg.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz#6966b7024d39c94994008b548b71ab360eb3a307" - integrity sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A== - -lightningcss-darwin-arm64@1.30.2: - version "1.30.2" - resolved "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz" - integrity sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA== - -lightningcss-darwin-x64@1.30.2: - version "1.30.2" - resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz#5ce87e9cd7c4f2dcc1b713f5e8ee185c88d9b7cd" - integrity sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ== - -lightningcss-freebsd-x64@1.30.2: - version "1.30.2" - resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz#6ae1d5e773c97961df5cff57b851807ef33692a5" - integrity sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA== - -lightningcss-linux-arm-gnueabihf@1.30.2: - version "1.30.2" - resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz#62c489610c0424151a6121fa99d77731536cdaeb" - integrity sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA== - -lightningcss-linux-arm64-gnu@1.30.2: - version "1.30.2" - resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz#2a3661b56fe95a0cafae90be026fe0590d089298" - integrity sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A== - -lightningcss-linux-arm64-musl@1.30.2: - version "1.30.2" - resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz#d7ddd6b26959245e026bc1ad9eb6aa983aa90e6b" - integrity sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA== - -lightningcss-linux-x64-gnu@1.30.2: - version "1.30.2" - resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz#5a89814c8e63213a5965c3d166dff83c36152b1a" - integrity sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w== - -lightningcss-linux-x64-musl@1.30.2: - version "1.30.2" - resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz#808c2e91ce0bf5d0af0e867c6152e5378c049728" - integrity sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA== - -lightningcss-win32-arm64-msvc@1.30.2: - version "1.30.2" - resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz#ab4a8a8a2e6a82a4531e8bbb6bf0ff161ee6625a" - integrity sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ== - -lightningcss-win32-x64-msvc@1.30.2: - version "1.30.2" - resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz#f01f382c8e0a27e1c018b0bee316d210eac43b6e" - integrity sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw== - -lightningcss@1.30.2: - version "1.30.2" - resolved "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz" - integrity sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ== +lightningcss-android-arm64@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz#f033885116dfefd9c6f54787523e3514b61e1968" + integrity sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg== + +lightningcss-darwin-arm64@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz#50b71871b01c8199584b649e292547faea7af9b5" + integrity sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ== + +lightningcss-darwin-x64@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz#35f3e97332d130b9ca181e11b568ded6aebc6d5e" + integrity sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w== + +lightningcss-freebsd-x64@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz#9777a76472b64ed6ff94342ad64c7bafd794a575" + integrity sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig== + +lightningcss-linux-arm-gnueabihf@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz#13ae652e1ab73b9135d7b7da172f666c410ad53d" + integrity sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw== + +lightningcss-linux-arm64-gnu@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz#417858795a94592f680123a1b1f9da8a0e1ef335" + integrity sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ== + +lightningcss-linux-arm64-musl@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz#6be36692e810b718040802fd809623cffe732133" + integrity sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg== + +lightningcss-linux-x64-gnu@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz#0b7803af4eb21cfd38dd39fe2abbb53c7dd091f6" + integrity sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA== + +lightningcss-linux-x64-musl@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz#88dc8ba865ddddb1ac5ef04b0f161804418c163b" + integrity sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg== + +lightningcss-win32-arm64-msvc@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz#4f30ba3fa5e925f5b79f945e8cc0d176c3b1ab38" + integrity sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw== + +lightningcss-win32-x64-msvc@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz#141aa5605645064928902bb4af045fa7d9f4220a" + integrity sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q== + +lightningcss@1.32.0: + version "1.32.0" + resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.32.0.tgz#b85aae96486dcb1bf49a7c8571221273f4f1e4a9" + integrity sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ== dependencies: detect-libc "^2.0.3" optionalDependencies: - lightningcss-android-arm64 "1.30.2" - lightningcss-darwin-arm64 "1.30.2" - lightningcss-darwin-x64 "1.30.2" - lightningcss-freebsd-x64 "1.30.2" - lightningcss-linux-arm-gnueabihf "1.30.2" - lightningcss-linux-arm64-gnu "1.30.2" - lightningcss-linux-arm64-musl "1.30.2" - lightningcss-linux-x64-gnu "1.30.2" - lightningcss-linux-x64-musl "1.30.2" - lightningcss-win32-arm64-msvc "1.30.2" - lightningcss-win32-x64-msvc "1.30.2" - -lilconfig@^3.0.0, lilconfig@^3.1.1, lilconfig@^3.1.3: + lightningcss-android-arm64 "1.32.0" + lightningcss-darwin-arm64 "1.32.0" + lightningcss-darwin-x64 "1.32.0" + lightningcss-freebsd-x64 "1.32.0" + lightningcss-linux-arm-gnueabihf "1.32.0" + lightningcss-linux-arm64-gnu "1.32.0" + lightningcss-linux-arm64-musl "1.32.0" + lightningcss-linux-x64-gnu "1.32.0" + lightningcss-linux-x64-musl "1.32.0" + lightningcss-win32-arm64-msvc "1.32.0" + lightningcss-win32-x64-msvc "1.32.0" + +lilconfig@^3.1.1, lilconfig@^3.1.3: version "3.1.3" - resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.3.tgz#a1bcfd6257f9585bf5ae14ceeebb7b559025e4c4" integrity sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw== lines-and-columns@^1.1.6: version "1.2.4" - resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== lit-element@^4.2.0: version "4.2.2" - resolved "https://registry.npmjs.org/lit-element/-/lit-element-4.2.2.tgz" + resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-4.2.2.tgz#f74fcbfbea945eae5614ece22a674fa52ca3365b" integrity sha512-aFKhNToWxoyhkNDmWZwEva2SlQia+jfG0fjIWV//YeTaWrVnOxD89dPKfigCUspXFmjzOEUQpOkejH5Ly6sG0w== dependencies: "@lit-labs/ssr-dom-shim" "^1.5.0" @@ -6874,164 +7239,155 @@ lit-element@^4.2.0: lit-html "^3.3.0" lit-html@^3.3.0: - version "3.3.2" - resolved "https://registry.npmjs.org/lit-html/-/lit-html-3.3.2.tgz" - integrity sha512-Qy9hU88zcmaxBXcc10ZpdK7cOLXvXpRoBxERdtqV9QOrfpMZZ6pSYP91LhpPtap3sFMUiL7Tw2RImbe0Al2/kw== + version "3.3.3" + resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-3.3.3.tgz#a63fd02fb8c1c7b7057ee805ab6c612fdebef0b1" + integrity sha512-el8M6jK2o3RXBnrSHX3ZKrsN8zEV63pSExTO1wYJz7QndGYZ8353e2a5PPX+qHe2aGayfnchQmkAojaWAREOIA== dependencies: "@types/trusted-types" "^2.0.2" lit@^3.2.1: - version "3.3.2" - resolved "https://registry.npmjs.org/lit/-/lit-3.3.2.tgz" - integrity sha512-NF9zbsP79l4ao2SNrH3NkfmFgN/hBYSQo90saIVI1o5GpjAdCPVstVzO1MrLOakHoEhYkrtRjPK6Ob521aoYWQ== + version "3.3.3" + resolved "https://registry.yarnpkg.com/lit/-/lit-3.3.3.tgz#93579885e51a20a772c68482a34706fe1636e8f0" + integrity sha512-fycuvZg/hkpozL00lm1pEJH5nN/lr9ZXd6mJI2HSN4+Bzc+LDNdEApJ6HFbPkdFNHLvOplIIuJvxkS4XUxqirw== dependencies: "@lit/reactive-element" "^2.1.0" lit-element "^4.2.0" lit-html "^3.3.0" -loader-runner@^4.2.0: - version "4.3.0" - resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz" - integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== +loader-runner@^4.3.2: + version "4.3.2" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.2.tgz#9913d3a15971f8f635915e601fb5c9d495d918e9" + integrity sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w== loader-utils@^2.0.0: version "2.0.4" - resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== dependencies: big.js "^5.2.2" emojis-list "^3.0.0" json5 "^2.1.2" -local-pkg@^1.0.0: - version "1.1.1" - resolved "https://registry.npmjs.org/local-pkg/-/local-pkg-1.1.1.tgz" - integrity sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg== - dependencies: - mlly "^1.7.4" - pkg-types "^2.0.1" - quansync "^0.2.8" - locate-path@^7.1.0: version "7.2.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== dependencies: p-locate "^6.0.0" -lodash-es@4.17.21, lodash-es@^4.17.21: - version "4.17.21" - resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz" - integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== +lodash-es@^4.17.21: + version "4.18.1" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.18.1.tgz#b962eeb80d9d983a900bf342961fb7418ca10b1d" + integrity sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A== lodash.debounce@^4.0.8: version "4.0.8" - resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== lodash.memoize@^4.1.2: version "4.1.2" - resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== lodash.uniq@^4.5.0: version "4.5.0" - resolved "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== lodash@^4.17.20, lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + version "4.18.1" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.18.1.tgz#ff2b66c1f6326d59513de2407bf881439812771c" + integrity sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q== + +long@^5.2.3, long@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/long/-/long-5.3.2.tgz#1d84463095999262d7d7b7f8bfd4a8cc55167f83" + integrity sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA== longest-streak@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4" integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g== loose-envify@^1.0.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" lower-case@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== dependencies: tslib "^2.0.3" lowercase-keys@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2" integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ== -lru-cache@^10.2.0: - version "10.4.3" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz" - integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== - lru-cache@^5.1.1: version "5.1.1" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== dependencies: yallist "^3.0.2" lunr-languages@^1.4.0: - version "1.14.0" - resolved "https://registry.npmjs.org/lunr-languages/-/lunr-languages-1.14.0.tgz" - integrity sha512-hWUAb2KqM3L7J5bcrngszzISY4BxrXn/Xhbb9TTCJYEGqlR1nG67/M14sp09+PTIRklobrn57IAxcdcO/ZFyNA== + version "1.20.0" + resolved "https://registry.yarnpkg.com/lunr-languages/-/lunr-languages-1.20.0.tgz#d145555fdeb546300b1394860d768487b8e0e182" + integrity sha512-3LVgE7ekWXt04NBci/hjm+NXJxXZeRXuyClL0kA0HONyBOjxhP3ZQkuWIM4Ok3pbeptUW/rj3XcJcJuJVPwPYA== lunr@^2.3.9: version "2.3.9" - resolved "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz" + resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== magic-string@^0.30.21: version "0.30.21" - resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.21.tgz#56763ec09a0fa8091df27879fd94d19078c00d91" integrity sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ== dependencies: "@jridgewell/sourcemap-codec" "^1.5.5" mark.js@^8.11.1: version "8.11.1" - resolved "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz" + resolved "https://registry.yarnpkg.com/mark.js/-/mark.js-8.11.1.tgz#180f1f9ebef8b0e638e4166ad52db879beb2ffc5" integrity sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ== markdown-extensions@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-2.0.0.tgz#34bebc83e9938cae16e0e017e4a9814a8330d3c4" integrity sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q== -markdown-table@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz" - integrity sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A== - dependencies: - repeat-string "^1.0.0" - markdown-table@^3.0.0: version "3.0.4" - resolved "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.4.tgz#fe44d6d410ff9d6f2ea1797a3f60aa4d2b631c2a" integrity sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw== -marked@^16.0.0, marked@^16.3.0: +marked@^16.3.0: version "16.4.2" - resolved "https://registry.npmjs.org/marked/-/marked-16.4.2.tgz" + resolved "https://registry.yarnpkg.com/marked/-/marked-16.4.2.tgz#4959a64be6c486f0db7467ead7ce288de54290a3" integrity sha512-TI3V8YYWvkVf3KJe1dRkpnjs68JUPyEa5vjKrp1XEEJUAOaQc+Qj+L1qWbPd0SJuAdQkFU0h73sXXqwDYxsiDA== +matcher@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca" + integrity sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng== + dependencies: + escape-string-regexp "^4.0.0" + math-intrinsics@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== mdast-util-directive@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-directive/-/mdast-util-directive-3.1.0.tgz#f3656f4aab6ae3767d3c72cfab5e8055572ccba1" integrity sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q== dependencies: "@types/mdast" "^4.0.0" @@ -7046,7 +7402,7 @@ mdast-util-directive@^3.0.0: mdast-util-find-and-replace@^3.0.0, mdast-util-find-and-replace@^3.0.1: version "3.0.2" - resolved "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz#70a3174c894e14df722abf43bc250cbae44b11df" integrity sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg== dependencies: "@types/mdast" "^4.0.0" @@ -7055,9 +7411,9 @@ mdast-util-find-and-replace@^3.0.0, mdast-util-find-and-replace@^3.0.1: unist-util-visit-parents "^6.0.0" mdast-util-from-markdown@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz" - integrity sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA== + version "2.0.3" + resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz#c95822b91aab75f18a4cbe8b2f51b873ed2cf0c7" + integrity sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q== dependencies: "@types/mdast" "^4.0.0" "@types/unist" "^3.0.0" @@ -7074,7 +7430,7 @@ mdast-util-from-markdown@^2.0.0: mdast-util-frontmatter@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-frontmatter/-/mdast-util-frontmatter-2.0.1.tgz#f5f929eb1eb36c8a7737475c7eb438261f964ee8" integrity sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA== dependencies: "@types/mdast" "^4.0.0" @@ -7086,7 +7442,7 @@ mdast-util-frontmatter@^2.0.0: mdast-util-gfm-autolink-literal@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz#abd557630337bd30a6d5a4bd8252e1c2dc0875d5" integrity sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ== dependencies: "@types/mdast" "^4.0.0" @@ -7097,7 +7453,7 @@ mdast-util-gfm-autolink-literal@^2.0.0: mdast-util-gfm-footnote@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz#7778e9d9ca3df7238cc2bd3fa2b1bf6a65b19403" integrity sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ== dependencies: "@types/mdast" "^4.0.0" @@ -7108,7 +7464,7 @@ mdast-util-gfm-footnote@^2.0.0: mdast-util-gfm-strikethrough@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz#d44ef9e8ed283ac8c1165ab0d0dfd058c2764c16" integrity sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg== dependencies: "@types/mdast" "^4.0.0" @@ -7117,7 +7473,7 @@ mdast-util-gfm-strikethrough@^2.0.0: mdast-util-gfm-table@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz#7a435fb6223a72b0862b33afbd712b6dae878d38" integrity sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg== dependencies: "@types/mdast" "^4.0.0" @@ -7128,7 +7484,7 @@ mdast-util-gfm-table@^2.0.0: mdast-util-gfm-task-list-item@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz#e68095d2f8a4303ef24094ab642e1047b991a936" integrity sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ== dependencies: "@types/mdast" "^4.0.0" @@ -7138,7 +7494,7 @@ mdast-util-gfm-task-list-item@^2.0.0: mdast-util-gfm@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz#2cdf63b92c2a331406b0fb0db4c077c1b0331751" integrity sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ== dependencies: mdast-util-from-markdown "^2.0.0" @@ -7151,7 +7507,7 @@ mdast-util-gfm@^3.0.0: mdast-util-mdx-expression@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz#43f0abac9adc756e2086f63822a38c8d3c3a5096" integrity sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ== dependencies: "@types/estree-jsx" "^1.0.0" @@ -7163,7 +7519,7 @@ mdast-util-mdx-expression@^2.0.0: mdast-util-mdx-jsx@^3.0.0: version "3.2.0" - resolved "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz#fd04c67a2a7499efb905a8a5c578dddc9fdada0d" integrity sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q== dependencies: "@types/estree-jsx" "^1.0.0" @@ -7181,7 +7537,7 @@ mdast-util-mdx-jsx@^3.0.0: mdast-util-mdx@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz#792f9cf0361b46bee1fdf1ef36beac424a099c41" integrity sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w== dependencies: mdast-util-from-markdown "^2.0.0" @@ -7192,7 +7548,7 @@ mdast-util-mdx@^3.0.0: mdast-util-mdxjs-esm@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz#019cfbe757ad62dd557db35a695e7314bcc9fa97" integrity sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg== dependencies: "@types/estree-jsx" "^1.0.0" @@ -7204,16 +7560,16 @@ mdast-util-mdxjs-esm@^2.0.0: mdast-util-phrasing@^4.0.0: version "4.1.0" - resolved "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz#7cc0a8dec30eaf04b7b1a9661a92adb3382aa6e3" integrity sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w== dependencies: "@types/mdast" "^4.0.0" unist-util-is "^6.0.0" mdast-util-to-hast@^13.0.0: - version "13.2.0" - resolved "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz" - integrity sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA== + version "13.2.1" + resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz#d7ff84ca499a57e2c060ae67548ad950e689a053" + integrity sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA== dependencies: "@types/hast" "^3.0.0" "@types/mdast" "^4.0.0" @@ -7227,7 +7583,7 @@ mdast-util-to-hast@^13.0.0: mdast-util-to-markdown@^2.0.0: version "2.1.2" - resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz#f910ffe60897f04bb4b7e7ee434486f76288361b" integrity sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA== dependencies: "@types/mdast" "^4.0.0" @@ -7242,31 +7598,44 @@ mdast-util-to-markdown@^2.0.0: mdast-util-to-string@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz#7a5121475556a04e7eddeb67b264aae79d312814" integrity sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg== dependencies: "@types/mdast" "^4.0.0" mdn-data@2.0.28: version "2.0.28" - resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g== mdn-data@2.0.30: version "2.0.30" - resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc" integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA== media-typer@0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== +media-typer@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-1.1.0.tgz#6ab74b8f2d3320f2064b2a87a38e7931ff3a5561" + integrity sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw== + memfs@^4.43.1: - version "4.51.1" - resolved "https://registry.npmjs.org/memfs/-/memfs-4.51.1.tgz" - integrity sha512-Eyt3XrufitN2ZL9c/uIRMyDwXanLI88h/L3MoWqNY747ha3dMR9dWqp8cRT5ntjZ0U1TNuq4U91ZXK0sMBjYOQ== - dependencies: + version "4.64.0" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-4.64.0.tgz#88bb85610804c154a8121424d2aeba7c5bdf4e38" + integrity sha512-Kw72fgY7Wn+sD8KmtNWSafl1dz0UvAsE/PHs3YVfLiaZuA3HxNm9sRLqAu0ATiBGJvME1PxZXbBZPv5GycDeAw== + dependencies: + "@jsonjoy.com/fs-core" "4.64.0" + "@jsonjoy.com/fs-fsa" "4.64.0" + "@jsonjoy.com/fs-node" "4.64.0" + "@jsonjoy.com/fs-node-builtins" "4.64.0" + "@jsonjoy.com/fs-node-to-fsa" "4.64.0" + "@jsonjoy.com/fs-node-utils" "4.64.0" + "@jsonjoy.com/fs-print" "4.64.0" + "@jsonjoy.com/fs-snapshot" "4.64.0" "@jsonjoy.com/json-pack" "^1.11.0" "@jsonjoy.com/util" "^1.9.0" glob-to-regex.js "^1.0.1" @@ -7276,54 +7645,60 @@ memfs@^4.43.1: merge-descriptors@1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5" integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== +merge-descriptors@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-2.0.0.tgz#ea922f660635a2249ee565e0449f951e6b603808" + integrity sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g== + merge-stream@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" - resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== mermaid@>=11.6.0: - version "11.9.0" - resolved "https://registry.npmjs.org/mermaid/-/mermaid-11.9.0.tgz" - integrity sha512-YdPXn9slEwO0omQfQIsW6vS84weVQftIyyTGAZCwM//MGhPzL1+l6vO6bkf0wnP4tHigH1alZ5Ooy3HXI2gOag== + version "11.16.0" + resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-11.16.0.tgz#dc946bc84bde9d093ba14940d49df1d9f7d8c32f" + integrity sha512-Zvm3kbstgdpvIJPPItlL7fppIZ3kibvc1oZIGxdvk9t6UFz6flv+Jw7FtRGKwfcI8OckmH04LqG6LlS6X4B1pA== dependencies: - "@braintree/sanitize-url" "^7.0.4" - "@iconify/utils" "^2.1.33" - "@mermaid-js/parser" "^0.6.2" + "@braintree/sanitize-url" "^7.1.2" + "@iconify/utils" "^3.0.2" + "@mermaid-js/parser" "^1.2.0" "@types/d3" "^7.4.3" - cytoscape "^3.29.3" + "@upsetjs/venn.js" "^2.0.0" + cytoscape "^3.33.3" cytoscape-cose-bilkent "^4.1.0" cytoscape-fcose "^2.2.0" d3 "^7.9.0" d3-sankey "^0.12.3" - dagre-d3-es "7.0.11" - dayjs "^1.11.13" - dompurify "^3.2.5" - katex "^0.16.22" + dagre-d3-es "7.0.14" + dayjs "^1.11.20" + dompurify "^3.3.3" + es-toolkit "^1.45.1" + katex "^0.16.45" khroma "^2.1.0" - lodash-es "^4.17.21" - marked "^16.0.0" + marked "^16.3.0" roughjs "^4.6.6" stylis "^4.3.6" ts-dedent "^2.2.0" - uuid "^11.1.0" + uuid "^11.1.0 || ^12 || ^13 || ^14.0.0" methods@~1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== micromark-core-commonmark@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.2.tgz" - integrity sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w== + version "2.0.3" + resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz#c691630e485021a68cf28dbc2b2ca27ebf678cd4" + integrity sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg== dependencies: decode-named-character-reference "^1.0.0" devlop "^1.0.0" @@ -7344,7 +7719,7 @@ micromark-core-commonmark@^2.0.0: micromark-extension-directive@^3.0.0: version "3.0.2" - resolved "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-directive/-/micromark-extension-directive-3.0.2.tgz#2eb61985d1995a7c1ff7621676a4f32af29409e8" integrity sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA== dependencies: devlop "^1.0.0" @@ -7357,7 +7732,7 @@ micromark-extension-directive@^3.0.0: micromark-extension-frontmatter@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-frontmatter/-/micromark-extension-frontmatter-2.0.0.tgz#651c52ffa5d7a8eeed687c513cd869885882d67a" integrity sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg== dependencies: fault "^2.0.0" @@ -7367,7 +7742,7 @@ micromark-extension-frontmatter@^2.0.0: micromark-extension-gfm-autolink-literal@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz#6286aee9686c4462c1e3552a9d505feddceeb935" integrity sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw== dependencies: micromark-util-character "^2.0.0" @@ -7377,7 +7752,7 @@ micromark-extension-gfm-autolink-literal@^2.0.0: micromark-extension-gfm-footnote@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz#4dab56d4e398b9853f6fe4efac4fc9361f3e0750" integrity sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw== dependencies: devlop "^1.0.0" @@ -7391,7 +7766,7 @@ micromark-extension-gfm-footnote@^2.0.0: micromark-extension-gfm-strikethrough@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz#86106df8b3a692b5f6a92280d3879be6be46d923" integrity sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw== dependencies: devlop "^1.0.0" @@ -7403,7 +7778,7 @@ micromark-extension-gfm-strikethrough@^2.0.0: micromark-extension-gfm-table@^2.0.0: version "2.1.1" - resolved "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz#fac70bcbf51fe65f5f44033118d39be8a9b5940b" integrity sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg== dependencies: devlop "^1.0.0" @@ -7414,14 +7789,14 @@ micromark-extension-gfm-table@^2.0.0: micromark-extension-gfm-tagfilter@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz#f26d8a7807b5985fba13cf61465b58ca5ff7dc57" integrity sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg== dependencies: micromark-util-types "^2.0.0" micromark-extension-gfm-task-list-item@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz#bcc34d805639829990ec175c3eea12bb5b781f2c" integrity sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw== dependencies: devlop "^1.0.0" @@ -7432,7 +7807,7 @@ micromark-extension-gfm-task-list-item@^2.0.0: micromark-extension-gfm@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz#3e13376ab95dd7a5cfd0e29560dfe999657b3c5b" integrity sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w== dependencies: micromark-extension-gfm-autolink-literal "^2.0.0" @@ -7445,9 +7820,9 @@ micromark-extension-gfm@^3.0.0: micromark-util-types "^2.0.0" micromark-extension-mdx-expression@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.0.tgz" - integrity sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ== + version "3.0.1" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.1.tgz#43d058d999532fb3041195a3c3c05c46fa84543b" + integrity sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q== dependencies: "@types/estree" "^1.0.0" devlop "^1.0.0" @@ -7459,11 +7834,10 @@ micromark-extension-mdx-expression@^3.0.0: micromark-util-types "^2.0.0" micromark-extension-mdx-jsx@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.1.tgz" - integrity sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg== + version "3.0.2" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.2.tgz#ffc98bdb649798902fa9fc5689f67f9c1c902044" + integrity sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ== dependencies: - "@types/acorn" "^4.0.0" "@types/estree" "^1.0.0" devlop "^1.0.0" estree-util-is-identifier-name "^3.0.0" @@ -7477,14 +7851,14 @@ micromark-extension-mdx-jsx@^3.0.0: micromark-extension-mdx-md@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz#1d252881ea35d74698423ab44917e1f5b197b92d" integrity sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ== dependencies: micromark-util-types "^2.0.0" micromark-extension-mdxjs-esm@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz#de21b2b045fd2059bd00d36746081de38390d54a" integrity sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A== dependencies: "@types/estree" "^1.0.0" @@ -7499,7 +7873,7 @@ micromark-extension-mdxjs-esm@^3.0.0: micromark-extension-mdxjs@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz#b5a2e0ed449288f3f6f6c544358159557549de18" integrity sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ== dependencies: acorn "^8.0.0" @@ -7513,7 +7887,7 @@ micromark-extension-mdxjs@^3.0.0: micromark-factory-destination@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz#8fef8e0f7081f0474fbdd92deb50c990a0264639" integrity sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA== dependencies: micromark-util-character "^2.0.0" @@ -7522,7 +7896,7 @@ micromark-factory-destination@^2.0.0: micromark-factory-label@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz#5267efa97f1e5254efc7f20b459a38cb21058ba1" integrity sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg== dependencies: devlop "^1.0.0" @@ -7531,9 +7905,9 @@ micromark-factory-label@^2.0.0: micromark-util-types "^2.0.0" micromark-factory-mdx-expression@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.2.tgz" - integrity sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw== + version "2.0.3" + resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.3.tgz#bb09988610589c07d1c1e4425285895041b3dfa9" + integrity sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ== dependencies: "@types/estree" "^1.0.0" devlop "^1.0.0" @@ -7547,7 +7921,7 @@ micromark-factory-mdx-expression@^2.0.0: micromark-factory-space@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz#c8f40b0640a0150751d3345ed885a080b0d15faf" integrity sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ== dependencies: micromark-util-character "^1.0.0" @@ -7555,7 +7929,7 @@ micromark-factory-space@^1.0.0: micromark-factory-space@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz#36d0212e962b2b3121f8525fc7a3c7c029f334fc" integrity sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg== dependencies: micromark-util-character "^2.0.0" @@ -7563,7 +7937,7 @@ micromark-factory-space@^2.0.0: micromark-factory-title@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz#237e4aa5d58a95863f01032d9ee9b090f1de6e94" integrity sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw== dependencies: micromark-factory-space "^2.0.0" @@ -7573,7 +7947,7 @@ micromark-factory-title@^2.0.0: micromark-factory-whitespace@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz#06b26b2983c4d27bfcc657b33e25134d4868b0b1" integrity sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ== dependencies: micromark-factory-space "^2.0.0" @@ -7583,7 +7957,7 @@ micromark-factory-whitespace@^2.0.0: micromark-util-character@^1.0.0, micromark-util-character@^1.1.0: version "1.2.0" - resolved "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.2.0.tgz#4fedaa3646db249bc58caeb000eb3549a8ca5dcc" integrity sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg== dependencies: micromark-util-symbol "^1.0.0" @@ -7591,7 +7965,7 @@ micromark-util-character@^1.0.0, micromark-util-character@^1.1.0: micromark-util-character@^2.0.0: version "2.1.1" - resolved "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-2.1.1.tgz#2f987831a40d4c510ac261e89852c4e9703ccda6" integrity sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q== dependencies: micromark-util-symbol "^2.0.0" @@ -7599,14 +7973,14 @@ micromark-util-character@^2.0.0: micromark-util-chunked@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz#47fbcd93471a3fccab86cff03847fc3552db1051" integrity sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA== dependencies: micromark-util-symbol "^2.0.0" micromark-util-classify-character@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz#d399faf9c45ca14c8b4be98b1ea481bced87b629" integrity sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q== dependencies: micromark-util-character "^2.0.0" @@ -7615,7 +7989,7 @@ micromark-util-classify-character@^2.0.0: micromark-util-combine-extensions@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz#2a0f490ab08bff5cc2fd5eec6dd0ca04f89b30a9" integrity sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg== dependencies: micromark-util-chunked "^2.0.0" @@ -7623,14 +7997,14 @@ micromark-util-combine-extensions@^2.0.0: micromark-util-decode-numeric-character-reference@^2.0.0: version "2.0.2" - resolved "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz#fcf15b660979388e6f118cdb6bf7d79d73d26fe5" integrity sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw== dependencies: micromark-util-symbol "^2.0.0" micromark-util-decode-string@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz#6cb99582e5d271e84efca8e61a807994d7161eb2" integrity sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ== dependencies: decode-named-character-reference "^1.0.0" @@ -7640,15 +8014,14 @@ micromark-util-decode-string@^2.0.0: micromark-util-encode@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz#0d51d1c095551cfaac368326963cf55f15f540b8" integrity sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw== micromark-util-events-to-acorn@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.2.tgz" - integrity sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA== + version "2.0.3" + resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.3.tgz#e7a8a6b55a47e5a06c720d5a1c4abae8c37c98f3" + integrity sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg== dependencies: - "@types/acorn" "^4.0.0" "@types/estree" "^1.0.0" "@types/unist" "^3.0.0" devlop "^1.0.0" @@ -7659,26 +8032,26 @@ micromark-util-events-to-acorn@^2.0.0: micromark-util-html-tag-name@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz#e40403096481986b41c106627f98f72d4d10b825" integrity sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA== micromark-util-normalize-identifier@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz#c30d77b2e832acf6526f8bf1aa47bc9c9438c16d" integrity sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q== dependencies: micromark-util-symbol "^2.0.0" micromark-util-resolve-all@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz#e1a2d62cdd237230a2ae11839027b19381e31e8b" integrity sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg== dependencies: micromark-util-types "^2.0.0" micromark-util-sanitize-uri@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz#ab89789b818a58752b73d6b55238621b7faa8fd7" integrity sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ== dependencies: micromark-util-character "^2.0.0" @@ -7686,9 +8059,9 @@ micromark-util-sanitize-uri@^2.0.0: micromark-util-symbol "^2.0.0" micromark-util-subtokenize@^2.0.0: - version "2.0.4" - resolved "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.4.tgz" - integrity sha512-N6hXjrin2GTJDe3MVjf5FuXpm12PGm80BrUAeub9XFXca8JZbP+oIwY4LJSVwFUCL1IPm/WwSVUN7goFHmSGGQ== + version "2.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz#d8ade5ba0f3197a1cf6a2999fbbfe6357a1a19ee" + integrity sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA== dependencies: devlop "^1.0.0" micromark-util-chunked "^2.0.0" @@ -7697,28 +8070,28 @@ micromark-util-subtokenize@^2.0.0: micromark-util-symbol@^1.0.0, micromark-util-symbol@^1.0.1: version "1.1.0" - resolved "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz#813cd17837bdb912d069a12ebe3a44b6f7063142" integrity sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag== micromark-util-symbol@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz#e5da494e8eb2b071a0d08fb34f6cefec6c0a19b8" integrity sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q== micromark-util-types@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz#e6676a8cae0bb86a2171c498167971886cb7e283" integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg== micromark-util-types@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz" - integrity sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ== + version "2.0.2" + resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.2.tgz#f00225f5f5a0ebc3254f96c36b6605c4b393908e" + integrity sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA== micromark@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/micromark/-/micromark-4.0.1.tgz" - integrity sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw== + version "4.0.2" + resolved "https://registry.yarnpkg.com/micromark/-/micromark-4.0.2.tgz#91395a3e1884a198e62116e33c9c568e39936fdb" + integrity sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA== dependencies: "@types/debug" "^4.0.0" debug "^4.0.0" @@ -7740,7 +8113,7 @@ micromark@^4.0.0: micromatch@^4.0.2, micromatch@^4.0.5, micromatch@^4.0.8: version "4.0.8" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== dependencies: braces "^3.0.3" @@ -7748,130 +8121,118 @@ micromatch@^4.0.2, micromatch@^4.0.5, micromatch@^4.0.8: mime-db@1.52.0: version "1.52.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== "mime-db@>= 1.43.0 < 2", mime-db@^1.54.0: version "1.54.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.54.0.tgz#cddb3ee4f9c64530dff640236661d42cb6a314f5" integrity sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ== mime-db@~1.33.0: version "1.33.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ== -mime-types@2.1.18, mime-types@~2.1.17: +mime-types@2.1.18: version "2.1.18" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ== dependencies: mime-db "~1.33.0" -mime-types@^2.1.27, mime-types@~2.1.24, mime-types@~2.1.34: +mime-types@^2.1.27, mime-types@~2.1.24, mime-types@~2.1.34, mime-types@~2.1.35: version "2.1.35" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" -mime-types@^3.0.1: +mime-types@^3.0.0, mime-types@^3.0.1, mime-types@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-3.0.2.tgz#39002d4182575d5af036ffa118100f2524b2e2ab" integrity sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A== dependencies: mime-db "^1.54.0" mime@1.6.0: version "1.6.0" - resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== mimic-fn@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== mimic-response@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== mimic-response@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-4.0.0.tgz#35468b19e7c75d10f5165ea25e75a5ceea7cf70f" integrity sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg== mini-css-extract-plugin@^2.9.2: - version "2.9.4" - resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.4.tgz" - integrity sha512-ZWYT7ln73Hptxqxk2DxPU9MmapXRhxkJD6tkSR04dnQxm8BGu2hzgKLugK5yySD97u/8yy7Ma7E76k9ZdvtjkQ== + version "2.10.2" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.10.2.tgz#5c85ec9450c05d26e32531b465a15a08c3a57253" + integrity sha512-AOSS0IdEB95ayVkxn5oGzNQwqAi2J0Jb/kKm43t7H73s8+f5873g0yuj0PNvK4dO75mu5DHg4nlgp4k6Kga8eg== dependencies: schema-utils "^4.0.0" tapable "^2.2.1" mini-svg-data-uri@^1.4.3: version "1.4.4" - resolved "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz" + resolved "https://registry.yarnpkg.com/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz#8ab0aabcdf8c29ad5693ca595af19dd2ead09939" integrity sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg== minimalistic-assert@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== -minimatch@3.1.2: - version "3.1.2" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== +minimatch@3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.5.tgz#580c88f8d5445f2bd6aa8f3cadefa0de79fbd69e" + integrity sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w== dependencies: brace-expansion "^1.1.7" -minimatch@^9.0.4: - version "9.0.5" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" - integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== - dependencies: - brace-expansion "^2.0.1" - minimist@^1.2.0: version "1.2.8" - resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2: - version "7.1.2" - resolved "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz" - integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== - -mlly@^1.7.4: - version "1.7.4" - resolved "https://registry.npmjs.org/mlly/-/mlly-1.7.4.tgz" - integrity sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw== +minimizer-webpack-plugin@^5.6.1: + version "5.6.1" + resolved "https://registry.yarnpkg.com/minimizer-webpack-plugin/-/minimizer-webpack-plugin-5.6.1.tgz#289922a4c96c4ed1ddb76b8a00bd8074e89a2f7f" + integrity sha512-DoeAZz8Q1C1znwsUzej1fdoi4jCf7/+Em27ouLqfK/+3m8G+D7yDhUwrc3CNhjSzGUN1kn7Iv4sWmjflQHenpw== dependencies: - acorn "^8.14.0" - pathe "^2.0.1" - pkg-types "^1.3.0" - ufo "^1.5.4" + "@jridgewell/trace-mapping" "^0.3.25" + jest-worker "^27.4.5" + schema-utils "^4.3.0" + terser "^5.31.1" mrmime@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz" - integrity sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw== + version "2.0.1" + resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-2.0.1.tgz#bc3e87f7987853a54c9850eeb1f1078cd44adddc" + integrity sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ== ms@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== ms@2.1.3, ms@^2.1.3: version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== multicast-dns@^7.2.5: version "7.2.5" - resolved "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== dependencies: dns-packet "^5.2.2" @@ -7879,36 +8240,41 @@ multicast-dns@^7.2.5: mz@^2.7.0: version "2.7.0" - resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== dependencies: any-promise "^1.0.0" object-assign "^4.0.1" thenify-all "^1.0.0" -nanoid@^3.3.11: - version "3.3.11" - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz" - integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== +nanoid@^3.3.16: + version "3.3.16" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.16.tgz#a04d8ec4b1f10009d2d533947aefe4293737816c" + integrity sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q== negotiator@0.6.3: version "0.6.3" - resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== +negotiator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz#b6c91bb47172d69f93cfd7c357bbb529019b5f6a" + integrity sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg== + negotiator@~0.6.4: version "0.6.4" - resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7" integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== neo-async@^2.6.2: version "2.6.2" - resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== no-case@^3.0.4: version "3.0.4" - resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== dependencies: lower-case "^2.0.2" @@ -7916,7 +8282,7 @@ no-case@^3.0.4: node-emoji@^2.1.0: version "2.2.0" - resolved "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-2.2.0.tgz#1d000e3c76e462577895be1b436f4aa2d6760eb0" integrity sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw== dependencies: "@sindresorhus/is" "^4.6.0" @@ -7924,53 +8290,43 @@ node-emoji@^2.1.0: emojilib "^2.4.0" skin-tone "^2.0.0" -node-forge@^1: - version "1.3.3" - resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.3.3.tgz" - integrity sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg== - -node-releases@^2.0.27: - version "2.0.27" - resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz" - integrity sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA== +node-releases@^2.0.51: + version "2.0.51" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.51.tgz#cdc08433577f5b32ad01694481726e22eeb54aef" + integrity sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ== normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" - integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== - normalize-url@^8.0.0: - version "8.0.1" - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz" - integrity sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w== + version "8.1.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-8.1.1.tgz#751a20c8520e5725404c06015fea21d7567f25ef" + integrity sha512-JYc0DPlpGWB40kH5g07gGTrYuMqV653k3uBKY6uITPWds3M0ov3GaWGp9lbE3Bzngx8+XkfzgvASb9vk9JDFXQ== npm-run-path@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== dependencies: path-key "^3.0.0" nprogress@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/nprogress/-/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1" integrity sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA== nth-check@^2.0.1: version "2.1.1" - resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== dependencies: boolbase "^1.0.0" null-loader@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/null-loader/-/null-loader-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/null-loader/-/null-loader-4.0.1.tgz#8e63bd3a2dd3c64236a4679428632edd0a6dbc6a" integrity sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg== dependencies: loader-utils "^2.0.0" @@ -7978,27 +8334,27 @@ null-loader@^4.0.1: object-assign@^4.0.1, object-assign@^4.1.1: version "4.1.1" - resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== object-hash@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== -object-inspect@^1.13.3: +object-inspect@^1.13.3, object-inspect@^1.13.4: version "1.13.4" - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213" integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== object-keys@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object.assign@^4.1.0: version "4.1.7" - resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz#8c14ca1a424c6a561b0bb2a22f66f5049a945d3d" integrity sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw== dependencies: call-bind "^1.0.8" @@ -8010,31 +8366,69 @@ object.assign@^4.1.0: obuf@^1.0.0, obuf@^1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== -on-finished@2.4.1, on-finished@^2.4.1, on-finished@~2.4.1: +on-finished@^2.4.1, on-finished@~2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: ee-first "1.1.1" on-headers@~1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.1.0.tgz#59da4f91c45f5f989c6e4bcedc5a3b0aed70ff65" integrity sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A== +once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + onetime@^5.1.2: version "5.1.2" - resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" +onnxruntime-common@1.24.0-dev.20251116-b39e144322: + version "1.24.0-dev.20251116-b39e144322" + resolved "https://registry.yarnpkg.com/onnxruntime-common/-/onnxruntime-common-1.24.0-dev.20251116-b39e144322.tgz#6edecf4e5178f9d76907d5abbe241c3635e528dd" + integrity sha512-BOoomdHYmNRL5r4iQ4bMvsl2t0/hzVQ3OM3PHD0gxeXu1PmggqBv3puZicEUVOA3AtHHYmqZtjMj9FOfGrATTw== + +onnxruntime-common@1.24.3: + version "1.24.3" + resolved "https://registry.yarnpkg.com/onnxruntime-common/-/onnxruntime-common-1.24.3.tgz#fb93319a2d041fc9fe2a209167ba6ef2f1a47fee" + integrity sha512-GeuPZO6U/LBJXvwdaqHbuUmoXiEdeCjWi/EG7Y1HNnDwJYuk6WUbNXpF6luSUY8yASul3cmUlLGrCCL1ZgVXqA== + +onnxruntime-node@1.24.3: + version "1.24.3" + resolved "https://registry.yarnpkg.com/onnxruntime-node/-/onnxruntime-node-1.24.3.tgz#ec8da99c335aa5ea95559a3ac1ae915a89541d5e" + integrity sha512-JH7+czbc8ALA819vlTgcV+Q214/+VjGeBHDjX81+ZCD0PCVCIFGFNtT0V4sXG/1JXypKPgScQcB3ij/hk3YnTg== + dependencies: + adm-zip "^0.5.16" + global-agent "^3.0.0" + onnxruntime-common "1.24.3" + +onnxruntime-web@1.26.0-dev.20260416-b7804b056c: + version "1.26.0-dev.20260416-b7804b056c" + resolved "https://registry.yarnpkg.com/onnxruntime-web/-/onnxruntime-web-1.26.0-dev.20260416-b7804b056c.tgz#453f29768836322a6b8b6d1d730a8426b6582ae2" + integrity sha512-MD6Ss4GSpQBo6zqoJzyT9LRbKYs7x/JVN23FT24EcEvlqF4VuzPOeH6X38orZPKHQDbprn7K+SBpu0/mj2CQiw== + dependencies: + flatbuffers "^25.1.24" + guid-typescript "^1.0.9" + long "^5.2.3" + onnxruntime-common "1.24.0-dev.20251116-b39e144322" + platform "^1.3.6" + protobufjs "^7.2.4" + open@^10.0.3: version "10.2.0" - resolved "https://registry.npmjs.org/open/-/open-10.2.0.tgz" + resolved "https://registry.yarnpkg.com/open/-/open-10.2.0.tgz#b9d855be007620e80b6fb05fac98141fe62db73c" integrity sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA== dependencies: default-browser "^5.2.1" @@ -8044,7 +8438,7 @@ open@^10.0.3: open@^8.4.0: version "8.4.2" - resolved "https://registry.npmjs.org/open/-/open-8.4.2.tgz" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== dependencies: define-lazy-prop "^2.0.0" @@ -8053,43 +8447,43 @@ open@^8.4.0: opener@^1.5.2: version "1.5.2" - resolved "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz" + resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== p-cancelable@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-3.0.0.tgz#63826694b54d61ca1c20ebcb6d3ecf5e14cd8050" integrity sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw== p-finally@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== p-limit@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== dependencies: yocto-queue "^1.0.0" p-locate@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== dependencies: p-limit "^4.0.0" p-map@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== dependencies: aggregate-error "^3.0.0" p-queue@^6.6.2: version "6.6.2" - resolved "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz" + resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== dependencies: eventemitter3 "^4.0.4" @@ -8097,7 +8491,7 @@ p-queue@^6.6.2: p-retry@^6.2.0: version "6.2.1" - resolved "https://registry.npmjs.org/p-retry/-/p-retry-6.2.1.tgz" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-6.2.1.tgz#81828f8dc61c6ef5a800585491572cc9892703af" integrity sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ== dependencies: "@types/retry" "0.12.2" @@ -8106,19 +8500,14 @@ p-retry@^6.2.0: p-timeout@^3.2.0: version "3.2.0" - resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== dependencies: p-finally "^1.0.0" -package-json-from-dist@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz" - integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== - package-json@^8.1.0: version "8.1.1" - resolved "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-8.1.1.tgz#3e9948e43df40d1e8e78a85485f1070bf8f03dc8" integrity sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA== dependencies: got "^12.1.0" @@ -8127,13 +8516,13 @@ package-json@^8.1.0: semver "^7.3.7" package-manager-detector@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.3.0.tgz" - integrity sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ== + version "1.8.0" + resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-1.8.0.tgz#70c9a2c4bd1a513dcd6cad006a9fcebec22a1253" + integrity sha512-yQA4H19AmPEoMUeavPMDIe1higySl/gH/yaQrkT/s07Qp+7pp2hYz30N3z2l5BkjVkF9Ow6o0wjJamm2y7Sn0A== param-case@^3.0.4: version "3.0.4" - resolved "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== dependencies: dot-case "^3.0.4" @@ -8141,14 +8530,14 @@ param-case@^3.0.4: parent-module@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" parse-entities@^4.0.0: version "4.0.2" - resolved "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.2.tgz#61d46f5ed28e4ee62e9ddc43d6b010188443f159" integrity sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw== dependencies: "@types/unist" "^2.0.0" @@ -8161,7 +8550,7 @@ parse-entities@^4.0.0: parse-json@^5.2.0: version "5.2.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: "@babel/code-frame" "^7.0.0" @@ -8171,12 +8560,12 @@ parse-json@^5.2.0: parse-numeric-range@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz#7c63b61190d61e4d53a1197f0c83c47bb670ffa3" integrity sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ== parse5-htmlparser2-tree-adapter@^7.0.0, parse5-htmlparser2-tree-adapter@^7.1.0: version "7.1.0" - resolved "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz#b5a806548ed893a43e24ccb42fbb78069311e81b" integrity sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g== dependencies: domhandler "^5.0.3" @@ -8184,26 +8573,26 @@ parse5-htmlparser2-tree-adapter@^7.0.0, parse5-htmlparser2-tree-adapter@^7.1.0: parse5-parser-stream@^7.1.2: version "7.1.2" - resolved "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz" + resolved "https://registry.yarnpkg.com/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz#d7c20eadc37968d272e2c02660fff92dd27e60e1" integrity sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow== dependencies: parse5 "^7.0.0" parse5@^7.0.0, parse5@^7.3.0: version "7.3.0" - resolved "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.3.0.tgz#d7e224fa72399c7a175099f45fc2ad024b05ec05" integrity sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw== dependencies: entities "^6.0.0" -parseurl@~1.3.2, parseurl@~1.3.3: +parseurl@^1.3.3, parseurl@~1.3.3: version "1.3.3" - resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== pascal-case@^3.1.2: version "3.1.2" - resolved "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== dependencies: no-case "^3.0.4" @@ -8211,122 +8600,113 @@ pascal-case@^3.1.2: path-data-parser@0.1.0, path-data-parser@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/path-data-parser/-/path-data-parser-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/path-data-parser/-/path-data-parser-0.1.0.tgz#8f5ba5cc70fc7becb3dcefaea08e2659aba60b8c" integrity sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w== path-exists@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== path-is-inside@1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w== path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-scurry@^1.11.1: - version "1.11.1" - resolved "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz" - integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== - dependencies: - lru-cache "^10.2.0" - minipass "^5.0.0 || ^6.0.2 || ^7.0.0" - path-to-regexp@3.3.0: version "3.3.0" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-3.3.0.tgz#f7f31d32e8518c2660862b644414b6d5c63a611b" integrity sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw== path-to-regexp@^1.7.0: version "1.9.0" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.9.0.tgz" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.9.0.tgz#5dc0753acbf8521ca2e0f137b4578b917b10cf24" integrity sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g== dependencies: isarray "0.0.1" +path-to-regexp@^8.0.0: + version "8.4.2" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-8.4.2.tgz#795c420c4f7ca45c5b887366f622ee0c9852cccd" + integrity sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA== + path-to-regexp@~0.1.12: - version "0.1.12" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz" - integrity sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ== + version "0.1.13" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.13.tgz#9b22ec16bc3ab88d05a0c7e369869421401ab17d" + integrity sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA== path-type@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -pathe@^2.0.1, pathe@^2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz" - integrity sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w== - picocolors@^1.0.0, picocolors@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + version "2.3.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.2.tgz#5a942915e26b372dc0f0e6753149a16e6b1c5601" + integrity sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA== -picomatch@^4.0.2: - version "4.0.3" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz" - integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q== +picomatch@^4.0.2, picomatch@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.5.tgz#51ea57a17d86f605f81039595fbc40ed06a55fab" + integrity sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A== pify@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== pirates@^4.0.1: - version "4.0.6" - resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz" - integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + version "4.0.7" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.7.tgz#643b4a18c4257c8a65104b73f3049ce9a0a15e22" + integrity sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA== pkg-dir@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" integrity sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA== dependencies: find-up "^6.3.0" -pkg-types@^1.3.0: - version "1.3.1" - resolved "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz" - integrity sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ== +pkijs@^3.3.3: + version "3.4.0" + resolved "https://registry.yarnpkg.com/pkijs/-/pkijs-3.4.0.tgz#d9164def30ff6d97be2d88966d5e36192499ca9c" + integrity sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw== dependencies: - confbox "^0.1.8" - mlly "^1.7.4" - pathe "^2.0.1" + "@noble/hashes" "1.4.0" + asn1js "^3.0.6" + bytestreamjs "^2.0.1" + pvtsutils "^1.3.6" + pvutils "^1.1.3" + tslib "^2.8.1" -pkg-types@^2.0.1: - version "2.2.0" - resolved "https://registry.npmjs.org/pkg-types/-/pkg-types-2.2.0.tgz" - integrity sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ== - dependencies: - confbox "^0.2.2" - exsolve "^1.0.7" - pathe "^2.0.3" +platform@^1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7" + integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg== points-on-curve@0.2.0, points-on-curve@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/points-on-curve/-/points-on-curve-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/points-on-curve/-/points-on-curve-0.2.0.tgz#7dbb98c43791859434284761330fa893cb81b4d1" integrity sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A== points-on-path@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/points-on-path/-/points-on-path-0.2.1.tgz" + resolved "https://registry.yarnpkg.com/points-on-path/-/points-on-path-0.2.1.tgz#553202b5424c53bed37135b318858eacff85dd52" integrity sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g== dependencies: path-data-parser "0.1.0" @@ -8334,14 +8714,14 @@ points-on-path@^0.2.1: postcss-attribute-case-insensitive@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-7.0.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-7.0.1.tgz#0c4500e3bcb2141848e89382c05b5a31c23033a3" integrity sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw== dependencies: postcss-selector-parser "^7.0.0" postcss-calc@^9.0.1: version "9.0.1" - resolved "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-9.0.1.tgz#a744fd592438a93d6de0f1434c572670361eb6c6" integrity sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ== dependencies: postcss-selector-parser "^6.0.11" @@ -8349,14 +8729,14 @@ postcss-calc@^9.0.1: postcss-clamp@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-clamp/-/postcss-clamp-4.1.0.tgz#7263e95abadd8c2ba1bd911b0b5a5c9c93e02363" integrity sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow== dependencies: postcss-value-parser "^4.2.0" postcss-color-functional-notation@^7.0.12: version "7.0.12" - resolved "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.12.tgz" + resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.12.tgz#9a3df2296889e629fde18b873bb1f50a4ecf4b83" integrity sha512-TLCW9fN5kvO/u38/uesdpbx3e8AkTYhMvDZYa9JpmImWuTE99bDQ7GU7hdOADIZsiI9/zuxfAJxny/khknp1Zw== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -8367,7 +8747,7 @@ postcss-color-functional-notation@^7.0.12: postcss-color-hex-alpha@^10.0.0: version "10.0.0" - resolved "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-10.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-10.0.0.tgz#5dd3eba1f8facb4ea306cba6e3f7712e876b0c76" integrity sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w== dependencies: "@csstools/utilities" "^2.0.0" @@ -8375,7 +8755,7 @@ postcss-color-hex-alpha@^10.0.0: postcss-color-rebeccapurple@^10.0.0: version "10.0.0" - resolved "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-10.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-10.0.0.tgz#5ada28406ac47e0796dff4056b0a9d5a6ecead98" integrity sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ== dependencies: "@csstools/utilities" "^2.0.0" @@ -8383,7 +8763,7 @@ postcss-color-rebeccapurple@^10.0.0: postcss-colormin@^6.1.0: version "6.1.0" - resolved "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-6.1.0.tgz#076e8d3fb291fbff7b10e6b063be9da42ff6488d" integrity sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw== dependencies: browserslist "^4.23.0" @@ -8393,7 +8773,7 @@ postcss-colormin@^6.1.0: postcss-convert-values@^6.1.0: version "6.1.0" - resolved "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz#3498387f8efedb817cbc63901d45bd1ceaa40f48" integrity sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w== dependencies: browserslist "^4.23.0" @@ -8401,7 +8781,7 @@ postcss-convert-values@^6.1.0: postcss-custom-media@^11.0.6: version "11.0.6" - resolved "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-11.0.6.tgz" + resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-11.0.6.tgz#6b450e5bfa209efb736830066682e6567bd04967" integrity sha512-C4lD4b7mUIw+RZhtY7qUbf4eADmb7Ey8BFA2px9jUbwg7pjTZDl4KY4bvlUV+/vXQvzQRfiGEVJyAbtOsCMInw== dependencies: "@csstools/cascade-layer-name-parser" "^2.0.5" @@ -8411,7 +8791,7 @@ postcss-custom-media@^11.0.6: postcss-custom-properties@^14.0.6: version "14.0.6" - resolved "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-14.0.6.tgz" + resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-14.0.6.tgz#1af73a650bf115ba052cf915287c9982825fc90e" integrity sha512-fTYSp3xuk4BUeVhxCSJdIPhDLpJfNakZKoiTDx7yRGCdlZrSJR7mWKVOBS4sBF+5poPQFMj2YdXx1VHItBGihQ== dependencies: "@csstools/cascade-layer-name-parser" "^2.0.5" @@ -8422,7 +8802,7 @@ postcss-custom-properties@^14.0.6: postcss-custom-selectors@^8.0.5: version "8.0.5" - resolved "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-8.0.5.tgz" + resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-8.0.5.tgz#9448ed37a12271d7ab6cb364b6f76a46a4a323e8" integrity sha512-9PGmckHQswiB2usSO6XMSswO2yFWVoCAuih1yl9FVcwkscLjRKjwsjM3t+NIWpSU2Jx3eOiK2+t4vVTQaoCHHg== dependencies: "@csstools/cascade-layer-name-parser" "^2.0.5" @@ -8432,41 +8812,41 @@ postcss-custom-selectors@^8.0.5: postcss-dir-pseudo-class@^9.0.1: version "9.0.1" - resolved "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.1.tgz#80d9e842c9ae9d29f6bf5fd3cf9972891d6cc0ca" integrity sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA== dependencies: postcss-selector-parser "^7.0.0" postcss-discard-comments@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz#e768dcfdc33e0216380623652b0a4f69f4678b6c" integrity sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw== postcss-discard-duplicates@^6.0.3: version "6.0.3" - resolved "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz#d121e893c38dc58a67277f75bb58ba43fce4c3eb" integrity sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw== postcss-discard-empty@^6.0.3: version "6.0.3" - resolved "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz#ee39c327219bb70473a066f772621f81435a79d9" integrity sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ== postcss-discard-overridden@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz#4e9f9c62ecd2df46e8fdb44dc17e189776572e2d" integrity sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ== postcss-discard-unused@^6.0.5: version "6.0.5" - resolved "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-6.0.5.tgz" + resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-6.0.5.tgz#c1b0e8c032c6054c3fbd22aaddba5b248136f338" integrity sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA== dependencies: postcss-selector-parser "^6.0.16" postcss-double-position-gradients@^6.0.4: version "6.0.4" - resolved "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.4.tgz" + resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.4.tgz#b482d08b5ced092b393eb297d07976ab482d4cad" integrity sha512-m6IKmxo7FxSP5nF2l63QbCC3r+bWpFUWmZXZf096WxG0m7Vl1Q1+ruFOhpdDRmKrRS+S3Jtk+TVk/7z0+BVK6g== dependencies: "@csstools/postcss-progressive-custom-properties" "^4.2.1" @@ -8475,31 +8855,31 @@ postcss-double-position-gradients@^6.0.4: postcss-focus-visible@^10.0.1: version "10.0.1" - resolved "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-10.0.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-10.0.1.tgz#1f7904904368a2d1180b220595d77b6f8a957868" integrity sha512-U58wyjS/I1GZgjRok33aE8juW9qQgQUNwTSdxQGuShHzwuYdcklnvK/+qOWX1Q9kr7ysbraQ6ht6r+udansalA== dependencies: postcss-selector-parser "^7.0.0" postcss-focus-within@^9.0.1: version "9.0.1" - resolved "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-9.0.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-9.0.1.tgz#ac01ce80d3f2e8b2b3eac4ff84f8e15cd0057bc7" integrity sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw== dependencies: postcss-selector-parser "^7.0.0" postcss-font-variant@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz#efd59b4b7ea8bb06127f2d031bfbb7f24d32fa66" integrity sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA== postcss-gap-properties@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-6.0.0.tgz#d5ff0bdf923c06686499ed2b12e125fe64054fed" integrity sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw== postcss-image-set-function@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-7.0.0.tgz#538e94e16716be47f9df0573b56bbaca86e1da53" integrity sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA== dependencies: "@csstools/utilities" "^2.0.0" @@ -8507,7 +8887,7 @@ postcss-image-set-function@^7.0.0: postcss-import@^15.1.0: version "15.1.0" - resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== dependencies: postcss-value-parser "^4.0.0" @@ -8515,15 +8895,15 @@ postcss-import@^15.1.0: resolve "^1.1.7" postcss-js@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz" - integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== + version "4.1.0" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.1.0.tgz#003b63c6edde948766e40f3daf7e997ae43a5ce6" + integrity sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw== dependencies: camelcase-css "^2.0.1" postcss-lab-function@^7.0.12: version "7.0.12" - resolved "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.12.tgz" + resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-7.0.12.tgz#eb555ac542607730eb0a87555074e4a5c6eef6e4" integrity sha512-tUcyRk1ZTPec3OuKFsqtRzW2Go5lehW29XA21lZ65XmzQkz43VY2tyWEC202F7W3mILOjw0voOiuxRGTsN+J9w== dependencies: "@csstools/css-color-parser" "^3.1.0" @@ -8532,17 +8912,16 @@ postcss-lab-function@^7.0.12: "@csstools/postcss-progressive-custom-properties" "^4.2.1" "@csstools/utilities" "^2.0.0" -postcss-load-config@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz" - integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ== +"postcss-load-config@^4.0.2 || ^5.0 || ^6.0": + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-6.0.1.tgz#6fd7dcd8ae89badcf1b2d644489cbabf83aa8096" + integrity sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g== dependencies: - lilconfig "^3.0.0" - yaml "^2.3.4" + lilconfig "^3.1.1" postcss-loader@^7.3.4: version "7.3.4" - resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.4.tgz" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.3.4.tgz#aed9b79ce4ed7e9e89e56199d25ad1ec8f606209" integrity sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A== dependencies: cosmiconfig "^8.3.5" @@ -8551,14 +8930,14 @@ postcss-loader@^7.3.4: postcss-logical@^8.1.0: version "8.1.0" - resolved "https://registry.npmjs.org/postcss-logical/-/postcss-logical-8.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-8.1.0.tgz#4092b16b49e3ecda70c4d8945257da403d167228" integrity sha512-pL1hXFQ2fEXNKiNiAgtfA005T9FBxky5zkX6s4GZM2D8RkVgRqz3f4g1JUoq925zXv495qk8UNldDwh8uGEDoA== dependencies: postcss-value-parser "^4.2.0" postcss-merge-idents@^6.0.3: version "6.0.3" - resolved "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-6.0.3.tgz#7b9c31c7bc823c94bec50f297f04e3c2b838ea65" integrity sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g== dependencies: cssnano-utils "^4.0.2" @@ -8566,7 +8945,7 @@ postcss-merge-idents@^6.0.3: postcss-merge-longhand@^6.0.5: version "6.0.5" - resolved "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz#ba8a8d473617c34a36abbea8dda2b215750a065a" integrity sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w== dependencies: postcss-value-parser "^4.2.0" @@ -8574,7 +8953,7 @@ postcss-merge-longhand@^6.0.5: postcss-merge-rules@^6.1.1: version "6.1.1" - resolved "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz#7aa539dceddab56019469c0edd7d22b64c3dea9d" integrity sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ== dependencies: browserslist "^4.23.0" @@ -8584,14 +8963,14 @@ postcss-merge-rules@^6.1.1: postcss-minify-font-values@^6.1.0: version "6.1.0" - resolved "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz#a0e574c02ee3f299be2846369211f3b957ea4c59" integrity sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg== dependencies: postcss-value-parser "^4.2.0" postcss-minify-gradients@^6.0.3: version "6.0.3" - resolved "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz#ca3eb55a7bdb48a1e187a55c6377be918743dbd6" integrity sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q== dependencies: colord "^2.9.3" @@ -8600,7 +8979,7 @@ postcss-minify-gradients@^6.0.3: postcss-minify-params@^6.1.0: version "6.1.0" - resolved "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz#54551dec77b9a45a29c3cb5953bf7325a399ba08" integrity sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA== dependencies: browserslist "^4.23.0" @@ -8609,19 +8988,19 @@ postcss-minify-params@^6.1.0: postcss-minify-selectors@^6.0.4: version "6.0.4" - resolved "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz#197f7d72e6dd19eed47916d575d69dc38b396aff" integrity sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ== dependencies: postcss-selector-parser "^6.0.16" postcss-modules-extract-imports@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz#b4497cb85a9c0c4b5aabeb759bb25e8d89f15002" integrity sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q== postcss-modules-local-by-default@^4.0.5: version "4.2.0" - resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz#d150f43837831dae25e4085596e84f6f5d6ec368" integrity sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw== dependencies: icss-utils "^5.0.0" @@ -8630,28 +9009,28 @@ postcss-modules-local-by-default@^4.0.5: postcss-modules-scope@^3.2.0: version "3.2.1" - resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz#1bbccddcb398f1d7a511e0a2d1d047718af4078c" integrity sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA== dependencies: postcss-selector-parser "^7.0.0" postcss-modules-values@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== dependencies: icss-utils "^5.0.0" postcss-nested@^6.2.0: version "6.2.0" - resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.2.0.tgz#4c2d22ab5f20b9cb61e2c5c5915950784d068131" integrity sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ== dependencies: postcss-selector-parser "^6.1.1" postcss-nesting@^13.0.2: version "13.0.2" - resolved "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-13.0.2.tgz#fde0d4df772b76d03b52eccc84372e8d1ca1402e" integrity sha512-1YCI290TX+VP0U/K/aFxzHzQWHWURL+CtHMSbex1lCdpXD1SoR2sYuxDu5aNI9lPoXpKTCggFZiDJbwylU0LEQ== dependencies: "@csstools/selector-resolve-nested" "^3.1.0" @@ -8660,47 +9039,47 @@ postcss-nesting@^13.0.2: postcss-normalize-charset@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz#1ec25c435057a8001dac942942a95ffe66f721e1" integrity sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ== postcss-normalize-display-values@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz#54f02764fed0b288d5363cbb140d6950dbbdd535" integrity sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg== dependencies: postcss-value-parser "^4.2.0" postcss-normalize-positions@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz#e982d284ec878b9b819796266f640852dbbb723a" integrity sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q== dependencies: postcss-value-parser "^4.2.0" postcss-normalize-repeat-style@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz#f8006942fd0617c73f049dd8b6201c3a3040ecf3" integrity sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ== dependencies: postcss-value-parser "^4.2.0" postcss-normalize-string@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz#e3cc6ad5c95581acd1fc8774b309dd7c06e5e363" integrity sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ== dependencies: postcss-value-parser "^4.2.0" postcss-normalize-timing-functions@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz#40cb8726cef999de984527cbd9d1db1f3e9062c0" integrity sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA== dependencies: postcss-value-parser "^4.2.0" postcss-normalize-unicode@^6.1.0: version "6.1.0" - resolved "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz#aaf8bbd34c306e230777e80f7f12a4b7d27ce06e" integrity sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg== dependencies: browserslist "^4.23.0" @@ -8708,26 +9087,26 @@ postcss-normalize-unicode@^6.1.0: postcss-normalize-url@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz#292792386be51a8de9a454cb7b5c58ae22db0f79" integrity sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ== dependencies: postcss-value-parser "^4.2.0" postcss-normalize-whitespace@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz#fbb009e6ebd312f8b2efb225c2fcc7cf32b400cd" integrity sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q== dependencies: postcss-value-parser "^4.2.0" postcss-opacity-percentage@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-opacity-percentage/-/postcss-opacity-percentage-3.0.0.tgz#0b0db5ed5db5670e067044b8030b89c216e1eb0a" integrity sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ== postcss-ordered-values@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz#366bb663919707093451ab70c3f99c05672aaae5" integrity sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q== dependencies: cssnano-utils "^4.0.2" @@ -8735,27 +9114,27 @@ postcss-ordered-values@^6.0.2: postcss-overflow-shorthand@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-6.0.0.tgz#f5252b4a2ee16c68cd8a9029edb5370c4a9808af" integrity sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q== dependencies: postcss-value-parser "^4.2.0" postcss-page-break@^3.0.4: version "3.0.4" - resolved "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-3.0.4.tgz#7fbf741c233621622b68d435babfb70dd8c1ee5f" integrity sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ== postcss-place@^10.0.0: version "10.0.0" - resolved "https://registry.npmjs.org/postcss-place/-/postcss-place-10.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-10.0.0.tgz#ba36ee4786ca401377ced17a39d9050ed772e5a9" integrity sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw== dependencies: postcss-value-parser "^4.2.0" postcss-preset-env@^10.2.1: - version "10.5.0" - resolved "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.5.0.tgz" - integrity sha512-xgxFQPAPxeWmsgy8cR7GM1PGAL/smA5E9qU7K//D4vucS01es3M0fDujhDJn3kY8Ip7/vVYcecbe1yY+vBo3qQ== + version "10.6.1" + resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-10.6.1.tgz#df30cfc54e90af2dcff5f94104e6f272359c9f65" + integrity sha512-yrk74d9EvY+W7+lO9Aj1QmjWY9q5NsKjK2V9drkOPZB/X6KZ0B3igKsHUYakb7oYVhnioWypQX3xGuePf89f3g== dependencies: "@csstools/postcss-alpha-function" "^1.0.1" "@csstools/postcss-cascade-layers" "^5.0.2" @@ -8782,25 +9161,27 @@ postcss-preset-env@^10.2.1: "@csstools/postcss-media-minmax" "^2.0.9" "@csstools/postcss-media-queries-aspect-ratio-number-values" "^3.0.5" "@csstools/postcss-nested-calc" "^4.0.0" - "@csstools/postcss-normalize-display-values" "^4.0.0" + "@csstools/postcss-normalize-display-values" "^4.0.1" "@csstools/postcss-oklab-function" "^4.0.12" "@csstools/postcss-position-area-property" "^1.0.0" "@csstools/postcss-progressive-custom-properties" "^4.2.1" + "@csstools/postcss-property-rule-prelude-list" "^1.0.0" "@csstools/postcss-random-function" "^2.0.1" "@csstools/postcss-relative-color-syntax" "^3.0.12" "@csstools/postcss-scope-pseudo-class" "^4.0.1" "@csstools/postcss-sign-functions" "^1.1.4" "@csstools/postcss-stepped-value-functions" "^4.0.9" + "@csstools/postcss-syntax-descriptor-syntax-production" "^1.0.1" "@csstools/postcss-system-ui-font-family" "^1.0.0" "@csstools/postcss-text-decoration-shorthand" "^4.0.3" "@csstools/postcss-trigonometric-functions" "^4.0.9" "@csstools/postcss-unset-value" "^4.0.0" - autoprefixer "^10.4.22" - browserslist "^4.28.0" + autoprefixer "^10.4.23" + browserslist "^4.28.1" css-blank-pseudo "^7.0.1" css-has-pseudo "^7.0.3" css-prefers-color-scheme "^10.0.0" - cssdb "^8.5.2" + cssdb "^8.6.0" postcss-attribute-case-insensitive "^7.0.1" postcss-clamp "^4.1.0" postcss-color-functional-notation "^7.0.12" @@ -8829,21 +9210,21 @@ postcss-preset-env@^10.2.1: postcss-pseudo-class-any-link@^10.0.1: version "10.0.1" - resolved "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-10.0.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-10.0.1.tgz#06455431171bf44b84d79ebaeee9fd1c05946544" integrity sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q== dependencies: postcss-selector-parser "^7.0.0" postcss-reduce-idents@^6.0.3: version "6.0.3" - resolved "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-6.0.3.tgz#b0d9c84316d2a547714ebab523ec7d13704cd486" integrity sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA== dependencies: postcss-value-parser "^4.2.0" postcss-reduce-initial@^6.1.0: version "6.1.0" - resolved "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz#4401297d8e35cb6e92c8e9586963e267105586ba" integrity sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw== dependencies: browserslist "^4.23.0" @@ -8851,49 +9232,49 @@ postcss-reduce-initial@^6.1.0: postcss-reduce-transforms@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz#6fa2c586bdc091a7373caeee4be75a0f3e12965d" integrity sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA== dependencies: postcss-value-parser "^4.2.0" postcss-replace-overflow-wrap@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz#d2df6bed10b477bf9c52fab28c568b4b29ca4319" integrity sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw== postcss-selector-not@^8.0.1: version "8.0.1" - resolved "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-8.0.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-8.0.1.tgz#f2df9c6ac9f95e9fe4416ca41a957eda16130172" integrity sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA== dependencies: postcss-selector-parser "^7.0.0" postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.16, postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2: - version "6.1.2" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz" - integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg== + version "6.1.4" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.4.tgz#fdec4ca80f5781bd216ca9bf89a2a0fccfffa5f0" + integrity sha512-bIoJLOmjCO1S9XdY/DcnR5hJxvrDir1PbGChrzXG3vw0/FOliy/fA3dmdhQ441kah4gKv+TwckGzex6wNS5cnQ== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" postcss-selector-parser@^7.0.0: - version "7.1.1" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz" - integrity sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg== + version "7.1.4" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz#69dc7a526517572ff6b150e352b36a016017b485" + integrity sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" postcss-sort-media-queries@^5.2.0: version "5.2.0" - resolved "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-sort-media-queries/-/postcss-sort-media-queries-5.2.0.tgz#4556b3f982ef27d3bac526b99b6c0d3359a6cf97" integrity sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA== dependencies: sort-css-media-queries "2.2.0" postcss-svgo@^6.0.3: version "6.0.3" - resolved "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-6.0.3.tgz#1d6e180d6df1fa8a3b30b729aaa9161e94f04eaa" integrity sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g== dependencies: postcss-value-parser "^4.2.0" @@ -8901,33 +9282,33 @@ postcss-svgo@^6.0.3: postcss-unique-selectors@^6.0.4: version "6.0.4" - resolved "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz#983ab308896b4bf3f2baaf2336e14e52c11a2088" integrity sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg== dependencies: postcss-selector-parser "^6.0.16" postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss-zindex@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-6.0.2.tgz#e498304b83a8b165755f53db40e2ea65a99b56e1" integrity sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg== -postcss@^8.4.21, postcss@^8.4.24, postcss@^8.4.33, postcss@^8.4.41, postcss@^8.4.47, postcss@^8.5.1, postcss@^8.5.2, postcss@^8.5.4: - version "8.5.6" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz" - integrity sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg== +postcss@^8.4.21, postcss@^8.4.24, postcss@^8.4.33, postcss@^8.4.47, postcss@^8.5.1, postcss@^8.5.16, postcss@^8.5.2, postcss@^8.5.4: + version "8.5.22" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.22.tgz#086a0d5685a715acf5950ebbcb1538faf3051697" + integrity sha512-KBDEIpLrvpv16pp3K0Fw+UCoZfopFjjgeB+0tA/aaThfEE74kKDLrgg603YvOWJyg3+WYtyq3xYsQWsIyZlPqQ== dependencies: - nanoid "^3.3.11" + nanoid "^3.3.16" picocolors "^1.1.1" source-map-js "^1.2.1" pretty-error@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== dependencies: lodash "^4.17.20" @@ -8935,12 +9316,12 @@ pretty-error@^4.0.0: pretty-time@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-1.1.0.tgz#ffb7429afabb8535c346a34e41873adf3d74dd0e" integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA== prism-react-renderer@^2.3.0: version "2.4.1" - resolved "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-2.4.1.tgz" + resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-2.4.1.tgz#ac63b7f78e56c8f2b5e76e823a976d5ede77e35f" integrity sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig== dependencies: "@types/prismjs" "^1.26.0" @@ -8948,17 +9329,17 @@ prism-react-renderer@^2.3.0: prismjs@^1.29.0: version "1.30.0" - resolved "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.30.0.tgz#d9709969d9d4e16403f6f348c63553b19f0975a9" integrity sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw== process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== prompts@^2.4.2: version "2.4.2" - resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== dependencies: kleur "^3.0.3" @@ -8966,31 +9347,43 @@ prompts@^2.4.2: prop-types@^15.6.2, prop-types@^15.7.2: version "15.8.1" - resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== dependencies: loose-envify "^1.4.0" object-assign "^4.1.1" react-is "^16.13.1" -property-information@^6.0.0: - version "6.5.0" - resolved "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz" - integrity sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig== - property-information@^7.0.0: - version "7.1.0" - resolved "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz" - integrity sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ== + version "7.2.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-7.2.0.tgz#0809b34264e995c0bfcd3227028a1e35210af80a" + integrity sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg== proto-list@~1.2.1: version "1.2.4" - resolved "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz" + resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== -proxy-addr@~2.0.7: +protobufjs@^7.2.4: + version "7.6.5" + resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.6.5.tgz#7b9250cdaf4a06139a9f0fe468a40d7d4febca71" + integrity sha512-/FPD0nUc9jH6rfFjji9IBqOz4pcSE3CsT1m7Ep6Mdb0LxSUMj8hgl6GomOvZzpNpAqqGaXA0P3VSrZLFzIhQrw== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.5" + "@protobufjs/eventemitter" "^1.1.1" + "@protobufjs/fetch" "^1.1.1" + "@protobufjs/float" "^1.0.2" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.1" + "@types/node" ">=13.7.0" + long "^5.3.2" + +proxy-addr@^2.0.7, proxy-addr@~2.0.7: version "2.0.7" - resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== dependencies: forwarded "0.2.0" @@ -8998,58 +9391,81 @@ proxy-addr@~2.0.7: punycode@^2.1.0: version "2.3.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== pupa@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz" - integrity sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug== + version "3.3.0" + resolved "https://registry.yarnpkg.com/pupa/-/pupa-3.3.0.tgz#bc4036f9e8920c08ad472bc18fb600067cb83810" + integrity sha512-LjgDO2zPtoXP2wJpDjZrGdojii1uqO0cnwKoIoUzkfS98HDmbeiGmYiXo3lXeFlq2xvne1QFQhwYXSUCLKtEuA== dependencies: escape-goat "^4.0.0" -qs@~6.14.0: - version "6.14.0" - resolved "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz" - integrity sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w== +pvtsutils@^1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/pvtsutils/-/pvtsutils-1.3.6.tgz#ec46e34db7422b9e4fdc5490578c1883657d6001" + integrity sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg== dependencies: - side-channel "^1.1.0" + tslib "^2.8.1" + +pvutils@^1.1.3, pvutils@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/pvutils/-/pvutils-1.1.5.tgz#84b0dea4a5d670249aa9800511804ee0b7c2809c" + integrity sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA== -quansync@^0.2.8: - version "0.2.11" - resolved "https://registry.npmjs.org/quansync/-/quansync-0.2.11.tgz" - integrity sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA== +qs@^6.14.0, qs@^6.15.2, qs@~6.15.1: + version "6.15.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.15.3.tgz#76852132a58ed5c7c0ef67e4441b9bb5d6061b3b" + integrity sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A== + dependencies: + es-define-property "^1.0.1" + side-channel "^1.1.1" queue-microtask@^1.2.2: version "1.2.3" - resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== quick-lru@^5.1.1: version "5.1.1" - resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== randombytes@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== dependencies: safe-buffer "^5.1.0" range-parser@1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" integrity sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A== -range-parser@^1.2.1, range-parser@~1.2.1: +range-parser@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.3.0.tgz#d7f19be812bb62721472b45d3be219ef09572b47" + integrity sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw== + +range-parser@~1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== +raw-body@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-3.0.2.tgz#3e3ada5ae5568f9095d84376fd3a49b8fb000a51" + integrity sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA== + dependencies: + bytes "~3.1.2" + http-errors "~2.0.1" + iconv-lite "~0.7.0" + unpipe "~1.0.0" + raw-body@~2.5.3: version "2.5.3" - resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.3.tgz#11c6650ee770a7de1b494f197927de0c923822e2" integrity sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA== dependencies: bytes "~3.1.2" @@ -9059,7 +9475,7 @@ raw-body@~2.5.3: rc@1.2.8: version "1.2.8" - resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== dependencies: deep-extend "^0.6.0" @@ -9069,19 +9485,19 @@ rc@1.2.8: react-dom@19.2.1: version "19.2.1" - resolved "https://registry.npmjs.org/react-dom/-/react-dom-19.2.1.tgz" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.2.1.tgz#ce3527560bda4f997e47d10dab754825b3061f59" integrity sha512-ibrK8llX2a4eOskq1mXKu/TGZj9qzomO+sNfO98M6d9zIPOEhlBkMkBUBLd1vgS0gQsLDBzA+8jJBVXDnfHmJg== dependencies: scheduler "^0.27.0" react-fast-compare@^3.2.0: version "3.2.2" - resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== "react-helmet-async@npm:@slorber/react-helmet-async@1.3.0": version "1.3.0" - resolved "https://registry.npmjs.org/@slorber/react-helmet-async/-/react-helmet-async-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/@slorber/react-helmet-async/-/react-helmet-async-1.3.0.tgz#11fbc6094605cf60aa04a28c17e0aab894b4ecff" integrity sha512-e9/OK8VhwUSc67diWI8Rb3I0YgI9/SBQtnhe9aEuK6MhZm7ntZZimXgwXnd8W96YTmSOb9M4d8LwhRZyhWr/1A== dependencies: "@babel/runtime" "^7.12.5" @@ -9092,38 +9508,38 @@ react-fast-compare@^3.2.0: react-is@^16.13.1, react-is@^16.6.0, react-is@^16.7.0: version "16.13.1" - resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== react-json-view-lite@^2.3.0: version "2.5.0" - resolved "https://registry.npmjs.org/react-json-view-lite/-/react-json-view-lite-2.5.0.tgz" + resolved "https://registry.yarnpkg.com/react-json-view-lite/-/react-json-view-lite-2.5.0.tgz#c7ff011c7cc80e9900abc7aa4916c6a5c6d6c1c6" integrity sha512-tk7o7QG9oYyELWHL8xiMQ8x4WzjCzbWNyig3uexmkLb54r8jO0yH3WCWx8UZS0c49eSA4QUmG5caiRJ8fAn58g== -react-loadable-ssr-addon-v5-slorber@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.1.tgz" - integrity sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A== +react-loadable-ssr-addon-v5-slorber@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.3.tgz#bb3791bf481222c63a5bc6b96ee23f68cb5614b9" + integrity sha512-GXfh9VLwB5ERaCsU6RULh7tkemeX15aNh6wuMEBtfdyMa7fFG8TXrhXlx1SoEK2Ty/l6XIkzzYIQmyaWW3JgdQ== dependencies: "@babel/runtime" "^7.10.3" "react-loadable@npm:@docusaurus/react-loadable@6.0.0": version "6.0.0" - resolved "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/@docusaurus/react-loadable/-/react-loadable-6.0.0.tgz#de6c7f73c96542bd70786b8e522d535d69069dc4" integrity sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ== dependencies: "@types/react" "*" react-router-config@^5.1.1: version "5.1.1" - resolved "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz" + resolved "https://registry.yarnpkg.com/react-router-config/-/react-router-config-5.1.1.tgz#0f4263d1a80c6b2dc7b9c1902c9526478194a988" integrity sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg== dependencies: "@babel/runtime" "^7.1.2" react-router-dom@^5.3.4: version "5.3.4" - resolved "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz" + resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.3.4.tgz#2ed62ffd88cae6db134445f4a0c0ae8b91d2e5e6" integrity sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ== dependencies: "@babel/runtime" "^7.12.13" @@ -9136,7 +9552,7 @@ react-router-dom@^5.3.4: react-router@5.3.4, react-router@^5.3.4: version "5.3.4" - resolved "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz" + resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.3.4.tgz#8ca252d70fcc37841e31473c7a151cf777887bb5" integrity sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA== dependencies: "@babel/runtime" "^7.12.13" @@ -9151,19 +9567,19 @@ react-router@5.3.4, react-router@^5.3.4: react@19.2.1: version "19.2.1" - resolved "https://registry.npmjs.org/react/-/react-19.2.1.tgz" + resolved "https://registry.yarnpkg.com/react/-/react-19.2.1.tgz#8600fa205e58e2e807f6ef431c9f6492591a2700" integrity sha512-DGrYcCWK7tvYMnWh79yrPHt+vdx9tY+1gPZa7nJQtO/p8bLTDaHp4dzwEhQB7pZ4Xe3ok4XKuEPrVuc+wlpkmw== read-cache@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== dependencies: pify "^2.3.0" readable-stream@^2.0.1: version "2.3.8" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" @@ -9176,7 +9592,7 @@ readable-stream@^2.0.1: readable-stream@^3.0.6: version "3.6.2" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== dependencies: inherits "^2.0.3" @@ -9185,14 +9601,14 @@ readable-stream@^3.0.6: readdirp@~3.6.0: version "3.6.0" - resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== dependencies: picomatch "^2.2.1" recma-build-jsx@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz#c02f29e047e103d2fab2054954e1761b8ea253c4" integrity sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew== dependencies: "@types/estree" "^1.0.0" @@ -9200,9 +9616,9 @@ recma-build-jsx@^1.0.0: vfile "^6.0.0" recma-jsx@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.0.tgz" - integrity sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q== + version "1.0.1" + resolved "https://registry.yarnpkg.com/recma-jsx/-/recma-jsx-1.0.1.tgz#58e718f45e2102ed0bf2fa994f05b70d76801a1a" + integrity sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w== dependencies: acorn-jsx "^5.0.0" estree-util-to-js "^2.0.0" @@ -9212,7 +9628,7 @@ recma-jsx@^1.0.0: recma-parse@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/recma-parse/-/recma-parse-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/recma-parse/-/recma-parse-1.0.0.tgz#c351e161bb0ab47d86b92a98a9d891f9b6814b52" integrity sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ== dependencies: "@types/estree" "^1.0.0" @@ -9222,7 +9638,7 @@ recma-parse@^1.0.0: recma-stringify@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/recma-stringify/-/recma-stringify-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/recma-stringify/-/recma-stringify-1.0.0.tgz#54632030631e0c7546136ff9ef8fde8e7b44f130" integrity sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g== dependencies: "@types/estree" "^1.0.0" @@ -9230,26 +9646,26 @@ recma-stringify@^1.0.0: unified "^11.0.0" vfile "^6.0.0" +reflect-metadata@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.2.2.tgz#400c845b6cba87a21f2c65c4aeb158f4fa4d9c5b" + integrity sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q== + regenerate-unicode-properties@^10.2.2: version "10.2.2" - resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz#aa113812ba899b630658c7623466be71e1f86f66" integrity sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g== dependencies: regenerate "^1.4.2" regenerate@^1.4.2: version "1.4.2" - resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== -regenerator-runtime@^0.14.0: - version "0.14.1" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz" - integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== - regexpu-core@^6.3.1: version "6.4.0" - resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.4.0.tgz#3580ce0c4faedef599eccb146612436b62a176e5" integrity sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA== dependencies: regenerate "^1.4.2" @@ -9260,34 +9676,34 @@ regexpu-core@^6.3.1: unicode-match-property-value-ecmascript "^2.2.1" registry-auth-token@^5.0.1: - version "5.1.0" - resolved "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.1.0.tgz" - integrity sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw== + version "5.1.1" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-5.1.1.tgz#f1ff69c8e492e7edee07110b4752dd0a8aa82853" + integrity sha512-P7B4+jq8DeD2nMsAcdfaqHbssgHtZ7Z5+++a5ask90fvmJ8p5je4mOa+wzu+DB4vQ5tdJV/xywY+UnVFeQLV5Q== dependencies: - "@pnpm/npm-conf" "^2.1.0" + "@pnpm/npm-conf" "^3.0.2" registry-url@^6.0.0: version "6.0.1" - resolved "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-6.0.1.tgz#056d9343680f2f64400032b1e199faa692286c58" integrity sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q== dependencies: rc "1.2.8" regjsgen@^0.8.0: version "0.8.0" - resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz#df23ff26e0c5b300a6470cad160a9d090c3a37ab" integrity sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q== regjsparser@^0.13.0: - version "0.13.0" - resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.0.tgz" - integrity sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q== + version "0.13.2" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.13.2.tgz#f654734b5c588b22ba3e21693b30523417180808" + integrity sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ== dependencies: jsesc "~3.1.0" rehype-raw@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/rehype-raw/-/rehype-raw-7.0.0.tgz#59d7348fd5dbef3807bbaa1d443efd2dd85ecee4" integrity sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww== dependencies: "@types/hast" "^3.0.0" @@ -9296,7 +9712,7 @@ rehype-raw@^7.0.0: rehype-recma@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/rehype-recma/-/rehype-recma-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/rehype-recma/-/rehype-recma-1.0.0.tgz#d68ef6344d05916bd96e25400c6261775411aa76" integrity sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw== dependencies: "@types/estree" "^1.0.0" @@ -9305,12 +9721,12 @@ rehype-recma@^1.0.0: relateurl@^0.2.7: version "0.2.7" - resolved "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== remark-directive@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/remark-directive/-/remark-directive-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/remark-directive/-/remark-directive-3.0.1.tgz#689ba332f156cfe1118e849164cc81f157a3ef0a" integrity sha512-gwglrEQEZcZYgVyG1tQuA+h58EZfq5CSULw7J90AFuCTyib1thgHPoqQ+h9iFvU6R+vnZ5oNFQR5QKgGpk741A== dependencies: "@types/mdast" "^4.0.0" @@ -9320,7 +9736,7 @@ remark-directive@^3.0.0: remark-emoji@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/remark-emoji/-/remark-emoji-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/remark-emoji/-/remark-emoji-4.0.1.tgz#671bfda668047689e26b2078c7356540da299f04" integrity sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg== dependencies: "@types/mdast" "^4.0.2" @@ -9331,7 +9747,7 @@ remark-emoji@^4.0.0: remark-frontmatter@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/remark-frontmatter/-/remark-frontmatter-5.0.0.tgz#b68d61552a421ec412c76f4f66c344627dc187a2" integrity sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ== dependencies: "@types/mdast" "^4.0.0" @@ -9341,7 +9757,7 @@ remark-frontmatter@^5.0.0: remark-gfm@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/remark-gfm/-/remark-gfm-4.0.1.tgz#33227b2a74397670d357bf05c098eaf8513f0d6b" integrity sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg== dependencies: "@types/mdast" "^4.0.0" @@ -9352,16 +9768,16 @@ remark-gfm@^4.0.0: unified "^11.0.0" remark-mdx@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.0.tgz" - integrity sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA== + version "3.1.1" + resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-3.1.1.tgz#047f97038bc7ec387aebb4b0a4fe23779999d845" + integrity sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg== dependencies: mdast-util-mdx "^3.0.0" micromark-extension-mdxjs "^3.0.0" remark-parse@^11.0.0: version "11.0.0" - resolved "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-11.0.0.tgz#aa60743fcb37ebf6b069204eb4da304e40db45a1" integrity sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA== dependencies: "@types/mdast" "^4.0.0" @@ -9370,9 +9786,9 @@ remark-parse@^11.0.0: unified "^11.0.0" remark-rehype@^11.0.0: - version "11.1.1" - resolved "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.1.tgz" - integrity sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ== + version "11.1.2" + resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-11.1.2.tgz#2addaadda80ca9bd9aa0da763e74d16327683b37" + integrity sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw== dependencies: "@types/hast" "^3.0.0" "@types/mdast" "^4.0.0" @@ -9382,7 +9798,7 @@ remark-rehype@^11.0.0: remark-stringify@^11.0.0: version "11.0.0" - resolved "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz" + resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-11.0.0.tgz#4c5b01dd711c269df1aaae11743eb7e2e7636fd3" integrity sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw== dependencies: "@types/mdast" "^4.0.0" @@ -9391,7 +9807,7 @@ remark-stringify@^11.0.0: renderkid@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== dependencies: css-select "^4.1.3" @@ -9400,75 +9816,83 @@ renderkid@^3.0.0: lodash "^4.17.21" strip-ansi "^6.0.1" -repeat-string@^1.0.0: - version "1.6.1" - resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" - integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== - require-from-string@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== "require-like@>= 0.1.1": version "0.1.2" - resolved "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz" + resolved "https://registry.yarnpkg.com/require-like/-/require-like-0.1.2.tgz#ad6f30c13becd797010c468afa775c0c0a6b47fa" integrity sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A== requires-port@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== resolve-alpn@^1.2.0: version "1.2.1" - resolved "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== resolve-from@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== resolve-pathname@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng== -resolve@^1.1.7, resolve@^1.22.1, resolve@^1.22.10, resolve@^1.22.8: - version "1.22.10" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz" - integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w== +resolve@^1.1.7, resolve@^1.22.1, resolve@^1.22.11, resolve@^1.22.8: + version "1.22.12" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.12.tgz#f5b2a680897c69c238a13cd16b15671f8b73549f" + integrity sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA== dependencies: - is-core-module "^2.16.0" + es-errors "^1.3.0" + is-core-module "^2.16.1" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" responselike@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-3.0.0.tgz#20decb6c298aff0dbee1c355ca95461d42823626" integrity sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg== dependencies: lowercase-keys "^3.0.0" retry@^0.13.1: version "0.13.1" - resolved "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + version "1.1.0" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz#0fe13b9522e1473f51b558ee796e08f11f9b489f" + integrity sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw== + +roarr@^2.15.3: + version "2.15.4" + resolved "https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz#f5fe795b7b838ccfe35dc608e0282b9eba2e7afd" + integrity sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A== + dependencies: + boolean "^3.0.1" + detect-node "^2.0.4" + globalthis "^1.0.1" + json-stringify-safe "^5.0.1" + semver-compare "^1.0.0" + sprintf-js "^1.1.2" robust-predicates@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz" - integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg== + version "3.0.3" + resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.3.tgz#1099061b3349e2c5abec6c2ab0acd440d24d4062" + integrity sha512-NS3levdsRIUOmiJ8FZWCP7LG3QpJyrs/TE0Zpf1yvZu8cAJJ6QMW92H1c7kWpdIHo8RvmLxN/o2JXTKHp74lUA== roughjs@^4.6.6: version "4.6.6" - resolved "https://registry.npmjs.org/roughjs/-/roughjs-4.6.6.tgz" + resolved "https://registry.yarnpkg.com/roughjs/-/roughjs-4.6.6.tgz#1059f49a5e0c80dee541a005b20cc322b222158b" integrity sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ== dependencies: hachure-fill "^0.5.2" @@ -9476,9 +9900,20 @@ roughjs@^4.6.6: points-on-curve "^0.2.0" points-on-path "^0.2.1" +router@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/router/-/router-2.2.0.tgz#019be620b711c87641167cc79b99090f00b146ef" + integrity sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ== + dependencies: + debug "^4.4.0" + depd "^2.0.0" + is-promise "^4.0.0" + parseurl "^1.3.3" + path-to-regexp "^8.0.0" + rtlcss@^4.1.0: version "4.3.0" - resolved "https://registry.npmjs.org/rtlcss/-/rtlcss-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/rtlcss/-/rtlcss-4.3.0.tgz#f8efd4d5b64f640ec4af8fa25b65bacd9e07cc97" integrity sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig== dependencies: escalade "^3.1.1" @@ -9488,64 +9923,64 @@ rtlcss@^4.1.0: run-applescript@^7.0.0: version "7.1.0" - resolved "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz" + resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-7.1.0.tgz#2e9e54c4664ec3106c5b5630e249d3d6595c4911" integrity sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q== run-parallel@^1.1.9: version "1.2.0" - resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: queue-microtask "^1.2.2" rw@1: version "1.3.3" - resolved "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz" + resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ== safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.1.0, safe-buffer@~5.2.0: version "5.2.1" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" - resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -sax@^1.2.4: - version "1.4.3" - resolved "https://registry.npmjs.org/sax/-/sax-1.4.3.tgz" - integrity sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ== +sax@^1.2.4, sax@^1.5.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.6.0.tgz#da59637629307b97e7c4cb28e080a7bc38560d5b" + integrity sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA== scheduler@^0.27.0: version "0.27.0" - resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.27.0.tgz#0c4ef82d67d1e5c1e359e8fc76d3a87f045fe5bd" integrity sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q== schema-dts@^1.1.2: version "1.1.5" - resolved "https://registry.npmjs.org/schema-dts/-/schema-dts-1.1.5.tgz" + resolved "https://registry.yarnpkg.com/schema-dts/-/schema-dts-1.1.5.tgz#9237725d305bac3469f02b292a035107595dc324" integrity sha512-RJr9EaCmsLzBX2NDiO5Z3ux2BVosNZN5jo0gWgsyKvxKIUL5R3swNvoorulAeL9kLB0iTSX7V6aokhla2m7xbg== schema-utils@^3.0.0: version "3.3.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== dependencies: "@types/json-schema" "^7.0.8" ajv "^6.12.5" ajv-keywords "^3.5.2" -schema-utils@^4.0.0, schema-utils@^4.0.1, schema-utils@^4.2.0, schema-utils@^4.3.0, schema-utils@^4.3.2: - version "4.3.2" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz" - integrity sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ== +schema-utils@^4.0.0, schema-utils@^4.0.1, schema-utils@^4.2.0, schema-utils@^4.3.0, schema-utils@^4.3.3: + version "4.3.3" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.3.tgz#5b1850912fa31df90716963d45d9121fdfc09f46" + integrity sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA== dependencies: "@types/json-schema" "^7.0.9" ajv "^8.9.0" @@ -9554,7 +9989,7 @@ schema-utils@^4.0.0, schema-utils@^4.0.1, schema-utils@^4.2.0, schema-utils@^4.3 section-matter@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/section-matter/-/section-matter-1.0.0.tgz#e9041953506780ec01d59f292a19c7b850b84167" integrity sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA== dependencies: extend-shallow "^2.0.1" @@ -9562,57 +9997,60 @@ section-matter@^1.0.0: select-hose@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== -selfsigned@^2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz" - integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== +selfsigned@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-5.5.0.tgz#4c9ab7c7c9f35f18fb6a9882c253eb0e6bd6557b" + integrity sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew== dependencies: - "@types/node-forge" "^1.3.0" - node-forge "^1" + "@peculiar/x509" "^1.14.2" + pkijs "^3.3.3" + +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== semver-diff@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-4.0.0.tgz#3afcf5ed6d62259f5c72d0d5d50dffbdc9680df5" integrity sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA== dependencies: semver "^7.3.5" semver@^6.3.1: version "6.3.1" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.5, semver@^7.3.7, semver@^7.5.4: - version "7.7.1" - resolved "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz" - integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== +semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.5.4, semver@^7.7.3: + version "7.8.5" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.8.5.tgz#39b646037dd50c14fb451e7e4cac58ed8b863f69" + integrity sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA== -send@0.19.0: - version "0.19.0" - resolved "https://registry.npmjs.org/send/-/send-0.19.0.tgz" - integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== +send@^1.1.0, send@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/send/-/send-1.2.1.tgz#9eab743b874f3550f40a26867bf286ad60d3f3ed" + integrity sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ== dependencies: - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" - mime "1.6.0" - ms "2.1.3" - on-finished "2.4.1" - range-parser "~1.2.1" - statuses "2.0.1" + debug "^4.4.3" + encodeurl "^2.0.0" + escape-html "^1.0.3" + etag "^1.8.1" + fresh "^2.0.0" + http-errors "^2.0.1" + mime-types "^3.0.2" + ms "^2.1.3" + on-finished "^2.4.1" + range-parser "^1.2.1" + statuses "^2.0.2" -send@~0.19.0: - version "0.19.1" - resolved "https://registry.npmjs.org/send/-/send-0.19.1.tgz" - integrity sha512-p4rRk4f23ynFEfcD9LA0xRYngj+IyGiEYyqqOak8kaN0TvNmuxC2dcVeBn62GpCeR2CpWqyHCNScTP91QbAVFg== +send@~0.19.0, send@~0.19.1: + version "0.19.2" + resolved "https://registry.yarnpkg.com/send/-/send-0.19.2.tgz#59bc0da1b4ea7ad42736fd642b1c4294e114ff29" + integrity sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg== dependencies: debug "2.6.9" depd "2.0.0" @@ -9620,60 +10058,77 @@ send@~0.19.0: encodeurl "~2.0.0" escape-html "~1.0.3" etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" + fresh "~0.5.2" + http-errors "~2.0.1" mime "1.6.0" ms "2.1.3" - on-finished "2.4.1" + on-finished "~2.4.1" range-parser "~1.2.1" - statuses "2.0.1" + statuses "~2.0.2" + +serialize-error@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz#f1360b0447f61ffb483ec4157c737fab7d778e18" + integrity sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw== + dependencies: + type-fest "^0.13.1" -serialize-javascript@^6.0.0, serialize-javascript@^6.0.1, serialize-javascript@^6.0.2: +serialize-javascript@^6.0.0, serialize-javascript@^6.0.1: version "6.0.2" - resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== dependencies: randombytes "^2.1.0" -serve-handler@^6.1.6: - version "6.1.6" - resolved "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.6.tgz" - integrity sha512-x5RL9Y2p5+Sh3D38Fh9i/iQ5ZK+e4xuXRd/pGbM4D13tgo/MGwbttUk8emytcr1YYzBYs+apnUngBDFYfpjPuQ== +serve-handler@^6.1.7: + version "6.1.7" + resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.1.7.tgz#e9bb864e87ee71e8dab874cde44d146b77e3fb78" + integrity sha512-CinAq1xWb0vR3twAv9evEU8cNWkXCb9kd5ePAHUKJBkOsUpR1wt/CvGdeca7vqumL1U5cSaeVQ6zZMxiJ3yWsg== dependencies: bytes "3.0.0" content-disposition "0.5.2" mime-types "2.1.18" - minimatch "3.1.2" + minimatch "3.1.5" path-is-inside "1.0.2" path-to-regexp "3.3.0" range-parser "1.2.0" serve-index@^1.9.1: - version "1.9.1" - resolved "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz" - integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== + version "1.9.2" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.2.tgz#2988e3612106d78a5e4849ddff552ce7bd3d9bcb" + integrity sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ== dependencies: - accepts "~1.3.4" + accepts "~1.3.8" batch "0.6.1" debug "2.6.9" escape-html "~1.0.3" - http-errors "~1.6.2" - mime-types "~2.1.17" - parseurl "~1.3.2" + http-errors "~1.8.0" + mime-types "~2.1.35" + parseurl "~1.3.3" + +serve-static@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-2.2.1.tgz#7f186a4a4e5f5b663ad7a4294ff1bf37cf0e98a9" + integrity sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw== + dependencies: + encodeurl "^2.0.0" + escape-html "^1.0.3" + parseurl "^1.3.3" + send "^1.2.0" serve-static@~1.16.2: - version "1.16.2" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz" - integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== + version "1.16.3" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.3.tgz#a97b74d955778583f3862a4f0b841eb4d5d78cf9" + integrity sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA== dependencies: encodeurl "~2.0.0" escape-html "~1.0.3" parseurl "~1.3.3" - send "0.19.0" + send "~0.19.1" set-function-length@^1.2.2: version "1.2.2" - resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== dependencies: define-data-property "^1.1.4" @@ -9683,56 +10138,85 @@ set-function-length@^1.2.2: gopd "^1.0.1" has-property-descriptors "^1.0.2" -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== - setprototypeof@1.2.0, setprototypeof@~1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== shallow-clone@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== dependencies: kind-of "^6.0.2" shallowequal@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== +sharp@^0.34.5: + version "0.34.5" + resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.34.5.tgz#b6f148e4b8c61f1797bde11a9d1cfebbae2c57b0" + integrity sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg== + dependencies: + "@img/colour" "^1.0.0" + detect-libc "^2.1.2" + semver "^7.7.3" + optionalDependencies: + "@img/sharp-darwin-arm64" "0.34.5" + "@img/sharp-darwin-x64" "0.34.5" + "@img/sharp-libvips-darwin-arm64" "1.2.4" + "@img/sharp-libvips-darwin-x64" "1.2.4" + "@img/sharp-libvips-linux-arm" "1.2.4" + "@img/sharp-libvips-linux-arm64" "1.2.4" + "@img/sharp-libvips-linux-ppc64" "1.2.4" + "@img/sharp-libvips-linux-riscv64" "1.2.4" + "@img/sharp-libvips-linux-s390x" "1.2.4" + "@img/sharp-libvips-linux-x64" "1.2.4" + "@img/sharp-libvips-linuxmusl-arm64" "1.2.4" + "@img/sharp-libvips-linuxmusl-x64" "1.2.4" + "@img/sharp-linux-arm" "0.34.5" + "@img/sharp-linux-arm64" "0.34.5" + "@img/sharp-linux-ppc64" "0.34.5" + "@img/sharp-linux-riscv64" "0.34.5" + "@img/sharp-linux-s390x" "0.34.5" + "@img/sharp-linux-x64" "0.34.5" + "@img/sharp-linuxmusl-arm64" "0.34.5" + "@img/sharp-linuxmusl-x64" "0.34.5" + "@img/sharp-wasm32" "0.34.5" + "@img/sharp-win32-arm64" "0.34.5" + "@img/sharp-win32-ia32" "0.34.5" + "@img/sharp-win32-x64" "0.34.5" + shebang-command@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== dependencies: shebang-regex "^3.0.0" shebang-regex@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shell-quote@^1.8.3: - version "1.8.3" - resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz" - integrity sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw== +shell-quote@^1.8.4: + version "1.10.0" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.10.0.tgz#482033e192e4f5c07151521ffa03400ec71b1b0f" + integrity sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA== -side-channel-list@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz" - integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== +side-channel-list@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.1.tgz#c2e0b5a14a540aebee3bbc6c3f8666cc9b509127" + integrity sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w== dependencies: es-errors "^1.3.0" - object-inspect "^1.13.3" + object-inspect "^1.13.4" side-channel-map@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== dependencies: call-bound "^1.0.2" @@ -9742,7 +10226,7 @@ side-channel-map@^1.0.1: side-channel-weakmap@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== dependencies: call-bound "^1.0.2" @@ -9751,30 +10235,25 @@ side-channel-weakmap@^1.0.2: object-inspect "^1.13.3" side-channel-map "^1.0.1" -side-channel@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz" - integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== +side-channel@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.1.tgz#ea02c62e05dc4bea67d4442f0fb71ee192f8e0ab" + integrity sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ== dependencies: es-errors "^1.3.0" - object-inspect "^1.13.3" - side-channel-list "^1.0.0" + object-inspect "^1.13.4" + side-channel-list "^1.0.1" side-channel-map "^1.0.1" side-channel-weakmap "^1.0.2" signal-exit@^3.0.2, signal-exit@^3.0.3: version "3.0.7" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== -signal-exit@^4.0.1: - version "4.1.0" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz" - integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== - sirv@^2.0.3: version "2.0.4" - resolved "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/sirv/-/sirv-2.0.4.tgz#5dd9a725c578e34e449f332703eb2a74e46a29b0" integrity sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ== dependencies: "@polka/url" "^1.0.0-next.24" @@ -9783,13 +10262,13 @@ sirv@^2.0.3: sisteransi@^1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== sitemap@^7.1.1: - version "7.1.2" - resolved "https://registry.npmjs.org/sitemap/-/sitemap-7.1.2.tgz" - integrity sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw== + version "7.1.3" + resolved "https://registry.yarnpkg.com/sitemap/-/sitemap-7.1.3.tgz#2b756f79f0b77527c0eaba280c722e4c66c08886" + integrity sha512-tAjEd+wt/YwnEbfNB2ht51ybBJxbEWwe5ki/Z//Wh0rpBFTCUSj46GnxUKEWzhfuJTsee8x3lybHxFgUMig2hw== dependencies: "@types/node" "^17.0.5" "@types/sax" "^1.2.1" @@ -9798,24 +10277,24 @@ sitemap@^7.1.1: skin-tone@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/skin-tone/-/skin-tone-2.0.0.tgz#4e3933ab45c0d4f4f781745d64b9f4c208e41237" integrity sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA== dependencies: unicode-emoji-modifier-base "^1.0.0" slash@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== slash@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== snake-case@^3.0.4: version "3.0.4" - resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== dependencies: dot-case "^3.0.4" @@ -9823,7 +10302,7 @@ snake-case@^3.0.4: sockjs@^0.3.24: version "0.3.24" - resolved "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== dependencies: faye-websocket "^0.11.3" @@ -9832,17 +10311,17 @@ sockjs@^0.3.24: sort-css-media-queries@2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/sort-css-media-queries/-/sort-css-media-queries-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/sort-css-media-queries/-/sort-css-media-queries-2.2.0.tgz#aa33cf4a08e0225059448b6c40eddbf9f1c8334c" integrity sha512-0xtkGhWCC9MGt/EzgnvbbbKhqWjl1+/rncmhTh5qCpbYguXh6S/qwePfv/JQ8jePXXmqingylxoC49pCkSPIbA== source-map-js@^1.0.1, source-map-js@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== source-map-support@~0.5.20: version "0.5.21" - resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== dependencies: buffer-from "^1.0.0" @@ -9850,22 +10329,22 @@ source-map-support@~0.5.20: source-map@^0.6.0, source-map@~0.6.0: version "0.6.1" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== source-map@^0.7.0: - version "0.7.4" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz" - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + version "0.7.6" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.6.tgz#a3658ab87e5b6429c8a1f3ba0083d4c61ca3ef02" + integrity sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ== space-separated-tokens@^2.0.0: version "2.0.2" - resolved "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f" integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== spdy-transport@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== dependencies: debug "^4.1.0" @@ -9877,7 +10356,7 @@ spdy-transport@^3.0.0: spdy@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== dependencies: debug "^4.1.0" @@ -9886,48 +10365,34 @@ spdy@^4.0.2: select-hose "^2.0.0" spdy-transport "^3.0.0" -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== +sprintf-js@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" + integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== srcset@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/srcset/-/srcset-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/srcset/-/srcset-4.0.0.tgz#336816b665b14cd013ba545b6fe62357f86e65f4" integrity sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw== -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - -"statuses@>= 1.4.0 < 2": +"statuses@>= 1.5.0 < 2": version "1.5.0" - resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== -statuses@~2.0.1, statuses@~2.0.2: +statuses@^2.0.1, statuses@^2.0.2, statuses@~2.0.1, statuses@~2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.2.tgz#8f75eecef765b5e1cfcdc080da59409ed424e382" integrity sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw== std-env@^3.7.0: - version "3.9.0" - resolved "https://registry.npmjs.org/std-env/-/std-env-3.9.0.tgz" - integrity sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw== - -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" + version "3.10.0" + resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.10.0.tgz#d810b27e3a073047b2b5e40034881f5ea6f9c83b" + integrity sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg== string-width@^4.1.0, string-width@^4.2.0: version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -9936,7 +10401,7 @@ string-width@^4.1.0, string-width@^4.2.0: string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" - resolved "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== dependencies: eastasianwidth "^0.2.0" @@ -9945,21 +10410,21 @@ string-width@^5.0.1, string-width@^5.1.2: string_decoder@^1.1.1: version "1.3.0" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== dependencies: safe-buffer "~5.2.0" string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" stringify-entities@^4.0.0: version "4.0.4" - resolved "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz" + resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.4.tgz#b3b79ef5f277cc4ac73caeb0236c5ba939b3a4f3" integrity sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg== dependencies: character-entities-html4 "^2.0.0" @@ -9967,141 +10432,133 @@ stringify-entities@^4.0.0: stringify-object@^3.3.0: version "3.3.0" - resolved "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== dependencies: get-own-enumerable-property-symbols "^3.0.0" is-obj "^1.0.1" is-regexp "^1.0.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": - version "6.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: +strip-ansi@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-ansi@^7.0.1: - version "7.1.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" - integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + version "7.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.2.0.tgz#d22a269522836a627af8d04b5c3fd2c7fa3e32e3" + integrity sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w== dependencies: - ansi-regex "^6.0.1" + ansi-regex "^6.2.2" strip-bom-string@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" integrity sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g== strip-final-newline@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== strip-json-comments@^3.1.1: version "3.1.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== strip-json-comments@~2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== -style-to-object@^1.0.0: - version "1.0.8" - resolved "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.8.tgz" - integrity sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g== +style-to-js@^1.0.0: + version "1.1.21" + resolved "https://registry.yarnpkg.com/style-to-js/-/style-to-js-1.1.21.tgz#2908941187f857e79e28e9cd78008b9a0b3e0e8d" + integrity sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ== dependencies: - inline-style-parser "0.2.4" + style-to-object "1.0.14" + +style-to-object@1.0.14: + version "1.0.14" + resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-1.0.14.tgz#1d22f0e7266bb8c6d8cae5caf4ec4f005e08f611" + integrity sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw== + dependencies: + inline-style-parser "0.2.7" stylehacks@^6.1.1: version "6.1.1" - resolved "https://registry.npmjs.org/stylehacks/-/stylehacks-6.1.1.tgz" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-6.1.1.tgz#543f91c10d17d00a440430362d419f79c25545a6" integrity sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg== dependencies: browserslist "^4.23.0" postcss-selector-parser "^6.0.16" stylis@^4.3.6: - version "4.3.6" - resolved "https://registry.npmjs.org/stylis/-/stylis-4.3.6.tgz" - integrity sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ== + version "4.4.0" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.4.0.tgz#c5846c9345f4bfc51bd0cbd7ca35a0744f485a5d" + integrity sha512-5Z9ZpRzfuH6l/UAvCPAPUo3665Nk2wLaZU3x+TLHKVzIz33+sbJqbtrYoC3KD4/uVOr2Zp+L0LySezP9OHV9yA== sucrase@^3.35.0: - version "3.35.0" - resolved "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz" - integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA== + version "3.35.1" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.1.tgz#4619ea50393fe8bd0ae5071c26abd9b2e346bfe1" + integrity sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw== dependencies: "@jridgewell/gen-mapping" "^0.3.2" commander "^4.0.0" - glob "^10.3.10" lines-and-columns "^1.1.6" mz "^2.7.0" pirates "^4.0.1" + tinyglobby "^0.2.11" ts-interface-checker "^0.1.9" supports-color@^7.1.0: version "7.2.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-color@^8.0.0: version "8.1.1" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== dependencies: has-flag "^4.0.0" supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== svg-parser@^2.0.4: version "2.0.4" - resolved "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== svgo@^3.0.2, svgo@^3.2.0: - version "3.3.2" - resolved "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz" - integrity sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw== + version "3.3.4" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.4.tgz#fd2aa10ff585b3bd2b83ce3602f5582bc0718bb5" + integrity sha512-GsNRis4e8jxn2Y9ENz/8lbJ93CstG8svtMnuRaHbiF2LTJ5tK0/q3t/URPq9Zc7zVWBJnNnJMIp6bevK7bSmNg== dependencies: - "@trysound/sax" "0.2.0" commander "^7.2.0" css-select "^5.1.0" css-tree "^2.3.1" css-what "^6.1.0" csso "^5.0.5" picocolors "^1.0.0" + sax "^1.5.0" -swr@^2.2.5: - version "2.3.7" - resolved "https://registry.npmjs.org/swr/-/swr-2.3.7.tgz" - integrity sha512-ZEquQ82QvalqTxhBVv/DlAg2mbmUjF4UgpPg9wwk4ufb9rQnZXh1iKyyKBqV6bQGu1Ie7L1QwSYO07qFIa1p+g== - dependencies: - dequal "^2.0.3" - use-sync-external-store "^1.4.0" - -tailwindcss@4.1.17, tailwindcss@^4.1.12: - version "4.1.17" - resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.17.tgz" - integrity sha512-j9Ee2YjuQqYT9bbRTfTZht9W/ytp5H+jJpZKiYdP/bpnXARAuELt9ofP0lPnmHjbga7SNQIxdTAXCmtKVYjN+Q== +tailwindcss@4.3.3, tailwindcss@^4.1.12: + version "4.3.3" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-4.3.3.tgz#c006861611c213c1877893ab5b23daa16be2bb55" + integrity sha512-gOhV3P7ufE62QDGg1zVaTgCR+EtPv92k2nIhVcVKcLmxT1sUBsQGhnZj175j+MqRt4zLF7ic+sCYjfhxMxj7YQ== tailwindcss@^3.4.17: - version "3.4.17" - resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz" - integrity sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og== + version "3.4.19" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.19.tgz#af2a0a4ae302d52ebe078b6775e799e132500ee2" + integrity sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ== dependencies: "@alloc/quick-lru" "^5.2.0" arg "^5.0.2" @@ -10111,7 +10568,7 @@ tailwindcss@^3.4.17: fast-glob "^3.3.2" glob-parent "^6.0.2" is-glob "^4.0.3" - jiti "^1.21.6" + jiti "^1.21.7" lilconfig "^3.1.3" micromatch "^4.0.8" normalize-path "^3.0.0" @@ -10120,152 +10577,175 @@ tailwindcss@^3.4.17: postcss "^8.4.47" postcss-import "^15.1.0" postcss-js "^4.0.1" - postcss-load-config "^4.0.2" + postcss-load-config "^4.0.2 || ^5.0 || ^6.0" postcss-nested "^6.2.0" postcss-selector-parser "^6.1.2" resolve "^1.22.8" sucrase "^3.35.0" -tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" - integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== +tapable@^2.0.0, tapable@^2.2.1, tapable@^2.3.0, tapable@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.3.3.tgz#5da7c9992c46038221267985ab28421a8879f160" + integrity sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A== -terser-webpack-plugin@^5.3.11, terser-webpack-plugin@^5.3.9: - version "5.3.11" - resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz" - integrity sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ== +terser-webpack-plugin@^5.3.9: + version "5.6.1" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.6.1.tgz#47bc41bd8b8fab8383b62ec763b7394829097e7b" + integrity sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ== dependencies: "@jridgewell/trace-mapping" "^0.3.25" jest-worker "^27.4.5" schema-utils "^4.3.0" - serialize-javascript "^6.0.2" terser "^5.31.1" terser@^5.10.0, terser@^5.15.1, terser@^5.31.1: - version "5.38.1" - resolved "https://registry.npmjs.org/terser/-/terser-5.38.1.tgz" - integrity sha512-GWANVlPM/ZfYzuPHjq0nxT+EbOEDDN3Jwhwdg1D8TU8oSkktp8w64Uq4auuGLxFSoNTRDncTq2hQHX1Ld9KHkA== + version "5.49.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.49.0.tgz#30b341fdf70cfc98486965125ae660fda8403670" + integrity sha512-SNiDnXyHSrxVcIOtVbULzcTmniUiwcV7Nwdyj1twVubeTmbjoa8p69KKDpfkdoOavuM4/GRm1+ykI8qqnavHoA== dependencies: "@jridgewell/source-map" "^0.3.3" - acorn "^8.8.2" + acorn "^8.15.0" commander "^2.20.0" source-map-support "~0.5.20" thenify-all@^1.0.0: version "1.6.0" - resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== dependencies: thenify ">= 3.1.0 < 4" "thenify@>= 3.1.0 < 4": version "3.3.1" - resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== dependencies: any-promise "^1.0.0" thingies@^2.5.0: - version "2.5.0" - resolved "https://registry.npmjs.org/thingies/-/thingies-2.5.0.tgz" - integrity sha512-s+2Bwztg6PhWUD7XMfeYm5qliDdSiZm7M7n8KjTkIsm3l/2lgVRc2/Gx/v+ZX8lT4FMA+i8aQvhcWylldc+ZNw== - -throttleit@2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/throttleit/-/throttleit-2.1.0.tgz" - integrity sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw== + version "2.6.0" + resolved "https://registry.yarnpkg.com/thingies/-/thingies-2.6.0.tgz#e09b98b9e6f6caf8a759eca8481fea1de974d2b1" + integrity sha512-rMHRjmlFLM1R96UYPvpmnc3LYtdFrT33JIB7L9hetGue1qAPfn1N2LJeEjxUSidu1Iku+haLZXDuEXUHNGO/lg== thunky@^1.0.2: version "1.1.0" - resolved "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== tiny-invariant@^1.0.2: version "1.3.3" - resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== tiny-warning@^1.0.0: version "1.0.3" - resolved "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== tinyexec@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.1.tgz" - integrity sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw== + version "1.2.4" + resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-1.2.4.tgz#ae45bb2edebda94c70f4ea897e0f1243e470db71" + integrity sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg== + +tinyglobby@^0.2.11: + version "0.2.17" + resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.17.tgz#562a9a6c9eb2b3b123d39719f9af5bb44fcd7631" + integrity sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g== + dependencies: + fdir "^6.5.0" + picomatch "^4.0.4" tinypool@^1.0.2: version "1.1.1" - resolved "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-1.1.1.tgz#059f2d042bd37567fbc017d3d426bdd2a2612591" integrity sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg== to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" toidentifier@1.0.1, toidentifier@~1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== totalist@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/totalist/-/totalist-3.0.1.tgz#ba3a3d600c915b1a97872348f79c127475f6acf8" integrity sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ== tree-dump@^1.0.3, tree-dump@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/tree-dump/-/tree-dump-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/tree-dump/-/tree-dump-1.1.0.tgz#ab29129169dc46004414f5a9d4a3c6e89f13e8a4" integrity sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA== trim-lines@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338" integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg== trough@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/trough/-/trough-2.2.0.tgz#94a60bd6bd375c152c1df911a4b11d5b0256f50f" integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw== ts-dedent@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz" - integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ== + version "2.3.0" + resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.3.0.tgz#8fac36c7902b541c154ac13a27ac467997af11f8" + integrity sha512-JfJeIHke7y2egdGGgRAvpCwYFUsHlM2gPcrVOxFkznt/4uzQ7HFmvE63iFHVLBJNDuyDOQgijDK/tXH/f6Msjg== ts-interface-checker@^0.1.9: version "0.1.13" - resolved "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== -tslib@^2.0.0, tslib@^2.0.3, tslib@^2.4.0, tslib@^2.6.0: +tslib@^1.9.3: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.0.0, tslib@^2.0.3, tslib@^2.4.0, tslib@^2.6.0, tslib@^2.8.1: version "2.8.1" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== +tsyringe@^4.10.0: + version "4.10.0" + resolved "https://registry.yarnpkg.com/tsyringe/-/tsyringe-4.10.0.tgz#d0c95815d584464214060285eaaadd94aa03299c" + integrity sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw== + dependencies: + tslib "^1.9.3" + +type-fest@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" + integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== type-fest@^1.0.1: version "1.4.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1" integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA== type-fest@^2.13.0, type-fest@^2.5.0: version "2.19.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== +type-is@^2.0.1, type-is@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-2.1.0.tgz#71d1a7053293582e16ac9f3ebaf1ab9aa49e5570" + integrity sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA== + dependencies: + content-type "^2.0.0" + media-typer "^1.1.0" + mime-types "^3.0.0" + type-is@~1.6.18: version "1.6.18" - resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== dependencies: media-typer "0.3.0" @@ -10273,44 +10753,39 @@ type-is@~1.6.18: typedarray-to-buffer@^3.1.5: version "3.1.5" - resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== dependencies: is-typedarray "^1.0.0" typescript@~5.6.2: version "5.6.3" - resolved "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.3.tgz#5f3449e31c9d94febb17de03cc081dd56d81db5b" integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw== -ufo@^1.5.4: - version "1.6.1" - resolved "https://registry.npmjs.org/ufo/-/ufo-1.6.1.tgz" - integrity sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA== - -undici-types@~6.20.0: - version "6.20.0" - resolved "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz" - integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg== +undici-types@~8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-8.3.0.tgz#44e9fc9f3244648cdea35e4f9bb2d681e9410809" + integrity sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ== undici@^7.19.0: - version "7.22.0" - resolved "https://registry.npmjs.org/undici/-/undici-7.22.0.tgz" - integrity sha512-RqslV2Us5BrllB+JeiZnK4peryVTndy9Dnqq62S3yYRRTj0tFQCwEniUy2167skdGOy3vqRzEvl1Dm4sV2ReDg== + version "7.28.0" + resolved "https://registry.yarnpkg.com/undici/-/undici-7.28.0.tgz#97d64564198b285bc281f0e8e29597e3d11fe7ec" + integrity sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA== unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz#cb3173fe47ca743e228216e4a3ddc4c84d628cc2" integrity sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg== unicode-emoji-modifier-base@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz#dbbd5b54ba30f287e2a8d5a249da6c0cef369459" integrity sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g== unicode-match-property-ecmascript@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== dependencies: unicode-canonical-property-names-ecmascript "^2.0.0" @@ -10318,17 +10793,17 @@ unicode-match-property-ecmascript@^2.0.0: unicode-match-property-value-ecmascript@^2.2.1: version "2.2.1" - resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz#65a7adfad8574c219890e219285ce4c64ed67eaa" integrity sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg== unicode-property-aliases-ecmascript@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz#301d4f8a43d2b75c97adfad87c9dd5350c9475d1" integrity sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ== unified@^11.0.0, unified@^11.0.3, unified@^11.0.4: version "11.0.5" - resolved "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz" + resolved "https://registry.yarnpkg.com/unified/-/unified-11.0.5.tgz#f66677610a5c0a9ee90cab2b8d4d66037026d9e1" integrity sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA== dependencies: "@types/unist" "^3.0.0" @@ -10341,51 +10816,51 @@ unified@^11.0.0, unified@^11.0.3, unified@^11.0.4: unique-string@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-3.0.0.tgz#84a1c377aff5fd7a8bc6b55d8244b2bd90d75b9a" integrity sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ== dependencies: crypto-random-string "^4.0.0" unist-util-is@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz" - integrity sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw== + version "6.0.1" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-6.0.1.tgz#d0a3f86f2dd0db7acd7d8c2478080b5c67f9c6a9" + integrity sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g== dependencies: "@types/unist" "^3.0.0" unist-util-position-from-estree@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz#d94da4df596529d1faa3de506202f0c9a23f2200" integrity sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ== dependencies: "@types/unist" "^3.0.0" unist-util-position@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-5.0.0.tgz#678f20ab5ca1207a97d7ea8a388373c9cf896be4" integrity sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA== dependencies: "@types/unist" "^3.0.0" unist-util-stringify-position@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz#449c6e21a880e0855bf5aabadeb3a740314abac2" integrity sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ== dependencies: "@types/unist" "^3.0.0" unist-util-visit-parents@^6.0.0: - version "6.0.1" - resolved "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz" - integrity sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw== + version "6.0.2" + resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz#777df7fb98652ce16b4b7cd999d0a1a40efa3a02" + integrity sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ== dependencies: "@types/unist" "^3.0.0" unist-util-is "^6.0.0" unist-util-visit@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz" - integrity sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg== + version "5.1.0" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-5.1.0.tgz#9a2a28b0aa76a15e0da70a08a5863a2f060e2468" + integrity sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg== dependencies: "@types/unist" "^3.0.0" unist-util-is "^6.0.0" @@ -10393,25 +10868,25 @@ unist-util-visit@^5.0.0: universalify@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== unpipe@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== -update-browserslist-db@^1.2.0: - version "1.2.2" - resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.2.tgz" - integrity sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA== +update-browserslist-db@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz#64d76db58713136acbeb4c49114366cc6cc2e80d" + integrity sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w== dependencies: escalade "^3.2.0" picocolors "^1.1.1" update-notifier@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/update-notifier/-/update-notifier-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-6.0.2.tgz#a6990253dfe6d5a02bd04fbb6a61543f55026b60" integrity sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og== dependencies: boxen "^7.0.0" @@ -10431,147 +10906,106 @@ update-notifier@^6.0.2: uri-js@^4.2.2: version "4.4.1" - resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" url-loader@^4.1.1: version "4.1.1" - resolved "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2" integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== dependencies: loader-utils "^2.0.0" mime-types "^2.1.27" schema-utils "^3.0.0" -use-sync-external-store@^1.4.0: - version "1.6.0" - resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz" - integrity sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w== - util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== utila@~0.4: version "0.4.0" - resolved "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== utility-types@^3.10.0: version "3.11.0" - resolved "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz" + resolved "https://registry.yarnpkg.com/utility-types/-/utility-types-3.11.0.tgz#607c40edb4f258915e901ea7995607fdf319424c" integrity sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw== utils-merge@1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== -uuid@^11.1.0: - version "11.1.0" - resolved "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz" - integrity sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A== +"uuid@^11.1.0 || ^12 || ^13 || ^14.0.0": + version "14.0.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-14.0.1.tgz#8a5975b3e038902bfd169a10b5202f5ec0cf3faf" + integrity sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew== uuid@^8.3.2: version "8.3.2" - resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== value-equal@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== -vary@~1.1.2: +vary@^1.1.2, vary@~1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== vfile-location@^5.0.0: version "5.0.3" - resolved "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz" + resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-5.0.3.tgz#cb9eacd20f2b6426d19451e0eafa3d0a846225c3" integrity sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg== dependencies: "@types/unist" "^3.0.0" vfile "^6.0.0" vfile-message@^4.0.0: - version "4.0.2" - resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz" - integrity sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw== + version "4.0.3" + resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-4.0.3.tgz#87b44dddd7b70f0641c2e3ed0864ba73e2ea8df4" + integrity sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw== dependencies: "@types/unist" "^3.0.0" unist-util-stringify-position "^4.0.0" vfile@^6.0.0, vfile@^6.0.1: version "6.0.3" - resolved "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-6.0.3.tgz#3652ab1c496531852bf55a6bac57af981ebc38ab" integrity sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q== dependencies: "@types/unist" "^3.0.0" vfile-message "^4.0.0" -vscode-jsonrpc@8.2.0: - version "8.2.0" - resolved "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz" - integrity sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA== - -vscode-languageserver-protocol@3.17.5: - version "3.17.5" - resolved "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz" - integrity sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg== - dependencies: - vscode-jsonrpc "8.2.0" - vscode-languageserver-types "3.17.5" - -vscode-languageserver-textdocument@~1.0.11: - version "1.0.12" - resolved "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz" - integrity sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA== - -vscode-languageserver-types@3.17.5: - version "3.17.5" - resolved "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz" - integrity sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg== - -vscode-languageserver@~9.0.1: - version "9.0.1" - resolved "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz" - integrity sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g== - dependencies: - vscode-languageserver-protocol "3.17.5" - -vscode-uri@~3.0.8: - version "3.0.8" - resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz" - integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw== - -watchpack@^2.4.1: - version "2.4.2" - resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz" - integrity sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw== +watchpack@^2.5.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.5.2.tgz#e12e82d84674266fc1c6dbfe38891b92ff0522ec" + integrity sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg== dependencies: - glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" wbuf@^1.1.0, wbuf@^1.7.3: version "1.7.3" - resolved "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== dependencies: minimalistic-assert "^1.0.0" web-namespaces@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-2.0.1.tgz#1010ff7c650eccb2592cebeeaf9a1b253fd40692" integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ== webpack-bundle-analyzer@^4.10.2: version "4.10.2" - resolved "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.2.tgz" + resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.2.tgz#633af2862c213730be3dbdf40456db171b60d5bd" integrity sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw== dependencies: "@discoveryjs/json-ext" "0.5.7" @@ -10589,7 +11023,7 @@ webpack-bundle-analyzer@^4.10.2: webpack-dev-middleware@^7.4.2: version "7.4.5" - resolved "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.4.5.tgz" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-7.4.5.tgz#d4e8720aa29cb03bc158084a94edb4594e3b7ac0" integrity sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA== dependencies: colorette "^2.0.10" @@ -10600,13 +11034,13 @@ webpack-dev-middleware@^7.4.2: schema-utils "^4.0.0" webpack-dev-server@^5.2.2: - version "5.2.2" - resolved "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.2.tgz" - integrity sha512-QcQ72gh8a+7JO63TAx/6XZf/CWhgMzu5m0QirvPfGvptOusAxG12w2+aua1Jkjr7hzaWDnJ2n6JFeexMHI+Zjg== + version "5.2.6" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-5.2.6.tgz#3a5d41233cbb7504f814d19e59a59173fb8ae23d" + integrity sha512-HNLRmamRvVavZQ+avceZifmv8hmdUjg43t6MI4SqJDwFdW7RPQwH5vzGhDRZSX59SgfbeHhLnq3g+uooWo7pVw== dependencies: "@types/bonjour" "^3.5.13" "@types/connect-history-api-fallback" "^1.5.4" - "@types/express" "^4.17.21" + "@types/express" "^4.17.25" "@types/express-serve-static-core" "^4.17.21" "@types/serve-index" "^1.9.4" "@types/serve-static" "^1.15.5" @@ -10616,17 +11050,17 @@ webpack-dev-server@^5.2.2: bonjour-service "^1.2.1" chokidar "^3.6.0" colorette "^2.0.10" - compression "^1.7.4" + compression "^1.8.1" connect-history-api-fallback "^2.0.0" - express "^4.21.2" + express "^4.22.1" graceful-fs "^4.2.6" http-proxy-middleware "^2.0.9" ipaddr.js "^2.1.0" - launch-editor "^2.6.1" + launch-editor "^2.14.1" open "^10.0.3" p-retry "^6.2.0" schema-utils "^4.2.0" - selfsigned "^2.4.1" + selfsigned "^5.5.0" serve-index "^1.9.1" sockjs "^0.3.24" spdy "^4.0.2" @@ -10635,7 +11069,7 @@ webpack-dev-server@^5.2.2: webpack-merge@^5.9.0: version "5.10.0" - resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.10.0.tgz#a3ad5d773241e9c682803abf628d4cd62b8a4177" integrity sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA== dependencies: clone-deep "^4.0.1" @@ -10644,66 +11078,49 @@ webpack-merge@^5.9.0: webpack-merge@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-6.0.1.tgz#50c776868e080574725abc5869bd6e4ef0a16c6a" integrity sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg== dependencies: clone-deep "^4.0.1" flat "^5.0.2" wildcard "^2.0.1" -webpack-sources@^3.3.3: - version "3.3.3" - resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz" - integrity sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg== +webpack-sources@^3.5.0: + version "3.5.1" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.5.1.tgz#76c2418486dcc02b2aa0694c104176c2858fe84a" + integrity sha512-jyuiGJdtvY434z5bUZrjz67v76/ePNvFZTp9Mdz29IlH4+GPsgyGjiv0fKI+M7BdkU6ADjulUcKAd3tUK3WlEw== webpack@^5.101.3, webpack@^5.88.1, webpack@^5.95.0: - version "5.101.3" - resolved "https://registry.npmjs.org/webpack/-/webpack-5.101.3.tgz" - integrity sha512-7b0dTKR3Ed//AD/6kkx/o7duS8H3f1a4w3BYpIriX4BzIhjkn4teo05cptsxvLesHFKK5KObnadmCHBwGc+51A== + version "5.108.4" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.108.4.tgz#141818a411662773a0bb32dc5536acc5409943b7" + integrity sha512-yur8LyJoeiWh47dErD+Ok7vlbmDsJ3UbbRPAoxbGJ54WpE2y5yVo5G/inUzujnYgw3tPmBRdn+G7PoxXaYC33w== dependencies: - "@types/eslint-scope" "^3.7.7" "@types/estree" "^1.0.8" "@types/json-schema" "^7.0.15" "@webassemblyjs/ast" "^1.14.1" "@webassemblyjs/wasm-edit" "^1.14.1" "@webassemblyjs/wasm-parser" "^1.14.1" - acorn "^8.15.0" + acorn "^8.16.0" acorn-import-phases "^1.0.3" - browserslist "^4.24.0" + browserslist "^4.28.1" chrome-trace-event "^1.0.2" - enhanced-resolve "^5.17.3" - es-module-lexer "^1.2.1" + enhanced-resolve "^5.22.2" + es-module-lexer "^2.1.0" eslint-scope "5.1.1" events "^3.2.0" - glob-to-regexp "^0.4.1" graceful-fs "^4.2.11" - json-parse-even-better-errors "^2.3.1" - loader-runner "^4.2.0" - mime-types "^2.1.27" + loader-runner "^4.3.2" + mime-db "^1.54.0" + minimizer-webpack-plugin "^5.6.1" neo-async "^2.6.2" - schema-utils "^4.3.2" - tapable "^2.1.1" - terser-webpack-plugin "^5.3.11" - watchpack "^2.4.1" - webpack-sources "^3.3.3" - -webpackbar@^6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/webpackbar/-/webpackbar-6.0.1.tgz" - integrity sha512-TnErZpmuKdwWBdMoexjio3KKX6ZtoKHRVvLIU0A47R0VVBDtx3ZyOJDktgYixhoJokZTYTt1Z37OkO9pnGJa9Q== - dependencies: - ansi-escapes "^4.3.2" - chalk "^4.1.2" - consola "^3.2.3" - figures "^3.2.0" - markdown-table "^2.0.0" - pretty-time "^1.1.0" - std-env "^3.7.0" - wrap-ansi "^7.0.0" + schema-utils "^4.3.3" + tapable "^2.3.0" + watchpack "^2.5.2" + webpack-sources "^3.5.0" webpackbar@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/webpackbar/-/webpackbar-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/webpackbar/-/webpackbar-7.0.0.tgz#7228d32881af2392381b6514499ddea73cdf218a" integrity sha512-aS9soqSO2iCHgqHoCrj4LbfGQUboDCYJPSFOAchEK+9psIjNrfSWW4Y0YEz67MKURNvMmfo0ycOg9d/+OOf9/Q== dependencies: ansis "^3.2.0" @@ -10712,9 +11129,9 @@ webpackbar@^7.0.0: std-env "^3.7.0" websocket-driver@>=0.5.1, websocket-driver@^0.7.4: - version "0.7.4" - resolved "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" - integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== + version "0.7.5" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.5.tgz#569d22764ab21f2de20af0e74b411e8ae5a0fa46" + integrity sha512-ZL2+3c7kMBdIRCMz6l8jQMHyGVxj+UL+xVk74Ombiciboca8rHa15L86B19E5oh1pL9Ii/uj54gtsIrZGMo6zA== dependencies: http-parser-js ">=0.5.1" safe-buffer ">=5.1.0" @@ -10722,70 +11139,57 @@ websocket-driver@>=0.5.1, websocket-driver@^0.7.4: websocket-extensions@>=0.1.1: version "0.1.4" - resolved "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== whatwg-encoding@^3.1.1: version "3.1.1" - resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz#d0f4ef769905d426e1688f3e34381a99b60b76e5" integrity sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== dependencies: iconv-lite "0.6.3" whatwg-mimetype@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz#bc1bf94a985dc50388d54a9258ac405c3ca2fc0a" integrity sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== which@^2.0.1: version "2.0.2" - resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" widest-line@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-4.0.1.tgz#a0fc673aaba1ea6f0a0d35b3c2795c9a9cc2ebf2" integrity sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig== dependencies: string-width "^5.0.1" wildcard@^2.0.0, wildcard@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": - version "7.0.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.0.1, wrap-ansi@^8.1.0: version "8.1.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== dependencies: ansi-styles "^6.1.0" string-width "^5.0.1" strip-ansi "^7.0.1" +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + write-file-atomic@^3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== dependencies: imurmurhash "^0.1.4" @@ -10794,55 +11198,45 @@ write-file-atomic@^3.0.3: typedarray-to-buffer "^3.1.5" ws@^7.3.1: - version "7.5.10" - resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz" - integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== + version "7.5.13" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.13.tgz#12aa507eaca76c295c278b1aebf4698ab2c1845f" + integrity sha512-rsKI6xDBFVf4r/x8XyChGK04QR/XHroxs/jUcoWvtEZM8TPU/X/uIY9B1CsSzYws9ZJb/6bbBu7dPhFW00CAoA== ws@^8.18.0: - version "8.18.3" - resolved "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz" - integrity sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg== + version "8.21.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.21.1.tgz#045650cd4b1207809e7547146223c3814a9af586" + integrity sha512-+0NTnW77fFN/DjQi6k/Sq/Yvk4Sgajw7urW8V+asjXnRgDs9gyGkdb7EzgfhA4goXsRIZKE28fzIXBHEzhuiWw== wsl-utils@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/wsl-utils/-/wsl-utils-0.1.0.tgz#8783d4df671d4d50365be2ee4c71917a0557baab" integrity sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw== dependencies: is-wsl "^3.1.0" xdg-basedir@^5.0.1, xdg-basedir@^5.1.0: version "5.1.0" - resolved "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-5.1.0.tgz#1efba19425e73be1bc6f2a6ceb52a3d2c884c0c9" integrity sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ== xml-js@^1.6.11: version "1.6.11" - resolved "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz" + resolved "https://registry.yarnpkg.com/xml-js/-/xml-js-1.6.11.tgz#927d2f6947f7f1c19a316dd8eea3614e8b18f8e9" integrity sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g== dependencies: sax "^1.2.4" yallist@^3.0.2: version "3.1.1" - resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== -yaml@^2.3.4: - version "2.7.0" - resolved "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz" - integrity sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA== - yocto-queue@^1.0.0: version "1.2.2" - resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.2.2.tgz#3e09c95d3f1aa89a58c114c99223edf639152c00" integrity sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ== -zod@^4.1.8: - version "4.1.13" - resolved "https://registry.npmjs.org/zod/-/zod-4.1.13.tgz" - integrity sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig== - zwitch@^2.0.0: version "2.0.4" - resolved "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7" integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A== From 9b4e26cb3965f6f3d44419cfd97727cc439a3e2d Mon Sep 17 00:00:00 2001 From: Diretnan Domnan Date: Thu, 23 Jul 2026 16:48:00 +0200 Subject: [PATCH 5/5] Remove non-existent wasm tests --- .github/workflows/deploy-docs-netlify.yml | 1 - .github/workflows/test.yml | 51 +----------------- ahnlich/db/src/algorithm/non_linear.rs | 6 +-- .../src/components/BookSearchDemo/index.tsx | 52 ++++++++++++++----- 4 files changed, 42 insertions(+), 68 deletions(-) diff --git a/.github/workflows/deploy-docs-netlify.yml b/.github/workflows/deploy-docs-netlify.yml index 5ec3a50c6..60e82cda5 100644 --- a/.github/workflows/deploy-docs-netlify.yml +++ b/.github/workflows/deploy-docs-netlify.yml @@ -3,7 +3,6 @@ on: push: branches: - main - - wasm-db-rayon permissions: contents: write jobs: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e49fc199..c0884df18 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -111,56 +111,7 @@ jobs: name: rust path: ahnlich/target/nextest/default/rust.xml - run-wasm-tests: - if: always() - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Set up sccache - uses: mozilla-actions/sccache-action@v0.0.9 - - - name: Set up Rust cache - uses: Swatinem/rust-cache@v2 - with: - workspaces: ahnlich - shared-key: ahnlich-rust - - name: Install wasm-pack - run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh - - - name: Check WASM compilation - working-directory: ./ahnlich - run: cargo check -p db --lib --target wasm32-unknown-unknown --no-default-features - - - name: Build WASM package - working-directory: ./ahnlich/wasm-db - run: wasm-pack build --target nodejs --out-dir pkg - - - name: Setup Node for WASM tests - uses: actions/setup-node@v4 - with: - node-version: 22 - - - name: Build SDK for WASM tests - working-directory: ./sdk/ahnlich-client-node - run: | - npm install - npm run build - - - name: Run WASM tests - working-directory: ./ahnlich/wasm-db/examples - run: | - node --test test.mjs 2>&1 | tee test-output.log - node --test --test-reporter=junit test.mjs > wasm.xml || (cat test-output.log && exit 1) - - - name: Upload WASM Test Results - uses: actions/upload-artifact@v4 - if: always() - with: - name: wasm - path: ahnlich/wasm-db/examples/wasm.xml run-python-tests: if: always() @@ -379,7 +330,7 @@ jobs: upload-test-results: if: always() runs-on: ubuntu-latest - needs: ["run-rust-tests", "run-wasm-tests", "run-python-tests", "run-go-tests", "run-node-tests"] + needs: ["run-rust-tests", "run-python-tests", "run-go-tests", "run-node-tests"] permissions: contents: read checks: write diff --git a/ahnlich/db/src/algorithm/non_linear.rs b/ahnlich/db/src/algorithm/non_linear.rs index 630b1c95e..4102e1375 100644 --- a/ahnlich/db/src/algorithm/non_linear.rs +++ b/ahnlich/db/src/algorithm/non_linear.rs @@ -168,12 +168,10 @@ impl NonLinearAlgorithmWithIndex { } .expect("Index does not have the same size as reference_point"); - let final_result = raw_result + raw_result .into_par_iter() .map(|(arr, sim)| (embedding_key_to_id(&arr), sim)) - .collect(); - - final_result + .collect() } } diff --git a/web/ahnlich-web/src/components/BookSearchDemo/index.tsx b/web/ahnlich-web/src/components/BookSearchDemo/index.tsx index 3c429cc2b..b58dfefb2 100644 --- a/web/ahnlich-web/src/components/BookSearchDemo/index.tsx +++ b/web/ahnlich-web/src/components/BookSearchDemo/index.tsx @@ -15,7 +15,7 @@ interface SearchResult { } function BookSearchDemoInner() { - const [status, setStatus] = useState('Click "Initialize" to load Animal Farm'); + const [status, setStatus] = useState('Loading embedding model...'); const [db, setDb] = useState(null); const [sentences, setSentences] = useState([]); const [searchQuery, setSearchQuery] = useState(''); @@ -26,19 +26,35 @@ function BookSearchDemoInner() { const [queryEmbeddingTime, setQueryEmbeddingTime] = useState(0); const [embeddingTime, setEmbeddingTime] = useState(0); const [insertTime, setInsertTime] = useState(0); + const [modelLoaded, setModelLoaded] = useState(false); const embeddingModel = useRef(null); - // Create embedding using Transformers.js (installed via yarn, not CDN) + // Preload the embedding model on mount + useEffect(() => { + async function preloadModel() { + try { + setStatus('Loading embedding model (one-time)...'); + const { pipeline, env } = await import('@huggingface/transformers'); + + env.allowRemoteModels = true; + env.allowLocalModels = false; + + embeddingModel.current = await pipeline('feature-extraction', 'Xenova/all-MiniLM-L6-v2'); + setModelLoaded(true); + setStatus('Ready! Click "Initialize Database" to start.'); + } catch (err) { + setError('Failed to load embedding model: ' + (err instanceof Error ? err.message : String(err))); + setStatus('Model loading failed. Click Initialize to retry.'); + } + } + + preloadModel(); + }, []); + + // Create embedding using Transformers.js (preloaded on mount) async function createEmbedding(text: string): Promise { if (!embeddingModel.current) { - const { pipeline, env } = await import('@huggingface/transformers'); - - // Configure for browser - env.allowRemoteModels = true; - env.allowLocalModels = false; - - // Load the embedding model - embeddingModel.current = await pipeline('feature-extraction', 'Xenova/all-MiniLM-L6-v2'); + throw new Error('Embedding model not loaded. Please wait for initialization.'); } const output = await embeddingModel.current(text, { pooling: 'mean', normalize: true }); @@ -48,10 +64,20 @@ function BookSearchDemoInner() { async function initialize() { setIsInitializing(true); setError(null); - setStatus('Loading pre-computed embeddings...'); + + // Wait for model to load if it hasn't finished yet + if (!modelLoaded) { + setStatus('Waiting for embedding model to load...'); + while (!embeddingModel.current && !error) { + await new Promise(resolve => setTimeout(resolve, 100)); + } + if (error) { + setIsInitializing(false); + return; + } + } try { - // Model will be loaded lazily on first search setStatus('Loading WASM module...'); const wasmModule = await import('/wasm-pkg/ahnlich_wasm_db.js'); const { default: init, initThreadPool, AhnlichDB } = wasmModule; @@ -140,7 +166,7 @@ function BookSearchDemoInner() { setDb(dbInstance); setSentences(sentenceObjs); - setStatus(`Ready! Indexed ${sentenceObjs.length} sentences. Embeddings: ${(embEnd - embStart) / 1000}s, Insert: ${(insertEnd - insertStart) / 1000}s`); + setStatus(`Ready! Indexed ${sentenceObjs.length} sentences from 4 books. Start searching!`); } catch (err) { setError(err instanceof Error ? err.message : String(err)); setStatus('Initialization failed');